
    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_36b69861d0a17cd064c6d617.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9f0b0d291c3f7308b05f90ad.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_47b709727636f9919e5f1816.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;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_270b913a1b1b02d988c27a61.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_966a7811fe0685462650a40b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a21dc35f6016d2f5e837bb2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_f303cff7559d870c3c1d830a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_40307aec909e6c299011b41c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_ba7e4486f32f125cb37abc1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.730957;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_316187c2e30cc9a933714d8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.442200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:19.945200px;}
.v1{vertical-align:21.619200px;}
.ls59{letter-spacing:-7.440000px;}
.ls65{letter-spacing:-6.660000px;}
.ls58{letter-spacing:-5.100000px;}
.ls66{letter-spacing:-4.662000px;}
.ls5a{letter-spacing:-4.320000px;}
.ls67{letter-spacing:-4.200000px;}
.ls64{letter-spacing:-1.776000px;}
.ls11{letter-spacing:-0.780000px;}
.ls81{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.495000px;}
.ls57{letter-spacing:-0.420000px;}
.ls8a{letter-spacing:-0.336000px;}
.ls14{letter-spacing:-0.300000px;}
.ls68{letter-spacing:-0.210000px;}
.ls8b{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.060000px;}
.ls3e{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.060000px;}
.ls79{letter-spacing:0.096000px;}
.ls56{letter-spacing:0.120000px;}
.ls63{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls3f{letter-spacing:0.192000px;}
.ls19{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.267000px;}
.lsc{letter-spacing:0.300000px;}
.ls6f{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.420000px;}
.ls73{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls76{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.540000px;}
.ls6e{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.600000px;}
.ls7b{letter-spacing:0.624000px;}
.ls51{letter-spacing:0.660000px;}
.ls82{letter-spacing:0.672000px;}
.ls3d{letter-spacing:0.720000px;}
.ls72{letter-spacing:0.768000px;}
.ls30{letter-spacing:0.780000px;}
.ls78{letter-spacing:0.816000px;}
.ls18{letter-spacing:0.840000px;}
.ls6c{letter-spacing:0.864000px;}
.ls1{letter-spacing:0.900000px;}
.ls21{letter-spacing:0.912000px;}
.ls42{letter-spacing:0.960000px;}
.ls5d{letter-spacing:1.008000px;}
.ls20{letter-spacing:1.020000px;}
.ls83{letter-spacing:1.056000px;}
.ls43{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.104000px;}
.ls33{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.152000px;}
.ls23{letter-spacing:1.200000px;}
.ls86{letter-spacing:1.248000px;}
.ls2f{letter-spacing:1.260000px;}
.ls2a{letter-spacing:1.296000px;}
.lsa{letter-spacing:1.320000px;}
.ls75{letter-spacing:1.344000px;}
.lse{letter-spacing:1.380000px;}
.ls3c{letter-spacing:1.440000px;}
.ls87{letter-spacing:1.488000px;}
.ls37{letter-spacing:1.500000px;}
.ls5e{letter-spacing:1.536000px;}
.lsd{letter-spacing:1.560000px;}
.ls7c{letter-spacing:1.584000px;}
.ls7{letter-spacing:1.620000px;}
.ls38{letter-spacing:1.680000px;}
.ls7e{letter-spacing:1.728000px;}
.ls9{letter-spacing:1.740000px;}
.ls7a{letter-spacing:1.776000px;}
.ls4c{letter-spacing:1.800000px;}
.ls53{letter-spacing:1.860000px;}
.lsf{letter-spacing:1.920000px;}
.ls77{letter-spacing:1.968000px;}
.ls44{letter-spacing:1.980000px;}
.ls1d{letter-spacing:2.040000px;}
.ls36{letter-spacing:2.100000px;}
.ls28{letter-spacing:2.112000px;}
.ls4{letter-spacing:2.160000px;}
.ls71{letter-spacing:2.208000px;}
.ls4a{letter-spacing:2.220000px;}
.ls46{letter-spacing:2.280000px;}
.ls1f{letter-spacing:2.340000px;}
.ls52{letter-spacing:2.400000px;}
.ls48{letter-spacing:2.520000px;}
.ls89{letter-spacing:2.544000px;}
.ls16{letter-spacing:2.580000px;}
.ls84{letter-spacing:2.592000px;}
.ls17{letter-spacing:2.640000px;}
.ls1e{letter-spacing:2.700000px;}
.ls41{letter-spacing:2.736000px;}
.ls6{letter-spacing:2.760000px;}
.ls80{letter-spacing:2.784000px;}
.ls34{letter-spacing:2.820000px;}
.ls2c{letter-spacing:2.832000px;}
.ls15{letter-spacing:2.880000px;}
.ls31{letter-spacing:2.940000px;}
.ls6d{letter-spacing:2.976000px;}
.ls3a{letter-spacing:3.120000px;}
.ls24{letter-spacing:3.168000px;}
.ls6a{letter-spacing:3.240000px;}
.ls49{letter-spacing:3.300000px;}
.ls5c{letter-spacing:3.312000px;}
.ls6b{letter-spacing:3.360000px;}
.ls85{letter-spacing:3.408000px;}
.ls55{letter-spacing:3.420000px;}
.ls0{letter-spacing:3.480000px;}
.ls3b{letter-spacing:3.540000px;}
.ls40{letter-spacing:3.552000px;}
.ls45{letter-spacing:3.600000px;}
.ls74{letter-spacing:3.648000px;}
.ls5{letter-spacing:3.660000px;}
.ls60{letter-spacing:3.720000px;}
.ls5f{letter-spacing:3.780000px;}
.ls88{letter-spacing:3.840000px;}
.ls35{letter-spacing:3.960000px;}
.ls61{letter-spacing:4.020000px;}
.ls62{letter-spacing:4.032000px;}
.ls4b{letter-spacing:4.140000px;}
.ls70{letter-spacing:4.272000px;}
.ls4f{letter-spacing:4.440000px;}
.ls7d{letter-spacing:4.752000px;}
.ls54{letter-spacing:4.980000px;}
.ls26{letter-spacing:5.040000px;}
.ls2b{letter-spacing:5.280000px;}
.ls69{letter-spacing:5.400000px;}
.ls7f{letter-spacing:5.712000px;}
.ls2d{letter-spacing:5.760000px;}
.ls29{letter-spacing:6.048000px;}
.ls27{letter-spacing:6.096000px;}
.ls4d{letter-spacing:6.480000px;}
.ls47{letter-spacing:7.200000px;}
.ls2e{letter-spacing:7.380000px;}
.ls50{letter-spacing:7.620000px;}
.ls32{letter-spacing:7.860000px;}
.ls4e{letter-spacing:11.460000px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws15{word-spacing:-20.760000px;}
.ws6d{word-spacing:-18.720000px;}
.ws16{word-spacing:-18.660000px;}
.ws8a{word-spacing:-18.240000px;}
.ws34{word-spacing:-17.340000px;}
.ws89{word-spacing:-17.100000px;}
.ws3{word-spacing:-16.680000px;}
.ws39{word-spacing:-16.620000px;}
.ws35{word-spacing:-16.080000px;}
.ws18{word-spacing:-16.020000px;}
.ws33{word-spacing:-15.960000px;}
.ws19{word-spacing:-15.540000px;}
.ws13{word-spacing:-15.480000px;}
.ws7b{word-spacing:-15.420000px;}
.ws17{word-spacing:-15.360000px;}
.ws38{word-spacing:-15.300000px;}
.ws6c{word-spacing:-15.240000px;}
.ws37{word-spacing:-15.000000px;}
.wsae{word-spacing:-14.640000px;}
.ws36{word-spacing:-14.580000px;}
.ws94{word-spacing:-13.728000px;}
.ws95{word-spacing:-13.584000px;}
.ws14{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.344000px;}
.ws92{word-spacing:-13.200000px;}
.ws8e{word-spacing:-12.816000px;}
.ws91{word-spacing:-12.624000px;}
.ws8d{word-spacing:-12.528000px;}
.ws4{word-spacing:-12.510000px;}
.ws8b{word-spacing:-12.336000px;}
.ws90{word-spacing:-12.240000px;}
.ws8c{word-spacing:-12.192000px;}
.ws93{word-spacing:-12.144000px;}
.ws8f{word-spacing:-12.096000px;}
.ws6e{word-spacing:-12.048000px;}
.ws54{word-spacing:-12.000000px;}
.ws62{word-spacing:-11.808000px;}
.ws74{word-spacing:-11.760000px;}
.wsaf{word-spacing:-11.664000px;}
.ws1{word-spacing:-10.508400px;}
.ws65{word-spacing:-10.464000px;}
.ws59{word-spacing:-10.416000px;}
.ws66{word-spacing:-9.024000px;}
.ws7c{word-spacing:-8.340000px;}
.ws5b{word-spacing:-7.824000px;}
.ws5c{word-spacing:-7.728000px;}
.ws58{word-spacing:-7.536000px;}
.ws2{word-spacing:-7.506000px;}
.ws5a{word-spacing:-7.488000px;}
.ws64{word-spacing:-6.432000px;}
.ws5f{word-spacing:-6.240000px;}
.ws7f{word-spacing:-5.838000px;}
.ws5e{word-spacing:-5.136000px;}
.ws67{word-spacing:-5.040000px;}
.ws61{word-spacing:-4.944000px;}
.ws77{word-spacing:-4.896000px;}
.ws40{word-spacing:-4.140000px;}
.ws79{word-spacing:-3.600000px;}
.ws29{word-spacing:-3.540000px;}
.ws1e{word-spacing:-3.168000px;}
.ws28{word-spacing:-3.120000px;}
.ws24{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.886000px;}
.ws21{word-spacing:-2.832000px;}
.ws42{word-spacing:-2.640000px;}
.ws84{word-spacing:-2.580000px;}
.ws88{word-spacing:-2.310000px;}
.wsf{word-spacing:-2.220000px;}
.ws3f{word-spacing:-2.100000px;}
.ws51{word-spacing:-1.740000px;}
.ws72{word-spacing:-1.632000px;}
.wsa{word-spacing:-1.620000px;}
.ws73{word-spacing:-1.536000px;}
.ws2c{word-spacing:-1.500000px;}
.ws20{word-spacing:-1.296000px;}
.ws22{word-spacing:-1.260000px;}
.wsa9{word-spacing:-1.200000px;}
.ws5d{word-spacing:-1.152000px;}
.ws49{word-spacing:-1.080000px;}
.ws52{word-spacing:-1.020000px;}
.ws7a{word-spacing:-0.960000px;}
.ws1c{word-spacing:-0.912000px;}
.ws60{word-spacing:-0.864000px;}
.ws47{word-spacing:-0.840000px;}
.ws75{word-spacing:-0.816000px;}
.ws87{word-spacing:-0.756000px;}
.ws2d{word-spacing:-0.720000px;}
.ws2a{word-spacing:-0.660000px;}
.wsa7{word-spacing:-0.624000px;}
.ws50{word-spacing:-0.540000px;}
.wsab{word-spacing:-0.528000px;}
.wsa6{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.420000px;}
.ws9f{word-spacing:-0.336000px;}
.ws4d{word-spacing:-0.300000px;}
.wsb{word-spacing:-0.180000px;}
.wsad{word-spacing:-0.144000px;}
.ws63{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws1f{word-spacing:0.048000px;}
.ws3e{word-spacing:0.060000px;}
.ws12{word-spacing:0.066000px;}
.ws86{word-spacing:0.180000px;}
.ws9d{word-spacing:0.192000px;}
.ws1a{word-spacing:0.240000px;}
.ws6a{word-spacing:0.336000px;}
.ws78{word-spacing:0.432000px;}
.wsd{word-spacing:0.540000px;}
.wsa3{word-spacing:0.576000px;}
.ws3d{word-spacing:0.600000px;}
.ws85{word-spacing:0.780000px;}
.ws4b{word-spacing:0.840000px;}
.ws10{word-spacing:0.900000px;}
.wsaa{word-spacing:0.912000px;}
.wse{word-spacing:0.960000px;}
.wsb0{word-spacing:1.008000px;}
.ws9a{word-spacing:1.080000px;}
.wsa4{word-spacing:1.152000px;}
.ws27{word-spacing:1.200000px;}
.wsb1{word-spacing:1.248000px;}
.wsa0{word-spacing:1.344000px;}
.wsc{word-spacing:1.380000px;}
.ws31{word-spacing:1.488000px;}
.wsb4{word-spacing:1.632000px;}
.ws3c{word-spacing:1.680000px;}
.ws76{word-spacing:1.776000px;}
.ws96{word-spacing:1.860000px;}
.ws6b{word-spacing:1.872000px;}
.ws2e{word-spacing:1.968000px;}
.wsb3{word-spacing:2.064000px;}
.ws97{word-spacing:2.100000px;}
.ws48{word-spacing:2.220000px;}
.wsb2{word-spacing:2.304000px;}
.ws44{word-spacing:2.400000px;}
.ws4c{word-spacing:2.460000px;}
.ws25{word-spacing:2.580000px;}
.wsa1{word-spacing:2.592000px;}
.ws2f{word-spacing:2.736000px;}
.ws9e{word-spacing:2.784000px;}
.ws3b{word-spacing:2.820000px;}
.ws68{word-spacing:2.832000px;}
.wsa2{word-spacing:2.880000px;}
.ws98{word-spacing:3.000000px;}
.wsa5{word-spacing:3.024000px;}
.wsa8{word-spacing:3.120000px;}
.ws53{word-spacing:3.180000px;}
.wsac{word-spacing:3.264000px;}
.ws2b{word-spacing:3.540000px;}
.ws30{word-spacing:3.600000px;}
.ws32{word-spacing:3.648000px;}
.ws69{word-spacing:3.792000px;}
.ws9c{word-spacing:3.900000px;}
.ws1b{word-spacing:3.936000px;}
.ws46{word-spacing:3.960000px;}
.ws1d{word-spacing:3.984000px;}
.ws11{word-spacing:4.020000px;}
.ws4f{word-spacing:4.320000px;}
.ws26{word-spacing:4.500000px;}
.ws41{word-spacing:4.680000px;}
.ws45{word-spacing:4.740000px;}
.ws8{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.ws43{word-spacing:5.100000px;}
.ws99{word-spacing:5.460000px;}
.ws9b{word-spacing:5.520000px;}
.ws4a{word-spacing:6.000000px;}
.ws3a{word-spacing:7.320000px;}
.ws4e{word-spacing:7.440000px;}
.ws80{word-spacing:38.388000px;}
.ws83{word-spacing:244.692000px;}
.ws82{word-spacing:307.692000px;}
.ws81{word-spacing:312.354000px;}
.ws7d{word-spacing:319.452000px;}
.ws7e{word-spacing:504.378000px;}
.ws6f{word-spacing:876.384000px;}
.ws70{word-spacing:879.024000px;}
.ws71{word-spacing:881.712000px;}
.ws55{word-spacing:887.424000px;}
.ws56{word-spacing:891.744000px;}
.ws57{word-spacing:894.432000px;}
._e{margin-left:-2897.556000px;}
._4d{margin-left:-2874.990000px;}
._f{margin-left:-2873.748000px;}
._10{margin-left:-22.020000px;}
._2{margin-left:-9.368400px;}
._6{margin-left:-7.680000px;}
._d{margin-left:-6.636000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.140000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.200000px;}
._3{width:1.309200px;}
._7{width:3.180000px;}
._8{width:4.614000px;}
._c{width:5.700000px;}
._9{width:7.056000px;}
._a{width:8.100000px;}
._b{width:9.180000px;}
._17{width:14.418000px;}
._16{width:19.824000px;}
._3c{width:22.000800px;}
._11{width:43.824000px;}
._12{width:57.846000px;}
._14{width:58.944000px;}
._13{width:63.840000px;}
._41{width:78.498000px;}
._31{width:92.232000px;}
._43{width:97.692000px;}
._1a{width:101.640000px;}
._4b{width:103.236000px;}
._3b{width:104.832000px;}
._28{width:113.232000px;}
._3d{width:126.546000px;}
._42{width:131.838000px;}
._19{width:134.484000px;}
._4a{width:138.978000px;}
._27{width:141.204000px;}
._4c{width:150.528000px;}
._30{width:155.232000px;}
._40{width:164.388000px;}
._1b{width:166.362000px;}
._3a{width:185.892000px;}
._2d{width:189.546000px;}
._21{width:209.286000px;}
._49{width:212.688000px;}
._35{width:223.188000px;}
._29{width:228.690000px;}
._1d{width:232.176000px;}
._36{width:235.158000px;}
._25{width:236.292000px;}
._24{width:239.148000px;}
._47{width:246.666000px;}
._2e{width:261.366000px;}
._1f{width:263.676000px;}
._48{width:272.202000px;}
._20{width:274.176000px;}
._46{width:275.688000px;}
._26{width:283.156800px;}
._3e{width:284.424000px;}
._1e{width:291.690000px;}
._32{width:293.454000px;}
._39{width:296.646000px;}
._34{width:300.174000px;}
._33{width:302.652000px;}
._3f{width:312.984000px;}
._37{width:314.328000px;}
._23{width:326.466000px;}
._22{width:331.338000px;}
._2b{width:343.518000px;}
._2c{width:345.072000px;}
._44{width:347.004000px;}
._45{width:353.850000px;}
._38{width:356.202000px;}
._2a{width:388.374000px;}
._2f{width:441.588000px;}
._1c{width:520.842000px;}
._18{width:899.424000px;}
._15{width:901.104000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y3a{bottom:47.777250px;}
.y6c{bottom:79.253850px;}
.y200{bottom:80.263500px;}
.y1bf{bottom:83.121900px;}
.ya6{bottom:83.436900px;}
.y11a{bottom:83.628600px;}
.y14e{bottom:83.649450px;}
.yae{bottom:83.767500px;}
.y138{bottom:85.207500px;}
.y17{bottom:88.026750px;}
.yeb{bottom:90.970350px;}
.y1ff{bottom:95.263500px;}
.y6b{bottom:97.253850px;}
.y1be{bottom:98.121900px;}
.ya5{bottom:99.180900px;}
.y14d{bottom:99.393450px;}
.yad{bottom:99.511500px;}
.y137{bottom:100.951500px;}
.y119{bottom:101.628600px;}
.ya1{bottom:101.770350px;}
.y16{bottom:103.023000px;}
.yea{bottom:108.970350px;}
.y1fe{bottom:110.263500px;}
.y1bd{bottom:113.121900px;}
.ya4{bottom:114.924900px;}
.y14c{bottom:115.137450px;}
.yac{bottom:115.255500px;}
.y136{bottom:116.695500px;}
.y118{bottom:119.628600px;}
.ya0{bottom:119.770350px;}
.y1fd{bottom:125.263500px;}
.ye9{bottom:126.970350px;}
.y1bc{bottom:128.121900px;}
.ya3{bottom:130.668900px;}
.y14b{bottom:130.881450px;}
.y6a{bottom:132.094500px;}
.y135{bottom:132.439500px;}
.y117{bottom:137.628600px;}
.y9f{bottom:137.770350px;}
.y1fc{bottom:140.263500px;}
.y1a4{bottom:142.658400px;}
.y1a7{bottom:142.668900px;}
.y1aa{bottom:142.679400px;}
.y1bb{bottom:143.121900px;}
.ye8{bottom:144.970350px;}
.y69{bottom:147.700500px;}
.y134{bottom:148.183500px;}
.y1fb{bottom:155.263500px;}
.y116{bottom:155.628600px;}
.y9e{bottom:155.770350px;}
.y1ba{bottom:158.121900px;}
.y37{bottom:158.472300px;}
.y28{bottom:158.607300px;}
.y1a3{bottom:159.153900px;}
.y1a6{bottom:159.164400px;}
.y1a9{bottom:159.174900px;}
.y1ac{bottom:159.185400px;}
.y68{bottom:162.059700px;}
.ye7{bottom:162.970350px;}
.y133{bottom:163.927500px;}
.y1fa{bottom:170.263500px;}
.y1b9{bottom:173.121900px;}
.y115{bottom:173.628600px;}
.y9d{bottom:173.770350px;}
.y1a2{bottom:175.649400px;}
.y1a5{bottom:175.659900px;}
.y1a8{bottom:175.670400px;}
.y1ab{bottom:175.680900px;}
.y36{bottom:176.472300px;}
.y27{bottom:176.607300px;}
.y67{bottom:179.654700px;}
.y132{bottom:179.671500px;}
.ye6{bottom:180.970350px;}
.y1f9{bottom:185.263500px;}
.y1b8{bottom:188.121900px;}
.y1a1{bottom:190.401900px;}
.y114{bottom:191.628600px;}
.y9c{bottom:191.770350px;}
.y35{bottom:194.472300px;}
.y26{bottom:194.607300px;}
.y66{bottom:197.654700px;}
.ye5{bottom:198.970350px;}
.y1f8{bottom:200.263500px;}
.y1b7{bottom:203.121900px;}
.y1a0{bottom:206.897400px;}
.y113{bottom:209.628600px;}
.y9b{bottom:209.770350px;}
.y34{bottom:212.472300px;}
.y25{bottom:212.607300px;}
.y1f7{bottom:215.263500px;}
.ye4{bottom:216.970350px;}
.y1b6{bottom:218.121900px;}
.y19f{bottom:221.649900px;}
.y112{bottom:227.628600px;}
.y9a{bottom:227.770350px;}
.y1f6{bottom:230.263500px;}
.y33{bottom:230.472300px;}
.y24{bottom:230.607300px;}
.y1b5{bottom:233.121900px;}
.y65{bottom:233.405250px;}
.ye3{bottom:234.970350px;}
.y19e{bottom:238.145400px;}
.y1f5{bottom:245.263500px;}
.y111{bottom:245.628600px;}
.y99{bottom:245.770350px;}
.y1b4{bottom:248.121900px;}
.y64{bottom:248.405250px;}
.y32{bottom:248.472300px;}
.y23{bottom:248.607300px;}
.y198{bottom:252.876900px;}
.y19b{bottom:252.887400px;}
.ye2{bottom:252.970350px;}
.y1f4{bottom:260.263500px;}
.y63{bottom:263.405250px;}
.y110{bottom:263.628600px;}
.y98{bottom:263.770350px;}
.y31{bottom:266.472300px;}
.y22{bottom:266.607300px;}
.y197{bottom:269.372400px;}
.y19a{bottom:269.382900px;}
.y19d{bottom:269.393400px;}
.ye1{bottom:270.970350px;}
.y1f3{bottom:275.263500px;}
.y62{bottom:278.405250px;}
.y1b3{bottom:281.230350px;}
.y10f{bottom:281.628600px;}
.y97{bottom:281.770350px;}
.y30{bottom:284.472300px;}
.y21{bottom:284.607300px;}
.y196{bottom:285.867900px;}
.y199{bottom:285.878400px;}
.y19c{bottom:285.888900px;}
.ye0{bottom:288.970350px;}
.y1f2{bottom:290.263500px;}
.y61{bottom:293.405250px;}
.y10e{bottom:299.628600px;}
.y96{bottom:299.770350px;}
.y195{bottom:300.620400px;}
.y2f{bottom:302.472300px;}
.y20{bottom:302.607300px;}
.y1f1{bottom:305.263500px;}
.ydf{bottom:306.970350px;}
.y60{bottom:308.405250px;}
.y194{bottom:317.115900px;}
.y10d{bottom:317.628600px;}
.y95{bottom:317.770350px;}
.y1f0{bottom:320.263500px;}
.y2e{bottom:320.472300px;}
.y1f{bottom:320.607300px;}
.y5f{bottom:323.405250px;}
.yde{bottom:324.970350px;}
.y193{bottom:333.611400px;}
.y1ef{bottom:335.263500px;}
.y10c{bottom:335.628600px;}
.y94{bottom:335.770350px;}
.y5e{bottom:338.405250px;}
.y2d{bottom:338.472300px;}
.y1e{bottom:338.607300px;}
.ydd{bottom:342.970350px;}
.y151{bottom:348.254850px;}
.y192{bottom:348.363900px;}
.y1ee{bottom:350.263500px;}
.y1b2{bottom:353.365350px;}
.y5d{bottom:353.405250px;}
.y10b{bottom:353.628600px;}
.y93{bottom:353.770350px;}
.y2c{bottom:356.472300px;}
.y1d{bottom:356.607300px;}
.ydc{bottom:360.970350px;}
.y191{bottom:364.859400px;}
.y1ed{bottom:365.263500px;}
.y5c{bottom:368.405250px;}
.y10a{bottom:371.628600px;}
.y92{bottom:371.770350px;}
.y1c{bottom:374.607300px;}
.ydb{bottom:378.970350px;}
.y190{bottom:379.611900px;}
.y1ec{bottom:380.263500px;}
.y5b{bottom:383.405250px;}
.y109{bottom:389.628600px;}
.y91{bottom:389.770350px;}
.y2b{bottom:392.067300px;}
.y1b{bottom:392.607300px;}
.y1eb{bottom:395.263500px;}
.y18f{bottom:396.107400px;}
.yda{bottom:396.970350px;}
.y13b{bottom:397.785300px;}
.y5a{bottom:398.405250px;}
.y1b1{bottom:407.365350px;}
.y108{bottom:407.628600px;}
.y90{bottom:407.770350px;}
.y1ea{bottom:410.263500px;}
.y1a{bottom:410.607300px;}
.y18e{bottom:410.859900px;}
.y59{bottom:413.405250px;}
.yd9{bottom:414.970350px;}
.y1e9{bottom:425.263500px;}
.y189{bottom:425.601900px;}
.y18d{bottom:425.612400px;}
.y107{bottom:425.628600px;}
.y8f{bottom:425.770350px;}
.yb1{bottom:425.849850px;}
.yb5{bottom:426.920850px;}
.y58{bottom:428.405250px;}
.y19{bottom:428.607300px;}
.yd8{bottom:432.970350px;}
.y1e8{bottom:440.263500px;}
.y188{bottom:442.097400px;}
.y18c{bottom:442.107900px;}
.y106{bottom:443.628600px;}
.y8e{bottom:443.770350px;}
.y2a{bottom:446.607300px;}
.yd7{bottom:450.970350px;}
.ya9{bottom:454.132200px;}
.y1e7{bottom:455.263500px;}
.y187{bottom:458.592900px;}
.y18b{bottom:458.603400px;}
.y57{bottom:461.500350px;}
.y105{bottom:461.628600px;}
.y8d{bottom:461.770350px;}
.y18{bottom:464.202300px;}
.y29{bottom:464.607300px;}
.yd6{bottom:468.970350px;}
.y1e6{bottom:470.265900px;}
.y186{bottom:475.088400px;}
.y18a{bottom:475.098900px;}
.y1b0{bottom:479.365350px;}
.y56{bottom:479.500350px;}
.y104{bottom:479.628600px;}
.y8c{bottom:479.770350px;}
.y1e5{bottom:485.265900px;}
.yd5{bottom:486.970350px;}
.y55{bottom:497.500350px;}
.y103{bottom:497.628600px;}
.y8b{bottom:497.770350px;}
.y1e4{bottom:500.265900px;}
.y185{bottom:502.598400px;}
.yd4{bottom:504.970350px;}
.y1e3{bottom:515.265900px;}
.y102{bottom:515.628600px;}
.y8a{bottom:515.770350px;}
.y184{bottom:519.093900px;}
.yd3{bottom:522.970350px;}
.y1e2{bottom:530.265900px;}
.y54{bottom:533.365350px;}
.y101{bottom:533.635350px;}
.y89{bottom:533.770350px;}
.y183{bottom:535.589400px;}
.yd2{bottom:540.970350px;}
.y15{bottom:543.064200px;}
.y1e1{bottom:545.265900px;}
.y100{bottom:551.635350px;}
.y88{bottom:551.770350px;}
.y150{bottom:552.770850px;}
.yd1{bottom:558.970350px;}
.y1e0{bottom:560.265900px;}
.y53{bottom:569.230350px;}
.yff{bottom:569.635350px;}
.y87{bottom:569.768850px;}
.y1af{bottom:569.770350px;}
.y14{bottom:570.409200px;}
.y1df{bottom:575.265900px;}
.yd0{bottom:576.970350px;}
.y17b{bottom:585.202350px;}
.y182{bottom:585.223350px;}
.y1ae{bottom:587.365350px;}
.yfe{bottom:587.635350px;}
.y86{bottom:587.768850px;}
.y13{bottom:588.409200px;}
.y1de{bottom:590.265900px;}
.ycf{bottom:594.970350px;}
.y13a{bottom:599.121300px;}
.y17a{bottom:601.697850px;}
.y17e{bottom:601.708350px;}
.y181{bottom:601.718850px;}
.y1dd{bottom:605.265900px;}
.yfd{bottom:605.635350px;}
.y85{bottom:605.768850px;}
.y12{bottom:606.409200px;}
.yce{bottom:612.970350px;}
.y179{bottom:618.193350px;}
.y17d{bottom:618.203850px;}
.y180{bottom:618.214350px;}
.y1dc{bottom:620.265900px;}
.yfc{bottom:623.635350px;}
.y84{bottom:623.768850px;}
.y52{bottom:623.770350px;}
.y11{bottom:624.409200px;}
.ycd{bottom:630.970350px;}
.y178{bottom:634.688850px;}
.y17c{bottom:634.699350px;}
.y17f{bottom:634.709850px;}
.y1db{bottom:635.265900px;}
.yfb{bottom:641.635350px;}
.y83{bottom:641.768850px;}
.y51{bottom:641.770350px;}
.y10{bottom:642.409200px;}
.ycc{bottom:648.970350px;}
.y177{bottom:649.441350px;}
.y1da{bottom:650.265900px;}
.yfa{bottom:659.635350px;}
.y82{bottom:659.768850px;}
.y50{bottom:659.770350px;}
.yf{bottom:660.409200px;}
.y176{bottom:664.193850px;}
.y1d9{bottom:665.265900px;}
.ycb{bottom:666.970350px;}
.yf9{bottom:677.635350px;}
.y81{bottom:677.768850px;}
.y4f{bottom:677.770350px;}
.ye{bottom:678.409200px;}
.y16c{bottom:678.914850px;}
.y16f{bottom:678.925350px;}
.y172{bottom:678.935850px;}
.y175{bottom:678.946350px;}
.y1d8{bottom:680.265900px;}
.yca{bottom:684.970350px;}
.y20a{bottom:695.263500px;}
.y1d7{bottom:695.265900px;}
.y16b{bottom:695.410350px;}
.y16e{bottom:695.420850px;}
.y171{bottom:695.431350px;}
.y174{bottom:695.441850px;}
.yf8{bottom:695.635350px;}
.y80{bottom:695.768850px;}
.y4e{bottom:695.770350px;}
.yd{bottom:696.409200px;}
.yc9{bottom:702.970350px;}
.y209{bottom:710.263500px;}
.y1d6{bottom:710.265900px;}
.y16a{bottom:711.905850px;}
.y16d{bottom:711.916350px;}
.y170{bottom:711.926850px;}
.y173{bottom:711.937350px;}
.yf7{bottom:713.635350px;}
.y7f{bottom:713.768850px;}
.y4d{bottom:713.770350px;}
.yc{bottom:714.409200px;}
.yc8{bottom:720.970350px;}
.y208{bottom:725.263500px;}
.y1d5{bottom:725.265900px;}
.y169{bottom:726.658350px;}
.yb4{bottom:728.804850px;}
.yb0{bottom:729.869850px;}
.yf6{bottom:731.635350px;}
.y7e{bottom:731.768850px;}
.y4c{bottom:731.770350px;}
.yc7{bottom:738.970350px;}
.y207{bottom:740.263500px;}
.y1d4{bottom:740.265900px;}
.y168{bottom:743.153850px;}
.ya8{bottom:743.476200px;}
.yf5{bottom:749.635350px;}
.y7d{bottom:749.768850px;}
.y4b{bottom:749.770350px;}
.y206{bottom:755.263500px;}
.y1d3{bottom:755.265900px;}
.yc6{bottom:756.970350px;}
.y164{bottom:757.895850px;}
.y167{bottom:757.906350px;}
.yb{bottom:759.567300px;}
.y14f{bottom:760.058850px;}
.yf4{bottom:767.635350px;}
.y7c{bottom:767.768850px;}
.y4a{bottom:767.770350px;}
.y205{bottom:770.263500px;}
.y1d2{bottom:770.265900px;}
.ya{bottom:772.018050px;}
.y163{bottom:774.391350px;}
.y166{bottom:774.401850px;}
.yc5{bottom:774.970350px;}
.y204{bottom:785.263500px;}
.y1d1{bottom:785.265900px;}
.yf3{bottom:785.635350px;}
.y7b{bottom:785.768850px;}
.y49{bottom:785.770350px;}
.y162{bottom:790.886850px;}
.y165{bottom:790.897350px;}
.yc4{bottom:792.970350px;}
.y203{bottom:800.263500px;}
.y1d0{bottom:800.265900px;}
.yf2{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y7a{bottom:803.768850px;}
.y48{bottom:803.770350px;}
.y14a{bottom:803.772600px;}
.y161{bottom:805.639350px;}
.y139{bottom:810.657300px;}
.yc3{bottom:810.970350px;}
.y202{bottom:815.263500px;}
.y1cf{bottom:815.265900px;}
.y160{bottom:820.391850px;}
.y8{bottom:821.094150px;}
.y1ad{bottom:821.365350px;}
.yf1{bottom:821.635350px;}
.y79{bottom:821.768850px;}
.y47{bottom:821.770350px;}
.y149{bottom:821.772600px;}
.yc2{bottom:828.970350px;}
.y13d{bottom:830.263500px;}
.y1ce{bottom:830.265900px;}
.y15f{bottom:835.144350px;}
.yf0{bottom:839.635350px;}
.y78{bottom:839.768850px;}
.y46{bottom:839.770350px;}
.y148{bottom:839.772600px;}
.y123{bottom:842.405250px;}
.y131{bottom:845.263500px;}
.y1cd{bottom:845.265900px;}
.yc1{bottom:846.970350px;}
.y7{bottom:851.380950px;}
.y15b{bottom:851.629350px;}
.y15e{bottom:851.639850px;}
.y122{bottom:857.405250px;}
.yef{bottom:857.635350px;}
.y77{bottom:857.768850px;}
.y45{bottom:857.770350px;}
.y147{bottom:857.772600px;}
.y130{bottom:860.263500px;}
.y1cc{bottom:860.265900px;}
.yc0{bottom:864.970350px;}
.y15a{bottom:868.124850px;}
.y15d{bottom:868.135350px;}
.y121{bottom:872.405250px;}
.y12f{bottom:875.263500px;}
.y1cb{bottom:875.265900px;}
.yee{bottom:875.635350px;}
.y76{bottom:875.768850px;}
.y44{bottom:875.770350px;}
.y146{bottom:875.772600px;}
.ybf{bottom:882.970350px;}
.y159{bottom:884.620350px;}
.y15c{bottom:884.630850px;}
.y120{bottom:887.405250px;}
.y12e{bottom:890.263500px;}
.y1ca{bottom:890.265900px;}
.yed{bottom:893.635350px;}
.y75{bottom:893.768850px;}
.y43{bottom:893.770350px;}
.y145{bottom:893.772600px;}
.y6{bottom:897.543600px;}
.ybe{bottom:900.970350px;}
.y11f{bottom:902.405250px;}
.y12d{bottom:905.263500px;}
.y1c9{bottom:905.265900px;}
.y74{bottom:911.768850px;}
.y42{bottom:911.770350px;}
.y144{bottom:911.772600px;}
.y158{bottom:912.130350px;}
.y11e{bottom:917.405250px;}
.ybd{bottom:918.970350px;}
.y12c{bottom:920.263500px;}
.y1c8{bottom:920.265900px;}
.y157{bottom:928.625850px;}
.yec{bottom:929.230350px;}
.y73{bottom:929.768850px;}
.y41{bottom:929.770350px;}
.y143{bottom:929.772600px;}
.y11d{bottom:932.405250px;}
.y5{bottom:934.004400px;}
.y12b{bottom:935.263500px;}
.y1c7{bottom:935.265900px;}
.ybc{bottom:936.970350px;}
.y72{bottom:947.768850px;}
.y40{bottom:947.770350px;}
.y142{bottom:947.772600px;}
.y12a{bottom:950.263500px;}
.y1c6{bottom:950.265900px;}
.y156{bottom:959.770350px;}
.y129{bottom:965.263500px;}
.y1c5{bottom:965.265900px;}
.y11c{bottom:965.515350px;}
.y71{bottom:965.768850px;}
.y3f{bottom:965.770350px;}
.y141{bottom:965.772600px;}
.y4{bottom:970.465200px;}
.ybb{bottom:971.811000px;}
.y155{bottom:979.270350px;}
.y128{bottom:980.263500px;}
.y1c4{bottom:980.265900px;}
.y11b{bottom:983.515350px;}
.y70{bottom:983.768850px;}
.y3e{bottom:983.770350px;}
.y140{bottom:983.772600px;}
.yba{bottom:987.417000px;}
.y127{bottom:995.263500px;}
.y1c3{bottom:995.265900px;}
.y154{bottom:998.770350px;}
.y6f{bottom:1001.768850px;}
.y3d{bottom:1001.770350px;}
.y13f{bottom:1001.772600px;}
.yb9{bottom:1001.776200px;}
.y3{bottom:1006.926000px;}
.y126{bottom:1010.263500px;}
.y1c2{bottom:1010.265900px;}
.y153{bottom:1018.270350px;}
.yb8{bottom:1019.371200px;}
.y6e{bottom:1019.768850px;}
.y3c{bottom:1019.770350px;}
.y125{bottom:1025.263500px;}
.y1c1{bottom:1025.265900px;}
.ya7{bottom:1036.224300px;}
.yaa{bottom:1036.228200px;}
.yb2{bottom:1036.433850px;}
.yaf{bottom:1036.436850px;}
.y13e{bottom:1037.367600px;}
.yb7{bottom:1037.371200px;}
.y6d{bottom:1037.768850px;}
.y3b{bottom:1037.770350px;}
.y124{bottom:1040.263500px;}
.y1c0{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.yb3{bottom:1132.409850px;}
.y13c{bottom:1132.413300px;}
.ya2{bottom:1132.418700px;}
.y152{bottom:1132.418850px;}
.yab{bottom:1132.420200px;}
.y201{bottom:1132.423500px;}
.yb6{bottom:1132.424850px;}
.y39{bottom:1136.122500px;}
.y38{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.412109px;}
.h14{height:28.464844px;}
.h15{height:29.162109px;}
.h2{height:30.597656px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.h12{height:33.328125px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h13{height:36.852539px;}
.h10{height:42.117188px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.h9{height:43.740234px;}
.h11{height:47.381836px;}
.h5{height:49.138634px;}
.hd{height:52.646484px;}
.h16{height:54.266484px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x29{left:79.936950px;}
.x13{left:84.429300px;}
.x1e{left:87.803100px;}
.x15{left:91.369050px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x27{left:99.496050px;}
.x21{left:100.670850px;}
.x12{left:102.047400px;}
.x4{left:106.299150px;}
.x20{left:108.000000px;}
.xd{left:110.555400px;}
.x10{left:120.103650px;}
.x1b{left:123.944850px;}
.x3{left:125.439000px;}
.x6{left:131.816400px;}
.x11{left:135.118650px;}
.x5a{left:190.693800px;}
.x69{left:192.058800px;}
.x22{left:194.915100px;}
.x16{left:199.045050px;}
.xf{left:202.903650px;}
.x76{left:206.202300px;}
.x6a{left:208.837800px;}
.xe{left:211.093650px;}
.x5{left:212.876400px;}
.x68{left:214.675800px;}
.x14{left:217.749300px;}
.x75{left:218.749800px;}
.x51{left:249.745800px;}
.x52{left:256.738800px;}
.x2f{left:259.584300px;}
.x3c{left:262.597800px;}
.x70{left:265.842300px;}
.x53{left:276.121800px;}
.x45{left:277.896300px;}
.x5b{left:282.117300px;}
.x62{left:285.844800px;}
.x71{left:293.404800px;}
.x6b{left:297.625800px;}
.x61{left:302.602800px;}
.x2a{left:321.448950px;}
.x48{left:341.064300px;}
.x26{left:342.708900px;}
.x31{left:348.823800px;}
.x3d{left:354.462300px;}
.x46{left:367.156800px;}
.x64{left:369.057300px;}
.x32{left:370.695300px;}
.x54{left:371.797800px;}
.x72{left:372.816300px;}
.x30{left:373.897800px;}
.x5c{left:378.969300px;}
.x6c{left:380.985300px;}
.x63{left:382.749300px;}
.x73{left:398.047800px;}
.x5d{left:399.822300px;}
.x49{left:436.729800px;}
.x1f{left:444.755100px;}
.x3e{left:447.219300px;}
.x3f{left:448.668300px;}
.x55{left:453.036300px;}
.xb{left:455.041500px;}
.x17{left:457.081200px;}
.x66{left:462.843300px;}
.x1c{left:464.312850px;}
.x2b{left:466.371300px;}
.x34{left:468.702300px;}
.x33{left:470.445300px;}
.x24{left:478.346400px;}
.x7{left:480.491400px;}
.x65{left:482.236800px;}
.x18{left:491.101200px;}
.x25{left:501.307050px;}
.x7a{left:503.851050px;}
.x9{left:514.511400px;}
.x4a{left:532.395300px;}
.x5e{left:534.190800px;}
.x2c{left:536.469300px;}
.x40{left:537.928800px;}
.x41{left:540.564300px;}
.x4b{left:542.023800px;}
.x47{left:545.950800px;}
.x8{left:549.746400px;}
.x67{left:554.130300px;}
.x36{left:564.367800px;}
.x35{left:566.110800px;}
.x42{left:568.105800px;}
.x2d{left:569.334300px;}
.x28{left:570.683550px;}
.x23{left:579.436200px;}
.x4d{left:630.097800px;}
.x4c{left:631.567800px;}
.x38{left:634.665300px;}
.x4e{left:638.119800px;}
.x56{left:642.036300px;}
.x78{left:643.138800px;}
.x2e{left:644.388300px;}
.x77{left:646.267800px;}
.x74{left:660.222300px;}
.x37{left:661.776300px;}
.x1a{left:663.492300px;}
.x43{left:670.491300px;}
.x2{left:693.365400px;}
.x60{left:722.056800px;}
.x79{left:723.337800px;}
.x58{left:724.356300px;}
.x6e{left:726.792300px;}
.x19{left:729.282150px;}
.x50{left:731.013300px;}
.x3a{left:732.178800px;}
.x3b{left:733.722300px;}
.x4f{left:735.822300px;}
.x57{left:737.544300px;}
.x5f{left:741.030300px;}
.x44{left:743.854800px;}
.x6f{left:745.156800px;}
.x1d{left:750.536850px;}
.x6d{left:752.590800px;}
.x59{left:754.470300px;}
.x39{left:757.441800px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:17.729067pt;}
.v1{vertical-align:19.217067pt;}
.ls59{letter-spacing:-6.613333pt;}
.ls65{letter-spacing:-5.920000pt;}
.ls58{letter-spacing:-4.533333pt;}
.ls66{letter-spacing:-4.144000pt;}
.ls5a{letter-spacing:-3.840000pt;}
.ls67{letter-spacing:-3.733333pt;}
.ls64{letter-spacing:-1.578667pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls81{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.440000pt;}
.ls57{letter-spacing:-0.373333pt;}
.ls8a{letter-spacing:-0.298667pt;}
.ls14{letter-spacing:-0.266667pt;}
.ls68{letter-spacing:-0.186667pt;}
.ls8b{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.053333pt;}
.ls3e{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.053333pt;}
.ls79{letter-spacing:0.085333pt;}
.ls56{letter-spacing:0.106667pt;}
.ls63{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls3f{letter-spacing:0.170667pt;}
.ls19{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.237333pt;}
.lsc{letter-spacing:0.266667pt;}
.ls6f{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.373333pt;}
.ls73{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls76{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls6e{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls7b{letter-spacing:0.554667pt;}
.ls51{letter-spacing:0.586667pt;}
.ls82{letter-spacing:0.597333pt;}
.ls3d{letter-spacing:0.640000pt;}
.ls72{letter-spacing:0.682667pt;}
.ls30{letter-spacing:0.693333pt;}
.ls78{letter-spacing:0.725333pt;}
.ls18{letter-spacing:0.746667pt;}
.ls6c{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls21{letter-spacing:0.810667pt;}
.ls42{letter-spacing:0.853333pt;}
.ls5d{letter-spacing:0.896000pt;}
.ls20{letter-spacing:0.906667pt;}
.ls83{letter-spacing:0.938667pt;}
.ls43{letter-spacing:0.960000pt;}
.ls25{letter-spacing:0.981333pt;}
.ls33{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.024000pt;}
.ls23{letter-spacing:1.066667pt;}
.ls86{letter-spacing:1.109333pt;}
.ls2f{letter-spacing:1.120000pt;}
.ls2a{letter-spacing:1.152000pt;}
.lsa{letter-spacing:1.173333pt;}
.ls75{letter-spacing:1.194667pt;}
.lse{letter-spacing:1.226667pt;}
.ls3c{letter-spacing:1.280000pt;}
.ls87{letter-spacing:1.322667pt;}
.ls37{letter-spacing:1.333333pt;}
.ls5e{letter-spacing:1.365333pt;}
.lsd{letter-spacing:1.386667pt;}
.ls7c{letter-spacing:1.408000pt;}
.ls7{letter-spacing:1.440000pt;}
.ls38{letter-spacing:1.493333pt;}
.ls7e{letter-spacing:1.536000pt;}
.ls9{letter-spacing:1.546667pt;}
.ls7a{letter-spacing:1.578667pt;}
.ls4c{letter-spacing:1.600000pt;}
.ls53{letter-spacing:1.653333pt;}
.lsf{letter-spacing:1.706667pt;}
.ls77{letter-spacing:1.749333pt;}
.ls44{letter-spacing:1.760000pt;}
.ls1d{letter-spacing:1.813333pt;}
.ls36{letter-spacing:1.866667pt;}
.ls28{letter-spacing:1.877333pt;}
.ls4{letter-spacing:1.920000pt;}
.ls71{letter-spacing:1.962667pt;}
.ls4a{letter-spacing:1.973333pt;}
.ls46{letter-spacing:2.026667pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls52{letter-spacing:2.133333pt;}
.ls48{letter-spacing:2.240000pt;}
.ls89{letter-spacing:2.261333pt;}
.ls16{letter-spacing:2.293333pt;}
.ls84{letter-spacing:2.304000pt;}
.ls17{letter-spacing:2.346667pt;}
.ls1e{letter-spacing:2.400000pt;}
.ls41{letter-spacing:2.432000pt;}
.ls6{letter-spacing:2.453333pt;}
.ls80{letter-spacing:2.474667pt;}
.ls34{letter-spacing:2.506667pt;}
.ls2c{letter-spacing:2.517333pt;}
.ls15{letter-spacing:2.560000pt;}
.ls31{letter-spacing:2.613333pt;}
.ls6d{letter-spacing:2.645333pt;}
.ls3a{letter-spacing:2.773333pt;}
.ls24{letter-spacing:2.816000pt;}
.ls6a{letter-spacing:2.880000pt;}
.ls49{letter-spacing:2.933333pt;}
.ls5c{letter-spacing:2.944000pt;}
.ls6b{letter-spacing:2.986667pt;}
.ls85{letter-spacing:3.029333pt;}
.ls55{letter-spacing:3.040000pt;}
.ls0{letter-spacing:3.093333pt;}
.ls3b{letter-spacing:3.146667pt;}
.ls40{letter-spacing:3.157333pt;}
.ls45{letter-spacing:3.200000pt;}
.ls74{letter-spacing:3.242667pt;}
.ls5{letter-spacing:3.253333pt;}
.ls60{letter-spacing:3.306667pt;}
.ls5f{letter-spacing:3.360000pt;}
.ls88{letter-spacing:3.413333pt;}
.ls35{letter-spacing:3.520000pt;}
.ls61{letter-spacing:3.573333pt;}
.ls62{letter-spacing:3.584000pt;}
.ls4b{letter-spacing:3.680000pt;}
.ls70{letter-spacing:3.797333pt;}
.ls4f{letter-spacing:3.946667pt;}
.ls7d{letter-spacing:4.224000pt;}
.ls54{letter-spacing:4.426667pt;}
.ls26{letter-spacing:4.480000pt;}
.ls2b{letter-spacing:4.693333pt;}
.ls69{letter-spacing:4.800000pt;}
.ls7f{letter-spacing:5.077333pt;}
.ls2d{letter-spacing:5.120000pt;}
.ls29{letter-spacing:5.376000pt;}
.ls27{letter-spacing:5.418667pt;}
.ls4d{letter-spacing:5.760000pt;}
.ls47{letter-spacing:6.400000pt;}
.ls2e{letter-spacing:6.560000pt;}
.ls50{letter-spacing:6.773333pt;}
.ls32{letter-spacing:6.986667pt;}
.ls4e{letter-spacing:10.186667pt;}
.ws0{word-spacing:-31.284267pt;}
.ws15{word-spacing:-18.453333pt;}
.ws6d{word-spacing:-16.640000pt;}
.ws16{word-spacing:-16.586667pt;}
.ws8a{word-spacing:-16.213333pt;}
.ws34{word-spacing:-15.413333pt;}
.ws89{word-spacing:-15.200000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws39{word-spacing:-14.773333pt;}
.ws35{word-spacing:-14.293333pt;}
.ws18{word-spacing:-14.240000pt;}
.ws33{word-spacing:-14.186667pt;}
.ws19{word-spacing:-13.813333pt;}
.ws13{word-spacing:-13.760000pt;}
.ws7b{word-spacing:-13.706667pt;}
.ws17{word-spacing:-13.653333pt;}
.ws38{word-spacing:-13.600000pt;}
.ws6c{word-spacing:-13.546667pt;}
.ws37{word-spacing:-13.333333pt;}
.wsae{word-spacing:-13.013333pt;}
.ws36{word-spacing:-12.960000pt;}
.ws94{word-spacing:-12.202667pt;}
.ws95{word-spacing:-12.074667pt;}
.ws14{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.861333pt;}
.ws92{word-spacing:-11.733333pt;}
.ws8e{word-spacing:-11.392000pt;}
.ws91{word-spacing:-11.221333pt;}
.ws8d{word-spacing:-11.136000pt;}
.ws4{word-spacing:-11.120000pt;}
.ws8b{word-spacing:-10.965333pt;}
.ws90{word-spacing:-10.880000pt;}
.ws8c{word-spacing:-10.837333pt;}
.ws93{word-spacing:-10.794667pt;}
.ws8f{word-spacing:-10.752000pt;}
.ws6e{word-spacing:-10.709333pt;}
.ws54{word-spacing:-10.666667pt;}
.ws62{word-spacing:-10.496000pt;}
.ws74{word-spacing:-10.453333pt;}
.wsaf{word-spacing:-10.368000pt;}
.ws1{word-spacing:-9.340800pt;}
.ws65{word-spacing:-9.301333pt;}
.ws59{word-spacing:-9.258667pt;}
.ws66{word-spacing:-8.021333pt;}
.ws7c{word-spacing:-7.413333pt;}
.ws5b{word-spacing:-6.954667pt;}
.ws5c{word-spacing:-6.869333pt;}
.ws58{word-spacing:-6.698667pt;}
.ws2{word-spacing:-6.672000pt;}
.ws5a{word-spacing:-6.656000pt;}
.ws64{word-spacing:-5.717333pt;}
.ws5f{word-spacing:-5.546667pt;}
.ws7f{word-spacing:-5.189333pt;}
.ws5e{word-spacing:-4.565333pt;}
.ws67{word-spacing:-4.480000pt;}
.ws61{word-spacing:-4.394667pt;}
.ws77{word-spacing:-4.352000pt;}
.ws40{word-spacing:-3.680000pt;}
.ws79{word-spacing:-3.200000pt;}
.ws29{word-spacing:-3.146667pt;}
.ws1e{word-spacing:-2.816000pt;}
.ws28{word-spacing:-2.773333pt;}
.ws24{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.565333pt;}
.ws21{word-spacing:-2.517333pt;}
.ws42{word-spacing:-2.346667pt;}
.ws84{word-spacing:-2.293333pt;}
.ws88{word-spacing:-2.053333pt;}
.wsf{word-spacing:-1.973333pt;}
.ws3f{word-spacing:-1.866667pt;}
.ws51{word-spacing:-1.546667pt;}
.ws72{word-spacing:-1.450667pt;}
.wsa{word-spacing:-1.440000pt;}
.ws73{word-spacing:-1.365333pt;}
.ws2c{word-spacing:-1.333333pt;}
.ws20{word-spacing:-1.152000pt;}
.ws22{word-spacing:-1.120000pt;}
.wsa9{word-spacing:-1.066667pt;}
.ws5d{word-spacing:-1.024000pt;}
.ws49{word-spacing:-0.960000pt;}
.ws52{word-spacing:-0.906667pt;}
.ws7a{word-spacing:-0.853333pt;}
.ws1c{word-spacing:-0.810667pt;}
.ws60{word-spacing:-0.768000pt;}
.ws47{word-spacing:-0.746667pt;}
.ws75{word-spacing:-0.725333pt;}
.ws87{word-spacing:-0.672000pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws2a{word-spacing:-0.586667pt;}
.wsa7{word-spacing:-0.554667pt;}
.ws50{word-spacing:-0.480000pt;}
.wsab{word-spacing:-0.469333pt;}
.wsa6{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.373333pt;}
.ws9f{word-spacing:-0.298667pt;}
.ws4d{word-spacing:-0.266667pt;}
.wsb{word-spacing:-0.160000pt;}
.wsad{word-spacing:-0.128000pt;}
.ws63{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.042667pt;}
.ws3e{word-spacing:0.053333pt;}
.ws12{word-spacing:0.058667pt;}
.ws86{word-spacing:0.160000pt;}
.ws9d{word-spacing:0.170667pt;}
.ws1a{word-spacing:0.213333pt;}
.ws6a{word-spacing:0.298667pt;}
.ws78{word-spacing:0.384000pt;}
.wsd{word-spacing:0.480000pt;}
.wsa3{word-spacing:0.512000pt;}
.ws3d{word-spacing:0.533333pt;}
.ws85{word-spacing:0.693333pt;}
.ws4b{word-spacing:0.746667pt;}
.ws10{word-spacing:0.800000pt;}
.wsaa{word-spacing:0.810667pt;}
.wse{word-spacing:0.853333pt;}
.wsb0{word-spacing:0.896000pt;}
.ws9a{word-spacing:0.960000pt;}
.wsa4{word-spacing:1.024000pt;}
.ws27{word-spacing:1.066667pt;}
.wsb1{word-spacing:1.109333pt;}
.wsa0{word-spacing:1.194667pt;}
.wsc{word-spacing:1.226667pt;}
.ws31{word-spacing:1.322667pt;}
.wsb4{word-spacing:1.450667pt;}
.ws3c{word-spacing:1.493333pt;}
.ws76{word-spacing:1.578667pt;}
.ws96{word-spacing:1.653333pt;}
.ws6b{word-spacing:1.664000pt;}
.ws2e{word-spacing:1.749333pt;}
.wsb3{word-spacing:1.834667pt;}
.ws97{word-spacing:1.866667pt;}
.ws48{word-spacing:1.973333pt;}
.wsb2{word-spacing:2.048000pt;}
.ws44{word-spacing:2.133333pt;}
.ws4c{word-spacing:2.186667pt;}
.ws25{word-spacing:2.293333pt;}
.wsa1{word-spacing:2.304000pt;}
.ws2f{word-spacing:2.432000pt;}
.ws9e{word-spacing:2.474667pt;}
.ws3b{word-spacing:2.506667pt;}
.ws68{word-spacing:2.517333pt;}
.wsa2{word-spacing:2.560000pt;}
.ws98{word-spacing:2.666667pt;}
.wsa5{word-spacing:2.688000pt;}
.wsa8{word-spacing:2.773333pt;}
.ws53{word-spacing:2.826667pt;}
.wsac{word-spacing:2.901333pt;}
.ws2b{word-spacing:3.146667pt;}
.ws30{word-spacing:3.200000pt;}
.ws32{word-spacing:3.242667pt;}
.ws69{word-spacing:3.370667pt;}
.ws9c{word-spacing:3.466667pt;}
.ws1b{word-spacing:3.498667pt;}
.ws46{word-spacing:3.520000pt;}
.ws1d{word-spacing:3.541333pt;}
.ws11{word-spacing:3.573333pt;}
.ws4f{word-spacing:3.840000pt;}
.ws26{word-spacing:4.000000pt;}
.ws41{word-spacing:4.160000pt;}
.ws45{word-spacing:4.213333pt;}
.ws8{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.ws43{word-spacing:4.533333pt;}
.ws99{word-spacing:4.853333pt;}
.ws9b{word-spacing:4.906667pt;}
.ws4a{word-spacing:5.333333pt;}
.ws3a{word-spacing:6.506667pt;}
.ws4e{word-spacing:6.613333pt;}
.ws80{word-spacing:34.122667pt;}
.ws83{word-spacing:217.504000pt;}
.ws82{word-spacing:273.504000pt;}
.ws81{word-spacing:277.648000pt;}
.ws7d{word-spacing:283.957333pt;}
.ws7e{word-spacing:448.336000pt;}
.ws6f{word-spacing:779.008000pt;}
.ws70{word-spacing:781.354667pt;}
.ws71{word-spacing:783.744000pt;}
.ws55{word-spacing:788.821333pt;}
.ws56{word-spacing:792.661333pt;}
.ws57{word-spacing:795.050667pt;}
._e{margin-left:-2575.605333pt;}
._4d{margin-left:-2555.546667pt;}
._f{margin-left:-2554.442667pt;}
._10{margin-left:-19.573333pt;}
._2{margin-left:-8.327467pt;}
._6{margin-left:-6.826667pt;}
._d{margin-left:-5.898667pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.680000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-1.066667pt;}
._3{width:1.163733pt;}
._7{width:2.826667pt;}
._8{width:4.101333pt;}
._c{width:5.066667pt;}
._9{width:6.272000pt;}
._a{width:7.200000pt;}
._b{width:8.160000pt;}
._17{width:12.816000pt;}
._16{width:17.621333pt;}
._3c{width:19.556267pt;}
._11{width:38.954667pt;}
._12{width:51.418667pt;}
._14{width:52.394667pt;}
._13{width:56.746667pt;}
._41{width:69.776000pt;}
._31{width:81.984000pt;}
._43{width:86.837333pt;}
._1a{width:90.346667pt;}
._4b{width:91.765333pt;}
._3b{width:93.184000pt;}
._28{width:100.650667pt;}
._3d{width:112.485333pt;}
._42{width:117.189333pt;}
._19{width:119.541333pt;}
._4a{width:123.536000pt;}
._27{width:125.514667pt;}
._4c{width:133.802667pt;}
._30{width:137.984000pt;}
._40{width:146.122667pt;}
._1b{width:147.877333pt;}
._3a{width:165.237333pt;}
._2d{width:168.485333pt;}
._21{width:186.032000pt;}
._49{width:189.056000pt;}
._35{width:198.389333pt;}
._29{width:203.280000pt;}
._1d{width:206.378667pt;}
._36{width:209.029333pt;}
._25{width:210.037333pt;}
._24{width:212.576000pt;}
._47{width:219.258667pt;}
._2e{width:232.325333pt;}
._1f{width:234.378667pt;}
._48{width:241.957333pt;}
._20{width:243.712000pt;}
._46{width:245.056000pt;}
._26{width:251.694933pt;}
._3e{width:252.821333pt;}
._1e{width:259.280000pt;}
._32{width:260.848000pt;}
._39{width:263.685333pt;}
._34{width:266.821333pt;}
._33{width:269.024000pt;}
._3f{width:278.208000pt;}
._37{width:279.402667pt;}
._23{width:290.192000pt;}
._22{width:294.522667pt;}
._2b{width:305.349333pt;}
._2c{width:306.730667pt;}
._44{width:308.448000pt;}
._45{width:314.533333pt;}
._38{width:316.624000pt;}
._2a{width:345.221333pt;}
._2f{width:392.522667pt;}
._1c{width:462.970667pt;}
._18{width:799.488000pt;}
._15{width:800.981333pt;}
.fs5{font-size:24.000000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y3a{bottom:42.468667pt;}
.y6c{bottom:70.447867pt;}
.y200{bottom:71.345333pt;}
.y1bf{bottom:73.886133pt;}
.ya6{bottom:74.166133pt;}
.y11a{bottom:74.336533pt;}
.y14e{bottom:74.355067pt;}
.yae{bottom:74.460000pt;}
.y138{bottom:75.740000pt;}
.y17{bottom:78.246000pt;}
.yeb{bottom:80.862533pt;}
.y1ff{bottom:84.678667pt;}
.y6b{bottom:86.447867pt;}
.y1be{bottom:87.219467pt;}
.ya5{bottom:88.160800pt;}
.y14d{bottom:88.349733pt;}
.yad{bottom:88.454667pt;}
.y137{bottom:89.734667pt;}
.y119{bottom:90.336533pt;}
.ya1{bottom:90.462533pt;}
.y16{bottom:91.576000pt;}
.yea{bottom:96.862533pt;}
.y1fe{bottom:98.012000pt;}
.y1bd{bottom:100.552800pt;}
.ya4{bottom:102.155467pt;}
.y14c{bottom:102.344400pt;}
.yac{bottom:102.449333pt;}
.y136{bottom:103.729333pt;}
.y118{bottom:106.336533pt;}
.ya0{bottom:106.462533pt;}
.y1fd{bottom:111.345333pt;}
.ye9{bottom:112.862533pt;}
.y1bc{bottom:113.886133pt;}
.ya3{bottom:116.150133pt;}
.y14b{bottom:116.339067pt;}
.y6a{bottom:117.417333pt;}
.y135{bottom:117.724000pt;}
.y117{bottom:122.336533pt;}
.y9f{bottom:122.462533pt;}
.y1fc{bottom:124.678667pt;}
.y1a4{bottom:126.807467pt;}
.y1a7{bottom:126.816800pt;}
.y1aa{bottom:126.826133pt;}
.y1bb{bottom:127.219467pt;}
.ye8{bottom:128.862533pt;}
.y69{bottom:131.289333pt;}
.y134{bottom:131.718667pt;}
.y1fb{bottom:138.012000pt;}
.y116{bottom:138.336533pt;}
.y9e{bottom:138.462533pt;}
.y1ba{bottom:140.552800pt;}
.y37{bottom:140.864267pt;}
.y28{bottom:140.984267pt;}
.y1a3{bottom:141.470133pt;}
.y1a6{bottom:141.479467pt;}
.y1a9{bottom:141.488800pt;}
.y1ac{bottom:141.498133pt;}
.y68{bottom:144.053067pt;}
.ye7{bottom:144.862533pt;}
.y133{bottom:145.713333pt;}
.y1fa{bottom:151.345333pt;}
.y1b9{bottom:153.886133pt;}
.y115{bottom:154.336533pt;}
.y9d{bottom:154.462533pt;}
.y1a2{bottom:156.132800pt;}
.y1a5{bottom:156.142133pt;}
.y1a8{bottom:156.151467pt;}
.y1ab{bottom:156.160800pt;}
.y36{bottom:156.864267pt;}
.y27{bottom:156.984267pt;}
.y67{bottom:159.693067pt;}
.y132{bottom:159.708000pt;}
.ye6{bottom:160.862533pt;}
.y1f9{bottom:164.678667pt;}
.y1b8{bottom:167.219467pt;}
.y1a1{bottom:169.246133pt;}
.y114{bottom:170.336533pt;}
.y9c{bottom:170.462533pt;}
.y35{bottom:172.864267pt;}
.y26{bottom:172.984267pt;}
.y66{bottom:175.693067pt;}
.ye5{bottom:176.862533pt;}
.y1f8{bottom:178.012000pt;}
.y1b7{bottom:180.552800pt;}
.y1a0{bottom:183.908800pt;}
.y113{bottom:186.336533pt;}
.y9b{bottom:186.462533pt;}
.y34{bottom:188.864267pt;}
.y25{bottom:188.984267pt;}
.y1f7{bottom:191.345333pt;}
.ye4{bottom:192.862533pt;}
.y1b6{bottom:193.886133pt;}
.y19f{bottom:197.022133pt;}
.y112{bottom:202.336533pt;}
.y9a{bottom:202.462533pt;}
.y1f6{bottom:204.678667pt;}
.y33{bottom:204.864267pt;}
.y24{bottom:204.984267pt;}
.y1b5{bottom:207.219467pt;}
.y65{bottom:207.471333pt;}
.ye3{bottom:208.862533pt;}
.y19e{bottom:211.684800pt;}
.y1f5{bottom:218.012000pt;}
.y111{bottom:218.336533pt;}
.y99{bottom:218.462533pt;}
.y1b4{bottom:220.552800pt;}
.y64{bottom:220.804667pt;}
.y32{bottom:220.864267pt;}
.y23{bottom:220.984267pt;}
.y198{bottom:224.779467pt;}
.y19b{bottom:224.788800pt;}
.ye2{bottom:224.862533pt;}
.y1f4{bottom:231.345333pt;}
.y63{bottom:234.138000pt;}
.y110{bottom:234.336533pt;}
.y98{bottom:234.462533pt;}
.y31{bottom:236.864267pt;}
.y22{bottom:236.984267pt;}
.y197{bottom:239.442133pt;}
.y19a{bottom:239.451467pt;}
.y19d{bottom:239.460800pt;}
.ye1{bottom:240.862533pt;}
.y1f3{bottom:244.678667pt;}
.y62{bottom:247.471333pt;}
.y1b3{bottom:249.982533pt;}
.y10f{bottom:250.336533pt;}
.y97{bottom:250.462533pt;}
.y30{bottom:252.864267pt;}
.y21{bottom:252.984267pt;}
.y196{bottom:254.104800pt;}
.y199{bottom:254.114133pt;}
.y19c{bottom:254.123467pt;}
.ye0{bottom:256.862533pt;}
.y1f2{bottom:258.012000pt;}
.y61{bottom:260.804667pt;}
.y10e{bottom:266.336533pt;}
.y96{bottom:266.462533pt;}
.y195{bottom:267.218133pt;}
.y2f{bottom:268.864267pt;}
.y20{bottom:268.984267pt;}
.y1f1{bottom:271.345333pt;}
.ydf{bottom:272.862533pt;}
.y60{bottom:274.138000pt;}
.y194{bottom:281.880800pt;}
.y10d{bottom:282.336533pt;}
.y95{bottom:282.462533pt;}
.y1f0{bottom:284.678667pt;}
.y2e{bottom:284.864267pt;}
.y1f{bottom:284.984267pt;}
.y5f{bottom:287.471333pt;}
.yde{bottom:288.862533pt;}
.y193{bottom:296.543467pt;}
.y1ef{bottom:298.012000pt;}
.y10c{bottom:298.336533pt;}
.y94{bottom:298.462533pt;}
.y5e{bottom:300.804667pt;}
.y2d{bottom:300.864267pt;}
.y1e{bottom:300.984267pt;}
.ydd{bottom:304.862533pt;}
.y151{bottom:309.559867pt;}
.y192{bottom:309.656800pt;}
.y1ee{bottom:311.345333pt;}
.y1b2{bottom:314.102533pt;}
.y5d{bottom:314.138000pt;}
.y10b{bottom:314.336533pt;}
.y93{bottom:314.462533pt;}
.y2c{bottom:316.864267pt;}
.y1d{bottom:316.984267pt;}
.ydc{bottom:320.862533pt;}
.y191{bottom:324.319467pt;}
.y1ed{bottom:324.678667pt;}
.y5c{bottom:327.471333pt;}
.y10a{bottom:330.336533pt;}
.y92{bottom:330.462533pt;}
.y1c{bottom:332.984267pt;}
.ydb{bottom:336.862533pt;}
.y190{bottom:337.432800pt;}
.y1ec{bottom:338.012000pt;}
.y5b{bottom:340.804667pt;}
.y109{bottom:346.336533pt;}
.y91{bottom:346.462533pt;}
.y2b{bottom:348.504267pt;}
.y1b{bottom:348.984267pt;}
.y1eb{bottom:351.345333pt;}
.y18f{bottom:352.095467pt;}
.yda{bottom:352.862533pt;}
.y13b{bottom:353.586933pt;}
.y5a{bottom:354.138000pt;}
.y1b1{bottom:362.102533pt;}
.y108{bottom:362.336533pt;}
.y90{bottom:362.462533pt;}
.y1ea{bottom:364.678667pt;}
.y1a{bottom:364.984267pt;}
.y18e{bottom:365.208800pt;}
.y59{bottom:367.471333pt;}
.yd9{bottom:368.862533pt;}
.y1e9{bottom:378.012000pt;}
.y189{bottom:378.312800pt;}
.y18d{bottom:378.322133pt;}
.y107{bottom:378.336533pt;}
.y8f{bottom:378.462533pt;}
.yb1{bottom:378.533200pt;}
.yb5{bottom:379.485200pt;}
.y58{bottom:380.804667pt;}
.y19{bottom:380.984267pt;}
.yd8{bottom:384.862533pt;}
.y1e8{bottom:391.345333pt;}
.y188{bottom:392.975467pt;}
.y18c{bottom:392.984800pt;}
.y106{bottom:394.336533pt;}
.y8e{bottom:394.462533pt;}
.y2a{bottom:396.984267pt;}
.yd7{bottom:400.862533pt;}
.ya9{bottom:403.673067pt;}
.y1e7{bottom:404.678667pt;}
.y187{bottom:407.638133pt;}
.y18b{bottom:407.647467pt;}
.y57{bottom:410.222533pt;}
.y105{bottom:410.336533pt;}
.y8d{bottom:410.462533pt;}
.y18{bottom:412.624267pt;}
.y29{bottom:412.984267pt;}
.yd6{bottom:416.862533pt;}
.y1e6{bottom:418.014133pt;}
.y186{bottom:422.300800pt;}
.y18a{bottom:422.310133pt;}
.y1b0{bottom:426.102533pt;}
.y56{bottom:426.222533pt;}
.y104{bottom:426.336533pt;}
.y8c{bottom:426.462533pt;}
.y1e5{bottom:431.347467pt;}
.yd5{bottom:432.862533pt;}
.y55{bottom:442.222533pt;}
.y103{bottom:442.336533pt;}
.y8b{bottom:442.462533pt;}
.y1e4{bottom:444.680800pt;}
.y185{bottom:446.754133pt;}
.yd4{bottom:448.862533pt;}
.y1e3{bottom:458.014133pt;}
.y102{bottom:458.336533pt;}
.y8a{bottom:458.462533pt;}
.y184{bottom:461.416800pt;}
.yd3{bottom:464.862533pt;}
.y1e2{bottom:471.347467pt;}
.y54{bottom:474.102533pt;}
.y101{bottom:474.342533pt;}
.y89{bottom:474.462533pt;}
.y183{bottom:476.079467pt;}
.yd2{bottom:480.862533pt;}
.y15{bottom:482.723733pt;}
.y1e1{bottom:484.680800pt;}
.y100{bottom:490.342533pt;}
.y88{bottom:490.462533pt;}
.y150{bottom:491.351867pt;}
.yd1{bottom:496.862533pt;}
.y1e0{bottom:498.014133pt;}
.y53{bottom:505.982533pt;}
.yff{bottom:506.342533pt;}
.y87{bottom:506.461200pt;}
.y1af{bottom:506.462533pt;}
.y14{bottom:507.030400pt;}
.y1df{bottom:511.347467pt;}
.yd0{bottom:512.862533pt;}
.y17b{bottom:520.179867pt;}
.y182{bottom:520.198533pt;}
.y1ae{bottom:522.102533pt;}
.yfe{bottom:522.342533pt;}
.y86{bottom:522.461200pt;}
.y13{bottom:523.030400pt;}
.y1de{bottom:524.680800pt;}
.ycf{bottom:528.862533pt;}
.y13a{bottom:532.552267pt;}
.y17a{bottom:534.842533pt;}
.y17e{bottom:534.851867pt;}
.y181{bottom:534.861200pt;}
.y1dd{bottom:538.014133pt;}
.yfd{bottom:538.342533pt;}
.y85{bottom:538.461200pt;}
.y12{bottom:539.030400pt;}
.yce{bottom:544.862533pt;}
.y179{bottom:549.505200pt;}
.y17d{bottom:549.514533pt;}
.y180{bottom:549.523867pt;}
.y1dc{bottom:551.347467pt;}
.yfc{bottom:554.342533pt;}
.y84{bottom:554.461200pt;}
.y52{bottom:554.462533pt;}
.y11{bottom:555.030400pt;}
.ycd{bottom:560.862533pt;}
.y178{bottom:564.167867pt;}
.y17c{bottom:564.177200pt;}
.y17f{bottom:564.186533pt;}
.y1db{bottom:564.680800pt;}
.yfb{bottom:570.342533pt;}
.y83{bottom:570.461200pt;}
.y51{bottom:570.462533pt;}
.y10{bottom:571.030400pt;}
.ycc{bottom:576.862533pt;}
.y177{bottom:577.281200pt;}
.y1da{bottom:578.014133pt;}
.yfa{bottom:586.342533pt;}
.y82{bottom:586.461200pt;}
.y50{bottom:586.462533pt;}
.yf{bottom:587.030400pt;}
.y176{bottom:590.394533pt;}
.y1d9{bottom:591.347467pt;}
.ycb{bottom:592.862533pt;}
.yf9{bottom:602.342533pt;}
.y81{bottom:602.461200pt;}
.y4f{bottom:602.462533pt;}
.ye{bottom:603.030400pt;}
.y16c{bottom:603.479867pt;}
.y16f{bottom:603.489200pt;}
.y172{bottom:603.498533pt;}
.y175{bottom:603.507867pt;}
.y1d8{bottom:604.680800pt;}
.yca{bottom:608.862533pt;}
.y20a{bottom:618.012000pt;}
.y1d7{bottom:618.014133pt;}
.y16b{bottom:618.142533pt;}
.y16e{bottom:618.151867pt;}
.y171{bottom:618.161200pt;}
.y174{bottom:618.170533pt;}
.yf8{bottom:618.342533pt;}
.y80{bottom:618.461200pt;}
.y4e{bottom:618.462533pt;}
.yd{bottom:619.030400pt;}
.yc9{bottom:624.862533pt;}
.y209{bottom:631.345333pt;}
.y1d6{bottom:631.347467pt;}
.y16a{bottom:632.805200pt;}
.y16d{bottom:632.814533pt;}
.y170{bottom:632.823867pt;}
.y173{bottom:632.833200pt;}
.yf7{bottom:634.342533pt;}
.y7f{bottom:634.461200pt;}
.y4d{bottom:634.462533pt;}
.yc{bottom:635.030400pt;}
.yc8{bottom:640.862533pt;}
.y208{bottom:644.678667pt;}
.y1d5{bottom:644.680800pt;}
.y169{bottom:645.918533pt;}
.yb4{bottom:647.826533pt;}
.yb0{bottom:648.773200pt;}
.yf6{bottom:650.342533pt;}
.y7e{bottom:650.461200pt;}
.y4c{bottom:650.462533pt;}
.yc7{bottom:656.862533pt;}
.y207{bottom:658.012000pt;}
.y1d4{bottom:658.014133pt;}
.y168{bottom:660.581200pt;}
.ya8{bottom:660.867733pt;}
.yf5{bottom:666.342533pt;}
.y7d{bottom:666.461200pt;}
.y4b{bottom:666.462533pt;}
.y206{bottom:671.345333pt;}
.y1d3{bottom:671.347467pt;}
.yc6{bottom:672.862533pt;}
.y164{bottom:673.685200pt;}
.y167{bottom:673.694533pt;}
.yb{bottom:675.170933pt;}
.y14f{bottom:675.607867pt;}
.yf4{bottom:682.342533pt;}
.y7c{bottom:682.461200pt;}
.y4a{bottom:682.462533pt;}
.y205{bottom:684.678667pt;}
.y1d2{bottom:684.680800pt;}
.ya{bottom:686.238267pt;}
.y163{bottom:688.347867pt;}
.y166{bottom:688.357200pt;}
.yc5{bottom:688.862533pt;}
.y204{bottom:698.012000pt;}
.y1d1{bottom:698.014133pt;}
.yf3{bottom:698.342533pt;}
.y7b{bottom:698.461200pt;}
.y49{bottom:698.462533pt;}
.y162{bottom:703.010533pt;}
.y165{bottom:703.019867pt;}
.yc4{bottom:704.862533pt;}
.y203{bottom:711.345333pt;}
.y1d0{bottom:711.347467pt;}
.yf2{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y7a{bottom:714.461200pt;}
.y48{bottom:714.462533pt;}
.y14a{bottom:714.464533pt;}
.y161{bottom:716.123867pt;}
.y139{bottom:720.584267pt;}
.yc3{bottom:720.862533pt;}
.y202{bottom:724.678667pt;}
.y1cf{bottom:724.680800pt;}
.y160{bottom:729.237200pt;}
.y8{bottom:729.861467pt;}
.y1ad{bottom:730.102533pt;}
.yf1{bottom:730.342533pt;}
.y79{bottom:730.461200pt;}
.y47{bottom:730.462533pt;}
.y149{bottom:730.464533pt;}
.yc2{bottom:736.862533pt;}
.y13d{bottom:738.012000pt;}
.y1ce{bottom:738.014133pt;}
.y15f{bottom:742.350533pt;}
.yf0{bottom:746.342533pt;}
.y78{bottom:746.461200pt;}
.y46{bottom:746.462533pt;}
.y148{bottom:746.464533pt;}
.y123{bottom:748.804667pt;}
.y131{bottom:751.345333pt;}
.y1cd{bottom:751.347467pt;}
.yc1{bottom:752.862533pt;}
.y7{bottom:756.783067pt;}
.y15b{bottom:757.003867pt;}
.y15e{bottom:757.013200pt;}
.y122{bottom:762.138000pt;}
.yef{bottom:762.342533pt;}
.y77{bottom:762.461200pt;}
.y45{bottom:762.462533pt;}
.y147{bottom:762.464533pt;}
.y130{bottom:764.678667pt;}
.y1cc{bottom:764.680800pt;}
.yc0{bottom:768.862533pt;}
.y15a{bottom:771.666533pt;}
.y15d{bottom:771.675867pt;}
.y121{bottom:775.471333pt;}
.y12f{bottom:778.012000pt;}
.y1cb{bottom:778.014133pt;}
.yee{bottom:778.342533pt;}
.y76{bottom:778.461200pt;}
.y44{bottom:778.462533pt;}
.y146{bottom:778.464533pt;}
.ybf{bottom:784.862533pt;}
.y159{bottom:786.329200pt;}
.y15c{bottom:786.338533pt;}
.y120{bottom:788.804667pt;}
.y12e{bottom:791.345333pt;}
.y1ca{bottom:791.347467pt;}
.yed{bottom:794.342533pt;}
.y75{bottom:794.461200pt;}
.y43{bottom:794.462533pt;}
.y145{bottom:794.464533pt;}
.y6{bottom:797.816533pt;}
.ybe{bottom:800.862533pt;}
.y11f{bottom:802.138000pt;}
.y12d{bottom:804.678667pt;}
.y1c9{bottom:804.680800pt;}
.y74{bottom:810.461200pt;}
.y42{bottom:810.462533pt;}
.y144{bottom:810.464533pt;}
.y158{bottom:810.782533pt;}
.y11e{bottom:815.471333pt;}
.ybd{bottom:816.862533pt;}
.y12c{bottom:818.012000pt;}
.y1c8{bottom:818.014133pt;}
.y157{bottom:825.445200pt;}
.yec{bottom:825.982533pt;}
.y73{bottom:826.461200pt;}
.y41{bottom:826.462533pt;}
.y143{bottom:826.464533pt;}
.y11d{bottom:828.804667pt;}
.y5{bottom:830.226133pt;}
.y12b{bottom:831.345333pt;}
.y1c7{bottom:831.347467pt;}
.ybc{bottom:832.862533pt;}
.y72{bottom:842.461200pt;}
.y40{bottom:842.462533pt;}
.y142{bottom:842.464533pt;}
.y12a{bottom:844.678667pt;}
.y1c6{bottom:844.680800pt;}
.y156{bottom:853.129200pt;}
.y129{bottom:858.012000pt;}
.y1c5{bottom:858.014133pt;}
.y11c{bottom:858.235867pt;}
.y71{bottom:858.461200pt;}
.y3f{bottom:858.462533pt;}
.y141{bottom:858.464533pt;}
.y4{bottom:862.635733pt;}
.ybb{bottom:863.832000pt;}
.y155{bottom:870.462533pt;}
.y128{bottom:871.345333pt;}
.y1c4{bottom:871.347467pt;}
.y11b{bottom:874.235867pt;}
.y70{bottom:874.461200pt;}
.y3e{bottom:874.462533pt;}
.y140{bottom:874.464533pt;}
.yba{bottom:877.704000pt;}
.y127{bottom:884.678667pt;}
.y1c3{bottom:884.680800pt;}
.y154{bottom:887.795867pt;}
.y6f{bottom:890.461200pt;}
.y3d{bottom:890.462533pt;}
.y13f{bottom:890.464533pt;}
.yb9{bottom:890.467733pt;}
.y3{bottom:895.045333pt;}
.y126{bottom:898.012000pt;}
.y1c2{bottom:898.014133pt;}
.y153{bottom:905.129200pt;}
.yb8{bottom:906.107733pt;}
.y6e{bottom:906.461200pt;}
.y3c{bottom:906.462533pt;}
.y125{bottom:911.345333pt;}
.y1c1{bottom:911.347467pt;}
.ya7{bottom:921.088267pt;}
.yaa{bottom:921.091733pt;}
.yb2{bottom:921.274533pt;}
.yaf{bottom:921.277200pt;}
.y13e{bottom:922.104533pt;}
.yb7{bottom:922.107733pt;}
.y6d{bottom:922.461200pt;}
.y3b{bottom:922.462533pt;}
.y124{bottom:924.678667pt;}
.y1c0{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.yb3{bottom:1006.586533pt;}
.y13c{bottom:1006.589600pt;}
.ya2{bottom:1006.594400pt;}
.y152{bottom:1006.594533pt;}
.yab{bottom:1006.595733pt;}
.y201{bottom:1006.598667pt;}
.yb6{bottom:1006.599867pt;}
.y39{bottom:1009.886667pt;}
.y38{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.255208pt;}
.h14{height:25.302083pt;}
.h15{height:25.921875pt;}
.h2{height:27.197917pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.h12{height:29.625000pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h13{height:32.757812pt;}
.h10{height:37.437500pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.h9{height:38.880208pt;}
.h11{height:42.117188pt;}
.h5{height:43.678785pt;}
.hd{height:46.796875pt;}
.h16{height:48.236875pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x29{left:71.055067pt;}
.x13{left:75.048267pt;}
.x1e{left:78.047200pt;}
.x15{left:81.216933pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x27{left:88.440933pt;}
.x21{left:89.485200pt;}
.x12{left:90.708800pt;}
.x4{left:94.488133pt;}
.x20{left:96.000000pt;}
.xd{left:98.271467pt;}
.x10{left:106.758800pt;}
.x1b{left:110.173200pt;}
.x3{left:111.501333pt;}
.x6{left:117.170133pt;}
.x11{left:120.105467pt;}
.x5a{left:169.505600pt;}
.x69{left:170.718933pt;}
.x22{left:173.257867pt;}
.x16{left:176.928933pt;}
.xf{left:180.358800pt;}
.x76{left:183.290933pt;}
.x6a{left:185.633600pt;}
.xe{left:187.638800pt;}
.x5{left:189.223467pt;}
.x68{left:190.822933pt;}
.x14{left:193.554933pt;}
.x75{left:194.444267pt;}
.x51{left:221.996267pt;}
.x52{left:228.212267pt;}
.x2f{left:230.741600pt;}
.x3c{left:233.420267pt;}
.x70{left:236.304267pt;}
.x53{left:245.441600pt;}
.x45{left:247.018933pt;}
.x5b{left:250.770933pt;}
.x62{left:254.084267pt;}
.x71{left:260.804267pt;}
.x6b{left:264.556267pt;}
.x61{left:268.980267pt;}
.x2a{left:285.732400pt;}
.x48{left:303.168267pt;}
.x26{left:304.630133pt;}
.x31{left:310.065600pt;}
.x3d{left:315.077600pt;}
.x46{left:326.361600pt;}
.x64{left:328.050933pt;}
.x32{left:329.506933pt;}
.x54{left:330.486933pt;}
.x72{left:331.392267pt;}
.x30{left:332.353600pt;}
.x5c{left:336.861600pt;}
.x6c{left:338.653600pt;}
.x63{left:340.221600pt;}
.x73{left:353.820267pt;}
.x5d{left:355.397600pt;}
.x49{left:388.204267pt;}
.x1f{left:395.337867pt;}
.x3e{left:397.528267pt;}
.x3f{left:398.816267pt;}
.x55{left:402.698933pt;}
.xb{left:404.481333pt;}
.x17{left:406.294400pt;}
.x66{left:411.416267pt;}
.x1c{left:412.722533pt;}
.x2b{left:414.552267pt;}
.x34{left:416.624267pt;}
.x33{left:418.173600pt;}
.x24{left:425.196800pt;}
.x7{left:427.103467pt;}
.x65{left:428.654933pt;}
.x18{left:436.534400pt;}
.x25{left:445.606267pt;}
.x7a{left:447.867600pt;}
.x9{left:457.343467pt;}
.x4a{left:473.240267pt;}
.x5e{left:474.836267pt;}
.x2c{left:476.861600pt;}
.x40{left:478.158933pt;}
.x41{left:480.501600pt;}
.x4b{left:481.798933pt;}
.x47{left:485.289600pt;}
.x8{left:488.663467pt;}
.x67{left:492.560267pt;}
.x36{left:501.660267pt;}
.x35{left:503.209600pt;}
.x42{left:504.982933pt;}
.x2d{left:506.074933pt;}
.x28{left:507.274267pt;}
.x23{left:515.054400pt;}
.x4d{left:560.086933pt;}
.x4c{left:561.393600pt;}
.x38{left:564.146933pt;}
.x4e{left:567.217600pt;}
.x56{left:570.698933pt;}
.x78{left:571.678933pt;}
.x2e{left:572.789600pt;}
.x77{left:574.460267pt;}
.x74{left:586.864267pt;}
.x37{left:588.245600pt;}
.x1a{left:589.770933pt;}
.x43{left:595.992267pt;}
.x2{left:616.324800pt;}
.x60{left:641.828267pt;}
.x79{left:642.966933pt;}
.x58{left:643.872267pt;}
.x6e{left:646.037600pt;}
.x19{left:648.250800pt;}
.x50{left:649.789600pt;}
.x3a{left:650.825600pt;}
.x3b{left:652.197600pt;}
.x4f{left:654.064267pt;}
.x57{left:655.594933pt;}
.x5f{left:658.693600pt;}
.x44{left:661.204267pt;}
.x6f{left:662.361600pt;}
.x1d{left:667.143867pt;}
.x6d{left:668.969600pt;}
.x59{left:670.640267pt;}
.x39{left:673.281600pt;}
}




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