
    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_a4d51ad7c712916a96f077cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144467;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_8ce5c5c01ecf90119a34196a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108333;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_2d3f6137b640137cb0e56ef2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165333;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_54c2ee3363de7a32dde16b0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976600;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_df60a556a80f51634260e34c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.831000;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_a21077e168a3592592163276.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.078000;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_147176b2a42e2fac651a3fe4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.078000;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_922881ef44356f7f1c27cbba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.155250;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_d62a15ad3be5c69d81a89007.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.068167;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_b044c0f32af3d26dce47c179.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d3ba5239a8200f1e127c1e22.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.892000;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_1986cb1df9b214046636cdd1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fdf7864658dbad6cf0ed07df.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.050538;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.982600px;}
.v3{vertical-align:24.000000px;}
.v4{vertical-align:27.000000px;}
.v1{vertical-align:32.503800px;}
.v5{vertical-align:54.000000px;}
.v2{vertical-align:56.503800px;}
.ls0{letter-spacing:-26.460000px;}
.ls4{letter-spacing:-4.013208px;}
.ls14{letter-spacing:-2.640000px;}
.ls38{letter-spacing:-1.980000px;}
.ls2{letter-spacing:-0.600000px;}
.ls30{letter-spacing:-0.594000px;}
.ls3{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.462000px;}
.ls5{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.324000px;}
.ls40{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.132000px;}
.ls41{letter-spacing:-0.096000px;}
.ls1{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.066000px;}
.ls3f{letter-spacing:0.096000px;}
.ls36{letter-spacing:0.132000px;}
.ls3d{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.198000px;}
.ls31{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.264000px;}
.ls2d{letter-spacing:0.270000px;}
.ls3e{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.297000px;}
.lsf{letter-spacing:0.330000px;}
.ls1b{letter-spacing:0.363000px;}
.ls8{letter-spacing:0.396000px;}
.ls10{letter-spacing:0.462000px;}
.ls2c{letter-spacing:0.486000px;}
.ls25{letter-spacing:0.495000px;}
.lsa{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.561000px;}
.ls13{letter-spacing:0.594000px;}
.ls35{letter-spacing:0.627000px;}
.ls15{letter-spacing:0.658800px;}
.ls7{letter-spacing:0.660000px;}
.ls1f{letter-spacing:0.693000px;}
.ls19{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.726000px;}
.lsb{letter-spacing:0.792000px;}
.ls23{letter-spacing:0.810000px;}
.lsc{letter-spacing:0.840000px;}
.lse{letter-spacing:0.858000px;}
.ls2b{letter-spacing:0.864000px;}
.ls3b{letter-spacing:0.888000px;}
.ls39{letter-spacing:0.891000px;}
.ls32{letter-spacing:0.918000px;}
.ls12{letter-spacing:0.924000px;}
.ls17{letter-spacing:0.990000px;}
.ls1c{letter-spacing:1.056000px;}
.ls3c{letter-spacing:1.104000px;}
.ls26{letter-spacing:1.122000px;}
.ls28{letter-spacing:1.155000px;}
.lsd{letter-spacing:1.188000px;}
.ls9{letter-spacing:1.221000px;}
.ls18{letter-spacing:1.254000px;}
.ls20{letter-spacing:1.320000px;}
.ls1d{letter-spacing:1.386000px;}
.ls34{letter-spacing:1.419000px;}
.ls1e{letter-spacing:1.452000px;}
.ls27{letter-spacing:1.489800px;}
.ls29{letter-spacing:1.518000px;}
.ls21{letter-spacing:1.848000px;}
.ls3a{letter-spacing:1.872000px;}
.ls33{letter-spacing:2.814600px;}
.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;}
}
.wsa5{word-spacing:-23.520000px;}
.ws39{word-spacing:-20.160000px;}
.ws7e{word-spacing:-19.338000px;}
.ws4c{word-spacing:-19.272000px;}
.ws21{word-spacing:-19.074000px;}
.ws8e{word-spacing:-19.041000px;}
.ws89{word-spacing:-18.876000px;}
.ws3a{word-spacing:-18.810000px;}
.ws7a{word-spacing:-18.744000px;}
.ws8f{word-spacing:-18.612000px;}
.ws80{word-spacing:-18.546000px;}
.ws20{word-spacing:-18.480000px;}
.ws3b{word-spacing:-18.414000px;}
.ws61{word-spacing:-18.084000px;}
.ws9f{word-spacing:-17.490000px;}
.ws56{word-spacing:-17.358000px;}
.ws4e{word-spacing:-17.292000px;}
.ws4d{word-spacing:-17.094000px;}
.ws1f{word-spacing:-17.028000px;}
.wsa7{word-spacing:-16.896000px;}
.ws9e{word-spacing:-16.830000px;}
.ws79{word-spacing:-16.764000px;}
.ws7{word-spacing:-16.698000px;}
.wsa0{word-spacing:-16.632000px;}
.ws62{word-spacing:-16.566000px;}
.ws3c{word-spacing:-16.500000px;}
.ws6{word-spacing:-16.434000px;}
.ws3d{word-spacing:-16.401000px;}
.ws4f{word-spacing:-16.368000px;}
.ws81{word-spacing:-16.038000px;}
.ws57{word-spacing:-13.662000px;}
.ws9a{word-spacing:-13.392000px;}
.ws28{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.582000px;}
.wsad{word-spacing:-11.664000px;}
.wsae{word-spacing:-11.520000px;}
.ws29{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.360000px;}
.ws5e{word-spacing:-4.884000px;}
.ws7f{word-spacing:-3.960000px;}
.ws41{word-spacing:-3.564000px;}
.ws1b{word-spacing:-3.234000px;}
.ws4a{word-spacing:-3.168000px;}
.ws7b{word-spacing:-2.904000px;}
.ws78{word-spacing:-2.838000px;}
.ws97{word-spacing:-2.772000px;}
.ws98{word-spacing:-2.706000px;}
.ws99{word-spacing:-2.442000px;}
.ws26{word-spacing:-2.310000px;}
.wsbb{word-spacing:-2.304000px;}
.ws87{word-spacing:-2.244000px;}
.ws49{word-spacing:-2.112000px;}
.ws5c{word-spacing:-2.046000px;}
.wsbc{word-spacing:-1.968000px;}
.wsaf{word-spacing:-1.872000px;}
.ws5a{word-spacing:-1.848000px;}
.ws8b{word-spacing:-1.782000px;}
.wsb8{word-spacing:-1.776000px;}
.ws45{word-spacing:-1.716000px;}
.ws82{word-spacing:-1.650000px;}
.wsaa{word-spacing:-1.584000px;}
.wsa1{word-spacing:-1.452000px;}
.ws50{word-spacing:-1.386000px;}
.ws59{word-spacing:-1.320000px;}
.ws9b{word-spacing:-1.296000px;}
.wsb{word-spacing:-1.254000px;}
.ws11{word-spacing:-1.188000px;}
.ws67{word-spacing:-1.122000px;}
.wsb2{word-spacing:-1.104000px;}
.ws44{word-spacing:-1.056000px;}
.ws23{word-spacing:-0.990000px;}
.ws40{word-spacing:-0.924000px;}
.ws94{word-spacing:-0.918000px;}
.wsb1{word-spacing:-0.912000px;}
.ws83{word-spacing:-0.864000px;}
.ws15{word-spacing:-0.858000px;}
.ws8{word-spacing:-0.840000px;}
.ws5f{word-spacing:-0.810000px;}
.wse{word-spacing:-0.792000px;}
.ws1c{word-spacing:-0.726000px;}
.ws3e{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.594000px;}
.ws58{word-spacing:-0.540000px;}
.wsc{word-spacing:-0.528000px;}
.ws84{word-spacing:-0.486000px;}
.ws1d{word-spacing:-0.462000px;}
.wsa{word-spacing:-0.396000px;}
.ws17{word-spacing:-0.330000px;}
.wsb9{word-spacing:-0.288000px;}
.ws86{word-spacing:-0.270000px;}
.ws16{word-spacing:-0.264000px;}
.ws91{word-spacing:-0.216000px;}
.ws5d{word-spacing:-0.198000px;}
.wsb6{word-spacing:-0.144000px;}
.ws63{word-spacing:-0.132000px;}
.wsbd{word-spacing:-0.096000px;}
.ws47{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws90{word-spacing:0.066000px;}
.wsba{word-spacing:0.096000px;}
.ws64{word-spacing:0.132000px;}
.wsb4{word-spacing:0.144000px;}
.ws48{word-spacing:0.198000px;}
.wsa3{word-spacing:0.324000px;}
.ws85{word-spacing:0.462000px;}
.ws24{word-spacing:0.528000px;}
.ws4{word-spacing:0.540000px;}
.ws8c{word-spacing:0.594000px;}
.ws19{word-spacing:0.660000px;}
.ws54{word-spacing:0.726000px;}
.ws88{word-spacing:0.792000px;}
.ws68{word-spacing:0.858000px;}
.ws92{word-spacing:0.924000px;}
.wsd{word-spacing:1.122000px;}
.ws25{word-spacing:1.254000px;}
.wsa6{word-spacing:1.386000px;}
.wsb5{word-spacing:1.440000px;}
.ws18{word-spacing:1.584000px;}
.ws1a{word-spacing:1.650000px;}
.ws8a{word-spacing:1.782000px;}
.wsf{word-spacing:1.848000px;}
.ws95{word-spacing:1.914000px;}
.ws93{word-spacing:1.980000px;}
.ws66{word-spacing:2.046000px;}
.ws96{word-spacing:2.178000px;}
.ws22{word-spacing:2.244000px;}
.ws46{word-spacing:2.310000px;}
.ws7d{word-spacing:2.376000px;}
.ws12{word-spacing:2.574000px;}
.ws13{word-spacing:2.640000px;}
.ws75{word-spacing:2.772000px;}
.ws9c{word-spacing:2.904000px;}
.ws55{word-spacing:2.970000px;}
.wsa8{word-spacing:3.168000px;}
.wsac{word-spacing:3.300000px;}
.ws5b{word-spacing:3.348000px;}
.wsab{word-spacing:3.366000px;}
.ws4b{word-spacing:3.432000px;}
.wsa4{word-spacing:3.630000px;}
.ws14{word-spacing:3.894000px;}
.wsa2{word-spacing:3.960000px;}
.ws5{word-spacing:4.013208px;}
.ws43{word-spacing:4.026000px;}
.ws65{word-spacing:4.092000px;}
.ws69{word-spacing:4.224000px;}
.ws52{word-spacing:4.488000px;}
.ws42{word-spacing:4.620000px;}
.ws8d{word-spacing:4.752000px;}
.ws10{word-spacing:4.818000px;}
.ws60{word-spacing:4.860000px;}
.ws76{word-spacing:5.082000px;}
.wsb7{word-spacing:5.232000px;}
.ws27{word-spacing:5.280000px;}
.ws3f{word-spacing:5.346000px;}
.ws9d{word-spacing:5.412000px;}
.ws77{word-spacing:5.742000px;}
.ws53{word-spacing:5.808000px;}
.ws51{word-spacing:6.996000px;}
.ws7c{word-spacing:7.392000px;}
.wsa9{word-spacing:7.458000px;}
.wsb3{word-spacing:12.192000px;}
.wsb0{word-spacing:20.976000px;}
.ws2{word-spacing:26.460000px;}
.ws2b{word-spacing:47.330400px;}
.ws33{word-spacing:63.496200px;}
.ws74{word-spacing:71.614200px;}
.ws30{word-spacing:78.757800px;}
.ws6b{word-spacing:81.904200px;}
.ws71{word-spacing:88.521600px;}
.ws6c{word-spacing:88.522800px;}
.ws70{word-spacing:88.524000px;}
.ws2a{word-spacing:89.048400px;}
.ws6e{word-spacing:109.960800px;}
.ws2d{word-spacing:116.693400px;}
.ws2e{word-spacing:138.002400px;}
.ws6d{word-spacing:144.952800px;}
.ws6a{word-spacing:147.000600px;}
.ws37{word-spacing:166.207200px;}
.ws32{word-spacing:169.768800px;}
.ws72{word-spacing:178.006800px;}
.ws34{word-spacing:262.164600px;}
.ws31{word-spacing:297.538200px;}
.ws2f{word-spacing:358.182000px;}
.ws35{word-spacing:361.878000px;}
.ws38{word-spacing:417.444000px;}
.ws6f{word-spacing:455.397000px;}
.ws2c{word-spacing:603.148800px;}
.ws36{word-spacing:648.340800px;}
.ws73{word-spacing:1573.976400px;}
._31{margin-left:-15.550200px;}
._25{margin-left:-14.301600px;}
._32{margin-left:-9.158400px;}
._b{margin-left:-6.828000px;}
._1{margin-left:-4.788000px;}
._c{margin-left:-3.785400px;}
._2{margin-left:-2.772000px;}
._4{margin-left:-1.134000px;}
._5{width:1.026000px;}
._8{width:2.171400px;}
._6{width:3.319800px;}
._7{width:4.996200px;}
._9{width:6.089400px;}
._a{width:7.803600px;}
._24{width:9.043800px;}
._2f{width:10.462200px;}
._35{width:13.305600px;}
._3{width:14.922000px;}
._0{width:16.380000px;}
._33{width:22.367400px;}
._34{width:23.685600px;}
._30{width:36.336000px;}
._2a{width:49.433400px;}
._29{width:51.124800px;}
._f{width:52.612200px;}
._d{width:56.860200px;}
._13{width:57.966000px;}
._2e{width:61.272000px;}
._10{width:70.321200px;}
._23{width:78.070200px;}
._1a{width:89.257800px;}
._2c{width:93.811800px;}
._12{width:99.548400px;}
._2b{width:113.358000px;}
._22{width:115.891200px;}
._e{width:121.464600px;}
._14{width:126.391200px;}
._1e{width:143.478000px;}
._27{width:145.470600px;}
._11{width:155.868000px;}
._28{width:166.050600px;}
._16{width:175.863000px;}
._21{width:178.212000px;}
._1b{width:186.934200px;}
._17{width:211.686000px;}
._18{width:216.394200px;}
._2d{width:225.613200px;}
._26{width:232.335000px;}
._1f{width:238.776000px;}
._20{width:240.708000px;}
._19{width:269.566200px;}
._15{width:315.048000px;}
._1c{width:417.858600px;}
._1d{width:697.535400px;}
.fc6{color:rgb(79,76,77);}
.fc5{color:rgb(101,98,99);}
.fc4{color:rgb(167,165,166);}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(145,143,143);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(29,88,66);}
.fsa{font-size:31.482000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs3{font-size:133.773600px;}
.fs0{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:24.959850px;}
.y2ad{bottom:85.039500px;}
.y3b0{bottom:89.058900px;}
.y175{bottom:89.531400px;}
.y34e{bottom:90.856800px;}
.y151{bottom:91.019550px;}
.y38c{bottom:91.515600px;}
.y1e3{bottom:92.296350px;}
.y27f{bottom:94.019550px;}
.y30c{bottom:96.523350px;}
.y262{bottom:98.271450px;}
.y1e1{bottom:99.046350px;}
.y2df{bottom:99.523350px;}
.y208{bottom:99.880350px;}
.y367{bottom:101.035200px;}
.ye7{bottom:104.293200px;}
.y237{bottom:104.392200px;}
.y5f{bottom:104.838450px;}
.y1e0{bottom:105.796350px;}
.y227{bottom:107.507700px;}
.y8b{bottom:109.019550px;}
.y3af{bottom:110.058900px;}
.y174{bottom:110.531400px;}
.y34d{bottom:111.856800px;}
.y38b{bottom:112.515600px;}
.y27e{bottom:115.019550px;}
.ye9{bottom:116.671200px;}
.y2be{bottom:117.523350px;}
.y261{bottom:119.271450px;}
.y1e2{bottom:119.296350px;}
.y2de{bottom:120.523350px;}
.ye6{bottom:120.545250px;}
.y207{bottom:120.880350px;}
.y366{bottom:122.035200px;}
.y2ac{bottom:123.329700px;}
.y328{bottom:124.872600px;}
.y236{bottom:125.392200px;}
.y5e{bottom:125.838450px;}
.y133{bottom:126.027300px;}
.y150{bottom:127.019550px;}
.y226{bottom:128.507700px;}
.ye3{bottom:128.671200px;}
.y3ae{bottom:131.058900px;}
.y173{bottom:131.531400px;}
.y34c{bottom:132.856800px;}
.y38a{bottom:133.515600px;}
.y27d{bottom:136.019550px;}
.ye5{bottom:136.797150px;}
.y8a{bottom:138.523350px;}
.y1df{bottom:139.475850px;}
.y260{bottom:140.271450px;}
.ye8{bottom:140.671200px;}
.y2dd{bottom:141.523350px;}
.y206{bottom:141.880350px;}
.y365{bottom:143.035200px;}
.y2ab{bottom:144.329700px;}
.y30{bottom:144.956250px;}
.y14f{bottom:145.019550px;}
.y327{bottom:145.872600px;}
.y1db{bottom:146.225850px;}
.y116{bottom:146.392200px;}
.y5d{bottom:146.838450px;}
.y132{bottom:147.027300px;}
.y225{bottom:149.507700px;}
.y2fd{bottom:150.825750px;}
.y3ad{bottom:152.058900px;}
.y172{bottom:152.531400px;}
.y1de{bottom:152.975850px;}
.ye4{bottom:153.049200px;}
.y389{bottom:154.515600px;}
.y27c{bottom:157.019550px;}
.y89{bottom:159.523350px;}
.y1d9{bottom:159.725850px;}
.y25f{bottom:161.271450px;}
.y205{bottom:162.880350px;}
.y2aa{bottom:165.329700px;}
.y2f{bottom:165.956250px;}
.y1dd{bottom:166.475850px;}
.y326{bottom:166.872600px;}
.y115{bottom:167.392200px;}
.y5c{bottom:167.838450px;}
.y131{bottom:168.027300px;}
.y34b{bottom:170.864550px;}
.y2dc{bottom:171.027300px;}
.y2fc{bottom:171.825750px;}
.y364{bottom:172.539150px;}
.y3ac{bottom:173.058900px;}
.y1da{bottom:173.225850px;}
.ye1{bottom:173.228550px;}
.y171{bottom:173.531400px;}
.y388{bottom:175.515600px;}
.y27b{bottom:178.019550px;}
.y1dc{bottom:179.975850px;}
.y2bd{bottom:180.523350px;}
.y14e{bottom:181.019550px;}
.ydf{bottom:181.354650px;}
.y25e{bottom:182.271450px;}
.ye2{bottom:183.480600px;}
.y2a9{bottom:186.329700px;}
.y2e{bottom:186.956250px;}
.y224{bottom:187.515600px;}
.y325{bottom:187.872600px;}
.y114{bottom:188.392200px;}
.y5b{bottom:188.838450px;}
.y34a{bottom:188.864550px;}
.y88{bottom:189.027300px;}
.yde{bottom:189.480600px;}
.y2db{bottom:192.027300px;}
.y204{bottom:192.384300px;}
.y2fb{bottom:192.825750px;}
.y363{bottom:193.539150px;}
.y3ab{bottom:194.058900px;}
.y170{bottom:194.531400px;}
.y387{bottom:196.515600px;}
.y14d{bottom:199.019550px;}
.y1d8{bottom:200.155200px;}
.y2bc{bottom:201.523350px;}
.y25d{bottom:203.271450px;}
.y223{bottom:205.515600px;}
.ye0{bottom:205.732500px;}
.y349{bottom:206.864550px;}
.y2a8{bottom:207.329700px;}
.y2d{bottom:207.956250px;}
.y324{bottom:208.872600px;}
.y113{bottom:209.392200px;}
.y5a{bottom:209.838450px;}
.y87{bottom:210.027300px;}
.y2da{bottom:213.027300px;}
.y203{bottom:213.384300px;}
.y1d6{bottom:213.655200px;}
.y2fa{bottom:213.825750px;}
.y362{bottom:214.539150px;}
.y3aa{bottom:215.058900px;}
.y16f{bottom:215.531400px;}
.y14c{bottom:217.019550px;}
.y386{bottom:217.515600px;}
.y27a{bottom:220.019550px;}
.y30b{bottom:222.523350px;}
.y222{bottom:223.515600px;}
.ydd{bottom:225.912000px;}
.y1d7{bottom:227.155200px;}
.y2a7{bottom:228.329700px;}
.y2c{bottom:228.956250px;}
.y323{bottom:229.872600px;}
.y112{bottom:230.392200px;}
.y59{bottom:230.838450px;}
.y86{bottom:231.027300px;}
.ydb{bottom:231.912000px;}
.y25c{bottom:232.775400px;}
.y202{bottom:234.384300px;}
.y235{bottom:234.644100px;}
.y2f9{bottom:234.825750px;}
.y361{bottom:235.539150px;}
.y3a9{bottom:236.058900px;}
.yda{bottom:237.912000px;}
.y385{bottom:238.515600px;}
.y348{bottom:241.872600px;}
.y2d9{bottom:242.531400px;}
.y30a{bottom:243.523350px;}
.y16e{bottom:245.035200px;}
.y1d5{bottom:247.758150px;}
.yc{bottom:249.507900px;}
.y279{bottom:249.523350px;}
.ydc{bottom:249.912000px;}
.y322{bottom:250.872600px;}
.y111{bottom:251.392200px;}
.y58{bottom:251.838450px;}
.y85{bottom:252.027300px;}
.y25b{bottom:253.775400px;}
.y1d3{bottom:254.508150px;}
.y201{bottom:255.384300px;}
.y234{bottom:255.644100px;}
.y2f8{bottom:255.825750px;}
.y360{bottom:256.539150px;}
.y2a6{bottom:257.833500px;}
.y2b{bottom:258.460050px;}
.y221{bottom:258.523350px;}
.y384{bottom:259.515600px;}
.y1d2{bottom:261.258150px;}
.y347{bottom:262.872600px;}
.y2d8{bottom:263.531400px;}
.y3a8{bottom:265.562850px;}
.y16d{bottom:266.035200px;}
.yd8{bottom:270.091350px;}
.yb{bottom:270.259800px;}
.y278{bottom:270.523350px;}
.y321{bottom:271.872600px;}
.y110{bottom:272.392200px;}
.y57{bottom:272.838450px;}
.y84{bottom:273.027300px;}
.y1d4{bottom:274.758150px;}
.y25a{bottom:274.775400px;}
.y200{bottom:276.384300px;}
.y233{bottom:276.644100px;}
.y2f7{bottom:276.825750px;}
.y35f{bottom:277.539150px;}
.y2a5{bottom:278.833500px;}
.y2a{bottom:279.460050px;}
.y220{bottom:279.523350px;}
.y383{bottom:280.515600px;}
.y346{bottom:283.872600px;}
.y2d7{bottom:284.531400px;}
.yd7{bottom:286.343400px;}
.y3a7{bottom:286.562850px;}
.y16c{bottom:287.035200px;}
.yd9{bottom:288.469350px;}
.ya{bottom:291.011850px;}
.y277{bottom:291.523350px;}
.y56{bottom:293.838450px;}
.y83{bottom:294.027300px;}
.yd4{bottom:294.469350px;}
.y1d1{bottom:295.361100px;}
.y259{bottom:295.775400px;}
.y232{bottom:297.644100px;}
.y2f6{bottom:297.825750px;}
.y35e{bottom:298.539150px;}
.y2a4{bottom:299.833500px;}
.y29{bottom:300.460050px;}
.y21f{bottom:300.523350px;}
.y320{bottom:301.376400px;}
.y382{bottom:301.515600px;}
.y10f{bottom:301.896150px;}
.yd6{bottom:302.595300px;}
.y345{bottom:304.872600px;}
.y2d6{bottom:305.531400px;}
.y1ff{bottom:305.888250px;}
.y3a6{bottom:307.562850px;}
.y16b{bottom:308.035200px;}
.y1d0{bottom:308.861100px;}
.y9{bottom:311.763750px;}
.y276{bottom:312.523350px;}
.y55{bottom:314.838450px;}
.y82{bottom:315.027300px;}
.y1cc{bottom:315.611100px;}
.y231{bottom:318.644100px;}
.y2f5{bottom:318.825750px;}
.yd5{bottom:318.847350px;}
.y2a3{bottom:320.833500px;}
.y28{bottom:321.460050px;}
.y21e{bottom:321.523350px;}
.y1cb{bottom:322.361100px;}
.y381{bottom:322.515600px;}
.y10e{bottom:322.896150px;}
.y130{bottom:323.531400px;}
.y258{bottom:325.279350px;}
.y344{bottom:325.872600px;}
.y2d5{bottom:326.531400px;}
.y1fe{bottom:326.888250px;}
.y35d{bottom:328.043100px;}
.y3a5{bottom:328.562850px;}
.y16a{bottom:329.035200px;}
.y1cd{bottom:329.111100px;}
.y8{bottom:332.515800px;}
.y275{bottom:333.523350px;}
.y54{bottom:335.838450px;}
.y1cf{bottom:335.861100px;}
.y81{bottom:336.027300px;}
.yd3{bottom:339.026700px;}
.y230{bottom:339.644100px;}
.y2f4{bottom:339.825750px;}
.y2a2{bottom:341.833500px;}
.y27{bottom:342.460050px;}
.yd1{bottom:342.900750px;}
.y10d{bottom:343.896150px;}
.y12f{bottom:344.531400px;}
.y257{bottom:346.279350px;}
.y343{bottom:346.872600px;}
.y2d4{bottom:347.531400px;}
.y1fd{bottom:347.888250px;}
.y35c{bottom:349.043100px;}
.y1ce{bottom:349.361100px;}
.y3a4{bottom:349.562850px;}
.y169{bottom:350.035200px;}
.yd0{bottom:351.026700px;}
.y21d{bottom:351.027300px;}
.y380{bottom:352.019550px;}
.y7{bottom:353.267700px;}
.y53{bottom:356.838450px;}
.y80{bottom:357.027300px;}
.y22f{bottom:360.644100px;}
.y2a1{bottom:362.833500px;}
.yd2{bottom:363.026700px;}
.y274{bottom:363.027300px;}
.y10c{bottom:364.896150px;}
.y12e{bottom:365.531400px;}
.y256{bottom:367.279350px;}
.y2d3{bottom:368.531400px;}
.y1fc{bottom:368.888250px;}
.y1c9{bottom:369.540600px;}
.y35b{bottom:370.043100px;}
.y3a3{bottom:370.562850px;}
.y168{bottom:371.035200px;}
.y26{bottom:371.964000px;}
.y21c{bottom:372.027300px;}
.y37f{bottom:373.019550px;}
.ye{bottom:373.621350px;}
.y1ca{bottom:376.290600px;}
.y342{bottom:376.376400px;}
.y2f3{bottom:377.833650px;}
.y52{bottom:377.838450px;}
.y309{bottom:378.027300px;}
.y22e{bottom:381.644100px;}
.y1c7{bottom:383.040600px;}
.ycd{bottom:383.206050px;}
.y273{bottom:384.027300px;}
.y10b{bottom:385.896150px;}
.y7f{bottom:386.531400px;}
.y255{bottom:388.279350px;}
.yca{bottom:389.206050px;}
.y2d2{bottom:389.531400px;}
.y31f{bottom:389.888250px;}
.y35a{bottom:391.043100px;}
.ycf{bottom:391.332150px;}
.y3a2{bottom:391.562850px;}
.y2a0{bottom:392.337450px;}
.y25{bottom:392.964000px;}
.y21b{bottom:393.027300px;}
.ycc{bottom:395.206050px;}
.y2f2{bottom:395.833650px;}
.y1c8{bottom:396.540600px;}
.yc9{bottom:397.332150px;}
.y341{bottom:397.376400px;}
.y1fb{bottom:398.392200px;}
.y51{bottom:398.838450px;}
.y308{bottom:399.027300px;}
.y167{bottom:400.539150px;}
.yd{bottom:401.531550px;}
.y37e{bottom:402.523500px;}
.y22d{bottom:402.644100px;}
.yce{bottom:403.332150px;}
.y272{bottom:405.027300px;}
.y10a{bottom:406.896150px;}
.y7e{bottom:407.531400px;}
.y254{bottom:409.279350px;}
.y2d1{bottom:410.531400px;}
.y31e{bottom:410.888250px;}
.ycb{bottom:411.458100px;}
.y359{bottom:412.043100px;}
.y3a1{bottom:412.562850px;}
.y29f{bottom:413.337450px;}
.y2f1{bottom:413.833650px;}
.y24{bottom:413.964000px;}
.y21a{bottom:414.027300px;}
.y1c6{bottom:416.719950px;}
.y340{bottom:418.376400px;}
.y1fa{bottom:419.392200px;}
.y166{bottom:421.539150px;}
.y37d{bottom:423.523500px;}
.y22c{bottom:423.644100px;}
.y109{bottom:427.896150px;}
.y50{bottom:428.342400px;}
.y7d{bottom:428.531400px;}
.y1c5{bottom:430.219950px;}
.y253{bottom:430.279350px;}
.y2d0{bottom:431.531400px;}
.yc1{bottom:431.637450px;}
.y2f0{bottom:431.833650px;}
.y31d{bottom:431.888250px;}
.y358{bottom:433.043100px;}
.y3a0{bottom:433.562850px;}
.y29e{bottom:434.337450px;}
.y23{bottom:434.964000px;}
.y219{bottom:435.027300px;}
.y33f{bottom:439.376400px;}
.yc3{bottom:439.763550px;}
.y1f9{bottom:440.392200px;}
.yc6{bottom:441.889500px;}
.y165{bottom:442.539150px;}
.y271{bottom:443.035200px;}
.y1c4{bottom:443.719950px;}
.y37c{bottom:444.523500px;}
.y22b{bottom:444.644100px;}
.yc0{bottom:447.889500px;}
.y108{bottom:448.896150px;}
.y4f{bottom:449.342400px;}
.y7c{bottom:449.531400px;}
.y2ef{bottom:449.833650px;}
.yc8{bottom:450.015450px;}
.y252{bottom:451.279350px;}
.y2cf{bottom:452.531400px;}
.y31c{bottom:452.888250px;}
.yc5{bottom:453.889500px;}
.y357{bottom:454.043100px;}
.y39f{bottom:454.562850px;}
.y29d{bottom:455.337450px;}
.y22{bottom:455.964000px;}
.ybd{bottom:456.015450px;}
.y1c0{bottom:457.219950px;}
.y12d{bottom:458.035200px;}
.y270{bottom:461.035200px;}
.y1f8{bottom:461.392200px;}
.yc7{bottom:462.015450px;}
.y164{bottom:463.539150px;}
.y1bc{bottom:463.969950px;}
.ybf{bottom:464.141400px;}
.y37b{bottom:465.523500px;}
.y2ee{bottom:467.833650px;}
.y33e{bottom:468.880350px;}
.y22a{bottom:469.896150px;}
.yc4{bottom:470.141400px;}
.y4e{bottom:470.342400px;}
.y7b{bottom:470.531400px;}
.y1c3{bottom:470.719950px;}
.yc2{bottom:472.267350px;}
.y251{bottom:472.279350px;}
.y218{bottom:473.035200px;}
.y2ce{bottom:473.531400px;}
.y31b{bottom:473.888250px;}
.y356{bottom:475.043100px;}
.y39e{bottom:475.562850px;}
.y21{bottom:476.964000px;}
.y1bb{bottom:477.469950px;}
.y107{bottom:478.400100px;}
.y14b{bottom:479.035200px;}
.ybe{bottom:480.393450px;}
.y1b8{bottom:484.219950px;}
.y163{bottom:484.539150px;}
.y2ed{bottom:485.833650px;}
.y37a{bottom:486.523500px;}
.y33d{bottom:489.880350px;}
.y1f7{bottom:490.896150px;}
.y1ba{bottom:490.969950px;}
.y217{bottom:491.035200px;}
.y7a{bottom:491.531400px;}
.y250{bottom:493.279350px;}
.y29c{bottom:493.345350px;}
.y2cd{bottom:494.531400px;}
.y31a{bottom:494.888250px;}
.y39d{bottom:496.562850px;}
.y1bf{bottom:497.719950px;}
.y106{bottom:499.400100px;}
.y4d{bottom:499.846350px;}
.y14a{bottom:500.035200px;}
.ybc{bottom:500.572800px;}
.y1b9{bottom:504.469950px;}
.y12c{bottom:504.547050px;}
.y162{bottom:505.539150px;}
.y20{bottom:506.467950px;}
.ybb{bottom:506.572800px;}
.y379{bottom:507.523500px;}
.y33c{bottom:510.880350px;}
.y1be{bottom:511.219950px;}
.y29b{bottom:511.345350px;}
.y1f6{bottom:511.896150px;}
.y79{bottom:512.531400px;}
.y26f{bottom:514.043100px;}
.y319{bottom:515.888250px;}
.y39c{bottom:517.562850px;}
.y105{bottom:520.400100px;}
.y2ec{bottom:520.841550px;}
.y4c{bottom:520.846350px;}
.y149{bottom:521.035200px;}
.y24f{bottom:522.783300px;}
.y1c2{bottom:524.719950px;}
.y12b{bottom:525.547050px;}
.y216{bottom:526.043100px;}
.y161{bottom:526.539150px;}
.y1f{bottom:527.467950px;}
.y378{bottom:528.523500px;}
.y29a{bottom:529.345350px;}
.y2cc{bottom:532.539150px;}
.yb9{bottom:532.752300px;}
.y1f5{bottom:532.896150px;}
.y78{bottom:533.531400px;}
.y26e{bottom:535.043100px;}
.y33b{bottom:536.132400px;}
.y1c1{bottom:538.219950px;}
.y39b{bottom:538.562850px;}
.y104{bottom:541.400100px;}
.y2eb{bottom:541.841550px;}
.y4b{bottom:541.846350px;}
.y148{bottom:542.035200px;}
.y24e{bottom:543.783300px;}
.y318{bottom:545.392200px;}
.y12a{bottom:546.547050px;}
.y215{bottom:547.043100px;}
.y299{bottom:547.345350px;}
.y160{bottom:547.539150px;}
.y1e{bottom:548.467950px;}
.yb8{bottom:549.004200px;}
.y377{bottom:549.523500px;}
.y2cb{bottom:550.539150px;}
.yba{bottom:551.130150px;}
.y1bd{bottom:551.719950px;}
.y229{bottom:553.896150px;}
.y77{bottom:554.531400px;}
.y26d{bottom:556.043100px;}
.yb5{bottom:557.130150px;}
.y33a{bottom:557.132400px;}
.y3d2{bottom:558.318300px;}
.y39a{bottom:559.562850px;}
.y1f4{bottom:562.400100px;}
.y2ea{bottom:562.841550px;}
.y4a{bottom:562.846350px;}
.y147{bottom:563.035200px;}
.y24d{bottom:564.783300px;}
.yb7{bottom:565.256100px;}
.y298{bottom:565.345350px;}
.y317{bottom:566.392200px;}
.y129{bottom:567.547050px;}
.y214{bottom:568.043100px;}
.y15f{bottom:568.539150px;}
.y376{bottom:570.523500px;}
.y103{bottom:570.904050px;}
.y186{bottom:571.539150px;}
.y1b6{bottom:571.899300px;}
.y3d1{bottom:573.318300px;}
.y228{bottom:574.896150px;}
.y76{bottom:575.531400px;}
.y26c{bottom:577.043100px;}
.y1d{bottom:577.971900px;}
.y1b5{bottom:578.649300px;}
.y399{bottom:580.562850px;}
.yb6{bottom:581.508150px;}
.y339{bottom:582.384300px;}
.y297{bottom:583.345350px;}
.y1f3{bottom:583.400100px;}
.y2e9{bottom:583.841550px;}
.y49{bottom:583.846350px;}
.y2bb{bottom:584.035200px;}
.y1b7{bottom:585.399300px;}
.y24c{bottom:585.783300px;}
.y2ca{bottom:586.539150px;}
.y316{bottom:587.392200px;}
.y3d0{bottom:588.318300px;}
.y128{bottom:588.547050px;}
.y213{bottom:589.043100px;}
.y15e{bottom:589.539150px;}
.y102{bottom:591.904050px;}
.y146{bottom:592.539150px;}
.y75{bottom:596.531400px;}
.y1c{bottom:598.971900px;}
.y375{bottom:600.027300px;}
.y398{bottom:601.562850px;}
.y338{bottom:603.384300px;}
.yb4{bottom:603.747750px;}
.y1f2{bottom:604.400100px;}
.y2e8{bottom:604.841550px;}
.y48{bottom:604.846350px;}
.y2ba{bottom:605.035200px;}
.y1b3{bottom:605.578800px;}
.y26b{bottom:606.547050px;}
.y24b{bottom:606.783300px;}
.y3cf{bottom:607.570350px;}
.y315{bottom:608.392200px;}
.y307{bottom:609.547050px;}
.y212{bottom:610.043100px;}
.y1b2{bottom:612.328800px;}
.y101{bottom:612.904050px;}
.y145{bottom:613.539150px;}
.y74{bottom:617.531400px;}
.y127{bottom:618.051000px;}
.y296{bottom:618.353250px;}
.y1b4{bottom:619.078800px;}
.y1b{bottom:619.971900px;}
.y374{bottom:621.027300px;}
.y2c9{bottom:621.547050px;}
.y397{bottom:622.562850px;}
.y337{bottom:624.384300px;}
.y1f1{bottom:625.400100px;}
.y2e7{bottom:625.841550px;}
.y47{bottom:625.846350px;}
.yb2{bottom:625.987500px;}
.y2b9{bottom:626.035200px;}
.y3ce{bottom:626.822250px;}
.y15d{bottom:627.547050px;}
.y24a{bottom:627.783300px;}
.y314{bottom:629.392200px;}
.y306{bottom:630.547050px;}
.y211{bottom:631.043100px;}
.y144{bottom:634.539150px;}
.y185{bottom:635.058900px;}
.yb3{bottom:636.239550px;}
.y126{bottom:639.051000px;}
.y1b0{bottom:639.258150px;}
.y295{bottom:639.353250px;}
.y1a{bottom:640.971900px;}
.y3cd{bottom:641.822250px;}
.y373{bottom:642.027300px;}
.yb0{bottom:642.239550px;}
.y100{bottom:642.407850px;}
.y2c8{bottom:642.547050px;}
.y396{bottom:643.562850px;}
.y15c{bottom:645.547050px;}
.y1af{bottom:646.008150px;}
.y1f0{bottom:646.400100px;}
.y2e6{bottom:646.841550px;}
.y46{bottom:646.846350px;}
.y73{bottom:647.035200px;}
.y26a{bottom:648.547050px;}
.y249{bottom:648.783300px;}
.y313{bottom:650.392200px;}
.y305{bottom:651.547050px;}
.y210{bottom:652.043100px;}
.y1b1{bottom:652.758150px;}
.y336{bottom:653.888250px;}
.y143{bottom:655.539150px;}
.y184{bottom:656.058900px;}
.y3cc{bottom:656.822250px;}
.yb1{bottom:658.491450px;}
.y125{bottom:660.051000px;}
.y294{bottom:660.353250px;}
.y19{bottom:661.971900px;}
.y372{bottom:663.027300px;}
.yff{bottom:663.407850px;}
.y15b{bottom:663.547050px;}
.y2b8{bottom:664.043100px;}
.y395{bottom:664.562850px;}
.y1ef{bottom:667.400100px;}
.y2e5{bottom:667.841550px;}
.y72{bottom:668.035200px;}
.y269{bottom:669.547050px;}
.y248{bottom:669.783300px;}
.y312{bottom:671.392200px;}
.y304{bottom:672.547050px;}
.y1ad{bottom:672.937650px;}
.y335{bottom:674.888250px;}
.y3cb{bottom:676.074300px;}
.y45{bottom:676.350300px;}
.y142{bottom:676.539150px;}
.y183{bottom:677.058900px;}
.yaf{bottom:678.670950px;}
.y1ac{bottom:679.687650px;}
.y355{bottom:681.051000px;}
.y293{bottom:681.353250px;}
.y15a{bottom:681.547050px;}
.y2b7{bottom:682.043100px;}
.y18{bottom:682.971900px;}
.y371{bottom:684.027300px;}
.yfe{bottom:684.407850px;}
.y2c7{bottom:684.547050px;}
.y394{bottom:685.562850px;}
.y1ae{bottom:686.437650px;}
.y71{bottom:689.035200px;}
.y124{bottom:689.554950px;}
.y268{bottom:690.547050px;}
.y3ca{bottom:691.074300px;}
.y311{bottom:692.392200px;}
.yad{bottom:694.922850px;}
.y334{bottom:695.888250px;}
.y1ee{bottom:696.904050px;}
.y44{bottom:697.350300px;}
.y182{bottom:698.058900px;}
.y247{bottom:699.287250px;}
.y2b6{bottom:700.043100px;}
.y303{bottom:702.051000px;}
.y292{bottom:702.353250px;}
.y20f{bottom:702.547050px;}
.y17{bottom:703.971900px;}
.y370{bottom:705.027300px;}
.yfd{bottom:705.407850px;}
.y2c6{bottom:705.547050px;}
.y2e4{bottom:705.849300px;}
.y3b2{bottom:706.562850px;}
.y1a9{bottom:706.617000px;}
.y70{bottom:710.035200px;}
.y3c9{bottom:710.326200px;}
.y123{bottom:710.554950px;}
.yae{bottom:711.174750px;}
.y1aa{bottom:713.367000px;}
.y310{bottom:713.392200px;}
.y141{bottom:714.547050px;}
.y393{bottom:715.066800px;}
.y159{bottom:716.554950px;}
.y333{bottom:716.888250px;}
.y1ed{bottom:717.904050px;}
.y2b5{bottom:718.043100px;}
.y43{bottom:718.350300px;}
.y181{bottom:719.058900px;}
.y1a7{bottom:720.117000px;}
.y302{bottom:723.051000px;}
.y291{bottom:723.353250px;}
.y20e{bottom:723.547050px;}
.y16{bottom:724.971900px;}
.y36f{bottom:726.027300px;}
.yfc{bottom:726.407850px;}
.y2c5{bottom:726.547050px;}
.y1ab{bottom:726.867000px;}
.y3b1{bottom:727.562850px;}
.y267{bottom:728.554950px;}
.y3c8{bottom:729.578250px;}
.y6f{bottom:731.035200px;}
.yac{bottom:731.354250px;}
.y140{bottom:732.547050px;}
.y1a8{bottom:733.617000px;}
.y30f{bottom:734.392200px;}
.y2b4{bottom:736.043100px;}
.y392{bottom:736.066800px;}
.y158{bottom:737.554950px;}
.y1ec{bottom:738.904050px;}
.y42{bottom:739.350300px;}
.y122{bottom:740.058900px;}
.y301{bottom:744.051000px;}
.y3c7{bottom:744.578250px;}
.y246{bottom:745.799100px;}
.y15{bottom:745.971900px;}
.y266{bottom:746.554950px;}
.y36e{bottom:747.027300px;}
.yfb{bottom:747.407850px;}
.yaa{bottom:747.606150px;}
.y180{bottom:748.562850px;}
.y13f{bottom:750.547050px;}
.y6e{bottom:752.035200px;}
.y1a6{bottom:753.796350px;}
.y2b3{bottom:754.043100px;}
.y332{bottom:754.896150px;}
.y2c4{bottom:756.051000px;}
.y391{bottom:757.066800px;}
.y157{bottom:758.554950px;}
.y1eb{bottom:759.904050px;}
.y1a4{bottom:760.546350px;}
.y121{bottom:761.058900px;}
.y290{bottom:761.361150px;}
.y20d{bottom:761.554950px;}
.y3c6{bottom:763.830150px;}
.yab{bottom:763.858200px;}
.y30e{bottom:763.896150px;}
.y265{bottom:764.554950px;}
.y300{bottom:765.051000px;}
.y245{bottom:766.798950px;}
.y14{bottom:766.971900px;}
.y1a3{bottom:767.296350px;}
.y36d{bottom:768.027300px;}
.yfa{bottom:768.408000px;}
.y13e{bottom:768.547050px;}
.y41{bottom:768.854250px;}
.y2e3{bottom:769.369050px;}
.y17f{bottom:769.562850px;}
.y2b2{bottom:772.043100px;}
.y331{bottom:772.896150px;}
.y2c3{bottom:777.051000px;}
.y390{bottom:778.066800px;}
.y3c5{bottom:778.830150px;}
.y28f{bottom:779.361150px;}
.y156{bottom:779.554950px;}
.y1a5{bottom:780.796350px;}
.y1ea{bottom:780.904050px;}
.y6d{bottom:781.539150px;}
.y120{bottom:782.058900px;}
.y264{bottom:782.554950px;}
.ya8{bottom:784.037550px;}
.y2ff{bottom:786.051000px;}
.y13d{bottom:786.547050px;}
.y244{bottom:787.798950px;}
.y13{bottom:787.971900px;}
.yf9{bottom:789.408000px;}
.y40{bottom:789.854250px;}
.y2e2{bottom:790.369050px;}
.y17e{bottom:790.562850px;}
.y330{bottom:790.896150px;}
.ya9{bottom:794.289600px;}
.y354{bottom:794.554950px;}
.y28e{bottom:797.361150px;}
.y20c{bottom:797.554950px;}
.y3c4{bottom:798.082050px;}
.y38f{bottom:799.066800px;}
.ya6{bottom:800.289600px;}
.y155{bottom:800.554950px;}
.y1a2{bottom:800.975850px;}
.y6c{bottom:802.539150px;}
.y11f{bottom:803.058900px;}
.y36c{bottom:806.035200px;}
.y2b1{bottom:807.051000px;}
.y1a0{bottom:807.725850px;}
.y243{bottom:808.798950px;}
.y32f{bottom:808.896150px;}
.yf8{bottom:810.408000px;}
.y3f{bottom:810.854250px;}
.y2e1{bottom:811.369050px;}
.y17d{bottom:811.562850px;}
.y3c3{bottom:813.082050px;}
.y19f{bottom:814.475850px;}
.y6{bottom:814.908450px;}
.y2c2{bottom:815.058900px;}
.y353{bottom:815.554950px;}
.ya7{bottom:816.541500px;}
.y263{bottom:818.554950px;}
.y38e{bottom:820.066800px;}
.y13c{bottom:821.554950px;}
.y6b{bottom:823.539150px;}
.y1a1{bottom:827.975850px;}
.y2b0{bottom:828.051000px;}
.y242{bottom:829.798950px;}
.yf7{bottom:831.408000px;}
.y3e{bottom:831.854250px;}
.y3c2{bottom:832.334100px;}
.y28d{bottom:832.369050px;}
.y11e{bottom:832.562850px;}
.y2c1{bottom:833.058900px;}
.y2fe{bottom:836.554950px;}
.ya2{bottom:836.720850px;}
.ya5{bottom:840.972900px;}
.y38d{bottom:841.066800px;}
.y13b{bottom:842.554950px;}
.y32e{bottom:843.904050px;}
.y6a{bottom:844.539150px;}
.ya3{bottom:844.846950px;}
.y352{bottom:845.058900px;}
.y3c1{bottom:847.334100px;}
.y19c{bottom:848.155200px;}
.y2af{bottom:849.051000px;}
.y241{bottom:850.798950px;}
.y2c0{bottom:851.058900px;}
.yf6{bottom:852.408000px;}
.y3d{bottom:852.854250px;}
.ya0{bottom:852.972900px;}
.y28c{bottom:853.369050px;}
.y11d{bottom:853.562850px;}
.y19b{bottom:854.905200px;}
.y199{bottom:861.655200px;}
.y17c{bottom:862.066800px;}
.y13a{bottom:863.554950px;}
.y32d{bottom:864.904050px;}
.ya4{bottom:864.972900px;}
.y69{bottom:865.539150px;}
.y351{bottom:866.058900px;}
.y3c0{bottom:866.586150px;}
.y198{bottom:868.405200px;}
.y2bf{bottom:869.058900px;}
.ya1{bottom:869.224800px;}
.y240{bottom:871.798950px;}
.y12{bottom:872.491650px;}
.y1e9{bottom:873.408000px;}
.y3c{bottom:873.854250px;}
.y28b{bottom:874.369050px;}
.y11c{bottom:874.562850px;}
.y19e{bottom:875.155200px;}
.y2ae{bottom:878.554950px;}
.y3bf{bottom:881.586150px;}
.y19a{bottom:881.905200px;}
.yf5{bottom:881.911800px;}
.y17b{bottom:883.066800px;}
.y139{bottom:884.554950px;}
.y32c{bottom:885.904050px;}
.y350{bottom:887.058900px;}
.y19d{bottom:888.655200px;}
.y9f{bottom:889.404300px;}
.y1e8{bottom:894.408000px;}
.y28a{bottom:895.369050px;}
.y11b{bottom:895.562850px;}
.y5{bottom:895.663950px;}
.y3be{bottom:900.838050px;}
.yf4{bottom:902.911800px;}
.y3b{bottom:903.358200px;}
.y68{bottom:903.547050px;}
.y17a{bottom:904.066800px;}
.y138{bottom:905.554950px;}
.y9d{bottom:905.656200px;}
.y32b{bottom:906.904050px;}
.y36b{bottom:907.562850px;}
.y23f{bottom:909.807000px;}
.y196{bottom:910.487850px;}
.y1e7{bottom:915.408000px;}
.y3bd{bottom:915.838050px;}
.y289{bottom:916.369050px;}
.y11a{bottom:916.562850px;}
.y195{bottom:917.237850px;}
.y9e{bottom:921.908250px;}
.yf3{bottom:923.911800px;}
.y197{bottom:923.987850px;}
.y3a{bottom:924.358200px;}
.y179{bottom:925.066800px;}
.y36a{bottom:925.562850px;}
.y137{bottom:926.554950px;}
.y23e{bottom:927.807000px;}
.y32a{bottom:927.904050px;}
.y3bc{bottom:935.090100px;}
.y1e6{bottom:936.408000px;}
.y288{bottom:937.369050px;}
.y20b{bottom:937.562850px;}
.y9c{bottom:942.087600px;}
.y369{bottom:943.562850px;}
.yf2{bottom:944.911800px;}
.y39{bottom:945.358200px;}
.y194{bottom:945.820500px;}
.y2e0{bottom:945.873000px;}
.y99{bottom:945.961650px;}
.y119{bottom:946.066800px;}
.y136{bottom:947.554950px;}
.y3bb{bottom:950.090100px;}
.y193{bottom:952.570500px;}
.y98{bottom:954.087600px;}
.y4{bottom:955.663950px;}
.y1e5{bottom:957.408000px;}
.y20a{bottom:958.562850px;}
.y368{bottom:961.562850px;}
.y9a{bottom:962.213550px;}
.y23d{bottom:962.814750px;}
.yf1{bottom:965.911800px;}
.y9b{bottom:966.087600px;}
.y38{bottom:966.358200px;}
.y287{bottom:966.873000px;}
.y67{bottom:967.066800px;}
.y154{bottom:968.554950px;}
.y3ba{bottom:969.342000px;}
.y178{bottom:975.570750px;}
.y1e4{bottom:978.408000px;}
.y192{bottom:979.499850px;}
.y23c{bottom:983.814750px;}
.y3b9{bottom:984.342000px;}
.y135{bottom:985.562850px;}
.y96{bottom:986.267100px;}
.yf0{bottom:986.911800px;}
.y37{bottom:987.358200px;}
.y286{bottom:987.873000px;}
.y66{bottom:988.066800px;}
.y97{bottom:988.393050px;}
.y191{bottom:992.999850px;}
.y95{bottom:994.393050px;}
.y177{bottom:996.570750px;}
.y30d{bottom:999.408000px;}
.y18d{bottom:999.749850px;}
.y134{bottom:1003.562850px;}
.y3b8{bottom:1003.594050px;}
.y23b{bottom:1004.814750px;}
.y18c{bottom:1006.499850px;}
.y153{bottom:1006.562850px;}
.yef{bottom:1007.911800px;}
.y285{bottom:1008.873000px;}
.y65{bottom:1009.066800px;}
.y18e{bottom:1013.249850px;}
.y3{bottom:1015.663950px;}
.y36{bottom:1016.862150px;}
.y176{bottom:1017.570750px;}
.y3b7{bottom:1018.594050px;}
.y190{bottom:1019.999850px;}
.y329{bottom:1020.408000px;}
.y92{bottom:1022.698500px;}
.y152{bottom:1024.562850px;}
.y23a{bottom:1025.814750px;}
.yee{bottom:1028.911800px;}
.y284{bottom:1029.873000px;}
.y64{bottom:1030.066800px;}
.y18f{bottom:1033.499850px;}
.y3b6{bottom:1033.594050px;}
.y94{bottom:1035.076500px;}
.y35{bottom:1037.862150px;}
.y118{bottom:1038.570750px;}
.y91{bottom:1038.950400px;}
.y8e{bottom:1047.076500px;}
.yed{bottom:1049.911800px;}
.y283{bottom:1050.873000px;}
.y63{bottom:1051.066800px;}
.y3b5{bottom:1052.845950px;}
.y18a{bottom:1053.679350px;}
.y90{bottom:1055.202450px;}
.y239{bottom:1055.318700px;}
.y34{bottom:1058.862150px;}
.y93{bottom:1059.076500px;}
.y117{bottom:1059.570750px;}
.y189{bottom:1060.429350px;}
.y18b{bottom:1067.179350px;}
.y3b4{bottom:1067.845950px;}
.yec{bottom:1070.911800px;}
.y8f{bottom:1071.454350px;}
.y209{bottom:1072.066800px;}
.y2{bottom:1075.663950px;}
.y238{bottom:1076.318700px;}
.y33{bottom:1079.862150px;}
.y62{bottom:1080.570750px;}
.y188{bottom:1087.544100px;}
.y282{bottom:1088.880750px;}
.yeb{bottom:1091.911800px;}
.y34f{bottom:1093.066800px;}
.y8d{bottom:1096.431450px;}
.y32{bottom:1100.862150px;}
.y187{bottom:1101.044100px;}
.y61{bottom:1101.570750px;}
.y281{bottom:1106.880750px;}
.y3b3{bottom:1119.105900px;}
.yea{bottom:1121.415750px;}
.y31{bottom:1121.862150px;}
.y60{bottom:1122.570750px;}
.y280{bottom:1124.880750px;}
.y8c{bottom:1126.035750px;}
.y1{bottom:1135.663950px;}
.y11{bottom:1202.307900px;}
.y10{bottom:1218.507900px;}
.h7{height:27.525600px;}
.h16{height:29.232000px;}
.he{height:37.212000px;}
.h5{height:41.288400px;}
.h17{height:42.880000px;}
.hd{height:43.116000px;}
.h4{height:48.240000px;}
.h9{height:48.276000px;}
.h3{height:53.600000px;}
.h18{height:57.134769px;}
.hb{height:58.960000px;}
.hc{height:59.284500px;}
.h11{height:61.212000px;}
.h14{height:64.212000px;}
.h8{height:64.320000px;}
.h13{height:64.674000px;}
.h19{height:66.657231px;}
.hf{height:69.715800px;}
.h12{height:69.716400px;}
.ha{height:75.453000px;}
.h15{height:91.212000px;}
.h10{height:93.715800px;}
.h6{height:110.095673px;}
.h2{height:225.120000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:28.128900px;}
.x6{left:85.039350px;}
.x1f{left:102.071250px;}
.x1b{left:104.643750px;}
.x23{left:112.039350px;}
.x2{left:126.391950px;}
.x1{left:127.559100px;}
.x14{left:131.811000px;}
.x24{left:136.063050px;}
.x12{left:141.655200px;}
.xc{left:144.227550px;}
.x22{left:154.559100px;}
.x13{left:174.330750px;}
.xb{left:185.935650px;}
.x17{left:232.867950px;}
.x16{left:237.519600px;}
.xa{left:239.331900px;}
.x1e{left:242.589600px;}
.xd{left:252.094200px;}
.x20{left:255.504450px;}
.x21{left:260.649300px;}
.x18{left:290.550150px;}
.x15{left:294.201000px;}
.x19{left:352.912350px;}
.x11{left:359.803350px;}
.x3{left:431.454600px;}
.x4{left:436.087950px;}
.x1a{left:437.951700px;}
.xe{left:445.049400px;}
.x1c{left:520.156350px;}
.x8{left:530.035650px;}
.xf{left:537.431700px;}
.x9{left:553.592250px;}
.x1d{left:639.875100px;}
.x10{left:673.901700px;}
.x7{left:836.002950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.984533pt;}
.v3{vertical-align:21.333333pt;}
.v4{vertical-align:24.000000pt;}
.v1{vertical-align:28.892267pt;}
.v5{vertical-align:48.000000pt;}
.v2{vertical-align:50.225600pt;}
.ls0{letter-spacing:-23.520000pt;}
.ls4{letter-spacing:-3.567296pt;}
.ls14{letter-spacing:-2.346667pt;}
.ls38{letter-spacing:-1.760000pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls30{letter-spacing:-0.528000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.410667pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.288000pt;}
.ls40{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.117333pt;}
.ls41{letter-spacing:-0.085333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.058667pt;}
.ls3f{letter-spacing:0.085333pt;}
.ls36{letter-spacing:0.117333pt;}
.ls3d{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.176000pt;}
.ls31{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.234667pt;}
.ls2d{letter-spacing:0.240000pt;}
.ls3e{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.264000pt;}
.lsf{letter-spacing:0.293333pt;}
.ls1b{letter-spacing:0.322667pt;}
.ls8{letter-spacing:0.352000pt;}
.ls10{letter-spacing:0.410667pt;}
.ls2c{letter-spacing:0.432000pt;}
.ls25{letter-spacing:0.440000pt;}
.lsa{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.498667pt;}
.ls13{letter-spacing:0.528000pt;}
.ls35{letter-spacing:0.557333pt;}
.ls15{letter-spacing:0.585600pt;}
.ls7{letter-spacing:0.586667pt;}
.ls1f{letter-spacing:0.616000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.645333pt;}
.lsb{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.720000pt;}
.lsc{letter-spacing:0.746667pt;}
.lse{letter-spacing:0.762667pt;}
.ls2b{letter-spacing:0.768000pt;}
.ls3b{letter-spacing:0.789333pt;}
.ls39{letter-spacing:0.792000pt;}
.ls32{letter-spacing:0.816000pt;}
.ls12{letter-spacing:0.821333pt;}
.ls17{letter-spacing:0.880000pt;}
.ls1c{letter-spacing:0.938667pt;}
.ls3c{letter-spacing:0.981333pt;}
.ls26{letter-spacing:0.997333pt;}
.ls28{letter-spacing:1.026667pt;}
.lsd{letter-spacing:1.056000pt;}
.ls9{letter-spacing:1.085333pt;}
.ls18{letter-spacing:1.114667pt;}
.ls20{letter-spacing:1.173333pt;}
.ls1d{letter-spacing:1.232000pt;}
.ls34{letter-spacing:1.261333pt;}
.ls1e{letter-spacing:1.290667pt;}
.ls27{letter-spacing:1.324267pt;}
.ls29{letter-spacing:1.349333pt;}
.ls21{letter-spacing:1.642667pt;}
.ls3a{letter-spacing:1.664000pt;}
.ls33{letter-spacing:2.501867pt;}
.wsa5{word-spacing:-20.906667pt;}
.ws39{word-spacing:-17.920000pt;}
.ws7e{word-spacing:-17.189333pt;}
.ws4c{word-spacing:-17.130667pt;}
.ws21{word-spacing:-16.954667pt;}
.ws8e{word-spacing:-16.925333pt;}
.ws89{word-spacing:-16.778667pt;}
.ws3a{word-spacing:-16.720000pt;}
.ws7a{word-spacing:-16.661333pt;}
.ws8f{word-spacing:-16.544000pt;}
.ws80{word-spacing:-16.485333pt;}
.ws20{word-spacing:-16.426667pt;}
.ws3b{word-spacing:-16.368000pt;}
.ws61{word-spacing:-16.074667pt;}
.ws9f{word-spacing:-15.546667pt;}
.ws56{word-spacing:-15.429333pt;}
.ws4e{word-spacing:-15.370667pt;}
.ws4d{word-spacing:-15.194667pt;}
.ws1f{word-spacing:-15.136000pt;}
.wsa7{word-spacing:-15.018667pt;}
.ws9e{word-spacing:-14.960000pt;}
.ws79{word-spacing:-14.901333pt;}
.ws7{word-spacing:-14.842667pt;}
.wsa0{word-spacing:-14.784000pt;}
.ws62{word-spacing:-14.725333pt;}
.ws3c{word-spacing:-14.666667pt;}
.ws6{word-spacing:-14.608000pt;}
.ws3d{word-spacing:-14.578667pt;}
.ws4f{word-spacing:-14.549333pt;}
.ws81{word-spacing:-14.256000pt;}
.ws57{word-spacing:-12.144000pt;}
.ws9a{word-spacing:-11.904000pt;}
.ws28{word-spacing:-11.520000pt;}
.ws0{word-spacing:-11.184000pt;}
.wsad{word-spacing:-10.368000pt;}
.wsae{word-spacing:-10.240000pt;}
.ws29{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.320000pt;}
.ws5e{word-spacing:-4.341333pt;}
.ws7f{word-spacing:-3.520000pt;}
.ws41{word-spacing:-3.168000pt;}
.ws1b{word-spacing:-2.874667pt;}
.ws4a{word-spacing:-2.816000pt;}
.ws7b{word-spacing:-2.581333pt;}
.ws78{word-spacing:-2.522667pt;}
.ws97{word-spacing:-2.464000pt;}
.ws98{word-spacing:-2.405333pt;}
.ws99{word-spacing:-2.170667pt;}
.ws26{word-spacing:-2.053333pt;}
.wsbb{word-spacing:-2.048000pt;}
.ws87{word-spacing:-1.994667pt;}
.ws49{word-spacing:-1.877333pt;}
.ws5c{word-spacing:-1.818667pt;}
.wsbc{word-spacing:-1.749333pt;}
.wsaf{word-spacing:-1.664000pt;}
.ws5a{word-spacing:-1.642667pt;}
.ws8b{word-spacing:-1.584000pt;}
.wsb8{word-spacing:-1.578667pt;}
.ws45{word-spacing:-1.525333pt;}
.ws82{word-spacing:-1.466667pt;}
.wsaa{word-spacing:-1.408000pt;}
.wsa1{word-spacing:-1.290667pt;}
.ws50{word-spacing:-1.232000pt;}
.ws59{word-spacing:-1.173333pt;}
.ws9b{word-spacing:-1.152000pt;}
.wsb{word-spacing:-1.114667pt;}
.ws11{word-spacing:-1.056000pt;}
.ws67{word-spacing:-0.997333pt;}
.wsb2{word-spacing:-0.981333pt;}
.ws44{word-spacing:-0.938667pt;}
.ws23{word-spacing:-0.880000pt;}
.ws40{word-spacing:-0.821333pt;}
.ws94{word-spacing:-0.816000pt;}
.wsb1{word-spacing:-0.810667pt;}
.ws83{word-spacing:-0.768000pt;}
.ws15{word-spacing:-0.762667pt;}
.ws8{word-spacing:-0.746667pt;}
.ws5f{word-spacing:-0.720000pt;}
.wse{word-spacing:-0.704000pt;}
.ws1c{word-spacing:-0.645333pt;}
.ws3e{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.528000pt;}
.ws58{word-spacing:-0.480000pt;}
.wsc{word-spacing:-0.469333pt;}
.ws84{word-spacing:-0.432000pt;}
.ws1d{word-spacing:-0.410667pt;}
.wsa{word-spacing:-0.352000pt;}
.ws17{word-spacing:-0.293333pt;}
.wsb9{word-spacing:-0.256000pt;}
.ws86{word-spacing:-0.240000pt;}
.ws16{word-spacing:-0.234667pt;}
.ws91{word-spacing:-0.192000pt;}
.ws5d{word-spacing:-0.176000pt;}
.wsb6{word-spacing:-0.128000pt;}
.ws63{word-spacing:-0.117333pt;}
.wsbd{word-spacing:-0.085333pt;}
.ws47{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws90{word-spacing:0.058667pt;}
.wsba{word-spacing:0.085333pt;}
.ws64{word-spacing:0.117333pt;}
.wsb4{word-spacing:0.128000pt;}
.ws48{word-spacing:0.176000pt;}
.wsa3{word-spacing:0.288000pt;}
.ws85{word-spacing:0.410667pt;}
.ws24{word-spacing:0.469333pt;}
.ws4{word-spacing:0.480000pt;}
.ws8c{word-spacing:0.528000pt;}
.ws19{word-spacing:0.586667pt;}
.ws54{word-spacing:0.645333pt;}
.ws88{word-spacing:0.704000pt;}
.ws68{word-spacing:0.762667pt;}
.ws92{word-spacing:0.821333pt;}
.wsd{word-spacing:0.997333pt;}
.ws25{word-spacing:1.114667pt;}
.wsa6{word-spacing:1.232000pt;}
.wsb5{word-spacing:1.280000pt;}
.ws18{word-spacing:1.408000pt;}
.ws1a{word-spacing:1.466667pt;}
.ws8a{word-spacing:1.584000pt;}
.wsf{word-spacing:1.642667pt;}
.ws95{word-spacing:1.701333pt;}
.ws93{word-spacing:1.760000pt;}
.ws66{word-spacing:1.818667pt;}
.ws96{word-spacing:1.936000pt;}
.ws22{word-spacing:1.994667pt;}
.ws46{word-spacing:2.053333pt;}
.ws7d{word-spacing:2.112000pt;}
.ws12{word-spacing:2.288000pt;}
.ws13{word-spacing:2.346667pt;}
.ws75{word-spacing:2.464000pt;}
.ws9c{word-spacing:2.581333pt;}
.ws55{word-spacing:2.640000pt;}
.wsa8{word-spacing:2.816000pt;}
.wsac{word-spacing:2.933333pt;}
.ws5b{word-spacing:2.976000pt;}
.wsab{word-spacing:2.992000pt;}
.ws4b{word-spacing:3.050667pt;}
.wsa4{word-spacing:3.226667pt;}
.ws14{word-spacing:3.461333pt;}
.wsa2{word-spacing:3.520000pt;}
.ws5{word-spacing:3.567296pt;}
.ws43{word-spacing:3.578667pt;}
.ws65{word-spacing:3.637333pt;}
.ws69{word-spacing:3.754667pt;}
.ws52{word-spacing:3.989333pt;}
.ws42{word-spacing:4.106667pt;}
.ws8d{word-spacing:4.224000pt;}
.ws10{word-spacing:4.282667pt;}
.ws60{word-spacing:4.320000pt;}
.ws76{word-spacing:4.517333pt;}
.wsb7{word-spacing:4.650667pt;}
.ws27{word-spacing:4.693333pt;}
.ws3f{word-spacing:4.752000pt;}
.ws9d{word-spacing:4.810667pt;}
.ws77{word-spacing:5.104000pt;}
.ws53{word-spacing:5.162667pt;}
.ws51{word-spacing:6.218667pt;}
.ws7c{word-spacing:6.570667pt;}
.wsa9{word-spacing:6.629333pt;}
.wsb3{word-spacing:10.837333pt;}
.wsb0{word-spacing:18.645333pt;}
.ws2{word-spacing:23.520000pt;}
.ws2b{word-spacing:42.071467pt;}
.ws33{word-spacing:56.441067pt;}
.ws74{word-spacing:63.657067pt;}
.ws30{word-spacing:70.006933pt;}
.ws6b{word-spacing:72.803733pt;}
.ws71{word-spacing:78.685867pt;}
.ws6c{word-spacing:78.686933pt;}
.ws70{word-spacing:78.688000pt;}
.ws2a{word-spacing:79.154133pt;}
.ws6e{word-spacing:97.742933pt;}
.ws2d{word-spacing:103.727467pt;}
.ws2e{word-spacing:122.668800pt;}
.ws6d{word-spacing:128.846933pt;}
.ws6a{word-spacing:130.667200pt;}
.ws37{word-spacing:147.739733pt;}
.ws32{word-spacing:150.905600pt;}
.ws72{word-spacing:158.228267pt;}
.ws34{word-spacing:233.035200pt;}
.ws31{word-spacing:264.478400pt;}
.ws2f{word-spacing:318.384000pt;}
.ws35{word-spacing:321.669333pt;}
.ws38{word-spacing:371.061333pt;}
.ws6f{word-spacing:404.797333pt;}
.ws2c{word-spacing:536.132267pt;}
.ws36{word-spacing:576.302933pt;}
.ws73{word-spacing:1399.090133pt;}
._31{margin-left:-13.822400pt;}
._25{margin-left:-12.712533pt;}
._32{margin-left:-8.140800pt;}
._b{margin-left:-6.069333pt;}
._1{margin-left:-4.256000pt;}
._c{margin-left:-3.364800pt;}
._2{margin-left:-2.464000pt;}
._4{margin-left:-1.008000pt;}
._5{width:0.912000pt;}
._8{width:1.930133pt;}
._6{width:2.950933pt;}
._7{width:4.441067pt;}
._9{width:5.412800pt;}
._a{width:6.936533pt;}
._24{width:8.038933pt;}
._2f{width:9.299733pt;}
._35{width:11.827200pt;}
._3{width:13.264000pt;}
._0{width:14.560000pt;}
._33{width:19.882133pt;}
._34{width:21.053867pt;}
._30{width:32.298667pt;}
._2a{width:43.940800pt;}
._29{width:45.444267pt;}
._f{width:46.766400pt;}
._d{width:50.542400pt;}
._13{width:51.525333pt;}
._2e{width:54.464000pt;}
._10{width:62.507733pt;}
._23{width:69.395733pt;}
._1a{width:79.340267pt;}
._2c{width:83.388267pt;}
._12{width:88.487467pt;}
._2b{width:100.762667pt;}
._22{width:103.014400pt;}
._e{width:107.968533pt;}
._14{width:112.347733pt;}
._1e{width:127.536000pt;}
._27{width:129.307200pt;}
._11{width:138.549333pt;}
._28{width:147.600533pt;}
._16{width:156.322667pt;}
._21{width:158.410667pt;}
._1b{width:166.163733pt;}
._17{width:188.165333pt;}
._18{width:192.350400pt;}
._2d{width:200.545067pt;}
._26{width:206.520000pt;}
._1f{width:212.245333pt;}
._20{width:213.962667pt;}
._19{width:239.614400pt;}
._15{width:280.042667pt;}
._1c{width:371.429867pt;}
._1d{width:620.031467pt;}
.fsa{font-size:27.984000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs3{font-size:118.909867pt;}
.fs0{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:22.186533pt;}
.y2ad{bottom:75.590667pt;}
.y3b0{bottom:79.163467pt;}
.y175{bottom:79.583467pt;}
.y34e{bottom:80.761600pt;}
.y151{bottom:80.906267pt;}
.y38c{bottom:81.347200pt;}
.y1e3{bottom:82.041200pt;}
.y27f{bottom:83.572933pt;}
.y30c{bottom:85.798533pt;}
.y262{bottom:87.352400pt;}
.y1e1{bottom:88.041200pt;}
.y2df{bottom:88.465200pt;}
.y208{bottom:88.782533pt;}
.y367{bottom:89.809067pt;}
.ye7{bottom:92.705067pt;}
.y237{bottom:92.793067pt;}
.y5f{bottom:93.189733pt;}
.y1e0{bottom:94.041200pt;}
.y227{bottom:95.562400pt;}
.y8b{bottom:96.906267pt;}
.y3af{bottom:97.830133pt;}
.y174{bottom:98.250133pt;}
.y34d{bottom:99.428267pt;}
.y38b{bottom:100.013867pt;}
.y27e{bottom:102.239600pt;}
.ye9{bottom:103.707733pt;}
.y2be{bottom:104.465200pt;}
.y261{bottom:106.019067pt;}
.y1e2{bottom:106.041200pt;}
.y2de{bottom:107.131867pt;}
.ye6{bottom:107.151333pt;}
.y207{bottom:107.449200pt;}
.y366{bottom:108.475733pt;}
.y2ac{bottom:109.626400pt;}
.y328{bottom:110.997867pt;}
.y236{bottom:111.459733pt;}
.y5e{bottom:111.856400pt;}
.y133{bottom:112.024267pt;}
.y150{bottom:112.906267pt;}
.y226{bottom:114.229067pt;}
.ye3{bottom:114.374400pt;}
.y3ae{bottom:116.496800pt;}
.y173{bottom:116.916800pt;}
.y34c{bottom:118.094933pt;}
.y38a{bottom:118.680533pt;}
.y27d{bottom:120.906267pt;}
.ye5{bottom:121.597467pt;}
.y8a{bottom:123.131867pt;}
.y1df{bottom:123.978533pt;}
.y260{bottom:124.685733pt;}
.ye8{bottom:125.041067pt;}
.y2dd{bottom:125.798533pt;}
.y206{bottom:126.115867pt;}
.y365{bottom:127.142400pt;}
.y2ab{bottom:128.293067pt;}
.y30{bottom:128.850000pt;}
.y14f{bottom:128.906267pt;}
.y327{bottom:129.664533pt;}
.y1db{bottom:129.978533pt;}
.y116{bottom:130.126400pt;}
.y5d{bottom:130.523067pt;}
.y132{bottom:130.690933pt;}
.y225{bottom:132.895733pt;}
.y2fd{bottom:134.067333pt;}
.y3ad{bottom:135.163467pt;}
.y172{bottom:135.583467pt;}
.y1de{bottom:135.978533pt;}
.ye4{bottom:136.043733pt;}
.y389{bottom:137.347200pt;}
.y27c{bottom:139.572933pt;}
.y89{bottom:141.798533pt;}
.y1d9{bottom:141.978533pt;}
.y25f{bottom:143.352400pt;}
.y205{bottom:144.782533pt;}
.y2aa{bottom:146.959733pt;}
.y2f{bottom:147.516667pt;}
.y1dd{bottom:147.978533pt;}
.y326{bottom:148.331200pt;}
.y115{bottom:148.793067pt;}
.y5c{bottom:149.189733pt;}
.y131{bottom:149.357600pt;}
.y34b{bottom:151.879600pt;}
.y2dc{bottom:152.024267pt;}
.y2fc{bottom:152.734000pt;}
.y364{bottom:153.368133pt;}
.y3ac{bottom:153.830133pt;}
.y1da{bottom:153.978533pt;}
.ye1{bottom:153.980933pt;}
.y171{bottom:154.250133pt;}
.y388{bottom:156.013867pt;}
.y27b{bottom:158.239600pt;}
.y1dc{bottom:159.978533pt;}
.y2bd{bottom:160.465200pt;}
.y14e{bottom:160.906267pt;}
.ydf{bottom:161.204133pt;}
.y25e{bottom:162.019067pt;}
.ye2{bottom:163.093867pt;}
.y2a9{bottom:165.626400pt;}
.y2e{bottom:166.183333pt;}
.y224{bottom:166.680533pt;}
.y325{bottom:166.997867pt;}
.y114{bottom:167.459733pt;}
.y5b{bottom:167.856400pt;}
.y34a{bottom:167.879600pt;}
.y88{bottom:168.024267pt;}
.yde{bottom:168.427200pt;}
.y2db{bottom:170.690933pt;}
.y204{bottom:171.008267pt;}
.y2fb{bottom:171.400667pt;}
.y363{bottom:172.034800pt;}
.y3ab{bottom:172.496800pt;}
.y170{bottom:172.916800pt;}
.y387{bottom:174.680533pt;}
.y14d{bottom:176.906267pt;}
.y1d8{bottom:177.915733pt;}
.y2bc{bottom:179.131867pt;}
.y25d{bottom:180.685733pt;}
.y223{bottom:182.680533pt;}
.ye0{bottom:182.873333pt;}
.y349{bottom:183.879600pt;}
.y2a8{bottom:184.293067pt;}
.y2d{bottom:184.850000pt;}
.y324{bottom:185.664533pt;}
.y113{bottom:186.126400pt;}
.y5a{bottom:186.523067pt;}
.y87{bottom:186.690933pt;}
.y2da{bottom:189.357600pt;}
.y203{bottom:189.674933pt;}
.y1d6{bottom:189.915733pt;}
.y2fa{bottom:190.067333pt;}
.y362{bottom:190.701467pt;}
.y3aa{bottom:191.163467pt;}
.y16f{bottom:191.583467pt;}
.y14c{bottom:192.906267pt;}
.y386{bottom:193.347200pt;}
.y27a{bottom:195.572933pt;}
.y30b{bottom:197.798533pt;}
.y222{bottom:198.680533pt;}
.ydd{bottom:200.810667pt;}
.y1d7{bottom:201.915733pt;}
.y2a7{bottom:202.959733pt;}
.y2c{bottom:203.516667pt;}
.y323{bottom:204.331200pt;}
.y112{bottom:204.793067pt;}
.y59{bottom:205.189733pt;}
.y86{bottom:205.357600pt;}
.ydb{bottom:206.144000pt;}
.y25c{bottom:206.911467pt;}
.y202{bottom:208.341600pt;}
.y235{bottom:208.572533pt;}
.y2f9{bottom:208.734000pt;}
.y361{bottom:209.368133pt;}
.y3a9{bottom:209.830133pt;}
.yda{bottom:211.477333pt;}
.y385{bottom:212.013867pt;}
.y348{bottom:214.997867pt;}
.y2d9{bottom:215.583467pt;}
.y30a{bottom:216.465200pt;}
.y16e{bottom:217.809067pt;}
.y1d5{bottom:220.229467pt;}
.yc{bottom:221.784800pt;}
.y279{bottom:221.798533pt;}
.ydc{bottom:222.144000pt;}
.y322{bottom:222.997867pt;}
.y111{bottom:223.459733pt;}
.y58{bottom:223.856400pt;}
.y85{bottom:224.024267pt;}
.y25b{bottom:225.578133pt;}
.y1d3{bottom:226.229467pt;}
.y201{bottom:227.008267pt;}
.y234{bottom:227.239200pt;}
.y2f8{bottom:227.400667pt;}
.y360{bottom:228.034800pt;}
.y2a6{bottom:229.185333pt;}
.y2b{bottom:229.742267pt;}
.y221{bottom:229.798533pt;}
.y384{bottom:230.680533pt;}
.y1d2{bottom:232.229467pt;}
.y347{bottom:233.664533pt;}
.y2d8{bottom:234.250133pt;}
.y3a8{bottom:236.055867pt;}
.y16d{bottom:236.475733pt;}
.yd8{bottom:240.081200pt;}
.yb{bottom:240.230933pt;}
.y278{bottom:240.465200pt;}
.y321{bottom:241.664533pt;}
.y110{bottom:242.126400pt;}
.y57{bottom:242.523067pt;}
.y84{bottom:242.690933pt;}
.y1d4{bottom:244.229467pt;}
.y25a{bottom:244.244800pt;}
.y200{bottom:245.674933pt;}
.y233{bottom:245.905867pt;}
.y2f7{bottom:246.067333pt;}
.y35f{bottom:246.701467pt;}
.y2a5{bottom:247.852000pt;}
.y2a{bottom:248.408933pt;}
.y220{bottom:248.465200pt;}
.y383{bottom:249.347200pt;}
.y346{bottom:252.331200pt;}
.y2d7{bottom:252.916800pt;}
.yd7{bottom:254.527467pt;}
.y3a7{bottom:254.722533pt;}
.y16c{bottom:255.142400pt;}
.yd9{bottom:256.417200pt;}
.ya{bottom:258.677200pt;}
.y277{bottom:259.131867pt;}
.y56{bottom:261.189733pt;}
.y83{bottom:261.357600pt;}
.yd4{bottom:261.750533pt;}
.y1d1{bottom:262.543200pt;}
.y259{bottom:262.911467pt;}
.y232{bottom:264.572533pt;}
.y2f6{bottom:264.734000pt;}
.y35e{bottom:265.368133pt;}
.y2a4{bottom:266.518667pt;}
.y29{bottom:267.075600pt;}
.y21f{bottom:267.131867pt;}
.y320{bottom:267.890133pt;}
.y382{bottom:268.013867pt;}
.y10f{bottom:268.352133pt;}
.yd6{bottom:268.973600pt;}
.y345{bottom:270.997867pt;}
.y2d6{bottom:271.583467pt;}
.y1ff{bottom:271.900667pt;}
.y3a6{bottom:273.389200pt;}
.y16b{bottom:273.809067pt;}
.y1d0{bottom:274.543200pt;}
.y9{bottom:277.123333pt;}
.y276{bottom:277.798533pt;}
.y55{bottom:279.856400pt;}
.y82{bottom:280.024267pt;}
.y1cc{bottom:280.543200pt;}
.y231{bottom:283.239200pt;}
.y2f5{bottom:283.400667pt;}
.yd5{bottom:283.419867pt;}
.y2a3{bottom:285.185333pt;}
.y28{bottom:285.742267pt;}
.y21e{bottom:285.798533pt;}
.y1cb{bottom:286.543200pt;}
.y381{bottom:286.680533pt;}
.y10e{bottom:287.018800pt;}
.y130{bottom:287.583467pt;}
.y258{bottom:289.137200pt;}
.y344{bottom:289.664533pt;}
.y2d5{bottom:290.250133pt;}
.y1fe{bottom:290.567333pt;}
.y35d{bottom:291.593867pt;}
.y3a5{bottom:292.055867pt;}
.y16a{bottom:292.475733pt;}
.y1cd{bottom:292.543200pt;}
.y8{bottom:295.569600pt;}
.y275{bottom:296.465200pt;}
.y54{bottom:298.523067pt;}
.y1cf{bottom:298.543200pt;}
.y81{bottom:298.690933pt;}
.yd3{bottom:301.357067pt;}
.y230{bottom:301.905867pt;}
.y2f4{bottom:302.067333pt;}
.y2a2{bottom:303.852000pt;}
.y27{bottom:304.408933pt;}
.yd1{bottom:304.800667pt;}
.y10d{bottom:305.685467pt;}
.y12f{bottom:306.250133pt;}
.y257{bottom:307.803867pt;}
.y343{bottom:308.331200pt;}
.y2d4{bottom:308.916800pt;}
.y1fd{bottom:309.234000pt;}
.y35c{bottom:310.260533pt;}
.y1ce{bottom:310.543200pt;}
.y3a4{bottom:310.722533pt;}
.y169{bottom:311.142400pt;}
.yd0{bottom:312.023733pt;}
.y21d{bottom:312.024267pt;}
.y380{bottom:312.906267pt;}
.y7{bottom:314.015733pt;}
.y53{bottom:317.189733pt;}
.y80{bottom:317.357600pt;}
.y22f{bottom:320.572533pt;}
.y2a1{bottom:322.518667pt;}
.yd2{bottom:322.690400pt;}
.y274{bottom:322.690933pt;}
.y10c{bottom:324.352133pt;}
.y12e{bottom:324.916800pt;}
.y256{bottom:326.470533pt;}
.y2d3{bottom:327.583467pt;}
.y1fc{bottom:327.900667pt;}
.y1c9{bottom:328.480533pt;}
.y35b{bottom:328.927200pt;}
.y3a3{bottom:329.389200pt;}
.y168{bottom:329.809067pt;}
.y26{bottom:330.634667pt;}
.y21c{bottom:330.690933pt;}
.y37f{bottom:331.572933pt;}
.ye{bottom:332.107867pt;}
.y1ca{bottom:334.480533pt;}
.y342{bottom:334.556800pt;}
.y2f3{bottom:335.852133pt;}
.y52{bottom:335.856400pt;}
.y309{bottom:336.024267pt;}
.y22e{bottom:339.239200pt;}
.y1c7{bottom:340.480533pt;}
.ycd{bottom:340.627600pt;}
.y273{bottom:341.357600pt;}
.y10b{bottom:343.018800pt;}
.y7f{bottom:343.583467pt;}
.y255{bottom:345.137200pt;}
.yca{bottom:345.960933pt;}
.y2d2{bottom:346.250133pt;}
.y31f{bottom:346.567333pt;}
.y35a{bottom:347.593867pt;}
.ycf{bottom:347.850800pt;}
.y3a2{bottom:348.055867pt;}
.y2a0{bottom:348.744400pt;}
.y25{bottom:349.301333pt;}
.y21b{bottom:349.357600pt;}
.ycc{bottom:351.294267pt;}
.y2f2{bottom:351.852133pt;}
.y1c8{bottom:352.480533pt;}
.yc9{bottom:353.184133pt;}
.y341{bottom:353.223467pt;}
.y1fb{bottom:354.126400pt;}
.y51{bottom:354.523067pt;}
.y308{bottom:354.690933pt;}
.y167{bottom:356.034800pt;}
.yd{bottom:356.916933pt;}
.y37e{bottom:357.798667pt;}
.y22d{bottom:357.905867pt;}
.yce{bottom:358.517467pt;}
.y272{bottom:360.024267pt;}
.y10a{bottom:361.685467pt;}
.y7e{bottom:362.250133pt;}
.y254{bottom:363.803867pt;}
.y2d1{bottom:364.916800pt;}
.y31e{bottom:365.234000pt;}
.ycb{bottom:365.740533pt;}
.y359{bottom:366.260533pt;}
.y3a1{bottom:366.722533pt;}
.y29f{bottom:367.411067pt;}
.y2f1{bottom:367.852133pt;}
.y24{bottom:367.968000pt;}
.y21a{bottom:368.024267pt;}
.y1c6{bottom:370.417733pt;}
.y340{bottom:371.890133pt;}
.y1fa{bottom:372.793067pt;}
.y166{bottom:374.701467pt;}
.y37d{bottom:376.465333pt;}
.y22c{bottom:376.572533pt;}
.y109{bottom:380.352133pt;}
.y50{bottom:380.748800pt;}
.y7d{bottom:380.916800pt;}
.y1c5{bottom:382.417733pt;}
.y253{bottom:382.470533pt;}
.y2d0{bottom:383.583467pt;}
.yc1{bottom:383.677733pt;}
.y2f0{bottom:383.852133pt;}
.y31d{bottom:383.900667pt;}
.y358{bottom:384.927200pt;}
.y3a0{bottom:385.389200pt;}
.y29e{bottom:386.077733pt;}
.y23{bottom:386.634667pt;}
.y219{bottom:386.690933pt;}
.y33f{bottom:390.556800pt;}
.yc3{bottom:390.900933pt;}
.y1f9{bottom:391.459733pt;}
.yc6{bottom:392.790667pt;}
.y165{bottom:393.368133pt;}
.y271{bottom:393.809067pt;}
.y1c4{bottom:394.417733pt;}
.y37c{bottom:395.132000pt;}
.y22b{bottom:395.239200pt;}
.yc0{bottom:398.124000pt;}
.y108{bottom:399.018800pt;}
.y4f{bottom:399.415467pt;}
.y7c{bottom:399.583467pt;}
.y2ef{bottom:399.852133pt;}
.yc8{bottom:400.013733pt;}
.y252{bottom:401.137200pt;}
.y2cf{bottom:402.250133pt;}
.y31c{bottom:402.567333pt;}
.yc5{bottom:403.457333pt;}
.y357{bottom:403.593867pt;}
.y39f{bottom:404.055867pt;}
.y29d{bottom:404.744400pt;}
.y22{bottom:405.301333pt;}
.ybd{bottom:405.347067pt;}
.y1c0{bottom:406.417733pt;}
.y12d{bottom:407.142400pt;}
.y270{bottom:409.809067pt;}
.y1f8{bottom:410.126400pt;}
.yc7{bottom:410.680400pt;}
.y164{bottom:412.034800pt;}
.y1bc{bottom:412.417733pt;}
.ybf{bottom:412.570133pt;}
.y37b{bottom:413.798667pt;}
.y2ee{bottom:415.852133pt;}
.y33e{bottom:416.782533pt;}
.y22a{bottom:417.685467pt;}
.yc4{bottom:417.903467pt;}
.y4e{bottom:418.082133pt;}
.y7b{bottom:418.250133pt;}
.y1c3{bottom:418.417733pt;}
.yc2{bottom:419.793200pt;}
.y251{bottom:419.803867pt;}
.y218{bottom:420.475733pt;}
.y2ce{bottom:420.916800pt;}
.y31b{bottom:421.234000pt;}
.y356{bottom:422.260533pt;}
.y39e{bottom:422.722533pt;}
.y21{bottom:423.968000pt;}
.y1bb{bottom:424.417733pt;}
.y107{bottom:425.244533pt;}
.y14b{bottom:425.809067pt;}
.ybe{bottom:427.016400pt;}
.y1b8{bottom:430.417733pt;}
.y163{bottom:430.701467pt;}
.y2ed{bottom:431.852133pt;}
.y37a{bottom:432.465333pt;}
.y33d{bottom:435.449200pt;}
.y1f7{bottom:436.352133pt;}
.y1ba{bottom:436.417733pt;}
.y217{bottom:436.475733pt;}
.y7a{bottom:436.916800pt;}
.y250{bottom:438.470533pt;}
.y29c{bottom:438.529200pt;}
.y2cd{bottom:439.583467pt;}
.y31a{bottom:439.900667pt;}
.y39d{bottom:441.389200pt;}
.y1bf{bottom:442.417733pt;}
.y106{bottom:443.911200pt;}
.y4d{bottom:444.307867pt;}
.y14a{bottom:444.475733pt;}
.ybc{bottom:444.953600pt;}
.y1b9{bottom:448.417733pt;}
.y12c{bottom:448.486267pt;}
.y162{bottom:449.368133pt;}
.y20{bottom:450.193733pt;}
.ybb{bottom:450.286933pt;}
.y379{bottom:451.132000pt;}
.y33c{bottom:454.115867pt;}
.y1be{bottom:454.417733pt;}
.y29b{bottom:454.529200pt;}
.y1f6{bottom:455.018800pt;}
.y79{bottom:455.583467pt;}
.y26f{bottom:456.927200pt;}
.y319{bottom:458.567333pt;}
.y39c{bottom:460.055867pt;}
.y105{bottom:462.577867pt;}
.y2ec{bottom:462.970267pt;}
.y4c{bottom:462.974533pt;}
.y149{bottom:463.142400pt;}
.y24f{bottom:464.696267pt;}
.y1c2{bottom:466.417733pt;}
.y12b{bottom:467.152933pt;}
.y216{bottom:467.593867pt;}
.y161{bottom:468.034800pt;}
.y1f{bottom:468.860400pt;}
.y378{bottom:469.798667pt;}
.y29a{bottom:470.529200pt;}
.y2cc{bottom:473.368133pt;}
.yb9{bottom:473.557600pt;}
.y1f5{bottom:473.685467pt;}
.y78{bottom:474.250133pt;}
.y26e{bottom:475.593867pt;}
.y33b{bottom:476.562133pt;}
.y1c1{bottom:478.417733pt;}
.y39b{bottom:478.722533pt;}
.y104{bottom:481.244533pt;}
.y2eb{bottom:481.636933pt;}
.y4b{bottom:481.641200pt;}
.y148{bottom:481.809067pt;}
.y24e{bottom:483.362933pt;}
.y318{bottom:484.793067pt;}
.y12a{bottom:485.819600pt;}
.y215{bottom:486.260533pt;}
.y299{bottom:486.529200pt;}
.y160{bottom:486.701467pt;}
.y1e{bottom:487.527067pt;}
.yb8{bottom:488.003733pt;}
.y377{bottom:488.465333pt;}
.y2cb{bottom:489.368133pt;}
.yba{bottom:489.893467pt;}
.y1bd{bottom:490.417733pt;}
.y229{bottom:492.352133pt;}
.y77{bottom:492.916800pt;}
.y26d{bottom:494.260533pt;}
.yb5{bottom:495.226800pt;}
.y33a{bottom:495.228800pt;}
.y3d2{bottom:496.282933pt;}
.y39a{bottom:497.389200pt;}
.y1f4{bottom:499.911200pt;}
.y2ea{bottom:500.303600pt;}
.y4a{bottom:500.307867pt;}
.y147{bottom:500.475733pt;}
.y24d{bottom:502.029600pt;}
.yb7{bottom:502.449867pt;}
.y298{bottom:502.529200pt;}
.y317{bottom:503.459733pt;}
.y129{bottom:504.486267pt;}
.y214{bottom:504.927200pt;}
.y15f{bottom:505.368133pt;}
.y376{bottom:507.132000pt;}
.y103{bottom:507.470267pt;}
.y186{bottom:508.034800pt;}
.y1b6{bottom:508.354933pt;}
.y3d1{bottom:509.616267pt;}
.y228{bottom:511.018800pt;}
.y76{bottom:511.583467pt;}
.y26c{bottom:512.927200pt;}
.y1d{bottom:513.752800pt;}
.y1b5{bottom:514.354933pt;}
.y399{bottom:516.055867pt;}
.yb6{bottom:516.896133pt;}
.y339{bottom:517.674933pt;}
.y297{bottom:518.529200pt;}
.y1f3{bottom:518.577867pt;}
.y2e9{bottom:518.970267pt;}
.y49{bottom:518.974533pt;}
.y2bb{bottom:519.142400pt;}
.y1b7{bottom:520.354933pt;}
.y24c{bottom:520.696267pt;}
.y2ca{bottom:521.368133pt;}
.y316{bottom:522.126400pt;}
.y3d0{bottom:522.949600pt;}
.y128{bottom:523.152933pt;}
.y213{bottom:523.593867pt;}
.y15e{bottom:524.034800pt;}
.y102{bottom:526.136933pt;}
.y146{bottom:526.701467pt;}
.y75{bottom:530.250133pt;}
.y1c{bottom:532.419467pt;}
.y375{bottom:533.357600pt;}
.y398{bottom:534.722533pt;}
.y338{bottom:536.341600pt;}
.yb4{bottom:536.664667pt;}
.y1f2{bottom:537.244533pt;}
.y2e8{bottom:537.636933pt;}
.y48{bottom:537.641200pt;}
.y2ba{bottom:537.809067pt;}
.y1b3{bottom:538.292267pt;}
.y26b{bottom:539.152933pt;}
.y24b{bottom:539.362933pt;}
.y3cf{bottom:540.062533pt;}
.y315{bottom:540.793067pt;}
.y307{bottom:541.819600pt;}
.y212{bottom:542.260533pt;}
.y1b2{bottom:544.292267pt;}
.y101{bottom:544.803600pt;}
.y145{bottom:545.368133pt;}
.y74{bottom:548.916800pt;}
.y127{bottom:549.378667pt;}
.y296{bottom:549.647333pt;}
.y1b4{bottom:550.292267pt;}
.y1b{bottom:551.086133pt;}
.y374{bottom:552.024267pt;}
.y2c9{bottom:552.486267pt;}
.y397{bottom:553.389200pt;}
.y337{bottom:555.008267pt;}
.y1f1{bottom:555.911200pt;}
.y2e7{bottom:556.303600pt;}
.y47{bottom:556.307867pt;}
.yb2{bottom:556.433333pt;}
.y2b9{bottom:556.475733pt;}
.y3ce{bottom:557.175333pt;}
.y15d{bottom:557.819600pt;}
.y24a{bottom:558.029600pt;}
.y314{bottom:559.459733pt;}
.y306{bottom:560.486267pt;}
.y211{bottom:560.927200pt;}
.y144{bottom:564.034800pt;}
.y185{bottom:564.496800pt;}
.yb3{bottom:565.546267pt;}
.y126{bottom:568.045333pt;}
.y1b0{bottom:568.229467pt;}
.y295{bottom:568.314000pt;}
.y1a{bottom:569.752800pt;}
.y3cd{bottom:570.508667pt;}
.y373{bottom:570.690933pt;}
.yb0{bottom:570.879600pt;}
.y100{bottom:571.029200pt;}
.y2c8{bottom:571.152933pt;}
.y396{bottom:572.055867pt;}
.y15c{bottom:573.819600pt;}
.y1af{bottom:574.229467pt;}
.y1f0{bottom:574.577867pt;}
.y2e6{bottom:574.970267pt;}
.y46{bottom:574.974533pt;}
.y73{bottom:575.142400pt;}
.y26a{bottom:576.486267pt;}
.y249{bottom:576.696267pt;}
.y313{bottom:578.126400pt;}
.y305{bottom:579.152933pt;}
.y210{bottom:579.593867pt;}
.y1b1{bottom:580.229467pt;}
.y336{bottom:581.234000pt;}
.y143{bottom:582.701467pt;}
.y184{bottom:583.163467pt;}
.y3cc{bottom:583.842000pt;}
.yb1{bottom:585.325733pt;}
.y125{bottom:586.712000pt;}
.y294{bottom:586.980667pt;}
.y19{bottom:588.419467pt;}
.y372{bottom:589.357600pt;}
.yff{bottom:589.695867pt;}
.y15b{bottom:589.819600pt;}
.y2b8{bottom:590.260533pt;}
.y395{bottom:590.722533pt;}
.y1ef{bottom:593.244533pt;}
.y2e5{bottom:593.636933pt;}
.y72{bottom:593.809067pt;}
.y269{bottom:595.152933pt;}
.y248{bottom:595.362933pt;}
.y312{bottom:596.793067pt;}
.y304{bottom:597.819600pt;}
.y1ad{bottom:598.166800pt;}
.y335{bottom:599.900667pt;}
.y3cb{bottom:600.954933pt;}
.y45{bottom:601.200267pt;}
.y142{bottom:601.368133pt;}
.y183{bottom:601.830133pt;}
.yaf{bottom:603.263067pt;}
.y1ac{bottom:604.166800pt;}
.y355{bottom:605.378667pt;}
.y293{bottom:605.647333pt;}
.y15a{bottom:605.819600pt;}
.y2b7{bottom:606.260533pt;}
.y18{bottom:607.086133pt;}
.y371{bottom:608.024267pt;}
.yfe{bottom:608.362533pt;}
.y2c7{bottom:608.486267pt;}
.y394{bottom:609.389200pt;}
.y1ae{bottom:610.166800pt;}
.y71{bottom:612.475733pt;}
.y124{bottom:612.937733pt;}
.y268{bottom:613.819600pt;}
.y3ca{bottom:614.288267pt;}
.y311{bottom:615.459733pt;}
.yad{bottom:617.709200pt;}
.y334{bottom:618.567333pt;}
.y1ee{bottom:619.470267pt;}
.y44{bottom:619.866933pt;}
.y182{bottom:620.496800pt;}
.y247{bottom:621.588667pt;}
.y2b6{bottom:622.260533pt;}
.y303{bottom:624.045333pt;}
.y292{bottom:624.314000pt;}
.y20f{bottom:624.486267pt;}
.y17{bottom:625.752800pt;}
.y370{bottom:626.690933pt;}
.yfd{bottom:627.029200pt;}
.y2c6{bottom:627.152933pt;}
.y2e4{bottom:627.421600pt;}
.y3b2{bottom:628.055867pt;}
.y1a9{bottom:628.104000pt;}
.y70{bottom:631.142400pt;}
.y3c9{bottom:631.401067pt;}
.y123{bottom:631.604400pt;}
.yae{bottom:632.155333pt;}
.y1aa{bottom:634.104000pt;}
.y310{bottom:634.126400pt;}
.y141{bottom:635.152933pt;}
.y393{bottom:635.614933pt;}
.y159{bottom:636.937733pt;}
.y333{bottom:637.234000pt;}
.y1ed{bottom:638.136933pt;}
.y2b5{bottom:638.260533pt;}
.y43{bottom:638.533600pt;}
.y181{bottom:639.163467pt;}
.y1a7{bottom:640.104000pt;}
.y302{bottom:642.712000pt;}
.y291{bottom:642.980667pt;}
.y20e{bottom:643.152933pt;}
.y16{bottom:644.419467pt;}
.y36f{bottom:645.357600pt;}
.yfc{bottom:645.695867pt;}
.y2c5{bottom:645.819600pt;}
.y1ab{bottom:646.104000pt;}
.y3b1{bottom:646.722533pt;}
.y267{bottom:647.604400pt;}
.y3c8{bottom:648.514000pt;}
.y6f{bottom:649.809067pt;}
.yac{bottom:650.092667pt;}
.y140{bottom:651.152933pt;}
.y1a8{bottom:652.104000pt;}
.y30f{bottom:652.793067pt;}
.y2b4{bottom:654.260533pt;}
.y392{bottom:654.281600pt;}
.y158{bottom:655.604400pt;}
.y1ec{bottom:656.803600pt;}
.y42{bottom:657.200267pt;}
.y122{bottom:657.830133pt;}
.y301{bottom:661.378667pt;}
.y3c7{bottom:661.847333pt;}
.y246{bottom:662.932533pt;}
.y15{bottom:663.086133pt;}
.y266{bottom:663.604400pt;}
.y36e{bottom:664.024267pt;}
.yfb{bottom:664.362533pt;}
.yaa{bottom:664.538800pt;}
.y180{bottom:665.389200pt;}
.y13f{bottom:667.152933pt;}
.y6e{bottom:668.475733pt;}
.y1a6{bottom:670.041200pt;}
.y2b3{bottom:670.260533pt;}
.y332{bottom:671.018800pt;}
.y2c4{bottom:672.045333pt;}
.y391{bottom:672.948267pt;}
.y157{bottom:674.271067pt;}
.y1eb{bottom:675.470267pt;}
.y1a4{bottom:676.041200pt;}
.y121{bottom:676.496800pt;}
.y290{bottom:676.765467pt;}
.y20d{bottom:676.937733pt;}
.y3c6{bottom:678.960133pt;}
.yab{bottom:678.985067pt;}
.y30e{bottom:679.018800pt;}
.y265{bottom:679.604400pt;}
.y300{bottom:680.045333pt;}
.y245{bottom:681.599067pt;}
.y14{bottom:681.752800pt;}
.y1a3{bottom:682.041200pt;}
.y36d{bottom:682.690933pt;}
.yfa{bottom:683.029333pt;}
.y13e{bottom:683.152933pt;}
.y41{bottom:683.426000pt;}
.y2e3{bottom:683.883600pt;}
.y17f{bottom:684.055867pt;}
.y2b2{bottom:686.260533pt;}
.y331{bottom:687.018800pt;}
.y2c3{bottom:690.712000pt;}
.y390{bottom:691.614933pt;}
.y3c5{bottom:692.293467pt;}
.y28f{bottom:692.765467pt;}
.y156{bottom:692.937733pt;}
.y1a5{bottom:694.041200pt;}
.y1ea{bottom:694.136933pt;}
.y6d{bottom:694.701467pt;}
.y120{bottom:695.163467pt;}
.y264{bottom:695.604400pt;}
.ya8{bottom:696.922267pt;}
.y2ff{bottom:698.712000pt;}
.y13d{bottom:699.152933pt;}
.y244{bottom:700.265733pt;}
.y13{bottom:700.419467pt;}
.yf9{bottom:701.696000pt;}
.y40{bottom:702.092667pt;}
.y2e2{bottom:702.550267pt;}
.y17e{bottom:702.722533pt;}
.y330{bottom:703.018800pt;}
.ya9{bottom:706.035200pt;}
.y354{bottom:706.271067pt;}
.y28e{bottom:708.765467pt;}
.y20c{bottom:708.937733pt;}
.y3c4{bottom:709.406267pt;}
.y38f{bottom:710.281600pt;}
.ya6{bottom:711.368533pt;}
.y155{bottom:711.604400pt;}
.y1a2{bottom:711.978533pt;}
.y6c{bottom:713.368133pt;}
.y11f{bottom:713.830133pt;}
.y36c{bottom:716.475733pt;}
.y2b1{bottom:717.378667pt;}
.y1a0{bottom:717.978533pt;}
.y243{bottom:718.932400pt;}
.y32f{bottom:719.018800pt;}
.yf8{bottom:720.362667pt;}
.y3f{bottom:720.759333pt;}
.y2e1{bottom:721.216933pt;}
.y17d{bottom:721.389200pt;}
.y3c3{bottom:722.739600pt;}
.y19f{bottom:723.978533pt;}
.y6{bottom:724.363067pt;}
.y2c2{bottom:724.496800pt;}
.y353{bottom:724.937733pt;}
.ya7{bottom:725.814667pt;}
.y263{bottom:727.604400pt;}
.y38e{bottom:728.948267pt;}
.y13c{bottom:730.271067pt;}
.y6b{bottom:732.034800pt;}
.y1a1{bottom:735.978533pt;}
.y2b0{bottom:736.045333pt;}
.y242{bottom:737.599067pt;}
.yf7{bottom:739.029333pt;}
.y3e{bottom:739.426000pt;}
.y3c2{bottom:739.852533pt;}
.y28d{bottom:739.883600pt;}
.y11e{bottom:740.055867pt;}
.y2c1{bottom:740.496800pt;}
.y2fe{bottom:743.604400pt;}
.ya2{bottom:743.751867pt;}
.ya5{bottom:747.531467pt;}
.y38d{bottom:747.614933pt;}
.y13b{bottom:748.937733pt;}
.y32e{bottom:750.136933pt;}
.y6a{bottom:750.701467pt;}
.ya3{bottom:750.975067pt;}
.y352{bottom:751.163467pt;}
.y3c1{bottom:753.185867pt;}
.y19c{bottom:753.915733pt;}
.y2af{bottom:754.712000pt;}
.y241{bottom:756.265733pt;}
.y2c0{bottom:756.496800pt;}
.yf6{bottom:757.696000pt;}
.y3d{bottom:758.092667pt;}
.ya0{bottom:758.198133pt;}
.y28c{bottom:758.550267pt;}
.y11d{bottom:758.722533pt;}
.y19b{bottom:759.915733pt;}
.y199{bottom:765.915733pt;}
.y17c{bottom:766.281600pt;}
.y13a{bottom:767.604400pt;}
.y32d{bottom:768.803600pt;}
.ya4{bottom:768.864800pt;}
.y69{bottom:769.368133pt;}
.y351{bottom:769.830133pt;}
.y3c0{bottom:770.298800pt;}
.y198{bottom:771.915733pt;}
.y2bf{bottom:772.496800pt;}
.ya1{bottom:772.644267pt;}
.y240{bottom:774.932400pt;}
.y12{bottom:775.548133pt;}
.y1e9{bottom:776.362667pt;}
.y3c{bottom:776.759333pt;}
.y28b{bottom:777.216933pt;}
.y11c{bottom:777.389200pt;}
.y19e{bottom:777.915733pt;}
.y2ae{bottom:780.937733pt;}
.y3bf{bottom:783.632133pt;}
.y19a{bottom:783.915733pt;}
.yf5{bottom:783.921600pt;}
.y17b{bottom:784.948267pt;}
.y139{bottom:786.271067pt;}
.y32c{bottom:787.470267pt;}
.y350{bottom:788.496800pt;}
.y19d{bottom:789.915733pt;}
.y9f{bottom:790.581600pt;}
.y1e8{bottom:795.029333pt;}
.y28a{bottom:795.883600pt;}
.y11b{bottom:796.055867pt;}
.y5{bottom:796.145733pt;}
.y3be{bottom:800.744933pt;}
.yf4{bottom:802.588267pt;}
.y3b{bottom:802.985067pt;}
.y68{bottom:803.152933pt;}
.y17a{bottom:803.614933pt;}
.y138{bottom:804.937733pt;}
.y9d{bottom:805.027733pt;}
.y32b{bottom:806.136933pt;}
.y36b{bottom:806.722533pt;}
.y23f{bottom:808.717333pt;}
.y196{bottom:809.322533pt;}
.y1e7{bottom:813.696000pt;}
.y3bd{bottom:814.078267pt;}
.y289{bottom:814.550267pt;}
.y11a{bottom:814.722533pt;}
.y195{bottom:815.322533pt;}
.y9e{bottom:819.474000pt;}
.yf3{bottom:821.254933pt;}
.y197{bottom:821.322533pt;}
.y3a{bottom:821.651733pt;}
.y179{bottom:822.281600pt;}
.y36a{bottom:822.722533pt;}
.y137{bottom:823.604400pt;}
.y23e{bottom:824.717333pt;}
.y32a{bottom:824.803600pt;}
.y3bc{bottom:831.191200pt;}
.y1e6{bottom:832.362667pt;}
.y288{bottom:833.216933pt;}
.y20b{bottom:833.389200pt;}
.y9c{bottom:837.411200pt;}
.y369{bottom:838.722533pt;}
.yf2{bottom:839.921600pt;}
.y39{bottom:840.318400pt;}
.y194{bottom:840.729333pt;}
.y2e0{bottom:840.776000pt;}
.y99{bottom:840.854800pt;}
.y119{bottom:840.948267pt;}
.y136{bottom:842.271067pt;}
.y3bb{bottom:844.524533pt;}
.y193{bottom:846.729333pt;}
.y98{bottom:848.077867pt;}
.y4{bottom:849.479067pt;}
.y1e5{bottom:851.029333pt;}
.y20a{bottom:852.055867pt;}
.y368{bottom:854.722533pt;}
.y9a{bottom:855.300933pt;}
.y23d{bottom:855.835333pt;}
.yf1{bottom:858.588267pt;}
.y9b{bottom:858.744533pt;}
.y38{bottom:858.985067pt;}
.y287{bottom:859.442667pt;}
.y67{bottom:859.614933pt;}
.y154{bottom:860.937733pt;}
.y3ba{bottom:861.637333pt;}
.y178{bottom:867.174000pt;}
.y1e4{bottom:869.696000pt;}
.y192{bottom:870.666533pt;}
.y23c{bottom:874.502000pt;}
.y3b9{bottom:874.970667pt;}
.y135{bottom:876.055867pt;}
.y96{bottom:876.681867pt;}
.yf0{bottom:877.254933pt;}
.y37{bottom:877.651733pt;}
.y286{bottom:878.109333pt;}
.y66{bottom:878.281600pt;}
.y97{bottom:878.571600pt;}
.y191{bottom:882.666533pt;}
.y95{bottom:883.904933pt;}
.y177{bottom:885.840667pt;}
.y30d{bottom:888.362667pt;}
.y18d{bottom:888.666533pt;}
.y134{bottom:892.055867pt;}
.y3b8{bottom:892.083600pt;}
.y23b{bottom:893.168667pt;}
.y18c{bottom:894.666533pt;}
.y153{bottom:894.722533pt;}
.yef{bottom:895.921600pt;}
.y285{bottom:896.776000pt;}
.y65{bottom:896.948267pt;}
.y18e{bottom:900.666533pt;}
.y3{bottom:902.812400pt;}
.y36{bottom:903.877467pt;}
.y176{bottom:904.507333pt;}
.y3b7{bottom:905.416933pt;}
.y190{bottom:906.666533pt;}
.y329{bottom:907.029333pt;}
.y92{bottom:909.065333pt;}
.y152{bottom:910.722533pt;}
.y23a{bottom:911.835333pt;}
.yee{bottom:914.588267pt;}
.y284{bottom:915.442667pt;}
.y64{bottom:915.614933pt;}
.y18f{bottom:918.666533pt;}
.y3b6{bottom:918.750267pt;}
.y94{bottom:920.068000pt;}
.y35{bottom:922.544133pt;}
.y118{bottom:923.174000pt;}
.y91{bottom:923.511467pt;}
.y8e{bottom:930.734667pt;}
.yed{bottom:933.254933pt;}
.y283{bottom:934.109333pt;}
.y63{bottom:934.281600pt;}
.y3b5{bottom:935.863067pt;}
.y18a{bottom:936.603867pt;}
.y90{bottom:937.957733pt;}
.y239{bottom:938.061067pt;}
.y34{bottom:941.210800pt;}
.y93{bottom:941.401333pt;}
.y117{bottom:941.840667pt;}
.y189{bottom:942.603867pt;}
.y18b{bottom:948.603867pt;}
.y3b4{bottom:949.196400pt;}
.yec{bottom:951.921600pt;}
.y8f{bottom:952.403867pt;}
.y209{bottom:952.948267pt;}
.y2{bottom:956.145733pt;}
.y238{bottom:956.727733pt;}
.y33{bottom:959.877467pt;}
.y62{bottom:960.507333pt;}
.y188{bottom:966.705867pt;}
.y282{bottom:967.894000pt;}
.yeb{bottom:970.588267pt;}
.y34f{bottom:971.614933pt;}
.y8d{bottom:974.605733pt;}
.y32{bottom:978.544133pt;}
.y187{bottom:978.705867pt;}
.y61{bottom:979.174000pt;}
.y281{bottom:983.894000pt;}
.y3b3{bottom:994.760800pt;}
.yea{bottom:996.814000pt;}
.y31{bottom:997.210800pt;}
.y60{bottom:997.840667pt;}
.y280{bottom:999.894000pt;}
.y8c{bottom:1000.920667pt;}
.y1{bottom:1009.479067pt;}
.y11{bottom:1068.718133pt;}
.y10{bottom:1083.118133pt;}
.h7{height:24.467200pt;}
.h16{height:25.984000pt;}
.he{height:33.077333pt;}
.h5{height:36.700800pt;}
.h17{height:38.115556pt;}
.hd{height:38.325333pt;}
.h4{height:42.880000pt;}
.h9{height:42.912000pt;}
.h3{height:47.644444pt;}
.h18{height:50.786462pt;}
.hb{height:52.408889pt;}
.hc{height:52.697333pt;}
.h11{height:54.410667pt;}
.h14{height:57.077333pt;}
.h8{height:57.173333pt;}
.h13{height:57.488000pt;}
.h19{height:59.250872pt;}
.hf{height:61.969600pt;}
.h12{height:61.970133pt;}
.ha{height:67.069333pt;}
.h15{height:81.077333pt;}
.h10{height:83.302933pt;}
.h6{height:97.862820pt;}
.h2{height:200.106667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:25.003467pt;}
.x6{left:75.590533pt;}
.x1f{left:90.730000pt;}
.x1b{left:93.016667pt;}
.x23{left:99.590533pt;}
.x2{left:112.348400pt;}
.x1{left:113.385867pt;}
.x14{left:117.165333pt;}
.x24{left:120.944933pt;}
.x12{left:125.915733pt;}
.xc{left:128.202267pt;}
.x22{left:137.385867pt;}
.x13{left:154.960667pt;}
.xb{left:165.276133pt;}
.x17{left:206.993733pt;}
.x16{left:211.128533pt;}
.xa{left:212.739467pt;}
.x1e{left:215.635200pt;}
.xd{left:224.083733pt;}
.x20{left:227.115067pt;}
.x21{left:231.688267pt;}
.x18{left:258.266800pt;}
.x15{left:261.512000pt;}
.x19{left:313.699867pt;}
.x11{left:319.825200pt;}
.x3{left:383.515200pt;}
.x4{left:387.633733pt;}
.x1a{left:389.290400pt;}
.xe{left:395.599467pt;}
.x1c{left:462.361200pt;}
.x8{left:471.142800pt;}
.xf{left:477.717067pt;}
.x9{left:492.082000pt;}
.x1d{left:568.777867pt;}
.x10{left:599.023733pt;}
.x7{left:743.113733pt;}
}




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