
    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_60300183bdce291bc0a328d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_98dd379358144d4187c594d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_4134f4fb889e8cc7c285cc60.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119286;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_38584d92c31d59097cdb03fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.885000;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_7e6d0815353234e9d64af3d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951000;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_b920aadb9a0bbadb16782c1c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_98dd379358144d4187c594d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_34fa64397d418f23dce9bc32.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.138184;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_83f567446c2ed69beb448f31.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_bb9cd163552cb0adba9d9a1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.705078;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_d61fe8c53ef6698b3717cd5b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.113770;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_609aeeaf4e52c5032a6aa3d5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.742000;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_8851778ad0d1dcc3a963f79f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.953000;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_4134f4fb889e8cc7c285cc60.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.119286;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_e18f0472cece29afe2eafcf9.woff2')format("woff");}.fff{font-family:fff;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.350000px;}
.v3{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.512500px;}
.v2{vertical-align:19.168500px;}
.ls6e{letter-spacing:-2.340000px;}
.ls4b{letter-spacing:-1.290000px;}
.ls56{letter-spacing:-1.225500px;}
.ls5c{letter-spacing:-1.170000px;}
.ls6{letter-spacing:-0.960000px;}
.ls7d{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.840000px;}
.ls59{letter-spacing:-0.838500px;}
.ls4{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.645000px;}
.ls52{letter-spacing:-0.585000px;}
.ls5{letter-spacing:-0.528000px;}
.ls46{letter-spacing:-0.525000px;}
.ls50{letter-spacing:-0.468000px;}
.ls63{letter-spacing:-0.451500px;}
.ls55{letter-spacing:-0.380250px;}
.ls51{letter-spacing:-0.351000px;}
.ls45{letter-spacing:-0.341250px;}
.ls15{letter-spacing:-0.322500px;}
.ls22{letter-spacing:-0.258000px;}
.ls1e{letter-spacing:-0.209625px;}
.ls21{letter-spacing:-0.193500px;}
.ls1d{letter-spacing:-0.129000px;}
.ls53{letter-spacing:-0.117000px;}
.ls49{letter-spacing:-0.064500px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000300px;}
.ls62{letter-spacing:0.000900px;}
.ls6c{letter-spacing:0.008400px;}
.ls6b{letter-spacing:0.009000px;}
.ls73{letter-spacing:0.009300px;}
.ls61{letter-spacing:0.009600px;}
.ls74{letter-spacing:0.009900px;}
.ls64{letter-spacing:0.010200px;}
.ls75{letter-spacing:0.018300px;}
.ls76{letter-spacing:0.018600px;}
.ls3e{letter-spacing:0.034125px;}
.ls13{letter-spacing:0.052500px;}
.ls24{letter-spacing:0.058500px;}
.ls1a{letter-spacing:0.064500px;}
.ls3a{letter-spacing:0.068250px;}
.ls40{letter-spacing:0.073500px;}
.ls11{letter-spacing:0.080100px;}
.ls1f{letter-spacing:0.102375px;}
.ls36{letter-spacing:0.105000px;}
.lsd{letter-spacing:0.116100px;}
.ls25{letter-spacing:0.117000px;}
.ls2d{letter-spacing:0.125775px;}
.ls10{letter-spacing:0.129000px;}
.ls68{letter-spacing:0.137100px;}
.ls69{letter-spacing:0.137400px;}
.ls1c{letter-spacing:0.157500px;}
.ls70{letter-spacing:0.171000px;}
.ls29{letter-spacing:0.175500px;}
.ls6f{letter-spacing:0.180000px;}
.ls71{letter-spacing:0.180600px;}
.lsc{letter-spacing:0.193500px;}
.ls2c{letter-spacing:0.209625px;}
.lsa{letter-spacing:0.209700px;}
.ls4e{letter-spacing:0.234000px;}
.ls12{letter-spacing:0.258000px;}
.ls3d{letter-spacing:0.273000px;}
.ls4d{letter-spacing:0.292500px;}
.ls41{letter-spacing:0.315000px;}
.ls8{letter-spacing:0.322500px;}
.ls44{letter-spacing:0.335400px;}
.ls19{letter-spacing:0.341250px;}
.ls2b{letter-spacing:0.367500px;}
.ls23{letter-spacing:0.380250px;}
.lse{letter-spacing:0.387000px;}
.ls28{letter-spacing:0.409500px;}
.ls7c{letter-spacing:0.414000px;}
.ls3c{letter-spacing:0.419250px;}
.ls3b{letter-spacing:0.420000px;}
.ls7b{letter-spacing:0.423000px;}
.ls4c{letter-spacing:0.443625px;}
.ls2a{letter-spacing:0.451500px;}
.ls39{letter-spacing:0.461175px;}
.ls0{letter-spacing:0.462000px;}
.ls57{letter-spacing:0.468000px;}
.ls37{letter-spacing:0.472500px;}
.ls77{letter-spacing:0.477600px;}
.ls78{letter-spacing:0.478200px;}
.ls42{letter-spacing:0.511875px;}
.ls2e{letter-spacing:0.516000px;}
.ls14{letter-spacing:0.525000px;}
.ls9{letter-spacing:0.526500px;}
.ls5b{letter-spacing:0.546000px;}
.ls30{letter-spacing:0.577500px;}
.ls16{letter-spacing:0.580500px;}
.ls20{letter-spacing:0.585000px;}
.ls6d{letter-spacing:0.643500px;}
.ls1b{letter-spacing:0.645000px;}
.ls65{letter-spacing:0.646500px;}
.ls67{letter-spacing:0.646800px;}
.ls66{letter-spacing:0.658125px;}
.ls4a{letter-spacing:0.682500px;}
.ls35{letter-spacing:0.709500px;}
.ls34{letter-spacing:0.774000px;}
.ls3f{letter-spacing:0.787500px;}
.ls18{letter-spacing:0.838500px;}
.ls5a{letter-spacing:0.840000px;}
.ls4f{letter-spacing:0.877500px;}
.ls26{letter-spacing:0.903000px;}
.ls2f{letter-spacing:0.945000px;}
.lsb{letter-spacing:0.967500px;}
.ls58{letter-spacing:0.994500px;}
.ls32{letter-spacing:1.032000px;}
.ls38{letter-spacing:1.048125px;}
.ls7a{letter-spacing:1.053000px;}
.ls79{letter-spacing:1.077900px;}
.ls17{letter-spacing:1.161000px;}
.ls43{letter-spacing:1.225500px;}
.ls5f{letter-spacing:1.290000px;}
.ls5d{letter-spacing:1.354500px;}
.ls47{letter-spacing:1.419000px;}
.ls60{letter-spacing:1.483500px;}
.ls33{letter-spacing:1.612500px;}
.ls6a{letter-spacing:1.670400px;}
.ls5e{letter-spacing:2.193000px;}
.lsf{letter-spacing:2.773500px;}
.ls48{letter-spacing:3.741000px;}
.ls27{letter-spacing:4.773000px;}
.ls72{letter-spacing:6.356400px;}
.ls1{letter-spacing:12.510000px;}
.ls31{letter-spacing:13.125000px;}
.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;}
}
.wsc6{word-spacing:-16.447500px;}
.wsd0{word-spacing:-16.125000px;}
.ws89{word-spacing:-15.931500px;}
.ws7e{word-spacing:-15.802500px;}
.ws8a{word-spacing:-15.210000px;}
.ws142{word-spacing:-14.859000px;}
.ws9e{word-spacing:-14.625000px;}
.wsb7{word-spacing:-13.125000px;}
.ws39{word-spacing:-12.750000px;}
.ws141{word-spacing:-12.021750px;}
.ws130{word-spacing:-11.626875px;}
.wsd9{word-spacing:-11.529375px;}
.ws129{word-spacing:-10.968750px;}
.wsda{word-spacing:-10.942425px;}
.wsde{word-spacing:-10.900500px;}
.wsf0{word-spacing:-10.816650px;}
.wsc7{word-spacing:-10.690875px;}
.wsc8{word-spacing:-10.607025px;}
.ws18{word-spacing:-10.481250px;}
.ws7d{word-spacing:-10.271625px;}
.ws11a{word-spacing:-9.642750px;}
.ws9d{word-spacing:-9.506250px;}
.ws0{word-spacing:-9.324000px;}
.ws11f{word-spacing:-9.077250px;}
.wse5{word-spacing:-9.043125px;}
.ws100{word-spacing:-8.974875px;}
.ws59{word-spacing:-8.872500px;}
.wsdf{word-spacing:-8.804250px;}
.ws7f{word-spacing:-8.633625px;}
.wsdb{word-spacing:-8.599500px;}
.wse0{word-spacing:-8.565375px;}
.ws58{word-spacing:-8.531250px;}
.wsf1{word-spacing:-8.190000px;}
.ws7{word-spacing:-4.242000px;}
.ws127{word-spacing:-0.838500px;}
.ws94{word-spacing:-0.585000px;}
.wsd8{word-spacing:-0.525000px;}
.ws99{word-spacing:-0.380250px;}
.wsc4{word-spacing:-0.367500px;}
.ws5e{word-spacing:-0.258000px;}
.wsdd{word-spacing:-0.105000px;}
.ws4{word-spacing:0.000000px;}
.wsfb{word-spacing:0.058500px;}
.ws2b{word-spacing:0.064500px;}
.wscf{word-spacing:0.105000px;}
.ws111{word-spacing:0.117000px;}
.wsa7{word-spacing:0.129000px;}
.wsb1{word-spacing:0.175500px;}
.ws63{word-spacing:0.193500px;}
.wsc1{word-spacing:0.210000px;}
.wsb4{word-spacing:0.262500px;}
.ws113{word-spacing:0.292500px;}
.ws9a{word-spacing:0.315000px;}
.wsca{word-spacing:0.322500px;}
.ws13d{word-spacing:0.351000px;}
.ws116{word-spacing:0.380250px;}
.ws1f{word-spacing:0.387000px;}
.ws144{word-spacing:0.409500px;}
.ws56{word-spacing:0.420000px;}
.ws78{word-spacing:0.451500px;}
.ws106{word-spacing:0.468000px;}
.wsc0{word-spacing:0.516000px;}
.ws54{word-spacing:0.525000px;}
.ws96{word-spacing:0.526500px;}
.wsd{word-spacing:0.528000px;}
.ws6{word-spacing:0.546000px;}
.ws22{word-spacing:0.580500px;}
.wsb3{word-spacing:0.585000px;}
.wse4{word-spacing:0.630000px;}
.ws93{word-spacing:0.643500px;}
.wsbf{word-spacing:0.645000px;}
.ws8{word-spacing:0.672000px;}
.wsab{word-spacing:0.682500px;}
.ws12a{word-spacing:0.702000px;}
.ws31{word-spacing:0.709500px;}
.ws14{word-spacing:0.720000px;}
.wsad{word-spacing:0.760500px;}
.ws101{word-spacing:0.774000px;}
.wsb8{word-spacing:0.838500px;}
.wse{word-spacing:0.864000px;}
.ws6c{word-spacing:0.892500px;}
.wsac{word-spacing:0.903000px;}
.ws17{word-spacing:0.912000px;}
.ws70{word-spacing:0.967500px;}
.ws10f{word-spacing:0.994500px;}
.wsf8{word-spacing:1.032000px;}
.ws36{word-spacing:1.050000px;}
.wsd4{word-spacing:1.096500px;}
.wsc3{word-spacing:1.102500px;}
.wseb{word-spacing:1.111500px;}
.ws90{word-spacing:1.161000px;}
.ws12b{word-spacing:1.170000px;}
.ws73{word-spacing:1.225500px;}
.ws50{word-spacing:1.260000px;}
.ws12e{word-spacing:1.287000px;}
.ws83{word-spacing:1.290000px;}
.ws147{word-spacing:1.345500px;}
.ws2f{word-spacing:1.354500px;}
.ws123{word-spacing:1.365000px;}
.wsc{word-spacing:1.392000px;}
.wsfc{word-spacing:1.404000px;}
.ws65{word-spacing:1.470000px;}
.ws5a{word-spacing:1.483500px;}
.ws10d{word-spacing:1.521000px;}
.ws13{word-spacing:1.536000px;}
.ws7b{word-spacing:1.548000px;}
.wsfe{word-spacing:1.575000px;}
.ws13f{word-spacing:1.579500px;}
.ws6e{word-spacing:1.612500px;}
.wse8{word-spacing:1.627500px;}
.ws77{word-spacing:1.677000px;}
.ws38{word-spacing:1.680000px;}
.ws13c{word-spacing:1.696500px;}
.wsaf{word-spacing:1.741500px;}
.ws10a{word-spacing:1.785000px;}
.wsbe{word-spacing:1.806000px;}
.ws1c{word-spacing:1.813500px;}
.wsd1{word-spacing:1.870500px;}
.ws148{word-spacing:1.872000px;}
.wsce{word-spacing:1.890000px;}
.ws97{word-spacing:1.930500px;}
.ws5b{word-spacing:1.935000px;}
.ws108{word-spacing:1.942500px;}
.ws80{word-spacing:1.999500px;}
.ws57{word-spacing:2.047500px;}
.ws21{word-spacing:2.064000px;}
.ws51{word-spacing:2.100000px;}
.wsa4{word-spacing:2.106000px;}
.ws11{word-spacing:2.112000px;}
.ws7a{word-spacing:2.128500px;}
.wsa0{word-spacing:2.164500px;}
.ws44{word-spacing:2.193000px;}
.ws98{word-spacing:2.223000px;}
.ws45{word-spacing:2.257500px;}
.ws1d{word-spacing:2.281500px;}
.wsd6{word-spacing:2.310000px;}
.ws81{word-spacing:2.322000px;}
.wsae{word-spacing:2.340000px;}
.ws68{word-spacing:2.362500px;}
.ws4d{word-spacing:2.386500px;}
.wsa1{word-spacing:2.398500px;}
.ws53{word-spacing:2.415000px;}
.ws2e{word-spacing:2.451000px;}
.ws55{word-spacing:2.467500px;}
.ws5d{word-spacing:2.515500px;}
.wsf7{word-spacing:2.520000px;}
.ws10b{word-spacing:2.572500px;}
.ws1a{word-spacing:2.574000px;}
.ws74{word-spacing:2.580000px;}
.ws12{word-spacing:2.592000px;}
.ws9c{word-spacing:2.625000px;}
.ws103{word-spacing:2.632500px;}
.ws87{word-spacing:2.644500px;}
.ws118{word-spacing:2.677500px;}
.ws28{word-spacing:2.709000px;}
.wsd7{word-spacing:2.730000px;}
.ws102{word-spacing:2.749500px;}
.ws3b{word-spacing:2.773500px;}
.wsec{word-spacing:2.808000px;}
.ws126{word-spacing:2.835000px;}
.ws4a{word-spacing:2.838000px;}
.ws11e{word-spacing:2.887500px;}
.wse6{word-spacing:2.902500px;}
.ws115{word-spacing:2.925000px;}
.ws4f{word-spacing:2.940000px;}
.wsba{word-spacing:2.967000px;}
.ws139{word-spacing:2.983500px;}
.ws72{word-spacing:3.031500px;}
.wsa3{word-spacing:3.042000px;}
.ws91{word-spacing:3.096000px;}
.ws112{word-spacing:3.100500px;}
.ws66{word-spacing:3.150000px;}
.wsed{word-spacing:3.159000px;}
.ws75{word-spacing:3.160500px;}
.wsb{word-spacing:3.168000px;}
.ws145{word-spacing:3.217500px;}
.ws25{word-spacing:3.225000px;}
.ws9b{word-spacing:3.255000px;}
.wsf{word-spacing:3.264000px;}
.wsa5{word-spacing:3.276000px;}
.ws41{word-spacing:3.289500px;}
.ws13e{word-spacing:3.334500px;}
.ws121{word-spacing:3.354000px;}
.ws1e{word-spacing:3.393000px;}
.ws76{word-spacing:3.418500px;}
.ws4e{word-spacing:3.465000px;}
.wsfd{word-spacing:3.483000px;}
.ws114{word-spacing:3.510000px;}
.ws6b{word-spacing:3.517500px;}
.wse1{word-spacing:3.547500px;}
.ws52{word-spacing:3.570000px;}
.ws4b{word-spacing:3.612000px;}
.ws137{word-spacing:3.627000px;}
.ws67{word-spacing:3.675000px;}
.ws8b{word-spacing:3.676500px;}
.ws49{word-spacing:3.741000px;}
.ws109{word-spacing:3.780000px;}
.wsa{word-spacing:3.792000px;}
.wsf9{word-spacing:3.802500px;}
.ws3d{word-spacing:3.805500px;}
.ws35{word-spacing:3.832500px;}
.ws46{word-spacing:3.870000px;}
.ws131{word-spacing:3.919500px;}
.ws24{word-spacing:3.934500px;}
.wsff{word-spacing:3.937500px;}
.ws107{word-spacing:3.990000px;}
.ws8c{word-spacing:3.999000px;}
.wsa8{word-spacing:4.036500px;}
.ws2c{word-spacing:4.063500px;}
.wsef{word-spacing:4.095000px;}
.ws33{word-spacing:4.128000px;}
.wsaa{word-spacing:4.147500px;}
.wsa9{word-spacing:4.153500px;}
.ws4c{word-spacing:4.192500px;}
.wsb2{word-spacing:4.212000px;}
.wsdc{word-spacing:4.257000px;}
.ws117{word-spacing:4.321500px;}
.ws138{word-spacing:4.329000px;}
.ws7c{word-spacing:4.386000px;}
.wsd5{word-spacing:4.410000px;}
.wsf5{word-spacing:4.446000px;}
.wsd2{word-spacing:4.450500px;}
.wsb5{word-spacing:4.462500px;}
.ws6a{word-spacing:4.515000px;}
.ws120{word-spacing:4.563000px;}
.ws3c{word-spacing:4.579500px;}
.ws128{word-spacing:4.620000px;}
.ws135{word-spacing:4.621500px;}
.ws27{word-spacing:4.644000px;}
.ws5{word-spacing:4.662000px;}
.ws12d{word-spacing:4.680000px;}
.ws42{word-spacing:4.708500px;}
.wsf3{word-spacing:4.738500px;}
.ws92{word-spacing:4.773000px;}
.wse3{word-spacing:4.777500px;}
.ws134{word-spacing:4.797000px;}
.ws110{word-spacing:4.837500px;}
.wse9{word-spacing:4.855500px;}
.wsf6{word-spacing:4.902000px;}
.wsa6{word-spacing:4.914000px;}
.ws61{word-spacing:4.966500px;}
.ws146{word-spacing:4.972500px;}
.ws30{word-spacing:5.031000px;}
.ws124{word-spacing:5.040000px;}
.wsee{word-spacing:5.089500px;}
.ws14d{word-spacing:5.092500px;}
.ws32{word-spacing:5.095500px;}
.ws3e{word-spacing:5.160000px;}
.wsb6{word-spacing:5.197500px;}
.ws13b{word-spacing:5.206500px;}
.ws20{word-spacing:5.224500px;}
.ws14e{word-spacing:5.250000px;}
.wsea{word-spacing:5.265000px;}
.wscb{word-spacing:5.289000px;}
.wscc{word-spacing:5.353500px;}
.ws125{word-spacing:5.407500px;}
.ws48{word-spacing:5.418000px;}
.ws133{word-spacing:5.499000px;}
.wsc2{word-spacing:5.512500px;}
.ws10{word-spacing:5.520000px;}
.wsf2{word-spacing:5.547000px;}
.ws11c{word-spacing:5.557500px;}
.ws86{word-spacing:5.611500px;}
.ws37{word-spacing:5.617500px;}
.ws10e{word-spacing:5.674500px;}
.ws8f{word-spacing:5.676000px;}
.ws64{word-spacing:5.722500px;}
.ws60{word-spacing:5.740500px;}
.wsfa{word-spacing:5.791500px;}
.wse7{word-spacing:5.805000px;}
.ws15{word-spacing:5.808000px;}
.ws34{word-spacing:5.827500px;}
.ws9{word-spacing:5.856000px;}
.wsc9{word-spacing:5.869500px;}
.ws88{word-spacing:5.932500px;}
.ws6d{word-spacing:5.934000px;}
.ws29{word-spacing:5.998500px;}
.ws16{word-spacing:6.000000px;}
.wsa2{word-spacing:6.025500px;}
.ws14b{word-spacing:6.037500px;}
.ws2d{word-spacing:6.063000px;}
.ws12c{word-spacing:6.084000px;}
.wsc5{word-spacing:6.090000px;}
.wsd3{word-spacing:6.127500px;}
.ws104{word-spacing:6.142500px;}
.ws62{word-spacing:6.192000px;}
.ws143{word-spacing:6.201000px;}
.ws40{word-spacing:6.256500px;}
.ws12f{word-spacing:6.259500px;}
.ws149{word-spacing:6.318000px;}
.ws71{word-spacing:6.321000px;}
.wsf4{word-spacing:6.376500px;}
.ws5f{word-spacing:6.385500px;}
.ws136{word-spacing:6.435000px;}
.wsb9{word-spacing:6.450000px;}
.ws79{word-spacing:6.514500px;}
.ws105{word-spacing:6.552000px;}
.ws69{word-spacing:6.562500px;}
.ws6f{word-spacing:6.579000px;}
.ws13a{word-spacing:6.610500px;}
.ws26{word-spacing:6.643500px;}
.ws85{word-spacing:6.708000px;}
.wsb0{word-spacing:6.727500px;}
.ws3f{word-spacing:6.772500px;}
.ws119{word-spacing:6.837000px;}
.ws140{word-spacing:6.844500px;}
.ws95{word-spacing:6.903000px;}
.ws43{word-spacing:6.966000px;}
.ws14c{word-spacing:6.982500px;}
.ws11b{word-spacing:7.020000px;}
.wsbc{word-spacing:7.030500px;}
.ws132{word-spacing:7.137000px;}
.wse2{word-spacing:7.159500px;}
.wscd{word-spacing:7.224000px;}
.ws10c{word-spacing:7.254000px;}
.ws8d{word-spacing:7.288500px;}
.ws14a{word-spacing:7.297500px;}
.ws1b{word-spacing:7.312500px;}
.ws9f{word-spacing:7.353000px;}
.ws23{word-spacing:7.417500px;}
.ws82{word-spacing:7.546500px;}
.wsbb{word-spacing:7.611000px;}
.ws2a{word-spacing:7.740000px;}
.ws8e{word-spacing:7.804500px;}
.wsbd{word-spacing:7.869000px;}
.ws122{word-spacing:7.933500px;}
.ws84{word-spacing:7.998000px;}
.ws47{word-spacing:8.062500px;}
.ws5c{word-spacing:9.223500px;}
.ws3{word-spacing:10.656000px;}
.ws19{word-spacing:12.750000px;}
.ws11d{word-spacing:13.125000px;}
.ws2{word-spacing:13.344000px;}
.ws3a{word-spacing:1149.576000px;}
.ws1{word-spacing:1818.756000px;}
._7{margin-left:-14.940000px;}
._f{margin-left:-10.500000px;}
._5{margin-left:-9.324000px;}
._e{margin-left:-7.786800px;}
._3{margin-left:-6.006000px;}
._c{margin-left:-3.076650px;}
._b{margin-left:-1.225500px;}
._8{width:1.008000px;}
._12{width:2.204925px;}
._10{width:3.465000px;}
._1{width:4.674600px;}
._d{width:5.880000px;}
._0{width:7.056000px;}
._11{width:8.085300px;}
._a{width:9.292500px;}
._2{width:11.088000px;}
._4{width:12.264000px;}
._6{width:13.344000px;}
._9{width:869.585400px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.125000px;}
.fs8{font-size:38.025000px;}
.fsa{font-size:41.925000px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:43.875000px;}
.fs4{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsc{font-size:52.500000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:58.500000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:64.500000px;}
.fs2{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.647450px;}
.yc{bottom:105.467850px;}
.yb{bottom:117.469350px;}
.y7a{bottom:124.560150px;}
.y13c{bottom:124.565775px;}
.y97{bottom:124.571250px;}
.y14d{bottom:124.571400px;}
.y54{bottom:124.577025px;}
.y2ac{bottom:124.591800px;}
.y232{bottom:125.457375px;}
.y2d5{bottom:125.656200px;}
.yb0{bottom:128.520150px;}
.ya{bottom:133.716150px;}
.y1c5{bottom:138.947025px;}
.y79{bottom:138.958275px;}
.y13b{bottom:138.963900px;}
.y96{bottom:138.969375px;}
.y14c{bottom:138.969525px;}
.y251{bottom:138.975150px;}
.y2ab{bottom:141.030300px;}
.y2d4{bottom:141.977700px;}
.y53{bottom:142.912650px;}
.y231{bottom:143.049750px;}
.y9{bottom:147.838650px;}
.y15e{bottom:153.339525px;}
.y11b{bottom:153.345150px;}
.y52{bottom:153.350775px;}
.y78{bottom:153.356400px;}
.y13a{bottom:153.362025px;}
.y95{bottom:157.305000px;}
.yc3{bottom:157.305150px;}
.y2aa{bottom:157.473300px;}
.y2d3{bottom:158.299200px;}
.y230{bottom:160.642125px;}
.y8{bottom:164.092650px;}
.y94{bottom:167.731875px;}
.y15d{bottom:167.737650px;}
.y11a{bottom:167.743275px;}
.y51{bottom:167.748900px;}
.y77{bottom:167.754525px;}
.y139{bottom:171.697650px;}
.y2a9{bottom:173.911800px;}
.y2ee{bottom:174.617700px;}
.y2d2{bottom:174.619200px;}
.y7{bottom:175.275150px;}
.yaf{bottom:177.789075px;}
.y22f{bottom:178.234500px;}
.y228{bottom:180.997200px;}
.y16f{bottom:182.113275px;}
.y93{bottom:182.130000px;}
.y138{bottom:182.130150px;}
.y15c{bottom:182.135775px;}
.y119{bottom:182.141400px;}
.y50{bottom:182.147025px;}
.y279{bottom:182.540850px;}
.y250{bottom:182.975550px;}
.y76{bottom:186.090150px;}
.y1a1{bottom:189.051075px;}
.y6{bottom:190.710150px;}
.y2d1{bottom:190.936350px;}
.y2ed{bottom:190.937850px;}
.yae{bottom:195.381450px;}
.y22e{bottom:195.826875px;}
.y16e{bottom:196.511400px;}
.y92{bottom:196.528125px;}
.y137{bottom:196.528275px;}
.y75{bottom:196.533900px;}
.y118{bottom:196.539525px;}
.y4f{bottom:200.482650px;}
.y5{bottom:201.892650px;}
.y227{bottom:203.379150px;}
.y280{bottom:204.316350px;}
.y278{bottom:204.930900px;}
.y24f{bottom:205.357500px;}
.y2a8{bottom:206.299800px;}
.y1a0{bottom:206.713575px;}
.y2d0{bottom:207.257850px;}
.y16d{bottom:210.909525px;}
.y1fe{bottom:210.915150px;}
.y91{bottom:210.926250px;}
.y136{bottom:210.926400px;}
.y4e{bottom:210.932025px;}
.yad{bottom:212.973825px;}
.y4{bottom:213.075150px;}
.y22d{bottom:213.419250px;}
.yda{bottom:214.875150px;}
.y277{bottom:220.916025px;}
.y27f{bottom:221.908725px;}
.y2cf{bottom:223.579350px;}
.y19f{bottom:224.305950px;}
.y16c{bottom:225.307650px;}
.y1fd{bottom:225.313275px;}
.y117{bottom:225.318900px;}
.y90{bottom:225.324375px;}
.y135{bottom:225.324525px;}
.y14b{bottom:226.223025px;}
.y1f2{bottom:227.015250px;}
.y226{bottom:227.364150px;}
.y4d{bottom:229.267650px;}
.y24e{bottom:229.342500px;}
.y1d5{bottom:230.592525px;}
.yac{bottom:230.698200px;}
.yef{bottom:233.906250px;}
.y276{bottom:236.901150px;}
.y218{bottom:238.244700px;}
.y27e{bottom:239.501100px;}
.y16b{bottom:239.705775px;}
.y74{bottom:239.711400px;}
.y116{bottom:239.717025px;}
.y2ce{bottom:239.896200px;}
.y2ec{bottom:239.897700px;}
.y1af{bottom:240.982800px;}
.y19e{bottom:241.898325px;}
.y8f{bottom:243.660000px;}
.y4c{bottom:243.660150px;}
.y14a{bottom:243.815400px;}
.y1f1{bottom:244.607625px;}
.y24a{bottom:245.092575px;}
.y1d4{bottom:248.184900px;}
.y122{bottom:248.185275px;}
.yab{bottom:248.290575px;}
.yee{bottom:249.891375px;}
.y2a7{bottom:253.810500px;}
.y16a{bottom:254.103900px;}
.y8e{bottom:254.109375px;}
.y73{bottom:254.109525px;}
.y217{bottom:254.229825px;}
.y2cd{bottom:256.217700px;}
.y2eb{bottom:256.219200px;}
.y115{bottom:258.052650px;}
.y1ae{bottom:258.575175px;}
.y2d{bottom:259.307100px;}
.yd9{bottom:259.442400px;}
.y19d{bottom:259.490700px;}
.y275{bottom:260.881800px;}
.y149{bottom:261.407775px;}
.y1f0{bottom:262.200000px;}
.y249{bottom:262.684950px;}
.y1c4{bottom:264.323325px;}
.y1d3{bottom:265.777275px;}
.y121{bottom:265.777650px;}
.yed{bottom:265.876500px;}
.yaa{bottom:265.882950px;}
.y22c{bottom:266.205150px;}
.y273{bottom:268.490775px;}
.y114{bottom:268.502025px;}
.y101{bottom:269.104875px;}
.y216{bottom:270.214950px;}
.y2a6{bottom:270.249000px;}
.y8d{bottom:272.445000px;}
.y72{bottom:272.445150px;}
.y2ea{bottom:272.536350px;}
.y2cc{bottom:272.539200px;}
.yd8{bottom:275.427525px;}
.y1ad{bottom:276.167550px;}
.y19c{bottom:277.083075px;}
.y2c{bottom:277.679100px;}
.y148{bottom:279.008400px;}
.y1ef{bottom:279.792375px;}
.y248{bottom:280.277325px;}
.yec{bottom:281.861625px;}
.y1c3{bottom:281.915700px;}
.y8c{bottom:282.877500px;}
.y71{bottom:282.888900px;}
.y1d2{bottom:283.369650px;}
.y120{bottom:283.370025px;}
.yc2{bottom:283.376325px;}
.y28c{bottom:283.405200px;}
.ya9{bottom:283.475325px;}
.y187{bottom:283.487700px;}
.y100{bottom:285.090000px;}
.y2a5{bottom:286.687500px;}
.y113{bottom:286.837650px;}
.y22b{bottom:288.588825px;}
.y2cb{bottom:288.856350px;}
.y2e9{bottom:288.857850px;}
.y2b{bottom:290.423100px;}
.yd7{bottom:291.412650px;}
.y25f{bottom:291.431700px;}
.y4b{bottom:292.554900px;}
.y1ac{bottom:293.759925px;}
.y19b{bottom:294.675450px;}
.y147{bottom:296.600775px;}
.y8b{bottom:297.275625px;}
.y70{bottom:297.287025px;}
.y1ee{bottom:297.384750px;}
.yeb{bottom:297.846750px;}
.y247{bottom:297.869700px;}
.y1c2{bottom:299.508075px;}
.y27d{bottom:299.611725px;}
.y1d1{bottom:300.962025px;}
.y11f{bottom:300.962400px;}
.yc1{bottom:300.968700px;}
.y28b{bottom:300.997575px;}
.ya8{bottom:301.067700px;}
.yff{bottom:301.075125px;}
.y186{bottom:301.080075px;}
.y2a4{bottom:303.126000px;}
.y2a{bottom:303.167100px;}
.y215{bottom:303.804900px;}
.y22a{bottom:304.573950px;}
.y2ca{bottom:305.177850px;}
.y2e8{bottom:305.179350px;}
.yd6{bottom:307.397775px;}
.y25e{bottom:309.024075px;}
.y4a{bottom:310.147275px;}
.y1ab{bottom:311.352300px;}
.y8a{bottom:311.673750px;}
.y272{bottom:311.685150px;}
.y19a{bottom:312.267825px;}
.y27c{bottom:314.009850px;}
.y146{bottom:314.205525px;}
.y1ed{bottom:314.977125px;}
.y246{bottom:315.462075px;}
.y6f{bottom:315.622650px;}
.y29{bottom:315.911100px;}
.yfe{bottom:317.060250px;}
.y1c1{bottom:317.100450px;}
.y11e{bottom:318.554775px;}
.yc0{bottom:318.561075px;}
.y28a{bottom:318.589950px;}
.y1d0{bottom:318.590475px;}
.ya7{bottom:318.660075px;}
.y185{bottom:318.672450px;}
.y2a3{bottom:319.564500px;}
.y214{bottom:321.397275px;}
.y2e7{bottom:321.496200px;}
.y2c9{bottom:321.499350px;}
.yd5{bottom:323.382900px;}
.y1fc{bottom:324.994275px;}
.y89{bottom:326.071875px;}
.y25d{bottom:326.616450px;}
.y49{bottom:327.739650px;}
.y229{bottom:328.558950px;}
.y28{bottom:328.655100px;}
.y199{bottom:329.860200px;}
.yea{bottom:331.436700px;}
.y145{bottom:331.797900px;}
.y1ec{bottom:332.590125px;}
.yfd{bottom:333.045375px;}
.y245{bottom:333.054450px;}
.y1c0{bottom:334.692825px;}
.y2a2{bottom:336.003000px;}
.ybf{bottom:336.153450px;}
.y11d{bottom:336.155400px;}
.y134{bottom:336.178200px;}
.y289{bottom:336.182325px;}
.y1cf{bottom:336.182850px;}
.y169{bottom:336.219600px;}
.ya6{bottom:336.252450px;}
.y184{bottom:336.264825px;}
.y27b{bottom:336.391800px;}
.y2c8{bottom:337.816200px;}
.y2e6{bottom:337.817700px;}
.y213{bottom:339.043275px;}
.yd4{bottom:339.368025px;}
.y1fb{bottom:340.979400px;}
.y27{bottom:341.399100px;}
.y25c{bottom:344.208825px;}
.y88{bottom:344.407500px;}
.y48{bottom:345.332025px;}
.y198{bottom:347.452575px;}
.ye9{bottom:349.029075px;}
.yfc{bottom:349.030500px;}
.y144{bottom:349.390275px;}
.y1eb{bottom:350.182500px;}
.y244{bottom:350.646825px;}
.y1bf{bottom:352.285200px;}
.y2a1{bottom:352.441500px;}
.y6e{bottom:353.745825px;}
.y11c{bottom:353.747775px;}
.y271{bottom:353.759775px;}
.y133{bottom:353.770575px;}
.y288{bottom:353.774700px;}
.y1ce{bottom:353.775225px;}
.y15b{bottom:353.778975px;}
.y168{bottom:353.811975px;}
.ya5{bottom:353.844825px;}
.y183{bottom:353.857200px;}
.y2c7{bottom:354.137700px;}
.y2e5{bottom:354.139200px;}
.yd3{bottom:355.353150px;}
.y212{bottom:356.635650px;}
.y1fa{bottom:356.964525px;}
.y27a{bottom:360.376800px;}
.y25b{bottom:361.801200px;}
.y47{bottom:362.924400px;}
.y1aa{bottom:364.138050px;}
.yfb{bottom:365.015625px;}
.y197{bottom:365.044950px;}
.ye8{bottom:366.642075px;}
.y26{bottom:366.911100px;}
.y143{bottom:366.982650px;}
.y1ea{bottom:367.774875px;}
.y243{bottom:368.239200px;}
.y1be{bottom:369.877575px;}
.y2e4{bottom:370.456200px;}
.y2c6{bottom:370.459200px;}
.y6d{bottom:371.342475px;}
.y270{bottom:371.352150px;}
.y132{bottom:371.362950px;}
.y287{bottom:371.367075px;}
.y1cd{bottom:371.367600px;}
.y15a{bottom:371.371350px;}
.y167{bottom:371.404350px;}
.ya4{bottom:371.437200px;}
.y1f9{bottom:372.949650px;}
.y211{bottom:374.228025px;}
.y25a{bottom:379.393575px;}
.y25{bottom:379.655100px;}
.y46{bottom:380.516775px;}
.yfa{bottom:381.000750px;}
.y196{bottom:382.637325px;}
.ye7{bottom:384.234450px;}
.y1e9{bottom:385.367250px;}
.y242{bottom:385.831575px;}
.y2a0{bottom:386.449575px;}
.y1a9{bottom:386.521875px;}
.y2c5{bottom:386.777700px;}
.y1bd{bottom:387.469950px;}
.y112{bottom:388.942950px;}
.y26f{bottom:388.944525px;}
.y87{bottom:388.953000px;}
.ybe{bottom:388.955325px;}
.y286{bottom:388.959450px;}
.y1cc{bottom:388.959975px;}
.y159{bottom:388.963725px;}
.yd2{bottom:388.967700px;}
.y6c{bottom:388.984200px;}
.y166{bottom:388.996725px;}
.ya3{bottom:389.029575px;}
.y182{bottom:389.057625px;}
.y210{bottom:391.820400px;}
.y259{bottom:396.985950px;}
.y45{bottom:398.121525px;}
.y24{bottom:398.783100px;}
.y195{bottom:400.229700px;}
.ye6{bottom:401.826825px;}
.y1a8{bottom:402.507000px;}
.y1e8{bottom:402.959625px;}
.y2c4{bottom:403.099200px;}
.y241{bottom:403.423950px;}
.y181{bottom:405.042750px;}
.y1bc{bottom:405.062325px;}
.y111{bottom:406.535325px;}
.y86{bottom:406.545375px;}
.ybd{bottom:406.547700px;}
.y1f8{bottom:406.551825px;}
.y1cb{bottom:406.552350px;}
.y158{bottom:406.556100px;}
.y26e{bottom:406.557525px;}
.yd1{bottom:406.560075px;}
.y6b{bottom:406.576575px;}
.y165{bottom:406.589100px;}
.ya2{bottom:406.621950px;}
.y20f{bottom:409.412775px;}
.y23{bottom:411.527100px;}
.yf9{bottom:414.594825px;}
.y44{bottom:415.713900px;}
.y194{bottom:417.822075px;}
.y2e3{bottom:419.417850px;}
.ye5{bottom:419.419200px;}
.y2c3{bottom:419.419350px;}
.y142{bottom:419.751525px;}
.y1e7{bottom:420.552000px;}
.y180{bottom:421.027875px;}
.y1bb{bottom:422.654700px;}
.y85{bottom:424.137750px;}
.ybc{bottom:424.140075px;}
.y1f7{bottom:424.144200px;}
.y1ca{bottom:424.144725px;}
.y157{bottom:424.148475px;}
.y26d{bottom:424.149900px;}
.yd0{bottom:424.152450px;}
.y6a{bottom:424.168950px;}
.y164{bottom:424.181475px;}
.y110{bottom:424.189725px;}
.ya1{bottom:424.214325px;}
.y22{bottom:424.271100px;}
.y1a7{bottom:426.492000px;}
.y20e{bottom:427.005150px;}
.y258{bottom:432.184650px;}
.yf8{bottom:432.187200px;}
.y43{bottom:433.306275px;}
.y141{bottom:434.149650px;}
.y193{bottom:435.414450px;}
.y2c2{bottom:435.736200px;}
.y2e2{bottom:435.739350px;}
.ye4{bottom:437.011575px;}
.y17f{bottom:437.013000px;}
.y21{bottom:437.015100px;}
.y240{bottom:438.630150px;}
.y29f{bottom:439.355700px;}
.y1ba{bottom:440.247075px;}
.y84{bottom:441.730125px;}
.ybb{bottom:441.732450px;}
.y1f6{bottom:441.736575px;}
.y1c9{bottom:441.737100px;}
.y156{bottom:441.740850px;}
.y26c{bottom:441.742275px;}
.ycf{bottom:441.744825px;}
.y69{bottom:441.761325px;}
.y163{bottom:441.773850px;}
.y10f{bottom:441.782100px;}
.ya0{bottom:441.806700px;}
.y20d{bottom:444.597525px;}
.y257{bottom:448.169775px;}
.y140{bottom:448.547775px;}
.y20{bottom:449.759100px;}
.yf7{bottom:449.779575px;}
.y1a6{bottom:450.472650px;}
.y42{bottom:450.906900px;}
.y2e1{bottom:452.056200px;}
.y2c1{bottom:452.057700px;}
.y17e{bottom:452.998125px;}
.y192{bottom:453.006825px;}
.ye3{bottom:454.603950px;}
.y23f{bottom:454.615275px;}
.y1e6{bottom:455.773050px;}
.y29e{bottom:457.077075px;}
.y1b9{bottom:457.839450px;}
.yba{bottom:459.324825px;}
.y1f5{bottom:459.328950px;}
.y1c8{bottom:459.329475px;}
.y155{bottom:459.333225px;}
.y26b{bottom:459.334650px;}
.y83{bottom:459.334875px;}
.yce{bottom:459.337200px;}
.y68{bottom:459.353700px;}
.y162{bottom:459.366225px;}
.y10e{bottom:459.374475px;}
.y9f{bottom:459.399075px;}
.y20c{bottom:462.189900px;}
.y1f{bottom:462.503100px;}
.y13f{bottom:462.945900px;}
.y256{bottom:464.154900px;}
.yf6{bottom:467.376075px;}
.y2e0{bottom:468.377700px;}
.y2c0{bottom:468.379200px;}
.y41{bottom:468.499275px;}
.y17d{bottom:468.983250px;}
.y191{bottom:470.599200px;}
.y23e{bottom:470.600400px;}
.y1e5{bottom:471.758175px;}
.y24d{bottom:473.596800px;}
.y29d{bottom:474.798450px;}
.y1b8{bottom:475.431825px;}
.y1f4{bottom:476.921325px;}
.y154{bottom:476.925600px;}
.y26a{bottom:476.927025px;}
.y82{bottom:476.927250px;}
.ycd{bottom:476.929575px;}
.y67{bottom:476.946075px;}
.yb9{bottom:476.954325px;}
.y161{bottom:476.958600px;}
.y10d{bottom:476.966850px;}
.y131{bottom:476.979225px;}
.y9e{bottom:476.991450px;}
.y20b{bottom:479.782275px;}
.y255{bottom:480.140025px;}
.y2bf{bottom:484.697700px;}
.y2df{bottom:484.699200px;}
.yf5{bottom:484.968450px;}
.y13e{bottom:485.327700px;}
.y40{bottom:486.137025px;}
.y23d{bottom:486.585525px;}
.y1e4{bottom:487.743300px;}
.y1e{bottom:488.003100px;}
.y190{bottom:488.191575px;}
.ye2{bottom:489.808275px;}
.y29c{bottom:492.519825px;}
.y1b7{bottom:493.024200px;}
.y1c7{bottom:494.514225px;}
.y153{bottom:494.517975px;}
.y81{bottom:494.519625px;}
.ycc{bottom:494.521950px;}
.y269{bottom:494.527650px;}
.y285{bottom:494.534325px;}
.y66{bottom:494.538450px;}
.yb8{bottom:494.546700px;}
.y160{bottom:494.550975px;}
.y10c{bottom:494.559225px;}
.y130{bottom:494.571600px;}
.y9d{bottom:494.583825px;}
.y24c{bottom:495.978750px;}
.y254{bottom:496.125150px;}
.y20a{bottom:497.374650px;}
.y225{bottom:500.518650px;}
.y1d{bottom:500.747100px;}
.y2de{bottom:501.016200px;}
.y2be{bottom:501.019200px;}
.y23c{bottom:502.570650px;}
.y17c{bottom:502.589700px;}
.y1e3{bottom:503.728425px;}
.y3f{bottom:503.729400px;}
.y18f{bottom:505.783950px;}
.ye1{bottom:505.793400px;}
.y13d{bottom:509.312700px;}
.y29b{bottom:510.241200px;}
.y1b6{bottom:510.616575px;}
.y1c6{bottom:512.106600px;}
.ycb{bottom:512.114325px;}
.y268{bottom:512.120025px;}
.y284{bottom:512.126700px;}
.y65{bottom:512.130825px;}
.y80{bottom:512.136750px;}
.yb7{bottom:512.139075px;}
.y15f{bottom:512.143350px;}
.y10b{bottom:512.151600px;}
.y12f{bottom:512.163975px;}
.y9c{bottom:512.176200px;}
.y209{bottom:514.967025px;}
.y2bd{bottom:517.337700px;}
.y224{bottom:518.111025px;}
.y23b{bottom:518.555775px;}
.y1e2{bottom:519.713550px;}
.y1c{bottom:519.875100px;}
.y24b{bottom:519.963750px;}
.yf4{bottom:520.167150px;}
.y17b{bottom:520.182075px;}
.y3e{bottom:521.321775px;}
.ye0{bottom:521.778525px;}
.y29a{bottom:527.962575px;}
.y1b5{bottom:528.208950px;}
.y283{bottom:529.719075px;}
.y64{bottom:529.723200px;}
.y7f{bottom:529.729125px;}
.yb6{bottom:529.731450px;}
.yca{bottom:529.735725px;}
.y10a{bottom:529.743975px;}
.y267{bottom:529.752450px;}
.y12e{bottom:529.756350px;}
.y9b{bottom:529.768575px;}
.y208{bottom:532.559400px;}
.y1b{bottom:532.619100px;}
.y2bc{bottom:533.659200px;}
.y23a{bottom:534.540900px;}
.y1e1{bottom:535.698675px;}
.y223{bottom:535.703400px;}
.yf3{bottom:536.152275px;}
.ydf{bottom:537.763650px;}
.y17a{bottom:537.774450px;}
.y3d{bottom:538.914150px;}
.y18e{bottom:540.986400px;}
.y1a{bottom:545.363100px;}
.y299{bottom:545.683950px;}
.y282{bottom:547.311450px;}
.y63{bottom:547.315575px;}
.y7e{bottom:547.321500px;}
.yb5{bottom:547.323825px;}
.yc9{bottom:547.328100px;}
.y109{bottom:547.336350px;}
.y266{bottom:547.344825px;}
.y12d{bottom:547.348725px;}
.y9a{bottom:547.360950px;}
.y2bb{bottom:549.976200px;}
.y2dd{bottom:549.977700px;}
.y207{bottom:550.151775px;}
.y239{bottom:550.526025px;}
.y1e0{bottom:551.683800px;}
.yf2{bottom:552.137400px;}
.y222{bottom:553.295775px;}
.yde{bottom:553.748775px;}
.y179{bottom:555.366825px;}
.y3c{bottom:556.506525px;}
.y18d{bottom:556.971525px;}
.y19{bottom:558.107100px;}
.y298{bottom:563.405325px;}
.y1b4{bottom:563.417025px;}
.y281{bottom:564.903825px;}
.y62{bottom:564.907950px;}
.y7d{bottom:564.913875px;}
.yb4{bottom:564.916200px;}
.yc8{bottom:564.920475px;}
.y108{bottom:564.928725px;}
.y265{bottom:564.937200px;}
.y12c{bottom:564.941100px;}
.y99{bottom:564.953325px;}
.y2ba{bottom:566.297700px;}
.y2dc{bottom:566.299200px;}
.y238{bottom:566.511150px;}
.y1df{bottom:567.668925px;}
.y206{bottom:567.744150px;}
.yf1{bottom:568.122525px;}
.ydd{bottom:569.733900px;}
.y18{bottom:570.851100px;}
.y221{bottom:570.888150px;}
.y2f9{bottom:572.258700px;}
.y18c{bottom:572.956650px;}
.y178{bottom:572.959200px;}
.y3b{bottom:574.098900px;}
.y1b3{bottom:579.402150px;}
.y297{bottom:581.126700px;}
.y61{bottom:582.500325px;}
.y7c{bottom:582.506250px;}
.yb3{bottom:582.508575px;}
.yc7{bottom:582.512850px;}
.y107{bottom:582.521100px;}
.y264{bottom:582.529575px;}
.y12b{bottom:582.533475px;}
.y98{bottom:582.545700px;}
.y2b9{bottom:582.619200px;}
.y17{bottom:583.595100px;}
.y1de{bottom:583.654050px;}
.yf0{bottom:584.107650px;}
.ydc{bottom:585.719025px;}
.y2f8{bottom:586.656825px;}
.y220{bottom:588.480525px;}
.y18b{bottom:588.941775px;}
.y177{bottom:590.551575px;}
.y3a{bottom:591.691275px;}
.y1b2{bottom:595.387275px;}
.y296{bottom:598.848075px;}
.y2db{bottom:598.934850px;}
.y2b8{bottom:598.936350px;}
.y1dd{bottom:599.639175px;}
.y7b{bottom:600.098625px;}
.yb2{bottom:600.100950px;}
.yc6{bottom:600.105225px;}
.y106{bottom:600.113475px;}
.y263{bottom:600.121950px;}
.y12a{bottom:600.125850px;}
.y237{bottom:600.133950px;}
.y60{bottom:600.138075px;}
.y2f7{bottom:601.054950px;}
.ydb{bottom:601.704150px;}
.y205{bottom:602.957700px;}
.y18a{bottom:604.926900px;}
.y21f{bottom:606.072900px;}
.y176{bottom:608.143950px;}
.y39{bottom:609.283650px;}
.y1b1{bottom:611.372400px;}
.y2da{bottom:615.256350px;}
.y2b7{bottom:615.257850px;}
.y2f6{bottom:615.453075px;}
.y1dc{bottom:615.624300px;}
.y295{bottom:616.569450px;}
.yb1{bottom:617.693325px;}
.yc5{bottom:617.697600px;}
.y274{bottom:617.701575px;}
.y105{bottom:617.705850px;}
.y262{bottom:617.714325px;}
.y129{bottom:617.718225px;}
.y236{bottom:617.726325px;}
.y5f{bottom:617.730450px;}
.y204{bottom:618.942825px;}
.y189{bottom:620.912025px;}
.y21e{bottom:623.665275px;}
.y38{bottom:626.876025px;}
.y1b0{bottom:627.357525px;}
.y2f5{bottom:629.851200px;}
.y2d9{bottom:631.577850px;}
.y2b6{bottom:631.579350px;}
.y1db{bottom:631.609425px;}
.y294{bottom:634.290825px;}
.y203{bottom:634.927950px;}
.yc4{bottom:635.289975px;}
.y253{bottom:635.293950px;}
.y104{bottom:635.298225px;}
.y128{bottom:635.310600px;}
.y235{bottom:635.318700px;}
.y5e{bottom:635.322825px;}
.y188{bottom:636.897150px;}
.y16{bottom:640.331100px;}
.y21d{bottom:641.257650px;}
.y175{bottom:643.342650px;}
.y2f4{bottom:644.249325px;}
.y37{bottom:644.468400px;}
.y1da{bottom:647.594550px;}
.y2b5{bottom:647.894700px;}
.y2d8{bottom:647.899350px;}
.y202{bottom:650.913075px;}
.y293{bottom:652.012200px;}
.y252{bottom:652.886325px;}
.y103{bottom:652.890600px;}
.y261{bottom:652.899075px;}
.y127{bottom:652.902975px;}
.y1f3{bottom:652.906950px;}
.y234{bottom:652.911075px;}
.y5d{bottom:652.915200px;}
.y15{bottom:654.742950px;}
.y2f3{bottom:658.647450px;}
.y21c{bottom:658.850025px;}
.y174{bottom:659.327775px;}
.y36{bottom:662.060775px;}
.y1d9{bottom:663.579675px;}
.y2b4{bottom:664.216200px;}
.y201{bottom:666.898200px;}
.y292{bottom:669.733575px;}
.y102{bottom:670.482975px;}
.y260{bottom:670.491450px;}
.y126{bottom:670.495350px;}
.y1a5{bottom:670.499325px;}
.y233{bottom:670.503450px;}
.y5c{bottom:670.507575px;}
.y2f2{bottom:673.045575px;}
.y173{bottom:675.312900px;}
.y21b{bottom:676.442400px;}
.y14{bottom:678.712950px;}
.y1d8{bottom:679.564800px;}
.y35{bottom:679.653150px;}
.y2b3{bottom:680.537700px;}
.y200{bottom:682.883325px;}
.y291{bottom:687.454950px;}
.y125{bottom:688.087725px;}
.y1a4{bottom:688.091700px;}
.y152{bottom:688.095825px;}
.y5b{bottom:688.099950px;}
.y172{bottom:691.298025px;}
.y21a{bottom:694.034775px;}
.y1d7{bottom:695.549925px;}
.y2f1{bottom:696.237450px;}
.y2b2{bottom:696.859200px;}
.y13{bottom:697.897950px;}
.y1ff{bottom:698.868450px;}
.y290{bottom:705.176325px;}
.y124{bottom:705.680100px;}
.y1a3{bottom:705.684075px;}
.y151{bottom:705.688200px;}
.y5a{bottom:705.692325px;}
.y171{bottom:707.283150px;}
.y1d6{bottom:711.535050px;}
.y219{bottom:711.627150px;}
.y2b1{bottom:713.176200px;}
.y2d7{bottom:713.179350px;}
.y34{bottom:714.853575px;}
.y12{bottom:717.082950px;}
.y28f{bottom:722.897700px;}
.y123{bottom:723.272475px;}
.y1a2{bottom:723.276450px;}
.y150{bottom:723.280575px;}
.y59{bottom:723.284700px;}
.y2b0{bottom:729.497700px;}
.y2d6{bottom:729.499350px;}
.y33{bottom:730.838700px;}
.y28e{bottom:740.619075px;}
.y170{bottom:740.868825px;}
.y14f{bottom:740.872950px;}
.y58{bottom:740.877075px;}
.y2f0{bottom:745.817700px;}
.y2af{bottom:745.819200px;}
.y32{bottom:746.823825px;}
.y11{bottom:756.127950px;}
.y28d{bottom:758.340450px;}
.y14e{bottom:758.465325px;}
.y57{bottom:758.469450px;}
.y2ae{bottom:762.136200px;}
.y2ef{bottom:762.139200px;}
.y31{bottom:762.808950px;}
.y10{bottom:775.312950px;}
.y56{bottom:776.061825px;}
.y2ad{bottom:778.457700px;}
.y30{bottom:778.794075px;}
.y55{bottom:793.654200px;}
.yf{bottom:794.497950px;}
.y2f{bottom:794.779200px;}
.y2e{bottom:832.327200px;}
.y2{bottom:835.327800px;}
.y3{bottom:855.702900px;}
.ye{bottom:867.889350px;}
.yd{bottom:881.389350px;}
.h7{height:30.912000px;}
.h12{height:31.341064px;}
.h8{height:35.328000px;}
.h1b{height:37.957500px;}
.h5{height:38.388000px;}
.h6{height:41.130000px;}
.he{height:42.539062px;}
.hc{height:43.054688px;}
.h3{height:44.496000px;}
.hd{height:44.671875px;}
.hf{height:45.745605px;}
.h16{height:46.527100px;}
.h13{height:47.091064px;}
.h1c{height:48.667500px;}
.h2{height:51.127441px;}
.h18{height:51.844482px;}
.h10{height:52.472900px;}
.h1a{height:52.478300px;}
.h19{height:52.478900px;}
.h17{height:52.485500px;}
.hb{height:53.173828px;}
.ha{height:53.818359px;}
.h15{height:54.443848px;}
.h9{height:55.839844px;}
.h11{height:57.854736px;}
.h14{height:60.027832px;}
.h4{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xf{left:93.543300px;}
.x1{left:107.148450px;}
.x18{left:108.374700px;}
.x12{left:114.803100px;}
.x11{left:119.055150px;}
.x23{left:123.398025px;}
.x13{left:128.409450px;}
.x4{left:132.664650px;}
.x17{left:135.463500px;}
.x27{left:136.911525px;}
.x1f{left:141.087150px;}
.x20{left:143.112525px;}
.x19{left:147.382200px;}
.x10{left:151.093050px;}
.x22{left:154.693500px;}
.x15{left:164.699400px;}
.x5{left:167.305950px;}
.x6{left:172.930950px;}
.x1e{left:176.116050px;}
.x14{left:185.964150px;}
.x25{left:194.855775px;}
.x24{left:201.363900px;}
.x21{left:202.753275px;}
.xb{left:220.137750px;}
.x9{left:225.507750px;}
.x1d{left:228.761250px;}
.x1a{left:237.774075px;}
.x26{left:239.625600px;}
.x8{left:243.342750px;}
.xc{left:245.997750px;}
.x7{left:285.057750px;}
.x1c{left:306.746550px;}
.x16{left:320.352750px;}
.x1b{left:329.323050px;}
.xa{left:331.857750px;}
.xe{left:380.802900px;}
.xd{left:393.507750px;}
.x2{left:415.535250px;}
.x3{left:520.665750px;}
@media print{
.v4{vertical-align:-17.200000pt;}
.v3{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.566667pt;}
.v2{vertical-align:17.038667pt;}
.ls6e{letter-spacing:-2.080000pt;}
.ls4b{letter-spacing:-1.146667pt;}
.ls56{letter-spacing:-1.089333pt;}
.ls5c{letter-spacing:-1.040000pt;}
.ls6{letter-spacing:-0.853333pt;}
.ls7d{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.746667pt;}
.ls59{letter-spacing:-0.745333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.573333pt;}
.ls52{letter-spacing:-0.520000pt;}
.ls5{letter-spacing:-0.469333pt;}
.ls46{letter-spacing:-0.466667pt;}
.ls50{letter-spacing:-0.416000pt;}
.ls63{letter-spacing:-0.401333pt;}
.ls55{letter-spacing:-0.338000pt;}
.ls51{letter-spacing:-0.312000pt;}
.ls45{letter-spacing:-0.303333pt;}
.ls15{letter-spacing:-0.286667pt;}
.ls22{letter-spacing:-0.229333pt;}
.ls1e{letter-spacing:-0.186333pt;}
.ls21{letter-spacing:-0.172000pt;}
.ls1d{letter-spacing:-0.114667pt;}
.ls53{letter-spacing:-0.104000pt;}
.ls49{letter-spacing:-0.057333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000267pt;}
.ls62{letter-spacing:0.000800pt;}
.ls6c{letter-spacing:0.007467pt;}
.ls6b{letter-spacing:0.008000pt;}
.ls73{letter-spacing:0.008267pt;}
.ls61{letter-spacing:0.008533pt;}
.ls74{letter-spacing:0.008800pt;}
.ls64{letter-spacing:0.009067pt;}
.ls75{letter-spacing:0.016267pt;}
.ls76{letter-spacing:0.016533pt;}
.ls3e{letter-spacing:0.030333pt;}
.ls13{letter-spacing:0.046667pt;}
.ls24{letter-spacing:0.052000pt;}
.ls1a{letter-spacing:0.057333pt;}
.ls3a{letter-spacing:0.060667pt;}
.ls40{letter-spacing:0.065333pt;}
.ls11{letter-spacing:0.071200pt;}
.ls1f{letter-spacing:0.091000pt;}
.ls36{letter-spacing:0.093333pt;}
.lsd{letter-spacing:0.103200pt;}
.ls25{letter-spacing:0.104000pt;}
.ls2d{letter-spacing:0.111800pt;}
.ls10{letter-spacing:0.114667pt;}
.ls68{letter-spacing:0.121867pt;}
.ls69{letter-spacing:0.122133pt;}
.ls1c{letter-spacing:0.140000pt;}
.ls70{letter-spacing:0.152000pt;}
.ls29{letter-spacing:0.156000pt;}
.ls6f{letter-spacing:0.160000pt;}
.ls71{letter-spacing:0.160533pt;}
.lsc{letter-spacing:0.172000pt;}
.ls2c{letter-spacing:0.186333pt;}
.lsa{letter-spacing:0.186400pt;}
.ls4e{letter-spacing:0.208000pt;}
.ls12{letter-spacing:0.229333pt;}
.ls3d{letter-spacing:0.242667pt;}
.ls4d{letter-spacing:0.260000pt;}
.ls41{letter-spacing:0.280000pt;}
.ls8{letter-spacing:0.286667pt;}
.ls44{letter-spacing:0.298133pt;}
.ls19{letter-spacing:0.303333pt;}
.ls2b{letter-spacing:0.326667pt;}
.ls23{letter-spacing:0.338000pt;}
.lse{letter-spacing:0.344000pt;}
.ls28{letter-spacing:0.364000pt;}
.ls7c{letter-spacing:0.368000pt;}
.ls3c{letter-spacing:0.372667pt;}
.ls3b{letter-spacing:0.373333pt;}
.ls7b{letter-spacing:0.376000pt;}
.ls4c{letter-spacing:0.394333pt;}
.ls2a{letter-spacing:0.401333pt;}
.ls39{letter-spacing:0.409933pt;}
.ls0{letter-spacing:0.410667pt;}
.ls57{letter-spacing:0.416000pt;}
.ls37{letter-spacing:0.420000pt;}
.ls77{letter-spacing:0.424533pt;}
.ls78{letter-spacing:0.425067pt;}
.ls42{letter-spacing:0.455000pt;}
.ls2e{letter-spacing:0.458667pt;}
.ls14{letter-spacing:0.466667pt;}
.ls9{letter-spacing:0.468000pt;}
.ls5b{letter-spacing:0.485333pt;}
.ls30{letter-spacing:0.513333pt;}
.ls16{letter-spacing:0.516000pt;}
.ls20{letter-spacing:0.520000pt;}
.ls6d{letter-spacing:0.572000pt;}
.ls1b{letter-spacing:0.573333pt;}
.ls65{letter-spacing:0.574667pt;}
.ls67{letter-spacing:0.574933pt;}
.ls66{letter-spacing:0.585000pt;}
.ls4a{letter-spacing:0.606667pt;}
.ls35{letter-spacing:0.630667pt;}
.ls34{letter-spacing:0.688000pt;}
.ls3f{letter-spacing:0.700000pt;}
.ls18{letter-spacing:0.745333pt;}
.ls5a{letter-spacing:0.746667pt;}
.ls4f{letter-spacing:0.780000pt;}
.ls26{letter-spacing:0.802667pt;}
.ls2f{letter-spacing:0.840000pt;}
.lsb{letter-spacing:0.860000pt;}
.ls58{letter-spacing:0.884000pt;}
.ls32{letter-spacing:0.917333pt;}
.ls38{letter-spacing:0.931667pt;}
.ls7a{letter-spacing:0.936000pt;}
.ls79{letter-spacing:0.958133pt;}
.ls17{letter-spacing:1.032000pt;}
.ls43{letter-spacing:1.089333pt;}
.ls5f{letter-spacing:1.146667pt;}
.ls5d{letter-spacing:1.204000pt;}
.ls47{letter-spacing:1.261333pt;}
.ls60{letter-spacing:1.318667pt;}
.ls33{letter-spacing:1.433333pt;}
.ls6a{letter-spacing:1.484800pt;}
.ls5e{letter-spacing:1.949333pt;}
.lsf{letter-spacing:2.465333pt;}
.ls48{letter-spacing:3.325333pt;}
.ls27{letter-spacing:4.242667pt;}
.ls72{letter-spacing:5.650133pt;}
.ls1{letter-spacing:11.120000pt;}
.ls31{letter-spacing:11.666667pt;}
.wsc6{word-spacing:-14.620000pt;}
.wsd0{word-spacing:-14.333333pt;}
.ws89{word-spacing:-14.161333pt;}
.ws7e{word-spacing:-14.046667pt;}
.ws8a{word-spacing:-13.520000pt;}
.ws142{word-spacing:-13.208000pt;}
.ws9e{word-spacing:-13.000000pt;}
.wsb7{word-spacing:-11.666667pt;}
.ws39{word-spacing:-11.333333pt;}
.ws141{word-spacing:-10.686000pt;}
.ws130{word-spacing:-10.335000pt;}
.wsd9{word-spacing:-10.248333pt;}
.ws129{word-spacing:-9.750000pt;}
.wsda{word-spacing:-9.726600pt;}
.wsde{word-spacing:-9.689333pt;}
.wsf0{word-spacing:-9.614800pt;}
.wsc7{word-spacing:-9.503000pt;}
.wsc8{word-spacing:-9.428467pt;}
.ws18{word-spacing:-9.316667pt;}
.ws7d{word-spacing:-9.130333pt;}
.ws11a{word-spacing:-8.571333pt;}
.ws9d{word-spacing:-8.450000pt;}
.ws0{word-spacing:-8.288000pt;}
.ws11f{word-spacing:-8.068667pt;}
.wse5{word-spacing:-8.038333pt;}
.ws100{word-spacing:-7.977667pt;}
.ws59{word-spacing:-7.886667pt;}
.wsdf{word-spacing:-7.826000pt;}
.ws7f{word-spacing:-7.674333pt;}
.wsdb{word-spacing:-7.644000pt;}
.wse0{word-spacing:-7.613667pt;}
.ws58{word-spacing:-7.583333pt;}
.wsf1{word-spacing:-7.280000pt;}
.ws7{word-spacing:-3.770667pt;}
.ws127{word-spacing:-0.745333pt;}
.ws94{word-spacing:-0.520000pt;}
.wsd8{word-spacing:-0.466667pt;}
.ws99{word-spacing:-0.338000pt;}
.wsc4{word-spacing:-0.326667pt;}
.ws5e{word-spacing:-0.229333pt;}
.wsdd{word-spacing:-0.093333pt;}
.ws4{word-spacing:0.000000pt;}
.wsfb{word-spacing:0.052000pt;}
.ws2b{word-spacing:0.057333pt;}
.wscf{word-spacing:0.093333pt;}
.ws111{word-spacing:0.104000pt;}
.wsa7{word-spacing:0.114667pt;}
.wsb1{word-spacing:0.156000pt;}
.ws63{word-spacing:0.172000pt;}
.wsc1{word-spacing:0.186667pt;}
.wsb4{word-spacing:0.233333pt;}
.ws113{word-spacing:0.260000pt;}
.ws9a{word-spacing:0.280000pt;}
.wsca{word-spacing:0.286667pt;}
.ws13d{word-spacing:0.312000pt;}
.ws116{word-spacing:0.338000pt;}
.ws1f{word-spacing:0.344000pt;}
.ws144{word-spacing:0.364000pt;}
.ws56{word-spacing:0.373333pt;}
.ws78{word-spacing:0.401333pt;}
.ws106{word-spacing:0.416000pt;}
.wsc0{word-spacing:0.458667pt;}
.ws54{word-spacing:0.466667pt;}
.ws96{word-spacing:0.468000pt;}
.wsd{word-spacing:0.469333pt;}
.ws6{word-spacing:0.485333pt;}
.ws22{word-spacing:0.516000pt;}
.wsb3{word-spacing:0.520000pt;}
.wse4{word-spacing:0.560000pt;}
.ws93{word-spacing:0.572000pt;}
.wsbf{word-spacing:0.573333pt;}
.ws8{word-spacing:0.597333pt;}
.wsab{word-spacing:0.606667pt;}
.ws12a{word-spacing:0.624000pt;}
.ws31{word-spacing:0.630667pt;}
.ws14{word-spacing:0.640000pt;}
.wsad{word-spacing:0.676000pt;}
.ws101{word-spacing:0.688000pt;}
.wsb8{word-spacing:0.745333pt;}
.wse{word-spacing:0.768000pt;}
.ws6c{word-spacing:0.793333pt;}
.wsac{word-spacing:0.802667pt;}
.ws17{word-spacing:0.810667pt;}
.ws70{word-spacing:0.860000pt;}
.ws10f{word-spacing:0.884000pt;}
.wsf8{word-spacing:0.917333pt;}
.ws36{word-spacing:0.933333pt;}
.wsd4{word-spacing:0.974667pt;}
.wsc3{word-spacing:0.980000pt;}
.wseb{word-spacing:0.988000pt;}
.ws90{word-spacing:1.032000pt;}
.ws12b{word-spacing:1.040000pt;}
.ws73{word-spacing:1.089333pt;}
.ws50{word-spacing:1.120000pt;}
.ws12e{word-spacing:1.144000pt;}
.ws83{word-spacing:1.146667pt;}
.ws147{word-spacing:1.196000pt;}
.ws2f{word-spacing:1.204000pt;}
.ws123{word-spacing:1.213333pt;}
.wsc{word-spacing:1.237333pt;}
.wsfc{word-spacing:1.248000pt;}
.ws65{word-spacing:1.306667pt;}
.ws5a{word-spacing:1.318667pt;}
.ws10d{word-spacing:1.352000pt;}
.ws13{word-spacing:1.365333pt;}
.ws7b{word-spacing:1.376000pt;}
.wsfe{word-spacing:1.400000pt;}
.ws13f{word-spacing:1.404000pt;}
.ws6e{word-spacing:1.433333pt;}
.wse8{word-spacing:1.446667pt;}
.ws77{word-spacing:1.490667pt;}
.ws38{word-spacing:1.493333pt;}
.ws13c{word-spacing:1.508000pt;}
.wsaf{word-spacing:1.548000pt;}
.ws10a{word-spacing:1.586667pt;}
.wsbe{word-spacing:1.605333pt;}
.ws1c{word-spacing:1.612000pt;}
.wsd1{word-spacing:1.662667pt;}
.ws148{word-spacing:1.664000pt;}
.wsce{word-spacing:1.680000pt;}
.ws97{word-spacing:1.716000pt;}
.ws5b{word-spacing:1.720000pt;}
.ws108{word-spacing:1.726667pt;}
.ws80{word-spacing:1.777333pt;}
.ws57{word-spacing:1.820000pt;}
.ws21{word-spacing:1.834667pt;}
.ws51{word-spacing:1.866667pt;}
.wsa4{word-spacing:1.872000pt;}
.ws11{word-spacing:1.877333pt;}
.ws7a{word-spacing:1.892000pt;}
.wsa0{word-spacing:1.924000pt;}
.ws44{word-spacing:1.949333pt;}
.ws98{word-spacing:1.976000pt;}
.ws45{word-spacing:2.006667pt;}
.ws1d{word-spacing:2.028000pt;}
.wsd6{word-spacing:2.053333pt;}
.ws81{word-spacing:2.064000pt;}
.wsae{word-spacing:2.080000pt;}
.ws68{word-spacing:2.100000pt;}
.ws4d{word-spacing:2.121333pt;}
.wsa1{word-spacing:2.132000pt;}
.ws53{word-spacing:2.146667pt;}
.ws2e{word-spacing:2.178667pt;}
.ws55{word-spacing:2.193333pt;}
.ws5d{word-spacing:2.236000pt;}
.wsf7{word-spacing:2.240000pt;}
.ws10b{word-spacing:2.286667pt;}
.ws1a{word-spacing:2.288000pt;}
.ws74{word-spacing:2.293333pt;}
.ws12{word-spacing:2.304000pt;}
.ws9c{word-spacing:2.333333pt;}
.ws103{word-spacing:2.340000pt;}
.ws87{word-spacing:2.350667pt;}
.ws118{word-spacing:2.380000pt;}
.ws28{word-spacing:2.408000pt;}
.wsd7{word-spacing:2.426667pt;}
.ws102{word-spacing:2.444000pt;}
.ws3b{word-spacing:2.465333pt;}
.wsec{word-spacing:2.496000pt;}
.ws126{word-spacing:2.520000pt;}
.ws4a{word-spacing:2.522667pt;}
.ws11e{word-spacing:2.566667pt;}
.wse6{word-spacing:2.580000pt;}
.ws115{word-spacing:2.600000pt;}
.ws4f{word-spacing:2.613333pt;}
.wsba{word-spacing:2.637333pt;}
.ws139{word-spacing:2.652000pt;}
.ws72{word-spacing:2.694667pt;}
.wsa3{word-spacing:2.704000pt;}
.ws91{word-spacing:2.752000pt;}
.ws112{word-spacing:2.756000pt;}
.ws66{word-spacing:2.800000pt;}
.wsed{word-spacing:2.808000pt;}
.ws75{word-spacing:2.809333pt;}
.wsb{word-spacing:2.816000pt;}
.ws145{word-spacing:2.860000pt;}
.ws25{word-spacing:2.866667pt;}
.ws9b{word-spacing:2.893333pt;}
.wsf{word-spacing:2.901333pt;}
.wsa5{word-spacing:2.912000pt;}
.ws41{word-spacing:2.924000pt;}
.ws13e{word-spacing:2.964000pt;}
.ws121{word-spacing:2.981333pt;}
.ws1e{word-spacing:3.016000pt;}
.ws76{word-spacing:3.038667pt;}
.ws4e{word-spacing:3.080000pt;}
.wsfd{word-spacing:3.096000pt;}
.ws114{word-spacing:3.120000pt;}
.ws6b{word-spacing:3.126667pt;}
.wse1{word-spacing:3.153333pt;}
.ws52{word-spacing:3.173333pt;}
.ws4b{word-spacing:3.210667pt;}
.ws137{word-spacing:3.224000pt;}
.ws67{word-spacing:3.266667pt;}
.ws8b{word-spacing:3.268000pt;}
.ws49{word-spacing:3.325333pt;}
.ws109{word-spacing:3.360000pt;}
.wsa{word-spacing:3.370667pt;}
.wsf9{word-spacing:3.380000pt;}
.ws3d{word-spacing:3.382667pt;}
.ws35{word-spacing:3.406667pt;}
.ws46{word-spacing:3.440000pt;}
.ws131{word-spacing:3.484000pt;}
.ws24{word-spacing:3.497333pt;}
.wsff{word-spacing:3.500000pt;}
.ws107{word-spacing:3.546667pt;}
.ws8c{word-spacing:3.554667pt;}
.wsa8{word-spacing:3.588000pt;}
.ws2c{word-spacing:3.612000pt;}
.wsef{word-spacing:3.640000pt;}
.ws33{word-spacing:3.669333pt;}
.wsaa{word-spacing:3.686667pt;}
.wsa9{word-spacing:3.692000pt;}
.ws4c{word-spacing:3.726667pt;}
.wsb2{word-spacing:3.744000pt;}
.wsdc{word-spacing:3.784000pt;}
.ws117{word-spacing:3.841333pt;}
.ws138{word-spacing:3.848000pt;}
.ws7c{word-spacing:3.898667pt;}
.wsd5{word-spacing:3.920000pt;}
.wsf5{word-spacing:3.952000pt;}
.wsd2{word-spacing:3.956000pt;}
.wsb5{word-spacing:3.966667pt;}
.ws6a{word-spacing:4.013333pt;}
.ws120{word-spacing:4.056000pt;}
.ws3c{word-spacing:4.070667pt;}
.ws128{word-spacing:4.106667pt;}
.ws135{word-spacing:4.108000pt;}
.ws27{word-spacing:4.128000pt;}
.ws5{word-spacing:4.144000pt;}
.ws12d{word-spacing:4.160000pt;}
.ws42{word-spacing:4.185333pt;}
.wsf3{word-spacing:4.212000pt;}
.ws92{word-spacing:4.242667pt;}
.wse3{word-spacing:4.246667pt;}
.ws134{word-spacing:4.264000pt;}
.ws110{word-spacing:4.300000pt;}
.wse9{word-spacing:4.316000pt;}
.wsf6{word-spacing:4.357333pt;}
.wsa6{word-spacing:4.368000pt;}
.ws61{word-spacing:4.414667pt;}
.ws146{word-spacing:4.420000pt;}
.ws30{word-spacing:4.472000pt;}
.ws124{word-spacing:4.480000pt;}
.wsee{word-spacing:4.524000pt;}
.ws14d{word-spacing:4.526667pt;}
.ws32{word-spacing:4.529333pt;}
.ws3e{word-spacing:4.586667pt;}
.wsb6{word-spacing:4.620000pt;}
.ws13b{word-spacing:4.628000pt;}
.ws20{word-spacing:4.644000pt;}
.ws14e{word-spacing:4.666667pt;}
.wsea{word-spacing:4.680000pt;}
.wscb{word-spacing:4.701333pt;}
.wscc{word-spacing:4.758667pt;}
.ws125{word-spacing:4.806667pt;}
.ws48{word-spacing:4.816000pt;}
.ws133{word-spacing:4.888000pt;}
.wsc2{word-spacing:4.900000pt;}
.ws10{word-spacing:4.906667pt;}
.wsf2{word-spacing:4.930667pt;}
.ws11c{word-spacing:4.940000pt;}
.ws86{word-spacing:4.988000pt;}
.ws37{word-spacing:4.993333pt;}
.ws10e{word-spacing:5.044000pt;}
.ws8f{word-spacing:5.045333pt;}
.ws64{word-spacing:5.086667pt;}
.ws60{word-spacing:5.102667pt;}
.wsfa{word-spacing:5.148000pt;}
.wse7{word-spacing:5.160000pt;}
.ws15{word-spacing:5.162667pt;}
.ws34{word-spacing:5.180000pt;}
.ws9{word-spacing:5.205333pt;}
.wsc9{word-spacing:5.217333pt;}
.ws88{word-spacing:5.273333pt;}
.ws6d{word-spacing:5.274667pt;}
.ws29{word-spacing:5.332000pt;}
.ws16{word-spacing:5.333333pt;}
.wsa2{word-spacing:5.356000pt;}
.ws14b{word-spacing:5.366667pt;}
.ws2d{word-spacing:5.389333pt;}
.ws12c{word-spacing:5.408000pt;}
.wsc5{word-spacing:5.413333pt;}
.wsd3{word-spacing:5.446667pt;}
.ws104{word-spacing:5.460000pt;}
.ws62{word-spacing:5.504000pt;}
.ws143{word-spacing:5.512000pt;}
.ws40{word-spacing:5.561333pt;}
.ws12f{word-spacing:5.564000pt;}
.ws149{word-spacing:5.616000pt;}
.ws71{word-spacing:5.618667pt;}
.wsf4{word-spacing:5.668000pt;}
.ws5f{word-spacing:5.676000pt;}
.ws136{word-spacing:5.720000pt;}
.wsb9{word-spacing:5.733333pt;}
.ws79{word-spacing:5.790667pt;}
.ws105{word-spacing:5.824000pt;}
.ws69{word-spacing:5.833333pt;}
.ws6f{word-spacing:5.848000pt;}
.ws13a{word-spacing:5.876000pt;}
.ws26{word-spacing:5.905333pt;}
.ws85{word-spacing:5.962667pt;}
.wsb0{word-spacing:5.980000pt;}
.ws3f{word-spacing:6.020000pt;}
.ws119{word-spacing:6.077333pt;}
.ws140{word-spacing:6.084000pt;}
.ws95{word-spacing:6.136000pt;}
.ws43{word-spacing:6.192000pt;}
.ws14c{word-spacing:6.206667pt;}
.ws11b{word-spacing:6.240000pt;}
.wsbc{word-spacing:6.249333pt;}
.ws132{word-spacing:6.344000pt;}
.wse2{word-spacing:6.364000pt;}
.wscd{word-spacing:6.421333pt;}
.ws10c{word-spacing:6.448000pt;}
.ws8d{word-spacing:6.478667pt;}
.ws14a{word-spacing:6.486667pt;}
.ws1b{word-spacing:6.500000pt;}
.ws9f{word-spacing:6.536000pt;}
.ws23{word-spacing:6.593333pt;}
.ws82{word-spacing:6.708000pt;}
.wsbb{word-spacing:6.765333pt;}
.ws2a{word-spacing:6.880000pt;}
.ws8e{word-spacing:6.937333pt;}
.wsbd{word-spacing:6.994667pt;}
.ws122{word-spacing:7.052000pt;}
.ws84{word-spacing:7.109333pt;}
.ws47{word-spacing:7.166667pt;}
.ws5c{word-spacing:8.198667pt;}
.ws3{word-spacing:9.472000pt;}
.ws19{word-spacing:11.333333pt;}
.ws11d{word-spacing:11.666667pt;}
.ws2{word-spacing:11.861333pt;}
.ws3a{word-spacing:1021.845333pt;}
.ws1{word-spacing:1616.672000pt;}
._7{margin-left:-13.280000pt;}
._f{margin-left:-9.333333pt;}
._5{margin-left:-8.288000pt;}
._e{margin-left:-6.921600pt;}
._3{margin-left:-5.338667pt;}
._c{margin-left:-2.734800pt;}
._b{margin-left:-1.089333pt;}
._8{width:0.896000pt;}
._12{width:1.959933pt;}
._10{width:3.080000pt;}
._1{width:4.155200pt;}
._d{width:5.226667pt;}
._0{width:6.272000pt;}
._11{width:7.186933pt;}
._a{width:8.260000pt;}
._2{width:9.856000pt;}
._4{width:10.901333pt;}
._6{width:11.861333pt;}
._9{width:772.964800pt;}
.fsb{font-size:30.333333pt;}
.fs8{font-size:33.800000pt;}
.fsa{font-size:37.266667pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:39.000000pt;}
.fs4{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsc{font-size:46.666667pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:52.000000pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:57.333333pt;}
.fs2{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.131067pt;}
.yc{bottom:93.749200pt;}
.yb{bottom:104.417200pt;}
.y7a{bottom:110.720133pt;}
.y13c{bottom:110.725133pt;}
.y97{bottom:110.730000pt;}
.y14d{bottom:110.730133pt;}
.y54{bottom:110.735133pt;}
.y2ac{bottom:110.748267pt;}
.y232{bottom:111.517667pt;}
.y2d5{bottom:111.694400pt;}
.yb0{bottom:114.240133pt;}
.ya{bottom:118.858800pt;}
.y1c5{bottom:123.508467pt;}
.y79{bottom:123.518467pt;}
.y13b{bottom:123.523467pt;}
.y96{bottom:123.528333pt;}
.y14c{bottom:123.528467pt;}
.y251{bottom:123.533467pt;}
.y2ab{bottom:125.360267pt;}
.y2d4{bottom:126.202400pt;}
.y53{bottom:127.033467pt;}
.y231{bottom:127.155333pt;}
.y9{bottom:131.412133pt;}
.y15e{bottom:136.301800pt;}
.y11b{bottom:136.306800pt;}
.y52{bottom:136.311800pt;}
.y78{bottom:136.316800pt;}
.y13a{bottom:136.321800pt;}
.y95{bottom:139.826667pt;}
.yc3{bottom:139.826800pt;}
.y2aa{bottom:139.976267pt;}
.y2d3{bottom:140.710400pt;}
.y230{bottom:142.793000pt;}
.y8{bottom:145.860133pt;}
.y94{bottom:149.095000pt;}
.y15d{bottom:149.100133pt;}
.y11a{bottom:149.105133pt;}
.y51{bottom:149.110133pt;}
.y77{bottom:149.115133pt;}
.y139{bottom:152.620133pt;}
.y2a9{bottom:154.588267pt;}
.y2ee{bottom:155.215733pt;}
.y2d2{bottom:155.217067pt;}
.y7{bottom:155.800133pt;}
.yaf{bottom:158.034733pt;}
.y22f{bottom:158.430667pt;}
.y228{bottom:160.886400pt;}
.y16f{bottom:161.878467pt;}
.y93{bottom:161.893333pt;}
.y138{bottom:161.893467pt;}
.y15c{bottom:161.898467pt;}
.y119{bottom:161.903467pt;}
.y50{bottom:161.908467pt;}
.y279{bottom:162.258533pt;}
.y250{bottom:162.644933pt;}
.y76{bottom:165.413467pt;}
.y1a1{bottom:168.045400pt;}
.y6{bottom:169.520133pt;}
.y2d1{bottom:169.721200pt;}
.y2ed{bottom:169.722533pt;}
.yae{bottom:173.672400pt;}
.y22e{bottom:174.068333pt;}
.y16e{bottom:174.676800pt;}
.y92{bottom:174.691667pt;}
.y137{bottom:174.691800pt;}
.y75{bottom:174.696800pt;}
.y118{bottom:174.701800pt;}
.y4f{bottom:178.206800pt;}
.y5{bottom:179.460133pt;}
.y227{bottom:180.781467pt;}
.y280{bottom:181.614533pt;}
.y278{bottom:182.160800pt;}
.y24f{bottom:182.540000pt;}
.y2a8{bottom:183.377600pt;}
.y1a0{bottom:183.745400pt;}
.y2d0{bottom:184.229200pt;}
.y16d{bottom:187.475133pt;}
.y1fe{bottom:187.480133pt;}
.y91{bottom:187.490000pt;}
.y136{bottom:187.490133pt;}
.y4e{bottom:187.495133pt;}
.yad{bottom:189.310067pt;}
.y4{bottom:189.400133pt;}
.y22d{bottom:189.706000pt;}
.yda{bottom:191.000133pt;}
.y277{bottom:196.369800pt;}
.y27f{bottom:197.252200pt;}
.y2cf{bottom:198.737200pt;}
.y19f{bottom:199.383067pt;}
.y16c{bottom:200.273467pt;}
.y1fd{bottom:200.278467pt;}
.y117{bottom:200.283467pt;}
.y90{bottom:200.288333pt;}
.y135{bottom:200.288467pt;}
.y14b{bottom:201.087133pt;}
.y1f2{bottom:201.791333pt;}
.y226{bottom:202.101467pt;}
.y4d{bottom:203.793467pt;}
.y24e{bottom:203.860000pt;}
.y1d5{bottom:204.971133pt;}
.yac{bottom:205.065067pt;}
.yef{bottom:207.916667pt;}
.y276{bottom:210.578800pt;}
.y218{bottom:211.773067pt;}
.y27e{bottom:212.889867pt;}
.y16b{bottom:213.071800pt;}
.y74{bottom:213.076800pt;}
.y116{bottom:213.081800pt;}
.y2ce{bottom:213.241067pt;}
.y2ec{bottom:213.242400pt;}
.y1af{bottom:214.206933pt;}
.y19e{bottom:215.020733pt;}
.y8f{bottom:216.586667pt;}
.y4c{bottom:216.586800pt;}
.y14a{bottom:216.724800pt;}
.y1f1{bottom:217.429000pt;}
.y24a{bottom:217.860067pt;}
.y1d4{bottom:220.608800pt;}
.y122{bottom:220.609133pt;}
.yab{bottom:220.702733pt;}
.yee{bottom:222.125667pt;}
.y2a7{bottom:225.609333pt;}
.y16a{bottom:225.870133pt;}
.y8e{bottom:225.875000pt;}
.y73{bottom:225.875133pt;}
.y217{bottom:225.982067pt;}
.y2cd{bottom:227.749067pt;}
.y2eb{bottom:227.750400pt;}
.y115{bottom:229.380133pt;}
.y1ae{bottom:229.844600pt;}
.y2d{bottom:230.495200pt;}
.yd9{bottom:230.615467pt;}
.y19d{bottom:230.658400pt;}
.y275{bottom:231.894933pt;}
.y149{bottom:232.362467pt;}
.y1f0{bottom:233.066667pt;}
.y249{bottom:233.497733pt;}
.y1c4{bottom:234.954067pt;}
.y1d3{bottom:236.246467pt;}
.y121{bottom:236.246800pt;}
.yed{bottom:236.334667pt;}
.yaa{bottom:236.340400pt;}
.y22c{bottom:236.626800pt;}
.y273{bottom:238.658467pt;}
.y114{bottom:238.668467pt;}
.y101{bottom:239.204333pt;}
.y216{bottom:240.191067pt;}
.y2a6{bottom:240.221333pt;}
.y8d{bottom:242.173333pt;}
.y72{bottom:242.173467pt;}
.y2ea{bottom:242.254533pt;}
.y2cc{bottom:242.257067pt;}
.yd8{bottom:244.824467pt;}
.y1ad{bottom:245.482267pt;}
.y19c{bottom:246.296067pt;}
.y2c{bottom:246.825867pt;}
.y148{bottom:248.007467pt;}
.y1ef{bottom:248.704333pt;}
.y248{bottom:249.135400pt;}
.yec{bottom:250.543667pt;}
.y1c3{bottom:250.591733pt;}
.y8c{bottom:251.446667pt;}
.y71{bottom:251.456800pt;}
.y1d2{bottom:251.884133pt;}
.y120{bottom:251.884467pt;}
.yc2{bottom:251.890067pt;}
.y28c{bottom:251.915733pt;}
.ya9{bottom:251.978067pt;}
.y187{bottom:251.989067pt;}
.y100{bottom:253.413333pt;}
.y2a5{bottom:254.833333pt;}
.y113{bottom:254.966800pt;}
.y22b{bottom:256.523400pt;}
.y2cb{bottom:256.761200pt;}
.y2e9{bottom:256.762533pt;}
.y2b{bottom:258.153867pt;}
.yd7{bottom:259.033467pt;}
.y25f{bottom:259.050400pt;}
.y4b{bottom:260.048800pt;}
.y1ac{bottom:261.119933pt;}
.y19b{bottom:261.933733pt;}
.y147{bottom:263.645133pt;}
.y8b{bottom:264.245000pt;}
.y70{bottom:264.255133pt;}
.y1ee{bottom:264.342000pt;}
.yeb{bottom:264.752667pt;}
.y247{bottom:264.773067pt;}
.y1c2{bottom:266.229400pt;}
.y27d{bottom:266.321533pt;}
.y1d1{bottom:267.521800pt;}
.y11f{bottom:267.522133pt;}
.yc1{bottom:267.527733pt;}
.y28b{bottom:267.553400pt;}
.ya8{bottom:267.615733pt;}
.yff{bottom:267.622333pt;}
.y186{bottom:267.626733pt;}
.y2a4{bottom:269.445333pt;}
.y2a{bottom:269.481867pt;}
.y215{bottom:270.048800pt;}
.y22a{bottom:270.732400pt;}
.y2ca{bottom:271.269200pt;}
.y2e8{bottom:271.270533pt;}
.yd6{bottom:273.242467pt;}
.y25e{bottom:274.688067pt;}
.y4a{bottom:275.686467pt;}
.y1ab{bottom:276.757600pt;}
.y8a{bottom:277.043333pt;}
.y272{bottom:277.053467pt;}
.y19a{bottom:277.571400pt;}
.y27c{bottom:279.119867pt;}
.y146{bottom:279.293800pt;}
.y1ed{bottom:279.979667pt;}
.y246{bottom:280.410733pt;}
.y6f{bottom:280.553467pt;}
.y29{bottom:280.809867pt;}
.yfe{bottom:281.831333pt;}
.y1c1{bottom:281.867067pt;}
.y11e{bottom:283.159800pt;}
.yc0{bottom:283.165400pt;}
.y28a{bottom:283.191067pt;}
.y1d0{bottom:283.191533pt;}
.ya7{bottom:283.253400pt;}
.y185{bottom:283.264400pt;}
.y2a3{bottom:284.057333pt;}
.y214{bottom:285.686467pt;}
.y2e7{bottom:285.774400pt;}
.y2c9{bottom:285.777200pt;}
.yd5{bottom:287.451467pt;}
.y1fc{bottom:288.883800pt;}
.y89{bottom:289.841667pt;}
.y25d{bottom:290.325733pt;}
.y49{bottom:291.324133pt;}
.y229{bottom:292.052400pt;}
.y28{bottom:292.137867pt;}
.y199{bottom:293.209067pt;}
.yea{bottom:294.610400pt;}
.y145{bottom:294.931467pt;}
.y1ec{bottom:295.635667pt;}
.yfd{bottom:296.040333pt;}
.y245{bottom:296.048400pt;}
.y1c0{bottom:297.504733pt;}
.y2a2{bottom:298.669333pt;}
.ybf{bottom:298.803067pt;}
.y11d{bottom:298.804800pt;}
.y134{bottom:298.825067pt;}
.y289{bottom:298.828733pt;}
.y1cf{bottom:298.829200pt;}
.y169{bottom:298.861867pt;}
.ya6{bottom:298.891067pt;}
.y184{bottom:298.902067pt;}
.y27b{bottom:299.014933pt;}
.y2c8{bottom:300.281067pt;}
.y2e6{bottom:300.282400pt;}
.y213{bottom:301.371800pt;}
.yd4{bottom:301.660467pt;}
.y1fb{bottom:303.092800pt;}
.y27{bottom:303.465867pt;}
.y25c{bottom:305.963400pt;}
.y88{bottom:306.140000pt;}
.y48{bottom:306.961800pt;}
.y198{bottom:308.846733pt;}
.ye9{bottom:310.248067pt;}
.yfc{bottom:310.249333pt;}
.y144{bottom:310.569133pt;}
.y1eb{bottom:311.273333pt;}
.y244{bottom:311.686067pt;}
.y1bf{bottom:313.142400pt;}
.y2a1{bottom:313.281333pt;}
.y6e{bottom:314.440733pt;}
.y11c{bottom:314.442467pt;}
.y271{bottom:314.453133pt;}
.y133{bottom:314.462733pt;}
.y288{bottom:314.466400pt;}
.y1ce{bottom:314.466867pt;}
.y15b{bottom:314.470200pt;}
.y168{bottom:314.499533pt;}
.ya5{bottom:314.528733pt;}
.y183{bottom:314.539733pt;}
.y2c7{bottom:314.789067pt;}
.y2e5{bottom:314.790400pt;}
.yd3{bottom:315.869467pt;}
.y212{bottom:317.009467pt;}
.y1fa{bottom:317.301800pt;}
.y27a{bottom:320.334933pt;}
.y25b{bottom:321.601067pt;}
.y47{bottom:322.599467pt;}
.y1aa{bottom:323.678267pt;}
.yfb{bottom:324.458333pt;}
.y197{bottom:324.484400pt;}
.ye8{bottom:325.904067pt;}
.y26{bottom:326.143200pt;}
.y143{bottom:326.206800pt;}
.y1ea{bottom:326.911000pt;}
.y243{bottom:327.323733pt;}
.y1be{bottom:328.780067pt;}
.y2e4{bottom:329.294400pt;}
.y2c6{bottom:329.297067pt;}
.y6d{bottom:330.082200pt;}
.y270{bottom:330.090800pt;}
.y132{bottom:330.100400pt;}
.y287{bottom:330.104067pt;}
.y1cd{bottom:330.104533pt;}
.y15a{bottom:330.107867pt;}
.y167{bottom:330.137200pt;}
.ya4{bottom:330.166400pt;}
.y1f9{bottom:331.510800pt;}
.y211{bottom:332.647133pt;}
.y25a{bottom:337.238733pt;}
.y25{bottom:337.471200pt;}
.y46{bottom:338.237133pt;}
.yfa{bottom:338.667333pt;}
.y196{bottom:340.122067pt;}
.ye7{bottom:341.541733pt;}
.y1e9{bottom:342.548667pt;}
.y242{bottom:342.961400pt;}
.y2a0{bottom:343.510733pt;}
.y1a9{bottom:343.575000pt;}
.y2c5{bottom:343.802400pt;}
.y1bd{bottom:344.417733pt;}
.y112{bottom:345.727067pt;}
.y26f{bottom:345.728467pt;}
.y87{bottom:345.736000pt;}
.ybe{bottom:345.738067pt;}
.y286{bottom:345.741733pt;}
.y1cc{bottom:345.742200pt;}
.y159{bottom:345.745533pt;}
.yd2{bottom:345.749067pt;}
.y6c{bottom:345.763733pt;}
.y166{bottom:345.774867pt;}
.ya3{bottom:345.804067pt;}
.y182{bottom:345.829000pt;}
.y210{bottom:348.284800pt;}
.y259{bottom:352.876400pt;}
.y45{bottom:353.885800pt;}
.y24{bottom:354.473867pt;}
.y195{bottom:355.759733pt;}
.ye6{bottom:357.179400pt;}
.y1a8{bottom:357.784000pt;}
.y1e8{bottom:358.186333pt;}
.y2c4{bottom:358.310400pt;}
.y241{bottom:358.599067pt;}
.y181{bottom:360.038000pt;}
.y1bc{bottom:360.055400pt;}
.y111{bottom:361.364733pt;}
.y86{bottom:361.373667pt;}
.ybd{bottom:361.375733pt;}
.y1f8{bottom:361.379400pt;}
.y1cb{bottom:361.379867pt;}
.y158{bottom:361.383200pt;}
.y26e{bottom:361.384467pt;}
.yd1{bottom:361.386733pt;}
.y6b{bottom:361.401400pt;}
.y165{bottom:361.412533pt;}
.ya2{bottom:361.441733pt;}
.y20f{bottom:363.922467pt;}
.y23{bottom:365.801867pt;}
.yf9{bottom:368.528733pt;}
.y44{bottom:369.523467pt;}
.y194{bottom:371.397400pt;}
.y2e3{bottom:372.815867pt;}
.ye5{bottom:372.817067pt;}
.y2c3{bottom:372.817200pt;}
.y142{bottom:373.112467pt;}
.y1e7{bottom:373.824000pt;}
.y180{bottom:374.247000pt;}
.y1bb{bottom:375.693067pt;}
.y85{bottom:377.011333pt;}
.ybc{bottom:377.013400pt;}
.y1f7{bottom:377.017067pt;}
.y1ca{bottom:377.017533pt;}
.y157{bottom:377.020867pt;}
.y26d{bottom:377.022133pt;}
.yd0{bottom:377.024400pt;}
.y6a{bottom:377.039067pt;}
.y164{bottom:377.050200pt;}
.y110{bottom:377.057533pt;}
.ya1{bottom:377.079400pt;}
.y22{bottom:377.129867pt;}
.y1a7{bottom:379.104000pt;}
.y20e{bottom:379.560133pt;}
.y258{bottom:384.164133pt;}
.yf8{bottom:384.166400pt;}
.y43{bottom:385.161133pt;}
.y141{bottom:385.910800pt;}
.y193{bottom:387.035067pt;}
.y2c2{bottom:387.321067pt;}
.y2e2{bottom:387.323867pt;}
.ye4{bottom:388.454733pt;}
.y17f{bottom:388.456000pt;}
.y21{bottom:388.457867pt;}
.y240{bottom:389.893467pt;}
.y29f{bottom:390.538400pt;}
.y1ba{bottom:391.330733pt;}
.y84{bottom:392.649000pt;}
.ybb{bottom:392.651067pt;}
.y1f6{bottom:392.654733pt;}
.y1c9{bottom:392.655200pt;}
.y156{bottom:392.658533pt;}
.y26c{bottom:392.659800pt;}
.ycf{bottom:392.662067pt;}
.y69{bottom:392.676733pt;}
.y163{bottom:392.687867pt;}
.y10f{bottom:392.695200pt;}
.ya0{bottom:392.717067pt;}
.y20d{bottom:395.197800pt;}
.y257{bottom:398.373133pt;}
.y140{bottom:398.709133pt;}
.y20{bottom:399.785867pt;}
.yf7{bottom:399.804067pt;}
.y1a6{bottom:400.420133pt;}
.y42{bottom:400.806133pt;}
.y2e1{bottom:401.827733pt;}
.y2c1{bottom:401.829067pt;}
.y17e{bottom:402.665000pt;}
.y192{bottom:402.672733pt;}
.ye3{bottom:404.092400pt;}
.y23f{bottom:404.102467pt;}
.y1e6{bottom:405.131600pt;}
.y29e{bottom:406.290733pt;}
.y1b9{bottom:406.968400pt;}
.yba{bottom:408.288733pt;}
.y1f5{bottom:408.292400pt;}
.y1c8{bottom:408.292867pt;}
.y155{bottom:408.296200pt;}
.y26b{bottom:408.297467pt;}
.y83{bottom:408.297667pt;}
.yce{bottom:408.299733pt;}
.y68{bottom:408.314400pt;}
.y162{bottom:408.325533pt;}
.y10e{bottom:408.332867pt;}
.y9f{bottom:408.354733pt;}
.y20c{bottom:410.835467pt;}
.y1f{bottom:411.113867pt;}
.y13f{bottom:411.507467pt;}
.y256{bottom:412.582133pt;}
.yf6{bottom:415.445400pt;}
.y2e0{bottom:416.335733pt;}
.y2c0{bottom:416.337067pt;}
.y41{bottom:416.443800pt;}
.y17d{bottom:416.874000pt;}
.y191{bottom:418.310400pt;}
.y23e{bottom:418.311467pt;}
.y1e5{bottom:419.340600pt;}
.y24d{bottom:420.974933pt;}
.y29d{bottom:422.043067pt;}
.y1b8{bottom:422.606067pt;}
.y1f4{bottom:423.930067pt;}
.y154{bottom:423.933867pt;}
.y26a{bottom:423.935133pt;}
.y82{bottom:423.935333pt;}
.ycd{bottom:423.937400pt;}
.y67{bottom:423.952067pt;}
.yb9{bottom:423.959400pt;}
.y161{bottom:423.963200pt;}
.y10d{bottom:423.970533pt;}
.y131{bottom:423.981533pt;}
.y9e{bottom:423.992400pt;}
.y20b{bottom:426.473133pt;}
.y255{bottom:426.791133pt;}
.y2bf{bottom:430.842400pt;}
.y2df{bottom:430.843733pt;}
.yf5{bottom:431.083067pt;}
.y13e{bottom:431.402400pt;}
.y40{bottom:432.121800pt;}
.y23d{bottom:432.520467pt;}
.y1e4{bottom:433.549600pt;}
.y1e{bottom:433.780533pt;}
.y190{bottom:433.948067pt;}
.ye2{bottom:435.385133pt;}
.y29c{bottom:437.795400pt;}
.y1b7{bottom:438.243733pt;}
.y1c7{bottom:439.568200pt;}
.y153{bottom:439.571533pt;}
.y81{bottom:439.573000pt;}
.ycc{bottom:439.575067pt;}
.y269{bottom:439.580133pt;}
.y285{bottom:439.586067pt;}
.y66{bottom:439.589733pt;}
.yb8{bottom:439.597067pt;}
.y160{bottom:439.600867pt;}
.y10c{bottom:439.608200pt;}
.y130{bottom:439.619200pt;}
.y9d{bottom:439.630067pt;}
.y24c{bottom:440.870000pt;}
.y254{bottom:441.000133pt;}
.y20a{bottom:442.110800pt;}
.y225{bottom:444.905467pt;}
.y1d{bottom:445.108533pt;}
.y2de{bottom:445.347733pt;}
.y2be{bottom:445.350400pt;}
.y23c{bottom:446.729467pt;}
.y17c{bottom:446.746400pt;}
.y1e3{bottom:447.758600pt;}
.y3f{bottom:447.759467pt;}
.y18f{bottom:449.585733pt;}
.ye1{bottom:449.594133pt;}
.y13d{bottom:452.722400pt;}
.y29b{bottom:453.547733pt;}
.y1b6{bottom:453.881400pt;}
.y1c6{bottom:455.205867pt;}
.ycb{bottom:455.212733pt;}
.y268{bottom:455.217800pt;}
.y284{bottom:455.223733pt;}
.y65{bottom:455.227400pt;}
.y80{bottom:455.232667pt;}
.yb7{bottom:455.234733pt;}
.y15f{bottom:455.238533pt;}
.y10b{bottom:455.245867pt;}
.y12f{bottom:455.256867pt;}
.y9c{bottom:455.267733pt;}
.y209{bottom:457.748467pt;}
.y2bd{bottom:459.855733pt;}
.y224{bottom:460.543133pt;}
.y23b{bottom:460.938467pt;}
.y1e2{bottom:461.967600pt;}
.y1c{bottom:462.111200pt;}
.y24b{bottom:462.190000pt;}
.yf4{bottom:462.370800pt;}
.y17b{bottom:462.384067pt;}
.y3e{bottom:463.397133pt;}
.ye0{bottom:463.803133pt;}
.y29a{bottom:469.300067pt;}
.y1b5{bottom:469.519067pt;}
.y283{bottom:470.861400pt;}
.y64{bottom:470.865067pt;}
.y7f{bottom:470.870333pt;}
.yb6{bottom:470.872400pt;}
.yca{bottom:470.876200pt;}
.y10a{bottom:470.883533pt;}
.y267{bottom:470.891067pt;}
.y12e{bottom:470.894533pt;}
.y9b{bottom:470.905400pt;}
.y208{bottom:473.386133pt;}
.y1b{bottom:473.439200pt;}
.y2bc{bottom:474.363733pt;}
.y23a{bottom:475.147467pt;}
.y1e1{bottom:476.176600pt;}
.y223{bottom:476.180800pt;}
.yf3{bottom:476.579800pt;}
.ydf{bottom:478.012133pt;}
.y17a{bottom:478.021733pt;}
.y3d{bottom:479.034800pt;}
.y18e{bottom:480.876800pt;}
.y1a{bottom:484.767200pt;}
.y299{bottom:485.052400pt;}
.y282{bottom:486.499067pt;}
.y63{bottom:486.502733pt;}
.y7e{bottom:486.508000pt;}
.yb5{bottom:486.510067pt;}
.yc9{bottom:486.513867pt;}
.y109{bottom:486.521200pt;}
.y266{bottom:486.528733pt;}
.y12d{bottom:486.532200pt;}
.y9a{bottom:486.543067pt;}
.y2bb{bottom:488.867733pt;}
.y2dd{bottom:488.869067pt;}
.y207{bottom:489.023800pt;}
.y239{bottom:489.356467pt;}
.y1e0{bottom:490.385600pt;}
.yf2{bottom:490.788800pt;}
.y222{bottom:491.818467pt;}
.yde{bottom:492.221133pt;}
.y179{bottom:493.659400pt;}
.y3c{bottom:494.672467pt;}
.y18d{bottom:495.085800pt;}
.y19{bottom:496.095200pt;}
.y298{bottom:500.804733pt;}
.y1b4{bottom:500.815133pt;}
.y281{bottom:502.136733pt;}
.y62{bottom:502.140400pt;}
.y7d{bottom:502.145667pt;}
.yb4{bottom:502.147733pt;}
.yc8{bottom:502.151533pt;}
.y108{bottom:502.158867pt;}
.y265{bottom:502.166400pt;}
.y12c{bottom:502.169867pt;}
.y99{bottom:502.180733pt;}
.y2ba{bottom:503.375733pt;}
.y2dc{bottom:503.377067pt;}
.y238{bottom:503.565467pt;}
.y1df{bottom:504.594600pt;}
.y206{bottom:504.661467pt;}
.yf1{bottom:504.997800pt;}
.ydd{bottom:506.430133pt;}
.y18{bottom:507.423200pt;}
.y221{bottom:507.456133pt;}
.y2f9{bottom:508.674400pt;}
.y18c{bottom:509.294800pt;}
.y178{bottom:509.297067pt;}
.y3b{bottom:510.310133pt;}
.y1b3{bottom:515.024133pt;}
.y297{bottom:516.557067pt;}
.y61{bottom:517.778067pt;}
.y7c{bottom:517.783333pt;}
.yb3{bottom:517.785400pt;}
.yc7{bottom:517.789200pt;}
.y107{bottom:517.796533pt;}
.y264{bottom:517.804067pt;}
.y12b{bottom:517.807533pt;}
.y98{bottom:517.818400pt;}
.y2b9{bottom:517.883733pt;}
.y17{bottom:518.751200pt;}
.y1de{bottom:518.803600pt;}
.yf0{bottom:519.206800pt;}
.ydc{bottom:520.639133pt;}
.y2f8{bottom:521.472733pt;}
.y220{bottom:523.093800pt;}
.y18b{bottom:523.503800pt;}
.y177{bottom:524.934733pt;}
.y3a{bottom:525.947800pt;}
.y1b2{bottom:529.233133pt;}
.y296{bottom:532.309400pt;}
.y2db{bottom:532.386533pt;}
.y2b8{bottom:532.387867pt;}
.y1dd{bottom:533.012600pt;}
.y7b{bottom:533.421000pt;}
.yb2{bottom:533.423067pt;}
.yc6{bottom:533.426867pt;}
.y106{bottom:533.434200pt;}
.y263{bottom:533.441733pt;}
.y12a{bottom:533.445200pt;}
.y237{bottom:533.452400pt;}
.y60{bottom:533.456067pt;}
.y2f7{bottom:534.271067pt;}
.ydb{bottom:534.848133pt;}
.y205{bottom:535.962400pt;}
.y18a{bottom:537.712800pt;}
.y21f{bottom:538.731467pt;}
.y176{bottom:540.572400pt;}
.y39{bottom:541.585467pt;}
.y1b1{bottom:543.442133pt;}
.y2da{bottom:546.894533pt;}
.y2b7{bottom:546.895867pt;}
.y2f6{bottom:547.069400pt;}
.y1dc{bottom:547.221600pt;}
.y295{bottom:548.061733pt;}
.yb1{bottom:549.060733pt;}
.yc5{bottom:549.064533pt;}
.y274{bottom:549.068067pt;}
.y105{bottom:549.071867pt;}
.y262{bottom:549.079400pt;}
.y129{bottom:549.082867pt;}
.y236{bottom:549.090067pt;}
.y5f{bottom:549.093733pt;}
.y204{bottom:550.171400pt;}
.y189{bottom:551.921800pt;}
.y21e{bottom:554.369133pt;}
.y38{bottom:557.223133pt;}
.y1b0{bottom:557.651133pt;}
.y2f5{bottom:559.867733pt;}
.y2d9{bottom:561.402533pt;}
.y2b6{bottom:561.403867pt;}
.y1db{bottom:561.430600pt;}
.y294{bottom:563.814067pt;}
.y203{bottom:564.380400pt;}
.yc4{bottom:564.702200pt;}
.y253{bottom:564.705733pt;}
.y104{bottom:564.709533pt;}
.y128{bottom:564.720533pt;}
.y235{bottom:564.727733pt;}
.y5e{bottom:564.731400pt;}
.y188{bottom:566.130800pt;}
.y16{bottom:569.183200pt;}
.y21d{bottom:570.006800pt;}
.y175{bottom:571.860133pt;}
.y2f4{bottom:572.666067pt;}
.y37{bottom:572.860800pt;}
.y1da{bottom:575.639600pt;}
.y2b5{bottom:575.906400pt;}
.y2d8{bottom:575.910533pt;}
.y202{bottom:578.589400pt;}
.y293{bottom:579.566400pt;}
.y252{bottom:580.343400pt;}
.y103{bottom:580.347200pt;}
.y261{bottom:580.354733pt;}
.y127{bottom:580.358200pt;}
.y1f3{bottom:580.361733pt;}
.y234{bottom:580.365400pt;}
.y5d{bottom:580.369067pt;}
.y15{bottom:581.993733pt;}
.y2f3{bottom:585.464400pt;}
.y21c{bottom:585.644467pt;}
.y174{bottom:586.069133pt;}
.y36{bottom:588.498467pt;}
.y1d9{bottom:589.848600pt;}
.y2b4{bottom:590.414400pt;}
.y201{bottom:592.798400pt;}
.y292{bottom:595.318733pt;}
.y102{bottom:595.984867pt;}
.y260{bottom:595.992400pt;}
.y126{bottom:595.995867pt;}
.y1a5{bottom:595.999400pt;}
.y233{bottom:596.003067pt;}
.y5c{bottom:596.006733pt;}
.y2f2{bottom:598.262733pt;}
.y173{bottom:600.278133pt;}
.y21b{bottom:601.282133pt;}
.y14{bottom:603.300400pt;}
.y1d8{bottom:604.057600pt;}
.y35{bottom:604.136133pt;}
.y2b3{bottom:604.922400pt;}
.y200{bottom:607.007400pt;}
.y291{bottom:611.071067pt;}
.y125{bottom:611.633533pt;}
.y1a4{bottom:611.637067pt;}
.y152{bottom:611.640733pt;}
.y5b{bottom:611.644400pt;}
.y172{bottom:614.487133pt;}
.y21a{bottom:616.919800pt;}
.y1d7{bottom:618.266600pt;}
.y2f1{bottom:618.877733pt;}
.y2b2{bottom:619.430400pt;}
.y13{bottom:620.353733pt;}
.y1ff{bottom:621.216400pt;}
.y290{bottom:626.823400pt;}
.y124{bottom:627.271200pt;}
.y1a3{bottom:627.274733pt;}
.y151{bottom:627.278400pt;}
.y5a{bottom:627.282067pt;}
.y171{bottom:628.696133pt;}
.y1d6{bottom:632.475600pt;}
.y219{bottom:632.557467pt;}
.y2b1{bottom:633.934400pt;}
.y2d7{bottom:633.937200pt;}
.y34{bottom:635.425400pt;}
.y12{bottom:637.407067pt;}
.y28f{bottom:642.575733pt;}
.y123{bottom:642.908867pt;}
.y1a2{bottom:642.912400pt;}
.y150{bottom:642.916067pt;}
.y59{bottom:642.919733pt;}
.y2b0{bottom:648.442400pt;}
.y2d6{bottom:648.443867pt;}
.y33{bottom:649.634400pt;}
.y28e{bottom:658.328067pt;}
.y170{bottom:658.550067pt;}
.y14f{bottom:658.553733pt;}
.y58{bottom:658.557400pt;}
.y2f0{bottom:662.949067pt;}
.y2af{bottom:662.950400pt;}
.y32{bottom:663.843400pt;}
.y11{bottom:672.113733pt;}
.y28d{bottom:674.080400pt;}
.y14e{bottom:674.191400pt;}
.y57{bottom:674.195067pt;}
.y2ae{bottom:677.454400pt;}
.y2ef{bottom:677.457067pt;}
.y31{bottom:678.052400pt;}
.y10{bottom:689.167067pt;}
.y56{bottom:689.832733pt;}
.y2ad{bottom:691.962400pt;}
.y30{bottom:692.261400pt;}
.y55{bottom:705.470400pt;}
.yf{bottom:706.220400pt;}
.y2f{bottom:706.470400pt;}
.y2e{bottom:739.846400pt;}
.y2{bottom:742.513600pt;}
.y3{bottom:760.624800pt;}
.ye{bottom:771.457200pt;}
.yd{bottom:783.457200pt;}
.h7{height:27.477333pt;}
.h12{height:27.858724pt;}
.h8{height:31.402667pt;}
.h1b{height:33.740000pt;}
.h5{height:34.122667pt;}
.h6{height:36.560000pt;}
.he{height:37.812500pt;}
.hc{height:38.270833pt;}
.h3{height:39.552000pt;}
.hd{height:39.708333pt;}
.hf{height:40.662760pt;}
.h16{height:41.357422pt;}
.h13{height:41.858724pt;}
.h1c{height:43.260000pt;}
.h2{height:45.446615pt;}
.h18{height:46.083984pt;}
.h10{height:46.642578pt;}
.h1a{height:46.647378pt;}
.h19{height:46.647911pt;}
.h17{height:46.653778pt;}
.hb{height:47.265625pt;}
.ha{height:47.838542pt;}
.h15{height:48.394531pt;}
.h9{height:49.635417pt;}
.h11{height:51.426432pt;}
.h14{height:53.358073pt;}
.h4{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xf{left:83.149600pt;}
.x1{left:95.243067pt;}
.x18{left:96.333067pt;}
.x12{left:102.047200pt;}
.x11{left:105.826800pt;}
.x23{left:109.687133pt;}
.x13{left:114.141733pt;}
.x4{left:117.924133pt;}
.x17{left:120.412000pt;}
.x27{left:121.699133pt;}
.x1f{left:125.410800pt;}
.x20{left:127.211133pt;}
.x19{left:131.006400pt;}
.x10{left:134.304933pt;}
.x22{left:137.505333pt;}
.x15{left:146.399467pt;}
.x5{left:148.716400pt;}
.x6{left:153.716400pt;}
.x1e{left:156.547600pt;}
.x14{left:165.301467pt;}
.x25{left:173.205133pt;}
.x24{left:178.990133pt;}
.x21{left:180.225133pt;}
.xb{left:195.678000pt;}
.x9{left:200.451333pt;}
.x1d{left:203.343333pt;}
.x1a{left:211.354733pt;}
.x26{left:213.000533pt;}
.x8{left:216.304667pt;}
.xc{left:218.664667pt;}
.x7{left:253.384667pt;}
.x1c{left:272.663600pt;}
.x16{left:284.758000pt;}
.x1b{left:292.731600pt;}
.xa{left:294.984667pt;}
.xe{left:338.491467pt;}
.xd{left:349.784667pt;}
.x2{left:369.364667pt;}
.x3{left:462.814000pt;}
}




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