
    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_92c63772622e5ea6fac87160.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.949000;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_18089e08cf532532ab927c89.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918500;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_09716662c5266702c86dbc98.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.943500;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_787b52d585107a53649c90b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088000;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_0b2faa068eebc54ca6fe3b19.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.949000;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_9e479303ea0667b2a8b551cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918500;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_1663512111086b9f9f3125f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910500;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_f853443eb622ca51ca24b4fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918500;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_4ea37dc22069e9e306c26382.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924000;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_7350e12108db1c737f3dcb41.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.744500;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_726ca96010a4a1df79249afe.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.736000;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_cb3bcb81c16c734d11e0dd47.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.732500;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_7e88a84ae460506cee744d21.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.744500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5beb320b9fe65f7d7a9e36d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f5e5b16384c97e25e7dd8e8d.woff2')format("woff");}.fff{font-family:fff;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6ef63c891b5018347648fcca.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_90542e7ca374d46b5bf28453.woff2')format("woff");}.ff11{font-family:ff11;line-height:3.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_efd5c9f661d502fe00695718.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.558000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_adc958998244db414af800cd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.912000;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:ff14;src:url('chunks/assets/font_f5e5b16384c97e25e7dd8e8d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.948000;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:ff15;src:url('chunks/assets/font_9307c1e9637b0b2a9cede7ed.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.932000;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:ff16;src:url('chunks/assets/font_c26c36909db13533971a24f4.woff2')format("woff");}.ff16{font-family:ff16;line-height:3.075000;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:ff17;src:url('chunks/assets/font_f0a47dba2c8bc259dac48e69.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.890500;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;}
.m4{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-53.184000px;}
.v9{vertical-align:-38.880000px;}
.vc{vertical-align:-20.551200px;}
.v3{vertical-align:-18.900000px;}
.v6{vertical-align:-15.840000px;}
.vf{vertical-align:-14.803800px;}
.va{vertical-align:-12.042000px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.997600px;}
.v8{vertical-align:12.042600px;}
.v7{vertical-align:15.840000px;}
.vb{vertical-align:19.170000px;}
.ve{vertical-align:20.251200px;}
.v5{vertical-align:21.600000px;}
.v4{vertical-align:32.400600px;}
.lsa{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-1.050000px;}
.ls33{letter-spacing:-0.816000px;}
.ls39{letter-spacing:-0.810000px;}
.ls3b{letter-spacing:-0.675000px;}
.ls8{letter-spacing:-0.576000px;}
.ls31{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.384000px;}
.ls32{letter-spacing:-0.324000px;}
.ls2f{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls3a{letter-spacing:-0.135000px;}
.ls2e{letter-spacing:-0.090000px;}
.ls2d{letter-spacing:-0.045000px;}
.ls2{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.009600px;}
.ls1a{letter-spacing:0.016200px;}
.ls2c{letter-spacing:0.016650px;}
.ls2b{letter-spacing:0.016800px;}
.ls10{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.019200px;}
.ls5{letter-spacing:0.021000px;}
.ls23{letter-spacing:0.021600px;}
.ls17{letter-spacing:0.024000px;}
.lsf{letter-spacing:0.033600px;}
.ls15{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.048000px;}
.lse{letter-spacing:0.065400px;}
.ls37{letter-spacing:0.135000px;}
.ls36{letter-spacing:0.405000px;}
.ls38{letter-spacing:0.810000px;}
.lsc{letter-spacing:1.104000px;}
.ls9{letter-spacing:2.898000px;}
.ls19{letter-spacing:2.944800px;}
.ls12{letter-spacing:2.958600px;}
.ls1b{letter-spacing:2.977200px;}
.ls34{letter-spacing:4.800000px;}
.ls35{letter-spacing:5.280000px;}
.ls14{letter-spacing:5.328000px;}
.ls16{letter-spacing:5.376000px;}
.ls11{letter-spacing:5.611200px;}
.ls6{letter-spacing:6.000000px;}
.ls1c{letter-spacing:6.624000px;}
.lsd{letter-spacing:6.720000px;}
.ls1e{letter-spacing:8.300400px;}
.ls18{letter-spacing:8.304600px;}
.ls4{letter-spacing:8.400000px;}
.ls1{letter-spacing:10.800000px;}
.ls13{letter-spacing:10.990800px;}
.ls21{letter-spacing:81.310650px;}
.ls20{letter-spacing:83.907450px;}
.ls26{letter-spacing:107.409450px;}
.ls25{letter-spacing:110.006850px;}
.ls28{letter-spacing:144.128850px;}
.ls27{letter-spacing:146.725650px;}
.ls29{letter-spacing:160.920000px;}
.ls22{letter-spacing:327.699000px;}
.ls24{letter-spacing:328.880250px;}
.ls0{letter-spacing:554.782200px;}
.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;}
}
.wsc{word-spacing:-20.580000px;}
.ws84{word-spacing:-16.464000px;}
.ws19{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.122000px;}
.ws51{word-spacing:-12.288000px;}
.ws31{word-spacing:-11.520000px;}
.ws18{word-spacing:-11.232000px;}
.ws1e{word-spacing:-10.848000px;}
.ws3{word-spacing:-10.752000px;}
.wsd{word-spacing:-10.656000px;}
.ws39{word-spacing:-10.530000px;}
.ws54{word-spacing:-10.416000px;}
.ws9c{word-spacing:-10.395000px;}
.ws2{word-spacing:-10.206000px;}
.ws1a{word-spacing:-9.216000px;}
.ws52{word-spacing:-9.000000px;}
.ws53{word-spacing:-8.892000px;}
.ws4d{word-spacing:-8.640000px;}
.ws21{word-spacing:-8.424000px;}
.wsa{word-spacing:-8.400000px;}
.ws1{word-spacing:-8.064000px;}
.wsb{word-spacing:-7.526400px;}
.ws20{word-spacing:-6.720000px;}
.wse{word-spacing:-6.000000px;}
.ws26{word-spacing:-5.424000px;}
.ws86{word-spacing:-5.280000px;}
.ws1b{word-spacing:-2.898000px;}
.ws95{word-spacing:-2.745000px;}
.ws9f{word-spacing:-1.890000px;}
.ws14{word-spacing:-1.536000px;}
.ws8{word-spacing:-1.386000px;}
.ws85{word-spacing:-1.344000px;}
.ws8b{word-spacing:-1.260000px;}
.ws1f{word-spacing:-1.104000px;}
.ws88{word-spacing:-1.080000px;}
.ws96{word-spacing:-0.810000px;}
.ws9e{word-spacing:-0.720000px;}
.ws8f{word-spacing:-0.405000px;}
.ws16{word-spacing:-0.336000px;}
.ws8e{word-spacing:-0.315000px;}
.ws89{word-spacing:-0.180000px;}
.ws92{word-spacing:-0.135000px;}
.ws25{word-spacing:-0.067200px;}
.ws24{word-spacing:-0.048000px;}
.ws2c{word-spacing:-0.045000px;}
.ws0{word-spacing:-0.042000px;}
.ws28{word-spacing:-0.033600px;}
.ws6{word-spacing:0.000000px;}
.ws4f{word-spacing:0.045000px;}
.ws9{word-spacing:0.054000px;}
.ws50{word-spacing:0.090000px;}
.wsf{word-spacing:0.144000px;}
.ws55{word-spacing:0.288000px;}
.ws56{word-spacing:0.432000px;}
.ws11{word-spacing:0.576000px;}
.wsa2{word-spacing:0.675000px;}
.ws91{word-spacing:0.810000px;}
.ws8a{word-spacing:0.990000px;}
.ws7{word-spacing:1.050000px;}
.ws90{word-spacing:1.395000px;}
.ws1d{word-spacing:1.440000px;}
.ws4e{word-spacing:1.536000px;}
.ws13{word-spacing:1.776000px;}
.ws97{word-spacing:1.980000px;}
.ws98{word-spacing:2.160000px;}
.ws9a{word-spacing:3.015000px;}
.ws10{word-spacing:3.072000px;}
.ws8d{word-spacing:3.105000px;}
.ws1c{word-spacing:3.600000px;}
.ws87{word-spacing:4.590000px;}
.ws9b{word-spacing:4.635000px;}
.ws93{word-spacing:4.995000px;}
.ws9d{word-spacing:5.175000px;}
.ws12{word-spacing:5.280000px;}
.ws99{word-spacing:5.400000px;}
.ws29{word-spacing:5.577600px;}
.ws22{word-spacing:5.651520px;}
.ws15{word-spacing:5.760000px;}
.wsa0{word-spacing:8.235000px;}
.wsa1{word-spacing:8.820000px;}
.ws27{word-spacing:9.539760px;}
.ws94{word-spacing:9.585000px;}
.ws23{word-spacing:9.622680px;}
.ws8c{word-spacing:10.890000px;}
.ws43{word-spacing:41.175000px;}
.ws73{word-spacing:46.935000px;}
.ws78{word-spacing:48.195000px;}
.ws30{word-spacing:49.680000px;}
.ws32{word-spacing:55.800000px;}
.ws42{word-spacing:56.250000px;}
.ws7b{word-spacing:57.060000px;}
.ws38{word-spacing:59.805000px;}
.ws74{word-spacing:64.575000px;}
.ws3f{word-spacing:67.275000px;}
.ws33{word-spacing:67.770000px;}
.ws6d{word-spacing:71.460000px;}
.ws70{word-spacing:74.295000px;}
.ws81{word-spacing:77.445000px;}
.ws62{word-spacing:81.045000px;}
.ws3c{word-spacing:81.900000px;}
.ws3d{word-spacing:82.350000px;}
.ws34{word-spacing:82.575000px;}
.ws65{word-spacing:82.710000px;}
.ws6c{word-spacing:83.160000px;}
.ws80{word-spacing:83.295000px;}
.ws7a{word-spacing:84.195000px;}
.ws66{word-spacing:85.005000px;}
.ws68{word-spacing:85.455000px;}
.ws36{word-spacing:86.580000px;}
.ws60{word-spacing:87.030000px;}
.ws35{word-spacing:89.145000px;}
.ws7d{word-spacing:90.045000px;}
.ws7c{word-spacing:90.360000px;}
.ws83{word-spacing:90.675000px;}
.ws61{word-spacing:91.485000px;}
.ws37{word-spacing:93.870000px;}
.ws69{word-spacing:94.455000px;}
.ws3e{word-spacing:95.985000px;}
.ws76{word-spacing:97.560000px;}
.ws64{word-spacing:107.145000px;}
.ws7f{word-spacing:109.260000px;}
.ws6e{word-spacing:109.395000px;}
.ws72{word-spacing:110.295000px;}
.ws5f{word-spacing:111.105000px;}
.ws41{word-spacing:112.680000px;}
.ws5e{word-spacing:113.130000px;}
.ws75{word-spacing:116.145000px;}
.ws6a{word-spacing:121.455000px;}
.ws2f{word-spacing:121.995000px;}
.ws82{word-spacing:123.660000px;}
.ws5b{word-spacing:133.245000px;}
.ws5c{word-spacing:139.230000px;}
.ws2a{word-spacing:141.525000px;}
.ws71{word-spacing:147.870000px;}
.ws4a{word-spacing:149.085000px;}
.ws7e{word-spacing:149.760000px;}
.ws2e{word-spacing:149.985000px;}
.ws48{word-spacing:151.695000px;}
.ws46{word-spacing:154.710000px;}
.ws2b{word-spacing:167.895000px;}
.ws6b{word-spacing:170.055000px;}
.ws58{word-spacing:187.650000px;}
.ws44{word-spacing:187.785000px;}
.ws63{word-spacing:190.665000px;}
.ws45{word-spacing:191.385000px;}
.ws2d{word-spacing:193.725000px;}
.ws77{word-spacing:211.725000px;}
.ws59{word-spacing:213.750000px;}
.ws5a{word-spacing:214.605000px;}
.ws6f{word-spacing:247.815000px;}
.ws5d{word-spacing:292.365000px;}
.ws57{word-spacing:292.995000px;}
.ws47{word-spacing:442.260000px;}
.ws40{word-spacing:459.945000px;}
.ws49{word-spacing:460.260000px;}
.ws4b{word-spacing:468.720000px;}
.ws79{word-spacing:520.245000px;}
.ws67{word-spacing:582.165000px;}
.ws3a{word-spacing:624.454200px;}
.ws3b{word-spacing:665.957400px;}
.ws4c{word-spacing:824.895000px;}
.ws5{word-spacing:1342.026000px;}
.ws17{word-spacing:2532.241200px;}
._1{margin-left:-3024.403200px;}
._4{margin-left:-13.500000px;}
._d{margin-left:-12.296400px;}
._c{margin-left:-10.696800px;}
._14{margin-left:-6.742200px;}
._10{margin-left:-5.229600px;}
._b{margin-left:-4.204200px;}
._a{margin-left:-2.928600px;}
._0{margin-left:-1.197000px;}
._2{width:1.995000px;}
._7{width:3.796200px;}
._6{width:4.941000px;}
._8{width:5.999400px;}
._e{width:7.174800px;}
._f{width:8.205600px;}
._3{width:9.450000px;}
._5{width:10.530000px;}
._66{width:12.811500px;}
._11{width:13.998600px;}
._12{width:15.049200px;}
._3b{width:16.243200px;}
._4e{width:17.453400px;}
._15{width:18.456000px;}
._67{width:22.720800px;}
._13{width:24.115200px;}
._65{width:28.786500px;}
._9{width:33.183000px;}
._19{width:43.591800px;}
._18{width:47.731800px;}
._1e{width:56.101800px;}
._1d{width:61.141800px;}
._51{width:62.716800px;}
._35{width:67.995000px;}
._1f{width:78.795000px;}
._5e{width:82.980000px;}
._5c{width:85.815000px;}
._1b{width:88.861800px;}
._20{width:94.095000px;}
._5a{width:95.400000px;}
._3d{width:98.401800px;}
._31{width:100.665000px;}
._5b{width:101.880000px;}
._23{width:107.473200px;}
._59{width:109.530000px;}
._5f{width:110.700000px;}
._54{width:111.915000px;}
._45{width:118.665000px;}
._44{width:120.330000px;}
._48{width:122.625000px;}
._29{width:124.200000px;}
._27{width:126.765000px;}
._2f{width:127.949400px;}
._25{width:129.015000px;}
._22{width:132.105600px;}
._34{width:133.515000px;}
._62{width:135.644400px;}
._56{width:136.980000px;}
._2d{width:141.300000px;}
._2e{width:144.854400px;}
._33{width:147.105000px;}
._43{width:148.725000px;}
._3f{width:150.075000px;}
._61{width:153.390600px;}
._41{width:155.385000px;}
._55{width:159.390000px;}
._32{width:163.125000px;}
._57{width:164.700000px;}
._24{width:166.230000px;}
._40{width:170.280000px;}
._42{width:172.350000px;}
._53{width:175.518600px;}
._1c{width:179.325000px;}
._52{width:184.275000px;}
._30{width:186.660000px;}
._46{width:189.405000px;}
._58{width:197.625600px;}
._36{width:199.305000px;}
._37{width:202.860600px;}
._4a{width:204.705000px;}
._1a{width:219.555000px;}
._50{width:220.815000px;}
._21{width:224.775000px;}
._47{width:229.783800px;}
._4b{width:267.795000px;}
._3e{width:275.206800px;}
._3c{width:299.545200px;}
._16{width:415.784400px;}
._26{width:453.465000px;}
._2b{width:457.605000px;}
._17{width:460.933200px;}
._28{width:471.465000px;}
._2c{width:472.995000px;}
._2a{width:480.240000px;}
._38{width:483.705000px;}
._5d{width:496.665000px;}
._39{width:499.095000px;}
._60{width:505.485000px;}
._63{width:522.765000px;}
._64{width:532.485000px;}
._4c{width:579.060000px;}
._4d{width:581.085000px;}
._4f{width:611.100000px;}
._3a{width:877.905000px;}
._49{width:1751.265000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:29.400000px;}
.fs6{font-size:31.500000px;}
.fsc{font-size:33.600000px;}
.fse{font-size:33.750000px;}
.fsb{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:57.540000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:78.120000px;}
.fs2{font-size:78.540000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y129{bottom:10.348800px;}
.y127{bottom:15.360150px;}
.y121{bottom:15.360450px;}
.y12d{bottom:23.638800px;}
.y4{bottom:25.615200px;}
.y12b{bottom:28.776600px;}
.y126{bottom:36.015000px;}
.y123{bottom:36.015300px;}
.y3{bottom:39.120300px;}
.y1{bottom:40.619700px;}
.y2{bottom:43.170300px;}
.y3d{bottom:63.867150px;}
.y174{bottom:76.414500px;}
.ydc{bottom:76.444950px;}
.ya8{bottom:76.450350px;}
.y1de{bottom:76.453650px;}
.y1b1{bottom:76.761600px;}
.y73{bottom:77.086350px;}
.y101{bottom:77.275200px;}
.y187{bottom:77.474250px;}
.y3c{bottom:78.871650px;}
.y14e{bottom:81.485850px;}
.y247{bottom:83.048550px;}
.y25e{bottom:83.048700px;}
.y14d{bottom:92.173350px;}
.y206{bottom:92.203650px;}
.y173{bottom:92.914500px;}
.ydb{bottom:95.944950px;}
.ya7{bottom:95.950350px;}
.y1dd{bottom:95.953650px;}
.y1b0{bottom:96.261600px;}
.y72{bottom:96.586350px;}
.y100{bottom:96.775200px;}
.y186{bottom:96.974250px;}
.y246{bottom:98.798550px;}
.y25d{bottom:98.798700px;}
.y14c{bottom:107.923350px;}
.y205{bottom:107.953650px;}
.y172{bottom:109.414500px;}
.y245{bottom:114.548550px;}
.y25c{bottom:114.548700px;}
.yda{bottom:115.444950px;}
.ya6{bottom:115.450350px;}
.y1dc{bottom:115.453650px;}
.y1af{bottom:115.761600px;}
.y71{bottom:116.086350px;}
.y104{bottom:116.275200px;}
.y18a{bottom:116.474250px;}
.y14b{bottom:123.673350px;}
.y204{bottom:123.703650px;}
.y171{bottom:125.914500px;}
.yff{bottom:126.025200px;}
.y244{bottom:130.298550px;}
.y25b{bottom:130.298700px;}
.yd9{bottom:134.944950px;}
.ya5{bottom:134.950350px;}
.y1db{bottom:134.953650px;}
.y1ae{bottom:135.261600px;}
.y70{bottom:135.586350px;}
.y103{bottom:135.775200px;}
.y185{bottom:135.974250px;}
.y203{bottom:139.453650px;}
.y170{bottom:142.414500px;}
.y243{bottom:146.048550px;}
.y25a{bottom:146.048700px;}
.y14a{bottom:148.423350px;}
.ye2{bottom:154.444950px;}
.ya4{bottom:154.450350px;}
.y1da{bottom:154.453650px;}
.y1ad{bottom:154.761600px;}
.y6f{bottom:155.086350px;}
.y202{bottom:155.203650px;}
.y102{bottom:155.275200px;}
.y189{bottom:155.474250px;}
.y16f{bottom:158.914500px;}
.y242{bottom:161.798550px;}
.y259{bottom:161.798700px;}
.yd8{bottom:164.194950px;}
.y149{bottom:169.468050px;}
.y201{bottom:170.953650px;}
.ye1{bottom:173.944950px;}
.ya3{bottom:173.950350px;}
.y1d9{bottom:173.953650px;}
.y1ac{bottom:174.261600px;}
.y6e{bottom:174.586350px;}
.yfe{bottom:174.775200px;}
.y188{bottom:174.974250px;}
.y241{bottom:177.548550px;}
.y258{bottom:177.548700px;}
.y25{bottom:186.512100px;}
.y200{bottom:186.703650px;}
.y148{bottom:190.528050px;}
.y240{bottom:193.298550px;}
.y257{bottom:193.298700px;}
.ye0{bottom:193.444950px;}
.ya2{bottom:193.450350px;}
.y1d8{bottom:193.453650px;}
.y1ab{bottom:193.761600px;}
.y6d{bottom:194.086350px;}
.yfd{bottom:194.275200px;}
.y184{bottom:194.474250px;}
.y1ff{bottom:202.453650px;}
.yd7{bottom:203.194950px;}
.y24{bottom:206.012100px;}
.y147{bottom:206.278050px;}
.y23f{bottom:209.048550px;}
.y256{bottom:209.048700px;}
.ydf{bottom:212.944950px;}
.ya1{bottom:212.950350px;}
.y1d7{bottom:212.953650px;}
.y1aa{bottom:213.261600px;}
.y6c{bottom:213.586350px;}
.yfc{bottom:213.775200px;}
.y183{bottom:213.974250px;}
.y1fe{bottom:218.203650px;}
.y23e{bottom:224.798550px;}
.y255{bottom:224.798700px;}
.y23{bottom:225.512100px;}
.y146{bottom:227.338050px;}
.yde{bottom:232.444950px;}
.ya0{bottom:232.450350px;}
.y1d6{bottom:232.453650px;}
.y1a9{bottom:232.761600px;}
.y6b{bottom:233.086350px;}
.yfb{bottom:233.275200px;}
.y182{bottom:233.474250px;}
.y1fd{bottom:233.953650px;}
.y23d{bottom:240.548550px;}
.y254{bottom:240.548700px;}
.y145{bottom:248.398050px;}
.y1fc{bottom:249.703650px;}
.yd6{bottom:251.944950px;}
.y9f{bottom:251.950350px;}
.y1d5{bottom:251.953650px;}
.y1a8{bottom:252.261600px;}
.y6a{bottom:252.586350px;}
.yfa{bottom:252.775200px;}
.y181{bottom:252.974250px;}
.y23c{bottom:256.298550px;}
.y253{bottom:256.298700px;}
.y22{bottom:261.385500px;}
.y1fb{bottom:265.453650px;}
.y144{bottom:269.450400px;}
.yd5{bottom:271.444950px;}
.y9e{bottom:271.450350px;}
.y1d4{bottom:271.453650px;}
.y1a7{bottom:271.761600px;}
.y23b{bottom:272.048550px;}
.y252{bottom:272.048700px;}
.y69{bottom:272.086350px;}
.yf9{bottom:272.275200px;}
.y180{bottom:272.474250px;}
.y1fa{bottom:281.203650px;}
.y21{bottom:283.890000px;}
.y23a{bottom:287.798550px;}
.y251{bottom:287.798700px;}
.y143{bottom:290.510400px;}
.yd4{bottom:290.944950px;}
.y9d{bottom:290.950350px;}
.y1d3{bottom:290.953650px;}
.y1a6{bottom:291.261600px;}
.y68{bottom:291.586350px;}
.yf8{bottom:291.775200px;}
.y17f{bottom:291.974250px;}
.y1f9{bottom:296.953650px;}
.y239{bottom:303.548550px;}
.y250{bottom:303.548700px;}
.y20{bottom:306.394500px;}
.yd3{bottom:310.444950px;}
.y9c{bottom:310.450350px;}
.y1d2{bottom:310.453650px;}
.y1a5{bottom:310.761600px;}
.y67{bottom:311.086350px;}
.yf7{bottom:311.275200px;}
.y17e{bottom:311.474250px;}
.y142{bottom:311.566500px;}
.y1f8{bottom:312.703650px;}
.y238{bottom:319.298550px;}
.y24f{bottom:319.298700px;}
.y1f7{bottom:328.453650px;}
.y1f{bottom:328.899000px;}
.yd2{bottom:329.944950px;}
.y9b{bottom:329.950350px;}
.y1d1{bottom:329.953650px;}
.y1a4{bottom:330.261600px;}
.y66{bottom:330.586350px;}
.yf6{bottom:330.775200px;}
.y17d{bottom:330.974250px;}
.y141{bottom:332.611200px;}
.y237{bottom:335.048550px;}
.y24e{bottom:335.048700px;}
.y1f6{bottom:344.203650px;}
.yd1{bottom:349.444950px;}
.y9a{bottom:349.450350px;}
.y1d0{bottom:349.453650px;}
.y1a3{bottom:349.761600px;}
.y65{bottom:350.086350px;}
.yf5{bottom:350.275200px;}
.y17c{bottom:350.474250px;}
.y236{bottom:350.798550px;}
.y24d{bottom:350.798700px;}
.y1e{bottom:351.403500px;}
.y140{bottom:353.671200px;}
.y1f5{bottom:359.953650px;}
.y235{bottom:366.548550px;}
.y24c{bottom:366.548700px;}
.yd0{bottom:368.944950px;}
.y99{bottom:368.950350px;}
.y1cf{bottom:368.953650px;}
.y1a2{bottom:369.261600px;}
.y13f{bottom:369.421200px;}
.y64{bottom:369.586350px;}
.yf4{bottom:369.775200px;}
.y17b{bottom:369.974250px;}
.y1d{bottom:373.908000px;}
.y1f4{bottom:375.703650px;}
.y234{bottom:382.298550px;}
.y24b{bottom:382.298700px;}
.ycf{bottom:388.444950px;}
.y98{bottom:388.450350px;}
.y1ce{bottom:388.453650px;}
.y1a1{bottom:388.761600px;}
.y63{bottom:389.086350px;}
.yf3{bottom:389.275200px;}
.y17a{bottom:389.474250px;}
.y13e{bottom:390.481200px;}
.y1f3{bottom:391.453650px;}
.y1c{bottom:396.412500px;}
.y233{bottom:398.048550px;}
.y24a{bottom:398.048700px;}
.y1f2{bottom:407.203650px;}
.yce{bottom:407.944950px;}
.y97{bottom:407.950350px;}
.y1cd{bottom:407.953650px;}
.y1a0{bottom:408.261600px;}
.y62{bottom:408.586350px;}
.yf2{bottom:408.775200px;}
.y179{bottom:408.974250px;}
.y13d{bottom:411.541200px;}
.y232{bottom:413.798550px;}
.y249{bottom:413.798700px;}
.y1b{bottom:418.917000px;}
.y1f1{bottom:422.953650px;}
.ycd{bottom:427.444950px;}
.y96{bottom:427.450350px;}
.y1cc{bottom:427.453650px;}
.y19f{bottom:427.761600px;}
.y61{bottom:428.086350px;}
.yf1{bottom:428.275200px;}
.y178{bottom:428.474250px;}
.y231{bottom:429.548550px;}
.y248{bottom:429.548700px;}
.y13c{bottom:432.593550px;}
.y1f0{bottom:438.703650px;}
.y1a{bottom:441.421500px;}
.y230{bottom:445.298550px;}
.ycc{bottom:446.944950px;}
.y95{bottom:446.950350px;}
.y1cb{bottom:446.953650px;}
.y19e{bottom:447.261600px;}
.y60{bottom:447.586350px;}
.yf0{bottom:447.775200px;}
.y177{bottom:447.974250px;}
.y13b{bottom:453.653550px;}
.y1ef{bottom:454.453650px;}
.y22f{bottom:461.048550px;}
.y19{bottom:463.926000px;}
.ycb{bottom:466.444950px;}
.y94{bottom:466.450350px;}
.y1ca{bottom:466.453650px;}
.y19d{bottom:466.761600px;}
.y5f{bottom:467.086350px;}
.yef{bottom:467.275200px;}
.y176{bottom:467.474250px;}
.y1ee{bottom:470.203650px;}
.y13a{bottom:474.709650px;}
.y22e{bottom:476.798550px;}
.yca{bottom:485.944950px;}
.y93{bottom:485.950350px;}
.y16e{bottom:485.953650px;}
.y19c{bottom:486.261600px;}
.y18{bottom:486.430500px;}
.y5e{bottom:486.586350px;}
.yee{bottom:486.775200px;}
.y175{bottom:486.974250px;}
.y22d{bottom:492.548550px;}
.y139{bottom:495.754350px;}
.y1ed{bottom:501.703650px;}
.yc9{bottom:505.444950px;}
.y92{bottom:505.450350px;}
.y16d{bottom:505.453650px;}
.y19b{bottom:505.761600px;}
.y5d{bottom:506.086350px;}
.yed{bottom:506.275200px;}
.y22c{bottom:508.298550px;}
.y17{bottom:508.935000px;}
.y138{bottom:516.814350px;}
.y1ec{bottom:517.453650px;}
.y22b{bottom:524.048550px;}
.yc8{bottom:524.944950px;}
.y91{bottom:524.950350px;}
.y16c{bottom:524.953650px;}
.y19a{bottom:525.261600px;}
.y5c{bottom:525.586350px;}
.yec{bottom:525.775200px;}
.y16{bottom:531.439500px;}
.y137{bottom:532.564350px;}
.y199{bottom:532.634100px;}
.y1eb{bottom:533.203650px;}
.y22a{bottom:539.798550px;}
.yc7{bottom:544.444950px;}
.y90{bottom:544.450350px;}
.y16b{bottom:544.453650px;}
.y5b{bottom:545.086350px;}
.yeb{bottom:545.275200px;}
.y37{bottom:546.890850px;}
.y1ea{bottom:548.953650px;}
.y198{bottom:549.134100px;}
.y136{bottom:553.624350px;}
.y15{bottom:553.944000px;}
.y229{bottom:555.548550px;}
.y36{bottom:561.895350px;}
.yc6{bottom:563.944950px;}
.y8f{bottom:563.950350px;}
.y16a{bottom:563.953650px;}
.y5a{bottom:564.586350px;}
.y1e9{bottom:564.703650px;}
.yea{bottom:564.775200px;}
.y1c9{bottom:564.859950px;}
.y197{bottom:565.634100px;}
.y228{bottom:571.298550px;}
.y135{bottom:574.684350px;}
.y14{bottom:576.448500px;}
.y35{bottom:576.899850px;}
.y1e8{bottom:580.453650px;}
.y1c8{bottom:580.609950px;}
.y196{bottom:582.134100px;}
.yc5{bottom:583.444950px;}
.y8e{bottom:583.450350px;}
.y169{bottom:583.453650px;}
.y59{bottom:584.086350px;}
.ye9{bottom:584.275200px;}
.y227{bottom:587.048550px;}
.y134{bottom:595.740300px;}
.y1e7{bottom:596.203650px;}
.y13{bottom:598.953000px;}
.y226{bottom:602.798550px;}
.yc4{bottom:602.944950px;}
.y8d{bottom:602.950350px;}
.y168{bottom:602.953650px;}
.y58{bottom:603.586350px;}
.ye8{bottom:603.775200px;}
.y1c7{bottom:605.359950px;}
.y34{bottom:606.898350px;}
.y1e6{bottom:611.953650px;}
.y133{bottom:616.800300px;}
.y225{bottom:618.548550px;}
.y12{bottom:621.457500px;}
.y33{bottom:621.902850px;}
.yc3{bottom:622.444950px;}
.y8c{bottom:622.450350px;}
.y167{bottom:622.453650px;}
.y57{bottom:623.086350px;}
.ye7{bottom:623.275200px;}
.y1c6{bottom:626.419950px;}
.y224{bottom:634.298550px;}
.y32{bottom:636.907350px;}
.y1e5{bottom:637.441650px;}
.y132{bottom:641.077800px;}
.y130{bottom:641.077950px;}
.yc2{bottom:641.944950px;}
.y8b{bottom:641.950350px;}
.y166{bottom:641.953650px;}
.y56{bottom:642.586350px;}
.ye6{bottom:642.775200px;}
.y11{bottom:643.962000px;}
.y1c5{bottom:647.479950px;}
.y223{bottom:650.048550px;}
.yc1{bottom:661.444950px;}
.y8a{bottom:661.450350px;}
.y165{bottom:661.453650px;}
.y55{bottom:662.086350px;}
.ye5{bottom:662.275200px;}
.y1c4{bottom:663.229950px;}
.y222{bottom:665.798550px;}
.y10{bottom:666.466500px;}
.y31{bottom:666.905850px;}
.y131{bottom:668.584050px;}
.yc0{bottom:680.944950px;}
.y89{bottom:680.950350px;}
.y164{bottom:680.953650px;}
.y221{bottom:681.548550px;}
.y54{bottom:681.586350px;}
.ye4{bottom:681.775200px;}
.y30{bottom:681.910350px;}
.y1e4{bottom:683.941650px;}
.y1c3{bottom:684.289950px;}
.yf{bottom:688.971000px;}
.y12f{bottom:696.615300px;}
.y2f{bottom:696.914850px;}
.y220{bottom:697.298550px;}
.ybf{bottom:700.444950px;}
.y88{bottom:700.450350px;}
.y163{bottom:700.453650px;}
.y53{bottom:701.086350px;}
.ye3{bottom:701.275200px;}
.y1e3{bottom:703.441650px;}
.y1c2{bottom:705.349950px;}
.ye{bottom:711.475500px;}
.y2e{bottom:711.919350px;}
.y21f{bottom:713.048550px;}
.y12e{bottom:713.115300px;}
.ybe{bottom:719.944950px;}
.y87{bottom:719.950350px;}
.y162{bottom:719.953650px;}
.y52{bottom:720.586350px;}
.y1e2{bottom:722.941650px;}
.y1c1{bottom:726.409950px;}
.y2d{bottom:726.923850px;}
.y21e{bottom:728.798550px;}
.y276{bottom:728.807400px;}
.yd{bottom:733.980000px;}
.y10f{bottom:736.435800px;}
.ybd{bottom:739.444950px;}
.y86{bottom:739.450350px;}
.y161{bottom:739.453650px;}
.y51{bottom:740.086350px;}
.y1e1{bottom:742.441650px;}
.y21d{bottom:744.548550px;}
.y275{bottom:744.557400px;}
.y27a{bottom:745.322400px;}
.y1c0{bottom:747.469950px;}
.y10e{bottom:752.935800px;}
.yc{bottom:756.484500px;}
.y2c{bottom:756.922350px;}
.ybc{bottom:758.944950px;}
.y85{bottom:758.950350px;}
.y160{bottom:758.953650px;}
.y50{bottom:759.586350px;}
.y21c{bottom:760.298550px;}
.y274{bottom:760.307400px;}
.y279{bottom:760.318650px;}
.y1e0{bottom:761.941650px;}
.y113{bottom:763.369950px;}
.y11f{bottom:763.894800px;}
.y1bf{bottom:768.529950px;}
.y10d{bottom:769.435800px;}
.y2b{bottom:771.926850px;}
.y278{bottom:775.314900px;}
.y21b{bottom:776.048550px;}
.y273{bottom:776.057400px;}
.ybb{bottom:778.444950px;}
.y84{bottom:778.450350px;}
.y15f{bottom:778.453650px;}
.yb{bottom:778.989000px;}
.y4f{bottom:779.086350px;}
.y112{bottom:782.869950px;}
.y11e{bottom:783.394800px;}
.y10c{bottom:785.935800px;}
.y1be{bottom:789.589950px;}
.y277{bottom:790.311150px;}
.y1df{bottom:791.197650px;}
.y2a{bottom:791.656350px;}
.y21a{bottom:791.798550px;}
.y272{bottom:791.807400px;}
.yba{bottom:797.944950px;}
.y83{bottom:797.950350px;}
.y15e{bottom:797.953650px;}
.y4e{bottom:798.586350px;}
.ya{bottom:801.493500px;}
.y111{bottom:802.369950px;}
.y10b{bottom:802.435800px;}
.y1bd{bottom:805.339950px;}
.y29{bottom:807.176850px;}
.y219{bottom:807.548550px;}
.y271{bottom:807.557400px;}
.yb9{bottom:817.444950px;}
.y82{bottom:817.450350px;}
.y15d{bottom:817.453650px;}
.y4d{bottom:818.086350px;}
.y10a{bottom:818.935800px;}
.y110{bottom:821.872950px;}
.y11d{bottom:822.394800px;}
.y218{bottom:823.298550px;}
.y270{bottom:823.307400px;}
.y9{bottom:823.998000px;}
.y1bc{bottom:826.399950px;}
.y28{bottom:826.906350px;}
.y109{bottom:835.435800px;}
.yb8{bottom:836.944950px;}
.y81{bottom:836.950350px;}
.y15c{bottom:836.953650px;}
.y4c{bottom:837.586350px;}
.y217{bottom:839.048550px;}
.y26f{bottom:839.057400px;}
.y27{bottom:842.426850px;}
.y120{bottom:844.369500px;}
.y8{bottom:846.498000px;}
.y124{bottom:846.796950px;}
.y1bb{bottom:847.459950px;}
.y108{bottom:851.935800px;}
.y216{bottom:854.798550px;}
.y26e{bottom:854.807400px;}
.yb7{bottom:856.444950px;}
.y80{bottom:856.450350px;}
.y15b{bottom:856.453650px;}
.y122{bottom:856.719300px;}
.y4b{bottom:857.086350px;}
.y125{bottom:859.729650px;}
.y26{bottom:862.156350px;}
.y107{bottom:868.435800px;}
.y1ba{bottom:868.519950px;}
.y215{bottom:870.548550px;}
.y26d{bottom:870.557400px;}
.yb6{bottom:875.944950px;}
.y7f{bottom:875.950350px;}
.y15a{bottom:875.953650px;}
.y4a{bottom:876.586350px;}
.y11c{bottom:882.394800px;}
.y106{bottom:884.935800px;}
.ydd{bottom:885.694950px;}
.y195{bottom:886.261200px;}
.y214{bottom:886.298550px;}
.y26c{bottom:886.307400px;}
.y1b9{bottom:889.579950px;}
.yb5{bottom:895.444950px;}
.y7e{bottom:895.450350px;}
.y159{bottom:895.453650px;}
.y49{bottom:896.086350px;}
.y105{bottom:901.435800px;}
.y11b{bottom:901.894800px;}
.y194{bottom:902.011200px;}
.y213{bottom:902.048550px;}
.y26b{bottom:902.057400px;}
.y3b{bottom:909.685500px;}
.y1b8{bottom:910.639950px;}
.yb4{bottom:914.944950px;}
.y7d{bottom:914.950350px;}
.y158{bottom:914.953650px;}
.y48{bottom:915.586350px;}
.y212{bottom:917.798550px;}
.y26a{bottom:917.807400px;}
.y11a{bottom:921.394800px;}
.y193{bottom:926.761200px;}
.y1b7{bottom:931.699950px;}
.y211{bottom:933.548550px;}
.y269{bottom:933.557400px;}
.yb3{bottom:934.444950px;}
.y7c{bottom:934.450350px;}
.y157{bottom:934.453650px;}
.y47{bottom:935.086350px;}
.y119{bottom:940.885950px;}
.y1b6{bottom:947.449950px;}
.y192{bottom:947.821200px;}
.y210{bottom:949.298550px;}
.y268{bottom:949.307400px;}
.yb2{bottom:953.944950px;}
.y7b{bottom:953.950350px;}
.y156{bottom:953.953650px;}
.y46{bottom:954.586350px;}
.y20f{bottom:965.048550px;}
.y267{bottom:965.057400px;}
.y128{bottom:967.146000px;}
.y3a{bottom:967.506300px;}
.y1b5{bottom:968.509950px;}
.y191{bottom:968.881200px;}
.yb1{bottom:973.444950px;}
.y7a{bottom:973.450350px;}
.y155{bottom:973.453650px;}
.y45{bottom:974.086350px;}
.y12a{bottom:974.484150px;}
.y12c{bottom:977.487000px;}
.y20e{bottom:980.798550px;}
.y266{bottom:980.807400px;}
.y1b4{bottom:989.569950px;}
.y190{bottom:989.941200px;}
.yb0{bottom:992.944950px;}
.y79{bottom:992.950350px;}
.y154{bottom:992.953650px;}
.y44{bottom:993.586350px;}
.y20d{bottom:996.548550px;}
.y265{bottom:996.557400px;}
.y39{bottom:1002.012300px;}
.y1b3{bottom:1010.629950px;}
.y18f{bottom:1011.001200px;}
.y20c{bottom:1012.298550px;}
.y264{bottom:1012.307400px;}
.y118{bottom:1012.441950px;}
.yaf{bottom:1012.444950px;}
.y78{bottom:1012.450350px;}
.y153{bottom:1012.453650px;}
.y43{bottom:1013.086350px;}
.y20b{bottom:1028.048550px;}
.y263{bottom:1028.057400px;}
.y117{bottom:1031.941950px;}
.yae{bottom:1031.944950px;}
.y77{bottom:1031.950350px;}
.y152{bottom:1031.953650px;}
.y42{bottom:1032.586350px;}
.y18e{bottom:1034.907450px;}
.y18c{bottom:1034.907600px;}
.y20a{bottom:1043.798550px;}
.y262{bottom:1043.807400px;}
.y116{bottom:1051.441950px;}
.yad{bottom:1051.444950px;}
.y76{bottom:1051.450350px;}
.y151{bottom:1051.453650px;}
.y38{bottom:1056.012300px;}
.y209{bottom:1059.548550px;}
.y261{bottom:1059.557400px;}
.y18d{bottom:1062.413700px;}
.y115{bottom:1070.941950px;}
.yac{bottom:1070.944950px;}
.y75{bottom:1070.950350px;}
.y150{bottom:1070.953650px;}
.y41{bottom:1071.586350px;}
.y208{bottom:1075.298550px;}
.y260{bottom:1075.307400px;}
.y114{bottom:1090.441950px;}
.y18b{bottom:1090.442250px;}
.yab{bottom:1090.444950px;}
.y1b2{bottom:1090.449600px;}
.y74{bottom:1090.450350px;}
.y14f{bottom:1090.453650px;}
.y207{bottom:1091.048550px;}
.y25f{bottom:1091.057400px;}
.y7{bottom:1096.573650px;}
.y6{bottom:1115.319150px;}
.y5{bottom:1118.319150px;}
.yaa{bottom:1126.684950px;}
.y3f{bottom:1126.685700px;}
.y40{bottom:1129.263000px;}
.ya9{bottom:1129.384950px;}
.y3e{bottom:1129.385700px;}
.h1c{height:3.168000px;}
.hc{height:24.144750px;}
.h1d{height:24.528000px;}
.h2b{height:25.869375px;}
.h20{height:29.548500px;}
.h13{height:30.429000px;}
.h11{height:30.576000px;}
.h15{height:30.941400px;}
.ha{height:31.206000px;}
.hd{height:31.227000px;}
.h5{height:32.193000px;}
.h2{height:32.361000px;}
.h2e{height:33.142500px;}
.h22{height:33.435000px;}
.h23{height:33.457500px;}
.h28{height:34.492500px;}
.h1a{height:35.040000px;}
.h2d{height:35.664000px;}
.h2c{height:35.688000px;}
.h19{height:36.900000px;}
.h1f{height:37.248000px;}
.h6{height:38.031000px;}
.h4{height:38.190600px;}
.he{height:39.771000px;}
.h24{height:40.747500px;}
.h2f{height:40.748100px;}
.hb{height:43.464000px;}
.h18{height:43.499400px;}
.h3{height:44.104410px;}
.h8{height:44.580000px;}
.h1e{height:45.243600px;}
.h14{height:45.990000px;}
.h25{height:46.120575px;}
.h1b{height:46.122600px;}
.h2a{height:46.134375px;}
.h29{height:46.134975px;}
.h21{height:47.082600px;}
.h9{height:48.897000px;}
.h17{height:49.194600px;}
.h27{height:50.810625px;}
.h26{height:50.856825px;}
.h16{height:54.198000px;}
.h12{height:60.191460px;}
.h7{height:60.200910px;}
.h10{height:72.522600px;}
.hf{height:80.298000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w3{width:258.960000px;}
.w2{width:303.225000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:67.138500px;}
.x1{left:69.732300px;}
.x23{left:73.181100px;}
.x1d{left:78.732300px;}
.x25{left:84.434700px;}
.xd{left:86.758950px;}
.x10{left:89.201700px;}
.x26{left:90.430950px;}
.x1f{left:95.989800px;}
.x13{left:100.327500px;}
.x2{left:104.654700px;}
.x3{left:107.284800px;}
.x4{left:117.732300px;}
.x24{left:181.612200px;}
.x1e{left:184.051200px;}
.x5{left:190.097700px;}
.x6{left:192.727800px;}
.x14{left:202.090650px;}
.x15{left:216.737850px;}
.x20{left:230.187900px;}
.x16{left:246.361350px;}
.x1c{left:249.630750px;}
.x18{left:290.641950px;}
.x7{left:313.476750px;}
.x8{left:316.106850px;}
.x17{left:358.380150px;}
.xe{left:458.722950px;}
.x11{left:461.213700px;}
.x27{left:476.757600px;}
.xf{left:478.222950px;}
.x12{left:480.711300px;}
.x19{left:514.003500px;}
.x1a{left:517.785300px;}
.x1b{left:600.770100px;}
.x21{left:610.354200px;}
.x22{left:654.059550px;}
.x9{left:761.785650px;}
.xa{left:786.082650px;}
.xb{left:788.331600px;}
@media print{
.vd{vertical-align:-47.274667pt;}
.v9{vertical-align:-34.560000pt;}
.vc{vertical-align:-18.267733pt;}
.v3{vertical-align:-16.800000pt;}
.v6{vertical-align:-14.080000pt;}
.vf{vertical-align:-13.158933pt;}
.va{vertical-align:-10.704000pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.331200pt;}
.v8{vertical-align:10.704533pt;}
.v7{vertical-align:14.080000pt;}
.vb{vertical-align:17.040000pt;}
.ve{vertical-align:18.001067pt;}
.v5{vertical-align:19.200000pt;}
.v4{vertical-align:28.800533pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls33{letter-spacing:-0.725333pt;}
.ls39{letter-spacing:-0.720000pt;}
.ls3b{letter-spacing:-0.600000pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls31{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.341333pt;}
.ls32{letter-spacing:-0.288000pt;}
.ls2f{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls3a{letter-spacing:-0.120000pt;}
.ls2e{letter-spacing:-0.080000pt;}
.ls2d{letter-spacing:-0.040000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.008533pt;}
.ls1a{letter-spacing:0.014400pt;}
.ls2c{letter-spacing:0.014800pt;}
.ls2b{letter-spacing:0.014933pt;}
.ls10{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.017067pt;}
.ls5{letter-spacing:0.018667pt;}
.ls23{letter-spacing:0.019200pt;}
.ls17{letter-spacing:0.021333pt;}
.lsf{letter-spacing:0.029867pt;}
.ls15{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.058133pt;}
.ls37{letter-spacing:0.120000pt;}
.ls36{letter-spacing:0.360000pt;}
.ls38{letter-spacing:0.720000pt;}
.lsc{letter-spacing:0.981333pt;}
.ls9{letter-spacing:2.576000pt;}
.ls19{letter-spacing:2.617600pt;}
.ls12{letter-spacing:2.629867pt;}
.ls1b{letter-spacing:2.646400pt;}
.ls34{letter-spacing:4.266667pt;}
.ls35{letter-spacing:4.693333pt;}
.ls14{letter-spacing:4.736000pt;}
.ls16{letter-spacing:4.778667pt;}
.ls11{letter-spacing:4.987733pt;}
.ls6{letter-spacing:5.333333pt;}
.ls1c{letter-spacing:5.888000pt;}
.lsd{letter-spacing:5.973333pt;}
.ls1e{letter-spacing:7.378133pt;}
.ls18{letter-spacing:7.381867pt;}
.ls4{letter-spacing:7.466667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls13{letter-spacing:9.769600pt;}
.ls21{letter-spacing:72.276133pt;}
.ls20{letter-spacing:74.584400pt;}
.ls26{letter-spacing:95.475067pt;}
.ls25{letter-spacing:97.783867pt;}
.ls28{letter-spacing:128.114533pt;}
.ls27{letter-spacing:130.422800pt;}
.ls29{letter-spacing:143.040000pt;}
.ls22{letter-spacing:291.288000pt;}
.ls24{letter-spacing:292.338000pt;}
.ls0{letter-spacing:493.139733pt;}
.wsc{word-spacing:-18.293333pt;}
.ws84{word-spacing:-14.634667pt;}
.ws19{word-spacing:-12.960000pt;}
.ws4{word-spacing:-11.664000pt;}
.ws51{word-spacing:-10.922667pt;}
.ws31{word-spacing:-10.240000pt;}
.ws18{word-spacing:-9.984000pt;}
.ws1e{word-spacing:-9.642667pt;}
.ws3{word-spacing:-9.557333pt;}
.wsd{word-spacing:-9.472000pt;}
.ws39{word-spacing:-9.360000pt;}
.ws54{word-spacing:-9.258667pt;}
.ws9c{word-spacing:-9.240000pt;}
.ws2{word-spacing:-9.072000pt;}
.ws1a{word-spacing:-8.192000pt;}
.ws52{word-spacing:-8.000000pt;}
.ws53{word-spacing:-7.904000pt;}
.ws4d{word-spacing:-7.680000pt;}
.ws21{word-spacing:-7.488000pt;}
.wsa{word-spacing:-7.466667pt;}
.ws1{word-spacing:-7.168000pt;}
.wsb{word-spacing:-6.690133pt;}
.ws20{word-spacing:-5.973333pt;}
.wse{word-spacing:-5.333333pt;}
.ws26{word-spacing:-4.821333pt;}
.ws86{word-spacing:-4.693333pt;}
.ws1b{word-spacing:-2.576000pt;}
.ws95{word-spacing:-2.440000pt;}
.ws9f{word-spacing:-1.680000pt;}
.ws14{word-spacing:-1.365333pt;}
.ws8{word-spacing:-1.232000pt;}
.ws85{word-spacing:-1.194667pt;}
.ws8b{word-spacing:-1.120000pt;}
.ws1f{word-spacing:-0.981333pt;}
.ws88{word-spacing:-0.960000pt;}
.ws96{word-spacing:-0.720000pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws8f{word-spacing:-0.360000pt;}
.ws16{word-spacing:-0.298667pt;}
.ws8e{word-spacing:-0.280000pt;}
.ws89{word-spacing:-0.160000pt;}
.ws92{word-spacing:-0.120000pt;}
.ws25{word-spacing:-0.059733pt;}
.ws24{word-spacing:-0.042667pt;}
.ws2c{word-spacing:-0.040000pt;}
.ws0{word-spacing:-0.037333pt;}
.ws28{word-spacing:-0.029867pt;}
.ws6{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.040000pt;}
.ws9{word-spacing:0.048000pt;}
.ws50{word-spacing:0.080000pt;}
.wsf{word-spacing:0.128000pt;}
.ws55{word-spacing:0.256000pt;}
.ws56{word-spacing:0.384000pt;}
.ws11{word-spacing:0.512000pt;}
.wsa2{word-spacing:0.600000pt;}
.ws91{word-spacing:0.720000pt;}
.ws8a{word-spacing:0.880000pt;}
.ws7{word-spacing:0.933333pt;}
.ws90{word-spacing:1.240000pt;}
.ws1d{word-spacing:1.280000pt;}
.ws4e{word-spacing:1.365333pt;}
.ws13{word-spacing:1.578667pt;}
.ws97{word-spacing:1.760000pt;}
.ws98{word-spacing:1.920000pt;}
.ws9a{word-spacing:2.680000pt;}
.ws10{word-spacing:2.730667pt;}
.ws8d{word-spacing:2.760000pt;}
.ws1c{word-spacing:3.200000pt;}
.ws87{word-spacing:4.080000pt;}
.ws9b{word-spacing:4.120000pt;}
.ws93{word-spacing:4.440000pt;}
.ws9d{word-spacing:4.600000pt;}
.ws12{word-spacing:4.693333pt;}
.ws99{word-spacing:4.800000pt;}
.ws29{word-spacing:4.957867pt;}
.ws22{word-spacing:5.023573pt;}
.ws15{word-spacing:5.120000pt;}
.wsa0{word-spacing:7.320000pt;}
.wsa1{word-spacing:7.840000pt;}
.ws27{word-spacing:8.479787pt;}
.ws94{word-spacing:8.520000pt;}
.ws23{word-spacing:8.553493pt;}
.ws8c{word-spacing:9.680000pt;}
.ws43{word-spacing:36.600000pt;}
.ws73{word-spacing:41.720000pt;}
.ws78{word-spacing:42.840000pt;}
.ws30{word-spacing:44.160000pt;}
.ws32{word-spacing:49.600000pt;}
.ws42{word-spacing:50.000000pt;}
.ws7b{word-spacing:50.720000pt;}
.ws38{word-spacing:53.160000pt;}
.ws74{word-spacing:57.400000pt;}
.ws3f{word-spacing:59.800000pt;}
.ws33{word-spacing:60.240000pt;}
.ws6d{word-spacing:63.520000pt;}
.ws70{word-spacing:66.040000pt;}
.ws81{word-spacing:68.840000pt;}
.ws62{word-spacing:72.040000pt;}
.ws3c{word-spacing:72.800000pt;}
.ws3d{word-spacing:73.200000pt;}
.ws34{word-spacing:73.400000pt;}
.ws65{word-spacing:73.520000pt;}
.ws6c{word-spacing:73.920000pt;}
.ws80{word-spacing:74.040000pt;}
.ws7a{word-spacing:74.840000pt;}
.ws66{word-spacing:75.560000pt;}
.ws68{word-spacing:75.960000pt;}
.ws36{word-spacing:76.960000pt;}
.ws60{word-spacing:77.360000pt;}
.ws35{word-spacing:79.240000pt;}
.ws7d{word-spacing:80.040000pt;}
.ws7c{word-spacing:80.320000pt;}
.ws83{word-spacing:80.600000pt;}
.ws61{word-spacing:81.320000pt;}
.ws37{word-spacing:83.440000pt;}
.ws69{word-spacing:83.960000pt;}
.ws3e{word-spacing:85.320000pt;}
.ws76{word-spacing:86.720000pt;}
.ws64{word-spacing:95.240000pt;}
.ws7f{word-spacing:97.120000pt;}
.ws6e{word-spacing:97.240000pt;}
.ws72{word-spacing:98.040000pt;}
.ws5f{word-spacing:98.760000pt;}
.ws41{word-spacing:100.160000pt;}
.ws5e{word-spacing:100.560000pt;}
.ws75{word-spacing:103.240000pt;}
.ws6a{word-spacing:107.960000pt;}
.ws2f{word-spacing:108.440000pt;}
.ws82{word-spacing:109.920000pt;}
.ws5b{word-spacing:118.440000pt;}
.ws5c{word-spacing:123.760000pt;}
.ws2a{word-spacing:125.800000pt;}
.ws71{word-spacing:131.440000pt;}
.ws4a{word-spacing:132.520000pt;}
.ws7e{word-spacing:133.120000pt;}
.ws2e{word-spacing:133.320000pt;}
.ws48{word-spacing:134.840000pt;}
.ws46{word-spacing:137.520000pt;}
.ws2b{word-spacing:149.240000pt;}
.ws6b{word-spacing:151.160000pt;}
.ws58{word-spacing:166.800000pt;}
.ws44{word-spacing:166.920000pt;}
.ws63{word-spacing:169.480000pt;}
.ws45{word-spacing:170.120000pt;}
.ws2d{word-spacing:172.200000pt;}
.ws77{word-spacing:188.200000pt;}
.ws59{word-spacing:190.000000pt;}
.ws5a{word-spacing:190.760000pt;}
.ws6f{word-spacing:220.280000pt;}
.ws5d{word-spacing:259.880000pt;}
.ws57{word-spacing:260.440000pt;}
.ws47{word-spacing:393.120000pt;}
.ws40{word-spacing:408.840000pt;}
.ws49{word-spacing:409.120000pt;}
.ws4b{word-spacing:416.640000pt;}
.ws79{word-spacing:462.440000pt;}
.ws67{word-spacing:517.480000pt;}
.ws3a{word-spacing:555.070400pt;}
.ws3b{word-spacing:591.962133pt;}
.ws4c{word-spacing:733.240000pt;}
.ws5{word-spacing:1192.912000pt;}
.ws17{word-spacing:2250.881067pt;}
._1{margin-left:-2688.358400pt;}
._4{margin-left:-12.000000pt;}
._d{margin-left:-10.930133pt;}
._c{margin-left:-9.508267pt;}
._14{margin-left:-5.993067pt;}
._10{margin-left:-4.648533pt;}
._b{margin-left:-3.737067pt;}
._a{margin-left:-2.603200pt;}
._0{margin-left:-1.064000pt;}
._2{width:1.773333pt;}
._7{width:3.374400pt;}
._6{width:4.392000pt;}
._8{width:5.332800pt;}
._e{width:6.377600pt;}
._f{width:7.293867pt;}
._3{width:8.400000pt;}
._5{width:9.360000pt;}
._66{width:11.388000pt;}
._11{width:12.443200pt;}
._12{width:13.377067pt;}
._3b{width:14.438400pt;}
._4e{width:15.514133pt;}
._15{width:16.405333pt;}
._67{width:20.196267pt;}
._13{width:21.435733pt;}
._65{width:25.588000pt;}
._9{width:29.496000pt;}
._19{width:38.748267pt;}
._18{width:42.428267pt;}
._1e{width:49.868267pt;}
._1d{width:54.348267pt;}
._51{width:55.748267pt;}
._35{width:60.440000pt;}
._1f{width:70.040000pt;}
._5e{width:73.760000pt;}
._5c{width:76.280000pt;}
._1b{width:78.988267pt;}
._20{width:83.640000pt;}
._5a{width:84.800000pt;}
._3d{width:87.468267pt;}
._31{width:89.480000pt;}
._5b{width:90.560000pt;}
._23{width:95.531733pt;}
._59{width:97.360000pt;}
._5f{width:98.400000pt;}
._54{width:99.480000pt;}
._45{width:105.480000pt;}
._44{width:106.960000pt;}
._48{width:109.000000pt;}
._29{width:110.400000pt;}
._27{width:112.680000pt;}
._2f{width:113.732800pt;}
._25{width:114.680000pt;}
._22{width:117.427200pt;}
._34{width:118.680000pt;}
._62{width:120.572800pt;}
._56{width:121.760000pt;}
._2d{width:125.600000pt;}
._2e{width:128.759467pt;}
._33{width:130.760000pt;}
._43{width:132.200000pt;}
._3f{width:133.400000pt;}
._61{width:136.347200pt;}
._41{width:138.120000pt;}
._55{width:141.680000pt;}
._32{width:145.000000pt;}
._57{width:146.400000pt;}
._24{width:147.760000pt;}
._40{width:151.360000pt;}
._42{width:153.200000pt;}
._53{width:156.016533pt;}
._1c{width:159.400000pt;}
._52{width:163.800000pt;}
._30{width:165.920000pt;}
._46{width:168.360000pt;}
._58{width:175.667200pt;}
._36{width:177.160000pt;}
._37{width:180.320533pt;}
._4a{width:181.960000pt;}
._1a{width:195.160000pt;}
._50{width:196.280000pt;}
._21{width:199.800000pt;}
._47{width:204.252267pt;}
._4b{width:238.040000pt;}
._3e{width:244.628267pt;}
._3c{width:266.262400pt;}
._16{width:369.586133pt;}
._26{width:403.080000pt;}
._2b{width:406.760000pt;}
._17{width:409.718400pt;}
._28{width:419.080000pt;}
._2c{width:420.440000pt;}
._2a{width:426.880000pt;}
._38{width:429.960000pt;}
._5d{width:441.480000pt;}
._39{width:443.640000pt;}
._60{width:449.320000pt;}
._63{width:464.680000pt;}
._64{width:473.320000pt;}
._4c{width:514.720000pt;}
._4d{width:516.520000pt;}
._4f{width:543.200000pt;}
._3a{width:780.360000pt;}
._49{width:1556.680000pt;}
.fsa{font-size:26.133333pt;}
.fs6{font-size:28.000000pt;}
.fsc{font-size:29.866667pt;}
.fse{font-size:30.000000pt;}
.fsb{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:51.146667pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.440000pt;}
.fs2{font-size:69.813333pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y129{bottom:9.198933pt;}
.y127{bottom:13.653467pt;}
.y121{bottom:13.653733pt;}
.y12d{bottom:21.012267pt;}
.y4{bottom:22.769067pt;}
.y12b{bottom:25.579200pt;}
.y126{bottom:32.013333pt;}
.y123{bottom:32.013600pt;}
.y3{bottom:34.773600pt;}
.y1{bottom:36.106400pt;}
.y2{bottom:38.373600pt;}
.y3d{bottom:56.770800pt;}
.y174{bottom:67.924000pt;}
.ydc{bottom:67.951067pt;}
.ya8{bottom:67.955867pt;}
.y1de{bottom:67.958800pt;}
.y1b1{bottom:68.232533pt;}
.y73{bottom:68.521200pt;}
.y101{bottom:68.689067pt;}
.y187{bottom:68.866000pt;}
.y3c{bottom:70.108133pt;}
.y14e{bottom:72.431867pt;}
.y247{bottom:73.820933pt;}
.y25e{bottom:73.821067pt;}
.y14d{bottom:81.931867pt;}
.y206{bottom:81.958800pt;}
.y173{bottom:82.590667pt;}
.ydb{bottom:85.284400pt;}
.ya7{bottom:85.289200pt;}
.y1dd{bottom:85.292133pt;}
.y1b0{bottom:85.565867pt;}
.y72{bottom:85.854533pt;}
.y100{bottom:86.022400pt;}
.y186{bottom:86.199333pt;}
.y246{bottom:87.820933pt;}
.y25d{bottom:87.821067pt;}
.y14c{bottom:95.931867pt;}
.y205{bottom:95.958800pt;}
.y172{bottom:97.257333pt;}
.y245{bottom:101.820933pt;}
.y25c{bottom:101.821067pt;}
.yda{bottom:102.617733pt;}
.ya6{bottom:102.622533pt;}
.y1dc{bottom:102.625467pt;}
.y1af{bottom:102.899200pt;}
.y71{bottom:103.187867pt;}
.y104{bottom:103.355733pt;}
.y18a{bottom:103.532667pt;}
.y14b{bottom:109.931867pt;}
.y204{bottom:109.958800pt;}
.y171{bottom:111.924000pt;}
.yff{bottom:112.022400pt;}
.y244{bottom:115.820933pt;}
.y25b{bottom:115.821067pt;}
.yd9{bottom:119.951067pt;}
.ya5{bottom:119.955867pt;}
.y1db{bottom:119.958800pt;}
.y1ae{bottom:120.232533pt;}
.y70{bottom:120.521200pt;}
.y103{bottom:120.689067pt;}
.y185{bottom:120.866000pt;}
.y203{bottom:123.958800pt;}
.y170{bottom:126.590667pt;}
.y243{bottom:129.820933pt;}
.y25a{bottom:129.821067pt;}
.y14a{bottom:131.931867pt;}
.ye2{bottom:137.284400pt;}
.ya4{bottom:137.289200pt;}
.y1da{bottom:137.292133pt;}
.y1ad{bottom:137.565867pt;}
.y6f{bottom:137.854533pt;}
.y202{bottom:137.958800pt;}
.y102{bottom:138.022400pt;}
.y189{bottom:138.199333pt;}
.y16f{bottom:141.257333pt;}
.y242{bottom:143.820933pt;}
.y259{bottom:143.821067pt;}
.yd8{bottom:145.951067pt;}
.y149{bottom:150.638267pt;}
.y201{bottom:151.958800pt;}
.ye1{bottom:154.617733pt;}
.ya3{bottom:154.622533pt;}
.y1d9{bottom:154.625467pt;}
.y1ac{bottom:154.899200pt;}
.y6e{bottom:155.187867pt;}
.yfe{bottom:155.355733pt;}
.y188{bottom:155.532667pt;}
.y241{bottom:157.820933pt;}
.y258{bottom:157.821067pt;}
.y25{bottom:165.788533pt;}
.y200{bottom:165.958800pt;}
.y148{bottom:169.358267pt;}
.y240{bottom:171.820933pt;}
.y257{bottom:171.821067pt;}
.ye0{bottom:171.951067pt;}
.ya2{bottom:171.955867pt;}
.y1d8{bottom:171.958800pt;}
.y1ab{bottom:172.232533pt;}
.y6d{bottom:172.521200pt;}
.yfd{bottom:172.689067pt;}
.y184{bottom:172.866000pt;}
.y1ff{bottom:179.958800pt;}
.yd7{bottom:180.617733pt;}
.y24{bottom:183.121867pt;}
.y147{bottom:183.358267pt;}
.y23f{bottom:185.820933pt;}
.y256{bottom:185.821067pt;}
.ydf{bottom:189.284400pt;}
.ya1{bottom:189.289200pt;}
.y1d7{bottom:189.292133pt;}
.y1aa{bottom:189.565867pt;}
.y6c{bottom:189.854533pt;}
.yfc{bottom:190.022400pt;}
.y183{bottom:190.199333pt;}
.y1fe{bottom:193.958800pt;}
.y23e{bottom:199.820933pt;}
.y255{bottom:199.821067pt;}
.y23{bottom:200.455200pt;}
.y146{bottom:202.078267pt;}
.yde{bottom:206.617733pt;}
.ya0{bottom:206.622533pt;}
.y1d6{bottom:206.625467pt;}
.y1a9{bottom:206.899200pt;}
.y6b{bottom:207.187867pt;}
.yfb{bottom:207.355733pt;}
.y182{bottom:207.532667pt;}
.y1fd{bottom:207.958800pt;}
.y23d{bottom:213.820933pt;}
.y254{bottom:213.821067pt;}
.y145{bottom:220.798267pt;}
.y1fc{bottom:221.958800pt;}
.yd6{bottom:223.951067pt;}
.y9f{bottom:223.955867pt;}
.y1d5{bottom:223.958800pt;}
.y1a8{bottom:224.232533pt;}
.y6a{bottom:224.521200pt;}
.yfa{bottom:224.689067pt;}
.y181{bottom:224.866000pt;}
.y23c{bottom:227.820933pt;}
.y253{bottom:227.821067pt;}
.y22{bottom:232.342667pt;}
.y1fb{bottom:235.958800pt;}
.y144{bottom:239.511467pt;}
.yd5{bottom:241.284400pt;}
.y9e{bottom:241.289200pt;}
.y1d4{bottom:241.292133pt;}
.y1a7{bottom:241.565867pt;}
.y23b{bottom:241.820933pt;}
.y252{bottom:241.821067pt;}
.y69{bottom:241.854533pt;}
.yf9{bottom:242.022400pt;}
.y180{bottom:242.199333pt;}
.y1fa{bottom:249.958800pt;}
.y21{bottom:252.346667pt;}
.y23a{bottom:255.820933pt;}
.y251{bottom:255.821067pt;}
.y143{bottom:258.231467pt;}
.yd4{bottom:258.617733pt;}
.y9d{bottom:258.622533pt;}
.y1d3{bottom:258.625467pt;}
.y1a6{bottom:258.899200pt;}
.y68{bottom:259.187867pt;}
.yf8{bottom:259.355733pt;}
.y17f{bottom:259.532667pt;}
.y1f9{bottom:263.958800pt;}
.y239{bottom:269.820933pt;}
.y250{bottom:269.821067pt;}
.y20{bottom:272.350667pt;}
.yd3{bottom:275.951067pt;}
.y9c{bottom:275.955867pt;}
.y1d2{bottom:275.958800pt;}
.y1a5{bottom:276.232533pt;}
.y67{bottom:276.521200pt;}
.yf7{bottom:276.689067pt;}
.y17e{bottom:276.866000pt;}
.y142{bottom:276.948000pt;}
.y1f8{bottom:277.958800pt;}
.y238{bottom:283.820933pt;}
.y24f{bottom:283.821067pt;}
.y1f7{bottom:291.958800pt;}
.y1f{bottom:292.354667pt;}
.yd2{bottom:293.284400pt;}
.y9b{bottom:293.289200pt;}
.y1d1{bottom:293.292133pt;}
.y1a4{bottom:293.565867pt;}
.y66{bottom:293.854533pt;}
.yf6{bottom:294.022400pt;}
.y17d{bottom:294.199333pt;}
.y141{bottom:295.654400pt;}
.y237{bottom:297.820933pt;}
.y24e{bottom:297.821067pt;}
.y1f6{bottom:305.958800pt;}
.yd1{bottom:310.617733pt;}
.y9a{bottom:310.622533pt;}
.y1d0{bottom:310.625467pt;}
.y1a3{bottom:310.899200pt;}
.y65{bottom:311.187867pt;}
.yf5{bottom:311.355733pt;}
.y17c{bottom:311.532667pt;}
.y236{bottom:311.820933pt;}
.y24d{bottom:311.821067pt;}
.y1e{bottom:312.358667pt;}
.y140{bottom:314.374400pt;}
.y1f5{bottom:319.958800pt;}
.y235{bottom:325.820933pt;}
.y24c{bottom:325.821067pt;}
.yd0{bottom:327.951067pt;}
.y99{bottom:327.955867pt;}
.y1cf{bottom:327.958800pt;}
.y1a2{bottom:328.232533pt;}
.y13f{bottom:328.374400pt;}
.y64{bottom:328.521200pt;}
.yf4{bottom:328.689067pt;}
.y17b{bottom:328.866000pt;}
.y1d{bottom:332.362667pt;}
.y1f4{bottom:333.958800pt;}
.y234{bottom:339.820933pt;}
.y24b{bottom:339.821067pt;}
.ycf{bottom:345.284400pt;}
.y98{bottom:345.289200pt;}
.y1ce{bottom:345.292133pt;}
.y1a1{bottom:345.565867pt;}
.y63{bottom:345.854533pt;}
.yf3{bottom:346.022400pt;}
.y17a{bottom:346.199333pt;}
.y13e{bottom:347.094400pt;}
.y1f3{bottom:347.958800pt;}
.y1c{bottom:352.366667pt;}
.y233{bottom:353.820933pt;}
.y24a{bottom:353.821067pt;}
.y1f2{bottom:361.958800pt;}
.yce{bottom:362.617733pt;}
.y97{bottom:362.622533pt;}
.y1cd{bottom:362.625467pt;}
.y1a0{bottom:362.899200pt;}
.y62{bottom:363.187867pt;}
.yf2{bottom:363.355733pt;}
.y179{bottom:363.532667pt;}
.y13d{bottom:365.814400pt;}
.y232{bottom:367.820933pt;}
.y249{bottom:367.821067pt;}
.y1b{bottom:372.370667pt;}
.y1f1{bottom:375.958800pt;}
.ycd{bottom:379.951067pt;}
.y96{bottom:379.955867pt;}
.y1cc{bottom:379.958800pt;}
.y19f{bottom:380.232533pt;}
.y61{bottom:380.521200pt;}
.yf1{bottom:380.689067pt;}
.y178{bottom:380.866000pt;}
.y231{bottom:381.820933pt;}
.y248{bottom:381.821067pt;}
.y13c{bottom:384.527600pt;}
.y1f0{bottom:389.958800pt;}
.y1a{bottom:392.374667pt;}
.y230{bottom:395.820933pt;}
.ycc{bottom:397.284400pt;}
.y95{bottom:397.289200pt;}
.y1cb{bottom:397.292133pt;}
.y19e{bottom:397.565867pt;}
.y60{bottom:397.854533pt;}
.yf0{bottom:398.022400pt;}
.y177{bottom:398.199333pt;}
.y13b{bottom:403.247600pt;}
.y1ef{bottom:403.958800pt;}
.y22f{bottom:409.820933pt;}
.y19{bottom:412.378667pt;}
.ycb{bottom:414.617733pt;}
.y94{bottom:414.622533pt;}
.y1ca{bottom:414.625467pt;}
.y19d{bottom:414.899200pt;}
.y5f{bottom:415.187867pt;}
.yef{bottom:415.355733pt;}
.y176{bottom:415.532667pt;}
.y1ee{bottom:417.958800pt;}
.y13a{bottom:421.964133pt;}
.y22e{bottom:423.820933pt;}
.yca{bottom:431.951067pt;}
.y93{bottom:431.955867pt;}
.y16e{bottom:431.958800pt;}
.y19c{bottom:432.232533pt;}
.y18{bottom:432.382667pt;}
.y5e{bottom:432.521200pt;}
.yee{bottom:432.689067pt;}
.y175{bottom:432.866000pt;}
.y22d{bottom:437.820933pt;}
.y139{bottom:440.670533pt;}
.y1ed{bottom:445.958800pt;}
.yc9{bottom:449.284400pt;}
.y92{bottom:449.289200pt;}
.y16d{bottom:449.292133pt;}
.y19b{bottom:449.565867pt;}
.y5d{bottom:449.854533pt;}
.yed{bottom:450.022400pt;}
.y22c{bottom:451.820933pt;}
.y17{bottom:452.386667pt;}
.y138{bottom:459.390533pt;}
.y1ec{bottom:459.958800pt;}
.y22b{bottom:465.820933pt;}
.yc8{bottom:466.617733pt;}
.y91{bottom:466.622533pt;}
.y16c{bottom:466.625467pt;}
.y19a{bottom:466.899200pt;}
.y5c{bottom:467.187867pt;}
.yec{bottom:467.355733pt;}
.y16{bottom:472.390667pt;}
.y137{bottom:473.390533pt;}
.y199{bottom:473.452533pt;}
.y1eb{bottom:473.958800pt;}
.y22a{bottom:479.820933pt;}
.yc7{bottom:483.951067pt;}
.y90{bottom:483.955867pt;}
.y16b{bottom:483.958800pt;}
.y5b{bottom:484.521200pt;}
.yeb{bottom:484.689067pt;}
.y37{bottom:486.125200pt;}
.y1ea{bottom:487.958800pt;}
.y198{bottom:488.119200pt;}
.y136{bottom:492.110533pt;}
.y15{bottom:492.394667pt;}
.y229{bottom:493.820933pt;}
.y36{bottom:499.462533pt;}
.yc6{bottom:501.284400pt;}
.y8f{bottom:501.289200pt;}
.y16a{bottom:501.292133pt;}
.y5a{bottom:501.854533pt;}
.y1e9{bottom:501.958800pt;}
.yea{bottom:502.022400pt;}
.y1c9{bottom:502.097733pt;}
.y197{bottom:502.785867pt;}
.y228{bottom:507.820933pt;}
.y135{bottom:510.830533pt;}
.y14{bottom:512.398667pt;}
.y35{bottom:512.799867pt;}
.y1e8{bottom:515.958800pt;}
.y1c8{bottom:516.097733pt;}
.y196{bottom:517.452533pt;}
.yc5{bottom:518.617733pt;}
.y8e{bottom:518.622533pt;}
.y169{bottom:518.625467pt;}
.y59{bottom:519.187867pt;}
.ye9{bottom:519.355733pt;}
.y227{bottom:521.820933pt;}
.y134{bottom:529.546933pt;}
.y1e7{bottom:529.958800pt;}
.y13{bottom:532.402667pt;}
.y226{bottom:535.820933pt;}
.yc4{bottom:535.951067pt;}
.y8d{bottom:535.955867pt;}
.y168{bottom:535.958800pt;}
.y58{bottom:536.521200pt;}
.ye8{bottom:536.689067pt;}
.y1c7{bottom:538.097733pt;}
.y34{bottom:539.465200pt;}
.y1e6{bottom:543.958800pt;}
.y133{bottom:548.266933pt;}
.y225{bottom:549.820933pt;}
.y12{bottom:552.406667pt;}
.y33{bottom:552.802533pt;}
.yc3{bottom:553.284400pt;}
.y8c{bottom:553.289200pt;}
.y167{bottom:553.292133pt;}
.y57{bottom:553.854533pt;}
.ye7{bottom:554.022400pt;}
.y1c6{bottom:556.817733pt;}
.y224{bottom:563.820933pt;}
.y32{bottom:566.139867pt;}
.y1e5{bottom:566.614800pt;}
.y132{bottom:569.846933pt;}
.y130{bottom:569.847067pt;}
.yc2{bottom:570.617733pt;}
.y8b{bottom:570.622533pt;}
.y166{bottom:570.625467pt;}
.y56{bottom:571.187867pt;}
.ye6{bottom:571.355733pt;}
.y11{bottom:572.410667pt;}
.y1c5{bottom:575.537733pt;}
.y223{bottom:577.820933pt;}
.yc1{bottom:587.951067pt;}
.y8a{bottom:587.955867pt;}
.y165{bottom:587.958800pt;}
.y55{bottom:588.521200pt;}
.ye5{bottom:588.689067pt;}
.y1c4{bottom:589.537733pt;}
.y222{bottom:591.820933pt;}
.y10{bottom:592.414667pt;}
.y31{bottom:592.805200pt;}
.y131{bottom:594.296933pt;}
.yc0{bottom:605.284400pt;}
.y89{bottom:605.289200pt;}
.y164{bottom:605.292133pt;}
.y221{bottom:605.820933pt;}
.y54{bottom:605.854533pt;}
.ye4{bottom:606.022400pt;}
.y30{bottom:606.142533pt;}
.y1e4{bottom:607.948133pt;}
.y1c3{bottom:608.257733pt;}
.yf{bottom:612.418667pt;}
.y12f{bottom:619.213600pt;}
.y2f{bottom:619.479867pt;}
.y220{bottom:619.820933pt;}
.ybf{bottom:622.617733pt;}
.y88{bottom:622.622533pt;}
.y163{bottom:622.625467pt;}
.y53{bottom:623.187867pt;}
.ye3{bottom:623.355733pt;}
.y1e3{bottom:625.281467pt;}
.y1c2{bottom:626.977733pt;}
.ye{bottom:632.422667pt;}
.y2e{bottom:632.817200pt;}
.y21f{bottom:633.820933pt;}
.y12e{bottom:633.880267pt;}
.ybe{bottom:639.951067pt;}
.y87{bottom:639.955867pt;}
.y162{bottom:639.958800pt;}
.y52{bottom:640.521200pt;}
.y1e2{bottom:642.614800pt;}
.y1c1{bottom:645.697733pt;}
.y2d{bottom:646.154533pt;}
.y21e{bottom:647.820933pt;}
.y276{bottom:647.828800pt;}
.yd{bottom:652.426667pt;}
.y10f{bottom:654.609600pt;}
.ybd{bottom:657.284400pt;}
.y86{bottom:657.289200pt;}
.y161{bottom:657.292133pt;}
.y51{bottom:657.854533pt;}
.y1e1{bottom:659.948133pt;}
.y21d{bottom:661.820933pt;}
.y275{bottom:661.828800pt;}
.y27a{bottom:662.508800pt;}
.y1c0{bottom:664.417733pt;}
.y10e{bottom:669.276267pt;}
.yc{bottom:672.430667pt;}
.y2c{bottom:672.819867pt;}
.ybc{bottom:674.617733pt;}
.y85{bottom:674.622533pt;}
.y160{bottom:674.625467pt;}
.y50{bottom:675.187867pt;}
.y21c{bottom:675.820933pt;}
.y274{bottom:675.828800pt;}
.y279{bottom:675.838800pt;}
.y1e0{bottom:677.281467pt;}
.y113{bottom:678.551067pt;}
.y11f{bottom:679.017600pt;}
.y1bf{bottom:683.137733pt;}
.y10d{bottom:683.942933pt;}
.y2b{bottom:686.157200pt;}
.y278{bottom:689.168800pt;}
.y21b{bottom:689.820933pt;}
.y273{bottom:689.828800pt;}
.ybb{bottom:691.951067pt;}
.y84{bottom:691.955867pt;}
.y15f{bottom:691.958800pt;}
.yb{bottom:692.434667pt;}
.y4f{bottom:692.521200pt;}
.y112{bottom:695.884400pt;}
.y11e{bottom:696.350933pt;}
.y10c{bottom:698.609600pt;}
.y1be{bottom:701.857733pt;}
.y277{bottom:702.498800pt;}
.y1df{bottom:703.286800pt;}
.y2a{bottom:703.694533pt;}
.y21a{bottom:703.820933pt;}
.y272{bottom:703.828800pt;}
.yba{bottom:709.284400pt;}
.y83{bottom:709.289200pt;}
.y15e{bottom:709.292133pt;}
.y4e{bottom:709.854533pt;}
.ya{bottom:712.438667pt;}
.y111{bottom:713.217733pt;}
.y10b{bottom:713.276267pt;}
.y1bd{bottom:715.857733pt;}
.y29{bottom:717.490533pt;}
.y219{bottom:717.820933pt;}
.y271{bottom:717.828800pt;}
.yb9{bottom:726.617733pt;}
.y82{bottom:726.622533pt;}
.y15d{bottom:726.625467pt;}
.y4d{bottom:727.187867pt;}
.y10a{bottom:727.942933pt;}
.y110{bottom:730.553733pt;}
.y11d{bottom:731.017600pt;}
.y218{bottom:731.820933pt;}
.y270{bottom:731.828800pt;}
.y9{bottom:732.442667pt;}
.y1bc{bottom:734.577733pt;}
.y28{bottom:735.027867pt;}
.y109{bottom:742.609600pt;}
.yb8{bottom:743.951067pt;}
.y81{bottom:743.955867pt;}
.y15c{bottom:743.958800pt;}
.y4c{bottom:744.521200pt;}
.y217{bottom:745.820933pt;}
.y26f{bottom:745.828800pt;}
.y27{bottom:748.823867pt;}
.y120{bottom:750.550667pt;}
.y8{bottom:752.442667pt;}
.y124{bottom:752.708400pt;}
.y1bb{bottom:753.297733pt;}
.y108{bottom:757.276267pt;}
.y216{bottom:759.820933pt;}
.y26e{bottom:759.828800pt;}
.yb7{bottom:761.284400pt;}
.y80{bottom:761.289200pt;}
.y15b{bottom:761.292133pt;}
.y122{bottom:761.528267pt;}
.y4b{bottom:761.854533pt;}
.y125{bottom:764.204133pt;}
.y26{bottom:766.361200pt;}
.y107{bottom:771.942933pt;}
.y1ba{bottom:772.017733pt;}
.y215{bottom:773.820933pt;}
.y26d{bottom:773.828800pt;}
.yb6{bottom:778.617733pt;}
.y7f{bottom:778.622533pt;}
.y15a{bottom:778.625467pt;}
.y4a{bottom:779.187867pt;}
.y11c{bottom:784.350933pt;}
.y106{bottom:786.609600pt;}
.ydd{bottom:787.284400pt;}
.y195{bottom:787.787733pt;}
.y214{bottom:787.820933pt;}
.y26c{bottom:787.828800pt;}
.y1b9{bottom:790.737733pt;}
.yb5{bottom:795.951067pt;}
.y7e{bottom:795.955867pt;}
.y159{bottom:795.958800pt;}
.y49{bottom:796.521200pt;}
.y105{bottom:801.276267pt;}
.y11b{bottom:801.684267pt;}
.y194{bottom:801.787733pt;}
.y213{bottom:801.820933pt;}
.y26b{bottom:801.828800pt;}
.y3b{bottom:808.609333pt;}
.y1b8{bottom:809.457733pt;}
.yb4{bottom:813.284400pt;}
.y7d{bottom:813.289200pt;}
.y158{bottom:813.292133pt;}
.y48{bottom:813.854533pt;}
.y212{bottom:815.820933pt;}
.y26a{bottom:815.828800pt;}
.y11a{bottom:819.017600pt;}
.y193{bottom:823.787733pt;}
.y1b7{bottom:828.177733pt;}
.y211{bottom:829.820933pt;}
.y269{bottom:829.828800pt;}
.yb3{bottom:830.617733pt;}
.y7c{bottom:830.622533pt;}
.y157{bottom:830.625467pt;}
.y47{bottom:831.187867pt;}
.y119{bottom:836.343067pt;}
.y1b6{bottom:842.177733pt;}
.y192{bottom:842.507733pt;}
.y210{bottom:843.820933pt;}
.y268{bottom:843.828800pt;}
.yb2{bottom:847.951067pt;}
.y7b{bottom:847.955867pt;}
.y156{bottom:847.958800pt;}
.y46{bottom:848.521200pt;}
.y20f{bottom:857.820933pt;}
.y267{bottom:857.828800pt;}
.y128{bottom:859.685333pt;}
.y3a{bottom:860.005600pt;}
.y1b5{bottom:860.897733pt;}
.y191{bottom:861.227733pt;}
.yb1{bottom:865.284400pt;}
.y7a{bottom:865.289200pt;}
.y155{bottom:865.292133pt;}
.y45{bottom:865.854533pt;}
.y12a{bottom:866.208133pt;}
.y12c{bottom:868.877333pt;}
.y20e{bottom:871.820933pt;}
.y266{bottom:871.828800pt;}
.y1b4{bottom:879.617733pt;}
.y190{bottom:879.947733pt;}
.yb0{bottom:882.617733pt;}
.y79{bottom:882.622533pt;}
.y154{bottom:882.625467pt;}
.y44{bottom:883.187867pt;}
.y20d{bottom:885.820933pt;}
.y265{bottom:885.828800pt;}
.y39{bottom:890.677600pt;}
.y1b3{bottom:898.337733pt;}
.y18f{bottom:898.667733pt;}
.y20c{bottom:899.820933pt;}
.y264{bottom:899.828800pt;}
.y118{bottom:899.948400pt;}
.yaf{bottom:899.951067pt;}
.y78{bottom:899.955867pt;}
.y153{bottom:899.958800pt;}
.y43{bottom:900.521200pt;}
.y20b{bottom:913.820933pt;}
.y263{bottom:913.828800pt;}
.y117{bottom:917.281733pt;}
.yae{bottom:917.284400pt;}
.y77{bottom:917.289200pt;}
.y152{bottom:917.292133pt;}
.y42{bottom:917.854533pt;}
.y18e{bottom:919.917733pt;}
.y18c{bottom:919.917867pt;}
.y20a{bottom:927.820933pt;}
.y262{bottom:927.828800pt;}
.y116{bottom:934.615067pt;}
.yad{bottom:934.617733pt;}
.y76{bottom:934.622533pt;}
.y151{bottom:934.625467pt;}
.y38{bottom:938.677600pt;}
.y209{bottom:941.820933pt;}
.y261{bottom:941.828800pt;}
.y18d{bottom:944.367733pt;}
.y115{bottom:951.948400pt;}
.yac{bottom:951.951067pt;}
.y75{bottom:951.955867pt;}
.y150{bottom:951.958800pt;}
.y41{bottom:952.521200pt;}
.y208{bottom:955.820933pt;}
.y260{bottom:955.828800pt;}
.y114{bottom:969.281733pt;}
.y18b{bottom:969.282000pt;}
.yab{bottom:969.284400pt;}
.y1b2{bottom:969.288533pt;}
.y74{bottom:969.289200pt;}
.y14f{bottom:969.292133pt;}
.y207{bottom:969.820933pt;}
.y25f{bottom:969.828800pt;}
.y7{bottom:974.732133pt;}
.y6{bottom:991.394800pt;}
.y5{bottom:994.061467pt;}
.yaa{bottom:1001.497733pt;}
.y3f{bottom:1001.498400pt;}
.y40{bottom:1003.789333pt;}
.ya9{bottom:1003.897733pt;}
.y3e{bottom:1003.898400pt;}
.h1c{height:2.816000pt;}
.hc{height:21.462000pt;}
.h1d{height:21.802667pt;}
.h2b{height:22.995000pt;}
.h20{height:26.265333pt;}
.h13{height:27.048000pt;}
.h11{height:27.178667pt;}
.h15{height:27.503467pt;}
.ha{height:27.738667pt;}
.hd{height:27.757333pt;}
.h5{height:28.616000pt;}
.h2{height:28.765333pt;}
.h2e{height:29.460000pt;}
.h22{height:29.720000pt;}
.h23{height:29.740000pt;}
.h28{height:30.660000pt;}
.h1a{height:31.146667pt;}
.h2d{height:31.701333pt;}
.h2c{height:31.722667pt;}
.h19{height:32.800000pt;}
.h1f{height:33.109333pt;}
.h6{height:33.805333pt;}
.h4{height:33.947200pt;}
.he{height:35.352000pt;}
.h24{height:36.220000pt;}
.h2f{height:36.220533pt;}
.hb{height:38.634667pt;}
.h18{height:38.666133pt;}
.h3{height:39.203920pt;}
.h8{height:39.626667pt;}
.h1e{height:40.216533pt;}
.h14{height:40.880000pt;}
.h25{height:40.996067pt;}
.h1b{height:40.997867pt;}
.h2a{height:41.008333pt;}
.h29{height:41.008867pt;}
.h21{height:41.851200pt;}
.h9{height:43.464000pt;}
.h17{height:43.728533pt;}
.h27{height:45.165000pt;}
.h26{height:45.206067pt;}
.h16{height:48.176000pt;}
.h12{height:53.503520pt;}
.h7{height:53.511920pt;}
.h10{height:64.464533pt;}
.hf{height:71.376000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w3{width:230.186667pt;}
.w2{width:269.533333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:59.678667pt;}
.x1{left:61.984267pt;}
.x23{left:65.049867pt;}
.x1d{left:69.984267pt;}
.x25{left:75.053067pt;}
.xd{left:77.119067pt;}
.x10{left:79.290400pt;}
.x26{left:80.383067pt;}
.x1f{left:85.324267pt;}
.x13{left:89.180000pt;}
.x2{left:93.026400pt;}
.x3{left:95.364267pt;}
.x4{left:104.650933pt;}
.x24{left:161.433067pt;}
.x1e{left:163.601067pt;}
.x5{left:168.975733pt;}
.x6{left:171.313600pt;}
.x14{left:179.636133pt;}
.x15{left:192.655867pt;}
.x20{left:204.611467pt;}
.x16{left:218.987867pt;}
.x1c{left:221.894000pt;}
.x18{left:258.348400pt;}
.x7{left:278.646000pt;}
.x8{left:280.983867pt;}
.x17{left:318.560133pt;}
.xe{left:407.753733pt;}
.x11{left:409.967733pt;}
.x27{left:423.784533pt;}
.xf{left:425.087067pt;}
.x12{left:427.298933pt;}
.x19{left:456.892000pt;}
.x1a{left:460.253600pt;}
.x1b{left:534.017867pt;}
.x21{left:542.537067pt;}
.x22{left:581.386267pt;}
.x9{left:677.142800pt;}
.xa{left:698.740133pt;}
.xb{left:700.739200pt;}
}




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