
    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_934eb49ae65af70f493d2d96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5c56e11ac1fb9c0f79086dde.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_bd2f5d16b8238045ade33a79.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_996a9cadd813ebd8d25b8c4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.917480;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_bbedf7457a4b3278d384ecac.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_630d868702fe598c6e3d11d1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b5be33fe2056709889719d4a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_86629a39dd6f96a5d301b1bd.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0a39670d9e5d9981027fa886.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_1fc11168a738c9278818dba8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a0bd7a1ad62cb613cab37eb8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6f62707616409836ccb35664.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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:-21.701400px;}
.v3{vertical-align:-11.730000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.lsa{letter-spacing:-0.780000px;}
.ls56{letter-spacing:-0.600000px;}
.ls33{letter-spacing:-0.480000px;}
.ls7d{letter-spacing:-0.432000px;}
.ls47{letter-spacing:-0.420000px;}
.ls4c{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.300000px;}
.ls7b{letter-spacing:-0.288000px;}
.ls59{letter-spacing:-0.240000px;}
.ls90{letter-spacing:-0.192000px;}
.ls55{letter-spacing:-0.180000px;}
.ls7e{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.135000px;}
.ls34{letter-spacing:-0.060000px;}
.ls7c{letter-spacing:-0.048000px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls1{letter-spacing:0.005676px;}
.ls70{letter-spacing:0.048000px;}
.ls7{letter-spacing:0.060000px;}
.ls73{letter-spacing:0.096000px;}
.ls50{letter-spacing:0.120000px;}
.ls64{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.180000px;}
.ls77{letter-spacing:0.192000px;}
.ls1f{letter-spacing:0.240000px;}
.ls7a{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.300000px;}
.ls40{letter-spacing:0.336000px;}
.ls23{letter-spacing:0.360000px;}
.ls8f{letter-spacing:0.384000px;}
.ls24{letter-spacing:0.420000px;}
.ls41{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.480000px;}
.ls5a{letter-spacing:0.528000px;}
.ls15{letter-spacing:0.540000px;}
.ls79{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.600000px;}
.ls6a{letter-spacing:0.624000px;}
.ls11{letter-spacing:0.660000px;}
.ls63{letter-spacing:0.672000px;}
.ls38{letter-spacing:0.720000px;}
.ls7f{letter-spacing:0.768000px;}
.lse{letter-spacing:0.780000px;}
.ls6e{letter-spacing:0.816000px;}
.ls13{letter-spacing:0.840000px;}
.ls8c{letter-spacing:0.864000px;}
.ls14{letter-spacing:0.900000px;}
.ls6b{letter-spacing:0.912000px;}
.ls21{letter-spacing:0.960000px;}
.ls83{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.020000px;}
.ls65{letter-spacing:1.056000px;}
.ls29{letter-spacing:1.080000px;}
.ls68{letter-spacing:1.104000px;}
.ls27{letter-spacing:1.140000px;}
.ls88{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.200000px;}
.ls6d{letter-spacing:1.248000px;}
.ls6{letter-spacing:1.260000px;}
.ls8b{letter-spacing:1.296000px;}
.ls4f{letter-spacing:1.320000px;}
.ls72{letter-spacing:1.344000px;}
.ls17{letter-spacing:1.380000px;}
.ls67{letter-spacing:1.392000px;}
.ls28{letter-spacing:1.440000px;}
.ls74{letter-spacing:1.488000px;}
.ls32{letter-spacing:1.500000px;}
.ls6c{letter-spacing:1.536000px;}
.ls1a{letter-spacing:1.560000px;}
.ls87{letter-spacing:1.584000px;}
.ls1b{letter-spacing:1.620000px;}
.ls80{letter-spacing:1.632000px;}
.ls3e{letter-spacing:1.680000px;}
.ls66{letter-spacing:1.728000px;}
.ls31{letter-spacing:1.740000px;}
.ls8d{letter-spacing:1.776000px;}
.lsf{letter-spacing:1.800000px;}
.ls75{letter-spacing:1.824000px;}
.ls3b{letter-spacing:1.860000px;}
.ls85{letter-spacing:1.872000px;}
.ls52{letter-spacing:1.920000px;}
.ls71{letter-spacing:1.968000px;}
.ls1d{letter-spacing:1.980000px;}
.lsc{letter-spacing:2.040000px;}
.ls69{letter-spacing:2.064000px;}
.ls10{letter-spacing:2.100000px;}
.ls8a{letter-spacing:2.112000px;}
.ls3f{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.220000px;}
.ls89{letter-spacing:2.256000px;}
.ls1c{letter-spacing:2.280000px;}
.ls76{letter-spacing:2.304000px;}
.ls39{letter-spacing:2.340000px;}
.ls6f{letter-spacing:2.352000px;}
.ls42{letter-spacing:2.400000px;}
.ls86{letter-spacing:2.448000px;}
.ls30{letter-spacing:2.460000px;}
.ls54{letter-spacing:2.520000px;}
.ls37{letter-spacing:2.580000px;}
.ls8{letter-spacing:2.640000px;}
.ls78{letter-spacing:2.688000px;}
.ls3d{letter-spacing:2.700000px;}
.ls3c{letter-spacing:2.760000px;}
.ls8e{letter-spacing:2.784000px;}
.ls3a{letter-spacing:2.820000px;}
.ls84{letter-spacing:2.832000px;}
.ls1e{letter-spacing:2.880000px;}
.ls2e{letter-spacing:2.940000px;}
.ls5{letter-spacing:3.000000px;}
.ls49{letter-spacing:3.060000px;}
.ls48{letter-spacing:3.120000px;}
.ls5b{letter-spacing:3.180000px;}
.ls4{letter-spacing:3.300000px;}
.ls81{letter-spacing:3.312000px;}
.ls53{letter-spacing:3.360000px;}
.ls4a{letter-spacing:3.420000px;}
.ls5e{letter-spacing:3.480000px;}
.ls57{letter-spacing:3.540000px;}
.ls4b{letter-spacing:3.600000px;}
.ls82{letter-spacing:3.696000px;}
.ls5c{letter-spacing:3.720000px;}
.ls2c{letter-spacing:3.780000px;}
.ls60{letter-spacing:3.840000px;}
.ls2a{letter-spacing:3.900000px;}
.ls2f{letter-spacing:3.960000px;}
.ls36{letter-spacing:4.020000px;}
.ls44{letter-spacing:4.080000px;}
.ls26{letter-spacing:4.140000px;}
.ls5f{letter-spacing:4.200000px;}
.ls58{letter-spacing:4.440000px;}
.ls5d{letter-spacing:4.740000px;}
.ls2b{letter-spacing:4.800000px;}
.ls51{letter-spacing:5.160000px;}
.ls35{letter-spacing:5.280000px;}
.ls25{letter-spacing:5.580000px;}
.ls43{letter-spacing:5.940000px;}
.ls18{letter-spacing:6.360000px;}
.ls62{letter-spacing:7.320000px;}
.ls4e{letter-spacing:8.280000px;}
.ls61{letter-spacing:8.760000px;}
.ls45{letter-spacing:9.060000px;}
.ls46{letter-spacing:42.435000px;}
.ls0{letter-spacing:59.532876px;}
.ls2{letter-spacing:59.533476px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.194800px;}
.ws35{word-spacing:-20.940000px;}
.ws10{word-spacing:-20.580000px;}
.ws11{word-spacing:-19.140000px;}
.ws37{word-spacing:-19.080000px;}
.ws12{word-spacing:-18.960000px;}
.ws75{word-spacing:-18.540000px;}
.wsb9{word-spacing:-18.180000px;}
.ws85{word-spacing:-18.000000px;}
.ws86{word-spacing:-17.820000px;}
.ws60{word-spacing:-17.700000px;}
.ws38{word-spacing:-17.640000px;}
.ws2{word-spacing:-17.514000px;}
.wsd{word-spacing:-17.280000px;}
.wsf{word-spacing:-17.220000px;}
.ws88{word-spacing:-17.160000px;}
.ws87{word-spacing:-17.100000px;}
.ws74{word-spacing:-16.860000px;}
.ws4{word-spacing:-16.680000px;}
.ws2b{word-spacing:-16.200000px;}
.ws36{word-spacing:-16.140000px;}
.ws76{word-spacing:-16.020000px;}
.ws61{word-spacing:-15.960000px;}
.ws84{word-spacing:-15.840000px;}
.ws39{word-spacing:-15.720000px;}
.ws51{word-spacing:-15.600000px;}
.ws5f{word-spacing:-15.540000px;}
.wse{word-spacing:-15.300000px;}
.ws63{word-spacing:-15.240000px;}
.ws62{word-spacing:-15.060000px;}
.ws5e{word-spacing:-15.000000px;}
.wsb8{word-spacing:-14.832000px;}
.ws99{word-spacing:-14.688000px;}
.ws6{word-spacing:-13.344000px;}
.wsb2{word-spacing:-13.248000px;}
.wsb0{word-spacing:-13.200000px;}
.ws94{word-spacing:-12.960000px;}
.ws96{word-spacing:-12.912000px;}
.wsb1{word-spacing:-12.816000px;}
.wsb3{word-spacing:-12.528000px;}
.ws5{word-spacing:-12.510000px;}
.wsb5{word-spacing:-12.480000px;}
.wsb6{word-spacing:-12.384000px;}
.ws2c{word-spacing:-12.336000px;}
.wsb7{word-spacing:-12.288000px;}
.wsaf{word-spacing:-12.240000px;}
.ws95{word-spacing:-12.048000px;}
.ws52{word-spacing:-12.000000px;}
.wsb4{word-spacing:-11.952000px;}
.ws97{word-spacing:-11.760000px;}
.ws98{word-spacing:-11.712000px;}
.ws1{word-spacing:-10.210662px;}
.ws3{word-spacing:-7.293330px;}
.ws49{word-spacing:-5.940000px;}
.ws66{word-spacing:-5.160000px;}
.ws4b{word-spacing:-4.080000px;}
.ws29{word-spacing:-3.960000px;}
.ws27{word-spacing:-3.780000px;}
.wsd0{word-spacing:-3.180000px;}
.ws8e{word-spacing:-3.060000px;}
.ws8b{word-spacing:-3.000000px;}
.ws6a{word-spacing:-2.940000px;}
.ws8{word-spacing:-2.886000px;}
.wsbf{word-spacing:-2.832000px;}
.wsba{word-spacing:-2.640000px;}
.ws9b{word-spacing:-2.400000px;}
.ws25{word-spacing:-2.220000px;}
.ws7d{word-spacing:-2.100000px;}
.ws4e{word-spacing:-1.800000px;}
.ws2a{word-spacing:-1.740000px;}
.ws18{word-spacing:-1.380000px;}
.wsbe{word-spacing:-1.200000px;}
.ws4a{word-spacing:-1.140000px;}
.wscd{word-spacing:-1.056000px;}
.ws57{word-spacing:-1.020000px;}
.wsa2{word-spacing:-0.912000px;}
.wsca{word-spacing:-0.864000px;}
.wsc0{word-spacing:-0.816000px;}
.ws50{word-spacing:-0.810000px;}
.ws14{word-spacing:-0.780000px;}
.wsc7{word-spacing:-0.720000px;}
.wsc6{word-spacing:-0.672000px;}
.ws26{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.600000px;}
.ws2e{word-spacing:-0.540000px;}
.ws28{word-spacing:-0.480000px;}
.ws81{word-spacing:-0.432000px;}
.wsce{word-spacing:-0.384000px;}
.ws33{word-spacing:-0.336000px;}
.ws1b{word-spacing:-0.300000px;}
.wsbb{word-spacing:-0.240000px;}
.ws2d{word-spacing:-0.180000px;}
.ws69{word-spacing:-0.120000px;}
.ws2f{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.wscc{word-spacing:0.048000px;}
.wsa0{word-spacing:0.096000px;}
.ws9{word-spacing:0.135000px;}
.ws7c{word-spacing:0.180000px;}
.wsc2{word-spacing:0.192000px;}
.ws7f{word-spacing:0.240000px;}
.ws9f{word-spacing:0.288000px;}
.ws22{word-spacing:0.360000px;}
.wsc{word-spacing:0.420000px;}
.wsaa{word-spacing:0.432000px;}
.ws1a{word-spacing:0.480000px;}
.wsa4{word-spacing:0.528000px;}
.ws71{word-spacing:0.600000px;}
.ws17{word-spacing:0.780000px;}
.wsa3{word-spacing:0.864000px;}
.ws4f{word-spacing:0.900000px;}
.wsa5{word-spacing:0.912000px;}
.ws6b{word-spacing:0.960000px;}
.wsae{word-spacing:1.008000px;}
.ws1f{word-spacing:1.080000px;}
.wsab{word-spacing:1.152000px;}
.ws7b{word-spacing:1.200000px;}
.wsa9{word-spacing:1.248000px;}
.ws91{word-spacing:1.320000px;}
.ws9d{word-spacing:1.344000px;}
.ws16{word-spacing:1.380000px;}
.wsc9{word-spacing:1.392000px;}
.wsa1{word-spacing:1.440000px;}
.ws64{word-spacing:1.500000px;}
.wsad{word-spacing:1.536000px;}
.ws8f{word-spacing:1.740000px;}
.ws9e{word-spacing:1.776000px;}
.wsa8{word-spacing:1.824000px;}
.wsc8{word-spacing:1.872000px;}
.ws6c{word-spacing:1.920000px;}
.ws73{word-spacing:1.968000px;}
.ws6f{word-spacing:1.980000px;}
.ws7e{word-spacing:2.040000px;}
.ws93{word-spacing:2.100000px;}
.wsbd{word-spacing:2.112000px;}
.wsc4{word-spacing:2.160000px;}
.ws8a{word-spacing:2.220000px;}
.ws4d{word-spacing:2.280000px;}
.ws72{word-spacing:2.340000px;}
.ws20{word-spacing:2.400000px;}
.ws21{word-spacing:2.520000px;}
.ws65{word-spacing:2.580000px;}
.wscb{word-spacing:2.592000px;}
.ws23{word-spacing:2.640000px;}
.wsac{word-spacing:2.688000px;}
.ws15{word-spacing:2.700000px;}
.wsc1{word-spacing:2.736000px;}
.ws24{word-spacing:2.820000px;}
.wscf{word-spacing:2.832000px;}
.ws56{word-spacing:2.880000px;}
.wsc5{word-spacing:2.928000px;}
.wsa7{word-spacing:2.976000px;}
.ws31{word-spacing:3.000000px;}
.ws67{word-spacing:3.060000px;}
.wsa6{word-spacing:3.072000px;}
.ws55{word-spacing:3.120000px;}
.ws58{word-spacing:3.180000px;}
.ws30{word-spacing:3.240000px;}
.ws83{word-spacing:3.264000px;}
.ws4c{word-spacing:3.420000px;}
.ws80{word-spacing:3.456000px;}
.ws48{word-spacing:3.480000px;}
.ws59{word-spacing:3.540000px;}
.wsbc{word-spacing:3.552000px;}
.ws8d{word-spacing:3.600000px;}
.ws82{word-spacing:3.648000px;}
.ws1c{word-spacing:3.660000px;}
.ws90{word-spacing:3.780000px;}
.ws70{word-spacing:3.840000px;}
.ws6e{word-spacing:3.900000px;}
.ws32{word-spacing:3.936000px;}
.ws34{word-spacing:3.984000px;}
.ws7a{word-spacing:4.080000px;}
.ws6d{word-spacing:4.260000px;}
.ws13{word-spacing:4.320000px;}
.ws68{word-spacing:4.380000px;}
.ws9c{word-spacing:4.440000px;}
.ws92{word-spacing:4.500000px;}
.ws89{word-spacing:4.560000px;}
.ws54{word-spacing:4.620000px;}
.ws8c{word-spacing:4.740000px;}
.ws53{word-spacing:4.860000px;}
.wsb{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.wsc3{word-spacing:5.232000px;}
.ws1d{word-spacing:5.280000px;}
.ws9a{word-spacing:5.520000px;}
.ws1e{word-spacing:10.500000px;}
.ws45{word-spacing:42.435000px;}
.ws3f{word-spacing:46.215000px;}
.ws46{word-spacing:51.210000px;}
.ws3e{word-spacing:52.380000px;}
.ws47{word-spacing:54.855000px;}
.ws3c{word-spacing:54.900000px;}
.ws3d{word-spacing:59.895000px;}
.ws41{word-spacing:63.360000px;}
.ws40{word-spacing:67.365000px;}
.ws3b{word-spacing:67.410000px;}
.ws43{word-spacing:69.885000px;}
.ws42{word-spacing:84.870000px;}
.ws44{word-spacing:159.255000px;}
.ws3a{word-spacing:187.110000px;}
.ws79{word-spacing:220.176000px;}
.ws78{word-spacing:237.168000px;}
.ws77{word-spacing:244.176000px;}
.ws5c{word-spacing:263.354400px;}
.ws5b{word-spacing:283.200000px;}
.ws5a{word-spacing:289.872000px;}
.ws5d{word-spacing:292.560000px;}
._b{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._66{margin-left:-7.740000px;}
._6{margin-left:-6.690000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.140000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.095000px;}
._7{width:1.020000px;}
._65{width:2.040000px;}
._9{width:3.096000px;}
._8{width:4.530000px;}
._5{width:6.240000px;}
._a{width:8.400000px;}
._d{width:10.980000px;}
._13{width:36.045000px;}
._1f{width:42.975000px;}
._1b{width:47.880000px;}
._18{width:51.615000px;}
._19{width:57.465000px;}
._2{width:59.514828px;}
._16{width:61.605000px;}
._22{width:63.105000px;}
._2c{width:68.715000px;}
._69{width:70.902000px;}
._29{width:73.935000px;}
._17{width:75.105000px;}
._31{width:76.320000px;}
._1c{width:77.445000px;}
._68{width:80.405172px;}
._67{width:82.512000px;}
._12{width:84.195000px;}
._30{width:96.165000px;}
._45{width:103.686000px;}
._7a{width:111.342000px;}
._e{width:112.410000px;}
._27{width:116.235000px;}
._6a{width:118.011000px;}
._7b{width:127.830000px;}
._2b{width:131.625000px;}
._48{width:145.446000px;}
._61{width:146.850000px;}
._46{width:148.134000px;}
._64{width:152.112000px;}
._33{width:153.552000px;}
._11{width:155.655000px;}
._2f{width:158.400000px;}
._21{width:162.930000px;}
._47{width:164.982000px;}
._1a{width:166.320000px;}
._14{width:169.920000px;}
._15{width:172.890000px;}
._2a{width:174.315000px;}
._2d{width:177.570000px;}
._5e{width:178.818000px;}
._3e{width:184.365000px;}
._23{width:192.150000px;}
._25{width:194.085000px;}
._24{width:196.155000px;}
._2e{width:199.890000px;}
._51{width:201.462000px;}
._58{width:202.758000px;}
._42{width:205.920000px;}
._26{width:207.405000px;}
._5d{width:209.760000px;}
._36{width:212.016000px;}
._56{width:218.310000px;}
._55{width:219.408000px;}
._72{width:222.480000px;}
._4c{width:224.016000px;}
._54{width:225.462000px;}
._1d{width:227.691000px;}
._77{width:233.715000px;}
._39{width:238.656000px;}
._6f{width:249.318000px;}
._f{width:253.710000px;}
._75{width:256.176000px;}
._73{width:257.664000px;}
._20{width:261.720000px;}
._50{width:263.670000px;}
._28{width:266.580000px;}
._62{width:269.904000px;}
._6d{width:272.352000px;}
._7e{width:273.357000px;}
._70{width:274.656000px;}
._57{width:275.670000px;}
._41{width:277.728000px;}
._37{width:280.560000px;}
._3c{width:281.904000px;}
._4f{width:283.404000px;}
._3f{width:293.019000px;}
._34{width:294.528000px;}
._59{width:295.590000px;}
._7c{width:297.933000px;}
._3a{width:299.232000px;}
._43{width:301.872000px;}
._60{width:304.572000px;}
._32{width:307.440000px;}
._78{width:313.104000px;}
._76{width:321.120000px;}
._4a{width:328.464000px;}
._3d{width:331.101000px;}
._7d{width:333.120000px;}
._5a{width:336.966000px;}
._40{width:342.528000px;}
._79{width:344.742000px;}
._35{width:352.512000px;}
._5b{width:355.482000px;}
._5c{width:356.529000px;}
._1e{width:362.925000px;}
._52{width:364.134000px;}
._44{width:370.560000px;}
._38{width:373.200000px;}
._63{width:378.528000px;}
._3b{width:383.136000px;}
._49{width:387.840000px;}
._4b{width:389.760000px;}
._4e{width:401.760000px;}
._4d{width:409.872000px;}
._5f{width:438.492000px;}
._53{width:448.998000px;}
._74{width:584.304000px;}
._7f{width:607.584000px;}
._71{width:609.840000px;}
._80{width:644.544000px;}
._81{width:651.993000px;}
._10{width:654.390000px;}
._6c{width:655.578000px;}
._6b{width:660.912000px;}
._6e{width:664.368000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.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;}
.y2e{bottom:47.777250px;}
.y229{bottom:80.121900px;}
.y26a{bottom:80.263500px;}
.yb1{bottom:83.023350px;}
.y1e7{bottom:83.460300px;}
.y1ee{bottom:83.626050px;}
.y206{bottom:83.628600px;}
.y64{bottom:83.770350px;}
.y84{bottom:83.778600px;}
.y1a7{bottom:83.920350px;}
.y18b{bottom:86.503650px;}
.y296{bottom:86.914350px;}
.y26{bottom:88.333800px;}
.ydd{bottom:92.593350px;}
.y1e4{bottom:93.547800px;}
.y152{bottom:94.271550px;}
.y228{bottom:95.121900px;}
.y269{bottom:95.263500px;}
.yfd{bottom:96.324300px;}
.yb0{bottom:98.767350px;}
.y1e6{bottom:99.204300px;}
.y1ed{bottom:99.370050px;}
.y205{bottom:101.628600px;}
.y63{bottom:101.770350px;}
.y83{bottom:101.778600px;}
.y1a6{bottom:101.920350px;}
.y18a{bottom:102.866700px;}
.y25{bottom:103.330050px;}
.y295{bottom:104.914350px;}
.ydc{bottom:108.095850px;}
.y1e3{bottom:109.795800px;}
.y227{bottom:110.121900px;}
.y268{bottom:110.263500px;}
.y135{bottom:110.503650px;}
.y151{bottom:110.519550px;}
.yfc{bottom:112.572300px;}
.yaf{bottom:114.511350px;}
.y1ec{bottom:115.114050px;}
.y24{bottom:118.330050px;}
.y189{bottom:119.114700px;}
.y204{bottom:119.635350px;}
.y62{bottom:119.770350px;}
.y82{bottom:119.778600px;}
.y1a5{bottom:119.920350px;}
.ydb{bottom:123.598350px;}
.y226{bottom:125.121900px;}
.y267{bottom:125.263500px;}
.y1e2{bottom:126.043800px;}
.y150{bottom:126.767550px;}
.y134{bottom:126.854850px;}
.yfb{bottom:128.820300px;}
.y1eb{bottom:130.858050px;}
.y188{bottom:135.362700px;}
.y203{bottom:137.635350px;}
.y61{bottom:137.770350px;}
.y81{bottom:137.778600px;}
.y1a4{bottom:137.920350px;}
.y1c2{bottom:138.298950px;}
.yda{bottom:139.100850px;}
.y225{bottom:140.121900px;}
.y266{bottom:140.263500px;}
.y294{bottom:140.914350px;}
.y1e1{bottom:142.291800px;}
.y14f{bottom:143.015550px;}
.y133{bottom:143.102850px;}
.yfa{bottom:145.068300px;}
.y1ea{bottom:146.602050px;}
.y187{bottom:151.610700px;}
.y1c1{bottom:154.042950px;}
.yd9{bottom:154.603350px;}
.y224{bottom:155.121900px;}
.y265{bottom:155.263500px;}
.y202{bottom:155.635350px;}
.y60{bottom:155.770350px;}
.y80{bottom:155.778600px;}
.y1a3{bottom:155.920350px;}
.y1e0{bottom:158.539800px;}
.y293{bottom:158.914350px;}
.y14e{bottom:159.263550px;}
.y132{bottom:159.350850px;}
.yf9{bottom:161.316300px;}
.y1e9{bottom:162.346050px;}
.y186{bottom:167.858700px;}
.y29{bottom:169.308000px;}
.y1c0{bottom:169.786950px;}
.yd8{bottom:170.105850px;}
.y223{bottom:170.121900px;}
.y264{bottom:170.263500px;}
.y201{bottom:173.635350px;}
.y5f{bottom:173.770350px;}
.y7f{bottom:173.778600px;}
.y1a2{bottom:173.920350px;}
.y1df{bottom:174.787800px;}
.y131{bottom:175.598850px;}
.y14d{bottom:175.606800px;}
.yf8{bottom:177.564300px;}
.y185{bottom:184.106700px;}
.y222{bottom:185.121900px;}
.y263{bottom:185.263500px;}
.yd7{bottom:185.608350px;}
.y28{bottom:187.308000px;}
.y1de{bottom:191.035800px;}
.y200{bottom:191.635350px;}
.y5e{bottom:191.770350px;}
.y7e{bottom:191.778600px;}
.y130{bottom:191.846850px;}
.y14c{bottom:191.854800px;}
.y1a1{bottom:191.920350px;}
.yf7{bottom:193.812300px;}
.y292{bottom:194.509350px;}
.y221{bottom:200.121900px;}
.y262{bottom:200.263500px;}
.y184{bottom:200.354700px;}
.yd6{bottom:201.102300px;}
.y2b{bottom:205.308000px;}
.y1dd{bottom:207.283800px;}
.y12f{bottom:208.094850px;}
.y14b{bottom:208.102800px;}
.y1ff{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.y7d{bottom:209.778600px;}
.y1a0{bottom:209.920350px;}
.yf6{bottom:210.135600px;}
.y220{bottom:215.121900px;}
.y261{bottom:215.263500px;}
.y183{bottom:216.602700px;}
.yd5{bottom:216.604800px;}
.y27{bottom:222.903000px;}
.y2a{bottom:223.308000px;}
.y1dc{bottom:223.531800px;}
.y12e{bottom:224.342850px;}
.y14a{bottom:224.350800px;}
.yf5{bottom:226.383600px;}
.y1fe{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.y7c{bottom:227.778600px;}
.y19f{bottom:227.920350px;}
.y21f{bottom:230.121900px;}
.y260{bottom:230.263500px;}
.yd4{bottom:232.107300px;}
.y182{bottom:232.850700px;}
.y1db{bottom:239.779800px;}
.y12d{bottom:240.590850px;}
.y149{bottom:240.598800px;}
.yf4{bottom:242.631600px;}
.y21e{bottom:245.121900px;}
.y25f{bottom:245.263500px;}
.y1fd{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.y7b{bottom:245.778600px;}
.y19e{bottom:245.920350px;}
.yd3{bottom:247.609800px;}
.y181{bottom:249.098700px;}
.y1da{bottom:256.027800px;}
.y12c{bottom:256.838850px;}
.y148{bottom:256.846800px;}
.yf3{bottom:258.879600px;}
.y21d{bottom:260.121900px;}
.y25e{bottom:260.263500px;}
.yd2{bottom:263.112300px;}
.y1fc{bottom:263.635350px;}
.y5a{bottom:263.770350px;}
.y7a{bottom:263.778600px;}
.y19d{bottom:263.920350px;}
.y180{bottom:265.346700px;}
.y1d9{bottom:272.275800px;}
.y12b{bottom:273.086850px;}
.y147{bottom:273.094800px;}
.y21c{bottom:275.121900px;}
.yf2{bottom:275.127600px;}
.y25d{bottom:275.263500px;}
.yd1{bottom:278.614800px;}
.y17f{bottom:281.594700px;}
.y1fb{bottom:281.635350px;}
.y59{bottom:281.770350px;}
.y79{bottom:281.778600px;}
.y19c{bottom:281.920350px;}
.y1d8{bottom:288.523800px;}
.y12a{bottom:289.334850px;}
.y146{bottom:289.342800px;}
.y21b{bottom:290.121900px;}
.y25c{bottom:290.263500px;}
.yf1{bottom:291.375600px;}
.yd0{bottom:294.117300px;}
.y23{bottom:296.614200px;}
.y17e{bottom:297.842700px;}
.y1fa{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.y78{bottom:299.778600px;}
.y19b{bottom:299.920350px;}
.y1d7{bottom:304.771800px;}
.y21a{bottom:305.121900px;}
.y25b{bottom:305.263500px;}
.y129{bottom:305.582850px;}
.y145{bottom:305.590800px;}
.yf0{bottom:307.623600px;}
.ycf{bottom:309.619800px;}
.y17d{bottom:314.090700px;}
.y1f9{bottom:317.635350px;}
.y57{bottom:317.770350px;}
.y77{bottom:317.778600px;}
.y19a{bottom:317.920350px;}
.y219{bottom:320.121900px;}
.y25a{bottom:320.263500px;}
.y128{bottom:321.830850px;}
.y144{bottom:321.838800px;}
.yef{bottom:323.871600px;}
.y22{bottom:323.959200px;}
.yce{bottom:325.122300px;}
.y17c{bottom:330.338700px;}
.y218{bottom:335.121900px;}
.y259{bottom:335.263500px;}
.y1f8{bottom:335.635350px;}
.y56{bottom:335.770350px;}
.y199{bottom:335.920350px;}
.y1d6{bottom:336.283800px;}
.y127{bottom:338.078850px;}
.y143{bottom:338.086800px;}
.yee{bottom:340.119600px;}
.ycd{bottom:340.624800px;}
.y21{bottom:341.959200px;}
.y17b{bottom:346.586700px;}
.y217{bottom:350.121900px;}
.y258{bottom:350.263500px;}
.y76{bottom:353.373600px;}
.y1f7{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.y198{bottom:353.920350px;}
.y126{bottom:354.326850px;}
.y142{bottom:354.334800px;}
.ycc{bottom:356.127300px;}
.yed{bottom:356.367600px;}
.y20{bottom:359.959200px;}
.y17a{bottom:362.834700px;}
.y216{bottom:365.121900px;}
.y257{bottom:365.263500px;}
.y125{bottom:370.574850px;}
.y141{bottom:370.582800px;}
.ycb{bottom:371.629800px;}
.y1f6{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.y197{bottom:371.920350px;}
.yec{bottom:372.615600px;}
.y1f{bottom:377.959200px;}
.y179{bottom:379.082700px;}
.y215{bottom:380.121900px;}
.y256{bottom:380.263500px;}
.y124{bottom:386.822850px;}
.y140{bottom:386.830800px;}
.yca{bottom:387.132300px;}
.yeb{bottom:388.863600px;}
.y75{bottom:389.628600px;}
.y1f5{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.y1d5{bottom:389.851950px;}
.y196{bottom:389.920350px;}
.y214{bottom:395.121900px;}
.y255{bottom:395.263500px;}
.y178{bottom:395.330700px;}
.y1e{bottom:395.959200px;}
.yc9{bottom:402.634800px;}
.y123{bottom:403.070850px;}
.y13f{bottom:403.078800px;}
.yea{bottom:405.111600px;}
.y1d4{bottom:406.099950px;}
.y74{bottom:407.628600px;}
.y1f4{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y195{bottom:407.920350px;}
.y213{bottom:410.121900px;}
.y254{bottom:410.263500px;}
.y177{bottom:411.578700px;}
.y1d{bottom:413.959200px;}
.yc8{bottom:418.137300px;}
.y122{bottom:419.318850px;}
.y13e{bottom:419.326800px;}
.ye9{bottom:421.359600px;}
.y1d3{bottom:422.347950px;}
.y212{bottom:425.121900px;}
.y253{bottom:425.263500px;}
.y73{bottom:425.628600px;}
.y1f3{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.y194{bottom:425.920350px;}
.y176{bottom:427.826700px;}
.y1c{bottom:431.959200px;}
.yc7{bottom:433.639800px;}
.y121{bottom:435.566850px;}
.y13d{bottom:435.574800px;}
.ye8{bottom:437.607600px;}
.y1d2{bottom:438.595950px;}
.y211{bottom:440.121900px;}
.y252{bottom:440.263500px;}
.y1f2{bottom:443.230350px;}
.y72{bottom:443.628600px;}
.y50{bottom:443.770350px;}
.y193{bottom:443.920350px;}
.y175{bottom:444.074700px;}
.yc6{bottom:449.130150px;}
.y1b{bottom:449.959200px;}
.y120{bottom:451.814850px;}
.y13c{bottom:451.822800px;}
.ye7{bottom:453.855600px;}
.y1d1{bottom:454.843950px;}
.y210{bottom:455.121900px;}
.y251{bottom:455.263500px;}
.y174{bottom:460.322700px;}
.y71{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y192{bottom:461.920350px;}
.yc5{bottom:464.632650px;}
.y1a{bottom:467.959200px;}
.y11f{bottom:468.062850px;}
.y13b{bottom:468.070800px;}
.ye6{bottom:470.103600px;}
.y20f{bottom:470.121900px;}
.y250{bottom:470.263500px;}
.y1d0{bottom:471.091950px;}
.y173{bottom:476.570700px;}
.y70{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y191{bottom:479.920350px;}
.yc4{bottom:480.135150px;}
.y11e{bottom:484.310850px;}
.y13a{bottom:484.318800px;}
.y20e{bottom:485.121900px;}
.y291{bottom:485.263500px;}
.y24f{bottom:485.265900px;}
.y19{bottom:485.959200px;}
.ye5{bottom:486.351600px;}
.y1cf{bottom:487.339950px;}
.y172{bottom:492.818700px;}
.yc3{bottom:495.637650px;}
.y6f{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y190{bottom:497.920350px;}
.y20d{bottom:500.121900px;}
.y290{bottom:500.263500px;}
.y24e{bottom:500.265900px;}
.y11d{bottom:500.558850px;}
.y139{bottom:500.566800px;}
.ye4{bottom:502.599600px;}
.y1ce{bottom:503.587950px;}
.y18{bottom:503.959200px;}
.y171{bottom:509.066700px;}
.yc2{bottom:511.140150px;}
.y28f{bottom:515.263500px;}
.y24d{bottom:515.265900px;}
.y6e{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y11c{bottom:516.806850px;}
.y138{bottom:516.814800px;}
.ye3{bottom:518.847600px;}
.y1cd{bottom:519.835950px;}
.y17{bottom:521.959200px;}
.y170{bottom:525.314700px;}
.yc1{bottom:526.642650px;}
.y28e{bottom:530.263500px;}
.y24c{bottom:530.265900px;}
.y137{bottom:533.062800px;}
.y11b{bottom:533.157450px;}
.y20c{bottom:533.230350px;}
.y18f{bottom:533.515350px;}
.y6d{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y1cc{bottom:536.083950px;}
.y16{bottom:539.959200px;}
.y16f{bottom:541.562700px;}
.yc0{bottom:542.145150px;}
.y28d{bottom:545.263500px;}
.y24b{bottom:545.265900px;}
.y136{bottom:549.310800px;}
.y11a{bottom:549.405450px;}
.ye2{bottom:550.359600px;}
.y6c{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y1bf{bottom:551.785350px;}
.y1cb{bottom:552.331950px;}
.ybf{bottom:557.647650px;}
.y16e{bottom:557.909400px;}
.y15{bottom:557.959200px;}
.y28c{bottom:560.263500px;}
.y24a{bottom:560.265900px;}
.y119{bottom:565.653450px;}
.y1ca{bottom:568.579950px;}
.y6b{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y1be{bottom:569.785350px;}
.ybe{bottom:573.150150px;}
.y16d{bottom:574.157400px;}
.y28b{bottom:575.263500px;}
.y249{bottom:575.265900px;}
.y14{bottom:575.959200px;}
.y118{bottom:581.901450px;}
.y1c9{bottom:584.827950px;}
.ye1{bottom:585.250350px;}
.y20b{bottom:587.365350px;}
.y6a{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y1bd{bottom:587.785350px;}
.ybd{bottom:588.652650px;}
.y28a{bottom:590.263500px;}
.y248{bottom:590.265900px;}
.y16c{bottom:590.405400px;}
.y117{bottom:598.149450px;}
.y1c8{bottom:601.075950px;}
.ybc{bottom:604.155150px;}
.ye0{bottom:604.750350px;}
.y289{bottom:605.263500px;}
.y247{bottom:605.265900px;}
.y69{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y1bc{bottom:605.785350px;}
.y97{bottom:605.912100px;}
.yae{bottom:605.927100px;}
.y16b{bottom:606.653400px;}
.y116{bottom:614.397450px;}
.ybb{bottom:619.657650px;}
.y288{bottom:620.263500px;}
.y246{bottom:620.265900px;}
.y13{bottom:621.117300px;}
.y16a{bottom:622.901400px;}
.y20a{bottom:623.365350px;}
.y68{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y96{bottom:623.912100px;}
.ydf{bottom:624.250350px;}
.y115{bottom:630.645450px;}
.y1c7{bottom:632.587950px;}
.y12{bottom:633.568050px;}
.yba{bottom:635.160150px;}
.y287{bottom:635.263500px;}
.y245{bottom:635.265900px;}
.y169{bottom:639.149400px;}
.y1bb{bottom:641.380350px;}
.yad{bottom:641.522100px;}
.y67{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.y95{bottom:641.912100px;}
.yde{bottom:643.750350px;}
.y114{bottom:646.893450px;}
.y286{bottom:650.263500px;}
.y244{bottom:650.265900px;}
.yb9{bottom:650.662650px;}
.y168{bottom:655.397400px;}
.y66{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.y94{bottom:659.912100px;}
.y113{bottom:663.141450px;}
.y285{bottom:665.263500px;}
.y243{bottom:665.265900px;}
.yb8{bottom:666.165150px;}
.y1c6{bottom:667.495350px;}
.y11{bottom:670.708950px;}
.y167{bottom:671.645400px;}
.y1ba{bottom:677.245350px;}
.y1f1{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.yac{bottom:677.777100px;}
.y93{bottom:677.920350px;}
.y112{bottom:679.389450px;}
.y284{bottom:680.263500px;}
.y242{bottom:680.265900px;}
.yb7{bottom:681.667650px;}
.y10{bottom:684.208950px;}
.y1c5{bottom:686.995350px;}
.y166{bottom:687.893400px;}
.yf{bottom:692.283600px;}
.y65{bottom:695.230350px;}
.y283{bottom:695.263500px;}
.y241{bottom:695.265900px;}
.y111{bottom:695.637450px;}
.y42{bottom:695.770350px;}
.yab{bottom:695.777100px;}
.y92{bottom:695.920350px;}
.y165{bottom:704.141400px;}
.yb6{bottom:709.927650px;}
.y282{bottom:710.263500px;}
.y240{bottom:710.265900px;}
.ye{bottom:711.208950px;}
.y110{bottom:711.885450px;}
.y1f0{bottom:713.230350px;}
.y209{bottom:713.365350px;}
.y41{bottom:713.770350px;}
.yaa{bottom:713.777100px;}
.y91{bottom:713.920350px;}
.yd{bottom:719.283600px;}
.y164{bottom:720.389400px;}
.y281{bottom:725.263500px;}
.y23f{bottom:725.265900px;}
.y10f{bottom:728.133450px;}
.y40{bottom:731.770350px;}
.ya9{bottom:731.777100px;}
.y1b9{bottom:731.785350px;}
.y90{bottom:731.920350px;}
.y163{bottom:736.637400px;}
.yb5{bottom:738.187650px;}
.yc{bottom:738.208950px;}
.y280{bottom:740.263500px;}
.y23e{bottom:740.265900px;}
.y10e{bottom:744.381450px;}
.yb{bottom:746.283600px;}
.y3f{bottom:749.770350px;}
.ya8{bottom:749.777100px;}
.y1b8{bottom:749.785350px;}
.y8f{bottom:749.920350px;}
.y162{bottom:752.885400px;}
.y27f{bottom:755.263500px;}
.y23d{bottom:755.265900px;}
.y10d{bottom:760.629450px;}
.ya{bottom:765.208950px;}
.y208{bottom:767.365350px;}
.y3e{bottom:767.770350px;}
.ya7{bottom:767.777100px;}
.y1b7{bottom:767.785350px;}
.y8e{bottom:767.920350px;}
.y161{bottom:769.133400px;}
.yb4{bottom:769.960350px;}
.y27e{bottom:770.263500px;}
.y23c{bottom:770.265900px;}
.y10c{bottom:776.877450px;}
.y27d{bottom:785.263500px;}
.y23b{bottom:785.265900px;}
.y160{bottom:785.381400px;}
.y3d{bottom:785.770350px;}
.ya6{bottom:785.777100px;}
.y1b6{bottom:785.785350px;}
.y8d{bottom:785.920350px;}
.yb3{bottom:789.460350px;}
.y10b{bottom:793.125450px;}
.y9{bottom:793.930800px;}
.y27c{bottom:800.263500px;}
.y23a{bottom:800.265900px;}
.y15f{bottom:801.629400px;}
.y3c{bottom:803.770350px;}
.ya5{bottom:803.777100px;}
.y1b5{bottom:803.785350px;}
.y8c{bottom:803.920350px;}
.y10a{bottom:809.373450px;}
.y8{bottom:814.930800px;}
.y27b{bottom:815.263500px;}
.y239{bottom:815.265900px;}
.y15e{bottom:817.877400px;}
.y18e{bottom:821.365350px;}
.y3b{bottom:821.770350px;}
.ya4{bottom:821.777100px;}
.y1b4{bottom:821.785350px;}
.y8b{bottom:821.920350px;}
.y109{bottom:825.621450px;}
.y27a{bottom:830.263500px;}
.y238{bottom:830.265900px;}
.y15d{bottom:834.125400px;}
.y3a{bottom:839.770350px;}
.ya3{bottom:839.777100px;}
.y1b3{bottom:839.785350px;}
.y8a{bottom:839.920350px;}
.y108{bottom:841.869450px;}
.y279{bottom:845.263500px;}
.y237{bottom:845.265900px;}
.y15c{bottom:850.373400px;}
.y18d{bottom:857.230350px;}
.y39{bottom:857.770350px;}
.ya2{bottom:857.777100px;}
.y1b2{bottom:857.785350px;}
.y89{bottom:857.920350px;}
.y107{bottom:858.117450px;}
.y278{bottom:860.263500px;}
.y236{bottom:860.265900px;}
.y7{bottom:861.082800px;}
.y15b{bottom:866.621400px;}
.y106{bottom:874.365450px;}
.y277{bottom:875.263500px;}
.y235{bottom:875.265900px;}
.y38{bottom:875.770350px;}
.ya1{bottom:875.777100px;}
.y1b1{bottom:875.785350px;}
.y88{bottom:875.920350px;}
.y15a{bottom:882.869400px;}
.y276{bottom:890.263500px;}
.y234{bottom:890.265900px;}
.y105{bottom:890.613450px;}
.y1c4{bottom:893.515350px;}
.y37{bottom:893.770350px;}
.ya0{bottom:893.777100px;}
.y1b0{bottom:893.785350px;}
.y87{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y159{bottom:899.117400px;}
.y275{bottom:905.263500px;}
.y233{bottom:905.265900px;}
.y104{bottom:906.861450px;}
.y36{bottom:911.770350px;}
.y9f{bottom:911.777100px;}
.y1af{bottom:911.785350px;}
.y158{bottom:915.365400px;}
.y274{bottom:920.263500px;}
.y232{bottom:920.265900px;}
.y103{bottom:923.109450px;}
.y86{bottom:929.515350px;}
.y35{bottom:929.770350px;}
.y9e{bottom:929.777100px;}
.y1ae{bottom:929.785350px;}
.y157{bottom:931.613400px;}
.y5{bottom:934.004400px;}
.y273{bottom:935.263500px;}
.y231{bottom:935.265900px;}
.y102{bottom:939.357450px;}
.y207{bottom:947.365350px;}
.y34{bottom:947.770350px;}
.y9d{bottom:947.777100px;}
.y1ad{bottom:947.785350px;}
.y156{bottom:947.861400px;}
.y272{bottom:950.263500px;}
.y230{bottom:950.265900px;}
.y101{bottom:955.605450px;}
.y155{bottom:964.109400px;}
.y271{bottom:965.263500px;}
.y22f{bottom:965.265900px;}
.y33{bottom:965.770350px;}
.y9c{bottom:965.777100px;}
.y1ac{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y100{bottom:971.853450px;}
.y270{bottom:980.263500px;}
.y22e{bottom:980.265900px;}
.y154{bottom:980.357400px;}
.y32{bottom:983.770350px;}
.y9b{bottom:983.777100px;}
.y1ab{bottom:983.785350px;}
.y26f{bottom:995.263500px;}
.y22d{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.y9a{bottom:1001.777100px;}
.y1aa{bottom:1001.785350px;}
.yff{bottom:1002.993450px;}
.y3{bottom:1006.926000px;}
.y26e{bottom:1010.263500px;}
.y22c{bottom:1010.265900px;}
.y153{bottom:1011.497400px;}
.y30{bottom:1019.770350px;}
.y99{bottom:1019.777100px;}
.y1a9{bottom:1019.785350px;}
.y26d{bottom:1025.263500px;}
.y22b{bottom:1025.265900px;}
.y2f{bottom:1037.770350px;}
.y98{bottom:1037.777100px;}
.y1a8{bottom:1037.785350px;}
.y26c{bottom:1040.263500px;}
.y22a{bottom:1040.265900px;}
.y18c{bottom:1046.274300px;}
.y2{bottom:1069.300350px;}
.y85{bottom:1132.418700px;}
.y26b{bottom:1132.423500px;}
.y1c3{bottom:1132.426950px;}
.y1e8{bottom:1132.428300px;}
.yb2{bottom:1132.435350px;}
.y1ef{bottom:1132.450050px;}
.yfe{bottom:1132.452300px;}
.y1e5{bottom:1132.471800px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:18.856406px;}
.h8{height:19.125417px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.h16{height:32.507812px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h17{height:33.328125px;}
.h19{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h13{height:39.396973px;}
.h15{height:39.431173px;}
.h14{height:39.445573px;}
.h11{height:41.689453px;}
.h12{height:42.023438px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.he{height:52.529297px;}
.h18{height:54.149297px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.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;}
.x14{left:78.661350px;}
.x18{left:93.541350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x24{left:102.047250px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x17{left:114.801300px;}
.x22{left:123.307350px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.x1d{left:207.692250px;}
.x5{left:212.876400px;}
.x1c{left:214.360350px;}
.x21{left:215.530350px;}
.x19{left:232.360350px;}
.x9{left:455.041500px;}
.xc{left:457.115400px;}
.x11{left:478.355850px;}
.x7{left:480.476400px;}
.x25{left:482.603250px;}
.xd{left:491.135400px;}
.x23{left:503.875350px;}
.x12{left:512.375850px;}
.xe{left:525.305400px;}
.x20{left:570.680400px;}
.x1a{left:600.730350px;}
.x10{left:663.492300px;}
.x15{left:683.393850px;}
.x2{left:693.365400px;}
.x1b{left:721.713900px;}
.xf{left:728.391600px;}
.x1f{left:742.975350px;}
.x1e{left:744.008250px;}
.x13{left:749.647350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.426667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.lsa{letter-spacing:-0.693333pt;}
.ls56{letter-spacing:-0.533333pt;}
.ls33{letter-spacing:-0.426667pt;}
.ls7d{letter-spacing:-0.384000pt;}
.ls47{letter-spacing:-0.373333pt;}
.ls4c{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.266667pt;}
.ls7b{letter-spacing:-0.256000pt;}
.ls59{letter-spacing:-0.213333pt;}
.ls90{letter-spacing:-0.170667pt;}
.ls55{letter-spacing:-0.160000pt;}
.ls7e{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls34{letter-spacing:-0.053333pt;}
.ls7c{letter-spacing:-0.042667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls1{letter-spacing:0.005045pt;}
.ls70{letter-spacing:0.042667pt;}
.ls7{letter-spacing:0.053333pt;}
.ls73{letter-spacing:0.085333pt;}
.ls50{letter-spacing:0.106667pt;}
.ls64{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls77{letter-spacing:0.170667pt;}
.ls1f{letter-spacing:0.213333pt;}
.ls7a{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls40{letter-spacing:0.298667pt;}
.ls23{letter-spacing:0.320000pt;}
.ls8f{letter-spacing:0.341333pt;}
.ls24{letter-spacing:0.373333pt;}
.ls41{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls5a{letter-spacing:0.469333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls79{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.533333pt;}
.ls6a{letter-spacing:0.554667pt;}
.ls11{letter-spacing:0.586667pt;}
.ls63{letter-spacing:0.597333pt;}
.ls38{letter-spacing:0.640000pt;}
.ls7f{letter-spacing:0.682667pt;}
.lse{letter-spacing:0.693333pt;}
.ls6e{letter-spacing:0.725333pt;}
.ls13{letter-spacing:0.746667pt;}
.ls8c{letter-spacing:0.768000pt;}
.ls14{letter-spacing:0.800000pt;}
.ls6b{letter-spacing:0.810667pt;}
.ls21{letter-spacing:0.853333pt;}
.ls83{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.906667pt;}
.ls65{letter-spacing:0.938667pt;}
.ls29{letter-spacing:0.960000pt;}
.ls68{letter-spacing:0.981333pt;}
.ls27{letter-spacing:1.013333pt;}
.ls88{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.066667pt;}
.ls6d{letter-spacing:1.109333pt;}
.ls6{letter-spacing:1.120000pt;}
.ls8b{letter-spacing:1.152000pt;}
.ls4f{letter-spacing:1.173333pt;}
.ls72{letter-spacing:1.194667pt;}
.ls17{letter-spacing:1.226667pt;}
.ls67{letter-spacing:1.237333pt;}
.ls28{letter-spacing:1.280000pt;}
.ls74{letter-spacing:1.322667pt;}
.ls32{letter-spacing:1.333333pt;}
.ls6c{letter-spacing:1.365333pt;}
.ls1a{letter-spacing:1.386667pt;}
.ls87{letter-spacing:1.408000pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls80{letter-spacing:1.450667pt;}
.ls3e{letter-spacing:1.493333pt;}
.ls66{letter-spacing:1.536000pt;}
.ls31{letter-spacing:1.546667pt;}
.ls8d{letter-spacing:1.578667pt;}
.lsf{letter-spacing:1.600000pt;}
.ls75{letter-spacing:1.621333pt;}
.ls3b{letter-spacing:1.653333pt;}
.ls85{letter-spacing:1.664000pt;}
.ls52{letter-spacing:1.706667pt;}
.ls71{letter-spacing:1.749333pt;}
.ls1d{letter-spacing:1.760000pt;}
.lsc{letter-spacing:1.813333pt;}
.ls69{letter-spacing:1.834667pt;}
.ls10{letter-spacing:1.866667pt;}
.ls8a{letter-spacing:1.877333pt;}
.ls3f{letter-spacing:1.920000pt;}
.ls22{letter-spacing:1.973333pt;}
.ls89{letter-spacing:2.005333pt;}
.ls1c{letter-spacing:2.026667pt;}
.ls76{letter-spacing:2.048000pt;}
.ls39{letter-spacing:2.080000pt;}
.ls6f{letter-spacing:2.090667pt;}
.ls42{letter-spacing:2.133333pt;}
.ls86{letter-spacing:2.176000pt;}
.ls30{letter-spacing:2.186667pt;}
.ls54{letter-spacing:2.240000pt;}
.ls37{letter-spacing:2.293333pt;}
.ls8{letter-spacing:2.346667pt;}
.ls78{letter-spacing:2.389333pt;}
.ls3d{letter-spacing:2.400000pt;}
.ls3c{letter-spacing:2.453333pt;}
.ls8e{letter-spacing:2.474667pt;}
.ls3a{letter-spacing:2.506667pt;}
.ls84{letter-spacing:2.517333pt;}
.ls1e{letter-spacing:2.560000pt;}
.ls2e{letter-spacing:2.613333pt;}
.ls5{letter-spacing:2.666667pt;}
.ls49{letter-spacing:2.720000pt;}
.ls48{letter-spacing:2.773333pt;}
.ls5b{letter-spacing:2.826667pt;}
.ls4{letter-spacing:2.933333pt;}
.ls81{letter-spacing:2.944000pt;}
.ls53{letter-spacing:2.986667pt;}
.ls4a{letter-spacing:3.040000pt;}
.ls5e{letter-spacing:3.093333pt;}
.ls57{letter-spacing:3.146667pt;}
.ls4b{letter-spacing:3.200000pt;}
.ls82{letter-spacing:3.285333pt;}
.ls5c{letter-spacing:3.306667pt;}
.ls2c{letter-spacing:3.360000pt;}
.ls60{letter-spacing:3.413333pt;}
.ls2a{letter-spacing:3.466667pt;}
.ls2f{letter-spacing:3.520000pt;}
.ls36{letter-spacing:3.573333pt;}
.ls44{letter-spacing:3.626667pt;}
.ls26{letter-spacing:3.680000pt;}
.ls5f{letter-spacing:3.733333pt;}
.ls58{letter-spacing:3.946667pt;}
.ls5d{letter-spacing:4.213333pt;}
.ls2b{letter-spacing:4.266667pt;}
.ls51{letter-spacing:4.586667pt;}
.ls35{letter-spacing:4.693333pt;}
.ls25{letter-spacing:4.960000pt;}
.ls43{letter-spacing:5.280000pt;}
.ls18{letter-spacing:5.653333pt;}
.ls62{letter-spacing:6.506667pt;}
.ls4e{letter-spacing:7.360000pt;}
.ls61{letter-spacing:7.786667pt;}
.ls45{letter-spacing:8.053333pt;}
.ls46{letter-spacing:37.720000pt;}
.ls0{letter-spacing:52.918112pt;}
.ls2{letter-spacing:52.918645pt;}
.ws0{word-spacing:-31.284267pt;}
.ws35{word-spacing:-18.613333pt;}
.ws10{word-spacing:-18.293333pt;}
.ws11{word-spacing:-17.013333pt;}
.ws37{word-spacing:-16.960000pt;}
.ws12{word-spacing:-16.853333pt;}
.ws75{word-spacing:-16.480000pt;}
.wsb9{word-spacing:-16.160000pt;}
.ws85{word-spacing:-16.000000pt;}
.ws86{word-spacing:-15.840000pt;}
.ws60{word-spacing:-15.733333pt;}
.ws38{word-spacing:-15.680000pt;}
.ws2{word-spacing:-15.568000pt;}
.wsd{word-spacing:-15.360000pt;}
.wsf{word-spacing:-15.306667pt;}
.ws88{word-spacing:-15.253333pt;}
.ws87{word-spacing:-15.200000pt;}
.ws74{word-spacing:-14.986667pt;}
.ws4{word-spacing:-14.826667pt;}
.ws2b{word-spacing:-14.400000pt;}
.ws36{word-spacing:-14.346667pt;}
.ws76{word-spacing:-14.240000pt;}
.ws61{word-spacing:-14.186667pt;}
.ws84{word-spacing:-14.080000pt;}
.ws39{word-spacing:-13.973333pt;}
.ws51{word-spacing:-13.866667pt;}
.ws5f{word-spacing:-13.813333pt;}
.wse{word-spacing:-13.600000pt;}
.ws63{word-spacing:-13.546667pt;}
.ws62{word-spacing:-13.386667pt;}
.ws5e{word-spacing:-13.333333pt;}
.wsb8{word-spacing:-13.184000pt;}
.ws99{word-spacing:-13.056000pt;}
.ws6{word-spacing:-11.861333pt;}
.wsb2{word-spacing:-11.776000pt;}
.wsb0{word-spacing:-11.733333pt;}
.ws94{word-spacing:-11.520000pt;}
.ws96{word-spacing:-11.477333pt;}
.wsb1{word-spacing:-11.392000pt;}
.wsb3{word-spacing:-11.136000pt;}
.ws5{word-spacing:-11.120000pt;}
.wsb5{word-spacing:-11.093333pt;}
.wsb6{word-spacing:-11.008000pt;}
.ws2c{word-spacing:-10.965333pt;}
.wsb7{word-spacing:-10.922667pt;}
.wsaf{word-spacing:-10.880000pt;}
.ws95{word-spacing:-10.709333pt;}
.ws52{word-spacing:-10.666667pt;}
.wsb4{word-spacing:-10.624000pt;}
.ws97{word-spacing:-10.453333pt;}
.ws98{word-spacing:-10.410667pt;}
.ws1{word-spacing:-9.076144pt;}
.ws3{word-spacing:-6.482960pt;}
.ws49{word-spacing:-5.280000pt;}
.ws66{word-spacing:-4.586667pt;}
.ws4b{word-spacing:-3.626667pt;}
.ws29{word-spacing:-3.520000pt;}
.ws27{word-spacing:-3.360000pt;}
.wsd0{word-spacing:-2.826667pt;}
.ws8e{word-spacing:-2.720000pt;}
.ws8b{word-spacing:-2.666667pt;}
.ws6a{word-spacing:-2.613333pt;}
.ws8{word-spacing:-2.565333pt;}
.wsbf{word-spacing:-2.517333pt;}
.wsba{word-spacing:-2.346667pt;}
.ws9b{word-spacing:-2.133333pt;}
.ws25{word-spacing:-1.973333pt;}
.ws7d{word-spacing:-1.866667pt;}
.ws4e{word-spacing:-1.600000pt;}
.ws2a{word-spacing:-1.546667pt;}
.ws18{word-spacing:-1.226667pt;}
.wsbe{word-spacing:-1.066667pt;}
.ws4a{word-spacing:-1.013333pt;}
.wscd{word-spacing:-0.938667pt;}
.ws57{word-spacing:-0.906667pt;}
.wsa2{word-spacing:-0.810667pt;}
.wsca{word-spacing:-0.768000pt;}
.wsc0{word-spacing:-0.725333pt;}
.ws50{word-spacing:-0.720000pt;}
.ws14{word-spacing:-0.693333pt;}
.wsc7{word-spacing:-0.640000pt;}
.wsc6{word-spacing:-0.597333pt;}
.ws26{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.533333pt;}
.ws2e{word-spacing:-0.480000pt;}
.ws28{word-spacing:-0.426667pt;}
.ws81{word-spacing:-0.384000pt;}
.wsce{word-spacing:-0.341333pt;}
.ws33{word-spacing:-0.298667pt;}
.ws1b{word-spacing:-0.266667pt;}
.wsbb{word-spacing:-0.213333pt;}
.ws2d{word-spacing:-0.160000pt;}
.ws69{word-spacing:-0.106667pt;}
.ws2f{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.wscc{word-spacing:0.042667pt;}
.wsa0{word-spacing:0.085333pt;}
.ws9{word-spacing:0.120000pt;}
.ws7c{word-spacing:0.160000pt;}
.wsc2{word-spacing:0.170667pt;}
.ws7f{word-spacing:0.213333pt;}
.ws9f{word-spacing:0.256000pt;}
.ws22{word-spacing:0.320000pt;}
.wsc{word-spacing:0.373333pt;}
.wsaa{word-spacing:0.384000pt;}
.ws1a{word-spacing:0.426667pt;}
.wsa4{word-spacing:0.469333pt;}
.ws71{word-spacing:0.533333pt;}
.ws17{word-spacing:0.693333pt;}
.wsa3{word-spacing:0.768000pt;}
.ws4f{word-spacing:0.800000pt;}
.wsa5{word-spacing:0.810667pt;}
.ws6b{word-spacing:0.853333pt;}
.wsae{word-spacing:0.896000pt;}
.ws1f{word-spacing:0.960000pt;}
.wsab{word-spacing:1.024000pt;}
.ws7b{word-spacing:1.066667pt;}
.wsa9{word-spacing:1.109333pt;}
.ws91{word-spacing:1.173333pt;}
.ws9d{word-spacing:1.194667pt;}
.ws16{word-spacing:1.226667pt;}
.wsc9{word-spacing:1.237333pt;}
.wsa1{word-spacing:1.280000pt;}
.ws64{word-spacing:1.333333pt;}
.wsad{word-spacing:1.365333pt;}
.ws8f{word-spacing:1.546667pt;}
.ws9e{word-spacing:1.578667pt;}
.wsa8{word-spacing:1.621333pt;}
.wsc8{word-spacing:1.664000pt;}
.ws6c{word-spacing:1.706667pt;}
.ws73{word-spacing:1.749333pt;}
.ws6f{word-spacing:1.760000pt;}
.ws7e{word-spacing:1.813333pt;}
.ws93{word-spacing:1.866667pt;}
.wsbd{word-spacing:1.877333pt;}
.wsc4{word-spacing:1.920000pt;}
.ws8a{word-spacing:1.973333pt;}
.ws4d{word-spacing:2.026667pt;}
.ws72{word-spacing:2.080000pt;}
.ws20{word-spacing:2.133333pt;}
.ws21{word-spacing:2.240000pt;}
.ws65{word-spacing:2.293333pt;}
.wscb{word-spacing:2.304000pt;}
.ws23{word-spacing:2.346667pt;}
.wsac{word-spacing:2.389333pt;}
.ws15{word-spacing:2.400000pt;}
.wsc1{word-spacing:2.432000pt;}
.ws24{word-spacing:2.506667pt;}
.wscf{word-spacing:2.517333pt;}
.ws56{word-spacing:2.560000pt;}
.wsc5{word-spacing:2.602667pt;}
.wsa7{word-spacing:2.645333pt;}
.ws31{word-spacing:2.666667pt;}
.ws67{word-spacing:2.720000pt;}
.wsa6{word-spacing:2.730667pt;}
.ws55{word-spacing:2.773333pt;}
.ws58{word-spacing:2.826667pt;}
.ws30{word-spacing:2.880000pt;}
.ws83{word-spacing:2.901333pt;}
.ws4c{word-spacing:3.040000pt;}
.ws80{word-spacing:3.072000pt;}
.ws48{word-spacing:3.093333pt;}
.ws59{word-spacing:3.146667pt;}
.wsbc{word-spacing:3.157333pt;}
.ws8d{word-spacing:3.200000pt;}
.ws82{word-spacing:3.242667pt;}
.ws1c{word-spacing:3.253333pt;}
.ws90{word-spacing:3.360000pt;}
.ws70{word-spacing:3.413333pt;}
.ws6e{word-spacing:3.466667pt;}
.ws32{word-spacing:3.498667pt;}
.ws34{word-spacing:3.541333pt;}
.ws7a{word-spacing:3.626667pt;}
.ws6d{word-spacing:3.786667pt;}
.ws13{word-spacing:3.840000pt;}
.ws68{word-spacing:3.893333pt;}
.ws9c{word-spacing:3.946667pt;}
.ws92{word-spacing:4.000000pt;}
.ws89{word-spacing:4.053333pt;}
.ws54{word-spacing:4.106667pt;}
.ws8c{word-spacing:4.213333pt;}
.ws53{word-spacing:4.320000pt;}
.wsb{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.wsc3{word-spacing:4.650667pt;}
.ws1d{word-spacing:4.693333pt;}
.ws9a{word-spacing:4.906667pt;}
.ws1e{word-spacing:9.333333pt;}
.ws45{word-spacing:37.720000pt;}
.ws3f{word-spacing:41.080000pt;}
.ws46{word-spacing:45.520000pt;}
.ws3e{word-spacing:46.560000pt;}
.ws47{word-spacing:48.760000pt;}
.ws3c{word-spacing:48.800000pt;}
.ws3d{word-spacing:53.240000pt;}
.ws41{word-spacing:56.320000pt;}
.ws40{word-spacing:59.880000pt;}
.ws3b{word-spacing:59.920000pt;}
.ws43{word-spacing:62.120000pt;}
.ws42{word-spacing:75.440000pt;}
.ws44{word-spacing:141.560000pt;}
.ws3a{word-spacing:166.320000pt;}
.ws79{word-spacing:195.712000pt;}
.ws78{word-spacing:210.816000pt;}
.ws77{word-spacing:217.045333pt;}
.ws5c{word-spacing:234.092800pt;}
.ws5b{word-spacing:251.733333pt;}
.ws5a{word-spacing:257.664000pt;}
.ws5d{word-spacing:260.053333pt;}
._b{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._66{margin-left:-6.880000pt;}
._6{margin-left:-5.946667pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.680000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.973333pt;}
._7{width:0.906667pt;}
._65{width:1.813333pt;}
._9{width:2.752000pt;}
._8{width:4.026667pt;}
._5{width:5.546667pt;}
._a{width:7.466667pt;}
._d{width:9.760000pt;}
._13{width:32.040000pt;}
._1f{width:38.200000pt;}
._1b{width:42.560000pt;}
._18{width:45.880000pt;}
._19{width:51.080000pt;}
._2{width:52.902069pt;}
._16{width:54.760000pt;}
._22{width:56.093333pt;}
._2c{width:61.080000pt;}
._69{width:63.024000pt;}
._29{width:65.720000pt;}
._17{width:66.760000pt;}
._31{width:67.840000pt;}
._1c{width:68.840000pt;}
._68{width:71.471264pt;}
._67{width:73.344000pt;}
._12{width:74.840000pt;}
._30{width:85.480000pt;}
._45{width:92.165333pt;}
._7a{width:98.970667pt;}
._e{width:99.920000pt;}
._27{width:103.320000pt;}
._6a{width:104.898667pt;}
._7b{width:113.626667pt;}
._2b{width:117.000000pt;}
._48{width:129.285333pt;}
._61{width:130.533333pt;}
._46{width:131.674667pt;}
._64{width:135.210667pt;}
._33{width:136.490667pt;}
._11{width:138.360000pt;}
._2f{width:140.800000pt;}
._21{width:144.826667pt;}
._47{width:146.650667pt;}
._1a{width:147.840000pt;}
._14{width:151.040000pt;}
._15{width:153.680000pt;}
._2a{width:154.946667pt;}
._2d{width:157.840000pt;}
._5e{width:158.949333pt;}
._3e{width:163.880000pt;}
._23{width:170.800000pt;}
._25{width:172.520000pt;}
._24{width:174.360000pt;}
._2e{width:177.680000pt;}
._51{width:179.077333pt;}
._58{width:180.229333pt;}
._42{width:183.040000pt;}
._26{width:184.360000pt;}
._5d{width:186.453333pt;}
._36{width:188.458667pt;}
._56{width:194.053333pt;}
._55{width:195.029333pt;}
._72{width:197.760000pt;}
._4c{width:199.125333pt;}
._54{width:200.410667pt;}
._1d{width:202.392000pt;}
._77{width:207.746667pt;}
._39{width:212.138667pt;}
._6f{width:221.616000pt;}
._f{width:225.520000pt;}
._75{width:227.712000pt;}
._73{width:229.034667pt;}
._20{width:232.640000pt;}
._50{width:234.373333pt;}
._28{width:236.960000pt;}
._62{width:239.914667pt;}
._6d{width:242.090667pt;}
._7e{width:242.984000pt;}
._70{width:244.138667pt;}
._57{width:245.040000pt;}
._41{width:246.869333pt;}
._37{width:249.386667pt;}
._3c{width:250.581333pt;}
._4f{width:251.914667pt;}
._3f{width:260.461333pt;}
._34{width:261.802667pt;}
._59{width:262.746667pt;}
._7c{width:264.829333pt;}
._3a{width:265.984000pt;}
._43{width:268.330667pt;}
._60{width:270.730667pt;}
._32{width:273.280000pt;}
._78{width:278.314667pt;}
._76{width:285.440000pt;}
._4a{width:291.968000pt;}
._3d{width:294.312000pt;}
._7d{width:296.106667pt;}
._5a{width:299.525333pt;}
._40{width:304.469333pt;}
._79{width:306.437333pt;}
._35{width:313.344000pt;}
._5b{width:315.984000pt;}
._5c{width:316.914667pt;}
._1e{width:322.600000pt;}
._52{width:323.674667pt;}
._44{width:329.386667pt;}
._38{width:331.733333pt;}
._63{width:336.469333pt;}
._3b{width:340.565333pt;}
._49{width:344.746667pt;}
._4b{width:346.453333pt;}
._4e{width:357.120000pt;}
._4d{width:364.330667pt;}
._5f{width:389.770667pt;}
._53{width:399.109333pt;}
._74{width:519.381333pt;}
._7f{width:540.074667pt;}
._71{width:542.080000pt;}
._80{width:572.928000pt;}
._81{width:579.549333pt;}
._10{width:581.680000pt;}
._6c{width:582.736000pt;}
._6b{width:587.477333pt;}
._6e{width:590.549333pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.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;}
.y2e{bottom:42.468667pt;}
.y229{bottom:71.219467pt;}
.y26a{bottom:71.345333pt;}
.yb1{bottom:73.798533pt;}
.y1e7{bottom:74.186933pt;}
.y1ee{bottom:74.334267pt;}
.y206{bottom:74.336533pt;}
.y64{bottom:74.462533pt;}
.y84{bottom:74.469867pt;}
.y1a7{bottom:74.595867pt;}
.y18b{bottom:76.892133pt;}
.y296{bottom:77.257200pt;}
.y26{bottom:78.518933pt;}
.ydd{bottom:82.305200pt;}
.y1e4{bottom:83.153600pt;}
.y152{bottom:83.796933pt;}
.y228{bottom:84.552800pt;}
.y269{bottom:84.678667pt;}
.yfd{bottom:85.621600pt;}
.yb0{bottom:87.793200pt;}
.y1e6{bottom:88.181600pt;}
.y1ed{bottom:88.328933pt;}
.y205{bottom:90.336533pt;}
.y63{bottom:90.462533pt;}
.y83{bottom:90.469867pt;}
.y1a6{bottom:90.595867pt;}
.y18a{bottom:91.437067pt;}
.y25{bottom:91.848933pt;}
.y295{bottom:93.257200pt;}
.ydc{bottom:96.085200pt;}
.y1e3{bottom:97.596267pt;}
.y227{bottom:97.886133pt;}
.y268{bottom:98.012000pt;}
.y135{bottom:98.225467pt;}
.y151{bottom:98.239600pt;}
.yfc{bottom:100.064267pt;}
.yaf{bottom:101.787867pt;}
.y1ec{bottom:102.323600pt;}
.y24{bottom:105.182267pt;}
.y189{bottom:105.879733pt;}
.y204{bottom:106.342533pt;}
.y62{bottom:106.462533pt;}
.y82{bottom:106.469867pt;}
.y1a5{bottom:106.595867pt;}
.ydb{bottom:109.865200pt;}
.y226{bottom:111.219467pt;}
.y267{bottom:111.345333pt;}
.y1e2{bottom:112.038933pt;}
.y150{bottom:112.682267pt;}
.y134{bottom:112.759867pt;}
.yfb{bottom:114.506933pt;}
.y1eb{bottom:116.318267pt;}
.y188{bottom:120.322400pt;}
.y203{bottom:122.342533pt;}
.y61{bottom:122.462533pt;}
.y81{bottom:122.469867pt;}
.y1a4{bottom:122.595867pt;}
.y1c2{bottom:122.932400pt;}
.yda{bottom:123.645200pt;}
.y225{bottom:124.552800pt;}
.y266{bottom:124.678667pt;}
.y294{bottom:125.257200pt;}
.y1e1{bottom:126.481600pt;}
.y14f{bottom:127.124933pt;}
.y133{bottom:127.202533pt;}
.yfa{bottom:128.949600pt;}
.y1ea{bottom:130.312933pt;}
.y187{bottom:134.765067pt;}
.y1c1{bottom:136.927067pt;}
.yd9{bottom:137.425200pt;}
.y224{bottom:137.886133pt;}
.y265{bottom:138.012000pt;}
.y202{bottom:138.342533pt;}
.y60{bottom:138.462533pt;}
.y80{bottom:138.469867pt;}
.y1a3{bottom:138.595867pt;}
.y1e0{bottom:140.924267pt;}
.y293{bottom:141.257200pt;}
.y14e{bottom:141.567600pt;}
.y132{bottom:141.645200pt;}
.yf9{bottom:143.392267pt;}
.y1e9{bottom:144.307600pt;}
.y186{bottom:149.207733pt;}
.y29{bottom:150.496000pt;}
.y1c0{bottom:150.921733pt;}
.yd8{bottom:151.205200pt;}
.y223{bottom:151.219467pt;}
.y264{bottom:151.345333pt;}
.y201{bottom:154.342533pt;}
.y5f{bottom:154.462533pt;}
.y7f{bottom:154.469867pt;}
.y1a2{bottom:154.595867pt;}
.y1df{bottom:155.366933pt;}
.y131{bottom:156.087867pt;}
.y14d{bottom:156.094933pt;}
.yf8{bottom:157.834933pt;}
.y185{bottom:163.650400pt;}
.y222{bottom:164.552800pt;}
.y263{bottom:164.678667pt;}
.yd7{bottom:164.985200pt;}
.y28{bottom:166.496000pt;}
.y1de{bottom:169.809600pt;}
.y200{bottom:170.342533pt;}
.y5e{bottom:170.462533pt;}
.y7e{bottom:170.469867pt;}
.y130{bottom:170.530533pt;}
.y14c{bottom:170.537600pt;}
.y1a1{bottom:170.595867pt;}
.yf7{bottom:172.277600pt;}
.y292{bottom:172.897200pt;}
.y221{bottom:177.886133pt;}
.y262{bottom:178.012000pt;}
.y184{bottom:178.093067pt;}
.yd6{bottom:178.757600pt;}
.y2b{bottom:182.496000pt;}
.y1dd{bottom:184.252267pt;}
.y12f{bottom:184.973200pt;}
.y14b{bottom:184.980267pt;}
.y1ff{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.y7d{bottom:186.469867pt;}
.y1a0{bottom:186.595867pt;}
.yf6{bottom:186.787200pt;}
.y220{bottom:191.219467pt;}
.y261{bottom:191.345333pt;}
.y183{bottom:192.535733pt;}
.yd5{bottom:192.537600pt;}
.y27{bottom:198.136000pt;}
.y2a{bottom:198.496000pt;}
.y1dc{bottom:198.694933pt;}
.y12e{bottom:199.415867pt;}
.y14a{bottom:199.422933pt;}
.yf5{bottom:201.229867pt;}
.y1fe{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.y7c{bottom:202.469867pt;}
.y19f{bottom:202.595867pt;}
.y21f{bottom:204.552800pt;}
.y260{bottom:204.678667pt;}
.yd4{bottom:206.317600pt;}
.y182{bottom:206.978400pt;}
.y1db{bottom:213.137600pt;}
.y12d{bottom:213.858533pt;}
.y149{bottom:213.865600pt;}
.yf4{bottom:215.672533pt;}
.y21e{bottom:217.886133pt;}
.y25f{bottom:218.012000pt;}
.y1fd{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.y7b{bottom:218.469867pt;}
.y19e{bottom:218.595867pt;}
.yd3{bottom:220.097600pt;}
.y181{bottom:221.421067pt;}
.y1da{bottom:227.580267pt;}
.y12c{bottom:228.301200pt;}
.y148{bottom:228.308267pt;}
.yf3{bottom:230.115200pt;}
.y21d{bottom:231.219467pt;}
.y25e{bottom:231.345333pt;}
.yd2{bottom:233.877600pt;}
.y1fc{bottom:234.342533pt;}
.y5a{bottom:234.462533pt;}
.y7a{bottom:234.469867pt;}
.y19d{bottom:234.595867pt;}
.y180{bottom:235.863733pt;}
.y1d9{bottom:242.022933pt;}
.y12b{bottom:242.743867pt;}
.y147{bottom:242.750933pt;}
.y21c{bottom:244.552800pt;}
.yf2{bottom:244.557867pt;}
.y25d{bottom:244.678667pt;}
.yd1{bottom:247.657600pt;}
.y17f{bottom:250.306400pt;}
.y1fb{bottom:250.342533pt;}
.y59{bottom:250.462533pt;}
.y79{bottom:250.469867pt;}
.y19c{bottom:250.595867pt;}
.y1d8{bottom:256.465600pt;}
.y12a{bottom:257.186533pt;}
.y146{bottom:257.193600pt;}
.y21b{bottom:257.886133pt;}
.y25c{bottom:258.012000pt;}
.yf1{bottom:259.000533pt;}
.yd0{bottom:261.437600pt;}
.y23{bottom:263.657067pt;}
.y17e{bottom:264.749067pt;}
.y1fa{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.y78{bottom:266.469867pt;}
.y19b{bottom:266.595867pt;}
.y1d7{bottom:270.908267pt;}
.y21a{bottom:271.219467pt;}
.y25b{bottom:271.345333pt;}
.y129{bottom:271.629200pt;}
.y145{bottom:271.636267pt;}
.yf0{bottom:273.443200pt;}
.ycf{bottom:275.217600pt;}
.y17d{bottom:279.191733pt;}
.y1f9{bottom:282.342533pt;}
.y57{bottom:282.462533pt;}
.y77{bottom:282.469867pt;}
.y19a{bottom:282.595867pt;}
.y219{bottom:284.552800pt;}
.y25a{bottom:284.678667pt;}
.y128{bottom:286.071867pt;}
.y144{bottom:286.078933pt;}
.yef{bottom:287.885867pt;}
.y22{bottom:287.963733pt;}
.yce{bottom:288.997600pt;}
.y17c{bottom:293.634400pt;}
.y218{bottom:297.886133pt;}
.y259{bottom:298.012000pt;}
.y1f8{bottom:298.342533pt;}
.y56{bottom:298.462533pt;}
.y199{bottom:298.595867pt;}
.y1d6{bottom:298.918933pt;}
.y127{bottom:300.514533pt;}
.y143{bottom:300.521600pt;}
.yee{bottom:302.328533pt;}
.ycd{bottom:302.777600pt;}
.y21{bottom:303.963733pt;}
.y17b{bottom:308.077067pt;}
.y217{bottom:311.219467pt;}
.y258{bottom:311.345333pt;}
.y76{bottom:314.109867pt;}
.y1f7{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.y198{bottom:314.595867pt;}
.y126{bottom:314.957200pt;}
.y142{bottom:314.964267pt;}
.ycc{bottom:316.557600pt;}
.yed{bottom:316.771200pt;}
.y20{bottom:319.963733pt;}
.y17a{bottom:322.519733pt;}
.y216{bottom:324.552800pt;}
.y257{bottom:324.678667pt;}
.y125{bottom:329.399867pt;}
.y141{bottom:329.406933pt;}
.ycb{bottom:330.337600pt;}
.y1f6{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.y197{bottom:330.595867pt;}
.yec{bottom:331.213867pt;}
.y1f{bottom:335.963733pt;}
.y179{bottom:336.962400pt;}
.y215{bottom:337.886133pt;}
.y256{bottom:338.012000pt;}
.y124{bottom:343.842533pt;}
.y140{bottom:343.849600pt;}
.yca{bottom:344.117600pt;}
.yeb{bottom:345.656533pt;}
.y75{bottom:346.336533pt;}
.y1f5{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.y1d5{bottom:346.535067pt;}
.y196{bottom:346.595867pt;}
.y214{bottom:351.219467pt;}
.y255{bottom:351.345333pt;}
.y178{bottom:351.405067pt;}
.y1e{bottom:351.963733pt;}
.yc9{bottom:357.897600pt;}
.y123{bottom:358.285200pt;}
.y13f{bottom:358.292267pt;}
.yea{bottom:360.099200pt;}
.y1d4{bottom:360.977733pt;}
.y74{bottom:362.336533pt;}
.y1f4{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y195{bottom:362.595867pt;}
.y213{bottom:364.552800pt;}
.y254{bottom:364.678667pt;}
.y177{bottom:365.847733pt;}
.y1d{bottom:367.963733pt;}
.yc8{bottom:371.677600pt;}
.y122{bottom:372.727867pt;}
.y13e{bottom:372.734933pt;}
.ye9{bottom:374.541867pt;}
.y1d3{bottom:375.420400pt;}
.y212{bottom:377.886133pt;}
.y253{bottom:378.012000pt;}
.y73{bottom:378.336533pt;}
.y1f3{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.y194{bottom:378.595867pt;}
.y176{bottom:380.290400pt;}
.y1c{bottom:383.963733pt;}
.yc7{bottom:385.457600pt;}
.y121{bottom:387.170533pt;}
.y13d{bottom:387.177600pt;}
.ye8{bottom:388.984533pt;}
.y1d2{bottom:389.863067pt;}
.y211{bottom:391.219467pt;}
.y252{bottom:391.345333pt;}
.y1f2{bottom:393.982533pt;}
.y72{bottom:394.336533pt;}
.y50{bottom:394.462533pt;}
.y193{bottom:394.595867pt;}
.y175{bottom:394.733067pt;}
.yc6{bottom:399.226800pt;}
.y1b{bottom:399.963733pt;}
.y120{bottom:401.613200pt;}
.y13c{bottom:401.620267pt;}
.ye7{bottom:403.427200pt;}
.y1d1{bottom:404.305733pt;}
.y210{bottom:404.552800pt;}
.y251{bottom:404.678667pt;}
.y174{bottom:409.175733pt;}
.y71{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y192{bottom:410.595867pt;}
.yc5{bottom:413.006800pt;}
.y1a{bottom:415.963733pt;}
.y11f{bottom:416.055867pt;}
.y13b{bottom:416.062933pt;}
.ye6{bottom:417.869867pt;}
.y20f{bottom:417.886133pt;}
.y250{bottom:418.012000pt;}
.y1d0{bottom:418.748400pt;}
.y173{bottom:423.618400pt;}
.y70{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y191{bottom:426.595867pt;}
.yc4{bottom:426.786800pt;}
.y11e{bottom:430.498533pt;}
.y13a{bottom:430.505600pt;}
.y20e{bottom:431.219467pt;}
.y291{bottom:431.345333pt;}
.y24f{bottom:431.347467pt;}
.y19{bottom:431.963733pt;}
.ye5{bottom:432.312533pt;}
.y1cf{bottom:433.191067pt;}
.y172{bottom:438.061067pt;}
.yc3{bottom:440.566800pt;}
.y6f{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y190{bottom:442.595867pt;}
.y20d{bottom:444.552800pt;}
.y290{bottom:444.678667pt;}
.y24e{bottom:444.680800pt;}
.y11d{bottom:444.941200pt;}
.y139{bottom:444.948267pt;}
.ye4{bottom:446.755200pt;}
.y1ce{bottom:447.633733pt;}
.y18{bottom:447.963733pt;}
.y171{bottom:452.503733pt;}
.yc2{bottom:454.346800pt;}
.y28f{bottom:458.012000pt;}
.y24d{bottom:458.014133pt;}
.y6e{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y11c{bottom:459.383867pt;}
.y138{bottom:459.390933pt;}
.ye3{bottom:461.197867pt;}
.y1cd{bottom:462.076400pt;}
.y17{bottom:463.963733pt;}
.y170{bottom:466.946400pt;}
.yc1{bottom:468.126800pt;}
.y28e{bottom:471.345333pt;}
.y24c{bottom:471.347467pt;}
.y137{bottom:473.833600pt;}
.y11b{bottom:473.917733pt;}
.y20c{bottom:473.982533pt;}
.y18f{bottom:474.235867pt;}
.y6d{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y1cc{bottom:476.519067pt;}
.y16{bottom:479.963733pt;}
.y16f{bottom:481.389067pt;}
.yc0{bottom:481.906800pt;}
.y28d{bottom:484.678667pt;}
.y24b{bottom:484.680800pt;}
.y136{bottom:488.276267pt;}
.y11a{bottom:488.360400pt;}
.ye2{bottom:489.208533pt;}
.y6c{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y1bf{bottom:490.475867pt;}
.y1cb{bottom:490.961733pt;}
.ybf{bottom:495.686800pt;}
.y16e{bottom:495.919467pt;}
.y15{bottom:495.963733pt;}
.y28c{bottom:498.012000pt;}
.y24a{bottom:498.014133pt;}
.y119{bottom:502.803067pt;}
.y1ca{bottom:505.404400pt;}
.y6b{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y1be{bottom:506.475867pt;}
.ybe{bottom:509.466800pt;}
.y16d{bottom:510.362133pt;}
.y28b{bottom:511.345333pt;}
.y249{bottom:511.347467pt;}
.y14{bottom:511.963733pt;}
.y118{bottom:517.245733pt;}
.y1c9{bottom:519.847067pt;}
.ye1{bottom:520.222533pt;}
.y20b{bottom:522.102533pt;}
.y6a{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y1bd{bottom:522.475867pt;}
.ybd{bottom:523.246800pt;}
.y28a{bottom:524.678667pt;}
.y248{bottom:524.680800pt;}
.y16c{bottom:524.804800pt;}
.y117{bottom:531.688400pt;}
.y1c8{bottom:534.289733pt;}
.ybc{bottom:537.026800pt;}
.ye0{bottom:537.555867pt;}
.y289{bottom:538.012000pt;}
.y247{bottom:538.014133pt;}
.y69{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y1bc{bottom:538.475867pt;}
.y97{bottom:538.588533pt;}
.yae{bottom:538.601867pt;}
.y16b{bottom:539.247467pt;}
.y116{bottom:546.131067pt;}
.ybb{bottom:550.806800pt;}
.y288{bottom:551.345333pt;}
.y246{bottom:551.347467pt;}
.y13{bottom:552.104267pt;}
.y16a{bottom:553.690133pt;}
.y20a{bottom:554.102533pt;}
.y68{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y96{bottom:554.588533pt;}
.ydf{bottom:554.889200pt;}
.y115{bottom:560.573733pt;}
.y1c7{bottom:562.300400pt;}
.y12{bottom:563.171600pt;}
.yba{bottom:564.586800pt;}
.y287{bottom:564.678667pt;}
.y245{bottom:564.680800pt;}
.y169{bottom:568.132800pt;}
.y1bb{bottom:570.115867pt;}
.yad{bottom:570.241867pt;}
.y67{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.y95{bottom:570.588533pt;}
.yde{bottom:572.222533pt;}
.y114{bottom:575.016400pt;}
.y286{bottom:578.012000pt;}
.y244{bottom:578.014133pt;}
.yb9{bottom:578.366800pt;}
.y168{bottom:582.575467pt;}
.y66{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.y94{bottom:586.588533pt;}
.y113{bottom:589.459067pt;}
.y285{bottom:591.345333pt;}
.y243{bottom:591.347467pt;}
.yb8{bottom:592.146800pt;}
.y1c6{bottom:593.329200pt;}
.y11{bottom:596.185733pt;}
.y167{bottom:597.018133pt;}
.y1ba{bottom:601.995867pt;}
.y1f1{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.yac{bottom:602.468533pt;}
.y93{bottom:602.595867pt;}
.y112{bottom:603.901733pt;}
.y284{bottom:604.678667pt;}
.y242{bottom:604.680800pt;}
.yb7{bottom:605.926800pt;}
.y10{bottom:608.185733pt;}
.y1c5{bottom:610.662533pt;}
.y166{bottom:611.460800pt;}
.yf{bottom:615.363200pt;}
.y65{bottom:617.982533pt;}
.y283{bottom:618.012000pt;}
.y241{bottom:618.014133pt;}
.y111{bottom:618.344400pt;}
.y42{bottom:618.462533pt;}
.yab{bottom:618.468533pt;}
.y92{bottom:618.595867pt;}
.y165{bottom:625.903467pt;}
.yb6{bottom:631.046800pt;}
.y282{bottom:631.345333pt;}
.y240{bottom:631.347467pt;}
.ye{bottom:632.185733pt;}
.y110{bottom:632.787067pt;}
.y1f0{bottom:633.982533pt;}
.y209{bottom:634.102533pt;}
.y41{bottom:634.462533pt;}
.yaa{bottom:634.468533pt;}
.y91{bottom:634.595867pt;}
.yd{bottom:639.363200pt;}
.y164{bottom:640.346133pt;}
.y281{bottom:644.678667pt;}
.y23f{bottom:644.680800pt;}
.y10f{bottom:647.229733pt;}
.y40{bottom:650.462533pt;}
.ya9{bottom:650.468533pt;}
.y1b9{bottom:650.475867pt;}
.y90{bottom:650.595867pt;}
.y163{bottom:654.788800pt;}
.yb5{bottom:656.166800pt;}
.yc{bottom:656.185733pt;}
.y280{bottom:658.012000pt;}
.y23e{bottom:658.014133pt;}
.y10e{bottom:661.672400pt;}
.yb{bottom:663.363200pt;}
.y3f{bottom:666.462533pt;}
.ya8{bottom:666.468533pt;}
.y1b8{bottom:666.475867pt;}
.y8f{bottom:666.595867pt;}
.y162{bottom:669.231467pt;}
.y27f{bottom:671.345333pt;}
.y23d{bottom:671.347467pt;}
.y10d{bottom:676.115067pt;}
.ya{bottom:680.185733pt;}
.y208{bottom:682.102533pt;}
.y3e{bottom:682.462533pt;}
.ya7{bottom:682.468533pt;}
.y1b7{bottom:682.475867pt;}
.y8e{bottom:682.595867pt;}
.y161{bottom:683.674133pt;}
.yb4{bottom:684.409200pt;}
.y27e{bottom:684.678667pt;}
.y23c{bottom:684.680800pt;}
.y10c{bottom:690.557733pt;}
.y27d{bottom:698.012000pt;}
.y23b{bottom:698.014133pt;}
.y160{bottom:698.116800pt;}
.y3d{bottom:698.462533pt;}
.ya6{bottom:698.468533pt;}
.y1b6{bottom:698.475867pt;}
.y8d{bottom:698.595867pt;}
.yb3{bottom:701.742533pt;}
.y10b{bottom:705.000400pt;}
.y9{bottom:705.716267pt;}
.y27c{bottom:711.345333pt;}
.y23a{bottom:711.347467pt;}
.y15f{bottom:712.559467pt;}
.y3c{bottom:714.462533pt;}
.ya5{bottom:714.468533pt;}
.y1b5{bottom:714.475867pt;}
.y8c{bottom:714.595867pt;}
.y10a{bottom:719.443067pt;}
.y8{bottom:724.382933pt;}
.y27b{bottom:724.678667pt;}
.y239{bottom:724.680800pt;}
.y15e{bottom:727.002133pt;}
.y18e{bottom:730.102533pt;}
.y3b{bottom:730.462533pt;}
.ya4{bottom:730.468533pt;}
.y1b4{bottom:730.475867pt;}
.y8b{bottom:730.595867pt;}
.y109{bottom:733.885733pt;}
.y27a{bottom:738.012000pt;}
.y238{bottom:738.014133pt;}
.y15d{bottom:741.444800pt;}
.y3a{bottom:746.462533pt;}
.ya3{bottom:746.468533pt;}
.y1b3{bottom:746.475867pt;}
.y8a{bottom:746.595867pt;}
.y108{bottom:748.328400pt;}
.y279{bottom:751.345333pt;}
.y237{bottom:751.347467pt;}
.y15c{bottom:755.887467pt;}
.y18d{bottom:761.982533pt;}
.y39{bottom:762.462533pt;}
.ya2{bottom:762.468533pt;}
.y1b2{bottom:762.475867pt;}
.y89{bottom:762.595867pt;}
.y107{bottom:762.771067pt;}
.y278{bottom:764.678667pt;}
.y236{bottom:764.680800pt;}
.y7{bottom:765.406933pt;}
.y15b{bottom:770.330133pt;}
.y106{bottom:777.213733pt;}
.y277{bottom:778.012000pt;}
.y235{bottom:778.014133pt;}
.y38{bottom:778.462533pt;}
.ya1{bottom:778.468533pt;}
.y1b1{bottom:778.475867pt;}
.y88{bottom:778.595867pt;}
.y15a{bottom:784.772800pt;}
.y276{bottom:791.345333pt;}
.y234{bottom:791.347467pt;}
.y105{bottom:791.656400pt;}
.y1c4{bottom:794.235867pt;}
.y37{bottom:794.462533pt;}
.ya0{bottom:794.468533pt;}
.y1b0{bottom:794.475867pt;}
.y87{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y159{bottom:799.215467pt;}
.y275{bottom:804.678667pt;}
.y233{bottom:804.680800pt;}
.y104{bottom:806.099067pt;}
.y36{bottom:810.462533pt;}
.y9f{bottom:810.468533pt;}
.y1af{bottom:810.475867pt;}
.y158{bottom:813.658133pt;}
.y274{bottom:818.012000pt;}
.y232{bottom:818.014133pt;}
.y103{bottom:820.541733pt;}
.y86{bottom:826.235867pt;}
.y35{bottom:826.462533pt;}
.y9e{bottom:826.468533pt;}
.y1ae{bottom:826.475867pt;}
.y157{bottom:828.100800pt;}
.y5{bottom:830.226133pt;}
.y273{bottom:831.345333pt;}
.y231{bottom:831.347467pt;}
.y102{bottom:834.984400pt;}
.y207{bottom:842.102533pt;}
.y34{bottom:842.462533pt;}
.y9d{bottom:842.468533pt;}
.y1ad{bottom:842.475867pt;}
.y156{bottom:842.543467pt;}
.y272{bottom:844.678667pt;}
.y230{bottom:844.680800pt;}
.y101{bottom:849.427067pt;}
.y155{bottom:856.986133pt;}
.y271{bottom:858.012000pt;}
.y22f{bottom:858.014133pt;}
.y33{bottom:858.462533pt;}
.y9c{bottom:858.468533pt;}
.y1ac{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y100{bottom:863.869733pt;}
.y270{bottom:871.345333pt;}
.y22e{bottom:871.347467pt;}
.y154{bottom:871.428800pt;}
.y32{bottom:874.462533pt;}
.y9b{bottom:874.468533pt;}
.y1ab{bottom:874.475867pt;}
.y26f{bottom:884.678667pt;}
.y22d{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.y9a{bottom:890.468533pt;}
.y1aa{bottom:890.475867pt;}
.yff{bottom:891.549733pt;}
.y3{bottom:895.045333pt;}
.y26e{bottom:898.012000pt;}
.y22c{bottom:898.014133pt;}
.y153{bottom:899.108800pt;}
.y30{bottom:906.462533pt;}
.y99{bottom:906.468533pt;}
.y1a9{bottom:906.475867pt;}
.y26d{bottom:911.345333pt;}
.y22b{bottom:911.347467pt;}
.y2f{bottom:922.462533pt;}
.y98{bottom:922.468533pt;}
.y1a8{bottom:922.475867pt;}
.y26c{bottom:924.678667pt;}
.y22a{bottom:924.680800pt;}
.y18c{bottom:930.021600pt;}
.y2{bottom:950.489200pt;}
.y85{bottom:1006.594400pt;}
.y26b{bottom:1006.598667pt;}
.y1c3{bottom:1006.601733pt;}
.y1e8{bottom:1006.602933pt;}
.yb2{bottom:1006.609200pt;}
.y1ef{bottom:1006.622267pt;}
.yfe{bottom:1006.624267pt;}
.y1e5{bottom:1006.641600pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:16.761250pt;}
.h8{height:17.000371pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.h16{height:28.895833pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h17{height:29.625000pt;}
.h19{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h13{height:35.019531pt;}
.h15{height:35.049931pt;}
.h14{height:35.062731pt;}
.h11{height:37.057292pt;}
.h12{height:37.354167pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.he{height:46.692708pt;}
.h18{height:48.132708pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.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;}
.x14{left:69.921200pt;}
.x18{left:83.147867pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x24{left:90.708667pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x17{left:102.045600pt;}
.x22{left:109.606533pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.x1d{left:184.615333pt;}
.x5{left:189.223467pt;}
.x1c{left:190.542533pt;}
.x21{left:191.582533pt;}
.x19{left:206.542533pt;}
.x9{left:404.481333pt;}
.xc{left:406.324800pt;}
.x11{left:425.205200pt;}
.x7{left:427.090133pt;}
.x25{left:428.980667pt;}
.xd{left:436.564800pt;}
.x23{left:447.889200pt;}
.x12{left:455.445200pt;}
.xe{left:466.938133pt;}
.x20{left:507.271467pt;}
.x1a{left:533.982533pt;}
.x10{left:589.770933pt;}
.x15{left:607.461200pt;}
.x2{left:616.324800pt;}
.x1b{left:641.523467pt;}
.xf{left:647.459200pt;}
.x1f{left:660.422533pt;}
.x1e{left:661.340667pt;}
.x13{left:666.353200pt;}
}




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