
    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_14dd5ee36274586a00eb82dd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.124512;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_cc844d81e67fbb85fb8ab4f0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_2c8c244ba3c45370cb97fad5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.377930;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_a05b20146ec2c4db423c2117.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_9a4051fcd0348bc799d4356f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.377930;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_81b96964961a75f7818a015c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.124512;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_3c4520da74e8b1a42c1442e1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_c3016d2834b8fc91634757d8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.099609;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_4c1a0b1ef641d746f383dfd8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_9aa5ae1dc385b036c2876ee4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.102051;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_00a9c22b6f7b5748a474392b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.974000px;}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.004000px;}
.v1{vertical-align:16.902000px;}
.lsd5{letter-spacing:-8.442000px;}
.ls1b{letter-spacing:-7.371000px;}
.lsc3{letter-spacing:-5.382000px;}
.ls7c{letter-spacing:-4.485000px;}
.ls61{letter-spacing:-4.275000px;}
.ls65{letter-spacing:-3.726000px;}
.lsab{letter-spacing:-3.660000px;}
.lsde{letter-spacing:-3.180000px;}
.ls6e{letter-spacing:-3.174000px;}
.ls86{letter-spacing:-3.105000px;}
.ls6{letter-spacing:-2.916000px;}
.ls79{letter-spacing:-2.829000px;}
.ls88{letter-spacing:-2.691000px;}
.lsb3{letter-spacing:-2.622000px;}
.lsb8{letter-spacing:-2.592000px;}
.ls8f{letter-spacing:-2.484000px;}
.ls49{letter-spacing:-2.322000px;}
.ls87{letter-spacing:-2.277000px;}
.ls8a{letter-spacing:-2.208000px;}
.ls78{letter-spacing:-2.175000px;}
.ls41{letter-spacing:-2.139000px;}
.ls59{letter-spacing:-2.070000px;}
.ls2c{letter-spacing:-2.001000px;}
.ls56{letter-spacing:-1.932000px;}
.ls40{letter-spacing:-1.863000px;}
.ls7{letter-spacing:-1.836000px;}
.lsad{letter-spacing:-1.800000px;}
.ls28{letter-spacing:-1.794000px;}
.ls6f{letter-spacing:-1.725000px;}
.lsaf{letter-spacing:-1.680000px;}
.ls3f{letter-spacing:-1.587000px;}
.ls37{letter-spacing:-1.518000px;}
.ls15{letter-spacing:-1.500000px;}
.ls39{letter-spacing:-1.449000px;}
.ls34{letter-spacing:-1.380000px;}
.lsbe{letter-spacing:-1.350000px;}
.lsd6{letter-spacing:-1.323000px;}
.ls14{letter-spacing:-1.320000px;}
.ls2e{letter-spacing:-1.311000px;}
.lsa{letter-spacing:-1.260000px;}
.ls53{letter-spacing:-1.242000px;}
.lsdf{letter-spacing:-1.200000px;}
.ls44{letter-spacing:-1.188000px;}
.ls2d{letter-spacing:-1.173000px;}
.lsba{letter-spacing:-1.134000px;}
.ls27{letter-spacing:-1.125000px;}
.ls23{letter-spacing:-1.104000px;}
.ls68{letter-spacing:-1.080000px;}
.ls81{letter-spacing:-1.053000px;}
.ls21{letter-spacing:-1.035000px;}
.ls8{letter-spacing:-1.008000px;}
.ls3e{letter-spacing:-0.975000px;}
.ls4c{letter-spacing:-0.972000px;}
.ls42{letter-spacing:-0.966000px;}
.lsaa{letter-spacing:-0.960000px;}
.lsc5{letter-spacing:-0.945000px;}
.ls9a{letter-spacing:-0.925221px;}
.ls29{letter-spacing:-0.897000px;}
.ls72{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.840000px;}
.ls31{letter-spacing:-0.828000px;}
.ls9e{letter-spacing:-0.810000px;}
.lsa5{letter-spacing:-0.804540px;}
.lsf{letter-spacing:-0.780000px;}
.ls73{letter-spacing:-0.768000px;}
.ls38{letter-spacing:-0.759000px;}
.ls4e{letter-spacing:-0.756000px;}
.ls66{letter-spacing:-0.729000px;}
.lsb0{letter-spacing:-0.724086px;}
.lsac{letter-spacing:-0.720000px;}
.ls33{letter-spacing:-0.690000px;}
.lsa3{letter-spacing:-0.675000px;}
.lse0{letter-spacing:-0.648000px;}
.ls64{letter-spacing:-0.621000px;}
.lsae{letter-spacing:-0.600000px;}
.ls9d{letter-spacing:-0.598158px;}
.ls62{letter-spacing:-0.552000px;}
.lsa0{letter-spacing:-0.540000px;}
.lsd2{letter-spacing:-0.504000px;}
.ls47{letter-spacing:-0.486000px;}
.ls5b{letter-spacing:-0.483000px;}
.lsa8{letter-spacing:-0.480000px;}
.lsc8{letter-spacing:-0.441000px;}
.ls74{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.420000px;}
.ls1c{letter-spacing:-0.414000px;}
.lsc7{letter-spacing:-0.378000px;}
.lsa9{letter-spacing:-0.360000px;}
.ls55{letter-spacing:-0.345000px;}
.ls4b{letter-spacing:-0.324000px;}
.lsd3{letter-spacing:-0.315000px;}
.ls19{letter-spacing:-0.300000px;}
.ls85{letter-spacing:-0.276000px;}
.ls67{letter-spacing:-0.270000px;}
.lsd7{letter-spacing:-0.252000px;}
.lsc1{letter-spacing:-0.243000px;}
.ls95{letter-spacing:-0.241362px;}
.lsda{letter-spacing:-0.240000px;}
.lsbb{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.207000px;}
.lsd4{letter-spacing:-0.189000px;}
.ls18{letter-spacing:-0.180000px;}
.ls75{letter-spacing:-0.162000px;}
.ls58{letter-spacing:-0.138000px;}
.lse{letter-spacing:-0.120000px;}
.ls4a{letter-spacing:-0.108000px;}
.lsa4{letter-spacing:-0.069960px;}
.ls5d{letter-spacing:-0.069000px;}
.ls96{letter-spacing:-0.062964px;}
.lsa7{letter-spacing:-0.060000px;}
.ls45{letter-spacing:-0.054000px;}
.lsb5{letter-spacing:-0.040227px;}
.ls5{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.054000px;}
.lsa6{letter-spacing:0.060000px;}
.lsb6{letter-spacing:0.094446px;}
.ls99{letter-spacing:0.124200px;}
.lsce{letter-spacing:0.126000px;}
.ls1f{letter-spacing:0.138000px;}
.lsb1{letter-spacing:0.162000px;}
.ls35{letter-spacing:0.207000px;}
.lsbc{letter-spacing:0.216000px;}
.lsdb{letter-spacing:0.240000px;}
.ls2b{letter-spacing:0.276000px;}
.lsb9{letter-spacing:0.324000px;}
.ls89{letter-spacing:0.345000px;}
.lsb7{letter-spacing:0.378000px;}
.ls54{letter-spacing:0.414000px;}
.ls1{letter-spacing:0.420000px;}
.ls71{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.450000px;}
.lsdd{letter-spacing:0.480000px;}
.ls8e{letter-spacing:0.483000px;}
.ls52{letter-spacing:0.502500px;}
.lsd1{letter-spacing:0.504000px;}
.ls3b{letter-spacing:0.543900px;}
.ls1d{letter-spacing:0.552000px;}
.ls9c{letter-spacing:0.563178px;}
.ls9f{letter-spacing:0.566676px;}
.ls43{letter-spacing:0.594000px;}
.ls8c{letter-spacing:0.598500px;}
.lscb{letter-spacing:0.600000px;}
.ls4d{letter-spacing:0.648000px;}
.ls80{letter-spacing:0.690000px;}
.lscd{letter-spacing:0.819000px;}
.ls24{letter-spacing:0.828000px;}
.ls8d{letter-spacing:0.897000px;}
.ls11{letter-spacing:0.900000px;}
.ls2a{letter-spacing:0.966000px;}
.lsc0{letter-spacing:0.975000px;}
.ls22{letter-spacing:1.035000px;}
.lsd0{letter-spacing:1.071000px;}
.ls20{letter-spacing:1.104000px;}
.ls32{letter-spacing:1.173000px;}
.ls70{letter-spacing:1.188000px;}
.lsc9{letter-spacing:1.197000px;}
.ls98{letter-spacing:1.242000px;}
.lsc{letter-spacing:1.260000px;}
.lsbd{letter-spacing:1.296000px;}
.lsb4{letter-spacing:1.311000px;}
.ls4{letter-spacing:1.344000px;}
.ls48{letter-spacing:1.350000px;}
.ls92{letter-spacing:1.425000px;}
.ls97{letter-spacing:1.458000px;}
.ls30{letter-spacing:1.518000px;}
.ls60{letter-spacing:1.540500px;}
.ls9b{letter-spacing:1.587000px;}
.ls6b{letter-spacing:1.606500px;}
.lsc2{letter-spacing:1.725000px;}
.ls10{letter-spacing:1.740000px;}
.ls50{letter-spacing:1.863000px;}
.ls94{letter-spacing:1.944000px;}
.ls7f{letter-spacing:2.008500px;}
.ls6c{letter-spacing:2.049300px;}
.ls51{letter-spacing:2.277000px;}
.ls26{letter-spacing:2.400000px;}
.ls84{letter-spacing:2.484000px;}
.ls3c{letter-spacing:2.592000px;}
.ls3d{letter-spacing:2.613600px;}
.ls63{letter-spacing:2.829000px;}
.ls83{letter-spacing:2.967000px;}
.ls5f{letter-spacing:3.036000px;}
.ls5c{letter-spacing:3.312000px;}
.lsb2{letter-spacing:3.412800px;}
.ls77{letter-spacing:3.519000px;}
.ls1a{letter-spacing:3.696000px;}
.ls17{letter-spacing:4.140000px;}
.ls12{letter-spacing:4.200000px;}
.ls8b{letter-spacing:4.485000px;}
.ls7a{letter-spacing:4.554000px;}
.lsd8{letter-spacing:5.700000px;}
.lsb{letter-spacing:5.760000px;}
.ls57{letter-spacing:5.796000px;}
.ls13{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls7b{letter-spacing:6.141000px;}
.ls6d{letter-spacing:6.279000px;}
.lscc{letter-spacing:6.300000px;}
.ls6a{letter-spacing:6.348000px;}
.lsc6{letter-spacing:7.497000px;}
.ls93{letter-spacing:7.728000px;}
.ls91{letter-spacing:8.160156px;}
.lscf{letter-spacing:8.316000px;}
.lsd9{letter-spacing:8.640000px;}
.lsc4{letter-spacing:8.820000px;}
.ls7d{letter-spacing:8.832000px;}
.ls36{letter-spacing:9.108000px;}
.ls5a{letter-spacing:10.419000px;}
.lsa2{letter-spacing:188.820000px;}
.ls0{letter-spacing:499.243800px;}
.ls90{letter-spacing:499.406400px;}
.lsbf{letter-spacing:499.811400px;}
.lsdc{letter-spacing:499.819200px;}
.lsca{letter-spacing:500.201400px;}
.lsa1{letter-spacing:501.499200px;}
.ls3a{letter-spacing:507.823800px;}
.ls82{letter-spacing:507.936000px;}
.ls25{letter-spacing:507.958800px;}
.ls76{letter-spacing:509.053800px;}
.ls5e{letter-spacing:511.093800px;}
.ls16{letter-spacing:990.024000px;}
.ls4f{letter-spacing:990.522000px;}
.ls69{letter-spacing:993.144000px;}
.ls7e{letter-spacing:997.194000px;}
.ls2f{letter-spacing:999.174000px;}
.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;}
}
.ws70{word-spacing:-69.414000px;}
.ws8e{word-spacing:-69.345000px;}
.ws65{word-spacing:-69.000000px;}
.ws63{word-spacing:-68.931000px;}
.ws57{word-spacing:-68.862000px;}
.ws62{word-spacing:-68.655000px;}
.wsa1{word-spacing:-68.586000px;}
.ws58{word-spacing:-68.517000px;}
.ws61{word-spacing:-68.448000px;}
.ws66{word-spacing:-68.379000px;}
.ws8c{word-spacing:-68.310000px;}
.wsa0{word-spacing:-68.241000px;}
.ws6f{word-spacing:-67.965000px;}
.ws64{word-spacing:-67.758000px;}
.ws74{word-spacing:-54.432000px;}
.wsd6{word-spacing:-54.378000px;}
.wsd7{word-spacing:-54.324000px;}
.wsd8{word-spacing:-54.216000px;}
.wsdb{word-spacing:-54.162000px;}
.wsdc{word-spacing:-53.946000px;}
.wsda{word-spacing:-53.514000px;}
.wsec{word-spacing:-26.523000px;}
.wsf4{word-spacing:-26.019000px;}
.ws103{word-spacing:-25.500000px;}
.ws4{word-spacing:-22.740000px;}
.ws3{word-spacing:-22.620000px;}
.ws9f{word-spacing:-22.500000px;}
.wse8{word-spacing:-22.050000px;}
.wsad{word-spacing:-21.789000px;}
.wsf3{word-spacing:-21.675000px;}
.ws0{word-spacing:-21.525000px;}
.wse9{word-spacing:-20.976000px;}
.ws56{word-spacing:-20.562000px;}
.ws26{word-spacing:-20.493000px;}
.wsb5{word-spacing:-20.400000px;}
.ws24{word-spacing:-20.355000px;}
.ws3d{word-spacing:-20.100000px;}
.ws23{word-spacing:-19.950000px;}
.ws6d{word-spacing:-19.941000px;}
.ws2{word-spacing:-19.740000px;}
.ws25{word-spacing:-19.665000px;}
.ws83{word-spacing:-19.527000px;}
.ws30{word-spacing:-19.389000px;}
.ws82{word-spacing:-18.900000px;}
.ws71{word-spacing:-18.768000px;}
.ws96{word-spacing:-18.699000px;}
.ws3e{word-spacing:-18.630000px;}
.wsab{word-spacing:-18.561000px;}
.wsae{word-spacing:-18.492000px;}
.ws98{word-spacing:-18.285000px;}
.wsb6{word-spacing:-18.120000px;}
.ws53{word-spacing:-17.457000px;}
.wsf5{word-spacing:-17.262000px;}
.ws52{word-spacing:-17.181000px;}
.ws32{word-spacing:-17.043000px;}
.ws9a{word-spacing:-16.974000px;}
.ws72{word-spacing:-16.836000px;}
.ws60{word-spacing:-16.800000px;}
.ws54{word-spacing:-16.698000px;}
.wsbb{word-spacing:-16.680000px;}
.ws27{word-spacing:-16.629000px;}
.ws14{word-spacing:-16.560000px;}
.wsd1{word-spacing:-16.422000px;}
.ws55{word-spacing:-16.353000px;}
.ws31{word-spacing:-16.284000px;}
.ws2f{word-spacing:-16.215000px;}
.ws29{word-spacing:-16.146000px;}
.ws3f{word-spacing:-16.077000px;}
.ws16{word-spacing:-15.939000px;}
.ws99{word-spacing:-15.870000px;}
.ws6e{word-spacing:-15.801000px;}
.ws28{word-spacing:-15.732000px;}
.ws73{word-spacing:-15.594000px;}
.ws9b{word-spacing:-15.525000px;}
.ws8a{word-spacing:-15.456000px;}
.wsa8{word-spacing:-15.318000px;}
.ws97{word-spacing:-15.249000px;}
.wsd3{word-spacing:-14.904000px;}
.ws8f{word-spacing:-14.835000px;}
.ws104{word-spacing:-14.760000px;}
.ws108{word-spacing:-14.640000px;}
.wsf6{word-spacing:-14.616000px;}
.wsbc{word-spacing:-14.460000px;}
.wsd2{word-spacing:-14.421000px;}
.ws15{word-spacing:-14.400000px;}
.wsbf{word-spacing:-14.340000px;}
.wsc3{word-spacing:-14.280000px;}
.wsf7{word-spacing:-14.238000px;}
.wsc2{word-spacing:-14.220000px;}
.wsbe{word-spacing:-14.040000px;}
.wsbd{word-spacing:-13.860000px;}
.ws109{word-spacing:-13.620000px;}
.wsc9{word-spacing:-13.500000px;}
.ws41{word-spacing:-13.392000px;}
.ws40{word-spacing:-13.284000px;}
.ws43{word-spacing:-13.230000px;}
.wsc7{word-spacing:-13.200000px;}
.wsd5{word-spacing:-13.176000px;}
.ws1{word-spacing:-13.146000px;}
.ws67{word-spacing:-13.068000px;}
.ws44{word-spacing:-13.014000px;}
.ws42{word-spacing:-12.852000px;}
.wsb0{word-spacing:-12.798000px;}
.ws10a{word-spacing:-12.690000px;}
.ws46{word-spacing:-12.582000px;}
.ws84{word-spacing:-12.558000px;}
.wsaf{word-spacing:-12.528000px;}
.ws45{word-spacing:-12.366000px;}
.ws68{word-spacing:-12.258000px;}
.wsac{word-spacing:-11.866965px;}
.ws51{word-spacing:-11.303787px;}
.wsd4{word-spacing:-11.263560px;}
.wsa2{word-spacing:-11.062425px;}
.ws5d{word-spacing:-10.419000px;}
.wsa9{word-spacing:-10.378566px;}
.wsb7{word-spacing:-9.759420px;}
.ws38{word-spacing:-9.108000px;}
.wsc4{word-spacing:-9.024840px;}
.ws88{word-spacing:-8.832000px;}
.wsa3{word-spacing:-7.728000px;}
.wsef{word-spacing:-7.497000px;}
.wsf9{word-spacing:-6.300000px;}
.ws75{word-spacing:-6.279000px;}
.ws87{word-spacing:-6.141000px;}
.ws6{word-spacing:-6.000000px;}
.ws5b{word-spacing:-5.796000px;}
.ws86{word-spacing:-4.554000px;}
.ws11{word-spacing:-4.200000px;}
.ws19{word-spacing:-3.696000px;}
.ws5e{word-spacing:-3.312000px;}
.ws69{word-spacing:-2.829000px;}
.ws2a{word-spacing:-2.400000px;}
.wsa5{word-spacing:-1.944000px;}
.wsf{word-spacing:-1.740000px;}
.wseb{word-spacing:-1.725000px;}
.wsb1{word-spacing:-1.587000px;}
.wsa7{word-spacing:-1.458000px;}
.ws4c{word-spacing:-1.350000px;}
.wsde{word-spacing:-1.311000px;}
.wsb{word-spacing:-1.260000px;}
.wsf2{word-spacing:-1.197000px;}
.ws7c{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.173000px;}
.ws1f{word-spacing:-1.104000px;}
.wsfc{word-spacing:-1.071000px;}
.ws21{word-spacing:-1.035000px;}
.ws33{word-spacing:-0.966000px;}
.ws10{word-spacing:-0.900000px;}
.ws9c{word-spacing:-0.897000px;}
.ws22{word-spacing:-0.828000px;}
.wsfa{word-spacing:-0.819000px;}
.ws8d{word-spacing:-0.759000px;}
.ws50{word-spacing:-0.648000px;}
.ws4a{word-spacing:-0.594000px;}
.wsb3{word-spacing:-0.566676px;}
.ws1c{word-spacing:-0.552000px;}
.wsfd{word-spacing:-0.504000px;}
.ws9d{word-spacing:-0.483000px;}
.ws10b{word-spacing:-0.480000px;}
.ws107{word-spacing:-0.240000px;}
.wsd9{word-spacing:-0.216000px;}
.ws37{word-spacing:-0.207000px;}
.ws1e{word-spacing:-0.138000px;}
.wsfb{word-spacing:-0.126000px;}
.wsdf{word-spacing:-0.094446px;}
.ws5{word-spacing:0.000000px;}
.ws4f{word-spacing:0.054000px;}
.wscb{word-spacing:0.060000px;}
.wsa6{word-spacing:0.062964px;}
.ws5f{word-spacing:0.069000px;}
.wsb4{word-spacing:0.108000px;}
.wsd{word-spacing:0.120000px;}
.ws77{word-spacing:0.138000px;}
.ws81{word-spacing:0.162000px;}
.ws17{word-spacing:0.180000px;}
.ws100{word-spacing:0.189000px;}
.ws1d{word-spacing:0.207000px;}
.wse4{word-spacing:0.216000px;}
.ws105{word-spacing:0.240000px;}
.wsea{word-spacing:0.243000px;}
.ws102{word-spacing:0.252000px;}
.ws91{word-spacing:0.276000px;}
.wscd{word-spacing:0.300000px;}
.wsff{word-spacing:0.315000px;}
.ws4e{word-spacing:0.324000px;}
.ws94{word-spacing:0.345000px;}
.wsf0{word-spacing:0.378000px;}
.ws1b{word-spacing:0.414000px;}
.ws9{word-spacing:0.420000px;}
.ws80{word-spacing:0.432000px;}
.wsf1{word-spacing:0.441000px;}
.wscc{word-spacing:0.480000px;}
.wsdd{word-spacing:0.483000px;}
.wse1{word-spacing:0.486000px;}
.wsfe{word-spacing:0.504000px;}
.wsaa{word-spacing:0.552000px;}
.wsb2{word-spacing:0.598158px;}
.ws8b{word-spacing:0.621000px;}
.ws35{word-spacing:0.690000px;}
.wscf{word-spacing:0.720000px;}
.wsd0{word-spacing:0.724086px;}
.ws6b{word-spacing:0.729000px;}
.ws7f{word-spacing:0.756000px;}
.wsa4{word-spacing:0.759000px;}
.ws7e{word-spacing:0.768000px;}
.wse{word-spacing:0.780000px;}
.wsca{word-spacing:0.804540px;}
.ws3b{word-spacing:0.828000px;}
.wsc{word-spacing:0.840000px;}
.ws7d{word-spacing:0.864000px;}
.ws2c{word-spacing:0.897000px;}
.wsee{word-spacing:0.945000px;}
.ws76{word-spacing:0.966000px;}
.wsf8{word-spacing:1.008000px;}
.ws20{word-spacing:1.035000px;}
.ws89{word-spacing:1.053000px;}
.ws6c{word-spacing:1.080000px;}
.ws90{word-spacing:1.104000px;}
.wse2{word-spacing:1.134000px;}
.ws2e{word-spacing:1.173000px;}
.ws4b{word-spacing:1.188000px;}
.ws59{word-spacing:1.242000px;}
.wsa{word-spacing:1.260000px;}
.ws39{word-spacing:1.311000px;}
.ws12{word-spacing:1.320000px;}
.wse7{word-spacing:1.350000px;}
.ws36{word-spacing:1.380000px;}
.ws3c{word-spacing:1.449000px;}
.ws13{word-spacing:1.500000px;}
.ws3a{word-spacing:1.518000px;}
.ws47{word-spacing:1.587000px;}
.ws79{word-spacing:1.725000px;}
.ws2b{word-spacing:1.794000px;}
.ws8{word-spacing:1.836000px;}
.ws48{word-spacing:1.863000px;}
.ws5a{word-spacing:1.932000px;}
.ws7a{word-spacing:2.001000px;}
.ws5c{word-spacing:2.070000px;}
.wse5{word-spacing:2.106000px;}
.ws49{word-spacing:2.139000px;}
.ws93{word-spacing:2.277000px;}
.ws4d{word-spacing:2.322000px;}
.ws9e{word-spacing:2.484000px;}
.wse0{word-spacing:2.592000px;}
.ws95{word-spacing:2.691000px;}
.ws85{word-spacing:2.829000px;}
.ws7{word-spacing:2.916000px;}
.wse6{word-spacing:3.024000px;}
.ws92{word-spacing:3.105000px;}
.ws78{word-spacing:3.174000px;}
.ws10c{word-spacing:3.180000px;}
.ws106{word-spacing:3.360000px;}
.wsce{word-spacing:3.660000px;}
.ws6a{word-spacing:3.726000px;}
.wse3{word-spacing:4.536000px;}
.ws18{word-spacing:4.800000px;}
.wsed{word-spacing:5.382000px;}
.ws2d{word-spacing:6.210000px;}
.ws1a{word-spacing:7.371000px;}
.ws101{word-spacing:8.442000px;}
.ws7b{word-spacing:43.445160px;}
.wsba{word-spacing:113.400000px;}
.wsc0{word-spacing:117.300000px;}
.wsb9{word-spacing:119.580000px;}
.wsc6{word-spacing:175.260000px;}
.wsc5{word-spacing:216.780000px;}
.wsc1{word-spacing:275.616000px;}
.wsc8{word-spacing:408.828000px;}
.wsb8{word-spacing:1000.860000px;}
._17{margin-left:-16.295400px;}
._1b{margin-left:-11.888700px;}
._11{margin-left:-10.177500px;}
._16{margin-left:-8.600400px;}
._9{margin-left:-7.510800px;}
._19{margin-left:-6.249600px;}
._4{margin-left:-5.046900px;}
._a{margin-left:-3.874800px;}
._3{margin-left:-2.765700px;}
._2{margin-left:-1.107000px;}
._0{width:1.972200px;}
._5{width:3.055500px;}
._8{width:4.347000px;}
._1{width:6.000000px;}
._6{width:7.242000px;}
._7{width:8.604000px;}
._1a{width:9.608700px;}
._10{width:10.609200px;}
._c{width:12.252300px;}
._b{width:13.313700px;}
._12{width:14.352300px;}
._15{width:15.588300px;}
._20{width:17.296200px;}
._14{width:20.424000px;}
._13{width:21.528000px;}
._1d{width:27.767124px;}
._22{width:29.775600px;}
._1e{width:30.927600px;}
._1c{width:33.329400px;}
._18{width:43.445160px;}
._d{width:71.400000px;}
._21{width:83.106600px;}
._f{width:289.884000px;}
._e{width:578.400000px;}
._1f{width:739.863900px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fsa{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y21c{bottom:106.114500px;}
.y143{bottom:106.165500px;}
.yb6{bottom:106.233000px;}
.y202{bottom:106.236000px;}
.y42{bottom:106.240500px;}
.y67{bottom:106.249500px;}
.y23d{bottom:106.261500px;}
.y8d{bottom:106.269000px;}
.y280{bottom:106.273500px;}
.y18d{bottom:106.275000px;}
.yff{bottom:106.290000px;}
.y166{bottom:106.293300px;}
.ydc{bottom:106.296300px;}
.y1ec{bottom:106.296450px;}
.y1e{bottom:106.305000px;}
.y25b{bottom:106.323750px;}
.y1cb{bottom:109.294800px;}
.yb5{bottom:123.486000px;}
.y201{bottom:123.489000px;}
.y18c{bottom:123.528000px;}
.yfe{bottom:123.543000px;}
.y165{bottom:123.546300px;}
.y1d{bottom:126.195000px;}
.y21b{bottom:126.486750px;}
.y27f{bottom:126.493500px;}
.y66{bottom:126.518250px;}
.ydb{bottom:126.544800px;}
.y1eb{bottom:126.544950px;}
.y142{bottom:126.589500px;}
.y8c{bottom:127.227750px;}
.y41{bottom:127.423500px;}
.y23c{bottom:127.539750px;}
.y1ca{bottom:127.792500px;}
.y25a{bottom:128.200500px;}
.yb4{bottom:140.739000px;}
.y200{bottom:140.742000px;}
.y18b{bottom:140.781000px;}
.yfd{bottom:140.796000px;}
.y164{bottom:143.794800px;}
.yda{bottom:145.045500px;}
.y11c{bottom:145.048500px;}
.y1c{bottom:146.085000px;}
.y27e{bottom:146.713500px;}
.y65{bottom:146.787000px;}
.y21a{bottom:146.859000px;}
.y141{bottom:147.013500px;}
.y8b{bottom:148.186500px;}
.y40{bottom:148.606500px;}
.y23b{bottom:157.323000px;}
.yb3{bottom:157.992000px;}
.y1ff{bottom:157.995000px;}
.y18a{bottom:158.034000px;}
.y259{bottom:158.582250px;}
.yfc{bottom:161.044500px;}
.yd9{bottom:162.298500px;}
.y27d{bottom:166.933500px;}
.y64{bottom:167.055750px;}
.y219{bottom:167.231250px;}
.y140{bottom:167.437500px;}
.y8a{bottom:169.145250px;}
.y3f{bottom:169.789500px;}
.y1ac{bottom:170.556000px;}
.yb2{bottom:175.245000px;}
.y1fe{bottom:175.248000px;}
.y189{bottom:175.287000px;}
.y23a{bottom:178.601250px;}
.y1b{bottom:178.740000px;}
.yd8{bottom:182.547000px;}
.y27c{bottom:187.153500px;}
.y63{bottom:187.324500px;}
.y218{bottom:187.603500px;}
.y13f{bottom:187.861500px;}
.y163{bottom:187.938000px;}
.y258{bottom:188.964000px;}
.y89{bottom:190.104000px;}
.y3e{bottom:190.972500px;}
.y1ab{bottom:192.135750px;}
.yb1{bottom:192.498000px;}
.y1fd{bottom:192.501000px;}
.y188{bottom:192.540000px;}
.y239{bottom:199.879500px;}
.y11b{bottom:201.052500px;}
.y11a{bottom:204.049500px;}
.yfb{bottom:205.077000px;}
.y27b{bottom:207.373500px;}
.y62{bottom:207.593250px;}
.y217{bottom:207.975750px;}
.y13e{bottom:208.285500px;}
.y162{bottom:208.293000px;}
.yb0{bottom:209.751000px;}
.y1fc{bottom:209.754000px;}
.y187{bottom:209.793000px;}
.y88{bottom:211.062750px;}
.y3d{bottom:212.155500px;}
.y1aa{bottom:213.660750px;}
.y257{bottom:219.345750px;}
.yfa{bottom:225.535500px;}
.yd7{bottom:226.524000px;}
.y1ea{bottom:226.540500px;}
.y1c9{bottom:226.579500px;}
.yaf{bottom:227.004000px;}
.y1fb{bottom:227.007000px;}
.y186{bottom:227.046000px;}
.y27a{bottom:227.593500px;}
.y61{bottom:227.862000px;}
.y216{bottom:228.348000px;}
.y1a{bottom:228.405000px;}
.y161{bottom:228.648000px;}
.y13d{bottom:228.709500px;}
.y238{bottom:229.662750px;}
.y87{bottom:232.021500px;}
.y3c{bottom:233.338500px;}
.y1a9{bottom:235.240500px;}
.yae{bottom:244.257000px;}
.y1fa{bottom:244.260000px;}
.yf9{bottom:245.994000px;}
.yd6{bottom:247.017000px;}
.y185{bottom:247.294500px;}
.y1c8{bottom:247.710750px;}
.y279{bottom:247.813500px;}
.y119{bottom:248.064000px;}
.y1e9{bottom:248.241000px;}
.y215{bottom:248.720250px;}
.y160{bottom:249.003000px;}
.y13c{bottom:249.133500px;}
.y256{bottom:249.727500px;}
.y19{bottom:249.795000px;}
.y237{bottom:250.941000px;}
.y86{bottom:252.980250px;}
.y3b{bottom:254.521500px;}
.y1a8{bottom:256.820250px;}
.yad{bottom:261.510000px;}
.y1f9{bottom:261.513000px;}
.yf8{bottom:266.452500px;}
.yd5{bottom:267.510000px;}
.y278{bottom:268.033500px;}
.y118{bottom:268.522500px;}
.y1c7{bottom:268.842000px;}
.y214{bottom:269.092500px;}
.y15f{bottom:269.358000px;}
.y60{bottom:269.376000px;}
.y13b{bottom:269.557500px;}
.y1e8{bottom:269.941500px;}
.y255{bottom:271.604250px;}
.y236{bottom:272.219250px;}
.y85{bottom:273.939000px;}
.y3a{bottom:275.704500px;}
.y1a7{bottom:278.400000px;}
.yac{bottom:278.763000px;}
.y1f8{bottom:278.766000px;}
.yd4{bottom:288.003000px;}
.y277{bottom:288.253500px;}
.y117{bottom:288.966000px;}
.y213{bottom:289.464750px;}
.y15e{bottom:289.713000px;}
.y1c6{bottom:289.973250px;}
.y13a{bottom:289.981500px;}
.y184{bottom:291.335250px;}
.y1e7{bottom:291.642000px;}
.y18{bottom:292.506000px;}
.y5f{bottom:293.392500px;}
.y84{bottom:294.897750px;}
.yab{bottom:296.016000px;}
.y1f7{bottom:296.019000px;}
.y39{bottom:296.887500px;}
.y1a6{bottom:299.979750px;}
.y254{bottom:301.986000px;}
.y235{bottom:302.002500px;}
.yf7{bottom:308.176500px;}
.y276{bottom:308.473500px;}
.yd3{bottom:308.496000px;}
.y116{bottom:309.424500px;}
.y212{bottom:309.837000px;}
.y15d{bottom:310.068000px;}
.y139{bottom:310.405500px;}
.y1c5{bottom:311.104500px;}
.y183{bottom:311.707500px;}
.y17{bottom:312.396000px;}
.yaa{bottom:313.269000px;}
.y1f6{bottom:313.272000px;}
.y1e6{bottom:313.342500px;}
.y83{bottom:315.856500px;}
.y38{bottom:318.070500px;}
.y1a5{bottom:321.559500px;}
.y234{bottom:323.280750px;}
.y275{bottom:328.693500px;}
.yd2{bottom:328.989000px;}
.y115{bottom:329.883000px;}
.y211{bottom:330.209250px;}
.y15c{bottom:330.423000px;}
.ya9{bottom:330.522000px;}
.y1f5{bottom:330.525000px;}
.y138{bottom:330.829500px;}
.y182{bottom:332.079750px;}
.y1c4{bottom:332.235750px;}
.y16{bottom:332.286000px;}
.y253{bottom:332.367750px;}
.y1e5{bottom:335.043000px;}
.y82{bottom:336.815250px;}
.y37{bottom:339.253500px;}
.y1a4{bottom:343.139250px;}
.ya8{bottom:347.775000px;}
.y1f4{bottom:347.778000px;}
.y274{bottom:348.913500px;}
.yd1{bottom:349.482000px;}
.y114{bottom:350.341500px;}
.y210{bottom:350.581500px;}
.y15b{bottom:350.778000px;}
.y137{bottom:351.253500px;}
.y15{bottom:352.176000px;}
.y181{bottom:352.650750px;}
.y233{bottom:353.064000px;}
.y1c3{bottom:353.367000px;}
.y252{bottom:354.244500px;}
.y5e{bottom:355.445250px;}
.y1e4{bottom:356.743500px;}
.y81{bottom:357.774000px;}
.y36{bottom:360.436500px;}
.y1a3{bottom:364.719000px;}
.ya7{bottom:365.028000px;}
.y1f3{bottom:365.031000px;}
.y273{bottom:369.133500px;}
.yd0{bottom:369.975000px;}
.yf6{bottom:370.747500px;}
.y113{bottom:370.800000px;}
.y20f{bottom:370.953750px;}
.y15a{bottom:371.133000px;}
.y136{bottom:371.677500px;}
.y14{bottom:372.066000px;}
.y180{bottom:373.023000px;}
.y232{bottom:374.342250px;}
.y1c2{bottom:374.498250px;}
.y5d{bottom:375.714000px;}
.y251{bottom:376.121250px;}
.y1e3{bottom:378.444000px;}
.y80{bottom:378.732750px;}
.y35{bottom:381.619500px;}
.ya6{bottom:382.281000px;}
.y1f2{bottom:382.284000px;}
.y1a2{bottom:386.298750px;}
.y272{bottom:389.353500px;}
.ycf{bottom:390.468000px;}
.yf5{bottom:391.206000px;}
.y112{bottom:391.258500px;}
.y20e{bottom:391.326000px;}
.y159{bottom:391.488000px;}
.y13{bottom:391.956000px;}
.y135{bottom:392.101500px;}
.y17f{bottom:393.395250px;}
.y1c1{bottom:395.629500px;}
.y5c{bottom:395.982750px;}
.ya5{bottom:399.534000px;}
.y1f1{bottom:399.537000px;}
.y7f{bottom:399.691500px;}
.y1e2{bottom:400.144500px;}
.y34{bottom:402.802500px;}
.y231{bottom:404.125500px;}
.y250{bottom:406.503000px;}
.y1a1{bottom:407.878500px;}
.y271{bottom:409.573500px;}
.yce{bottom:410.961000px;}
.yf4{bottom:411.664500px;}
.y20d{bottom:411.698250px;}
.y111{bottom:411.717000px;}
.y158{bottom:411.843000px;}
.y12{bottom:411.846000px;}
.y134{bottom:412.525500px;}
.y17e{bottom:413.767500px;}
.y5b{bottom:416.251500px;}
.ya4{bottom:416.787000px;}
.y1f0{bottom:416.790000px;}
.y7e{bottom:420.650250px;}
.y1e1{bottom:421.845000px;}
.y33{bottom:423.985500px;}
.y24f{bottom:428.379750px;}
.y1a0{bottom:429.458250px;}
.y270{bottom:429.793500px;}
.ycd{bottom:431.406000px;}
.y11{bottom:431.736000px;}
.y20c{bottom:432.070500px;}
.yf3{bottom:432.123000px;}
.y110{bottom:432.175500px;}
.y157{bottom:432.198000px;}
.y133{bottom:432.949500px;}
.ya3{bottom:434.040000px;}
.y1ef{bottom:434.043000px;}
.y17d{bottom:434.139750px;}
.y5a{bottom:436.520250px;}
.y1c0{bottom:438.022500px;}
.y7d{bottom:441.609000px;}
.y1e0{bottom:443.545500px;}
.y32{bottom:445.168500px;}
.y26f{bottom:450.013500px;}
.y24e{bottom:450.256500px;}
.y19f{bottom:451.038000px;}
.ya2{bottom:451.293000px;}
.y1ee{bottom:451.296000px;}
.y10{bottom:451.626000px;}
.ycc{bottom:451.899000px;}
.y20b{bottom:452.442750px;}
.y156{bottom:452.553000px;}
.yf2{bottom:452.581500px;}
.y10f{bottom:452.634000px;}
.y132{bottom:453.373500px;}
.y17c{bottom:454.512000px;}
.y59{bottom:456.789000px;}
.y7c{bottom:462.567750px;}
.y31{bottom:466.351500px;}
.ya1{bottom:468.546000px;}
.y26e{bottom:470.233500px;}
.yf{bottom:471.516000px;}
.y1ed{bottom:471.544500px;}
.y24d{bottom:472.133250px;}
.ycb{bottom:472.392000px;}
.y19e{bottom:472.617750px;}
.y20a{bottom:472.815000px;}
.y155{bottom:472.908000px;}
.yf1{bottom:473.040000px;}
.y10e{bottom:473.092500px;}
.y131{bottom:473.797500px;}
.y17b{bottom:474.884250px;}
.y58{bottom:477.057750px;}
.y230{bottom:477.316500px;}
.y7b{bottom:483.526500px;}
.y30{bottom:487.534500px;}
.ya0{bottom:488.794500px;}
.y26d{bottom:490.453500px;}
.ye{bottom:491.406000px;}
.yca{bottom:492.885000px;}
.y209{bottom:493.187250px;}
.y154{bottom:493.263000px;}
.y1df{bottom:493.270500px;}
.yf0{bottom:493.498500px;}
.y10d{bottom:493.551000px;}
.y19d{bottom:494.197500px;}
.y130{bottom:494.221500px;}
.y17a{bottom:495.256500px;}
.y57{bottom:497.326500px;}
.y22f{bottom:498.585750px;}
.y1bf{bottom:501.190500px;}
.y24c{bottom:502.515000px;}
.y7a{bottom:504.485250px;}
.y26c{bottom:510.673500px;}
.yd{bottom:511.296000px;}
.yc9{bottom:513.378000px;}
.y208{bottom:513.559500px;}
.y153{bottom:513.625500px;}
.yef{bottom:513.957000px;}
.y10c{bottom:514.009500px;}
.y12f{bottom:514.645500px;}
.y179{bottom:515.628750px;}
.y19c{bottom:515.777250px;}
.y1de{bottom:515.995500px;}
.y56{bottom:517.595250px;}
.y22e{bottom:519.855000px;}
.y1be{bottom:522.321750px;}
.y24b{bottom:524.391750px;}
.y79{bottom:525.444000px;}
.y2f{bottom:529.974000px;}
.y26b{bottom:530.893500px;}
.y9f{bottom:532.878000px;}
.yc8{bottom:533.871000px;}
.y207{bottom:533.931750px;}
.y152{bottom:533.980500px;}
.yee{bottom:534.415500px;}
.y10b{bottom:534.468000px;}
.y12e{bottom:535.069500px;}
.y178{bottom:536.001000px;}
.y19b{bottom:537.357000px;}
.y55{bottom:537.864000px;}
.y1dc{bottom:538.740000px;}
.y22d{bottom:541.124250px;}
.y1bd{bottom:543.453000px;}
.yc{bottom:543.951000px;}
.y24a{bottom:546.268500px;}
.y78{bottom:546.402750px;}
.y26a{bottom:551.113500px;}
.y9e{bottom:553.422750px;}
.y206{bottom:554.304000px;}
.yc7{bottom:554.364000px;}
.yed{bottom:554.874000px;}
.y10a{bottom:554.925000px;}
.y12d{bottom:555.493500px;}
.y177{bottom:556.373250px;}
.y1db{bottom:556.740000px;}
.y54{bottom:558.132750px;}
.y22c{bottom:562.393500px;}
.y1bc{bottom:564.584250px;}
.y77{bottom:567.361500px;}
.y269{bottom:571.333500px;}
.y9d{bottom:573.967500px;}
.y205{bottom:574.676250px;}
.y1dd{bottom:574.720500px;}
.y1da{bottom:574.740000px;}
.yc6{bottom:574.857000px;}
.yec{bottom:575.332500px;}
.y109{bottom:575.383500px;}
.y151{bottom:575.604000px;}
.y12c{bottom:575.917500px;}
.y249{bottom:576.650250px;}
.y176{bottom:576.745500px;}
.y53{bottom:578.401500px;}
.y19a{bottom:580.194000px;}
.y22b{bottom:583.662750px;}
.y1bb{bottom:585.715500px;}
.y76{bottom:588.320250px;}
.y268{bottom:591.553500px;}
.y9c{bottom:594.512250px;}
.y204{bottom:595.048500px;}
.yc5{bottom:595.350000px;}
.yeb{bottom:595.791000px;}
.y108{bottom:595.842000px;}
.y12b{bottom:596.341500px;}
.y28d{bottom:596.431500px;}
.y175{bottom:597.117750px;}
.y1d9{bottom:597.465000px;}
.y248{bottom:598.527000px;}
.y52{bottom:598.670250px;}
.yb{bottom:602.094000px;}
.y22a{bottom:604.932000px;}
.y1ba{bottom:606.846750px;}
.y75{bottom:609.279000px;}
.y267{bottom:611.773500px;}
.y28c{bottom:613.693500px;}
.y2e{bottom:614.350500px;}
.y9b{bottom:615.057000px;}
.y1d8{bottom:615.465000px;}
.yc4{bottom:615.843000px;}
.yea{bottom:616.249500px;}
.y107{bottom:616.290000px;}
.y12a{bottom:616.765500px;}
.y174{bottom:617.490000px;}
.y51{bottom:618.939000px;}
.y229{bottom:626.201250px;}
.y1b9{bottom:627.978000px;}
.y247{bottom:628.908750px;}
.ya{bottom:629.499000px;}
.y74{bottom:630.237750px;}
.y266{bottom:631.993500px;}
.y1d7{bottom:633.465000px;}
.y28b{bottom:633.943500px;}
.y9a{bottom:635.601750px;}
.y2d{bottom:636.280500px;}
.yc3{bottom:636.336000px;}
.y203{bottom:636.673500px;}
.ye9{bottom:636.708000px;}
.y106{bottom:636.748500px;}
.y129{bottom:637.189500px;}
.y173{bottom:637.862250px;}
.y150{bottom:638.086500px;}
.y50{bottom:639.207750px;}
.y199{bottom:643.744500px;}
.y228{bottom:647.470500px;}
.y1b8{bottom:649.109250px;}
.y246{bottom:650.785500px;}
.y73{bottom:651.196500px;}
.y1d6{bottom:651.465000px;}
.y265{bottom:652.213500px;}
.y28a{bottom:654.193500px;}
.y99{bottom:656.146500px;}
.yc2{bottom:656.829000px;}
.y9{bottom:656.904000px;}
.ye8{bottom:657.166500px;}
.y105{bottom:657.207000px;}
.y128{bottom:657.613500px;}
.y172{bottom:658.234500px;}
.y14f{bottom:658.441500px;}
.y4f{bottom:659.476500px;}
.y198{bottom:665.324250px;}
.y227{bottom:668.739750px;}
.y1d5{bottom:669.465000px;}
.y1b7{bottom:670.240500px;}
.y72{bottom:672.155250px;}
.y264{bottom:672.433500px;}
.y245{bottom:672.662250px;}
.y98{bottom:676.691250px;}
.yc1{bottom:677.278500px;}
.ye7{bottom:677.625000px;}
.y104{bottom:677.665500px;}
.y127{bottom:678.037500px;}
.y171{bottom:678.606750px;}
.y14e{bottom:678.796500px;}
.y2c{bottom:679.468500px;}
.y4e{bottom:679.745250px;}
.y197{bottom:686.904000px;}
.y289{bottom:687.193500px;}
.y1d4{bottom:687.465000px;}
.y226{bottom:690.009000px;}
.y1b6{bottom:691.371750px;}
.y263{bottom:692.653500px;}
.y71{bottom:693.114000px;}
.y244{bottom:694.539000px;}
.y97{bottom:697.236000px;}
.yc0{bottom:697.771500px;}
.ye6{bottom:698.083500px;}
.y103{bottom:698.124000px;}
.y126{bottom:698.461500px;}
.y170{bottom:698.979000px;}
.y14d{bottom:699.151500px;}
.y2b{bottom:699.898500px;}
.y4d{bottom:700.014000px;}
.y1d3{bottom:705.465000px;}
.y8{bottom:705.576000px;}
.y196{bottom:708.483750px;}
.y225{bottom:711.278250px;}
.y1b5{bottom:712.518000px;}
.y262{bottom:712.873500px;}
.y70{bottom:714.072750px;}
.y96{bottom:717.780750px;}
.ybf{bottom:718.264500px;}
.ye5{bottom:718.542000px;}
.y102{bottom:718.582500px;}
.y125{bottom:718.885500px;}
.y16f{bottom:719.351250px;}
.y14c{bottom:719.506500px;}
.y4c{bottom:720.282750px;}
.y2a{bottom:720.328500px;}
.y1d2{bottom:723.465000px;}
.y243{bottom:724.920750px;}
.y288{bottom:728.698500px;}
.y195{bottom:730.063500px;}
.y224{bottom:732.547500px;}
.y261{bottom:733.093500px;}
.y1b4{bottom:733.649250px;}
.y6f{bottom:735.031500px;}
.y7{bottom:737.463000px;}
.y95{bottom:738.325500px;}
.ybe{bottom:738.757500px;}
.ye4{bottom:739.000500px;}
.y101{bottom:739.041000px;}
.y124{bottom:739.309500px;}
.y16e{bottom:739.723500px;}
.y14b{bottom:739.861500px;}
.y4b{bottom:740.551500px;}
.y29{bottom:740.758500px;}
.y1d1{bottom:746.190000px;}
.y194{bottom:751.643250px;}
.y260{bottom:753.313500px;}
.y223{bottom:753.816750px;}
.y1b3{bottom:754.780500px;}
.y6e{bottom:755.990250px;}
.y94{bottom:758.870250px;}
.ybd{bottom:759.250500px;}
.ye3{bottom:759.492000px;}
.y100{bottom:759.499500px;}
.y123{bottom:759.733500px;}
.y16d{bottom:760.095750px;}
.y14a{bottom:760.216500px;}
.y4a{bottom:760.820250px;}
.y28{bottom:761.188500px;}
.y1d0{bottom:764.190000px;}
.y287{bottom:767.698500px;}
.y6{bottom:769.350000px;}
.y193{bottom:773.223000px;}
.y222{bottom:775.086000px;}
.y1b2{bottom:775.911750px;}
.y6d{bottom:776.949000px;}
.y242{bottom:777.305250px;}
.y93{bottom:779.415000px;}
.ybc{bottom:779.743500px;}
.ye2{bottom:779.950500px;}
.y122{bottom:780.157500px;}
.y16c{bottom:780.468000px;}
.y149{bottom:780.571500px;}
.y49{bottom:781.089000px;}
.y27{bottom:781.618500px;}
.y25f{bottom:786.283500px;}
.y1cf{bottom:786.915000px;}
.y286{bottom:787.198500px;}
.y192{bottom:794.802750px;}
.y221{bottom:796.355250px;}
.y1b1{bottom:797.043000px;}
.y6c{bottom:797.907750px;}
.y241{bottom:799.182000px;}
.y92{bottom:799.959750px;}
.ybb{bottom:800.236500px;}
.ye1{bottom:800.409000px;}
.y121{bottom:800.581500px;}
.y16b{bottom:800.840250px;}
.y148{bottom:800.926500px;}
.y48{bottom:801.357750px;}
.y26{bottom:802.048500px;}
.y285{bottom:806.698500px;}
.y191{bottom:816.382500px;}
.y220{bottom:817.624500px;}
.y1ce{bottom:817.840500px;}
.y1b0{bottom:818.174250px;}
.y6b{bottom:818.866500px;}
.y91{bottom:820.522500px;}
.yba{bottom:820.729500px;}
.ye0{bottom:820.867500px;}
.y120{bottom:821.005500px;}
.y16a{bottom:821.212500px;}
.y147{bottom:821.281500px;}
.y47{bottom:821.626500px;}
.y25{bottom:822.478500px;}
.y284{bottom:826.198500px;}
.y240{bottom:829.563750px;}
.y5{bottom:831.018000px;}
.y190{bottom:837.962250px;}
.y1cd{bottom:838.795500px;}
.y21f{bottom:838.893750px;}
.y1af{bottom:839.305500px;}
.y6a{bottom:839.825250px;}
.y90{bottom:841.067250px;}
.yb9{bottom:841.222500px;}
.ydf{bottom:841.326000px;}
.y11f{bottom:841.429500px;}
.y169{bottom:841.584750px;}
.y146{bottom:841.636500px;}
.y46{bottom:841.895250px;}
.y24{bottom:842.908500px;}
.y25e{bottom:844.767000px;}
.y283{bottom:845.698500px;}
.y23f{bottom:851.440500px;}
.y4{bottom:852.408000px;}
.y18f{bottom:859.542000px;}
.y21e{bottom:860.163000px;}
.y1ae{bottom:860.436750px;}
.y69{bottom:860.784000px;}
.y8f{bottom:861.612000px;}
.yb8{bottom:861.715500px;}
.yde{bottom:861.784500px;}
.y11e{bottom:861.853500px;}
.y168{bottom:861.957000px;}
.y145{bottom:861.991500px;}
.y45{bottom:862.164000px;}
.y23{bottom:863.338500px;}
.y282{bottom:865.198500px;}
.y25d{bottom:872.487000px;}
.y1cc{bottom:881.001000px;}
.y18e{bottom:881.121750px;}
.y21d{bottom:881.432250px;}
.y1ad{bottom:881.570250px;}
.y68{bottom:881.742750px;}
.y23e{bottom:881.822250px;}
.y8e{bottom:882.156750px;}
.yb7{bottom:882.208500px;}
.ydd{bottom:882.243000px;}
.y11d{bottom:882.277500px;}
.y3{bottom:882.303000px;}
.y167{bottom:882.329250px;}
.y144{bottom:882.346500px;}
.y44{bottom:882.432750px;}
.y22{bottom:883.768500px;}
.y281{bottom:884.698500px;}
.y25c{bottom:900.207000px;}
.y43{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y21{bottom:904.198500px;}
.y20{bottom:948.189000px;}
.y1f{bottom:966.189000px;}
.h14{height:26.732030px;}
.hc{height:34.872492px;}
.hb{height:41.648438px;}
.hd{height:46.854492px;}
.h1a{height:46.907227px;}
.h11{height:48.530695px;}
.h19{height:51.826172px;}
.h4{height:52.060547px;}
.h3{height:54.663574px;}
.ha{height:59.869629px;}
.hf{height:60.043629px;}
.he{height:60.512695px;}
.h15{height:60.524695px;}
.h2{height:65.075684px;}
.h7{height:67.236328px;}
.h8{height:70.281738px;}
.h1b{height:70.598145px;}
.h18{height:77.261777px;}
.h17{height:77.312777px;}
.h9{height:77.321777px;}
.h13{height:77.327777px;}
.h12{height:77.351777px;}
.h10{height:77.513777px;}
.h16{height:77.540777px;}
.h6{height:94.130859px;}
.h5{height:121.025391px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:81.495000px;}
.x8{left:83.628300px;}
.x1{left:85.128000px;}
.xa{left:86.138250px;}
.x18{left:96.251550px;}
.xb{left:102.843150px;}
.x7{left:105.028500px;}
.x5{left:106.050000px;}
.x9{left:107.325000px;}
.x19{left:111.193200px;}
.xe{left:114.211500px;}
.x1a{left:115.229700px;}
.x16{left:119.180850px;}
.x17{left:123.113850px;}
.xf{left:156.421500px;}
.x12{left:157.786500px;}
.xc{left:190.443000px;}
.x3{left:231.330000px;}
.x2{left:233.344500px;}
.x4{left:234.501000px;}
.x15{left:261.463500px;}
.xd{left:307.141500px;}
.x13{left:315.571500px;}
.x10{left:316.666500px;}
.x11{left:590.401500px;}
.x14{left:591.433500px;}
@media print{
.v2{vertical-align:-15.088000pt;}
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.448000pt;}
.v1{vertical-align:15.024000pt;}
.lsd5{letter-spacing:-7.504000pt;}
.ls1b{letter-spacing:-6.552000pt;}
.lsc3{letter-spacing:-4.784000pt;}
.ls7c{letter-spacing:-3.986667pt;}
.ls61{letter-spacing:-3.800000pt;}
.ls65{letter-spacing:-3.312000pt;}
.lsab{letter-spacing:-3.253333pt;}
.lsde{letter-spacing:-2.826667pt;}
.ls6e{letter-spacing:-2.821333pt;}
.ls86{letter-spacing:-2.760000pt;}
.ls6{letter-spacing:-2.592000pt;}
.ls79{letter-spacing:-2.514667pt;}
.ls88{letter-spacing:-2.392000pt;}
.lsb3{letter-spacing:-2.330667pt;}
.lsb8{letter-spacing:-2.304000pt;}
.ls8f{letter-spacing:-2.208000pt;}
.ls49{letter-spacing:-2.064000pt;}
.ls87{letter-spacing:-2.024000pt;}
.ls8a{letter-spacing:-1.962667pt;}
.ls78{letter-spacing:-1.933333pt;}
.ls41{letter-spacing:-1.901333pt;}
.ls59{letter-spacing:-1.840000pt;}
.ls2c{letter-spacing:-1.778667pt;}
.ls56{letter-spacing:-1.717333pt;}
.ls40{letter-spacing:-1.656000pt;}
.ls7{letter-spacing:-1.632000pt;}
.lsad{letter-spacing:-1.600000pt;}
.ls28{letter-spacing:-1.594667pt;}
.ls6f{letter-spacing:-1.533333pt;}
.lsaf{letter-spacing:-1.493333pt;}
.ls3f{letter-spacing:-1.410667pt;}
.ls37{letter-spacing:-1.349333pt;}
.ls15{letter-spacing:-1.333333pt;}
.ls39{letter-spacing:-1.288000pt;}
.ls34{letter-spacing:-1.226667pt;}
.lsbe{letter-spacing:-1.200000pt;}
.lsd6{letter-spacing:-1.176000pt;}
.ls14{letter-spacing:-1.173333pt;}
.ls2e{letter-spacing:-1.165333pt;}
.lsa{letter-spacing:-1.120000pt;}
.ls53{letter-spacing:-1.104000pt;}
.lsdf{letter-spacing:-1.066667pt;}
.ls44{letter-spacing:-1.056000pt;}
.ls2d{letter-spacing:-1.042667pt;}
.lsba{letter-spacing:-1.008000pt;}
.ls27{letter-spacing:-1.000000pt;}
.ls23{letter-spacing:-0.981333pt;}
.ls68{letter-spacing:-0.960000pt;}
.ls81{letter-spacing:-0.936000pt;}
.ls21{letter-spacing:-0.920000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls3e{letter-spacing:-0.866667pt;}
.ls4c{letter-spacing:-0.864000pt;}
.ls42{letter-spacing:-0.858667pt;}
.lsaa{letter-spacing:-0.853333pt;}
.lsc5{letter-spacing:-0.840000pt;}
.ls9a{letter-spacing:-0.822419pt;}
.ls29{letter-spacing:-0.797333pt;}
.ls72{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.746667pt;}
.ls31{letter-spacing:-0.736000pt;}
.ls9e{letter-spacing:-0.720000pt;}
.lsa5{letter-spacing:-0.715147pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls73{letter-spacing:-0.682667pt;}
.ls38{letter-spacing:-0.674667pt;}
.ls4e{letter-spacing:-0.672000pt;}
.ls66{letter-spacing:-0.648000pt;}
.lsb0{letter-spacing:-0.643632pt;}
.lsac{letter-spacing:-0.640000pt;}
.ls33{letter-spacing:-0.613333pt;}
.lsa3{letter-spacing:-0.600000pt;}
.lse0{letter-spacing:-0.576000pt;}
.ls64{letter-spacing:-0.552000pt;}
.lsae{letter-spacing:-0.533333pt;}
.ls9d{letter-spacing:-0.531696pt;}
.ls62{letter-spacing:-0.490667pt;}
.lsa0{letter-spacing:-0.480000pt;}
.lsd2{letter-spacing:-0.448000pt;}
.ls47{letter-spacing:-0.432000pt;}
.ls5b{letter-spacing:-0.429333pt;}
.lsa8{letter-spacing:-0.426667pt;}
.lsc8{letter-spacing:-0.392000pt;}
.ls74{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls1c{letter-spacing:-0.368000pt;}
.lsc7{letter-spacing:-0.336000pt;}
.lsa9{letter-spacing:-0.320000pt;}
.ls55{letter-spacing:-0.306667pt;}
.ls4b{letter-spacing:-0.288000pt;}
.lsd3{letter-spacing:-0.280000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls85{letter-spacing:-0.245333pt;}
.ls67{letter-spacing:-0.240000pt;}
.lsd7{letter-spacing:-0.224000pt;}
.lsc1{letter-spacing:-0.216000pt;}
.ls95{letter-spacing:-0.214544pt;}
.lsda{letter-spacing:-0.213333pt;}
.lsbb{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.184000pt;}
.lsd4{letter-spacing:-0.168000pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls75{letter-spacing:-0.144000pt;}
.ls58{letter-spacing:-0.122667pt;}
.lse{letter-spacing:-0.106667pt;}
.ls4a{letter-spacing:-0.096000pt;}
.lsa4{letter-spacing:-0.062187pt;}
.ls5d{letter-spacing:-0.061333pt;}
.ls96{letter-spacing:-0.055968pt;}
.lsa7{letter-spacing:-0.053333pt;}
.ls45{letter-spacing:-0.048000pt;}
.lsb5{letter-spacing:-0.035757pt;}
.ls5{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.048000pt;}
.lsa6{letter-spacing:0.053333pt;}
.lsb6{letter-spacing:0.083952pt;}
.ls99{letter-spacing:0.110400pt;}
.lsce{letter-spacing:0.112000pt;}
.ls1f{letter-spacing:0.122667pt;}
.lsb1{letter-spacing:0.144000pt;}
.ls35{letter-spacing:0.184000pt;}
.lsbc{letter-spacing:0.192000pt;}
.lsdb{letter-spacing:0.213333pt;}
.ls2b{letter-spacing:0.245333pt;}
.lsb9{letter-spacing:0.288000pt;}
.ls89{letter-spacing:0.306667pt;}
.lsb7{letter-spacing:0.336000pt;}
.ls54{letter-spacing:0.368000pt;}
.ls1{letter-spacing:0.373333pt;}
.ls71{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.400000pt;}
.lsdd{letter-spacing:0.426667pt;}
.ls8e{letter-spacing:0.429333pt;}
.ls52{letter-spacing:0.446667pt;}
.lsd1{letter-spacing:0.448000pt;}
.ls3b{letter-spacing:0.483467pt;}
.ls1d{letter-spacing:0.490667pt;}
.ls9c{letter-spacing:0.500603pt;}
.ls9f{letter-spacing:0.503712pt;}
.ls43{letter-spacing:0.528000pt;}
.ls8c{letter-spacing:0.532000pt;}
.lscb{letter-spacing:0.533333pt;}
.ls4d{letter-spacing:0.576000pt;}
.ls80{letter-spacing:0.613333pt;}
.lscd{letter-spacing:0.728000pt;}
.ls24{letter-spacing:0.736000pt;}
.ls8d{letter-spacing:0.797333pt;}
.ls11{letter-spacing:0.800000pt;}
.ls2a{letter-spacing:0.858667pt;}
.lsc0{letter-spacing:0.866667pt;}
.ls22{letter-spacing:0.920000pt;}
.lsd0{letter-spacing:0.952000pt;}
.ls20{letter-spacing:0.981333pt;}
.ls32{letter-spacing:1.042667pt;}
.ls70{letter-spacing:1.056000pt;}
.lsc9{letter-spacing:1.064000pt;}
.ls98{letter-spacing:1.104000pt;}
.lsc{letter-spacing:1.120000pt;}
.lsbd{letter-spacing:1.152000pt;}
.lsb4{letter-spacing:1.165333pt;}
.ls4{letter-spacing:1.194667pt;}
.ls48{letter-spacing:1.200000pt;}
.ls92{letter-spacing:1.266667pt;}
.ls97{letter-spacing:1.296000pt;}
.ls30{letter-spacing:1.349333pt;}
.ls60{letter-spacing:1.369333pt;}
.ls9b{letter-spacing:1.410667pt;}
.ls6b{letter-spacing:1.428000pt;}
.lsc2{letter-spacing:1.533333pt;}
.ls10{letter-spacing:1.546667pt;}
.ls50{letter-spacing:1.656000pt;}
.ls94{letter-spacing:1.728000pt;}
.ls7f{letter-spacing:1.785333pt;}
.ls6c{letter-spacing:1.821600pt;}
.ls51{letter-spacing:2.024000pt;}
.ls26{letter-spacing:2.133333pt;}
.ls84{letter-spacing:2.208000pt;}
.ls3c{letter-spacing:2.304000pt;}
.ls3d{letter-spacing:2.323200pt;}
.ls63{letter-spacing:2.514667pt;}
.ls83{letter-spacing:2.637333pt;}
.ls5f{letter-spacing:2.698667pt;}
.ls5c{letter-spacing:2.944000pt;}
.lsb2{letter-spacing:3.033600pt;}
.ls77{letter-spacing:3.128000pt;}
.ls1a{letter-spacing:3.285333pt;}
.ls17{letter-spacing:3.680000pt;}
.ls12{letter-spacing:3.733333pt;}
.ls8b{letter-spacing:3.986667pt;}
.ls7a{letter-spacing:4.048000pt;}
.lsd8{letter-spacing:5.066667pt;}
.lsb{letter-spacing:5.120000pt;}
.ls57{letter-spacing:5.152000pt;}
.ls13{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls7b{letter-spacing:5.458667pt;}
.ls6d{letter-spacing:5.581333pt;}
.lscc{letter-spacing:5.600000pt;}
.ls6a{letter-spacing:5.642667pt;}
.lsc6{letter-spacing:6.664000pt;}
.ls93{letter-spacing:6.869333pt;}
.ls91{letter-spacing:7.253472pt;}
.lscf{letter-spacing:7.392000pt;}
.lsd9{letter-spacing:7.680000pt;}
.lsc4{letter-spacing:7.840000pt;}
.ls7d{letter-spacing:7.850667pt;}
.ls36{letter-spacing:8.096000pt;}
.ls5a{letter-spacing:9.261333pt;}
.lsa2{letter-spacing:167.840000pt;}
.ls0{letter-spacing:443.772267pt;}
.ls90{letter-spacing:443.916800pt;}
.lsbf{letter-spacing:444.276800pt;}
.lsdc{letter-spacing:444.283733pt;}
.lsca{letter-spacing:444.623467pt;}
.lsa1{letter-spacing:445.777067pt;}
.ls3a{letter-spacing:451.398933pt;}
.ls82{letter-spacing:451.498667pt;}
.ls25{letter-spacing:451.518933pt;}
.ls76{letter-spacing:452.492267pt;}
.ls5e{letter-spacing:454.305600pt;}
.ls16{letter-spacing:880.021333pt;}
.ls4f{letter-spacing:880.464000pt;}
.ls69{letter-spacing:882.794667pt;}
.ls7e{letter-spacing:886.394667pt;}
.ls2f{letter-spacing:888.154667pt;}
.ws70{word-spacing:-61.701333pt;}
.ws8e{word-spacing:-61.640000pt;}
.ws65{word-spacing:-61.333333pt;}
.ws63{word-spacing:-61.272000pt;}
.ws57{word-spacing:-61.210667pt;}
.ws62{word-spacing:-61.026667pt;}
.wsa1{word-spacing:-60.965333pt;}
.ws58{word-spacing:-60.904000pt;}
.ws61{word-spacing:-60.842667pt;}
.ws66{word-spacing:-60.781333pt;}
.ws8c{word-spacing:-60.720000pt;}
.wsa0{word-spacing:-60.658667pt;}
.ws6f{word-spacing:-60.413333pt;}
.ws64{word-spacing:-60.229333pt;}
.ws74{word-spacing:-48.384000pt;}
.wsd6{word-spacing:-48.336000pt;}
.wsd7{word-spacing:-48.288000pt;}
.wsd8{word-spacing:-48.192000pt;}
.wsdb{word-spacing:-48.144000pt;}
.wsdc{word-spacing:-47.952000pt;}
.wsda{word-spacing:-47.568000pt;}
.wsec{word-spacing:-23.576000pt;}
.wsf4{word-spacing:-23.128000pt;}
.ws103{word-spacing:-22.666667pt;}
.ws4{word-spacing:-20.213333pt;}
.ws3{word-spacing:-20.106667pt;}
.ws9f{word-spacing:-20.000000pt;}
.wse8{word-spacing:-19.600000pt;}
.wsad{word-spacing:-19.368000pt;}
.wsf3{word-spacing:-19.266667pt;}
.ws0{word-spacing:-19.133333pt;}
.wse9{word-spacing:-18.645333pt;}
.ws56{word-spacing:-18.277333pt;}
.ws26{word-spacing:-18.216000pt;}
.wsb5{word-spacing:-18.133333pt;}
.ws24{word-spacing:-18.093333pt;}
.ws3d{word-spacing:-17.866667pt;}
.ws23{word-spacing:-17.733333pt;}
.ws6d{word-spacing:-17.725333pt;}
.ws2{word-spacing:-17.546667pt;}
.ws25{word-spacing:-17.480000pt;}
.ws83{word-spacing:-17.357333pt;}
.ws30{word-spacing:-17.234667pt;}
.ws82{word-spacing:-16.800000pt;}
.ws71{word-spacing:-16.682667pt;}
.ws96{word-spacing:-16.621333pt;}
.ws3e{word-spacing:-16.560000pt;}
.wsab{word-spacing:-16.498667pt;}
.wsae{word-spacing:-16.437333pt;}
.ws98{word-spacing:-16.253333pt;}
.wsb6{word-spacing:-16.106667pt;}
.ws53{word-spacing:-15.517333pt;}
.wsf5{word-spacing:-15.344000pt;}
.ws52{word-spacing:-15.272000pt;}
.ws32{word-spacing:-15.149333pt;}
.ws9a{word-spacing:-15.088000pt;}
.ws72{word-spacing:-14.965333pt;}
.ws60{word-spacing:-14.933333pt;}
.ws54{word-spacing:-14.842667pt;}
.wsbb{word-spacing:-14.826667pt;}
.ws27{word-spacing:-14.781333pt;}
.ws14{word-spacing:-14.720000pt;}
.wsd1{word-spacing:-14.597333pt;}
.ws55{word-spacing:-14.536000pt;}
.ws31{word-spacing:-14.474667pt;}
.ws2f{word-spacing:-14.413333pt;}
.ws29{word-spacing:-14.352000pt;}
.ws3f{word-spacing:-14.290667pt;}
.ws16{word-spacing:-14.168000pt;}
.ws99{word-spacing:-14.106667pt;}
.ws6e{word-spacing:-14.045333pt;}
.ws28{word-spacing:-13.984000pt;}
.ws73{word-spacing:-13.861333pt;}
.ws9b{word-spacing:-13.800000pt;}
.ws8a{word-spacing:-13.738667pt;}
.wsa8{word-spacing:-13.616000pt;}
.ws97{word-spacing:-13.554667pt;}
.wsd3{word-spacing:-13.248000pt;}
.ws8f{word-spacing:-13.186667pt;}
.ws104{word-spacing:-13.120000pt;}
.ws108{word-spacing:-13.013333pt;}
.wsf6{word-spacing:-12.992000pt;}
.wsbc{word-spacing:-12.853333pt;}
.wsd2{word-spacing:-12.818667pt;}
.ws15{word-spacing:-12.800000pt;}
.wsbf{word-spacing:-12.746667pt;}
.wsc3{word-spacing:-12.693333pt;}
.wsf7{word-spacing:-12.656000pt;}
.wsc2{word-spacing:-12.640000pt;}
.wsbe{word-spacing:-12.480000pt;}
.wsbd{word-spacing:-12.320000pt;}
.ws109{word-spacing:-12.106667pt;}
.wsc9{word-spacing:-12.000000pt;}
.ws41{word-spacing:-11.904000pt;}
.ws40{word-spacing:-11.808000pt;}
.ws43{word-spacing:-11.760000pt;}
.wsc7{word-spacing:-11.733333pt;}
.wsd5{word-spacing:-11.712000pt;}
.ws1{word-spacing:-11.685333pt;}
.ws67{word-spacing:-11.616000pt;}
.ws44{word-spacing:-11.568000pt;}
.ws42{word-spacing:-11.424000pt;}
.wsb0{word-spacing:-11.376000pt;}
.ws10a{word-spacing:-11.280000pt;}
.ws46{word-spacing:-11.184000pt;}
.ws84{word-spacing:-11.162667pt;}
.wsaf{word-spacing:-11.136000pt;}
.ws45{word-spacing:-10.992000pt;}
.ws68{word-spacing:-10.896000pt;}
.wsac{word-spacing:-10.548413pt;}
.ws51{word-spacing:-10.047811pt;}
.wsd4{word-spacing:-10.012053pt;}
.wsa2{word-spacing:-9.833267pt;}
.ws5d{word-spacing:-9.261333pt;}
.wsa9{word-spacing:-9.225392pt;}
.wsb7{word-spacing:-8.675040pt;}
.ws38{word-spacing:-8.096000pt;}
.wsc4{word-spacing:-8.022080pt;}
.ws88{word-spacing:-7.850667pt;}
.wsa3{word-spacing:-6.869333pt;}
.wsef{word-spacing:-6.664000pt;}
.wsf9{word-spacing:-5.600000pt;}
.ws75{word-spacing:-5.581333pt;}
.ws87{word-spacing:-5.458667pt;}
.ws6{word-spacing:-5.333333pt;}
.ws5b{word-spacing:-5.152000pt;}
.ws86{word-spacing:-4.048000pt;}
.ws11{word-spacing:-3.733333pt;}
.ws19{word-spacing:-3.285333pt;}
.ws5e{word-spacing:-2.944000pt;}
.ws69{word-spacing:-2.514667pt;}
.ws2a{word-spacing:-2.133333pt;}
.wsa5{word-spacing:-1.728000pt;}
.wsf{word-spacing:-1.546667pt;}
.wseb{word-spacing:-1.533333pt;}
.wsb1{word-spacing:-1.410667pt;}
.wsa7{word-spacing:-1.296000pt;}
.ws4c{word-spacing:-1.200000pt;}
.wsde{word-spacing:-1.165333pt;}
.wsb{word-spacing:-1.120000pt;}
.wsf2{word-spacing:-1.064000pt;}
.ws7c{word-spacing:-1.056000pt;}
.ws34{word-spacing:-1.042667pt;}
.ws1f{word-spacing:-0.981333pt;}
.wsfc{word-spacing:-0.952000pt;}
.ws21{word-spacing:-0.920000pt;}
.ws33{word-spacing:-0.858667pt;}
.ws10{word-spacing:-0.800000pt;}
.ws9c{word-spacing:-0.797333pt;}
.ws22{word-spacing:-0.736000pt;}
.wsfa{word-spacing:-0.728000pt;}
.ws8d{word-spacing:-0.674667pt;}
.ws50{word-spacing:-0.576000pt;}
.ws4a{word-spacing:-0.528000pt;}
.wsb3{word-spacing:-0.503712pt;}
.ws1c{word-spacing:-0.490667pt;}
.wsfd{word-spacing:-0.448000pt;}
.ws9d{word-spacing:-0.429333pt;}
.ws10b{word-spacing:-0.426667pt;}
.ws107{word-spacing:-0.213333pt;}
.wsd9{word-spacing:-0.192000pt;}
.ws37{word-spacing:-0.184000pt;}
.ws1e{word-spacing:-0.122667pt;}
.wsfb{word-spacing:-0.112000pt;}
.wsdf{word-spacing:-0.083952pt;}
.ws5{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.048000pt;}
.wscb{word-spacing:0.053333pt;}
.wsa6{word-spacing:0.055968pt;}
.ws5f{word-spacing:0.061333pt;}
.wsb4{word-spacing:0.096000pt;}
.wsd{word-spacing:0.106667pt;}
.ws77{word-spacing:0.122667pt;}
.ws81{word-spacing:0.144000pt;}
.ws17{word-spacing:0.160000pt;}
.ws100{word-spacing:0.168000pt;}
.ws1d{word-spacing:0.184000pt;}
.wse4{word-spacing:0.192000pt;}
.ws105{word-spacing:0.213333pt;}
.wsea{word-spacing:0.216000pt;}
.ws102{word-spacing:0.224000pt;}
.ws91{word-spacing:0.245333pt;}
.wscd{word-spacing:0.266667pt;}
.wsff{word-spacing:0.280000pt;}
.ws4e{word-spacing:0.288000pt;}
.ws94{word-spacing:0.306667pt;}
.wsf0{word-spacing:0.336000pt;}
.ws1b{word-spacing:0.368000pt;}
.ws9{word-spacing:0.373333pt;}
.ws80{word-spacing:0.384000pt;}
.wsf1{word-spacing:0.392000pt;}
.wscc{word-spacing:0.426667pt;}
.wsdd{word-spacing:0.429333pt;}
.wse1{word-spacing:0.432000pt;}
.wsfe{word-spacing:0.448000pt;}
.wsaa{word-spacing:0.490667pt;}
.wsb2{word-spacing:0.531696pt;}
.ws8b{word-spacing:0.552000pt;}
.ws35{word-spacing:0.613333pt;}
.wscf{word-spacing:0.640000pt;}
.wsd0{word-spacing:0.643632pt;}
.ws6b{word-spacing:0.648000pt;}
.ws7f{word-spacing:0.672000pt;}
.wsa4{word-spacing:0.674667pt;}
.ws7e{word-spacing:0.682667pt;}
.wse{word-spacing:0.693333pt;}
.wsca{word-spacing:0.715147pt;}
.ws3b{word-spacing:0.736000pt;}
.wsc{word-spacing:0.746667pt;}
.ws7d{word-spacing:0.768000pt;}
.ws2c{word-spacing:0.797333pt;}
.wsee{word-spacing:0.840000pt;}
.ws76{word-spacing:0.858667pt;}
.wsf8{word-spacing:0.896000pt;}
.ws20{word-spacing:0.920000pt;}
.ws89{word-spacing:0.936000pt;}
.ws6c{word-spacing:0.960000pt;}
.ws90{word-spacing:0.981333pt;}
.wse2{word-spacing:1.008000pt;}
.ws2e{word-spacing:1.042667pt;}
.ws4b{word-spacing:1.056000pt;}
.ws59{word-spacing:1.104000pt;}
.wsa{word-spacing:1.120000pt;}
.ws39{word-spacing:1.165333pt;}
.ws12{word-spacing:1.173333pt;}
.wse7{word-spacing:1.200000pt;}
.ws36{word-spacing:1.226667pt;}
.ws3c{word-spacing:1.288000pt;}
.ws13{word-spacing:1.333333pt;}
.ws3a{word-spacing:1.349333pt;}
.ws47{word-spacing:1.410667pt;}
.ws79{word-spacing:1.533333pt;}
.ws2b{word-spacing:1.594667pt;}
.ws8{word-spacing:1.632000pt;}
.ws48{word-spacing:1.656000pt;}
.ws5a{word-spacing:1.717333pt;}
.ws7a{word-spacing:1.778667pt;}
.ws5c{word-spacing:1.840000pt;}
.wse5{word-spacing:1.872000pt;}
.ws49{word-spacing:1.901333pt;}
.ws93{word-spacing:2.024000pt;}
.ws4d{word-spacing:2.064000pt;}
.ws9e{word-spacing:2.208000pt;}
.wse0{word-spacing:2.304000pt;}
.ws95{word-spacing:2.392000pt;}
.ws85{word-spacing:2.514667pt;}
.ws7{word-spacing:2.592000pt;}
.wse6{word-spacing:2.688000pt;}
.ws92{word-spacing:2.760000pt;}
.ws78{word-spacing:2.821333pt;}
.ws10c{word-spacing:2.826667pt;}
.ws106{word-spacing:2.986667pt;}
.wsce{word-spacing:3.253333pt;}
.ws6a{word-spacing:3.312000pt;}
.wse3{word-spacing:4.032000pt;}
.ws18{word-spacing:4.266667pt;}
.wsed{word-spacing:4.784000pt;}
.ws2d{word-spacing:5.520000pt;}
.ws1a{word-spacing:6.552000pt;}
.ws101{word-spacing:7.504000pt;}
.ws7b{word-spacing:38.617920pt;}
.wsba{word-spacing:100.800000pt;}
.wsc0{word-spacing:104.266667pt;}
.wsb9{word-spacing:106.293333pt;}
.wsc6{word-spacing:155.786667pt;}
.wsc5{word-spacing:192.693333pt;}
.wsc1{word-spacing:244.992000pt;}
.wsc8{word-spacing:363.402667pt;}
.wsb8{word-spacing:889.653333pt;}
._17{margin-left:-14.484800pt;}
._1b{margin-left:-10.567733pt;}
._11{margin-left:-9.046667pt;}
._16{margin-left:-7.644800pt;}
._9{margin-left:-6.676267pt;}
._19{margin-left:-5.555200pt;}
._4{margin-left:-4.486133pt;}
._a{margin-left:-3.444267pt;}
._3{margin-left:-2.458400pt;}
._2{margin-left:-0.984000pt;}
._0{width:1.753067pt;}
._5{width:2.716000pt;}
._8{width:3.864000pt;}
._1{width:5.333333pt;}
._6{width:6.437333pt;}
._7{width:7.648000pt;}
._1a{width:8.541067pt;}
._10{width:9.430400pt;}
._c{width:10.890933pt;}
._b{width:11.834400pt;}
._12{width:12.757600pt;}
._15{width:13.856267pt;}
._20{width:15.374400pt;}
._14{width:18.154667pt;}
._13{width:19.136000pt;}
._1d{width:24.681888pt;}
._22{width:26.467200pt;}
._1e{width:27.491200pt;}
._1c{width:29.626133pt;}
._18{width:38.617920pt;}
._d{width:63.466667pt;}
._21{width:73.872533pt;}
._f{width:257.674667pt;}
._e{width:514.133333pt;}
._1f{width:657.656800pt;}
.fsb{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fsa{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y21c{bottom:94.324000pt;}
.y143{bottom:94.369333pt;}
.yb6{bottom:94.429333pt;}
.y202{bottom:94.432000pt;}
.y42{bottom:94.436000pt;}
.y67{bottom:94.444000pt;}
.y23d{bottom:94.454667pt;}
.y8d{bottom:94.461333pt;}
.y280{bottom:94.465333pt;}
.y18d{bottom:94.466667pt;}
.yff{bottom:94.480000pt;}
.y166{bottom:94.482933pt;}
.ydc{bottom:94.485600pt;}
.y1ec{bottom:94.485733pt;}
.y1e{bottom:94.493333pt;}
.y25b{bottom:94.510000pt;}
.y1cb{bottom:97.150933pt;}
.yb5{bottom:109.765333pt;}
.y201{bottom:109.768000pt;}
.y18c{bottom:109.802667pt;}
.yfe{bottom:109.816000pt;}
.y165{bottom:109.818933pt;}
.y1d{bottom:112.173333pt;}
.y21b{bottom:112.432667pt;}
.y27f{bottom:112.438667pt;}
.y66{bottom:112.460667pt;}
.ydb{bottom:112.484267pt;}
.y1eb{bottom:112.484400pt;}
.y142{bottom:112.524000pt;}
.y8c{bottom:113.091333pt;}
.y41{bottom:113.265333pt;}
.y23c{bottom:113.368667pt;}
.y1ca{bottom:113.593333pt;}
.y25a{bottom:113.956000pt;}
.yb4{bottom:125.101333pt;}
.y200{bottom:125.104000pt;}
.y18b{bottom:125.138667pt;}
.yfd{bottom:125.152000pt;}
.y164{bottom:127.817600pt;}
.yda{bottom:128.929333pt;}
.y11c{bottom:128.932000pt;}
.y1c{bottom:129.853333pt;}
.y27e{bottom:130.412000pt;}
.y65{bottom:130.477333pt;}
.y21a{bottom:130.541333pt;}
.y141{bottom:130.678667pt;}
.y8b{bottom:131.721333pt;}
.y40{bottom:132.094667pt;}
.y23b{bottom:139.842667pt;}
.yb3{bottom:140.437333pt;}
.y1ff{bottom:140.440000pt;}
.y18a{bottom:140.474667pt;}
.y259{bottom:140.962000pt;}
.yfc{bottom:143.150667pt;}
.yd9{bottom:144.265333pt;}
.y27d{bottom:148.385333pt;}
.y64{bottom:148.494000pt;}
.y219{bottom:148.650000pt;}
.y140{bottom:148.833333pt;}
.y8a{bottom:150.351333pt;}
.y3f{bottom:150.924000pt;}
.y1ac{bottom:151.605333pt;}
.yb2{bottom:155.773333pt;}
.y1fe{bottom:155.776000pt;}
.y189{bottom:155.810667pt;}
.y23a{bottom:158.756667pt;}
.y1b{bottom:158.880000pt;}
.yd8{bottom:162.264000pt;}
.y27c{bottom:166.358667pt;}
.y63{bottom:166.510667pt;}
.y218{bottom:166.758667pt;}
.y13f{bottom:166.988000pt;}
.y163{bottom:167.056000pt;}
.y258{bottom:167.968000pt;}
.y89{bottom:168.981333pt;}
.y3e{bottom:169.753333pt;}
.y1ab{bottom:170.787333pt;}
.yb1{bottom:171.109333pt;}
.y1fd{bottom:171.112000pt;}
.y188{bottom:171.146667pt;}
.y239{bottom:177.670667pt;}
.y11b{bottom:178.713333pt;}
.y11a{bottom:181.377333pt;}
.yfb{bottom:182.290667pt;}
.y27b{bottom:184.332000pt;}
.y62{bottom:184.527333pt;}
.y217{bottom:184.867333pt;}
.y13e{bottom:185.142667pt;}
.y162{bottom:185.149333pt;}
.yb0{bottom:186.445333pt;}
.y1fc{bottom:186.448000pt;}
.y187{bottom:186.482667pt;}
.y88{bottom:187.611333pt;}
.y3d{bottom:188.582667pt;}
.y1aa{bottom:189.920667pt;}
.y257{bottom:194.974000pt;}
.yfa{bottom:200.476000pt;}
.yd7{bottom:201.354667pt;}
.y1ea{bottom:201.369333pt;}
.y1c9{bottom:201.404000pt;}
.yaf{bottom:201.781333pt;}
.y1fb{bottom:201.784000pt;}
.y186{bottom:201.818667pt;}
.y27a{bottom:202.305333pt;}
.y61{bottom:202.544000pt;}
.y216{bottom:202.976000pt;}
.y1a{bottom:203.026667pt;}
.y161{bottom:203.242667pt;}
.y13d{bottom:203.297333pt;}
.y238{bottom:204.144667pt;}
.y87{bottom:206.241333pt;}
.y3c{bottom:207.412000pt;}
.y1a9{bottom:209.102667pt;}
.yae{bottom:217.117333pt;}
.y1fa{bottom:217.120000pt;}
.yf9{bottom:218.661333pt;}
.yd6{bottom:219.570667pt;}
.y185{bottom:219.817333pt;}
.y1c8{bottom:220.187333pt;}
.y279{bottom:220.278667pt;}
.y119{bottom:220.501333pt;}
.y1e9{bottom:220.658667pt;}
.y215{bottom:221.084667pt;}
.y160{bottom:221.336000pt;}
.y13c{bottom:221.452000pt;}
.y256{bottom:221.980000pt;}
.y19{bottom:222.040000pt;}
.y237{bottom:223.058667pt;}
.y86{bottom:224.871333pt;}
.y3b{bottom:226.241333pt;}
.y1a8{bottom:228.284667pt;}
.yad{bottom:232.453333pt;}
.y1f9{bottom:232.456000pt;}
.yf8{bottom:236.846667pt;}
.yd5{bottom:237.786667pt;}
.y278{bottom:238.252000pt;}
.y118{bottom:238.686667pt;}
.y1c7{bottom:238.970667pt;}
.y214{bottom:239.193333pt;}
.y15f{bottom:239.429333pt;}
.y60{bottom:239.445333pt;}
.y13b{bottom:239.606667pt;}
.y1e8{bottom:239.948000pt;}
.y255{bottom:241.426000pt;}
.y236{bottom:241.972667pt;}
.y85{bottom:243.501333pt;}
.y3a{bottom:245.070667pt;}
.y1a7{bottom:247.466667pt;}
.yac{bottom:247.789333pt;}
.y1f8{bottom:247.792000pt;}
.yd4{bottom:256.002667pt;}
.y277{bottom:256.225333pt;}
.y117{bottom:256.858667pt;}
.y213{bottom:257.302000pt;}
.y15e{bottom:257.522667pt;}
.y1c6{bottom:257.754000pt;}
.y13a{bottom:257.761333pt;}
.y184{bottom:258.964667pt;}
.y1e7{bottom:259.237333pt;}
.y18{bottom:260.005333pt;}
.y5f{bottom:260.793333pt;}
.y84{bottom:262.131333pt;}
.yab{bottom:263.125333pt;}
.y1f7{bottom:263.128000pt;}
.y39{bottom:263.900000pt;}
.y1a6{bottom:266.648667pt;}
.y254{bottom:268.432000pt;}
.y235{bottom:268.446667pt;}
.yf7{bottom:273.934667pt;}
.y276{bottom:274.198667pt;}
.yd3{bottom:274.218667pt;}
.y116{bottom:275.044000pt;}
.y212{bottom:275.410667pt;}
.y15d{bottom:275.616000pt;}
.y139{bottom:275.916000pt;}
.y1c5{bottom:276.537333pt;}
.y183{bottom:277.073333pt;}
.y17{bottom:277.685333pt;}
.yaa{bottom:278.461333pt;}
.y1f6{bottom:278.464000pt;}
.y1e6{bottom:278.526667pt;}
.y83{bottom:280.761333pt;}
.y38{bottom:282.729333pt;}
.y1a5{bottom:285.830667pt;}
.y234{bottom:287.360667pt;}
.y275{bottom:292.172000pt;}
.yd2{bottom:292.434667pt;}
.y115{bottom:293.229333pt;}
.y211{bottom:293.519333pt;}
.y15c{bottom:293.709333pt;}
.ya9{bottom:293.797333pt;}
.y1f5{bottom:293.800000pt;}
.y138{bottom:294.070667pt;}
.y182{bottom:295.182000pt;}
.y1c4{bottom:295.320667pt;}
.y16{bottom:295.365333pt;}
.y253{bottom:295.438000pt;}
.y1e5{bottom:297.816000pt;}
.y82{bottom:299.391333pt;}
.y37{bottom:301.558667pt;}
.y1a4{bottom:305.012667pt;}
.ya8{bottom:309.133333pt;}
.y1f4{bottom:309.136000pt;}
.y274{bottom:310.145333pt;}
.yd1{bottom:310.650667pt;}
.y114{bottom:311.414667pt;}
.y210{bottom:311.628000pt;}
.y15b{bottom:311.802667pt;}
.y137{bottom:312.225333pt;}
.y15{bottom:313.045333pt;}
.y181{bottom:313.467333pt;}
.y233{bottom:313.834667pt;}
.y1c3{bottom:314.104000pt;}
.y252{bottom:314.884000pt;}
.y5e{bottom:315.951333pt;}
.y1e4{bottom:317.105333pt;}
.y81{bottom:318.021333pt;}
.y36{bottom:320.388000pt;}
.y1a3{bottom:324.194667pt;}
.ya7{bottom:324.469333pt;}
.y1f3{bottom:324.472000pt;}
.y273{bottom:328.118667pt;}
.yd0{bottom:328.866667pt;}
.yf6{bottom:329.553333pt;}
.y113{bottom:329.600000pt;}
.y20f{bottom:329.736667pt;}
.y15a{bottom:329.896000pt;}
.y136{bottom:330.380000pt;}
.y14{bottom:330.725333pt;}
.y180{bottom:331.576000pt;}
.y232{bottom:332.748667pt;}
.y1c2{bottom:332.887333pt;}
.y5d{bottom:333.968000pt;}
.y251{bottom:334.330000pt;}
.y1e3{bottom:336.394667pt;}
.y80{bottom:336.651333pt;}
.y35{bottom:339.217333pt;}
.ya6{bottom:339.805333pt;}
.y1f2{bottom:339.808000pt;}
.y1a2{bottom:343.376667pt;}
.y272{bottom:346.092000pt;}
.ycf{bottom:347.082667pt;}
.yf5{bottom:347.738667pt;}
.y112{bottom:347.785333pt;}
.y20e{bottom:347.845333pt;}
.y159{bottom:347.989333pt;}
.y13{bottom:348.405333pt;}
.y135{bottom:348.534667pt;}
.y17f{bottom:349.684667pt;}
.y1c1{bottom:351.670667pt;}
.y5c{bottom:351.984667pt;}
.ya5{bottom:355.141333pt;}
.y1f1{bottom:355.144000pt;}
.y7f{bottom:355.281333pt;}
.y1e2{bottom:355.684000pt;}
.y34{bottom:358.046667pt;}
.y231{bottom:359.222667pt;}
.y250{bottom:361.336000pt;}
.y1a1{bottom:362.558667pt;}
.y271{bottom:364.065333pt;}
.yce{bottom:365.298667pt;}
.yf4{bottom:365.924000pt;}
.y20d{bottom:365.954000pt;}
.y111{bottom:365.970667pt;}
.y158{bottom:366.082667pt;}
.y12{bottom:366.085333pt;}
.y134{bottom:366.689333pt;}
.y17e{bottom:367.793333pt;}
.y5b{bottom:370.001333pt;}
.ya4{bottom:370.477333pt;}
.y1f0{bottom:370.480000pt;}
.y7e{bottom:373.911333pt;}
.y1e1{bottom:374.973333pt;}
.y33{bottom:376.876000pt;}
.y24f{bottom:380.782000pt;}
.y1a0{bottom:381.740667pt;}
.y270{bottom:382.038667pt;}
.ycd{bottom:383.472000pt;}
.y11{bottom:383.765333pt;}
.y20c{bottom:384.062667pt;}
.yf3{bottom:384.109333pt;}
.y110{bottom:384.156000pt;}
.y157{bottom:384.176000pt;}
.y133{bottom:384.844000pt;}
.ya3{bottom:385.813333pt;}
.y1ef{bottom:385.816000pt;}
.y17d{bottom:385.902000pt;}
.y5a{bottom:388.018000pt;}
.y1c0{bottom:389.353333pt;}
.y7d{bottom:392.541333pt;}
.y1e0{bottom:394.262667pt;}
.y32{bottom:395.705333pt;}
.y26f{bottom:400.012000pt;}
.y24e{bottom:400.228000pt;}
.y19f{bottom:400.922667pt;}
.ya2{bottom:401.149333pt;}
.y1ee{bottom:401.152000pt;}
.y10{bottom:401.445333pt;}
.ycc{bottom:401.688000pt;}
.y20b{bottom:402.171333pt;}
.y156{bottom:402.269333pt;}
.yf2{bottom:402.294667pt;}
.y10f{bottom:402.341333pt;}
.y132{bottom:402.998667pt;}
.y17c{bottom:404.010667pt;}
.y59{bottom:406.034667pt;}
.y7c{bottom:411.171333pt;}
.y31{bottom:414.534667pt;}
.ya1{bottom:416.485333pt;}
.y26e{bottom:417.985333pt;}
.yf{bottom:419.125333pt;}
.y1ed{bottom:419.150667pt;}
.y24d{bottom:419.674000pt;}
.ycb{bottom:419.904000pt;}
.y19e{bottom:420.104667pt;}
.y20a{bottom:420.280000pt;}
.y155{bottom:420.362667pt;}
.yf1{bottom:420.480000pt;}
.y10e{bottom:420.526667pt;}
.y131{bottom:421.153333pt;}
.y17b{bottom:422.119333pt;}
.y58{bottom:424.051333pt;}
.y230{bottom:424.281333pt;}
.y7b{bottom:429.801333pt;}
.y30{bottom:433.364000pt;}
.ya0{bottom:434.484000pt;}
.y26d{bottom:435.958667pt;}
.ye{bottom:436.805333pt;}
.yca{bottom:438.120000pt;}
.y209{bottom:438.388667pt;}
.y154{bottom:438.456000pt;}
.y1df{bottom:438.462667pt;}
.yf0{bottom:438.665333pt;}
.y10d{bottom:438.712000pt;}
.y19d{bottom:439.286667pt;}
.y130{bottom:439.308000pt;}
.y17a{bottom:440.228000pt;}
.y57{bottom:442.068000pt;}
.y22f{bottom:443.187333pt;}
.y1bf{bottom:445.502667pt;}
.y24c{bottom:446.680000pt;}
.y7a{bottom:448.431333pt;}
.y26c{bottom:453.932000pt;}
.yd{bottom:454.485333pt;}
.yc9{bottom:456.336000pt;}
.y208{bottom:456.497333pt;}
.y153{bottom:456.556000pt;}
.yef{bottom:456.850667pt;}
.y10c{bottom:456.897333pt;}
.y12f{bottom:457.462667pt;}
.y179{bottom:458.336667pt;}
.y19c{bottom:458.468667pt;}
.y1de{bottom:458.662667pt;}
.y56{bottom:460.084667pt;}
.y22e{bottom:462.093333pt;}
.y1be{bottom:464.286000pt;}
.y24b{bottom:466.126000pt;}
.y79{bottom:467.061333pt;}
.y2f{bottom:471.088000pt;}
.y26b{bottom:471.905333pt;}
.y9f{bottom:473.669333pt;}
.yc8{bottom:474.552000pt;}
.y207{bottom:474.606000pt;}
.y152{bottom:474.649333pt;}
.yee{bottom:475.036000pt;}
.y10b{bottom:475.082667pt;}
.y12e{bottom:475.617333pt;}
.y178{bottom:476.445333pt;}
.y19b{bottom:477.650667pt;}
.y55{bottom:478.101333pt;}
.y1dc{bottom:478.880000pt;}
.y22d{bottom:480.999333pt;}
.y1bd{bottom:483.069333pt;}
.yc{bottom:483.512000pt;}
.y24a{bottom:485.572000pt;}
.y78{bottom:485.691333pt;}
.y26a{bottom:489.878667pt;}
.y9e{bottom:491.931333pt;}
.y206{bottom:492.714667pt;}
.yc7{bottom:492.768000pt;}
.yed{bottom:493.221333pt;}
.y10a{bottom:493.266667pt;}
.y12d{bottom:493.772000pt;}
.y177{bottom:494.554000pt;}
.y1db{bottom:494.880000pt;}
.y54{bottom:496.118000pt;}
.y22c{bottom:499.905333pt;}
.y1bc{bottom:501.852667pt;}
.y77{bottom:504.321333pt;}
.y269{bottom:507.852000pt;}
.y9d{bottom:510.193333pt;}
.y205{bottom:510.823333pt;}
.y1dd{bottom:510.862667pt;}
.y1da{bottom:510.880000pt;}
.yc6{bottom:510.984000pt;}
.yec{bottom:511.406667pt;}
.y109{bottom:511.452000pt;}
.y151{bottom:511.648000pt;}
.y12c{bottom:511.926667pt;}
.y249{bottom:512.578000pt;}
.y176{bottom:512.662667pt;}
.y53{bottom:514.134667pt;}
.y19a{bottom:515.728000pt;}
.y22b{bottom:518.811333pt;}
.y1bb{bottom:520.636000pt;}
.y76{bottom:522.951333pt;}
.y268{bottom:525.825333pt;}
.y9c{bottom:528.455333pt;}
.y204{bottom:528.932000pt;}
.yc5{bottom:529.200000pt;}
.yeb{bottom:529.592000pt;}
.y108{bottom:529.637333pt;}
.y12b{bottom:530.081333pt;}
.y28d{bottom:530.161333pt;}
.y175{bottom:530.771333pt;}
.y1d9{bottom:531.080000pt;}
.y248{bottom:532.024000pt;}
.y52{bottom:532.151333pt;}
.yb{bottom:535.194667pt;}
.y22a{bottom:537.717333pt;}
.y1ba{bottom:539.419333pt;}
.y75{bottom:541.581333pt;}
.y267{bottom:543.798667pt;}
.y28c{bottom:545.505333pt;}
.y2e{bottom:546.089333pt;}
.y9b{bottom:546.717333pt;}
.y1d8{bottom:547.080000pt;}
.yc4{bottom:547.416000pt;}
.yea{bottom:547.777333pt;}
.y107{bottom:547.813333pt;}
.y12a{bottom:548.236000pt;}
.y174{bottom:548.880000pt;}
.y51{bottom:550.168000pt;}
.y229{bottom:556.623333pt;}
.y1b9{bottom:558.202667pt;}
.y247{bottom:559.030000pt;}
.ya{bottom:559.554667pt;}
.y74{bottom:560.211333pt;}
.y266{bottom:561.772000pt;}
.y1d7{bottom:563.080000pt;}
.y28b{bottom:563.505333pt;}
.y9a{bottom:564.979333pt;}
.y2d{bottom:565.582667pt;}
.yc3{bottom:565.632000pt;}
.y203{bottom:565.932000pt;}
.ye9{bottom:565.962667pt;}
.y106{bottom:565.998667pt;}
.y129{bottom:566.390667pt;}
.y173{bottom:566.988667pt;}
.y150{bottom:567.188000pt;}
.y50{bottom:568.184667pt;}
.y199{bottom:572.217333pt;}
.y228{bottom:575.529333pt;}
.y1b8{bottom:576.986000pt;}
.y246{bottom:578.476000pt;}
.y73{bottom:578.841333pt;}
.y1d6{bottom:579.080000pt;}
.y265{bottom:579.745333pt;}
.y28a{bottom:581.505333pt;}
.y99{bottom:583.241333pt;}
.yc2{bottom:583.848000pt;}
.y9{bottom:583.914667pt;}
.ye8{bottom:584.148000pt;}
.y105{bottom:584.184000pt;}
.y128{bottom:584.545333pt;}
.y172{bottom:585.097333pt;}
.y14f{bottom:585.281333pt;}
.y4f{bottom:586.201333pt;}
.y198{bottom:591.399333pt;}
.y227{bottom:594.435333pt;}
.y1d5{bottom:595.080000pt;}
.y1b7{bottom:595.769333pt;}
.y72{bottom:597.471333pt;}
.y264{bottom:597.718667pt;}
.y245{bottom:597.922000pt;}
.y98{bottom:601.503333pt;}
.yc1{bottom:602.025333pt;}
.ye7{bottom:602.333333pt;}
.y104{bottom:602.369333pt;}
.y127{bottom:602.700000pt;}
.y171{bottom:603.206000pt;}
.y14e{bottom:603.374667pt;}
.y2c{bottom:603.972000pt;}
.y4e{bottom:604.218000pt;}
.y197{bottom:610.581333pt;}
.y289{bottom:610.838667pt;}
.y1d4{bottom:611.080000pt;}
.y226{bottom:613.341333pt;}
.y1b6{bottom:614.552667pt;}
.y263{bottom:615.692000pt;}
.y71{bottom:616.101333pt;}
.y244{bottom:617.368000pt;}
.y97{bottom:619.765333pt;}
.yc0{bottom:620.241333pt;}
.ye6{bottom:620.518667pt;}
.y103{bottom:620.554667pt;}
.y126{bottom:620.854667pt;}
.y170{bottom:621.314667pt;}
.y14d{bottom:621.468000pt;}
.y2b{bottom:622.132000pt;}
.y4d{bottom:622.234667pt;}
.y1d3{bottom:627.080000pt;}
.y8{bottom:627.178667pt;}
.y196{bottom:629.763333pt;}
.y225{bottom:632.247333pt;}
.y1b5{bottom:633.349333pt;}
.y262{bottom:633.665333pt;}
.y70{bottom:634.731333pt;}
.y96{bottom:638.027333pt;}
.ybf{bottom:638.457333pt;}
.ye5{bottom:638.704000pt;}
.y102{bottom:638.740000pt;}
.y125{bottom:639.009333pt;}
.y16f{bottom:639.423333pt;}
.y14c{bottom:639.561333pt;}
.y4c{bottom:640.251333pt;}
.y2a{bottom:640.292000pt;}
.y1d2{bottom:643.080000pt;}
.y243{bottom:644.374000pt;}
.y288{bottom:647.732000pt;}
.y195{bottom:648.945333pt;}
.y224{bottom:651.153333pt;}
.y261{bottom:651.638667pt;}
.y1b4{bottom:652.132667pt;}
.y6f{bottom:653.361333pt;}
.y7{bottom:655.522667pt;}
.y95{bottom:656.289333pt;}
.ybe{bottom:656.673333pt;}
.ye4{bottom:656.889333pt;}
.y101{bottom:656.925333pt;}
.y124{bottom:657.164000pt;}
.y16e{bottom:657.532000pt;}
.y14b{bottom:657.654667pt;}
.y4b{bottom:658.268000pt;}
.y29{bottom:658.452000pt;}
.y1d1{bottom:663.280000pt;}
.y194{bottom:668.127333pt;}
.y260{bottom:669.612000pt;}
.y223{bottom:670.059333pt;}
.y1b3{bottom:670.916000pt;}
.y6e{bottom:671.991333pt;}
.y94{bottom:674.551333pt;}
.ybd{bottom:674.889333pt;}
.ye3{bottom:675.104000pt;}
.y100{bottom:675.110667pt;}
.y123{bottom:675.318667pt;}
.y16d{bottom:675.640667pt;}
.y14a{bottom:675.748000pt;}
.y4a{bottom:676.284667pt;}
.y28{bottom:676.612000pt;}
.y1d0{bottom:679.280000pt;}
.y287{bottom:682.398667pt;}
.y6{bottom:683.866667pt;}
.y193{bottom:687.309333pt;}
.y222{bottom:688.965333pt;}
.y1b2{bottom:689.699333pt;}
.y6d{bottom:690.621333pt;}
.y242{bottom:690.938000pt;}
.y93{bottom:692.813333pt;}
.ybc{bottom:693.105333pt;}
.ye2{bottom:693.289333pt;}
.y122{bottom:693.473333pt;}
.y16c{bottom:693.749333pt;}
.y149{bottom:693.841333pt;}
.y49{bottom:694.301333pt;}
.y27{bottom:694.772000pt;}
.y25f{bottom:698.918667pt;}
.y1cf{bottom:699.480000pt;}
.y286{bottom:699.732000pt;}
.y192{bottom:706.491333pt;}
.y221{bottom:707.871333pt;}
.y1b1{bottom:708.482667pt;}
.y6c{bottom:709.251333pt;}
.y241{bottom:710.384000pt;}
.y92{bottom:711.075333pt;}
.ybb{bottom:711.321333pt;}
.ye1{bottom:711.474667pt;}
.y121{bottom:711.628000pt;}
.y16b{bottom:711.858000pt;}
.y148{bottom:711.934667pt;}
.y48{bottom:712.318000pt;}
.y26{bottom:712.932000pt;}
.y285{bottom:717.065333pt;}
.y191{bottom:725.673333pt;}
.y220{bottom:726.777333pt;}
.y1ce{bottom:726.969333pt;}
.y1b0{bottom:727.266000pt;}
.y6b{bottom:727.881333pt;}
.y91{bottom:729.353333pt;}
.yba{bottom:729.537333pt;}
.ye0{bottom:729.660000pt;}
.y120{bottom:729.782667pt;}
.y16a{bottom:729.966667pt;}
.y147{bottom:730.028000pt;}
.y47{bottom:730.334667pt;}
.y25{bottom:731.092000pt;}
.y284{bottom:734.398667pt;}
.y240{bottom:737.390000pt;}
.y5{bottom:738.682667pt;}
.y190{bottom:744.855333pt;}
.y1cd{bottom:745.596000pt;}
.y21f{bottom:745.683333pt;}
.y1af{bottom:746.049333pt;}
.y6a{bottom:746.511333pt;}
.y90{bottom:747.615333pt;}
.yb9{bottom:747.753333pt;}
.ydf{bottom:747.845333pt;}
.y11f{bottom:747.937333pt;}
.y169{bottom:748.075333pt;}
.y146{bottom:748.121333pt;}
.y46{bottom:748.351333pt;}
.y24{bottom:749.252000pt;}
.y25e{bottom:750.904000pt;}
.y283{bottom:751.732000pt;}
.y23f{bottom:756.836000pt;}
.y4{bottom:757.696000pt;}
.y18f{bottom:764.037333pt;}
.y21e{bottom:764.589333pt;}
.y1ae{bottom:764.832667pt;}
.y69{bottom:765.141333pt;}
.y8f{bottom:765.877333pt;}
.yb8{bottom:765.969333pt;}
.yde{bottom:766.030667pt;}
.y11e{bottom:766.092000pt;}
.y168{bottom:766.184000pt;}
.y145{bottom:766.214667pt;}
.y45{bottom:766.368000pt;}
.y23{bottom:767.412000pt;}
.y282{bottom:769.065333pt;}
.y25d{bottom:775.544000pt;}
.y1cc{bottom:783.112000pt;}
.y18e{bottom:783.219333pt;}
.y21d{bottom:783.495333pt;}
.y1ad{bottom:783.618000pt;}
.y68{bottom:783.771333pt;}
.y23e{bottom:783.842000pt;}
.y8e{bottom:784.139333pt;}
.yb7{bottom:784.185333pt;}
.ydd{bottom:784.216000pt;}
.y11d{bottom:784.246667pt;}
.y3{bottom:784.269333pt;}
.y167{bottom:784.292667pt;}
.y144{bottom:784.308000pt;}
.y44{bottom:784.384667pt;}
.y22{bottom:785.572000pt;}
.y281{bottom:786.398667pt;}
.y25c{bottom:800.184000pt;}
.y43{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y21{bottom:803.732000pt;}
.y20{bottom:842.834667pt;}
.y1f{bottom:858.834667pt;}
.h14{height:23.761805pt;}
.hc{height:30.997771pt;}
.hb{height:37.020833pt;}
.hd{height:41.648438pt;}
.h1a{height:41.695312pt;}
.h11{height:43.138396pt;}
.h19{height:46.067708pt;}
.h4{height:46.276042pt;}
.h3{height:48.589844pt;}
.ha{height:53.217448pt;}
.hf{height:53.372115pt;}
.he{height:53.789062pt;}
.h15{height:53.799729pt;}
.h2{height:57.845052pt;}
.h7{height:59.765625pt;}
.h8{height:62.472656pt;}
.h1b{height:62.753906pt;}
.h18{height:68.677135pt;}
.h17{height:68.722469pt;}
.h9{height:68.730469pt;}
.h13{height:68.735802pt;}
.h12{height:68.757135pt;}
.h10{height:68.901135pt;}
.h16{height:68.925135pt;}
.h6{height:83.671875pt;}
.h5{height:107.578125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:72.440000pt;}
.x8{left:74.336267pt;}
.x1{left:75.669333pt;}
.xa{left:76.567333pt;}
.x18{left:85.556933pt;}
.xb{left:91.416133pt;}
.x7{left:93.358667pt;}
.x5{left:94.266667pt;}
.x9{left:95.400000pt;}
.x19{left:98.838400pt;}
.xe{left:101.521333pt;}
.x1a{left:102.426400pt;}
.x16{left:105.938533pt;}
.x17{left:109.434533pt;}
.xf{left:139.041333pt;}
.x12{left:140.254667pt;}
.xc{left:169.282667pt;}
.x3{left:205.626667pt;}
.x2{left:207.417333pt;}
.x4{left:208.445333pt;}
.x15{left:232.412000pt;}
.xd{left:273.014667pt;}
.x13{left:280.508000pt;}
.x10{left:281.481333pt;}
.x11{left:524.801333pt;}
.x14{left:525.718667pt;}
}




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