
    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_057194ef87a9007dddce1d29.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8e213ace0a3dc59b6457bee4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_4e2348e3e454c0268c63479a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_944762527f87e2a9faad529d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_1d5e22947b4f663f18cbd6f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_d8c4902ca7b4a6fc77ac2118.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_b48501cc8d6a8cf3489feb56.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_f60f48bea1dc973ed5567d6d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_b17fd22fa2b3bbdb2c7ee1e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_13249bdddb265930a9614bda.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_29a025e6c5d5e872f3b14ca3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921000;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_45a8fb2f29a8d64c457c64f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_0919ec3090d2818a1ce29104.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_ab6c46bd57408fc1af51e919.woff2')format("woff");}.fff{font-family:fff;line-height:2.243000;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_e7fffdafd3011d73ae27c732.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.518000;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_97056d52659ee95f01f4f6c2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.678000;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_89c45bb5700c0a04e606827c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.856000;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_934d503ede3781547e1b15ba.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.901000;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:-102.240000px;}
.v3{vertical-align:-97.920000px;}
.v1{vertical-align:-96.480000px;}
.v23{vertical-align:-69.120000px;}
.v6{vertical-align:-54.468000px;}
.v1b{vertical-align:-23.910000px;}
.v1a{vertical-align:-14.946000px;}
.v4{vertical-align:-8.964000px;}
.v13{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v21{vertical-align:8.970000px;}
.vb{vertical-align:14.778000px;}
.va{vertical-align:16.068000px;}
.v18{vertical-align:18.030000px;}
.ve{vertical-align:20.592000px;}
.vc{vertical-align:21.690000px;}
.v17{vertical-align:22.752000px;}
.v7{vertical-align:24.678000px;}
.vd{vertical-align:26.568000px;}
.v12{vertical-align:28.722000px;}
.v16{vertical-align:31.716000px;}
.v15{vertical-align:33.480000px;}
.v10{vertical-align:36.528000px;}
.v8{vertical-align:38.688000px;}
.v11{vertical-align:40.620000px;}
.vf{vertical-align:42.504000px;}
.v14{vertical-align:45.384000px;}
.v20{vertical-align:47.820000px;}
.v19{vertical-align:50.808000px;}
.v1d{vertical-align:65.442000px;}
.v1e{vertical-align:68.742000px;}
.v22{vertical-align:77.706000px;}
.v5{vertical-align:81.360000px;}
.v1c{vertical-align:121.338000px;}
.v1f{vertical-align:130.908000px;}
.v9{vertical-align:151.890000px;}
.lsc{letter-spacing:-0.425400px;}
.ls17{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.150600px;}
.ls14{letter-spacing:-0.140400px;}
.ls10{letter-spacing:-0.135600px;}
.ls19{letter-spacing:-0.105000px;}
.ls13{letter-spacing:-0.081000px;}
.ls18{letter-spacing:-0.079200px;}
.ls12{letter-spacing:-0.077400px;}
.lse{letter-spacing:-0.051600px;}
.ls1b{letter-spacing:-0.048600px;}
.ls6d{letter-spacing:-0.046200px;}
.ls15{letter-spacing:-0.039600px;}
.ls6e{letter-spacing:-0.037800px;}
.ls1a{letter-spacing:-0.010200px;}
.lsb{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.000750px;}
.ls48{letter-spacing:0.001272px;}
.ls45{letter-spacing:0.002916px;}
.ls22{letter-spacing:0.003000px;}
.ls38{letter-spacing:0.003024px;}
.ls2a{letter-spacing:0.007872px;}
.ls35{letter-spacing:0.009024px;}
.ls8{letter-spacing:0.010200px;}
.ls67{letter-spacing:0.013872px;}
.ls4f{letter-spacing:0.015426px;}
.ls4e{letter-spacing:0.016764px;}
.ls25{letter-spacing:0.016926px;}
.ls4d{letter-spacing:0.021426px;}
.ls50{letter-spacing:0.022764px;}
.ls39{letter-spacing:0.022926px;}
.ls6{letter-spacing:0.024000px;}
.ls4c{letter-spacing:0.024084px;}
.ls5a{letter-spacing:0.024762px;}
.ls4{letter-spacing:0.026640px;}
.ls46{letter-spacing:0.030084px;}
.lsa{letter-spacing:0.031200px;}
.ls16{letter-spacing:0.037200px;}
.ls6c{letter-spacing:0.043200px;}
.ls9{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.061200px;}
.lsf{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls24{letter-spacing:1.653816px;}
.ls44{letter-spacing:2.160780px;}
.ls61{letter-spacing:2.991024px;}
.ls1f{letter-spacing:2.997024px;}
.ls3e{letter-spacing:3.003324px;}
.ls2b{letter-spacing:3.004764px;}
.ls40{letter-spacing:3.009324px;}
.ls26{letter-spacing:3.010764px;}
.ls33{letter-spacing:3.451836px;}
.ls29{letter-spacing:3.457836px;}
.ls3d{letter-spacing:4.256730px;}
.ls34{letter-spacing:4.479180px;}
.ls37{letter-spacing:4.485180px;}
.ls47{letter-spacing:4.663680px;}
.ls68{letter-spacing:6.544266px;}
.ls3f{letter-spacing:8.327568px;}
.ls59{letter-spacing:9.160716px;}
.ls31{letter-spacing:9.411300px;}
.ls21{letter-spacing:9.949716px;}
.ls58{letter-spacing:10.380156px;}
.ls2e{letter-spacing:13.254984px;}
.ls62{letter-spacing:13.257432px;}
.ls2d{letter-spacing:13.264716px;}
.ls4b{letter-spacing:13.267716px;}
.ls2f{letter-spacing:13.270716px;}
.ls51{letter-spacing:13.273716px;}
.ls36{letter-spacing:13.274358px;}
.ls2c{letter-spacing:13.280358px;}
.ls30{letter-spacing:14.216730px;}
.ls5c{letter-spacing:14.484156px;}
.ls3c{letter-spacing:16.281024px;}
.ls43{letter-spacing:16.287324px;}
.ls52{letter-spacing:16.585716px;}
.ls20{letter-spacing:16.588716px;}
.ls54{letter-spacing:16.592358px;}
.ls53{letter-spacing:16.598358px;}
.ls3b{letter-spacing:16.605000px;}
.ls42{letter-spacing:16.615872px;}
.ls57{letter-spacing:17.871000px;}
.ls23{letter-spacing:18.297000px;}
.ls5b{letter-spacing:19.659000px;}
.ls32{letter-spacing:19.933872px;}
.ls3a{letter-spacing:20.751024px;}
.ls65{letter-spacing:21.615180px;}
.ls7{letter-spacing:22.320000px;}
.ls5d{letter-spacing:22.917024px;}
.ls27{letter-spacing:22.930764px;}
.ls66{letter-spacing:23.758716px;}
.ls28{letter-spacing:24.182730px;}
.ls5f{letter-spacing:24.310716px;}
.ls1e{letter-spacing:24.487872px;}
.ls41{letter-spacing:28.253568px;}
.ls1c{letter-spacing:29.883000px;}
.ls1d{letter-spacing:29.889000px;}
.ls49{letter-spacing:30.502764px;}
.ls4a{letter-spacing:30.508764px;}
.ls5e{letter-spacing:31.383450px;}
.ls60{letter-spacing:36.094716px;}
.ls69{letter-spacing:36.229716px;}
.ls56{letter-spacing:53.782692px;}
.ls64{letter-spacing:114.580716px;}
.ls0{letter-spacing:197.280000px;}
.ls5{letter-spacing:250.560000px;}
.ls55{letter-spacing:540.187716px;}
.ls63{letter-spacing:1000.467432px;}
.ls6b{letter-spacing:1260.000000px;}
.ls3{letter-spacing:1502.640000px;}
.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;}
}
.ws4e{word-spacing:-38.915478px;}
.ws6d{word-spacing:-31.443228px;}
.ws4f{word-spacing:-28.992330px;}
.ws5d{word-spacing:-28.932552px;}
.ws7d{word-spacing:-25.644762px;}
.ws53{word-spacing:-25.635054px;}
.ws81{word-spacing:-25.584984px;}
.ws61{word-spacing:-22.326762px;}
.ws60{word-spacing:-22.320762px;}
.ws64{word-spacing:-21.025464px;}
.ws4{word-spacing:-20.982600px;}
.ws65{word-spacing:-18.979464px;}
.ws79{word-spacing:-18.878298px;}
.ws76{word-spacing:-18.841128px;}
.ws11f{word-spacing:-18.043200px;}
.ws2{word-spacing:-16.822200px;}
.ws1{word-spacing:-16.621200px;}
.ws0{word-spacing:-16.134600px;}
.ws3{word-spacing:-15.199800px;}
.ws15{word-spacing:-0.349800px;}
.ws16{word-spacing:-0.334200px;}
.ws17{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.217200px;}
.ws18{word-spacing:-0.211200px;}
.ws13{word-spacing:-0.190800px;}
.ws9{word-spacing:-0.180000px;}
.wsf{word-spacing:-0.140400px;}
.ws19{word-spacing:-0.131400px;}
.wsc{word-spacing:-0.102600px;}
.wsd{word-spacing:-0.099000px;}
.ws11a{word-spacing:-0.086076px;}
.ws14{word-spacing:-0.075000px;}
.ws46{word-spacing:-0.059778px;}
.ws1d{word-spacing:-0.053796px;}
.ws55{word-spacing:-0.041844px;}
.wse{word-spacing:-0.039600px;}
.ws7{word-spacing:0.000000px;}
.ws6{word-spacing:0.036000px;}
.wsa{word-spacing:0.075600px;}
.ws122{word-spacing:0.077400px;}
.ws121{word-spacing:0.115800px;}
.ws8{word-spacing:0.166200px;}
.ws5{word-spacing:0.180000px;}
.ws123{word-spacing:0.277800px;}
.ws120{word-spacing:0.286200px;}
.wsb{word-spacing:0.330600px;}
.ws11{word-spacing:0.336000px;}
.ws12{word-spacing:0.360000px;}
.ws82{word-spacing:12.927732px;}
.wsd4{word-spacing:14.346720px;}
.ws7e{word-spacing:14.391732px;}
.ws40{word-spacing:14.884722px;}
.ws11c{word-spacing:15.004278px;}
.ws10f{word-spacing:16.259616px;}
.ws5c{word-spacing:16.498728px;}
.ws52{word-spacing:16.509012px;}
.ws32{word-spacing:16.558506px;}
.ws119{word-spacing:16.618284px;}
.ws109{word-spacing:16.678062px;}
.wscd{word-spacing:16.737840px;}
.ws3b{word-spacing:16.857396px;}
.ws110{word-spacing:16.917174px;}
.ws35{word-spacing:17.156286px;}
.wsd6{word-spacing:17.275842px;}
.ws89{word-spacing:17.395398px;}
.ws8e{word-spacing:17.455176px;}
.ws113{word-spacing:17.514954px;}
.ws11b{word-spacing:17.634510px;}
.wsde{word-spacing:17.694288px;}
.ws1f{word-spacing:17.752680px;}
.ws118{word-spacing:17.754066px;}
.ws63{word-spacing:17.813844px;}
.ws62{word-spacing:17.830098px;}
.ws3d{word-spacing:17.873622px;}
.ws117{word-spacing:17.933400px;}
.ws34{word-spacing:17.993178px;}
.wse0{word-spacing:18.112734px;}
.ws2f{word-spacing:18.232290px;}
.ws104{word-spacing:18.351846px;}
.ws21{word-spacing:18.398232px;}
.ws2a{word-spacing:18.471402px;}
.ws80{word-spacing:18.531180px;}
.ws20{word-spacing:18.613416px;}
.ws3f{word-spacing:18.650736px;}
.ws6f{word-spacing:18.830070px;}
.ws108{word-spacing:18.949626px;}
.ws2e{word-spacing:19.009404px;}
.ws2c{word-spacing:19.069182px;}
.ws26{word-spacing:19.248516px;}
.wsad{word-spacing:19.308294px;}
.ws24{word-spacing:19.547406px;}
.ws5b{word-spacing:19.607184px;}
.ws36{word-spacing:19.666962px;}
.ws50{word-spacing:19.786518px;}
.ws51{word-spacing:19.810086px;}
.ws28{word-spacing:19.846296px;}
.ws2d{word-spacing:19.906074px;}
.ws107{word-spacing:19.965852px;}
.ws111{word-spacing:20.085408px;}
.ws116{word-spacing:20.204964px;}
.ws6a{word-spacing:20.264742px;}
.wsd7{word-spacing:20.324520px;}
.ws88{word-spacing:20.384298px;}
.ws67{word-spacing:20.444076px;}
.ws7c{word-spacing:20.563632px;}
.ws3a{word-spacing:20.623410px;}
.ws86{word-spacing:20.742966px;}
.wse6{word-spacing:20.802744px;}
.wsae{word-spacing:20.862522px;}
.ws77{word-spacing:20.963844px;}
.ws27{word-spacing:20.982078px;}
.ws83{word-spacing:21.005688px;}
.wscc{word-spacing:21.041856px;}
.ws6b{word-spacing:21.101634px;}
.wsdd{word-spacing:21.161412px;}
.ws8d{word-spacing:21.221190px;}
.ws3c{word-spacing:21.280968px;}
.wsdb{word-spacing:21.340746px;}
.ws87{word-spacing:21.400524px;}
.ws3e{word-spacing:21.520080px;}
.ws25{word-spacing:21.639636px;}
.ws7f{word-spacing:21.699414px;}
.wsda{word-spacing:21.818970px;}
.wsb0{word-spacing:21.878748px;}
.ws106{word-spacing:21.938526px;}
.ws30{word-spacing:22.058082px;}
.ws10e{word-spacing:22.117860px;}
.ws6e{word-spacing:22.177638px;}
.ws71{word-spacing:22.237416px;}
.ws48{word-spacing:22.297194px;}
.ws115{word-spacing:22.356972px;}
.ws43{word-spacing:22.416750px;}
.ws44{word-spacing:22.468482px;}
.ws45{word-spacing:22.476528px;}
.ws23{word-spacing:22.596084px;}
.wsaf{word-spacing:22.655862px;}
.ws69{word-spacing:22.775418px;}
.ws74{word-spacing:22.835196px;}
.ws68{word-spacing:22.894974px;}
.ws56{word-spacing:22.983732px;}
.ws57{word-spacing:22.989732px;}
.ws33{word-spacing:23.074308px;}
.ws38{word-spacing:23.134086px;}
.ws1b{word-spacing:23.312250px;}
.ws1c{word-spacing:23.383980px;}
.wse7{word-spacing:23.432976px;}
.ws8a{word-spacing:23.492754px;}
.ws7b{word-spacing:23.672088px;}
.ws31{word-spacing:23.731866px;}
.ws72{word-spacing:23.911200px;}
.wsd5{word-spacing:23.970978px;}
.ws2b{word-spacing:24.030756px;}
.ws37{word-spacing:24.150312px;}
.ws112{word-spacing:24.269868px;}
.ws4c{word-spacing:24.389424px;}
.ws4d{word-spacing:24.449202px;}
.ws84{word-spacing:24.660012px;}
.ws85{word-spacing:24.688314px;}
.ws1e{word-spacing:24.853752px;}
.wsdf{word-spacing:24.927426px;}
.ws114{word-spacing:24.987204px;}
.ws4a{word-spacing:25.106760px;}
.ws66{word-spacing:25.258008px;}
.ws5f{word-spacing:25.345872px;}
.ws70{word-spacing:25.525206px;}
.ws59{word-spacing:25.572666px;}
.ws5a{word-spacing:25.584984px;}
.ws47{word-spacing:25.704540px;}
.ws8c{word-spacing:25.824096px;}
.ws105{word-spacing:25.883874px;}
.wsdc{word-spacing:25.943652px;}
.ws75{word-spacing:26.421876px;}
.wsd8{word-spacing:26.720766px;}
.ws39{word-spacing:26.755290px;}
.ws49{word-spacing:26.827020px;}
.ws73{word-spacing:26.898750px;}
.wscb{word-spacing:26.959878px;}
.ws8b{word-spacing:27.139212px;}
.ws29{word-spacing:27.617436px;}
.ws11d{word-spacing:27.976104px;}
.ws4b{word-spacing:28.035882px;}
.ws11e{word-spacing:28.573884px;}
.ws42{word-spacing:28.872774px;}
.ws1a{word-spacing:31.090290px;}
.ws6c{word-spacing:31.323672px;}
.ws41{word-spacing:33.236568px;}
.wsc1{word-spacing:71.647938px;}
.ws9a{word-spacing:71.650938px;}
.wsa6{word-spacing:71.653938px;}
.ws93{word-spacing:71.656938px;}
.ws91{word-spacing:71.670864px;}
.wsc9{word-spacing:71.682390px;}
.ws98{word-spacing:71.686590px;}
.ws9f{word-spacing:71.688390px;}
.wsc2{word-spacing:71.896590px;}
.wsbd{word-spacing:76.650864px;}
.wsea{word-spacing:77.859654px;}
.ws95{word-spacing:81.610938px;}
.wsd2{word-spacing:81.616938px;}
.wsbb{word-spacing:81.636864px;}
.ws90{word-spacing:86.388384px;}
.wscf{word-spacing:86.394384px;}
.wsf5{word-spacing:86.590938px;}
.wsab{word-spacing:86.596938px;}
.wsba{word-spacing:86.598384px;}
.ws8f{word-spacing:86.827608px;}
.wsce{word-spacing:86.887386px;}
.wsb9{word-spacing:87.091386px;}
.ws10a{word-spacing:87.825654px;}
.wseb{word-spacing:88.609512px;}
.wsb1{word-spacing:91.576938px;}
.wsec{word-spacing:95.757654px;}
.ws22{word-spacing:96.663348px;}
.ws96{word-spacing:97.833654px;}
.wsfb{word-spacing:98.575512px;}
.wsc4{word-spacing:101.536938px;}
.wsa8{word-spacing:101.542938px;}
.wsc0{word-spacing:103.807512px;}
.wsf8{word-spacing:105.717654px;}
.wse8{word-spacing:105.723654px;}
.wsb2{word-spacing:107.793654px;}
.wsbf{word-spacing:108.003654px;}
.wsb3{word-spacing:108.577512px;}
.wsfa{word-spacing:111.874944px;}
.wse1{word-spacing:115.855266px;}
.ws99{word-spacing:118.476384px;}
.ws97{word-spacing:118.537512px;}
.wsd3{word-spacing:118.543512px;}
.wsc3{word-spacing:118.686384px;}
.wsd9{word-spacing:121.876944px;}
.wse9{word-spacing:123.440808px;}
.wsf9{word-spacing:123.446808px;}
.wsfe{word-spacing:125.145654px;}
.wsee{word-spacing:125.151654px;}
.wsf3{word-spacing:125.643654px;}
.ws94{word-spacing:131.836944px;}
.wsd1{word-spacing:131.842944px;}
.wsbe{word-spacing:132.046944px;}
.wsc8{word-spacing:135.889512px;}
.wsef{word-spacing:135.895512px;}
.ws9d{word-spacing:139.881654px;}
.wsc7{word-spacing:140.091654px;}
.ws92{word-spacing:143.408808px;}
.wsd0{word-spacing:143.414808px;}
.wsbc{word-spacing:143.618808px;}
.wsa0{word-spacing:145.374384px;}
.wse2{word-spacing:147.943266px;}
.wsfd{word-spacing:149.188944px;}
.ws9e{word-spacing:150.625512px;}
.wsf1{word-spacing:152.043654px;}
.wsfc{word-spacing:160.760808px;}
.wsed{word-spacing:160.766808px;}
.ws101{word-spacing:162.787512px;}
.wsf2{word-spacing:162.793512px;}
.ws9c{word-spacing:163.924944px;}
.wsc6{word-spacing:164.134944px;}
.wsa3{word-spacing:166.779654px;}
.wsb4{word-spacing:173.226384px;}
.wsa5{word-spacing:173.436384px;}
.wse3{word-spacing:174.841266px;}
.ws9b{word-spacing:175.496808px;}
.wsc5{word-spacing:175.706808px;}
.ws100{word-spacing:176.086944px;}
.wsa4{word-spacing:177.523512px;}
.wsaa{word-spacing:179.895654px;}
.ws10c{word-spacing:179.901654px;}
.wsff{word-spacing:187.658808px;}
.wsf0{word-spacing:187.664808px;}
.wsac{word-spacing:190.639512px;}
.ws10d{word-spacing:190.645512px;}
.wsa2{word-spacing:190.822944px;}
.wsb7{word-spacing:194.631654px;}
.wsca{word-spacing:194.841654px;}
.wsa1{word-spacing:202.394808px;}
.wse4{word-spacing:202.909266px;}
.ws10b{word-spacing:203.944944px;}
.wsb8{word-spacing:205.375512px;}
.wse5{word-spacing:215.510808px;}
.wsb6{word-spacing:218.674944px;}
.wsa9{word-spacing:218.884944px;}
.wsb5{word-spacing:230.246808px;}
.wsa7{word-spacing:230.456808px;}
.wsf7{word-spacing:309.613512px;}
.wsf6{word-spacing:313.809654px;}
.ws103{word-spacing:313.815654px;}
.ws102{word-spacing:337.858944px;}
.wsf4{word-spacing:349.430808px;}
.ws54{word-spacing:446.498946px;}
.ws5e{word-spacing:691.967136px;}
.ws58{word-spacing:883.826946px;}
.ws7a{word-spacing:991.717020px;}
.ws78{word-spacing:1007.857080px;}
._3{margin-left:-36.997830px;}
._6{margin-left:-35.219430px;}
._1c{margin-left:-31.383450px;}
._42{margin-left:-29.769444px;}
._41{margin-left:-28.599456px;}
._5{margin-left:-27.329130px;}
._43{margin-left:-22.971258px;}
._4{margin-left:-7.818570px;}
._7{margin-left:-5.810130px;}
._2{margin-left:-3.873420px;}
._0{margin-left:-2.160000px;}
._9{margin-left:-1.142622px;}
._1{width:1.850130px;}
._b{width:3.720084px;}
._1e{width:6.515802px;}
._1a{width:14.789412px;}
._c{width:16.779606px;}
._14{width:17.873622px;}
._d{width:19.705656px;}
._16{width:20.938284px;}
._1b{width:22.090458px;}
._40{width:23.731866px;}
._13{width:24.807870px;}
._a{width:25.924926px;}
._f{width:27.334530px;}
._1f{width:28.592856px;}
._10{width:29.769444px;}
._8{width:31.202550px;}
._32{width:32.242302px;}
._11{width:33.913098px;}
._e{width:35.347770px;}
._18{width:36.412794px;}
._12{width:38.332530px;}
._19{width:40.360722px;}
._37{width:42.353640px;}
._3f{width:44.064378px;}
._17{width:45.086592px;}
._34{width:47.773602px;}
._1d{width:68.804478px;}
._2c{width:72.068628px;}
._28{width:76.440864px;}
._15{width:80.624520px;}
._26{width:81.670716px;}
._3a{width:85.681266px;}
._24{width:86.693820px;}
._27{width:91.636716px;}
._25{width:96.412716px;}
._3c{width:100.831266px;}
._31{width:101.849820px;}
._23{width:105.717654px;}
._2b{width:109.024722px;}
._29{width:114.259266px;}
._36{width:115.683654px;}
._22{width:118.990722px;}
._3b{width:120.097350px;}
._20{width:124.285044px;}
._30{width:125.643654px;}
._2d{width:129.415266px;}
._33{width:135.609654px;}
._2f{width:138.916722px;}
._39{width:140.522586px;}
._2a{width:144.680586px;}
._38{width:148.130358px;}
._3e{width:150.488586px;}
._35{width:154.634586px;}
._3d{width:158.802030px;}
._21{width:164.600586px;}
._2e{width:174.560586px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.886000px;}
.fsa{font-size:41.844000px;}
.fs7{font-size:53.796000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:59.778000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:71.730000px;}
.fsd{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs8{font-size:86.076000px;}
.fs5{font-size:103.290000px;}
.fs4{font-size:108.000000px;}
.fsc{font-size:111.054138px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y48{bottom:20.680500px;}
.yb5{bottom:42.474765px;}
.ye8{bottom:65.512500px;}
.ye7{bottom:83.445000px;}
.y1c7{bottom:85.540500px;}
.y47{bottom:88.149000px;}
.y1fe{bottom:96.567000px;}
.y172{bottom:99.718500px;}
.ye6{bottom:101.377500px;}
.y1c6{bottom:103.473000px;}
.y46{bottom:106.081500px;}
.y1dc{bottom:111.355500px;}
.y1a7{bottom:112.827000px;}
.y144{bottom:113.127000px;}
.y1fd{bottom:114.499500px;}
.y1ac{bottom:116.208000px;}
.ye5{bottom:119.311500px;}
.y45{bottom:124.015500px;}
.y7b{bottom:127.684500px;}
.y120{bottom:131.059500px;}
.ye4{bottom:137.244000px;}
.y44{bottom:141.948000px;}
.y1db{bottom:144.148500px;}
.y1fc{bottom:144.388500px;}
.y1a6{bottom:145.621500px;}
.y143{bottom:145.920000px;}
.y13c{bottom:148.992000px;}
.y1ba{bottom:153.829500px;}
.ye3{bottom:155.176500px;}
.y43{bottom:159.880500px;}
.y1da{bottom:162.679500px;}
.y11f{bottom:163.852500px;}
.y1a5{bottom:164.151000px;}
.y142{bottom:164.451000px;}
.y22{bottom:167.580000px;}
.y7a{bottom:168.199500px;}
.y158{bottom:169.449000px;}
.y1b9{bottom:171.763500px;}
.ye2{bottom:173.109000px;}
.y1fb{bottom:174.276000px;}
.y23a{bottom:177.300000px;}
.y110{bottom:179.818500px;}
.y1d9{bottom:181.210500px;}
.y13b{bottom:181.786500px;}
.y11e{bottom:182.383500px;}
.y1a4{bottom:182.682000px;}
.y141{bottom:182.982000px;}
.y79{bottom:186.132000px;}
.y157{bottom:187.381500px;}
.yb3{bottom:187.447500px;}
.y1b8{bottom:189.696000px;}
.y1fa{bottom:192.208500px;}
.y21{bottom:192.240000px;}
.y239{bottom:195.300000px;}
.y42{bottom:198.651000px;}
.y1d8{bottom:199.740000px;}
.y13a{bottom:200.316000px;}
.ye1{bottom:200.694000px;}
.y11d{bottom:200.914500px;}
.y1e0{bottom:201.066000px;}
.y1a3{bottom:201.213000px;}
.y140{bottom:201.511500px;}
.y78{bottom:204.064500px;}
.y156{bottom:205.314000px;}
.yb2{bottom:205.380000px;}
.yb6{bottom:206.432462px;}
.y1b7{bottom:207.628500px;}
.y10f{bottom:212.613000px;}
.y238{bottom:216.000000px;}
.y20{bottom:216.360000px;}
.y139{bottom:218.847000px;}
.y1df{bottom:218.998500px;}
.y11c{bottom:219.444000px;}
.y13f{bottom:220.042500px;}
.y1d7{bottom:221.259000px;}
.y1f9{bottom:222.096000px;}
.y1a2{bottom:222.732000px;}
.y155{bottom:223.246500px;}
.yb1{bottom:223.314000px;}
.y1b6{bottom:225.561000px;}
.y10e{bottom:231.142500px;}
.y237{bottom:236.700000px;}
.y138{bottom:237.378000px;}
.y11b{bottom:237.975000px;}
.ye0{bottom:238.387500px;}
.y77{bottom:239.182500px;}
.y1f{bottom:240.480000px;}
.y154{bottom:241.179000px;}
.y13e{bottom:241.561500px;}
.y1b5{bottom:243.493500px;}
.y10d{bottom:249.673500px;}
.y1f8{bottom:254.827500px;}
.y137{bottom:255.907500px;}
.yb0{bottom:256.189500px;}
.ydf{bottom:256.320000px;}
.y74{bottom:256.815000px;}
.y236{bottom:257.400000px;}
.y153{bottom:259.113000px;}
.y11a{bottom:259.494000px;}
.y1b4{bottom:261.426000px;}
.y1e{bottom:264.600000px;}
.y10c{bottom:268.204500px;}
.y76{bottom:271.011000px;}
.yde{bottom:274.252500px;}
.y75{bottom:275.494500px;}
.y13d{bottom:277.045500px;}
.y136{bottom:277.426500px;}
.y235{bottom:278.100000px;}
.y1b3{bottom:279.360000px;}
.y10b{bottom:286.734000px;}
.yaf{bottom:289.066500px;}
.y1d6{bottom:289.620000px;}
.y1a1{bottom:291.091500px;}
.y72{bottom:291.609000px;}
.ydd{bottom:292.185000px;}
.y119{bottom:294.978000px;}
.y1b2{bottom:297.292500px;}
.y1f7{bottom:304.246500px;}
.y73{bottom:305.547000px;}
.yae{bottom:306.999000px;}
.y10a{bottom:308.254500px;}
.y6f{bottom:309.241500px;}
.y1d{bottom:312.840000px;}
.y118{bottom:312.910500px;}
.y1b1{bottom:315.225000px;}
.y234{bottom:315.360000px;}
.yd6{bottom:316.723500px;}
.yd7{bottom:317.394000px;}
.y1f6{bottom:322.179000px;}
.y1d5{bottom:322.413000px;}
.y71{bottom:323.437500px;}
.y1a0{bottom:323.886000px;}
.yad{bottom:324.933000px;}
.yd8{bottom:325.612500px;}
.yd5{bottom:327.760500px;}
.y70{bottom:327.921000px;}
.y117{bottom:330.843000px;}
.y233{bottom:332.640000px;}
.ydc{bottom:333.084000px;}
.yd4{bottom:334.894500px;}
.y192{bottom:337.132500px;}
.y1c{bottom:337.140000px;}
.y1f5{bottom:340.111500px;}
.y1d4{bottom:340.944000px;}
.y19f{bottom:342.417000px;}
.y1b0{bottom:342.808500px;}
.yac{bottom:342.865500px;}
.y6e{bottom:344.035500px;}
.ydb{bottom:345.952500px;}
.y116{bottom:348.775500px;}
.yda{bottom:349.689000px;}
.y232{bottom:349.920000px;}
.y1f4{bottom:358.045500px;}
.yd9{bottom:358.656000px;}
.y1d3{bottom:359.475000px;}
.yab{bottom:360.798000px;}
.y19e{bottom:360.946500px;}
.y1b{bottom:361.260000px;}
.y6b{bottom:361.668000px;}
.y115{bottom:366.709500px;}
.y231{bottom:367.020000px;}
.y191{bottom:369.927000px;}
.y109{bottom:373.708500px;}
.y6d{bottom:375.864000px;}
.y1f3{bottom:375.978000px;}
.y1d2{bottom:378.004500px;}
.yaa{bottom:378.730500px;}
.y19d{bottom:379.477500px;}
.y6c{bottom:380.347500px;}
.y1af{bottom:381.652500px;}
.y230{bottom:384.300000px;}
.y114{bottom:384.642000px;}
.y1a{bottom:385.380000px;}
.y190{bottom:388.458000px;}
.yd3{bottom:391.690500px;}
.y1f2{bottom:393.910500px;}
.y1d1{bottom:399.525000px;}
.y1ae{bottom:399.585000px;}
.y19c{bottom:400.996500px;}
.y22f{bottom:401.580000px;}
.y113{bottom:402.574500px;}
.y108{bottom:406.501500px;}
.y18f{bottom:406.987500px;}
.y6a{bottom:408.334500px;}
.y19{bottom:409.500000px;}
.yd2{bottom:409.623000px;}
.ya9{bottom:411.607500px;}
.y1f1{bottom:411.843000px;}
.y41{bottom:416.802000px;}
.y22e{bottom:418.860000px;}
.y107{bottom:425.032500px;}
.y69{bottom:426.267000px;}
.y1ad{bottom:427.170000px;}
.yd1{bottom:427.555500px;}
.y18e{bottom:428.506500px;}
.ya8{bottom:429.540000px;}
.y1f0{bottom:429.775500px;}
.y112{bottom:430.158000px;}
.y18{bottom:433.620000px;}
.y40{bottom:434.736000px;}
.y1d0{bottom:435.007500px;}
.y22d{bottom:436.140000px;}
.y19b{bottom:436.480500px;}
.y106{bottom:443.563500px;}
.ya7{bottom:447.472500px;}
.y1ef{bottom:447.708000px;}
.ycf{bottom:451.353000px;}
.y3f{bottom:452.668500px;}
.y1cf{bottom:452.940000px;}
.y22c{bottom:453.420000px;}
.y19a{bottom:454.413000px;}
.y1c5{bottom:454.806000px;}
.y170{bottom:454.849500px;}
.y17{bottom:457.740000px;}
.ycc{bottom:458.734500px;}
.y105{bottom:462.093000px;}
.ya6{bottom:465.405000px;}
.y1ee{bottom:465.642000px;}
.ycb{bottom:468.985500px;}
.y22b{bottom:470.520000px;}
.y3e{bottom:470.601000px;}
.y1ce{bottom:470.874000px;}
.y199{bottom:472.345500px;}
.yd0{bottom:472.720500px;}
.y111{bottom:472.738500px;}
.y16f{bottom:472.782000px;}
.y16e{bottom:475.761000px;}
.y68{bottom:476.122500px;}
.y104{bottom:480.624000px;}
.y16{bottom:482.940000px;}
.yce{bottom:483.181500px;}
.ya5{bottom:483.339000px;}
.y1ed{bottom:483.574500px;}
.ycd{bottom:487.665000px;}
.y22a{bottom:487.800000px;}
.y3d{bottom:488.533500px;}
.y1cd{bottom:488.806500px;}
.y198{bottom:490.278000px;}
.y18d{bottom:496.867500px;}
.ya4{bottom:501.271500px;}
.y1ec{bottom:501.507000px;}
.y103{bottom:502.143000px;}
.y229{bottom:505.080000px;}
.y197{bottom:508.212000px;}
.y16d{bottom:509.385000px;}
.y15{bottom:513.900000px;}
.y67{bottom:515.806500px;}
.y1cc{bottom:516.390000px;}
.ya3{bottom:519.204000px;}
.y1eb{bottom:519.439500px;}
.yca{bottom:520.377000px;}
.y3c{bottom:521.265000px;}
.y228{bottom:522.360000px;}
.y196{bottom:526.144500px;}
.y16c{bottom:527.916000px;}
.y18c{bottom:529.660500px;}
.y66{bottom:533.739000px;}
.ya2{bottom:537.136500px;}
.y1ea{bottom:537.372000px;}
.yc9{bottom:538.309500px;}
.y227{bottom:539.640000px;}
.y14{bottom:543.960000px;}
.y195{bottom:544.077000px;}
.y16b{bottom:546.445500px;}
.y18b{bottom:548.191500px;}
.y65{bottom:551.671500px;}
.ya1{bottom:555.069000px;}
.y1e9{bottom:555.306000px;}
.y1c4{bottom:555.694500px;}
.y226{bottom:556.920000px;}
.y1cb{bottom:558.970500px;}
.yc7{bottom:562.105500px;}
.y16a{bottom:564.976500px;}
.y18a{bottom:566.722500px;}
.y102{bottom:567.598500px;}
.y13{bottom:568.260000px;}
.yc4{bottom:569.487000px;}
.y3b{bottom:570.684000px;}
.y194{bottom:571.660500px;}
.ya0{bottom:573.001500px;}
.y1e8{bottom:573.238500px;}
.y225{bottom:574.020000px;}
.y1ca{bottom:576.903000px;}
.yc3{bottom:579.738000px;}
.yc8{bottom:583.474500px;}
.y169{bottom:583.507500px;}
.y64{bottom:584.548500px;}
.y189{bottom:588.241500px;}
.y1c3{bottom:588.489000px;}
.y3a{bottom:588.616500px;}
.y9f{bottom:590.935500px;}
.y1e7{bottom:591.171000px;}
.y224{bottom:591.300000px;}
.yc6{bottom:593.935500px;}
.yc5{bottom:598.417500px;}
.y101{bottom:600.391500px;}
.y63{bottom:602.481000px;}
.y168{bottom:605.026500px;}
.y39{bottom:606.549000px;}
.y1c2{bottom:607.018500px;}
.y223{bottom:608.580000px;}
.y9e{bottom:608.868000px;}
.y1e6{bottom:609.103500px;}
.y193{bottom:614.241000px;}
.y12{bottom:617.940000px;}
.y100{bottom:618.922500px;}
.y62{bottom:620.413500px;}
.y38{bottom:624.481500px;}
.y1c1{bottom:625.549500px;}
.y222{bottom:625.860000px;}
.y9d{bottom:626.800500px;}
.y1e5{bottom:627.036000px;}
.yc2{bottom:631.129500px;}
.yff{bottom:637.452000px;}
.y1c9{bottom:642.402000px;}
.y37{bottom:642.415500px;}
.y221{bottom:643.140000px;}
.y1c0{bottom:644.080500px;}
.y1e4{bottom:644.968500px;}
.y61{bottom:647.998500px;}
.y11{bottom:652.500000px;}
.yc1{bottom:654.096000px;}
.yfe{bottom:655.983000px;}
.y188{bottom:656.601000px;}
.y220{bottom:660.240000px;}
.y1c8{bottom:660.336000px;}
.y36{bottom:660.348000px;}
.ybe{bottom:661.477500px;}
.y9c{bottom:662.665500px;}
.y1bf{bottom:665.599500px;}
.ybd{bottom:671.728500px;}
.y167{bottom:674.217000px;}
.yfd{bottom:674.514000px;}
.y21f{bottom:677.520000px;}
.y1e3{bottom:677.700000px;}
.y35{bottom:678.280500px;}
.y152{bottom:678.367500px;}
.y9b{bottom:680.598000px;}
.y135{bottom:684.180000px;}
.y10{bottom:685.440000px;}
.yc0{bottom:685.924500px;}
.y187{bottom:689.395500px;}
.y60{bottom:689.830500px;}
.ybf{bottom:690.408000px;}
.y21e{bottom:694.800000px;}
.yfc{bottom:696.033000px;}
.y34{bottom:696.213000px;}
.y9a{bottom:698.532000px;}
.y1de{bottom:702.196500px;}
.y5f{bottom:707.763000px;}
.y166{bottom:707.841000px;}
.y186{bottom:707.926500px;}
.yf{bottom:709.560000px;}
.y151{bottom:711.162000px;}
.y21d{bottom:712.080000px;}
.y33{bottom:714.145500px;}
.y134{bottom:716.973000px;}
.y1dd{bottom:720.129000px;}
.ybc{bottom:723.120000px;}
.y165{bottom:726.372000px;}
.y185{bottom:726.456000px;}
.y21c{bottom:729.360000px;}
.y150{bottom:729.691500px;}
.y1e2{bottom:730.855500px;}
.y99{bottom:731.407500px;}
.y32{bottom:732.078000px;}
.ye{bottom:733.860000px;}
.y1be{bottom:733.959000px;}
.y133{bottom:735.504000px;}
.y5e{bottom:737.652000px;}
.y164{bottom:744.901500px;}
.y21b{bottom:746.640000px;}
.y184{bottom:747.975000px;}
.y14f{bottom:748.222500px;}
.y1e1{bottom:748.788000px;}
.ybb{bottom:749.316000px;}
.y98{bottom:749.341500px;}
.y31{bottom:750.012000px;}
.y132{bottom:754.033500px;}
.y5d{bottom:755.584500px;}
.y171{bottom:756.360000px;}
.yd{bottom:757.980000px;}
.yfb{bottom:761.487000px;}
.y163{bottom:763.432500px;}
.y21a{bottom:763.740000px;}
.y14e{bottom:766.753500px;}
.yba{bottom:767.248500px;}
.y97{bottom:767.274000px;}
.y30{bottom:767.944500px;}
.y131{bottom:772.564500px;}
.y5c{bottom:773.517000px;}
.y219{bottom:781.020000px;}
.y162{bottom:781.963500px;}
.yc{bottom:782.100000px;}
.y14d{bottom:785.283000px;}
.y2f{bottom:785.877000px;}
.y130{bottom:791.095500px;}
.yfa{bottom:794.281500px;}
.yb9{bottom:794.833500px;}
.y96{bottom:794.857500px;}
.y218{bottom:798.300000px;}
.y5b{bottom:803.404500px;}
.y161{bottom:803.482500px;}
.y1bd{bottom:803.814000px;}
.y14c{bottom:806.803500px;}
.y12f{bottom:812.614500px;}
.yf9{bottom:812.811000px;}
.y217{bottom:815.580000px;}
.y183{bottom:816.336000px;}
.y2e{bottom:818.608500px;}
.y5a{bottom:821.338500px;}
.y1bc{bottom:822.345000px;}
.yb8{bottom:822.417000px;}
.yb{bottom:830.340000px;}
.yf8{bottom:831.342000px;}
.y216{bottom:832.860000px;}
.y95{bottom:836.691000px;}
.y1bb{bottom:843.864000px;}
.y182{bottom:849.129000px;}
.yf7{bottom:849.873000px;}
.y215{bottom:850.140000px;}
.y59{bottom:851.226000px;}
.ya{bottom:854.460000px;}
.y94{bottom:854.623500px;}
.yb7{bottom:866.005500px;}
.y214{bottom:867.240000px;}
.y181{bottom:867.660000px;}
.y2d{bottom:868.027500px;}
.yf6{bottom:868.402500px;}
.y58{bottom:869.158500px;}
.y93{bottom:872.556000px;}
.y160{bottom:872.673000px;}
.y14b{bottom:875.163000px;}
.y12e{bottom:878.068500px;}
.y9{bottom:878.580000px;}
.y2c{bottom:884.466000px;}
.y213{bottom:884.520000px;}
.y180{bottom:886.191000px;}
.yf5{bottom:889.923000px;}
.y92{bottom:890.488500px;}
.yb4{bottom:898.882500px;}
.y57{bottom:899.046000px;}
.y2b{bottom:900.904500px;}
.y212{bottom:901.800000px;}
.y8{bottom:902.880000px;}
.y15f{bottom:906.297000px;}
.y17f{bottom:907.710000px;}
.y14a{bottom:907.957500px;}
.y91{bottom:908.421000px;}
.y12d{bottom:910.863000px;}
.y1ab{bottom:912.223500px;}
.y56{bottom:916.978500px;}
.y2a{bottom:917.341500px;}
.y211{bottom:919.080000px;}
.y7{bottom:921.960000px;}
.y15e{bottom:924.826500px;}
.yf4{bottom:925.405500px;}
.y149{bottom:926.487000px;}
.y12c{bottom:929.392500px;}
.y210{bottom:936.360000px;}
.y29{bottom:940.767000px;}
.y90{bottom:941.298000px;}
.y17e{bottom:943.194000px;}
.yf3{bottom:943.339500px;}
.y15d{bottom:943.357500px;}
.y148{bottom:945.018000px;}
.y12b{bottom:947.923500px;}
.y55{bottom:949.855500px;}
.y20f{bottom:953.640000px;}
.y8f{bottom:954.723000px;}
.y8e{bottom:959.230500px;}
.y17d{bottom:961.126500px;}
.yf2{bottom:961.272000px;}
.y15c{bottom:961.888500px;}
.y147{bottom:963.549000px;}
.y12a{bottom:966.454500px;}
.y54{bottom:967.788000px;}
.y20e{bottom:970.740000px;}
.y8d{bottom:975.171000px;}
.y17c{bottom:979.059000px;}
.yf1{bottom:979.204500px;}
.y8c{bottom:979.678500px;}
.y15b{bottom:980.418000px;}
.y146{bottom:982.078500px;}
.y129{bottom:984.984000px;}
.y53{bottom:985.722000px;}
.y20d{bottom:988.020000px;}
.y28{bottom:994.564500px;}
.y17b{bottom:996.991500px;}
.yf0{bottom:997.137000px;}
.y1aa{bottom:1000.609500px;}
.y15a{bottom:1001.938500px;}
.y145{bottom:1003.597500px;}
.y52{bottom:1003.654500px;}
.y20c{bottom:1005.300000px;}
.y128{bottom:1006.504500px;}
.y89{bottom:1012.057500px;}
.y17a{bottom:1014.924000px;}
.yef{bottom:1015.069500px;}
.y51{bottom:1021.587000px;}
.y1a9{bottom:1022.128500px;}
.y20b{bottom:1022.580000px;}
.y8b{bottom:1025.814000px;}
.y8a{bottom:1029.508500px;}
.y27{bottom:1029.733500px;}
.y179{bottom:1032.856500px;}
.y50{bottom:1039.519500px;}
.y20a{bottom:1039.860000px;}
.yee{bottom:1042.654500px;}
.y88{bottom:1043.706000px;}
.y87{bottom:1048.189500px;}
.y26{bottom:1050.655500px;}
.y178{bottom:1050.790500px;}
.y203{bottom:1055.137500px;}
.y209{bottom:1056.960000px;}
.y4f{bottom:1057.452000px;}
.y83{bottom:1064.304000px;}
.yed{bottom:1070.238000px;}
.y159{bottom:1071.129000px;}
.y25{bottom:1071.576000px;}
.y127{bottom:1071.958500px;}
.y202{bottom:1073.071500px;}
.y208{bottom:1074.240000px;}
.y4e{bottom:1075.384500px;}
.y85{bottom:1077.589500px;}
.y86{bottom:1078.060500px;}
.y177{bottom:1078.374000px;}
.y84{bottom:1081.755000px;}
.y1a8{bottom:1090.489500px;}
.y207{bottom:1091.520000px;}
.y24{bottom:1092.498000px;}
.y82{bottom:1095.951000px;}
.y6{bottom:1098.000000px;}
.y81{bottom:1100.434500px;}
.y201{bottom:1102.959000px;}
.y4d{bottom:1102.969500px;}
.y126{bottom:1104.751500px;}
.y206{bottom:1108.800000px;}
.yec{bottom:1112.070000px;}
.y7f{bottom:1116.549000px;}
.y176{bottom:1117.218000px;}
.y5{bottom:1120.860000px;}
.y200{bottom:1120.891500px;}
.y125{bottom:1123.282500px;}
.y205{bottom:1126.080000px;}
.yeb{bottom:1130.004000px;}
.y80{bottom:1130.016000px;}
.y7c{bottom:1134.000000px;}
.y175{bottom:1135.150500px;}
.y23{bottom:1135.836000px;}
.y4{bottom:1138.140000px;}
.y124{bottom:1141.813500px;}
.y204{bottom:1143.360000px;}
.y4c{bottom:1144.801500px;}
.yea{bottom:1147.936500px;}
.y7e{bottom:1148.197500px;}
.y1ff{bottom:1150.779000px;}
.y7d{bottom:1152.681000px;}
.y174{bottom:1153.083000px;}
.y3{bottom:1155.420000px;}
.y123{bottom:1160.343000px;}
.y4b{bottom:1162.734000px;}
.ye9{bottom:1165.869000px;}
.y173{bottom:1171.015500px;}
.y2{bottom:1172.880000px;}
.y122{bottom:1178.874000px;}
.y4a{bottom:1180.668000px;}
.y1{bottom:1191.600000px;}
.y49{bottom:1198.600500px;}
.y121{bottom:1200.393000px;}
.h12{height:1.255338px;}
.h39{height:14.680176px;}
.h1a{height:29.458176px;}
.h2f{height:29.887500px;}
.h32{height:29.893500px;}
.h11{height:31.383000px;}
.h2e{height:37.117338px;}
.h31{height:37.123338px;}
.h28{height:37.480806px;}
.ha{height:37.657200px;}
.hb{height:37.926180px;}
.h15{height:42.801048px;}
.hd{height:44.833500px;}
.h17{height:45.080796px;}
.h18{height:48.068796px;}
.h19{height:48.074796px;}
.he{height:50.211000px;}
.h2d{height:52.063338px;}
.h9{height:53.797500px;}
.h1b{height:56.026176px;}
.h14{height:56.061000px;}
.h23{height:56.067000px;}
.h26{height:58.186176px;}
.h1{height:58.651172px;}
.h16{height:59.611500px;}
.h1e{height:60.105000px;}
.hc{height:60.253200px;}
.h37{height:62.500176px;}
.h22{height:62.846796px;}
.h27{height:62.863500px;}
.h1d{height:64.010796px;}
.h20{height:64.730796px;}
.h2{height:65.010937px;}
.h10{height:68.146176px;}
.h25{height:69.075000px;}
.h35{height:69.997338px;}
.h3a{height:70.664062px;}
.h21{height:70.839000px;}
.h24{height:70.845000px;}
.h1c{height:71.962176px;}
.h8{height:72.509580px;}
.h2a{height:75.849976px;}
.h1f{height:76.767000px;}
.h34{height:80.122176px;}
.hf{height:82.615338px;}
.h3{height:82.676953px;}
.h33{height:83.241048px;}
.h2b{height:85.267500px;}
.h2c{height:85.273500px;}
.h38{height:87.931338px;}
.h6{height:108.843750px;}
.h5{height:117.950273px;}
.h4{height:121.179375px;}
.h30{height:122.593338px;}
.h36{height:132.163338px;}
.h13{height:153.145338px;}
.h29{height:314.663880px;}
.h7{height:1262.835000px;}
.h0{height:1263.000000px;}
.w3{width:314.663880px;}
.w0{width:892.500000px;}
.w1{width:892.914000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:42.602019px;}
.x10{left:65.481000px;}
.x99{left:74.904000px;}
.x1{left:82.800000px;}
.x11{left:87.895500px;}
.x4{left:93.240000px;}
.xf{left:102.840000px;}
.x40{left:109.798500px;}
.x97{left:117.348000px;}
.x96{left:119.631000px;}
.xe{left:123.574500px;}
.x98{left:125.028000px;}
.x9a{left:127.620000px;}
.x12{left:130.102500px;}
.x80{left:136.039500px;}
.x7f{left:141.643500px;}
.x81{left:143.074500px;}
.x82{left:153.183000px;}
.x3f{left:154.257000px;}
.x7e{left:155.403000px;}
.x75{left:160.519500px;}
.x9{left:162.025500px;}
.x42{left:173.768269px;}
.x70{left:178.162500px;}
.x8f{left:182.749500px;}
.x8d{left:188.353500px;}
.x8e{left:190.429500px;}
.x6c{left:197.797500px;}
.x5{left:199.440000px;}
.x7c{left:210.457500px;}
.x79{left:217.909500px;}
.x9b{left:222.660000px;}
.x2d{left:227.097000px;}
.x2c{left:232.596000px;}
.x2e{left:234.912000px;}
.x39{left:240.516000px;}
.x14{left:243.289500px;}
.x38{left:246.015000px;}
.x3a{left:248.331000px;}
.x2f{left:251.173500px;}
.x6e{left:252.871500px;}
.x8{left:255.531000px;}
.x74{left:259.036500px;}
.x3b{left:264.592500px;}
.x69{left:267.307500px;}
.x71{left:268.366500px;}
.x73{left:269.901000px;}
.x6b{left:272.392500px;}
.x44{left:274.623000px;}
.x72{left:275.920500px;}
.x5f{left:278.380500px;}
.x62{left:279.916500px;}
.x6a{left:281.317500px;}
.x63{left:282.625500px;}
.xb{left:284.704500px;}
.x61{left:285.936000px;}
.x30{left:287.826000px;}
.x60{left:288.841500px;}
.x67{left:290.097000px;}
.x7d{left:292.203000px;}
.x66{left:293.407500px;}
.x92{left:294.528000px;}
.x65{left:296.313000px;}
.xa{left:298.834500px;}
.x6f{left:300.277500px;}
.x41{left:301.467000px;}
.x23{left:304.656000px;}
.x8a{left:306.546000px;}
.x8c{left:307.977000px;}
.x6d{left:310.675500px;}
.x90{left:311.787000px;}
.x15{left:312.921000px;}
.x95{left:314.775000px;}
.x91{left:316.030500px;}
.x3c{left:319.410000px;}
.x94{left:320.794500px;}
.x17{left:322.734000px;}
.x93{left:326.814000px;}
.x68{left:327.924000px;}
.x7b{left:329.169000px;}
.x78{left:331.017000px;}
.x77{left:336.621000px;}
.x64{left:337.990500px;}
.x7a{left:339.235500px;}
.x8b{left:342.016500px;}
.x83{left:343.999500px;}
.x85{left:345.535500px;}
.x76{left:346.687500px;}
.x86{left:348.243000px;}
.x88{left:350.515500px;}
.x89{left:353.224500px;}
.x84{left:354.460500px;}
.x20{left:357.096000px;}
.x87{left:359.440500px;}
.x25{left:365.629500px;}
.x1c{left:368.443500px;}
.x49{left:369.880500px;}
.x31{left:372.442500px;}
.x18{left:374.785500px;}
.x19{left:376.933500px;}
.x1a{left:378.048000px;}
.x1d{left:382.683000px;}
.x21{left:383.997000px;}
.xc{left:385.627500px;}
.x22{left:387.259500px;}
.x7{left:395.640000px;}
.x56{left:400.065000px;}
.x55{left:402.381000px;}
.x24{left:403.773000px;}
.x45{left:417.790500px;}
.x6{left:419.040000px;}
.x1b{left:420.739500px;}
.xd{left:428.346000px;}
.x1e{left:431.128500px;}
.x4a{left:432.658500px;}
.x47{left:444.765000px;}
.x48{left:445.879500px;}
.x46{left:450.265500px;}
.x4c{left:451.692000px;}
.x57{left:453.307500px;}
.x13{left:455.052000px;}
.x4b{left:456.078000px;}
.x33{left:460.879500px;}
.x3{left:463.680000px;}
.x32{left:466.378500px;}
.x34{left:468.694500px;}
.x4d{left:472.164000px;}
.x51{left:474.138000px;}
.x52{left:475.251000px;}
.x4e{left:477.976500px;}
.x50{left:479.637000px;}
.x35{left:484.956000px;}
.x27{left:487.239000px;}
.x26{left:492.739500px;}
.x28{left:495.054000px;}
.x53{left:498.214500px;}
.x4f{left:499.863000px;}
.x16{left:508.296000px;}
.x29{left:511.315500px;}
.x36{left:521.608500px;}
.x3d{left:525.858000px;}
.x58{left:529.630500px;}
.x2a{left:545.820000px;}
.x59{left:553.707000px;}
.x2{left:555.120000px;}
.x5b{left:561.330000px;}
.x1f{left:570.768000px;}
.x54{left:574.573500px;}
.x5c{left:583.927500px;}
.x37{left:607.869000px;}
.x3e{left:610.359000px;}
.x2b{left:618.900000px;}
.x5d{left:628.437000px;}
.x5a{left:644.361000px;}
.x5e{left:832.999500px;}
@media print{
.v2{vertical-align:-90.880000pt;}
.v3{vertical-align:-87.040000pt;}
.v1{vertical-align:-85.760000pt;}
.v23{vertical-align:-61.440000pt;}
.v6{vertical-align:-48.416000pt;}
.v1b{vertical-align:-21.253333pt;}
.v1a{vertical-align:-13.285333pt;}
.v4{vertical-align:-7.968000pt;}
.v13{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v21{vertical-align:7.973333pt;}
.vb{vertical-align:13.136000pt;}
.va{vertical-align:14.282667pt;}
.v18{vertical-align:16.026667pt;}
.ve{vertical-align:18.304000pt;}
.vc{vertical-align:19.280000pt;}
.v17{vertical-align:20.224000pt;}
.v7{vertical-align:21.936000pt;}
.vd{vertical-align:23.616000pt;}
.v12{vertical-align:25.530667pt;}
.v16{vertical-align:28.192000pt;}
.v15{vertical-align:29.760000pt;}
.v10{vertical-align:32.469333pt;}
.v8{vertical-align:34.389333pt;}
.v11{vertical-align:36.106667pt;}
.vf{vertical-align:37.781333pt;}
.v14{vertical-align:40.341333pt;}
.v20{vertical-align:42.506667pt;}
.v19{vertical-align:45.162667pt;}
.v1d{vertical-align:58.170667pt;}
.v1e{vertical-align:61.104000pt;}
.v22{vertical-align:69.072000pt;}
.v5{vertical-align:72.320000pt;}
.v1c{vertical-align:107.856000pt;}
.v1f{vertical-align:116.362667pt;}
.v9{vertical-align:135.013333pt;}
.lsc{letter-spacing:-0.378133pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.133867pt;}
.ls14{letter-spacing:-0.124800pt;}
.ls10{letter-spacing:-0.120533pt;}
.ls19{letter-spacing:-0.093333pt;}
.ls13{letter-spacing:-0.072000pt;}
.ls18{letter-spacing:-0.070400pt;}
.ls12{letter-spacing:-0.068800pt;}
.lse{letter-spacing:-0.045867pt;}
.ls1b{letter-spacing:-0.043200pt;}
.ls6d{letter-spacing:-0.041067pt;}
.ls15{letter-spacing:-0.035200pt;}
.ls6e{letter-spacing:-0.033600pt;}
.ls1a{letter-spacing:-0.009067pt;}
.lsb{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.000667pt;}
.ls48{letter-spacing:0.001131pt;}
.ls45{letter-spacing:0.002592pt;}
.ls22{letter-spacing:0.002667pt;}
.ls38{letter-spacing:0.002688pt;}
.ls2a{letter-spacing:0.006997pt;}
.ls35{letter-spacing:0.008021pt;}
.ls8{letter-spacing:0.009067pt;}
.ls67{letter-spacing:0.012331pt;}
.ls4f{letter-spacing:0.013712pt;}
.ls4e{letter-spacing:0.014901pt;}
.ls25{letter-spacing:0.015045pt;}
.ls4d{letter-spacing:0.019045pt;}
.ls50{letter-spacing:0.020235pt;}
.ls39{letter-spacing:0.020379pt;}
.ls6{letter-spacing:0.021333pt;}
.ls4c{letter-spacing:0.021408pt;}
.ls5a{letter-spacing:0.022011pt;}
.ls4{letter-spacing:0.023680pt;}
.ls46{letter-spacing:0.026741pt;}
.lsa{letter-spacing:0.027733pt;}
.ls16{letter-spacing:0.033067pt;}
.ls6c{letter-spacing:0.038400pt;}
.ls9{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.054400pt;}
.lsf{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls24{letter-spacing:1.470059pt;}
.ls44{letter-spacing:1.920693pt;}
.ls61{letter-spacing:2.658688pt;}
.ls1f{letter-spacing:2.664021pt;}
.ls3e{letter-spacing:2.669621pt;}
.ls2b{letter-spacing:2.670901pt;}
.ls40{letter-spacing:2.674955pt;}
.ls26{letter-spacing:2.676235pt;}
.ls33{letter-spacing:3.068299pt;}
.ls29{letter-spacing:3.073632pt;}
.ls3d{letter-spacing:3.783760pt;}
.ls34{letter-spacing:3.981493pt;}
.ls37{letter-spacing:3.986827pt;}
.ls47{letter-spacing:4.145493pt;}
.ls68{letter-spacing:5.817125pt;}
.ls3f{letter-spacing:7.402283pt;}
.ls59{letter-spacing:8.142859pt;}
.ls31{letter-spacing:8.365600pt;}
.ls21{letter-spacing:8.844192pt;}
.ls58{letter-spacing:9.226805pt;}
.ls2e{letter-spacing:11.782208pt;}
.ls62{letter-spacing:11.784384pt;}
.ls2d{letter-spacing:11.790859pt;}
.ls4b{letter-spacing:11.793525pt;}
.ls2f{letter-spacing:11.796192pt;}
.ls51{letter-spacing:11.798859pt;}
.ls36{letter-spacing:11.799429pt;}
.ls2c{letter-spacing:11.804763pt;}
.ls30{letter-spacing:12.637093pt;}
.ls5c{letter-spacing:12.874805pt;}
.ls3c{letter-spacing:14.472021pt;}
.ls43{letter-spacing:14.477621pt;}
.ls52{letter-spacing:14.742859pt;}
.ls20{letter-spacing:14.745525pt;}
.ls54{letter-spacing:14.748763pt;}
.ls53{letter-spacing:14.754096pt;}
.ls3b{letter-spacing:14.760000pt;}
.ls42{letter-spacing:14.769664pt;}
.ls57{letter-spacing:15.885333pt;}
.ls23{letter-spacing:16.264000pt;}
.ls5b{letter-spacing:17.474667pt;}
.ls32{letter-spacing:17.718997pt;}
.ls3a{letter-spacing:18.445355pt;}
.ls65{letter-spacing:19.213493pt;}
.ls7{letter-spacing:19.840000pt;}
.ls5d{letter-spacing:20.370688pt;}
.ls27{letter-spacing:20.382901pt;}
.ls66{letter-spacing:21.118859pt;}
.ls28{letter-spacing:21.495760pt;}
.ls5f{letter-spacing:21.609525pt;}
.ls1e{letter-spacing:21.766997pt;}
.ls41{letter-spacing:25.114283pt;}
.ls1c{letter-spacing:26.562667pt;}
.ls1d{letter-spacing:26.568000pt;}
.ls49{letter-spacing:27.113568pt;}
.ls4a{letter-spacing:27.118901pt;}
.ls5e{letter-spacing:27.896400pt;}
.ls60{letter-spacing:32.084192pt;}
.ls69{letter-spacing:32.204192pt;}
.ls56{letter-spacing:47.806837pt;}
.ls64{letter-spacing:101.849525pt;}
.ls0{letter-spacing:175.360000pt;}
.ls5{letter-spacing:222.720000pt;}
.ls55{letter-spacing:480.166859pt;}
.ls63{letter-spacing:889.304384pt;}
.ls6b{letter-spacing:1120.000000pt;}
.ls3{letter-spacing:1335.680000pt;}
.ws4e{word-spacing:-34.591536pt;}
.ws6d{word-spacing:-27.949536pt;}
.ws4f{word-spacing:-25.770960pt;}
.ws5d{word-spacing:-25.717824pt;}
.ws7d{word-spacing:-22.795344pt;}
.ws53{word-spacing:-22.786715pt;}
.ws81{word-spacing:-22.742208pt;}
.ws61{word-spacing:-19.846011pt;}
.ws60{word-spacing:-19.840677pt;}
.ws64{word-spacing:-18.689301pt;}
.ws4{word-spacing:-18.651200pt;}
.ws65{word-spacing:-16.870635pt;}
.ws79{word-spacing:-16.780709pt;}
.ws76{word-spacing:-16.747669pt;}
.ws11f{word-spacing:-16.038400pt;}
.ws2{word-spacing:-14.953067pt;}
.ws1{word-spacing:-14.774400pt;}
.ws0{word-spacing:-14.341867pt;}
.ws3{word-spacing:-13.510933pt;}
.ws15{word-spacing:-0.310933pt;}
.ws16{word-spacing:-0.297067pt;}
.ws17{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.193067pt;}
.ws18{word-spacing:-0.187733pt;}
.ws13{word-spacing:-0.169600pt;}
.ws9{word-spacing:-0.160000pt;}
.wsf{word-spacing:-0.124800pt;}
.ws19{word-spacing:-0.116800pt;}
.wsc{word-spacing:-0.091200pt;}
.wsd{word-spacing:-0.088000pt;}
.ws11a{word-spacing:-0.076512pt;}
.ws14{word-spacing:-0.066667pt;}
.ws46{word-spacing:-0.053136pt;}
.ws1d{word-spacing:-0.047819pt;}
.ws55{word-spacing:-0.037195pt;}
.wse{word-spacing:-0.035200pt;}
.ws7{word-spacing:0.000000pt;}
.ws6{word-spacing:0.032000pt;}
.wsa{word-spacing:0.067200pt;}
.ws122{word-spacing:0.068800pt;}
.ws121{word-spacing:0.102933pt;}
.ws8{word-spacing:0.147733pt;}
.ws5{word-spacing:0.160000pt;}
.ws123{word-spacing:0.246933pt;}
.ws120{word-spacing:0.254400pt;}
.wsb{word-spacing:0.293867pt;}
.ws11{word-spacing:0.298667pt;}
.ws12{word-spacing:0.320000pt;}
.ws82{word-spacing:11.491317pt;}
.wsd4{word-spacing:12.752640pt;}
.ws7e{word-spacing:12.792651pt;}
.ws40{word-spacing:13.230864pt;}
.ws11c{word-spacing:13.337136pt;}
.ws10f{word-spacing:14.452992pt;}
.ws5c{word-spacing:14.665536pt;}
.ws52{word-spacing:14.674677pt;}
.ws32{word-spacing:14.718672pt;}
.ws119{word-spacing:14.771808pt;}
.ws109{word-spacing:14.824944pt;}
.wscd{word-spacing:14.878080pt;}
.ws3b{word-spacing:14.984352pt;}
.ws110{word-spacing:15.037488pt;}
.ws35{word-spacing:15.250032pt;}
.wsd6{word-spacing:15.356304pt;}
.ws89{word-spacing:15.462576pt;}
.ws8e{word-spacing:15.515712pt;}
.ws113{word-spacing:15.568848pt;}
.ws11b{word-spacing:15.675120pt;}
.wsde{word-spacing:15.728256pt;}
.ws1f{word-spacing:15.780160pt;}
.ws118{word-spacing:15.781392pt;}
.ws63{word-spacing:15.834528pt;}
.ws62{word-spacing:15.848976pt;}
.ws3d{word-spacing:15.887664pt;}
.ws117{word-spacing:15.940800pt;}
.ws34{word-spacing:15.993936pt;}
.wse0{word-spacing:16.100208pt;}
.ws2f{word-spacing:16.206480pt;}
.ws104{word-spacing:16.312752pt;}
.ws21{word-spacing:16.353984pt;}
.ws2a{word-spacing:16.419024pt;}
.ws80{word-spacing:16.472160pt;}
.ws20{word-spacing:16.545259pt;}
.ws3f{word-spacing:16.578432pt;}
.ws6f{word-spacing:16.737840pt;}
.ws108{word-spacing:16.844112pt;}
.ws2e{word-spacing:16.897248pt;}
.ws2c{word-spacing:16.950384pt;}
.ws26{word-spacing:17.109792pt;}
.wsad{word-spacing:17.162928pt;}
.ws24{word-spacing:17.375472pt;}
.ws5b{word-spacing:17.428608pt;}
.ws36{word-spacing:17.481744pt;}
.ws50{word-spacing:17.588016pt;}
.ws51{word-spacing:17.608965pt;}
.ws28{word-spacing:17.641152pt;}
.ws2d{word-spacing:17.694288pt;}
.ws107{word-spacing:17.747424pt;}
.ws111{word-spacing:17.853696pt;}
.ws116{word-spacing:17.959968pt;}
.ws6a{word-spacing:18.013104pt;}
.wsd7{word-spacing:18.066240pt;}
.ws88{word-spacing:18.119376pt;}
.ws67{word-spacing:18.172512pt;}
.ws7c{word-spacing:18.278784pt;}
.ws3a{word-spacing:18.331920pt;}
.ws86{word-spacing:18.438192pt;}
.wse6{word-spacing:18.491328pt;}
.wsae{word-spacing:18.544464pt;}
.ws77{word-spacing:18.634528pt;}
.ws27{word-spacing:18.650736pt;}
.ws83{word-spacing:18.671723pt;}
.wscc{word-spacing:18.703872pt;}
.ws6b{word-spacing:18.757008pt;}
.wsdd{word-spacing:18.810144pt;}
.ws8d{word-spacing:18.863280pt;}
.ws3c{word-spacing:18.916416pt;}
.wsdb{word-spacing:18.969552pt;}
.ws87{word-spacing:19.022688pt;}
.ws3e{word-spacing:19.128960pt;}
.ws25{word-spacing:19.235232pt;}
.ws7f{word-spacing:19.288368pt;}
.wsda{word-spacing:19.394640pt;}
.wsb0{word-spacing:19.447776pt;}
.ws106{word-spacing:19.500912pt;}
.ws30{word-spacing:19.607184pt;}
.ws10e{word-spacing:19.660320pt;}
.ws6e{word-spacing:19.713456pt;}
.ws71{word-spacing:19.766592pt;}
.ws48{word-spacing:19.819728pt;}
.ws115{word-spacing:19.872864pt;}
.ws43{word-spacing:19.926000pt;}
.ws44{word-spacing:19.971984pt;}
.ws45{word-spacing:19.979136pt;}
.ws23{word-spacing:20.085408pt;}
.wsaf{word-spacing:20.138544pt;}
.ws69{word-spacing:20.244816pt;}
.ws74{word-spacing:20.297952pt;}
.ws68{word-spacing:20.351088pt;}
.ws56{word-spacing:20.429984pt;}
.ws57{word-spacing:20.435317pt;}
.ws33{word-spacing:20.510496pt;}
.ws38{word-spacing:20.563632pt;}
.ws1b{word-spacing:20.722000pt;}
.ws1c{word-spacing:20.785760pt;}
.wse7{word-spacing:20.829312pt;}
.ws8a{word-spacing:20.882448pt;}
.ws7b{word-spacing:21.041856pt;}
.ws31{word-spacing:21.094992pt;}
.ws72{word-spacing:21.254400pt;}
.wsd5{word-spacing:21.307536pt;}
.ws2b{word-spacing:21.360672pt;}
.ws37{word-spacing:21.466944pt;}
.ws112{word-spacing:21.573216pt;}
.ws4c{word-spacing:21.679488pt;}
.ws4d{word-spacing:21.732624pt;}
.ws84{word-spacing:21.920011pt;}
.ws85{word-spacing:21.945168pt;}
.ws1e{word-spacing:22.092224pt;}
.wsdf{word-spacing:22.157712pt;}
.ws114{word-spacing:22.210848pt;}
.ws4a{word-spacing:22.317120pt;}
.ws66{word-spacing:22.451563pt;}
.ws5f{word-spacing:22.529664pt;}
.ws70{word-spacing:22.689072pt;}
.ws59{word-spacing:22.731259pt;}
.ws5a{word-spacing:22.742208pt;}
.ws47{word-spacing:22.848480pt;}
.ws8c{word-spacing:22.954752pt;}
.ws105{word-spacing:23.007888pt;}
.wsdc{word-spacing:23.061024pt;}
.ws75{word-spacing:23.486112pt;}
.wsd8{word-spacing:23.751792pt;}
.ws39{word-spacing:23.782480pt;}
.ws49{word-spacing:23.846240pt;}
.ws73{word-spacing:23.910000pt;}
.wscb{word-spacing:23.964336pt;}
.ws8b{word-spacing:24.123744pt;}
.ws29{word-spacing:24.548832pt;}
.ws11d{word-spacing:24.867648pt;}
.ws4b{word-spacing:24.920784pt;}
.ws11e{word-spacing:25.399008pt;}
.ws42{word-spacing:25.664688pt;}
.ws1a{word-spacing:27.635813pt;}
.ws6c{word-spacing:27.843264pt;}
.ws41{word-spacing:29.543616pt;}
.wsc1{word-spacing:63.687056pt;}
.ws9a{word-spacing:63.689723pt;}
.wsa6{word-spacing:63.692389pt;}
.ws93{word-spacing:63.695056pt;}
.ws91{word-spacing:63.707435pt;}
.wsc9{word-spacing:63.717680pt;}
.ws98{word-spacing:63.721413pt;}
.ws9f{word-spacing:63.723013pt;}
.wsc2{word-spacing:63.908080pt;}
.wsbd{word-spacing:68.134101pt;}
.wsea{word-spacing:69.208581pt;}
.ws95{word-spacing:72.543056pt;}
.wsd2{word-spacing:72.548389pt;}
.wsbb{word-spacing:72.566101pt;}
.ws90{word-spacing:76.789675pt;}
.wscf{word-spacing:76.795008pt;}
.wsf5{word-spacing:76.969723pt;}
.wsab{word-spacing:76.975056pt;}
.wsba{word-spacing:76.976341pt;}
.ws8f{word-spacing:77.180096pt;}
.wsce{word-spacing:77.233232pt;}
.wsb9{word-spacing:77.414565pt;}
.ws10a{word-spacing:78.067248pt;}
.wseb{word-spacing:78.764011pt;}
.wsb1{word-spacing:81.401723pt;}
.wsec{word-spacing:85.117915pt;}
.ws22{word-spacing:85.922976pt;}
.ws96{word-spacing:86.963248pt;}
.wsfb{word-spacing:87.622677pt;}
.wsc4{word-spacing:90.255056pt;}
.wsa8{word-spacing:90.260389pt;}
.wsc0{word-spacing:92.273344pt;}
.wsf8{word-spacing:93.971248pt;}
.wse8{word-spacing:93.976581pt;}
.wsb2{word-spacing:95.816581pt;}
.wsbf{word-spacing:96.003248pt;}
.wsb3{word-spacing:96.513344pt;}
.wsfa{word-spacing:99.444395pt;}
.wse1{word-spacing:102.982459pt;}
.ws99{word-spacing:105.312341pt;}
.ws97{word-spacing:105.366677pt;}
.wsd3{word-spacing:105.372011pt;}
.wsc3{word-spacing:105.499008pt;}
.wsd9{word-spacing:108.335061pt;}
.wse9{word-spacing:109.725163pt;}
.wsf9{word-spacing:109.730496pt;}
.wsfe{word-spacing:111.240581pt;}
.wsee{word-spacing:111.245915pt;}
.wsf3{word-spacing:111.683248pt;}
.ws94{word-spacing:117.188395pt;}
.wsd1{word-spacing:117.193728pt;}
.wsbe{word-spacing:117.375061pt;}
.wsc8{word-spacing:120.790677pt;}
.wsef{word-spacing:120.796011pt;}
.ws9d{word-spacing:124.339248pt;}
.wsc7{word-spacing:124.525915pt;}
.ws92{word-spacing:127.474496pt;}
.wsd0{word-spacing:127.479829pt;}
.wsbc{word-spacing:127.661163pt;}
.wsa0{word-spacing:129.221675pt;}
.wse2{word-spacing:131.505125pt;}
.wsfd{word-spacing:132.612395pt;}
.ws9e{word-spacing:133.889344pt;}
.wsf1{word-spacing:135.149915pt;}
.wsfc{word-spacing:142.898496pt;}
.wsed{word-spacing:142.903829pt;}
.ws101{word-spacing:144.700011pt;}
.wsf2{word-spacing:144.705344pt;}
.ws9c{word-spacing:145.711061pt;}
.wsc6{word-spacing:145.897728pt;}
.wsa3{word-spacing:148.248581pt;}
.wsb4{word-spacing:153.979008pt;}
.wsa5{word-spacing:154.165675pt;}
.wse3{word-spacing:155.414459pt;}
.ws9b{word-spacing:155.997163pt;}
.wsc5{word-spacing:156.183829pt;}
.ws100{word-spacing:156.521728pt;}
.wsa4{word-spacing:157.798677pt;}
.wsaa{word-spacing:159.907248pt;}
.ws10c{word-spacing:159.912581pt;}
.wsff{word-spacing:166.807829pt;}
.wsf0{word-spacing:166.813163pt;}
.wsac{word-spacing:169.457344pt;}
.ws10d{word-spacing:169.462677pt;}
.wsa2{word-spacing:169.620395pt;}
.wsb7{word-spacing:173.005915pt;}
.wsca{word-spacing:173.192581pt;}
.wsa1{word-spacing:179.906496pt;}
.wse4{word-spacing:180.363792pt;}
.ws10b{word-spacing:181.284395pt;}
.wsb8{word-spacing:182.556011pt;}
.wse5{word-spacing:191.565163pt;}
.wsb6{word-spacing:194.377728pt;}
.wsa9{word-spacing:194.564395pt;}
.wsb5{word-spacing:204.663829pt;}
.wsa7{word-spacing:204.850496pt;}
.wsf7{word-spacing:275.212011pt;}
.wsf6{word-spacing:278.941915pt;}
.ws103{word-spacing:278.947248pt;}
.ws102{word-spacing:300.319061pt;}
.wsf4{word-spacing:310.605163pt;}
.ws54{word-spacing:396.887952pt;}
.ws5e{word-spacing:615.081899pt;}
.ws58{word-spacing:785.623952pt;}
.ws7a{word-spacing:881.526240pt;}
.ws78{word-spacing:895.872960pt;}
._3{margin-left:-32.886960pt;}
._6{margin-left:-31.306160pt;}
._1c{margin-left:-27.896400pt;}
._42{margin-left:-26.461728pt;}
._41{margin-left:-25.421739pt;}
._5{margin-left:-24.292560pt;}
._43{margin-left:-20.418896pt;}
._4{margin-left:-6.949840pt;}
._7{margin-left:-5.164560pt;}
._2{margin-left:-3.443040pt;}
._0{margin-left:-1.920000pt;}
._9{margin-left:-1.015664pt;}
._1{width:1.644560pt;}
._b{width:3.306741pt;}
._1e{width:5.791824pt;}
._1a{width:13.146144pt;}
._c{width:14.915205pt;}
._14{width:15.887664pt;}
._d{width:17.516139pt;}
._16{width:18.611808pt;}
._1b{width:19.635963pt;}
._40{width:21.094992pt;}
._13{width:22.051440pt;}
._a{width:23.044379pt;}
._f{width:24.297360pt;}
._1f{width:25.415872pt;}
._10{width:26.461728pt;}
._8{width:27.735600pt;}
._32{width:28.659824pt;}
._11{width:30.144976pt;}
._e{width:31.420240pt;}
._18{width:32.366928pt;}
._12{width:34.073360pt;}
._19{width:35.876197pt;}
._37{width:37.647680pt;}
._3f{width:39.168336pt;}
._17{width:40.076971pt;}
._34{width:42.465424pt;}
._1d{width:61.159536pt;}
._2c{width:64.061003pt;}
._28{width:67.947435pt;}
._15{width:71.666240pt;}
._26{width:72.596192pt;}
._3a{width:76.161125pt;}
._24{width:77.061173pt;}
._27{width:81.454859pt;}
._25{width:85.700192pt;}
._3c{width:89.627792pt;}
._31{width:90.533173pt;}
._23{width:93.971248pt;}
._2b{width:96.910864pt;}
._29{width:101.563792pt;}
._36{width:102.829915pt;}
._22{width:105.769531pt;}
._3b{width:106.753200pt;}
._20{width:110.475595pt;}
._30{width:111.683248pt;}
._2d{width:115.035792pt;}
._33{width:120.541915pt;}
._2f{width:123.481531pt;}
._39{width:124.908965pt;}
._2a{width:128.604965pt;}
._38{width:131.671429pt;}
._3e{width:133.767632pt;}
._35{width:137.452965pt;}
._3d{width:141.157360pt;}
._21{width:146.311632pt;}
._2e{width:155.164965pt;}
.fsb{font-size:26.565333pt;}
.fsa{font-size:37.194667pt;}
.fs7{font-size:47.818667pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:53.136000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:63.760000pt;}
.fsd{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs8{font-size:76.512000pt;}
.fs5{font-size:91.813333pt;}
.fs4{font-size:96.000000pt;}
.fsc{font-size:98.714789pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:18.382667pt;}
.yb5{bottom:37.755347pt;}
.ye8{bottom:58.233333pt;}
.ye7{bottom:74.173333pt;}
.y1c7{bottom:76.036000pt;}
.y47{bottom:78.354667pt;}
.y1fe{bottom:85.837333pt;}
.y172{bottom:88.638667pt;}
.ye6{bottom:90.113333pt;}
.y1c6{bottom:91.976000pt;}
.y46{bottom:94.294667pt;}
.y1dc{bottom:98.982667pt;}
.y1a7{bottom:100.290667pt;}
.y144{bottom:100.557333pt;}
.y1fd{bottom:101.777333pt;}
.y1ac{bottom:103.296000pt;}
.ye5{bottom:106.054667pt;}
.y45{bottom:110.236000pt;}
.y7b{bottom:113.497333pt;}
.y120{bottom:116.497333pt;}
.ye4{bottom:121.994667pt;}
.y44{bottom:126.176000pt;}
.y1db{bottom:128.132000pt;}
.y1fc{bottom:128.345333pt;}
.y1a6{bottom:129.441333pt;}
.y143{bottom:129.706667pt;}
.y13c{bottom:132.437333pt;}
.y1ba{bottom:136.737333pt;}
.ye3{bottom:137.934667pt;}
.y43{bottom:142.116000pt;}
.y1da{bottom:144.604000pt;}
.y11f{bottom:145.646667pt;}
.y1a5{bottom:145.912000pt;}
.y142{bottom:146.178667pt;}
.y22{bottom:148.960000pt;}
.y7a{bottom:149.510667pt;}
.y158{bottom:150.621333pt;}
.y1b9{bottom:152.678667pt;}
.ye2{bottom:153.874667pt;}
.y1fb{bottom:154.912000pt;}
.y23a{bottom:157.600000pt;}
.y110{bottom:159.838667pt;}
.y1d9{bottom:161.076000pt;}
.y13b{bottom:161.588000pt;}
.y11e{bottom:162.118667pt;}
.y1a4{bottom:162.384000pt;}
.y141{bottom:162.650667pt;}
.y79{bottom:165.450667pt;}
.y157{bottom:166.561333pt;}
.yb3{bottom:166.620000pt;}
.y1b8{bottom:168.618667pt;}
.y1fa{bottom:170.852000pt;}
.y21{bottom:170.880000pt;}
.y239{bottom:173.600000pt;}
.y42{bottom:176.578667pt;}
.y1d8{bottom:177.546667pt;}
.y13a{bottom:178.058667pt;}
.ye1{bottom:178.394667pt;}
.y11d{bottom:178.590667pt;}
.y1e0{bottom:178.725333pt;}
.y1a3{bottom:178.856000pt;}
.y140{bottom:179.121333pt;}
.y78{bottom:181.390667pt;}
.y156{bottom:182.501333pt;}
.yb2{bottom:182.560000pt;}
.yb6{bottom:183.495522pt;}
.y1b7{bottom:184.558667pt;}
.y10f{bottom:188.989333pt;}
.y238{bottom:192.000000pt;}
.y20{bottom:192.320000pt;}
.y139{bottom:194.530667pt;}
.y1df{bottom:194.665333pt;}
.y11c{bottom:195.061333pt;}
.y13f{bottom:195.593333pt;}
.y1d7{bottom:196.674667pt;}
.y1f9{bottom:197.418667pt;}
.y1a2{bottom:197.984000pt;}
.y155{bottom:198.441333pt;}
.yb1{bottom:198.501333pt;}
.y1b6{bottom:200.498667pt;}
.y10e{bottom:205.460000pt;}
.y237{bottom:210.400000pt;}
.y138{bottom:211.002667pt;}
.y11b{bottom:211.533333pt;}
.ye0{bottom:211.900000pt;}
.y77{bottom:212.606667pt;}
.y1f{bottom:213.760000pt;}
.y154{bottom:214.381333pt;}
.y13e{bottom:214.721333pt;}
.y1b5{bottom:216.438667pt;}
.y10d{bottom:221.932000pt;}
.y1f8{bottom:226.513333pt;}
.y137{bottom:227.473333pt;}
.yb0{bottom:227.724000pt;}
.ydf{bottom:227.840000pt;}
.y74{bottom:228.280000pt;}
.y236{bottom:228.800000pt;}
.y153{bottom:230.322667pt;}
.y11a{bottom:230.661333pt;}
.y1b4{bottom:232.378667pt;}
.y1e{bottom:235.200000pt;}
.y10c{bottom:238.404000pt;}
.y76{bottom:240.898667pt;}
.yde{bottom:243.780000pt;}
.y75{bottom:244.884000pt;}
.y13d{bottom:246.262667pt;}
.y136{bottom:246.601333pt;}
.y235{bottom:247.200000pt;}
.y1b3{bottom:248.320000pt;}
.y10b{bottom:254.874667pt;}
.yaf{bottom:256.948000pt;}
.y1d6{bottom:257.440000pt;}
.y1a1{bottom:258.748000pt;}
.y72{bottom:259.208000pt;}
.ydd{bottom:259.720000pt;}
.y119{bottom:262.202667pt;}
.y1b2{bottom:264.260000pt;}
.y1f7{bottom:270.441333pt;}
.y73{bottom:271.597333pt;}
.yae{bottom:272.888000pt;}
.y10a{bottom:274.004000pt;}
.y6f{bottom:274.881333pt;}
.y1d{bottom:278.080000pt;}
.y118{bottom:278.142667pt;}
.y1b1{bottom:280.200000pt;}
.y234{bottom:280.320000pt;}
.yd6{bottom:281.532000pt;}
.yd7{bottom:282.128000pt;}
.y1f6{bottom:286.381333pt;}
.y1d5{bottom:286.589333pt;}
.y71{bottom:287.500000pt;}
.y1a0{bottom:287.898667pt;}
.yad{bottom:288.829333pt;}
.yd8{bottom:289.433333pt;}
.yd5{bottom:291.342667pt;}
.y70{bottom:291.485333pt;}
.y117{bottom:294.082667pt;}
.y233{bottom:295.680000pt;}
.ydc{bottom:296.074667pt;}
.yd4{bottom:297.684000pt;}
.y192{bottom:299.673333pt;}
.y1c{bottom:299.680000pt;}
.y1f5{bottom:302.321333pt;}
.y1d4{bottom:303.061333pt;}
.y19f{bottom:304.370667pt;}
.y1b0{bottom:304.718667pt;}
.yac{bottom:304.769333pt;}
.y6e{bottom:305.809333pt;}
.ydb{bottom:307.513333pt;}
.y116{bottom:310.022667pt;}
.yda{bottom:310.834667pt;}
.y232{bottom:311.040000pt;}
.y1f4{bottom:318.262667pt;}
.yd9{bottom:318.805333pt;}
.y1d3{bottom:319.533333pt;}
.yab{bottom:320.709333pt;}
.y19e{bottom:320.841333pt;}
.y1b{bottom:321.120000pt;}
.y6b{bottom:321.482667pt;}
.y115{bottom:325.964000pt;}
.y231{bottom:326.240000pt;}
.y191{bottom:328.824000pt;}
.y109{bottom:332.185333pt;}
.y6d{bottom:334.101333pt;}
.y1f3{bottom:334.202667pt;}
.y1d2{bottom:336.004000pt;}
.yaa{bottom:336.649333pt;}
.y19d{bottom:337.313333pt;}
.y6c{bottom:338.086667pt;}
.y1af{bottom:339.246667pt;}
.y230{bottom:341.600000pt;}
.y114{bottom:341.904000pt;}
.y1a{bottom:342.560000pt;}
.y190{bottom:345.296000pt;}
.yd3{bottom:348.169333pt;}
.y1f2{bottom:350.142667pt;}
.y1d1{bottom:355.133333pt;}
.y1ae{bottom:355.186667pt;}
.y19c{bottom:356.441333pt;}
.y22f{bottom:356.960000pt;}
.y113{bottom:357.844000pt;}
.y108{bottom:361.334667pt;}
.y18f{bottom:361.766667pt;}
.y6a{bottom:362.964000pt;}
.y19{bottom:364.000000pt;}
.yd2{bottom:364.109333pt;}
.ya9{bottom:365.873333pt;}
.y1f1{bottom:366.082667pt;}
.y41{bottom:370.490667pt;}
.y22e{bottom:372.320000pt;}
.y107{bottom:377.806667pt;}
.y69{bottom:378.904000pt;}
.y1ad{bottom:379.706667pt;}
.yd1{bottom:380.049333pt;}
.y18e{bottom:380.894667pt;}
.ya8{bottom:381.813333pt;}
.y1f0{bottom:382.022667pt;}
.y112{bottom:382.362667pt;}
.y18{bottom:385.440000pt;}
.y40{bottom:386.432000pt;}
.y1d0{bottom:386.673333pt;}
.y22d{bottom:387.680000pt;}
.y19b{bottom:387.982667pt;}
.y106{bottom:394.278667pt;}
.ya7{bottom:397.753333pt;}
.y1ef{bottom:397.962667pt;}
.ycf{bottom:401.202667pt;}
.y3f{bottom:402.372000pt;}
.y1cf{bottom:402.613333pt;}
.y22c{bottom:403.040000pt;}
.y19a{bottom:403.922667pt;}
.y1c5{bottom:404.272000pt;}
.y170{bottom:404.310667pt;}
.y17{bottom:406.880000pt;}
.ycc{bottom:407.764000pt;}
.y105{bottom:410.749333pt;}
.ya6{bottom:413.693333pt;}
.y1ee{bottom:413.904000pt;}
.ycb{bottom:416.876000pt;}
.y22b{bottom:418.240000pt;}
.y3e{bottom:418.312000pt;}
.y1ce{bottom:418.554667pt;}
.y199{bottom:419.862667pt;}
.yd0{bottom:420.196000pt;}
.y111{bottom:420.212000pt;}
.y16f{bottom:420.250667pt;}
.y16e{bottom:422.898667pt;}
.y68{bottom:423.220000pt;}
.y104{bottom:427.221333pt;}
.y16{bottom:429.280000pt;}
.yce{bottom:429.494667pt;}
.ya5{bottom:429.634667pt;}
.y1ed{bottom:429.844000pt;}
.ycd{bottom:433.480000pt;}
.y22a{bottom:433.600000pt;}
.y3d{bottom:434.252000pt;}
.y1cd{bottom:434.494667pt;}
.y198{bottom:435.802667pt;}
.y18d{bottom:441.660000pt;}
.ya4{bottom:445.574667pt;}
.y1ec{bottom:445.784000pt;}
.y103{bottom:446.349333pt;}
.y229{bottom:448.960000pt;}
.y197{bottom:451.744000pt;}
.y16d{bottom:452.786667pt;}
.y15{bottom:456.800000pt;}
.y67{bottom:458.494667pt;}
.y1cc{bottom:459.013333pt;}
.ya3{bottom:461.514667pt;}
.y1eb{bottom:461.724000pt;}
.yca{bottom:462.557333pt;}
.y3c{bottom:463.346667pt;}
.y228{bottom:464.320000pt;}
.y196{bottom:467.684000pt;}
.y16c{bottom:469.258667pt;}
.y18c{bottom:470.809333pt;}
.y66{bottom:474.434667pt;}
.ya2{bottom:477.454667pt;}
.y1ea{bottom:477.664000pt;}
.yc9{bottom:478.497333pt;}
.y227{bottom:479.680000pt;}
.y14{bottom:483.520000pt;}
.y195{bottom:483.624000pt;}
.y16b{bottom:485.729333pt;}
.y18b{bottom:487.281333pt;}
.y65{bottom:490.374667pt;}
.ya1{bottom:493.394667pt;}
.y1e9{bottom:493.605333pt;}
.y1c4{bottom:493.950667pt;}
.y226{bottom:495.040000pt;}
.y1cb{bottom:496.862667pt;}
.yc7{bottom:499.649333pt;}
.y16a{bottom:502.201333pt;}
.y18a{bottom:503.753333pt;}
.y102{bottom:504.532000pt;}
.y13{bottom:505.120000pt;}
.yc4{bottom:506.210667pt;}
.y3b{bottom:507.274667pt;}
.y194{bottom:508.142667pt;}
.ya0{bottom:509.334667pt;}
.y1e8{bottom:509.545333pt;}
.y225{bottom:510.240000pt;}
.y1ca{bottom:512.802667pt;}
.yc3{bottom:515.322667pt;}
.yc8{bottom:518.644000pt;}
.y169{bottom:518.673333pt;}
.y64{bottom:519.598667pt;}
.y189{bottom:522.881333pt;}
.y1c3{bottom:523.101333pt;}
.y3a{bottom:523.214667pt;}
.y9f{bottom:525.276000pt;}
.y1e7{bottom:525.485333pt;}
.y224{bottom:525.600000pt;}
.yc6{bottom:527.942667pt;}
.yc5{bottom:531.926667pt;}
.y101{bottom:533.681333pt;}
.y63{bottom:535.538667pt;}
.y168{bottom:537.801333pt;}
.y39{bottom:539.154667pt;}
.y1c2{bottom:539.572000pt;}
.y223{bottom:540.960000pt;}
.y9e{bottom:541.216000pt;}
.y1e6{bottom:541.425333pt;}
.y193{bottom:545.992000pt;}
.y12{bottom:549.280000pt;}
.y100{bottom:550.153333pt;}
.y62{bottom:551.478667pt;}
.y38{bottom:555.094667pt;}
.y1c1{bottom:556.044000pt;}
.y222{bottom:556.320000pt;}
.y9d{bottom:557.156000pt;}
.y1e5{bottom:557.365333pt;}
.yc2{bottom:561.004000pt;}
.yff{bottom:566.624000pt;}
.y1c9{bottom:571.024000pt;}
.y37{bottom:571.036000pt;}
.y221{bottom:571.680000pt;}
.y1c0{bottom:572.516000pt;}
.y1e4{bottom:573.305333pt;}
.y61{bottom:575.998667pt;}
.y11{bottom:580.000000pt;}
.yc1{bottom:581.418667pt;}
.yfe{bottom:583.096000pt;}
.y188{bottom:583.645333pt;}
.y220{bottom:586.880000pt;}
.y1c8{bottom:586.965333pt;}
.y36{bottom:586.976000pt;}
.ybe{bottom:587.980000pt;}
.y9c{bottom:589.036000pt;}
.y1bf{bottom:591.644000pt;}
.ybd{bottom:597.092000pt;}
.y167{bottom:599.304000pt;}
.yfd{bottom:599.568000pt;}
.y21f{bottom:602.240000pt;}
.y1e3{bottom:602.400000pt;}
.y35{bottom:602.916000pt;}
.y152{bottom:602.993333pt;}
.y9b{bottom:604.976000pt;}
.y135{bottom:608.160000pt;}
.y10{bottom:609.280000pt;}
.yc0{bottom:609.710667pt;}
.y187{bottom:612.796000pt;}
.y60{bottom:613.182667pt;}
.ybf{bottom:613.696000pt;}
.y21e{bottom:617.600000pt;}
.yfc{bottom:618.696000pt;}
.y34{bottom:618.856000pt;}
.y9a{bottom:620.917333pt;}
.y1de{bottom:624.174667pt;}
.y5f{bottom:629.122667pt;}
.y166{bottom:629.192000pt;}
.y186{bottom:629.268000pt;}
.yf{bottom:630.720000pt;}
.y151{bottom:632.144000pt;}
.y21d{bottom:632.960000pt;}
.y33{bottom:634.796000pt;}
.y134{bottom:637.309333pt;}
.y1dd{bottom:640.114667pt;}
.ybc{bottom:642.773333pt;}
.y165{bottom:645.664000pt;}
.y185{bottom:645.738667pt;}
.y21c{bottom:648.320000pt;}
.y150{bottom:648.614667pt;}
.y1e2{bottom:649.649333pt;}
.y99{bottom:650.140000pt;}
.y32{bottom:650.736000pt;}
.ye{bottom:652.320000pt;}
.y1be{bottom:652.408000pt;}
.y133{bottom:653.781333pt;}
.y5e{bottom:655.690667pt;}
.y164{bottom:662.134667pt;}
.y21b{bottom:663.680000pt;}
.y184{bottom:664.866667pt;}
.y14f{bottom:665.086667pt;}
.y1e1{bottom:665.589333pt;}
.ybb{bottom:666.058667pt;}
.y98{bottom:666.081333pt;}
.y31{bottom:666.677333pt;}
.y132{bottom:670.252000pt;}
.y5d{bottom:671.630667pt;}
.y171{bottom:672.320000pt;}
.yd{bottom:673.760000pt;}
.yfb{bottom:676.877333pt;}
.y163{bottom:678.606667pt;}
.y21a{bottom:678.880000pt;}
.y14e{bottom:681.558667pt;}
.yba{bottom:681.998667pt;}
.y97{bottom:682.021333pt;}
.y30{bottom:682.617333pt;}
.y131{bottom:686.724000pt;}
.y5c{bottom:687.570667pt;}
.y219{bottom:694.240000pt;}
.y162{bottom:695.078667pt;}
.yc{bottom:695.200000pt;}
.y14d{bottom:698.029333pt;}
.y2f{bottom:698.557333pt;}
.y130{bottom:703.196000pt;}
.yfa{bottom:706.028000pt;}
.yb9{bottom:706.518667pt;}
.y96{bottom:706.540000pt;}
.y218{bottom:709.600000pt;}
.y5b{bottom:714.137333pt;}
.y161{bottom:714.206667pt;}
.y1bd{bottom:714.501333pt;}
.y14c{bottom:717.158667pt;}
.y12f{bottom:722.324000pt;}
.yf9{bottom:722.498667pt;}
.y217{bottom:724.960000pt;}
.y183{bottom:725.632000pt;}
.y2e{bottom:727.652000pt;}
.y5a{bottom:730.078667pt;}
.y1bc{bottom:730.973333pt;}
.yb8{bottom:731.037333pt;}
.yb{bottom:738.080000pt;}
.yf8{bottom:738.970667pt;}
.y216{bottom:740.320000pt;}
.y95{bottom:743.725333pt;}
.y1bb{bottom:750.101333pt;}
.y182{bottom:754.781333pt;}
.yf7{bottom:755.442667pt;}
.y215{bottom:755.680000pt;}
.y59{bottom:756.645333pt;}
.ya{bottom:759.520000pt;}
.y94{bottom:759.665333pt;}
.yb7{bottom:769.782667pt;}
.y214{bottom:770.880000pt;}
.y181{bottom:771.253333pt;}
.y2d{bottom:771.580000pt;}
.yf6{bottom:771.913333pt;}
.y58{bottom:772.585333pt;}
.y93{bottom:775.605333pt;}
.y160{bottom:775.709333pt;}
.y14b{bottom:777.922667pt;}
.y12e{bottom:780.505333pt;}
.y9{bottom:780.960000pt;}
.y2c{bottom:786.192000pt;}
.y213{bottom:786.240000pt;}
.y180{bottom:787.725333pt;}
.yf5{bottom:791.042667pt;}
.y92{bottom:791.545333pt;}
.yb4{bottom:799.006667pt;}
.y57{bottom:799.152000pt;}
.y2b{bottom:800.804000pt;}
.y212{bottom:801.600000pt;}
.y8{bottom:802.560000pt;}
.y15f{bottom:805.597333pt;}
.y17f{bottom:806.853333pt;}
.y14a{bottom:807.073333pt;}
.y91{bottom:807.485333pt;}
.y12d{bottom:809.656000pt;}
.y1ab{bottom:810.865333pt;}
.y56{bottom:815.092000pt;}
.y2a{bottom:815.414667pt;}
.y211{bottom:816.960000pt;}
.y7{bottom:819.520000pt;}
.y15e{bottom:822.068000pt;}
.yf4{bottom:822.582667pt;}
.y149{bottom:823.544000pt;}
.y12c{bottom:826.126667pt;}
.y210{bottom:832.320000pt;}
.y29{bottom:836.237333pt;}
.y90{bottom:836.709333pt;}
.y17e{bottom:838.394667pt;}
.yf3{bottom:838.524000pt;}
.y15d{bottom:838.540000pt;}
.y148{bottom:840.016000pt;}
.y12b{bottom:842.598667pt;}
.y55{bottom:844.316000pt;}
.y20f{bottom:847.680000pt;}
.y8f{bottom:848.642667pt;}
.y8e{bottom:852.649333pt;}
.y17d{bottom:854.334667pt;}
.yf2{bottom:854.464000pt;}
.y15c{bottom:855.012000pt;}
.y147{bottom:856.488000pt;}
.y12a{bottom:859.070667pt;}
.y54{bottom:860.256000pt;}
.y20e{bottom:862.880000pt;}
.y8d{bottom:866.818667pt;}
.y17c{bottom:870.274667pt;}
.yf1{bottom:870.404000pt;}
.y8c{bottom:870.825333pt;}
.y15b{bottom:871.482667pt;}
.y146{bottom:872.958667pt;}
.y129{bottom:875.541333pt;}
.y53{bottom:876.197333pt;}
.y20d{bottom:878.240000pt;}
.y28{bottom:884.057333pt;}
.y17b{bottom:886.214667pt;}
.yf0{bottom:886.344000pt;}
.y1aa{bottom:889.430667pt;}
.y15a{bottom:890.612000pt;}
.y145{bottom:892.086667pt;}
.y52{bottom:892.137333pt;}
.y20c{bottom:893.600000pt;}
.y128{bottom:894.670667pt;}
.y89{bottom:899.606667pt;}
.y17a{bottom:902.154667pt;}
.yef{bottom:902.284000pt;}
.y51{bottom:908.077333pt;}
.y1a9{bottom:908.558667pt;}
.y20b{bottom:908.960000pt;}
.y8b{bottom:911.834667pt;}
.y8a{bottom:915.118667pt;}
.y27{bottom:915.318667pt;}
.y179{bottom:918.094667pt;}
.y50{bottom:924.017333pt;}
.y20a{bottom:924.320000pt;}
.yee{bottom:926.804000pt;}
.y88{bottom:927.738667pt;}
.y87{bottom:931.724000pt;}
.y26{bottom:933.916000pt;}
.y178{bottom:934.036000pt;}
.y203{bottom:937.900000pt;}
.y209{bottom:939.520000pt;}
.y4f{bottom:939.957333pt;}
.y83{bottom:946.048000pt;}
.yed{bottom:951.322667pt;}
.y159{bottom:952.114667pt;}
.y25{bottom:952.512000pt;}
.y127{bottom:952.852000pt;}
.y202{bottom:953.841333pt;}
.y208{bottom:954.880000pt;}
.y4e{bottom:955.897333pt;}
.y85{bottom:957.857333pt;}
.y86{bottom:958.276000pt;}
.y177{bottom:958.554667pt;}
.y84{bottom:961.560000pt;}
.y1a8{bottom:969.324000pt;}
.y207{bottom:970.240000pt;}
.y24{bottom:971.109333pt;}
.y82{bottom:974.178667pt;}
.y6{bottom:976.000000pt;}
.y81{bottom:978.164000pt;}
.y201{bottom:980.408000pt;}
.y4d{bottom:980.417333pt;}
.y126{bottom:982.001333pt;}
.y206{bottom:985.600000pt;}
.yec{bottom:988.506667pt;}
.y7f{bottom:992.488000pt;}
.y176{bottom:993.082667pt;}
.y5{bottom:996.320000pt;}
.y200{bottom:996.348000pt;}
.y125{bottom:998.473333pt;}
.y205{bottom:1000.960000pt;}
.yeb{bottom:1004.448000pt;}
.y80{bottom:1004.458667pt;}
.y7c{bottom:1008.000000pt;}
.y175{bottom:1009.022667pt;}
.y23{bottom:1009.632000pt;}
.y4{bottom:1011.680000pt;}
.y124{bottom:1014.945333pt;}
.y204{bottom:1016.320000pt;}
.y4c{bottom:1017.601333pt;}
.yea{bottom:1020.388000pt;}
.y7e{bottom:1020.620000pt;}
.y1ff{bottom:1022.914667pt;}
.y7d{bottom:1024.605333pt;}
.y174{bottom:1024.962667pt;}
.y3{bottom:1027.040000pt;}
.y123{bottom:1031.416000pt;}
.y4b{bottom:1033.541333pt;}
.ye9{bottom:1036.328000pt;}
.y173{bottom:1040.902667pt;}
.y2{bottom:1042.560000pt;}
.y122{bottom:1047.888000pt;}
.y4a{bottom:1049.482667pt;}
.y1{bottom:1059.200000pt;}
.y49{bottom:1065.422667pt;}
.y121{bottom:1067.016000pt;}
.h12{height:1.115856pt;}
.h39{height:13.049045pt;}
.h1a{height:26.185045pt;}
.h2f{height:26.566667pt;}
.h32{height:26.572000pt;}
.h11{height:27.896000pt;}
.h2e{height:32.993189pt;}
.h31{height:32.998523pt;}
.h28{height:33.316272pt;}
.ha{height:33.473067pt;}
.hb{height:33.712160pt;}
.h15{height:38.045376pt;}
.hd{height:39.852000pt;}
.h17{height:40.071819pt;}
.h18{height:42.727819pt;}
.h19{height:42.733152pt;}
.he{height:44.632000pt;}
.h2d{height:46.278523pt;}
.h9{height:47.820000pt;}
.h1b{height:49.801045pt;}
.h14{height:49.832000pt;}
.h23{height:49.837333pt;}
.h26{height:51.721045pt;}
.h1{height:52.134375pt;}
.h16{height:52.988000pt;}
.h1e{height:53.426667pt;}
.hc{height:53.558400pt;}
.h37{height:55.555712pt;}
.h22{height:55.863819pt;}
.h27{height:55.878667pt;}
.h1d{height:56.898485pt;}
.h20{height:57.538485pt;}
.h2{height:57.787500pt;}
.h10{height:60.574379pt;}
.h25{height:61.400000pt;}
.h35{height:62.219856pt;}
.h3a{height:62.812500pt;}
.h21{height:62.968000pt;}
.h24{height:62.973333pt;}
.h1c{height:63.966379pt;}
.h8{height:64.452960pt;}
.h2a{height:67.422201pt;}
.h1f{height:68.237333pt;}
.h34{height:71.219712pt;}
.hf{height:73.435856pt;}
.h3{height:73.490625pt;}
.h33{height:73.992043pt;}
.h2b{height:75.793333pt;}
.h2c{height:75.798667pt;}
.h38{height:78.161189pt;}
.h6{height:96.750000pt;}
.h5{height:104.844687pt;}
.h4{height:107.715000pt;}
.h30{height:108.971856pt;}
.h36{height:117.478523pt;}
.h13{height:136.129189pt;}
.h29{height:279.701227pt;}
.h7{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w3{width:279.701227pt;}
.w0{width:793.333333pt;}
.w1{width:793.701333pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:37.868461pt;}
.x10{left:58.205333pt;}
.x99{left:66.581333pt;}
.x1{left:73.600000pt;}
.x11{left:78.129333pt;}
.x4{left:82.880000pt;}
.xf{left:91.413333pt;}
.x40{left:97.598667pt;}
.x97{left:104.309333pt;}
.x96{left:106.338667pt;}
.xe{left:109.844000pt;}
.x98{left:111.136000pt;}
.x9a{left:113.440000pt;}
.x12{left:115.646667pt;}
.x80{left:120.924000pt;}
.x7f{left:125.905333pt;}
.x81{left:127.177333pt;}
.x82{left:136.162667pt;}
.x3f{left:137.117333pt;}
.x7e{left:138.136000pt;}
.x75{left:142.684000pt;}
.x9{left:144.022667pt;}
.x42{left:154.460684pt;}
.x70{left:158.366667pt;}
.x8f{left:162.444000pt;}
.x8d{left:167.425333pt;}
.x8e{left:169.270667pt;}
.x6c{left:175.820000pt;}
.x5{left:177.280000pt;}
.x7c{left:187.073333pt;}
.x79{left:193.697333pt;}
.x9b{left:197.920000pt;}
.x2d{left:201.864000pt;}
.x2c{left:206.752000pt;}
.x2e{left:208.810667pt;}
.x39{left:213.792000pt;}
.x14{left:216.257333pt;}
.x38{left:218.680000pt;}
.x3a{left:220.738667pt;}
.x2f{left:223.265333pt;}
.x6e{left:224.774667pt;}
.x8{left:227.138667pt;}
.x74{left:230.254667pt;}
.x3b{left:235.193333pt;}
.x69{left:237.606667pt;}
.x71{left:238.548000pt;}
.x73{left:239.912000pt;}
.x6b{left:242.126667pt;}
.x44{left:244.109333pt;}
.x72{left:245.262667pt;}
.x5f{left:247.449333pt;}
.x62{left:248.814667pt;}
.x6a{left:250.060000pt;}
.x63{left:251.222667pt;}
.xb{left:253.070667pt;}
.x61{left:254.165333pt;}
.x30{left:255.845333pt;}
.x60{left:256.748000pt;}
.x67{left:257.864000pt;}
.x7d{left:259.736000pt;}
.x66{left:260.806667pt;}
.x92{left:261.802667pt;}
.x65{left:263.389333pt;}
.xa{left:265.630667pt;}
.x6f{left:266.913333pt;}
.x41{left:267.970667pt;}
.x23{left:270.805333pt;}
.x8a{left:272.485333pt;}
.x8c{left:273.757333pt;}
.x6d{left:276.156000pt;}
.x90{left:277.144000pt;}
.x15{left:278.152000pt;}
.x95{left:279.800000pt;}
.x91{left:280.916000pt;}
.x3c{left:283.920000pt;}
.x94{left:285.150667pt;}
.x17{left:286.874667pt;}
.x93{left:290.501333pt;}
.x68{left:291.488000pt;}
.x7b{left:292.594667pt;}
.x78{left:294.237333pt;}
.x77{left:299.218667pt;}
.x64{left:300.436000pt;}
.x7a{left:301.542667pt;}
.x8b{left:304.014667pt;}
.x83{left:305.777333pt;}
.x85{left:307.142667pt;}
.x76{left:308.166667pt;}
.x86{left:309.549333pt;}
.x88{left:311.569333pt;}
.x89{left:313.977333pt;}
.x84{left:315.076000pt;}
.x20{left:317.418667pt;}
.x87{left:319.502667pt;}
.x25{left:325.004000pt;}
.x1c{left:327.505333pt;}
.x49{left:328.782667pt;}
.x31{left:331.060000pt;}
.x18{left:333.142667pt;}
.x19{left:335.052000pt;}
.x1a{left:336.042667pt;}
.x1d{left:340.162667pt;}
.x21{left:341.330667pt;}
.xc{left:342.780000pt;}
.x22{left:344.230667pt;}
.x7{left:351.680000pt;}
.x56{left:355.613333pt;}
.x55{left:357.672000pt;}
.x24{left:358.909333pt;}
.x45{left:371.369333pt;}
.x6{left:372.480000pt;}
.x1b{left:373.990667pt;}
.xd{left:380.752000pt;}
.x1e{left:383.225333pt;}
.x4a{left:384.585333pt;}
.x47{left:395.346667pt;}
.x48{left:396.337333pt;}
.x46{left:400.236000pt;}
.x4c{left:401.504000pt;}
.x57{left:402.940000pt;}
.x13{left:404.490667pt;}
.x4b{left:405.402667pt;}
.x33{left:409.670667pt;}
.x3{left:412.160000pt;}
.x32{left:414.558667pt;}
.x34{left:416.617333pt;}
.x4d{left:419.701333pt;}
.x51{left:421.456000pt;}
.x52{left:422.445333pt;}
.x4e{left:424.868000pt;}
.x50{left:426.344000pt;}
.x35{left:431.072000pt;}
.x27{left:433.101333pt;}
.x26{left:437.990667pt;}
.x28{left:440.048000pt;}
.x53{left:442.857333pt;}
.x4f{left:444.322667pt;}
.x16{left:451.818667pt;}
.x29{left:454.502667pt;}
.x36{left:463.652000pt;}
.x3d{left:467.429333pt;}
.x58{left:470.782667pt;}
.x2a{left:485.173333pt;}
.x59{left:492.184000pt;}
.x2{left:493.440000pt;}
.x5b{left:498.960000pt;}
.x1f{left:507.349333pt;}
.x54{left:510.732000pt;}
.x5c{left:519.046667pt;}
.x37{left:540.328000pt;}
.x3e{left:542.541333pt;}
.x2b{left:550.133333pt;}
.x5d{left:558.610667pt;}
.x5a{left:572.765333pt;}
.x5e{left:740.444000pt;}
}




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