
    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_953ac544ed5e863d347e083d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_178d2e02565934b881affdd9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ff51bb28905d741536b9ac90.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_185282be99e1be5baf191194.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_7e407dc9553fc438613582d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.834473;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_877a20bdf5cf67e28c3ae78b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109000;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_775fcc5c6c582bb8aa61bc7e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;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_badf0f49c838c15ada5ca61c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094000;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_bcec466fe212dbf141daa81d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.082000;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_21f01a04d8f586318ad0383b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.094000;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_6a4548550d98d7a92773cc38.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.094000;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_a37c145865e2a2508467e9a5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.094000;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_1c6120b3b14d87bb8fcf3d69.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.109000;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_c8846d54a7958cabe4b601ba.woff2')format("woff");}.fff{font-family:fff;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-10.569000px;}
.v5{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.268000px;}
.v7{vertical-align:16.536000px;}
.v1{vertical-align:21.984012px;}
.v3{vertical-align:31.629000px;}
.v8{vertical-align:33.033000px;}
.v4{vertical-align:63.297000px;}
.ls49{letter-spacing:-1.919520px;}
.ls4c{letter-spacing:-1.890000px;}
.ls58{letter-spacing:-1.677000px;}
.ls4b{letter-spacing:-1.638000px;}
.ls4e{letter-spacing:-1.260000px;}
.ls45{letter-spacing:-1.231296px;}
.ls62{letter-spacing:-1.170000px;}
.ls4d{letter-spacing:-1.133580px;}
.ls5f{letter-spacing:-1.052610px;}
.ls5c{letter-spacing:-0.896610px;}
.ls70{letter-spacing:-0.513000px;}
.ls3c{letter-spacing:-0.434565px;}
.ls2f{letter-spacing:-0.317682px;}
.ls6d{letter-spacing:-0.285000px;}
.ls5a{letter-spacing:-0.195000px;}
.ls1a{letter-spacing:-0.171570px;}
.ls1b{letter-spacing:-0.114000px;}
.ls5e{letter-spacing:-0.078000px;}
.ls47{letter-spacing:-0.057570px;}
.ls55{letter-spacing:-0.039390px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.011070px;}
.ls6e{letter-spacing:0.011076px;}
.ls59{letter-spacing:0.039390px;}
.ls14{letter-spacing:0.114000px;}
.ls61{letter-spacing:0.117390px;}
.ls53{letter-spacing:0.156000px;}
.ls19{letter-spacing:0.171570px;}
.ls64{letter-spacing:0.195000px;}
.ls3b{letter-spacing:0.217500px;}
.ls30{letter-spacing:0.228000px;}
.ls6a{letter-spacing:0.234000px;}
.ls9{letter-spacing:0.285000px;}
.ls6c{letter-spacing:0.291228px;}
.ls32{letter-spacing:0.342000px;}
.ls3f{letter-spacing:0.348000px;}
.ls2{letter-spacing:0.384395px;}
.ls44{letter-spacing:0.389610px;}
.ls17{letter-spacing:0.399000px;}
.ls67{letter-spacing:0.429000px;}
.ls34{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.434565px;}
.ls2e{letter-spacing:0.445518px;}
.ls16{letter-spacing:0.456000px;}
.ls41{letter-spacing:0.479520px;}
.ls1c{letter-spacing:0.513000px;}
.ls38{letter-spacing:0.521565px;}
.ls2b{letter-spacing:0.539460px;}
.ls63{letter-spacing:0.546390px;}
.ls37{letter-spacing:0.565500px;}
.lsa{letter-spacing:0.569430px;}
.ls52{letter-spacing:0.624390px;}
.ls13{letter-spacing:0.627000px;}
.ls12{letter-spacing:0.683430px;}
.ls18{letter-spacing:0.741000px;}
.ls6b{letter-spacing:0.780000px;}
.ls36{letter-spacing:0.783435px;}
.ls2c{letter-spacing:0.798000px;}
.ls8{letter-spacing:0.798570px;}
.ls50{letter-spacing:0.819000px;}
.ls10{letter-spacing:0.855000px;}
.ls15{letter-spacing:0.912570px;}
.ls51{letter-spacing:0.936000px;}
.ls5{letter-spacing:0.969000px;}
.ls65{letter-spacing:0.974610px;}
.ls3a{letter-spacing:1.000065px;}
.ls66{letter-spacing:1.014000px;}
.ls3{letter-spacing:1.026570px;}
.ls69{letter-spacing:1.052610px;}
.lsc{letter-spacing:1.083000px;}
.ls4f{letter-spacing:1.092000px;}
.ls56{letter-spacing:1.131390px;}
.ls43{letter-spacing:1.133580px;}
.ls23{letter-spacing:1.140000px;}
.ls42{letter-spacing:1.152000px;}
.ls57{letter-spacing:1.170000px;}
.ls3e{letter-spacing:1.174065px;}
.ls27{letter-spacing:1.197000px;}
.ls54{letter-spacing:1.209390px;}
.ls3d{letter-spacing:1.218000px;}
.ls35{letter-spacing:1.248000px;}
.lse{letter-spacing:1.254000px;}
.ls60{letter-spacing:1.287000px;}
.ls31{letter-spacing:1.310430px;}
.ls5d{letter-spacing:1.326000px;}
.ls68{letter-spacing:1.365000px;}
.lsf{letter-spacing:1.368000px;}
.ls4a{letter-spacing:1.392480px;}
.ls5b{letter-spacing:1.404000px;}
.ls29{letter-spacing:1.424430px;}
.ls40{letter-spacing:1.435500px;}
.lsb{letter-spacing:1.482000px;}
.ls7{letter-spacing:1.538430px;}
.ls28{letter-spacing:1.596000px;}
.ls46{letter-spacing:1.653570px;}
.ls11{letter-spacing:1.710000px;}
.ls33{letter-spacing:1.767570px;}
.ls25{letter-spacing:1.824000px;}
.ls4{letter-spacing:1.881000px;}
.ls21{letter-spacing:1.938000px;}
.ls2a{letter-spacing:1.945080px;}
.ls6{letter-spacing:1.995000px;}
.ls26{letter-spacing:2.052000px;}
.ls1d{letter-spacing:2.109000px;}
.ls1f{letter-spacing:2.165430px;}
.ls22{letter-spacing:2.223000px;}
.ls6f{letter-spacing:2.337000px;}
.ls24{letter-spacing:2.451000px;}
.lsd{letter-spacing:2.508570px;}
.ls72{letter-spacing:2.622570px;}
.ls48{letter-spacing:2.850000px;}
.ls20{letter-spacing:3.020430px;}
.ls71{letter-spacing:3.192000px;}
.ls1e{letter-spacing:3.363570px;}
.ls2d{letter-spacing:318.474000px;}
.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;}
}
.ws3{word-spacing:-31.969080px;}
.ws5a{word-spacing:-29.477088px;}
.ws101{word-spacing:-27.360300px;}
.ws5b{word-spacing:-27.360294px;}
.ws127{word-spacing:-27.359700px;}
.ws7f{word-spacing:-27.359694px;}
.ws126{word-spacing:-16.359000px;}
.ws2{word-spacing:-14.079570px;}
.ws1{word-spacing:-12.939000px;}
.ws84{word-spacing:-12.809580px;}
.wsac{word-spacing:-12.129000px;}
.ws8b{word-spacing:-10.998000px;}
.wsf4{word-spacing:-10.101000px;}
.wsf8{word-spacing:-10.062000px;}
.wsf6{word-spacing:-9.906000px;}
.ws56{word-spacing:-8.262000px;}
.wsfa{word-spacing:-5.967000px;}
.ws2d{word-spacing:-3.363570px;}
.ws2f{word-spacing:-3.020430px;}
.ws2e{word-spacing:-2.165430px;}
.wsfd{word-spacing:-1.404000px;}
.wsfe{word-spacing:-1.287000px;}
.wsff{word-spacing:-1.209390px;}
.wsee{word-spacing:-1.131390px;}
.wsf1{word-spacing:-1.014000px;}
.ws79{word-spacing:-1.000065px;}
.wsf2{word-spacing:-0.936000px;}
.wse7{word-spacing:-0.912570px;}
.wsec{word-spacing:-0.912000px;}
.ws7a{word-spacing:-0.870000px;}
.wsfb{word-spacing:-0.819000px;}
.ws14b{word-spacing:-0.798570px;}
.ws57{word-spacing:-0.798000px;}
.ws77{word-spacing:-0.783435px;}
.wsef{word-spacing:-0.780000px;}
.ws76{word-spacing:-0.768480px;}
.ws5c{word-spacing:-0.763200px;}
.ws112{word-spacing:-0.741000px;}
.ws78{word-spacing:-0.739500px;}
.wsb{word-spacing:-0.683430px;}
.ws7c{word-spacing:-0.672480px;}
.ws1e{word-spacing:-0.627000px;}
.wsfc{word-spacing:-0.624390px;}
.ws4f{word-spacing:-0.569430px;}
.wsf9{word-spacing:-0.546390px;}
.ws55{word-spacing:-0.539460px;}
.ws47{word-spacing:-0.513000px;}
.ws26{word-spacing:-0.456000px;}
.ws7b{word-spacing:-0.434565px;}
.ws15{word-spacing:-0.399000px;}
.wsed{word-spacing:-0.389610px;}
.ws114{word-spacing:-0.285000px;}
.ws38{word-spacing:-0.228000px;}
.ws121{word-spacing:-0.171570px;}
.wsf5{word-spacing:-0.117390px;}
.wsd5{word-spacing:-0.114000px;}
.ws142{word-spacing:-0.057570px;}
.ws0{word-spacing:0.000000px;}
.ws75{word-spacing:0.048480px;}
.ws11c{word-spacing:0.057570px;}
.ws52{word-spacing:0.114000px;}
.ws1f{word-spacing:0.171570px;}
.wsf0{word-spacing:0.195000px;}
.ws67{word-spacing:0.228000px;}
.ws25{word-spacing:0.285000px;}
.wsd{word-spacing:0.342000px;}
.ws17{word-spacing:0.456000px;}
.ws137{word-spacing:0.741000px;}
.ws71{word-spacing:0.969000px;}
.ws28{word-spacing:1.026570px;}
.wsf3{word-spacing:1.052610px;}
.ws6d{word-spacing:1.083000px;}
.wse8{word-spacing:1.140000px;}
.wsf7{word-spacing:1.170000px;}
.ws40{word-spacing:1.197000px;}
.ws9{word-spacing:1.254000px;}
.ws12{word-spacing:1.310430px;}
.ws1a{word-spacing:1.368000px;}
.ws19{word-spacing:1.424430px;}
.ws44{word-spacing:1.482000px;}
.ws124{word-spacing:1.538430px;}
.wsa{word-spacing:1.596000px;}
.wsd9{word-spacing:1.616461px;}
.ws11a{word-spacing:1.653570px;}
.ws100{word-spacing:1.677000px;}
.ws12d{word-spacing:1.710000px;}
.ws131{word-spacing:1.767570px;}
.ws39{word-spacing:1.824000px;}
.ws20{word-spacing:1.881000px;}
.ws33{word-spacing:1.938000px;}
.ws3d{word-spacing:1.995000px;}
.ws6{word-spacing:2.052000px;}
.ws4{word-spacing:2.109000px;}
.ws3c{word-spacing:2.165430px;}
.ws1d{word-spacing:2.223000px;}
.wsdc{word-spacing:2.279430px;}
.ws29{word-spacing:2.394570px;}
.wseb{word-spacing:2.400000px;}
.ws41{word-spacing:2.451000px;}
.ws34{word-spacing:2.508570px;}
.ws132{word-spacing:2.565000px;}
.ws65{word-spacing:2.622570px;}
.wse{word-spacing:2.679000px;}
.ws31{word-spacing:2.736000px;}
.ws21{word-spacing:2.793000px;}
.ws13a{word-spacing:2.850000px;}
.ws51{word-spacing:2.906430px;}
.wsd8{word-spacing:2.964000px;}
.wse0{word-spacing:3.020430px;}
.ws62{word-spacing:3.078000px;}
.ws115{word-spacing:3.134430px;}
.ws4d{word-spacing:3.192000px;}
.ws48{word-spacing:3.249570px;}
.ws11{word-spacing:3.306000px;}
.ws10{word-spacing:3.363570px;}
.ws49{word-spacing:3.420000px;}
.ws22{word-spacing:3.534000px;}
.ws2a{word-spacing:3.591000px;}
.ws4a{word-spacing:3.648000px;}
.ws118{word-spacing:3.705000px;}
.ws74{word-spacing:3.761430px;}
.ws6c{word-spacing:3.819000px;}
.ws10a{word-spacing:3.933000px;}
.ws2b{word-spacing:3.990570px;}
.ws4e{word-spacing:4.161000px;}
.ws5f{word-spacing:4.218570px;}
.ws1b{word-spacing:4.275000px;}
.ws141{word-spacing:4.502430px;}
.wsc{word-spacing:4.560000px;}
.ws4b{word-spacing:4.616430px;}
.ws149{word-spacing:4.730430px;}
.ws8{word-spacing:4.845570px;}
.ws16{word-spacing:4.902000px;}
.ws14{word-spacing:4.959570px;}
.ws42{word-spacing:5.016000px;}
.wse3{word-spacing:5.073000px;}
.ws4c{word-spacing:5.130000px;}
.ws109{word-spacing:5.187000px;}
.ws13c{word-spacing:5.244000px;}
.wsdb{word-spacing:5.357430px;}
.ws53{word-spacing:5.415000px;}
.ws36{word-spacing:5.471430px;}
.wse5{word-spacing:5.529000px;}
.ws6e{word-spacing:5.586570px;}
.ws72{word-spacing:5.643000px;}
.ws13{word-spacing:5.700570px;}
.ws102{word-spacing:5.757000px;}
.ws7{word-spacing:5.814570px;}
.ws116{word-spacing:5.871000px;}
.ws18{word-spacing:5.928000px;}
.ws119{word-spacing:5.985000px;}
.ws61{word-spacing:6.042000px;}
.ws66{word-spacing:6.098430px;}
.wsdf{word-spacing:6.212430px;}
.ws138{word-spacing:6.326430px;}
.wsd7{word-spacing:6.384000px;}
.ws5{word-spacing:6.555570px;}
.ws70{word-spacing:6.612000px;}
.ws69{word-spacing:6.669000px;}
.ws3e{word-spacing:6.726000px;}
.ws134{word-spacing:6.783000px;}
.ws106{word-spacing:6.840000px;}
.ws63{word-spacing:6.897000px;}
.ws1c{word-spacing:6.953430px;}
.ws12a{word-spacing:7.011000px;}
.wsda{word-spacing:7.067430px;}
.ws35{word-spacing:7.125000px;}
.ws64{word-spacing:7.182570px;}
.ws125{word-spacing:7.239000px;}
.ws123{word-spacing:7.353000px;}
.ws10e{word-spacing:7.410000px;}
.ws12f{word-spacing:7.467000px;}
.ws117{word-spacing:7.524000px;}
.ws12b{word-spacing:7.581000px;}
.wse9{word-spacing:7.638000px;}
.ws5e{word-spacing:7.694430px;}
.ws133{word-spacing:7.866000px;}
.ws144{word-spacing:7.923570px;}
.wsdd{word-spacing:7.980000px;}
.ws139{word-spacing:8.037570px;}
.ws37{word-spacing:8.208000px;}
.ws10b{word-spacing:8.265000px;}
.ws68{word-spacing:8.322000px;}
.ws130{word-spacing:8.379000px;}
.ws111{word-spacing:8.435430px;}
.ws13b{word-spacing:8.549430px;}
.ws60{word-spacing:8.607000px;}
.ws5d{word-spacing:8.663430px;}
.ws73{word-spacing:8.778570px;}
.ws6f{word-spacing:8.835000px;}
.ws11e{word-spacing:9.006000px;}
.ws3a{word-spacing:9.063000px;}
.ws6b{word-spacing:9.120000px;}
.ws108{word-spacing:9.177000px;}
.ws120{word-spacing:9.290430px;}
.ws10c{word-spacing:9.404430px;}
.ws13e{word-spacing:9.462000px;}
.ws23{word-spacing:9.519570px;}
.ws122{word-spacing:9.576000px;}
.ws145{word-spacing:9.633570px;}
.wsf{word-spacing:9.747570px;}
.ws148{word-spacing:9.861000px;}
.ws135{word-spacing:9.918000px;}
.ws104{word-spacing:10.145430px;}
.ws12e{word-spacing:10.259430px;}
.ws54{word-spacing:10.374570px;}
.ws11b{word-spacing:10.431000px;}
.ws12c{word-spacing:10.488570px;}
.ws11f{word-spacing:10.773000px;}
.ws27{word-spacing:10.830000px;}
.ws103{word-spacing:10.886430px;}
.ws140{word-spacing:11.229570px;}
.ws43{word-spacing:11.343570px;}
.ws30{word-spacing:11.400000px;}
.ws105{word-spacing:11.457000px;}
.wsde{word-spacing:11.571000px;}
.ws107{word-spacing:11.627430px;}
.wsd6{word-spacing:11.685000px;}
.ws10d{word-spacing:11.913000px;}
.ws50{word-spacing:11.970570px;}
.ws24{word-spacing:12.027000px;}
.ws110{word-spacing:12.141000px;}
.ws136{word-spacing:12.198000px;}
.ws143{word-spacing:12.369000px;}
.ws146{word-spacing:12.654000px;}
.ws45{word-spacing:12.882000px;}
.wse2{word-spacing:13.053000px;}
.wse6{word-spacing:13.566570px;}
.ws3b{word-spacing:13.680570px;}
.ws128{word-spacing:13.794000px;}
.ws14a{word-spacing:13.851000px;}
.ws6a{word-spacing:13.908000px;}
.ws3f{word-spacing:14.250000px;}
.wse1{word-spacing:14.819430px;}
.ws46{word-spacing:14.877000px;}
.wse4{word-spacing:15.276570px;}
.ws13d{word-spacing:16.131000px;}
.wsea{word-spacing:16.473000px;}
.ws11d{word-spacing:16.529430px;}
.ws129{word-spacing:17.214000px;}
.ws2c{word-spacing:17.955000px;}
.ws32{word-spacing:18.411000px;}
.ws13f{word-spacing:20.406000px;}
.ws113{word-spacing:20.805570px;}
.ws147{word-spacing:26.448000px;}
.ws10f{word-spacing:26.904000px;}
.ws83{word-spacing:93.799026px;}
.ws82{word-spacing:100.728600px;}
.ws80{word-spacing:102.309576px;}
.ws81{word-spacing:102.544680px;}
.wsa2{word-spacing:145.914594px;}
.wsa3{word-spacing:146.094000px;}
.ws98{word-spacing:146.140020px;}
.wsa1{word-spacing:146.143140px;}
.ws9b{word-spacing:146.439546px;}
.wsd3{word-spacing:146.503500px;}
.wsd2{word-spacing:146.533146px;}
.ws9a{word-spacing:146.554590px;}
.wsc5{word-spacing:146.625564px;}
.wsab{word-spacing:146.660280px;}
.wsbb{word-spacing:146.691474px;}
.wscb{word-spacing:146.691858px;}
.wsbe{word-spacing:146.748810px;}
.wsc0{word-spacing:146.767926px;}
.wsc9{word-spacing:146.830710px;}
.wsc2{word-spacing:146.838900px;}
.ws9f{word-spacing:146.940294px;}
.wsc4{word-spacing:147.045216px;}
.wscc{word-spacing:147.069000px;}
.wsb4{word-spacing:147.076020px;}
.ws90{word-spacing:147.108000px;}
.ws97{word-spacing:147.143100px;}
.wsd1{word-spacing:147.143868px;}
.wsa5{word-spacing:147.162600px;}
.wsc1{word-spacing:147.181710px;}
.ws88{word-spacing:147.200826px;}
.ws87{word-spacing:147.303000px;}
.wsc3{word-spacing:147.322122px;}
.wscf{word-spacing:147.577170px;}
.wsa0{word-spacing:147.599400px;}
.ws89{word-spacing:147.622800px;}
.ws92{word-spacing:147.654000px;}
.wsae{word-spacing:147.657504px;}
.ws8d{word-spacing:147.774516px;}
.wsb5{word-spacing:148.071300px;}
.wsb8{word-spacing:148.153200px;}
.wsb9{word-spacing:148.217940px;}
.wsa6{word-spacing:148.296720px;}
.ws94{word-spacing:148.437510px;}
.wsca{word-spacing:148.448820px;}
.wsa7{word-spacing:148.457400px;}
.ws9c{word-spacing:148.502640px;}
.ws9d{word-spacing:148.503030px;}
.ws8a{word-spacing:148.506930px;}
.wsd0{word-spacing:148.519020px;}
.wsaa{word-spacing:148.519410px;}
.wsa4{word-spacing:148.530714px;}
.wsaf{word-spacing:148.660200px;}
.ws8e{word-spacing:148.673844px;}
.ws85{word-spacing:148.715970px;}
.wsb0{word-spacing:148.812300px;}
.wscd{word-spacing:148.826724px;}
.wsad{word-spacing:148.882500px;}
.ws99{word-spacing:148.967514px;}
.ws93{word-spacing:148.986630px;}
.wsb1{word-spacing:149.001846px;}
.ws8f{word-spacing:149.137170px;}
.ws96{word-spacing:149.147316px;}
.wsbc{word-spacing:149.373894px;}
.wsa9{word-spacing:149.697594px;}
.wsc7{word-spacing:149.701110px;}
.wsb3{word-spacing:151.061430px;}
.ws9e{word-spacing:151.076244px;}
.wsa8{word-spacing:151.674888px;}
.ws95{word-spacing:151.681140px;}
.ws91{word-spacing:152.169414px;}
.wsbd{word-spacing:152.169804px;}
.wsce{word-spacing:152.204520px;}
.wsc6{word-spacing:152.290326px;}
.wsc8{word-spacing:152.291484px;}
.wsb7{word-spacing:153.054330px;}
.wsd4{word-spacing:153.666624px;}
.ws7d{word-spacing:191.568000px;}
.ws7e{word-spacing:234.936000px;}
.ws58{word-spacing:242.580000px;}
.ws59{word-spacing:285.948000px;}
.ws86{word-spacing:686.090718px;}
.ws8c{word-spacing:733.338840px;}
.wsb6{word-spacing:799.639620px;}
.wsb2{word-spacing:813.214806px;}
.wsbf{word-spacing:843.697914px;}
.wsba{word-spacing:869.211300px;}
._f{margin-left:-70.852206px;}
._15{margin-left:-31.952466px;}
._26{margin-left:-26.306646px;}
._14{margin-left:-17.504742px;}
._27{margin-left:-16.201116px;}
._29{margin-left:-14.694600px;}
._28{margin-left:-13.381278px;}
._10{margin-left:-11.676759px;}
._8{margin-left:-10.430520px;}
._13{margin-left:-8.991672px;}
._9{margin-left:-7.865388px;}
._7{margin-left:-6.562254px;}
._2a{margin-left:-5.466300px;}
._5{margin-left:-4.406100px;}
._3{margin-left:-3.374400px;}
._4{margin-left:-2.234400px;}
._1{margin-left:-1.003200px;}
._0{width:1.122900px;}
._2{width:2.553600px;}
._a{width:3.602400px;}
._23{width:6.334470px;}
._b{width:9.324000px;}
._e{width:22.672800px;}
._6{width:29.979840px;}
._12{width:31.241664px;}
._11{width:35.569596px;}
._d{width:112.987842px;}
._21{width:160.536294px;}
._17{width:176.115522px;}
._1e{width:184.594020px;}
._20{width:245.906040px;}
._c{width:246.948000px;}
._1f{width:248.277240px;}
._18{width:379.685202px;}
._16{width:460.020282px;}
._1d{width:481.615824px;}
._1a{width:518.609382px;}
._1c{width:527.596182px;}
._19{width:566.208600px;}
._1b{width:580.797582px;}
._24{width:715.763154px;}
._25{width:717.570648px;}
._22{width:719.550630px;}
.fc2{color:rgb(0,161,229);}
.fc1{color:rgb(237,87,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.984000px;}
.fsc{font-size:31.800000px;}
.fsa{font-size:36.000000px;}
.fsd{font-size:37.500000px;}
.fs7{font-size:38.478000px;}
.fsb{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:43.500000px;}
.fse{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:18.934800px;}
.y8c{bottom:18.934802px;}
.y144{bottom:18.934803px;}
.y193{bottom:77.376000px;}
.y123{bottom:77.376042px;}
.y1a9{bottom:77.376148px;}
.y85{bottom:77.376205px;}
.ye9{bottom:77.376303px;}
.y20c{bottom:77.376306px;}
.y1ee{bottom:77.376350px;}
.yc5{bottom:77.376612px;}
.y283{bottom:77.376618px;}
.y53{bottom:77.376620px;}
.ye8{bottom:86.526300px;}
.y1a8{bottom:95.676133px;}
.y192{bottom:95.676148px;}
.y122{bottom:95.676177px;}
.y84{bottom:95.676198px;}
.y1d9{bottom:95.676299px;}
.y1be{bottom:95.676309px;}
.y1ed{bottom:95.676342px;}
.yc4{bottom:95.676604px;}
.y282{bottom:95.676610px;}
.y52{bottom:95.676612px;}
.ye7{bottom:95.826301px;}
.y4{bottom:97.125005px;}
.ye6{bottom:104.826301px;}
.y97{bottom:105.126261px;}
.y1a7{bottom:113.976126px;}
.y121{bottom:113.976170px;}
.y191{bottom:113.976187px;}
.y83{bottom:113.976191px;}
.y1d8{bottom:113.976300px;}
.y1bd{bottom:113.976301px;}
.y1ec{bottom:113.976335px;}
.y51{bottom:113.976462px;}
.yc3{bottom:113.976597px;}
.y281{bottom:113.976603px;}
.y96{bottom:114.126297px;}
.y95{bottom:123.126297px;}
.y143{bottom:127.396652px;}
.y1a6{bottom:132.276118px;}
.y120{bottom:132.276162px;}
.y190{bottom:132.276180px;}
.y82{bottom:132.276183px;}
.y1bc{bottom:132.276294px;}
.y1d7{bottom:132.276309px;}
.y1eb{bottom:132.276327px;}
.y50{bottom:132.276454px;}
.y280{bottom:132.276595px;}
.yc2{bottom:132.276603px;}
.y20{bottom:139.264499px;}
.y142{bottom:146.530497px;}
.y11f{bottom:150.576012px;}
.y18f{bottom:150.576030px;}
.y1a5{bottom:150.576111px;}
.y81{bottom:150.576176px;}
.y1bb{bottom:150.576301px;}
.y20b{bottom:150.576305px;}
.y1ea{bottom:150.576320px;}
.y4f{bottom:150.576508px;}
.y27f{bottom:150.576588px;}
.yc1{bottom:150.576606px;}
.y141{bottom:165.664355px;}
.y11e{bottom:168.876005px;}
.y18e{bottom:168.876022px;}
.y1a4{bottom:168.876103px;}
.y80{bottom:168.876168px;}
.y1ba{bottom:168.876297px;}
.y1e9{bottom:168.876312px;}
.y27e{bottom:168.876580px;}
.yc0{bottom:168.876598px;}
.y4e{bottom:168.876644px;}
.y140{bottom:184.798202px;}
.y1a3{bottom:187.176096px;}
.y11d{bottom:187.176140px;}
.y18d{bottom:187.176157px;}
.y7f{bottom:187.176161px;}
.y1b9{bottom:187.176303px;}
.y1e8{bottom:187.176305px;}
.y1d6{bottom:187.176327px;}
.y27d{bottom:187.176573px;}
.ybf{bottom:187.176591px;}
.y4d{bottom:187.176636px;}
.y94{bottom:190.954353px;}
.y17{bottom:196.933500px;}
.y13f{bottom:203.650799px;}
.y1a2{bottom:205.476088px;}
.y11c{bottom:205.476132px;}
.y18c{bottom:205.476150px;}
.y7e{bottom:205.476153px;}
.y1e7{bottom:205.476311px;}
.y1b8{bottom:205.476316px;}
.y1d5{bottom:205.476320px;}
.y4c{bottom:205.476486px;}
.y27c{bottom:205.476565px;}
.ybe{bottom:205.476583px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y8e{bottom:219.882750px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y13e{bottom:223.026903px;}
.y1a1{bottom:223.776081px;}
.y11b{bottom:223.776124px;}
.y7d{bottom:223.776146px;}
.y1e6{bottom:223.776306px;}
.y1b7{bottom:223.776309px;}
.y1d4{bottom:223.776312px;}
.y4b{bottom:223.776479px;}
.y27b{bottom:223.776558px;}
.ybd{bottom:223.776576px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y11a{bottom:242.075975px;}
.y18b{bottom:242.076007px;}
.y1a0{bottom:242.076073px;}
.y7c{bottom:242.076141px;}
.y20a{bottom:242.076262px;}
.y1b6{bottom:242.076301px;}
.y1d3{bottom:242.076305px;}
.y4a{bottom:242.076471px;}
.y27a{bottom:242.076550px;}
.ybc{bottom:242.076568px;}
.y13d{bottom:242.481036px;}
.y8f{bottom:249.444750px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y119{bottom:260.375967px;}
.y18a{bottom:260.376000px;}
.y7b{bottom:260.376159px;}
.y19f{bottom:260.376208px;}
.y209{bottom:260.376255px;}
.y1b5{bottom:260.376297px;}
.y49{bottom:260.376463px;}
.y279{bottom:260.376543px;}
.ybb{bottom:260.376561px;}
.y13c{bottom:261.052349px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y118{bottom:278.676102px;}
.y189{bottom:278.676126px;}
.y7a{bottom:278.676154px;}
.y19e{bottom:278.676201px;}
.y1b4{bottom:278.676247px;}
.y1d2{bottom:278.676285px;}
.y1e5{bottom:278.676327px;}
.y48{bottom:278.676456px;}
.y278{bottom:278.676535px;}
.yba{bottom:278.676553px;}
.y13b{bottom:280.428455px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y117{bottom:296.976094px;}
.y188{bottom:296.976118px;}
.y79{bottom:296.976182px;}
.y19d{bottom:296.976193px;}
.y1d1{bottom:296.976277px;}
.y1e4{bottom:296.976320px;}
.y1b3{bottom:296.976382px;}
.y47{bottom:296.976449px;}
.y277{bottom:296.976528px;}
.yb9{bottom:296.976546px;}
.y13a{bottom:299.882586px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y116{bottom:315.276087px;}
.y187{bottom:315.276111px;}
.y78{bottom:315.276174px;}
.y19c{bottom:315.276186px;}
.y1d0{bottom:315.276270px;}
.y1e3{bottom:315.276312px;}
.y1b2{bottom:315.276375px;}
.y46{bottom:315.276501px;}
.y276{bottom:315.276520px;}
.yb8{bottom:315.276538px;}
.y139{bottom:318.453899px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y115{bottom:333.576079px;}
.y186{bottom:333.576103px;}
.y77{bottom:333.576166px;}
.y19b{bottom:333.576178px;}
.y1cf{bottom:333.576262px;}
.y1e2{bottom:333.576304px;}
.y1b1{bottom:333.576367px;}
.y45{bottom:333.576494px;}
.y275{bottom:333.576513px;}
.yb7{bottom:333.576531px;}
.y138{bottom:337.830143px;}
.ye{bottom:348.133500px;}
.y114{bottom:351.875929px;}
.y185{bottom:351.875953px;}
.y76{bottom:351.876159px;}
.y19a{bottom:351.876171px;}
.y1ce{bottom:351.876255px;}
.y1e1{bottom:351.876297px;}
.y1b0{bottom:351.876360px;}
.y44{bottom:351.876486px;}
.y274{bottom:351.876648px;}
.yb6{bottom:351.876666px;}
.y92{bottom:352.326750px;}
.y137{bottom:357.284244px;}
.y90{bottom:365.528250px;}
.y113{bottom:370.176064px;}
.y184{bottom:370.176088px;}
.y75{bottom:370.176157px;}
.y199{bottom:370.176163px;}
.y1cd{bottom:370.176247px;}
.y1e0{bottom:370.176292px;}
.y1af{bottom:370.176352px;}
.y43{bottom:370.176479px;}
.y273{bottom:370.176640px;}
.yb5{bottom:370.176658px;}
.y136{bottom:376.136844px;}
.yd{bottom:386.785499px;}
.y183{bottom:388.476081px;}
.y74{bottom:388.476150px;}
.y198{bottom:388.476156px;}
.y112{bottom:388.476199px;}
.y1ae{bottom:388.476345px;}
.y1cc{bottom:388.476382px;}
.y42{bottom:388.476471px;}
.y272{bottom:388.476633px;}
.yb4{bottom:388.476651px;}
.y91{bottom:394.544250px;}
.y135{bottom:394.989444px;}
.y227{bottom:397.626297px;}
.y182{bottom:406.776073px;}
.y197{bottom:406.776148px;}
.y111{bottom:406.776192px;}
.y73{bottom:406.776207px;}
.y1ad{bottom:406.776337px;}
.y1cb{bottom:406.776375px;}
.y41{bottom:406.776431px;}
.y271{bottom:406.776625px;}
.yb3{bottom:406.776643px;}
.yc{bottom:408.044999px;}
.y134{bottom:414.365573px;}
.y93{bottom:418.285500px;}
.y181{bottom:425.076066px;}
.y196{bottom:425.076141px;}
.y110{bottom:425.076184px;}
.y72{bottom:425.076199px;}
.y1ac{bottom:425.076330px;}
.y1ca{bottom:425.076368px;}
.y40{bottom:425.076423px;}
.y270{bottom:425.076618px;}
.yb2{bottom:425.076636px;}
.y133{bottom:433.819659px;}
.y180{bottom:443.375916px;}
.y10f{bottom:443.376035px;}
.y195{bottom:443.376127px;}
.y71{bottom:443.376192px;}
.y1ab{bottom:443.376322px;}
.y1c9{bottom:443.376360px;}
.y3f{bottom:443.376416px;}
.y26f{bottom:443.376610px;}
.yb1{bottom:443.376628px;}
.y250{bottom:451.835893px;}
.y240{bottom:451.874893px;}
.y132{bottom:452.672244px;}
.y194{bottom:461.676120px;}
.y10e{bottom:461.676169px;}
.y70{bottom:461.676184px;}
.y17f{bottom:461.676193px;}
.y1aa{bottom:461.676315px;}
.y1c8{bottom:461.676352px;}
.y3e{bottom:461.676408px;}
.y26e{bottom:461.676603px;}
.yb0{bottom:461.676621px;}
.y131{bottom:471.806124px;}
.y10d{bottom:479.976162px;}
.y6f{bottom:479.976177px;}
.y17e{bottom:479.976186px;}
.y1df{bottom:479.976288px;}
.y1c7{bottom:479.976345px;}
.y3d{bottom:479.976400px;}
.y26d{bottom:479.976595px;}
.yaf{bottom:479.976613px;}
.y24f{bottom:483.728143px;}
.y23f{bottom:483.767143px;}
.yb{bottom:484.864502px;}
.y130{bottom:490.658709px;}
.y10c{bottom:498.276154px;}
.y6e{bottom:498.276169px;}
.y17d{bottom:498.276178px;}
.y208{bottom:498.276318px;}
.y1de{bottom:498.276324px;}
.y1c6{bottom:498.276338px;}
.y3c{bottom:498.276535px;}
.y26c{bottom:498.276588px;}
.yae{bottom:498.276606px;}
.ye3{bottom:500.076462px;}
.ya{bottom:502.864502px;}
.y12f{bottom:510.034793px;}
.y24e{bottom:515.620393px;}
.y23e{bottom:515.912893px;}
.y6d{bottom:516.576141px;}
.y10b{bottom:516.576147px;}
.y17c{bottom:516.576171px;}
.y207{bottom:516.576310px;}
.y1dd{bottom:516.576316px;}
.y1c5{bottom:516.576330px;}
.y3b{bottom:516.576528px;}
.y26b{bottom:516.576580px;}
.yad{bottom:516.576598px;}
.ye2{bottom:518.076462px;}
.y9{bottom:520.864502px;}
.y12e{bottom:529.488911px;}
.y10a{bottom:534.875997px;}
.y17b{bottom:534.876021px;}
.y6c{bottom:534.876159px;}
.y206{bottom:534.876303px;}
.y1dc{bottom:534.876309px;}
.y1c4{bottom:534.876323px;}
.y162{bottom:534.876433px;}
.y3a{bottom:534.876520px;}
.y26a{bottom:534.876573px;}
.yac{bottom:534.876618px;}
.y8{bottom:538.864499px;}
.y23d{bottom:540.950893px;}
.y24d{bottom:547.512643px;}
.y12d{bottom:548.341511px;}
.y23c{bottom:552.650893px;}
.y109{bottom:553.176132px;}
.y17a{bottom:553.176156px;}
.y205{bottom:553.176295px;}
.y1db{bottom:553.176302px;}
.y1c3{bottom:553.176315px;}
.y39{bottom:553.176513px;}
.y269{bottom:553.176565px;}
.yab{bottom:553.176655px;}
.y7{bottom:556.864499px;}
.y12c{bottom:567.475376px;}
.y179{bottom:571.476148px;}
.y6b{bottom:571.476150px;}
.y108{bottom:571.476162px;}
.y1c2{bottom:571.476288px;}
.y1da{bottom:571.476294px;}
.y38{bottom:571.476505px;}
.y268{bottom:571.476558px;}
.yaa{bottom:571.476648px;}
.y23b{bottom:572.843143px;}
.y161{bottom:578.493733px;}
.y153{bottom:578.542503px;}
.y24c{bottom:579.404893px;}
.y23a{bottom:584.543143px;}
.y12b{bottom:586.327976px;}
.y6a{bottom:589.776087px;}
.y178{bottom:589.776141px;}
.y107{bottom:589.776154px;}
.y1c1{bottom:589.776286px;}
.y204{bottom:589.776375px;}
.y37{bottom:589.776498px;}
.y267{bottom:589.776550px;}
.ya9{bottom:589.776640px;}
.y239{bottom:604.735393px;}
.y12a{bottom:605.704203px;}
.y160{bottom:606.134983px;}
.y152{bottom:606.183753px;}
.ye1{bottom:607.868580px;}
.y69{bottom:608.076079px;}
.y177{bottom:608.076133px;}
.y106{bottom:608.076147px;}
.y1c0{bottom:608.076279px;}
.y203{bottom:608.076368px;}
.y36{bottom:608.076490px;}
.y266{bottom:608.076543px;}
.ya8{bottom:608.076633px;}
.y24b{bottom:611.297143px;}
.y238{bottom:616.435393px;}
.ye0{bottom:621.368587px;}
.y129{bottom:625.119281px;}
.y176{bottom:626.375983px;}
.y105{bottom:626.375997px;}
.y68{bottom:626.376072px;}
.y202{bottom:626.376360px;}
.y265{bottom:626.376535px;}
.y35{bottom:626.376625px;}
.y15f{bottom:633.776233px;}
.y151{bottom:633.825003px;}
.ydf{bottom:634.868595px;}
.y237{bottom:636.627643px;}
.y24a{bottom:643.189393px;}
.y67{bottom:644.676064px;}
.y175{bottom:644.676118px;}
.y104{bottom:644.676132px;}
.y201{bottom:644.676352px;}
.y34{bottom:644.676475px;}
.y264{bottom:644.676528px;}
.ya7{bottom:644.676618px;}
.y6{bottom:645.510000px;}
.y128{bottom:647.295002px;}
.y236{bottom:648.327643px;}
.yde{bottom:648.368493px;}
.y15e{bottom:661.417483px;}
.y150{bottom:661.466253px;}
.ydd{bottom:661.868500px;}
.y66{bottom:662.976057px;}
.y174{bottom:662.976111px;}
.y103{bottom:662.976177px;}
.y200{bottom:662.976345px;}
.y33{bottom:662.976468px;}
.y263{bottom:662.976520px;}
.ya6{bottom:662.976610px;}
.y5{bottom:666.771000px;}
.y235{bottom:668.519893px;}
.y127{bottom:673.926453px;}
.y249{bottom:675.081643px;}
.ydc{bottom:675.368508px;}
.y234{bottom:680.219893px;}
.y65{bottom:681.276049px;}
.y173{bottom:681.276103px;}
.y102{bottom:681.276169px;}
.y20d{bottom:681.276306px;}
.y1ff{bottom:681.276338px;}
.y32{bottom:681.276460px;}
.y262{bottom:681.276513px;}
.ya5{bottom:681.276603px;}
.ydb{bottom:688.868515px;}
.y15d{bottom:689.058733px;}
.y14f{bottom:689.107503px;}
.y126{bottom:691.926453px;}
.y172{bottom:699.576096px;}
.y101{bottom:699.576141px;}
.y64{bottom:699.576184px;}
.y1fe{bottom:699.576330px;}
.y31{bottom:699.576453px;}
.ya4{bottom:699.576595px;}
.y261{bottom:699.576648px;}
.y233{bottom:700.655893px;}
.yda{bottom:702.368523px;}
.y248{bottom:706.973893px;}
.y232{bottom:712.355893px;}
.yd9{bottom:715.868530px;}
.y15c{bottom:716.699983px;}
.y14e{bottom:716.748753px;}
.y100{bottom:717.875935px;}
.y171{bottom:717.875946px;}
.y63{bottom:717.876177px;}
.y1fd{bottom:717.876323px;}
.y30{bottom:717.876588px;}
.y260{bottom:717.876640px;}
.y226{bottom:720.714296px;}
.yd8{bottom:729.368538px;}
.y225{bottom:735.131379px;}
.yff{bottom:736.176070px;}
.y170{bottom:736.176081px;}
.y62{bottom:736.176169px;}
.y1fc{bottom:736.176315px;}
.y2f{bottom:736.176438px;}
.ya3{bottom:736.176580px;}
.y25f{bottom:736.176633px;}
.y247{bottom:738.866143px;}
.y231{bottom:739.148893px;}
.yd7{bottom:742.868545px;}
.y15b{bottom:744.341233px;}
.y14d{bottom:744.390003px;}
.y224{bottom:749.548373px;}
.y3{bottom:752.599495px;}
.yfe{bottom:754.476063px;}
.y16f{bottom:754.476073px;}
.y61{bottom:754.476162px;}
.y1fb{bottom:754.476366px;}
.y2e{bottom:754.476430px;}
.ye5{bottom:754.476471px;}
.ya2{bottom:754.476573px;}
.y25e{bottom:754.476625px;}
.yd6{bottom:756.368577px;}
.yd5{bottom:769.868584px;}
.y246{bottom:770.758393px;}
.y230{bottom:770.972893px;}
.y15a{bottom:771.982483px;}
.y14c{bottom:772.031253px;}
.yfd{bottom:772.776056px;}
.y16e{bottom:772.776066px;}
.y60{bottom:772.776155px;}
.y1fa{bottom:772.776359px;}
.y2d{bottom:772.776423px;}
.ya1{bottom:772.776566px;}
.y25d{bottom:772.776618px;}
.yd4{bottom:783.368592px;}
.y223{bottom:787.928591px;}
.y21e{bottom:787.938341px;}
.y219{bottom:787.948091px;}
.y214{bottom:787.957841px;}
.yef{bottom:788.364167px;}
.yfc{bottom:791.075906px;}
.y16d{bottom:791.075916px;}
.y5f{bottom:791.076147px;}
.y1f9{bottom:791.076351px;}
.y2c{bottom:791.076415px;}
.ya0{bottom:791.076558px;}
.y25c{bottom:791.076610px;}
.yd3{bottom:796.868469px;}
.y159{bottom:799.623733px;}
.y14b{bottom:799.672503px;}
.y245{bottom:802.650643px;}
.y22f{bottom:802.679893px;}
.y16c{bottom:809.375908px;}
.yfb{bottom:809.376041px;}
.y5e{bottom:809.376140px;}
.y1f8{bottom:809.376343px;}
.y2b{bottom:809.376551px;}
.y25b{bottom:809.376603px;}
.yea{bottom:817.275787px;}
.yd2{bottom:818.872509px;}
.y222{bottom:821.946341px;}
.y21d{bottom:821.956091px;}
.y218{bottom:821.965841px;}
.y213{bottom:821.975591px;}
.y158{bottom:827.264983px;}
.y14a{bottom:827.313753px;}
.y5d{bottom:827.676132px;}
.yfa{bottom:827.676175px;}
.y16b{bottom:827.676186px;}
.y8b{bottom:827.676270px;}
.y2a{bottom:827.676400px;}
.y25a{bottom:827.676595px;}
.y9f{bottom:827.676685px;}
.yd1{bottom:832.372516px;}
.y244{bottom:834.542893px;}
.y22e{bottom:834.825643px;}
.yd0{bottom:845.872414px;}
.y5c{bottom:845.976125px;}
.yf9{bottom:845.976168px;}
.y16a{bottom:845.976178px;}
.y29{bottom:845.976536px;}
.y259{bottom:845.976588px;}
.y9e{bottom:845.976678px;}
.y157{bottom:854.906233px;}
.y149{bottom:854.955003px;}
.y221{bottom:855.964091px;}
.y21c{bottom:855.973841px;}
.y217{bottom:855.983591px;}
.y212{bottom:855.993341px;}
.ycf{bottom:859.372422px;}
.y22d{bottom:860.117143px;}
.y5b{bottom:864.276117px;}
.yf8{bottom:864.276161px;}
.y169{bottom:864.276171px;}
.y1f7{bottom:864.276306px;}
.y28{bottom:864.276528px;}
.y258{bottom:864.276580px;}
.y9d{bottom:864.276671px;}
.y243{bottom:866.435143px;}
.y22c{bottom:871.817143px;}
.yce{bottom:872.872429px;}
.y8a{bottom:874.026351px;}
.yec{bottom:877.589287px;}
.y2{bottom:879.369000px;}
.y156{bottom:882.547483px;}
.yf7{bottom:882.576010px;}
.y168{bottom:882.576021px;}
.y5a{bottom:882.576110px;}
.y1f6{bottom:882.576324px;}
.y27{bottom:882.576521px;}
.y257{bottom:882.576624px;}
.y9c{bottom:882.576663px;}
.y148{bottom:882.596253px;}
.ycd{bottom:886.372437px;}
.y220{bottom:889.981841px;}
.y21b{bottom:889.991591px;}
.y216{bottom:890.001341px;}
.y211{bottom:890.011091px;}
.y22b{bottom:891.755893px;}
.y89{bottom:892.026306px;}
.yeb{bottom:896.172787px;}
.y242{bottom:898.327393px;}
.ycc{bottom:899.872444px;}
.yf6{bottom:900.876003px;}
.y167{bottom:900.876013px;}
.y59{bottom:900.876102px;}
.y1f5{bottom:900.876343px;}
.y256{bottom:900.876616px;}
.y26{bottom:900.876656px;}
.y22a{bottom:903.455893px;}
.y88{bottom:910.026306px;}
.y155{bottom:910.188733px;}
.y147{bottom:910.237503px;}
.ycb{bottom:913.372452px;}
.y58{bottom:919.176095px;}
.yf5{bottom:919.176138px;}
.y166{bottom:919.176148px;}
.y1f4{bottom:919.176261px;}
.y25{bottom:919.176506px;}
.y9b{bottom:919.176648px;}
.y229{bottom:923.648143px;}
.y21f{bottom:923.999591px;}
.y21a{bottom:924.009341px;}
.y215{bottom:924.019091px;}
.y210{bottom:924.028841px;}
.yca{bottom:926.872459px;}
.yee{bottom:929.225287px;}
.y241{bottom:930.219643px;}
.y228{bottom:935.348143px;}
.y57{bottom:937.476087px;}
.yf4{bottom:937.476131px;}
.y165{bottom:937.476141px;}
.y1f3{bottom:937.476253px;}
.y24{bottom:937.476498px;}
.y9a{bottom:937.476640px;}
.y255{bottom:937.476666px;}
.y154{bottom:937.829983px;}
.y146{bottom:937.878753px;}
.yc9{bottom:940.372467px;}
.yed{bottom:943.684537px;}
.yc8{bottom:953.872467px;}
.y56{bottom:955.776080px;}
.yf3{bottom:955.776123px;}
.y164{bottom:955.776133px;}
.y1f2{bottom:955.776246px;}
.y87{bottom:955.776381px;}
.y23{bottom:955.776491px;}
.y99{bottom:955.776633px;}
.y254{bottom:955.776658px;}
.y1{bottom:966.726000px;}
.yf2{bottom:974.075958px;}
.y163{bottom:974.075983px;}
.y55{bottom:974.076072px;}
.y1f1{bottom:974.076238px;}
.y22{bottom:974.076483px;}
.y98{bottom:974.076625px;}
.y253{bottom:974.076651px;}
.yc7{bottom:975.876343px;}
.y86{bottom:983.226471px;}
.yf1{bottom:992.375976px;}
.y54{bottom:992.376065px;}
.y1f0{bottom:992.376231px;}
.y21{bottom:992.376618px;}
.y252{bottom:992.376643px;}
.yc6{bottom:993.876343px;}
.y125{bottom:994.176270px;}
.y20f{bottom:994.176453px;}
.yf0{bottom:1010.676179px;}
.y1ef{bottom:1010.676224px;}
.y251{bottom:1010.676636px;}
.y124{bottom:1012.176270px;}
.y20e{bottom:1012.176453px;}
.y1bf{bottom:1074.014373px;}
.y8d{bottom:1074.014375px;}
.y145{bottom:1074.014376px;}
.h17{height:27.761400px;}
.h11{height:32.004000px;}
.h7{height:32.130000px;}
.h19{height:32.352000px;}
.h13{height:34.671000px;}
.h22{height:35.256000px;}
.h1e{height:37.392000px;}
.h12{height:37.968000px;}
.h1c{height:38.671500px;}
.h1b{height:39.324000px;}
.h1d{height:39.324492px;}
.h1f{height:42.939000px;}
.h1a{height:43.392000px;}
.ha{height:45.543000px;}
.h6{height:45.900000px;}
.h10{height:48.006000px;}
.h3{height:48.195000px;}
.hf{height:48.816000px;}
.h20{height:51.207000px;}
.hc{height:51.528000px;}
.h18{height:52.721886px;}
.hb{height:52.721892px;}
.h23{height:52.721910px;}
.hd{height:52.721982px;}
.h24{height:52.722072px;}
.h2{height:55.080000px;}
.h16{height:55.770000px;}
.h14{height:66.300000px;}
.h21{height:67.704000px;}
.h5{height:78.030000px;}
.he{height:97.632000px;}
.h15{height:97.968000px;}
.h4{height:119.055004px;}
.h9{height:1105.500000px;}
.h8{height:1105.512000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:21.259799px;}
.x35{left:41.326334px;}
.xa{left:42.519599px;}
.x38{left:43.795257px;}
.x21{left:50.857800px;}
.x37{left:52.133400px;}
.x1b{left:54.956697px;}
.x23{left:59.598490px;}
.x1a{left:63.851853px;}
.x39{left:71.415000px;}
.x31{left:74.926268px;}
.x14{left:76.193847px;}
.x15{left:97.453619px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x45{left:110.550453px;}
.x20{left:113.977055px;}
.x1c{left:125.235900px;}
.x1e{left:137.052900px;}
.x4{left:203.484001px;}
.x3a{left:227.181000px;}
.x3b{left:229.111500px;}
.x3c{left:232.972500px;}
.x3d{left:238.764000px;}
.x1d{left:268.863150px;}
.x22{left:288.570346px;}
.x36{left:305.949746px;}
.x5{left:307.290459px;}
.x6{left:328.477364px;}
.x32{left:339.757791px;}
.x33{left:341.379144px;}
.x1f{left:353.912400px;}
.x17{left:362.882995px;}
.x16{left:371.291404px;}
.x13{left:383.952759px;}
.x3e{left:385.374750px;}
.x3f{left:389.235750px;}
.x40{left:391.156500px;}
.x12{left:403.737579px;}
.x47{left:405.158080px;}
.x26{left:406.590888px;}
.x24{left:412.002138px;}
.x49{left:414.537580px;}
.x25{left:416.877138px;}
.x4e{left:418.340080px;}
.xd{left:421.854904px;}
.xc{left:426.476394px;}
.x50{left:427.524580px;}
.x48{left:430.235080px;}
.xe{left:431.907173px;}
.x52{left:432.984580px;}
.x43{left:441.700500px;}
.x4b{left:442.900330px;}
.x41{left:445.171500px;}
.x42{left:447.102000px;}
.x44{left:449.042250px;}
.x3{left:454.959000px;}
.x4a{left:462.234580px;}
.x30{left:468.737378px;}
.x4d{left:472.696330px;}
.x54{left:481.364080px;}
.x2f{left:485.692628px;}
.x53{left:490.948330px;}
.x51{left:498.514330px;}
.x2e{left:502.647878px;}
.x4c{left:505.007830px;}
.x46{left:508.264330px;}
.x4f{left:518.209330px;}
.x2d{left:536.548628px;}
.x2c{left:553.503878px;}
.x5d{left:557.150821px;}
.x5c{left:561.382321px;}
.x5b{left:569.845321px;}
.x9{left:570.989282px;}
.x7{left:572.386519px;}
.x5e{left:574.086571px;}
.x2b{left:587.404628px;}
.x8{left:593.516705px;}
.x5a{left:599.485321px;}
.x34{left:606.838350px;}
.x59{left:607.948321px;}
.x10{left:614.739173px;}
.x2a{left:621.305378px;}
.x58{left:624.884071px;}
.x29{left:655.206128px;}
.x57{left:684.154321px;}
.x19{left:695.851042px;}
.x56{left:701.090071px;}
.x28{left:706.062128px;}
.x27{left:723.017378px;}
.xf{left:772.065173px;}
.x55{left:777.296071px;}
.x11{left:784.818173px;}
.x18{left:856.641631px;}
@media print{
.v2{vertical-align:-9.394667pt;}
.v5{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.349333pt;}
.v7{vertical-align:14.698667pt;}
.v1{vertical-align:19.541344pt;}
.v3{vertical-align:28.114667pt;}
.v8{vertical-align:29.362667pt;}
.v4{vertical-align:56.264000pt;}
.ls49{letter-spacing:-1.706240pt;}
.ls4c{letter-spacing:-1.680000pt;}
.ls58{letter-spacing:-1.490667pt;}
.ls4b{letter-spacing:-1.456000pt;}
.ls4e{letter-spacing:-1.120000pt;}
.ls45{letter-spacing:-1.094485pt;}
.ls62{letter-spacing:-1.040000pt;}
.ls4d{letter-spacing:-1.007627pt;}
.ls5f{letter-spacing:-0.935653pt;}
.ls5c{letter-spacing:-0.796987pt;}
.ls70{letter-spacing:-0.456000pt;}
.ls3c{letter-spacing:-0.386280pt;}
.ls2f{letter-spacing:-0.282384pt;}
.ls6d{letter-spacing:-0.253333pt;}
.ls5a{letter-spacing:-0.173333pt;}
.ls1a{letter-spacing:-0.152507pt;}
.ls1b{letter-spacing:-0.101333pt;}
.ls5e{letter-spacing:-0.069333pt;}
.ls47{letter-spacing:-0.051173pt;}
.ls55{letter-spacing:-0.035013pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009840pt;}
.ls6e{letter-spacing:0.009845pt;}
.ls59{letter-spacing:0.035013pt;}
.ls14{letter-spacing:0.101333pt;}
.ls61{letter-spacing:0.104347pt;}
.ls53{letter-spacing:0.138667pt;}
.ls19{letter-spacing:0.152507pt;}
.ls64{letter-spacing:0.173333pt;}
.ls3b{letter-spacing:0.193333pt;}
.ls30{letter-spacing:0.202667pt;}
.ls6a{letter-spacing:0.208000pt;}
.ls9{letter-spacing:0.253333pt;}
.ls6c{letter-spacing:0.258869pt;}
.ls32{letter-spacing:0.304000pt;}
.ls3f{letter-spacing:0.309333pt;}
.ls2{letter-spacing:0.341685pt;}
.ls44{letter-spacing:0.346320pt;}
.ls17{letter-spacing:0.354667pt;}
.ls67{letter-spacing:0.381333pt;}
.ls34{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.386280pt;}
.ls2e{letter-spacing:0.396016pt;}
.ls16{letter-spacing:0.405333pt;}
.ls41{letter-spacing:0.426240pt;}
.ls1c{letter-spacing:0.456000pt;}
.ls38{letter-spacing:0.463613pt;}
.ls2b{letter-spacing:0.479520pt;}
.ls63{letter-spacing:0.485680pt;}
.ls37{letter-spacing:0.502667pt;}
.lsa{letter-spacing:0.506160pt;}
.ls52{letter-spacing:0.555013pt;}
.ls13{letter-spacing:0.557333pt;}
.ls12{letter-spacing:0.607493pt;}
.ls18{letter-spacing:0.658667pt;}
.ls6b{letter-spacing:0.693333pt;}
.ls36{letter-spacing:0.696387pt;}
.ls2c{letter-spacing:0.709333pt;}
.ls8{letter-spacing:0.709840pt;}
.ls50{letter-spacing:0.728000pt;}
.ls10{letter-spacing:0.760000pt;}
.ls15{letter-spacing:0.811173pt;}
.ls51{letter-spacing:0.832000pt;}
.ls5{letter-spacing:0.861333pt;}
.ls65{letter-spacing:0.866320pt;}
.ls3a{letter-spacing:0.888947pt;}
.ls66{letter-spacing:0.901333pt;}
.ls3{letter-spacing:0.912507pt;}
.ls69{letter-spacing:0.935653pt;}
.lsc{letter-spacing:0.962667pt;}
.ls4f{letter-spacing:0.970667pt;}
.ls56{letter-spacing:1.005680pt;}
.ls43{letter-spacing:1.007627pt;}
.ls23{letter-spacing:1.013333pt;}
.ls42{letter-spacing:1.024000pt;}
.ls57{letter-spacing:1.040000pt;}
.ls3e{letter-spacing:1.043613pt;}
.ls27{letter-spacing:1.064000pt;}
.ls54{letter-spacing:1.075013pt;}
.ls3d{letter-spacing:1.082667pt;}
.ls35{letter-spacing:1.109333pt;}
.lse{letter-spacing:1.114667pt;}
.ls60{letter-spacing:1.144000pt;}
.ls31{letter-spacing:1.164827pt;}
.ls5d{letter-spacing:1.178667pt;}
.ls68{letter-spacing:1.213333pt;}
.lsf{letter-spacing:1.216000pt;}
.ls4a{letter-spacing:1.237760pt;}
.ls5b{letter-spacing:1.248000pt;}
.ls29{letter-spacing:1.266160pt;}
.ls40{letter-spacing:1.276000pt;}
.lsb{letter-spacing:1.317333pt;}
.ls7{letter-spacing:1.367493pt;}
.ls28{letter-spacing:1.418667pt;}
.ls46{letter-spacing:1.469840pt;}
.ls11{letter-spacing:1.520000pt;}
.ls33{letter-spacing:1.571173pt;}
.ls25{letter-spacing:1.621333pt;}
.ls4{letter-spacing:1.672000pt;}
.ls21{letter-spacing:1.722667pt;}
.ls2a{letter-spacing:1.728960pt;}
.ls6{letter-spacing:1.773333pt;}
.ls26{letter-spacing:1.824000pt;}
.ls1d{letter-spacing:1.874667pt;}
.ls1f{letter-spacing:1.924827pt;}
.ls22{letter-spacing:1.976000pt;}
.ls6f{letter-spacing:2.077333pt;}
.ls24{letter-spacing:2.178667pt;}
.lsd{letter-spacing:2.229840pt;}
.ls72{letter-spacing:2.331173pt;}
.ls48{letter-spacing:2.533333pt;}
.ls20{letter-spacing:2.684827pt;}
.ls71{letter-spacing:2.837333pt;}
.ls1e{letter-spacing:2.989840pt;}
.ls2d{letter-spacing:283.088000pt;}
.ws3{word-spacing:-28.416960pt;}
.ws5a{word-spacing:-26.201856pt;}
.ws101{word-spacing:-24.320267pt;}
.ws5b{word-spacing:-24.320261pt;}
.ws127{word-spacing:-24.319733pt;}
.ws7f{word-spacing:-24.319728pt;}
.ws126{word-spacing:-14.541333pt;}
.ws2{word-spacing:-12.515173pt;}
.ws1{word-spacing:-11.501333pt;}
.ws84{word-spacing:-11.386293pt;}
.wsac{word-spacing:-10.781333pt;}
.ws8b{word-spacing:-9.776000pt;}
.wsf4{word-spacing:-8.978667pt;}
.wsf8{word-spacing:-8.944000pt;}
.wsf6{word-spacing:-8.805333pt;}
.ws56{word-spacing:-7.344000pt;}
.wsfa{word-spacing:-5.304000pt;}
.ws2d{word-spacing:-2.989840pt;}
.ws2f{word-spacing:-2.684827pt;}
.ws2e{word-spacing:-1.924827pt;}
.wsfd{word-spacing:-1.248000pt;}
.wsfe{word-spacing:-1.144000pt;}
.wsff{word-spacing:-1.075013pt;}
.wsee{word-spacing:-1.005680pt;}
.wsf1{word-spacing:-0.901333pt;}
.ws79{word-spacing:-0.888947pt;}
.wsf2{word-spacing:-0.832000pt;}
.wse7{word-spacing:-0.811173pt;}
.wsec{word-spacing:-0.810667pt;}
.ws7a{word-spacing:-0.773333pt;}
.wsfb{word-spacing:-0.728000pt;}
.ws14b{word-spacing:-0.709840pt;}
.ws57{word-spacing:-0.709333pt;}
.ws77{word-spacing:-0.696387pt;}
.wsef{word-spacing:-0.693333pt;}
.ws76{word-spacing:-0.683093pt;}
.ws5c{word-spacing:-0.678400pt;}
.ws112{word-spacing:-0.658667pt;}
.ws78{word-spacing:-0.657333pt;}
.wsb{word-spacing:-0.607493pt;}
.ws7c{word-spacing:-0.597760pt;}
.ws1e{word-spacing:-0.557333pt;}
.wsfc{word-spacing:-0.555013pt;}
.ws4f{word-spacing:-0.506160pt;}
.wsf9{word-spacing:-0.485680pt;}
.ws55{word-spacing:-0.479520pt;}
.ws47{word-spacing:-0.456000pt;}
.ws26{word-spacing:-0.405333pt;}
.ws7b{word-spacing:-0.386280pt;}
.ws15{word-spacing:-0.354667pt;}
.wsed{word-spacing:-0.346320pt;}
.ws114{word-spacing:-0.253333pt;}
.ws38{word-spacing:-0.202667pt;}
.ws121{word-spacing:-0.152507pt;}
.wsf5{word-spacing:-0.104347pt;}
.wsd5{word-spacing:-0.101333pt;}
.ws142{word-spacing:-0.051173pt;}
.ws0{word-spacing:0.000000pt;}
.ws75{word-spacing:0.043093pt;}
.ws11c{word-spacing:0.051173pt;}
.ws52{word-spacing:0.101333pt;}
.ws1f{word-spacing:0.152507pt;}
.wsf0{word-spacing:0.173333pt;}
.ws67{word-spacing:0.202667pt;}
.ws25{word-spacing:0.253333pt;}
.wsd{word-spacing:0.304000pt;}
.ws17{word-spacing:0.405333pt;}
.ws137{word-spacing:0.658667pt;}
.ws71{word-spacing:0.861333pt;}
.ws28{word-spacing:0.912507pt;}
.wsf3{word-spacing:0.935653pt;}
.ws6d{word-spacing:0.962667pt;}
.wse8{word-spacing:1.013333pt;}
.wsf7{word-spacing:1.040000pt;}
.ws40{word-spacing:1.064000pt;}
.ws9{word-spacing:1.114667pt;}
.ws12{word-spacing:1.164827pt;}
.ws1a{word-spacing:1.216000pt;}
.ws19{word-spacing:1.266160pt;}
.ws44{word-spacing:1.317333pt;}
.ws124{word-spacing:1.367493pt;}
.wsa{word-spacing:1.418667pt;}
.wsd9{word-spacing:1.436854pt;}
.ws11a{word-spacing:1.469840pt;}
.ws100{word-spacing:1.490667pt;}
.ws12d{word-spacing:1.520000pt;}
.ws131{word-spacing:1.571173pt;}
.ws39{word-spacing:1.621333pt;}
.ws20{word-spacing:1.672000pt;}
.ws33{word-spacing:1.722667pt;}
.ws3d{word-spacing:1.773333pt;}
.ws6{word-spacing:1.824000pt;}
.ws4{word-spacing:1.874667pt;}
.ws3c{word-spacing:1.924827pt;}
.ws1d{word-spacing:1.976000pt;}
.wsdc{word-spacing:2.026160pt;}
.ws29{word-spacing:2.128507pt;}
.wseb{word-spacing:2.133333pt;}
.ws41{word-spacing:2.178667pt;}
.ws34{word-spacing:2.229840pt;}
.ws132{word-spacing:2.280000pt;}
.ws65{word-spacing:2.331173pt;}
.wse{word-spacing:2.381333pt;}
.ws31{word-spacing:2.432000pt;}
.ws21{word-spacing:2.482667pt;}
.ws13a{word-spacing:2.533333pt;}
.ws51{word-spacing:2.583493pt;}
.wsd8{word-spacing:2.634667pt;}
.wse0{word-spacing:2.684827pt;}
.ws62{word-spacing:2.736000pt;}
.ws115{word-spacing:2.786160pt;}
.ws4d{word-spacing:2.837333pt;}
.ws48{word-spacing:2.888507pt;}
.ws11{word-spacing:2.938667pt;}
.ws10{word-spacing:2.989840pt;}
.ws49{word-spacing:3.040000pt;}
.ws22{word-spacing:3.141333pt;}
.ws2a{word-spacing:3.192000pt;}
.ws4a{word-spacing:3.242667pt;}
.ws118{word-spacing:3.293333pt;}
.ws74{word-spacing:3.343493pt;}
.ws6c{word-spacing:3.394667pt;}
.ws10a{word-spacing:3.496000pt;}
.ws2b{word-spacing:3.547173pt;}
.ws4e{word-spacing:3.698667pt;}
.ws5f{word-spacing:3.749840pt;}
.ws1b{word-spacing:3.800000pt;}
.ws141{word-spacing:4.002160pt;}
.wsc{word-spacing:4.053333pt;}
.ws4b{word-spacing:4.103493pt;}
.ws149{word-spacing:4.204827pt;}
.ws8{word-spacing:4.307173pt;}
.ws16{word-spacing:4.357333pt;}
.ws14{word-spacing:4.408507pt;}
.ws42{word-spacing:4.458667pt;}
.wse3{word-spacing:4.509333pt;}
.ws4c{word-spacing:4.560000pt;}
.ws109{word-spacing:4.610667pt;}
.ws13c{word-spacing:4.661333pt;}
.wsdb{word-spacing:4.762160pt;}
.ws53{word-spacing:4.813333pt;}
.ws36{word-spacing:4.863493pt;}
.wse5{word-spacing:4.914667pt;}
.ws6e{word-spacing:4.965840pt;}
.ws72{word-spacing:5.016000pt;}
.ws13{word-spacing:5.067173pt;}
.ws102{word-spacing:5.117333pt;}
.ws7{word-spacing:5.168507pt;}
.ws116{word-spacing:5.218667pt;}
.ws18{word-spacing:5.269333pt;}
.ws119{word-spacing:5.320000pt;}
.ws61{word-spacing:5.370667pt;}
.ws66{word-spacing:5.420827pt;}
.wsdf{word-spacing:5.522160pt;}
.ws138{word-spacing:5.623493pt;}
.wsd7{word-spacing:5.674667pt;}
.ws5{word-spacing:5.827173pt;}
.ws70{word-spacing:5.877333pt;}
.ws69{word-spacing:5.928000pt;}
.ws3e{word-spacing:5.978667pt;}
.ws134{word-spacing:6.029333pt;}
.ws106{word-spacing:6.080000pt;}
.ws63{word-spacing:6.130667pt;}
.ws1c{word-spacing:6.180827pt;}
.ws12a{word-spacing:6.232000pt;}
.wsda{word-spacing:6.282160pt;}
.ws35{word-spacing:6.333333pt;}
.ws64{word-spacing:6.384507pt;}
.ws125{word-spacing:6.434667pt;}
.ws123{word-spacing:6.536000pt;}
.ws10e{word-spacing:6.586667pt;}
.ws12f{word-spacing:6.637333pt;}
.ws117{word-spacing:6.688000pt;}
.ws12b{word-spacing:6.738667pt;}
.wse9{word-spacing:6.789333pt;}
.ws5e{word-spacing:6.839493pt;}
.ws133{word-spacing:6.992000pt;}
.ws144{word-spacing:7.043173pt;}
.wsdd{word-spacing:7.093333pt;}
.ws139{word-spacing:7.144507pt;}
.ws37{word-spacing:7.296000pt;}
.ws10b{word-spacing:7.346667pt;}
.ws68{word-spacing:7.397333pt;}
.ws130{word-spacing:7.448000pt;}
.ws111{word-spacing:7.498160pt;}
.ws13b{word-spacing:7.599493pt;}
.ws60{word-spacing:7.650667pt;}
.ws5d{word-spacing:7.700827pt;}
.ws73{word-spacing:7.803173pt;}
.ws6f{word-spacing:7.853333pt;}
.ws11e{word-spacing:8.005333pt;}
.ws3a{word-spacing:8.056000pt;}
.ws6b{word-spacing:8.106667pt;}
.ws108{word-spacing:8.157333pt;}
.ws120{word-spacing:8.258160pt;}
.ws10c{word-spacing:8.359493pt;}
.ws13e{word-spacing:8.410667pt;}
.ws23{word-spacing:8.461840pt;}
.ws122{word-spacing:8.512000pt;}
.ws145{word-spacing:8.563173pt;}
.wsf{word-spacing:8.664507pt;}
.ws148{word-spacing:8.765333pt;}
.ws135{word-spacing:8.816000pt;}
.ws104{word-spacing:9.018160pt;}
.ws12e{word-spacing:9.119493pt;}
.ws54{word-spacing:9.221840pt;}
.ws11b{word-spacing:9.272000pt;}
.ws12c{word-spacing:9.323173pt;}
.ws11f{word-spacing:9.576000pt;}
.ws27{word-spacing:9.626667pt;}
.ws103{word-spacing:9.676827pt;}
.ws140{word-spacing:9.981840pt;}
.ws43{word-spacing:10.083173pt;}
.ws30{word-spacing:10.133333pt;}
.ws105{word-spacing:10.184000pt;}
.wsde{word-spacing:10.285333pt;}
.ws107{word-spacing:10.335493pt;}
.wsd6{word-spacing:10.386667pt;}
.ws10d{word-spacing:10.589333pt;}
.ws50{word-spacing:10.640507pt;}
.ws24{word-spacing:10.690667pt;}
.ws110{word-spacing:10.792000pt;}
.ws136{word-spacing:10.842667pt;}
.ws143{word-spacing:10.994667pt;}
.ws146{word-spacing:11.248000pt;}
.ws45{word-spacing:11.450667pt;}
.wse2{word-spacing:11.602667pt;}
.wse6{word-spacing:12.059173pt;}
.ws3b{word-spacing:12.160507pt;}
.ws128{word-spacing:12.261333pt;}
.ws14a{word-spacing:12.312000pt;}
.ws6a{word-spacing:12.362667pt;}
.ws3f{word-spacing:12.666667pt;}
.wse1{word-spacing:13.172827pt;}
.ws46{word-spacing:13.224000pt;}
.wse4{word-spacing:13.579173pt;}
.ws13d{word-spacing:14.338667pt;}
.wsea{word-spacing:14.642667pt;}
.ws11d{word-spacing:14.692827pt;}
.ws129{word-spacing:15.301333pt;}
.ws2c{word-spacing:15.960000pt;}
.ws32{word-spacing:16.365333pt;}
.ws13f{word-spacing:18.138667pt;}
.ws113{word-spacing:18.493840pt;}
.ws147{word-spacing:23.509333pt;}
.ws10f{word-spacing:23.914667pt;}
.ws83{word-spacing:83.376912pt;}
.ws82{word-spacing:89.536533pt;}
.ws80{word-spacing:90.941845pt;}
.ws81{word-spacing:91.150827pt;}
.wsa2{word-spacing:129.701861pt;}
.wsa3{word-spacing:129.861333pt;}
.ws98{word-spacing:129.902240pt;}
.wsa1{word-spacing:129.905013pt;}
.ws9b{word-spacing:130.168485pt;}
.wsd3{word-spacing:130.225333pt;}
.wsd2{word-spacing:130.251685pt;}
.ws9a{word-spacing:130.270747pt;}
.wsc5{word-spacing:130.333835pt;}
.wsab{word-spacing:130.364693pt;}
.wsbb{word-spacing:130.392421pt;}
.wscb{word-spacing:130.392763pt;}
.wsbe{word-spacing:130.443387pt;}
.wsc0{word-spacing:130.460379pt;}
.wsc9{word-spacing:130.516187pt;}
.wsc2{word-spacing:130.523467pt;}
.ws9f{word-spacing:130.613595pt;}
.wsc4{word-spacing:130.706859pt;}
.wscc{word-spacing:130.728000pt;}
.wsb4{word-spacing:130.734240pt;}
.ws90{word-spacing:130.762667pt;}
.ws97{word-spacing:130.793867pt;}
.wsd1{word-spacing:130.794549pt;}
.wsa5{word-spacing:130.811200pt;}
.wsc1{word-spacing:130.828187pt;}
.ws88{word-spacing:130.845179pt;}
.ws87{word-spacing:130.936000pt;}
.wsc3{word-spacing:130.952997pt;}
.wscf{word-spacing:131.179707pt;}
.wsa0{word-spacing:131.199467pt;}
.ws89{word-spacing:131.220267pt;}
.ws92{word-spacing:131.248000pt;}
.wsae{word-spacing:131.251115pt;}
.ws8d{word-spacing:131.355125pt;}
.wsb5{word-spacing:131.618933pt;}
.wsb8{word-spacing:131.691733pt;}
.wsb9{word-spacing:131.749280pt;}
.wsa6{word-spacing:131.819307pt;}
.ws94{word-spacing:131.944453pt;}
.wsca{word-spacing:131.954507pt;}
.wsa7{word-spacing:131.962133pt;}
.ws9c{word-spacing:132.002347pt;}
.ws9d{word-spacing:132.002693pt;}
.ws8a{word-spacing:132.006160pt;}
.wsd0{word-spacing:132.016907pt;}
.wsaa{word-spacing:132.017253pt;}
.wsa4{word-spacing:132.027301pt;}
.wsaf{word-spacing:132.142400pt;}
.ws8e{word-spacing:132.154528pt;}
.ws85{word-spacing:132.191973pt;}
.wsb0{word-spacing:132.277600pt;}
.wscd{word-spacing:132.290421pt;}
.wsad{word-spacing:132.340000pt;}
.ws99{word-spacing:132.415568pt;}
.ws93{word-spacing:132.432560pt;}
.wsb1{word-spacing:132.446085pt;}
.ws8f{word-spacing:132.566373pt;}
.ws96{word-spacing:132.575392pt;}
.wsbc{word-spacing:132.776795pt;}
.wsa9{word-spacing:133.064528pt;}
.wsc7{word-spacing:133.067653pt;}
.wsb3{word-spacing:134.276827pt;}
.ws9e{word-spacing:134.289995pt;}
.wsa8{word-spacing:134.822123pt;}
.ws95{word-spacing:134.827680pt;}
.ws91{word-spacing:135.261701pt;}
.wsbd{word-spacing:135.262048pt;}
.wsce{word-spacing:135.292907pt;}
.wsc6{word-spacing:135.369179pt;}
.wsc8{word-spacing:135.370208pt;}
.wsb7{word-spacing:136.048293pt;}
.wsd4{word-spacing:136.592555pt;}
.ws7d{word-spacing:170.282667pt;}
.ws7e{word-spacing:208.832000pt;}
.ws58{word-spacing:215.626667pt;}
.ws59{word-spacing:254.176000pt;}
.ws86{word-spacing:609.858416pt;}
.ws8c{word-spacing:651.856747pt;}
.wsb6{word-spacing:710.790773pt;}
.wsb2{word-spacing:722.857605pt;}
.wsbf{word-spacing:749.953701pt;}
.wsba{word-spacing:772.632267pt;}
._f{margin-left:-62.979739pt;}
._15{margin-left:-28.402192pt;}
._26{margin-left:-23.383685pt;}
._14{margin-left:-15.559771pt;}
._27{margin-left:-14.400992pt;}
._29{margin-left:-13.061867pt;}
._28{margin-left:-11.894469pt;}
._10{margin-left:-10.379341pt;}
._8{margin-left:-9.271573pt;}
._13{margin-left:-7.992597pt;}
._9{margin-left:-6.991456pt;}
._7{margin-left:-5.833115pt;}
._2a{margin-left:-4.858933pt;}
._5{margin-left:-3.916533pt;}
._3{margin-left:-2.999467pt;}
._4{margin-left:-1.986133pt;}
._1{margin-left:-0.891733pt;}
._0{width:0.998133pt;}
._2{width:2.269867pt;}
._a{width:3.202133pt;}
._23{width:5.630640pt;}
._b{width:8.288000pt;}
._e{width:20.153600pt;}
._6{width:26.648747pt;}
._12{width:27.770368pt;}
._11{width:31.617419pt;}
._d{width:100.433637pt;}
._21{width:142.698928pt;}
._17{width:156.547131pt;}
._1e{width:164.083573pt;}
._20{width:218.583147pt;}
._c{width:219.509333pt;}
._1f{width:220.690880pt;}
._18{width:337.497957pt;}
._16{width:408.906917pt;}
._1d{width:428.102955pt;}
._1a{width:460.986117pt;}
._1c{width:468.974384pt;}
._19{width:503.296533pt;}
._1b{width:516.264517pt;}
._24{width:636.233915pt;}
._25{width:637.840576pt;}
._22{width:639.600560pt;}
.fs6{font-size:24.874667pt;}
.fsc{font-size:28.266667pt;}
.fsa{font-size:32.000000pt;}
.fsd{font-size:33.333333pt;}
.fs7{font-size:34.202667pt;}
.fsb{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:38.666667pt;}
.fse{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:16.830933pt;}
.y8c{bottom:16.830935pt;}
.y144{bottom:16.830936pt;}
.y193{bottom:68.778667pt;}
.y123{bottom:68.778704pt;}
.y1a9{bottom:68.778799pt;}
.y85{bottom:68.778849pt;}
.ye9{bottom:68.778936pt;}
.y20c{bottom:68.778939pt;}
.y1ee{bottom:68.778977pt;}
.yc5{bottom:68.779211pt;}
.y283{bottom:68.779216pt;}
.y53{bottom:68.779217pt;}
.ye8{bottom:76.912267pt;}
.y1a8{bottom:85.045452pt;}
.y192{bottom:85.045465pt;}
.y122{bottom:85.045491pt;}
.y84{bottom:85.045509pt;}
.y1d9{bottom:85.045599pt;}
.y1be{bottom:85.045608pt;}
.y1ed{bottom:85.045637pt;}
.yc4{bottom:85.045871pt;}
.y282{bottom:85.045876pt;}
.y52{bottom:85.045877pt;}
.ye7{bottom:85.178935pt;}
.y4{bottom:86.333337pt;}
.ye6{bottom:93.178935pt;}
.y97{bottom:93.445565pt;}
.y1a7{bottom:101.312112pt;}
.y121{bottom:101.312151pt;}
.y191{bottom:101.312167pt;}
.y83{bottom:101.312169pt;}
.y1d8{bottom:101.312267pt;}
.y1bd{bottom:101.312268pt;}
.y1ec{bottom:101.312297pt;}
.y51{bottom:101.312411pt;}
.yc3{bottom:101.312531pt;}
.y281{bottom:101.312536pt;}
.y96{bottom:101.445597pt;}
.y95{bottom:109.445597pt;}
.y143{bottom:113.241468pt;}
.y1a6{bottom:117.578772pt;}
.y120{bottom:117.578811pt;}
.y190{bottom:117.578827pt;}
.y82{bottom:117.578829pt;}
.y1bc{bottom:117.578928pt;}
.y1d7{bottom:117.578941pt;}
.y1eb{bottom:117.578957pt;}
.y50{bottom:117.579071pt;}
.y280{bottom:117.579196pt;}
.yc2{bottom:117.579203pt;}
.y20{bottom:123.790666pt;}
.y142{bottom:130.249331pt;}
.y11f{bottom:133.845344pt;}
.y18f{bottom:133.845360pt;}
.y1a5{bottom:133.845432pt;}
.y81{bottom:133.845489pt;}
.y1bb{bottom:133.845601pt;}
.y20b{bottom:133.845604pt;}
.y1ea{bottom:133.845617pt;}
.y4f{bottom:133.845785pt;}
.y27f{bottom:133.845856pt;}
.yc1{bottom:133.845872pt;}
.y141{bottom:147.257204pt;}
.y11e{bottom:150.112004pt;}
.y18e{bottom:150.112020pt;}
.y1a4{bottom:150.112092pt;}
.y80{bottom:150.112149pt;}
.y1ba{bottom:150.112264pt;}
.y1e9{bottom:150.112277pt;}
.y27e{bottom:150.112516pt;}
.yc0{bottom:150.112532pt;}
.y4e{bottom:150.112572pt;}
.y140{bottom:164.265068pt;}
.y1a3{bottom:166.378752pt;}
.y11d{bottom:166.378791pt;}
.y18d{bottom:166.378807pt;}
.y7f{bottom:166.378809pt;}
.y1b9{bottom:166.378936pt;}
.y1e8{bottom:166.378937pt;}
.y1d6{bottom:166.378957pt;}
.y27d{bottom:166.379176pt;}
.ybf{bottom:166.379192pt;}
.y4d{bottom:166.379232pt;}
.y94{bottom:169.737203pt;}
.y17{bottom:175.052000pt;}
.y13f{bottom:181.022932pt;}
.y1a2{bottom:182.645412pt;}
.y11c{bottom:182.645451pt;}
.y18c{bottom:182.645467pt;}
.y7e{bottom:182.645469pt;}
.y1e7{bottom:182.645609pt;}
.y1b8{bottom:182.645615pt;}
.y1d5{bottom:182.645617pt;}
.y4c{bottom:182.645765pt;}
.y27c{bottom:182.645836pt;}
.ybe{bottom:182.645852pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y8e{bottom:195.451333pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y13e{bottom:198.246136pt;}
.y1a1{bottom:198.912072pt;}
.y11b{bottom:198.912111pt;}
.y7d{bottom:198.912129pt;}
.y1e6{bottom:198.912272pt;}
.y1b7{bottom:198.912275pt;}
.y1d4{bottom:198.912277pt;}
.y4b{bottom:198.912425pt;}
.y27b{bottom:198.912496pt;}
.ybd{bottom:198.912512pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y11a{bottom:215.178644pt;}
.y18b{bottom:215.178673pt;}
.y1a0{bottom:215.178732pt;}
.y7c{bottom:215.178792pt;}
.y20a{bottom:215.178900pt;}
.y1b6{bottom:215.178935pt;}
.y1d3{bottom:215.178937pt;}
.y4a{bottom:215.179085pt;}
.y27a{bottom:215.179156pt;}
.ybc{bottom:215.179172pt;}
.y13d{bottom:215.538699pt;}
.y8f{bottom:221.728667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y119{bottom:231.445304pt;}
.y18a{bottom:231.445333pt;}
.y7b{bottom:231.445475pt;}
.y19f{bottom:231.445519pt;}
.y209{bottom:231.445560pt;}
.y1b5{bottom:231.445597pt;}
.y49{bottom:231.445745pt;}
.y279{bottom:231.445816pt;}
.ybb{bottom:231.445832pt;}
.y13c{bottom:232.046532pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y118{bottom:247.712091pt;}
.y189{bottom:247.712112pt;}
.y7a{bottom:247.712137pt;}
.y19e{bottom:247.712179pt;}
.y1b4{bottom:247.712220pt;}
.y1d2{bottom:247.712253pt;}
.y1e5{bottom:247.712291pt;}
.y48{bottom:247.712405pt;}
.y278{bottom:247.712476pt;}
.yba{bottom:247.712492pt;}
.y13b{bottom:249.269737pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y117{bottom:263.978751pt;}
.y188{bottom:263.978772pt;}
.y79{bottom:263.978828pt;}
.y19d{bottom:263.978839pt;}
.y1d1{bottom:263.978913pt;}
.y1e4{bottom:263.978951pt;}
.y1b3{bottom:263.979007pt;}
.y47{bottom:263.979065pt;}
.y277{bottom:263.979136pt;}
.yb9{bottom:263.979152pt;}
.y13a{bottom:266.562299pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y116{bottom:280.245411pt;}
.y187{bottom:280.245432pt;}
.y78{bottom:280.245488pt;}
.y19c{bottom:280.245499pt;}
.y1d0{bottom:280.245573pt;}
.y1e3{bottom:280.245611pt;}
.y1b2{bottom:280.245667pt;}
.y46{bottom:280.245779pt;}
.y276{bottom:280.245796pt;}
.yb8{bottom:280.245812pt;}
.y139{bottom:283.070132pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y115{bottom:296.512071pt;}
.y186{bottom:296.512092pt;}
.y77{bottom:296.512148pt;}
.y19b{bottom:296.512159pt;}
.y1cf{bottom:296.512233pt;}
.y1e2{bottom:296.512271pt;}
.y1b1{bottom:296.512327pt;}
.y45{bottom:296.512439pt;}
.y275{bottom:296.512456pt;}
.yb7{bottom:296.512472pt;}
.y138{bottom:300.293460pt;}
.ye{bottom:309.452000pt;}
.y114{bottom:312.778604pt;}
.y185{bottom:312.778625pt;}
.y76{bottom:312.778808pt;}
.y19a{bottom:312.778819pt;}
.y1ce{bottom:312.778893pt;}
.y1e1{bottom:312.778931pt;}
.y1b0{bottom:312.778987pt;}
.y44{bottom:312.779099pt;}
.y274{bottom:312.779243pt;}
.yb6{bottom:312.779259pt;}
.y92{bottom:313.179333pt;}
.y137{bottom:317.585995pt;}
.y90{bottom:324.914000pt;}
.y113{bottom:329.045391pt;}
.y184{bottom:329.045412pt;}
.y75{bottom:329.045473pt;}
.y199{bottom:329.045479pt;}
.y1cd{bottom:329.045553pt;}
.y1e0{bottom:329.045593pt;}
.y1af{bottom:329.045647pt;}
.y43{bottom:329.045759pt;}
.y273{bottom:329.045903pt;}
.yb5{bottom:329.045919pt;}
.y136{bottom:334.343861pt;}
.yd{bottom:343.809333pt;}
.y183{bottom:345.312072pt;}
.y74{bottom:345.312133pt;}
.y198{bottom:345.312139pt;}
.y112{bottom:345.312177pt;}
.y1ae{bottom:345.312307pt;}
.y1cc{bottom:345.312340pt;}
.y42{bottom:345.312419pt;}
.y272{bottom:345.312563pt;}
.yb4{bottom:345.312579pt;}
.y91{bottom:350.706000pt;}
.y135{bottom:351.101728pt;}
.y227{bottom:353.445597pt;}
.y182{bottom:361.578732pt;}
.y197{bottom:361.578799pt;}
.y111{bottom:361.578837pt;}
.y73{bottom:361.578851pt;}
.y1ad{bottom:361.578967pt;}
.y1cb{bottom:361.579000pt;}
.y41{bottom:361.579049pt;}
.y271{bottom:361.579223pt;}
.yb3{bottom:361.579239pt;}
.yc{bottom:362.706666pt;}
.y134{bottom:368.324953pt;}
.y93{bottom:371.809333pt;}
.y181{bottom:377.845392pt;}
.y196{bottom:377.845459pt;}
.y110{bottom:377.845497pt;}
.y72{bottom:377.845511pt;}
.y1ac{bottom:377.845627pt;}
.y1ca{bottom:377.845660pt;}
.y40{bottom:377.845709pt;}
.y270{bottom:377.845883pt;}
.yb2{bottom:377.845899pt;}
.y133{bottom:385.617475pt;}
.y180{bottom:394.111925pt;}
.y10f{bottom:394.112031pt;}
.y195{bottom:394.112113pt;}
.y71{bottom:394.112171pt;}
.y1ab{bottom:394.112287pt;}
.y1c9{bottom:394.112320pt;}
.y3f{bottom:394.112369pt;}
.y26f{bottom:394.112543pt;}
.yb1{bottom:394.112559pt;}
.y250{bottom:401.631905pt;}
.y240{bottom:401.666572pt;}
.y132{bottom:402.375328pt;}
.y194{bottom:410.378773pt;}
.y10e{bottom:410.378817pt;}
.y70{bottom:410.378831pt;}
.y17f{bottom:410.378839pt;}
.y1aa{bottom:410.378947pt;}
.y1c8{bottom:410.378980pt;}
.y3e{bottom:410.379029pt;}
.y26e{bottom:410.379203pt;}
.yb0{bottom:410.379219pt;}
.y131{bottom:419.383221pt;}
.y10d{bottom:426.645477pt;}
.y6f{bottom:426.645491pt;}
.y17e{bottom:426.645499pt;}
.y1df{bottom:426.645589pt;}
.y1c7{bottom:426.645640pt;}
.y3d{bottom:426.645689pt;}
.y26d{bottom:426.645863pt;}
.yaf{bottom:426.645879pt;}
.y24f{bottom:429.980572pt;}
.y23f{bottom:430.015239pt;}
.yb{bottom:430.990669pt;}
.y130{bottom:436.141075pt;}
.y10c{bottom:442.912137pt;}
.y6e{bottom:442.912151pt;}
.y17d{bottom:442.912159pt;}
.y208{bottom:442.912283pt;}
.y1de{bottom:442.912288pt;}
.y1c6{bottom:442.912300pt;}
.y3c{bottom:442.912476pt;}
.y26c{bottom:442.912523pt;}
.yae{bottom:442.912539pt;}
.ye3{bottom:444.512411pt;}
.ya{bottom:446.990669pt;}
.y12f{bottom:453.364260pt;}
.y24e{bottom:458.329239pt;}
.y23e{bottom:458.589239pt;}
.y6d{bottom:459.178792pt;}
.y10b{bottom:459.178797pt;}
.y17c{bottom:459.178819pt;}
.y207{bottom:459.178943pt;}
.y1dd{bottom:459.178948pt;}
.y1c5{bottom:459.178960pt;}
.y3b{bottom:459.179136pt;}
.y26b{bottom:459.179183pt;}
.yad{bottom:459.179199pt;}
.ye2{bottom:460.512411pt;}
.y9{bottom:462.990669pt;}
.y12e{bottom:470.656809pt;}
.y10a{bottom:475.445331pt;}
.y17b{bottom:475.445352pt;}
.y6c{bottom:475.445475pt;}
.y206{bottom:475.445603pt;}
.y1dc{bottom:475.445608pt;}
.y1c4{bottom:475.445620pt;}
.y162{bottom:475.445719pt;}
.y3a{bottom:475.445796pt;}
.y26a{bottom:475.445843pt;}
.yac{bottom:475.445883pt;}
.y8{bottom:478.990666pt;}
.y23d{bottom:480.845239pt;}
.y24d{bottom:486.677905pt;}
.y12d{bottom:487.414676pt;}
.y23c{bottom:491.245239pt;}
.y109{bottom:491.712117pt;}
.y17a{bottom:491.712139pt;}
.y205{bottom:491.712263pt;}
.y1db{bottom:491.712268pt;}
.y1c3{bottom:491.712280pt;}
.y39{bottom:491.712456pt;}
.y269{bottom:491.712503pt;}
.yab{bottom:491.712583pt;}
.y7{bottom:494.990666pt;}
.y12c{bottom:504.422556pt;}
.y179{bottom:507.978799pt;}
.y6b{bottom:507.978800pt;}
.y108{bottom:507.978811pt;}
.y1c2{bottom:507.978923pt;}
.y1da{bottom:507.978928pt;}
.y38{bottom:507.979116pt;}
.y268{bottom:507.979163pt;}
.yaa{bottom:507.979243pt;}
.y23b{bottom:509.193905pt;}
.y161{bottom:514.216652pt;}
.y153{bottom:514.260003pt;}
.y24c{bottom:515.026572pt;}
.y23a{bottom:519.593905pt;}
.y12b{bottom:521.180423pt;}
.y6a{bottom:524.245411pt;}
.y178{bottom:524.245459pt;}
.y107{bottom:524.245471pt;}
.y1c1{bottom:524.245588pt;}
.y204{bottom:524.245667pt;}
.y37{bottom:524.245776pt;}
.y267{bottom:524.245823pt;}
.ya9{bottom:524.245903pt;}
.y239{bottom:537.542572pt;}
.y12a{bottom:538.403736pt;}
.y160{bottom:538.786652pt;}
.y152{bottom:538.830003pt;}
.ye1{bottom:540.327627pt;}
.y69{bottom:540.512071pt;}
.y177{bottom:540.512119pt;}
.y106{bottom:540.512131pt;}
.y1c0{bottom:540.512248pt;}
.y203{bottom:540.512327pt;}
.y36{bottom:540.512436pt;}
.y266{bottom:540.512483pt;}
.ya8{bottom:540.512563pt;}
.y24b{bottom:543.375239pt;}
.y238{bottom:547.942572pt;}
.ye0{bottom:552.327633pt;}
.y129{bottom:555.661583pt;}
.y176{bottom:556.778652pt;}
.y105{bottom:556.778664pt;}
.y68{bottom:556.778731pt;}
.y202{bottom:556.778987pt;}
.y265{bottom:556.779143pt;}
.y35{bottom:556.779223pt;}
.y15f{bottom:563.356652pt;}
.y151{bottom:563.400003pt;}
.ydf{bottom:564.327640pt;}
.y237{bottom:565.891239pt;}
.y24a{bottom:571.723905pt;}
.y67{bottom:573.045391pt;}
.y175{bottom:573.045439pt;}
.y104{bottom:573.045451pt;}
.y201{bottom:573.045647pt;}
.y34{bottom:573.045756pt;}
.y264{bottom:573.045803pt;}
.ya7{bottom:573.045883pt;}
.y6{bottom:573.786667pt;}
.y128{bottom:575.373335pt;}
.y236{bottom:576.291239pt;}
.yde{bottom:576.327549pt;}
.y15e{bottom:587.926652pt;}
.y150{bottom:587.970003pt;}
.ydd{bottom:588.327556pt;}
.y66{bottom:589.312051pt;}
.y174{bottom:589.312099pt;}
.y103{bottom:589.312157pt;}
.y200{bottom:589.312307pt;}
.y33{bottom:589.312416pt;}
.y263{bottom:589.312463pt;}
.ya6{bottom:589.312543pt;}
.y5{bottom:592.685334pt;}
.y235{bottom:594.239905pt;}
.y127{bottom:599.045736pt;}
.y249{bottom:600.072572pt;}
.ydc{bottom:600.327563pt;}
.y234{bottom:604.639905pt;}
.y65{bottom:605.578711pt;}
.y173{bottom:605.578759pt;}
.y102{bottom:605.578817pt;}
.y20d{bottom:605.578939pt;}
.y1ff{bottom:605.578967pt;}
.y32{bottom:605.579076pt;}
.y262{bottom:605.579123pt;}
.ya5{bottom:605.579203pt;}
.ydb{bottom:612.327569pt;}
.y15d{bottom:612.496652pt;}
.y14f{bottom:612.540003pt;}
.y126{bottom:615.045736pt;}
.y172{bottom:621.845419pt;}
.y101{bottom:621.845459pt;}
.y64{bottom:621.845497pt;}
.y1fe{bottom:621.845627pt;}
.y31{bottom:621.845736pt;}
.ya4{bottom:621.845863pt;}
.y261{bottom:621.845909pt;}
.y233{bottom:622.805239pt;}
.yda{bottom:624.327576pt;}
.y248{bottom:628.421239pt;}
.y232{bottom:633.205239pt;}
.yd9{bottom:636.327583pt;}
.y15c{bottom:637.066652pt;}
.y14e{bottom:637.110003pt;}
.y100{bottom:638.111943pt;}
.y171{bottom:638.111952pt;}
.y63{bottom:638.112157pt;}
.y1fd{bottom:638.112287pt;}
.y30{bottom:638.112523pt;}
.y260{bottom:638.112569pt;}
.y226{bottom:640.634929pt;}
.yd8{bottom:648.327589pt;}
.y225{bottom:653.450115pt;}
.yff{bottom:654.378729pt;}
.y170{bottom:654.378739pt;}
.y62{bottom:654.378817pt;}
.y1fc{bottom:654.378947pt;}
.y2f{bottom:654.379056pt;}
.ya3{bottom:654.379183pt;}
.y25f{bottom:654.379229pt;}
.y247{bottom:656.769905pt;}
.y231{bottom:657.021239pt;}
.yd7{bottom:660.327596pt;}
.y15b{bottom:661.636652pt;}
.y14d{bottom:661.680003pt;}
.y224{bottom:666.265220pt;}
.y3{bottom:668.977329pt;}
.yfe{bottom:670.645389pt;}
.y16f{bottom:670.645399pt;}
.y61{bottom:670.645477pt;}
.y1fb{bottom:670.645659pt;}
.y2e{bottom:670.645716pt;}
.ye5{bottom:670.645752pt;}
.ya2{bottom:670.645843pt;}
.y25e{bottom:670.645889pt;}
.yd6{bottom:672.327624pt;}
.yd5{bottom:684.327631pt;}
.y246{bottom:685.118572pt;}
.y230{bottom:685.309239pt;}
.y15a{bottom:686.206652pt;}
.y14c{bottom:686.250003pt;}
.yfd{bottom:686.912049pt;}
.y16e{bottom:686.912059pt;}
.y60{bottom:686.912137pt;}
.y1fa{bottom:686.912319pt;}
.y2d{bottom:686.912376pt;}
.ya1{bottom:686.912503pt;}
.y25d{bottom:686.912549pt;}
.yd4{bottom:696.327637pt;}
.y223{bottom:700.380969pt;}
.y21e{bottom:700.389636pt;}
.y219{bottom:700.398303pt;}
.y214{bottom:700.406969pt;}
.yef{bottom:700.768148pt;}
.yfc{bottom:703.178583pt;}
.y16d{bottom:703.178592pt;}
.y5f{bottom:703.178797pt;}
.y1f9{bottom:703.178979pt;}
.y2c{bottom:703.179036pt;}
.ya0{bottom:703.179163pt;}
.y25c{bottom:703.179209pt;}
.yd3{bottom:708.327528pt;}
.y159{bottom:710.776652pt;}
.y14b{bottom:710.820003pt;}
.y245{bottom:713.467239pt;}
.y22f{bottom:713.493239pt;}
.y16c{bottom:719.445252pt;}
.yfb{bottom:719.445369pt;}
.y5e{bottom:719.445457pt;}
.y1f8{bottom:719.445639pt;}
.y2b{bottom:719.445823pt;}
.y25b{bottom:719.445869pt;}
.yea{bottom:726.467367pt;}
.yd2{bottom:727.886675pt;}
.y222{bottom:730.618969pt;}
.y21d{bottom:730.627636pt;}
.y218{bottom:730.636303pt;}
.y213{bottom:730.644969pt;}
.y158{bottom:735.346652pt;}
.y14a{bottom:735.390003pt;}
.y5d{bottom:735.712117pt;}
.yfa{bottom:735.712156pt;}
.y16b{bottom:735.712165pt;}
.y8b{bottom:735.712240pt;}
.y2a{bottom:735.712356pt;}
.y25a{bottom:735.712529pt;}
.y9f{bottom:735.712609pt;}
.yd1{bottom:739.886681pt;}
.y244{bottom:741.815905pt;}
.y22e{bottom:742.067239pt;}
.yd0{bottom:751.886591pt;}
.y5c{bottom:751.978777pt;}
.yf9{bottom:751.978816pt;}
.y16a{bottom:751.978825pt;}
.y29{bottom:751.979143pt;}
.y259{bottom:751.979189pt;}
.y9e{bottom:751.979269pt;}
.y157{bottom:759.916652pt;}
.y149{bottom:759.960003pt;}
.y221{bottom:760.856969pt;}
.y21c{bottom:760.865636pt;}
.y217{bottom:760.874303pt;}
.y212{bottom:760.882969pt;}
.ycf{bottom:763.886597pt;}
.y22d{bottom:764.548572pt;}
.y5b{bottom:768.245437pt;}
.yf8{bottom:768.245476pt;}
.y169{bottom:768.245485pt;}
.y1f7{bottom:768.245605pt;}
.y28{bottom:768.245803pt;}
.y258{bottom:768.245849pt;}
.y9d{bottom:768.245929pt;}
.y243{bottom:770.164572pt;}
.y22c{bottom:774.948572pt;}
.yce{bottom:775.886604pt;}
.y8a{bottom:776.912312pt;}
.yec{bottom:780.079367pt;}
.y2{bottom:781.661334pt;}
.y156{bottom:784.486652pt;}
.yf7{bottom:784.512009pt;}
.y168{bottom:784.512019pt;}
.y5a{bottom:784.512097pt;}
.y1f6{bottom:784.512288pt;}
.y27{bottom:784.512463pt;}
.y257{bottom:784.512555pt;}
.y9c{bottom:784.512589pt;}
.y148{bottom:784.530003pt;}
.ycd{bottom:787.886611pt;}
.y220{bottom:791.094969pt;}
.y21b{bottom:791.103636pt;}
.y216{bottom:791.112303pt;}
.y211{bottom:791.120969pt;}
.y22b{bottom:792.671905pt;}
.y89{bottom:792.912272pt;}
.yeb{bottom:796.598033pt;}
.y242{bottom:798.513239pt;}
.ycc{bottom:799.886617pt;}
.yf6{bottom:800.778669pt;}
.y167{bottom:800.778679pt;}
.y59{bottom:800.778757pt;}
.y1f5{bottom:800.778972pt;}
.y256{bottom:800.779215pt;}
.y26{bottom:800.779249pt;}
.y22a{bottom:803.071905pt;}
.y88{bottom:808.912272pt;}
.y155{bottom:809.056652pt;}
.y147{bottom:809.100003pt;}
.ycb{bottom:811.886624pt;}
.y58{bottom:817.045417pt;}
.yf5{bottom:817.045456pt;}
.y166{bottom:817.045465pt;}
.y1f4{bottom:817.045565pt;}
.y25{bottom:817.045783pt;}
.y9b{bottom:817.045909pt;}
.y229{bottom:821.020572pt;}
.y21f{bottom:821.332969pt;}
.y21a{bottom:821.341636pt;}
.y215{bottom:821.350303pt;}
.y210{bottom:821.358969pt;}
.yca{bottom:823.886631pt;}
.yee{bottom:825.978033pt;}
.y241{bottom:826.861905pt;}
.y228{bottom:831.420572pt;}
.y57{bottom:833.312077pt;}
.yf4{bottom:833.312116pt;}
.y165{bottom:833.312125pt;}
.y1f3{bottom:833.312225pt;}
.y24{bottom:833.312443pt;}
.y9a{bottom:833.312569pt;}
.y255{bottom:833.312592pt;}
.y154{bottom:833.626652pt;}
.y146{bottom:833.670003pt;}
.yc9{bottom:835.886637pt;}
.yed{bottom:838.830700pt;}
.yc8{bottom:847.886637pt;}
.y56{bottom:849.578737pt;}
.yf3{bottom:849.578776pt;}
.y164{bottom:849.578785pt;}
.y1f2{bottom:849.578885pt;}
.y87{bottom:849.579005pt;}
.y23{bottom:849.579103pt;}
.y99{bottom:849.579229pt;}
.y254{bottom:849.579252pt;}
.y1{bottom:859.312000pt;}
.yf2{bottom:865.845296pt;}
.y163{bottom:865.845319pt;}
.y55{bottom:865.845397pt;}
.y1f1{bottom:865.845545pt;}
.y22{bottom:865.845763pt;}
.y98{bottom:865.845889pt;}
.y253{bottom:865.845912pt;}
.yc7{bottom:867.445639pt;}
.y86{bottom:873.979085pt;}
.yf1{bottom:882.111979pt;}
.y54{bottom:882.112057pt;}
.y1f0{bottom:882.112205pt;}
.y21{bottom:882.112549pt;}
.y252{bottom:882.112572pt;}
.yc6{bottom:883.445639pt;}
.y125{bottom:883.712240pt;}
.y20f{bottom:883.712403pt;}
.yf0{bottom:898.378825pt;}
.y1ef{bottom:898.378865pt;}
.y251{bottom:898.379232pt;}
.y124{bottom:899.712240pt;}
.y20e{bottom:899.712403pt;}
.y1bf{bottom:954.679443pt;}
.y8d{bottom:954.679444pt;}
.y145{bottom:954.679445pt;}
.h17{height:24.676800pt;}
.h11{height:28.448000pt;}
.h7{height:28.560000pt;}
.h19{height:28.757333pt;}
.h13{height:30.818667pt;}
.h22{height:31.338667pt;}
.h1e{height:33.237333pt;}
.h12{height:33.749333pt;}
.h1c{height:34.374667pt;}
.h1b{height:34.954667pt;}
.h1d{height:34.955104pt;}
.h1f{height:38.168000pt;}
.h1a{height:38.570667pt;}
.ha{height:40.482667pt;}
.h6{height:40.800000pt;}
.h10{height:42.672000pt;}
.h3{height:42.840000pt;}
.hf{height:43.392000pt;}
.h20{height:45.517333pt;}
.hc{height:45.802667pt;}
.h18{height:46.863899pt;}
.hb{height:46.863904pt;}
.h23{height:46.863920pt;}
.hd{height:46.863984pt;}
.h24{height:46.864064pt;}
.h2{height:48.960000pt;}
.h16{height:49.573333pt;}
.h14{height:58.933333pt;}
.h21{height:60.181333pt;}
.h5{height:69.360000pt;}
.he{height:86.784000pt;}
.h15{height:87.082667pt;}
.h4{height:105.826671pt;}
.h9{height:982.666667pt;}
.h8{height:982.677333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:18.897599pt;}
.x35{left:36.734519pt;}
.xa{left:37.795199pt;}
.x38{left:38.929117pt;}
.x21{left:45.206933pt;}
.x37{left:46.340800pt;}
.x1b{left:48.850397pt;}
.x23{left:52.976436pt;}
.x1a{left:56.757203pt;}
.x39{left:63.480000pt;}
.x31{left:66.601127pt;}
.x14{left:67.727864pt;}
.x15{left:86.625439pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x45{left:98.267069pt;}
.x20{left:101.312937pt;}
.x1c{left:111.320800pt;}
.x1e{left:121.824800pt;}
.x4{left:180.874667pt;}
.x3a{left:201.938667pt;}
.x3b{left:203.654667pt;}
.x3c{left:207.086667pt;}
.x3d{left:212.234667pt;}
.x1d{left:238.989467pt;}
.x22{left:256.506975pt;}
.x36{left:271.955329pt;}
.x5{left:273.147075pt;}
.x6{left:291.979879pt;}
.x32{left:302.006925pt;}
.x33{left:303.448128pt;}
.x1f{left:314.588800pt;}
.x17{left:322.562663pt;}
.x16{left:330.036804pt;}
.x13{left:341.291341pt;}
.x3e{left:342.555333pt;}
.x3f{left:345.987333pt;}
.x40{left:347.694667pt;}
.x12{left:358.877848pt;}
.x47{left:360.140516pt;}
.x26{left:361.414123pt;}
.x24{left:366.224123pt;}
.x49{left:368.477849pt;}
.x25{left:370.557456pt;}
.x4e{left:371.857849pt;}
.xd{left:374.982137pt;}
.xc{left:379.090128pt;}
.x50{left:380.021849pt;}
.x48{left:382.431183pt;}
.xe{left:383.917487pt;}
.x52{left:384.875183pt;}
.x43{left:392.622667pt;}
.x4b{left:393.689183pt;}
.x41{left:395.708000pt;}
.x42{left:397.424000pt;}
.x44{left:399.148667pt;}
.x3{left:404.408000pt;}
.x4a{left:410.875183pt;}
.x30{left:416.655447pt;}
.x4d{left:420.174516pt;}
.x54{left:427.879183pt;}
.x2f{left:431.726781pt;}
.x53{left:436.398516pt;}
.x51{left:443.123849pt;}
.x2e{left:446.798114pt;}
.x4c{left:448.895849pt;}
.x46{left:451.790516pt;}
.x4f{left:460.630516pt;}
.x2d{left:476.932114pt;}
.x2c{left:492.003447pt;}
.x5d{left:495.245174pt;}
.x5c{left:499.006507pt;}
.x5b{left:506.529174pt;}
.x9{left:507.546028pt;}
.x7{left:508.788017pt;}
.x5e{left:510.299174pt;}
.x2b{left:522.137447pt;}
.x8{left:527.570404pt;}
.x5a{left:532.875841pt;}
.x34{left:539.411867pt;}
.x59{left:540.398507pt;}
.x10{left:546.434821pt;}
.x2a{left:552.271447pt;}
.x58{left:555.452507pt;}
.x29{left:582.405447pt;}
.x57{left:608.137174pt;}
.x19{left:618.534260pt;}
.x56{left:623.191174pt;}
.x28{left:627.610781pt;}
.x27{left:642.682114pt;}
.xf{left:686.280154pt;}
.x55{left:690.929841pt;}
.x11{left:697.616154pt;}
.x18{left:761.459228pt;}
}




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