
    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_72abc40a1ca250240e8a2ac1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_1439441bfbe04c103ad6831a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_1fcd5dc529ef3ad01b06a31d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_c1ad0d8b8d0502e26f27e905.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_9484aa741b4967de8835b0c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_2acfbf09474b34f64bcc0508.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_d77e21fbd370c63669ddb57e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_0c7a4ed7d879018be3654ee6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966797;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_e874d27a5bc60d4292bbaeae.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.240723;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_42dac36a4754bbacda6a4c0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.731934;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_078470b606b89f131fbf7f92.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4aee2d1cea444aca36814a79.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.058594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_868604ca7ce2a2a1888f413a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e3b5de3890c35daf2d6de5c4.woff2')format("woff");}.fff{font-family:fff;line-height:1.035156;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:ff10;src:url('chunks/assets/font_3e87fea3863e4dc5806a74e2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.416504;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:ff11;src:url('chunks/assets/font_b8354ab637600f212ca1dfb1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.929688;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:ff12;src:url('chunks/assets/font_79f1200ed2b2180db6595634.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.928223;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:ff13;src:url('chunks/assets/font_969d4e2fdf16985dc911f03f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.914062;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:ff14;src:url('chunks/assets/font_36e562bb5d757416112d24af.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.416504;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:ff15;src:url('chunks/assets/font_fc63a4a1a5bae3fd4e078abd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.980957;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:ff16;src:url('chunks/assets/font_3904c7a4891c38b5d1558012.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.946777;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:ff17;src:url('chunks/assets/font_5d4e7ce7ce57843bdd5de9ac.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284668;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:ff18;src:url('chunks/assets/font_68c277fb2d4882050c40913e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.104492;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:ff19;src:url('chunks/assets/font_336a0f6632f6ebb080004716.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-72.720000px;}
.v22{vertical-align:-43.920000px;}
.v26{vertical-align:-41.040000px;}
.v5{vertical-align:-38.160000px;}
.vd{vertical-align:-36.000000px;}
.v12{vertical-align:-32.400000px;}
.v2{vertical-align:-30.240000px;}
.v9{vertical-align:-28.800000px;}
.v1a{vertical-align:-27.360000px;}
.v1e{vertical-align:-25.200000px;}
.v25{vertical-align:-23.760000px;}
.v19{vertical-align:-22.320000px;}
.v6{vertical-align:-20.880000px;}
.ve{vertical-align:-18.000000px;}
.vf{vertical-align:-15.840000px;}
.v3{vertical-align:-14.400000px;}
.v14{vertical-align:-12.240000px;}
.v16{vertical-align:-10.080000px;}
.v1f{vertical-align:-7.200000px;}
.v20{vertical-align:-5.040000px;}
.v1d{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v1c{vertical-align:1.440000px;}
.v23{vertical-align:5.040000px;}
.v21{vertical-align:7.200000px;}
.v17{vertical-align:10.080000px;}
.v15{vertical-align:12.240000px;}
.v4{vertical-align:14.400000px;}
.v10{vertical-align:15.840000px;}
.v11{vertical-align:18.720000px;}
.v7{vertical-align:20.880000px;}
.v18{vertical-align:22.320000px;}
.v8{vertical-align:25.200000px;}
.v1b{vertical-align:27.360000px;}
.va{vertical-align:28.800000px;}
.v13{vertical-align:30.960000px;}
.v1{vertical-align:33.120000px;}
.v24{vertical-align:36.720000px;}
.vc{vertical-align:72.720000px;}
.ls16{letter-spacing:-37.020000px;}
.ls23{letter-spacing:-36.300000px;}
.ls3c{letter-spacing:-34.860000px;}
.ls1c{letter-spacing:-32.700000px;}
.ls8b{letter-spacing:-31.980000px;}
.ls22{letter-spacing:-30.540000px;}
.ls17{letter-spacing:-29.820000px;}
.ls5e{letter-spacing:-11.820000px;}
.ls2f{letter-spacing:-11.220000px;}
.ls21{letter-spacing:-11.160000px;}
.ls37{letter-spacing:-9.420000px;}
.ls8f{letter-spacing:-9.060000px;}
.ls86{letter-spacing:-8.520000px;}
.ls40{letter-spacing:-6.960000px;}
.ls8c{letter-spacing:-6.840000px;}
.ls31{letter-spacing:-6.600000px;}
.ls2c{letter-spacing:-6.180000px;}
.ls78{letter-spacing:-6.120000px;}
.ls3b{letter-spacing:-6.000000px;}
.lsa3{letter-spacing:-5.556000px;}
.ls48{letter-spacing:-0.960000px;}
.ls88{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.414600px;}
.ls3f{letter-spacing:-0.394800px;}
.ls6b{letter-spacing:-0.388200px;}
.ls42{letter-spacing:-0.378600px;}
.ls15{letter-spacing:-0.378000px;}
.ls1a{letter-spacing:-0.339000px;}
.ls1e{letter-spacing:-0.325200px;}
.ls1f{letter-spacing:-0.321000px;}
.lsa2{letter-spacing:-0.306600px;}
.ls25{letter-spacing:-0.265200px;}
.ls67{letter-spacing:-0.263400px;}
.ls97{letter-spacing:-0.259800px;}
.ls87{letter-spacing:-0.247800px;}
.ls32{letter-spacing:-0.237600px;}
.ls30{letter-spacing:-0.226200px;}
.ls2d{letter-spacing:-0.207600px;}
.ls3e{letter-spacing:-0.201000px;}
.ls80{letter-spacing:-0.193200px;}
.ls1b{letter-spacing:-0.190800px;}
.ls6e{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.178800px;}
.ls81{letter-spacing:-0.168600px;}
.ls19{letter-spacing:-0.151800px;}
.ls6d{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.122400px;}
.ls96{letter-spacing:-0.106800px;}
.ls99{letter-spacing:-0.100200px;}
.ls44{letter-spacing:-0.086400px;}
.ls9{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.053280px;}
.ls49{letter-spacing:-0.038880px;}
.lsd{letter-spacing:-0.018000px;}
.ls7a{letter-spacing:-0.017280px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000720px;}
.ls43{letter-spacing:0.002160px;}
.ls75{letter-spacing:0.018720px;}
.ls9f{letter-spacing:0.053280px;}
.ls34{letter-spacing:0.058320px;}
.ls77{letter-spacing:0.069000px;}
.ls66{letter-spacing:0.076200px;}
.ls56{letter-spacing:0.115200px;}
.ls60{letter-spacing:0.115800px;}
.ls5f{letter-spacing:0.126600px;}
.ls68{letter-spacing:0.143400px;}
.lsa{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.148080px;}
.ls8d{letter-spacing:0.168000px;}
.ls64{letter-spacing:0.171600px;}
.ls47{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls76{letter-spacing:0.241800px;}
.ls98{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls2b{letter-spacing:0.283800px;}
.ls13{letter-spacing:0.284400px;}
.ls1{letter-spacing:0.305400px;}
.ls9e{letter-spacing:0.306600px;}
.ls61{letter-spacing:0.323400px;}
.ls29{letter-spacing:0.325200px;}
.ls2a{letter-spacing:0.341280px;}
.ls45{letter-spacing:0.341400px;}
.ls91{letter-spacing:0.342000px;}
.ls7b{letter-spacing:0.360000px;}
.ls9b{letter-spacing:0.379920px;}
.ls4d{letter-spacing:0.380880px;}
.ls52{letter-spacing:0.381000px;}
.lsf{letter-spacing:0.394800px;}
.ls1d{letter-spacing:0.399000px;}
.ls94{letter-spacing:0.439920px;}
.ls8e{letter-spacing:0.454800px;}
.ls9a{letter-spacing:0.460200px;}
.ls2e{letter-spacing:0.493800px;}
.ls5b{letter-spacing:0.504000px;}
.ls72{letter-spacing:0.512400px;}
.ls20{letter-spacing:0.529200px;}
.ls51{letter-spacing:0.568200px;}
.ls95{letter-spacing:0.597600px;}
.lsa0{letter-spacing:0.612000px;}
.ls93{letter-spacing:0.613440px;}
.ls9c{letter-spacing:0.666720px;}
.ls5c{letter-spacing:0.720000px;}
.ls73{letter-spacing:0.738000px;}
.lsa1{letter-spacing:0.774000px;}
.ls4e{letter-spacing:0.778320px;}
.ls8a{letter-spacing:0.780000px;}
.ls82{letter-spacing:0.834000px;}
.lse{letter-spacing:0.892080px;}
.ls79{letter-spacing:0.894000px;}
.ls7d{letter-spacing:0.975600px;}
.ls59{letter-spacing:1.025280px;}
.ls38{letter-spacing:1.044000px;}
.ls9d{letter-spacing:1.205280px;}
.ls6c{letter-spacing:1.440000px;}
.ls92{letter-spacing:1.458720px;}
.ls7e{letter-spacing:1.695600px;}
.ls83{letter-spacing:1.764000px;}
.ls18{letter-spacing:1.836000px;}
.ls11{letter-spacing:1.872000px;}
.ls5a{letter-spacing:2.465280px;}
.ls10{letter-spacing:2.554560px;}
.ls65{letter-spacing:2.556000px;}
.ls12{letter-spacing:2.592000px;}
.ls4a{letter-spacing:2.880720px;}
.ls33{letter-spacing:3.204000px;}
.ls53{letter-spacing:3.276000px;}
.ls4{letter-spacing:3.305280px;}
.ls4f{letter-spacing:3.544560px;}
.ls4c{letter-spacing:3.810960px;}
.ls3d{letter-spacing:3.924000px;}
.ls57{letter-spacing:4.320720px;}
.ls3a{letter-spacing:4.716000px;}
.ls3{letter-spacing:4.805280px;}
.ls4b{letter-spacing:5.040720px;}
.ls70{letter-spacing:5.098320px;}
.ls7c{letter-spacing:5.184000px;}
.ls74{letter-spacing:5.436000px;}
.ls69{letter-spacing:6.180000px;}
.ls50{letter-spacing:6.595200px;}
.ls36{letter-spacing:6.780000px;}
.ls24{letter-spacing:6.900000px;}
.ls27{letter-spacing:7.525440px;}
.ls90{letter-spacing:7.594560px;}
.ls46{letter-spacing:7.620000px;}
.ls28{letter-spacing:8.245440px;}
.ls62{letter-spacing:8.340000px;}
.ls63{letter-spacing:8.940000px;}
.ls85{letter-spacing:9.034560px;}
.ls41{letter-spacing:9.060000px;}
.ls39{letter-spacing:9.780000px;}
.ls84{letter-spacing:10.474560px;}
.ls89{letter-spacing:10.500000px;}
.ls6f{letter-spacing:12.634560px;}
.ls55{letter-spacing:13.354560px;}
.ls6a{letter-spacing:13.380000px;}
.ls5d{letter-spacing:13.824000px;}
.ls71{letter-spacing:14.400000px;}
.ls7f{letter-spacing:15.120000px;}
.ls35{letter-spacing:16.220880px;}
.ls58{letter-spacing:18.394560px;}
.ls54{letter-spacing:19.140000px;}
.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;}
}
.ws16{word-spacing:-72.000000px;}
.ws0{word-spacing:-59.701680px;}
.ws28{word-spacing:-55.818720px;}
.ws48{word-spacing:-55.668720px;}
.ws4d{word-spacing:-55.608720px;}
.ws50{word-spacing:-55.554720px;}
.ws42{word-spacing:-55.512720px;}
.ws3a{word-spacing:-55.494720px;}
.ws56{word-spacing:-55.372320px;}
.ws31{word-spacing:-55.342920px;}
.ws18{word-spacing:-55.303920px;}
.ws41{word-spacing:-55.287120px;}
.ws1f{word-spacing:-55.268520px;}
.ws53{word-spacing:-55.229520px;}
.ws15{word-spacing:-55.173720px;}
.ws32{word-spacing:-55.155720px;}
.ws2e{word-spacing:-55.116120px;}
.ws38{word-spacing:-55.098120px;}
.ws11{word-spacing:-55.059120px;}
.ws49{word-spacing:-54.946320px;}
.ws52{word-spacing:-54.942720px;}
.ws3d{word-spacing:-54.918120px;}
.ws36{word-spacing:-54.901320px;}
.ws37{word-spacing:-54.890520px;}
.ws3e{word-spacing:-54.889920px;}
.ws3b{word-spacing:-54.850920px;}
.ws46{word-spacing:-54.843720px;}
.ws26{word-spacing:-54.833040px;}
.ws43{word-spacing:-54.793440px;}
.ws2d{word-spacing:-54.776880px;}
.wse{word-spacing:-54.775440px;}
.ws10{word-spacing:-54.774720px;}
.ws1c{word-spacing:-54.652320px;}
.ws12{word-spacing:-54.622920px;}
.ws4c{word-spacing:-54.606120px;}
.ws14{word-spacing:-54.583920px;}
.ws4a{word-spacing:-54.581520px;}
.ws1e{word-spacing:-54.567120px;}
.ws21{word-spacing:-54.548520px;}
.ws3c{word-spacing:-54.511320px;}
.ws1a{word-spacing:-54.509520px;}
.ws17{word-spacing:-54.453720px;}
.ws13{word-spacing:-54.435720px;}
.wsf{word-spacing:-54.396720px;}
.ws4f{word-spacing:-54.072720px;}
.ws9{word-spacing:-54.000000px;}
.wsa{word-spacing:-53.982000px;}
.ws29{word-spacing:-48.774720px;}
.ws47{word-spacing:-48.654720px;}
.ws1d{word-spacing:-48.594720px;}
.ws24{word-spacing:-48.185280px;}
.ws22{word-spacing:-48.174720px;}
.ws30{word-spacing:-48.146400px;}
.ws2a{word-spacing:-47.984280px;}
.ws23{word-spacing:-47.947680px;}
.ws51{word-spacing:-47.934720px;}
.ws2b{word-spacing:-47.814720px;}
.ws2c{word-spacing:-47.806680px;}
.ws3f{word-spacing:-47.797080px;}
.ws2f{word-spacing:-47.225280px;}
.ws4e{word-spacing:-46.254720px;}
.ws54{word-spacing:-45.714720px;}
.ws27{word-spacing:-45.354720px;}
.ws19{word-spacing:-43.614720px;}
.ws20{word-spacing:-43.554720px;}
.ws35{word-spacing:-42.954720px;}
.ws33{word-spacing:-23.940000px;}
.ws55{word-spacing:-23.707440px;}
.wsc{word-spacing:-23.649840px;}
.ws44{word-spacing:-23.607240px;}
.ws39{word-spacing:-23.480640px;}
.wsd{word-spacing:-23.365440px;}
.ws45{word-spacing:-23.174640px;}
.ws4b{word-spacing:-23.100240px;}
.ws25{word-spacing:-20.554560px;}
.ws34{word-spacing:-20.316960px;}
.ws1{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.944000px;}
.ws6{word-spacing:-18.720120px;}
.ws4{word-spacing:-18.414720px;}
.ws1b{word-spacing:-18.000000px;}
.ws40{word-spacing:-17.856000px;}
.ws60{word-spacing:-17.387280px;}
.ws5e{word-spacing:-17.225280px;}
.ws5b{word-spacing:-17.073480px;}
.ws5c{word-spacing:-16.919880px;}
.ws59{word-spacing:-16.873080px;}
.ws5d{word-spacing:-16.666560px;}
.ws8{word-spacing:-16.613280px;}
.ws5f{word-spacing:-16.560000px;}
.ws5a{word-spacing:-16.513080px;}
.ws57{word-spacing:-16.506480px;}
.ws58{word-spacing:-16.353480px;}
.ws61{word-spacing:-16.306680px;}
.ws2{word-spacing:-13.410720px;}
.ws5{word-spacing:-11.609280px;}
.ws62{word-spacing:-11.057280px;}
.wsb{word-spacing:0.000000px;}
._2e1{margin-left:-2915.961600px;}
._2e6{margin-left:-2914.547040px;}
._1e2{margin-left:-2912.024880px;}
._1c5{margin-left:-2888.510880px;}
._2ec{margin-left:-2879.320800px;}
._14d{margin-left:-2857.060560px;}
._2be{margin-left:-2831.274720px;}
._21e{margin-left:-2827.059120px;}
._2bf{margin-left:-2824.780080px;}
._126{margin-left:-2774.370000px;}
._127{margin-left:-2772.197280px;}
._2e7{margin-left:-2744.335200px;}
._2af{margin-left:-2674.741440px;}
._2df{margin-left:-2648.520960px;}
._271{margin-left:-2637.170640px;}
._2cd{margin-left:-2592.130560px;}
._1b5{margin-left:-2562.014400px;}
._2d9{margin-left:-2544.276240px;}
._1ce{margin-left:-2533.500000px;}
._e9{margin-left:-2475.631200px;}
._e8{margin-left:-2468.365440px;}
._a{margin-left:-2443.165440px;}
._e5{margin-left:-2429.937120px;}
._1bc{margin-left:-2421.313200px;}
._202{margin-left:-2401.489920px;}
._2e0{margin-left:-2370.158640px;}
._258{margin-left:-2363.736480px;}
._207{margin-left:-2323.885680px;}
._1c4{margin-left:-2301.562320px;}
._2bc{margin-left:-2278.421280px;}
._1d5{margin-left:-2258.430480px;}
._1d0{margin-left:-2252.834160px;}
._1b3{margin-left:-2244.302880px;}
._1d6{margin-left:-2204.831040px;}
._1c2{margin-left:-2158.836000px;}
._2ee{margin-left:-2156.876400px;}
._2e2{margin-left:-2149.663440px;}
._e1{margin-left:-2132.194320px;}
._1de{margin-left:-2124.432240px;}
._ee{margin-left:-2080.857120px;}
._1e3{margin-left:-2068.530240px;}
._1ba{margin-left:-2059.590000px;}
._1f1{margin-left:-2056.265040px;}
._1b6{margin-left:-2040.976800px;}
._1b4{margin-left:-2007.741120px;}
._1fa{margin-left:-2006.437200px;}
._129{margin-left:-2004.309120px;}
._2a3{margin-left:-1991.775360px;}
._14e{margin-left:-1918.530960px;}
._1a6{margin-left:-1913.989920px;}
._1df{margin-left:-1892.775840px;}
._12a{margin-left:-1886.217600px;}
._1d9{margin-left:-1875.098880px;}
._152{margin-left:-1864.818480px;}
._1d8{margin-left:-1837.397040px;}
._e0{margin-left:-1808.220720px;}
._222{margin-left:-1801.975920px;}
._df{margin-left:-1774.825680px;}
._14f{margin-left:-1731.902400px;}
._1ed{margin-left:-1728.890880px;}
._18f{margin-left:-1714.062960px;}
._ef{margin-left:-1706.623920px;}
._1e0{margin-left:-1701.507360px;}
._f1{margin-left:-1699.092960px;}
._2da{margin-left:-1672.635120px;}
._1f6{margin-left:-1669.618800px;}
._17f{margin-left:-1619.918160px;}
._a1{margin-left:-1616.819280px;}
._de{margin-left:-1614.256560px;}
._249{margin-left:-1609.134720px;}
._2f4{margin-left:-1606.812240px;}
._2f7{margin-left:-1599.829440px;}
._2f0{margin-left:-1595.579280px;}
._251{margin-left:-1589.226720px;}
._1c8{margin-left:-1588.012560px;}
._291{margin-left:-1577.709120px;}
._2ea{margin-left:-1565.561280px;}
._2b0{margin-left:-1551.540720px;}
._24a{margin-left:-1550.378160px;}
._1cb{margin-left:-1545.594480px;}
._217{margin-left:-1543.071360px;}
._209{margin-left:-1534.716960px;}
._c7{margin-left:-1526.554560px;}
._2ce{margin-left:-1514.404080px;}
._2bd{margin-left:-1508.154720px;}
._2b3{margin-left:-1503.472320px;}
._279{margin-left:-1499.084640px;}
._239{margin-left:-1492.544400px;}
._200{margin-left:-1485.360000px;}
._2d8{margin-left:-1469.565120px;}
._137{margin-left:-1467.575280px;}
._2ed{margin-left:-1459.797840px;}
._1bd{margin-left:-1446.378960px;}
._63{margin-left:-1444.315680px;}
._d4{margin-left:-1439.388720px;}
._1f7{margin-left:-1434.810960px;}
._278{margin-left:-1432.558080px;}
._1f3{margin-left:-1424.520000px;}
._2c7{margin-left:-1422.449520px;}
._2e3{margin-left:-1421.408880px;}
._2d7{margin-left:-1417.239600px;}
._1e9{margin-left:-1406.352000px;}
._21f{margin-left:-1398.248400px;}
._256{margin-left:-1396.992000px;}
._163{margin-left:-1388.809200px;}
._272{margin-left:-1387.572720px;}
._1f5{margin-left:-1384.876800px;}
._2f5{margin-left:-1375.318080px;}
._1ab{margin-left:-1372.237680px;}
._1aa{margin-left:-1370.785440px;}
._2b9{margin-left:-1361.484480px;}
._20e{margin-left:-1355.370720px;}
._20a{margin-left:-1349.965200px;}
._1f4{margin-left:-1348.896240px;}
._2cf{margin-left:-1345.578240px;}
._2c0{margin-left:-1337.358960px;}
._216{margin-left:-1328.796720px;}
._1c6{margin-left:-1326.297120px;}
._29f{margin-left:-1320.878160px;}
._8c{margin-left:-1318.127280px;}
._247{margin-left:-1307.692560px;}
._29c{margin-left:-1295.666160px;}
._20c{margin-left:-1290.098160px;}
._1d4{margin-left:-1287.800640px;}
._201{margin-left:-1286.605440px;}
._2dc{margin-left:-1284.901440px;}
._2a2{margin-left:-1282.867920px;}
._181{margin-left:-1277.855760px;}
._102{margin-left:-1276.423440px;}
._d1{margin-left:-1269.856080px;}
._d0{margin-left:-1268.450400px;}
._1d3{margin-left:-1264.572960px;}
._29e{margin-left:-1255.408560px;}
._255{margin-left:-1254.214560px;}
._264{margin-left:-1252.158000px;}
._8b{margin-left:-1244.508960px;}
._250{margin-left:-1235.263920px;}
._2f6{margin-left:-1232.895600px;}
._1f2{margin-left:-1231.646400px;}
._147{margin-left:-1216.659600px;}
._262{margin-left:-1215.425040px;}
._13e{margin-left:-1207.169280px;}
._140{margin-left:-1203.448560px;}
._2a1{margin-left:-1197.981600px;}
._223{margin-left:-1192.168800px;}
._146{margin-left:-1190.134560px;}
._19a{margin-left:-1187.859360px;}
._100{margin-left:-1184.162400px;}
._101{margin-left:-1182.974640px;}
._2e9{margin-left:-1179.892560px;}
._12d{margin-left:-1177.745040px;}
._1ca{margin-left:-1175.182800px;}
._12e{margin-left:-1173.654960px;}
._bf{margin-left:-1167.768240px;}
._18d{margin-left:-1158.316560px;}
._2d2{margin-left:-1155.612720px;}
._e2{margin-left:-1153.733280px;}
._236{margin-left:-1149.931200px;}
._1db{margin-left:-1144.043280px;}
._254{margin-left:-1142.411040px;}
._c0{margin-left:-1138.135200px;}
._1a5{margin-left:-1133.476320px;}
._204{margin-left:-1130.152080px;}
._2cc{margin-left:-1127.502240px;}
._118{margin-left:-1122.768480px;}
._9f{margin-left:-1117.340160px;}
._290{margin-left:-1115.617920px;}
._11d{margin-left:-1113.643680px;}
._2d6{margin-left:-1111.160880px;}
._117{margin-left:-1108.504560px;}
._206{margin-left:-1106.979600px;}
._22c{margin-left:-1103.805840px;}
._a0{margin-left:-1102.659840px;}
._28b{margin-left:-1095.748320px;}
._2f1{margin-left:-1092.812160px;}
._3c{margin-left:-1086.961440px;}
._9e{margin-left:-1081.799760px;}
._22b{margin-left:-1080.048720px;}
._265{margin-left:-1071.622320px;}
._180{margin-left:-1068.964560px;}
._2cb{margin-left:-1067.343120px;}
._27e{margin-left:-1059.978000px;}
._228{margin-left:-1055.622720px;}
._23{margin-left:-1052.710560px;}
._dd{margin-left:-1050.014400px;}
._193{margin-left:-1045.516320px;}
._2d5{margin-left:-1044.355680px;}
._220{margin-left:-1040.155920px;}
._2bb{margin-left:-1034.179200px;}
._1e6{margin-left:-1031.687760px;}
._224{margin-left:-1029.080640px;}
._267{margin-left:-1023.987360px;}
._157{margin-left:-1015.822320px;}
._26e{margin-left:-1012.990560px;}
._1b7{margin-left:-1011.210480px;}
._28e{margin-left:-1008.186000px;}
._41{margin-left:-1006.717920px;}
._1fc{margin-left:-1004.456640px;}
._1c0{margin-left:-998.616000px;}
._172{margin-left:-997.018080px;}
._2ba{margin-left:-994.335360px;}
._bb{margin-left:-988.304160px;}
._128{margin-left:-984.762240px;}
._266{margin-left:-982.738320px;}
._88{margin-left:-977.582880px;}
._1f{margin-left:-976.394640px;}
._248{margin-left:-967.170240px;}
._2d3{margin-left:-963.930000px;}
._1ea{margin-left:-962.811840px;}
._24{margin-left:-957.985680px;}
._1dc{margin-left:-955.258560px;}
._2de{margin-left:-951.580320px;}
._111{margin-left:-947.226240px;}
._26f{margin-left:-941.552640px;}
._c9{margin-left:-940.065120px;}
._110{margin-left:-938.909040px;}
._194{margin-left:-932.482320px;}
._94{margin-left:-930.777120px;}
._ba{margin-left:-927.915600px;}
._27{margin-left:-925.517520px;}
._24f{margin-left:-921.154080px;}
._205{margin-left:-919.851600px;}
._13d{margin-left:-917.274720px;}
._87{margin-left:-915.135600px;}
._1c7{margin-left:-913.088160px;}
._2eb{margin-left:-909.986880px;}
._12b{margin-left:-908.594880px;}
._277{margin-left:-905.597520px;}
._1fb{margin-left:-903.228960px;}
._252{margin-left:-901.168080px;}
._1f9{margin-left:-899.604240px;}
._1f8{margin-left:-897.745440px;}
._10c{margin-left:-895.568160px;}
._1da{margin-left:-892.249680px;}
._244{margin-left:-890.974320px;}
._b6{margin-left:-886.831200px;}
._23c{margin-left:-879.412320px;}
._268{margin-left:-874.057920px;}
._296{margin-left:-871.625520px;}
._95{margin-left:-869.310960px;}
._db{margin-left:-868.106880px;}
._8{margin-left:-866.337360px;}
._284{margin-left:-864.128400px;}
._173{margin-left:-863.115240px;}
._17d{margin-left:-858.478560px;}
._109{margin-left:-856.561440px;}
._119{margin-left:-854.476320px;}
._24d{margin-left:-852.025320px;}
._10a{margin-left:-849.149280px;}
._2e4{margin-left:-842.781600px;}
._1e4{margin-left:-840.917040px;}
._174{margin-left:-837.838320px;}
._171{margin-left:-836.791440px;}
._2{margin-left:-834.980400px;}
._ec{margin-left:-833.516160px;}
._191{margin-left:-830.641200px;}
._156{margin-left:-829.165440px;}
._106{margin-left:-826.174800px;}
._242{margin-left:-822.840480px;}
._2b4{margin-left:-820.279200px;}
._28c{margin-left:-816.973920px;}
._2b1{margin-left:-814.688160px;}
._2a5{margin-left:-810.829440px;}
._b3{margin-left:-809.328960px;}
._185{margin-left:-807.349680px;}
._122{margin-left:-805.720800px;}
._b2{margin-left:-804.109200px;}
._121{margin-left:-802.892400px;}
._288{margin-left:-800.765520px;}
._28d{margin-left:-798.725520px;}
._1e7{margin-left:-797.040240px;}
._282{margin-left:-793.852080px;}
._16f{margin-left:-791.979840px;}
._16e{margin-left:-789.625440px;}
._2c4{margin-left:-788.166000px;}
._24e{margin-left:-786.963840px;}
._b4{margin-left:-784.579920px;}
._155{margin-left:-782.375040px;}
._1fd{margin-left:-779.991120px;}
._42{margin-left:-777.141360px;}
._154{margin-left:-776.065440px;}
._2c1{margin-left:-774.408240px;}
._2aa{margin-left:-771.528960px;}
._c3{margin-left:-768.911040px;}
._148{margin-left:-766.713600px;}
._c4{margin-left:-763.524720px;}
._cd{margin-left:-761.119680px;}
._1cc{margin-left:-759.556080px;}
._221{margin-left:-757.954560px;}
._259{margin-left:-753.271680px;}
._2ab{margin-left:-749.338080px;}
._2c3{margin-left:-747.700800px;}
._10f{margin-left:-742.263120px;}
._81{margin-left:-740.786400px;}
._28f{margin-left:-738.779760px;}
._80{margin-left:-737.460000px;}
._99{margin-left:-734.706480px;}
._2d4{margin-left:-732.588960px;}
._1d1{margin-left:-730.662720px;}
._1c9{margin-left:-728.175840px;}
._e6{margin-left:-726.422160px;}
._113{margin-left:-725.136720px;}
._98{margin-left:-724.105440px;}
._65{margin-left:-722.489280px;}
._241{margin-left:-720.463200px;}
._166{margin-left:-716.801040px;}
._160{margin-left:-715.312800px;}
._25d{margin-left:-714.249600px;}
._2b2{margin-left:-708.110160px;}
._2b5{margin-left:-705.834480px;}
._27b{margin-left:-704.424000px;}
._27a{margin-left:-699.654240px;}
._234{margin-left:-696.535080px;}
._5a{margin-left:-694.231440px;}
._22e{margin-left:-692.158320px;}
._141{margin-left:-689.833920px;}
._1a7{margin-left:-688.699200px;}
._59{margin-left:-687.435600px;}
._21d{margin-left:-685.954560px;}
._34{margin-left:-684.520800px;}
._75{margin-left:-682.962480px;}
._74{margin-left:-681.625440px;}
._1cd{margin-left:-679.739040px;}
._229{margin-left:-678.075600px;}
._232{margin-left:-676.451760px;}
._fa{margin-left:-673.775280px;}
._175{margin-left:-672.090960px;}
._1ac{margin-left:-667.538160px;}
._22a{margin-left:-664.818960px;}
._294{margin-left:-663.045600px;}
._230{margin-left:-661.761840px;}
._47{margin-left:-659.305440px;}
._2dd{margin-left:-657.359760px;}
._269{margin-left:-656.005680px;}
._93{margin-left:-654.050160px;}
._49{margin-left:-652.669440px;}
._240{margin-left:-650.448000px;}
._120{margin-left:-646.733520px;}
._64{margin-left:-644.955600px;}
._11a{margin-left:-643.009200px;}
._2a4{margin-left:-641.644080px;}
._ae{margin-left:-638.337360px;}
._135{margin-left:-636.284160px;}
._134{margin-left:-631.225440px;}
._13a{margin-left:-629.128080px;}
._d{margin-left:-627.997680px;}
._210{margin-left:-625.909920px;}
._f9{margin-left:-624.373920px;}
._2c8{margin-left:-623.231520px;}
._27d{margin-left:-621.882720px;}
._298{margin-left:-620.460720px;}
._89{margin-left:-618.827520px;}
._17e{margin-left:-616.788240px;}
._203{margin-left:-613.468320px;}
._2a0{margin-left:-611.606400px;}
._189{margin-left:-609.896160px;}
._297{margin-left:-608.241120px;}
._4a{margin-left:-606.651600px;}
._14c{margin-left:-604.594560px;}
._1a4{margin-left:-603.217200px;}
._15f{margin-left:-601.527840px;}
._23b{margin-left:-599.463960px;}
._1a3{margin-left:-597.206400px;}
._f3{margin-left:-595.434720px;}
._1ee{margin-left:-593.747760px;}
._35{margin-left:-592.190880px;}
._211{margin-left:-590.035680px;}
._212{margin-left:-588.052320px;}
._208{margin-left:-585.917040px;}
._104{margin-left:-582.771120px;}
._103{margin-left:-581.631120px;}
._fb{margin-left:-579.840480px;}
._199{margin-left:-576.355440px;}
._29d{margin-left:-573.117600px;}
._11f{margin-left:-572.052960px;}
._11c{margin-left:-570.657840px;}
._71{margin-left:-568.859760px;}
._2c6{margin-left:-567.287760px;}
._8a{margin-left:-563.332560px;}
._10e{margin-left:-560.526720px;}
._270{margin-left:-558.554640px;}
._25a{margin-left:-553.374480px;}
._ce{margin-left:-551.850960px;}
._28a{margin-left:-548.946720px;}
._f4{margin-left:-547.660560px;}
._11e{margin-left:-545.926320px;}
._14a{margin-left:-544.335600px;}
._92{margin-left:-542.326800px;}
._2ca{margin-left:-540.984720px;}
._d5{margin-left:-539.980320px;}
._d6{margin-left:-538.276320px;}
._21b{margin-left:-537.105840px;}
._70{margin-left:-535.928160px;}
._79{margin-left:-533.887920px;}
._6e{margin-left:-532.498800px;}
._2f3{margin-left:-530.554560px;}
._1dd{margin-left:-527.968800px;}
._245{margin-left:-526.134960px;}
._1c3{margin-left:-523.788000px;}
._219{margin-left:-521.248320px;}
._27c{margin-left:-518.923200px;}
._1a1{margin-left:-517.757520px;}
._d3{margin-left:-516.341520px;}
._2b6{margin-left:-513.944160px;}
._192{margin-left:-512.753040px;}
._16d{margin-left:-511.661760px;}
._1ff{margin-left:-510.301200px;}
._16c{margin-left:-507.811920px;}
._19d{margin-left:-506.515680px;}
._187{margin-left:-504.556560px;}
._293{margin-left:-501.604320px;}
._275{margin-left:-499.768800px;}
._114{margin-left:-498.725520px;}
._274{margin-left:-496.627200px;}
._f2{margin-left:-495.255600px;}
._1d2{margin-left:-494.250240px;}
._115{margin-left:-492.522240px;}
._2c2{margin-left:-491.092800px;}
._158{margin-left:-489.485760px;}
._aa{margin-left:-487.831680px;}
._1eb{margin-left:-486.472080px;}
._1bb{margin-left:-484.913760px;}
._f8{margin-left:-483.415680px;}
._25c{margin-left:-482.194560px;}
._170{margin-left:-480.541440px;}
._2b7{margin-left:-478.845840px;}
._253{margin-left:-476.364480px;}
._4c{margin-left:-475.320000px;}
._125{margin-left:-472.129440px;}
._84{margin-left:-470.461440px;}
._2ad{margin-left:-468.266880px;}
._15c{margin-left:-465.642240px;}
._13c{margin-left:-463.794000px;}
._225{margin-left:-461.460960px;}
._8d{margin-left:-459.326880px;}
._4d{margin-left:-456.677520px;}
._1ef{margin-left:-455.466960px;}
._130{margin-left:-453.155520px;}
._161{margin-left:-452.126880px;}
._227{margin-left:-451.059360px;}
._da{margin-left:-449.470080px;}
._286{margin-left:-448.453680px;}
._91{margin-left:-447.308880px;}
._116{margin-left:-445.950480px;}
._246{margin-left:-444.595920px;}
._124{margin-left:-443.245440px;}
._f5{margin-left:-442.040640px;}
._19c{margin-left:-440.197920px;}
._132{margin-left:-437.632080px;}
._214{margin-left:-436.222800px;}
._1b9{margin-left:-435.117360px;}
._ab{margin-left:-433.816320px;}
._18b{margin-left:-431.976240px;}
._9{margin-left:-429.788160px;}
._231{margin-left:-427.926480px;}
._33{margin-left:-426.317040px;}
._1e5{margin-left:-424.594560px;}
._39{margin-left:-422.104080px;}
._29b{margin-left:-420.900720px;}
._38{margin-left:-415.818720px;}
._2a8{margin-left:-414.486480px;}
._186{margin-left:-413.465520px;}
._2e5{margin-left:-412.447200px;}
._ac{margin-left:-410.046720px;}
._fe{margin-left:-408.049680px;}
._2a9{margin-left:-406.334400px;}
._fd{margin-left:-404.678400px;}
._16b{margin-left:-403.662960px;}
._18a{margin-left:-402.085440px;}
._2d1{margin-left:-400.836480px;}
._21c{margin-left:-399.436320px;}
._215{margin-left:-398.142480px;}
._2ef{margin-left:-396.812880px;}
._6b{margin-left:-395.804640px;}
._287{margin-left:-394.713600px;}
._c8{margin-left:-393.650160px;}
._16a{margin-left:-392.612160px;}
._af{margin-left:-391.417920px;}
._2e{margin-left:-389.821440px;}
._23d{margin-left:-388.672080px;}
._15b{margin-left:-387.520800px;}
._dc{margin-left:-385.692960px;}
._1a0{margin-left:-384.346800px;}
._2f{margin-left:-382.990800px;}
._2a7{margin-left:-381.909840px;}
._60{margin-left:-379.741440px;}
._1cf{margin-left:-378.429360px;}
._260{margin-left:-376.938240px;}
._21a{margin-left:-375.258000px;}
._20d{margin-left:-373.638480px;}
._167{margin-left:-370.764480px;}
._112{margin-left:-368.461200px;}
._19e{margin-left:-367.173360px;}
._90{margin-left:-365.102400px;}
._1be{margin-left:-363.381240px;}
._f7{margin-left:-361.765440px;}
._2b8{margin-left:-359.975040px;}
._3b{margin-left:-358.866720px;}
._263{margin-left:-356.874720px;}
._18e{margin-left:-355.824240px;}
._3a{margin-left:-354.685440px;}
._169{margin-left:-352.458000px;}
._22d{margin-left:-350.799600px;}
._7c{margin-left:-348.821760px;}
._11b{margin-left:-346.825440px;}
._23e{margin-left:-345.747120px;}
._1b1{margin-left:-344.122080px;}
._8f{margin-left:-342.445440px;}
._1c1{margin-left:-341.199600px;}
._176{margin-left:-339.477120px;}
._4f{margin-left:-337.941840px;}
._283{margin-left:-336.745440px;}
._22f{margin-left:-335.548080px;}
._cb{margin-left:-334.067760px;}
._218{margin-left:-331.928640px;}
._13f{margin-left:-329.738640px;}
._2c{margin-left:-327.554160px;}
._131{margin-left:-325.696560px;}
._26b{margin-left:-324.018960px;}
._150{margin-left:-322.714560px;}
._25b{margin-left:-321.120000px;}
._13b{margin-left:-319.608240px;}
._299{margin-left:-316.933200px;}
._d2{margin-left:-315.590160px;}
._24c{margin-left:-314.519040px;}
._197{margin-left:-312.995520px;}
._20f{margin-left:-311.526240px;}
._1fe{margin-left:-310.120800px;}
._e3{margin-left:-309.060000px;}
._3e{margin-left:-307.826880px;}
._7e{margin-left:-306.067680px;}
._226{margin-left:-304.998000px;}
._7d{margin-left:-303.843120px;}
._213{margin-left:-302.058960px;}
._20b{margin-left:-300.643920px;}
._233{margin-left:-299.260320px;}
._178{margin-left:-297.478800px;}
._2c5{margin-left:-296.451960px;}
._183{margin-left:-294.656880px;}
._1d7{margin-left:-293.341440px;}
._165{margin-left:-291.682080px;}
._26c{margin-left:-290.303280px;}
._136{margin-left:-289.165440px;}
._4e{margin-left:-287.715600px;}
._164{margin-left:-286.020960px;}
._a6{margin-left:-284.644320px;}
._133{margin-left:-283.535280px;}
._273{margin-left:-282.178560px;}
._bd{margin-left:-280.995840px;}
._1ad{margin-left:-279.589680px;}
._6f{margin-left:-278.216160px;}
._2a6{margin-left:-276.482040px;}
._78{margin-left:-275.215680px;}
._b1{margin-left:-273.376320px;}
._a3{margin-left:-271.885440px;}
._2db{margin-left:-270.745920px;}
._a9{margin-left:-269.656320px;}
._77{margin-left:-268.076160px;}
._6c{margin-left:-266.073120px;}
._27f{margin-left:-264.430080px;}
._a4{margin-left:-262.552560px;}
._50{margin-left:-261.462960px;}
._289{margin-left:-260.313120px;}
._8e{margin-left:-258.697920px;}
._1f0{margin-left:-257.599920px;}
._1bf{margin-left:-255.417840px;}
._105{margin-left:-253.747200px;}
._cf{margin-left:-252.158160px;}
._82{margin-left:-250.435200px;}
._13{margin-left:-249.228000px;}
._25f{margin-left:-247.330800px;}
._22{margin-left:-245.923680px;}
._15e{margin-left:-242.976240px;}
._ca{margin-left:-241.568640px;}
._12f{margin-left:-240.085440px;}
._235{margin-left:-238.883040px;}
._184{margin-left:-237.332400px;}
._1b8{margin-left:-236.039520px;}
._151{margin-left:-234.430200px;}
._2b{margin-left:-232.790880px;}
._196{margin-left:-231.122160px;}
._21{margin-left:-228.960000px;}
._19f{margin-left:-227.874960px;}
._108{margin-left:-226.074720px;}
._26a{margin-left:-224.855760px;}
._177{margin-left:-223.525440px;}
._195{margin-left:-222.274320px;}
._51{margin-left:-218.631360px;}
._12{margin-left:-217.200000px;}
._292{margin-left:-215.662320px;}
._e4{margin-left:-214.598160px;}
._25e{margin-left:-213.298080px;}
._6d{margin-left:-212.125440px;}
._ed{margin-left:-210.085920px;}
._5c{margin-left:-208.903440px;}
._12c{margin-left:-207.560400px;}
._5b{margin-left:-206.425440px;}
._2ae{margin-left:-205.140960px;}
._17b{margin-left:-203.718240px;}
._e{margin-left:-202.356000px;}
._162{margin-left:-200.405040px;}
._2c9{margin-left:-199.322880px;}
._9c{margin-left:-196.658640px;}
._1e8{margin-left:-195.572400px;}
._17a{margin-left:-194.005440px;}
._eb{margin-left:-192.565440px;}
._9b{margin-left:-190.890000px;}
._1ec{margin-left:-189.378480px;}
._a8{margin-left:-188.324160px;}
._fc{margin-left:-186.742080px;}
._b9{margin-left:-185.496720px;}
._83{margin-left:-183.690000px;}
._7a{margin-left:-181.996800px;}
._1a8{margin-left:-180.912960px;}
._9a{margin-left:-179.581440px;}
._1af{margin-left:-177.792000px;}
._1ae{margin-left:-176.074560px;}
._66{margin-left:-175.062960px;}
._18c{margin-left:-174.018720px;}
._68{margin-left:-172.614240px;}
._295{margin-left:-171.385440px;}
._26d{margin-left:-170.355600px;}
._ff{margin-left:-169.315200px;}
._d7{margin-left:-167.349120px;}
._a7{margin-left:-165.761280px;}
._2ac{margin-left:-164.691600px;}
._14b{margin-left:-163.577760px;}
._23a{margin-left:-162.331440px;}
._b7{margin-left:-160.707600px;}
._143{margin-left:-159.506160px;}
._f{margin-left:-158.112000px;}
._5e{margin-left:-156.212160px;}
._188{margin-left:-154.926480px;}
._11{margin-left:-153.756000px;}
._5d{margin-left:-152.245440px;}
._198{margin-left:-150.783360px;}
._b0{margin-left:-149.760000px;}
._261{margin-left:-148.645440px;}
._53{margin-left:-147.541680px;}
._138{margin-left:-146.539200px;}
._142{margin-left:-145.388160px;}
._29a{margin-left:-144.322080px;}
._17c{margin-left:-143.244480px;}
._73{margin-left:-141.837120px;}
._107{margin-left:-140.489520px;}
._243{margin-left:-139.314720px;}
._a5{margin-left:-138.091680px;}
._1b0{margin-left:-136.576560px;}
._ad{margin-left:-134.274960px;}
._72{margin-left:-132.908400px;}
._179{margin-left:-131.227920px;}
._54{margin-left:-129.521280px;}
._15d{margin-left:-128.482320px;}
._1b2{margin-left:-126.720000px;}
._86{margin-left:-125.574240px;}
._20{margin-left:-123.822000px;}
._10b{margin-left:-122.115600px;}
._43{margin-left:-120.163920px;}
._69{margin-left:-118.794000px;}
._9d{margin-left:-117.577200px;}
._2f2{margin-left:-116.431920px;}
._d9{margin-left:-115.312320px;}
._d8{margin-left:-114.159600px;}
._ea{margin-left:-113.052000px;}
._285{margin-left:-111.808560px;}
._e7{margin-left:-110.310480px;}
._3{margin-left:-108.720000px;}
._67{margin-left:-106.960800px;}
._c5{margin-left:-105.445440px;}
._7f{margin-left:-103.285440px;}
._bc{margin-left:-101.804400px;}
._23f{margin-left:-100.786080px;}
._96{margin-left:-99.543600px;}
._f6{margin-left:-98.436960px;}
._cc{margin-left:-96.766560px;}
._57{margin-left:-95.190720px;}
._2e8{margin-left:-94.130400px;}
._1a9{margin-left:-93.113280px;}
._2d{margin-left:-90.983520px;}
._32{margin-left:-89.164080px;}
._153{margin-left:-87.579120px;}
._10d{margin-left:-86.016960px;}
._31{margin-left:-84.239280px;}
._58{margin-left:-82.726080px;}
._159{margin-left:-81.545040px;}
._1a2{margin-left:-80.336880px;}
._b8{margin-left:-79.164480px;}
._29{margin-left:-77.475600px;}
._56{margin-left:-75.790800px;}
._45{margin-left:-73.729200px;}
._97{margin-left:-72.339120px;}
._2a{margin-left:-70.372800px;}
._7b{margin-left:-68.564400px;}
._c1{margin-left:-67.285440px;}
._46{margin-left:-65.859120px;}
._44{margin-left:-63.795600px;}
._257{margin-left:-62.572080px;}
._c2{margin-left:-61.329360px;}
._15a{margin-left:-60.195600px;}
._76{margin-left:-59.021280px;}
._3f{margin-left:-57.003120px;}
._19b{margin-left:-55.711200px;}
._36{margin-left:-54.701280px;}
._6a{margin-left:-53.393760px;}
._5f{margin-left:-51.821280px;}
._a2{margin-left:-50.531760px;}
._40{margin-left:-49.150800px;}
._144{margin-left:-47.993280px;}
._281{margin-left:-46.457520px;}
._37{margin-left:-44.965440px;}
._123{margin-left:-43.132080px;}
._c6{margin-left:-42.121440px;}
._276{margin-left:-41.097840px;}
._52{margin-left:-39.817200px;}
._30{margin-left:-37.875600px;}
._2d0{margin-left:-36.731520px;}
._28{margin-left:-35.715600px;}
._139{margin-left:-34.442160px;}
._4b{margin-left:-33.337200px;}
._55{margin-left:-31.966560px;}
._f0{margin-left:-30.937680px;}
._25{margin-left:-29.877120px;}
._149{margin-left:-28.473120px;}
._10{margin-left:-26.244000px;}
._85{margin-left:-23.365440px;}
._145{margin-left:-20.951040px;}
._be{margin-left:-19.352400px;}
._61{margin-left:-17.713200px;}
._62{margin-left:-16.233120px;}
._3d{margin-left:-14.992320px;}
._b5{margin-left:-13.787760px;}
._c{margin-left:-12.623760px;}
._b{margin-left:-11.437920px;}
._48{margin-left:-10.425840px;}
._7{margin-left:-9.154560px;}
._5{margin-left:-8.094720px;}
._26{margin-left:-6.240720px;}
._14{margin-left:-4.867680px;}
._6{margin-left:-3.538080px;}
._4{margin-left:-2.464320px;}
._1{margin-left:-1.171680px;}
._0{width:1.092000px;}
._17{width:2.812800px;}
._18{width:4.003920px;}
._19{width:5.063280px;}
._16{width:6.812640px;}
._15{width:7.888320px;}
._1a{width:9.452880px;}
._1e{width:11.175120px;}
._1d{width:12.255360px;}
._1c{width:13.376160px;}
._1b{width:14.952240px;}
._1e1{width:16.076400px;}
._190{width:17.077680px;}
._168{width:18.192960px;}
._24b{width:19.460400px;}
._238{width:20.950560px;}
._237{width:22.178160px;}
._280{width:23.344080px;}
._182{width:24.684480px;}
.fc3{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fsd{font-size:88.795869px;}
.fs2{font-size:95.760000px;}
.fse{font-size:100.938894px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.600000px;}
.y5{bottom:4.140000px;}
.y32{bottom:8.610000px;}
.y6{bottom:57.420000px;}
.y4{bottom:77.040000px;}
.yfe{bottom:110.736000px;}
.y8a{bottom:116.856000px;}
.y74{bottom:117.036000px;}
.y186{bottom:121.356000px;}
.y4e{bottom:121.536000px;}
.ya4{bottom:126.756000px;}
.y30{bottom:130.536000px;}
.yfd{bottom:131.256000px;}
.y11e{bottom:131.436000px;}
.y155{bottom:131.976000px;}
.y185{bottom:138.816000px;}
.yfc{bottom:139.536000px;}
.y11d{bottom:139.716000px;}
.y169{bottom:139.896000px;}
.y89{bottom:148.536000px;}
.y73{bottom:149.256000px;}
.y4d{bottom:157.350000px;}
.y88{bottom:158.250000px;}
.y11c{bottom:158.430000px;}
.yfb{bottom:158.610000px;}
.y72{bottom:158.970000px;}
.y2f{bottom:159.510000px;}
.y184{bottom:165.090000px;}
.yfa{bottom:168.330000px;}
.ya3{bottom:174.270000px;}
.y168{bottom:175.890000px;}
.y154{bottom:176.970000px;}
.y87{bottom:180.750000px;}
.y71{bottom:181.290000px;}
.y183{bottom:182.370000px;}
.yf9{bottom:184.350000px;}
.y2e{bottom:185.970000px;}
.y13e{bottom:189.930000px;}
.y86{bottom:190.470000px;}
.y11b{bottom:190.650000px;}
.ydb{bottom:191.010000px;}
.y4c{bottom:193.170000px;}
.y11a{bottom:198.210000px;}
.yf8{bottom:205.050000px;}
.y182{bottom:208.650000px;}
.y2d{bottom:212.070000px;}
.y85{bottom:212.610000px;}
.y70{bottom:212.790000px;}
.ya2{bottom:212.970000px;}
.y119{bottom:215.670000px;}
.y13d{bottom:221.790000px;}
.yda{bottom:222.330000px;}
.y6f{bottom:222.510000px;}
.yf7{bottom:225.750000px;}
.y181{bottom:225.930000px;}
.y2c{bottom:229.350000px;}
.yf6{bottom:233.310000px;}
.ybc{bottom:237.810000px;}
.y4b{bottom:237.990000px;}
.y84{bottom:243.930000px;}
.y6e{bottom:244.830000px;}
.yf5{bottom:245.550000px;}
.y2b{bottom:246.630000px;}
.y153{bottom:248.610000px;}
.ya1{bottom:248.970000px;}
.y167{bottom:252.030000px;}
.y13c{bottom:253.290000px;}
.y83{bottom:253.650000px;}
.y166{bottom:258.330000px;}
.y13b{bottom:263.010000px;}
.y2a{bottom:263.730000px;}
.y82{bottom:268.410000px;}
.y180{bottom:269.310000px;}
.y4a{bottom:273.990000px;}
.yd9{bottom:275.430000px;}
.y6d{bottom:276.150000px;}
.y29{bottom:281.010000px;}
.y118{bottom:282.810000px;}
.y6c{bottom:283.710000px;}
.y13a{bottom:284.610000px;}
.ya0{bottom:284.790000px;}
.yd8{bottom:285.150000px;}
.yf4{bottom:292.710000px;}
.y152{bottom:293.430000px;}
.y17f{bottom:295.410000px;}
.y28{bottom:298.290000px;}
.yd7{bottom:299.730000px;}
.ybb{bottom:300.810000px;}
.y165{bottom:303.150000px;}
.y80{bottom:305.310000px;}
.y6b{bottom:307.650000px;}
.y49{bottom:309.810000px;}
.y17e{bottom:312.870000px;}
.y6a{bottom:315.210000px;}
.y27{bottom:315.570000px;}
.y139{bottom:316.290000px;}
.y81{bottom:316.650000px;}
.y117{bottom:318.630000px;}
.y9f{bottom:320.610000px;}
.y151{bottom:325.830000px;}
.y138{bottom:326.010000px;}
.yf3{bottom:328.530000px;}
.y150{bottom:329.430000px;}
.y69{bottom:331.950000px;}
.y26{bottom:332.850000px;}
.yba{bottom:336.630000px;}
.y17d{bottom:338.970000px;}
.y164{bottom:339.150000px;}
.y7f{bottom:342.210000px;}
.y48{bottom:345.630000px;}
.y137{bottom:348.510000px;}
.y25{bottom:349.950000px;}
.y116{bottom:354.675000px;}
.y9e{bottom:356.475000px;}
.y136{bottom:358.275000px;}
.yd5{bottom:363.495000px;}
.yf2{bottom:364.575000px;}
.y14f{bottom:365.295000px;}
.y24{bottom:367.275000px;}
.yb9{bottom:372.675000px;}
.yd6{bottom:374.835000px;}
.y67{bottom:375.375000px;}
.y135{bottom:380.595000px;}
.y47{bottom:381.675000px;}
.y17c{bottom:382.575000px;}
.y23{bottom:384.555000px;}
.y163{bottom:385.095000px;}
.y68{bottom:386.715000px;}
.y7e{bottom:387.975000px;}
.y134{bottom:390.315000px;}
.y115{bottom:390.495000px;}
.y9c{bottom:392.655000px;}
.yd4{bottom:399.495000px;}
.yf1{bottom:400.395000px;}
.y22{bottom:401.835000px;}
.y9d{bottom:403.995000px;}
.y133{bottom:406.335000px;}
.yb8{bottom:408.495000px;}
.y17b{bottom:408.855000px;}
.y14e{bottom:410.115000px;}
.y65{bottom:411.195000px;}
.y46{bottom:417.495000px;}
.y21{bottom:419.115000px;}
.y162{bottom:421.815000px;}
.y66{bottom:422.535000px;}
.y17a{bottom:426.135000px;}
.y114{bottom:426.315000px;}
.y132{bottom:427.035000px;}
.y7d{bottom:433.515000px;}
.y131{bottom:435.315000px;}
.yef{bottom:436.215000px;}
.y20{bottom:436.395000px;}
.y9b{bottom:438.195000px;}
.yd2{bottom:445.035000px;}
.y14d{bottom:446.115000px;}
.y64{bottom:447.015000px;}
.yf0{bottom:447.555000px;}
.y179{bottom:452.955000px;}
.y45{bottom:453.315000px;}
.y1f{bottom:453.495000px;}
.yd3{bottom:456.375000px;}
.y1a2{bottom:456.735000px;}
.y113{bottom:458.715000px;}
.y112{bottom:462.315000px;}
.y161{bottom:467.355000px;}
.y1e{bottom:470.775000px;}
.yee{bottom:472.035000px;}
.y9a{bottom:474.015000px;}
.y7c{bottom:479.955000px;}
.yd1{bottom:481.035000px;}
.y63{bottom:483.015000px;}
.y1d{bottom:488.055000px;}
.y44{bottom:489.135000px;}
.y178{bottom:490.755000px;}
.y14c{bottom:490.935000px;}
.yb7{bottom:499.035000px;}
.y160{bottom:503.535000px;}
.yed{bottom:508.035000px;}
.y1a1{bottom:509.295000px;}
.y99{bottom:510.015000px;}
.y1c{bottom:515.055000px;}
.y12f{bottom:516.135000px;}
.ycf{bottom:517.035000px;}
.y62{bottom:518.835000px;}
.y14b{bottom:526.755000px;}
.y130{bottom:527.475000px;}
.y7b{bottom:528.015000px;}
.yd0{bottom:528.375000px;}
.y43{bottom:534.315000px;}
.yb6{bottom:535.035000px;}
.y1a0{bottom:535.395000px;}
.y177{bottom:536.655000px;}
.yec{bottom:543.855000px;}
.y1b{bottom:544.215000px;}
.y98{bottom:545.835000px;}
.y15f{bottom:549.255000px;}
.y12e{bottom:552.135000px;}
.y111{bottom:552.855000px;}
.ycd{bottom:558.435000px;}
.ycc{bottom:562.575000px;}
.y1a{bottom:563.295000px;}
.y61{bottom:563.835000px;}
.yb5{bottom:570.855000px;}
.y42{bottom:571.575000px;}
.y176{bottom:573.375000px;}
.y79{bottom:573.555000px;}
.yce{bottom:573.915000px;}
.y19f{bottom:579.135000px;}
.yeb{bottom:579.675000px;}
.y97{bottom:581.655000px;}
.y19{bottom:582.195000px;}
.y7a{bottom:584.895000px;}
.y15e{bottom:585.975000px;}
.y110{bottom:597.675000px;}
.ycb{bottom:598.575000px;}
.y41{bottom:601.095000px;}
.y19e{bottom:605.955000px;}
.yb4{bottom:606.675000px;}
.y14a{bottom:607.755000px;}
.y18{bottom:608.835000px;}
.y60{bottom:609.555000px;}
.y96{bottom:617.505000px;}
.y175{bottom:618.945000px;}
.y17{bottom:620.205000px;}
.ye9{bottom:624.705000px;}
.y12d{bottom:630.105000px;}
.y15d{bottom:631.905000px;}
.y12c{bottom:633.705000px;}
.y19d{bottom:635.145000px;}
.yea{bottom:636.045000px;}
.yb3{bottom:642.705000px;}
.yca{bottom:643.425000px;}
.y40{bottom:644.505000px;}
.y5f{bottom:645.405000px;}
.y16{bottom:646.845000px;}
.y149{bottom:653.325000px;}
.y95{bottom:653.505000px;}
.y10f{bottom:654.045000px;}
.y174{bottom:655.125000px;}
.y15{bottom:658.185000px;}
.ye8{bottom:660.525000px;}
.y19c{bottom:661.065000px;}
.y12a{bottom:669.525000px;}
.y10e{bottom:675.105000px;}
.y15c{bottom:677.445000px;}
.yb2{bottom:678.525000px;}
.y10d{bottom:678.705000px;}
.y12b{bottom:680.865000px;}
.y5e{bottom:681.225000px;}
.y14{bottom:684.645000px;}
.y94{bottom:685.725000px;}
.yc9{bottom:688.245000px;}
.y148{bottom:689.145000px;}
.y3f{bottom:689.325000px;}
.y19b{bottom:695.805000px;}
.ye7{bottom:696.345000px;}
.y13{bottom:696.525000px;}
.y173{bottom:700.665000px;}
.y129{bottom:705.345000px;}
.y78{bottom:712.365000px;}
.y15b{bottom:713.445000px;}
.yb1{bottom:714.345000px;}
.y5d{bottom:717.045000px;}
.y12{bottom:717.225000px;}
.y19a{bottom:721.905000px;}
.y10c{bottom:724.245000px;}
.y3e{bottom:725.145000px;}
.ye6{bottom:732.165000px;}
.yc8{bottom:733.245000px;}
.y128{bottom:737.925000px;}
.y199{bottom:739.365000px;}
.y127{bottom:741.525000px;}
.y172{bottom:745.665000px;}
.yb0{bottom:750.165000px;}
.y5c{bottom:753.045000px;}
.y11{bottom:756.645000px;}
.y15a{bottom:759.345000px;}
.y10b{bottom:760.245000px;}
.y147{bottom:760.965000px;}
.y3d{bottom:761.145000px;}
.y198{bottom:765.285000px;}
.ye5{bottom:768.165000px;}
.yc7{bottom:778.065000px;}
.y171{bottom:782.565000px;}
.yae{bottom:786.345000px;}
.y125{bottom:787.065000px;}
.y146{bottom:788.685000px;}
.y5b{bottom:788.865000px;}
.y197{bottom:791.565000px;}
.y10a{bottom:796.065000px;}
.y10{bottom:796.785000px;}
.y3c{bottom:796.965000px;}
.y92{bottom:797.145000px;}
.yaf{bottom:797.685000px;}
.y126{bottom:798.405000px;}
.y159{bottom:804.885000px;}
.y93{bottom:808.485000px;}
.y196{bottom:809.025000px;}
.ye4{bottom:813.165000px;}
.yc4{bottom:813.885000px;}
.yc5{bottom:817.125000px;}
.y124{bottom:822.885000px;}
.y5a{bottom:824.685000px;}
.yc6{bottom:825.225000px;}
.y195{bottom:826.305000px;}
.y170{bottom:828.105000px;}
.yad{bottom:831.885000px;}
.y3b{bottom:832.785000px;}
.yf{bottom:836.385000px;}
.y158{bottom:840.885000px;}
.y145{bottom:841.605000px;}
.y91{bottom:842.685000px;}
.yc3{bottom:849.885000px;}
.y194{bottom:852.585000px;}
.y59{bottom:857.085000px;}
.ye2{bottom:858.705000px;}
.y58{bottom:860.685000px;}
.y109{bottom:864.285000px;}
.yac{bottom:867.705000px;}
.y108{bottom:867.885000px;}
.y3a{bottom:868.605000px;}
.ye3{bottom:870.045000px;}
.y16f{bottom:873.105000px;}
.y144{bottom:877.605000px;}
.y90{bottom:878.730000px;}
.y193{bottom:878.910000px;}
.ye1{bottom:885.570000px;}
.y157{bottom:886.830000px;}
.ye{bottom:887.010000px;}
.y123{bottom:891.330000px;}
.ye0{bottom:894.750000px;}
.y122{bottom:894.930000px;}
.yc2{bottom:895.650000px;}
.yab{bottom:903.750000px;}
.y39{bottom:904.650000px;}
.y192{bottom:905.010000px;}
.y56{bottom:905.550000px;}
.y143{bottom:913.470000px;}
.y107{bottom:913.650000px;}
.y8f{bottom:914.550000px;}
.y57{bottom:916.890000px;}
.y16e{bottom:919.050000px;}
.ydf{bottom:930.570000px;}
.y191{bottom:931.110000px;}
.yc1{bottom:931.470000px;}
.y156{bottom:932.370000px;}
.yd{bottom:934.350000px;}
.yaa{bottom:939.570000px;}
.y38{bottom:940.470000px;}
.y55{bottom:941.370000px;}
.y190{bottom:948.570000px;}
.y142{bottom:949.290000px;}
.y106{bottom:949.470000px;}
.y8e{bottom:950.370000px;}
.yc{bottom:958.470000px;}
.y16d{bottom:964.590000px;}
.yde{bottom:966.570000px;}
.ybf{bottom:967.290000px;}
.y77{bottom:973.590000px;}
.y18f{bottom:974.670000px;}
.ya9{bottom:975.390000px;}
.y37{bottom:976.290000px;}
.y54{bottom:977.190000px;}
.yc0{bottom:978.630000px;}
.yb{bottom:982.590000px;}
.y105{bottom:985.290000px;}
.y8d{bottom:986.190000px;}
.y76{bottom:988.530000px;}
.y18e{bottom:992.130000px;}
.y141{bottom:994.470000px;}
.y16c{bottom:1000.590000px;}
.ybe{bottom:1003.290000px;}
.y120{bottom:1008.330000px;}
.y18d{bottom:1009.410000px;}
.ya8{bottom:1011.390000px;}
.y36{bottom:1012.290000px;}
.y53{bottom:1013.190000px;}
.ya{bottom:1015.890000px;}
.y103{bottom:1021.290000px;}
.y8c{bottom:1022.190000px;}
.y121{bottom:1023.630000px;}
.y104{bottom:1032.630000px;}
.y18c{bottom:1035.510000px;}
.y140{bottom:1035.870000px;}
.ybd{bottom:1039.110000px;}
.y13f{bottom:1040.010000px;}
.y16b{bottom:1046.490000px;}
.ya6{bottom:1047.390000px;}
.y35{bottom:1048.110000px;}
.y52{bottom:1049.010000px;}
.y9{bottom:1050.450000px;}
.y102{bottom:1053.510000px;}
.y101{bottom:1057.110000px;}
.y8b{bottom:1058.010000px;}
.ya7{bottom:1058.730000px;}
.y18b{bottom:1061.610000px;}
.y18a{bottom:1079.070000px;}
.y11f{bottom:1080.510000px;}
.y16a{bottom:1083.210000px;}
.y34{bottom:1083.930000px;}
.ya5{bottom:1084.110000px;}
.y75{bottom:1084.830000px;}
.y8{bottom:1090.590000px;}
.y100{bottom:1092.930000px;}
.y50{bottom:1093.830000px;}
.y189{bottom:1096.350000px;}
.y51{bottom:1105.170000px;}
.y31{bottom:1121.580000px;}
.y33{bottom:1121.760000px;}
.y188{bottom:1122.450000px;}
.yff{bottom:1125.870000px;}
.ydc{bottom:1126.230000px;}
.y7{bottom:1129.110000px;}
.y4f{bottom:1129.830000px;}
.y187{bottom:1139.910000px;}
.ydd{bottom:1141.200000px;}
.y3{bottom:1155.600000px;}
.y1{bottom:1168.560000px;}
.h2{height:17.280000px;}
.h5{height:18.396000px;}
.h15{height:21.420000px;}
.h12{height:35.418516px;}
.h4{height:37.546875px;}
.h2a{height:39.682617px;}
.h1e{height:40.550625px;}
.h20{height:43.554375px;}
.h36{height:47.344922px;}
.h22{height:49.464844px;}
.h32{height:50.312812px;}
.h14{height:50.685117px;}
.h33{height:52.417969px;}
.h39{height:52.628906px;}
.h3f{height:53.428008px;}
.h37{height:55.968750px;}
.h31{height:56.320312px;}
.h1c{height:58.038750px;}
.h3{height:62.327813px;}
.hc{height:63.344531px;}
.h16{height:65.884219px;}
.h9{height:67.824844px;}
.h13{height:68.084282px;}
.h8{height:69.086250px;}
.h3c{height:70.370508px;}
.h30{height:70.664062px;}
.h6{height:72.708398px;}
.h11{height:74.004654px;}
.h3e{height:74.953125px;}
.h10{height:75.093750px;}
.h1f{height:77.165156px;}
.h3b{height:77.885156px;}
.h24{height:78.563672px;}
.h21{height:81.338403px;}
.h18{height:87.717656px;}
.hb{height:87.859687px;}
.h26{height:89.157656px;}
.h17{height:89.307422px;}
.h3d{height:92.461604px;}
.h2e{height:92.757656px;}
.h7{height:95.245664px;}
.h3a{height:98.045156px;}
.h29{height:98.929688px;}
.h23{height:99.485156px;}
.h1a{height:99.874688px;}
.h25{height:99.957656px;}
.hf{height:100.722656px;}
.h28{height:101.397656px;}
.h1d{height:102.117656px;}
.h34{height:102.267422px;}
.h2d{height:102.837656px;}
.h38{height:103.557656px;}
.h35{height:103.707422px;}
.h2c{height:104.277656px;}
.h27{height:106.437656px;}
.ha{height:112.640625px;}
.h19{height:112.917656px;}
.h2b{height:114.357656px;}
.hd{height:122.881641px;}
.h2f{height:124.437656px;}
.he{height:137.421562px;}
.h1b{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:48.240000px;}
.w4{width:52.560000px;}
.w5{width:259.740000px;}
.w3{width:669.735000px;}
.w2{width:719.955000px;}
.w7{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:13.716000px;}
.x1b{left:14.796000px;}
.x6{left:28.980000px;}
.x2{left:31.129500px;}
.x38{left:79.416000px;}
.x3{left:84.996000px;}
.x1{left:86.626500px;}
.x4c{left:90.216000px;}
.x7e{left:92.016000px;}
.x3e{left:94.536000px;}
.xc8{left:96.516000px;}
.xc9{left:98.316000px;}
.xe1{left:106.236000px;}
.x24{left:109.476000px;}
.xb{left:112.716000px;}
.x15{left:114.336000px;}
.xc7{left:118.836000px;}
.x17{left:120.636000px;}
.xf6{left:127.476000px;}
.xea{left:131.796000px;}
.x1a{left:133.380000px;}
.xc{left:147.276000px;}
.xc2{left:149.616000px;}
.xda{left:151.956000px;}
.xee{left:155.190000px;}
.xc3{left:156.630000px;}
.x5f{left:161.316000px;}
.x12{left:164.550000px;}
.xb8{left:166.890000px;}
.xb7{left:173.548125px;}
.x97{left:187.768125px;}
.xb5{left:195.690000px;}
.xed{left:200.550000px;}
.xb6{left:207.210000px;}
.x83{left:208.470000px;}
.x62{left:213.870000px;}
.x67{left:226.110000px;}
.x8d{left:234.390000px;}
.xb4{left:235.650000px;}
.xbd{left:247.935000px;}
.x84{left:259.995000px;}
.xbf{left:262.515000px;}
.x9d{left:263.910000px;}
.x3c{left:268.095000px;}
.x68{left:269.490000px;}
.x89{left:271.153125px;}
.x7d{left:273.855000px;}
.x7c{left:275.295000px;}
.x6b{left:278.895000px;}
.x3b{left:280.693125px;}
.x72{left:281.955000px;}
.xb3{left:285.375000px;}
.x3a{left:288.435000px;}
.x31{left:292.035000px;}
.x70{left:296.175000px;}
.x8e{left:297.255000px;}
.xd8{left:299.055000px;}
.xba{left:304.993125px;}
.xc1{left:308.775000px;}
.x95{left:312.735000px;}
.xaf{left:316.515000px;}
.xae{left:323.173125px;}
.x39{left:334.875000px;}
.xd{left:344.595000px;}
.xac{left:346.035000px;}
.x13{left:348.555000px;}
.xad{left:351.075000px;}
.xd7{left:353.053125px;}
.xe0{left:354.673125px;}
.x14{left:360.255000px;}
.x6d{left:361.830000px;}
.x16{left:363.315000px;}
.x99{left:366.915000px;}
.xe7{left:370.695000px;}
.xf{left:377.535000px;}
.xab{left:378.975000px;}
.xcd{left:384.015000px;}
.x6e{left:386.535000px;}
.x42{left:387.975000px;}
.xde{left:392.473125px;}
.xf4{left:395.535000px;}
.x93{left:396.795000px;}
.xb2{left:398.595000px;}
.x82{left:400.215000px;}
.xa9{left:404.355000px;}
.x81{left:406.873125px;}
.x19{left:409.965000px;}
.x34{left:411.045000px;}
.xd5{left:415.005000px;}
.xb1{left:420.045000px;}
.xaa{left:422.175000px;}
.xb9{left:423.465000px;}
.xd4{left:427.603125px;}
.xe3{left:429.225000px;}
.x9{left:431.745000px;}
.xa{left:434.985000px;}
.x10{left:438.405000px;}
.xa4{left:441.825000px;}
.xe9{left:442.905000px;}
.x18{left:446.505000px;}
.x22{left:451.545000px;}
.x6f{left:452.595000px;}
.x4f{left:453.885000px;}
.x94{left:455.685000px;}
.xbc{left:457.485000px;}
.x4e{left:460.543125px;}
.x56{left:462.495000px;}
.x4{left:464.458500px;}
.x1d{left:466.485000px;}
.x92{left:468.285000px;}
.xe6{left:474.945000px;}
.x91{left:477.645000px;}
.xe2{left:479.265000px;}
.xdd{left:482.145000px;}
.x90{left:484.303125px;}
.xc5{left:487.185000px;}
.x11{left:491.145000px;}
.xeb{left:492.585000px;}
.x85{left:494.385000px;}
.x57{left:497.595000px;}
.x9b{left:501.045000px;}
.x8f{left:506.625000px;}
.xf2{left:509.865000px;}
.x49{left:516.165000px;}
.xc0{left:518.325000px;}
.xe4{left:521.565000px;}
.x54{left:524.085000px;}
.xcc{left:529.305000px;}
.x35{left:532.005000px;}
.x27{left:534.525000px;}
.x37{left:540.465000px;}
.x9e{left:541.545000px;}
.xa7{left:543.345000px;}
.x58{left:545.475000px;}
.xdf{left:549.285000px;}
.x66{left:550.545000px;}
.xec{left:553.965000px;}
.x1e{left:556.665000px;}
.x71{left:560.625000px;}
.x6a{left:565.305000px;}
.xa8{left:567.285000px;}
.xd1{left:569.805000px;}
.x8b{left:572.145000px;}
.x79{left:575.790000px;}
.x29{left:577.725000px;}
.x48{left:580.830000px;}
.x51{left:583.350000px;}
.x50{left:592.348125px;}
.x9c{left:594.150000px;}
.xf0{left:595.590000px;}
.x7a{left:602.610000px;}
.xdc{left:604.948125px;}
.x80{left:610.350000px;}
.xd3{left:614.310000px;}
.x4d{left:617.505000px;}
.x77{left:621.510000px;}
.x46{left:624.570000px;}
.xc6{left:626.190000px;}
.x76{left:628.168125px;}
.x69{left:632.490000px;}
.xd2{left:634.650000px;}
.x7f{left:637.350000px;}
.x3d{left:641.310000px;}
.x75{left:642.750000px;}
.x88{left:644.730000px;}
.x53{left:646.710000px;}
.x44{left:652.830000px;}
.x41{left:654.990000px;}
.xa5{left:657.690000px;}
.x65{left:660.210000px;}
.x98{left:661.470000px;}
.x59{left:664.995000px;}
.x40{left:667.588125px;}
.x86{left:671.910000px;}
.xd6{left:673.350000px;}
.x28{left:676.230000px;}
.x5a{left:682.170000px;}
.x47{left:685.770000px;}
.xf3{left:687.390000px;}
.xf1{left:690.630000px;}
.x7b{left:692.970000px;}
.x61{left:694.590000px;}
.xe{left:698.550000px;}
.x60{left:701.248125px;}
.x33{left:702.690000px;}
.x3f{left:705.750000px;}
.xf5{left:707.010000px;}
.x25{left:708.450000px;}
.xb0{left:710.070000px;}
.xef{left:712.770000px;}
.x30{left:714.030000px;}
.xe8{left:715.110000px;}
.x8c{left:716.550000px;}
.x43{left:718.530000px;}
.x5c{left:722.805000px;}
.x55{left:725.370000px;}
.xa1{left:726.450000px;}
.xa6{left:728.430000px;}
.xa3{left:730.410000px;}
.x1f{left:731.490000px;}
.x20{left:735.270000px;}
.x2f{left:737.250000px;}
.x9a{left:738.690000px;}
.x74{left:739.800000px;}
.xc4{left:741.240000px;}
.x78{left:742.680000px;}
.x96{left:745.740000px;}
.xd0{left:747.180000px;}
.x4b{left:748.620000px;}
.x23{left:749.700000px;}
.x64{left:751.320000px;}
.xd9{left:752.938125px;}
.x8a{left:754.200000px;}
.x5{left:755.460000px;}
.x6c{left:757.260000px;}
.x5d{left:758.340000px;}
.xbe{left:759.600000px;}
.xdb{left:761.040000px;}
.x4a{left:763.020000px;}
.x5b{left:764.280000px;}
.x2a{left:765.540000px;}
.x63{left:767.340000px;}
.x87{left:769.320000px;}
.xa2{left:771.480000px;}
.x45{left:773.820000px;}
.x32{left:775.620000px;}
.xe5{left:777.600000px;}
.xcb{left:778.680000px;}
.xce{left:779.940000px;}
.x26{left:781.560000px;}
.x2c{left:783.180000px;}
.xcf{left:784.620000px;}
.xca{left:785.700000px;}
.x5e{left:786.780000px;}
.xa0{left:788.218125px;}
.xbb{left:789.840000px;}
.x73{left:792.000000px;}
.x36{left:794.085000px;}
.x2b{left:795.420000px;}
.x2d{left:796.860000px;}
.x8{left:798.300000px;}
.x7{left:799.380000px;}
.x9f{left:800.460000px;}
.x21{left:801.540000px;}
.x52{left:802.618125px;}
.x2e{left:803.880000px;}
@media print{
.vb{vertical-align:-64.640000pt;}
.v22{vertical-align:-39.040000pt;}
.v26{vertical-align:-36.480000pt;}
.v5{vertical-align:-33.920000pt;}
.vd{vertical-align:-32.000000pt;}
.v12{vertical-align:-28.800000pt;}
.v2{vertical-align:-26.880000pt;}
.v9{vertical-align:-25.600000pt;}
.v1a{vertical-align:-24.320000pt;}
.v1e{vertical-align:-22.400000pt;}
.v25{vertical-align:-21.120000pt;}
.v19{vertical-align:-19.840000pt;}
.v6{vertical-align:-18.560000pt;}
.ve{vertical-align:-16.000000pt;}
.vf{vertical-align:-14.080000pt;}
.v3{vertical-align:-12.800000pt;}
.v14{vertical-align:-10.880000pt;}
.v16{vertical-align:-8.960000pt;}
.v1f{vertical-align:-6.400000pt;}
.v20{vertical-align:-4.480000pt;}
.v1d{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1c{vertical-align:1.280000pt;}
.v23{vertical-align:4.480000pt;}
.v21{vertical-align:6.400000pt;}
.v17{vertical-align:8.960000pt;}
.v15{vertical-align:10.880000pt;}
.v4{vertical-align:12.800000pt;}
.v10{vertical-align:14.080000pt;}
.v11{vertical-align:16.640000pt;}
.v7{vertical-align:18.560000pt;}
.v18{vertical-align:19.840000pt;}
.v8{vertical-align:22.400000pt;}
.v1b{vertical-align:24.320000pt;}
.va{vertical-align:25.600000pt;}
.v13{vertical-align:27.520000pt;}
.v1{vertical-align:29.440000pt;}
.v24{vertical-align:32.640000pt;}
.vc{vertical-align:64.640000pt;}
.ls16{letter-spacing:-32.906667pt;}
.ls23{letter-spacing:-32.266667pt;}
.ls3c{letter-spacing:-30.986667pt;}
.ls1c{letter-spacing:-29.066667pt;}
.ls8b{letter-spacing:-28.426667pt;}
.ls22{letter-spacing:-27.146667pt;}
.ls17{letter-spacing:-26.506667pt;}
.ls5e{letter-spacing:-10.506667pt;}
.ls2f{letter-spacing:-9.973333pt;}
.ls21{letter-spacing:-9.920000pt;}
.ls37{letter-spacing:-8.373333pt;}
.ls8f{letter-spacing:-8.053333pt;}
.ls86{letter-spacing:-7.573333pt;}
.ls40{letter-spacing:-6.186667pt;}
.ls8c{letter-spacing:-6.080000pt;}
.ls31{letter-spacing:-5.866667pt;}
.ls2c{letter-spacing:-5.493333pt;}
.ls78{letter-spacing:-5.440000pt;}
.ls3b{letter-spacing:-5.333333pt;}
.lsa3{letter-spacing:-4.938667pt;}
.ls48{letter-spacing:-0.853333pt;}
.ls88{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls3f{letter-spacing:-0.350933pt;}
.ls6b{letter-spacing:-0.345067pt;}
.ls42{letter-spacing:-0.336533pt;}
.ls15{letter-spacing:-0.336000pt;}
.ls1a{letter-spacing:-0.301333pt;}
.ls1e{letter-spacing:-0.289067pt;}
.ls1f{letter-spacing:-0.285333pt;}
.lsa2{letter-spacing:-0.272533pt;}
.ls25{letter-spacing:-0.235733pt;}
.ls67{letter-spacing:-0.234133pt;}
.ls97{letter-spacing:-0.230933pt;}
.ls87{letter-spacing:-0.220267pt;}
.ls32{letter-spacing:-0.211200pt;}
.ls30{letter-spacing:-0.201067pt;}
.ls2d{letter-spacing:-0.184533pt;}
.ls3e{letter-spacing:-0.178667pt;}
.ls80{letter-spacing:-0.171733pt;}
.ls1b{letter-spacing:-0.169600pt;}
.ls6e{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.158933pt;}
.ls81{letter-spacing:-0.149867pt;}
.ls19{letter-spacing:-0.134933pt;}
.ls6d{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.108800pt;}
.ls96{letter-spacing:-0.094933pt;}
.ls99{letter-spacing:-0.089067pt;}
.ls44{letter-spacing:-0.076800pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls49{letter-spacing:-0.034560pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls7a{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000640pt;}
.ls43{letter-spacing:0.001920pt;}
.ls75{letter-spacing:0.016640pt;}
.ls9f{letter-spacing:0.047360pt;}
.ls34{letter-spacing:0.051840pt;}
.ls77{letter-spacing:0.061333pt;}
.ls66{letter-spacing:0.067733pt;}
.ls56{letter-spacing:0.102400pt;}
.ls60{letter-spacing:0.102933pt;}
.ls5f{letter-spacing:0.112533pt;}
.ls68{letter-spacing:0.127467pt;}
.lsa{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.131627pt;}
.ls8d{letter-spacing:0.149333pt;}
.ls64{letter-spacing:0.152533pt;}
.ls47{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls76{letter-spacing:0.214933pt;}
.ls98{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls2b{letter-spacing:0.252267pt;}
.ls13{letter-spacing:0.252800pt;}
.ls1{letter-spacing:0.271467pt;}
.ls9e{letter-spacing:0.272533pt;}
.ls61{letter-spacing:0.287467pt;}
.ls29{letter-spacing:0.289067pt;}
.ls2a{letter-spacing:0.303360pt;}
.ls45{letter-spacing:0.303467pt;}
.ls91{letter-spacing:0.304000pt;}
.ls7b{letter-spacing:0.320000pt;}
.ls9b{letter-spacing:0.337707pt;}
.ls4d{letter-spacing:0.338560pt;}
.ls52{letter-spacing:0.338667pt;}
.lsf{letter-spacing:0.350933pt;}
.ls1d{letter-spacing:0.354667pt;}
.ls94{letter-spacing:0.391040pt;}
.ls8e{letter-spacing:0.404267pt;}
.ls9a{letter-spacing:0.409067pt;}
.ls2e{letter-spacing:0.438933pt;}
.ls5b{letter-spacing:0.448000pt;}
.ls72{letter-spacing:0.455467pt;}
.ls20{letter-spacing:0.470400pt;}
.ls51{letter-spacing:0.505067pt;}
.ls95{letter-spacing:0.531200pt;}
.lsa0{letter-spacing:0.544000pt;}
.ls93{letter-spacing:0.545280pt;}
.ls9c{letter-spacing:0.592640pt;}
.ls5c{letter-spacing:0.640000pt;}
.ls73{letter-spacing:0.656000pt;}
.lsa1{letter-spacing:0.688000pt;}
.ls4e{letter-spacing:0.691840pt;}
.ls8a{letter-spacing:0.693333pt;}
.ls82{letter-spacing:0.741333pt;}
.lse{letter-spacing:0.792960pt;}
.ls79{letter-spacing:0.794667pt;}
.ls7d{letter-spacing:0.867200pt;}
.ls59{letter-spacing:0.911360pt;}
.ls38{letter-spacing:0.928000pt;}
.ls9d{letter-spacing:1.071360pt;}
.ls6c{letter-spacing:1.280000pt;}
.ls92{letter-spacing:1.296640pt;}
.ls7e{letter-spacing:1.507200pt;}
.ls83{letter-spacing:1.568000pt;}
.ls18{letter-spacing:1.632000pt;}
.ls11{letter-spacing:1.664000pt;}
.ls5a{letter-spacing:2.191360pt;}
.ls10{letter-spacing:2.270720pt;}
.ls65{letter-spacing:2.272000pt;}
.ls12{letter-spacing:2.304000pt;}
.ls4a{letter-spacing:2.560640pt;}
.ls33{letter-spacing:2.848000pt;}
.ls53{letter-spacing:2.912000pt;}
.ls4{letter-spacing:2.938027pt;}
.ls4f{letter-spacing:3.150720pt;}
.ls4c{letter-spacing:3.387520pt;}
.ls3d{letter-spacing:3.488000pt;}
.ls57{letter-spacing:3.840640pt;}
.ls3a{letter-spacing:4.192000pt;}
.ls3{letter-spacing:4.271360pt;}
.ls4b{letter-spacing:4.480640pt;}
.ls70{letter-spacing:4.531840pt;}
.ls7c{letter-spacing:4.608000pt;}
.ls74{letter-spacing:4.832000pt;}
.ls69{letter-spacing:5.493333pt;}
.ls50{letter-spacing:5.862400pt;}
.ls36{letter-spacing:6.026667pt;}
.ls24{letter-spacing:6.133333pt;}
.ls27{letter-spacing:6.689280pt;}
.ls90{letter-spacing:6.750720pt;}
.ls46{letter-spacing:6.773333pt;}
.ls28{letter-spacing:7.329280pt;}
.ls62{letter-spacing:7.413333pt;}
.ls63{letter-spacing:7.946667pt;}
.ls85{letter-spacing:8.030720pt;}
.ls41{letter-spacing:8.053333pt;}
.ls39{letter-spacing:8.693333pt;}
.ls84{letter-spacing:9.310720pt;}
.ls89{letter-spacing:9.333333pt;}
.ls6f{letter-spacing:11.230720pt;}
.ls55{letter-spacing:11.870720pt;}
.ls6a{letter-spacing:11.893333pt;}
.ls5d{letter-spacing:12.288000pt;}
.ls71{letter-spacing:12.800000pt;}
.ls7f{letter-spacing:13.440000pt;}
.ls35{letter-spacing:14.418560pt;}
.ls58{letter-spacing:16.350720pt;}
.ls54{letter-spacing:17.013333pt;}
.ws16{word-spacing:-64.000000pt;}
.ws0{word-spacing:-53.068160pt;}
.ws28{word-spacing:-49.616640pt;}
.ws48{word-spacing:-49.483307pt;}
.ws4d{word-spacing:-49.429973pt;}
.ws50{word-spacing:-49.381973pt;}
.ws42{word-spacing:-49.344640pt;}
.ws3a{word-spacing:-49.328640pt;}
.ws56{word-spacing:-49.219840pt;}
.ws31{word-spacing:-49.193707pt;}
.ws18{word-spacing:-49.159040pt;}
.ws41{word-spacing:-49.144107pt;}
.ws1f{word-spacing:-49.127573pt;}
.ws53{word-spacing:-49.092907pt;}
.ws15{word-spacing:-49.043307pt;}
.ws32{word-spacing:-49.027307pt;}
.ws2e{word-spacing:-48.992107pt;}
.ws38{word-spacing:-48.976107pt;}
.ws11{word-spacing:-48.941440pt;}
.ws49{word-spacing:-48.841173pt;}
.ws52{word-spacing:-48.837973pt;}
.ws3d{word-spacing:-48.816107pt;}
.ws36{word-spacing:-48.801173pt;}
.ws37{word-spacing:-48.791573pt;}
.ws3e{word-spacing:-48.791040pt;}
.ws3b{word-spacing:-48.756373pt;}
.ws46{word-spacing:-48.749973pt;}
.ws26{word-spacing:-48.740480pt;}
.ws43{word-spacing:-48.705280pt;}
.ws2d{word-spacing:-48.690560pt;}
.wse{word-spacing:-48.689280pt;}
.ws10{word-spacing:-48.688640pt;}
.ws1c{word-spacing:-48.579840pt;}
.ws12{word-spacing:-48.553707pt;}
.ws4c{word-spacing:-48.538773pt;}
.ws14{word-spacing:-48.519040pt;}
.ws4a{word-spacing:-48.516907pt;}
.ws1e{word-spacing:-48.504107pt;}
.ws21{word-spacing:-48.487573pt;}
.ws3c{word-spacing:-48.454507pt;}
.ws1a{word-spacing:-48.452907pt;}
.ws17{word-spacing:-48.403307pt;}
.ws13{word-spacing:-48.387307pt;}
.wsf{word-spacing:-48.352640pt;}
.ws4f{word-spacing:-48.064640pt;}
.ws9{word-spacing:-48.000000pt;}
.wsa{word-spacing:-47.984000pt;}
.ws29{word-spacing:-43.355307pt;}
.ws47{word-spacing:-43.248640pt;}
.ws1d{word-spacing:-43.195307pt;}
.ws24{word-spacing:-42.831360pt;}
.ws22{word-spacing:-42.821973pt;}
.ws30{word-spacing:-42.796800pt;}
.ws2a{word-spacing:-42.652693pt;}
.ws23{word-spacing:-42.620160pt;}
.ws51{word-spacing:-42.608640pt;}
.ws2b{word-spacing:-42.501973pt;}
.ws2c{word-spacing:-42.494827pt;}
.ws3f{word-spacing:-42.486293pt;}
.ws2f{word-spacing:-41.978027pt;}
.ws4e{word-spacing:-41.115307pt;}
.ws54{word-spacing:-40.635307pt;}
.ws27{word-spacing:-40.315307pt;}
.ws19{word-spacing:-38.768640pt;}
.ws20{word-spacing:-38.715307pt;}
.ws35{word-spacing:-38.181973pt;}
.ws33{word-spacing:-21.280000pt;}
.ws55{word-spacing:-21.073280pt;}
.wsc{word-spacing:-21.022080pt;}
.ws44{word-spacing:-20.984213pt;}
.ws39{word-spacing:-20.871680pt;}
.wsd{word-spacing:-20.769280pt;}
.ws45{word-spacing:-20.599680pt;}
.ws4b{word-spacing:-20.533547pt;}
.ws25{word-spacing:-18.270720pt;}
.ws34{word-spacing:-18.059520pt;}
.ws1{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.728000pt;}
.ws6{word-spacing:-16.640107pt;}
.ws4{word-spacing:-16.368640pt;}
.ws1b{word-spacing:-16.000000pt;}
.ws40{word-spacing:-15.872000pt;}
.ws60{word-spacing:-15.455360pt;}
.ws5e{word-spacing:-15.311360pt;}
.ws5b{word-spacing:-15.176427pt;}
.ws5c{word-spacing:-15.039893pt;}
.ws59{word-spacing:-14.998293pt;}
.ws5d{word-spacing:-14.814720pt;}
.ws8{word-spacing:-14.767360pt;}
.ws5f{word-spacing:-14.720000pt;}
.ws5a{word-spacing:-14.678293pt;}
.ws57{word-spacing:-14.672427pt;}
.ws58{word-spacing:-14.536427pt;}
.ws61{word-spacing:-14.494827pt;}
.ws2{word-spacing:-11.920640pt;}
.ws5{word-spacing:-10.319360pt;}
.ws62{word-spacing:-9.828693pt;}
.wsb{word-spacing:0.000000pt;}
._2e1{margin-left:-2591.965867pt;}
._2e6{margin-left:-2590.708480pt;}
._1e2{margin-left:-2588.466560pt;}
._1c5{margin-left:-2567.565227pt;}
._2ec{margin-left:-2559.396267pt;}
._14d{margin-left:-2539.609387pt;}
._2be{margin-left:-2516.688640pt;}
._21e{margin-left:-2512.941440pt;}
._2bf{margin-left:-2510.915627pt;}
._126{margin-left:-2466.106667pt;}
._127{margin-left:-2464.175360pt;}
._2e7{margin-left:-2439.409067pt;}
._2af{margin-left:-2377.547947pt;}
._2df{margin-left:-2354.240853pt;}
._271{margin-left:-2344.151680pt;}
._2cd{margin-left:-2304.116053pt;}
._1b5{margin-left:-2277.346133pt;}
._2d9{margin-left:-2261.578880pt;}
._1ce{margin-left:-2252.000000pt;}
._e9{margin-left:-2200.561067pt;}
._e8{margin-left:-2194.102613pt;}
._a{margin-left:-2171.702613pt;}
._e5{margin-left:-2159.944107pt;}
._1bc{margin-left:-2152.278400pt;}
._202{margin-left:-2134.657707pt;}
._2e0{margin-left:-2106.807680pt;}
._258{margin-left:-2101.099093pt;}
._207{margin-left:-2065.676160pt;}
._1c4{margin-left:-2045.833173pt;}
._2bc{margin-left:-2025.263360pt;}
._1d5{margin-left:-2007.493760pt;}
._1d0{margin-left:-2002.519253pt;}
._1b3{margin-left:-1994.935893pt;}
._1d6{margin-left:-1959.849813pt;}
._1c2{margin-left:-1918.965333pt;}
._2ee{margin-left:-1917.223467pt;}
._2e2{margin-left:-1910.811947pt;}
._e1{margin-left:-1895.283840pt;}
._1de{margin-left:-1888.384213pt;}
._ee{margin-left:-1849.650773pt;}
._1e3{margin-left:-1838.693547pt;}
._1ba{margin-left:-1830.746667pt;}
._1f1{margin-left:-1827.791147pt;}
._1b6{margin-left:-1814.201600pt;}
._1b4{margin-left:-1784.658773pt;}
._1fa{margin-left:-1783.499733pt;}
._129{margin-left:-1781.608107pt;}
._2a3{margin-left:-1770.466987pt;}
._14e{margin-left:-1705.360853pt;}
._1a6{margin-left:-1701.324373pt;}
._1df{margin-left:-1682.467413pt;}
._12a{margin-left:-1676.637867pt;}
._1d9{margin-left:-1666.754560pt;}
._152{margin-left:-1657.616427pt;}
._1d8{margin-left:-1633.241813pt;}
._e0{margin-left:-1607.307307pt;}
._222{margin-left:-1601.756373pt;}
._df{margin-left:-1577.622827pt;}
._14f{margin-left:-1539.468800pt;}
._1ed{margin-left:-1536.791893pt;}
._18f{margin-left:-1523.611520pt;}
._ef{margin-left:-1516.999040pt;}
._1e0{margin-left:-1512.450987pt;}
._f1{margin-left:-1510.304853pt;}
._2da{margin-left:-1486.786773pt;}
._1f6{margin-left:-1484.105600pt;}
._17f{margin-left:-1439.927253pt;}
._a1{margin-left:-1437.172693pt;}
._de{margin-left:-1434.894720pt;}
._249{margin-left:-1430.341973pt;}
._2f4{margin-left:-1428.277547pt;}
._2f7{margin-left:-1422.070613pt;}
._2f0{margin-left:-1418.292693pt;}
._251{margin-left:-1412.645973pt;}
._1c8{margin-left:-1411.566720pt;}
._291{margin-left:-1402.408107pt;}
._2ea{margin-left:-1391.610027pt;}
._2b0{margin-left:-1379.147307pt;}
._24a{margin-left:-1378.113920pt;}
._1cb{margin-left:-1373.861760pt;}
._217{margin-left:-1371.618987pt;}
._209{margin-left:-1364.192853pt;}
._c7{margin-left:-1356.937387pt;}
._2ce{margin-left:-1346.136960pt;}
._2bd{margin-left:-1340.581973pt;}
._2b3{margin-left:-1336.419840pt;}
._279{margin-left:-1332.519680pt;}
._239{margin-left:-1326.706133pt;}
._200{margin-left:-1320.320000pt;}
._2d8{margin-left:-1306.280107pt;}
._137{margin-left:-1304.511360pt;}
._2ed{margin-left:-1297.598080pt;}
._1bd{margin-left:-1285.670187pt;}
._63{margin-left:-1283.836160pt;}
._d4{margin-left:-1279.456640pt;}
._1f7{margin-left:-1275.387520pt;}
._278{margin-left:-1273.384960pt;}
._1f3{margin-left:-1266.240000pt;}
._2c7{margin-left:-1264.399573pt;}
._2e3{margin-left:-1263.474560pt;}
._2d7{margin-left:-1259.768533pt;}
._1e9{margin-left:-1250.090667pt;}
._21f{margin-left:-1242.887467pt;}
._256{margin-left:-1241.770667pt;}
._163{margin-left:-1234.497067pt;}
._272{margin-left:-1233.397973pt;}
._1f5{margin-left:-1231.001600pt;}
._2f5{margin-left:-1222.504960pt;}
._1ab{margin-left:-1219.766827pt;}
._1aa{margin-left:-1218.475947pt;}
._2b9{margin-left:-1210.208427pt;}
._20e{margin-left:-1204.773973pt;}
._20a{margin-left:-1199.969067pt;}
._1f4{margin-left:-1199.018880pt;}
._2cf{margin-left:-1196.069547pt;}
._2c0{margin-left:-1188.763520pt;}
._216{margin-left:-1181.152640pt;}
._1c6{margin-left:-1178.930773pt;}
._29f{margin-left:-1174.113920pt;}
._8c{margin-left:-1171.668693pt;}
._247{margin-left:-1162.393387pt;}
._29c{margin-left:-1151.703253pt;}
._20c{margin-left:-1146.753920pt;}
._1d4{margin-left:-1144.711680pt;}
._201{margin-left:-1143.649280pt;}
._2dc{margin-left:-1142.134613pt;}
._2a2{margin-left:-1140.327040pt;}
._181{margin-left:-1135.871787pt;}
._102{margin-left:-1134.598613pt;}
._d1{margin-left:-1128.760960pt;}
._d0{margin-left:-1127.511467pt;}
._1d3{margin-left:-1124.064853pt;}
._29e{margin-left:-1115.918720pt;}
._255{margin-left:-1114.857387pt;}
._264{margin-left:-1113.029333pt;}
._8b{margin-left:-1106.230187pt;}
._250{margin-left:-1098.012373pt;}
._2f6{margin-left:-1095.907200pt;}
._1f2{margin-left:-1094.796800pt;}
._147{margin-left:-1081.475200pt;}
._262{margin-left:-1080.377813pt;}
._13e{margin-left:-1073.039360pt;}
._140{margin-left:-1069.732053pt;}
._2a1{margin-left:-1064.872533pt;}
._223{margin-left:-1059.705600pt;}
._146{margin-left:-1057.897387pt;}
._19a{margin-left:-1055.874987pt;}
._100{margin-left:-1052.588800pt;}
._101{margin-left:-1051.533013pt;}
._2e9{margin-left:-1048.793387pt;}
._12d{margin-left:-1046.884480pt;}
._1ca{margin-left:-1044.606933pt;}
._12e{margin-left:-1043.248853pt;}
._bf{margin-left:-1038.016213pt;}
._18d{margin-left:-1029.614720pt;}
._2d2{margin-left:-1027.211307pt;}
._e2{margin-left:-1025.540693pt;}
._236{margin-left:-1022.161067pt;}
._1db{margin-left:-1016.927360pt;}
._254{margin-left:-1015.476480pt;}
._c0{margin-left:-1011.675733pt;}
._1a5{margin-left:-1007.534507pt;}
._204{margin-left:-1004.579627pt;}
._2cc{margin-left:-1002.224213pt;}
._118{margin-left:-998.016427pt;}
._9f{margin-left:-993.191253pt;}
._290{margin-left:-991.660373pt;}
._11d{margin-left:-989.905493pt;}
._2d6{margin-left:-987.698560pt;}
._117{margin-left:-985.337387pt;}
._206{margin-left:-983.981867pt;}
._22c{margin-left:-981.160747pt;}
._a0{margin-left:-980.142080pt;}
._28b{margin-left:-973.998507pt;}
._2f1{margin-left:-971.388587pt;}
._3c{margin-left:-966.187947pt;}
._9e{margin-left:-961.599787pt;}
._22b{margin-left:-960.043307pt;}
._265{margin-left:-952.553173pt;}
._180{margin-left:-950.190720pt;}
._2cb{margin-left:-948.749440pt;}
._27e{margin-left:-942.202667pt;}
._228{margin-left:-938.331307pt;}
._23{margin-left:-935.742720pt;}
._dd{margin-left:-933.346133pt;}
._193{margin-left:-929.347840pt;}
._2d5{margin-left:-928.316160pt;}
._220{margin-left:-924.583040pt;}
._2bb{margin-left:-919.270400pt;}
._1e6{margin-left:-917.055787pt;}
._224{margin-left:-914.738347pt;}
._267{margin-left:-910.210987pt;}
._157{margin-left:-902.953173pt;}
._26e{margin-left:-900.436053pt;}
._1b7{margin-left:-898.853760pt;}
._28e{margin-left:-896.165333pt;}
._41{margin-left:-894.860373pt;}
._1fc{margin-left:-892.850347pt;}
._1c0{margin-left:-887.658667pt;}
._172{margin-left:-886.238293pt;}
._2ba{margin-left:-883.853653pt;}
._bb{margin-left:-878.492587pt;}
._128{margin-left:-875.344213pt;}
._266{margin-left:-873.545173pt;}
._88{margin-left:-868.962560pt;}
._1f{margin-left:-867.906347pt;}
._248{margin-left:-859.706880pt;}
._2d3{margin-left:-856.826667pt;}
._1ea{margin-left:-855.832747pt;}
._24{margin-left:-851.542827pt;}
._1dc{margin-left:-849.118720pt;}
._2de{margin-left:-845.849173pt;}
._111{margin-left:-841.978880pt;}
._26f{margin-left:-836.935680pt;}
._c9{margin-left:-835.613440pt;}
._110{margin-left:-834.585813pt;}
._194{margin-left:-828.873173pt;}
._94{margin-left:-827.357440pt;}
._ba{margin-left:-824.813867pt;}
._27{margin-left:-822.682240pt;}
._24f{margin-left:-818.803627pt;}
._205{margin-left:-817.645867pt;}
._13d{margin-left:-815.355307pt;}
._87{margin-left:-813.453867pt;}
._1c7{margin-left:-811.633920pt;}
._2eb{margin-left:-808.877227pt;}
._12b{margin-left:-807.639893pt;}
._277{margin-left:-804.975573pt;}
._1fb{margin-left:-802.870187pt;}
._252{margin-left:-801.038293pt;}
._1f9{margin-left:-799.648213pt;}
._1f8{margin-left:-797.995947pt;}
._10c{margin-left:-796.060587pt;}
._1da{margin-left:-793.110827pt;}
._244{margin-left:-791.977173pt;}
._b6{margin-left:-788.294400pt;}
._23c{margin-left:-781.699840pt;}
._268{margin-left:-776.940373pt;}
._296{margin-left:-774.778240pt;}
._95{margin-left:-772.720853pt;}
._db{margin-left:-771.650560pt;}
._8{margin-left:-770.077653pt;}
._284{margin-left:-768.114133pt;}
._173{margin-left:-767.213547pt;}
._17d{margin-left:-763.092053pt;}
._109{margin-left:-761.387947pt;}
._119{margin-left:-759.534507pt;}
._24d{margin-left:-757.355840pt;}
._10a{margin-left:-754.799360pt;}
._2e4{margin-left:-749.139200pt;}
._1e4{margin-left:-747.481813pt;}
._174{margin-left:-744.745173pt;}
._171{margin-left:-743.814613pt;}
._2{margin-left:-742.204800pt;}
._ec{margin-left:-740.903253pt;}
._191{margin-left:-738.347733pt;}
._156{margin-left:-737.035947pt;}
._106{margin-left:-734.377600pt;}
._242{margin-left:-731.413760pt;}
._2b4{margin-left:-729.137067pt;}
._28c{margin-left:-726.199040pt;}
._2b1{margin-left:-724.167253pt;}
._2a5{margin-left:-720.737280pt;}
._b3{margin-left:-719.403520pt;}
._185{margin-left:-717.644160pt;}
._122{margin-left:-716.196267pt;}
._b2{margin-left:-714.763733pt;}
._121{margin-left:-713.682133pt;}
._288{margin-left:-711.791573pt;}
._28d{margin-left:-709.978240pt;}
._1e7{margin-left:-708.480213pt;}
._282{margin-left:-705.646293pt;}
._16f{margin-left:-703.982080pt;}
._16e{margin-left:-701.889280pt;}
._2c4{margin-left:-700.592000pt;}
._24e{margin-left:-699.523413pt;}
._b4{margin-left:-697.404373pt;}
._155{margin-left:-695.444480pt;}
._1fd{margin-left:-693.325440pt;}
._42{margin-left:-690.792320pt;}
._154{margin-left:-689.835947pt;}
._2c1{margin-left:-688.362880pt;}
._2aa{margin-left:-685.803520pt;}
._c3{margin-left:-683.476480pt;}
._148{margin-left:-681.523200pt;}
._c4{margin-left:-678.688640pt;}
._cd{margin-left:-676.550827pt;}
._1cc{margin-left:-675.160960pt;}
._221{margin-left:-673.737387pt;}
._259{margin-left:-669.574827pt;}
._2ab{margin-left:-666.078293pt;}
._2c3{margin-left:-664.622933pt;}
._10f{margin-left:-659.789440pt;}
._81{margin-left:-658.476800pt;}
._28f{margin-left:-656.693120pt;}
._80{margin-left:-655.520000pt;}
._99{margin-left:-653.072427pt;}
._2d4{margin-left:-651.190187pt;}
._1d1{margin-left:-649.477973pt;}
._1c9{margin-left:-647.267413pt;}
._e6{margin-left:-645.708587pt;}
._113{margin-left:-644.565973pt;}
._98{margin-left:-643.649280pt;}
._65{margin-left:-642.212693pt;}
._241{margin-left:-640.411733pt;}
._166{margin-left:-637.156480pt;}
._160{margin-left:-635.833600pt;}
._25d{margin-left:-634.888533pt;}
._2b2{margin-left:-629.431253pt;}
._2b5{margin-left:-627.408427pt;}
._27b{margin-left:-626.154667pt;}
._27a{margin-left:-621.914880pt;}
._234{margin-left:-619.142293pt;}
._5a{margin-left:-617.094613pt;}
._22e{margin-left:-615.251840pt;}
._141{margin-left:-613.185707pt;}
._1a7{margin-left:-612.177067pt;}
._59{margin-left:-611.053867pt;}
._21d{margin-left:-609.737387pt;}
._34{margin-left:-608.462933pt;}
._75{margin-left:-607.077760pt;}
._74{margin-left:-605.889280pt;}
._1cd{margin-left:-604.212480pt;}
._229{margin-left:-602.733867pt;}
._232{margin-left:-601.290453pt;}
._fa{margin-left:-598.911360pt;}
._175{margin-left:-597.414187pt;}
._1ac{margin-left:-593.367253pt;}
._22a{margin-left:-590.950187pt;}
._294{margin-left:-589.373867pt;}
._230{margin-left:-588.232747pt;}
._47{margin-left:-586.049280pt;}
._2dd{margin-left:-584.319787pt;}
._269{margin-left:-583.116160pt;}
._93{margin-left:-581.377920pt;}
._49{margin-left:-580.150613pt;}
._240{margin-left:-578.176000pt;}
._120{margin-left:-574.874240pt;}
._64{margin-left:-573.293867pt;}
._11a{margin-left:-571.563733pt;}
._2a4{margin-left:-570.350293pt;}
._ae{margin-left:-567.410987pt;}
._135{margin-left:-565.585920pt;}
._134{margin-left:-561.089280pt;}
._13a{margin-left:-559.224960pt;}
._d{margin-left:-558.220160pt;}
._210{margin-left:-556.364373pt;}
._f9{margin-left:-554.999040pt;}
._2c8{margin-left:-553.983573pt;}
._27d{margin-left:-552.784640pt;}
._298{margin-left:-551.520640pt;}
._89{margin-left:-550.068907pt;}
._17e{margin-left:-548.256213pt;}
._203{margin-left:-545.305173pt;}
._2a0{margin-left:-543.650133pt;}
._189{margin-left:-542.129920pt;}
._297{margin-left:-540.658773pt;}
._4a{margin-left:-539.245867pt;}
._14c{margin-left:-537.417387pt;}
._1a4{margin-left:-536.193067pt;}
._15f{margin-left:-534.691413pt;}
._23b{margin-left:-532.856853pt;}
._1a3{margin-left:-530.850133pt;}
._f3{margin-left:-529.275307pt;}
._1ee{margin-left:-527.775787pt;}
._35{margin-left:-526.391893pt;}
._211{margin-left:-524.476160pt;}
._212{margin-left:-522.713173pt;}
._208{margin-left:-520.815147pt;}
._104{margin-left:-518.018773pt;}
._103{margin-left:-517.005440pt;}
._fb{margin-left:-515.413760pt;}
._199{margin-left:-512.315947pt;}
._29d{margin-left:-509.437867pt;}
._11f{margin-left:-508.491520pt;}
._11c{margin-left:-507.251413pt;}
._71{margin-left:-505.653120pt;}
._2c6{margin-left:-504.255787pt;}
._8a{margin-left:-500.740053pt;}
._10e{margin-left:-498.245973pt;}
._270{margin-left:-496.493013pt;}
._25a{margin-left:-491.888427pt;}
._ce{margin-left:-490.534187pt;}
._28a{margin-left:-487.952640pt;}
._f4{margin-left:-486.809387pt;}
._11e{margin-left:-485.267840pt;}
._14a{margin-left:-483.853867pt;}
._92{margin-left:-482.068267pt;}
._2ca{margin-left:-480.875307pt;}
._d5{margin-left:-479.982507pt;}
._d6{margin-left:-478.467840pt;}
._21b{margin-left:-477.427413pt;}
._70{margin-left:-476.380587pt;}
._79{margin-left:-474.567040pt;}
._6e{margin-left:-473.332267pt;}
._2f3{margin-left:-471.604053pt;}
._1dd{margin-left:-469.305600pt;}
._245{margin-left:-467.675520pt;}
._1c3{margin-left:-465.589333pt;}
._219{margin-left:-463.331840pt;}
._27c{margin-left:-461.265067pt;}
._1a1{margin-left:-460.228907pt;}
._d3{margin-left:-458.970240pt;}
._2b6{margin-left:-456.839253pt;}
._192{margin-left:-455.780480pt;}
._16d{margin-left:-454.810453pt;}
._1ff{margin-left:-453.601067pt;}
._16c{margin-left:-451.388373pt;}
._19d{margin-left:-450.236160pt;}
._187{margin-left:-448.494720pt;}
._293{margin-left:-445.870507pt;}
._275{margin-left:-444.238933pt;}
._114{margin-left:-443.311573pt;}
._274{margin-left:-441.446400pt;}
._f2{margin-left:-440.227200pt;}
._1d2{margin-left:-439.333547pt;}
._115{margin-left:-437.797547pt;}
._2c2{margin-left:-436.526933pt;}
._158{margin-left:-435.098453pt;}
._aa{margin-left:-433.628160pt;}
._1eb{margin-left:-432.419627pt;}
._1bb{margin-left:-431.034453pt;}
._f8{margin-left:-429.702827pt;}
._25c{margin-left:-428.617387pt;}
._170{margin-left:-427.147947pt;}
._2b7{margin-left:-425.640747pt;}
._253{margin-left:-423.435093pt;}
._4c{margin-left:-422.506667pt;}
._125{margin-left:-419.670613pt;}
._84{margin-left:-418.187947pt;}
._2ad{margin-left:-416.237227pt;}
._15c{margin-left:-413.904213pt;}
._13c{margin-left:-412.261333pt;}
._225{margin-left:-410.187520pt;}
._8d{margin-left:-408.290560pt;}
._4d{margin-left:-405.935573pt;}
._1ef{margin-left:-404.859520pt;}
._130{margin-left:-402.804907pt;}
._161{margin-left:-401.890560pt;}
._227{margin-left:-400.941653pt;}
._da{margin-left:-399.528960pt;}
._286{margin-left:-398.625493pt;}
._91{margin-left:-397.607893pt;}
._116{margin-left:-396.400427pt;}
._246{margin-left:-395.196373pt;}
._124{margin-left:-393.995947pt;}
._f5{margin-left:-392.925013pt;}
._19c{margin-left:-391.287040pt;}
._132{margin-left:-389.006293pt;}
._214{margin-left:-387.753600pt;}
._1b9{margin-left:-386.770987pt;}
._ab{margin-left:-385.614507pt;}
._18b{margin-left:-383.978880pt;}
._9{margin-left:-382.033920pt;}
._231{margin-left:-380.379093pt;}
._33{margin-left:-378.948480pt;}
._1e5{margin-left:-377.417387pt;}
._39{margin-left:-375.203627pt;}
._29b{margin-left:-374.133973pt;}
._38{margin-left:-369.616640pt;}
._2a8{margin-left:-368.432427pt;}
._186{margin-left:-367.524907pt;}
._2e5{margin-left:-366.619733pt;}
._ac{margin-left:-364.485973pt;}
._fe{margin-left:-362.710827pt;}
._2a9{margin-left:-361.186133pt;}
._fd{margin-left:-359.714133pt;}
._16b{margin-left:-358.811520pt;}
._18a{margin-left:-357.409280pt;}
._2d1{margin-left:-356.299093pt;}
._21c{margin-left:-355.054507pt;}
._215{margin-left:-353.904427pt;}
._2ef{margin-left:-352.722560pt;}
._6b{margin-left:-351.826347pt;}
._287{margin-left:-350.856533pt;}
._c8{margin-left:-349.911253pt;}
._16a{margin-left:-348.988587pt;}
._af{margin-left:-347.927040pt;}
._2e{margin-left:-346.507947pt;}
._23d{margin-left:-345.486293pt;}
._15b{margin-left:-344.462933pt;}
._dc{margin-left:-342.838187pt;}
._1a0{margin-left:-341.641600pt;}
._2f{margin-left:-340.436267pt;}
._2a7{margin-left:-339.475413pt;}
._60{margin-left:-337.547947pt;}
._1cf{margin-left:-336.381653pt;}
._260{margin-left:-335.056213pt;}
._21a{margin-left:-333.562667pt;}
._20d{margin-left:-332.123093pt;}
._167{margin-left:-329.568427pt;}
._112{margin-left:-327.521067pt;}
._19e{margin-left:-326.376320pt;}
._90{margin-left:-324.535467pt;}
._1be{margin-left:-323.005547pt;}
._f7{margin-left:-321.569280pt;}
._2b8{margin-left:-319.977813pt;}
._3b{margin-left:-318.992640pt;}
._263{margin-left:-317.221973pt;}
._18e{margin-left:-316.288213pt;}
._3a{margin-left:-315.275947pt;}
._169{margin-left:-313.296000pt;}
._22d{margin-left:-311.821867pt;}
._7c{margin-left:-310.063787pt;}
._11b{margin-left:-308.289280pt;}
._23e{margin-left:-307.330773pt;}
._1b1{margin-left:-305.886293pt;}
._8f{margin-left:-304.395947pt;}
._1c1{margin-left:-303.288533pt;}
._176{margin-left:-301.757440pt;}
._4f{margin-left:-300.392747pt;}
._283{margin-left:-299.329280pt;}
._22f{margin-left:-298.264960pt;}
._cb{margin-left:-296.949120pt;}
._218{margin-left:-295.047680pt;}
._13f{margin-left:-293.101013pt;}
._2c{margin-left:-291.159253pt;}
._131{margin-left:-289.508053pt;}
._26b{margin-left:-288.016853pt;}
._150{margin-left:-286.857387pt;}
._25b{margin-left:-285.440000pt;}
._13b{margin-left:-284.096213pt;}
._299{margin-left:-281.718400pt;}
._d2{margin-left:-280.524587pt;}
._24c{margin-left:-279.572480pt;}
._197{margin-left:-278.218240pt;}
._20f{margin-left:-276.912213pt;}
._1fe{margin-left:-275.662933pt;}
._e3{margin-left:-274.720000pt;}
._3e{margin-left:-273.623893pt;}
._7e{margin-left:-272.060160pt;}
._226{margin-left:-271.109333pt;}
._7d{margin-left:-270.082773pt;}
._213{margin-left:-268.496853pt;}
._20b{margin-left:-267.239040pt;}
._233{margin-left:-266.009173pt;}
._178{margin-left:-264.425600pt;}
._2c5{margin-left:-263.512853pt;}
._183{margin-left:-261.917227pt;}
._1d7{margin-left:-260.747947pt;}
._165{margin-left:-259.272960pt;}
._26c{margin-left:-258.047360pt;}
._136{margin-left:-257.035947pt;}
._4e{margin-left:-255.747200pt;}
._164{margin-left:-254.240853pt;}
._a6{margin-left:-253.017173pt;}
._133{margin-left:-252.031360pt;}
._273{margin-left:-250.825387pt;}
._bd{margin-left:-249.774080pt;}
._1ad{margin-left:-248.524160pt;}
._6f{margin-left:-247.303253pt;}
._2a6{margin-left:-245.761813pt;}
._78{margin-left:-244.636160pt;}
._b1{margin-left:-243.001173pt;}
._a3{margin-left:-241.675947pt;}
._2db{margin-left:-240.663040pt;}
._a9{margin-left:-239.694507pt;}
._77{margin-left:-238.289920pt;}
._6c{margin-left:-236.509440pt;}
._27f{margin-left:-235.048960pt;}
._a4{margin-left:-233.380053pt;}
._50{margin-left:-232.411520pt;}
._289{margin-left:-231.389440pt;}
._8e{margin-left:-229.953707pt;}
._1f0{margin-left:-228.977707pt;}
._1bf{margin-left:-227.038080pt;}
._105{margin-left:-225.553067pt;}
._cf{margin-left:-224.140587pt;}
._82{margin-left:-222.609067pt;}
._13{margin-left:-221.536000pt;}
._25f{margin-left:-219.849600pt;}
._22{margin-left:-218.598827pt;}
._15e{margin-left:-215.978880pt;}
._ca{margin-left:-214.727680pt;}
._12f{margin-left:-213.409280pt;}
._235{margin-left:-212.340480pt;}
._184{margin-left:-210.962133pt;}
._1b8{margin-left:-209.812907pt;}
._151{margin-left:-208.382400pt;}
._2b{margin-left:-206.925227pt;}
._196{margin-left:-205.441920pt;}
._21{margin-left:-203.520000pt;}
._19f{margin-left:-202.555520pt;}
._108{margin-left:-200.955307pt;}
._26a{margin-left:-199.871787pt;}
._177{margin-left:-198.689280pt;}
._195{margin-left:-197.577173pt;}
._51{margin-left:-194.338987pt;}
._12{margin-left:-193.066667pt;}
._292{margin-left:-191.699840pt;}
._e4{margin-left:-190.753920pt;}
._25e{margin-left:-189.598293pt;}
._6d{margin-left:-188.555947pt;}
._ed{margin-left:-186.743040pt;}
._5c{margin-left:-185.691947pt;}
._12c{margin-left:-184.498133pt;}
._5b{margin-left:-183.489280pt;}
._2ae{margin-left:-182.347520pt;}
._17b{margin-left:-181.082880pt;}
._e{margin-left:-179.872000pt;}
._162{margin-left:-178.137813pt;}
._2c9{margin-left:-177.175893pt;}
._9c{margin-left:-174.807680pt;}
._1e8{margin-left:-173.842133pt;}
._17a{margin-left:-172.449280pt;}
._eb{margin-left:-171.169280pt;}
._9b{margin-left:-169.680000pt;}
._1ec{margin-left:-168.336427pt;}
._a8{margin-left:-167.399253pt;}
._fc{margin-left:-165.992960pt;}
._b9{margin-left:-164.885973pt;}
._83{margin-left:-163.280000pt;}
._7a{margin-left:-161.774933pt;}
._1a8{margin-left:-160.811520pt;}
._9a{margin-left:-159.627947pt;}
._1af{margin-left:-158.037333pt;}
._1ae{margin-left:-156.510720pt;}
._66{margin-left:-155.611520pt;}
._18c{margin-left:-154.683307pt;}
._68{margin-left:-153.434880pt;}
._295{margin-left:-152.342613pt;}
._26d{margin-left:-151.427200pt;}
._ff{margin-left:-150.502400pt;}
._d7{margin-left:-148.754773pt;}
._a7{margin-left:-147.343360pt;}
._2ac{margin-left:-146.392533pt;}
._14b{margin-left:-145.402453pt;}
._23a{margin-left:-144.294613pt;}
._b7{margin-left:-142.851200pt;}
._143{margin-left:-141.783253pt;}
._f{margin-left:-140.544000pt;}
._5e{margin-left:-138.855253pt;}
._188{margin-left:-137.712427pt;}
._11{margin-left:-136.672000pt;}
._5d{margin-left:-135.329280pt;}
._198{margin-left:-134.029653pt;}
._b0{margin-left:-133.120000pt;}
._261{margin-left:-132.129280pt;}
._53{margin-left:-131.148160pt;}
._138{margin-left:-130.257067pt;}
._142{margin-left:-129.233920pt;}
._29a{margin-left:-128.286293pt;}
._17c{margin-left:-127.328427pt;}
._73{margin-left:-126.077440pt;}
._107{margin-left:-124.879573pt;}
._243{margin-left:-123.835307pt;}
._a5{margin-left:-122.748160pt;}
._1b0{margin-left:-121.401387pt;}
._ad{margin-left:-119.355520pt;}
._72{margin-left:-118.140800pt;}
._179{margin-left:-116.647040pt;}
._54{margin-left:-115.130027pt;}
._15d{margin-left:-114.206507pt;}
._1b2{margin-left:-112.640000pt;}
._86{margin-left:-111.621547pt;}
._20{margin-left:-110.064000pt;}
._10b{margin-left:-108.547200pt;}
._43{margin-left:-106.812373pt;}
._69{margin-left:-105.594667pt;}
._9d{margin-left:-104.513067pt;}
._2f2{margin-left:-103.495040pt;}
._d9{margin-left:-102.499840pt;}
._d8{margin-left:-101.475200pt;}
._ea{margin-left:-100.490667pt;}
._285{margin-left:-99.385387pt;}
._e7{margin-left:-98.053760pt;}
._3{margin-left:-96.640000pt;}
._67{margin-left:-95.076267pt;}
._c5{margin-left:-93.729280pt;}
._7f{margin-left:-91.809280pt;}
._bc{margin-left:-90.492800pt;}
._23f{margin-left:-89.587627pt;}
._96{margin-left:-88.483200pt;}
._f6{margin-left:-87.499520pt;}
._cc{margin-left:-86.014720pt;}
._57{margin-left:-84.613973pt;}
._2e8{margin-left:-83.671467pt;}
._1a9{margin-left:-82.767360pt;}
._2d{margin-left:-80.874240pt;}
._32{margin-left:-79.256960pt;}
._153{margin-left:-77.848107pt;}
._10d{margin-left:-76.459520pt;}
._31{margin-left:-74.879360pt;}
._58{margin-left:-73.534293pt;}
._159{margin-left:-72.484480pt;}
._1a2{margin-left:-71.410560pt;}
._b8{margin-left:-70.368427pt;}
._29{margin-left:-68.867200pt;}
._56{margin-left:-67.369600pt;}
._45{margin-left:-65.537067pt;}
._97{margin-left:-64.301440pt;}
._2a{margin-left:-62.553600pt;}
._7b{margin-left:-60.946133pt;}
._c1{margin-left:-59.809280pt;}
._46{margin-left:-58.541440pt;}
._44{margin-left:-56.707200pt;}
._257{margin-left:-55.619627pt;}
._c2{margin-left:-54.514987pt;}
._15a{margin-left:-53.507200pt;}
._76{margin-left:-52.463360pt;}
._3f{margin-left:-50.669440pt;}
._19b{margin-left:-49.521067pt;}
._36{margin-left:-48.623360pt;}
._6a{margin-left:-47.461120pt;}
._5f{margin-left:-46.063360pt;}
._a2{margin-left:-44.917120pt;}
._40{margin-left:-43.689600pt;}
._144{margin-left:-42.660693pt;}
._281{margin-left:-41.295573pt;}
._37{margin-left:-39.969280pt;}
._123{margin-left:-38.339627pt;}
._c6{margin-left:-37.441280pt;}
._276{margin-left:-36.531413pt;}
._52{margin-left:-35.393067pt;}
._30{margin-left:-33.667200pt;}
._2d0{margin-left:-32.650240pt;}
._28{margin-left:-31.747200pt;}
._139{margin-left:-30.615253pt;}
._4b{margin-left:-29.633067pt;}
._55{margin-left:-28.414720pt;}
._f0{margin-left:-27.500160pt;}
._25{margin-left:-26.557440pt;}
._149{margin-left:-25.309440pt;}
._10{margin-left:-23.328000pt;}
._85{margin-left:-20.769280pt;}
._145{margin-left:-18.623147pt;}
._be{margin-left:-17.202133pt;}
._61{margin-left:-15.745067pt;}
._62{margin-left:-14.429440pt;}
._3d{margin-left:-13.326507pt;}
._b5{margin-left:-12.255787pt;}
._c{margin-left:-11.221120pt;}
._b{margin-left:-10.167040pt;}
._48{margin-left:-9.267413pt;}
._7{margin-left:-8.137387pt;}
._5{margin-left:-7.195307pt;}
._26{margin-left:-5.547307pt;}
._14{margin-left:-4.326827pt;}
._6{margin-left:-3.144960pt;}
._4{margin-left:-2.190507pt;}
._1{margin-left:-1.041493pt;}
._0{width:0.970667pt;}
._17{width:2.500267pt;}
._18{width:3.559040pt;}
._19{width:4.500693pt;}
._16{width:6.055680pt;}
._15{width:7.011840pt;}
._1a{width:8.402560pt;}
._1e{width:9.933440pt;}
._1d{width:10.893653pt;}
._1c{width:11.889920pt;}
._1b{width:13.290880pt;}
._1e1{width:14.290133pt;}
._190{width:15.180160pt;}
._168{width:16.171520pt;}
._24b{width:17.298133pt;}
._238{width:18.622720pt;}
._237{width:19.713920pt;}
._280{width:20.750293pt;}
._182{width:21.941760pt;}
.fs1{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fsd{font-size:78.929661pt;}
.fs2{font-size:85.120000pt;}
.fse{font-size:89.723461pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.200000pt;}
.y5{bottom:3.680000pt;}
.y32{bottom:7.653333pt;}
.y6{bottom:51.040000pt;}
.y4{bottom:68.480000pt;}
.yfe{bottom:98.432000pt;}
.y8a{bottom:103.872000pt;}
.y74{bottom:104.032000pt;}
.y186{bottom:107.872000pt;}
.y4e{bottom:108.032000pt;}
.ya4{bottom:112.672000pt;}
.y30{bottom:116.032000pt;}
.yfd{bottom:116.672000pt;}
.y11e{bottom:116.832000pt;}
.y155{bottom:117.312000pt;}
.y185{bottom:123.392000pt;}
.yfc{bottom:124.032000pt;}
.y11d{bottom:124.192000pt;}
.y169{bottom:124.352000pt;}
.y89{bottom:132.032000pt;}
.y73{bottom:132.672000pt;}
.y4d{bottom:139.866667pt;}
.y88{bottom:140.666667pt;}
.y11c{bottom:140.826667pt;}
.yfb{bottom:140.986667pt;}
.y72{bottom:141.306667pt;}
.y2f{bottom:141.786667pt;}
.y184{bottom:146.746667pt;}
.yfa{bottom:149.626667pt;}
.ya3{bottom:154.906667pt;}
.y168{bottom:156.346667pt;}
.y154{bottom:157.306667pt;}
.y87{bottom:160.666667pt;}
.y71{bottom:161.146667pt;}
.y183{bottom:162.106667pt;}
.yf9{bottom:163.866667pt;}
.y2e{bottom:165.306667pt;}
.y13e{bottom:168.826667pt;}
.y86{bottom:169.306667pt;}
.y11b{bottom:169.466667pt;}
.ydb{bottom:169.786667pt;}
.y4c{bottom:171.706667pt;}
.y11a{bottom:176.186667pt;}
.yf8{bottom:182.266667pt;}
.y182{bottom:185.466667pt;}
.y2d{bottom:188.506667pt;}
.y85{bottom:188.986667pt;}
.y70{bottom:189.146667pt;}
.ya2{bottom:189.306667pt;}
.y119{bottom:191.706667pt;}
.y13d{bottom:197.146667pt;}
.yda{bottom:197.626667pt;}
.y6f{bottom:197.786667pt;}
.yf7{bottom:200.666667pt;}
.y181{bottom:200.826667pt;}
.y2c{bottom:203.866667pt;}
.yf6{bottom:207.386667pt;}
.ybc{bottom:211.386667pt;}
.y4b{bottom:211.546667pt;}
.y84{bottom:216.826667pt;}
.y6e{bottom:217.626667pt;}
.yf5{bottom:218.266667pt;}
.y2b{bottom:219.226667pt;}
.y153{bottom:220.986667pt;}
.ya1{bottom:221.306667pt;}
.y167{bottom:224.026667pt;}
.y13c{bottom:225.146667pt;}
.y83{bottom:225.466667pt;}
.y166{bottom:229.626667pt;}
.y13b{bottom:233.786667pt;}
.y2a{bottom:234.426667pt;}
.y82{bottom:238.586667pt;}
.y180{bottom:239.386667pt;}
.y4a{bottom:243.546667pt;}
.yd9{bottom:244.826667pt;}
.y6d{bottom:245.466667pt;}
.y29{bottom:249.786667pt;}
.y118{bottom:251.386667pt;}
.y6c{bottom:252.186667pt;}
.y13a{bottom:252.986667pt;}
.ya0{bottom:253.146667pt;}
.yd8{bottom:253.466667pt;}
.yf4{bottom:260.186667pt;}
.y152{bottom:260.826667pt;}
.y17f{bottom:262.586667pt;}
.y28{bottom:265.146667pt;}
.yd7{bottom:266.426667pt;}
.ybb{bottom:267.386667pt;}
.y165{bottom:269.466667pt;}
.y80{bottom:271.386667pt;}
.y6b{bottom:273.466667pt;}
.y49{bottom:275.386667pt;}
.y17e{bottom:278.106667pt;}
.y6a{bottom:280.186667pt;}
.y27{bottom:280.506667pt;}
.y139{bottom:281.146667pt;}
.y81{bottom:281.466667pt;}
.y117{bottom:283.226667pt;}
.y9f{bottom:284.986667pt;}
.y151{bottom:289.626667pt;}
.y138{bottom:289.786667pt;}
.yf3{bottom:292.026667pt;}
.y150{bottom:292.826667pt;}
.y69{bottom:295.066667pt;}
.y26{bottom:295.866667pt;}
.yba{bottom:299.226667pt;}
.y17d{bottom:301.306667pt;}
.y164{bottom:301.466667pt;}
.y7f{bottom:304.186667pt;}
.y48{bottom:307.226667pt;}
.y137{bottom:309.786667pt;}
.y25{bottom:311.066667pt;}
.y116{bottom:315.266667pt;}
.y9e{bottom:316.866667pt;}
.y136{bottom:318.466667pt;}
.yd5{bottom:323.106667pt;}
.yf2{bottom:324.066667pt;}
.y14f{bottom:324.706667pt;}
.y24{bottom:326.466667pt;}
.yb9{bottom:331.266667pt;}
.yd6{bottom:333.186667pt;}
.y67{bottom:333.666667pt;}
.y135{bottom:338.306667pt;}
.y47{bottom:339.266667pt;}
.y17c{bottom:340.066667pt;}
.y23{bottom:341.826667pt;}
.y163{bottom:342.306667pt;}
.y68{bottom:343.746667pt;}
.y7e{bottom:344.866667pt;}
.y134{bottom:346.946667pt;}
.y115{bottom:347.106667pt;}
.y9c{bottom:349.026667pt;}
.yd4{bottom:355.106667pt;}
.yf1{bottom:355.906667pt;}
.y22{bottom:357.186667pt;}
.y9d{bottom:359.106667pt;}
.y133{bottom:361.186667pt;}
.yb8{bottom:363.106667pt;}
.y17b{bottom:363.426667pt;}
.y14e{bottom:364.546667pt;}
.y65{bottom:365.506667pt;}
.y46{bottom:371.106667pt;}
.y21{bottom:372.546667pt;}
.y162{bottom:374.946667pt;}
.y66{bottom:375.586667pt;}
.y17a{bottom:378.786667pt;}
.y114{bottom:378.946667pt;}
.y132{bottom:379.586667pt;}
.y7d{bottom:385.346667pt;}
.y131{bottom:386.946667pt;}
.yef{bottom:387.746667pt;}
.y20{bottom:387.906667pt;}
.y9b{bottom:389.506667pt;}
.yd2{bottom:395.586667pt;}
.y14d{bottom:396.546667pt;}
.y64{bottom:397.346667pt;}
.yf0{bottom:397.826667pt;}
.y179{bottom:402.626667pt;}
.y45{bottom:402.946667pt;}
.y1f{bottom:403.106667pt;}
.yd3{bottom:405.666667pt;}
.y1a2{bottom:405.986667pt;}
.y113{bottom:407.746667pt;}
.y112{bottom:410.946667pt;}
.y161{bottom:415.426667pt;}
.y1e{bottom:418.466667pt;}
.yee{bottom:419.586667pt;}
.y9a{bottom:421.346667pt;}
.y7c{bottom:426.626667pt;}
.yd1{bottom:427.586667pt;}
.y63{bottom:429.346667pt;}
.y1d{bottom:433.826667pt;}
.y44{bottom:434.786667pt;}
.y178{bottom:436.226667pt;}
.y14c{bottom:436.386667pt;}
.yb7{bottom:443.586667pt;}
.y160{bottom:447.586667pt;}
.yed{bottom:451.586667pt;}
.y1a1{bottom:452.706667pt;}
.y99{bottom:453.346667pt;}
.y1c{bottom:457.826667pt;}
.y12f{bottom:458.786667pt;}
.ycf{bottom:459.586667pt;}
.y62{bottom:461.186667pt;}
.y14b{bottom:468.226667pt;}
.y130{bottom:468.866667pt;}
.y7b{bottom:469.346667pt;}
.yd0{bottom:469.666667pt;}
.y43{bottom:474.946667pt;}
.yb6{bottom:475.586667pt;}
.y1a0{bottom:475.906667pt;}
.y177{bottom:477.026667pt;}
.yec{bottom:483.426667pt;}
.y1b{bottom:483.746667pt;}
.y98{bottom:485.186667pt;}
.y15f{bottom:488.226667pt;}
.y12e{bottom:490.786667pt;}
.y111{bottom:491.426667pt;}
.ycd{bottom:496.386667pt;}
.ycc{bottom:500.066667pt;}
.y1a{bottom:500.706667pt;}
.y61{bottom:501.186667pt;}
.yb5{bottom:507.426667pt;}
.y42{bottom:508.066667pt;}
.y176{bottom:509.666667pt;}
.y79{bottom:509.826667pt;}
.yce{bottom:510.146667pt;}
.y19f{bottom:514.786667pt;}
.yeb{bottom:515.266667pt;}
.y97{bottom:517.026667pt;}
.y19{bottom:517.506667pt;}
.y7a{bottom:519.906667pt;}
.y15e{bottom:520.866667pt;}
.y110{bottom:531.266667pt;}
.ycb{bottom:532.066667pt;}
.y41{bottom:534.306667pt;}
.y19e{bottom:538.626667pt;}
.yb4{bottom:539.266667pt;}
.y14a{bottom:540.226667pt;}
.y18{bottom:541.186667pt;}
.y60{bottom:541.826667pt;}
.y96{bottom:548.893333pt;}
.y175{bottom:550.173333pt;}
.y17{bottom:551.293333pt;}
.ye9{bottom:555.293333pt;}
.y12d{bottom:560.093333pt;}
.y15d{bottom:561.693333pt;}
.y12c{bottom:563.293333pt;}
.y19d{bottom:564.573333pt;}
.yea{bottom:565.373333pt;}
.yb3{bottom:571.293333pt;}
.yca{bottom:571.933333pt;}
.y40{bottom:572.893333pt;}
.y5f{bottom:573.693333pt;}
.y16{bottom:574.973333pt;}
.y149{bottom:580.733333pt;}
.y95{bottom:580.893333pt;}
.y10f{bottom:581.373333pt;}
.y174{bottom:582.333333pt;}
.y15{bottom:585.053333pt;}
.ye8{bottom:587.133333pt;}
.y19c{bottom:587.613333pt;}
.y12a{bottom:595.133333pt;}
.y10e{bottom:600.093333pt;}
.y15c{bottom:602.173333pt;}
.yb2{bottom:603.133333pt;}
.y10d{bottom:603.293333pt;}
.y12b{bottom:605.213333pt;}
.y5e{bottom:605.533333pt;}
.y14{bottom:608.573333pt;}
.y94{bottom:609.533333pt;}
.yc9{bottom:611.773333pt;}
.y148{bottom:612.573333pt;}
.y3f{bottom:612.733333pt;}
.y19b{bottom:618.493333pt;}
.ye7{bottom:618.973333pt;}
.y13{bottom:619.133333pt;}
.y173{bottom:622.813333pt;}
.y129{bottom:626.973333pt;}
.y78{bottom:633.213333pt;}
.y15b{bottom:634.173333pt;}
.yb1{bottom:634.973333pt;}
.y5d{bottom:637.373333pt;}
.y12{bottom:637.533333pt;}
.y19a{bottom:641.693333pt;}
.y10c{bottom:643.773333pt;}
.y3e{bottom:644.573333pt;}
.ye6{bottom:650.813333pt;}
.yc8{bottom:651.773333pt;}
.y128{bottom:655.933333pt;}
.y199{bottom:657.213333pt;}
.y127{bottom:659.133333pt;}
.y172{bottom:662.813333pt;}
.yb0{bottom:666.813333pt;}
.y5c{bottom:669.373333pt;}
.y11{bottom:672.573333pt;}
.y15a{bottom:674.973333pt;}
.y10b{bottom:675.773333pt;}
.y147{bottom:676.413333pt;}
.y3d{bottom:676.573333pt;}
.y198{bottom:680.253333pt;}
.ye5{bottom:682.813333pt;}
.yc7{bottom:691.613333pt;}
.y171{bottom:695.613333pt;}
.yae{bottom:698.973333pt;}
.y125{bottom:699.613333pt;}
.y146{bottom:701.053333pt;}
.y5b{bottom:701.213333pt;}
.y197{bottom:703.613333pt;}
.y10a{bottom:707.613333pt;}
.y10{bottom:708.253333pt;}
.y3c{bottom:708.413333pt;}
.y92{bottom:708.573333pt;}
.yaf{bottom:709.053333pt;}
.y126{bottom:709.693333pt;}
.y159{bottom:715.453333pt;}
.y93{bottom:718.653333pt;}
.y196{bottom:719.133333pt;}
.ye4{bottom:722.813333pt;}
.yc4{bottom:723.453333pt;}
.yc5{bottom:726.333333pt;}
.y124{bottom:731.453333pt;}
.y5a{bottom:733.053333pt;}
.yc6{bottom:733.533333pt;}
.y195{bottom:734.493333pt;}
.y170{bottom:736.093333pt;}
.yad{bottom:739.453333pt;}
.y3b{bottom:740.253333pt;}
.yf{bottom:743.453333pt;}
.y158{bottom:747.453333pt;}
.y145{bottom:748.093333pt;}
.y91{bottom:749.053333pt;}
.yc3{bottom:755.453333pt;}
.y194{bottom:757.853333pt;}
.y59{bottom:761.853333pt;}
.ye2{bottom:763.293333pt;}
.y58{bottom:765.053333pt;}
.y109{bottom:768.253333pt;}
.yac{bottom:771.293333pt;}
.y108{bottom:771.453333pt;}
.y3a{bottom:772.093333pt;}
.ye3{bottom:773.373333pt;}
.y16f{bottom:776.093333pt;}
.y144{bottom:780.093333pt;}
.y90{bottom:781.093333pt;}
.y193{bottom:781.253333pt;}
.ye1{bottom:787.173333pt;}
.y157{bottom:788.293333pt;}
.ye{bottom:788.453333pt;}
.y123{bottom:792.293333pt;}
.ye0{bottom:795.333333pt;}
.y122{bottom:795.493333pt;}
.yc2{bottom:796.133333pt;}
.yab{bottom:803.333333pt;}
.y39{bottom:804.133333pt;}
.y192{bottom:804.453333pt;}
.y56{bottom:804.933333pt;}
.y143{bottom:811.973333pt;}
.y107{bottom:812.133333pt;}
.y8f{bottom:812.933333pt;}
.y57{bottom:815.013333pt;}
.y16e{bottom:816.933333pt;}
.ydf{bottom:827.173333pt;}
.y191{bottom:827.653333pt;}
.yc1{bottom:827.973333pt;}
.y156{bottom:828.773333pt;}
.yd{bottom:830.533333pt;}
.yaa{bottom:835.173333pt;}
.y38{bottom:835.973333pt;}
.y55{bottom:836.773333pt;}
.y190{bottom:843.173333pt;}
.y142{bottom:843.813333pt;}
.y106{bottom:843.973333pt;}
.y8e{bottom:844.773333pt;}
.yc{bottom:851.973333pt;}
.y16d{bottom:857.413333pt;}
.yde{bottom:859.173333pt;}
.ybf{bottom:859.813333pt;}
.y77{bottom:865.413333pt;}
.y18f{bottom:866.373333pt;}
.ya9{bottom:867.013333pt;}
.y37{bottom:867.813333pt;}
.y54{bottom:868.613333pt;}
.yc0{bottom:869.893333pt;}
.yb{bottom:873.413333pt;}
.y105{bottom:875.813333pt;}
.y8d{bottom:876.613333pt;}
.y76{bottom:878.693333pt;}
.y18e{bottom:881.893333pt;}
.y141{bottom:883.973333pt;}
.y16c{bottom:889.413333pt;}
.ybe{bottom:891.813333pt;}
.y120{bottom:896.293333pt;}
.y18d{bottom:897.253333pt;}
.ya8{bottom:899.013333pt;}
.y36{bottom:899.813333pt;}
.y53{bottom:900.613333pt;}
.ya{bottom:903.013333pt;}
.y103{bottom:907.813333pt;}
.y8c{bottom:908.613333pt;}
.y121{bottom:909.893333pt;}
.y104{bottom:917.893333pt;}
.y18c{bottom:920.453333pt;}
.y140{bottom:920.773333pt;}
.ybd{bottom:923.653333pt;}
.y13f{bottom:924.453333pt;}
.y16b{bottom:930.213333pt;}
.ya6{bottom:931.013333pt;}
.y35{bottom:931.653333pt;}
.y52{bottom:932.453333pt;}
.y9{bottom:933.733333pt;}
.y102{bottom:936.453333pt;}
.y101{bottom:939.653333pt;}
.y8b{bottom:940.453333pt;}
.ya7{bottom:941.093333pt;}
.y18b{bottom:943.653333pt;}
.y18a{bottom:959.173333pt;}
.y11f{bottom:960.453333pt;}
.y16a{bottom:962.853333pt;}
.y34{bottom:963.493333pt;}
.ya5{bottom:963.653333pt;}
.y75{bottom:964.293333pt;}
.y8{bottom:969.413333pt;}
.y100{bottom:971.493333pt;}
.y50{bottom:972.293333pt;}
.y189{bottom:974.533333pt;}
.y51{bottom:982.373333pt;}
.y31{bottom:996.960000pt;}
.y33{bottom:997.120000pt;}
.y188{bottom:997.733333pt;}
.yff{bottom:1000.773333pt;}
.ydc{bottom:1001.093333pt;}
.y7{bottom:1003.653333pt;}
.y4f{bottom:1004.293333pt;}
.y187{bottom:1013.253333pt;}
.ydd{bottom:1014.400000pt;}
.y3{bottom:1027.200000pt;}
.y1{bottom:1038.720000pt;}
.h2{height:15.360000pt;}
.h5{height:16.352000pt;}
.h15{height:19.040000pt;}
.h12{height:31.483125pt;}
.h4{height:33.375000pt;}
.h2a{height:35.273438pt;}
.h1e{height:36.045000pt;}
.h20{height:38.715000pt;}
.h36{height:42.084375pt;}
.h22{height:43.968750pt;}
.h32{height:44.722500pt;}
.h14{height:45.053438pt;}
.h33{height:46.593750pt;}
.h39{height:46.781250pt;}
.h3f{height:47.491563pt;}
.h37{height:49.750000pt;}
.h31{height:50.062500pt;}
.h1c{height:51.590000pt;}
.h3{height:55.402500pt;}
.hc{height:56.306250pt;}
.h16{height:58.563750pt;}
.h9{height:60.288750pt;}
.h13{height:60.519362pt;}
.h8{height:61.410000pt;}
.h3c{height:62.551563pt;}
.h30{height:62.812500pt;}
.h6{height:64.629688pt;}
.h11{height:65.781915pt;}
.h3e{height:66.625000pt;}
.h10{height:66.750000pt;}
.h1f{height:68.591250pt;}
.h3b{height:69.231250pt;}
.h24{height:69.834375pt;}
.h21{height:72.300803pt;}
.h18{height:77.971250pt;}
.hb{height:78.097500pt;}
.h26{height:79.251250pt;}
.h17{height:79.384375pt;}
.h3d{height:82.188092pt;}
.h2e{height:82.451250pt;}
.h7{height:84.662813pt;}
.h3a{height:87.151250pt;}
.h29{height:87.937500pt;}
.h23{height:88.431250pt;}
.h1a{height:88.777500pt;}
.h25{height:88.851250pt;}
.hf{height:89.531250pt;}
.h28{height:90.131250pt;}
.h1d{height:90.771250pt;}
.h34{height:90.904375pt;}
.h2d{height:91.411250pt;}
.h38{height:92.051250pt;}
.h35{height:92.184375pt;}
.h2c{height:92.691250pt;}
.h27{height:94.611250pt;}
.ha{height:100.125000pt;}
.h19{height:100.371250pt;}
.h2b{height:101.651250pt;}
.hd{height:109.228125pt;}
.h2f{height:110.611250pt;}
.he{height:122.152500pt;}
.h1b{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:42.880000pt;}
.w4{width:46.720000pt;}
.w5{width:230.880000pt;}
.w3{width:595.320000pt;}
.w2{width:639.960000pt;}
.w7{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:12.192000pt;}
.x1b{left:13.152000pt;}
.x6{left:25.760000pt;}
.x2{left:27.670667pt;}
.x38{left:70.592000pt;}
.x3{left:75.552000pt;}
.x1{left:77.001333pt;}
.x4c{left:80.192000pt;}
.x7e{left:81.792000pt;}
.x3e{left:84.032000pt;}
.xc8{left:85.792000pt;}
.xc9{left:87.392000pt;}
.xe1{left:94.432000pt;}
.x24{left:97.312000pt;}
.xb{left:100.192000pt;}
.x15{left:101.632000pt;}
.xc7{left:105.632000pt;}
.x17{left:107.232000pt;}
.xf6{left:113.312000pt;}
.xea{left:117.152000pt;}
.x1a{left:118.560000pt;}
.xc{left:130.912000pt;}
.xc2{left:132.992000pt;}
.xda{left:135.072000pt;}
.xee{left:137.946667pt;}
.xc3{left:139.226667pt;}
.x5f{left:143.392000pt;}
.x12{left:146.266667pt;}
.xb8{left:148.346667pt;}
.xb7{left:154.265000pt;}
.x97{left:166.905000pt;}
.xb5{left:173.946667pt;}
.xed{left:178.266667pt;}
.xb6{left:184.186667pt;}
.x83{left:185.306667pt;}
.x62{left:190.106667pt;}
.x67{left:200.986667pt;}
.x8d{left:208.346667pt;}
.xb4{left:209.466667pt;}
.xbd{left:220.386667pt;}
.x84{left:231.106667pt;}
.xbf{left:233.346667pt;}
.x9d{left:234.586667pt;}
.x3c{left:238.306667pt;}
.x68{left:239.546667pt;}
.x89{left:241.025000pt;}
.x7d{left:243.426667pt;}
.x7c{left:244.706667pt;}
.x6b{left:247.906667pt;}
.x3b{left:249.505000pt;}
.x72{left:250.626667pt;}
.xb3{left:253.666667pt;}
.x3a{left:256.386667pt;}
.x31{left:259.586667pt;}
.x70{left:263.266667pt;}
.x8e{left:264.226667pt;}
.xd8{left:265.826667pt;}
.xba{left:271.105000pt;}
.xc1{left:274.466667pt;}
.x95{left:277.986667pt;}
.xaf{left:281.346667pt;}
.xae{left:287.265000pt;}
.x39{left:297.666667pt;}
.xd{left:306.306667pt;}
.xac{left:307.586667pt;}
.x13{left:309.826667pt;}
.xad{left:312.066667pt;}
.xd7{left:313.825000pt;}
.xe0{left:315.265000pt;}
.x14{left:320.226667pt;}
.x6d{left:321.626667pt;}
.x16{left:322.946667pt;}
.x99{left:326.146667pt;}
.xe7{left:329.506667pt;}
.xf{left:335.586667pt;}
.xab{left:336.866667pt;}
.xcd{left:341.346667pt;}
.x6e{left:343.586667pt;}
.x42{left:344.866667pt;}
.xde{left:348.865000pt;}
.xf4{left:351.586667pt;}
.x93{left:352.706667pt;}
.xb2{left:354.306667pt;}
.x82{left:355.746667pt;}
.xa9{left:359.426667pt;}
.x81{left:361.665000pt;}
.x19{left:364.413333pt;}
.x34{left:365.373333pt;}
.xd5{left:368.893333pt;}
.xb1{left:373.373333pt;}
.xaa{left:375.266667pt;}
.xb9{left:376.413333pt;}
.xd4{left:380.091667pt;}
.xe3{left:381.533333pt;}
.x9{left:383.773333pt;}
.xa{left:386.653333pt;}
.x10{left:389.693333pt;}
.xa4{left:392.733333pt;}
.xe9{left:393.693333pt;}
.x18{left:396.893333pt;}
.x22{left:401.373333pt;}
.x6f{left:402.306667pt;}
.x4f{left:403.453333pt;}
.x94{left:405.053333pt;}
.xbc{left:406.653333pt;}
.x4e{left:409.371667pt;}
.x56{left:411.106667pt;}
.x4{left:412.852000pt;}
.x1d{left:414.653333pt;}
.x92{left:416.253333pt;}
.xe6{left:422.173333pt;}
.x91{left:424.573333pt;}
.xe2{left:426.013333pt;}
.xdd{left:428.573333pt;}
.x90{left:430.491667pt;}
.xc5{left:433.053333pt;}
.x11{left:436.573333pt;}
.xeb{left:437.853333pt;}
.x85{left:439.453333pt;}
.x57{left:442.306667pt;}
.x9b{left:445.373333pt;}
.x8f{left:450.333333pt;}
.xf2{left:453.213333pt;}
.x49{left:458.813333pt;}
.xc0{left:460.733333pt;}
.xe4{left:463.613333pt;}
.x54{left:465.853333pt;}
.xcc{left:470.493333pt;}
.x35{left:472.893333pt;}
.x27{left:475.133333pt;}
.x37{left:480.413333pt;}
.x9e{left:481.373333pt;}
.xa7{left:482.973333pt;}
.x58{left:484.866667pt;}
.xdf{left:488.253333pt;}
.x66{left:489.373333pt;}
.xec{left:492.413333pt;}
.x1e{left:494.813333pt;}
.x71{left:498.333333pt;}
.x6a{left:502.493333pt;}
.xa8{left:504.253333pt;}
.xd1{left:506.493333pt;}
.x8b{left:508.573333pt;}
.x79{left:511.813333pt;}
.x29{left:513.533333pt;}
.x48{left:516.293333pt;}
.x51{left:518.533333pt;}
.x50{left:526.531667pt;}
.x9c{left:528.133333pt;}
.xf0{left:529.413333pt;}
.x7a{left:535.653333pt;}
.xdc{left:537.731667pt;}
.x80{left:542.533333pt;}
.xd3{left:546.053333pt;}
.x4d{left:548.893333pt;}
.x77{left:552.453333pt;}
.x46{left:555.173333pt;}
.xc6{left:556.613333pt;}
.x76{left:558.371667pt;}
.x69{left:562.213333pt;}
.xd2{left:564.133333pt;}
.x7f{left:566.533333pt;}
.x3d{left:570.053333pt;}
.x75{left:571.333333pt;}
.x88{left:573.093333pt;}
.x53{left:574.853333pt;}
.x44{left:580.293333pt;}
.x41{left:582.213333pt;}
.xa5{left:584.613333pt;}
.x65{left:586.853333pt;}
.x98{left:587.973333pt;}
.x59{left:591.106667pt;}
.x40{left:593.411667pt;}
.x86{left:597.253333pt;}
.xd6{left:598.533333pt;}
.x28{left:601.093333pt;}
.x5a{left:606.373333pt;}
.x47{left:609.573333pt;}
.xf3{left:611.013333pt;}
.xf1{left:613.893333pt;}
.x7b{left:615.973333pt;}
.x61{left:617.413333pt;}
.xe{left:620.933333pt;}
.x60{left:623.331667pt;}
.x33{left:624.613333pt;}
.x3f{left:627.333333pt;}
.xf5{left:628.453333pt;}
.x25{left:629.733333pt;}
.xb0{left:631.173333pt;}
.xef{left:633.573333pt;}
.x30{left:634.693333pt;}
.xe8{left:635.653333pt;}
.x8c{left:636.933333pt;}
.x43{left:638.693333pt;}
.x5c{left:642.493333pt;}
.x55{left:644.773333pt;}
.xa1{left:645.733333pt;}
.xa6{left:647.493333pt;}
.xa3{left:649.253333pt;}
.x1f{left:650.213333pt;}
.x20{left:653.573333pt;}
.x2f{left:655.333333pt;}
.x9a{left:656.613333pt;}
.x74{left:657.600000pt;}
.xc4{left:658.880000pt;}
.x78{left:660.160000pt;}
.x96{left:662.880000pt;}
.xd0{left:664.160000pt;}
.x4b{left:665.440000pt;}
.x23{left:666.400000pt;}
.x64{left:667.840000pt;}
.xd9{left:669.278333pt;}
.x8a{left:670.400000pt;}
.x5{left:671.520000pt;}
.x6c{left:673.120000pt;}
.x5d{left:674.080000pt;}
.xbe{left:675.200000pt;}
.xdb{left:676.480000pt;}
.x4a{left:678.240000pt;}
.x5b{left:679.360000pt;}
.x2a{left:680.480000pt;}
.x63{left:682.080000pt;}
.x87{left:683.840000pt;}
.xa2{left:685.760000pt;}
.x45{left:687.840000pt;}
.x32{left:689.440000pt;}
.xe5{left:691.200000pt;}
.xcb{left:692.160000pt;}
.xce{left:693.280000pt;}
.x26{left:694.720000pt;}
.x2c{left:696.160000pt;}
.xcf{left:697.440000pt;}
.xca{left:698.400000pt;}
.x5e{left:699.360000pt;}
.xa0{left:700.638333pt;}
.xbb{left:702.080000pt;}
.x73{left:704.000000pt;}
.x36{left:705.853333pt;}
.x2b{left:707.040000pt;}
.x2d{left:708.320000pt;}
.x8{left:709.600000pt;}
.x7{left:710.560000pt;}
.x9f{left:711.520000pt;}
.x21{left:712.480000pt;}
.x52{left:713.438333pt;}
.x2e{left:714.560000pt;}
}




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