
    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_5d1abcba6027099f58011faf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_920da8d0eb4914c592b2ad2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_f742497c3e1cff42676ee8f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_8ba1acdf74b72e0d29d605b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_d33b12e38271898f3e8e3527.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_8f6b10c72a27ad3a2911c0c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_31d861a8090b8c48e3b64f28.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_48af15d1f190fe5570af748a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.209999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209999,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.210002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210002,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.210002,0.000000,-0.068454,0.240446,0,0);-ms-transform:matrix(0.210002,0.000000,-0.068454,0.240446,0,0);-webkit-transform:matrix(0.210002,0.000000,-0.068454,0.240446,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-25.488000px;}
.v2{vertical-align:-16.470000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.992000px;}
.v4{vertical-align:20.595600px;}
.v1{vertical-align:22.656000px;}
.ls20{letter-spacing:-7.338000px;}
.ls1f{letter-spacing:-7.314000px;}
.ls22{letter-spacing:-5.034000px;}
.ls21{letter-spacing:-4.410000px;}
.ls7b{letter-spacing:-1.916732px;}
.ls1e{letter-spacing:-0.720000px;}
.ls61{letter-spacing:-0.420000px;}
.ls57{letter-spacing:-0.300000px;}
.ls92{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.240000px;}
.ls63{letter-spacing:-0.180000px;}
.ls78{letter-spacing:-0.164234px;}
.ls72{letter-spacing:-0.144000px;}
.ls3b{letter-spacing:-0.120000px;}
.ls7c{letter-spacing:-0.109489px;}
.ls74{letter-spacing:-0.096000px;}
.ls24{letter-spacing:-0.060000px;}
.ls7a{letter-spacing:-0.054745px;}
.ls77{letter-spacing:-0.048000px;}
.ls1d{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.013200px;}
.ls6c{letter-spacing:0.028800px;}
.ls71{letter-spacing:0.048000px;}
.ls3a{letter-spacing:0.060000px;}
.ls49{letter-spacing:0.096000px;}
.ls2a{letter-spacing:0.120000px;}
.ls81{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.300000px;}
.ls70{letter-spacing:0.336000px;}
.ls1c{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.384000px;}
.ls6a{letter-spacing:0.409200px;}
.lsa{letter-spacing:0.420000px;}
.ls88{letter-spacing:0.432000px;}
.ls54{letter-spacing:0.480000px;}
.ls2f{letter-spacing:0.540000px;}
.ls73{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.618000px;}
.ls5{letter-spacing:0.624000px;}
.ls15{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.780000px;}
.ls83{letter-spacing:0.816000px;}
.ls4f{letter-spacing:0.840000px;}
.ls48{letter-spacing:0.864000px;}
.ls36{letter-spacing:0.900000px;}
.ls44{letter-spacing:0.960000px;}
.lse{letter-spacing:1.020000px;}
.ls8{letter-spacing:1.056000px;}
.ls29{letter-spacing:1.080000px;}
.ls7f{letter-spacing:1.104000px;}
.lsd{letter-spacing:1.140000px;}
.ls8b{letter-spacing:1.152000px;}
.ls3d{letter-spacing:1.200000px;}
.ls79{letter-spacing:1.206831px;}
.ls82{letter-spacing:1.248000px;}
.ls2e{letter-spacing:1.260000px;}
.ls76{letter-spacing:1.277822px;}
.ls52{letter-spacing:1.320000px;}
.ls80{letter-spacing:1.344000px;}
.ls26{letter-spacing:1.380000px;}
.ls8f{letter-spacing:1.392000px;}
.ls62{letter-spacing:1.440000px;}
.ls7e{letter-spacing:1.488000px;}
.ls42{letter-spacing:1.500000px;}
.ls5a{letter-spacing:1.560000px;}
.ls7{letter-spacing:1.584000px;}
.ls2c{letter-spacing:1.620000px;}
.ls1a{letter-spacing:1.680000px;}
.ls7d{letter-spacing:1.728000px;}
.lsc{letter-spacing:1.740000px;}
.ls84{letter-spacing:1.776000px;}
.lsb{letter-spacing:1.800000px;}
.ls89{letter-spacing:1.824000px;}
.ls25{letter-spacing:1.860000px;}
.ls8e{letter-spacing:1.872000px;}
.ls13{letter-spacing:1.920000px;}
.ls31{letter-spacing:1.980000px;}
.ls87{letter-spacing:2.016000px;}
.ls39{letter-spacing:2.040000px;}
.ls11{letter-spacing:2.100000px;}
.ls18{letter-spacing:2.160000px;}
.ls8c{letter-spacing:2.208000px;}
.ls33{letter-spacing:2.220000px;}
.ls40{letter-spacing:2.280000px;}
.ls37{letter-spacing:2.340000px;}
.ls1b{letter-spacing:2.400000px;}
.ls45{letter-spacing:2.460000px;}
.ls28{letter-spacing:2.520000px;}
.ls8a{letter-spacing:2.544000px;}
.ls4e{letter-spacing:2.580000px;}
.ls14{letter-spacing:2.640000px;}
.ls4c{letter-spacing:2.700000px;}
.ls6b{letter-spacing:2.760000px;}
.ls5c{letter-spacing:2.820000px;}
.ls2b{letter-spacing:2.880000px;}
.ls68{letter-spacing:2.940000px;}
.ls86{letter-spacing:2.976000px;}
.ls38{letter-spacing:3.000000px;}
.ls4a{letter-spacing:3.060000px;}
.ls6e{letter-spacing:3.120000px;}
.ls51{letter-spacing:3.180000px;}
.ls64{letter-spacing:3.240000px;}
.ls90{letter-spacing:3.264000px;}
.ls4d{letter-spacing:3.300000px;}
.ls60{letter-spacing:3.360000px;}
.ls47{letter-spacing:3.420000px;}
.ls9{letter-spacing:3.480000px;}
.ls8d{letter-spacing:3.504000px;}
.ls27{letter-spacing:3.540000px;}
.ls17{letter-spacing:3.600000px;}
.ls50{letter-spacing:3.660000px;}
.ls41{letter-spacing:3.780000px;}
.ls34{letter-spacing:3.840000px;}
.ls67{letter-spacing:3.900000px;}
.ls69{letter-spacing:3.960000px;}
.ls23{letter-spacing:3.996000px;}
.lsf{letter-spacing:4.020000px;}
.ls16{letter-spacing:4.080000px;}
.ls65{letter-spacing:4.140000px;}
.ls56{letter-spacing:4.200000px;}
.ls5f{letter-spacing:4.260000px;}
.ls3f{letter-spacing:4.320000px;}
.ls55{letter-spacing:4.380000px;}
.ls30{letter-spacing:4.500000px;}
.ls6d{letter-spacing:4.560000px;}
.ls10{letter-spacing:4.620000px;}
.ls35{letter-spacing:4.680000px;}
.ls43{letter-spacing:4.800000px;}
.ls58{letter-spacing:4.860000px;}
.ls75{letter-spacing:5.400000px;}
.ls85{letter-spacing:5.424000px;}
.ls4b{letter-spacing:5.520000px;}
.ls59{letter-spacing:6.000000px;}
.ls46{letter-spacing:6.060000px;}
.ls53{letter-spacing:6.120000px;}
.ls5e{letter-spacing:6.480000px;}
.ls5b{letter-spacing:6.540000px;}
.ls66{letter-spacing:7.320000px;}
.ls5d{letter-spacing:8.100000px;}
.ls6f{letter-spacing:9.420000px;}
.ls91{letter-spacing:9.720000px;}
.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;}
}
.ws75{word-spacing:-20.580000px;}
.ws33{word-spacing:-20.340000px;}
.ws2a{word-spacing:-20.280000px;}
.ws87{word-spacing:-20.040000px;}
.ws8b{word-spacing:-19.735244px;}
.ws6c{word-spacing:-19.680000px;}
.ws86{word-spacing:-19.560000px;}
.ws2c{word-spacing:-19.140000px;}
.ws64{word-spacing:-19.080000px;}
.ws4b{word-spacing:-18.900000px;}
.ws89{word-spacing:-18.660000px;}
.ws62{word-spacing:-18.540000px;}
.ws7{word-spacing:-18.480000px;}
.ws31{word-spacing:-18.420000px;}
.ws63{word-spacing:-18.360000px;}
.ws1{word-spacing:-18.348000px;}
.ws88{word-spacing:-17.940000px;}
.ws49{word-spacing:-17.760000px;}
.ws4a{word-spacing:-17.700000px;}
.ws32{word-spacing:-17.640000px;}
.ws30{word-spacing:-17.580000px;}
.ws2d{word-spacing:-17.280000px;}
.ws2f{word-spacing:-16.980000px;}
.ws2b{word-spacing:-16.860000px;}
.ws1c{word-spacing:-16.680000px;}
.ws2e{word-spacing:-16.620000px;}
.ws1b{word-spacing:-16.560000px;}
.ws8c{word-spacing:-15.218999px;}
.ws9e{word-spacing:-15.216000px;}
.ws65{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.928000px;}
.ws20{word-spacing:-14.178000px;}
.ws7e{word-spacing:-13.824000px;}
.ws4{word-spacing:-13.728000px;}
.ws6{word-spacing:-13.632000px;}
.ws9d{word-spacing:-13.584000px;}
.ws3{word-spacing:-13.536000px;}
.ws2{word-spacing:-13.344000px;}
.ws8a{word-spacing:-13.296000px;}
.ws3f{word-spacing:-12.912000px;}
.ws40{word-spacing:-12.096000px;}
.ws3e{word-spacing:-11.808000px;}
.ws0{word-spacing:-11.008800px;}
.ws9f{word-spacing:-9.720000px;}
.ws3c{word-spacing:-6.720000px;}
.ws3d{word-spacing:-4.992000px;}
.ws3a{word-spacing:-4.080000px;}
.ws57{word-spacing:-3.840000px;}
.wsc{word-spacing:-3.696000px;}
.wsb{word-spacing:-3.630000px;}
.wsa{word-spacing:-3.192000px;}
.ws6e{word-spacing:-3.000000px;}
.ws8d{word-spacing:-2.880000px;}
.ws8e{word-spacing:-2.820000px;}
.ws81{word-spacing:-2.700000px;}
.ws9{word-spacing:-2.664000px;}
.ws22{word-spacing:-2.220000px;}
.ws51{word-spacing:-2.100000px;}
.ws25{word-spacing:-2.040000px;}
.ws95{word-spacing:-1.980000px;}
.ws18{word-spacing:-1.740000px;}
.ws92{word-spacing:-1.620000px;}
.ws98{word-spacing:-1.277822px;}
.ws97{word-spacing:-1.206831px;}
.wsa4{word-spacing:-1.152000px;}
.ws4e{word-spacing:-1.080000px;}
.ws55{word-spacing:-1.020000px;}
.ws71{word-spacing:-0.780000px;}
.wsa6{word-spacing:-0.720000px;}
.wsa9{word-spacing:-0.624000px;}
.ws39{word-spacing:-0.600000px;}
.wsac{word-spacing:-0.480000px;}
.ws15{word-spacing:-0.420000px;}
.ws72{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.222000px;}
.ws37{word-spacing:-0.180000px;}
.ws24{word-spacing:-0.120000px;}
.ws9c{word-spacing:-0.054745px;}
.ws8{word-spacing:0.000000px;}
.wsaa{word-spacing:0.048000px;}
.ws99{word-spacing:0.054745px;}
.ws41{word-spacing:0.060000px;}
.ws46{word-spacing:0.096000px;}
.ws9b{word-spacing:0.109489px;}
.ws21{word-spacing:0.120000px;}
.ws7c{word-spacing:0.144000px;}
.ws96{word-spacing:0.164234px;}
.ws48{word-spacing:0.180000px;}
.ws43{word-spacing:0.240000px;}
.ws23{word-spacing:0.300000px;}
.ws29{word-spacing:0.420000px;}
.ws61{word-spacing:0.432000px;}
.ws36{word-spacing:0.540000px;}
.wse{word-spacing:0.570000px;}
.ws17{word-spacing:0.600000px;}
.ws90{word-spacing:0.720000px;}
.ws42{word-spacing:0.780000px;}
.wsa2{word-spacing:0.816000px;}
.ws82{word-spacing:0.840000px;}
.wsa1{word-spacing:0.864000px;}
.ws53{word-spacing:0.900000px;}
.ws7f{word-spacing:0.960000px;}
.ws70{word-spacing:1.020000px;}
.ws83{word-spacing:1.080000px;}
.ws54{word-spacing:1.200000px;}
.ws5b{word-spacing:1.320000px;}
.ws44{word-spacing:1.380000px;}
.ws5f{word-spacing:1.440000px;}
.ws6d{word-spacing:1.620000px;}
.ws45{word-spacing:1.680000px;}
.wsa0{word-spacing:1.824000px;}
.ws7d{word-spacing:1.872000px;}
.ws9a{word-spacing:1.916732px;}
.ws6b{word-spacing:1.968000px;}
.ws6f{word-spacing:1.980000px;}
.ws94{word-spacing:2.100000px;}
.ws47{word-spacing:2.112000px;}
.ws85{word-spacing:2.208000px;}
.ws56{word-spacing:2.220000px;}
.ws84{word-spacing:2.280000px;}
.ws5a{word-spacing:2.340000px;}
.wsa5{word-spacing:2.352000px;}
.wsab{word-spacing:2.400000px;}
.ws60{word-spacing:2.460000px;}
.ws50{word-spacing:2.640000px;}
.ws67{word-spacing:2.736000px;}
.ws91{word-spacing:2.820000px;}
.ws59{word-spacing:2.940000px;}
.ws5d{word-spacing:3.000000px;}
.ws6a{word-spacing:3.060000px;}
.ws78{word-spacing:3.360000px;}
.ws3b{word-spacing:3.456000px;}
.wsa3{word-spacing:3.504000px;}
.ws27{word-spacing:3.600000px;}
.ws5e{word-spacing:3.648000px;}
.ws74{word-spacing:3.720000px;}
.ws69{word-spacing:3.900000px;}
.ws77{word-spacing:3.960000px;}
.wsa7{word-spacing:3.984000px;}
.ws34{word-spacing:4.020000px;}
.wsa8{word-spacing:4.032000px;}
.ws13{word-spacing:4.128000px;}
.ws26{word-spacing:4.200000px;}
.wsf{word-spacing:4.368000px;}
.ws73{word-spacing:4.380000px;}
.wsd{word-spacing:4.416000px;}
.ws19{word-spacing:4.440000px;}
.ws12{word-spacing:4.446000px;}
.ws52{word-spacing:4.500000px;}
.ws66{word-spacing:4.680000px;}
.ws38{word-spacing:4.740000px;}
.ws35{word-spacing:4.860000px;}
.ws28{word-spacing:4.920000px;}
.ws5c{word-spacing:4.980000px;}
.ws10{word-spacing:4.998000px;}
.ws93{word-spacing:5.160000px;}
.ws1a{word-spacing:5.220000px;}
.ws4d{word-spacing:5.280000px;}
.ws80{word-spacing:5.340000px;}
.ws58{word-spacing:5.400000px;}
.ws14{word-spacing:5.460000px;}
.ws16{word-spacing:5.520000px;}
.ws4f{word-spacing:7.500000px;}
.ws8f{word-spacing:8.280000px;}
.ws1d{word-spacing:313.296000px;}
.ws1e{word-spacing:316.800000px;}
.ws1f{word-spacing:326.640000px;}
.ws4c{word-spacing:406.368000px;}
.ws7b{word-spacing:488.832000px;}
.ws79{word-spacing:507.744000px;}
.ws7a{word-spacing:667.632000px;}
.ws76{word-spacing:1748.880000px;}
.ws68{word-spacing:1786.752000px;}
._21{margin-left:-2898.126000px;}
._26{margin-left:-2874.309000px;}
._9{margin-left:-6.735600px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.438000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.004400px;}
._6{width:1.080000px;}
._36{width:2.087525px;}
._7{width:3.096000px;}
._8{width:4.860000px;}
._4{width:5.940000px;}
._35{width:7.020000px;}
._5{width:8.136000px;}
._31{width:30.432000px;}
._22{width:33.750000px;}
._24{width:38.448000px;}
._23{width:59.040000px;}
._25{width:62.496000px;}
._30{width:86.832000px;}
._33{width:134.832000px;}
._15{width:145.152000px;}
._10{width:168.384000px;}
._16{width:186.048000px;}
._28{width:205.200000px;}
._27{width:211.392000px;}
._14{width:249.120000px;}
._1d{width:257.040000px;}
._e{width:259.104000px;}
._29{width:266.640000px;}
._13{width:272.784000px;}
._c{width:288.480000px;}
._12{width:291.168000px;}
._2a{width:311.520000px;}
._2e{width:314.160000px;}
._2b{width:320.016000px;}
._2f{width:322.656000px;}
._1e{width:331.536000px;}
._1b{width:338.640000px;}
._2c{width:340.032000px;}
._2d{width:341.520000px;}
._19{width:344.880000px;}
._1a{width:347.760000px;}
._32{width:349.158000px;}
._18{width:356.784000px;}
._1c{width:368.784000px;}
._20{width:370.128000px;}
._17{width:377.136000px;}
._1f{width:379.824000px;}
._11{width:391.581600px;}
._f{width:496.926000px;}
._d{width:590.286000px;}
._a{width:694.800000px;}
._b{width:700.656000px;}
._34{width:734.448000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fsc{font-size:54.744600px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fsd{font-size:70.990086px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fsb{font-size:95.752800px;}
.y0{bottom:0.000000px;}
.y2c{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y155{bottom:82.807500px;}
.y17c{bottom:83.232600px;}
.y176{bottom:83.363850px;}
.y2b{bottom:83.493900px;}
.y19f{bottom:83.513850px;}
.y141{bottom:83.775900px;}
.yeb{bottom:83.870400px;}
.y1a2{bottom:84.080100px;}
.y195{bottom:84.086700px;}
.y17e{bottom:84.094800px;}
.y18a{bottom:84.308850px;}
.yef{bottom:84.519900px;}
.yde{bottom:87.851100px;}
.yaa{bottom:88.305750px;}
.y1de{bottom:88.796700px;}
.y78{bottom:91.935000px;}
.y13c{bottom:92.530350px;}
.y21e{bottom:94.938300px;}
.y154{bottom:98.551500px;}
.y17b{bottom:98.976600px;}
.y140{bottom:99.519900px;}
.yea{bottom:99.614400px;}
.y1a1{bottom:99.824100px;}
.y194{bottom:99.830700px;}
.y17d{bottom:99.838800px;}
.y189{bottom:100.052850px;}
.yee{bottom:100.263900px;}
.y175{bottom:101.363850px;}
.y19e{bottom:101.513850px;}
.y1dd{bottom:103.796700px;}
.ydd{bottom:105.851100px;}
.ya9{bottom:106.305750px;}
.y77{bottom:108.183000px;}
.y13b{bottom:109.030350px;}
.y21d{bottom:109.938300px;}
.y1a4{bottom:111.079350px;}
.y153{bottom:114.295500px;}
.y17a{bottom:114.720600px;}
.ye9{bottom:115.358400px;}
.y1a0{bottom:115.571100px;}
.y193{bottom:115.574700px;}
.y188{bottom:115.796850px;}
.y1dc{bottom:118.796700px;}
.y174{bottom:119.363850px;}
.y19d{bottom:119.513850px;}
.y18{bottom:121.518300px;}
.ydc{bottom:123.851100px;}
.ya8{bottom:124.305750px;}
.y76{bottom:124.431000px;}
.y21c{bottom:124.938300px;}
.y13a{bottom:125.278350px;}
.y1a3{bottom:126.823350px;}
.y1db{bottom:133.796700px;}
.y173{bottom:137.363850px;}
.y19c{bottom:137.513850px;}
.y21b{bottom:139.938300px;}
.y75{bottom:140.679000px;}
.y139{bottom:141.778350px;}
.ydb{bottom:141.851100px;}
.ya7{bottom:142.305750px;}
.yf3{bottom:147.025350px;}
.y1da{bottom:148.796700px;}
.y197{bottom:151.702200px;}
.y18c{bottom:152.338950px;}
.yed{bottom:153.398850px;}
.y13e{bottom:153.402900px;}
.y181{bottom:154.676700px;}
.y21a{bottom:154.938300px;}
.y172{bottom:155.363850px;}
.y19b{bottom:155.513850px;}
.y1a9{bottom:156.217650px;}
.y1aa{bottom:156.218100px;}
.y74{bottom:156.927000px;}
.y138{bottom:158.026350px;}
.y145{bottom:158.092050px;}
.y162{bottom:159.347700px;}
.yda{bottom:159.851100px;}
.ya6{bottom:160.305750px;}
.y1d9{bottom:163.796700px;}
.y219{bottom:169.938300px;}
.y73{bottom:173.175000px;}
.y171{bottom:173.363850px;}
.y19a{bottom:173.513850px;}
.y137{bottom:174.526350px;}
.y27{bottom:176.556600px;}
.yd9{bottom:177.851100px;}
.ya5{bottom:178.305750px;}
.y1d8{bottom:178.796700px;}
.y1b7{bottom:181.344107px;}
.y218{bottom:184.938300px;}
.y72{bottom:189.423000px;}
.y136{bottom:191.026350px;}
.y170{bottom:191.363850px;}
.y1d7{bottom:193.796700px;}
.y26{bottom:194.556600px;}
.yd8{bottom:195.851100px;}
.ya4{bottom:196.305750px;}
.y217{bottom:199.938300px;}
.y1b1{bottom:204.708300px;}
.y1b0{bottom:204.708750px;}
.y71{bottom:205.671000px;}
.y135{bottom:207.274350px;}
.y1d6{bottom:208.796700px;}
.y16f{bottom:209.363850px;}
.y199{bottom:209.513850px;}
.y25{bottom:212.556600px;}
.yd7{bottom:213.851100px;}
.ya3{bottom:214.305750px;}
.y216{bottom:214.938300px;}
.y134{bottom:223.774350px;}
.y1d5{bottom:223.796700px;}
.y16e{bottom:227.363850px;}
.y215{bottom:229.938300px;}
.y24{bottom:230.556600px;}
.yd6{bottom:231.851100px;}
.ya2{bottom:232.305750px;}
.y70{bottom:237.183000px;}
.y1d4{bottom:238.796700px;}
.y133{bottom:240.274350px;}
.y1b6{bottom:243.670834px;}
.y214{bottom:244.938300px;}
.y16d{bottom:245.363850px;}
.y23{bottom:248.556600px;}
.yd5{bottom:249.851100px;}
.ya1{bottom:250.305750px;}
.y1a7{bottom:253.200000px;}
.y1a8{bottom:253.200450px;}
.y1d3{bottom:253.796700px;}
.y132{bottom:256.522350px;}
.y213{bottom:259.938300px;}
.y16c{bottom:263.363850px;}
.y22{bottom:266.556600px;}
.yd4{bottom:267.851100px;}
.ya0{bottom:268.305750px;}
.y1d2{bottom:268.796700px;}
.y131{bottom:273.022350px;}
.y212{bottom:274.938300px;}
.y16b{bottom:281.363850px;}
.y1d1{bottom:283.796700px;}
.y21{bottom:284.556600px;}
.yd3{bottom:285.851100px;}
.y9f{bottom:286.305750px;}
.y130{bottom:289.270350px;}
.y211{bottom:289.938300px;}
.y6f{bottom:290.727300px;}
.y1d0{bottom:298.796700px;}
.y16a{bottom:299.363850px;}
.y1ab{bottom:301.691250px;}
.y1ac{bottom:301.691700px;}
.y20{bottom:302.556600px;}
.yd2{bottom:303.851100px;}
.y9e{bottom:304.305750px;}
.y210{bottom:304.938300px;}
.y12f{bottom:305.770350px;}
.y6e{bottom:306.975300px;}
.y1cf{bottom:313.796700px;}
.y169{bottom:317.363850px;}
.y20f{bottom:319.938300px;}
.y1f{bottom:320.556600px;}
.yd1{bottom:321.851100px;}
.y9d{bottom:322.305750px;}
.y6d{bottom:323.223300px;}
.y1ce{bottom:328.796700px;}
.y20e{bottom:334.938300px;}
.y168{bottom:335.363850px;}
.y12e{bottom:337.282350px;}
.y1e{bottom:338.556600px;}
.y6c{bottom:339.471300px;}
.yd0{bottom:339.851100px;}
.y9c{bottom:340.305750px;}
.y1b5{bottom:340.650893px;}
.y1cd{bottom:343.796700px;}
.y20d{bottom:349.938300px;}
.y1b2{bottom:350.080650px;}
.y167{bottom:353.363850px;}
.y6b{bottom:355.719300px;}
.y1d{bottom:356.556600px;}
.ycf{bottom:357.851100px;}
.y9b{bottom:358.305750px;}
.y1cc{bottom:358.796700px;}
.y196{bottom:359.623500px;}
.y198{bottom:359.626200px;}
.y18b{bottom:360.898950px;}
.y20c{bottom:364.938300px;}
.y166{bottom:371.363850px;}
.y6a{bottom:371.967300px;}
.y12d{bottom:372.109200px;}
.y1cb{bottom:373.796700px;}
.y1c{bottom:374.556600px;}
.yce{bottom:375.851100px;}
.y9a{bottom:376.305750px;}
.y20b{bottom:379.938300px;}
.y69{bottom:388.215300px;}
.y1b4{bottom:389.140922px;}
.y165{bottom:389.363850px;}
.yec{bottom:390.662850px;}
.y12c{bottom:391.609200px;}
.y13f{bottom:391.722900px;}
.y13d{bottom:391.725750px;}
.y1b{bottom:392.556600px;}
.ycd{bottom:393.851100px;}
.y99{bottom:394.305750px;}
.y20a{bottom:394.938300px;}
.y1ad{bottom:398.570850px;}
.y1ae{bottom:398.571300px;}
.y68{bottom:404.463300px;}
.y1ca{bottom:407.232600px;}
.y164{bottom:407.363850px;}
.y209{bottom:409.940700px;}
.y1a{bottom:410.556600px;}
.ycc{bottom:411.851100px;}
.y98{bottom:412.305750px;}
.y208{bottom:424.940700px;}
.y163{bottom:425.363850px;}
.y28{bottom:428.556600px;}
.ycb{bottom:429.851100px;}
.y97{bottom:430.305750px;}
.y12b{bottom:432.709200px;}
.yf1{bottom:432.757350px;}
.y67{bottom:435.975300px;}
.y1b3{bottom:437.480404px;}
.y1a6{bottom:437.835750px;}
.y207{bottom:439.940700px;}
.y110{bottom:443.363850px;}
.y19{bottom:446.556600px;}
.y1af{bottom:446.908650px;}
.yca{bottom:447.851100px;}
.y96{bottom:448.305750px;}
.y12a{bottom:450.709200px;}
.y206{bottom:454.940700px;}
.y10f{bottom:461.363850px;}
.y1c9{bottom:461.367600px;}
.y143{bottom:465.076050px;}
.y1a5{bottom:465.515550px;}
.yc9{bottom:465.851100px;}
.y95{bottom:466.305750px;}
.y161{bottom:468.047700px;}
.y129{bottom:468.709200px;}
.y205{bottom:469.940700px;}
.y66{bottom:470.813850px;}
.y10e{bottom:479.363850px;}
.y1c8{bottom:479.367600px;}
.yc8{bottom:483.851100px;}
.y94{bottom:484.305750px;}
.y204{bottom:484.940700px;}
.y128{bottom:486.709200px;}
.y180{bottom:491.432700px;}
.y10d{bottom:497.363850px;}
.y203{bottom:499.940700px;}
.yc7{bottom:501.851100px;}
.y93{bottom:502.305750px;}
.y127{bottom:504.709200px;}
.y144{bottom:512.704050px;}
.y202{bottom:514.940700px;}
.y47{bottom:515.228850px;}
.y10c{bottom:515.363850px;}
.y1c7{bottom:515.367600px;}
.y65{bottom:515.378850px;}
.y17{bottom:516.486300px;}
.yc6{bottom:519.851100px;}
.y92{bottom:520.305750px;}
.y126{bottom:522.709200px;}
.yf2{bottom:525.445350px;}
.y201{bottom:529.940700px;}
.y16{bottom:531.531450px;}
.y46{bottom:533.228850px;}
.y10b{bottom:533.363850px;}
.y64{bottom:533.378850px;}
.yc5{bottom:537.851100px;}
.y91{bottom:538.305750px;}
.y125{bottom:540.709200px;}
.y200{bottom:544.940700px;}
.y45{bottom:551.228850px;}
.y10a{bottom:551.363850px;}
.y1c6{bottom:551.367600px;}
.y63{bottom:551.378850px;}
.yc4{bottom:555.851100px;}
.y90{bottom:556.305750px;}
.y124{bottom:558.709200px;}
.y1ff{bottom:559.940700px;}
.y15{bottom:564.351450px;}
.y44{bottom:569.228850px;}
.y109{bottom:569.363850px;}
.y1c5{bottom:569.367600px;}
.y62{bottom:569.378850px;}
.yc3{bottom:573.851100px;}
.y8f{bottom:574.305750px;}
.y1fe{bottom:574.940700px;}
.y123{bottom:576.709200px;}
.y18f{bottom:579.296400px;}
.y14{bottom:579.351450px;}
.y43{bottom:587.228850px;}
.y108{bottom:587.363850px;}
.y1c4{bottom:587.367600px;}
.y61{bottom:587.378850px;}
.y185{bottom:588.008850px;}
.y1fd{bottom:589.940700px;}
.yc2{bottom:591.851100px;}
.y8e{bottom:592.305750px;}
.y13{bottom:594.351450px;}
.y122{bottom:594.709200px;}
.y18e{bottom:595.040400px;}
.y184{bottom:603.752850px;}
.y1fc{bottom:604.940700px;}
.y42{bottom:605.228850px;}
.y107{bottom:605.363850px;}
.y1c3{bottom:605.367600px;}
.y60{bottom:605.378850px;}
.y12{bottom:609.351450px;}
.y8d{bottom:610.305750px;}
.y18d{bottom:610.784400px;}
.y121{bottom:612.709200px;}
.y183{bottom:619.496850px;}
.y1fb{bottom:619.940700px;}
.y41{bottom:623.228850px;}
.y106{bottom:623.363850px;}
.y5f{bottom:623.378850px;}
.y11{bottom:624.351450px;}
.yc1{bottom:626.728650px;}
.y8c{bottom:628.305750px;}
.y120{bottom:630.709200px;}
.y1fa{bottom:634.940700px;}
.y182{bottom:635.243700px;}
.y10{bottom:639.351450px;}
.y40{bottom:641.228850px;}
.y105{bottom:641.363850px;}
.y146{bottom:641.364000px;}
.y1c2{bottom:641.367600px;}
.y5e{bottom:641.378850px;}
.yc0{bottom:642.334650px;}
.y8b{bottom:646.305750px;}
.y191{bottom:646.418700px;}
.y11f{bottom:648.709200px;}
.y152{bottom:648.709500px;}
.y1f9{bottom:649.940700px;}
.yf{bottom:654.351000px;}
.ybf{bottom:656.654700px;}
.y3f{bottom:659.228850px;}
.y104{bottom:659.363850px;}
.ye8{bottom:659.364000px;}
.y1c1{bottom:659.367600px;}
.y5d{bottom:659.378850px;}
.y187{bottom:661.100850px;}
.y1f8{bottom:664.940700px;}
.y11e{bottom:666.709200px;}
.y151{bottom:666.709500px;}
.ybe{bottom:674.654700px;}
.y3e{bottom:677.228850px;}
.y103{bottom:677.363850px;}
.ye7{bottom:677.364000px;}
.y5c{bottom:677.378850px;}
.y1f7{bottom:679.940700px;}
.y8a{bottom:681.186900px;}
.y11d{bottom:684.709200px;}
.y150{bottom:684.709500px;}
.yf0{bottom:692.127300px;}
.y1f6{bottom:694.940700px;}
.y3d{bottom:695.228850px;}
.y102{bottom:695.363850px;}
.ye6{bottom:695.364000px;}
.y1c0{bottom:695.367600px;}
.y5b{bottom:695.378850px;}
.y89{bottom:696.792900px;}
.y11c{bottom:702.709200px;}
.y14f{bottom:702.709500px;}
.ye{bottom:703.095000px;}
.y160{bottom:703.607700px;}
.y1f5{bottom:709.940700px;}
.ybd{bottom:710.080200px;}
.y142{bottom:710.836050px;}
.y3c{bottom:713.228850px;}
.y101{bottom:713.363850px;}
.ye5{bottom:713.364000px;}
.y1bf{bottom:713.367600px;}
.y5a{bottom:713.378850px;}
.y88{bottom:713.499000px;}
.yd{bottom:717.495000px;}
.y11b{bottom:720.709200px;}
.y14e{bottom:720.709500px;}
.y17f{bottom:721.040700px;}
.y1f4{bottom:724.940700px;}
.ybc{bottom:725.080200px;}
.y3b{bottom:731.228850px;}
.y100{bottom:731.363850px;}
.ye4{bottom:731.364000px;}
.y1be{bottom:731.367600px;}
.y59{bottom:731.378850px;}
.y11a{bottom:738.709200px;}
.y14d{bottom:738.709500px;}
.y1f3{bottom:739.940700px;}
.ybb{bottom:740.080200px;}
.y3a{bottom:749.228850px;}
.yff{bottom:749.363850px;}
.y87{bottom:749.364000px;}
.y1bd{bottom:749.367600px;}
.y58{bottom:749.378850px;}
.yc{bottom:751.995000px;}
.y1f2{bottom:754.940700px;}
.yba{bottom:755.080200px;}
.y119{bottom:756.709200px;}
.y14c{bottom:756.709500px;}
.y39{bottom:767.228850px;}
.yfe{bottom:767.363850px;}
.y86{bottom:767.364000px;}
.y1bc{bottom:767.367600px;}
.y57{bottom:767.378850px;}
.y1f1{bottom:769.940700px;}
.yb9{bottom:770.080200px;}
.yb{bottom:773.340000px;}
.y118{bottom:774.709200px;}
.y14b{bottom:774.709500px;}
.y1f0{bottom:784.940700px;}
.yb8{bottom:785.080200px;}
.y38{bottom:785.228850px;}
.yfd{bottom:785.363850px;}
.ye3{bottom:785.364000px;}
.y1bb{bottom:785.367600px;}
.y56{bottom:785.378850px;}
.ya{bottom:788.467500px;}
.y117{bottom:792.709200px;}
.y1ef{bottom:799.940700px;}
.yb7{bottom:800.080200px;}
.y37{bottom:803.228850px;}
.y85{bottom:803.229000px;}
.yfc{bottom:803.363850px;}
.ye2{bottom:803.364000px;}
.y55{bottom:803.378850px;}
.y9{bottom:803.595000px;}
.y14a{bottom:809.587050px;}
.y116{bottom:810.709200px;}
.y1ee{bottom:814.940700px;}
.yb6{bottom:815.080200px;}
.y8{bottom:817.995000px;}
.y36{bottom:821.228850px;}
.y84{bottom:821.229000px;}
.yfb{bottom:821.363850px;}
.ye1{bottom:821.364000px;}
.y1ba{bottom:821.367600px;}
.y54{bottom:821.378850px;}
.y149{bottom:825.193050px;}
.y115{bottom:828.709200px;}
.y1ed{bottom:829.940700px;}
.yb5{bottom:830.080200px;}
.y7{bottom:838.612500px;}
.y35{bottom:839.228850px;}
.yfa{bottom:839.363850px;}
.ye0{bottom:839.364000px;}
.y1b9{bottom:839.367600px;}
.y53{bottom:839.378850px;}
.y148{bottom:839.514000px;}
.y1ec{bottom:844.940700px;}
.yb4{bottom:845.080200px;}
.y179{bottom:845.586750px;}
.y190{bottom:853.702200px;}
.y192{bottom:853.706700px;}
.y6{bottom:853.879500px;}
.y34{bottom:857.228850px;}
.yf9{bottom:857.363850px;}
.ydf{bottom:857.364000px;}
.y1b8{bottom:857.367600px;}
.y52{bottom:857.378850px;}
.y147{bottom:857.514000px;}
.y1eb{bottom:859.940700px;}
.yb3{bottom:860.080200px;}
.y186{bottom:860.096850px;}
.y178{bottom:861.192750px;}
.y114{bottom:863.586750px;}
.y1ea{bottom:874.940700px;}
.y33{bottom:875.228850px;}
.yf8{bottom:875.363850px;}
.y83{bottom:875.364000px;}
.y15f{bottom:875.367600px;}
.y51{bottom:875.378850px;}
.y177{bottom:875.513850px;}
.y113{bottom:879.192750px;}
.y5{bottom:881.268000px;}
.y1e9{bottom:889.940700px;}
.yf7{bottom:893.363850px;}
.y82{bottom:893.364000px;}
.y15e{bottom:893.367600px;}
.y50{bottom:893.378850px;}
.y112{bottom:893.513850px;}
.yb2{bottom:893.520750px;}
.y1e8{bottom:904.940700px;}
.y4{bottom:908.274000px;}
.y32{bottom:911.228850px;}
.yf6{bottom:911.363850px;}
.y81{bottom:911.364000px;}
.y15d{bottom:911.367600px;}
.y4f{bottom:911.378850px;}
.y111{bottom:911.513850px;}
.y1e7{bottom:919.940700px;}
.yf5{bottom:929.363850px;}
.y80{bottom:929.364000px;}
.y15c{bottom:929.367600px;}
.yb1{bottom:929.370750px;}
.y4e{bottom:929.378850px;}
.y226{bottom:934.938300px;}
.y1e6{bottom:934.940700px;}
.y3{bottom:935.280000px;}
.yf4{bottom:947.363850px;}
.y7f{bottom:947.364000px;}
.y15b{bottom:947.367600px;}
.yb0{bottom:947.370750px;}
.y4d{bottom:947.378850px;}
.y225{bottom:949.938300px;}
.y1e5{bottom:949.940700px;}
.y224{bottom:964.938300px;}
.y1e4{bottom:964.940700px;}
.y31{bottom:965.363850px;}
.y7e{bottom:965.364000px;}
.y15a{bottom:965.367600px;}
.yaf{bottom:965.370750px;}
.y4c{bottom:965.378850px;}
.y223{bottom:979.938300px;}
.y1e3{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y30{bottom:983.363850px;}
.y7d{bottom:983.364000px;}
.y159{bottom:983.367600px;}
.yae{bottom:983.370750px;}
.y4b{bottom:983.378850px;}
.y222{bottom:994.938300px;}
.y1e2{bottom:994.940700px;}
.y2f{bottom:1001.363850px;}
.y7c{bottom:1001.364000px;}
.y158{bottom:1001.367600px;}
.yad{bottom:1001.370750px;}
.y4a{bottom:1001.378850px;}
.y221{bottom:1009.938300px;}
.y1e1{bottom:1009.940700px;}
.y2e{bottom:1019.363850px;}
.y7b{bottom:1019.364000px;}
.y157{bottom:1019.367600px;}
.yac{bottom:1019.370750px;}
.y49{bottom:1019.378850px;}
.y220{bottom:1024.938300px;}
.y1e0{bottom:1024.940700px;}
.y2d{bottom:1037.363850px;}
.y7a{bottom:1037.364000px;}
.y156{bottom:1037.367600px;}
.yab{bottom:1037.370750px;}
.y48{bottom:1037.378850px;}
.y21f{bottom:1039.938300px;}
.y1df{bottom:1039.940700px;}
.y2a{bottom:1070.766450px;}
.y79{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h6{height:20.967187px;}
.h2{height:30.618164px;}
.h7{height:34.945312px;}
.ha{height:34.962188px;}
.h18{height:34.968750px;}
.h14{height:34.980187px;}
.h13{height:34.980787px;}
.h9{height:34.992188px;}
.h8{height:34.993988px;}
.he{height:37.167199px;}
.hf{height:37.179199px;}
.h10{height:39.366211px;}
.h16{height:39.909027px;}
.hb{height:43.681641px;}
.hd{height:43.710938px;}
.hc{height:43.740234px;}
.h12{height:46.839741px;}
.h5{height:51.524555px;}
.h17{height:51.752050px;}
.h11{height:51.984188px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h15{height:69.804165px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4d{left:70.582650px;}
.xc{left:76.535400px;}
.x10{left:78.661350px;}
.x41{left:82.275600px;}
.x21{left:83.338500px;}
.x2b{left:87.169350px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:102.095250px;}
.x33{left:104.598450px;}
.x5d{left:106.295400px;}
.xe{left:110.555400px;}
.x3{left:125.427000px;}
.x4a{left:127.984200px;}
.x7{left:131.816400px;}
.xd{left:144.725400px;}
.x4b{left:148.606350px;}
.x4c{left:149.669250px;}
.x47{left:156.472650px;}
.x4{left:161.571000px;}
.x5c{left:167.472153px;}
.x46{left:169.228650px;}
.x3c{left:184.540350px;}
.x36{left:187.091250px;}
.x4e{left:198.890400px;}
.x44{left:211.004850px;}
.x6{left:212.876400px;}
.x24{left:215.149650px;}
.x17{left:220.260750px;}
.x2d{left:223.213350px;}
.x11{left:227.485350px;}
.x5{left:229.599750px;}
.x15{left:232.360350px;}
.x5a{left:233.910137px;}
.x2c{left:247.285350px;}
.x12{left:249.625350px;}
.x3b{left:264.472350px;}
.x48{left:283.180650px;}
.x43{left:285.944850px;}
.x35{left:291.791250px;}
.x23{left:317.196900px;}
.x59{left:322.846674px;}
.x5b{left:327.962595px;}
.x2e{left:350.773350px;}
.x2f{left:359.281350px;}
.x54{left:361.290300px;}
.x52{left:363.135450px;}
.x4f{left:366.825150px;}
.x56{left:368.263200px;}
.x57{left:403.682550px;}
.x50{left:406.039200px;}
.x45{left:438.800850px;}
.x42{left:441.567600px;}
.x22{left:442.630500px;}
.xb{left:455.041500px;}
.xf{left:457.085400px;}
.x55{left:459.245700px;}
.x53{left:461.091450px;}
.x29{left:462.134700px;}
.x34{left:463.890450px;}
.x49{left:466.024650px;}
.x18{left:478.326000px;}
.x8{left:480.461400px;}
.x1c{left:482.274000px;}
.x26{left:483.877650px;}
.x27{left:488.221200px;}
.x20{left:491.120400px;}
.x19{left:501.307050px;}
.x30{left:503.845350px;}
.x3f{left:508.574400px;}
.x58{left:510.917100px;}
.x1e{left:512.362200px;}
.x51{left:513.376650px;}
.x9{left:514.481400px;}
.x38{left:524.466000px;}
.x28{left:526.651200px;}
.x1a{left:529.856100px;}
.x39{left:546.231000px;}
.x1b{left:547.871100px;}
.x2a{left:577.316700px;}
.x40{left:579.558750px;}
.x3a{left:598.947000px;}
.x1d{left:600.075000px;}
.x37{left:642.047250px;}
.x31{left:644.161350px;}
.x32{left:652.669350px;}
.x25{left:656.509650px;}
.x14{left:663.492300px;}
.x2{left:704.338650px;}
.x3d{left:717.130200px;}
.x13{left:724.221150px;}
.x3e{left:739.336350px;}
.x1f{left:745.480950px;}
@media print{
.v5{vertical-align:-22.656000pt;}
.v2{vertical-align:-14.640000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.104000pt;}
.v4{vertical-align:18.307200pt;}
.v1{vertical-align:20.138667pt;}
.ls20{letter-spacing:-6.522667pt;}
.ls1f{letter-spacing:-6.501333pt;}
.ls22{letter-spacing:-4.474667pt;}
.ls21{letter-spacing:-3.920000pt;}
.ls7b{letter-spacing:-1.703762pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls61{letter-spacing:-0.373333pt;}
.ls57{letter-spacing:-0.266667pt;}
.ls92{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.213333pt;}
.ls63{letter-spacing:-0.160000pt;}
.ls78{letter-spacing:-0.145986pt;}
.ls72{letter-spacing:-0.128000pt;}
.ls3b{letter-spacing:-0.106667pt;}
.ls7c{letter-spacing:-0.097324pt;}
.ls74{letter-spacing:-0.085333pt;}
.ls24{letter-spacing:-0.053333pt;}
.ls7a{letter-spacing:-0.048662pt;}
.ls77{letter-spacing:-0.042667pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011733pt;}
.ls6c{letter-spacing:0.025600pt;}
.ls71{letter-spacing:0.042667pt;}
.ls3a{letter-spacing:0.053333pt;}
.ls49{letter-spacing:0.085333pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls81{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.266667pt;}
.ls70{letter-spacing:0.298667pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.341333pt;}
.ls6a{letter-spacing:0.363733pt;}
.lsa{letter-spacing:0.373333pt;}
.ls88{letter-spacing:0.384000pt;}
.ls54{letter-spacing:0.426667pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls73{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.549333pt;}
.ls5{letter-spacing:0.554667pt;}
.ls15{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls83{letter-spacing:0.725333pt;}
.ls4f{letter-spacing:0.746667pt;}
.ls48{letter-spacing:0.768000pt;}
.ls36{letter-spacing:0.800000pt;}
.ls44{letter-spacing:0.853333pt;}
.lse{letter-spacing:0.906667pt;}
.ls8{letter-spacing:0.938667pt;}
.ls29{letter-spacing:0.960000pt;}
.ls7f{letter-spacing:0.981333pt;}
.lsd{letter-spacing:1.013333pt;}
.ls8b{letter-spacing:1.024000pt;}
.ls3d{letter-spacing:1.066667pt;}
.ls79{letter-spacing:1.072739pt;}
.ls82{letter-spacing:1.109333pt;}
.ls2e{letter-spacing:1.120000pt;}
.ls76{letter-spacing:1.135841pt;}
.ls52{letter-spacing:1.173333pt;}
.ls80{letter-spacing:1.194667pt;}
.ls26{letter-spacing:1.226667pt;}
.ls8f{letter-spacing:1.237333pt;}
.ls62{letter-spacing:1.280000pt;}
.ls7e{letter-spacing:1.322667pt;}
.ls42{letter-spacing:1.333333pt;}
.ls5a{letter-spacing:1.386667pt;}
.ls7{letter-spacing:1.408000pt;}
.ls2c{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:1.493333pt;}
.ls7d{letter-spacing:1.536000pt;}
.lsc{letter-spacing:1.546667pt;}
.ls84{letter-spacing:1.578667pt;}
.lsb{letter-spacing:1.600000pt;}
.ls89{letter-spacing:1.621333pt;}
.ls25{letter-spacing:1.653333pt;}
.ls8e{letter-spacing:1.664000pt;}
.ls13{letter-spacing:1.706667pt;}
.ls31{letter-spacing:1.760000pt;}
.ls87{letter-spacing:1.792000pt;}
.ls39{letter-spacing:1.813333pt;}
.ls11{letter-spacing:1.866667pt;}
.ls18{letter-spacing:1.920000pt;}
.ls8c{letter-spacing:1.962667pt;}
.ls33{letter-spacing:1.973333pt;}
.ls40{letter-spacing:2.026667pt;}
.ls37{letter-spacing:2.080000pt;}
.ls1b{letter-spacing:2.133333pt;}
.ls45{letter-spacing:2.186667pt;}
.ls28{letter-spacing:2.240000pt;}
.ls8a{letter-spacing:2.261333pt;}
.ls4e{letter-spacing:2.293333pt;}
.ls14{letter-spacing:2.346667pt;}
.ls4c{letter-spacing:2.400000pt;}
.ls6b{letter-spacing:2.453333pt;}
.ls5c{letter-spacing:2.506667pt;}
.ls2b{letter-spacing:2.560000pt;}
.ls68{letter-spacing:2.613333pt;}
.ls86{letter-spacing:2.645333pt;}
.ls38{letter-spacing:2.666667pt;}
.ls4a{letter-spacing:2.720000pt;}
.ls6e{letter-spacing:2.773333pt;}
.ls51{letter-spacing:2.826667pt;}
.ls64{letter-spacing:2.880000pt;}
.ls90{letter-spacing:2.901333pt;}
.ls4d{letter-spacing:2.933333pt;}
.ls60{letter-spacing:2.986667pt;}
.ls47{letter-spacing:3.040000pt;}
.ls9{letter-spacing:3.093333pt;}
.ls8d{letter-spacing:3.114667pt;}
.ls27{letter-spacing:3.146667pt;}
.ls17{letter-spacing:3.200000pt;}
.ls50{letter-spacing:3.253333pt;}
.ls41{letter-spacing:3.360000pt;}
.ls34{letter-spacing:3.413333pt;}
.ls67{letter-spacing:3.466667pt;}
.ls69{letter-spacing:3.520000pt;}
.ls23{letter-spacing:3.552000pt;}
.lsf{letter-spacing:3.573333pt;}
.ls16{letter-spacing:3.626667pt;}
.ls65{letter-spacing:3.680000pt;}
.ls56{letter-spacing:3.733333pt;}
.ls5f{letter-spacing:3.786667pt;}
.ls3f{letter-spacing:3.840000pt;}
.ls55{letter-spacing:3.893333pt;}
.ls30{letter-spacing:4.000000pt;}
.ls6d{letter-spacing:4.053333pt;}
.ls10{letter-spacing:4.106667pt;}
.ls35{letter-spacing:4.160000pt;}
.ls43{letter-spacing:4.266667pt;}
.ls58{letter-spacing:4.320000pt;}
.ls75{letter-spacing:4.800000pt;}
.ls85{letter-spacing:4.821333pt;}
.ls4b{letter-spacing:4.906667pt;}
.ls59{letter-spacing:5.333333pt;}
.ls46{letter-spacing:5.386667pt;}
.ls53{letter-spacing:5.440000pt;}
.ls5e{letter-spacing:5.760000pt;}
.ls5b{letter-spacing:5.813333pt;}
.ls66{letter-spacing:6.506667pt;}
.ls5d{letter-spacing:7.200000pt;}
.ls6f{letter-spacing:8.373333pt;}
.ls91{letter-spacing:8.640000pt;}
.ws75{word-spacing:-18.293333pt;}
.ws33{word-spacing:-18.080000pt;}
.ws2a{word-spacing:-18.026667pt;}
.ws87{word-spacing:-17.813333pt;}
.ws8b{word-spacing:-17.542439pt;}
.ws6c{word-spacing:-17.493333pt;}
.ws86{word-spacing:-17.386667pt;}
.ws2c{word-spacing:-17.013333pt;}
.ws64{word-spacing:-16.960000pt;}
.ws4b{word-spacing:-16.800000pt;}
.ws89{word-spacing:-16.586667pt;}
.ws62{word-spacing:-16.480000pt;}
.ws7{word-spacing:-16.426667pt;}
.ws31{word-spacing:-16.373333pt;}
.ws63{word-spacing:-16.320000pt;}
.ws1{word-spacing:-16.309333pt;}
.ws88{word-spacing:-15.946667pt;}
.ws49{word-spacing:-15.786667pt;}
.ws4a{word-spacing:-15.733333pt;}
.ws32{word-spacing:-15.680000pt;}
.ws30{word-spacing:-15.626667pt;}
.ws2d{word-spacing:-15.360000pt;}
.ws2f{word-spacing:-15.093333pt;}
.ws2b{word-spacing:-14.986667pt;}
.ws1c{word-spacing:-14.826667pt;}
.ws2e{word-spacing:-14.773333pt;}
.ws1b{word-spacing:-14.720000pt;}
.ws8c{word-spacing:-13.527999pt;}
.ws9e{word-spacing:-13.525333pt;}
.ws65{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.269333pt;}
.ws20{word-spacing:-12.602667pt;}
.ws7e{word-spacing:-12.288000pt;}
.ws4{word-spacing:-12.202667pt;}
.ws6{word-spacing:-12.117333pt;}
.ws9d{word-spacing:-12.074667pt;}
.ws3{word-spacing:-12.032000pt;}
.ws2{word-spacing:-11.861333pt;}
.ws8a{word-spacing:-11.818667pt;}
.ws3f{word-spacing:-11.477333pt;}
.ws40{word-spacing:-10.752000pt;}
.ws3e{word-spacing:-10.496000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws9f{word-spacing:-8.640000pt;}
.ws3c{word-spacing:-5.973333pt;}
.ws3d{word-spacing:-4.437333pt;}
.ws3a{word-spacing:-3.626667pt;}
.ws57{word-spacing:-3.413333pt;}
.wsc{word-spacing:-3.285333pt;}
.wsb{word-spacing:-3.226667pt;}
.wsa{word-spacing:-2.837333pt;}
.ws6e{word-spacing:-2.666667pt;}
.ws8d{word-spacing:-2.560000pt;}
.ws8e{word-spacing:-2.506667pt;}
.ws81{word-spacing:-2.400000pt;}
.ws9{word-spacing:-2.368000pt;}
.ws22{word-spacing:-1.973333pt;}
.ws51{word-spacing:-1.866667pt;}
.ws25{word-spacing:-1.813333pt;}
.ws95{word-spacing:-1.760000pt;}
.ws18{word-spacing:-1.546667pt;}
.ws92{word-spacing:-1.440000pt;}
.ws98{word-spacing:-1.135841pt;}
.ws97{word-spacing:-1.072739pt;}
.wsa4{word-spacing:-1.024000pt;}
.ws4e{word-spacing:-0.960000pt;}
.ws55{word-spacing:-0.906667pt;}
.ws71{word-spacing:-0.693333pt;}
.wsa6{word-spacing:-0.640000pt;}
.wsa9{word-spacing:-0.554667pt;}
.ws39{word-spacing:-0.533333pt;}
.wsac{word-spacing:-0.426667pt;}
.ws15{word-spacing:-0.373333pt;}
.ws72{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.197333pt;}
.ws37{word-spacing:-0.160000pt;}
.ws24{word-spacing:-0.106667pt;}
.ws9c{word-spacing:-0.048662pt;}
.ws8{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.042667pt;}
.ws99{word-spacing:0.048662pt;}
.ws41{word-spacing:0.053333pt;}
.ws46{word-spacing:0.085333pt;}
.ws9b{word-spacing:0.097324pt;}
.ws21{word-spacing:0.106667pt;}
.ws7c{word-spacing:0.128000pt;}
.ws96{word-spacing:0.145986pt;}
.ws48{word-spacing:0.160000pt;}
.ws43{word-spacing:0.213333pt;}
.ws23{word-spacing:0.266667pt;}
.ws29{word-spacing:0.373333pt;}
.ws61{word-spacing:0.384000pt;}
.ws36{word-spacing:0.480000pt;}
.wse{word-spacing:0.506667pt;}
.ws17{word-spacing:0.533333pt;}
.ws90{word-spacing:0.640000pt;}
.ws42{word-spacing:0.693333pt;}
.wsa2{word-spacing:0.725333pt;}
.ws82{word-spacing:0.746667pt;}
.wsa1{word-spacing:0.768000pt;}
.ws53{word-spacing:0.800000pt;}
.ws7f{word-spacing:0.853333pt;}
.ws70{word-spacing:0.906667pt;}
.ws83{word-spacing:0.960000pt;}
.ws54{word-spacing:1.066667pt;}
.ws5b{word-spacing:1.173333pt;}
.ws44{word-spacing:1.226667pt;}
.ws5f{word-spacing:1.280000pt;}
.ws6d{word-spacing:1.440000pt;}
.ws45{word-spacing:1.493333pt;}
.wsa0{word-spacing:1.621333pt;}
.ws7d{word-spacing:1.664000pt;}
.ws9a{word-spacing:1.703762pt;}
.ws6b{word-spacing:1.749333pt;}
.ws6f{word-spacing:1.760000pt;}
.ws94{word-spacing:1.866667pt;}
.ws47{word-spacing:1.877333pt;}
.ws85{word-spacing:1.962667pt;}
.ws56{word-spacing:1.973333pt;}
.ws84{word-spacing:2.026667pt;}
.ws5a{word-spacing:2.080000pt;}
.wsa5{word-spacing:2.090667pt;}
.wsab{word-spacing:2.133333pt;}
.ws60{word-spacing:2.186667pt;}
.ws50{word-spacing:2.346667pt;}
.ws67{word-spacing:2.432000pt;}
.ws91{word-spacing:2.506667pt;}
.ws59{word-spacing:2.613333pt;}
.ws5d{word-spacing:2.666667pt;}
.ws6a{word-spacing:2.720000pt;}
.ws78{word-spacing:2.986667pt;}
.ws3b{word-spacing:3.072000pt;}
.wsa3{word-spacing:3.114667pt;}
.ws27{word-spacing:3.200000pt;}
.ws5e{word-spacing:3.242667pt;}
.ws74{word-spacing:3.306667pt;}
.ws69{word-spacing:3.466667pt;}
.ws77{word-spacing:3.520000pt;}
.wsa7{word-spacing:3.541333pt;}
.ws34{word-spacing:3.573333pt;}
.wsa8{word-spacing:3.584000pt;}
.ws13{word-spacing:3.669333pt;}
.ws26{word-spacing:3.733333pt;}
.wsf{word-spacing:3.882667pt;}
.ws73{word-spacing:3.893333pt;}
.wsd{word-spacing:3.925333pt;}
.ws19{word-spacing:3.946667pt;}
.ws12{word-spacing:3.952000pt;}
.ws52{word-spacing:4.000000pt;}
.ws66{word-spacing:4.160000pt;}
.ws38{word-spacing:4.213333pt;}
.ws35{word-spacing:4.320000pt;}
.ws28{word-spacing:4.373333pt;}
.ws5c{word-spacing:4.426667pt;}
.ws10{word-spacing:4.442667pt;}
.ws93{word-spacing:4.586667pt;}
.ws1a{word-spacing:4.640000pt;}
.ws4d{word-spacing:4.693333pt;}
.ws80{word-spacing:4.746667pt;}
.ws58{word-spacing:4.800000pt;}
.ws14{word-spacing:4.853333pt;}
.ws16{word-spacing:4.906667pt;}
.ws4f{word-spacing:6.666667pt;}
.ws8f{word-spacing:7.360000pt;}
.ws1d{word-spacing:278.485333pt;}
.ws1e{word-spacing:281.600000pt;}
.ws1f{word-spacing:290.346667pt;}
.ws4c{word-spacing:361.216000pt;}
.ws7b{word-spacing:434.517333pt;}
.ws79{word-spacing:451.328000pt;}
.ws7a{word-spacing:593.450667pt;}
.ws76{word-spacing:1554.560000pt;}
.ws68{word-spacing:1588.224000pt;}
._21{margin-left:-2576.112000pt;}
._26{margin-left:-2554.941333pt;}
._9{margin-left:-5.987200pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.056000pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.892800pt;}
._6{width:0.960000pt;}
._36{width:1.855578pt;}
._7{width:2.752000pt;}
._8{width:4.320000pt;}
._4{width:5.280000pt;}
._35{width:6.240000pt;}
._5{width:7.232000pt;}
._31{width:27.050667pt;}
._22{width:30.000000pt;}
._24{width:34.176000pt;}
._23{width:52.480000pt;}
._25{width:55.552000pt;}
._30{width:77.184000pt;}
._33{width:119.850667pt;}
._15{width:129.024000pt;}
._10{width:149.674667pt;}
._16{width:165.376000pt;}
._28{width:182.400000pt;}
._27{width:187.904000pt;}
._14{width:221.440000pt;}
._1d{width:228.480000pt;}
._e{width:230.314667pt;}
._29{width:237.013333pt;}
._13{width:242.474667pt;}
._c{width:256.426667pt;}
._12{width:258.816000pt;}
._2a{width:276.906667pt;}
._2e{width:279.253333pt;}
._2b{width:284.458667pt;}
._2f{width:286.805333pt;}
._1e{width:294.698667pt;}
._1b{width:301.013333pt;}
._2c{width:302.250667pt;}
._2d{width:303.573333pt;}
._19{width:306.560000pt;}
._1a{width:309.120000pt;}
._32{width:310.362667pt;}
._18{width:317.141333pt;}
._1c{width:327.808000pt;}
._20{width:329.002667pt;}
._17{width:335.232000pt;}
._1f{width:337.621333pt;}
._11{width:348.072533pt;}
._f{width:441.712000pt;}
._d{width:524.698667pt;}
._a{width:617.600000pt;}
._b{width:622.805333pt;}
._34{width:652.842667pt;}
.fs5{font-size:25.600000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fsc{font-size:48.661867pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fsd{font-size:63.102299pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fsb{font-size:85.113600pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y155{bottom:73.606667pt;}
.y17c{bottom:73.984533pt;}
.y176{bottom:74.101200pt;}
.y2b{bottom:74.216800pt;}
.y19f{bottom:74.234533pt;}
.y141{bottom:74.467467pt;}
.yeb{bottom:74.551467pt;}
.y1a2{bottom:74.737867pt;}
.y195{bottom:74.743733pt;}
.y17e{bottom:74.750933pt;}
.y18a{bottom:74.941200pt;}
.yef{bottom:75.128800pt;}
.yde{bottom:78.089867pt;}
.yaa{bottom:78.494000pt;}
.y1de{bottom:78.930400pt;}
.y78{bottom:81.720000pt;}
.y13c{bottom:82.249200pt;}
.y21e{bottom:84.389600pt;}
.y154{bottom:87.601333pt;}
.y17b{bottom:87.979200pt;}
.y140{bottom:88.462133pt;}
.yea{bottom:88.546133pt;}
.y1a1{bottom:88.732533pt;}
.y194{bottom:88.738400pt;}
.y17d{bottom:88.745600pt;}
.y189{bottom:88.935867pt;}
.yee{bottom:89.123467pt;}
.y175{bottom:90.101200pt;}
.y19e{bottom:90.234533pt;}
.y1dd{bottom:92.263733pt;}
.ydd{bottom:94.089867pt;}
.ya9{bottom:94.494000pt;}
.y77{bottom:96.162667pt;}
.y13b{bottom:96.915867pt;}
.y21d{bottom:97.722933pt;}
.y1a4{bottom:98.737200pt;}
.y153{bottom:101.596000pt;}
.y17a{bottom:101.973867pt;}
.ye9{bottom:102.540800pt;}
.y1a0{bottom:102.729867pt;}
.y193{bottom:102.733067pt;}
.y188{bottom:102.930533pt;}
.y1dc{bottom:105.597067pt;}
.y174{bottom:106.101200pt;}
.y19d{bottom:106.234533pt;}
.y18{bottom:108.016267pt;}
.ydc{bottom:110.089867pt;}
.ya8{bottom:110.494000pt;}
.y76{bottom:110.605333pt;}
.y21c{bottom:111.056267pt;}
.y13a{bottom:111.358533pt;}
.y1a3{bottom:112.731867pt;}
.y1db{bottom:118.930400pt;}
.y173{bottom:122.101200pt;}
.y19c{bottom:122.234533pt;}
.y21b{bottom:124.389600pt;}
.y75{bottom:125.048000pt;}
.y139{bottom:126.025200pt;}
.ydb{bottom:126.089867pt;}
.ya7{bottom:126.494000pt;}
.yf3{bottom:130.689200pt;}
.y1da{bottom:132.263733pt;}
.y197{bottom:134.846400pt;}
.y18c{bottom:135.412400pt;}
.yed{bottom:136.354533pt;}
.y13e{bottom:136.358133pt;}
.y181{bottom:137.490400pt;}
.y21a{bottom:137.722933pt;}
.y172{bottom:138.101200pt;}
.y19b{bottom:138.234533pt;}
.y1a9{bottom:138.860133pt;}
.y1aa{bottom:138.860533pt;}
.y74{bottom:139.490667pt;}
.y138{bottom:140.467867pt;}
.y145{bottom:140.526267pt;}
.y162{bottom:141.642400pt;}
.yda{bottom:142.089867pt;}
.ya6{bottom:142.494000pt;}
.y1d9{bottom:145.597067pt;}
.y219{bottom:151.056267pt;}
.y73{bottom:153.933333pt;}
.y171{bottom:154.101200pt;}
.y19a{bottom:154.234533pt;}
.y137{bottom:155.134533pt;}
.y27{bottom:156.939200pt;}
.yd9{bottom:158.089867pt;}
.ya5{bottom:158.494000pt;}
.y1d8{bottom:158.930400pt;}
.y1b7{bottom:161.194761pt;}
.y218{bottom:164.389600pt;}
.y72{bottom:168.376000pt;}
.y136{bottom:169.801200pt;}
.y170{bottom:170.101200pt;}
.y1d7{bottom:172.263733pt;}
.y26{bottom:172.939200pt;}
.yd8{bottom:174.089867pt;}
.ya4{bottom:174.494000pt;}
.y217{bottom:177.722933pt;}
.y1b1{bottom:181.962933pt;}
.y1b0{bottom:181.963333pt;}
.y71{bottom:182.818667pt;}
.y135{bottom:184.243867pt;}
.y1d6{bottom:185.597067pt;}
.y16f{bottom:186.101200pt;}
.y199{bottom:186.234533pt;}
.y25{bottom:188.939200pt;}
.yd7{bottom:190.089867pt;}
.ya3{bottom:190.494000pt;}
.y216{bottom:191.056267pt;}
.y134{bottom:198.910533pt;}
.y1d5{bottom:198.930400pt;}
.y16e{bottom:202.101200pt;}
.y215{bottom:204.389600pt;}
.y24{bottom:204.939200pt;}
.yd6{bottom:206.089867pt;}
.ya2{bottom:206.494000pt;}
.y70{bottom:210.829333pt;}
.y1d4{bottom:212.263733pt;}
.y133{bottom:213.577200pt;}
.y1b6{bottom:216.596297pt;}
.y214{bottom:217.722933pt;}
.y16d{bottom:218.101200pt;}
.y23{bottom:220.939200pt;}
.yd5{bottom:222.089867pt;}
.ya1{bottom:222.494000pt;}
.y1a7{bottom:225.066667pt;}
.y1a8{bottom:225.067067pt;}
.y1d3{bottom:225.597067pt;}
.y132{bottom:228.019867pt;}
.y213{bottom:231.056267pt;}
.y16c{bottom:234.101200pt;}
.y22{bottom:236.939200pt;}
.yd4{bottom:238.089867pt;}
.ya0{bottom:238.494000pt;}
.y1d2{bottom:238.930400pt;}
.y131{bottom:242.686533pt;}
.y212{bottom:244.389600pt;}
.y16b{bottom:250.101200pt;}
.y1d1{bottom:252.263733pt;}
.y21{bottom:252.939200pt;}
.yd3{bottom:254.089867pt;}
.y9f{bottom:254.494000pt;}
.y130{bottom:257.129200pt;}
.y211{bottom:257.722933pt;}
.y6f{bottom:258.424267pt;}
.y1d0{bottom:265.597067pt;}
.y16a{bottom:266.101200pt;}
.y1ab{bottom:268.170000pt;}
.y1ac{bottom:268.170400pt;}
.y20{bottom:268.939200pt;}
.yd2{bottom:270.089867pt;}
.y9e{bottom:270.494000pt;}
.y210{bottom:271.056267pt;}
.y12f{bottom:271.795867pt;}
.y6e{bottom:272.866933pt;}
.y1cf{bottom:278.930400pt;}
.y169{bottom:282.101200pt;}
.y20f{bottom:284.389600pt;}
.y1f{bottom:284.939200pt;}
.yd1{bottom:286.089867pt;}
.y9d{bottom:286.494000pt;}
.y6d{bottom:287.309600pt;}
.y1ce{bottom:292.263733pt;}
.y20e{bottom:297.722933pt;}
.y168{bottom:298.101200pt;}
.y12e{bottom:299.806533pt;}
.y1e{bottom:300.939200pt;}
.y6c{bottom:301.752267pt;}
.yd0{bottom:302.089867pt;}
.y9c{bottom:302.494000pt;}
.y1b5{bottom:302.800793pt;}
.y1cd{bottom:305.597067pt;}
.y20d{bottom:311.056267pt;}
.y1b2{bottom:311.182800pt;}
.y167{bottom:314.101200pt;}
.y6b{bottom:316.194933pt;}
.y1d{bottom:316.939200pt;}
.ycf{bottom:318.089867pt;}
.y9b{bottom:318.494000pt;}
.y1cc{bottom:318.930400pt;}
.y196{bottom:319.665333pt;}
.y198{bottom:319.667733pt;}
.y18b{bottom:320.799067pt;}
.y20c{bottom:324.389600pt;}
.y166{bottom:330.101200pt;}
.y6a{bottom:330.637600pt;}
.y12d{bottom:330.763733pt;}
.y1cb{bottom:332.263733pt;}
.y1c{bottom:332.939200pt;}
.yce{bottom:334.089867pt;}
.y9a{bottom:334.494000pt;}
.y20b{bottom:337.722933pt;}
.y69{bottom:345.080267pt;}
.y1b4{bottom:345.903042pt;}
.y165{bottom:346.101200pt;}
.yec{bottom:347.255867pt;}
.y12c{bottom:348.097067pt;}
.y13f{bottom:348.198133pt;}
.y13d{bottom:348.200667pt;}
.y1b{bottom:348.939200pt;}
.ycd{bottom:350.089867pt;}
.y99{bottom:350.494000pt;}
.y20a{bottom:351.056267pt;}
.y1ad{bottom:354.285200pt;}
.y1ae{bottom:354.285600pt;}
.y68{bottom:359.522933pt;}
.y1ca{bottom:361.984533pt;}
.y164{bottom:362.101200pt;}
.y209{bottom:364.391733pt;}
.y1a{bottom:364.939200pt;}
.ycc{bottom:366.089867pt;}
.y98{bottom:366.494000pt;}
.y208{bottom:377.725067pt;}
.y163{bottom:378.101200pt;}
.y28{bottom:380.939200pt;}
.ycb{bottom:382.089867pt;}
.y97{bottom:382.494000pt;}
.y12b{bottom:384.630400pt;}
.yf1{bottom:384.673200pt;}
.y67{bottom:387.533600pt;}
.y1b3{bottom:388.871470pt;}
.y1a6{bottom:389.187333pt;}
.y207{bottom:391.058400pt;}
.y110{bottom:394.101200pt;}
.y19{bottom:396.939200pt;}
.y1af{bottom:397.252133pt;}
.yca{bottom:398.089867pt;}
.y96{bottom:398.494000pt;}
.y12a{bottom:400.630400pt;}
.y206{bottom:404.391733pt;}
.y10f{bottom:410.101200pt;}
.y1c9{bottom:410.104533pt;}
.y143{bottom:413.400933pt;}
.y1a5{bottom:413.791600pt;}
.yc9{bottom:414.089867pt;}
.y95{bottom:414.494000pt;}
.y161{bottom:416.042400pt;}
.y129{bottom:416.630400pt;}
.y205{bottom:417.725067pt;}
.y66{bottom:418.501200pt;}
.y10e{bottom:426.101200pt;}
.y1c8{bottom:426.104533pt;}
.yc8{bottom:430.089867pt;}
.y94{bottom:430.494000pt;}
.y204{bottom:431.058400pt;}
.y128{bottom:432.630400pt;}
.y180{bottom:436.829067pt;}
.y10d{bottom:442.101200pt;}
.y203{bottom:444.391733pt;}
.yc7{bottom:446.089867pt;}
.y93{bottom:446.494000pt;}
.y127{bottom:448.630400pt;}
.y144{bottom:455.736933pt;}
.y202{bottom:457.725067pt;}
.y47{bottom:457.981200pt;}
.y10c{bottom:458.101200pt;}
.y1c7{bottom:458.104533pt;}
.y65{bottom:458.114533pt;}
.y17{bottom:459.098933pt;}
.yc6{bottom:462.089867pt;}
.y92{bottom:462.494000pt;}
.y126{bottom:464.630400pt;}
.yf2{bottom:467.062533pt;}
.y201{bottom:471.058400pt;}
.y16{bottom:472.472400pt;}
.y46{bottom:473.981200pt;}
.y10b{bottom:474.101200pt;}
.y64{bottom:474.114533pt;}
.yc5{bottom:478.089867pt;}
.y91{bottom:478.494000pt;}
.y125{bottom:480.630400pt;}
.y200{bottom:484.391733pt;}
.y45{bottom:489.981200pt;}
.y10a{bottom:490.101200pt;}
.y1c6{bottom:490.104533pt;}
.y63{bottom:490.114533pt;}
.yc4{bottom:494.089867pt;}
.y90{bottom:494.494000pt;}
.y124{bottom:496.630400pt;}
.y1ff{bottom:497.725067pt;}
.y15{bottom:501.645733pt;}
.y44{bottom:505.981200pt;}
.y109{bottom:506.101200pt;}
.y1c5{bottom:506.104533pt;}
.y62{bottom:506.114533pt;}
.yc3{bottom:510.089867pt;}
.y8f{bottom:510.494000pt;}
.y1fe{bottom:511.058400pt;}
.y123{bottom:512.630400pt;}
.y18f{bottom:514.930133pt;}
.y14{bottom:514.979067pt;}
.y43{bottom:521.981200pt;}
.y108{bottom:522.101200pt;}
.y1c4{bottom:522.104533pt;}
.y61{bottom:522.114533pt;}
.y185{bottom:522.674533pt;}
.y1fd{bottom:524.391733pt;}
.yc2{bottom:526.089867pt;}
.y8e{bottom:526.494000pt;}
.y13{bottom:528.312400pt;}
.y122{bottom:528.630400pt;}
.y18e{bottom:528.924800pt;}
.y184{bottom:536.669200pt;}
.y1fc{bottom:537.725067pt;}
.y42{bottom:537.981200pt;}
.y107{bottom:538.101200pt;}
.y1c3{bottom:538.104533pt;}
.y60{bottom:538.114533pt;}
.y12{bottom:541.645733pt;}
.y8d{bottom:542.494000pt;}
.y18d{bottom:542.919467pt;}
.y121{bottom:544.630400pt;}
.y183{bottom:550.663867pt;}
.y1fb{bottom:551.058400pt;}
.y41{bottom:553.981200pt;}
.y106{bottom:554.101200pt;}
.y5f{bottom:554.114533pt;}
.y11{bottom:554.979067pt;}
.yc1{bottom:557.092133pt;}
.y8c{bottom:558.494000pt;}
.y120{bottom:560.630400pt;}
.y1fa{bottom:564.391733pt;}
.y182{bottom:564.661067pt;}
.y10{bottom:568.312400pt;}
.y40{bottom:569.981200pt;}
.y105{bottom:570.101200pt;}
.y146{bottom:570.101333pt;}
.y1c2{bottom:570.104533pt;}
.y5e{bottom:570.114533pt;}
.yc0{bottom:570.964133pt;}
.y8b{bottom:574.494000pt;}
.y191{bottom:574.594400pt;}
.y11f{bottom:576.630400pt;}
.y152{bottom:576.630667pt;}
.y1f9{bottom:577.725067pt;}
.yf{bottom:581.645333pt;}
.ybf{bottom:583.693067pt;}
.y3f{bottom:585.981200pt;}
.y104{bottom:586.101200pt;}
.ye8{bottom:586.101333pt;}
.y1c1{bottom:586.104533pt;}
.y5d{bottom:586.114533pt;}
.y187{bottom:587.645200pt;}
.y1f8{bottom:591.058400pt;}
.y11e{bottom:592.630400pt;}
.y151{bottom:592.630667pt;}
.ybe{bottom:599.693067pt;}
.y3e{bottom:601.981200pt;}
.y103{bottom:602.101200pt;}
.ye7{bottom:602.101333pt;}
.y5c{bottom:602.114533pt;}
.y1f7{bottom:604.391733pt;}
.y8a{bottom:605.499467pt;}
.y11d{bottom:608.630400pt;}
.y150{bottom:608.630667pt;}
.yf0{bottom:615.224267pt;}
.y1f6{bottom:617.725067pt;}
.y3d{bottom:617.981200pt;}
.y102{bottom:618.101200pt;}
.ye6{bottom:618.101333pt;}
.y1c0{bottom:618.104533pt;}
.y5b{bottom:618.114533pt;}
.y89{bottom:619.371467pt;}
.y11c{bottom:624.630400pt;}
.y14f{bottom:624.630667pt;}
.ye{bottom:624.973333pt;}
.y160{bottom:625.429067pt;}
.y1f5{bottom:631.058400pt;}
.ybd{bottom:631.182400pt;}
.y142{bottom:631.854267pt;}
.y3c{bottom:633.981200pt;}
.y101{bottom:634.101200pt;}
.ye5{bottom:634.101333pt;}
.y1bf{bottom:634.104533pt;}
.y5a{bottom:634.114533pt;}
.y88{bottom:634.221333pt;}
.yd{bottom:637.773333pt;}
.y11b{bottom:640.630400pt;}
.y14e{bottom:640.630667pt;}
.y17f{bottom:640.925067pt;}
.y1f4{bottom:644.391733pt;}
.ybc{bottom:644.515733pt;}
.y3b{bottom:649.981200pt;}
.y100{bottom:650.101200pt;}
.ye4{bottom:650.101333pt;}
.y1be{bottom:650.104533pt;}
.y59{bottom:650.114533pt;}
.y11a{bottom:656.630400pt;}
.y14d{bottom:656.630667pt;}
.y1f3{bottom:657.725067pt;}
.ybb{bottom:657.849067pt;}
.y3a{bottom:665.981200pt;}
.yff{bottom:666.101200pt;}
.y87{bottom:666.101333pt;}
.y1bd{bottom:666.104533pt;}
.y58{bottom:666.114533pt;}
.yc{bottom:668.440000pt;}
.y1f2{bottom:671.058400pt;}
.yba{bottom:671.182400pt;}
.y119{bottom:672.630400pt;}
.y14c{bottom:672.630667pt;}
.y39{bottom:681.981200pt;}
.yfe{bottom:682.101200pt;}
.y86{bottom:682.101333pt;}
.y1bc{bottom:682.104533pt;}
.y57{bottom:682.114533pt;}
.y1f1{bottom:684.391733pt;}
.yb9{bottom:684.515733pt;}
.yb{bottom:687.413333pt;}
.y118{bottom:688.630400pt;}
.y14b{bottom:688.630667pt;}
.y1f0{bottom:697.725067pt;}
.yb8{bottom:697.849067pt;}
.y38{bottom:697.981200pt;}
.yfd{bottom:698.101200pt;}
.ye3{bottom:698.101333pt;}
.y1bb{bottom:698.104533pt;}
.y56{bottom:698.114533pt;}
.ya{bottom:700.860000pt;}
.y117{bottom:704.630400pt;}
.y1ef{bottom:711.058400pt;}
.yb7{bottom:711.182400pt;}
.y37{bottom:713.981200pt;}
.y85{bottom:713.981333pt;}
.yfc{bottom:714.101200pt;}
.ye2{bottom:714.101333pt;}
.y55{bottom:714.114533pt;}
.y9{bottom:714.306667pt;}
.y14a{bottom:719.632933pt;}
.y116{bottom:720.630400pt;}
.y1ee{bottom:724.391733pt;}
.yb6{bottom:724.515733pt;}
.y8{bottom:727.106667pt;}
.y36{bottom:729.981200pt;}
.y84{bottom:729.981333pt;}
.yfb{bottom:730.101200pt;}
.ye1{bottom:730.101333pt;}
.y1ba{bottom:730.104533pt;}
.y54{bottom:730.114533pt;}
.y149{bottom:733.504933pt;}
.y115{bottom:736.630400pt;}
.y1ed{bottom:737.725067pt;}
.yb5{bottom:737.849067pt;}
.y7{bottom:745.433333pt;}
.y35{bottom:745.981200pt;}
.yfa{bottom:746.101200pt;}
.ye0{bottom:746.101333pt;}
.y1b9{bottom:746.104533pt;}
.y53{bottom:746.114533pt;}
.y148{bottom:746.234667pt;}
.y1ec{bottom:751.058400pt;}
.yb4{bottom:751.182400pt;}
.y179{bottom:751.632667pt;}
.y190{bottom:758.846400pt;}
.y192{bottom:758.850400pt;}
.y6{bottom:759.004000pt;}
.y34{bottom:761.981200pt;}
.yf9{bottom:762.101200pt;}
.ydf{bottom:762.101333pt;}
.y1b8{bottom:762.104533pt;}
.y52{bottom:762.114533pt;}
.y147{bottom:762.234667pt;}
.y1eb{bottom:764.391733pt;}
.yb3{bottom:764.515733pt;}
.y186{bottom:764.530533pt;}
.y178{bottom:765.504667pt;}
.y114{bottom:767.632667pt;}
.y1ea{bottom:777.725067pt;}
.y33{bottom:777.981200pt;}
.yf8{bottom:778.101200pt;}
.y83{bottom:778.101333pt;}
.y15f{bottom:778.104533pt;}
.y51{bottom:778.114533pt;}
.y177{bottom:778.234533pt;}
.y113{bottom:781.504667pt;}
.y5{bottom:783.349333pt;}
.y1e9{bottom:791.058400pt;}
.yf7{bottom:794.101200pt;}
.y82{bottom:794.101333pt;}
.y15e{bottom:794.104533pt;}
.y50{bottom:794.114533pt;}
.y112{bottom:794.234533pt;}
.yb2{bottom:794.240667pt;}
.y1e8{bottom:804.391733pt;}
.y4{bottom:807.354667pt;}
.y32{bottom:809.981200pt;}
.yf6{bottom:810.101200pt;}
.y81{bottom:810.101333pt;}
.y15d{bottom:810.104533pt;}
.y4f{bottom:810.114533pt;}
.y111{bottom:810.234533pt;}
.y1e7{bottom:817.725067pt;}
.yf5{bottom:826.101200pt;}
.y80{bottom:826.101333pt;}
.y15c{bottom:826.104533pt;}
.yb1{bottom:826.107333pt;}
.y4e{bottom:826.114533pt;}
.y226{bottom:831.056267pt;}
.y1e6{bottom:831.058400pt;}
.y3{bottom:831.360000pt;}
.yf4{bottom:842.101200pt;}
.y7f{bottom:842.101333pt;}
.y15b{bottom:842.104533pt;}
.yb0{bottom:842.107333pt;}
.y4d{bottom:842.114533pt;}
.y225{bottom:844.389600pt;}
.y1e5{bottom:844.391733pt;}
.y224{bottom:857.722933pt;}
.y1e4{bottom:857.725067pt;}
.y31{bottom:858.101200pt;}
.y7e{bottom:858.101333pt;}
.y15a{bottom:858.104533pt;}
.yaf{bottom:858.107333pt;}
.y4c{bottom:858.114533pt;}
.y223{bottom:871.056267pt;}
.y1e3{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y30{bottom:874.101200pt;}
.y7d{bottom:874.101333pt;}
.y159{bottom:874.104533pt;}
.yae{bottom:874.107333pt;}
.y4b{bottom:874.114533pt;}
.y222{bottom:884.389600pt;}
.y1e2{bottom:884.391733pt;}
.y2f{bottom:890.101200pt;}
.y7c{bottom:890.101333pt;}
.y158{bottom:890.104533pt;}
.yad{bottom:890.107333pt;}
.y4a{bottom:890.114533pt;}
.y221{bottom:897.722933pt;}
.y1e1{bottom:897.725067pt;}
.y2e{bottom:906.101200pt;}
.y7b{bottom:906.101333pt;}
.y157{bottom:906.104533pt;}
.yac{bottom:906.107333pt;}
.y49{bottom:906.114533pt;}
.y220{bottom:911.056267pt;}
.y1e0{bottom:911.058400pt;}
.y2d{bottom:922.101200pt;}
.y7a{bottom:922.101333pt;}
.y156{bottom:922.104533pt;}
.yab{bottom:922.107333pt;}
.y48{bottom:922.114533pt;}
.y21f{bottom:924.389600pt;}
.y1df{bottom:924.391733pt;}
.y2a{bottom:951.792400pt;}
.y79{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h6{height:18.637500pt;}
.h2{height:27.216146pt;}
.h7{height:31.062500pt;}
.ha{height:31.077500pt;}
.h18{height:31.083333pt;}
.h14{height:31.093500pt;}
.h13{height:31.094033pt;}
.h9{height:31.104167pt;}
.h8{height:31.105767pt;}
.he{height:33.037510pt;}
.hf{height:33.048177pt;}
.h10{height:34.992188pt;}
.h16{height:35.474691pt;}
.hb{height:38.828125pt;}
.hd{height:38.854167pt;}
.hc{height:38.880208pt;}
.h12{height:41.635325pt;}
.h5{height:45.799604pt;}
.h17{height:46.001822pt;}
.h11{height:46.208167pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h15{height:62.048147pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:62.740133pt;}
.xc{left:68.031467pt;}
.x10{left:69.921200pt;}
.x41{left:73.133867pt;}
.x21{left:74.078667pt;}
.x2b{left:77.483867pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:90.751333pt;}
.x33{left:92.976400pt;}
.x5d{left:94.484800pt;}
.xe{left:98.271467pt;}
.x3{left:111.490667pt;}
.x4a{left:113.763733pt;}
.x7{left:117.170133pt;}
.xd{left:128.644800pt;}
.x4b{left:132.094533pt;}
.x4c{left:133.039333pt;}
.x47{left:139.086800pt;}
.x4{left:143.618667pt;}
.x5c{left:148.864136pt;}
.x46{left:150.425467pt;}
.x3c{left:164.035867pt;}
.x36{left:166.303333pt;}
.x4e{left:176.791467pt;}
.x44{left:187.559867pt;}
.x6{left:189.223467pt;}
.x24{left:191.244133pt;}
.x17{left:195.787333pt;}
.x2d{left:198.411867pt;}
.x11{left:202.209200pt;}
.x5{left:204.088667pt;}
.x15{left:206.542533pt;}
.x5a{left:207.920122pt;}
.x2c{left:219.809200pt;}
.x12{left:221.889200pt;}
.x3b{left:235.086533pt;}
.x48{left:251.716133pt;}
.x43{left:254.173200pt;}
.x35{left:259.370000pt;}
.x23{left:281.952800pt;}
.x59{left:286.974822pt;}
.x5b{left:291.522306pt;}
.x2e{left:311.798533pt;}
.x2f{left:319.361200pt;}
.x54{left:321.146933pt;}
.x52{left:322.787067pt;}
.x4f{left:326.066800pt;}
.x56{left:327.345067pt;}
.x57{left:358.828933pt;}
.x50{left:360.923733pt;}
.x45{left:390.045200pt;}
.x42{left:392.504533pt;}
.x22{left:393.449333pt;}
.xb{left:404.481333pt;}
.xf{left:406.298133pt;}
.x55{left:408.218400pt;}
.x53{left:409.859067pt;}
.x29{left:410.786400pt;}
.x34{left:412.347067pt;}
.x49{left:414.244133pt;}
.x18{left:425.178667pt;}
.x8{left:427.076800pt;}
.x1c{left:428.688000pt;}
.x26{left:430.113467pt;}
.x27{left:433.974400pt;}
.x20{left:436.551467pt;}
.x19{left:445.606267pt;}
.x30{left:447.862533pt;}
.x3f{left:452.066133pt;}
.x58{left:454.148533pt;}
.x1e{left:455.433067pt;}
.x51{left:456.334800pt;}
.x9{left:457.316800pt;}
.x38{left:466.192000pt;}
.x28{left:468.134400pt;}
.x1a{left:470.983200pt;}
.x39{left:485.538667pt;}
.x1b{left:486.996533pt;}
.x2a{left:513.170400pt;}
.x40{left:515.163333pt;}
.x3a{left:532.397333pt;}
.x1d{left:533.400000pt;}
.x37{left:570.708667pt;}
.x31{left:572.587867pt;}
.x32{left:580.150533pt;}
.x25{left:583.564133pt;}
.x14{left:589.770933pt;}
.x2{left:626.078800pt;}
.x3d{left:637.449067pt;}
.x13{left:643.752133pt;}
.x3e{left:657.187867pt;}
.x1f{left:662.649733pt;}
}




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