
    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_5a8be2580bbf7c375e847062.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ab85546263427e6811ffdbd3.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_abac3457d986029e3518c4c2.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_44723e490419efda75059f17.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926270;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_42fc9f2824cf51d3593be346.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a0fa18b44b8fada29ae57d94.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718750;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_11dac40e762a1a9e93cad279.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_82612f401ccfe51bef1b450a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_2afa25852615fdb760327b34.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_40f6d86091108142988d7c3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.046387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_08877f4df53a256c7cafd470.woff2')format("woff");}.ffb{font-family:ffb;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;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:21.619200px;}
.ls9e{letter-spacing:-2.640000px;}
.ls18{letter-spacing:-0.780000px;}
.ls3b{letter-spacing:-0.384000px;}
.ls6b{letter-spacing:-0.360000px;}
.ls7e{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls90{letter-spacing:-0.192000px;}
.ls19{letter-spacing:-0.180000px;}
.ls9d{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.120000px;}
.ls51{letter-spacing:-0.096000px;}
.ls61{letter-spacing:-0.060000px;}
.ls52{letter-spacing:-0.048000px;}
.ls17{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004200px;}
.ls49{letter-spacing:0.048000px;}
.ls4b{letter-spacing:0.060000px;}
.ls3c{letter-spacing:0.096000px;}
.lsc{letter-spacing:0.120000px;}
.ls2d{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.180000px;}
.ls68{letter-spacing:0.192000px;}
.ls21{letter-spacing:0.240000px;}
.ls44{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.300000px;}
.ls77{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.384000px;}
.ls24{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.528000px;}
.ls5f{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.576000px;}
.ls55{letter-spacing:0.600000px;}
.ls32{letter-spacing:0.624000px;}
.ls12{letter-spacing:0.660000px;}
.ls31{letter-spacing:0.672000px;}
.lsd{letter-spacing:0.720000px;}
.ls81{letter-spacing:0.768000px;}
.ls2a{letter-spacing:0.780000px;}
.ls2c{letter-spacing:0.816000px;}
.ls5{letter-spacing:0.840000px;}
.ls3d{letter-spacing:0.864000px;}
.ls37{letter-spacing:0.900000px;}
.ls82{letter-spacing:0.912000px;}
.ls10{letter-spacing:0.960000px;}
.ls48{letter-spacing:1.008000px;}
.ls28{letter-spacing:1.020000px;}
.ls47{letter-spacing:1.056000px;}
.ls2{letter-spacing:1.080000px;}
.ls92{letter-spacing:1.104000px;}
.ls36{letter-spacing:1.140000px;}
.ls1f{letter-spacing:1.152000px;}
.ls9{letter-spacing:1.200000px;}
.ls14{letter-spacing:1.260000px;}
.ls96{letter-spacing:1.296000px;}
.ls1a{letter-spacing:1.320000px;}
.ls8a{letter-spacing:1.344000px;}
.ls11{letter-spacing:1.380000px;}
.ls8b{letter-spacing:1.392000px;}
.ls3{letter-spacing:1.440000px;}
.ls38{letter-spacing:1.488000px;}
.ls43{letter-spacing:1.500000px;}
.ls84{letter-spacing:1.536000px;}
.ls50{letter-spacing:1.560000px;}
.ls7d{letter-spacing:1.584000px;}
.lsf{letter-spacing:1.620000px;}
.ls9b{letter-spacing:1.632000px;}
.ls15{letter-spacing:1.680000px;}
.ls94{letter-spacing:1.728000px;}
.lsb{letter-spacing:1.740000px;}
.ls39{letter-spacing:1.776000px;}
.ls25{letter-spacing:1.800000px;}
.ls46{letter-spacing:1.824000px;}
.ls59{letter-spacing:1.860000px;}
.ls78{letter-spacing:1.872000px;}
.ls4e{letter-spacing:1.920000px;}
.ls99{letter-spacing:1.968000px;}
.ls4{letter-spacing:1.980000px;}
.ls16{letter-spacing:2.040000px;}
.ls1b{letter-spacing:2.100000px;}
.ls8f{letter-spacing:2.112000px;}
.ls45{letter-spacing:2.160000px;}
.ls93{letter-spacing:2.208000px;}
.ls2b{letter-spacing:2.220000px;}
.ls7a{letter-spacing:2.256000px;}
.ls3e{letter-spacing:2.280000px;}
.ls13{letter-spacing:2.340000px;}
.ls7f{letter-spacing:2.352000px;}
.ls35{letter-spacing:2.400000px;}
.ls20{letter-spacing:2.448000px;}
.ls5c{letter-spacing:2.460000px;}
.ls9c{letter-spacing:2.496000px;}
.ls6{letter-spacing:2.520000px;}
.ls4a{letter-spacing:2.580000px;}
.lsa4{letter-spacing:2.592000px;}
.ls33{letter-spacing:2.640000px;}
.ls29{letter-spacing:2.700000px;}
.ls98{letter-spacing:2.736000px;}
.ls66{letter-spacing:2.760000px;}
.ls26{letter-spacing:2.820000px;}
.lse{letter-spacing:2.880000px;}
.lsa3{letter-spacing:2.928000px;}
.ls64{letter-spacing:2.940000px;}
.ls9f{letter-spacing:2.976000px;}
.ls71{letter-spacing:3.000000px;}
.ls5b{letter-spacing:3.060000px;}
.ls83{letter-spacing:3.072000px;}
.ls6a{letter-spacing:3.120000px;}
.ls6c{letter-spacing:3.180000px;}
.ls65{letter-spacing:3.240000px;}
.ls4d{letter-spacing:3.300000px;}
.lsa2{letter-spacing:3.312000px;}
.ls63{letter-spacing:3.360000px;}
.ls62{letter-spacing:3.420000px;}
.ls6f{letter-spacing:3.480000px;}
.ls89{letter-spacing:3.504000px;}
.ls4f{letter-spacing:3.540000px;}
.ls60{letter-spacing:3.600000px;}
.ls1c{letter-spacing:3.660000px;}
.ls5e{letter-spacing:3.720000px;}
.ls79{letter-spacing:3.744000px;}
.ls75{letter-spacing:3.780000px;}
.ls23{letter-spacing:3.840000px;}
.ls72{letter-spacing:3.900000px;}
.ls67{letter-spacing:4.020000px;}
.ls85{letter-spacing:4.032000px;}
.ls42{letter-spacing:4.080000px;}
.ls97{letter-spacing:4.128000px;}
.ls8{letter-spacing:4.140000px;}
.ls6d{letter-spacing:4.200000px;}
.ls8c{letter-spacing:4.272000px;}
.ls70{letter-spacing:4.380000px;}
.ls4c{letter-spacing:4.440000px;}
.ls9a{letter-spacing:4.464000px;}
.ls40{letter-spacing:4.500000px;}
.ls80{letter-spacing:4.512000px;}
.ls58{letter-spacing:4.560000px;}
.ls86{letter-spacing:4.608000px;}
.ls5d{letter-spacing:4.680000px;}
.ls41{letter-spacing:4.800000px;}
.ls87{letter-spacing:4.848000px;}
.lsa7{letter-spacing:4.896000px;}
.ls91{letter-spacing:4.944000px;}
.ls7b{letter-spacing:4.980000px;}
.ls8d{letter-spacing:4.992000px;}
.ls54{letter-spacing:5.040000px;}
.ls8e{letter-spacing:5.088000px;}
.lsa6{letter-spacing:5.136000px;}
.ls73{letter-spacing:5.280000px;}
.lsa0{letter-spacing:5.328000px;}
.ls69{letter-spacing:5.340000px;}
.ls74{letter-spacing:5.400000px;}
.lsa1{letter-spacing:5.424000px;}
.ls57{letter-spacing:5.460000px;}
.ls3f{letter-spacing:5.580000px;}
.ls95{letter-spacing:5.712000px;}
.ls34{letter-spacing:6.060000px;}
.ls56{letter-spacing:6.120000px;}
.lsa5{letter-spacing:6.336000px;}
.ls1{letter-spacing:6.360000px;}
.ls53{letter-spacing:6.480000px;}
.ls76{letter-spacing:6.540000px;}
.ls5a{letter-spacing:6.780000px;}
.ls7c{letter-spacing:7.440000px;}
.ls6e{letter-spacing:7.680000px;}
.ls88{letter-spacing:8.832000px;}
.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;}
}
.ws3f{word-spacing:-19.800000px;}
.ws9d{word-spacing:-19.200000px;}
.ws40{word-spacing:-19.080000px;}
.ws6e{word-spacing:-18.660000px;}
.ws45{word-spacing:-18.540000px;}
.ws86{word-spacing:-18.180000px;}
.ws72{word-spacing:-18.060000px;}
.ws15{word-spacing:-17.700000px;}
.ws91{word-spacing:-17.580000px;}
.ws32{word-spacing:-17.520000px;}
.ws70{word-spacing:-17.340000px;}
.ws9b{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.040000px;}
.ws74{word-spacing:-16.860000px;}
.wsb2{word-spacing:-16.848000px;}
.ws10{word-spacing:-16.800000px;}
.ws0{word-spacing:-16.680000px;}
.ws9a{word-spacing:-16.560000px;}
.wsd6{word-spacing:-16.464000px;}
.ws14{word-spacing:-16.440000px;}
.ws6f{word-spacing:-16.320000px;}
.ws57{word-spacing:-16.140000px;}
.ws42{word-spacing:-16.080000px;}
.ws31{word-spacing:-16.020000px;}
.ws3{word-spacing:-15.960000px;}
.ws99{word-spacing:-15.900000px;}
.ws71{word-spacing:-15.780000px;}
.ws2{word-spacing:-15.720000px;}
.ws43{word-spacing:-15.480000px;}
.wsd0{word-spacing:-15.360000px;}
.ws73{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.120000px;}
.ws87{word-spacing:-15.060000px;}
.wsf{word-spacing:-15.000000px;}
.ws9c{word-spacing:-14.940000px;}
.ws33{word-spacing:-14.880000px;}
.ws12{word-spacing:-14.820000px;}
.ws13{word-spacing:-14.760000px;}
.wsd9{word-spacing:-14.736000px;}
.ws75{word-spacing:-14.640000px;}
.wsf1{word-spacing:-14.352000px;}
.wsb9{word-spacing:-14.112000px;}
.wsb3{word-spacing:-13.920000px;}
.wsda{word-spacing:-13.776000px;}
.wsd2{word-spacing:-13.728000px;}
.wsb5{word-spacing:-13.680000px;}
.ws44{word-spacing:-13.500000px;}
.wsee{word-spacing:-13.488000px;}
.wsd4{word-spacing:-13.440000px;}
.wsb4{word-spacing:-13.392000px;}
.ws16{word-spacing:-13.344000px;}
.wsb8{word-spacing:-13.200000px;}
.wsaf{word-spacing:-13.152000px;}
.wscf{word-spacing:-12.960000px;}
.wsd8{word-spacing:-12.912000px;}
.wsf3{word-spacing:-12.864000px;}
.ws41{word-spacing:-12.720000px;}
.wsf2{word-spacing:-12.672000px;}
.wsb1{word-spacing:-12.624000px;}
.wsb0{word-spacing:-12.576000px;}
.wse{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.510000px;}
.wsdc{word-spacing:-12.480000px;}
.wsd7{word-spacing:-12.432000px;}
.wsb7{word-spacing:-12.336000px;}
.wsb6{word-spacing:-12.288000px;}
.wsef{word-spacing:-12.192000px;}
.wsd3{word-spacing:-12.144000px;}
.wsae{word-spacing:-12.096000px;}
.ws3e{word-spacing:-12.000000px;}
.wsf0{word-spacing:-11.952000px;}
.wsdb{word-spacing:-11.856000px;}
.wsd1{word-spacing:-11.808000px;}
.wsdd{word-spacing:-11.760000px;}
.wsa8{word-spacing:-11.712000px;}
.wsa2{word-spacing:-10.272000px;}
.wsd5{word-spacing:-9.360000px;}
.wsa6{word-spacing:-9.120000px;}
.wsa4{word-spacing:-7.824000px;}
.wsa7{word-spacing:-7.776000px;}
.wsa1{word-spacing:-7.584000px;}
.ws48{word-spacing:-5.580000px;}
.wsa5{word-spacing:-5.136000px;}
.wsa3{word-spacing:-4.080000px;}
.ws80{word-spacing:-3.060000px;}
.ws6{word-spacing:-2.886000px;}
.wseb{word-spacing:-2.736000px;}
.wsc2{word-spacing:-2.688000px;}
.ws47{word-spacing:-2.640000px;}
.ws97{word-spacing:-2.580000px;}
.wsf6{word-spacing:-2.352000px;}
.ws7e{word-spacing:-2.340000px;}
.wsa9{word-spacing:-2.280000px;}
.wsca{word-spacing:-2.256000px;}
.ws17{word-spacing:-2.220000px;}
.wse1{word-spacing:-2.160000px;}
.wsce{word-spacing:-2.112000px;}
.ws96{word-spacing:-2.040000px;}
.wsc7{word-spacing:-1.920000px;}
.ws83{word-spacing:-1.860000px;}
.wsec{word-spacing:-1.776000px;}
.wsc3{word-spacing:-1.680000px;}
.wsf4{word-spacing:-1.488000px;}
.wsa0{word-spacing:-1.440000px;}
.wsc9{word-spacing:-1.344000px;}
.ws24{word-spacing:-1.260000px;}
.wsbe{word-spacing:-1.152000px;}
.ws7d{word-spacing:-1.140000px;}
.ws37{word-spacing:-1.080000px;}
.ws36{word-spacing:-1.020000px;}
.ws4d{word-spacing:-0.960000px;}
.wsf8{word-spacing:-0.912000px;}
.ws6d{word-spacing:-0.864000px;}
.wsde{word-spacing:-0.816000px;}
.ws7f{word-spacing:-0.780000px;}
.wsed{word-spacing:-0.720000px;}
.wsf9{word-spacing:-0.624000px;}
.wse7{word-spacing:-0.528000px;}
.ws4f{word-spacing:-0.480000px;}
.wsbb{word-spacing:-0.384000px;}
.ws9f{word-spacing:-0.336000px;}
.ws82{word-spacing:-0.300000px;}
.ws51{word-spacing:-0.288000px;}
.ws65{word-spacing:-0.240000px;}
.ws35{word-spacing:-0.180000px;}
.ws53{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.120000px;}
.ws46{word-spacing:-0.096000px;}
.ws5d{word-spacing:-0.060000px;}
.wse2{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wse4{word-spacing:0.048000px;}
.ws22{word-spacing:0.060000px;}
.ws4b{word-spacing:0.096000px;}
.ws26{word-spacing:0.120000px;}
.wse3{word-spacing:0.144000px;}
.ws2a{word-spacing:0.180000px;}
.wsbf{word-spacing:0.192000px;}
.ws5e{word-spacing:0.240000px;}
.ws38{word-spacing:0.288000px;}
.ws8b{word-spacing:0.300000px;}
.ws34{word-spacing:0.360000px;}
.ws3c{word-spacing:0.384000px;}
.ws1e{word-spacing:0.432000px;}
.ws5b{word-spacing:0.480000px;}
.wse6{word-spacing:0.528000px;}
.ws7c{word-spacing:0.540000px;}
.ws7a{word-spacing:0.600000px;}
.ws2d{word-spacing:0.624000px;}
.wse8{word-spacing:0.672000px;}
.ws39{word-spacing:0.720000px;}
.ws8a{word-spacing:0.780000px;}
.ws85{word-spacing:0.840000px;}
.ws1f{word-spacing:0.960000px;}
.ws6c{word-spacing:1.008000px;}
.ws25{word-spacing:1.020000px;}
.wsdf{word-spacing:1.056000px;}
.ws19{word-spacing:1.080000px;}
.wsfb{word-spacing:1.104000px;}
.ws93{word-spacing:1.140000px;}
.wsbc{word-spacing:1.152000px;}
.ws59{word-spacing:1.200000px;}
.ws3d{word-spacing:1.296000px;}
.ws63{word-spacing:1.320000px;}
.wsc6{word-spacing:1.344000px;}
.ws76{word-spacing:1.380000px;}
.wscc{word-spacing:1.392000px;}
.ws29{word-spacing:1.440000px;}
.ws78{word-spacing:1.500000px;}
.ws4c{word-spacing:1.560000px;}
.wscd{word-spacing:1.584000px;}
.ws58{word-spacing:1.620000px;}
.ws2f{word-spacing:1.632000px;}
.ws8e{word-spacing:1.680000px;}
.ws2c{word-spacing:1.728000px;}
.ws52{word-spacing:1.776000px;}
.wsd{word-spacing:1.800000px;}
.wsf5{word-spacing:1.824000px;}
.ws95{word-spacing:1.860000px;}
.wsc8{word-spacing:1.872000px;}
.ws5c{word-spacing:1.920000px;}
.ws54{word-spacing:1.968000px;}
.wsa{word-spacing:1.980000px;}
.wse5{word-spacing:2.016000px;}
.ws62{word-spacing:2.040000px;}
.wsc4{word-spacing:2.064000px;}
.ws8c{word-spacing:2.100000px;}
.ws4a{word-spacing:2.112000px;}
.wse0{word-spacing:2.208000px;}
.ws84{word-spacing:2.280000px;}
.ws94{word-spacing:2.340000px;}
.wsc0{word-spacing:2.352000px;}
.ws1a{word-spacing:2.400000px;}
.ws55{word-spacing:2.448000px;}
.ws5a{word-spacing:2.460000px;}
.ws68{word-spacing:2.580000px;}
.wsba{word-spacing:2.592000px;}
.ws2b{word-spacing:2.640000px;}
.wsf7{word-spacing:2.784000px;}
.ws8f{word-spacing:2.820000px;}
.ws49{word-spacing:2.880000px;}
.ws3a{word-spacing:2.928000px;}
.ws79{word-spacing:3.000000px;}
.wsab{word-spacing:3.060000px;}
.wse9{word-spacing:3.072000px;}
.ws89{word-spacing:3.120000px;}
.ws2e{word-spacing:3.168000px;}
.ws6b{word-spacing:3.216000px;}
.ws8d{word-spacing:3.240000px;}
.ws56{word-spacing:3.300000px;}
.wsc1{word-spacing:3.312000px;}
.ws88{word-spacing:3.360000px;}
.wsc{word-spacing:3.420000px;}
.ws3b{word-spacing:3.504000px;}
.ws64{word-spacing:3.540000px;}
.wsbd{word-spacing:3.552000px;}
.ws60{word-spacing:3.600000px;}
.wsea{word-spacing:3.648000px;}
.ws1b{word-spacing:3.660000px;}
.ws9{word-spacing:3.780000px;}
.ws50{word-spacing:3.792000px;}
.ws23{word-spacing:3.840000px;}
.ws30{word-spacing:3.888000px;}
.ws1d{word-spacing:3.936000px;}
.ws1c{word-spacing:3.984000px;}
.ws66{word-spacing:4.020000px;}
.wsb{word-spacing:4.080000px;}
.ws6a{word-spacing:4.128000px;}
.ws5f{word-spacing:4.140000px;}
.ws18{word-spacing:4.200000px;}
.ws90{word-spacing:4.260000px;}
.ws28{word-spacing:4.320000px;}
.ws61{word-spacing:4.380000px;}
.ws4e{word-spacing:4.416000px;}
.ws81{word-spacing:4.440000px;}
.wsaa{word-spacing:4.500000px;}
.ws20{word-spacing:4.512000px;}
.ws77{word-spacing:4.560000px;}
.wsfa{word-spacing:4.608000px;}
.ws69{word-spacing:4.620000px;}
.ws27{word-spacing:4.680000px;}
.ws92{word-spacing:4.800000px;}
.ws67{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws7{word-spacing:4.980000px;}
.wscb{word-spacing:5.088000px;}
.wsad{word-spacing:5.460000px;}
.wsac{word-spacing:5.520000px;}
.ws9e{word-spacing:5.820000px;}
.ws7b{word-spacing:6.240000px;}
.ws98{word-spacing:7.560000px;}
.wsc5{word-spacing:8.832000px;}
._9{margin-left:-2898.096000px;}
._b{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._e{margin-left:-7.860000px;}
._5{margin-left:-6.540000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.305000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.140000px;}
._6{width:1.020000px;}
._a{width:2.040000px;}
._7{width:3.096000px;}
._c{width:4.128000px;}
._8{width:5.160000px;}
._d{width:6.360000px;}
._f{width:7.920000px;}
._13{width:9.607200px;}
._12{width:43.824000px;}
._16{width:48.705000px;}
._14{width:50.256000px;}
._10{width:55.824000px;}
._17{width:57.654000px;}
._15{width:58.656000px;}
._11{width:63.840000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.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;}
.fsa{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;}
.y2b{bottom:47.777250px;}
.y11e{bottom:79.253850px;}
.ye7{bottom:82.947000px;}
.y14c{bottom:82.995750px;}
.yb3{bottom:83.669250px;}
.y148{bottom:83.770350px;}
.y19c{bottom:83.777100px;}
.y19f{bottom:84.176850px;}
.y1cb{bottom:86.547000px;}
.y5a{bottom:86.770350px;}
.y13{bottom:88.026750px;}
.y1e9{bottom:88.980150px;}
.y172{bottom:91.112100px;}
.y8a{bottom:93.337350px;}
.y219{bottom:95.263500px;}
.y11d{bottom:97.253850px;}
.ye6{bottom:97.947000px;}
.y14b{bottom:98.739750px;}
.yb2{bottom:99.413250px;}
.y19e{bottom:99.920850px;}
.y1ca{bottom:101.547000px;}
.y147{bottom:101.770350px;}
.y19b{bottom:101.777100px;}
.y12{bottom:103.023000px;}
.y1e8{bottom:103.980150px;}
.y59{bottom:104.770350px;}
.y171{bottom:109.112100px;}
.y218{bottom:110.263500px;}
.ye5{bottom:112.947000px;}
.y14a{bottom:114.483750px;}
.y11c{bottom:115.253850px;}
.y19d{bottom:115.664850px;}
.y1c9{bottom:116.547000px;}
.y146{bottom:119.770350px;}
.y19a{bottom:119.777100px;}
.y58{bottom:122.770350px;}
.y217{bottom:125.263500px;}
.y170{bottom:127.112100px;}
.ye4{bottom:127.947000px;}
.y89{bottom:128.830500px;}
.y149{bottom:130.227750px;}
.y1c8{bottom:131.547000px;}
.y11b{bottom:133.253850px;}
.y1e7{bottom:137.097600px;}
.y145{bottom:137.770350px;}
.y199{bottom:137.777100px;}
.y216{bottom:140.263500px;}
.y57{bottom:140.770350px;}
.ye3{bottom:142.947000px;}
.y88{bottom:143.830500px;}
.y16f{bottom:145.112100px;}
.y1c7{bottom:146.547000px;}
.y11a{bottom:151.253850px;}
.y215{bottom:155.263500px;}
.y144{bottom:155.770350px;}
.y198{bottom:155.777100px;}
.ye2{bottom:157.947000px;}
.y56{bottom:158.770350px;}
.y87{bottom:158.830500px;}
.y1c6{bottom:161.547000px;}
.y16e{bottom:163.112100px;}
.y119{bottom:169.253850px;}
.y214{bottom:170.263500px;}
.ye1{bottom:172.947000px;}
.y143{bottom:173.770350px;}
.y197{bottom:173.777100px;}
.y86{bottom:173.830500px;}
.y1c5{bottom:176.547000px;}
.y55{bottom:176.770350px;}
.y26{bottom:180.221400px;}
.y16d{bottom:181.112100px;}
.y213{bottom:185.263500px;}
.y118{bottom:187.253850px;}
.ye0{bottom:187.947000px;}
.y85{bottom:188.830500px;}
.y1c4{bottom:191.547000px;}
.y1e6{bottom:191.637600px;}
.y142{bottom:191.770350px;}
.y196{bottom:191.777100px;}
.y54{bottom:194.770350px;}
.y25{bottom:198.221400px;}
.y16c{bottom:199.112100px;}
.y212{bottom:200.263500px;}
.ydf{bottom:202.947000px;}
.y1c3{bottom:206.547000px;}
.y1e5{bottom:209.232600px;}
.y141{bottom:209.770350px;}
.y195{bottom:209.777100px;}
.y53{bottom:212.770350px;}
.y211{bottom:215.263500px;}
.y24{bottom:216.221400px;}
.y16b{bottom:217.112100px;}
.yde{bottom:217.947000px;}
.y1c2{bottom:221.547000px;}
.y84{bottom:221.948850px;}
.y117{bottom:222.094500px;}
.y140{bottom:227.770350px;}
.y194{bottom:227.777100px;}
.y210{bottom:230.263500px;}
.y52{bottom:230.770350px;}
.ydd{bottom:232.947000px;}
.y23{bottom:234.221400px;}
.y16a{bottom:235.112100px;}
.y1c1{bottom:236.547000px;}
.y116{bottom:237.700500px;}
.y1e4{bottom:245.232600px;}
.y20f{bottom:245.263500px;}
.y13f{bottom:245.770350px;}
.y193{bottom:245.777100px;}
.y51{bottom:248.770350px;}
.y1c0{bottom:251.547000px;}
.y115{bottom:252.070350px;}
.y22{bottom:252.221400px;}
.y169{bottom:253.112100px;}
.y83{bottom:257.798850px;}
.y20e{bottom:260.263500px;}
.y13e{bottom:263.770350px;}
.y192{bottom:263.777100px;}
.ydc{bottom:264.062100px;}
.y1bf{bottom:266.547000px;}
.y50{bottom:266.770350px;}
.y114{bottom:269.665350px;}
.y21{bottom:270.221400px;}
.y168{bottom:271.112100px;}
.y20d{bottom:275.263500px;}
.y82{bottom:275.798850px;}
.y1be{bottom:281.547000px;}
.y1e3{bottom:281.637600px;}
.ydb{bottom:281.657100px;}
.y13d{bottom:281.770350px;}
.y191{bottom:281.777100px;}
.y4f{bottom:284.770350px;}
.y20{bottom:288.221400px;}
.y167{bottom:289.112100px;}
.y20c{bottom:290.263500px;}
.y1bd{bottom:296.547000px;}
.y1e2{bottom:299.232600px;}
.y13c{bottom:299.770350px;}
.y190{bottom:299.777100px;}
.y20b{bottom:305.263500px;}
.y113{bottom:305.515350px;}
.y1f{bottom:306.221400px;}
.y166{bottom:307.112100px;}
.y1bc{bottom:311.547000px;}
.y81{bottom:312.053850px;}
.y13b{bottom:317.770350px;}
.y18f{bottom:317.777100px;}
.yda{bottom:317.912100px;}
.y4e{bottom:320.263500px;}
.y1e{bottom:324.221400px;}
.y165{bottom:325.112100px;}
.y1bb{bottom:326.547000px;}
.y80{bottom:330.053850px;}
.y4d{bottom:335.263500px;}
.y1e1{bottom:335.637600px;}
.y13a{bottom:335.770350px;}
.y18e{bottom:335.777100px;}
.yd9{bottom:335.912100px;}
.y1ba{bottom:341.547000px;}
.y112{bottom:341.770350px;}
.y1d{bottom:342.221400px;}
.y164{bottom:343.112100px;}
.y7f{bottom:348.053850px;}
.y4c{bottom:350.263500px;}
.y1e0{bottom:353.232600px;}
.y139{bottom:353.770350px;}
.y18d{bottom:353.777100px;}
.yd8{bottom:353.912100px;}
.y111{bottom:359.770350px;}
.y1c{bottom:360.221400px;}
.y163{bottom:361.112100px;}
.y4b{bottom:365.263500px;}
.y7e{bottom:366.053850px;}
.y138{bottom:371.770350px;}
.y18c{bottom:371.777100px;}
.yd7{bottom:371.912100px;}
.y1b9{bottom:374.657100px;}
.y110{bottom:377.770350px;}
.y1b{bottom:378.221400px;}
.y162{bottom:379.112100px;}
.y4a{bottom:380.263500px;}
.y7d{bottom:384.053850px;}
.y1df{bottom:389.637600px;}
.y137{bottom:389.770350px;}
.y18b{bottom:389.777100px;}
.yd6{bottom:389.912100px;}
.y49{bottom:395.263500px;}
.y10f{bottom:395.770350px;}
.y1a{bottom:396.221400px;}
.y161{bottom:397.112100px;}
.y7c{bottom:402.053850px;}
.y1de{bottom:407.232600px;}
.y136{bottom:407.770350px;}
.y18a{bottom:407.777100px;}
.yd5{bottom:407.912100px;}
.y48{bottom:410.263500px;}
.y1b8{bottom:410.912100px;}
.y10e{bottom:413.770350px;}
.y19{bottom:414.221400px;}
.y160{bottom:415.112100px;}
.y7b{bottom:420.053850px;}
.y47{bottom:425.263500px;}
.y135{bottom:425.770350px;}
.y189{bottom:425.777100px;}
.yd4{bottom:425.912100px;}
.y1b7{bottom:428.912100px;}
.y10d{bottom:431.770350px;}
.y18{bottom:432.221400px;}
.y15f{bottom:433.112100px;}
.y7a{bottom:438.053850px;}
.y46{bottom:440.263500px;}
.y1dd{bottom:443.637600px;}
.y134{bottom:443.770350px;}
.y188{bottom:443.777100px;}
.yd3{bottom:443.912100px;}
.y1b6{bottom:446.912100px;}
.y10c{bottom:449.770350px;}
.y17{bottom:450.221400px;}
.y15e{bottom:451.112100px;}
.y45{bottom:455.263500px;}
.y79{bottom:456.053850px;}
.y1dc{bottom:461.637600px;}
.y133{bottom:461.770350px;}
.y187{bottom:461.777100px;}
.yd2{bottom:461.912100px;}
.y1b5{bottom:464.912100px;}
.y10b{bottom:467.770350px;}
.y16{bottom:468.221400px;}
.y15d{bottom:469.112100px;}
.y44{bottom:470.263500px;}
.y78{bottom:474.053850px;}
.y1db{bottom:479.637600px;}
.y132{bottom:479.770350px;}
.y186{bottom:479.777100px;}
.yd1{bottom:479.912100px;}
.y1b4{bottom:482.912100px;}
.y43{bottom:485.263500px;}
.y10a{bottom:485.770350px;}
.y15{bottom:486.221400px;}
.y15c{bottom:487.112100px;}
.y77{bottom:492.053850px;}
.y1da{bottom:497.637600px;}
.y131{bottom:497.770350px;}
.y185{bottom:497.777100px;}
.yd0{bottom:497.912100px;}
.y42{bottom:500.263500px;}
.y1b3{bottom:500.912100px;}
.y109{bottom:503.770350px;}
.y28{bottom:504.221400px;}
.y15b{bottom:505.112100px;}
.y76{bottom:510.053850px;}
.y20a{bottom:515.263500px;}
.y1d9{bottom:515.637600px;}
.y130{bottom:515.770350px;}
.y184{bottom:515.777100px;}
.ycf{bottom:515.912100px;}
.y1b2{bottom:518.912100px;}
.y108{bottom:521.770350px;}
.y14{bottom:521.816400px;}
.y27{bottom:522.221400px;}
.y15a{bottom:523.112100px;}
.y75{bottom:528.053850px;}
.y209{bottom:530.263500px;}
.y41{bottom:533.382600px;}
.y1d8{bottom:533.637600px;}
.y12f{bottom:533.770350px;}
.y183{bottom:533.777100px;}
.yce{bottom:533.912100px;}
.y1b1{bottom:536.912100px;}
.y107{bottom:539.770350px;}
.y159{bottom:541.112100px;}
.y208{bottom:545.263500px;}
.y74{bottom:546.053850px;}
.y1d7{bottom:551.637600px;}
.y12e{bottom:551.770350px;}
.y182{bottom:551.777100px;}
.ycd{bottom:551.912100px;}
.y1b0{bottom:554.912100px;}
.y106{bottom:557.770350px;}
.y158{bottom:559.112100px;}
.y207{bottom:560.263500px;}
.y73{bottom:564.053850px;}
.y40{bottom:569.232600px;}
.y1d6{bottom:569.637600px;}
.y12d{bottom:569.770350px;}
.y181{bottom:569.777100px;}
.y1af{bottom:572.912100px;}
.y206{bottom:575.263500px;}
.y105{bottom:575.770350px;}
.y157{bottom:577.112100px;}
.y3f{bottom:587.232600px;}
.ycc{bottom:587.405250px;}
.y12c{bottom:587.770350px;}
.y180{bottom:587.777100px;}
.y205{bottom:590.263500px;}
.y1ae{bottom:590.912100px;}
.y104{bottom:593.770350px;}
.y156{bottom:595.112100px;}
.y72{bottom:599.547000px;}
.ycb{bottom:602.405250px;}
.y3e{bottom:605.232600px;}
.y204{bottom:605.263500px;}
.y12b{bottom:605.770350px;}
.y17f{bottom:605.777100px;}
.y1ad{bottom:608.912100px;}
.y103{bottom:611.770350px;}
.y155{bottom:613.112100px;}
.y71{bottom:614.547000px;}
.y11{bottom:615.064200px;}
.yca{bottom:617.405250px;}
.y203{bottom:620.263500px;}
.yb1{bottom:620.405250px;}
.y1d5{bottom:623.637600px;}
.y12a{bottom:623.770350px;}
.y17e{bottom:623.777100px;}
.y99{bottom:626.312100px;}
.y1ac{bottom:626.912100px;}
.y70{bottom:629.547000px;}
.y102{bottom:629.770350px;}
.y154{bottom:631.112100px;}
.yc9{bottom:632.405250px;}
.y202{bottom:635.263500px;}
.yb0{bottom:635.405250px;}
.y3d{bottom:641.097600px;}
.y1d4{bottom:641.637600px;}
.y129{bottom:641.770350px;}
.y17d{bottom:641.777100px;}
.y10{bottom:642.409200px;}
.y98{bottom:644.312100px;}
.y6f{bottom:644.547000px;}
.y1ab{bottom:644.912100px;}
.yc8{bottom:647.405250px;}
.y153{bottom:649.112100px;}
.y201{bottom:650.263500px;}
.yaf{bottom:650.405250px;}
.y6e{bottom:659.547000px;}
.y1d3{bottom:659.637600px;}
.y128{bottom:659.770350px;}
.y17c{bottom:659.777100px;}
.yf{bottom:660.409200px;}
.y97{bottom:662.312100px;}
.yc7{bottom:662.405250px;}
.y1aa{bottom:662.912100px;}
.y101{bottom:665.259000px;}
.y200{bottom:665.263500px;}
.yae{bottom:665.405250px;}
.y152{bottom:667.112100px;}
.y6d{bottom:674.547000px;}
.yc6{bottom:677.405250px;}
.y1d2{bottom:677.637600px;}
.y127{bottom:677.770350px;}
.y17b{bottom:677.777100px;}
.ye{bottom:678.409200px;}
.y100{bottom:680.259000px;}
.y1ff{bottom:680.263500px;}
.y96{bottom:680.312100px;}
.yad{bottom:680.405250px;}
.y1a9{bottom:680.912100px;}
.y151{bottom:685.112100px;}
.y6c{bottom:689.547000px;}
.yc5{bottom:692.405250px;}
.y3c{bottom:695.232600px;}
.yff{bottom:695.259000px;}
.y1fe{bottom:695.263500px;}
.yac{bottom:695.405250px;}
.y1d1{bottom:695.637600px;}
.y126{bottom:695.770350px;}
.y17a{bottom:695.777100px;}
.yd{bottom:696.409200px;}
.y95{bottom:698.312100px;}
.y1a8{bottom:698.912100px;}
.y6b{bottom:704.547000px;}
.yfe{bottom:710.259000px;}
.y1fd{bottom:710.263500px;}
.yab{bottom:710.405250px;}
.y1d0{bottom:713.637600px;}
.y125{bottom:713.770350px;}
.y179{bottom:713.777100px;}
.yc{bottom:714.409200px;}
.y94{bottom:716.312100px;}
.y1a7{bottom:716.912100px;}
.y6a{bottom:719.547000px;}
.y150{bottom:719.952750px;}
.yfd{bottom:725.259000px;}
.y1fc{bottom:725.263500px;}
.yaa{bottom:725.405250px;}
.yc4{bottom:725.515350px;}
.y1cf{bottom:731.637600px;}
.y124{bottom:731.770350px;}
.y178{bottom:731.777100px;}
.y69{bottom:734.547000px;}
.y14f{bottom:735.558750px;}
.yfc{bottom:740.259000px;}
.y1fb{bottom:740.263500px;}
.ya9{bottom:740.405250px;}
.y1ce{bottom:749.637600px;}
.y123{bottom:749.770350px;}
.y3b{bottom:749.772600px;}
.y177{bottom:749.777100px;}
.y14e{bottom:749.920350px;}
.y93{bottom:751.805250px;}
.y1a6{bottom:752.405250px;}
.yfb{bottom:755.259000px;}
.y1fa{bottom:755.263500px;}
.ya8{bottom:755.405250px;}
.yb{bottom:759.568500px;}
.yc3{bottom:761.770350px;}
.y92{bottom:766.805250px;}
.y1a5{bottom:767.405250px;}
.y14d{bottom:767.515350px;}
.y1cd{bottom:767.637600px;}
.y68{bottom:767.665350px;}
.y122{bottom:767.770350px;}
.y3a{bottom:767.772600px;}
.y176{bottom:767.777100px;}
.yfa{bottom:770.259000px;}
.y1f9{bottom:770.263500px;}
.ya7{bottom:770.405250px;}
.ya{bottom:772.018500px;}
.yc2{bottom:779.770350px;}
.y91{bottom:781.805250px;}
.y1a4{bottom:782.405250px;}
.yf9{bottom:785.259000px;}
.y1f8{bottom:785.263500px;}
.y121{bottom:785.770350px;}
.y39{bottom:785.772600px;}
.y175{bottom:785.777100px;}
.y90{bottom:796.805250px;}
.y1a3{bottom:797.405250px;}
.yc1{bottom:797.770350px;}
.yf8{bottom:800.259000px;}
.y1f7{bottom:800.263500px;}
.y1cc{bottom:803.232600px;}
.y67{bottom:803.515350px;}
.ya6{bottom:803.522100px;}
.y120{bottom:803.770350px;}
.y38{bottom:803.772600px;}
.y174{bottom:803.777100px;}
.y9{bottom:807.594150px;}
.y8f{bottom:811.805250px;}
.y1a2{bottom:812.405250px;}
.yf7{bottom:815.259000px;}
.y1f6{bottom:815.263500px;}
.yc0{bottom:815.770350px;}
.y8{bottom:821.094150px;}
.y11f{bottom:821.770350px;}
.y37{bottom:821.772600px;}
.y173{bottom:821.777100px;}
.y8e{bottom:826.805250px;}
.y1a1{bottom:827.405250px;}
.yf6{bottom:830.259000px;}
.y1f5{bottom:830.263500px;}
.ybf{bottom:833.770350px;}
.y66{bottom:839.770350px;}
.y36{bottom:839.772600px;}
.ya5{bottom:839.777100px;}
.y1a0{bottom:842.405250px;}
.yf5{bottom:845.259000px;}
.y1f4{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.ybe{bottom:851.770350px;}
.y65{bottom:857.770350px;}
.y35{bottom:857.772600px;}
.ya4{bottom:857.777100px;}
.y8d{bottom:857.920350px;}
.yf4{bottom:860.259000px;}
.y1f3{bottom:860.263500px;}
.ybd{bottom:869.770350px;}
.yf3{bottom:875.259000px;}
.y1f2{bottom:875.263500px;}
.y8c{bottom:875.515350px;}
.y64{bottom:875.770350px;}
.y34{bottom:875.772600px;}
.ya3{bottom:875.777100px;}
.ybc{bottom:887.770350px;}
.yf2{bottom:890.259000px;}
.y1f1{bottom:890.263500px;}
.y63{bottom:893.770350px;}
.y33{bottom:893.772600px;}
.ya2{bottom:893.777100px;}
.y6{bottom:897.543600px;}
.yf1{bottom:905.259000px;}
.y1f0{bottom:905.263500px;}
.ybb{bottom:905.770350px;}
.y62{bottom:911.770350px;}
.y32{bottom:911.772600px;}
.ya1{bottom:911.777100px;}
.yf0{bottom:920.259000px;}
.y1ef{bottom:920.263500px;}
.yba{bottom:923.770350px;}
.y61{bottom:929.770350px;}
.y31{bottom:929.772600px;}
.ya0{bottom:929.777100px;}
.y5{bottom:934.004400px;}
.yef{bottom:935.259000px;}
.y1ee{bottom:935.263500px;}
.yb9{bottom:941.770350px;}
.y60{bottom:947.770350px;}
.y30{bottom:947.772600px;}
.y9f{bottom:947.777100px;}
.yee{bottom:950.259000px;}
.y1ed{bottom:950.263500px;}
.yb8{bottom:959.770350px;}
.yed{bottom:965.259000px;}
.y1ec{bottom:965.263500px;}
.y5f{bottom:965.770350px;}
.y2f{bottom:965.772600px;}
.y9e{bottom:965.777100px;}
.y4{bottom:970.465200px;}
.yec{bottom:980.259000px;}
.y1eb{bottom:980.263500px;}
.y5e{bottom:983.770350px;}
.y2e{bottom:983.772600px;}
.y9d{bottom:983.777100px;}
.yeb{bottom:995.259000px;}
.yb7{bottom:995.263500px;}
.y5d{bottom:1001.770350px;}
.y2d{bottom:1001.772600px;}
.y9c{bottom:1001.777100px;}
.y3{bottom:1006.926000px;}
.yea{bottom:1010.259000px;}
.yb6{bottom:1010.263500px;}
.y5c{bottom:1019.770350px;}
.y9b{bottom:1019.777100px;}
.ye9{bottom:1025.259000px;}
.yb5{bottom:1025.263500px;}
.y2c{bottom:1037.367600px;}
.y5b{bottom:1037.770350px;}
.y9a{bottom:1037.777100px;}
.ye8{bottom:1040.259000px;}
.yb4{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1ea{bottom:1132.416150px;}
.y8b{bottom:1132.418700px;}
.y21a{bottom:1132.423500px;}
.y2a{bottom:1136.089500px;}
.y29{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h7{height:28.393066px;}
.h2{height:30.577148px;}
.ha{height:32.761230px;}
.hb{height:32.805176px;}
.he{height:34.945312px;}
.hd{height:34.992188px;}
.h10{height:39.867188px;}
.hf{height:42.023438px;}
.h9{height:43.681641px;}
.h8{height:43.740234px;}
.h12{height:47.276367px;}
.h5{height:49.138634px;}
.h11{height:49.833984px;}
.hc{height:52.529297px;}
.h13{height:54.149297px;}
.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;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x13{left:102.047400px;}
.x3{left:106.299300px;}
.xc{left:110.552250px;}
.x10{left:115.082250px;}
.x25{left:116.356200px;}
.x30{left:118.825350px;}
.x31{left:120.756000px;}
.x11{left:122.177250px;}
.x1f{left:123.307350px;}
.x12{left:127.607250px;}
.x5{left:131.816400px;}
.x24{left:133.021200px;}
.xb{left:144.722250px;}
.xf{left:157.592250px;}
.x1d{left:163.450350px;}
.x2b{left:164.695350px;}
.xe{left:202.907250px;}
.xd{left:211.097250px;}
.x4{left:212.876400px;}
.x26{left:218.071200px;}
.x2d{left:219.306900px;}
.x1e{left:238.915350px;}
.x2c{left:244.315350px;}
.x9{left:455.041500px;}
.x14{left:457.096200px;}
.x29{left:472.688100px;}
.x20{left:478.341000px;}
.x7{left:480.476400px;}
.x17{left:482.598600px;}
.x18{left:491.102400px;}
.x16{left:492.721200px;}
.x15{left:499.366200px;}
.x19{left:503.031600px;}
.x21{left:512.361000px;}
.x6{left:514.496400px;}
.x1a{left:525.801600px;}
.x27{left:542.332950px;}
.x22{left:543.576000px;}
.x2a{left:581.471100px;}
.x33{left:591.958650px;}
.x34{left:596.098650px;}
.x32{left:600.688650px;}
.x28{left:603.607950px;}
.x1c{left:663.492300px;}
.x2{left:693.365400px;}
.x2e{left:721.717650px;}
.x1b{left:728.391600px;}
.x2f{left:743.868150px;}
.x23{left:749.651400px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:19.217067pt;}
.ls9e{letter-spacing:-2.346667pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls3b{letter-spacing:-0.341333pt;}
.ls6b{letter-spacing:-0.320000pt;}
.ls7e{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls90{letter-spacing:-0.170667pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls9d{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.106667pt;}
.ls51{letter-spacing:-0.085333pt;}
.ls61{letter-spacing:-0.053333pt;}
.ls52{letter-spacing:-0.042667pt;}
.ls17{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003733pt;}
.ls49{letter-spacing:0.042667pt;}
.ls4b{letter-spacing:0.053333pt;}
.ls3c{letter-spacing:0.085333pt;}
.lsc{letter-spacing:0.106667pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.160000pt;}
.ls68{letter-spacing:0.170667pt;}
.ls21{letter-spacing:0.213333pt;}
.ls44{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.266667pt;}
.ls77{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.341333pt;}
.ls24{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.469333pt;}
.ls5f{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls55{letter-spacing:0.533333pt;}
.ls32{letter-spacing:0.554667pt;}
.ls12{letter-spacing:0.586667pt;}
.ls31{letter-spacing:0.597333pt;}
.lsd{letter-spacing:0.640000pt;}
.ls81{letter-spacing:0.682667pt;}
.ls2a{letter-spacing:0.693333pt;}
.ls2c{letter-spacing:0.725333pt;}
.ls5{letter-spacing:0.746667pt;}
.ls3d{letter-spacing:0.768000pt;}
.ls37{letter-spacing:0.800000pt;}
.ls82{letter-spacing:0.810667pt;}
.ls10{letter-spacing:0.853333pt;}
.ls48{letter-spacing:0.896000pt;}
.ls28{letter-spacing:0.906667pt;}
.ls47{letter-spacing:0.938667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls92{letter-spacing:0.981333pt;}
.ls36{letter-spacing:1.013333pt;}
.ls1f{letter-spacing:1.024000pt;}
.ls9{letter-spacing:1.066667pt;}
.ls14{letter-spacing:1.120000pt;}
.ls96{letter-spacing:1.152000pt;}
.ls1a{letter-spacing:1.173333pt;}
.ls8a{letter-spacing:1.194667pt;}
.ls11{letter-spacing:1.226667pt;}
.ls8b{letter-spacing:1.237333pt;}
.ls3{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.322667pt;}
.ls43{letter-spacing:1.333333pt;}
.ls84{letter-spacing:1.365333pt;}
.ls50{letter-spacing:1.386667pt;}
.ls7d{letter-spacing:1.408000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls9b{letter-spacing:1.450667pt;}
.ls15{letter-spacing:1.493333pt;}
.ls94{letter-spacing:1.536000pt;}
.lsb{letter-spacing:1.546667pt;}
.ls39{letter-spacing:1.578667pt;}
.ls25{letter-spacing:1.600000pt;}
.ls46{letter-spacing:1.621333pt;}
.ls59{letter-spacing:1.653333pt;}
.ls78{letter-spacing:1.664000pt;}
.ls4e{letter-spacing:1.706667pt;}
.ls99{letter-spacing:1.749333pt;}
.ls4{letter-spacing:1.760000pt;}
.ls16{letter-spacing:1.813333pt;}
.ls1b{letter-spacing:1.866667pt;}
.ls8f{letter-spacing:1.877333pt;}
.ls45{letter-spacing:1.920000pt;}
.ls93{letter-spacing:1.962667pt;}
.ls2b{letter-spacing:1.973333pt;}
.ls7a{letter-spacing:2.005333pt;}
.ls3e{letter-spacing:2.026667pt;}
.ls13{letter-spacing:2.080000pt;}
.ls7f{letter-spacing:2.090667pt;}
.ls35{letter-spacing:2.133333pt;}
.ls20{letter-spacing:2.176000pt;}
.ls5c{letter-spacing:2.186667pt;}
.ls9c{letter-spacing:2.218667pt;}
.ls6{letter-spacing:2.240000pt;}
.ls4a{letter-spacing:2.293333pt;}
.lsa4{letter-spacing:2.304000pt;}
.ls33{letter-spacing:2.346667pt;}
.ls29{letter-spacing:2.400000pt;}
.ls98{letter-spacing:2.432000pt;}
.ls66{letter-spacing:2.453333pt;}
.ls26{letter-spacing:2.506667pt;}
.lse{letter-spacing:2.560000pt;}
.lsa3{letter-spacing:2.602667pt;}
.ls64{letter-spacing:2.613333pt;}
.ls9f{letter-spacing:2.645333pt;}
.ls71{letter-spacing:2.666667pt;}
.ls5b{letter-spacing:2.720000pt;}
.ls83{letter-spacing:2.730667pt;}
.ls6a{letter-spacing:2.773333pt;}
.ls6c{letter-spacing:2.826667pt;}
.ls65{letter-spacing:2.880000pt;}
.ls4d{letter-spacing:2.933333pt;}
.lsa2{letter-spacing:2.944000pt;}
.ls63{letter-spacing:2.986667pt;}
.ls62{letter-spacing:3.040000pt;}
.ls6f{letter-spacing:3.093333pt;}
.ls89{letter-spacing:3.114667pt;}
.ls4f{letter-spacing:3.146667pt;}
.ls60{letter-spacing:3.200000pt;}
.ls1c{letter-spacing:3.253333pt;}
.ls5e{letter-spacing:3.306667pt;}
.ls79{letter-spacing:3.328000pt;}
.ls75{letter-spacing:3.360000pt;}
.ls23{letter-spacing:3.413333pt;}
.ls72{letter-spacing:3.466667pt;}
.ls67{letter-spacing:3.573333pt;}
.ls85{letter-spacing:3.584000pt;}
.ls42{letter-spacing:3.626667pt;}
.ls97{letter-spacing:3.669333pt;}
.ls8{letter-spacing:3.680000pt;}
.ls6d{letter-spacing:3.733333pt;}
.ls8c{letter-spacing:3.797333pt;}
.ls70{letter-spacing:3.893333pt;}
.ls4c{letter-spacing:3.946667pt;}
.ls9a{letter-spacing:3.968000pt;}
.ls40{letter-spacing:4.000000pt;}
.ls80{letter-spacing:4.010667pt;}
.ls58{letter-spacing:4.053333pt;}
.ls86{letter-spacing:4.096000pt;}
.ls5d{letter-spacing:4.160000pt;}
.ls41{letter-spacing:4.266667pt;}
.ls87{letter-spacing:4.309333pt;}
.lsa7{letter-spacing:4.352000pt;}
.ls91{letter-spacing:4.394667pt;}
.ls7b{letter-spacing:4.426667pt;}
.ls8d{letter-spacing:4.437333pt;}
.ls54{letter-spacing:4.480000pt;}
.ls8e{letter-spacing:4.522667pt;}
.lsa6{letter-spacing:4.565333pt;}
.ls73{letter-spacing:4.693333pt;}
.lsa0{letter-spacing:4.736000pt;}
.ls69{letter-spacing:4.746667pt;}
.ls74{letter-spacing:4.800000pt;}
.lsa1{letter-spacing:4.821333pt;}
.ls57{letter-spacing:4.853333pt;}
.ls3f{letter-spacing:4.960000pt;}
.ls95{letter-spacing:5.077333pt;}
.ls34{letter-spacing:5.386667pt;}
.ls56{letter-spacing:5.440000pt;}
.lsa5{letter-spacing:5.632000pt;}
.ls1{letter-spacing:5.653333pt;}
.ls53{letter-spacing:5.760000pt;}
.ls76{letter-spacing:5.813333pt;}
.ls5a{letter-spacing:6.026667pt;}
.ls7c{letter-spacing:6.613333pt;}
.ls6e{letter-spacing:6.826667pt;}
.ls88{letter-spacing:7.850667pt;}
.ws3f{word-spacing:-17.600000pt;}
.ws9d{word-spacing:-17.066667pt;}
.ws40{word-spacing:-16.960000pt;}
.ws6e{word-spacing:-16.586667pt;}
.ws45{word-spacing:-16.480000pt;}
.ws86{word-spacing:-16.160000pt;}
.ws72{word-spacing:-16.053333pt;}
.ws15{word-spacing:-15.733333pt;}
.ws91{word-spacing:-15.626667pt;}
.ws32{word-spacing:-15.573333pt;}
.ws70{word-spacing:-15.413333pt;}
.ws9b{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.146667pt;}
.ws74{word-spacing:-14.986667pt;}
.wsb2{word-spacing:-14.976000pt;}
.ws10{word-spacing:-14.933333pt;}
.ws0{word-spacing:-14.826667pt;}
.ws9a{word-spacing:-14.720000pt;}
.wsd6{word-spacing:-14.634667pt;}
.ws14{word-spacing:-14.613333pt;}
.ws6f{word-spacing:-14.506667pt;}
.ws57{word-spacing:-14.346667pt;}
.ws42{word-spacing:-14.293333pt;}
.ws31{word-spacing:-14.240000pt;}
.ws3{word-spacing:-14.186667pt;}
.ws99{word-spacing:-14.133333pt;}
.ws71{word-spacing:-14.026667pt;}
.ws2{word-spacing:-13.973333pt;}
.ws43{word-spacing:-13.760000pt;}
.wsd0{word-spacing:-13.653333pt;}
.ws73{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.440000pt;}
.ws87{word-spacing:-13.386667pt;}
.wsf{word-spacing:-13.333333pt;}
.ws9c{word-spacing:-13.280000pt;}
.ws33{word-spacing:-13.226667pt;}
.ws12{word-spacing:-13.173333pt;}
.ws13{word-spacing:-13.120000pt;}
.wsd9{word-spacing:-13.098667pt;}
.ws75{word-spacing:-13.013333pt;}
.wsf1{word-spacing:-12.757333pt;}
.wsb9{word-spacing:-12.544000pt;}
.wsb3{word-spacing:-12.373333pt;}
.wsda{word-spacing:-12.245333pt;}
.wsd2{word-spacing:-12.202667pt;}
.wsb5{word-spacing:-12.160000pt;}
.ws44{word-spacing:-12.000000pt;}
.wsee{word-spacing:-11.989333pt;}
.wsd4{word-spacing:-11.946667pt;}
.wsb4{word-spacing:-11.904000pt;}
.ws16{word-spacing:-11.861333pt;}
.wsb8{word-spacing:-11.733333pt;}
.wsaf{word-spacing:-11.690667pt;}
.wscf{word-spacing:-11.520000pt;}
.wsd8{word-spacing:-11.477333pt;}
.wsf3{word-spacing:-11.434667pt;}
.ws41{word-spacing:-11.306667pt;}
.wsf2{word-spacing:-11.264000pt;}
.wsb1{word-spacing:-11.221333pt;}
.wsb0{word-spacing:-11.178667pt;}
.wse{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.120000pt;}
.wsdc{word-spacing:-11.093333pt;}
.wsd7{word-spacing:-11.050667pt;}
.wsb7{word-spacing:-10.965333pt;}
.wsb6{word-spacing:-10.922667pt;}
.wsef{word-spacing:-10.837333pt;}
.wsd3{word-spacing:-10.794667pt;}
.wsae{word-spacing:-10.752000pt;}
.ws3e{word-spacing:-10.666667pt;}
.wsf0{word-spacing:-10.624000pt;}
.wsdb{word-spacing:-10.538667pt;}
.wsd1{word-spacing:-10.496000pt;}
.wsdd{word-spacing:-10.453333pt;}
.wsa8{word-spacing:-10.410667pt;}
.wsa2{word-spacing:-9.130667pt;}
.wsd5{word-spacing:-8.320000pt;}
.wsa6{word-spacing:-8.106667pt;}
.wsa4{word-spacing:-6.954667pt;}
.wsa7{word-spacing:-6.912000pt;}
.wsa1{word-spacing:-6.741333pt;}
.ws48{word-spacing:-4.960000pt;}
.wsa5{word-spacing:-4.565333pt;}
.wsa3{word-spacing:-3.626667pt;}
.ws80{word-spacing:-2.720000pt;}
.ws6{word-spacing:-2.565333pt;}
.wseb{word-spacing:-2.432000pt;}
.wsc2{word-spacing:-2.389333pt;}
.ws47{word-spacing:-2.346667pt;}
.ws97{word-spacing:-2.293333pt;}
.wsf6{word-spacing:-2.090667pt;}
.ws7e{word-spacing:-2.080000pt;}
.wsa9{word-spacing:-2.026667pt;}
.wsca{word-spacing:-2.005333pt;}
.ws17{word-spacing:-1.973333pt;}
.wse1{word-spacing:-1.920000pt;}
.wsce{word-spacing:-1.877333pt;}
.ws96{word-spacing:-1.813333pt;}
.wsc7{word-spacing:-1.706667pt;}
.ws83{word-spacing:-1.653333pt;}
.wsec{word-spacing:-1.578667pt;}
.wsc3{word-spacing:-1.493333pt;}
.wsf4{word-spacing:-1.322667pt;}
.wsa0{word-spacing:-1.280000pt;}
.wsc9{word-spacing:-1.194667pt;}
.ws24{word-spacing:-1.120000pt;}
.wsbe{word-spacing:-1.024000pt;}
.ws7d{word-spacing:-1.013333pt;}
.ws37{word-spacing:-0.960000pt;}
.ws36{word-spacing:-0.906667pt;}
.ws4d{word-spacing:-0.853333pt;}
.wsf8{word-spacing:-0.810667pt;}
.ws6d{word-spacing:-0.768000pt;}
.wsde{word-spacing:-0.725333pt;}
.ws7f{word-spacing:-0.693333pt;}
.wsed{word-spacing:-0.640000pt;}
.wsf9{word-spacing:-0.554667pt;}
.wse7{word-spacing:-0.469333pt;}
.ws4f{word-spacing:-0.426667pt;}
.wsbb{word-spacing:-0.341333pt;}
.ws9f{word-spacing:-0.298667pt;}
.ws82{word-spacing:-0.266667pt;}
.ws51{word-spacing:-0.256000pt;}
.ws65{word-spacing:-0.213333pt;}
.ws35{word-spacing:-0.160000pt;}
.ws53{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.106667pt;}
.ws46{word-spacing:-0.085333pt;}
.ws5d{word-spacing:-0.053333pt;}
.wse2{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wse4{word-spacing:0.042667pt;}
.ws22{word-spacing:0.053333pt;}
.ws4b{word-spacing:0.085333pt;}
.ws26{word-spacing:0.106667pt;}
.wse3{word-spacing:0.128000pt;}
.ws2a{word-spacing:0.160000pt;}
.wsbf{word-spacing:0.170667pt;}
.ws5e{word-spacing:0.213333pt;}
.ws38{word-spacing:0.256000pt;}
.ws8b{word-spacing:0.266667pt;}
.ws34{word-spacing:0.320000pt;}
.ws3c{word-spacing:0.341333pt;}
.ws1e{word-spacing:0.384000pt;}
.ws5b{word-spacing:0.426667pt;}
.wse6{word-spacing:0.469333pt;}
.ws7c{word-spacing:0.480000pt;}
.ws7a{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.554667pt;}
.wse8{word-spacing:0.597333pt;}
.ws39{word-spacing:0.640000pt;}
.ws8a{word-spacing:0.693333pt;}
.ws85{word-spacing:0.746667pt;}
.ws1f{word-spacing:0.853333pt;}
.ws6c{word-spacing:0.896000pt;}
.ws25{word-spacing:0.906667pt;}
.wsdf{word-spacing:0.938667pt;}
.ws19{word-spacing:0.960000pt;}
.wsfb{word-spacing:0.981333pt;}
.ws93{word-spacing:1.013333pt;}
.wsbc{word-spacing:1.024000pt;}
.ws59{word-spacing:1.066667pt;}
.ws3d{word-spacing:1.152000pt;}
.ws63{word-spacing:1.173333pt;}
.wsc6{word-spacing:1.194667pt;}
.ws76{word-spacing:1.226667pt;}
.wscc{word-spacing:1.237333pt;}
.ws29{word-spacing:1.280000pt;}
.ws78{word-spacing:1.333333pt;}
.ws4c{word-spacing:1.386667pt;}
.wscd{word-spacing:1.408000pt;}
.ws58{word-spacing:1.440000pt;}
.ws2f{word-spacing:1.450667pt;}
.ws8e{word-spacing:1.493333pt;}
.ws2c{word-spacing:1.536000pt;}
.ws52{word-spacing:1.578667pt;}
.wsd{word-spacing:1.600000pt;}
.wsf5{word-spacing:1.621333pt;}
.ws95{word-spacing:1.653333pt;}
.wsc8{word-spacing:1.664000pt;}
.ws5c{word-spacing:1.706667pt;}
.ws54{word-spacing:1.749333pt;}
.wsa{word-spacing:1.760000pt;}
.wse5{word-spacing:1.792000pt;}
.ws62{word-spacing:1.813333pt;}
.wsc4{word-spacing:1.834667pt;}
.ws8c{word-spacing:1.866667pt;}
.ws4a{word-spacing:1.877333pt;}
.wse0{word-spacing:1.962667pt;}
.ws84{word-spacing:2.026667pt;}
.ws94{word-spacing:2.080000pt;}
.wsc0{word-spacing:2.090667pt;}
.ws1a{word-spacing:2.133333pt;}
.ws55{word-spacing:2.176000pt;}
.ws5a{word-spacing:2.186667pt;}
.ws68{word-spacing:2.293333pt;}
.wsba{word-spacing:2.304000pt;}
.ws2b{word-spacing:2.346667pt;}
.wsf7{word-spacing:2.474667pt;}
.ws8f{word-spacing:2.506667pt;}
.ws49{word-spacing:2.560000pt;}
.ws3a{word-spacing:2.602667pt;}
.ws79{word-spacing:2.666667pt;}
.wsab{word-spacing:2.720000pt;}
.wse9{word-spacing:2.730667pt;}
.ws89{word-spacing:2.773333pt;}
.ws2e{word-spacing:2.816000pt;}
.ws6b{word-spacing:2.858667pt;}
.ws8d{word-spacing:2.880000pt;}
.ws56{word-spacing:2.933333pt;}
.wsc1{word-spacing:2.944000pt;}
.ws88{word-spacing:2.986667pt;}
.wsc{word-spacing:3.040000pt;}
.ws3b{word-spacing:3.114667pt;}
.ws64{word-spacing:3.146667pt;}
.wsbd{word-spacing:3.157333pt;}
.ws60{word-spacing:3.200000pt;}
.wsea{word-spacing:3.242667pt;}
.ws1b{word-spacing:3.253333pt;}
.ws9{word-spacing:3.360000pt;}
.ws50{word-spacing:3.370667pt;}
.ws23{word-spacing:3.413333pt;}
.ws30{word-spacing:3.456000pt;}
.ws1d{word-spacing:3.498667pt;}
.ws1c{word-spacing:3.541333pt;}
.ws66{word-spacing:3.573333pt;}
.wsb{word-spacing:3.626667pt;}
.ws6a{word-spacing:3.669333pt;}
.ws5f{word-spacing:3.680000pt;}
.ws18{word-spacing:3.733333pt;}
.ws90{word-spacing:3.786667pt;}
.ws28{word-spacing:3.840000pt;}
.ws61{word-spacing:3.893333pt;}
.ws4e{word-spacing:3.925333pt;}
.ws81{word-spacing:3.946667pt;}
.wsaa{word-spacing:4.000000pt;}
.ws20{word-spacing:4.010667pt;}
.ws77{word-spacing:4.053333pt;}
.wsfa{word-spacing:4.096000pt;}
.ws69{word-spacing:4.106667pt;}
.ws27{word-spacing:4.160000pt;}
.ws92{word-spacing:4.266667pt;}
.ws67{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws7{word-spacing:4.426667pt;}
.wscb{word-spacing:4.522667pt;}
.wsad{word-spacing:4.853333pt;}
.wsac{word-spacing:4.906667pt;}
.ws9e{word-spacing:5.173333pt;}
.ws7b{word-spacing:5.546667pt;}
.ws98{word-spacing:6.720000pt;}
.wsc5{word-spacing:7.850667pt;}
._9{margin-left:-2576.085333pt;}
._b{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._e{margin-left:-6.986667pt;}
._5{margin-left:-5.813333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.826667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.013333pt;}
._6{width:0.906667pt;}
._a{width:1.813333pt;}
._7{width:2.752000pt;}
._c{width:3.669333pt;}
._8{width:4.586667pt;}
._d{width:5.653333pt;}
._f{width:7.040000pt;}
._13{width:8.539733pt;}
._12{width:38.954667pt;}
._16{width:43.293333pt;}
._14{width:44.672000pt;}
._10{width:49.621333pt;}
._17{width:51.248000pt;}
._15{width:52.138667pt;}
._11{width:56.746667pt;}
.fs5{font-size:24.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;}
.fsa{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;}
.y2b{bottom:42.468667pt;}
.y11e{bottom:70.447867pt;}
.ye7{bottom:73.730667pt;}
.y14c{bottom:73.774000pt;}
.yb3{bottom:74.372667pt;}
.y148{bottom:74.462533pt;}
.y19c{bottom:74.468533pt;}
.y19f{bottom:74.823867pt;}
.y1cb{bottom:76.930667pt;}
.y5a{bottom:77.129200pt;}
.y13{bottom:78.246000pt;}
.y1e9{bottom:79.093467pt;}
.y172{bottom:80.988533pt;}
.y8a{bottom:82.966533pt;}
.y219{bottom:84.678667pt;}
.y11d{bottom:86.447867pt;}
.ye6{bottom:87.064000pt;}
.y14b{bottom:87.768667pt;}
.yb2{bottom:88.367333pt;}
.y19e{bottom:88.818533pt;}
.y1ca{bottom:90.264000pt;}
.y147{bottom:90.462533pt;}
.y19b{bottom:90.468533pt;}
.y12{bottom:91.576000pt;}
.y1e8{bottom:92.426800pt;}
.y59{bottom:93.129200pt;}
.y171{bottom:96.988533pt;}
.y218{bottom:98.012000pt;}
.ye5{bottom:100.397333pt;}
.y14a{bottom:101.763333pt;}
.y11c{bottom:102.447867pt;}
.y19d{bottom:102.813200pt;}
.y1c9{bottom:103.597333pt;}
.y146{bottom:106.462533pt;}
.y19a{bottom:106.468533pt;}
.y58{bottom:109.129200pt;}
.y217{bottom:111.345333pt;}
.y170{bottom:112.988533pt;}
.ye4{bottom:113.730667pt;}
.y89{bottom:114.516000pt;}
.y149{bottom:115.758000pt;}
.y1c8{bottom:116.930667pt;}
.y11b{bottom:118.447867pt;}
.y1e7{bottom:121.864533pt;}
.y145{bottom:122.462533pt;}
.y199{bottom:122.468533pt;}
.y216{bottom:124.678667pt;}
.y57{bottom:125.129200pt;}
.ye3{bottom:127.064000pt;}
.y88{bottom:127.849333pt;}
.y16f{bottom:128.988533pt;}
.y1c7{bottom:130.264000pt;}
.y11a{bottom:134.447867pt;}
.y215{bottom:138.012000pt;}
.y144{bottom:138.462533pt;}
.y198{bottom:138.468533pt;}
.ye2{bottom:140.397333pt;}
.y56{bottom:141.129200pt;}
.y87{bottom:141.182667pt;}
.y1c6{bottom:143.597333pt;}
.y16e{bottom:144.988533pt;}
.y119{bottom:150.447867pt;}
.y214{bottom:151.345333pt;}
.ye1{bottom:153.730667pt;}
.y143{bottom:154.462533pt;}
.y197{bottom:154.468533pt;}
.y86{bottom:154.516000pt;}
.y1c5{bottom:156.930667pt;}
.y55{bottom:157.129200pt;}
.y26{bottom:160.196800pt;}
.y16d{bottom:160.988533pt;}
.y213{bottom:164.678667pt;}
.y118{bottom:166.447867pt;}
.ye0{bottom:167.064000pt;}
.y85{bottom:167.849333pt;}
.y1c4{bottom:170.264000pt;}
.y1e6{bottom:170.344533pt;}
.y142{bottom:170.462533pt;}
.y196{bottom:170.468533pt;}
.y54{bottom:173.129200pt;}
.y25{bottom:176.196800pt;}
.y16c{bottom:176.988533pt;}
.y212{bottom:178.012000pt;}
.ydf{bottom:180.397333pt;}
.y1c3{bottom:183.597333pt;}
.y1e5{bottom:185.984533pt;}
.y141{bottom:186.462533pt;}
.y195{bottom:186.468533pt;}
.y53{bottom:189.129200pt;}
.y211{bottom:191.345333pt;}
.y24{bottom:192.196800pt;}
.y16b{bottom:192.988533pt;}
.yde{bottom:193.730667pt;}
.y1c2{bottom:196.930667pt;}
.y84{bottom:197.287867pt;}
.y117{bottom:197.417333pt;}
.y140{bottom:202.462533pt;}
.y194{bottom:202.468533pt;}
.y210{bottom:204.678667pt;}
.y52{bottom:205.129200pt;}
.ydd{bottom:207.064000pt;}
.y23{bottom:208.196800pt;}
.y16a{bottom:208.988533pt;}
.y1c1{bottom:210.264000pt;}
.y116{bottom:211.289333pt;}
.y1e4{bottom:217.984533pt;}
.y20f{bottom:218.012000pt;}
.y13f{bottom:218.462533pt;}
.y193{bottom:218.468533pt;}
.y51{bottom:221.129200pt;}
.y1c0{bottom:223.597333pt;}
.y115{bottom:224.062533pt;}
.y22{bottom:224.196800pt;}
.y169{bottom:224.988533pt;}
.y83{bottom:229.154533pt;}
.y20e{bottom:231.345333pt;}
.y13e{bottom:234.462533pt;}
.y192{bottom:234.468533pt;}
.ydc{bottom:234.721867pt;}
.y1bf{bottom:236.930667pt;}
.y50{bottom:237.129200pt;}
.y114{bottom:239.702533pt;}
.y21{bottom:240.196800pt;}
.y168{bottom:240.988533pt;}
.y20d{bottom:244.678667pt;}
.y82{bottom:245.154533pt;}
.y1be{bottom:250.264000pt;}
.y1e3{bottom:250.344533pt;}
.ydb{bottom:250.361867pt;}
.y13d{bottom:250.462533pt;}
.y191{bottom:250.468533pt;}
.y4f{bottom:253.129200pt;}
.y20{bottom:256.196800pt;}
.y167{bottom:256.988533pt;}
.y20c{bottom:258.012000pt;}
.y1bd{bottom:263.597333pt;}
.y1e2{bottom:265.984533pt;}
.y13c{bottom:266.462533pt;}
.y190{bottom:266.468533pt;}
.y20b{bottom:271.345333pt;}
.y113{bottom:271.569200pt;}
.y1f{bottom:272.196800pt;}
.y166{bottom:272.988533pt;}
.y1bc{bottom:276.930667pt;}
.y81{bottom:277.381200pt;}
.y13b{bottom:282.462533pt;}
.y18f{bottom:282.468533pt;}
.yda{bottom:282.588533pt;}
.y4e{bottom:284.678667pt;}
.y1e{bottom:288.196800pt;}
.y165{bottom:288.988533pt;}
.y1bb{bottom:290.264000pt;}
.y80{bottom:293.381200pt;}
.y4d{bottom:298.012000pt;}
.y1e1{bottom:298.344533pt;}
.y13a{bottom:298.462533pt;}
.y18e{bottom:298.468533pt;}
.yd9{bottom:298.588533pt;}
.y1ba{bottom:303.597333pt;}
.y112{bottom:303.795867pt;}
.y1d{bottom:304.196800pt;}
.y164{bottom:304.988533pt;}
.y7f{bottom:309.381200pt;}
.y4c{bottom:311.345333pt;}
.y1e0{bottom:313.984533pt;}
.y139{bottom:314.462533pt;}
.y18d{bottom:314.468533pt;}
.yd8{bottom:314.588533pt;}
.y111{bottom:319.795867pt;}
.y1c{bottom:320.196800pt;}
.y163{bottom:320.988533pt;}
.y4b{bottom:324.678667pt;}
.y7e{bottom:325.381200pt;}
.y138{bottom:330.462533pt;}
.y18c{bottom:330.468533pt;}
.yd7{bottom:330.588533pt;}
.y1b9{bottom:333.028533pt;}
.y110{bottom:335.795867pt;}
.y1b{bottom:336.196800pt;}
.y162{bottom:336.988533pt;}
.y4a{bottom:338.012000pt;}
.y7d{bottom:341.381200pt;}
.y1df{bottom:346.344533pt;}
.y137{bottom:346.462533pt;}
.y18b{bottom:346.468533pt;}
.yd6{bottom:346.588533pt;}
.y49{bottom:351.345333pt;}
.y10f{bottom:351.795867pt;}
.y1a{bottom:352.196800pt;}
.y161{bottom:352.988533pt;}
.y7c{bottom:357.381200pt;}
.y1de{bottom:361.984533pt;}
.y136{bottom:362.462533pt;}
.y18a{bottom:362.468533pt;}
.yd5{bottom:362.588533pt;}
.y48{bottom:364.678667pt;}
.y1b8{bottom:365.255200pt;}
.y10e{bottom:367.795867pt;}
.y19{bottom:368.196800pt;}
.y160{bottom:368.988533pt;}
.y7b{bottom:373.381200pt;}
.y47{bottom:378.012000pt;}
.y135{bottom:378.462533pt;}
.y189{bottom:378.468533pt;}
.yd4{bottom:378.588533pt;}
.y1b7{bottom:381.255200pt;}
.y10d{bottom:383.795867pt;}
.y18{bottom:384.196800pt;}
.y15f{bottom:384.988533pt;}
.y7a{bottom:389.381200pt;}
.y46{bottom:391.345333pt;}
.y1dd{bottom:394.344533pt;}
.y134{bottom:394.462533pt;}
.y188{bottom:394.468533pt;}
.yd3{bottom:394.588533pt;}
.y1b6{bottom:397.255200pt;}
.y10c{bottom:399.795867pt;}
.y17{bottom:400.196800pt;}
.y15e{bottom:400.988533pt;}
.y45{bottom:404.678667pt;}
.y79{bottom:405.381200pt;}
.y1dc{bottom:410.344533pt;}
.y133{bottom:410.462533pt;}
.y187{bottom:410.468533pt;}
.yd2{bottom:410.588533pt;}
.y1b5{bottom:413.255200pt;}
.y10b{bottom:415.795867pt;}
.y16{bottom:416.196800pt;}
.y15d{bottom:416.988533pt;}
.y44{bottom:418.012000pt;}
.y78{bottom:421.381200pt;}
.y1db{bottom:426.344533pt;}
.y132{bottom:426.462533pt;}
.y186{bottom:426.468533pt;}
.yd1{bottom:426.588533pt;}
.y1b4{bottom:429.255200pt;}
.y43{bottom:431.345333pt;}
.y10a{bottom:431.795867pt;}
.y15{bottom:432.196800pt;}
.y15c{bottom:432.988533pt;}
.y77{bottom:437.381200pt;}
.y1da{bottom:442.344533pt;}
.y131{bottom:442.462533pt;}
.y185{bottom:442.468533pt;}
.yd0{bottom:442.588533pt;}
.y42{bottom:444.678667pt;}
.y1b3{bottom:445.255200pt;}
.y109{bottom:447.795867pt;}
.y28{bottom:448.196800pt;}
.y15b{bottom:448.988533pt;}
.y76{bottom:453.381200pt;}
.y20a{bottom:458.012000pt;}
.y1d9{bottom:458.344533pt;}
.y130{bottom:458.462533pt;}
.y184{bottom:458.468533pt;}
.ycf{bottom:458.588533pt;}
.y1b2{bottom:461.255200pt;}
.y108{bottom:463.795867pt;}
.y14{bottom:463.836800pt;}
.y27{bottom:464.196800pt;}
.y15a{bottom:464.988533pt;}
.y75{bottom:469.381200pt;}
.y209{bottom:471.345333pt;}
.y41{bottom:474.117867pt;}
.y1d8{bottom:474.344533pt;}
.y12f{bottom:474.462533pt;}
.y183{bottom:474.468533pt;}
.yce{bottom:474.588533pt;}
.y1b1{bottom:477.255200pt;}
.y107{bottom:479.795867pt;}
.y159{bottom:480.988533pt;}
.y208{bottom:484.678667pt;}
.y74{bottom:485.381200pt;}
.y1d7{bottom:490.344533pt;}
.y12e{bottom:490.462533pt;}
.y182{bottom:490.468533pt;}
.ycd{bottom:490.588533pt;}
.y1b0{bottom:493.255200pt;}
.y106{bottom:495.795867pt;}
.y158{bottom:496.988533pt;}
.y207{bottom:498.012000pt;}
.y73{bottom:501.381200pt;}
.y40{bottom:505.984533pt;}
.y1d6{bottom:506.344533pt;}
.y12d{bottom:506.462533pt;}
.y181{bottom:506.468533pt;}
.y1af{bottom:509.255200pt;}
.y206{bottom:511.345333pt;}
.y105{bottom:511.795867pt;}
.y157{bottom:512.988533pt;}
.y3f{bottom:521.984533pt;}
.ycc{bottom:522.138000pt;}
.y12c{bottom:522.462533pt;}
.y180{bottom:522.468533pt;}
.y205{bottom:524.678667pt;}
.y1ae{bottom:525.255200pt;}
.y104{bottom:527.795867pt;}
.y156{bottom:528.988533pt;}
.y72{bottom:532.930667pt;}
.ycb{bottom:535.471333pt;}
.y3e{bottom:537.984533pt;}
.y204{bottom:538.012000pt;}
.y12b{bottom:538.462533pt;}
.y17f{bottom:538.468533pt;}
.y1ad{bottom:541.255200pt;}
.y103{bottom:543.795867pt;}
.y155{bottom:544.988533pt;}
.y71{bottom:546.264000pt;}
.y11{bottom:546.723733pt;}
.yca{bottom:548.804667pt;}
.y203{bottom:551.345333pt;}
.yb1{bottom:551.471333pt;}
.y1d5{bottom:554.344533pt;}
.y12a{bottom:554.462533pt;}
.y17e{bottom:554.468533pt;}
.y99{bottom:556.721867pt;}
.y1ac{bottom:557.255200pt;}
.y70{bottom:559.597333pt;}
.y102{bottom:559.795867pt;}
.y154{bottom:560.988533pt;}
.yc9{bottom:562.138000pt;}
.y202{bottom:564.678667pt;}
.yb0{bottom:564.804667pt;}
.y3d{bottom:569.864533pt;}
.y1d4{bottom:570.344533pt;}
.y129{bottom:570.462533pt;}
.y17d{bottom:570.468533pt;}
.y10{bottom:571.030400pt;}
.y98{bottom:572.721867pt;}
.y6f{bottom:572.930667pt;}
.y1ab{bottom:573.255200pt;}
.yc8{bottom:575.471333pt;}
.y153{bottom:576.988533pt;}
.y201{bottom:578.012000pt;}
.yaf{bottom:578.138000pt;}
.y6e{bottom:586.264000pt;}
.y1d3{bottom:586.344533pt;}
.y128{bottom:586.462533pt;}
.y17c{bottom:586.468533pt;}
.yf{bottom:587.030400pt;}
.y97{bottom:588.721867pt;}
.yc7{bottom:588.804667pt;}
.y1aa{bottom:589.255200pt;}
.y101{bottom:591.341333pt;}
.y200{bottom:591.345333pt;}
.yae{bottom:591.471333pt;}
.y152{bottom:592.988533pt;}
.y6d{bottom:599.597333pt;}
.yc6{bottom:602.138000pt;}
.y1d2{bottom:602.344533pt;}
.y127{bottom:602.462533pt;}
.y17b{bottom:602.468533pt;}
.ye{bottom:603.030400pt;}
.y100{bottom:604.674667pt;}
.y1ff{bottom:604.678667pt;}
.y96{bottom:604.721867pt;}
.yad{bottom:604.804667pt;}
.y1a9{bottom:605.255200pt;}
.y151{bottom:608.988533pt;}
.y6c{bottom:612.930667pt;}
.yc5{bottom:615.471333pt;}
.y3c{bottom:617.984533pt;}
.yff{bottom:618.008000pt;}
.y1fe{bottom:618.012000pt;}
.yac{bottom:618.138000pt;}
.y1d1{bottom:618.344533pt;}
.y126{bottom:618.462533pt;}
.y17a{bottom:618.468533pt;}
.yd{bottom:619.030400pt;}
.y95{bottom:620.721867pt;}
.y1a8{bottom:621.255200pt;}
.y6b{bottom:626.264000pt;}
.yfe{bottom:631.341333pt;}
.y1fd{bottom:631.345333pt;}
.yab{bottom:631.471333pt;}
.y1d0{bottom:634.344533pt;}
.y125{bottom:634.462533pt;}
.y179{bottom:634.468533pt;}
.yc{bottom:635.030400pt;}
.y94{bottom:636.721867pt;}
.y1a7{bottom:637.255200pt;}
.y6a{bottom:639.597333pt;}
.y150{bottom:639.958000pt;}
.yfd{bottom:644.674667pt;}
.y1fc{bottom:644.678667pt;}
.yaa{bottom:644.804667pt;}
.yc4{bottom:644.902533pt;}
.y1cf{bottom:650.344533pt;}
.y124{bottom:650.462533pt;}
.y178{bottom:650.468533pt;}
.y69{bottom:652.930667pt;}
.y14f{bottom:653.830000pt;}
.yfc{bottom:658.008000pt;}
.y1fb{bottom:658.012000pt;}
.ya9{bottom:658.138000pt;}
.y1ce{bottom:666.344533pt;}
.y123{bottom:666.462533pt;}
.y3b{bottom:666.464533pt;}
.y177{bottom:666.468533pt;}
.y14e{bottom:666.595867pt;}
.y93{bottom:668.271333pt;}
.y1a6{bottom:668.804667pt;}
.yfb{bottom:671.341333pt;}
.y1fa{bottom:671.345333pt;}
.ya8{bottom:671.471333pt;}
.yb{bottom:675.172000pt;}
.yc3{bottom:677.129200pt;}
.y92{bottom:681.604667pt;}
.y1a5{bottom:682.138000pt;}
.y14d{bottom:682.235867pt;}
.y1cd{bottom:682.344533pt;}
.y68{bottom:682.369200pt;}
.y122{bottom:682.462533pt;}
.y3a{bottom:682.464533pt;}
.y176{bottom:682.468533pt;}
.yfa{bottom:684.674667pt;}
.y1f9{bottom:684.678667pt;}
.ya7{bottom:684.804667pt;}
.ya{bottom:686.238667pt;}
.yc2{bottom:693.129200pt;}
.y91{bottom:694.938000pt;}
.y1a4{bottom:695.471333pt;}
.yf9{bottom:698.008000pt;}
.y1f8{bottom:698.012000pt;}
.y121{bottom:698.462533pt;}
.y39{bottom:698.464533pt;}
.y175{bottom:698.468533pt;}
.y90{bottom:708.271333pt;}
.y1a3{bottom:708.804667pt;}
.yc1{bottom:709.129200pt;}
.yf8{bottom:711.341333pt;}
.y1f7{bottom:711.345333pt;}
.y1cc{bottom:713.984533pt;}
.y67{bottom:714.235867pt;}
.ya6{bottom:714.241867pt;}
.y120{bottom:714.462533pt;}
.y38{bottom:714.464533pt;}
.y174{bottom:714.468533pt;}
.y9{bottom:717.861467pt;}
.y8f{bottom:721.604667pt;}
.y1a2{bottom:722.138000pt;}
.yf7{bottom:724.674667pt;}
.y1f6{bottom:724.678667pt;}
.yc0{bottom:725.129200pt;}
.y8{bottom:729.861467pt;}
.y11f{bottom:730.462533pt;}
.y37{bottom:730.464533pt;}
.y173{bottom:730.468533pt;}
.y8e{bottom:734.938000pt;}
.y1a1{bottom:735.471333pt;}
.yf6{bottom:738.008000pt;}
.y1f5{bottom:738.012000pt;}
.ybf{bottom:741.129200pt;}
.y66{bottom:746.462533pt;}
.y36{bottom:746.464533pt;}
.ya5{bottom:746.468533pt;}
.y1a0{bottom:748.804667pt;}
.yf5{bottom:751.341333pt;}
.y1f4{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.ybe{bottom:757.129200pt;}
.y65{bottom:762.462533pt;}
.y35{bottom:762.464533pt;}
.ya4{bottom:762.468533pt;}
.y8d{bottom:762.595867pt;}
.yf4{bottom:764.674667pt;}
.y1f3{bottom:764.678667pt;}
.ybd{bottom:773.129200pt;}
.yf3{bottom:778.008000pt;}
.y1f2{bottom:778.012000pt;}
.y8c{bottom:778.235867pt;}
.y64{bottom:778.462533pt;}
.y34{bottom:778.464533pt;}
.ya3{bottom:778.468533pt;}
.ybc{bottom:789.129200pt;}
.yf2{bottom:791.341333pt;}
.y1f1{bottom:791.345333pt;}
.y63{bottom:794.462533pt;}
.y33{bottom:794.464533pt;}
.ya2{bottom:794.468533pt;}
.y6{bottom:797.816533pt;}
.yf1{bottom:804.674667pt;}
.y1f0{bottom:804.678667pt;}
.ybb{bottom:805.129200pt;}
.y62{bottom:810.462533pt;}
.y32{bottom:810.464533pt;}
.ya1{bottom:810.468533pt;}
.yf0{bottom:818.008000pt;}
.y1ef{bottom:818.012000pt;}
.yba{bottom:821.129200pt;}
.y61{bottom:826.462533pt;}
.y31{bottom:826.464533pt;}
.ya0{bottom:826.468533pt;}
.y5{bottom:830.226133pt;}
.yef{bottom:831.341333pt;}
.y1ee{bottom:831.345333pt;}
.yb9{bottom:837.129200pt;}
.y60{bottom:842.462533pt;}
.y30{bottom:842.464533pt;}
.y9f{bottom:842.468533pt;}
.yee{bottom:844.674667pt;}
.y1ed{bottom:844.678667pt;}
.yb8{bottom:853.129200pt;}
.yed{bottom:858.008000pt;}
.y1ec{bottom:858.012000pt;}
.y5f{bottom:858.462533pt;}
.y2f{bottom:858.464533pt;}
.y9e{bottom:858.468533pt;}
.y4{bottom:862.635733pt;}
.yec{bottom:871.341333pt;}
.y1eb{bottom:871.345333pt;}
.y5e{bottom:874.462533pt;}
.y2e{bottom:874.464533pt;}
.y9d{bottom:874.468533pt;}
.yeb{bottom:884.674667pt;}
.yb7{bottom:884.678667pt;}
.y5d{bottom:890.462533pt;}
.y2d{bottom:890.464533pt;}
.y9c{bottom:890.468533pt;}
.y3{bottom:895.045333pt;}
.yea{bottom:898.008000pt;}
.yb6{bottom:898.012000pt;}
.y5c{bottom:906.462533pt;}
.y9b{bottom:906.468533pt;}
.ye9{bottom:911.341333pt;}
.yb5{bottom:911.345333pt;}
.y2c{bottom:922.104533pt;}
.y5b{bottom:922.462533pt;}
.y9a{bottom:922.468533pt;}
.ye8{bottom:924.674667pt;}
.yb4{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1ea{bottom:1006.592133pt;}
.y8b{bottom:1006.594400pt;}
.y21a{bottom:1006.598667pt;}
.y2a{bottom:1009.857333pt;}
.y29{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h7{height:25.238281pt;}
.h2{height:27.179688pt;}
.ha{height:29.121094pt;}
.hb{height:29.160156pt;}
.he{height:31.062500pt;}
.hd{height:31.104167pt;}
.h10{height:35.437500pt;}
.hf{height:37.354167pt;}
.h9{height:38.828125pt;}
.h8{height:38.880208pt;}
.h12{height:42.023438pt;}
.h5{height:43.678785pt;}
.h11{height:44.296875pt;}
.hc{height:46.692708pt;}
.h13{height:48.132708pt;}
.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;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x13{left:90.708800pt;}
.x3{left:94.488267pt;}
.xc{left:98.268667pt;}
.x10{left:102.295333pt;}
.x25{left:103.427733pt;}
.x30{left:105.622533pt;}
.x31{left:107.338667pt;}
.x11{left:108.602000pt;}
.x1f{left:109.606533pt;}
.x12{left:113.428667pt;}
.x5{left:117.170133pt;}
.x24{left:118.241067pt;}
.xb{left:128.642000pt;}
.xf{left:140.082000pt;}
.x1d{left:145.289200pt;}
.x2b{left:146.395867pt;}
.xe{left:180.362000pt;}
.xd{left:187.642000pt;}
.x4{left:189.223467pt;}
.x26{left:193.841067pt;}
.x2d{left:194.939467pt;}
.x1e{left:212.369200pt;}
.x2c{left:217.169200pt;}
.x9{left:404.481333pt;}
.x14{left:406.307733pt;}
.x29{left:420.167200pt;}
.x20{left:425.192000pt;}
.x7{left:427.090133pt;}
.x17{left:428.976533pt;}
.x18{left:436.535467pt;}
.x16{left:437.974400pt;}
.x15{left:443.881067pt;}
.x19{left:447.139200pt;}
.x21{left:455.432000pt;}
.x6{left:457.330133pt;}
.x1a{left:467.379200pt;}
.x27{left:482.073733pt;}
.x22{left:483.178667pt;}
.x2a{left:516.863200pt;}
.x33{left:526.185467pt;}
.x34{left:529.865467pt;}
.x32{left:533.945467pt;}
.x28{left:536.540400pt;}
.x1c{left:589.770933pt;}
.x2{left:616.324800pt;}
.x2e{left:641.526800pt;}
.x1b{left:647.459200pt;}
.x2f{left:661.216133pt;}
.x23{left:666.356800pt;}
}




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