
    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_8d0ed6ccfa9f7e453843c1c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_c217e7b615e8489c37c8639f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_ce6e9a0d6fc12d30ac19fde0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_e0b257993a368c472a72ef85.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_0f07f727b8615220a633adbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.907000;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_b0d09cdf1c2a3d6dd6c14457.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.954000;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_5a0aa3447bcec5c3d0860ca0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.898000;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_930f22580b45f33c4de2b5f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v14{vertical-align:-73.500000px;}
.v9{vertical-align:-71.652000px;}
.vf{vertical-align:-52.542000px;}
.v8{vertical-align:-50.652000px;}
.v1{vertical-align:-45.066000px;}
.v7{vertical-align:-29.358000px;}
.v5{vertical-align:-27.552000px;}
.v12{vertical-align:-19.698000px;}
.vd{vertical-align:-17.682000px;}
.v11{vertical-align:-15.750000px;}
.v17{vertical-align:-10.500000px;}
.vc{vertical-align:-7.854000px;}
.ve{vertical-align:-6.594000px;}
.v13{vertical-align:-2.268000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.982000px;}
.v16{vertical-align:13.146000px;}
.v6{vertical-align:20.160000px;}
.v15{vertical-align:26.250000px;}
.va{vertical-align:32.802000px;}
.v4{vertical-align:42.000000px;}
.v2{vertical-align:45.948000px;}
.v3{vertical-align:47.250000px;}
.v10{vertical-align:53.802000px;}
.ls22{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.380000px;}
.ls78{letter-spacing:-1.350000px;}
.ls76{letter-spacing:-1.336500px;}
.ls44{letter-spacing:-1.320000px;}
.ls77{letter-spacing:-1.296000px;}
.ls21{letter-spacing:-1.260000px;}
.lsf{letter-spacing:-1.200000px;}
.ls2f{letter-spacing:-1.140000px;}
.ls31{letter-spacing:-1.080000px;}
.ls32{letter-spacing:-1.020000px;}
.ls1f{letter-spacing:-0.960000px;}
.ls3c{letter-spacing:-0.900000px;}
.ls62{letter-spacing:-0.864000px;}
.ls3b{letter-spacing:-0.840000px;}
.ls13{letter-spacing:-0.816000px;}
.ls24{letter-spacing:-0.780000px;}
.ls10{letter-spacing:-0.720000px;}
.ls43{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.600000px;}
.ls3f{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.561000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls3d{letter-spacing:-0.486000px;}
.ls2c{letter-spacing:-0.480000px;}
.ls4f{letter-spacing:-0.462000px;}
.lsc{letter-spacing:-0.459000px;}
.ls2d{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.382200px;}
.ls80{letter-spacing:-0.378000px;}
.ls33{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.357000px;}
.ls61{letter-spacing:-0.324000px;}
.ls30{letter-spacing:-0.300000px;}
.ls5e{letter-spacing:-0.288000px;}
.ls40{letter-spacing:-0.270000px;}
.ls23{letter-spacing:-0.240000px;}
.ls75{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.120000px;}
.ls42{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.102000px;}
.ls6{letter-spacing:-0.076440px;}
.lse{letter-spacing:-0.060000px;}
.ls41{letter-spacing:-0.054000px;}
.ls7{letter-spacing:-0.051000px;}
.ls50{letter-spacing:-0.048000px;}
.ls8{letter-spacing:-0.038220px;}
.ls4{letter-spacing:0.000000px;}
.ls68{letter-spacing:0.013500px;}
.ls7f{letter-spacing:0.040500px;}
.ls5d{letter-spacing:0.048000px;}
.ls5f{letter-spacing:0.054000px;}
.ls3{letter-spacing:0.060000px;}
.ls7c{letter-spacing:0.066000px;}
.ls70{letter-spacing:0.078000px;}
.ls14{letter-spacing:0.120000px;}
.ls38{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.240000px;}
.ls36{letter-spacing:0.270000px;}
.ls34{letter-spacing:0.300000px;}
.ls28{letter-spacing:0.324000px;}
.ls29{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.378000px;}
.ls7a{letter-spacing:0.414000px;}
.ls16{letter-spacing:0.420000px;}
.ls69{letter-spacing:0.432000px;}
.ls71{letter-spacing:0.438000px;}
.ls7b{letter-spacing:0.445500px;}
.ls15{letter-spacing:0.480000px;}
.ls3e{letter-spacing:0.486000px;}
.ls5b{letter-spacing:0.528000px;}
.ls2a{letter-spacing:0.540000px;}
.ls60{letter-spacing:0.594000px;}
.ls1a{letter-spacing:0.600000px;}
.ls63{letter-spacing:0.607500px;}
.ls79{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.660000px;}
.ls6f{letter-spacing:0.666000px;}
.ls2{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.756000px;}
.ls64{letter-spacing:0.769500px;}
.ls1d{letter-spacing:0.780000px;}
.ls39{letter-spacing:0.810000px;}
.ls1{letter-spacing:0.840000px;}
.ls72{letter-spacing:0.850500px;}
.ls3a{letter-spacing:0.864000px;}
.ls6d{letter-spacing:0.894000px;}
.ls2b{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.960000px;}
.ls6e{letter-spacing:0.972000px;}
.ls1c{letter-spacing:1.020000px;}
.ls18{letter-spacing:1.080000px;}
.ls7e{letter-spacing:1.134000px;}
.ls17{letter-spacing:1.140000px;}
.ls7d{letter-spacing:1.152000px;}
.ls5c{letter-spacing:1.188000px;}
.ls26{letter-spacing:1.200000px;}
.ls25{letter-spacing:1.260000px;}
.ls6c{letter-spacing:1.296000px;}
.ls6b{letter-spacing:1.336500px;}
.ls66{letter-spacing:1.350000px;}
.ls73{letter-spacing:1.368000px;}
.ls65{letter-spacing:1.404000px;}
.ls46{letter-spacing:1.440000px;}
.ls74{letter-spacing:1.458000px;}
.ls12{letter-spacing:1.500000px;}
.ls57{letter-spacing:6.060000px;}
.ls67{letter-spacing:12.852000px;}
.ls4c{letter-spacing:14.400000px;}
.ls6a{letter-spacing:15.282000px;}
.ls5a{letter-spacing:16.320000px;}
.ls4b{letter-spacing:16.680000px;}
.ls58{letter-spacing:26.250000px;}
.ls52{letter-spacing:27.930000px;}
.ls4a{letter-spacing:34.482000px;}
.ls4e{letter-spacing:35.448000px;}
.ls54{letter-spacing:39.396000px;}
.ls53{letter-spacing:41.328000px;}
.ls48{letter-spacing:45.948000px;}
.ls49{letter-spacing:68.166000px;}
.ls55{letter-spacing:68.250000px;}
.ls59{letter-spacing:70.854000px;}
.ls56{letter-spacing:70.896000px;}
.ls51{letter-spacing:78.750000px;}
.ls4d{letter-spacing:128.226000px;}
.ls47{letter-spacing:202.272000px;}
.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;}
}
.ws77{word-spacing:-16.500000px;}
.ws42{word-spacing:-16.260000px;}
.ws43{word-spacing:-16.200000px;}
.ws84{word-spacing:-16.140000px;}
.ws22{word-spacing:-16.080000px;}
.ws76{word-spacing:-15.960000px;}
.ws7b{word-spacing:-15.840000px;}
.ws2c{word-spacing:-15.780000px;}
.ws2a{word-spacing:-15.660000px;}
.ws25{word-spacing:-15.600000px;}
.ws90{word-spacing:-15.540000px;}
.ws83{word-spacing:-15.480000px;}
.ws49{word-spacing:-15.420000px;}
.ws4a{word-spacing:-15.360000px;}
.ws69{word-spacing:-15.300000px;}
.ws2b{word-spacing:-15.240000px;}
.ws24{word-spacing:-15.180000px;}
.ws1d{word-spacing:-15.120000px;}
.ws1e{word-spacing:-15.060000px;}
.ws1f{word-spacing:-15.000000px;}
.ws20{word-spacing:-14.940000px;}
.wsad{word-spacing:-14.904000px;}
.ws27{word-spacing:-14.880000px;}
.wsb3{word-spacing:-14.850000px;}
.ws1b{word-spacing:-14.820000px;}
.ws59{word-spacing:-14.760000px;}
.ws75{word-spacing:-14.700000px;}
.ws79{word-spacing:-14.640000px;}
.wsc9{word-spacing:-14.634000px;}
.ws44{word-spacing:-14.580000px;}
.ws40{word-spacing:-14.520000px;}
.wsb5{word-spacing:-14.472000px;}
.ws23{word-spacing:-14.460000px;}
.ws1c{word-spacing:-14.400000px;}
.ws66{word-spacing:-14.340000px;}
.ws60{word-spacing:-14.310000px;}
.ws57{word-spacing:-14.280000px;}
.wsac{word-spacing:-14.256000px;}
.ws78{word-spacing:-14.220000px;}
.ws58{word-spacing:-14.160000px;}
.wsba{word-spacing:-14.148000px;}
.ws7c{word-spacing:-14.100000px;}
.ws9e{word-spacing:-14.094000px;}
.ws26{word-spacing:-14.040000px;}
.ws62{word-spacing:-13.986000px;}
.wsaf{word-spacing:-13.932000px;}
.ws67{word-spacing:-13.920000px;}
.wsb0{word-spacing:-13.878000px;}
.ws6a{word-spacing:-13.860000px;}
.ws48{word-spacing:-13.824000px;}
.ws5b{word-spacing:-13.770000px;}
.ws28{word-spacing:-13.740000px;}
.ws5a{word-spacing:-13.716000px;}
.ws46{word-spacing:-13.620000px;}
.ws29{word-spacing:-13.560000px;}
.ws47{word-spacing:-13.500000px;}
.ws63{word-spacing:-13.446000px;}
.ws9f{word-spacing:-13.230000px;}
.ws94{word-spacing:-13.200000px;}
.wsb1{word-spacing:-13.014000px;}
.ws64{word-spacing:-12.960000px;}
.ws61{word-spacing:-12.906000px;}
.ws3{word-spacing:-12.750000px;}
.wsb8{word-spacing:-12.204000px;}
.wsb7{word-spacing:-12.150000px;}
.ws95{word-spacing:-12.048000px;}
.ws2e{word-spacing:-12.000000px;}
.ws8b{word-spacing:-11.952000px;}
.ws92{word-spacing:-11.712000px;}
.wsbd{word-spacing:-11.583000px;}
.wsb2{word-spacing:-11.461500px;}
.wsa0{word-spacing:-11.430000px;}
.wsc8{word-spacing:-11.259000px;}
.wsb4{word-spacing:-11.097000px;}
.wsbc{word-spacing:-10.975500px;}
.wsab{word-spacing:-10.894500px;}
.wsaa{word-spacing:-10.732500px;}
.wsbb{word-spacing:-10.611000px;}
.wsc6{word-spacing:-10.570500px;}
.ws8d{word-spacing:-10.500000px;}
.ws93{word-spacing:-10.188000px;}
.wsca{word-spacing:-10.165500px;}
.wsa9{word-spacing:-10.125000px;}
.wsc7{word-spacing:-9.801000px;}
.ws1{word-spacing:-9.555000px;}
.ws2{word-spacing:-9.516780px;}
.wsb6{word-spacing:-8.788500px;}
.ws1a{word-spacing:-8.160000px;}
.ws65{word-spacing:-0.840000px;}
.wsa8{word-spacing:-0.780000px;}
.ws14{word-spacing:-0.720000px;}
.ws3f{word-spacing:-0.660000px;}
.wsa2{word-spacing:-0.648000px;}
.ws11{word-spacing:-0.600000px;}
.ws97{word-spacing:-0.594000px;}
.ws9{word-spacing:-0.561000px;}
.ws13{word-spacing:-0.540000px;}
.wsc1{word-spacing:-0.486000px;}
.ws50{word-spacing:-0.480000px;}
.ws6f{word-spacing:-0.432000px;}
.ws54{word-spacing:-0.420000px;}
.ws99{word-spacing:-0.384000px;}
.wsa6{word-spacing:-0.378000px;}
.ws45{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.357000px;}
.ws9a{word-spacing:-0.336000px;}
.ws71{word-spacing:-0.324000px;}
.wse{word-spacing:-0.306000px;}
.ws4c{word-spacing:-0.300000px;}
.ws5e{word-spacing:-0.270000px;}
.ws36{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.204000px;}
.ws19{word-spacing:-0.180000px;}
.ws6e{word-spacing:-0.162000px;}
.ws4b{word-spacing:-0.120000px;}
.ws73{word-spacing:-0.108000px;}
.ws7{word-spacing:-0.060000px;}
.wsa5{word-spacing:-0.054000px;}
.wsd{word-spacing:-0.051000px;}
.ws8{word-spacing:0.000000px;}
.ws98{word-spacing:0.048000px;}
.ws51{word-spacing:0.054000px;}
.ws3e{word-spacing:0.060000px;}
.ws5c{word-spacing:0.108000px;}
.ws3a{word-spacing:0.120000px;}
.wsbe{word-spacing:0.162000px;}
.ws68{word-spacing:0.180000px;}
.wsa7{word-spacing:0.216000px;}
.ws38{word-spacing:0.240000px;}
.ws53{word-spacing:0.300000px;}
.wsb{word-spacing:0.306000px;}
.wsc{word-spacing:0.357000px;}
.ws34{word-spacing:0.360000px;}
.ws72{word-spacing:0.378000px;}
.ws4f{word-spacing:0.420000px;}
.wsc2{word-spacing:0.432000px;}
.ws15{word-spacing:0.480000px;}
.wsc5{word-spacing:0.486000px;}
.ws39{word-spacing:0.540000px;}
.ws9c{word-spacing:0.576000px;}
.ws70{word-spacing:0.594000px;}
.ws4e{word-spacing:0.600000px;}
.wsc3{word-spacing:0.648000px;}
.ws16{word-spacing:0.660000px;}
.wsf{word-spacing:0.663000px;}
.ws9b{word-spacing:0.672000px;}
.wsc4{word-spacing:0.702000px;}
.ws4d{word-spacing:0.720000px;}
.ws5f{word-spacing:0.756000px;}
.ws17{word-spacing:0.780000px;}
.ws6d{word-spacing:0.810000px;}
.ws3d{word-spacing:0.840000px;}
.ws5d{word-spacing:0.864000px;}
.ws37{word-spacing:0.900000px;}
.ws52{word-spacing:0.918000px;}
.ws96{word-spacing:0.924000px;}
.ws3c{word-spacing:0.960000px;}
.ws33{word-spacing:1.020000px;}
.ws35{word-spacing:1.080000px;}
.wsa3{word-spacing:1.134000px;}
.ws3b{word-spacing:1.140000px;}
.ws9d{word-spacing:1.152000px;}
.ws21{word-spacing:1.200000px;}
.wsa4{word-spacing:1.242000px;}
.ws32{word-spacing:1.260000px;}
.ws6b{word-spacing:1.296000px;}
.ws12{word-spacing:1.320000px;}
.ws6c{word-spacing:1.350000px;}
.ws2f{word-spacing:1.380000px;}
.ws18{word-spacing:1.440000px;}
.ws31{word-spacing:1.500000px;}
.ws55{word-spacing:1.560000px;}
.ws56{word-spacing:1.620000px;}
.ws41{word-spacing:1.740000px;}
.ws74{word-spacing:2.280000px;}
.ws0{word-spacing:2.570580px;}
.wsae{word-spacing:2.721000px;}
.ws5{word-spacing:3.124440px;}
.ws4{word-spacing:3.208380px;}
.ws6{word-spacing:3.882900px;}
.wsb9{word-spacing:4.048500px;}
.ws7a{word-spacing:4.920000px;}
.wsbf{word-spacing:5.130000px;}
.wsa1{word-spacing:5.175000px;}
.wsc0{word-spacing:5.184000px;}
.ws30{word-spacing:5.940000px;}
.ws81{word-spacing:11.844000px;}
.ws87{word-spacing:14.448000px;}
.ws7e{word-spacing:17.052000px;}
.ws2d{word-spacing:36.000000px;}
.ws91{word-spacing:42.000000px;}
.ws88{word-spacing:51.198000px;}
.ws8e{word-spacing:52.500000px;}
.ws82{word-spacing:65.982000px;}
.ws80{word-spacing:66.948000px;}
.ws8a{word-spacing:69.552000px;}
.ws7f{word-spacing:90.552000px;}
.ws86{word-spacing:102.396000px;}
.ws89{word-spacing:106.302000px;}
.ws8f{word-spacing:116.400000px;}
.ws7d{word-spacing:129.948000px;}
.ws8c{word-spacing:135.198000px;}
.ws85{word-spacing:1476.762000px;}
._10{margin-left:-1304.628000px;}
._b{margin-left:-276.318000px;}
._11{margin-left:-107.604000px;}
._8{margin-left:-21.060000px;}
._19{margin-left:-7.938000px;}
._5{margin-left:-6.720000px;}
._2{margin-left:-5.580000px;}
._6{margin-left:-4.020000px;}
._1{margin-left:-2.805000px;}
._0{margin-left:-1.734000px;}
._3{width:1.365000px;}
._7{width:5.283000px;}
._12{width:6.600000px;}
._13{width:13.248000px;}
._4{width:47.286000px;}
._16{width:134.688000px;}
._f{width:136.500000px;}
._17{width:142.032000px;}
._18{width:143.664000px;}
._14{width:145.392000px;}
._15{width:146.544000px;}
._d{width:149.646000px;}
._e{width:150.948000px;}
._c{width:359.016000px;}
._a{width:629.814000px;}
._9{width:1138.086000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fs1{font-size:38.220000px;}
.fs9{font-size:40.500000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y143{bottom:5.062500px;}
.y108{bottom:5.077500px;}
.y14c{bottom:16.308000px;}
.y111{bottom:16.323000px;}
.y15c{bottom:16.908000px;}
.y121{bottom:16.923000px;}
.yb8{bottom:17.161500px;}
.yc5{bottom:17.706000px;}
.yf6{bottom:18.361500px;}
.y13b{bottom:20.188500px;}
.yf7{bottom:24.793500px;}
.y17c{bottom:26.752500px;}
.y199{bottom:29.382000px;}
.y1cf{bottom:29.623500px;}
.y1c9{bottom:31.681500px;}
.yb7{bottom:35.421000px;}
.yc4{bottom:35.965500px;}
.yf5{bottom:36.621000px;}
.y14b{bottom:38.295000px;}
.y110{bottom:38.310000px;}
.y15b{bottom:38.895000px;}
.y120{bottom:38.910000px;}
.y193{bottom:42.192000px;}
.y17b{bottom:46.765500px;}
.y198{bottom:47.757000px;}
.y17d{bottom:48.739500px;}
.y191{bottom:49.689000px;}
.y197{bottom:49.720500px;}
.y13c{bottom:50.397000px;}
.y179{bottom:51.175500px;}
.y135{bottom:51.363000px;}
.y172{bottom:51.364500px;}
.y173{bottom:51.459000px;}
.y1d2{bottom:52.020000px;}
.y19a{bottom:53.332500px;}
.y51{bottom:53.385000px;}
.y17e{bottom:53.445000px;}
.yeb{bottom:53.625000px;}
.yb6{bottom:53.796000px;}
.y1b6{bottom:53.820000px;}
.y1f6{bottom:53.931000px;}
.y13d{bottom:54.009000px;}
.yd5{bottom:54.030000px;}
.y6a{bottom:54.120000px;}
.y99{bottom:54.135000px;}
.yc3{bottom:54.340500px;}
.y1c{bottom:54.615000px;}
.yf4{bottom:54.996000px;}
.y6f{bottom:56.862000px;}
.y240{bottom:57.130500px;}
.y1c7{bottom:57.931500px;}
.y21a{bottom:58.185000px;}
.y16e{bottom:59.323500px;}
.y196{bottom:59.569500px;}
.y1d0{bottom:59.895000px;}
.y15a{bottom:62.026500px;}
.y11f{bottom:62.041500px;}
.y14a{bottom:62.623500px;}
.y10f{bottom:62.638500px;}
.y133{bottom:63.511500px;}
.y190{bottom:63.706500px;}
.y1ce{bottom:65.806500px;}
.y1c8{bottom:67.780500px;}
.y1f5{bottom:68.187000px;}
.yb5{bottom:70.533000px;}
.y170{bottom:70.632000px;}
.y50{bottom:70.635000px;}
.yea{bottom:70.875000px;}
.y1b5{bottom:71.070000px;}
.yc2{bottom:71.077500px;}
.y69{bottom:71.370000px;}
.y98{bottom:71.385000px;}
.yf3{bottom:71.733000px;}
.y1b{bottom:71.865000px;}
.ya9{bottom:72.171000px;}
.y102{bottom:72.264000px;}
.y6e{bottom:72.616500px;}
.yf8{bottom:72.715500px;}
.ya6{bottom:72.822000px;}
.y23f{bottom:72.880500px;}
.y192{bottom:73.734000px;}
.y1d8{bottom:73.810500px;}
.y17f{bottom:74.880000px;}
.y219{bottom:75.435000px;}
.yd6{bottom:75.465000px;}
.y1ca{bottom:76.306500px;}
.ycc{bottom:76.923000px;}
.y175{bottom:77.709000px;}
.ya7{bottom:79.059000px;}
.y1cc{bottom:80.244000px;}
.y13a{bottom:80.889000px;}
.y1f4{bottom:82.431000px;}
.y134{bottom:82.537500px;}
.y1d1{bottom:82.596000px;}
.y178{bottom:82.675500px;}
.y171{bottom:84.229500px;}
.y132{bottom:85.173000px;}
.y159{bottom:85.315500px;}
.y11e{bottom:85.330500px;}
.y1c4{bottom:85.494000px;}
.yd7{bottom:85.785000px;}
.y104{bottom:85.798500px;}
.y149{bottom:85.839000px;}
.y10e{bottom:85.854000px;}
.y4f{bottom:87.885000px;}
.ye9{bottom:88.125000px;}
.y1b4{bottom:88.320000px;}
.y6d{bottom:88.371000px;}
.y68{bottom:88.620000px;}
.y23e{bottom:88.626000px;}
.y97{bottom:88.635000px;}
.y1a{bottom:89.115000px;}
.yf9{bottom:89.316000px;}
.yb4{bottom:90.546000px;}
.yc1{bottom:91.090500px;}
.y194{bottom:91.405500px;}
.yf2{bottom:91.746000px;}
.y1cd{bottom:92.056500px;}
.y1d7{bottom:92.319000px;}
.y218{bottom:92.685000px;}
.y1cb{bottom:94.681500px;}
.y1f3{bottom:96.681000px;}
.y13e{bottom:97.972500px;}
.y17a{bottom:99.076500px;}
.yfb{bottom:102.178500px;}
.y195{bottom:102.231000px;}
.y139{bottom:103.201500px;}
.ycd{bottom:103.498500px;}
.y16f{bottom:103.675500px;}
.y6c{bottom:104.125500px;}
.yfe{bottom:104.236500px;}
.y18f{bottom:104.299500px;}
.y23d{bottom:104.380500px;}
.y4e{bottom:105.135000px;}
.ye8{bottom:105.375000px;}
.y1b3{bottom:105.570000px;}
.y67{bottom:105.870000px;}
.y96{bottom:105.885000px;}
.y18e{bottom:106.179000px;}
.y19{bottom:106.365000px;}
.y1d6{bottom:106.575000px;}
.y105{bottom:108.793500px;}
.yb3{bottom:109.246500px;}
.y131{bottom:109.459500px;}
.yda{bottom:109.567500px;}
.yc0{bottom:109.791000px;}
.y217{bottom:109.935000px;}
.y136{bottom:110.425500px;}
.yf1{bottom:110.446500px;}
.y1f2{bottom:110.937000px;}
.y148{bottom:111.112500px;}
.y10d{bottom:111.127500px;}
.y158{bottom:111.397500px;}
.y11d{bottom:111.412500px;}
.y176{bottom:113.377500px;}
.yfa{bottom:114.222000px;}
.ycb{bottom:115.311000px;}
.yfc{bottom:118.831500px;}
.y6b{bottom:119.880000px;}
.y23c{bottom:120.126000px;}
.y4d{bottom:122.385000px;}
.ye7{bottom:122.625000px;}
.y1b2{bottom:122.820000px;}
.y1c6{bottom:122.895000px;}
.y66{bottom:123.120000px;}
.y95{bottom:123.135000px;}
.y18{bottom:123.615000px;}
.ydb{bottom:124.992000px;}
.y1f1{bottom:125.181000px;}
.y216{bottom:127.185000px;}
.y177{bottom:127.395000px;}
.yb2{bottom:128.272500px;}
.ybf{bottom:128.827500px;}
.yf0{bottom:129.472500px;}
.y103{bottom:129.573000px;}
.y174{bottom:133.579500px;}
.y147{bottom:133.582500px;}
.y10c{bottom:133.597500px;}
.y157{bottom:133.636500px;}
.y11c{bottom:133.651500px;}
.ye1{bottom:134.347500px;}
.ydd{bottom:135.534000px;}
.y23b{bottom:135.880500px;}
.y1c5{bottom:136.020000px;}
.yd8{bottom:138.442500px;}
.y1f0{bottom:139.425000px;}
.y138{bottom:139.626000px;}
.y4c{bottom:139.635000px;}
.ye6{bottom:139.875000px;}
.y1b1{bottom:140.070000px;}
.y65{bottom:140.370000px;}
.y94{bottom:140.385000px;}
.yce{bottom:140.574000px;}
.y17{bottom:140.865000px;}
.ya5{bottom:142.384500px;}
.y137{bottom:142.912500px;}
.y9d{bottom:143.695500px;}
.y215{bottom:144.435000px;}
.yb1{bottom:146.647500px;}
.ybe{bottom:147.202500px;}
.y12e{bottom:147.511500px;}
.yef{bottom:147.847500px;}
.y19b{bottom:149.145000px;}
.y1e1{bottom:151.377000px;}
.y23a{bottom:151.630500px;}
.y1ef{bottom:153.681000px;}
.y1be{bottom:154.395000px;}
.yd9{bottom:154.455000px;}
.y1d3{bottom:156.274500px;}
.y4b{bottom:156.885000px;}
.ye5{bottom:157.125000px;}
.y1b0{bottom:157.320000px;}
.y64{bottom:157.620000px;}
.y146{bottom:157.627500px;}
.y93{bottom:157.635000px;}
.y10b{bottom:157.642500px;}
.y16{bottom:158.115000px;}
.y156{bottom:158.332500px;}
.y11b{bottom:158.347500px;}
.yc7{bottom:158.959500px;}
.y9e{bottom:159.046500px;}
.y165{bottom:160.627500px;}
.y1c3{bottom:161.619000px;}
.y214{bottom:161.685000px;}
.yb0{bottom:165.022500px;}
.yc9{bottom:165.196500px;}
.ybd{bottom:165.577500px;}
.yee{bottom:166.222500px;}
.y239{bottom:167.380500px;}
.yd3{bottom:167.559000px;}
.y1ee{bottom:167.925000px;}
.yad{bottom:169.621500px;}
.y130{bottom:171.147000px;}
.y15d{bottom:171.789000px;}
.y9c{bottom:171.909000px;}
.yd1{bottom:173.376000px;}
.yaa{bottom:173.559000px;}
.y4a{bottom:174.135000px;}
.ye4{bottom:174.375000px;}
.y1af{bottom:174.570000px;}
.y1bd{bottom:174.733500px;}
.y164{bottom:174.739500px;}
.y63{bottom:174.870000px;}
.y92{bottom:174.885000px;}
.y15{bottom:175.365000px;}
.y12f{bottom:175.735500px;}
.yac{bottom:176.509500px;}
.yfd{bottom:177.085500px;}
.y1e0{bottom:177.453000px;}
.y129{bottom:178.686000px;}
.y213{bottom:178.935000px;}
.y19f{bottom:179.791500px;}
.y155{bottom:181.138500px;}
.y11a{bottom:181.153500px;}
.y145{bottom:181.420500px;}
.y10a{bottom:181.435500px;}
.ya4{bottom:182.085000px;}
.y15e{bottom:182.289000px;}
.y100{bottom:182.514000px;}
.ycf{bottom:182.574000px;}
.ye0{bottom:182.584500px;}
.yca{bottom:182.910000px;}
.y238{bottom:183.130500px;}
.yaf{bottom:183.397500px;}
.ybc{bottom:183.952500px;}
.yed{bottom:184.597500px;}
.ya3{bottom:185.361000px;}
.ydc{bottom:187.824000px;}
.yc6{bottom:188.160000px;}
.y1b8{bottom:188.457000px;}
.y184{bottom:190.263000px;}
.y180{bottom:191.376000px;}
.y49{bottom:191.385000px;}
.ye3{bottom:191.625000px;}
.y1ae{bottom:191.820000px;}
.y62{bottom:192.120000px;}
.y91{bottom:192.135000px;}
.y16c{bottom:192.453000px;}
.y14{bottom:192.615000px;}
.ya8{bottom:194.559000px;}
.y18c{bottom:195.429000px;}
.y1bf{bottom:195.744000px;}
.y212{bottom:196.185000px;}
.y128{bottom:197.386500px;}
.y1df{bottom:197.529000px;}
.yd0{bottom:197.662500px;}
.y237{bottom:198.876000px;}
.yd2{bottom:199.626000px;}
.yae{bottom:201.111000px;}
.ybb{bottom:201.666000px;}
.yec{bottom:202.311000px;}
.y144{bottom:205.213500px;}
.y109{bottom:205.228500px;}
.y154{bottom:205.257000px;}
.y119{bottom:205.272000px;}
.yc8{bottom:205.884000px;}
.yd4{bottom:206.514000px;}
.y101{bottom:207.451500px;}
.ye2{bottom:207.532500px;}
.yab{bottom:207.684000px;}
.yde{bottom:207.721500px;}
.yff{bottom:208.438500px;}
.y48{bottom:208.635000px;}
.ya1{bottom:208.659000px;}
.ya2{bottom:208.732500px;}
.y9f{bottom:208.921500px;}
.y1ad{bottom:209.070000px;}
.ya0{bottom:209.247000px;}
.y61{bottom:209.370000px;}
.y90{bottom:209.385000px;}
.ydf{bottom:209.496000px;}
.y166{bottom:209.515500px;}
.y13{bottom:209.865000px;}
.y1ba{bottom:210.171000px;}
.y126{bottom:210.511500px;}
.y12a{bottom:210.847500px;}
.y1ed{bottom:211.635000px;}
.y163{bottom:213.127500px;}
.y19e{bottom:213.223500px;}
.y236{bottom:214.630500px;}
.y189{bottom:216.418500px;}
.y18b{bottom:217.741500px;}
.y122{bottom:219.373500px;}
.y1bc{bottom:220.671000px;}
.y16a{bottom:220.677000px;}
.y18d{bottom:221.679000px;}
.y161{bottom:222.315000px;}
.y186{bottom:222.981000px;}
.y124{bottom:223.636500px;}
.y182{bottom:224.955000px;}
.y16d{bottom:225.685500px;}
.y47{bottom:225.885000px;}
.y1ac{bottom:226.320000px;}
.y60{bottom:226.620000px;}
.y8f{bottom:226.635000px;}
.y12{bottom:227.115000px;}
.y211{bottom:228.732000px;}
.y1ec{bottom:228.885000px;}
.y14d{bottom:229.008000px;}
.y112{bottom:229.023000px;}
.y153{bottom:229.123500px;}
.y118{bottom:229.138500px;}
.y1c0{bottom:229.218000px;}
.y1c2{bottom:229.869000px;}
.y235{bottom:230.380500px;}
.y106{bottom:231.330000px;}
.y16b{bottom:238.065000px;}
.y18a{bottom:238.080000px;}
.y160{bottom:239.871000px;}
.y127{bottom:240.048000px;}
.y12d{bottom:241.035000px;}
.y183{bottom:241.125000px;}
.y1b9{bottom:242.332500px;}
.y1bb{bottom:242.983500px;}
.y46{bottom:243.135000px;}
.y1ab{bottom:243.570000px;}
.y5f{bottom:243.870000px;}
.y8e{bottom:243.885000px;}
.y167{bottom:243.966000px;}
.y11{bottom:244.365000px;}
.y210{bottom:244.486500px;}
.y234{bottom:246.126000px;}
.y1eb{bottom:246.135000px;}
.y185{bottom:248.338500px;}
.y162{bottom:248.733000px;}
.y15f{bottom:249.877500px;}
.y181{bottom:250.701000px;}
.y188{bottom:250.869000px;}
.y125{bottom:252.511500px;}
.y107{bottom:252.765000px;}
.y14e{bottom:253.210500px;}
.y113{bottom:253.225500px;}
.y152{bottom:253.735500px;}
.y117{bottom:253.750500px;}
.y169{bottom:254.802000px;}
.y123{bottom:255.462000px;}
.y1c1{bottom:255.468000px;}
.y12b{bottom:255.472500px;}
.y20f{bottom:260.241000px;}
.y45{bottom:260.385000px;}
.y1aa{bottom:260.820000px;}
.y5e{bottom:261.120000px;}
.y8d{bottom:261.135000px;}
.y10{bottom:261.615000px;}
.y233{bottom:261.880500px;}
.y1ea{bottom:263.385000px;}
.y187{bottom:267.606000px;}
.y20e{bottom:275.995500px;}
.y14f{bottom:277.077000px;}
.y114{bottom:277.092000px;}
.y151{bottom:277.360500px;}
.y116{bottom:277.375500px;}
.y232{bottom:277.612500px;}
.y44{bottom:277.635000px;}
.y1a9{bottom:278.070000px;}
.y5d{bottom:278.370000px;}
.y8c{bottom:278.385000px;}
.yf{bottom:278.865000px;}
.y1e9{bottom:280.635000px;}
.y12c{bottom:282.205500px;}
.y168{bottom:283.015500px;}
.y20d{bottom:291.750000px;}
.y231{bottom:293.367000px;}
.y43{bottom:294.885000px;}
.y1a8{bottom:295.320000px;}
.y5c{bottom:295.620000px;}
.y8b{bottom:295.635000px;}
.y1e8{bottom:297.885000px;}
.y1de{bottom:298.857000px;}
.y150{bottom:301.027500px;}
.y115{bottom:301.042500px;}
.y230{bottom:309.121500px;}
.y42{bottom:312.135000px;}
.y1a7{bottom:312.570000px;}
.y5b{bottom:312.870000px;}
.y8a{bottom:312.885000px;}
.y1e7{bottom:315.135000px;}
.yb9{bottom:322.410000px;}
.y20c{bottom:322.800000px;}
.y22f{bottom:324.876000px;}
.y41{bottom:329.385000px;}
.y1a6{bottom:329.820000px;}
.y5a{bottom:330.120000px;}
.y89{bottom:330.135000px;}
.y1e6{bottom:332.385000px;}
.y22e{bottom:340.630500px;}
.ye{bottom:342.885000px;}
.yba{bottom:343.845000px;}
.y40{bottom:346.635000px;}
.y1a5{bottom:347.070000px;}
.y59{bottom:347.370000px;}
.y88{bottom:347.385000px;}
.y1e5{bottom:349.635000px;}
.y20b{bottom:355.771500px;}
.y22d{bottom:356.344500px;}
.yd{bottom:357.897000px;}
.y140{bottom:358.360500px;}
.y3f{bottom:363.885000px;}
.y1a4{bottom:364.320000px;}
.y58{bottom:364.620000px;}
.y87{bottom:364.635000px;}
.y1e4{bottom:366.885000px;}
.y20a{bottom:371.526000px;}
.y22c{bottom:372.099000px;}
.yc{bottom:372.891000px;}
.y3e{bottom:381.135000px;}
.y1a3{bottom:381.570000px;}
.y57{bottom:381.870000px;}
.y86{bottom:381.885000px;}
.y209{bottom:387.280500px;}
.y22b{bottom:387.853500px;}
.yb{bottom:387.891000px;}
.y13f{bottom:391.792500px;}
.y3d{bottom:398.385000px;}
.y1a2{bottom:398.820000px;}
.y56{bottom:399.120000px;}
.y85{bottom:399.135000px;}
.y1dd{bottom:399.909000px;}
.y1e3{bottom:401.380500px;}
.ya{bottom:402.891000px;}
.y208{bottom:403.035000px;}
.y22a{bottom:403.608000px;}
.y3c{bottom:415.635000px;}
.y1a1{bottom:416.070000px;}
.y55{bottom:416.370000px;}
.y84{bottom:416.385000px;}
.y1e2{bottom:417.135000px;}
.y9{bottom:417.884250px;}
.y229{bottom:419.362500px;}
.y3b{bottom:432.885000px;}
.y1a0{bottom:433.320000px;}
.y83{bottom:433.635000px;}
.y207{bottom:434.100000px;}
.y228{bottom:435.117000px;}
.y8{bottom:447.885000px;}
.y3a{bottom:450.135000px;}
.y227{bottom:450.871500px;}
.y82{bottom:450.885000px;}
.y206{bottom:451.350000px;}
.y54{bottom:452.736000px;}
.y226{bottom:466.626000px;}
.y39{bottom:467.385000px;}
.y81{bottom:468.135000px;}
.y53{bottom:468.490500px;}
.y205{bottom:468.600000px;}
.y1b7{bottom:479.086500px;}
.y225{bottom:482.380500px;}
.y7{bottom:483.903000px;}
.y52{bottom:484.245000px;}
.y38{bottom:484.635000px;}
.y80{bottom:485.385000px;}
.y204{bottom:485.850000px;}
.y141{bottom:497.595000px;}
.y224{bottom:498.130500px;}
.y6{bottom:498.897000px;}
.y37{bottom:501.885000px;}
.y7f{bottom:502.635000px;}
.y203{bottom:503.100000px;}
.y1dc{bottom:503.673000px;}
.y223{bottom:513.867000px;}
.y5{bottom:513.891000px;}
.y142{bottom:519.030000px;}
.y36{bottom:519.135000px;}
.y7e{bottom:519.885000px;}
.y202{bottom:520.350000px;}
.y4{bottom:528.891000px;}
.y222{bottom:529.621500px;}
.y35{bottom:536.385000px;}
.y7d{bottom:537.135000px;}
.y3{bottom:543.891000px;}
.y221{bottom:545.376000px;}
.y201{bottom:553.317000px;}
.y34{bottom:553.635000px;}
.y2{bottom:558.885000px;}
.y220{bottom:561.130500px;}
.y200{bottom:569.071500px;}
.y33{bottom:570.885000px;}
.y7c{bottom:571.594500px;}
.y21f{bottom:576.880500px;}
.y1ff{bottom:584.826000px;}
.y7b{bottom:587.349000px;}
.y32{bottom:588.135000px;}
.y1{bottom:588.885000px;}
.y9a{bottom:588.930000px;}
.y21e{bottom:592.626000px;}
.y1fe{bottom:600.580500px;}
.y7a{bottom:603.103500px;}
.y31{bottom:605.385000px;}
.y1db{bottom:605.973000px;}
.y21d{bottom:608.380500px;}
.y9b{bottom:610.365000px;}
.y1fd{bottom:616.335000px;}
.y79{bottom:618.858000px;}
.y23{bottom:622.170000px;}
.y30{bottom:622.635000px;}
.y1d5{bottom:623.217000px;}
.y19d{bottom:623.227500px;}
.y21c{bottom:624.135000px;}
.y78{bottom:634.612500px;}
.y2f{bottom:639.885000px;}
.y1fc{bottom:647.385000px;}
.y21b{bottom:648.510000px;}
.y77{bottom:650.367000px;}
.y248{bottom:654.880500px;}
.y1d4{bottom:656.649000px;}
.y19c{bottom:656.659500px;}
.y2e{bottom:657.135000px;}
.y76{bottom:666.121500px;}
.y247{bottom:670.626000px;}
.y2d{bottom:674.385000px;}
.y1fb{bottom:681.867000px;}
.y75{bottom:681.876000px;}
.y246{bottom:686.380500px;}
.y2c{bottom:691.635000px;}
.y1fa{bottom:697.621500px;}
.y74{bottom:697.630500px;}
.y245{bottom:702.126000px;}
.y2b{bottom:708.885000px;}
.y1da{bottom:709.725000px;}
.y1f9{bottom:713.376000px;}
.y73{bottom:713.385000px;}
.y22{bottom:717.333000px;}
.y244{bottom:717.880500px;}
.y2a{bottom:726.135000px;}
.y1f8{bottom:729.130500px;}
.y21{bottom:731.589000px;}
.y243{bottom:733.621500px;}
.y29{bottom:743.385000px;}
.y1f7{bottom:744.885000px;}
.y20{bottom:745.845000px;}
.y72{bottom:746.385000px;}
.y242{bottom:749.376000px;}
.y28{bottom:760.635000px;}
.y1f{bottom:763.845000px;}
.y241{bottom:765.130500px;}
.y27{bottom:777.885000px;}
.y71{bottom:780.876000px;}
.y26{bottom:795.135000px;}
.y70{bottom:796.630500px;}
.y1e{bottom:808.845000px;}
.y1d9{bottom:809.085000px;}
.y25{bottom:812.385000px;}
.y1d{bottom:859.845000px;}
.y24{bottom:922.500000px;}
.hb{height:41.220703px;}
.h11{height:44.202703px;}
.h8{height:47.085938px;}
.h14{height:47.109375px;}
.h5{height:48.375000px;}
.h2{height:50.053711px;}
.h3{height:50.056711px;}
.h1{height:51.398438px;}
.h7{height:52.998047px;}
.h1b{height:53.016047px;}
.h1a{height:53.034047px;}
.h1f{height:53.052047px;}
.h1c{height:53.070047px;}
.h1e{height:53.088047px;}
.h1d{height:53.160047px;}
.h17{height:54.366703px;}
.h9{height:54.421875px;}
.h4{height:58.886719px;}
.h19{height:60.468750px;}
.h18{height:61.020703px;}
.hf{height:61.380703px;}
.h15{height:62.220703px;}
.h16{height:67.470703px;}
.h10{height:74.022703px;}
.hd{height:88.470703px;}
.h6{height:94.171875px;}
.h13{height:95.022703px;}
.ha{height:221.160000px;}
.he{height:222.495000px;}
.hc{height:222.510000px;}
.h12{height:312.495000px;}
.h0{height:892.500000px;}
.w1{width:488.970000px;}
.w2{width:488.985000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x5{left:4.500000px;}
.x3d{left:34.212000px;}
.x6e{left:35.607000px;}
.x56{left:37.197000px;}
.x3c{left:39.462000px;}
.x6d{left:40.857000px;}
.x55{left:42.447000px;}
.x7e{left:43.962000px;}
.x1d{left:46.539000px;}
.x6f{left:48.658500px;}
.x57{left:50.248500px;}
.x1e{left:54.487500px;}
.x7f{left:57.013500px;}
.x1f{left:59.601000px;}
.x52{left:66.309000px;}
.x3f{left:67.380000px;}
.x59{left:68.721000px;}
.x2f{left:73.200000px;}
.x1{left:74.700000px;}
.x6{left:75.915000px;}
.x8d{left:77.358000px;}
.x1c{left:79.021500px;}
.x20{left:80.064000px;}
.x30{left:83.386500px;}
.x6b{left:87.789000px;}
.x40{left:89.367000px;}
.x91{left:90.906000px;}
.x2{left:91.950000px;}
.x7{left:93.165000px;}
.x31{left:96.154500px;}
.x8{left:97.200000px;}
.x9{left:98.415000px;}
.x21{left:99.426000px;}
.x8e{left:100.530000px;}
.x1b{left:102.321000px;}
.x41{left:110.041500px;}
.x32{left:112.618500px;}
.x8f{left:114.222000px;}
.x51{left:116.677500px;}
.x42{left:119.554500px;}
.x1a{left:122.670000px;}
.x29{left:124.246500px;}
.x5a{left:125.326500px;}
.x2a{left:130.032000px;}
.x43{left:131.367000px;}
.x5b{left:134.682000px;}
.x50{left:135.987000px;}
.x19{left:137.758500px;}
.x22{left:138.801000px;}
.x8c{left:141.408000px;}
.x33{left:142.690500px;}
.x81{left:144.064500px;}
.x18{left:145.959000px;}
.x5c{left:150.264000px;}
.x8b{left:152.086500px;}
.x7b{left:153.795000px;}
.x71{left:157.396500px;}
.x17{left:159.084000px;}
.x2b{left:164.482500px;}
.x44{left:174.679500px;}
.x5d{left:177.175500px;}
.x6a{left:178.950000px;}
.x16{left:181.722000px;}
.x23{left:184.413000px;}
.x34{left:187.851000px;}
.x45{left:190.104000px;}
.x5e{left:195.718500px;}
.x46{left:197.328000px;}
.x69{left:199.320000px;}
.x8a{left:201.793500px;}
.x35{left:203.275500px;}
.x4f{left:204.888000px;}
.x15{left:207.972000px;}
.x24{left:209.350500px;}
.x13{left:212.571000px;}
.x4e{left:214.401000px;}
.x36{left:215.413500px;}
.x25{left:216.900000px;}
.x14{left:218.472000px;}
.x2c{left:219.513000px;}
.x68{left:221.359500px;}
.x7a{left:227.946000px;}
.x26{left:231.337500px;}
.x47{left:232.440000px;}
.x67{left:236.154000px;}
.x12{left:237.183000px;}
.x5f{left:238.222500px;}
.x72{left:241.711500px;}
.x11{left:244.783500px;}
.x60{left:254.959500px;}
.x48{left:258.039000px;}
.x4d{left:263.299500px;}
.x66{left:264.346500px;}
.x89{left:267.418500px;}
.x79{left:268.633500px;}
.x82{left:273.330000px;}
.x37{left:276.093000px;}
.x10{left:277.218000px;}
.x65{left:300.739500px;}
.x78{left:301.939500px;}
.x73{left:304.386000px;}
.xa{left:307.575000px;}
.xf{left:310.965000px;}
.x38{left:312.517500px;}
.x90{left:315.990000px;}
.x61{left:317.308500px;}
.x4c{left:319.737000px;}
.x88{left:321.231000px;}
.x74{left:325.386000px;}
.x2d{left:329.112000px;}
.xe{left:330.978000px;}
.x27{left:333.051000px;}
.x62{left:338.308500px;}
.x4b{left:341.724000px;}
.xd{left:346.077000px;}
.x87{left:348.793500px;}
.x77{left:350.250000px;}
.x39{left:351.651000px;}
.x28{left:353.725500px;}
.x83{left:356.017500px;}
.x86{left:358.642500px;}
.x64{left:361.293000px;}
.x4a{left:364.362000px;}
.x76{left:369.654000px;}
.xc{left:371.392500px;}
.x84{left:375.705000px;}
.x63{left:377.347500px;}
.x49{left:380.437500px;}
.x75{left:388.396500px;}
.x85{left:392.767500px;}
.x2e{left:394.642500px;}
.xb{left:395.668500px;}
.x3a{left:396.832500px;}
.x4{left:408.120000px;}
.x3{left:412.380000px;}
.x3b{left:413.488500px;}
.x6c{left:414.883500px;}
.x54{left:416.473500px;}
.x7d{left:423.238500px;}
.x3e{left:424.401000px;}
.x70{left:425.796000px;}
.x58{left:427.386000px;}
.x80{left:434.151000px;}
.x53{left:533.664000px;}
.x7c{left:534.871500px;}
@media print{
.v14{vertical-align:-65.333333pt;}
.v9{vertical-align:-63.690667pt;}
.vf{vertical-align:-46.704000pt;}
.v8{vertical-align:-45.024000pt;}
.v1{vertical-align:-40.058667pt;}
.v7{vertical-align:-26.096000pt;}
.v5{vertical-align:-24.490667pt;}
.v12{vertical-align:-17.509333pt;}
.vd{vertical-align:-15.717333pt;}
.v11{vertical-align:-14.000000pt;}
.v17{vertical-align:-9.333333pt;}
.vc{vertical-align:-6.981333pt;}
.ve{vertical-align:-5.861333pt;}
.v13{vertical-align:-2.016000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.650667pt;}
.v16{vertical-align:11.685333pt;}
.v6{vertical-align:17.920000pt;}
.v15{vertical-align:23.333333pt;}
.va{vertical-align:29.157333pt;}
.v4{vertical-align:37.333333pt;}
.v2{vertical-align:40.842667pt;}
.v3{vertical-align:42.000000pt;}
.v10{vertical-align:47.824000pt;}
.ls22{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.226667pt;}
.ls78{letter-spacing:-1.200000pt;}
.ls76{letter-spacing:-1.188000pt;}
.ls44{letter-spacing:-1.173333pt;}
.ls77{letter-spacing:-1.152000pt;}
.ls21{letter-spacing:-1.120000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls2f{letter-spacing:-1.013333pt;}
.ls31{letter-spacing:-0.960000pt;}
.ls32{letter-spacing:-0.906667pt;}
.ls1f{letter-spacing:-0.853333pt;}
.ls3c{letter-spacing:-0.800000pt;}
.ls62{letter-spacing:-0.768000pt;}
.ls3b{letter-spacing:-0.746667pt;}
.ls13{letter-spacing:-0.725333pt;}
.ls24{letter-spacing:-0.693333pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls43{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls3f{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.498667pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls3d{letter-spacing:-0.432000pt;}
.ls2c{letter-spacing:-0.426667pt;}
.ls4f{letter-spacing:-0.410667pt;}
.lsc{letter-spacing:-0.408000pt;}
.ls2d{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.339733pt;}
.ls80{letter-spacing:-0.336000pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.317333pt;}
.ls61{letter-spacing:-0.288000pt;}
.ls30{letter-spacing:-0.266667pt;}
.ls5e{letter-spacing:-0.256000pt;}
.ls40{letter-spacing:-0.240000pt;}
.ls23{letter-spacing:-0.213333pt;}
.ls75{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.106667pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.090667pt;}
.ls6{letter-spacing:-0.067947pt;}
.lse{letter-spacing:-0.053333pt;}
.ls41{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:-0.045333pt;}
.ls50{letter-spacing:-0.042667pt;}
.ls8{letter-spacing:-0.033973pt;}
.ls4{letter-spacing:0.000000pt;}
.ls68{letter-spacing:0.012000pt;}
.ls7f{letter-spacing:0.036000pt;}
.ls5d{letter-spacing:0.042667pt;}
.ls5f{letter-spacing:0.048000pt;}
.ls3{letter-spacing:0.053333pt;}
.ls7c{letter-spacing:0.058667pt;}
.ls70{letter-spacing:0.069333pt;}
.ls14{letter-spacing:0.106667pt;}
.ls38{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.213333pt;}
.ls36{letter-spacing:0.240000pt;}
.ls34{letter-spacing:0.266667pt;}
.ls28{letter-spacing:0.288000pt;}
.ls29{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.336000pt;}
.ls7a{letter-spacing:0.368000pt;}
.ls16{letter-spacing:0.373333pt;}
.ls69{letter-spacing:0.384000pt;}
.ls71{letter-spacing:0.389333pt;}
.ls7b{letter-spacing:0.396000pt;}
.ls15{letter-spacing:0.426667pt;}
.ls3e{letter-spacing:0.432000pt;}
.ls5b{letter-spacing:0.469333pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls60{letter-spacing:0.528000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls63{letter-spacing:0.540000pt;}
.ls79{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls6f{letter-spacing:0.592000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.672000pt;}
.ls64{letter-spacing:0.684000pt;}
.ls1d{letter-spacing:0.693333pt;}
.ls39{letter-spacing:0.720000pt;}
.ls1{letter-spacing:0.746667pt;}
.ls72{letter-spacing:0.756000pt;}
.ls3a{letter-spacing:0.768000pt;}
.ls6d{letter-spacing:0.794667pt;}
.ls2b{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.853333pt;}
.ls6e{letter-spacing:0.864000pt;}
.ls1c{letter-spacing:0.906667pt;}
.ls18{letter-spacing:0.960000pt;}
.ls7e{letter-spacing:1.008000pt;}
.ls17{letter-spacing:1.013333pt;}
.ls7d{letter-spacing:1.024000pt;}
.ls5c{letter-spacing:1.056000pt;}
.ls26{letter-spacing:1.066667pt;}
.ls25{letter-spacing:1.120000pt;}
.ls6c{letter-spacing:1.152000pt;}
.ls6b{letter-spacing:1.188000pt;}
.ls66{letter-spacing:1.200000pt;}
.ls73{letter-spacing:1.216000pt;}
.ls65{letter-spacing:1.248000pt;}
.ls46{letter-spacing:1.280000pt;}
.ls74{letter-spacing:1.296000pt;}
.ls12{letter-spacing:1.333333pt;}
.ls57{letter-spacing:5.386667pt;}
.ls67{letter-spacing:11.424000pt;}
.ls4c{letter-spacing:12.800000pt;}
.ls6a{letter-spacing:13.584000pt;}
.ls5a{letter-spacing:14.506667pt;}
.ls4b{letter-spacing:14.826667pt;}
.ls58{letter-spacing:23.333333pt;}
.ls52{letter-spacing:24.826667pt;}
.ls4a{letter-spacing:30.650667pt;}
.ls4e{letter-spacing:31.509333pt;}
.ls54{letter-spacing:35.018667pt;}
.ls53{letter-spacing:36.736000pt;}
.ls48{letter-spacing:40.842667pt;}
.ls49{letter-spacing:60.592000pt;}
.ls55{letter-spacing:60.666667pt;}
.ls59{letter-spacing:62.981333pt;}
.ls56{letter-spacing:63.018667pt;}
.ls51{letter-spacing:70.000000pt;}
.ls4d{letter-spacing:113.978667pt;}
.ls47{letter-spacing:179.797333pt;}
.ws77{word-spacing:-14.666667pt;}
.ws42{word-spacing:-14.453333pt;}
.ws43{word-spacing:-14.400000pt;}
.ws84{word-spacing:-14.346667pt;}
.ws22{word-spacing:-14.293333pt;}
.ws76{word-spacing:-14.186667pt;}
.ws7b{word-spacing:-14.080000pt;}
.ws2c{word-spacing:-14.026667pt;}
.ws2a{word-spacing:-13.920000pt;}
.ws25{word-spacing:-13.866667pt;}
.ws90{word-spacing:-13.813333pt;}
.ws83{word-spacing:-13.760000pt;}
.ws49{word-spacing:-13.706667pt;}
.ws4a{word-spacing:-13.653333pt;}
.ws69{word-spacing:-13.600000pt;}
.ws2b{word-spacing:-13.546667pt;}
.ws24{word-spacing:-13.493333pt;}
.ws1d{word-spacing:-13.440000pt;}
.ws1e{word-spacing:-13.386667pt;}
.ws1f{word-spacing:-13.333333pt;}
.ws20{word-spacing:-13.280000pt;}
.wsad{word-spacing:-13.248000pt;}
.ws27{word-spacing:-13.226667pt;}
.wsb3{word-spacing:-13.200000pt;}
.ws1b{word-spacing:-13.173333pt;}
.ws59{word-spacing:-13.120000pt;}
.ws75{word-spacing:-13.066667pt;}
.ws79{word-spacing:-13.013333pt;}
.wsc9{word-spacing:-13.008000pt;}
.ws44{word-spacing:-12.960000pt;}
.ws40{word-spacing:-12.906667pt;}
.wsb5{word-spacing:-12.864000pt;}
.ws23{word-spacing:-12.853333pt;}
.ws1c{word-spacing:-12.800000pt;}
.ws66{word-spacing:-12.746667pt;}
.ws60{word-spacing:-12.720000pt;}
.ws57{word-spacing:-12.693333pt;}
.wsac{word-spacing:-12.672000pt;}
.ws78{word-spacing:-12.640000pt;}
.ws58{word-spacing:-12.586667pt;}
.wsba{word-spacing:-12.576000pt;}
.ws7c{word-spacing:-12.533333pt;}
.ws9e{word-spacing:-12.528000pt;}
.ws26{word-spacing:-12.480000pt;}
.ws62{word-spacing:-12.432000pt;}
.wsaf{word-spacing:-12.384000pt;}
.ws67{word-spacing:-12.373333pt;}
.wsb0{word-spacing:-12.336000pt;}
.ws6a{word-spacing:-12.320000pt;}
.ws48{word-spacing:-12.288000pt;}
.ws5b{word-spacing:-12.240000pt;}
.ws28{word-spacing:-12.213333pt;}
.ws5a{word-spacing:-12.192000pt;}
.ws46{word-spacing:-12.106667pt;}
.ws29{word-spacing:-12.053333pt;}
.ws47{word-spacing:-12.000000pt;}
.ws63{word-spacing:-11.952000pt;}
.ws9f{word-spacing:-11.760000pt;}
.ws94{word-spacing:-11.733333pt;}
.wsb1{word-spacing:-11.568000pt;}
.ws64{word-spacing:-11.520000pt;}
.ws61{word-spacing:-11.472000pt;}
.ws3{word-spacing:-11.333333pt;}
.wsb8{word-spacing:-10.848000pt;}
.wsb7{word-spacing:-10.800000pt;}
.ws95{word-spacing:-10.709333pt;}
.ws2e{word-spacing:-10.666667pt;}
.ws8b{word-spacing:-10.624000pt;}
.ws92{word-spacing:-10.410667pt;}
.wsbd{word-spacing:-10.296000pt;}
.wsb2{word-spacing:-10.188000pt;}
.wsa0{word-spacing:-10.160000pt;}
.wsc8{word-spacing:-10.008000pt;}
.wsb4{word-spacing:-9.864000pt;}
.wsbc{word-spacing:-9.756000pt;}
.wsab{word-spacing:-9.684000pt;}
.wsaa{word-spacing:-9.540000pt;}
.wsbb{word-spacing:-9.432000pt;}
.wsc6{word-spacing:-9.396000pt;}
.ws8d{word-spacing:-9.333333pt;}
.ws93{word-spacing:-9.056000pt;}
.wsca{word-spacing:-9.036000pt;}
.wsa9{word-spacing:-9.000000pt;}
.wsc7{word-spacing:-8.712000pt;}
.ws1{word-spacing:-8.493333pt;}
.ws2{word-spacing:-8.459360pt;}
.wsb6{word-spacing:-7.812000pt;}
.ws1a{word-spacing:-7.253333pt;}
.ws65{word-spacing:-0.746667pt;}
.wsa8{word-spacing:-0.693333pt;}
.ws14{word-spacing:-0.640000pt;}
.ws3f{word-spacing:-0.586667pt;}
.wsa2{word-spacing:-0.576000pt;}
.ws11{word-spacing:-0.533333pt;}
.ws97{word-spacing:-0.528000pt;}
.ws9{word-spacing:-0.498667pt;}
.ws13{word-spacing:-0.480000pt;}
.wsc1{word-spacing:-0.432000pt;}
.ws50{word-spacing:-0.426667pt;}
.ws6f{word-spacing:-0.384000pt;}
.ws54{word-spacing:-0.373333pt;}
.ws99{word-spacing:-0.341333pt;}
.wsa6{word-spacing:-0.336000pt;}
.ws45{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.317333pt;}
.ws9a{word-spacing:-0.298667pt;}
.ws71{word-spacing:-0.288000pt;}
.wse{word-spacing:-0.272000pt;}
.ws4c{word-spacing:-0.266667pt;}
.ws5e{word-spacing:-0.240000pt;}
.ws36{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.181333pt;}
.ws19{word-spacing:-0.160000pt;}
.ws6e{word-spacing:-0.144000pt;}
.ws4b{word-spacing:-0.106667pt;}
.ws73{word-spacing:-0.096000pt;}
.ws7{word-spacing:-0.053333pt;}
.wsa5{word-spacing:-0.048000pt;}
.wsd{word-spacing:-0.045333pt;}
.ws8{word-spacing:0.000000pt;}
.ws98{word-spacing:0.042667pt;}
.ws51{word-spacing:0.048000pt;}
.ws3e{word-spacing:0.053333pt;}
.ws5c{word-spacing:0.096000pt;}
.ws3a{word-spacing:0.106667pt;}
.wsbe{word-spacing:0.144000pt;}
.ws68{word-spacing:0.160000pt;}
.wsa7{word-spacing:0.192000pt;}
.ws38{word-spacing:0.213333pt;}
.ws53{word-spacing:0.266667pt;}
.wsb{word-spacing:0.272000pt;}
.wsc{word-spacing:0.317333pt;}
.ws34{word-spacing:0.320000pt;}
.ws72{word-spacing:0.336000pt;}
.ws4f{word-spacing:0.373333pt;}
.wsc2{word-spacing:0.384000pt;}
.ws15{word-spacing:0.426667pt;}
.wsc5{word-spacing:0.432000pt;}
.ws39{word-spacing:0.480000pt;}
.ws9c{word-spacing:0.512000pt;}
.ws70{word-spacing:0.528000pt;}
.ws4e{word-spacing:0.533333pt;}
.wsc3{word-spacing:0.576000pt;}
.ws16{word-spacing:0.586667pt;}
.wsf{word-spacing:0.589333pt;}
.ws9b{word-spacing:0.597333pt;}
.wsc4{word-spacing:0.624000pt;}
.ws4d{word-spacing:0.640000pt;}
.ws5f{word-spacing:0.672000pt;}
.ws17{word-spacing:0.693333pt;}
.ws6d{word-spacing:0.720000pt;}
.ws3d{word-spacing:0.746667pt;}
.ws5d{word-spacing:0.768000pt;}
.ws37{word-spacing:0.800000pt;}
.ws52{word-spacing:0.816000pt;}
.ws96{word-spacing:0.821333pt;}
.ws3c{word-spacing:0.853333pt;}
.ws33{word-spacing:0.906667pt;}
.ws35{word-spacing:0.960000pt;}
.wsa3{word-spacing:1.008000pt;}
.ws3b{word-spacing:1.013333pt;}
.ws9d{word-spacing:1.024000pt;}
.ws21{word-spacing:1.066667pt;}
.wsa4{word-spacing:1.104000pt;}
.ws32{word-spacing:1.120000pt;}
.ws6b{word-spacing:1.152000pt;}
.ws12{word-spacing:1.173333pt;}
.ws6c{word-spacing:1.200000pt;}
.ws2f{word-spacing:1.226667pt;}
.ws18{word-spacing:1.280000pt;}
.ws31{word-spacing:1.333333pt;}
.ws55{word-spacing:1.386667pt;}
.ws56{word-spacing:1.440000pt;}
.ws41{word-spacing:1.546667pt;}
.ws74{word-spacing:2.026667pt;}
.ws0{word-spacing:2.284960pt;}
.wsae{word-spacing:2.418667pt;}
.ws5{word-spacing:2.777280pt;}
.ws4{word-spacing:2.851893pt;}
.ws6{word-spacing:3.451467pt;}
.wsb9{word-spacing:3.598667pt;}
.ws7a{word-spacing:4.373333pt;}
.wsbf{word-spacing:4.560000pt;}
.wsa1{word-spacing:4.600000pt;}
.wsc0{word-spacing:4.608000pt;}
.ws30{word-spacing:5.280000pt;}
.ws81{word-spacing:10.528000pt;}
.ws87{word-spacing:12.842667pt;}
.ws7e{word-spacing:15.157333pt;}
.ws2d{word-spacing:32.000000pt;}
.ws91{word-spacing:37.333333pt;}
.ws88{word-spacing:45.509333pt;}
.ws8e{word-spacing:46.666667pt;}
.ws82{word-spacing:58.650667pt;}
.ws80{word-spacing:59.509333pt;}
.ws8a{word-spacing:61.824000pt;}
.ws7f{word-spacing:80.490667pt;}
.ws86{word-spacing:91.018667pt;}
.ws89{word-spacing:94.490667pt;}
.ws8f{word-spacing:103.466667pt;}
.ws7d{word-spacing:115.509333pt;}
.ws8c{word-spacing:120.176000pt;}
.ws85{word-spacing:1312.677333pt;}
._10{margin-left:-1159.669333pt;}
._b{margin-left:-245.616000pt;}
._11{margin-left:-95.648000pt;}
._8{margin-left:-18.720000pt;}
._19{margin-left:-7.056000pt;}
._5{margin-left:-5.973333pt;}
._2{margin-left:-4.960000pt;}
._6{margin-left:-3.573333pt;}
._1{margin-left:-2.493333pt;}
._0{margin-left:-1.541333pt;}
._3{width:1.213333pt;}
._7{width:4.696000pt;}
._12{width:5.866667pt;}
._13{width:11.776000pt;}
._4{width:42.032000pt;}
._16{width:119.722667pt;}
._f{width:121.333333pt;}
._17{width:126.250667pt;}
._18{width:127.701333pt;}
._14{width:129.237333pt;}
._15{width:130.261333pt;}
._d{width:133.018667pt;}
._e{width:134.176000pt;}
._c{width:319.125333pt;}
._a{width:559.834667pt;}
._9{width:1011.632000pt;}
.fs7{font-size:32.000000pt;}
.fs1{font-size:33.973333pt;}
.fs9{font-size:36.000000pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y143{bottom:4.500000pt;}
.y108{bottom:4.513333pt;}
.y14c{bottom:14.496000pt;}
.y111{bottom:14.509333pt;}
.y15c{bottom:15.029333pt;}
.y121{bottom:15.042667pt;}
.yb8{bottom:15.254667pt;}
.yc5{bottom:15.738667pt;}
.yf6{bottom:16.321333pt;}
.y13b{bottom:17.945333pt;}
.yf7{bottom:22.038667pt;}
.y17c{bottom:23.780000pt;}
.y199{bottom:26.117333pt;}
.y1cf{bottom:26.332000pt;}
.y1c9{bottom:28.161333pt;}
.yb7{bottom:31.485333pt;}
.yc4{bottom:31.969333pt;}
.yf5{bottom:32.552000pt;}
.y14b{bottom:34.040000pt;}
.y110{bottom:34.053333pt;}
.y15b{bottom:34.573333pt;}
.y120{bottom:34.586667pt;}
.y193{bottom:37.504000pt;}
.y17b{bottom:41.569333pt;}
.y198{bottom:42.450667pt;}
.y17d{bottom:43.324000pt;}
.y191{bottom:44.168000pt;}
.y197{bottom:44.196000pt;}
.y13c{bottom:44.797333pt;}
.y179{bottom:45.489333pt;}
.y135{bottom:45.656000pt;}
.y172{bottom:45.657333pt;}
.y173{bottom:45.741333pt;}
.y1d2{bottom:46.240000pt;}
.y19a{bottom:47.406667pt;}
.y51{bottom:47.453333pt;}
.y17e{bottom:47.506667pt;}
.yeb{bottom:47.666667pt;}
.yb6{bottom:47.818667pt;}
.y1b6{bottom:47.840000pt;}
.y1f6{bottom:47.938667pt;}
.y13d{bottom:48.008000pt;}
.yd5{bottom:48.026667pt;}
.y6a{bottom:48.106667pt;}
.y99{bottom:48.120000pt;}
.yc3{bottom:48.302667pt;}
.y1c{bottom:48.546667pt;}
.yf4{bottom:48.885333pt;}
.y6f{bottom:50.544000pt;}
.y240{bottom:50.782667pt;}
.y1c7{bottom:51.494667pt;}
.y21a{bottom:51.720000pt;}
.y16e{bottom:52.732000pt;}
.y196{bottom:52.950667pt;}
.y1d0{bottom:53.240000pt;}
.y15a{bottom:55.134667pt;}
.y11f{bottom:55.148000pt;}
.y14a{bottom:55.665333pt;}
.y10f{bottom:55.678667pt;}
.y133{bottom:56.454667pt;}
.y190{bottom:56.628000pt;}
.y1ce{bottom:58.494667pt;}
.y1c8{bottom:60.249333pt;}
.y1f5{bottom:60.610667pt;}
.yb5{bottom:62.696000pt;}
.y170{bottom:62.784000pt;}
.y50{bottom:62.786667pt;}
.yea{bottom:63.000000pt;}
.y1b5{bottom:63.173333pt;}
.yc2{bottom:63.180000pt;}
.y69{bottom:63.440000pt;}
.y98{bottom:63.453333pt;}
.yf3{bottom:63.762667pt;}
.y1b{bottom:63.880000pt;}
.ya9{bottom:64.152000pt;}
.y102{bottom:64.234667pt;}
.y6e{bottom:64.548000pt;}
.yf8{bottom:64.636000pt;}
.ya6{bottom:64.730667pt;}
.y23f{bottom:64.782667pt;}
.y192{bottom:65.541333pt;}
.y1d8{bottom:65.609333pt;}
.y17f{bottom:66.560000pt;}
.y219{bottom:67.053333pt;}
.yd6{bottom:67.080000pt;}
.y1ca{bottom:67.828000pt;}
.ycc{bottom:68.376000pt;}
.y175{bottom:69.074667pt;}
.ya7{bottom:70.274667pt;}
.y1cc{bottom:71.328000pt;}
.y13a{bottom:71.901333pt;}
.y1f4{bottom:73.272000pt;}
.y134{bottom:73.366667pt;}
.y1d1{bottom:73.418667pt;}
.y178{bottom:73.489333pt;}
.y171{bottom:74.870667pt;}
.y132{bottom:75.709333pt;}
.y159{bottom:75.836000pt;}
.y11e{bottom:75.849333pt;}
.y1c4{bottom:75.994667pt;}
.yd7{bottom:76.253333pt;}
.y104{bottom:76.265333pt;}
.y149{bottom:76.301333pt;}
.y10e{bottom:76.314667pt;}
.y4f{bottom:78.120000pt;}
.ye9{bottom:78.333333pt;}
.y1b4{bottom:78.506667pt;}
.y6d{bottom:78.552000pt;}
.y68{bottom:78.773333pt;}
.y23e{bottom:78.778667pt;}
.y97{bottom:78.786667pt;}
.y1a{bottom:79.213333pt;}
.yf9{bottom:79.392000pt;}
.yb4{bottom:80.485333pt;}
.yc1{bottom:80.969333pt;}
.y194{bottom:81.249333pt;}
.yf2{bottom:81.552000pt;}
.y1cd{bottom:81.828000pt;}
.y1d7{bottom:82.061333pt;}
.y218{bottom:82.386667pt;}
.y1cb{bottom:84.161333pt;}
.y1f3{bottom:85.938667pt;}
.y13e{bottom:87.086667pt;}
.y17a{bottom:88.068000pt;}
.yfb{bottom:90.825333pt;}
.y195{bottom:90.872000pt;}
.y139{bottom:91.734667pt;}
.ycd{bottom:91.998667pt;}
.y16f{bottom:92.156000pt;}
.y6c{bottom:92.556000pt;}
.yfe{bottom:92.654667pt;}
.y18f{bottom:92.710667pt;}
.y23d{bottom:92.782667pt;}
.y4e{bottom:93.453333pt;}
.ye8{bottom:93.666667pt;}
.y1b3{bottom:93.840000pt;}
.y67{bottom:94.106667pt;}
.y96{bottom:94.120000pt;}
.y18e{bottom:94.381333pt;}
.y19{bottom:94.546667pt;}
.y1d6{bottom:94.733333pt;}
.y105{bottom:96.705333pt;}
.yb3{bottom:97.108000pt;}
.y131{bottom:97.297333pt;}
.yda{bottom:97.393333pt;}
.yc0{bottom:97.592000pt;}
.y217{bottom:97.720000pt;}
.y136{bottom:98.156000pt;}
.yf1{bottom:98.174667pt;}
.y1f2{bottom:98.610667pt;}
.y148{bottom:98.766667pt;}
.y10d{bottom:98.780000pt;}
.y158{bottom:99.020000pt;}
.y11d{bottom:99.033333pt;}
.y176{bottom:100.780000pt;}
.yfa{bottom:101.530667pt;}
.ycb{bottom:102.498667pt;}
.yfc{bottom:105.628000pt;}
.y6b{bottom:106.560000pt;}
.y23c{bottom:106.778667pt;}
.y4d{bottom:108.786667pt;}
.ye7{bottom:109.000000pt;}
.y1b2{bottom:109.173333pt;}
.y1c6{bottom:109.240000pt;}
.y66{bottom:109.440000pt;}
.y95{bottom:109.453333pt;}
.y18{bottom:109.880000pt;}
.ydb{bottom:111.104000pt;}
.y1f1{bottom:111.272000pt;}
.y216{bottom:113.053333pt;}
.y177{bottom:113.240000pt;}
.yb2{bottom:114.020000pt;}
.ybf{bottom:114.513333pt;}
.yf0{bottom:115.086667pt;}
.y103{bottom:115.176000pt;}
.y174{bottom:118.737333pt;}
.y147{bottom:118.740000pt;}
.y10c{bottom:118.753333pt;}
.y157{bottom:118.788000pt;}
.y11c{bottom:118.801333pt;}
.ye1{bottom:119.420000pt;}
.ydd{bottom:120.474667pt;}
.y23b{bottom:120.782667pt;}
.y1c5{bottom:120.906667pt;}
.yd8{bottom:123.060000pt;}
.y1f0{bottom:123.933333pt;}
.y138{bottom:124.112000pt;}
.y4c{bottom:124.120000pt;}
.ye6{bottom:124.333333pt;}
.y1b1{bottom:124.506667pt;}
.y65{bottom:124.773333pt;}
.y94{bottom:124.786667pt;}
.yce{bottom:124.954667pt;}
.y17{bottom:125.213333pt;}
.ya5{bottom:126.564000pt;}
.y137{bottom:127.033333pt;}
.y9d{bottom:127.729333pt;}
.y215{bottom:128.386667pt;}
.yb1{bottom:130.353333pt;}
.ybe{bottom:130.846667pt;}
.y12e{bottom:131.121333pt;}
.yef{bottom:131.420000pt;}
.y19b{bottom:132.573333pt;}
.y1e1{bottom:134.557333pt;}
.y23a{bottom:134.782667pt;}
.y1ef{bottom:136.605333pt;}
.y1be{bottom:137.240000pt;}
.yd9{bottom:137.293333pt;}
.y1d3{bottom:138.910667pt;}
.y4b{bottom:139.453333pt;}
.ye5{bottom:139.666667pt;}
.y1b0{bottom:139.840000pt;}
.y64{bottom:140.106667pt;}
.y146{bottom:140.113333pt;}
.y93{bottom:140.120000pt;}
.y10b{bottom:140.126667pt;}
.y16{bottom:140.546667pt;}
.y156{bottom:140.740000pt;}
.y11b{bottom:140.753333pt;}
.yc7{bottom:141.297333pt;}
.y9e{bottom:141.374667pt;}
.y165{bottom:142.780000pt;}
.y1c3{bottom:143.661333pt;}
.y214{bottom:143.720000pt;}
.yb0{bottom:146.686667pt;}
.yc9{bottom:146.841333pt;}
.ybd{bottom:147.180000pt;}
.yee{bottom:147.753333pt;}
.y239{bottom:148.782667pt;}
.yd3{bottom:148.941333pt;}
.y1ee{bottom:149.266667pt;}
.yad{bottom:150.774667pt;}
.y130{bottom:152.130667pt;}
.y15d{bottom:152.701333pt;}
.y9c{bottom:152.808000pt;}
.yd1{bottom:154.112000pt;}
.yaa{bottom:154.274667pt;}
.y4a{bottom:154.786667pt;}
.ye4{bottom:155.000000pt;}
.y1af{bottom:155.173333pt;}
.y1bd{bottom:155.318667pt;}
.y164{bottom:155.324000pt;}
.y63{bottom:155.440000pt;}
.y92{bottom:155.453333pt;}
.y15{bottom:155.880000pt;}
.y12f{bottom:156.209333pt;}
.yac{bottom:156.897333pt;}
.yfd{bottom:157.409333pt;}
.y1e0{bottom:157.736000pt;}
.y129{bottom:158.832000pt;}
.y213{bottom:159.053333pt;}
.y19f{bottom:159.814667pt;}
.y155{bottom:161.012000pt;}
.y11a{bottom:161.025333pt;}
.y145{bottom:161.262667pt;}
.y10a{bottom:161.276000pt;}
.ya4{bottom:161.853333pt;}
.y15e{bottom:162.034667pt;}
.y100{bottom:162.234667pt;}
.ycf{bottom:162.288000pt;}
.ye0{bottom:162.297333pt;}
.yca{bottom:162.586667pt;}
.y238{bottom:162.782667pt;}
.yaf{bottom:163.020000pt;}
.ybc{bottom:163.513333pt;}
.yed{bottom:164.086667pt;}
.ya3{bottom:164.765333pt;}
.ydc{bottom:166.954667pt;}
.yc6{bottom:167.253333pt;}
.y1b8{bottom:167.517333pt;}
.y184{bottom:169.122667pt;}
.y180{bottom:170.112000pt;}
.y49{bottom:170.120000pt;}
.ye3{bottom:170.333333pt;}
.y1ae{bottom:170.506667pt;}
.y62{bottom:170.773333pt;}
.y91{bottom:170.786667pt;}
.y16c{bottom:171.069333pt;}
.y14{bottom:171.213333pt;}
.ya8{bottom:172.941333pt;}
.y18c{bottom:173.714667pt;}
.y1bf{bottom:173.994667pt;}
.y212{bottom:174.386667pt;}
.y128{bottom:175.454667pt;}
.y1df{bottom:175.581333pt;}
.yd0{bottom:175.700000pt;}
.y237{bottom:176.778667pt;}
.yd2{bottom:177.445333pt;}
.yae{bottom:178.765333pt;}
.ybb{bottom:179.258667pt;}
.yec{bottom:179.832000pt;}
.y144{bottom:182.412000pt;}
.y109{bottom:182.425333pt;}
.y154{bottom:182.450667pt;}
.y119{bottom:182.464000pt;}
.yc8{bottom:183.008000pt;}
.yd4{bottom:183.568000pt;}
.y101{bottom:184.401333pt;}
.ye2{bottom:184.473333pt;}
.yab{bottom:184.608000pt;}
.yde{bottom:184.641333pt;}
.yff{bottom:185.278667pt;}
.y48{bottom:185.453333pt;}
.ya1{bottom:185.474667pt;}
.ya2{bottom:185.540000pt;}
.y9f{bottom:185.708000pt;}
.y1ad{bottom:185.840000pt;}
.ya0{bottom:185.997333pt;}
.y61{bottom:186.106667pt;}
.y90{bottom:186.120000pt;}
.ydf{bottom:186.218667pt;}
.y166{bottom:186.236000pt;}
.y13{bottom:186.546667pt;}
.y1ba{bottom:186.818667pt;}
.y126{bottom:187.121333pt;}
.y12a{bottom:187.420000pt;}
.y1ed{bottom:188.120000pt;}
.y163{bottom:189.446667pt;}
.y19e{bottom:189.532000pt;}
.y236{bottom:190.782667pt;}
.y189{bottom:192.372000pt;}
.y18b{bottom:193.548000pt;}
.y122{bottom:194.998667pt;}
.y1bc{bottom:196.152000pt;}
.y16a{bottom:196.157333pt;}
.y18d{bottom:197.048000pt;}
.y161{bottom:197.613333pt;}
.y186{bottom:198.205333pt;}
.y124{bottom:198.788000pt;}
.y182{bottom:199.960000pt;}
.y16d{bottom:200.609333pt;}
.y47{bottom:200.786667pt;}
.y1ac{bottom:201.173333pt;}
.y60{bottom:201.440000pt;}
.y8f{bottom:201.453333pt;}
.y12{bottom:201.880000pt;}
.y211{bottom:203.317333pt;}
.y1ec{bottom:203.453333pt;}
.y14d{bottom:203.562667pt;}
.y112{bottom:203.576000pt;}
.y153{bottom:203.665333pt;}
.y118{bottom:203.678667pt;}
.y1c0{bottom:203.749333pt;}
.y1c2{bottom:204.328000pt;}
.y235{bottom:204.782667pt;}
.y106{bottom:205.626667pt;}
.y16b{bottom:211.613333pt;}
.y18a{bottom:211.626667pt;}
.y160{bottom:213.218667pt;}
.y127{bottom:213.376000pt;}
.y12d{bottom:214.253333pt;}
.y183{bottom:214.333333pt;}
.y1b9{bottom:215.406667pt;}
.y1bb{bottom:215.985333pt;}
.y46{bottom:216.120000pt;}
.y1ab{bottom:216.506667pt;}
.y5f{bottom:216.773333pt;}
.y8e{bottom:216.786667pt;}
.y167{bottom:216.858667pt;}
.y11{bottom:217.213333pt;}
.y210{bottom:217.321333pt;}
.y234{bottom:218.778667pt;}
.y1eb{bottom:218.786667pt;}
.y185{bottom:220.745333pt;}
.y162{bottom:221.096000pt;}
.y15f{bottom:222.113333pt;}
.y181{bottom:222.845333pt;}
.y188{bottom:222.994667pt;}
.y125{bottom:224.454667pt;}
.y107{bottom:224.680000pt;}
.y14e{bottom:225.076000pt;}
.y113{bottom:225.089333pt;}
.y152{bottom:225.542667pt;}
.y117{bottom:225.556000pt;}
.y169{bottom:226.490667pt;}
.y123{bottom:227.077333pt;}
.y1c1{bottom:227.082667pt;}
.y12b{bottom:227.086667pt;}
.y20f{bottom:231.325333pt;}
.y45{bottom:231.453333pt;}
.y1aa{bottom:231.840000pt;}
.y5e{bottom:232.106667pt;}
.y8d{bottom:232.120000pt;}
.y10{bottom:232.546667pt;}
.y233{bottom:232.782667pt;}
.y1ea{bottom:234.120000pt;}
.y187{bottom:237.872000pt;}
.y20e{bottom:245.329333pt;}
.y14f{bottom:246.290667pt;}
.y114{bottom:246.304000pt;}
.y151{bottom:246.542667pt;}
.y116{bottom:246.556000pt;}
.y232{bottom:246.766667pt;}
.y44{bottom:246.786667pt;}
.y1a9{bottom:247.173333pt;}
.y5d{bottom:247.440000pt;}
.y8c{bottom:247.453333pt;}
.yf{bottom:247.880000pt;}
.y1e9{bottom:249.453333pt;}
.y12c{bottom:250.849333pt;}
.y168{bottom:251.569333pt;}
.y20d{bottom:259.333333pt;}
.y231{bottom:260.770667pt;}
.y43{bottom:262.120000pt;}
.y1a8{bottom:262.506667pt;}
.y5c{bottom:262.773333pt;}
.y8b{bottom:262.786667pt;}
.y1e8{bottom:264.786667pt;}
.y1de{bottom:265.650667pt;}
.y150{bottom:267.580000pt;}
.y115{bottom:267.593333pt;}
.y230{bottom:274.774667pt;}
.y42{bottom:277.453333pt;}
.y1a7{bottom:277.840000pt;}
.y5b{bottom:278.106667pt;}
.y8a{bottom:278.120000pt;}
.y1e7{bottom:280.120000pt;}
.yb9{bottom:286.586667pt;}
.y20c{bottom:286.933333pt;}
.y22f{bottom:288.778667pt;}
.y41{bottom:292.786667pt;}
.y1a6{bottom:293.173333pt;}
.y5a{bottom:293.440000pt;}
.y89{bottom:293.453333pt;}
.y1e6{bottom:295.453333pt;}
.y22e{bottom:302.782667pt;}
.ye{bottom:304.786667pt;}
.yba{bottom:305.640000pt;}
.y40{bottom:308.120000pt;}
.y1a5{bottom:308.506667pt;}
.y59{bottom:308.773333pt;}
.y88{bottom:308.786667pt;}
.y1e5{bottom:310.786667pt;}
.y20b{bottom:316.241333pt;}
.y22d{bottom:316.750667pt;}
.yd{bottom:318.130667pt;}
.y140{bottom:318.542667pt;}
.y3f{bottom:323.453333pt;}
.y1a4{bottom:323.840000pt;}
.y58{bottom:324.106667pt;}
.y87{bottom:324.120000pt;}
.y1e4{bottom:326.120000pt;}
.y20a{bottom:330.245333pt;}
.y22c{bottom:330.754667pt;}
.yc{bottom:331.458667pt;}
.y3e{bottom:338.786667pt;}
.y1a3{bottom:339.173333pt;}
.y57{bottom:339.440000pt;}
.y86{bottom:339.453333pt;}
.y209{bottom:344.249333pt;}
.y22b{bottom:344.758667pt;}
.yb{bottom:344.792000pt;}
.y13f{bottom:348.260000pt;}
.y3d{bottom:354.120000pt;}
.y1a2{bottom:354.506667pt;}
.y56{bottom:354.773333pt;}
.y85{bottom:354.786667pt;}
.y1dd{bottom:355.474667pt;}
.y1e3{bottom:356.782667pt;}
.ya{bottom:358.125333pt;}
.y208{bottom:358.253333pt;}
.y22a{bottom:358.762667pt;}
.y3c{bottom:369.453333pt;}
.y1a1{bottom:369.840000pt;}
.y55{bottom:370.106667pt;}
.y84{bottom:370.120000pt;}
.y1e2{bottom:370.786667pt;}
.y9{bottom:371.452667pt;}
.y229{bottom:372.766667pt;}
.y3b{bottom:384.786667pt;}
.y1a0{bottom:385.173333pt;}
.y83{bottom:385.453333pt;}
.y207{bottom:385.866667pt;}
.y228{bottom:386.770667pt;}
.y8{bottom:398.120000pt;}
.y3a{bottom:400.120000pt;}
.y227{bottom:400.774667pt;}
.y82{bottom:400.786667pt;}
.y206{bottom:401.200000pt;}
.y54{bottom:402.432000pt;}
.y226{bottom:414.778667pt;}
.y39{bottom:415.453333pt;}
.y81{bottom:416.120000pt;}
.y53{bottom:416.436000pt;}
.y205{bottom:416.533333pt;}
.y1b7{bottom:425.854667pt;}
.y225{bottom:428.782667pt;}
.y7{bottom:430.136000pt;}
.y52{bottom:430.440000pt;}
.y38{bottom:430.786667pt;}
.y80{bottom:431.453333pt;}
.y204{bottom:431.866667pt;}
.y141{bottom:442.306667pt;}
.y224{bottom:442.782667pt;}
.y6{bottom:443.464000pt;}
.y37{bottom:446.120000pt;}
.y7f{bottom:446.786667pt;}
.y203{bottom:447.200000pt;}
.y1dc{bottom:447.709333pt;}
.y223{bottom:456.770667pt;}
.y5{bottom:456.792000pt;}
.y142{bottom:461.360000pt;}
.y36{bottom:461.453333pt;}
.y7e{bottom:462.120000pt;}
.y202{bottom:462.533333pt;}
.y4{bottom:470.125333pt;}
.y222{bottom:470.774667pt;}
.y35{bottom:476.786667pt;}
.y7d{bottom:477.453333pt;}
.y3{bottom:483.458667pt;}
.y221{bottom:484.778667pt;}
.y201{bottom:491.837333pt;}
.y34{bottom:492.120000pt;}
.y2{bottom:496.786667pt;}
.y220{bottom:498.782667pt;}
.y200{bottom:505.841333pt;}
.y33{bottom:507.453333pt;}
.y7c{bottom:508.084000pt;}
.y21f{bottom:512.782667pt;}
.y1ff{bottom:519.845333pt;}
.y7b{bottom:522.088000pt;}
.y32{bottom:522.786667pt;}
.y1{bottom:523.453333pt;}
.y9a{bottom:523.493333pt;}
.y21e{bottom:526.778667pt;}
.y1fe{bottom:533.849333pt;}
.y7a{bottom:536.092000pt;}
.y31{bottom:538.120000pt;}
.y1db{bottom:538.642667pt;}
.y21d{bottom:540.782667pt;}
.y9b{bottom:542.546667pt;}
.y1fd{bottom:547.853333pt;}
.y79{bottom:550.096000pt;}
.y23{bottom:553.040000pt;}
.y30{bottom:553.453333pt;}
.y1d5{bottom:553.970667pt;}
.y19d{bottom:553.980000pt;}
.y21c{bottom:554.786667pt;}
.y78{bottom:564.100000pt;}
.y2f{bottom:568.786667pt;}
.y1fc{bottom:575.453333pt;}
.y21b{bottom:576.453333pt;}
.y77{bottom:578.104000pt;}
.y248{bottom:582.116000pt;}
.y1d4{bottom:583.688000pt;}
.y19c{bottom:583.697333pt;}
.y2e{bottom:584.120000pt;}
.y76{bottom:592.108000pt;}
.y247{bottom:596.112000pt;}
.y2d{bottom:599.453333pt;}
.y1fb{bottom:606.104000pt;}
.y75{bottom:606.112000pt;}
.y246{bottom:610.116000pt;}
.y2c{bottom:614.786667pt;}
.y1fa{bottom:620.108000pt;}
.y74{bottom:620.116000pt;}
.y245{bottom:624.112000pt;}
.y2b{bottom:630.120000pt;}
.y1da{bottom:630.866667pt;}
.y1f9{bottom:634.112000pt;}
.y73{bottom:634.120000pt;}
.y22{bottom:637.629333pt;}
.y244{bottom:638.116000pt;}
.y2a{bottom:645.453333pt;}
.y1f8{bottom:648.116000pt;}
.y21{bottom:650.301333pt;}
.y243{bottom:652.108000pt;}
.y29{bottom:660.786667pt;}
.y1f7{bottom:662.120000pt;}
.y20{bottom:662.973333pt;}
.y72{bottom:663.453333pt;}
.y242{bottom:666.112000pt;}
.y28{bottom:676.120000pt;}
.y1f{bottom:678.973333pt;}
.y241{bottom:680.116000pt;}
.y27{bottom:691.453333pt;}
.y71{bottom:694.112000pt;}
.y26{bottom:706.786667pt;}
.y70{bottom:708.116000pt;}
.y1e{bottom:718.973333pt;}
.y1d9{bottom:719.186667pt;}
.y25{bottom:722.120000pt;}
.y1d{bottom:764.306667pt;}
.y24{bottom:820.000000pt;}
.hb{height:36.640625pt;}
.h11{height:39.291292pt;}
.h8{height:41.854167pt;}
.h14{height:41.875000pt;}
.h5{height:43.000000pt;}
.h2{height:44.492188pt;}
.h3{height:44.494854pt;}
.h1{height:45.687500pt;}
.h7{height:47.109375pt;}
.h1b{height:47.125375pt;}
.h1a{height:47.141375pt;}
.h1f{height:47.157375pt;}
.h1c{height:47.173375pt;}
.h1e{height:47.189375pt;}
.h1d{height:47.253375pt;}
.h17{height:48.325958pt;}
.h9{height:48.375000pt;}
.h4{height:52.343750pt;}
.h19{height:53.750000pt;}
.h18{height:54.240625pt;}
.hf{height:54.560625pt;}
.h15{height:55.307292pt;}
.h16{height:59.973958pt;}
.h10{height:65.797958pt;}
.hd{height:78.640625pt;}
.h6{height:83.708333pt;}
.h13{height:84.464625pt;}
.ha{height:196.586667pt;}
.he{height:197.773333pt;}
.hc{height:197.786667pt;}
.h12{height:277.773333pt;}
.h0{height:793.333333pt;}
.w1{width:434.640000pt;}
.w2{width:434.653333pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x5{left:4.000000pt;}
.x3d{left:30.410667pt;}
.x6e{left:31.650667pt;}
.x56{left:33.064000pt;}
.x3c{left:35.077333pt;}
.x6d{left:36.317333pt;}
.x55{left:37.730667pt;}
.x7e{left:39.077333pt;}
.x1d{left:41.368000pt;}
.x6f{left:43.252000pt;}
.x57{left:44.665333pt;}
.x1e{left:48.433333pt;}
.x7f{left:50.678667pt;}
.x1f{left:52.978667pt;}
.x52{left:58.941333pt;}
.x3f{left:59.893333pt;}
.x59{left:61.085333pt;}
.x2f{left:65.066667pt;}
.x1{left:66.400000pt;}
.x6{left:67.480000pt;}
.x8d{left:68.762667pt;}
.x1c{left:70.241333pt;}
.x20{left:71.168000pt;}
.x30{left:74.121333pt;}
.x6b{left:78.034667pt;}
.x40{left:79.437333pt;}
.x91{left:80.805333pt;}
.x2{left:81.733333pt;}
.x7{left:82.813333pt;}
.x31{left:85.470667pt;}
.x8{left:86.400000pt;}
.x9{left:87.480000pt;}
.x21{left:88.378667pt;}
.x8e{left:89.360000pt;}
.x1b{left:90.952000pt;}
.x41{left:97.814667pt;}
.x32{left:100.105333pt;}
.x8f{left:101.530667pt;}
.x51{left:103.713333pt;}
.x42{left:106.270667pt;}
.x1a{left:109.040000pt;}
.x29{left:110.441333pt;}
.x5a{left:111.401333pt;}
.x2a{left:115.584000pt;}
.x43{left:116.770667pt;}
.x5b{left:119.717333pt;}
.x50{left:120.877333pt;}
.x19{left:122.452000pt;}
.x22{left:123.378667pt;}
.x8c{left:125.696000pt;}
.x33{left:126.836000pt;}
.x81{left:128.057333pt;}
.x18{left:129.741333pt;}
.x5c{left:133.568000pt;}
.x8b{left:135.188000pt;}
.x7b{left:136.706667pt;}
.x71{left:139.908000pt;}
.x17{left:141.408000pt;}
.x2b{left:146.206667pt;}
.x44{left:155.270667pt;}
.x5d{left:157.489333pt;}
.x6a{left:159.066667pt;}
.x16{left:161.530667pt;}
.x23{left:163.922667pt;}
.x34{left:166.978667pt;}
.x45{left:168.981333pt;}
.x5e{left:173.972000pt;}
.x46{left:175.402667pt;}
.x69{left:177.173333pt;}
.x8a{left:179.372000pt;}
.x35{left:180.689333pt;}
.x4f{left:182.122667pt;}
.x15{left:184.864000pt;}
.x24{left:186.089333pt;}
.x13{left:188.952000pt;}
.x4e{left:190.578667pt;}
.x36{left:191.478667pt;}
.x25{left:192.800000pt;}
.x14{left:194.197333pt;}
.x2c{left:195.122667pt;}
.x68{left:196.764000pt;}
.x7a{left:202.618667pt;}
.x26{left:205.633333pt;}
.x47{left:206.613333pt;}
.x67{left:209.914667pt;}
.x12{left:210.829333pt;}
.x5f{left:211.753333pt;}
.x72{left:214.854667pt;}
.x11{left:217.585333pt;}
.x60{left:226.630667pt;}
.x48{left:229.368000pt;}
.x4d{left:234.044000pt;}
.x66{left:234.974667pt;}
.x89{left:237.705333pt;}
.x79{left:238.785333pt;}
.x82{left:242.960000pt;}
.x37{left:245.416000pt;}
.x10{left:246.416000pt;}
.x65{left:267.324000pt;}
.x78{left:268.390667pt;}
.x73{left:270.565333pt;}
.xa{left:273.400000pt;}
.xf{left:276.413333pt;}
.x38{left:277.793333pt;}
.x90{left:280.880000pt;}
.x61{left:282.052000pt;}
.x4c{left:284.210667pt;}
.x88{left:285.538667pt;}
.x74{left:289.232000pt;}
.x2d{left:292.544000pt;}
.xe{left:294.202667pt;}
.x27{left:296.045333pt;}
.x62{left:300.718667pt;}
.x4b{left:303.754667pt;}
.xd{left:307.624000pt;}
.x87{left:310.038667pt;}
.x77{left:311.333333pt;}
.x39{left:312.578667pt;}
.x28{left:314.422667pt;}
.x83{left:316.460000pt;}
.x86{left:318.793333pt;}
.x64{left:321.149333pt;}
.x4a{left:323.877333pt;}
.x76{left:328.581333pt;}
.xc{left:330.126667pt;}
.x84{left:333.960000pt;}
.x63{left:335.420000pt;}
.x49{left:338.166667pt;}
.x75{left:345.241333pt;}
.x85{left:349.126667pt;}
.x2e{left:350.793333pt;}
.xb{left:351.705333pt;}
.x3a{left:352.740000pt;}
.x4{left:362.773333pt;}
.x3{left:366.560000pt;}
.x3b{left:367.545333pt;}
.x6c{left:368.785333pt;}
.x54{left:370.198667pt;}
.x7d{left:376.212000pt;}
.x3e{left:377.245333pt;}
.x70{left:378.485333pt;}
.x58{left:379.898667pt;}
.x80{left:385.912000pt;}
.x53{left:474.368000pt;}
.x7c{left:475.441333pt;}
}




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