
    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_02ac2ff4e26b17ba31cae117.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_d46c0f0319a11d2dc5b4c551.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0238fb4ebb3e821800d407ff.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c780860e5d5abf9c09d386f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ec30f8df28f03c97c4194ba5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a36d7d8b146664bf0baf5a02.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d44922c6d835b54df95a8ddd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ff0a4625cd63f0c27e610079.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904785;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_db7a22b9b25ced7f54ff95c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_db726315ef9b595882f486e4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.121000;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_cd82fc0664251af7020820ed.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_981a167e134a8798b17b818d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.131000;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_dd33b0c66d63a185a9ad3511.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.725000;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.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);}
.v2{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.060800px;}
.lsa{letter-spacing:-1.290000px;}
.ls15{letter-spacing:-1.161000px;}
.ls16{letter-spacing:-1.050000px;}
.lsb{letter-spacing:-1.032000px;}
.ls38{letter-spacing:-0.967500px;}
.ls4{letter-spacing:-0.960000px;}
.ls39{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.682500px;}
.ls8{letter-spacing:-0.645000px;}
.ls9{letter-spacing:-0.580500px;}
.ls12{letter-spacing:-0.516000px;}
.lsd{letter-spacing:-0.472500px;}
.ls13{letter-spacing:-0.387000px;}
.ls32{letter-spacing:-0.322500px;}
.ls34{letter-spacing:-0.258000px;}
.ls35{letter-spacing:-0.251550px;}
.ls31{letter-spacing:-0.193500px;}
.ls33{letter-spacing:-0.129000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000300px;}
.ls41{letter-spacing:0.009000px;}
.ls4b{letter-spacing:0.009300px;}
.ls3d{letter-spacing:0.009600px;}
.ls5b{letter-spacing:0.009900px;}
.ls3a{letter-spacing:0.010200px;}
.ls23{letter-spacing:0.034125px;}
.ls55{letter-spacing:0.034200px;}
.ls2a{letter-spacing:0.041925px;}
.ls3f{letter-spacing:0.049200px;}
.ls20{letter-spacing:0.052500px;}
.ls40{letter-spacing:0.058500px;}
.ls11{letter-spacing:0.064500px;}
.ls5{letter-spacing:0.129000px;}
.ls30{letter-spacing:0.157500px;}
.ls59{letter-spacing:0.163800px;}
.ls22{letter-spacing:0.167700px;}
.ls58{letter-spacing:0.172800px;}
.ls47{letter-spacing:0.175500px;}
.ls4f{letter-spacing:0.175800px;}
.ls46{letter-spacing:0.178800px;}
.ls4d{letter-spacing:0.185400px;}
.ls45{letter-spacing:0.189000px;}
.ls10{letter-spacing:0.193500px;}
.ls26{letter-spacing:0.209625px;}
.ls2c{letter-spacing:0.210000px;}
.ls51{letter-spacing:0.234000px;}
.ls2b{letter-spacing:0.238875px;}
.ls50{letter-spacing:0.243000px;}
.ls1e{letter-spacing:0.251550px;}
.lse{letter-spacing:0.258000px;}
.ls43{letter-spacing:0.281400px;}
.ls19{letter-spacing:0.290250px;}
.ls42{letter-spacing:0.291000px;}
.ls44{letter-spacing:0.292500px;}
.ls24{letter-spacing:0.322500px;}
.ls29{letter-spacing:0.367500px;}
.ls0{letter-spacing:0.384000px;}
.ls1d{letter-spacing:0.387000px;}
.ls18{letter-spacing:0.451500px;}
.ls21{letter-spacing:0.516000px;}
.ls37{letter-spacing:0.580500px;}
.ls3e{letter-spacing:0.585000px;}
.ls3b{letter-spacing:0.589500px;}
.ls3c{letter-spacing:0.589800px;}
.ls53{letter-spacing:0.631800px;}
.ls52{letter-spacing:0.640800px;}
.ls54{letter-spacing:0.643500px;}
.ls25{letter-spacing:0.645000px;}
.ls2e{letter-spacing:0.648375px;}
.lsf{letter-spacing:0.838500px;}
.ls1a{letter-spacing:0.967500px;}
.ls2f{letter-spacing:0.997500px;}
.ls1c{letter-spacing:1.096500px;}
.ls14{letter-spacing:1.161000px;}
.ls17{letter-spacing:1.290000px;}
.ls27{letter-spacing:1.354500px;}
.ls1b{letter-spacing:1.419000px;}
.ls4a{letter-spacing:1.579500px;}
.ls49{letter-spacing:1.584000px;}
.ls48{letter-spacing:1.593900px;}
.ls4c{letter-spacing:1.824000px;}
.ls36{letter-spacing:1.935000px;}
.ls5a{letter-spacing:2.407200px;}
.ls56{letter-spacing:2.872200px;}
.ls57{letter-spacing:2.872800px;}
.ls4e{letter-spacing:7.488600px;}
.ls1{letter-spacing:11.676000px;}
.ls2{letter-spacing:12.510000px;}
.ls7{letter-spacing:13.125000px;}
.ls1f{letter-spacing:13.177500px;}
.ls28{letter-spacing:13.492500px;}
.ls2d{letter-spacing:14.122500px;}
.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;}
}
.wsae{word-spacing:-16.512000px;}
.wsc4{word-spacing:-16.447500px;}
.ws96{word-spacing:-16.125000px;}
.ws57{word-spacing:-15.480000px;}
.wsf5{word-spacing:-14.625000px;}
.wsaa{word-spacing:-13.125000px;}
.ws3a{word-spacing:-12.750000px;}
.ws19{word-spacing:-12.093750px;}
.ws10b{word-spacing:-11.144250px;}
.wsf4{word-spacing:-10.968750px;}
.wsaf{word-spacing:-10.732800px;}
.wsce{word-spacing:-10.690875px;}
.wsbb{word-spacing:-10.648950px;}
.wscd{word-spacing:-10.523175px;}
.ws18{word-spacing:-10.481250px;}
.wsf0{word-spacing:-10.229700px;}
.ws1a{word-spacing:-9.843750px;}
.wse7{word-spacing:-9.179625px;}
.ws0{word-spacing:-9.000000px;}
.wscf{word-spacing:-8.770125px;}
.wsbc{word-spacing:-8.565375px;}
.ws9c{word-spacing:-8.531250px;}
.wsa1{word-spacing:-1.680000px;}
.ws7b{word-spacing:-1.575000px;}
.wsa0{word-spacing:-1.470000px;}
.wsac{word-spacing:-0.967500px;}
.wsc8{word-spacing:-0.209625px;}
.ws10c{word-spacing:-0.039375px;}
.ws2{word-spacing:0.000000px;}
.wsd3{word-spacing:0.052500px;}
.wsdf{word-spacing:0.064500px;}
.wsfe{word-spacing:0.117000px;}
.ws8d{word-spacing:0.129000px;}
.ws1f{word-spacing:0.193500px;}
.wsf8{word-spacing:0.234000px;}
.ws42{word-spacing:0.258000px;}
.wseb{word-spacing:0.262500px;}
.ws66{word-spacing:0.322500px;}
.ws11{word-spacing:0.384000px;}
.ws80{word-spacing:0.387000px;}
.ws100{word-spacing:0.409500px;}
.wsb2{word-spacing:0.451500px;}
.ws4a{word-spacing:0.516000px;}
.wsb{word-spacing:0.576000px;}
.ws116{word-spacing:0.577500px;}
.wsbf{word-spacing:0.580500px;}
.ws8{word-spacing:0.624000px;}
.wsa4{word-spacing:0.630000px;}
.ws72{word-spacing:0.645000px;}
.wsd9{word-spacing:0.682500px;}
.ws107{word-spacing:0.702000px;}
.ws8b{word-spacing:0.709500px;}
.wsa2{word-spacing:0.735000px;}
.ws67{word-spacing:0.774000px;}
.wsa5{word-spacing:0.787500px;}
.ws109{word-spacing:0.819000px;}
.wsef{word-spacing:0.838500px;}
.wsee{word-spacing:0.840000px;}
.wsb4{word-spacing:0.903000px;}
.wsca{word-spacing:0.945000px;}
.ws61{word-spacing:0.967500px;}
.ws37{word-spacing:0.997500px;}
.ws14{word-spacing:1.008000px;}
.ws73{word-spacing:1.032000px;}
.ws7a{word-spacing:1.050000px;}
.ws5f{word-spacing:1.096500px;}
.ws13{word-spacing:1.152000px;}
.wsea{word-spacing:1.155000px;}
.ws92{word-spacing:1.161000px;}
.wsc1{word-spacing:1.260000px;}
.ws77{word-spacing:1.290000px;}
.ws95{word-spacing:1.354500px;}
.ws6e{word-spacing:1.419000px;}
.wse5{word-spacing:1.470000px;}
.ws33{word-spacing:1.483500px;}
.wsf{word-spacing:1.536000px;}
.wsc5{word-spacing:1.548000px;}
.ws71{word-spacing:1.612500px;}
.ws105{word-spacing:1.638000px;}
.ws62{word-spacing:1.677000px;}
.ws9{word-spacing:1.680000px;}
.ws22{word-spacing:1.741500px;}
.ws32{word-spacing:1.806000px;}
.ws108{word-spacing:1.813500px;}
.ws17{word-spacing:1.890000px;}
.ws10e{word-spacing:1.930500px;}
.wse0{word-spacing:1.935000px;}
.wsd{word-spacing:1.968000px;}
.ws38{word-spacing:1.995000px;}
.wsab{word-spacing:1.999500px;}
.wsd5{word-spacing:2.047500px;}
.ws4d{word-spacing:2.064000px;}
.wsf7{word-spacing:2.106000px;}
.ws21{word-spacing:2.128500px;}
.ws4f{word-spacing:2.152500px;}
.ws10a{word-spacing:2.164500px;}
.ws93{word-spacing:2.193000px;}
.ws117{word-spacing:2.205000px;}
.wsa{word-spacing:2.208000px;}
.ws91{word-spacing:2.257500px;}
.ws53{word-spacing:2.310000px;}
.ws28{word-spacing:2.322000px;}
.wse1{word-spacing:2.362500px;}
.ws3e{word-spacing:2.386500px;}
.ws110{word-spacing:2.398500px;}
.ws39{word-spacing:2.415000px;}
.wse{word-spacing:2.448000px;}
.ws41{word-spacing:2.451000px;}
.wsc3{word-spacing:2.467500px;}
.ws6d{word-spacing:2.515500px;}
.wsec{word-spacing:2.520000px;}
.ws119{word-spacing:2.572500px;}
.ws82{word-spacing:2.580000px;}
.ws113{word-spacing:2.625000px;}
.ws30{word-spacing:2.644500px;}
.wsd6{word-spacing:2.677500px;}
.wsc{word-spacing:2.688000px;}
.ws2e{word-spacing:2.709000px;}
.wsa3{word-spacing:2.730000px;}
.ws4b{word-spacing:2.773500px;}
.ws112{word-spacing:2.782500px;}
.wsff{word-spacing:2.808000px;}
.wsda{word-spacing:2.835000px;}
.ws65{word-spacing:2.838000px;}
.ws10d{word-spacing:2.866500px;}
.ws5{word-spacing:2.880000px;}
.ws4e{word-spacing:2.887500px;}
.ws16{word-spacing:2.898000px;}
.ws6f{word-spacing:2.902500px;}
.ws6b{word-spacing:2.967000px;}
.wse9{word-spacing:2.992500px;}
.ws45{word-spacing:3.031500px;}
.wsdc{word-spacing:3.045000px;}
.ws64{word-spacing:3.096000px;}
.wsc0{word-spacing:3.097500px;}
.ws103{word-spacing:3.100500px;}
.wsed{word-spacing:3.150000px;}
.ws83{word-spacing:3.160500px;}
.wsde{word-spacing:3.202500px;}
.ws5b{word-spacing:3.225000px;}
.ws34{word-spacing:3.289500px;}
.ws118{word-spacing:3.307500px;}
.ws3f{word-spacing:3.354000px;}
.wsd2{word-spacing:3.412500px;}
.ws90{word-spacing:3.418500px;}
.ws50{word-spacing:3.465000px;}
.ws5a{word-spacing:3.483000px;}
.ws15{word-spacing:3.486000px;}
.ws52{word-spacing:3.517500px;}
.ws68{word-spacing:3.547500px;}
.ws12{word-spacing:3.552000px;}
.ws5c{word-spacing:3.612000px;}
.ws23{word-spacing:3.676500px;}
.ws8c{word-spacing:3.741000px;}
.wsf9{word-spacing:3.744000px;}
.wse2{word-spacing:3.780000px;}
.ws7{word-spacing:3.792000px;}
.wsb9{word-spacing:3.805500px;}
.wsdd{word-spacing:3.832500px;}
.wsc9{word-spacing:3.870000px;}
.ws9e{word-spacing:3.934500px;}
.wsad{word-spacing:3.990000px;}
.ws47{word-spacing:3.999000px;}
.wsd4{word-spacing:4.063500px;}
.wsfa{word-spacing:4.095000px;}
.ws6{word-spacing:4.128000px;}
.wse6{word-spacing:4.147500px;}
.ws40{word-spacing:4.192500px;}
.wsd1{word-spacing:4.200000px;}
.ws35{word-spacing:4.252500px;}
.ws2d{word-spacing:4.257000px;}
.ws76{word-spacing:4.321500px;}
.ws5d{word-spacing:4.386000px;}
.ws27{word-spacing:4.450500px;}
.ws26{word-spacing:4.515000px;}
.ws104{word-spacing:4.563000px;}
.ws3d{word-spacing:4.579500px;}
.ws44{word-spacing:4.644000px;}
.ws51{word-spacing:4.672500px;}
.wsb1{word-spacing:4.708500px;}
.ws102{word-spacing:4.738500px;}
.wsf3{word-spacing:4.773000px;}
.wsdb{word-spacing:4.777500px;}
.wsb0{word-spacing:4.837500px;}
.ws8f{word-spacing:4.902000px;}
.wse4{word-spacing:4.935000px;}
.wsf2{word-spacing:4.966500px;}
.ws115{word-spacing:4.987500px;}
.ws6a{word-spacing:5.031000px;}
.ws9f{word-spacing:5.095500px;}
.ws9d{word-spacing:5.160000px;}
.ws2f{word-spacing:5.224500px;}
.ws58{word-spacing:5.289000px;}
.ws56{word-spacing:5.302500px;}
.wsfd{word-spacing:5.323500px;}
.wsc7{word-spacing:5.353500px;}
.wse3{word-spacing:5.407500px;}
.ws24{word-spacing:5.418000px;}
.ws2a{word-spacing:5.482500px;}
.ws101{word-spacing:5.499000px;}
.ws54{word-spacing:5.512500px;}
.ws49{word-spacing:5.547000px;}
.wsfc{word-spacing:5.557500px;}
.ws20{word-spacing:5.611500px;}
.ws55{word-spacing:5.670000px;}
.ws78{word-spacing:5.676000px;}
.wsba{word-spacing:5.740500px;}
.wsb3{word-spacing:5.805000px;}
.ws36{word-spacing:5.827500px;}
.ws60{word-spacing:5.869500px;}
.wsd7{word-spacing:5.934000px;}
.ws106{word-spacing:5.967000px;}
.ws114{word-spacing:5.985000px;}
.ws43{word-spacing:5.998500px;}
.ws10{word-spacing:6.000000px;}
.ws4c{word-spacing:6.063000px;}
.ws1d{word-spacing:6.127500px;}
.wsf1{word-spacing:6.192000px;}
.wsf6{word-spacing:6.318000px;}
.ws29{word-spacing:6.385500px;}
.wse8{word-spacing:6.405000px;}
.ws10f{word-spacing:6.435000px;}
.ws70{word-spacing:6.450000px;}
.ws3c{word-spacing:6.514500px;}
.wsc2{word-spacing:6.562500px;}
.wsbe{word-spacing:6.579000px;}
.ws7f{word-spacing:6.643500px;}
.ws69{word-spacing:6.708000px;}
.wsd0{word-spacing:6.772500px;}
.ws6c{word-spacing:6.837000px;}
.ws59{word-spacing:6.901500px;}
.wsd8{word-spacing:6.966000px;}
.ws48{word-spacing:7.030500px;}
.ws1c{word-spacing:7.095000px;}
.ws63{word-spacing:7.159500px;}
.ws8a{word-spacing:7.224000px;}
.ws25{word-spacing:7.288500px;}
.ws111{word-spacing:7.297500px;}
.wsfb{word-spacing:7.312500px;}
.wsbd{word-spacing:7.353000px;}
.wscc{word-spacing:7.417500px;}
.wsc6{word-spacing:7.482000px;}
.ws94{word-spacing:7.546500px;}
.ws5e{word-spacing:7.611000px;}
.ws31{word-spacing:7.675500px;}
.ws2b{word-spacing:7.740000px;}
.wscb{word-spacing:7.804500px;}
.ws46{word-spacing:7.869000px;}
.ws2c{word-spacing:7.933500px;}
.ws81{word-spacing:7.998000px;}
.ws1e{word-spacing:8.062500px;}
.ws4{word-spacing:10.656000px;}
.ws1b{word-spacing:12.750000px;}
.ws3{word-spacing:13.344000px;}
.ws79{word-spacing:13.500000px;}
.wsa7{word-spacing:98.976000px;}
.ws87{word-spacing:121.392000px;}
.ws88{word-spacing:121.986000px;}
.wsa8{word-spacing:143.100000px;}
.ws89{word-spacing:146.448000px;}
.wsa9{word-spacing:156.600000px;}
.ws97{word-spacing:168.696000px;}
.wsb6{word-spacing:171.450000px;}
.ws8e{word-spacing:195.696000px;}
.ws9a{word-spacing:236.736000px;}
.wsb7{word-spacing:238.194000px;}
.ws9b{word-spacing:242.190000px;}
.ws98{word-spacing:269.190000px;}
.wsb8{word-spacing:282.042000px;}
.ws99{word-spacing:316.980000px;}
.ws86{word-spacing:328.224000px;}
.wsa6{word-spacing:359.328000px;}
.ws84{word-spacing:407.520000px;}
.ws7c{word-spacing:426.672000px;}
.ws74{word-spacing:431.136000px;}
.ws85{word-spacing:451.602000px;}
.ws7d{word-spacing:525.636000px;}
.ws7e{word-spacing:556.092000px;}
.ws75{word-spacing:561.168000px;}
.wsb5{word-spacing:622.242000px;}
.ws3b{word-spacing:1149.576000px;}
.ws1{word-spacing:1818.756000px;}
._1{margin-left:-14.880000px;}
._5{margin-left:-9.324000px;}
._8{margin-left:-5.921100px;}
._2{margin-left:-1.339200px;}
._7{width:1.283550px;}
._40{width:2.477100px;}
._42{width:3.758400px;}
._43{width:5.330250px;}
._41{width:6.339225px;}
._3{width:8.190000px;}
._4{width:11.676000px;}
._0{width:13.344000px;}
._e{width:14.647500px;}
._3d{width:63.720000px;}
._3c{width:67.230000px;}
._3b{width:68.904000px;}
._3e{width:70.146000px;}
._38{width:76.656000px;}
._37{width:81.936000px;}
._36{width:96.048000px;}
._3a{width:100.926000px;}
._35{width:102.864000px;}
._1f{width:135.486000px;}
._34{width:137.040000px;}
._19{width:139.248000px;}
._3f{width:142.344000px;}
._1d{width:143.424000px;}
._1a{width:147.168000px;}
._1b{width:150.336000px;}
._2c{width:156.600000px;}
._1e{width:159.552000px;}
._2b{width:161.352000px;}
._39{width:167.472000px;}
._2d{width:170.100000px;}
._23{width:189.702000px;}
._2e{width:203.310000px;}
._1c{width:209.196000px;}
._2f{width:228.798000px;}
._24{width:243.486000px;}
._31{width:251.748000px;}
._2a{width:256.080000px;}
._21{width:262.710000px;}
._26{width:276.750000px;}
._27{width:282.690000px;}
._25{width:292.194000px;}
._32{width:295.542000px;}
._28{width:298.188000px;}
._30{width:309.474000px;}
._29{width:330.480000px;}
._33{width:345.492000px;}
._18{width:351.216000px;}
._16{width:387.396000px;}
._22{width:388.962000px;}
._15{width:429.246000px;}
._14{width:465.102000px;}
._c{width:470.880000px;}
._13{width:516.348000px;}
._f{width:524.016000px;}
._9{width:529.104000px;}
._10{width:539.136000px;}
._a{width:543.618000px;}
._11{width:569.592000px;}
._b{width:574.668000px;}
._12{width:695.142000px;}
._20{width:697.626000px;}
._d{width:701.514000px;}
._17{width:846.180000px;}
._6{width:869.585400px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.125000px;}
.fs4{font-size:36.000000px;}
.fsd{font-size:39.375000px;}
.fs9{font-size:41.925000px;}
.fs5{font-size:42.000000px;}
.fs10{font-size:43.875000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:48.375000px;}
.fs7{font-size:51.000000px;}
.fsc{font-size:52.500000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fsf{font-size:58.500000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.647450px;}
.y2b{bottom:98.452050px;}
.y2a{bottom:110.453550px;}
.y19a{bottom:124.521000px;}
.y22c{bottom:124.548900px;}
.y70{bottom:124.554525px;}
.y217{bottom:124.560150px;}
.y1ba{bottom:124.565775px;}
.y16e{bottom:124.571400px;}
.y51{bottom:124.577025px;}
.y2a6{bottom:124.581075px;}
.y282{bottom:124.997025px;}
.y239{bottom:125.003700px;}
.y26d{bottom:125.040975px;}
.y1a6{bottom:125.127825px;}
.y241{bottom:125.143950px;}
.y2d0{bottom:125.657700px;}
.yd3{bottom:126.270600px;}
.ybd{bottom:126.280950px;}
.y29{bottom:126.700500px;}
.y10b{bottom:127.264575px;}
.y8f{bottom:128.520150px;}
.y153{bottom:137.615550px;}
.y22b{bottom:138.947025px;}
.y50{bottom:138.952650px;}
.y216{bottom:138.958275px;}
.ye9{bottom:138.958950px;}
.y1b9{bottom:138.963900px;}
.y16d{bottom:138.969525px;}
.y28{bottom:140.823000px;}
.y2a5{bottom:141.063450px;}
.y2cf{bottom:141.979200px;}
.y199{bottom:142.194000px;}
.y238{bottom:142.596075px;}
.y26c{bottom:142.633350px;}
.y281{bottom:142.662450px;}
.y1a5{bottom:142.720200px;}
.y240{bottom:142.736325px;}
.y8e{bottom:142.912650px;}
.y125{bottom:143.058375px;}
.yd2{bottom:143.862975px;}
.y10a{bottom:144.856950px;}
.ybc{bottom:149.405850px;}
.y22a{bottom:153.345150px;}
.y4f{bottom:153.350775px;}
.y215{bottom:153.356400px;}
.y1b8{bottom:153.362025px;}
.y27{bottom:157.077000px;}
.y8d{bottom:157.305150px;}
.y124{bottom:157.456500px;}
.y2a4{bottom:157.542825px;}
.ye8{bottom:157.588950px;}
.y2ce{bottom:158.297700px;}
.y198{bottom:159.867000px;}
.y237{bottom:160.188450px;}
.y26b{bottom:160.225725px;}
.y280{bottom:160.254825px;}
.y1a4{bottom:160.312575px;}
.y23f{bottom:160.328700px;}
.yd1{bottom:161.455350px;}
.y109{bottom:162.449325px;}
.y152{bottom:162.873300px;}
.y229{bottom:167.743275px;}
.y4e{bottom:167.748900px;}
.y214{bottom:167.754525px;}
.y26{bottom:168.259500px;}
.yab{bottom:168.702225px;}
.y16c{bottom:171.697650px;}
.ybb{bottom:172.288350px;}
.y2a3{bottom:174.023775px;}
.y2cd{bottom:174.619200px;}
.ye7{bottom:176.218950px;}
.y197{bottom:177.540000px;}
.y236{bottom:177.780825px;}
.y25b{bottom:177.807150px;}
.y26a{bottom:177.818100px;}
.y27f{bottom:177.847200px;}
.y1a3{bottom:177.904950px;}
.y23e{bottom:177.921075px;}
.yd0{bottom:179.047725px;}
.y108{bottom:180.041700px;}
.y213{bottom:182.130150px;}
.y228{bottom:182.141400px;}
.y4d{bottom:182.147025px;}
.y123{bottom:182.718450px;}
.y25{bottom:183.694500px;}
.y16b{bottom:186.090150px;}
.yaa{bottom:186.294600px;}
.y151{bottom:190.008300px;}
.y2a2{bottom:190.506150px;}
.yba{bottom:190.918350px;}
.y2cc{bottom:190.939200px;}
.ye6{bottom:194.848950px;}
.y24{bottom:194.877000px;}
.y196{bottom:195.213000px;}
.y25a{bottom:195.399525px;}
.y17b{bottom:195.410475px;}
.y235{bottom:195.435075px;}
.y13b{bottom:195.439200px;}
.y27e{bottom:195.439575px;}
.y23d{bottom:195.513450px;}
.y212{bottom:196.528275px;}
.y1e5{bottom:196.539525px;}
.ycf{bottom:196.640100px;}
.y107{bottom:197.634075px;}
.y4c{bottom:200.482650px;}
.ya9{bottom:203.886975px;}
.y23{bottom:206.059500px;}
.y2a1{bottom:206.985375px;}
.y2cb{bottom:207.257850px;}
.y150{bottom:208.638300px;}
.yb9{bottom:209.548350px;}
.y122{bottom:209.853450px;}
.y6f{bottom:210.909525px;}
.y211{bottom:210.926400px;}
.y1b7{bottom:210.932025px;}
.y195{bottom:212.886000px;}
.y8c{bottom:212.990475px;}
.y259{bottom:212.991900px;}
.y17a{bottom:213.002850px;}
.y234{bottom:213.027450px;}
.y13a{bottom:213.031575px;}
.y1fb{bottom:213.072975px;}
.y1a2{bottom:213.089700px;}
.y23c{bottom:213.105825px;}
.ye5{bottom:213.478950px;}
.y16a{bottom:214.875150px;}
.y106{bottom:215.226450px;}
.y2ed{bottom:220.981650px;}
.ya8{bottom:221.479350px;}
.y2a0{bottom:223.467750px;}
.y2ca{bottom:223.579350px;}
.y1e4{bottom:225.296400px;}
.y6e{bottom:225.307650px;}
.y169{bottom:225.313275px;}
.y210{bottom:225.324525px;}
.yb8{bottom:228.178350px;}
.y121{bottom:228.483450px;}
.y1b6{bottom:229.267650px;}
.y194{bottom:230.559000px;}
.y8b{bottom:230.582850px;}
.y258{bottom:230.584275px;}
.y179{bottom:230.595225px;}
.y1d6{bottom:230.607450px;}
.y233{bottom:230.619825px;}
.y139{bottom:230.623950px;}
.y27d{bottom:230.624325px;}
.y1fa{bottom:230.665350px;}
.y23b{bottom:230.698200px;}
.ye4{bottom:232.108950px;}
.y105{bottom:232.818825px;}
.y2ec{bottom:235.379775px;}
.y14f{bottom:235.773300px;}
.ya7{bottom:239.084100px;}
.y1e3{bottom:239.694525px;}
.y6d{bottom:239.705775px;}
.y168{bottom:239.711400px;}
.y2c9{bottom:239.897700px;}
.y29f{bottom:239.948700px;}
.y20f{bottom:243.660150px;}
.yb7{bottom:246.808350px;}
.y117{bottom:247.989375px;}
.y8a{bottom:248.175225px;}
.y257{bottom:248.176650px;}
.y178{bottom:248.187600px;}
.y4b{bottom:248.189400px;}
.y1d5{bottom:248.199825px;}
.y232{bottom:248.212200px;}
.y138{bottom:248.216325px;}
.y193{bottom:248.232000px;}
.y1f9{bottom:248.257725px;}
.y23a{bottom:248.290575px;}
.yce{bottom:249.426000px;}
.y2eb{bottom:249.777900px;}
.y104{bottom:250.411200px;}
.ye3{bottom:250.738950px;}
.y20e{bottom:254.087025px;}
.y1e2{bottom:254.092650px;}
.y6c{bottom:254.103900px;}
.y167{bottom:254.109525px;}
.y120{bottom:255.620250px;}
.y2c8{bottom:256.219200px;}
.y29e{bottom:256.427925px;}
.ya6{bottom:256.676475px;}
.y14e{bottom:262.908300px;}
.y2ea{bottom:264.176025px;}
.yb6{bottom:265.438350px;}
.y89{bottom:265.767600px;}
.y256{bottom:265.769025px;}
.y177{bottom:265.779975px;}
.y4a{bottom:265.781775px;}
.y1d4{bottom:265.792200px;}
.y231{bottom:265.804575px;}
.y137{bottom:265.808700px;}
.y1f8{bottom:265.850100px;}
.y227{bottom:265.866825px;}
.y1a1{bottom:265.882950px;}
.y192{bottom:265.905000px;}
.y103{bottom:268.003575px;}
.y20d{bottom:268.485150px;}
.y1e1{bottom:268.490775px;}
.y6b{bottom:268.502025px;}
.y116{bottom:270.380625px;}
.y166{bottom:272.445150px;}
.y2c7{bottom:272.539200px;}
.ycd{bottom:272.551800px;}
.y29d{bottom:272.910300px;}
.ya5{bottom:274.268850px;}
.ye2{bottom:277.875600px;}
.y2e9{bottom:278.574150px;}
.y11f{bottom:281.624250px;}
.y20c{bottom:282.883275px;}
.y1e0{bottom:282.888900px;}
.y88{bottom:283.359975px;}
.y176{bottom:283.372350px;}
.y49{bottom:283.374150px;}
.y1d3{bottom:283.384575px;}
.y255{bottom:283.393350px;}
.y230{bottom:283.396950px;}
.y136{bottom:283.401075px;}
.y27c{bottom:283.417575px;}
.y1f7{bottom:283.442475px;}
.y226{bottom:283.459200px;}
.y1a0{bottom:283.475325px;}
.y191{bottom:283.578000px;}
.yb5{bottom:284.068350px;}
.y115{bottom:284.778750px;}
.y102{bottom:285.595950px;}
.y6a{bottom:286.837650px;}
.y2c6{bottom:288.857850px;}
.y29c{bottom:289.389675px;}
.ya4{bottom:291.873450px;}
.y2e8{bottom:292.972275px;}
.ycc{bottom:295.434300px;}
.y14d{bottom:296.778450px;}
.y20b{bottom:297.281400px;}
.y1df{bottom:297.287025px;}
.y114{bottom:299.176875px;}
.y220{bottom:300.956325px;}
.y175{bottom:300.964725px;}
.y48{bottom:300.966525px;}
.y1d2{bottom:300.976950px;}
.y254{bottom:300.985725px;}
.y22f{bottom:300.989325px;}
.y135{bottom:300.993450px;}
.y87{bottom:301.001850px;}
.y27b{bottom:301.009950px;}
.y1f6{bottom:301.034850px;}
.y225{bottom:301.051575px;}
.y19f{bottom:301.067700px;}
.y190{bottom:301.251000px;}
.yb4{bottom:302.698350px;}
.y101{bottom:303.188325px;}
.ye1{bottom:303.879600px;}
.y2c5{bottom:305.177850px;}
.y29b{bottom:305.872050px;}
.y2e7{bottom:307.370400px;}
.ya3{bottom:309.465825px;}
.y20a{bottom:311.679525px;}
.y113{bottom:313.575000px;}
.ycb{bottom:314.064300px;}
.y11e{bottom:314.386950px;}
.y1de{bottom:315.622650px;}
.y22{bottom:316.063500px;}
.y165{bottom:318.557100px;}
.y47{bottom:318.558900px;}
.y1d1{bottom:318.569325px;}
.y253{bottom:318.578100px;}
.y22e{bottom:318.581700px;}
.y134{bottom:318.585825px;}
.y86{bottom:318.594225px;}
.y27a{bottom:318.602325px;}
.y1b5{bottom:318.606600px;}
.y21f{bottom:318.614700px;}
.y1f5{bottom:318.627225px;}
.y14c{bottom:318.627825px;}
.y224{bottom:318.643950px;}
.y19e{bottom:318.660075px;}
.y100{bottom:320.780700px;}
.yb3{bottom:321.328350px;}
.y2c4{bottom:321.499350px;}
.y2e6{bottom:321.768525px;}
.y29a{bottom:322.351425px;}
.ya2{bottom:327.058200px;}
.y209{bottom:330.015150px;}
.yca{bottom:332.694300px;}
.y21{bottom:335.191500px;}
.y2e5{bottom:336.125250px;}
.y164{bottom:336.149475px;}
.y46{bottom:336.151275px;}
.y69{bottom:336.153450px;}
.y1d0{bottom:336.161700px;}
.y252{bottom:336.170475px;}
.y22d{bottom:336.174075px;}
.y133{bottom:336.178200px;}
.y85{bottom:336.186600px;}
.y279{bottom:336.194700px;}
.y1b4{bottom:336.198975px;}
.y21e{bottom:336.207075px;}
.y1f4{bottom:336.219600px;}
.y11d{bottom:336.236325px;}
.y19d{bottom:336.252450px;}
.ye0{bottom:336.551700px;}
.y2c3{bottom:337.817700px;}
.yff{bottom:338.373075px;}
.y112{bottom:338.832750px;}
.y299{bottom:338.833800px;}
.yb2{bottom:339.958350px;}
.y208{bottom:340.447650px;}
.ya1{bottom:344.658975px;}
.y20{bottom:347.935500px;}
.y2e4{bottom:350.523375px;}
.yc9{bottom:351.324300px;}
.y68{bottom:353.745825px;}
.y1cf{bottom:353.754075px;}
.y174{bottom:353.762325px;}
.y163{bottom:353.766450px;}
.y132{bottom:353.770575px;}
.y45{bottom:353.772525px;}
.y84{bottom:353.778975px;}
.y278{bottom:353.787075px;}
.y1b3{bottom:353.791350px;}
.y21d{bottom:353.799450px;}
.y1f3{bottom:353.811975px;}
.y269{bottom:353.815950px;}
.y223{bottom:353.828700px;}
.y19c{bottom:353.844825px;}
.y2c2{bottom:354.137700px;}
.y207{bottom:354.845775px;}
.y298{bottom:355.313025px;}
.yfe{bottom:355.965450px;}
.ydf{bottom:358.401075px;}
.yb1{bottom:358.588350px;}
.y1f{bottom:360.679500px;}
.y18f{bottom:361.436700px;}
.ya0{bottom:362.251350px;}
.y2e3{bottom:364.921500px;}
.y111{bottom:365.967750px;}
.y206{bottom:369.243900px;}
.yc8{bottom:369.954300px;}
.y2c1{bottom:370.459200px;}
.y67{bottom:371.338200px;}
.y1ce{bottom:371.346450px;}
.y173{bottom:371.354700px;}
.y251{bottom:371.355225px;}
.y162{bottom:371.358825px;}
.y131{bottom:371.362950px;}
.y44{bottom:371.364900px;}
.y83{bottom:371.371350px;}
.y277{bottom:371.379450px;}
.y1b2{bottom:371.383725px;}
.y21c{bottom:371.391825px;}
.y1f2{bottom:371.404350px;}
.y268{bottom:371.408325px;}
.y14b{bottom:371.421075px;}
.y19b{bottom:371.437200px;}
.y297{bottom:371.795400px;}
.y1e{bottom:373.423500px;}
.yfd{bottom:373.557825px;}
.y18e{bottom:375.900450px;}
.yb0{bottom:377.218350px;}
.y2e2{bottom:379.319625px;}
.y9f{bottom:379.855950px;}
.y205{bottom:383.642025px;}
.y110{bottom:384.597750px;}
.y1d{bottom:386.167500px;}
.y2c0{bottom:386.777700px;}
.y296{bottom:388.274775px;}
.yc7{bottom:388.584300px;}
.y1cd{bottom:388.938825px;}
.y172{bottom:388.947075px;}
.y161{bottom:388.951200px;}
.y130{bottom:388.955325px;}
.y43{bottom:388.957275px;}
.y82{bottom:388.963725px;}
.y276{bottom:388.971825px;}
.y1b1{bottom:388.976100px;}
.y21b{bottom:388.984200px;}
.y1f1{bottom:388.996725px;}
.y267{bottom:389.000700px;}
.y14a{bottom:389.013450px;}
.y66{bottom:389.017350px;}
.y11c{bottom:389.029575px;}
.yfc{bottom:391.150200px;}
.y2e1{bottom:393.717750px;}
.yaf{bottom:395.848350px;}
.y9e{bottom:397.448325px;}
.y1c{bottom:398.911500px;}
.y18d{bottom:401.232750px;}
.y204{bottom:401.977650px;}
.y2bf{bottom:403.099200px;}
.y295{bottom:404.757150px;}
.y1dd{bottom:406.535325px;}
.y171{bottom:406.539450px;}
.y160{bottom:406.543575px;}
.y12f{bottom:406.547700px;}
.y42{bottom:406.549650px;}
.y1cc{bottom:406.551825px;}
.y81{bottom:406.556100px;}
.y275{bottom:406.564200px;}
.y1b0{bottom:406.568475px;}
.y21a{bottom:406.576575px;}
.y1f0{bottom:406.589100px;}
.y266{bottom:406.593075px;}
.y149{bottom:406.605825px;}
.y65{bottom:406.609725px;}
.y11b{bottom:406.621950px;}
.yc6{bottom:407.214300px;}
.y2e0{bottom:408.115875px;}
.yfb{bottom:408.742575px;}
.yde{bottom:411.194325px;}
.y1b{bottom:411.655500px;}
.y10f{bottom:411.732750px;}
.y9d{bottom:415.040700px;}
.yae{bottom:418.729200px;}
.y2be{bottom:419.417850px;}
.y2df{bottom:422.514000px;}
.y170{bottom:424.131825px;}
.y15f{bottom:424.135950px;}
.y12e{bottom:424.140075px;}
.y41{bottom:424.142025px;}
.y1cb{bottom:424.144200px;}
.y80{bottom:424.148475px;}
.y1dc{bottom:424.152450px;}
.y274{bottom:424.156575px;}
.y1af{bottom:424.160850px;}
.y219{bottom:424.168950px;}
.y1ef{bottom:424.181475px;}
.y265{bottom:424.185450px;}
.y148{bottom:424.198200px;}
.y64{bottom:424.202100px;}
.y11a{bottom:424.214325px;}
.y1a{bottom:424.399500px;}
.yc5{bottom:425.844300px;}
.yfa{bottom:426.355575px;}
.y18c{bottom:428.367750px;}
.ydd{bottom:428.790825px;}
.y9c{bottom:432.637350px;}
.y2bd{bottom:435.739350px;}
.y2de{bottom:436.912125px;}
.y19{bottom:437.143500px;}
.y10e{bottom:438.867750px;}
.y294{bottom:438.888075px;}
.y16f{bottom:441.724200px;}
.y15e{bottom:441.728325px;}
.y12d{bottom:441.732450px;}
.y40{bottom:441.734400px;}
.y1ca{bottom:441.736575px;}
.y7f{bottom:441.740850px;}
.y1db{bottom:441.744825px;}
.y273{bottom:441.748950px;}
.y1ae{bottom:441.753225px;}
.y203{bottom:441.761325px;}
.y1ee{bottom:441.773850px;}
.y264{bottom:441.777825px;}
.y147{bottom:441.790575px;}
.y63{bottom:441.794475px;}
.y119{bottom:441.806700px;}
.yf9{bottom:443.947950px;}
.yc4{bottom:444.474300px;}
.ydc{bottom:446.383200px;}
.y18b{bottom:446.997750px;}
.yad{bottom:449.337075px;}
.y18{bottom:449.887500px;}
.y9b{bottom:450.242100px;}
.y2bc{bottom:452.056200px;}
.y12c{bottom:459.324825px;}
.y3f{bottom:459.326775px;}
.y1c9{bottom:459.328950px;}
.y7e{bottom:459.333225px;}
.y1da{bottom:459.337200px;}
.y272{bottom:459.341325px;}
.y1ad{bottom:459.345600px;}
.y202{bottom:459.353700px;}
.y1ed{bottom:459.366225px;}
.y263{bottom:459.370200px;}
.y146{bottom:459.382950px;}
.y62{bottom:459.386850px;}
.y118{bottom:459.399075px;}
.y2dd{bottom:460.104000px;}
.yf8{bottom:461.540325px;}
.y17{bottom:462.631500px;}
.yc3{bottom:463.104300px;}
.y9a{bottom:467.834475px;}
.y2bb{bottom:468.377700px;}
.yac{bottom:471.186450px;}
.y10d{bottom:472.668075px;}
.y18a{bottom:474.130650px;}
.y1c8{bottom:476.921325px;}
.y7d{bottom:476.925600px;}
.y1d9{bottom:476.929575px;}
.y271{bottom:476.933700px;}
.y1ac{bottom:476.937975px;}
.y12b{bottom:476.941950px;}
.y201{bottom:476.946075px;}
.y1ec{bottom:476.958600px;}
.y262{bottom:476.962575px;}
.y145{bottom:476.975325px;}
.y61{bottom:476.979225px;}
.y3e{bottom:476.991450px;}
.yf7{bottom:479.132700px;}
.yc2{bottom:481.734300px;}
.y2ba{bottom:484.699200px;}
.y99{bottom:485.426850px;}
.y16{bottom:488.143500px;}
.y293{bottom:491.842575px;}
.y1c7{bottom:494.513700px;}
.y10c{bottom:494.517450px;}
.y7c{bottom:494.517975px;}
.y1d8{bottom:494.521950px;}
.y270{bottom:494.526075px;}
.y1ab{bottom:494.530350px;}
.y12a{bottom:494.534325px;}
.y200{bottom:494.538450px;}
.y1eb{bottom:494.550975px;}
.y261{bottom:494.554950px;}
.y144{bottom:494.567700px;}
.y60{bottom:494.571600px;}
.y3d{bottom:494.583825px;}
.yf6{bottom:496.725075px;}
.ydb{bottom:499.168950px;}
.yc1{bottom:500.364300px;}
.y2b9{bottom:501.017700px;}
.y98{bottom:503.027325px;}
.y189{bottom:506.806575px;}
.y15{bottom:507.271500px;}
.y292{bottom:509.596200px;}
.y2dc{bottom:509.696325px;}
.y1d7{bottom:512.114325px;}
.y26f{bottom:512.118450px;}
.y15d{bottom:512.122725px;}
.y129{bottom:512.126700px;}
.y7b{bottom:512.130825px;}
.y1c6{bottom:512.139075px;}
.y1ea{bottom:512.143350px;}
.y260{bottom:512.147325px;}
.y143{bottom:512.160075px;}
.y5f{bottom:512.163975px;}
.y250{bottom:512.172075px;}
.y3c{bottom:512.176200px;}
.yf5{bottom:514.317450px;}
.y2b8{bottom:517.339200px;}
.y14{bottom:520.015500px;}
.y97{bottom:520.619700px;}
.yc0{bottom:523.245150px;}
.yda{bottom:524.429850px;}
.y188{bottom:524.479575px;}
.y2db{bottom:527.288700px;}
.y291{bottom:527.349825px;}
.y26e{bottom:529.710825px;}
.y15c{bottom:529.715100px;}
.y128{bottom:529.719075px;}
.y7a{bottom:529.723200px;}
.y1c5{bottom:529.731450px;}
.y1e9{bottom:529.735725px;}
.y25f{bottom:529.739700px;}
.y142{bottom:529.752450px;}
.y5e{bottom:529.756350px;}
.y24f{bottom:529.764450px;}
.y3b{bottom:529.768575px;}
.y13{bottom:532.759500px;}
.y2b7{bottom:533.657700px;}
.y96{bottom:538.266450px;}
.y290{bottom:545.103450px;}
.y12{bottom:545.503500px;}
.y187{bottom:546.393450px;}
.y15b{bottom:547.307475px;}
.y127{bottom:547.311450px;}
.y79{bottom:547.315575px;}
.y1c4{bottom:547.323825px;}
.y1e8{bottom:547.328100px;}
.y25e{bottom:547.332075px;}
.y141{bottom:547.344825px;}
.y5d{bottom:547.348725px;}
.y24e{bottom:547.356825px;}
.y3a{bottom:547.360950px;}
.y2b6{bottom:549.979200px;}
.yd9{bottom:551.564850px;}
.ybf{bottom:553.843200px;}
.y95{bottom:555.858825px;}
.y11{bottom:558.247500px;}
.y2da{bottom:562.473450px;}
.y28f{bottom:562.857075px;}
.y126{bottom:564.903825px;}
.y78{bottom:564.907950px;}
.y1c3{bottom:564.916200px;}
.y1e7{bottom:564.920475px;}
.y25d{bottom:564.924450px;}
.y140{bottom:564.937200px;}
.y5c{bottom:564.941100px;}
.y24d{bottom:564.949200px;}
.y39{bottom:564.953325px;}
.y2b5{bottom:566.297700px;}
.yd8{bottom:570.194850px;}
.y10{bottom:570.991500px;}
.y94{bottom:573.451200px;}
.yf4{bottom:574.433700px;}
.ybe{bottom:575.692575px;}
.y28e{bottom:580.610700px;}
.y77{bottom:582.500325px;}
.y1c2{bottom:582.508575px;}
.y1e6{bottom:582.512850px;}
.y25c{bottom:582.516825px;}
.y13f{bottom:582.529575px;}
.y5b{bottom:582.533475px;}
.y24c{bottom:582.541575px;}
.y38{bottom:582.545700px;}
.y2b4{bottom:582.619200px;}
.yf{bottom:583.735500px;}
.yd7{bottom:588.824850px;}
.y93{bottom:591.043575px;}
.ye{bottom:596.479500px;}
.y28d{bottom:598.364325px;}
.y2b3{bottom:598.937850px;}
.y186{bottom:599.251200px;}
.yf3{bottom:599.690250px;}
.y1ff{bottom:600.092700px;}
.y1aa{bottom:600.096825px;}
.y1c1{bottom:600.100950px;}
.y15a{bottom:600.105225px;}
.y218{bottom:600.109200px;}
.y76{bottom:600.117450px;}
.y13e{bottom:600.121950px;}
.y5a{bottom:600.125850px;}
.y24b{bottom:600.133950px;}
.y37{bottom:600.138075px;}
.y92{bottom:608.635950px;}
.yd{bottom:609.230250px;}
.y2d9{bottom:615.257850px;}
.y2b2{bottom:615.259350px;}
.yd6{bottom:615.957750px;}
.y28c{bottom:616.117950px;}
.y185{bottom:616.924200px;}
.y1a9{bottom:617.693325px;}
.y159{bottom:617.697600px;}
.y1fe{bottom:617.701575px;}
.y75{bottom:617.709825px;}
.y13d{bottom:617.714325px;}
.y59{bottom:617.718225px;}
.y24a{bottom:617.726325px;}
.y36{bottom:617.730450px;}
.yc{bottom:621.974250px;}
.y91{bottom:626.228325px;}
.yf2{bottom:626.825250px;}
.y2b1{bottom:631.579350px;}
.y28b{bottom:633.871575px;}
.y184{bottom:634.597200px;}
.y1c0{bottom:635.285700px;}
.y158{bottom:635.289975px;}
.y1fd{bottom:635.293950px;}
.y74{bottom:635.302200px;}
.y1a8{bottom:635.306325px;}
.y222{bottom:635.306700px;}
.y58{bottom:635.310600px;}
.y249{bottom:635.318700px;}
.y35{bottom:635.322825px;}
.yf1{bottom:645.455250px;}
.y2d8{bottom:647.897700px;}
.y2b0{bottom:647.899350px;}
.yd5{bottom:648.642075px;}
.y28a{bottom:651.625200px;}
.y183{bottom:652.270200px;}
.y1fc{bottom:652.886325px;}
.y73{bottom:652.894575px;}
.y157{bottom:652.898700px;}
.y13c{bottom:652.899075px;}
.y57{bottom:652.902975px;}
.y1bf{bottom:652.906950px;}
.y248{bottom:652.911075px;}
.y34{bottom:652.915200px;}
.y90{bottom:661.413075px;}
.yf0{bottom:664.085250px;}
.y2af{bottom:664.217700px;}
.y2d7{bottom:664.219200px;}
.y289{bottom:669.378825px;}
.y182{bottom:669.943200px;}
.y72{bottom:670.486950px;}
.y156{bottom:670.491075px;}
.yd4{bottom:670.491450px;}
.y56{bottom:670.495350px;}
.y1be{bottom:670.499325px;}
.y247{bottom:670.503450px;}
.y33{bottom:670.507575px;}
.yb{bottom:678.710250px;}
.y2d6{bottom:680.537700px;}
.y2ae{bottom:680.539200px;}
.yef{bottom:682.715250px;}
.y288{bottom:687.132450px;}
.y181{bottom:687.616200px;}
.y71{bottom:688.079325px;}
.y155{bottom:688.083450px;}
.y221{bottom:688.083825px;}
.y55{bottom:688.087725px;}
.y1bd{bottom:688.091700px;}
.y246{bottom:688.095825px;}
.y32{bottom:688.099950px;}
.ya{bottom:693.113100px;}
.y2ad{bottom:696.857850px;}
.y2d5{bottom:696.859200px;}
.yee{bottom:701.345250px;}
.y287{bottom:704.886075px;}
.y180{bottom:705.289200px;}
.y154{bottom:705.675825px;}
.y54{bottom:705.680100px;}
.y1bc{bottom:705.684075px;}
.y245{bottom:705.688200px;}
.y31{bottom:705.692325px;}
.y2d4{bottom:713.177850px;}
.y2ac{bottom:713.179350px;}
.y9{bottom:717.083100px;}
.yed{bottom:719.975250px;}
.y286{bottom:722.639700px;}
.y17f{bottom:722.962200px;}
.y53{bottom:723.272475px;}
.y1bb{bottom:723.276450px;}
.y244{bottom:723.280575px;}
.y30{bottom:723.284700px;}
.y2ab{bottom:729.497700px;}
.y2d3{bottom:729.499350px;}
.y8{bottom:736.268100px;}
.yec{bottom:738.605250px;}
.y285{bottom:740.393325px;}
.y17e{bottom:740.635200px;}
.y1a7{bottom:740.868825px;}
.y243{bottom:740.872950px;}
.y2f{bottom:740.877075px;}
.y2d2{bottom:745.817700px;}
.y2aa{bottom:745.819200px;}
.y284{bottom:758.146950px;}
.y17d{bottom:758.308200px;}
.y242{bottom:758.465325px;}
.y2e{bottom:758.469450px;}
.yeb{bottom:761.865000px;}
.y2a9{bottom:762.136200px;}
.y2d1{bottom:762.139200px;}
.y7{bottom:775.313100px;}
.y283{bottom:775.900575px;}
.y17c{bottom:775.981200px;}
.y52{bottom:776.061825px;}
.y2a8{bottom:778.457700px;}
.yea{bottom:787.869000px;}
.y2d{bottom:793.654200px;}
.y6{bottom:794.498100px;}
.y2a7{bottom:794.779200px;}
.y2c{bottom:832.327200px;}
.y3{bottom:835.327800px;}
.y2{bottom:855.702900px;}
.y5{bottom:867.883800px;}
.y4{bottom:881.383800px;}
.he{height:30.912000px;}
.h12{height:31.341064px;}
.h5{height:35.328000px;}
.h1c{height:37.957500px;}
.hc{height:38.388000px;}
.hd{height:41.130000px;}
.hb{height:42.539062px;}
.h9{height:43.054688px;}
.h4{height:44.496000px;}
.ha{height:44.671875px;}
.hf{height:45.745605px;}
.h13{height:47.091064px;}
.h16{height:47.113564px;}
.h14{height:47.181064px;}
.h15{height:48.436523px;}
.h1e{height:48.667500px;}
.h1d{height:48.825000px;}
.h1f{height:48.833100px;}
.h2{height:51.127441px;}
.h17{height:52.472900px;}
.h18{height:52.478600px;}
.h19{height:52.478900px;}
.h1b{height:52.479500px;}
.h7{height:53.173828px;}
.h8{height:53.818359px;}
.h1a{height:54.443848px;}
.h6{height:55.839844px;}
.h11{height:57.854736px;}
.h10{height:60.027832px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xe{left:93.543300px;}
.x17{left:97.429650px;}
.x1e{left:98.988750px;}
.x2a{left:102.736650px;}
.x1{left:107.148450px;}
.x26{left:111.377250px;}
.x1b{left:112.879650px;}
.x11{left:114.803100px;}
.x10{left:119.053050px;}
.x25{left:120.055650px;}
.x23{left:122.084250px;}
.xa{left:124.157250px;}
.x20{left:126.662400px;}
.x12{left:128.409450px;}
.xb{left:132.664650px;}
.x16{left:133.717650px;}
.x2c{left:136.916400px;}
.x14{left:138.748650px;}
.x22{left:140.268750px;}
.x15{left:151.996650px;}
.x1a{left:153.631500px;}
.xc{left:167.305950px;}
.xd{left:172.930950px;}
.x5{left:175.469850px;}
.x7{left:180.944850px;}
.x24{left:190.201050px;}
.x29{left:212.254500px;}
.x1f{left:218.596500px;}
.x21{left:232.202850px;}
.x13{left:237.071925px;}
.x27{left:240.390525px;}
.x19{left:247.100475px;}
.x2b{left:250.731900px;}
.x1c{left:263.033175px;}
.x28{left:264.648000px;}
.x4{left:308.354850px;}
.x6{left:313.469850px;}
.x18{left:321.485100px;}
.x1d{left:327.157200px;}
.x3{left:415.535250px;}
.x9{left:429.498900px;}
.x8{left:438.914850px;}
.xf{left:453.869550px;}
.x2{left:520.665750px;}
@media print{
.v2{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.942933pt;}
.lsa{letter-spacing:-1.146667pt;}
.ls15{letter-spacing:-1.032000pt;}
.ls16{letter-spacing:-0.933333pt;}
.lsb{letter-spacing:-0.917333pt;}
.ls38{letter-spacing:-0.860000pt;}
.ls4{letter-spacing:-0.853333pt;}
.ls39{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.606667pt;}
.ls8{letter-spacing:-0.573333pt;}
.ls9{letter-spacing:-0.516000pt;}
.ls12{letter-spacing:-0.458667pt;}
.lsd{letter-spacing:-0.420000pt;}
.ls13{letter-spacing:-0.344000pt;}
.ls32{letter-spacing:-0.286667pt;}
.ls34{letter-spacing:-0.229333pt;}
.ls35{letter-spacing:-0.223600pt;}
.ls31{letter-spacing:-0.172000pt;}
.ls33{letter-spacing:-0.114667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000267pt;}
.ls41{letter-spacing:0.008000pt;}
.ls4b{letter-spacing:0.008267pt;}
.ls3d{letter-spacing:0.008533pt;}
.ls5b{letter-spacing:0.008800pt;}
.ls3a{letter-spacing:0.009067pt;}
.ls23{letter-spacing:0.030333pt;}
.ls55{letter-spacing:0.030400pt;}
.ls2a{letter-spacing:0.037267pt;}
.ls3f{letter-spacing:0.043733pt;}
.ls20{letter-spacing:0.046667pt;}
.ls40{letter-spacing:0.052000pt;}
.ls11{letter-spacing:0.057333pt;}
.ls5{letter-spacing:0.114667pt;}
.ls30{letter-spacing:0.140000pt;}
.ls59{letter-spacing:0.145600pt;}
.ls22{letter-spacing:0.149067pt;}
.ls58{letter-spacing:0.153600pt;}
.ls47{letter-spacing:0.156000pt;}
.ls4f{letter-spacing:0.156267pt;}
.ls46{letter-spacing:0.158933pt;}
.ls4d{letter-spacing:0.164800pt;}
.ls45{letter-spacing:0.168000pt;}
.ls10{letter-spacing:0.172000pt;}
.ls26{letter-spacing:0.186333pt;}
.ls2c{letter-spacing:0.186667pt;}
.ls51{letter-spacing:0.208000pt;}
.ls2b{letter-spacing:0.212333pt;}
.ls50{letter-spacing:0.216000pt;}
.ls1e{letter-spacing:0.223600pt;}
.lse{letter-spacing:0.229333pt;}
.ls43{letter-spacing:0.250133pt;}
.ls19{letter-spacing:0.258000pt;}
.ls42{letter-spacing:0.258667pt;}
.ls44{letter-spacing:0.260000pt;}
.ls24{letter-spacing:0.286667pt;}
.ls29{letter-spacing:0.326667pt;}
.ls0{letter-spacing:0.341333pt;}
.ls1d{letter-spacing:0.344000pt;}
.ls18{letter-spacing:0.401333pt;}
.ls21{letter-spacing:0.458667pt;}
.ls37{letter-spacing:0.516000pt;}
.ls3e{letter-spacing:0.520000pt;}
.ls3b{letter-spacing:0.524000pt;}
.ls3c{letter-spacing:0.524267pt;}
.ls53{letter-spacing:0.561600pt;}
.ls52{letter-spacing:0.569600pt;}
.ls54{letter-spacing:0.572000pt;}
.ls25{letter-spacing:0.573333pt;}
.ls2e{letter-spacing:0.576333pt;}
.lsf{letter-spacing:0.745333pt;}
.ls1a{letter-spacing:0.860000pt;}
.ls2f{letter-spacing:0.886667pt;}
.ls1c{letter-spacing:0.974667pt;}
.ls14{letter-spacing:1.032000pt;}
.ls17{letter-spacing:1.146667pt;}
.ls27{letter-spacing:1.204000pt;}
.ls1b{letter-spacing:1.261333pt;}
.ls4a{letter-spacing:1.404000pt;}
.ls49{letter-spacing:1.408000pt;}
.ls48{letter-spacing:1.416800pt;}
.ls4c{letter-spacing:1.621333pt;}
.ls36{letter-spacing:1.720000pt;}
.ls5a{letter-spacing:2.139733pt;}
.ls56{letter-spacing:2.553067pt;}
.ls57{letter-spacing:2.553600pt;}
.ls4e{letter-spacing:6.656533pt;}
.ls1{letter-spacing:10.378667pt;}
.ls2{letter-spacing:11.120000pt;}
.ls7{letter-spacing:11.666667pt;}
.ls1f{letter-spacing:11.713333pt;}
.ls28{letter-spacing:11.993333pt;}
.ls2d{letter-spacing:12.553333pt;}
.wsae{word-spacing:-14.677333pt;}
.wsc4{word-spacing:-14.620000pt;}
.ws96{word-spacing:-14.333333pt;}
.ws57{word-spacing:-13.760000pt;}
.wsf5{word-spacing:-13.000000pt;}
.wsaa{word-spacing:-11.666667pt;}
.ws3a{word-spacing:-11.333333pt;}
.ws19{word-spacing:-10.750000pt;}
.ws10b{word-spacing:-9.906000pt;}
.wsf4{word-spacing:-9.750000pt;}
.wsaf{word-spacing:-9.540267pt;}
.wsce{word-spacing:-9.503000pt;}
.wsbb{word-spacing:-9.465733pt;}
.wscd{word-spacing:-9.353933pt;}
.ws18{word-spacing:-9.316667pt;}
.wsf0{word-spacing:-9.093067pt;}
.ws1a{word-spacing:-8.750000pt;}
.wse7{word-spacing:-8.159667pt;}
.ws0{word-spacing:-8.000000pt;}
.wscf{word-spacing:-7.795667pt;}
.wsbc{word-spacing:-7.613667pt;}
.ws9c{word-spacing:-7.583333pt;}
.wsa1{word-spacing:-1.493333pt;}
.ws7b{word-spacing:-1.400000pt;}
.wsa0{word-spacing:-1.306667pt;}
.wsac{word-spacing:-0.860000pt;}
.wsc8{word-spacing:-0.186333pt;}
.ws10c{word-spacing:-0.035000pt;}
.ws2{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.046667pt;}
.wsdf{word-spacing:0.057333pt;}
.wsfe{word-spacing:0.104000pt;}
.ws8d{word-spacing:0.114667pt;}
.ws1f{word-spacing:0.172000pt;}
.wsf8{word-spacing:0.208000pt;}
.ws42{word-spacing:0.229333pt;}
.wseb{word-spacing:0.233333pt;}
.ws66{word-spacing:0.286667pt;}
.ws11{word-spacing:0.341333pt;}
.ws80{word-spacing:0.344000pt;}
.ws100{word-spacing:0.364000pt;}
.wsb2{word-spacing:0.401333pt;}
.ws4a{word-spacing:0.458667pt;}
.wsb{word-spacing:0.512000pt;}
.ws116{word-spacing:0.513333pt;}
.wsbf{word-spacing:0.516000pt;}
.ws8{word-spacing:0.554667pt;}
.wsa4{word-spacing:0.560000pt;}
.ws72{word-spacing:0.573333pt;}
.wsd9{word-spacing:0.606667pt;}
.ws107{word-spacing:0.624000pt;}
.ws8b{word-spacing:0.630667pt;}
.wsa2{word-spacing:0.653333pt;}
.ws67{word-spacing:0.688000pt;}
.wsa5{word-spacing:0.700000pt;}
.ws109{word-spacing:0.728000pt;}
.wsef{word-spacing:0.745333pt;}
.wsee{word-spacing:0.746667pt;}
.wsb4{word-spacing:0.802667pt;}
.wsca{word-spacing:0.840000pt;}
.ws61{word-spacing:0.860000pt;}
.ws37{word-spacing:0.886667pt;}
.ws14{word-spacing:0.896000pt;}
.ws73{word-spacing:0.917333pt;}
.ws7a{word-spacing:0.933333pt;}
.ws5f{word-spacing:0.974667pt;}
.ws13{word-spacing:1.024000pt;}
.wsea{word-spacing:1.026667pt;}
.ws92{word-spacing:1.032000pt;}
.wsc1{word-spacing:1.120000pt;}
.ws77{word-spacing:1.146667pt;}
.ws95{word-spacing:1.204000pt;}
.ws6e{word-spacing:1.261333pt;}
.wse5{word-spacing:1.306667pt;}
.ws33{word-spacing:1.318667pt;}
.wsf{word-spacing:1.365333pt;}
.wsc5{word-spacing:1.376000pt;}
.ws71{word-spacing:1.433333pt;}
.ws105{word-spacing:1.456000pt;}
.ws62{word-spacing:1.490667pt;}
.ws9{word-spacing:1.493333pt;}
.ws22{word-spacing:1.548000pt;}
.ws32{word-spacing:1.605333pt;}
.ws108{word-spacing:1.612000pt;}
.ws17{word-spacing:1.680000pt;}
.ws10e{word-spacing:1.716000pt;}
.wse0{word-spacing:1.720000pt;}
.wsd{word-spacing:1.749333pt;}
.ws38{word-spacing:1.773333pt;}
.wsab{word-spacing:1.777333pt;}
.wsd5{word-spacing:1.820000pt;}
.ws4d{word-spacing:1.834667pt;}
.wsf7{word-spacing:1.872000pt;}
.ws21{word-spacing:1.892000pt;}
.ws4f{word-spacing:1.913333pt;}
.ws10a{word-spacing:1.924000pt;}
.ws93{word-spacing:1.949333pt;}
.ws117{word-spacing:1.960000pt;}
.wsa{word-spacing:1.962667pt;}
.ws91{word-spacing:2.006667pt;}
.ws53{word-spacing:2.053333pt;}
.ws28{word-spacing:2.064000pt;}
.wse1{word-spacing:2.100000pt;}
.ws3e{word-spacing:2.121333pt;}
.ws110{word-spacing:2.132000pt;}
.ws39{word-spacing:2.146667pt;}
.wse{word-spacing:2.176000pt;}
.ws41{word-spacing:2.178667pt;}
.wsc3{word-spacing:2.193333pt;}
.ws6d{word-spacing:2.236000pt;}
.wsec{word-spacing:2.240000pt;}
.ws119{word-spacing:2.286667pt;}
.ws82{word-spacing:2.293333pt;}
.ws113{word-spacing:2.333333pt;}
.ws30{word-spacing:2.350667pt;}
.wsd6{word-spacing:2.380000pt;}
.wsc{word-spacing:2.389333pt;}
.ws2e{word-spacing:2.408000pt;}
.wsa3{word-spacing:2.426667pt;}
.ws4b{word-spacing:2.465333pt;}
.ws112{word-spacing:2.473333pt;}
.wsff{word-spacing:2.496000pt;}
.wsda{word-spacing:2.520000pt;}
.ws65{word-spacing:2.522667pt;}
.ws10d{word-spacing:2.548000pt;}
.ws5{word-spacing:2.560000pt;}
.ws4e{word-spacing:2.566667pt;}
.ws16{word-spacing:2.576000pt;}
.ws6f{word-spacing:2.580000pt;}
.ws6b{word-spacing:2.637333pt;}
.wse9{word-spacing:2.660000pt;}
.ws45{word-spacing:2.694667pt;}
.wsdc{word-spacing:2.706667pt;}
.ws64{word-spacing:2.752000pt;}
.wsc0{word-spacing:2.753333pt;}
.ws103{word-spacing:2.756000pt;}
.wsed{word-spacing:2.800000pt;}
.ws83{word-spacing:2.809333pt;}
.wsde{word-spacing:2.846667pt;}
.ws5b{word-spacing:2.866667pt;}
.ws34{word-spacing:2.924000pt;}
.ws118{word-spacing:2.940000pt;}
.ws3f{word-spacing:2.981333pt;}
.wsd2{word-spacing:3.033333pt;}
.ws90{word-spacing:3.038667pt;}
.ws50{word-spacing:3.080000pt;}
.ws5a{word-spacing:3.096000pt;}
.ws15{word-spacing:3.098667pt;}
.ws52{word-spacing:3.126667pt;}
.ws68{word-spacing:3.153333pt;}
.ws12{word-spacing:3.157333pt;}
.ws5c{word-spacing:3.210667pt;}
.ws23{word-spacing:3.268000pt;}
.ws8c{word-spacing:3.325333pt;}
.wsf9{word-spacing:3.328000pt;}
.wse2{word-spacing:3.360000pt;}
.ws7{word-spacing:3.370667pt;}
.wsb9{word-spacing:3.382667pt;}
.wsdd{word-spacing:3.406667pt;}
.wsc9{word-spacing:3.440000pt;}
.ws9e{word-spacing:3.497333pt;}
.wsad{word-spacing:3.546667pt;}
.ws47{word-spacing:3.554667pt;}
.wsd4{word-spacing:3.612000pt;}
.wsfa{word-spacing:3.640000pt;}
.ws6{word-spacing:3.669333pt;}
.wse6{word-spacing:3.686667pt;}
.ws40{word-spacing:3.726667pt;}
.wsd1{word-spacing:3.733333pt;}
.ws35{word-spacing:3.780000pt;}
.ws2d{word-spacing:3.784000pt;}
.ws76{word-spacing:3.841333pt;}
.ws5d{word-spacing:3.898667pt;}
.ws27{word-spacing:3.956000pt;}
.ws26{word-spacing:4.013333pt;}
.ws104{word-spacing:4.056000pt;}
.ws3d{word-spacing:4.070667pt;}
.ws44{word-spacing:4.128000pt;}
.ws51{word-spacing:4.153333pt;}
.wsb1{word-spacing:4.185333pt;}
.ws102{word-spacing:4.212000pt;}
.wsf3{word-spacing:4.242667pt;}
.wsdb{word-spacing:4.246667pt;}
.wsb0{word-spacing:4.300000pt;}
.ws8f{word-spacing:4.357333pt;}
.wse4{word-spacing:4.386667pt;}
.wsf2{word-spacing:4.414667pt;}
.ws115{word-spacing:4.433333pt;}
.ws6a{word-spacing:4.472000pt;}
.ws9f{word-spacing:4.529333pt;}
.ws9d{word-spacing:4.586667pt;}
.ws2f{word-spacing:4.644000pt;}
.ws58{word-spacing:4.701333pt;}
.ws56{word-spacing:4.713333pt;}
.wsfd{word-spacing:4.732000pt;}
.wsc7{word-spacing:4.758667pt;}
.wse3{word-spacing:4.806667pt;}
.ws24{word-spacing:4.816000pt;}
.ws2a{word-spacing:4.873333pt;}
.ws101{word-spacing:4.888000pt;}
.ws54{word-spacing:4.900000pt;}
.ws49{word-spacing:4.930667pt;}
.wsfc{word-spacing:4.940000pt;}
.ws20{word-spacing:4.988000pt;}
.ws55{word-spacing:5.040000pt;}
.ws78{word-spacing:5.045333pt;}
.wsba{word-spacing:5.102667pt;}
.wsb3{word-spacing:5.160000pt;}
.ws36{word-spacing:5.180000pt;}
.ws60{word-spacing:5.217333pt;}
.wsd7{word-spacing:5.274667pt;}
.ws106{word-spacing:5.304000pt;}
.ws114{word-spacing:5.320000pt;}
.ws43{word-spacing:5.332000pt;}
.ws10{word-spacing:5.333333pt;}
.ws4c{word-spacing:5.389333pt;}
.ws1d{word-spacing:5.446667pt;}
.wsf1{word-spacing:5.504000pt;}
.wsf6{word-spacing:5.616000pt;}
.ws29{word-spacing:5.676000pt;}
.wse8{word-spacing:5.693333pt;}
.ws10f{word-spacing:5.720000pt;}
.ws70{word-spacing:5.733333pt;}
.ws3c{word-spacing:5.790667pt;}
.wsc2{word-spacing:5.833333pt;}
.wsbe{word-spacing:5.848000pt;}
.ws7f{word-spacing:5.905333pt;}
.ws69{word-spacing:5.962667pt;}
.wsd0{word-spacing:6.020000pt;}
.ws6c{word-spacing:6.077333pt;}
.ws59{word-spacing:6.134667pt;}
.wsd8{word-spacing:6.192000pt;}
.ws48{word-spacing:6.249333pt;}
.ws1c{word-spacing:6.306667pt;}
.ws63{word-spacing:6.364000pt;}
.ws8a{word-spacing:6.421333pt;}
.ws25{word-spacing:6.478667pt;}
.ws111{word-spacing:6.486667pt;}
.wsfb{word-spacing:6.500000pt;}
.wsbd{word-spacing:6.536000pt;}
.wscc{word-spacing:6.593333pt;}
.wsc6{word-spacing:6.650667pt;}
.ws94{word-spacing:6.708000pt;}
.ws5e{word-spacing:6.765333pt;}
.ws31{word-spacing:6.822667pt;}
.ws2b{word-spacing:6.880000pt;}
.wscb{word-spacing:6.937333pt;}
.ws46{word-spacing:6.994667pt;}
.ws2c{word-spacing:7.052000pt;}
.ws81{word-spacing:7.109333pt;}
.ws1e{word-spacing:7.166667pt;}
.ws4{word-spacing:9.472000pt;}
.ws1b{word-spacing:11.333333pt;}
.ws3{word-spacing:11.861333pt;}
.ws79{word-spacing:12.000000pt;}
.wsa7{word-spacing:87.978667pt;}
.ws87{word-spacing:107.904000pt;}
.ws88{word-spacing:108.432000pt;}
.wsa8{word-spacing:127.200000pt;}
.ws89{word-spacing:130.176000pt;}
.wsa9{word-spacing:139.200000pt;}
.ws97{word-spacing:149.952000pt;}
.wsb6{word-spacing:152.400000pt;}
.ws8e{word-spacing:173.952000pt;}
.ws9a{word-spacing:210.432000pt;}
.wsb7{word-spacing:211.728000pt;}
.ws9b{word-spacing:215.280000pt;}
.ws98{word-spacing:239.280000pt;}
.wsb8{word-spacing:250.704000pt;}
.ws99{word-spacing:281.760000pt;}
.ws86{word-spacing:291.754667pt;}
.wsa6{word-spacing:319.402667pt;}
.ws84{word-spacing:362.240000pt;}
.ws7c{word-spacing:379.264000pt;}
.ws74{word-spacing:383.232000pt;}
.ws85{word-spacing:401.424000pt;}
.ws7d{word-spacing:467.232000pt;}
.ws7e{word-spacing:494.304000pt;}
.ws75{word-spacing:498.816000pt;}
.wsb5{word-spacing:553.104000pt;}
.ws3b{word-spacing:1021.845333pt;}
.ws1{word-spacing:1616.672000pt;}
._1{margin-left:-13.226667pt;}
._5{margin-left:-8.288000pt;}
._8{margin-left:-5.263200pt;}
._2{margin-left:-1.190400pt;}
._7{width:1.140933pt;}
._40{width:2.201867pt;}
._42{width:3.340800pt;}
._43{width:4.738000pt;}
._41{width:5.634867pt;}
._3{width:7.280000pt;}
._4{width:10.378667pt;}
._0{width:11.861333pt;}
._e{width:13.020000pt;}
._3d{width:56.640000pt;}
._3c{width:59.760000pt;}
._3b{width:61.248000pt;}
._3e{width:62.352000pt;}
._38{width:68.138667pt;}
._37{width:72.832000pt;}
._36{width:85.376000pt;}
._3a{width:89.712000pt;}
._35{width:91.434667pt;}
._1f{width:120.432000pt;}
._34{width:121.813333pt;}
._19{width:123.776000pt;}
._3f{width:126.528000pt;}
._1d{width:127.488000pt;}
._1a{width:130.816000pt;}
._1b{width:133.632000pt;}
._2c{width:139.200000pt;}
._1e{width:141.824000pt;}
._2b{width:143.424000pt;}
._39{width:148.864000pt;}
._2d{width:151.200000pt;}
._23{width:168.624000pt;}
._2e{width:180.720000pt;}
._1c{width:185.952000pt;}
._2f{width:203.376000pt;}
._24{width:216.432000pt;}
._31{width:223.776000pt;}
._2a{width:227.626667pt;}
._21{width:233.520000pt;}
._26{width:246.000000pt;}
._27{width:251.280000pt;}
._25{width:259.728000pt;}
._32{width:262.704000pt;}
._28{width:265.056000pt;}
._30{width:275.088000pt;}
._29{width:293.760000pt;}
._33{width:307.104000pt;}
._18{width:312.192000pt;}
._16{width:344.352000pt;}
._22{width:345.744000pt;}
._15{width:381.552000pt;}
._14{width:413.424000pt;}
._c{width:418.560000pt;}
._13{width:458.976000pt;}
._f{width:465.792000pt;}
._9{width:470.314667pt;}
._10{width:479.232000pt;}
._a{width:483.216000pt;}
._11{width:506.304000pt;}
._b{width:510.816000pt;}
._12{width:617.904000pt;}
._20{width:620.112000pt;}
._d{width:623.568000pt;}
._17{width:752.160000pt;}
._6{width:772.964800pt;}
.fsb{font-size:30.333333pt;}
.fs4{font-size:32.000000pt;}
.fsd{font-size:35.000000pt;}
.fs9{font-size:37.266667pt;}
.fs5{font-size:37.333333pt;}
.fs10{font-size:39.000000pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:43.000000pt;}
.fs7{font-size:45.333333pt;}
.fsc{font-size:46.666667pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fsf{font-size:52.000000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.131067pt;}
.y2b{bottom:87.512933pt;}
.y2a{bottom:98.180933pt;}
.y19a{bottom:110.685333pt;}
.y22c{bottom:110.710133pt;}
.y70{bottom:110.715133pt;}
.y217{bottom:110.720133pt;}
.y1ba{bottom:110.725133pt;}
.y16e{bottom:110.730133pt;}
.y51{bottom:110.735133pt;}
.y2a6{bottom:110.738733pt;}
.y282{bottom:111.108467pt;}
.y239{bottom:111.114400pt;}
.y26d{bottom:111.147533pt;}
.y1a6{bottom:111.224733pt;}
.y241{bottom:111.239067pt;}
.y2d0{bottom:111.695733pt;}
.yd3{bottom:112.240533pt;}
.ybd{bottom:112.249733pt;}
.y29{bottom:112.622667pt;}
.y10b{bottom:113.124067pt;}
.y8f{bottom:114.240133pt;}
.y153{bottom:122.324933pt;}
.y22b{bottom:123.508467pt;}
.y50{bottom:123.513467pt;}
.y216{bottom:123.518467pt;}
.ye9{bottom:123.519067pt;}
.y1b9{bottom:123.523467pt;}
.y16d{bottom:123.528467pt;}
.y28{bottom:125.176000pt;}
.y2a5{bottom:125.389733pt;}
.y2cf{bottom:126.203733pt;}
.y199{bottom:126.394667pt;}
.y238{bottom:126.752067pt;}
.y26c{bottom:126.785200pt;}
.y281{bottom:126.811067pt;}
.y1a5{bottom:126.862400pt;}
.y240{bottom:126.876733pt;}
.y8e{bottom:127.033467pt;}
.y125{bottom:127.163000pt;}
.yd2{bottom:127.878200pt;}
.y10a{bottom:128.761733pt;}
.ybc{bottom:132.805200pt;}
.y22a{bottom:136.306800pt;}
.y4f{bottom:136.311800pt;}
.y215{bottom:136.316800pt;}
.y1b8{bottom:136.321800pt;}
.y27{bottom:139.624000pt;}
.y8d{bottom:139.826800pt;}
.y124{bottom:139.961333pt;}
.y2a4{bottom:140.038067pt;}
.ye8{bottom:140.079067pt;}
.y2ce{bottom:140.709067pt;}
.y198{bottom:142.104000pt;}
.y237{bottom:142.389733pt;}
.y26b{bottom:142.422867pt;}
.y280{bottom:142.448733pt;}
.y1a4{bottom:142.500067pt;}
.y23f{bottom:142.514400pt;}
.yd1{bottom:143.515867pt;}
.y109{bottom:144.399400pt;}
.y152{bottom:144.776267pt;}
.y229{bottom:149.105133pt;}
.y4e{bottom:149.110133pt;}
.y214{bottom:149.115133pt;}
.y26{bottom:149.564000pt;}
.yab{bottom:149.957533pt;}
.y16c{bottom:152.620133pt;}
.ybb{bottom:153.145200pt;}
.y2a3{bottom:154.687800pt;}
.y2cd{bottom:155.217067pt;}
.ye7{bottom:156.639067pt;}
.y197{bottom:157.813333pt;}
.y236{bottom:158.027400pt;}
.y25b{bottom:158.050800pt;}
.y26a{bottom:158.060533pt;}
.y27f{bottom:158.086400pt;}
.y1a3{bottom:158.137733pt;}
.y23e{bottom:158.152067pt;}
.yd0{bottom:159.153533pt;}
.y108{bottom:160.037067pt;}
.y213{bottom:161.893467pt;}
.y228{bottom:161.903467pt;}
.y4d{bottom:161.908467pt;}
.y123{bottom:162.416400pt;}
.y25{bottom:163.284000pt;}
.y16b{bottom:165.413467pt;}
.yaa{bottom:165.595200pt;}
.y151{bottom:168.896267pt;}
.y2a2{bottom:169.338800pt;}
.yba{bottom:169.705200pt;}
.y2cc{bottom:169.723733pt;}
.ye6{bottom:173.199067pt;}
.y24{bottom:173.224000pt;}
.y196{bottom:173.522667pt;}
.y25a{bottom:173.688467pt;}
.y17b{bottom:173.698200pt;}
.y235{bottom:173.720067pt;}
.y13b{bottom:173.723733pt;}
.y27e{bottom:173.724067pt;}
.y23d{bottom:173.789733pt;}
.y212{bottom:174.691800pt;}
.y1e5{bottom:174.701800pt;}
.ycf{bottom:174.791200pt;}
.y107{bottom:175.674733pt;}
.y4c{bottom:178.206800pt;}
.ya9{bottom:181.232867pt;}
.y23{bottom:183.164000pt;}
.y2a1{bottom:183.987000pt;}
.y2cb{bottom:184.229200pt;}
.y150{bottom:185.456267pt;}
.yb9{bottom:186.265200pt;}
.y122{bottom:186.536400pt;}
.y6f{bottom:187.475133pt;}
.y211{bottom:187.490133pt;}
.y1b7{bottom:187.495133pt;}
.y195{bottom:189.232000pt;}
.y8c{bottom:189.324867pt;}
.y259{bottom:189.326133pt;}
.y17a{bottom:189.335867pt;}
.y234{bottom:189.357733pt;}
.y13a{bottom:189.361400pt;}
.y1fb{bottom:189.398200pt;}
.y1a2{bottom:189.413067pt;}
.y23c{bottom:189.427400pt;}
.ye5{bottom:189.759067pt;}
.y16a{bottom:191.000133pt;}
.y106{bottom:191.312400pt;}
.y2ed{bottom:196.428133pt;}
.ya8{bottom:196.870533pt;}
.y2a0{bottom:198.638000pt;}
.y2ca{bottom:198.737200pt;}
.y1e4{bottom:200.263467pt;}
.y6e{bottom:200.273467pt;}
.y169{bottom:200.278467pt;}
.y210{bottom:200.288467pt;}
.yb8{bottom:202.825200pt;}
.y121{bottom:203.096400pt;}
.y1b6{bottom:203.793467pt;}
.y194{bottom:204.941333pt;}
.y8b{bottom:204.962533pt;}
.y258{bottom:204.963800pt;}
.y179{bottom:204.973533pt;}
.y1d6{bottom:204.984400pt;}
.y233{bottom:204.995400pt;}
.y139{bottom:204.999067pt;}
.y27d{bottom:204.999400pt;}
.y1fa{bottom:205.035867pt;}
.y23b{bottom:205.065067pt;}
.ye4{bottom:206.319067pt;}
.y105{bottom:206.950067pt;}
.y2ec{bottom:209.226467pt;}
.y14f{bottom:209.576267pt;}
.ya7{bottom:212.519200pt;}
.y1e3{bottom:213.061800pt;}
.y6d{bottom:213.071800pt;}
.y168{bottom:213.076800pt;}
.y2c9{bottom:213.242400pt;}
.y29f{bottom:213.287733pt;}
.y20f{bottom:216.586800pt;}
.yb7{bottom:219.385200pt;}
.y117{bottom:220.435000pt;}
.y8a{bottom:220.600200pt;}
.y257{bottom:220.601467pt;}
.y178{bottom:220.611200pt;}
.y4b{bottom:220.612800pt;}
.y1d5{bottom:220.622067pt;}
.y232{bottom:220.633067pt;}
.y138{bottom:220.636733pt;}
.y193{bottom:220.650667pt;}
.y1f9{bottom:220.673533pt;}
.y23a{bottom:220.702733pt;}
.yce{bottom:221.712000pt;}
.y2eb{bottom:222.024800pt;}
.y104{bottom:222.587733pt;}
.ye3{bottom:222.879067pt;}
.y20e{bottom:225.855133pt;}
.y1e2{bottom:225.860133pt;}
.y6c{bottom:225.870133pt;}
.y167{bottom:225.875133pt;}
.y120{bottom:227.218000pt;}
.y2c8{bottom:227.750400pt;}
.y29e{bottom:227.935933pt;}
.ya6{bottom:228.156867pt;}
.y14e{bottom:233.696267pt;}
.y2ea{bottom:234.823133pt;}
.yb6{bottom:235.945200pt;}
.y89{bottom:236.237867pt;}
.y256{bottom:236.239133pt;}
.y177{bottom:236.248867pt;}
.y4a{bottom:236.250467pt;}
.y1d4{bottom:236.259733pt;}
.y231{bottom:236.270733pt;}
.y137{bottom:236.274400pt;}
.y1f8{bottom:236.311200pt;}
.y227{bottom:236.326067pt;}
.y1a1{bottom:236.340400pt;}
.y192{bottom:236.360000pt;}
.y103{bottom:238.225400pt;}
.y20d{bottom:238.653467pt;}
.y1e1{bottom:238.658467pt;}
.y6b{bottom:238.668467pt;}
.y116{bottom:240.338333pt;}
.y166{bottom:242.173467pt;}
.y2c7{bottom:242.257067pt;}
.ycd{bottom:242.268267pt;}
.y29d{bottom:242.586933pt;}
.ya5{bottom:243.794533pt;}
.ye2{bottom:247.000533pt;}
.y2e9{bottom:247.621467pt;}
.y11f{bottom:250.332667pt;}
.y20c{bottom:251.451800pt;}
.y1e0{bottom:251.456800pt;}
.y88{bottom:251.875533pt;}
.y176{bottom:251.886533pt;}
.y49{bottom:251.888133pt;}
.y1d3{bottom:251.897400pt;}
.y255{bottom:251.905200pt;}
.y230{bottom:251.908400pt;}
.y136{bottom:251.912067pt;}
.y27c{bottom:251.926733pt;}
.y1f7{bottom:251.948867pt;}
.y226{bottom:251.963733pt;}
.y1a0{bottom:251.978067pt;}
.y191{bottom:252.069333pt;}
.yb5{bottom:252.505200pt;}
.y115{bottom:253.136667pt;}
.y102{bottom:253.863067pt;}
.y6a{bottom:254.966800pt;}
.y2c6{bottom:256.762533pt;}
.y29c{bottom:257.235267pt;}
.ya4{bottom:259.443067pt;}
.y2e8{bottom:260.419800pt;}
.ycc{bottom:262.608267pt;}
.y14d{bottom:263.803067pt;}
.y20b{bottom:264.250133pt;}
.y1df{bottom:264.255133pt;}
.y114{bottom:265.935000pt;}
.y220{bottom:267.516733pt;}
.y175{bottom:267.524200pt;}
.y48{bottom:267.525800pt;}
.y1d2{bottom:267.535067pt;}
.y254{bottom:267.542867pt;}
.y22f{bottom:267.546067pt;}
.y135{bottom:267.549733pt;}
.y87{bottom:267.557200pt;}
.y27b{bottom:267.564400pt;}
.y1f6{bottom:267.586533pt;}
.y225{bottom:267.601400pt;}
.y19f{bottom:267.615733pt;}
.y190{bottom:267.778667pt;}
.yb4{bottom:269.065200pt;}
.y101{bottom:269.500733pt;}
.ye1{bottom:270.115200pt;}
.y2c5{bottom:271.269200pt;}
.y29b{bottom:271.886267pt;}
.y2e7{bottom:273.218133pt;}
.ya3{bottom:275.080733pt;}
.y20a{bottom:277.048467pt;}
.y113{bottom:278.733333pt;}
.ycb{bottom:279.168267pt;}
.y11e{bottom:279.455067pt;}
.y1de{bottom:280.553467pt;}
.y22{bottom:280.945333pt;}
.y165{bottom:283.161867pt;}
.y47{bottom:283.163467pt;}
.y1d1{bottom:283.172733pt;}
.y253{bottom:283.180533pt;}
.y22e{bottom:283.183733pt;}
.y134{bottom:283.187400pt;}
.y86{bottom:283.194867pt;}
.y27a{bottom:283.202067pt;}
.y1b5{bottom:283.205867pt;}
.y21f{bottom:283.213067pt;}
.y1f5{bottom:283.224200pt;}
.y14c{bottom:283.224733pt;}
.y224{bottom:283.239067pt;}
.y19e{bottom:283.253400pt;}
.y100{bottom:285.138400pt;}
.yb3{bottom:285.625200pt;}
.y2c4{bottom:285.777200pt;}
.y2e6{bottom:286.016467pt;}
.y29a{bottom:286.534600pt;}
.ya2{bottom:290.718400pt;}
.y209{bottom:293.346800pt;}
.yca{bottom:295.728267pt;}
.y21{bottom:297.948000pt;}
.y2e5{bottom:298.778000pt;}
.y164{bottom:298.799533pt;}
.y46{bottom:298.801133pt;}
.y69{bottom:298.803067pt;}
.y1d0{bottom:298.810400pt;}
.y252{bottom:298.818200pt;}
.y22d{bottom:298.821400pt;}
.y133{bottom:298.825067pt;}
.y85{bottom:298.832533pt;}
.y279{bottom:298.839733pt;}
.y1b4{bottom:298.843533pt;}
.y21e{bottom:298.850733pt;}
.y1f4{bottom:298.861867pt;}
.y11d{bottom:298.876733pt;}
.y19d{bottom:298.891067pt;}
.ye0{bottom:299.157067pt;}
.y2c3{bottom:300.282400pt;}
.yff{bottom:300.776067pt;}
.y112{bottom:301.184667pt;}
.y299{bottom:301.185600pt;}
.yb2{bottom:302.185200pt;}
.y208{bottom:302.620133pt;}
.ya1{bottom:306.363533pt;}
.y20{bottom:309.276000pt;}
.y2e4{bottom:311.576333pt;}
.yc9{bottom:312.288267pt;}
.y68{bottom:314.440733pt;}
.y1cf{bottom:314.448067pt;}
.y174{bottom:314.455400pt;}
.y163{bottom:314.459067pt;}
.y132{bottom:314.462733pt;}
.y45{bottom:314.464467pt;}
.y84{bottom:314.470200pt;}
.y278{bottom:314.477400pt;}
.y1b3{bottom:314.481200pt;}
.y21d{bottom:314.488400pt;}
.y1f3{bottom:314.499533pt;}
.y269{bottom:314.503067pt;}
.y223{bottom:314.514400pt;}
.y19c{bottom:314.528733pt;}
.y2c2{bottom:314.789067pt;}
.y207{bottom:315.418467pt;}
.y298{bottom:315.833800pt;}
.yfe{bottom:316.413733pt;}
.ydf{bottom:318.578733pt;}
.yb1{bottom:318.745200pt;}
.y1f{bottom:320.604000pt;}
.y18f{bottom:321.277067pt;}
.ya0{bottom:322.001200pt;}
.y2e3{bottom:324.374667pt;}
.y111{bottom:325.304667pt;}
.y206{bottom:328.216800pt;}
.yc8{bottom:328.848267pt;}
.y2c1{bottom:329.297067pt;}
.y67{bottom:330.078400pt;}
.y1ce{bottom:330.085733pt;}
.y173{bottom:330.093067pt;}
.y251{bottom:330.093533pt;}
.y162{bottom:330.096733pt;}
.y131{bottom:330.100400pt;}
.y44{bottom:330.102133pt;}
.y83{bottom:330.107867pt;}
.y277{bottom:330.115067pt;}
.y1b2{bottom:330.118867pt;}
.y21c{bottom:330.126067pt;}
.y1f2{bottom:330.137200pt;}
.y268{bottom:330.140733pt;}
.y14b{bottom:330.152067pt;}
.y19b{bottom:330.166400pt;}
.y297{bottom:330.484800pt;}
.y1e{bottom:331.932000pt;}
.yfd{bottom:332.051400pt;}
.y18e{bottom:334.133733pt;}
.yb0{bottom:335.305200pt;}
.y2e2{bottom:337.173000pt;}
.y9f{bottom:337.649733pt;}
.y205{bottom:341.015133pt;}
.y110{bottom:341.864667pt;}
.y1d{bottom:343.260000pt;}
.y2c0{bottom:343.802400pt;}
.y296{bottom:345.133133pt;}
.yc7{bottom:345.408267pt;}
.y1cd{bottom:345.723400pt;}
.y172{bottom:345.730733pt;}
.y161{bottom:345.734400pt;}
.y130{bottom:345.738067pt;}
.y43{bottom:345.739800pt;}
.y82{bottom:345.745533pt;}
.y276{bottom:345.752733pt;}
.y1b1{bottom:345.756533pt;}
.y21b{bottom:345.763733pt;}
.y1f1{bottom:345.774867pt;}
.y267{bottom:345.778400pt;}
.y14a{bottom:345.789733pt;}
.y66{bottom:345.793200pt;}
.y11c{bottom:345.804067pt;}
.yfc{bottom:347.689067pt;}
.y2e1{bottom:349.971333pt;}
.yaf{bottom:351.865200pt;}
.y9e{bottom:353.287400pt;}
.y1c{bottom:354.588000pt;}
.y18d{bottom:356.651333pt;}
.y204{bottom:357.313467pt;}
.y2bf{bottom:358.310400pt;}
.y295{bottom:359.784133pt;}
.y1dd{bottom:361.364733pt;}
.y171{bottom:361.368400pt;}
.y160{bottom:361.372067pt;}
.y12f{bottom:361.375733pt;}
.y42{bottom:361.377467pt;}
.y1cc{bottom:361.379400pt;}
.y81{bottom:361.383200pt;}
.y275{bottom:361.390400pt;}
.y1b0{bottom:361.394200pt;}
.y21a{bottom:361.401400pt;}
.y1f0{bottom:361.412533pt;}
.y266{bottom:361.416067pt;}
.y149{bottom:361.427400pt;}
.y65{bottom:361.430867pt;}
.y11b{bottom:361.441733pt;}
.yc6{bottom:361.968267pt;}
.y2e0{bottom:362.769667pt;}
.yfb{bottom:363.326733pt;}
.yde{bottom:365.506067pt;}
.y1b{bottom:365.916000pt;}
.y10f{bottom:365.984667pt;}
.y9d{bottom:368.925067pt;}
.yae{bottom:372.203733pt;}
.y2be{bottom:372.815867pt;}
.y2df{bottom:375.568000pt;}
.y170{bottom:377.006067pt;}
.y15f{bottom:377.009733pt;}
.y12e{bottom:377.013400pt;}
.y41{bottom:377.015133pt;}
.y1cb{bottom:377.017067pt;}
.y80{bottom:377.020867pt;}
.y1dc{bottom:377.024400pt;}
.y274{bottom:377.028067pt;}
.y1af{bottom:377.031867pt;}
.y219{bottom:377.039067pt;}
.y1ef{bottom:377.050200pt;}
.y265{bottom:377.053733pt;}
.y148{bottom:377.065067pt;}
.y64{bottom:377.068533pt;}
.y11a{bottom:377.079400pt;}
.y1a{bottom:377.244000pt;}
.yc5{bottom:378.528267pt;}
.yfa{bottom:378.982733pt;}
.y18c{bottom:380.771333pt;}
.ydd{bottom:381.147400pt;}
.y9c{bottom:384.566533pt;}
.y2bd{bottom:387.323867pt;}
.y2de{bottom:388.366333pt;}
.y19{bottom:388.572000pt;}
.y10e{bottom:390.104667pt;}
.y294{bottom:390.122733pt;}
.y16f{bottom:392.643733pt;}
.y15e{bottom:392.647400pt;}
.y12d{bottom:392.651067pt;}
.y40{bottom:392.652800pt;}
.y1ca{bottom:392.654733pt;}
.y7f{bottom:392.658533pt;}
.y1db{bottom:392.662067pt;}
.y273{bottom:392.665733pt;}
.y1ae{bottom:392.669533pt;}
.y203{bottom:392.676733pt;}
.y1ee{bottom:392.687867pt;}
.y264{bottom:392.691400pt;}
.y147{bottom:392.702733pt;}
.y63{bottom:392.706200pt;}
.y119{bottom:392.717067pt;}
.yf9{bottom:394.620400pt;}
.yc4{bottom:395.088267pt;}
.ydc{bottom:396.785067pt;}
.y18b{bottom:397.331333pt;}
.yad{bottom:399.410733pt;}
.y18{bottom:399.900000pt;}
.y9b{bottom:400.215200pt;}
.y2bc{bottom:401.827733pt;}
.y12c{bottom:408.288733pt;}
.y3f{bottom:408.290467pt;}
.y1c9{bottom:408.292400pt;}
.y7e{bottom:408.296200pt;}
.y1da{bottom:408.299733pt;}
.y272{bottom:408.303400pt;}
.y1ad{bottom:408.307200pt;}
.y202{bottom:408.314400pt;}
.y1ed{bottom:408.325533pt;}
.y263{bottom:408.329067pt;}
.y146{bottom:408.340400pt;}
.y62{bottom:408.343867pt;}
.y118{bottom:408.354733pt;}
.y2dd{bottom:408.981333pt;}
.yf8{bottom:410.258067pt;}
.y17{bottom:411.228000pt;}
.yc3{bottom:411.648267pt;}
.y9a{bottom:415.852867pt;}
.y2bb{bottom:416.335733pt;}
.yac{bottom:418.832400pt;}
.y10d{bottom:420.149400pt;}
.y18a{bottom:421.449467pt;}
.y1c8{bottom:423.930067pt;}
.y7d{bottom:423.933867pt;}
.y1d9{bottom:423.937400pt;}
.y271{bottom:423.941067pt;}
.y1ac{bottom:423.944867pt;}
.y12b{bottom:423.948400pt;}
.y201{bottom:423.952067pt;}
.y1ec{bottom:423.963200pt;}
.y262{bottom:423.966733pt;}
.y145{bottom:423.978067pt;}
.y61{bottom:423.981533pt;}
.y3e{bottom:423.992400pt;}
.yf7{bottom:425.895733pt;}
.yc2{bottom:428.208267pt;}
.y2ba{bottom:430.843733pt;}
.y99{bottom:431.490533pt;}
.y16{bottom:433.905333pt;}
.y293{bottom:437.193400pt;}
.y1c7{bottom:439.567733pt;}
.y10c{bottom:439.571067pt;}
.y7c{bottom:439.571533pt;}
.y1d8{bottom:439.575067pt;}
.y270{bottom:439.578733pt;}
.y1ab{bottom:439.582533pt;}
.y12a{bottom:439.586067pt;}
.y200{bottom:439.589733pt;}
.y1eb{bottom:439.600867pt;}
.y261{bottom:439.604400pt;}
.y144{bottom:439.615733pt;}
.y60{bottom:439.619200pt;}
.y3d{bottom:439.630067pt;}
.yf6{bottom:441.533400pt;}
.ydb{bottom:443.705733pt;}
.yc1{bottom:444.768267pt;}
.y2b9{bottom:445.349067pt;}
.y98{bottom:447.135400pt;}
.y189{bottom:450.494733pt;}
.y15{bottom:450.908000pt;}
.y292{bottom:452.974400pt;}
.y2dc{bottom:453.063400pt;}
.y1d7{bottom:455.212733pt;}
.y26f{bottom:455.216400pt;}
.y15d{bottom:455.220200pt;}
.y129{bottom:455.223733pt;}
.y7b{bottom:455.227400pt;}
.y1c6{bottom:455.234733pt;}
.y1ea{bottom:455.238533pt;}
.y260{bottom:455.242067pt;}
.y143{bottom:455.253400pt;}
.y5f{bottom:455.256867pt;}
.y250{bottom:455.264067pt;}
.y3c{bottom:455.267733pt;}
.yf5{bottom:457.171067pt;}
.y2b8{bottom:459.857067pt;}
.y14{bottom:462.236000pt;}
.y97{bottom:462.773067pt;}
.yc0{bottom:465.106800pt;}
.yda{bottom:466.159867pt;}
.y188{bottom:466.204067pt;}
.y2db{bottom:468.701067pt;}
.y291{bottom:468.755400pt;}
.y26e{bottom:470.854067pt;}
.y15c{bottom:470.857867pt;}
.y128{bottom:470.861400pt;}
.y7a{bottom:470.865067pt;}
.y1c5{bottom:470.872400pt;}
.y1e9{bottom:470.876200pt;}
.y25f{bottom:470.879733pt;}
.y142{bottom:470.891067pt;}
.y5e{bottom:470.894533pt;}
.y24f{bottom:470.901733pt;}
.y3b{bottom:470.905400pt;}
.y13{bottom:473.564000pt;}
.y2b7{bottom:474.362400pt;}
.y96{bottom:478.459067pt;}
.y290{bottom:484.536400pt;}
.y12{bottom:484.892000pt;}
.y187{bottom:485.683067pt;}
.y15b{bottom:486.495533pt;}
.y127{bottom:486.499067pt;}
.y79{bottom:486.502733pt;}
.y1c4{bottom:486.510067pt;}
.y1e8{bottom:486.513867pt;}
.y25e{bottom:486.517400pt;}
.y141{bottom:486.528733pt;}
.y5d{bottom:486.532200pt;}
.y24e{bottom:486.539400pt;}
.y3a{bottom:486.543067pt;}
.y2b6{bottom:488.870400pt;}
.yd9{bottom:490.279867pt;}
.ybf{bottom:492.305067pt;}
.y95{bottom:494.096733pt;}
.y11{bottom:496.220000pt;}
.y2da{bottom:499.976400pt;}
.y28f{bottom:500.317400pt;}
.y126{bottom:502.136733pt;}
.y78{bottom:502.140400pt;}
.y1c3{bottom:502.147733pt;}
.y1e7{bottom:502.151533pt;}
.y25d{bottom:502.155067pt;}
.y140{bottom:502.166400pt;}
.y5c{bottom:502.169867pt;}
.y24d{bottom:502.177067pt;}
.y39{bottom:502.180733pt;}
.y2b5{bottom:503.375733pt;}
.yd8{bottom:506.839867pt;}
.y10{bottom:507.548000pt;}
.y94{bottom:509.734400pt;}
.yf4{bottom:510.607733pt;}
.ybe{bottom:511.726733pt;}
.y28e{bottom:516.098400pt;}
.y77{bottom:517.778067pt;}
.y1c2{bottom:517.785400pt;}
.y1e6{bottom:517.789200pt;}
.y25c{bottom:517.792733pt;}
.y13f{bottom:517.804067pt;}
.y5b{bottom:517.807533pt;}
.y24c{bottom:517.814733pt;}
.y38{bottom:517.818400pt;}
.y2b4{bottom:517.883733pt;}
.yf{bottom:518.876000pt;}
.yd7{bottom:523.399867pt;}
.y93{bottom:525.372067pt;}
.ye{bottom:530.204000pt;}
.y28d{bottom:531.879400pt;}
.y2b3{bottom:532.389200pt;}
.y186{bottom:532.667733pt;}
.yf3{bottom:533.058000pt;}
.y1ff{bottom:533.415733pt;}
.y1aa{bottom:533.419400pt;}
.y1c1{bottom:533.423067pt;}
.y15a{bottom:533.426867pt;}
.y218{bottom:533.430400pt;}
.y76{bottom:533.437733pt;}
.y13e{bottom:533.441733pt;}
.y5a{bottom:533.445200pt;}
.y24b{bottom:533.452400pt;}
.y37{bottom:533.456067pt;}
.y92{bottom:541.009733pt;}
.yd{bottom:541.538000pt;}
.y2d9{bottom:546.895867pt;}
.y2b2{bottom:546.897200pt;}
.yd6{bottom:547.518000pt;}
.y28c{bottom:547.660400pt;}
.y185{bottom:548.377067pt;}
.y1a9{bottom:549.060733pt;}
.y159{bottom:549.064533pt;}
.y1fe{bottom:549.068067pt;}
.y75{bottom:549.075400pt;}
.y13d{bottom:549.079400pt;}
.y59{bottom:549.082867pt;}
.y24a{bottom:549.090067pt;}
.y36{bottom:549.093733pt;}
.yc{bottom:552.866000pt;}
.y91{bottom:556.647400pt;}
.yf2{bottom:557.178000pt;}
.y2b1{bottom:561.403867pt;}
.y28b{bottom:563.441400pt;}
.y184{bottom:564.086400pt;}
.y1c0{bottom:564.698400pt;}
.y158{bottom:564.702200pt;}
.y1fd{bottom:564.705733pt;}
.y74{bottom:564.713067pt;}
.y1a8{bottom:564.716733pt;}
.y222{bottom:564.717067pt;}
.y58{bottom:564.720533pt;}
.y249{bottom:564.727733pt;}
.y35{bottom:564.731400pt;}
.yf1{bottom:573.738000pt;}
.y2d8{bottom:575.909067pt;}
.y2b0{bottom:575.910533pt;}
.yd5{bottom:576.570733pt;}
.y28a{bottom:579.222400pt;}
.y183{bottom:579.795733pt;}
.y1fc{bottom:580.343400pt;}
.y73{bottom:580.350733pt;}
.y157{bottom:580.354400pt;}
.y13c{bottom:580.354733pt;}
.y57{bottom:580.358200pt;}
.y1bf{bottom:580.361733pt;}
.y248{bottom:580.365400pt;}
.y34{bottom:580.369067pt;}
.y90{bottom:587.922733pt;}
.yf0{bottom:590.298000pt;}
.y2af{bottom:590.415733pt;}
.y2d7{bottom:590.417067pt;}
.y289{bottom:595.003400pt;}
.y182{bottom:595.505067pt;}
.y72{bottom:595.988400pt;}
.y156{bottom:595.992067pt;}
.yd4{bottom:595.992400pt;}
.y56{bottom:595.995867pt;}
.y1be{bottom:595.999400pt;}
.y247{bottom:596.003067pt;}
.y33{bottom:596.006733pt;}
.yb{bottom:603.298000pt;}
.y2d6{bottom:604.922400pt;}
.y2ae{bottom:604.923733pt;}
.yef{bottom:606.858000pt;}
.y288{bottom:610.784400pt;}
.y181{bottom:611.214400pt;}
.y71{bottom:611.626067pt;}
.y155{bottom:611.629733pt;}
.y221{bottom:611.630067pt;}
.y55{bottom:611.633533pt;}
.y1bd{bottom:611.637067pt;}
.y246{bottom:611.640733pt;}
.y32{bottom:611.644400pt;}
.ya{bottom:616.100533pt;}
.y2ad{bottom:619.429200pt;}
.y2d5{bottom:619.430400pt;}
.yee{bottom:623.418000pt;}
.y287{bottom:626.565400pt;}
.y180{bottom:626.923733pt;}
.y154{bottom:627.267400pt;}
.y54{bottom:627.271200pt;}
.y1bc{bottom:627.274733pt;}
.y245{bottom:627.278400pt;}
.y31{bottom:627.282067pt;}
.y2d4{bottom:633.935867pt;}
.y2ac{bottom:633.937200pt;}
.y9{bottom:637.407200pt;}
.yed{bottom:639.978000pt;}
.y286{bottom:642.346400pt;}
.y17f{bottom:642.633067pt;}
.y53{bottom:642.908867pt;}
.y1bb{bottom:642.912400pt;}
.y244{bottom:642.916067pt;}
.y30{bottom:642.919733pt;}
.y2ab{bottom:648.442400pt;}
.y2d3{bottom:648.443867pt;}
.y8{bottom:654.460533pt;}
.yec{bottom:656.538000pt;}
.y285{bottom:658.127400pt;}
.y17e{bottom:658.342400pt;}
.y1a7{bottom:658.550067pt;}
.y243{bottom:658.553733pt;}
.y2f{bottom:658.557400pt;}
.y2d2{bottom:662.949067pt;}
.y2aa{bottom:662.950400pt;}
.y284{bottom:673.908400pt;}
.y17d{bottom:674.051733pt;}
.y242{bottom:674.191400pt;}
.y2e{bottom:674.195067pt;}
.yeb{bottom:677.213333pt;}
.y2a9{bottom:677.454400pt;}
.y2d1{bottom:677.457067pt;}
.y7{bottom:689.167200pt;}
.y283{bottom:689.689400pt;}
.y17c{bottom:689.761067pt;}
.y52{bottom:689.832733pt;}
.y2a8{bottom:691.962400pt;}
.yea{bottom:700.328000pt;}
.y2d{bottom:705.470400pt;}
.y6{bottom:706.220533pt;}
.y2a7{bottom:706.470400pt;}
.y2c{bottom:739.846400pt;}
.y3{bottom:742.513600pt;}
.y2{bottom:760.624800pt;}
.y5{bottom:771.452267pt;}
.y4{bottom:783.452267pt;}
.he{height:27.477333pt;}
.h12{height:27.858724pt;}
.h5{height:31.402667pt;}
.h1c{height:33.740000pt;}
.hc{height:34.122667pt;}
.hd{height:36.560000pt;}
.hb{height:37.812500pt;}
.h9{height:38.270833pt;}
.h4{height:39.552000pt;}
.ha{height:39.708333pt;}
.hf{height:40.662760pt;}
.h13{height:41.858724pt;}
.h16{height:41.878724pt;}
.h14{height:41.938724pt;}
.h15{height:43.054688pt;}
.h1e{height:43.260000pt;}
.h1d{height:43.400000pt;}
.h1f{height:43.407200pt;}
.h2{height:45.446615pt;}
.h17{height:46.642578pt;}
.h18{height:46.647645pt;}
.h19{height:46.647911pt;}
.h1b{height:46.648445pt;}
.h7{height:47.265625pt;}
.h8{height:47.838542pt;}
.h1a{height:48.394531pt;}
.h6{height:49.635417pt;}
.h11{height:51.426432pt;}
.h10{height:53.358073pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xe{left:83.149600pt;}
.x17{left:86.604133pt;}
.x1e{left:87.990000pt;}
.x2a{left:91.321467pt;}
.x1{left:95.243067pt;}
.x26{left:99.002000pt;}
.x1b{left:100.337467pt;}
.x11{left:102.047200pt;}
.x10{left:105.824933pt;}
.x25{left:106.716133pt;}
.x23{left:108.519333pt;}
.xa{left:110.362000pt;}
.x20{left:112.588800pt;}
.x12{left:114.141733pt;}
.xb{left:117.924133pt;}
.x16{left:118.860133pt;}
.x2c{left:121.703467pt;}
.x14{left:123.332133pt;}
.x22{left:124.683333pt;}
.x15{left:135.108133pt;}
.x1a{left:136.561333pt;}
.xc{left:148.716400pt;}
.xd{left:153.716400pt;}
.x5{left:155.973200pt;}
.x7{left:160.839867pt;}
.x24{left:169.067600pt;}
.x29{left:188.670667pt;}
.x1f{left:194.308000pt;}
.x21{left:206.402533pt;}
.x13{left:210.730600pt;}
.x27{left:213.680467pt;}
.x19{left:219.644867pt;}
.x2b{left:222.872800pt;}
.x1c{left:233.807267pt;}
.x28{left:235.242667pt;}
.x4{left:274.093200pt;}
.x6{left:278.639867pt;}
.x18{left:285.764533pt;}
.x1d{left:290.806400pt;}
.x3{left:369.364667pt;}
.x9{left:381.776800pt;}
.x8{left:390.146533pt;}
.xf{left:403.439600pt;}
.x2{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; }
  