
    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_6c2c795047ceeede27b059b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_6f011a934495618602cff11d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996094;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_b969052f247f18df17f2b267.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002441;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_74b59a53157a174148b2c101.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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_916e945ce2af1d22b9ceac18.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_3cab160342c73744920c53ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_26a18e21f71d90a30c1f08ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.021484;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_aff6975146b9617d3d4703df.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_bd75c551b436d9aabc31d937.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.996094;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_b24bc8eb28ebe650d4ef8711.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.909180;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_5e6a3fae77c41973950df46a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.018555;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_40dc46995eeb5a90f0706590.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_6f011a934495618602cff11d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.996094;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_0a0cde813c57fdfaac55c1e5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.002441;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);}
.v7{vertical-align:-51.023400px;}
.v3{vertical-align:-23.976000px;}
.v1{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:27.985800px;}
.v5{vertical-align:31.800600px;}
.v8{vertical-align:51.023400px;}
.v6{vertical-align:83.423400px;}
.ls57{letter-spacing:-5.460000px;}
.ls6e{letter-spacing:-3.900000px;}
.ls7a{letter-spacing:-2.868360px;}
.ls7{letter-spacing:-1.080000px;}
.ls53{letter-spacing:-1.020000px;}
.ls44{letter-spacing:-0.960000px;}
.ls56{letter-spacing:-0.900000px;}
.ls60{letter-spacing:-0.840000px;}
.ls28{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.720000px;}
.ls3a{letter-spacing:-0.660000px;}
.ls43{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.480000px;}
.ls29{letter-spacing:-0.420000px;}
.ls79{letter-spacing:-0.384780px;}
.lsa{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.300000px;}
.ls27{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.120000px;}
.ls24{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000600px;}
.ls65{letter-spacing:0.000840px;}
.ls5f{letter-spacing:0.001440px;}
.ls48{letter-spacing:0.002340px;}
.ls51{letter-spacing:0.002940px;}
.ls5e{letter-spacing:0.007680px;}
.ls6d{letter-spacing:0.007860px;}
.ls32{letter-spacing:0.009000px;}
.ls5d{letter-spacing:0.009240px;}
.ls5a{letter-spacing:0.040200px;}
.ls5c{letter-spacing:0.040800px;}
.ls5b{letter-spacing:0.050400px;}
.ls2{letter-spacing:0.060000px;}
.ls1a{letter-spacing:0.120000px;}
.ls64{letter-spacing:0.135480px;}
.ls63{letter-spacing:0.137640px;}
.ls81{letter-spacing:0.142200px;}
.lsc{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.282000px;}
.lsd{letter-spacing:0.300000px;}
.ls71{letter-spacing:0.327600px;}
.ls6f{letter-spacing:0.348600px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.420000px;}
.ls66{letter-spacing:0.431400px;}
.ls62{letter-spacing:0.448200px;}
.ls70{letter-spacing:0.466800px;}
.ls22{letter-spacing:0.480000px;}
.ls61{letter-spacing:0.484800px;}
.ls41{letter-spacing:0.503340px;}
.lsf{letter-spacing:0.540000px;}
.ls58{letter-spacing:0.555000px;}
.ls19{letter-spacing:0.570000px;}
.lse{letter-spacing:0.600000px;}
.ls77{letter-spacing:0.629640px;}
.ls31{letter-spacing:0.634800px;}
.ls17{letter-spacing:0.660000px;}
.ls2f{letter-spacing:0.720000px;}
.ls4a{letter-spacing:0.780000px;}
.ls45{letter-spacing:0.814140px;}
.ls40{letter-spacing:0.840000px;}
.ls68{letter-spacing:0.859200px;}
.ls8{letter-spacing:0.900000px;}
.ls14{letter-spacing:0.924000px;}
.ls78{letter-spacing:0.944460px;}
.ls75{letter-spacing:0.954000px;}
.ls20{letter-spacing:0.960000px;}
.ls1b{letter-spacing:1.020000px;}
.ls37{letter-spacing:1.080000px;}
.ls7e{letter-spacing:1.117200px;}
.ls21{letter-spacing:1.140000px;}
.ls4{letter-spacing:1.200000px;}
.ls69{letter-spacing:1.213200px;}
.ls7d{letter-spacing:1.260000px;}
.ls16{letter-spacing:1.320000px;}
.ls10{letter-spacing:1.380000px;}
.ls7c{letter-spacing:1.396800px;}
.ls33{letter-spacing:1.440000px;}
.ls59{letter-spacing:1.465200px;}
.ls1d{letter-spacing:1.500000px;}
.ls3c{letter-spacing:1.530000px;}
.ls18{letter-spacing:1.560000px;}
.ls2b{letter-spacing:1.620000px;}
.ls11{letter-spacing:1.680000px;}
.ls6b{letter-spacing:1.740000px;}
.ls7f{letter-spacing:1.800000px;}
.ls50{letter-spacing:1.860000px;}
.ls2e{letter-spacing:1.920000px;}
.ls4f{letter-spacing:1.980000px;}
.ls15{letter-spacing:2.040000px;}
.ls6a{letter-spacing:2.100000px;}
.ls39{letter-spacing:2.160000px;}
.ls36{letter-spacing:2.220000px;}
.ls12{letter-spacing:2.280000px;}
.ls3b{letter-spacing:2.340000px;}
.ls7b{letter-spacing:2.400000px;}
.ls2a{letter-spacing:2.460000px;}
.ls55{letter-spacing:2.520000px;}
.ls3f{letter-spacing:2.580000px;}
.ls67{letter-spacing:2.640000px;}
.ls46{letter-spacing:2.700000px;}
.ls4b{letter-spacing:2.760000px;}
.ls1c{letter-spacing:2.820000px;}
.ls1e{letter-spacing:2.880000px;}
.ls76{letter-spacing:2.940000px;}
.ls82{letter-spacing:2.983200px;}
.ls2c{letter-spacing:3.060000px;}
.ls4e{letter-spacing:3.120000px;}
.ls34{letter-spacing:3.180000px;}
.ls3e{letter-spacing:3.240000px;}
.ls6c{letter-spacing:3.300000px;}
.ls49{letter-spacing:3.360000px;}
.ls87{letter-spacing:3.540000px;}
.ls47{letter-spacing:3.720000px;}
.ls30{letter-spacing:3.840000px;}
.ls85{letter-spacing:3.900000px;}
.ls13{letter-spacing:3.960000px;}
.ls2d{letter-spacing:4.020000px;}
.ls3d{letter-spacing:4.140000px;}
.ls54{letter-spacing:4.200000px;}
.ls80{letter-spacing:4.260000px;}
.ls86{letter-spacing:4.320000px;}
.ls8e{letter-spacing:4.620000px;}
.ls4c{letter-spacing:4.680000px;}
.ls84{letter-spacing:4.860000px;}
.ls91{letter-spacing:5.040000px;}
.ls3{letter-spacing:7.056000px;}
.ls8d{letter-spacing:7.201200px;}
.ls83{letter-spacing:7.398000px;}
.ls90{letter-spacing:7.511400px;}
.ls4d{letter-spacing:8.160000px;}
.ls72{letter-spacing:8.220000px;}
.ls8b{letter-spacing:8.820000px;}
.ls89{letter-spacing:8.940000px;}
.ls8a{letter-spacing:10.019400px;}
.ls8f{letter-spacing:10.834800px;}
.ls8c{letter-spacing:11.040000px;}
.ls74{letter-spacing:12.720000px;}
.ls73{letter-spacing:24.738600px;}
.ls88{letter-spacing:69.900000px;}
.ls52{letter-spacing:216.023400px;}
.ls42{letter-spacing:602.797800px;}
.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;}
}
.wsa7{word-spacing:-26.040000px;}
.wsa6{word-spacing:-23.940000px;}
.ws86{word-spacing:-23.220000px;}
.wsb0{word-spacing:-18.360000px;}
.ws51{word-spacing:-18.240000px;}
.wsa8{word-spacing:-17.520000px;}
.ws80{word-spacing:-16.740000px;}
.wsa5{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.500000px;}
.wsb1{word-spacing:-16.140000px;}
.ws16{word-spacing:-15.924000px;}
.ws53{word-spacing:-15.600000px;}
.ws9d{word-spacing:-15.360000px;}
.ws8f{word-spacing:-15.300000px;}
.ws7a{word-spacing:-15.240000px;}
.ws90{word-spacing:-15.180000px;}
.ws17{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws9b{word-spacing:-14.940000px;}
.ws81{word-spacing:-14.880000px;}
.ws91{word-spacing:-14.820000px;}
.ws41{word-spacing:-14.760000px;}
.wsa2{word-spacing:-14.640000px;}
.ws76{word-spacing:-14.580000px;}
.ws52{word-spacing:-14.520000px;}
.ws19{word-spacing:-14.460000px;}
.wsa4{word-spacing:-14.400000px;}
.ws9c{word-spacing:-14.220000px;}
.ws72{word-spacing:-14.100000px;}
.wsaf{word-spacing:-14.040000px;}
.ws63{word-spacing:-13.500000px;}
.ws88{word-spacing:-12.720000px;}
.ws3{word-spacing:-10.494000px;}
.ws8b{word-spacing:-9.689460px;}
.wsd{word-spacing:-9.648000px;}
.ws8a{word-spacing:-9.374640px;}
.wsad{word-spacing:-8.940000px;}
.wsae{word-spacing:-8.820000px;}
.ws1{word-spacing:-8.745000px;}
.ws89{word-spacing:-8.360220px;}
.ws6f{word-spacing:-8.160000px;}
.wse{word-spacing:-7.056000px;}
.ws8c{word-spacing:-5.876640px;}
.wsb2{word-spacing:-5.040000px;}
.wsa9{word-spacing:-4.860000px;}
.ws6e{word-spacing:-4.680000px;}
.wsb3{word-spacing:-4.620000px;}
.wsab{word-spacing:-4.320000px;}
.wsa3{word-spacing:-4.260000px;}
.ws73{word-spacing:-4.200000px;}
.ws59{word-spacing:-4.140000px;}
.ws44{word-spacing:-4.020000px;}
.ws26{word-spacing:-3.960000px;}
.wsaa{word-spacing:-3.900000px;}
.ws4b{word-spacing:-3.840000px;}
.ws3a{word-spacing:-3.780000px;}
.ws11{word-spacing:-3.720000px;}
.ws56{word-spacing:-3.600000px;}
.wsac{word-spacing:-3.540000px;}
.ws83{word-spacing:-3.420000px;}
.ws6b{word-spacing:-3.360000px;}
.ws85{word-spacing:-3.300000px;}
.ws5a{word-spacing:-3.240000px;}
.ws4f{word-spacing:-3.180000px;}
.ws70{word-spacing:-3.120000px;}
.ws43{word-spacing:-3.060000px;}
.ws8{word-spacing:-3.000000px;}
.ws8e{word-spacing:-2.940000px;}
.ws36{word-spacing:-2.880000px;}
.ws34{word-spacing:-2.820000px;}
.ws6d{word-spacing:-2.760000px;}
.ws6a{word-spacing:-2.700000px;}
.ws3e{word-spacing:-2.640000px;}
.ws5c{word-spacing:-2.580000px;}
.ws74{word-spacing:-2.520000px;}
.ws3b{word-spacing:-2.460000px;}
.ws98{word-spacing:-2.400000px;}
.ws55{word-spacing:-2.340000px;}
.ws25{word-spacing:-2.280000px;}
.ws4d{word-spacing:-2.220000px;}
.ws49{word-spacing:-2.160000px;}
.ws7f{word-spacing:-2.100000px;}
.ws2c{word-spacing:-2.040000px;}
.ws6{word-spacing:-1.980000px;}
.ws45{word-spacing:-1.920000px;}
.ws71{word-spacing:-1.860000px;}
.ws94{word-spacing:-1.800000px;}
.ws82{word-spacing:-1.740000px;}
.ws24{word-spacing:-1.680000px;}
.ws42{word-spacing:-1.620000px;}
.ws30{word-spacing:-1.560000px;}
.ws35{word-spacing:-1.500000px;}
.ws4e{word-spacing:-1.440000px;}
.ws23{word-spacing:-1.380000px;}
.ws2e{word-spacing:-1.320000px;}
.ws9a{word-spacing:-1.260000px;}
.ws14{word-spacing:-1.200000px;}
.ws3d{word-spacing:-1.140000px;}
.ws50{word-spacing:-1.080000px;}
.ws33{word-spacing:-1.020000px;}
.ws28{word-spacing:-0.960000px;}
.wsf{word-spacing:-0.900000px;}
.ws5f{word-spacing:-0.840000px;}
.ws6c{word-spacing:-0.780000px;}
.ws48{word-spacing:-0.720000px;}
.ws2f{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.600000px;}
.ws21{word-spacing:-0.540000px;}
.ws3f{word-spacing:-0.480000px;}
.ws40{word-spacing:-0.420000px;}
.ws9{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.300000px;}
.ws1b{word-spacing:-0.240000px;}
.ws1a{word-spacing:-0.180000px;}
.ws32{word-spacing:-0.120000px;}
.wsb{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws1d{word-spacing:0.060000px;}
.ws46{word-spacing:0.120000px;}
.ws10{word-spacing:0.180000px;}
.ws2a{word-spacing:0.240000px;}
.ws1e{word-spacing:0.300000px;}
.ws12{word-spacing:0.360000px;}
.ws39{word-spacing:0.420000px;}
.ws22{word-spacing:0.480000px;}
.ws5{word-spacing:0.540000px;}
.ws57{word-spacing:0.600000px;}
.ws4a{word-spacing:0.660000px;}
.ws13{word-spacing:0.720000px;}
.ws37{word-spacing:0.780000px;}
.ws78{word-spacing:0.840000px;}
.ws5d{word-spacing:0.900000px;}
.ws58{word-spacing:0.960000px;}
.ws2b{word-spacing:1.020000px;}
.wsc{word-spacing:1.080000px;}
.ws5e{word-spacing:1.260000px;}
.ws93{word-spacing:1.320000px;}
.wsa1{word-spacing:1.380000px;}
.ws77{word-spacing:1.500000px;}
.ws8d{word-spacing:1.680000px;}
.ws38{word-spacing:1.800000px;}
.ws96{word-spacing:2.160000px;}
.ws29{word-spacing:2.220000px;}
.ws20{word-spacing:2.400000px;}
.ws7c{word-spacing:2.520000px;}
.ws79{word-spacing:2.640000px;}
.ws7b{word-spacing:2.880000px;}
.ws3c{word-spacing:3.300000px;}
.ws97{word-spacing:3.720000px;}
.ws9e{word-spacing:3.780000px;}
.ws84{word-spacing:3.900000px;}
.ws92{word-spacing:4.140000px;}
.ws5b{word-spacing:4.440000px;}
.ws7{word-spacing:4.620000px;}
.ws4c{word-spacing:5.040000px;}
.ws60{word-spacing:5.160000px;}
.ws75{word-spacing:5.460000px;}
.ws7e{word-spacing:5.640000px;}
.ws99{word-spacing:6.180000px;}
.ws9f{word-spacing:6.240000px;}
.ws2d{word-spacing:6.420000px;}
.ws47{word-spacing:6.960000px;}
.ws7d{word-spacing:7.260000px;}
.ws95{word-spacing:7.320000px;}
.wsa{word-spacing:7.500000px;}
.ws27{word-spacing:8.040000px;}
.ws31{word-spacing:8.100000px;}
.wsa0{word-spacing:8.160000px;}
.ws87{word-spacing:16.500000px;}
.ws66{word-spacing:25.981800px;}
.ws54{word-spacing:30.263400px;}
.ws65{word-spacing:81.884400px;}
.ws62{word-spacing:102.134400px;}
.ws68{word-spacing:114.099000px;}
.ws64{word-spacing:134.300400px;}
.ws61{word-spacing:149.064600px;}
.ws69{word-spacing:164.737800px;}
.ws67{word-spacing:214.207200px;}
.ws15{word-spacing:801.994200px;}
.ws2{word-spacing:808.534200px;}
._38{margin-left:-13.320000px;}
._b{margin-left:-7.930800px;}
._a{margin-left:-6.604800px;}
._9{margin-left:-5.558400px;}
._0{margin-left:-4.230000px;}
._5{margin-left:-3.018000px;}
._3{margin-left:-1.608000px;}
._4{width:1.380000px;}
._6{width:2.832000px;}
._7{width:4.539600px;}
._2{width:6.168000px;}
._1{width:7.260000px;}
._8{width:8.496000px;}
._c{width:9.720000px;}
._f{width:11.310000px;}
._e{width:12.456000px;}
._21{width:13.938000px;}
._23{width:22.362000px;}
._22{width:24.528000px;}
._39{width:26.759400px;}
._37{width:38.808000px;}
._2c{width:40.932000px;}
._2e{width:53.218200px;}
._2d{width:54.884400px;}
._d{width:69.900000px;}
._16{width:78.594600px;}
._2b{width:84.755400px;}
._2f{width:86.258400px;}
._13{width:90.330600px;}
._35{width:98.605800px;}
._29{width:103.180200px;}
._31{width:111.275400px;}
._1b{width:114.981600px;}
._12{width:122.320200px;}
._11{width:123.708000px;}
._20{width:140.503200px;}
._33{width:143.198400px;}
._34{width:152.227200px;}
._10{width:154.222800px;}
._28{width:157.384200px;}
._36{width:159.670800px;}
._2a{width:164.414400px;}
._32{width:171.565200px;}
._27{width:175.085400px;}
._24{width:190.806000px;}
._15{width:191.992800px;}
._1d{width:212.862600px;}
._30{width:243.413400px;}
._25{width:249.987600px;}
._14{width:252.558000px;}
._1c{width:258.388200px;}
._18{width:316.126200px;}
._17{width:346.644600px;}
._1a{width:395.045400px;}
._19{width:440.585400px;}
._1f{width:471.289800px;}
._1e{width:501.801000px;}
._26{width:564.031200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:34.980000px;}
.fs4{font-size:41.976000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:4.894650px;}
.y2{bottom:7.020600px;}
.y33{bottom:45.255600px;}
.y3{bottom:45.834300px;}
.y31{bottom:85.965900px;}
.y72{bottom:86.149050px;}
.yaf{bottom:86.477400px;}
.y10f{bottom:86.532750px;}
.y1c2{bottom:86.805600px;}
.y1e0{bottom:86.805750px;}
.y188{bottom:86.925900px;}
.y1aa{bottom:88.021050px;}
.y135{bottom:88.517100px;}
.y1a7{bottom:90.110400px;}
.y179{bottom:90.121050px;}
.yd8{bottom:97.587900px;}
.y21c{bottom:98.427750px;}
.y17f{bottom:100.635150px;}
.y30{bottom:103.965900px;}
.y71{bottom:104.149050px;}
.yae{bottom:104.477400px;}
.y10e{bottom:104.532750px;}
.y1c1{bottom:104.805600px;}
.y1df{bottom:104.805750px;}
.y187{bottom:104.925900px;}
.y1a9{bottom:106.021050px;}
.y134{bottom:106.517100px;}
.y1a6{bottom:108.110400px;}
.y178{bottom:108.121050px;}
.yd7{bottom:115.587900px;}
.y21b{bottom:116.427750px;}
.y17e{bottom:118.635150px;}
.y32{bottom:121.965900px;}
.y70{bottom:122.149050px;}
.yad{bottom:122.477400px;}
.y10d{bottom:122.532750px;}
.y1c0{bottom:122.805600px;}
.y1de{bottom:122.805750px;}
.y186{bottom:122.925900px;}
.y1a8{bottom:124.021050px;}
.y133{bottom:124.517100px;}
.yd6{bottom:133.587900px;}
.y21a{bottom:134.427750px;}
.y17d{bottom:136.635150px;}
.y2f{bottom:139.965900px;}
.y6f{bottom:140.149050px;}
.yac{bottom:140.477400px;}
.y10c{bottom:140.532750px;}
.y1bf{bottom:140.805600px;}
.y1dd{bottom:140.805750px;}
.y185{bottom:140.925900px;}
.y132{bottom:142.517100px;}
.yd5{bottom:151.587900px;}
.y219{bottom:152.427750px;}
.y17c{bottom:154.635150px;}
.y6e{bottom:158.149050px;}
.yab{bottom:158.477400px;}
.y10b{bottom:158.532750px;}
.y1be{bottom:158.805600px;}
.y1dc{bottom:158.805750px;}
.y184{bottom:158.925900px;}
.y131{bottom:160.517100px;}
.yd4{bottom:169.587900px;}
.y218{bottom:170.427750px;}
.y17b{bottom:172.635150px;}
.y6d{bottom:176.149050px;}
.yaa{bottom:176.477400px;}
.y10a{bottom:176.532750px;}
.y1bd{bottom:176.805600px;}
.y1db{bottom:176.805750px;}
.y183{bottom:176.925900px;}
.yd3{bottom:187.587900px;}
.y217{bottom:188.427750px;}
.y17a{bottom:190.635150px;}
.y1c{bottom:191.981700px;}
.y6c{bottom:194.149050px;}
.ya9{bottom:194.477400px;}
.y109{bottom:194.532750px;}
.y1bc{bottom:194.805600px;}
.y1da{bottom:194.805750px;}
.y182{bottom:194.925900px;}
.yd2{bottom:205.587900px;}
.y216{bottom:206.427750px;}
.y1b{bottom:209.981700px;}
.y6b{bottom:212.149050px;}
.ya8{bottom:212.477400px;}
.y108{bottom:212.532750px;}
.y1bb{bottom:212.805600px;}
.y1d9{bottom:212.805750px;}
.y181{bottom:212.925900px;}
.yd1{bottom:223.587900px;}
.y215{bottom:224.427750px;}
.y6a{bottom:230.149050px;}
.ya7{bottom:230.477400px;}
.y107{bottom:230.532750px;}
.y1ba{bottom:230.805600px;}
.y1d8{bottom:230.805750px;}
.y180{bottom:230.925900px;}
.yd0{bottom:241.587900px;}
.y214{bottom:242.427750px;}
.y1a{bottom:245.981700px;}
.y69{bottom:248.149050px;}
.ya6{bottom:248.477400px;}
.y106{bottom:248.532750px;}
.y1b9{bottom:248.805600px;}
.y1d7{bottom:248.805750px;}
.ycf{bottom:259.587900px;}
.y213{bottom:260.427750px;}
.y19{bottom:263.981700px;}
.y68{bottom:266.149050px;}
.ya5{bottom:266.477400px;}
.y105{bottom:266.532750px;}
.y1b8{bottom:266.805600px;}
.y1d6{bottom:266.805750px;}
.yce{bottom:277.587900px;}
.y212{bottom:278.427750px;}
.y18{bottom:281.981700px;}
.y67{bottom:284.149050px;}
.ya4{bottom:284.477400px;}
.y104{bottom:284.532750px;}
.y1b7{bottom:284.805600px;}
.y1d5{bottom:284.805750px;}
.ycd{bottom:295.587900px;}
.y211{bottom:296.427750px;}
.y66{bottom:302.149050px;}
.ya3{bottom:302.477400px;}
.y103{bottom:302.532750px;}
.y1b6{bottom:302.805600px;}
.y1d4{bottom:302.805750px;}
.ycc{bottom:313.587900px;}
.y210{bottom:314.427750px;}
.y17{bottom:317.981700px;}
.y65{bottom:320.149050px;}
.ya2{bottom:320.477400px;}
.y102{bottom:320.532750px;}
.y1b5{bottom:320.805600px;}
.y1d3{bottom:320.805750px;}
.ycb{bottom:331.587900px;}
.y20f{bottom:332.427750px;}
.y16{bottom:335.981700px;}
.y64{bottom:338.149050px;}
.ya1{bottom:338.477400px;}
.y101{bottom:338.532750px;}
.y1b4{bottom:338.805600px;}
.y1d2{bottom:338.805750px;}
.yca{bottom:349.587900px;}
.y20e{bottom:350.427750px;}
.y63{bottom:356.149050px;}
.ya0{bottom:356.477400px;}
.y100{bottom:356.532750px;}
.y1b3{bottom:356.805600px;}
.y1d1{bottom:356.805750px;}
.yda{bottom:367.587900px;}
.y20d{bottom:368.427750px;}
.y62{bottom:374.149050px;}
.y9f{bottom:374.477400px;}
.yff{bottom:374.532750px;}
.y1b2{bottom:374.805600px;}
.y1d0{bottom:374.805750px;}
.yc9{bottom:385.587900px;}
.y20c{bottom:386.427750px;}
.y15{bottom:389.981700px;}
.y61{bottom:392.149050px;}
.y9e{bottom:392.477400px;}
.yfe{bottom:392.532750px;}
.y1b1{bottom:392.805600px;}
.y1cf{bottom:392.805750px;}
.yc8{bottom:403.587900px;}
.y20b{bottom:404.427750px;}
.y14{bottom:407.981700px;}
.y60{bottom:410.149050px;}
.y9d{bottom:410.477400px;}
.yfd{bottom:410.532750px;}
.y1b0{bottom:410.805600px;}
.y1ce{bottom:410.805750px;}
.yc7{bottom:421.587900px;}
.y20a{bottom:422.427750px;}
.y13{bottom:425.981700px;}
.y5f{bottom:428.149050px;}
.y9c{bottom:428.477400px;}
.yfc{bottom:428.532750px;}
.y1af{bottom:428.805600px;}
.y1cd{bottom:428.805750px;}
.yc6{bottom:439.587900px;}
.y209{bottom:440.427750px;}
.y12{bottom:443.981700px;}
.y5e{bottom:446.149050px;}
.y9b{bottom:446.477400px;}
.yfb{bottom:446.532750px;}
.y1ae{bottom:446.805600px;}
.y1cc{bottom:446.805750px;}
.yc5{bottom:457.587900px;}
.y208{bottom:458.427750px;}
.y11{bottom:461.981700px;}
.y5d{bottom:464.149050px;}
.y9a{bottom:464.477400px;}
.yfa{bottom:464.532750px;}
.y1ad{bottom:464.805600px;}
.y1cb{bottom:464.805750px;}
.yc4{bottom:475.587900px;}
.y207{bottom:476.427750px;}
.y10{bottom:479.981700px;}
.y5c{bottom:482.149050px;}
.y99{bottom:482.477400px;}
.yf9{bottom:482.532750px;}
.y1ac{bottom:482.805600px;}
.y1ca{bottom:482.805750px;}
.yc3{bottom:493.587900px;}
.y206{bottom:494.427750px;}
.yf{bottom:497.981700px;}
.y5b{bottom:500.149050px;}
.y98{bottom:500.477400px;}
.yf8{bottom:500.532750px;}
.y1ab{bottom:500.805600px;}
.y1c9{bottom:500.805750px;}
.yc2{bottom:511.587900px;}
.y205{bottom:512.427750px;}
.ye{bottom:515.981700px;}
.y5a{bottom:518.149050px;}
.y97{bottom:518.477400px;}
.yf7{bottom:518.532750px;}
.y176{bottom:518.805600px;}
.y1c8{bottom:518.805750px;}
.yc1{bottom:529.587900px;}
.y204{bottom:530.427750px;}
.yd{bottom:533.981700px;}
.y59{bottom:536.149050px;}
.y96{bottom:536.477400px;}
.yf6{bottom:536.532750px;}
.y175{bottom:536.805600px;}
.y1c7{bottom:536.805750px;}
.yc0{bottom:547.587900px;}
.y203{bottom:548.427750px;}
.yc{bottom:551.981700px;}
.y58{bottom:554.149050px;}
.y95{bottom:554.477400px;}
.yf5{bottom:554.532750px;}
.y174{bottom:554.805600px;}
.y1c6{bottom:554.805750px;}
.ybf{bottom:565.587900px;}
.y202{bottom:566.427750px;}
.yb{bottom:569.981700px;}
.y57{bottom:572.149050px;}
.y94{bottom:572.477400px;}
.yf4{bottom:572.532750px;}
.y173{bottom:572.805600px;}
.y1c5{bottom:572.805750px;}
.ybe{bottom:583.587900px;}
.y201{bottom:584.427750px;}
.ya{bottom:587.981700px;}
.y56{bottom:590.149050px;}
.y93{bottom:590.477400px;}
.yf3{bottom:590.532750px;}
.y172{bottom:590.805600px;}
.y1c4{bottom:590.805750px;}
.ybd{bottom:601.587900px;}
.y200{bottom:602.427750px;}
.y9{bottom:605.981700px;}
.y55{bottom:608.149050px;}
.y92{bottom:608.477400px;}
.yf2{bottom:608.532750px;}
.y171{bottom:608.805600px;}
.y1c3{bottom:608.805750px;}
.ybc{bottom:619.587900px;}
.y1ff{bottom:620.427750px;}
.y8{bottom:623.981700px;}
.y54{bottom:626.149050px;}
.y91{bottom:626.477400px;}
.yf1{bottom:626.532750px;}
.y170{bottom:626.805600px;}
.y14f{bottom:626.805750px;}
.ybb{bottom:637.587900px;}
.y1fe{bottom:638.427750px;}
.y7{bottom:641.981700px;}
.y53{bottom:644.149050px;}
.y90{bottom:644.477400px;}
.yf0{bottom:644.532750px;}
.y16f{bottom:644.805600px;}
.y14e{bottom:644.805750px;}
.yba{bottom:655.587900px;}
.y1fd{bottom:656.427750px;}
.y6{bottom:659.981700px;}
.y52{bottom:662.149050px;}
.y1a5{bottom:662.276250px;}
.y8f{bottom:662.477400px;}
.yef{bottom:662.532750px;}
.y16e{bottom:662.805600px;}
.y14d{bottom:662.805750px;}
.yb9{bottom:673.587900px;}
.y1fc{bottom:674.427750px;}
.y5{bottom:677.981700px;}
.y51{bottom:680.149050px;}
.y1a4{bottom:680.276250px;}
.y8e{bottom:680.477400px;}
.yee{bottom:680.532750px;}
.y16d{bottom:680.805600px;}
.y14c{bottom:680.805750px;}
.yb8{bottom:691.587900px;}
.y1fb{bottom:692.427750px;}
.y50{bottom:698.149050px;}
.y1a3{bottom:698.276250px;}
.y8d{bottom:698.477400px;}
.yed{bottom:698.532750px;}
.y16c{bottom:698.805600px;}
.y14b{bottom:698.805750px;}
.yb7{bottom:709.587900px;}
.y1fa{bottom:710.427750px;}
.y4{bottom:713.981700px;}
.y4f{bottom:716.149050px;}
.y1a2{bottom:716.276250px;}
.y8c{bottom:716.477400px;}
.yec{bottom:716.532750px;}
.y16b{bottom:716.805600px;}
.y14a{bottom:716.805750px;}
.yb6{bottom:727.587900px;}
.y1f9{bottom:728.427750px;}
.y4e{bottom:734.149050px;}
.y1a1{bottom:734.276250px;}
.y8b{bottom:734.477400px;}
.yeb{bottom:734.532750px;}
.y16a{bottom:734.805600px;}
.y149{bottom:734.805750px;}
.yb5{bottom:745.587900px;}
.y1f8{bottom:746.427750px;}
.y4d{bottom:752.149050px;}
.y1a0{bottom:752.276250px;}
.y8a{bottom:752.477400px;}
.yea{bottom:752.532750px;}
.y169{bottom:752.805600px;}
.y148{bottom:752.805750px;}
.y2e{bottom:756.784800px;}
.yd9{bottom:763.587900px;}
.y1f7{bottom:764.427750px;}
.y4c{bottom:770.149050px;}
.y19f{bottom:770.276250px;}
.y89{bottom:770.477400px;}
.ye9{bottom:770.532750px;}
.y168{bottom:770.805600px;}
.y147{bottom:770.805750px;}
.y2d{bottom:779.779800px;}
.yb4{bottom:781.587900px;}
.y1f6{bottom:782.427750px;}
.y4b{bottom:788.149050px;}
.y19e{bottom:788.276250px;}
.y88{bottom:788.477400px;}
.ye8{bottom:788.532750px;}
.y167{bottom:788.805600px;}
.y146{bottom:788.805750px;}
.y2c{bottom:792.784800px;}
.yb3{bottom:799.587900px;}
.y1f5{bottom:800.427750px;}
.y4a{bottom:806.149050px;}
.y19d{bottom:806.276250px;}
.y87{bottom:806.477400px;}
.ye7{bottom:806.532750px;}
.y166{bottom:806.805600px;}
.y145{bottom:806.805750px;}
.y2b{bottom:815.779800px;}
.yb2{bottom:817.587900px;}
.y1f4{bottom:818.427750px;}
.y49{bottom:824.149050px;}
.y19c{bottom:824.276250px;}
.y86{bottom:824.477400px;}
.ye6{bottom:824.532750px;}
.y165{bottom:824.805600px;}
.y152{bottom:824.805750px;}
.y2a{bottom:828.784800px;}
.yb1{bottom:835.587900px;}
.y1f3{bottom:836.427750px;}
.y48{bottom:842.149050px;}
.y19b{bottom:842.276250px;}
.y85{bottom:842.477400px;}
.y177{bottom:842.805600px;}
.y144{bottom:842.805750px;}
.y29{bottom:851.779800px;}
.yb0{bottom:853.587900px;}
.y1f2{bottom:854.427750px;}
.y47{bottom:860.149050px;}
.y19a{bottom:860.276250px;}
.y84{bottom:860.477400px;}
.y164{bottom:860.805600px;}
.y151{bottom:860.805750px;}
.y11f{bottom:865.393650px;}
.y28{bottom:869.779800px;}
.y11e{bottom:870.049650px;}
.y1f1{bottom:872.427750px;}
.y46{bottom:878.149050px;}
.y11d{bottom:878.149650px;}
.y199{bottom:878.276250px;}
.y83{bottom:878.477400px;}
.y163{bottom:878.805600px;}
.y150{bottom:878.805750px;}
.y27{bottom:882.784800px;}
.y1f0{bottom:890.427750px;}
.y45{bottom:896.149050px;}
.y198{bottom:896.276250px;}
.y82{bottom:896.477400px;}
.y162{bottom:896.805600px;}
.y143{bottom:896.805750px;}
.ye5{bottom:900.244800px;}
.y26{bottom:905.779800px;}
.y1ef{bottom:908.427750px;}
.y44{bottom:914.149050px;}
.y197{bottom:914.276250px;}
.y81{bottom:914.477400px;}
.y161{bottom:914.805600px;}
.y142{bottom:914.805750px;}
.y11c{bottom:916.417200px;}
.y25{bottom:923.779800px;}
.y1ee{bottom:926.427750px;}
.ye4{bottom:927.244800px;}
.y11b{bottom:929.173350px;}
.y43{bottom:932.149050px;}
.y196{bottom:932.276250px;}
.y80{bottom:932.477400px;}
.y160{bottom:932.805600px;}
.y141{bottom:932.805750px;}
.y24{bottom:936.784800px;}
.y1ed{bottom:944.427750px;}
.y42{bottom:950.149050px;}
.y195{bottom:950.276250px;}
.y7f{bottom:950.477400px;}
.y15f{bottom:950.805600px;}
.y140{bottom:950.805750px;}
.ye3{bottom:954.244800px;}
.y23{bottom:959.779800px;}
.y1ec{bottom:962.427750px;}
.y11a{bottom:967.440900px;}
.y41{bottom:968.149050px;}
.y194{bottom:968.276250px;}
.y7e{bottom:968.477400px;}
.y15e{bottom:968.805600px;}
.y13f{bottom:968.805750px;}
.y119{bottom:980.196750px;}
.y1eb{bottom:980.427750px;}
.ye2{bottom:981.244800px;}
.y40{bottom:986.149050px;}
.y193{bottom:986.276250px;}
.y7d{bottom:986.477400px;}
.y15d{bottom:986.805600px;}
.y13e{bottom:986.805750px;}
.y22{bottom:990.784800px;}
.y1ea{bottom:998.427750px;}
.y3f{bottom:1004.149050px;}
.y192{bottom:1004.276250px;}
.y7c{bottom:1004.477400px;}
.y15c{bottom:1004.805600px;}
.y13d{bottom:1004.805750px;}
.ye1{bottom:1008.244800px;}
.y21{bottom:1008.784800px;}
.y1e9{bottom:1016.427750px;}
.y118{bottom:1018.464450px;}
.y3e{bottom:1022.149050px;}
.y191{bottom:1022.276250px;}
.y7b{bottom:1022.477400px;}
.y15b{bottom:1022.805600px;}
.y13c{bottom:1022.805750px;}
.y117{bottom:1023.120450px;}
.y128{bottom:1023.421800px;}
.y130{bottom:1023.525000px;}
.y116{bottom:1031.220450px;}
.y1e8{bottom:1034.427750px;}
.ye0{bottom:1035.244800px;}
.y3d{bottom:1040.149050px;}
.y190{bottom:1040.276250px;}
.y7a{bottom:1040.477400px;}
.y15a{bottom:1040.805600px;}
.y13b{bottom:1040.805750px;}
.y127{bottom:1041.421800px;}
.y12f{bottom:1041.525000px;}
.y20{bottom:1044.885000px;}
.y1e7{bottom:1052.427750px;}
.y3c{bottom:1058.149050px;}
.y18f{bottom:1058.276250px;}
.y79{bottom:1058.477400px;}
.y159{bottom:1058.805600px;}
.y13a{bottom:1058.805750px;}
.y126{bottom:1059.421800px;}
.y12e{bottom:1059.525000px;}
.ydf{bottom:1062.244800px;}
.y1f{bottom:1066.485000px;}
.y115{bottom:1069.488150px;}
.y1e6{bottom:1070.427750px;}
.y114{bottom:1074.144000px;}
.y3b{bottom:1076.149050px;}
.y18e{bottom:1076.276250px;}
.y78{bottom:1076.477400px;}
.y158{bottom:1076.805600px;}
.y139{bottom:1076.805750px;}
.y125{bottom:1077.421800px;}
.y113{bottom:1082.244000px;}
.y1e{bottom:1088.085000px;}
.y1e5{bottom:1088.427750px;}
.yde{bottom:1089.244800px;}
.y3a{bottom:1094.149050px;}
.y18d{bottom:1094.276250px;}
.y77{bottom:1094.477400px;}
.y157{bottom:1094.805600px;}
.y138{bottom:1094.805750px;}
.y124{bottom:1095.421800px;}
.y12d{bottom:1095.525000px;}
.y1e4{bottom:1106.427750px;}
.y39{bottom:1112.149050px;}
.y18c{bottom:1112.276250px;}
.y76{bottom:1112.477400px;}
.ydd{bottom:1112.486250px;}
.y156{bottom:1112.805600px;}
.y137{bottom:1112.805750px;}
.y123{bottom:1113.421800px;}
.y12c{bottom:1113.525000px;}
.y111{bottom:1116.948450px;}
.y1e3{bottom:1124.427750px;}
.y38{bottom:1130.149050px;}
.y18b{bottom:1130.276250px;}
.y75{bottom:1130.477400px;}
.y155{bottom:1130.805600px;}
.y136{bottom:1130.805750px;}
.y122{bottom:1131.421800px;}
.y12b{bottom:1131.525000px;}
.y112{bottom:1133.148450px;}
.y1e2{bottom:1142.427750px;}
.y37{bottom:1148.149050px;}
.y18a{bottom:1148.276250px;}
.y74{bottom:1148.477400px;}
.y154{bottom:1148.805600px;}
.ydc{bottom:1148.805750px;}
.y121{bottom:1149.421800px;}
.y12a{bottom:1149.525000px;}
.y1e1{bottom:1160.427750px;}
.y36{bottom:1166.149050px;}
.y189{bottom:1166.276250px;}
.y73{bottom:1166.477400px;}
.y153{bottom:1166.805600px;}
.ydb{bottom:1166.805750px;}
.y110{bottom:1166.816400px;}
.y120{bottom:1167.421800px;}
.y129{bottom:1167.525000px;}
.y1{bottom:1208.385000px;}
.y34{bottom:1211.574000px;}
.y1d{bottom:1220.461950px;}
.hd{height:15.873000px;}
.h2{height:18.000000px;}
.hb{height:25.312676px;}
.ha{height:25.534717px;}
.h11{height:39.418945px;}
.h3{height:43.417969px;}
.h5{height:43.798828px;}
.h16{height:44.179688px;}
.hf{height:45.292676px;}
.h10{height:45.293276px;}
.h9{height:45.514717px;}
.he{height:46.552734px;}
.h8{height:52.558594px;}
.h7{height:53.015625px;}
.h6{height:55.863281px;}
.h4{height:71.403769px;}
.h14{height:71.818345px;}
.h12{height:71.818945px;}
.hc{height:75.218569px;}
.h15{height:90.442345px;}
.h13{height:122.842345px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:705.900000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:91.092450px;}
.x1{left:93.507000px;}
.x19{left:97.086600px;}
.xa{left:98.507400px;}
.xd{left:99.576150px;}
.x2b{left:102.047250px;}
.x21{left:107.946450px;}
.x25{left:110.893050px;}
.x5{left:114.340800px;}
.x8{left:117.929250px;}
.x9{left:122.724600px;}
.xc{left:125.584500px;}
.x14{left:128.689950px;}
.x12{left:131.224200px;}
.x6{left:138.792000px;}
.x10{left:166.515900px;}
.x22{left:178.680750px;}
.x18{left:185.112900px;}
.x1d{left:186.904050px;}
.x24{left:192.049050px;}
.x26{left:193.156350px;}
.x1c{left:194.499150px;}
.x1b{left:198.249150px;}
.x16{left:221.349450px;}
.x28{left:239.337750px;}
.x13{left:276.153900px;}
.xf{left:288.090600px;}
.x7{left:310.495050px;}
.x11{left:311.713050px;}
.x1e{left:314.073750px;}
.xe{left:318.334050px;}
.x1a{left:319.593000px;}
.x15{left:337.607700px;}
.xb{left:388.002000px;}
.x23{left:411.621300px;}
.x3{left:417.720150px;}
.x2{left:440.136600px;}
.x17{left:457.086600px;}
.x27{left:458.149500px;}
.x30{left:535.150200px;}
.x29{left:542.834700px;}
.x2c{left:547.086600px;}
.x2e{left:560.049000px;}
.x2f{left:576.924000px;}
.x2d{left:585.753300px;}
.x2a{left:590.360250px;}
.x20{left:746.023650px;}
.x1f{left:748.456050px;}
@media print{
.v7{vertical-align:-45.354133pt;}
.v3{vertical-align:-21.312000pt;}
.v1{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:24.876267pt;}
.v5{vertical-align:28.267200pt;}
.v8{vertical-align:45.354133pt;}
.v6{vertical-align:74.154133pt;}
.ls57{letter-spacing:-4.853333pt;}
.ls6e{letter-spacing:-3.466667pt;}
.ls7a{letter-spacing:-2.549653pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls53{letter-spacing:-0.906667pt;}
.ls44{letter-spacing:-0.853333pt;}
.ls56{letter-spacing:-0.800000pt;}
.ls60{letter-spacing:-0.746667pt;}
.ls28{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls3a{letter-spacing:-0.586667pt;}
.ls43{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.426667pt;}
.ls29{letter-spacing:-0.373333pt;}
.ls79{letter-spacing:-0.342027pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.266667pt;}
.ls27{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.106667pt;}
.ls24{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000533pt;}
.ls65{letter-spacing:0.000747pt;}
.ls5f{letter-spacing:0.001280pt;}
.ls48{letter-spacing:0.002080pt;}
.ls51{letter-spacing:0.002613pt;}
.ls5e{letter-spacing:0.006827pt;}
.ls6d{letter-spacing:0.006987pt;}
.ls32{letter-spacing:0.008000pt;}
.ls5d{letter-spacing:0.008213pt;}
.ls5a{letter-spacing:0.035733pt;}
.ls5c{letter-spacing:0.036267pt;}
.ls5b{letter-spacing:0.044800pt;}
.ls2{letter-spacing:0.053333pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls64{letter-spacing:0.120427pt;}
.ls63{letter-spacing:0.122347pt;}
.ls81{letter-spacing:0.126400pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.250667pt;}
.lsd{letter-spacing:0.266667pt;}
.ls71{letter-spacing:0.291200pt;}
.ls6f{letter-spacing:0.309867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.373333pt;}
.ls66{letter-spacing:0.383467pt;}
.ls62{letter-spacing:0.398400pt;}
.ls70{letter-spacing:0.414933pt;}
.ls22{letter-spacing:0.426667pt;}
.ls61{letter-spacing:0.430933pt;}
.ls41{letter-spacing:0.447413pt;}
.lsf{letter-spacing:0.480000pt;}
.ls58{letter-spacing:0.493333pt;}
.ls19{letter-spacing:0.506667pt;}
.lse{letter-spacing:0.533333pt;}
.ls77{letter-spacing:0.559680pt;}
.ls31{letter-spacing:0.564267pt;}
.ls17{letter-spacing:0.586667pt;}
.ls2f{letter-spacing:0.640000pt;}
.ls4a{letter-spacing:0.693333pt;}
.ls45{letter-spacing:0.723680pt;}
.ls40{letter-spacing:0.746667pt;}
.ls68{letter-spacing:0.763733pt;}
.ls8{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.821333pt;}
.ls78{letter-spacing:0.839520pt;}
.ls75{letter-spacing:0.848000pt;}
.ls20{letter-spacing:0.853333pt;}
.ls1b{letter-spacing:0.906667pt;}
.ls37{letter-spacing:0.960000pt;}
.ls7e{letter-spacing:0.993067pt;}
.ls21{letter-spacing:1.013333pt;}
.ls4{letter-spacing:1.066667pt;}
.ls69{letter-spacing:1.078400pt;}
.ls7d{letter-spacing:1.120000pt;}
.ls16{letter-spacing:1.173333pt;}
.ls10{letter-spacing:1.226667pt;}
.ls7c{letter-spacing:1.241600pt;}
.ls33{letter-spacing:1.280000pt;}
.ls59{letter-spacing:1.302400pt;}
.ls1d{letter-spacing:1.333333pt;}
.ls3c{letter-spacing:1.360000pt;}
.ls18{letter-spacing:1.386667pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls11{letter-spacing:1.493333pt;}
.ls6b{letter-spacing:1.546667pt;}
.ls7f{letter-spacing:1.600000pt;}
.ls50{letter-spacing:1.653333pt;}
.ls2e{letter-spacing:1.706667pt;}
.ls4f{letter-spacing:1.760000pt;}
.ls15{letter-spacing:1.813333pt;}
.ls6a{letter-spacing:1.866667pt;}
.ls39{letter-spacing:1.920000pt;}
.ls36{letter-spacing:1.973333pt;}
.ls12{letter-spacing:2.026667pt;}
.ls3b{letter-spacing:2.080000pt;}
.ls7b{letter-spacing:2.133333pt;}
.ls2a{letter-spacing:2.186667pt;}
.ls55{letter-spacing:2.240000pt;}
.ls3f{letter-spacing:2.293333pt;}
.ls67{letter-spacing:2.346667pt;}
.ls46{letter-spacing:2.400000pt;}
.ls4b{letter-spacing:2.453333pt;}
.ls1c{letter-spacing:2.506667pt;}
.ls1e{letter-spacing:2.560000pt;}
.ls76{letter-spacing:2.613333pt;}
.ls82{letter-spacing:2.651733pt;}
.ls2c{letter-spacing:2.720000pt;}
.ls4e{letter-spacing:2.773333pt;}
.ls34{letter-spacing:2.826667pt;}
.ls3e{letter-spacing:2.880000pt;}
.ls6c{letter-spacing:2.933333pt;}
.ls49{letter-spacing:2.986667pt;}
.ls87{letter-spacing:3.146667pt;}
.ls47{letter-spacing:3.306667pt;}
.ls30{letter-spacing:3.413333pt;}
.ls85{letter-spacing:3.466667pt;}
.ls13{letter-spacing:3.520000pt;}
.ls2d{letter-spacing:3.573333pt;}
.ls3d{letter-spacing:3.680000pt;}
.ls54{letter-spacing:3.733333pt;}
.ls80{letter-spacing:3.786667pt;}
.ls86{letter-spacing:3.840000pt;}
.ls8e{letter-spacing:4.106667pt;}
.ls4c{letter-spacing:4.160000pt;}
.ls84{letter-spacing:4.320000pt;}
.ls91{letter-spacing:4.480000pt;}
.ls3{letter-spacing:6.272000pt;}
.ls8d{letter-spacing:6.401067pt;}
.ls83{letter-spacing:6.576000pt;}
.ls90{letter-spacing:6.676800pt;}
.ls4d{letter-spacing:7.253333pt;}
.ls72{letter-spacing:7.306667pt;}
.ls8b{letter-spacing:7.840000pt;}
.ls89{letter-spacing:7.946667pt;}
.ls8a{letter-spacing:8.906133pt;}
.ls8f{letter-spacing:9.630933pt;}
.ls8c{letter-spacing:9.813333pt;}
.ls74{letter-spacing:11.306667pt;}
.ls73{letter-spacing:21.989867pt;}
.ls88{letter-spacing:62.133333pt;}
.ls52{letter-spacing:192.020800pt;}
.ls42{letter-spacing:535.820267pt;}
.wsa7{word-spacing:-23.146667pt;}
.wsa6{word-spacing:-21.280000pt;}
.ws86{word-spacing:-20.640000pt;}
.wsb0{word-spacing:-16.320000pt;}
.ws51{word-spacing:-16.213333pt;}
.wsa8{word-spacing:-15.573333pt;}
.ws80{word-spacing:-14.880000pt;}
.wsa5{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.666667pt;}
.wsb1{word-spacing:-14.346667pt;}
.ws16{word-spacing:-14.154667pt;}
.ws53{word-spacing:-13.866667pt;}
.ws9d{word-spacing:-13.653333pt;}
.ws8f{word-spacing:-13.600000pt;}
.ws7a{word-spacing:-13.546667pt;}
.ws90{word-spacing:-13.493333pt;}
.ws17{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws9b{word-spacing:-13.280000pt;}
.ws81{word-spacing:-13.226667pt;}
.ws91{word-spacing:-13.173333pt;}
.ws41{word-spacing:-13.120000pt;}
.wsa2{word-spacing:-13.013333pt;}
.ws76{word-spacing:-12.960000pt;}
.ws52{word-spacing:-12.906667pt;}
.ws19{word-spacing:-12.853333pt;}
.wsa4{word-spacing:-12.800000pt;}
.ws9c{word-spacing:-12.640000pt;}
.ws72{word-spacing:-12.533333pt;}
.wsaf{word-spacing:-12.480000pt;}
.ws63{word-spacing:-12.000000pt;}
.ws88{word-spacing:-11.306667pt;}
.ws3{word-spacing:-9.328000pt;}
.ws8b{word-spacing:-8.612853pt;}
.wsd{word-spacing:-8.576000pt;}
.ws8a{word-spacing:-8.333013pt;}
.wsad{word-spacing:-7.946667pt;}
.wsae{word-spacing:-7.840000pt;}
.ws1{word-spacing:-7.773333pt;}
.ws89{word-spacing:-7.431307pt;}
.ws6f{word-spacing:-7.253333pt;}
.wse{word-spacing:-6.272000pt;}
.ws8c{word-spacing:-5.223680pt;}
.wsb2{word-spacing:-4.480000pt;}
.wsa9{word-spacing:-4.320000pt;}
.ws6e{word-spacing:-4.160000pt;}
.wsb3{word-spacing:-4.106667pt;}
.wsab{word-spacing:-3.840000pt;}
.wsa3{word-spacing:-3.786667pt;}
.ws73{word-spacing:-3.733333pt;}
.ws59{word-spacing:-3.680000pt;}
.ws44{word-spacing:-3.573333pt;}
.ws26{word-spacing:-3.520000pt;}
.wsaa{word-spacing:-3.466667pt;}
.ws4b{word-spacing:-3.413333pt;}
.ws3a{word-spacing:-3.360000pt;}
.ws11{word-spacing:-3.306667pt;}
.ws56{word-spacing:-3.200000pt;}
.wsac{word-spacing:-3.146667pt;}
.ws83{word-spacing:-3.040000pt;}
.ws6b{word-spacing:-2.986667pt;}
.ws85{word-spacing:-2.933333pt;}
.ws5a{word-spacing:-2.880000pt;}
.ws4f{word-spacing:-2.826667pt;}
.ws70{word-spacing:-2.773333pt;}
.ws43{word-spacing:-2.720000pt;}
.ws8{word-spacing:-2.666667pt;}
.ws8e{word-spacing:-2.613333pt;}
.ws36{word-spacing:-2.560000pt;}
.ws34{word-spacing:-2.506667pt;}
.ws6d{word-spacing:-2.453333pt;}
.ws6a{word-spacing:-2.400000pt;}
.ws3e{word-spacing:-2.346667pt;}
.ws5c{word-spacing:-2.293333pt;}
.ws74{word-spacing:-2.240000pt;}
.ws3b{word-spacing:-2.186667pt;}
.ws98{word-spacing:-2.133333pt;}
.ws55{word-spacing:-2.080000pt;}
.ws25{word-spacing:-2.026667pt;}
.ws4d{word-spacing:-1.973333pt;}
.ws49{word-spacing:-1.920000pt;}
.ws7f{word-spacing:-1.866667pt;}
.ws2c{word-spacing:-1.813333pt;}
.ws6{word-spacing:-1.760000pt;}
.ws45{word-spacing:-1.706667pt;}
.ws71{word-spacing:-1.653333pt;}
.ws94{word-spacing:-1.600000pt;}
.ws82{word-spacing:-1.546667pt;}
.ws24{word-spacing:-1.493333pt;}
.ws42{word-spacing:-1.440000pt;}
.ws30{word-spacing:-1.386667pt;}
.ws35{word-spacing:-1.333333pt;}
.ws4e{word-spacing:-1.280000pt;}
.ws23{word-spacing:-1.226667pt;}
.ws2e{word-spacing:-1.173333pt;}
.ws9a{word-spacing:-1.120000pt;}
.ws14{word-spacing:-1.066667pt;}
.ws3d{word-spacing:-1.013333pt;}
.ws50{word-spacing:-0.960000pt;}
.ws33{word-spacing:-0.906667pt;}
.ws28{word-spacing:-0.853333pt;}
.wsf{word-spacing:-0.800000pt;}
.ws5f{word-spacing:-0.746667pt;}
.ws6c{word-spacing:-0.693333pt;}
.ws48{word-spacing:-0.640000pt;}
.ws2f{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.533333pt;}
.ws21{word-spacing:-0.480000pt;}
.ws3f{word-spacing:-0.426667pt;}
.ws40{word-spacing:-0.373333pt;}
.ws9{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.266667pt;}
.ws1b{word-spacing:-0.213333pt;}
.ws1a{word-spacing:-0.160000pt;}
.ws32{word-spacing:-0.106667pt;}
.wsb{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.053333pt;}
.ws46{word-spacing:0.106667pt;}
.ws10{word-spacing:0.160000pt;}
.ws2a{word-spacing:0.213333pt;}
.ws1e{word-spacing:0.266667pt;}
.ws12{word-spacing:0.320000pt;}
.ws39{word-spacing:0.373333pt;}
.ws22{word-spacing:0.426667pt;}
.ws5{word-spacing:0.480000pt;}
.ws57{word-spacing:0.533333pt;}
.ws4a{word-spacing:0.586667pt;}
.ws13{word-spacing:0.640000pt;}
.ws37{word-spacing:0.693333pt;}
.ws78{word-spacing:0.746667pt;}
.ws5d{word-spacing:0.800000pt;}
.ws58{word-spacing:0.853333pt;}
.ws2b{word-spacing:0.906667pt;}
.wsc{word-spacing:0.960000pt;}
.ws5e{word-spacing:1.120000pt;}
.ws93{word-spacing:1.173333pt;}
.wsa1{word-spacing:1.226667pt;}
.ws77{word-spacing:1.333333pt;}
.ws8d{word-spacing:1.493333pt;}
.ws38{word-spacing:1.600000pt;}
.ws96{word-spacing:1.920000pt;}
.ws29{word-spacing:1.973333pt;}
.ws20{word-spacing:2.133333pt;}
.ws7c{word-spacing:2.240000pt;}
.ws79{word-spacing:2.346667pt;}
.ws7b{word-spacing:2.560000pt;}
.ws3c{word-spacing:2.933333pt;}
.ws97{word-spacing:3.306667pt;}
.ws9e{word-spacing:3.360000pt;}
.ws84{word-spacing:3.466667pt;}
.ws92{word-spacing:3.680000pt;}
.ws5b{word-spacing:3.946667pt;}
.ws7{word-spacing:4.106667pt;}
.ws4c{word-spacing:4.480000pt;}
.ws60{word-spacing:4.586667pt;}
.ws75{word-spacing:4.853333pt;}
.ws7e{word-spacing:5.013333pt;}
.ws99{word-spacing:5.493333pt;}
.ws9f{word-spacing:5.546667pt;}
.ws2d{word-spacing:5.706667pt;}
.ws47{word-spacing:6.186667pt;}
.ws7d{word-spacing:6.453333pt;}
.ws95{word-spacing:6.506667pt;}
.wsa{word-spacing:6.666667pt;}
.ws27{word-spacing:7.146667pt;}
.ws31{word-spacing:7.200000pt;}
.wsa0{word-spacing:7.253333pt;}
.ws87{word-spacing:14.666667pt;}
.ws66{word-spacing:23.094933pt;}
.ws54{word-spacing:26.900800pt;}
.ws65{word-spacing:72.786133pt;}
.ws62{word-spacing:90.786133pt;}
.ws68{word-spacing:101.421333pt;}
.ws64{word-spacing:119.378133pt;}
.ws61{word-spacing:132.501867pt;}
.ws69{word-spacing:146.433600pt;}
.ws67{word-spacing:190.406400pt;}
.ws15{word-spacing:712.883733pt;}
.ws2{word-spacing:718.697067pt;}
._38{margin-left:-11.840000pt;}
._b{margin-left:-7.049600pt;}
._a{margin-left:-5.870933pt;}
._9{margin-left:-4.940800pt;}
._0{margin-left:-3.760000pt;}
._5{margin-left:-2.682667pt;}
._3{margin-left:-1.429333pt;}
._4{width:1.226667pt;}
._6{width:2.517333pt;}
._7{width:4.035200pt;}
._2{width:5.482667pt;}
._1{width:6.453333pt;}
._8{width:7.552000pt;}
._c{width:8.640000pt;}
._f{width:10.053333pt;}
._e{width:11.072000pt;}
._21{width:12.389333pt;}
._23{width:19.877333pt;}
._22{width:21.802667pt;}
._39{width:23.786133pt;}
._37{width:34.496000pt;}
._2c{width:36.384000pt;}
._2e{width:47.305067pt;}
._2d{width:48.786133pt;}
._d{width:62.133333pt;}
._16{width:69.861867pt;}
._2b{width:75.338133pt;}
._2f{width:76.674133pt;}
._13{width:80.293867pt;}
._35{width:87.649600pt;}
._29{width:91.715733pt;}
._31{width:98.911467pt;}
._1b{width:102.205867pt;}
._12{width:108.729067pt;}
._11{width:109.962667pt;}
._20{width:124.891733pt;}
._33{width:127.287467pt;}
._34{width:135.313067pt;}
._10{width:137.086933pt;}
._28{width:139.897067pt;}
._36{width:141.929600pt;}
._2a{width:146.146133pt;}
._32{width:152.502400pt;}
._27{width:155.631467pt;}
._24{width:169.605333pt;}
._15{width:170.660267pt;}
._1d{width:189.211200pt;}
._30{width:216.367467pt;}
._25{width:222.211200pt;}
._14{width:224.496000pt;}
._1c{width:229.678400pt;}
._18{width:281.001067pt;}
._17{width:308.128533pt;}
._1a{width:351.151467pt;}
._19{width:391.631467pt;}
._1f{width:418.924267pt;}
._1e{width:446.045333pt;}
._26{width:501.361067pt;}
.fs1{font-size:31.093333pt;}
.fs4{font-size:37.312000pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:4.350800pt;}
.y2{bottom:6.240533pt;}
.y33{bottom:40.227200pt;}
.y3{bottom:40.741600pt;}
.y31{bottom:76.414133pt;}
.y72{bottom:76.576933pt;}
.yaf{bottom:76.868800pt;}
.y10f{bottom:76.918000pt;}
.y1c2{bottom:77.160533pt;}
.y1e0{bottom:77.160667pt;}
.y188{bottom:77.267467pt;}
.y1aa{bottom:78.240933pt;}
.y135{bottom:78.681867pt;}
.y1a7{bottom:80.098133pt;}
.y179{bottom:80.107600pt;}
.yd8{bottom:86.744800pt;}
.y21c{bottom:87.491333pt;}
.y17f{bottom:89.453467pt;}
.y30{bottom:92.414133pt;}
.y71{bottom:92.576933pt;}
.yae{bottom:92.868800pt;}
.y10e{bottom:92.918000pt;}
.y1c1{bottom:93.160533pt;}
.y1df{bottom:93.160667pt;}
.y187{bottom:93.267467pt;}
.y1a9{bottom:94.240933pt;}
.y134{bottom:94.681867pt;}
.y1a6{bottom:96.098133pt;}
.y178{bottom:96.107600pt;}
.yd7{bottom:102.744800pt;}
.y21b{bottom:103.491333pt;}
.y17e{bottom:105.453467pt;}
.y32{bottom:108.414133pt;}
.y70{bottom:108.576933pt;}
.yad{bottom:108.868800pt;}
.y10d{bottom:108.918000pt;}
.y1c0{bottom:109.160533pt;}
.y1de{bottom:109.160667pt;}
.y186{bottom:109.267467pt;}
.y1a8{bottom:110.240933pt;}
.y133{bottom:110.681867pt;}
.yd6{bottom:118.744800pt;}
.y21a{bottom:119.491333pt;}
.y17d{bottom:121.453467pt;}
.y2f{bottom:124.414133pt;}
.y6f{bottom:124.576933pt;}
.yac{bottom:124.868800pt;}
.y10c{bottom:124.918000pt;}
.y1bf{bottom:125.160533pt;}
.y1dd{bottom:125.160667pt;}
.y185{bottom:125.267467pt;}
.y132{bottom:126.681867pt;}
.yd5{bottom:134.744800pt;}
.y219{bottom:135.491333pt;}
.y17c{bottom:137.453467pt;}
.y6e{bottom:140.576933pt;}
.yab{bottom:140.868800pt;}
.y10b{bottom:140.918000pt;}
.y1be{bottom:141.160533pt;}
.y1dc{bottom:141.160667pt;}
.y184{bottom:141.267467pt;}
.y131{bottom:142.681867pt;}
.yd4{bottom:150.744800pt;}
.y218{bottom:151.491333pt;}
.y17b{bottom:153.453467pt;}
.y6d{bottom:156.576933pt;}
.yaa{bottom:156.868800pt;}
.y10a{bottom:156.918000pt;}
.y1bd{bottom:157.160533pt;}
.y1db{bottom:157.160667pt;}
.y183{bottom:157.267467pt;}
.yd3{bottom:166.744800pt;}
.y217{bottom:167.491333pt;}
.y17a{bottom:169.453467pt;}
.y1c{bottom:170.650400pt;}
.y6c{bottom:172.576933pt;}
.ya9{bottom:172.868800pt;}
.y109{bottom:172.918000pt;}
.y1bc{bottom:173.160533pt;}
.y1da{bottom:173.160667pt;}
.y182{bottom:173.267467pt;}
.yd2{bottom:182.744800pt;}
.y216{bottom:183.491333pt;}
.y1b{bottom:186.650400pt;}
.y6b{bottom:188.576933pt;}
.ya8{bottom:188.868800pt;}
.y108{bottom:188.918000pt;}
.y1bb{bottom:189.160533pt;}
.y1d9{bottom:189.160667pt;}
.y181{bottom:189.267467pt;}
.yd1{bottom:198.744800pt;}
.y215{bottom:199.491333pt;}
.y6a{bottom:204.576933pt;}
.ya7{bottom:204.868800pt;}
.y107{bottom:204.918000pt;}
.y1ba{bottom:205.160533pt;}
.y1d8{bottom:205.160667pt;}
.y180{bottom:205.267467pt;}
.yd0{bottom:214.744800pt;}
.y214{bottom:215.491333pt;}
.y1a{bottom:218.650400pt;}
.y69{bottom:220.576933pt;}
.ya6{bottom:220.868800pt;}
.y106{bottom:220.918000pt;}
.y1b9{bottom:221.160533pt;}
.y1d7{bottom:221.160667pt;}
.ycf{bottom:230.744800pt;}
.y213{bottom:231.491333pt;}
.y19{bottom:234.650400pt;}
.y68{bottom:236.576933pt;}
.ya5{bottom:236.868800pt;}
.y105{bottom:236.918000pt;}
.y1b8{bottom:237.160533pt;}
.y1d6{bottom:237.160667pt;}
.yce{bottom:246.744800pt;}
.y212{bottom:247.491333pt;}
.y18{bottom:250.650400pt;}
.y67{bottom:252.576933pt;}
.ya4{bottom:252.868800pt;}
.y104{bottom:252.918000pt;}
.y1b7{bottom:253.160533pt;}
.y1d5{bottom:253.160667pt;}
.ycd{bottom:262.744800pt;}
.y211{bottom:263.491333pt;}
.y66{bottom:268.576933pt;}
.ya3{bottom:268.868800pt;}
.y103{bottom:268.918000pt;}
.y1b6{bottom:269.160533pt;}
.y1d4{bottom:269.160667pt;}
.ycc{bottom:278.744800pt;}
.y210{bottom:279.491333pt;}
.y17{bottom:282.650400pt;}
.y65{bottom:284.576933pt;}
.ya2{bottom:284.868800pt;}
.y102{bottom:284.918000pt;}
.y1b5{bottom:285.160533pt;}
.y1d3{bottom:285.160667pt;}
.ycb{bottom:294.744800pt;}
.y20f{bottom:295.491333pt;}
.y16{bottom:298.650400pt;}
.y64{bottom:300.576933pt;}
.ya1{bottom:300.868800pt;}
.y101{bottom:300.918000pt;}
.y1b4{bottom:301.160533pt;}
.y1d2{bottom:301.160667pt;}
.yca{bottom:310.744800pt;}
.y20e{bottom:311.491333pt;}
.y63{bottom:316.576933pt;}
.ya0{bottom:316.868800pt;}
.y100{bottom:316.918000pt;}
.y1b3{bottom:317.160533pt;}
.y1d1{bottom:317.160667pt;}
.yda{bottom:326.744800pt;}
.y20d{bottom:327.491333pt;}
.y62{bottom:332.576933pt;}
.y9f{bottom:332.868800pt;}
.yff{bottom:332.918000pt;}
.y1b2{bottom:333.160533pt;}
.y1d0{bottom:333.160667pt;}
.yc9{bottom:342.744800pt;}
.y20c{bottom:343.491333pt;}
.y15{bottom:346.650400pt;}
.y61{bottom:348.576933pt;}
.y9e{bottom:348.868800pt;}
.yfe{bottom:348.918000pt;}
.y1b1{bottom:349.160533pt;}
.y1cf{bottom:349.160667pt;}
.yc8{bottom:358.744800pt;}
.y20b{bottom:359.491333pt;}
.y14{bottom:362.650400pt;}
.y60{bottom:364.576933pt;}
.y9d{bottom:364.868800pt;}
.yfd{bottom:364.918000pt;}
.y1b0{bottom:365.160533pt;}
.y1ce{bottom:365.160667pt;}
.yc7{bottom:374.744800pt;}
.y20a{bottom:375.491333pt;}
.y13{bottom:378.650400pt;}
.y5f{bottom:380.576933pt;}
.y9c{bottom:380.868800pt;}
.yfc{bottom:380.918000pt;}
.y1af{bottom:381.160533pt;}
.y1cd{bottom:381.160667pt;}
.yc6{bottom:390.744800pt;}
.y209{bottom:391.491333pt;}
.y12{bottom:394.650400pt;}
.y5e{bottom:396.576933pt;}
.y9b{bottom:396.868800pt;}
.yfb{bottom:396.918000pt;}
.y1ae{bottom:397.160533pt;}
.y1cc{bottom:397.160667pt;}
.yc5{bottom:406.744800pt;}
.y208{bottom:407.491333pt;}
.y11{bottom:410.650400pt;}
.y5d{bottom:412.576933pt;}
.y9a{bottom:412.868800pt;}
.yfa{bottom:412.918000pt;}
.y1ad{bottom:413.160533pt;}
.y1cb{bottom:413.160667pt;}
.yc4{bottom:422.744800pt;}
.y207{bottom:423.491333pt;}
.y10{bottom:426.650400pt;}
.y5c{bottom:428.576933pt;}
.y99{bottom:428.868800pt;}
.yf9{bottom:428.918000pt;}
.y1ac{bottom:429.160533pt;}
.y1ca{bottom:429.160667pt;}
.yc3{bottom:438.744800pt;}
.y206{bottom:439.491333pt;}
.yf{bottom:442.650400pt;}
.y5b{bottom:444.576933pt;}
.y98{bottom:444.868800pt;}
.yf8{bottom:444.918000pt;}
.y1ab{bottom:445.160533pt;}
.y1c9{bottom:445.160667pt;}
.yc2{bottom:454.744800pt;}
.y205{bottom:455.491333pt;}
.ye{bottom:458.650400pt;}
.y5a{bottom:460.576933pt;}
.y97{bottom:460.868800pt;}
.yf7{bottom:460.918000pt;}
.y176{bottom:461.160533pt;}
.y1c8{bottom:461.160667pt;}
.yc1{bottom:470.744800pt;}
.y204{bottom:471.491333pt;}
.yd{bottom:474.650400pt;}
.y59{bottom:476.576933pt;}
.y96{bottom:476.868800pt;}
.yf6{bottom:476.918000pt;}
.y175{bottom:477.160533pt;}
.y1c7{bottom:477.160667pt;}
.yc0{bottom:486.744800pt;}
.y203{bottom:487.491333pt;}
.yc{bottom:490.650400pt;}
.y58{bottom:492.576933pt;}
.y95{bottom:492.868800pt;}
.yf5{bottom:492.918000pt;}
.y174{bottom:493.160533pt;}
.y1c6{bottom:493.160667pt;}
.ybf{bottom:502.744800pt;}
.y202{bottom:503.491333pt;}
.yb{bottom:506.650400pt;}
.y57{bottom:508.576933pt;}
.y94{bottom:508.868800pt;}
.yf4{bottom:508.918000pt;}
.y173{bottom:509.160533pt;}
.y1c5{bottom:509.160667pt;}
.ybe{bottom:518.744800pt;}
.y201{bottom:519.491333pt;}
.ya{bottom:522.650400pt;}
.y56{bottom:524.576933pt;}
.y93{bottom:524.868800pt;}
.yf3{bottom:524.918000pt;}
.y172{bottom:525.160533pt;}
.y1c4{bottom:525.160667pt;}
.ybd{bottom:534.744800pt;}
.y200{bottom:535.491333pt;}
.y9{bottom:538.650400pt;}
.y55{bottom:540.576933pt;}
.y92{bottom:540.868800pt;}
.yf2{bottom:540.918000pt;}
.y171{bottom:541.160533pt;}
.y1c3{bottom:541.160667pt;}
.ybc{bottom:550.744800pt;}
.y1ff{bottom:551.491333pt;}
.y8{bottom:554.650400pt;}
.y54{bottom:556.576933pt;}
.y91{bottom:556.868800pt;}
.yf1{bottom:556.918000pt;}
.y170{bottom:557.160533pt;}
.y14f{bottom:557.160667pt;}
.ybb{bottom:566.744800pt;}
.y1fe{bottom:567.491333pt;}
.y7{bottom:570.650400pt;}
.y53{bottom:572.576933pt;}
.y90{bottom:572.868800pt;}
.yf0{bottom:572.918000pt;}
.y16f{bottom:573.160533pt;}
.y14e{bottom:573.160667pt;}
.yba{bottom:582.744800pt;}
.y1fd{bottom:583.491333pt;}
.y6{bottom:586.650400pt;}
.y52{bottom:588.576933pt;}
.y1a5{bottom:588.690000pt;}
.y8f{bottom:588.868800pt;}
.yef{bottom:588.918000pt;}
.y16e{bottom:589.160533pt;}
.y14d{bottom:589.160667pt;}
.yb9{bottom:598.744800pt;}
.y1fc{bottom:599.491333pt;}
.y5{bottom:602.650400pt;}
.y51{bottom:604.576933pt;}
.y1a4{bottom:604.690000pt;}
.y8e{bottom:604.868800pt;}
.yee{bottom:604.918000pt;}
.y16d{bottom:605.160533pt;}
.y14c{bottom:605.160667pt;}
.yb8{bottom:614.744800pt;}
.y1fb{bottom:615.491333pt;}
.y50{bottom:620.576933pt;}
.y1a3{bottom:620.690000pt;}
.y8d{bottom:620.868800pt;}
.yed{bottom:620.918000pt;}
.y16c{bottom:621.160533pt;}
.y14b{bottom:621.160667pt;}
.yb7{bottom:630.744800pt;}
.y1fa{bottom:631.491333pt;}
.y4{bottom:634.650400pt;}
.y4f{bottom:636.576933pt;}
.y1a2{bottom:636.690000pt;}
.y8c{bottom:636.868800pt;}
.yec{bottom:636.918000pt;}
.y16b{bottom:637.160533pt;}
.y14a{bottom:637.160667pt;}
.yb6{bottom:646.744800pt;}
.y1f9{bottom:647.491333pt;}
.y4e{bottom:652.576933pt;}
.y1a1{bottom:652.690000pt;}
.y8b{bottom:652.868800pt;}
.yeb{bottom:652.918000pt;}
.y16a{bottom:653.160533pt;}
.y149{bottom:653.160667pt;}
.yb5{bottom:662.744800pt;}
.y1f8{bottom:663.491333pt;}
.y4d{bottom:668.576933pt;}
.y1a0{bottom:668.690000pt;}
.y8a{bottom:668.868800pt;}
.yea{bottom:668.918000pt;}
.y169{bottom:669.160533pt;}
.y148{bottom:669.160667pt;}
.y2e{bottom:672.697600pt;}
.yd9{bottom:678.744800pt;}
.y1f7{bottom:679.491333pt;}
.y4c{bottom:684.576933pt;}
.y19f{bottom:684.690000pt;}
.y89{bottom:684.868800pt;}
.ye9{bottom:684.918000pt;}
.y168{bottom:685.160533pt;}
.y147{bottom:685.160667pt;}
.y2d{bottom:693.137600pt;}
.yb4{bottom:694.744800pt;}
.y1f6{bottom:695.491333pt;}
.y4b{bottom:700.576933pt;}
.y19e{bottom:700.690000pt;}
.y88{bottom:700.868800pt;}
.ye8{bottom:700.918000pt;}
.y167{bottom:701.160533pt;}
.y146{bottom:701.160667pt;}
.y2c{bottom:704.697600pt;}
.yb3{bottom:710.744800pt;}
.y1f5{bottom:711.491333pt;}
.y4a{bottom:716.576933pt;}
.y19d{bottom:716.690000pt;}
.y87{bottom:716.868800pt;}
.ye7{bottom:716.918000pt;}
.y166{bottom:717.160533pt;}
.y145{bottom:717.160667pt;}
.y2b{bottom:725.137600pt;}
.yb2{bottom:726.744800pt;}
.y1f4{bottom:727.491333pt;}
.y49{bottom:732.576933pt;}
.y19c{bottom:732.690000pt;}
.y86{bottom:732.868800pt;}
.ye6{bottom:732.918000pt;}
.y165{bottom:733.160533pt;}
.y152{bottom:733.160667pt;}
.y2a{bottom:736.697600pt;}
.yb1{bottom:742.744800pt;}
.y1f3{bottom:743.491333pt;}
.y48{bottom:748.576933pt;}
.y19b{bottom:748.690000pt;}
.y85{bottom:748.868800pt;}
.y177{bottom:749.160533pt;}
.y144{bottom:749.160667pt;}
.y29{bottom:757.137600pt;}
.yb0{bottom:758.744800pt;}
.y1f2{bottom:759.491333pt;}
.y47{bottom:764.576933pt;}
.y19a{bottom:764.690000pt;}
.y84{bottom:764.868800pt;}
.y164{bottom:765.160533pt;}
.y151{bottom:765.160667pt;}
.y11f{bottom:769.238800pt;}
.y28{bottom:773.137600pt;}
.y11e{bottom:773.377467pt;}
.y1f1{bottom:775.491333pt;}
.y46{bottom:780.576933pt;}
.y11d{bottom:780.577467pt;}
.y199{bottom:780.690000pt;}
.y83{bottom:780.868800pt;}
.y163{bottom:781.160533pt;}
.y150{bottom:781.160667pt;}
.y27{bottom:784.697600pt;}
.y1f0{bottom:791.491333pt;}
.y45{bottom:796.576933pt;}
.y198{bottom:796.690000pt;}
.y82{bottom:796.868800pt;}
.y162{bottom:797.160533pt;}
.y143{bottom:797.160667pt;}
.ye5{bottom:800.217600pt;}
.y26{bottom:805.137600pt;}
.y1ef{bottom:807.491333pt;}
.y44{bottom:812.576933pt;}
.y197{bottom:812.690000pt;}
.y81{bottom:812.868800pt;}
.y161{bottom:813.160533pt;}
.y142{bottom:813.160667pt;}
.y11c{bottom:814.593067pt;}
.y25{bottom:821.137600pt;}
.y1ee{bottom:823.491333pt;}
.ye4{bottom:824.217600pt;}
.y11b{bottom:825.931867pt;}
.y43{bottom:828.576933pt;}
.y196{bottom:828.690000pt;}
.y80{bottom:828.868800pt;}
.y160{bottom:829.160533pt;}
.y141{bottom:829.160667pt;}
.y24{bottom:832.697600pt;}
.y1ed{bottom:839.491333pt;}
.y42{bottom:844.576933pt;}
.y195{bottom:844.690000pt;}
.y7f{bottom:844.868800pt;}
.y15f{bottom:845.160533pt;}
.y140{bottom:845.160667pt;}
.ye3{bottom:848.217600pt;}
.y23{bottom:853.137600pt;}
.y1ec{bottom:855.491333pt;}
.y11a{bottom:859.947467pt;}
.y41{bottom:860.576933pt;}
.y194{bottom:860.690000pt;}
.y7e{bottom:860.868800pt;}
.y15e{bottom:861.160533pt;}
.y13f{bottom:861.160667pt;}
.y119{bottom:871.286000pt;}
.y1eb{bottom:871.491333pt;}
.ye2{bottom:872.217600pt;}
.y40{bottom:876.576933pt;}
.y193{bottom:876.690000pt;}
.y7d{bottom:876.868800pt;}
.y15d{bottom:877.160533pt;}
.y13e{bottom:877.160667pt;}
.y22{bottom:880.697600pt;}
.y1ea{bottom:887.491333pt;}
.y3f{bottom:892.576933pt;}
.y192{bottom:892.690000pt;}
.y7c{bottom:892.868800pt;}
.y15c{bottom:893.160533pt;}
.y13d{bottom:893.160667pt;}
.ye1{bottom:896.217600pt;}
.y21{bottom:896.697600pt;}
.y1e9{bottom:903.491333pt;}
.y118{bottom:905.301733pt;}
.y3e{bottom:908.576933pt;}
.y191{bottom:908.690000pt;}
.y7b{bottom:908.868800pt;}
.y15b{bottom:909.160533pt;}
.y13c{bottom:909.160667pt;}
.y117{bottom:909.440400pt;}
.y128{bottom:909.708267pt;}
.y130{bottom:909.800000pt;}
.y116{bottom:916.640400pt;}
.y1e8{bottom:919.491333pt;}
.ye0{bottom:920.217600pt;}
.y3d{bottom:924.576933pt;}
.y190{bottom:924.690000pt;}
.y7a{bottom:924.868800pt;}
.y15a{bottom:925.160533pt;}
.y13b{bottom:925.160667pt;}
.y127{bottom:925.708267pt;}
.y12f{bottom:925.800000pt;}
.y20{bottom:928.786667pt;}
.y1e7{bottom:935.491333pt;}
.y3c{bottom:940.576933pt;}
.y18f{bottom:940.690000pt;}
.y79{bottom:940.868800pt;}
.y159{bottom:941.160533pt;}
.y13a{bottom:941.160667pt;}
.y126{bottom:941.708267pt;}
.y12e{bottom:941.800000pt;}
.ydf{bottom:944.217600pt;}
.y1f{bottom:947.986667pt;}
.y115{bottom:950.656133pt;}
.y1e6{bottom:951.491333pt;}
.y114{bottom:954.794667pt;}
.y3b{bottom:956.576933pt;}
.y18e{bottom:956.690000pt;}
.y78{bottom:956.868800pt;}
.y158{bottom:957.160533pt;}
.y139{bottom:957.160667pt;}
.y125{bottom:957.708267pt;}
.y113{bottom:961.994667pt;}
.y1e{bottom:967.186667pt;}
.y1e5{bottom:967.491333pt;}
.yde{bottom:968.217600pt;}
.y3a{bottom:972.576933pt;}
.y18d{bottom:972.690000pt;}
.y77{bottom:972.868800pt;}
.y157{bottom:973.160533pt;}
.y138{bottom:973.160667pt;}
.y124{bottom:973.708267pt;}
.y12d{bottom:973.800000pt;}
.y1e4{bottom:983.491333pt;}
.y39{bottom:988.576933pt;}
.y18c{bottom:988.690000pt;}
.y76{bottom:988.868800pt;}
.ydd{bottom:988.876667pt;}
.y156{bottom:989.160533pt;}
.y137{bottom:989.160667pt;}
.y123{bottom:989.708267pt;}
.y12c{bottom:989.800000pt;}
.y111{bottom:992.843067pt;}
.y1e3{bottom:999.491333pt;}
.y38{bottom:1004.576933pt;}
.y18b{bottom:1004.690000pt;}
.y75{bottom:1004.868800pt;}
.y155{bottom:1005.160533pt;}
.y136{bottom:1005.160667pt;}
.y122{bottom:1005.708267pt;}
.y12b{bottom:1005.800000pt;}
.y112{bottom:1007.243067pt;}
.y1e2{bottom:1015.491333pt;}
.y37{bottom:1020.576933pt;}
.y18a{bottom:1020.690000pt;}
.y74{bottom:1020.868800pt;}
.y154{bottom:1021.160533pt;}
.ydc{bottom:1021.160667pt;}
.y121{bottom:1021.708267pt;}
.y12a{bottom:1021.800000pt;}
.y1e1{bottom:1031.491333pt;}
.y36{bottom:1036.576933pt;}
.y189{bottom:1036.690000pt;}
.y73{bottom:1036.868800pt;}
.y153{bottom:1037.160533pt;}
.ydb{bottom:1037.160667pt;}
.y110{bottom:1037.170133pt;}
.y120{bottom:1037.708267pt;}
.y129{bottom:1037.800000pt;}
.y1{bottom:1074.120000pt;}
.y34{bottom:1076.954667pt;}
.y1d{bottom:1084.855067pt;}
.hd{height:14.109333pt;}
.h2{height:16.000000pt;}
.hb{height:22.500156pt;}
.ha{height:22.697526pt;}
.h11{height:35.039062pt;}
.h3{height:38.593750pt;}
.h5{height:38.932292pt;}
.h16{height:39.270833pt;}
.hf{height:40.260156pt;}
.h10{height:40.260690pt;}
.h9{height:40.457526pt;}
.he{height:41.380208pt;}
.h8{height:46.718750pt;}
.h7{height:47.125000pt;}
.h6{height:49.656250pt;}
.h4{height:63.470017pt;}
.h14{height:63.838529pt;}
.h12{height:63.839063pt;}
.hc{height:66.860950pt;}
.h15{height:80.393196pt;}
.h13{height:109.193196pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:627.466667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:80.971067pt;}
.x1{left:83.117333pt;}
.x19{left:86.299200pt;}
.xa{left:87.562133pt;}
.xd{left:88.512133pt;}
.x2b{left:90.708667pt;}
.x21{left:95.952400pt;}
.x25{left:98.571600pt;}
.x5{left:101.636267pt;}
.x8{left:104.826000pt;}
.x9{left:109.088533pt;}
.xc{left:111.630667pt;}
.x14{left:114.391067pt;}
.x12{left:116.643733pt;}
.x6{left:123.370667pt;}
.x10{left:148.014133pt;}
.x22{left:158.827333pt;}
.x18{left:164.544800pt;}
.x1d{left:166.136933pt;}
.x24{left:170.710267pt;}
.x26{left:171.694533pt;}
.x1c{left:172.888133pt;}
.x1b{left:176.221467pt;}
.x16{left:196.755067pt;}
.x28{left:212.744667pt;}
.x13{left:245.470133pt;}
.xf{left:256.080533pt;}
.x7{left:275.995600pt;}
.x11{left:277.078267pt;}
.x1e{left:279.176667pt;}
.xe{left:282.963600pt;}
.x1a{left:284.082667pt;}
.x15{left:300.095733pt;}
.xb{left:344.890667pt;}
.x23{left:365.885600pt;}
.x3{left:371.306800pt;}
.x2{left:391.232533pt;}
.x17{left:406.299200pt;}
.x27{left:407.244000pt;}
.x30{left:475.689067pt;}
.x29{left:482.519733pt;}
.x2c{left:486.299200pt;}
.x2e{left:497.821333pt;}
.x2f{left:512.821333pt;}
.x2d{left:520.669600pt;}
.x2a{left:524.764667pt;}
.x20{left:663.132133pt;}
.x1f{left:665.294267pt;}
}




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