
    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_c2c35f62f203a332aa0ee143.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_919a146ce57367cd467b2e46.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_0a4c0d198f9031e75754e2b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_04d1cfd68ee50e5c2eebfecd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_3a3df83855f4e4095f2757ab.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_596e34aa6d337a233cdfa92f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_6d9d95c751524919bdacbd70.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8bdf4bf27bb3d09f674b5a9c.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_337d7a7117822a93163c5dec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_008d5b6550cb382052181213.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8eccdca8ed5b35ee2a7fe4eb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e176c34481023314c6341e47.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_66fdcba3db9e588f869dcde2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1ffee6c7cbf9ccae4f9cb9cc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_66fdcba3db9e588f869dcde2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a96effd4fdcca88a359347f2.woff2')format("woff");}.ff10{font-family:ff10;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;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls7b{letter-spacing:-2.640000px;}
.ls53{letter-spacing:-1.665000px;}
.ls63{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.780000px;}
.ls32{letter-spacing:-0.480000px;}
.ls64{letter-spacing:-0.360000px;}
.ls5e{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.253200px;}
.ls79{letter-spacing:-0.240000px;}
.ls2e{letter-spacing:-0.180000px;}
.ls47{letter-spacing:-0.120000px;}
.ls45{letter-spacing:-0.060000px;}
.ls7a{letter-spacing:-0.048000px;}
.ls48{letter-spacing:-0.045000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003540px;}
.ls39{letter-spacing:0.048000px;}
.ls2d{letter-spacing:0.060000px;}
.ls49{letter-spacing:0.096000px;}
.ls14{letter-spacing:0.120000px;}
.ls21{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.192000px;}
.ls16{letter-spacing:0.240000px;}
.ls41{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.360000px;}
.ls5f{letter-spacing:0.384000px;}
.ls11{letter-spacing:0.420000px;}
.ls6d{letter-spacing:0.432000px;}
.ls35{letter-spacing:0.480000px;}
.ls83{letter-spacing:0.528000px;}
.ls10{letter-spacing:0.540000px;}
.ls69{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.600000px;}
.ls1e{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.660000px;}
.ls78{letter-spacing:0.672000px;}
.ls2f{letter-spacing:0.720000px;}
.ls5b{letter-spacing:0.768000px;}
.ls2b{letter-spacing:0.780000px;}
.ls67{letter-spacing:0.816000px;}
.ls3d{letter-spacing:0.840000px;}
.ls6b{letter-spacing:0.864000px;}
.ls9{letter-spacing:0.900000px;}
.ls82{letter-spacing:0.912000px;}
.ls19{letter-spacing:0.960000px;}
.ls6c{letter-spacing:1.008000px;}
.ls31{letter-spacing:1.020000px;}
.ls5c{letter-spacing:1.056000px;}
.ls12{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.104000px;}
.ls15{letter-spacing:1.140000px;}
.ls7d{letter-spacing:1.152000px;}
.ls1{letter-spacing:1.200000px;}
.ls40{letter-spacing:1.248000px;}
.ls2{letter-spacing:1.260000px;}
.ls17{letter-spacing:1.320000px;}
.ls34{letter-spacing:1.380000px;}
.ls73{letter-spacing:1.392000px;}
.ls38{letter-spacing:1.440000px;}
.ls44{letter-spacing:1.488000px;}
.ls5{letter-spacing:1.500000px;}
.ls76{letter-spacing:1.536000px;}
.ls2a{letter-spacing:1.560000px;}
.ls20{letter-spacing:1.584000px;}
.ls4a{letter-spacing:1.620000px;}
.ls68{letter-spacing:1.632000px;}
.ls52{letter-spacing:1.680000px;}
.ls81{letter-spacing:1.728000px;}
.ls61{letter-spacing:1.740000px;}
.ls72{letter-spacing:1.776000px;}
.ls7{letter-spacing:1.800000px;}
.ls1f{letter-spacing:1.824000px;}
.lsd{letter-spacing:1.860000px;}
.ls1c{letter-spacing:1.920000px;}
.ls7f{letter-spacing:1.968000px;}
.ls3{letter-spacing:1.980000px;}
.ls6f{letter-spacing:2.016000px;}
.ls43{letter-spacing:2.040000px;}
.ls2c{letter-spacing:2.100000px;}
.ls28{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.220000px;}
.ls77{letter-spacing:2.256000px;}
.lse{letter-spacing:2.280000px;}
.ls74{letter-spacing:2.304000px;}
.ls3c{letter-spacing:2.340000px;}
.ls84{letter-spacing:2.352000px;}
.ls3e{letter-spacing:2.400000px;}
.ls4d{letter-spacing:2.460000px;}
.ls6a{letter-spacing:2.496000px;}
.ls18{letter-spacing:2.520000px;}
.ls30{letter-spacing:2.580000px;}
.ls65{letter-spacing:2.640000px;}
.ls3a{letter-spacing:2.700000px;}
.ls27{letter-spacing:2.760000px;}
.ls22{letter-spacing:2.820000px;}
.ls80{letter-spacing:2.832000px;}
.ls24{letter-spacing:2.880000px;}
.ls7e{letter-spacing:2.928000px;}
.ls36{letter-spacing:2.940000px;}
.ls54{letter-spacing:3.000000px;}
.ls4c{letter-spacing:3.060000px;}
.ls71{letter-spacing:3.072000px;}
.ls3f{letter-spacing:3.120000px;}
.ls75{letter-spacing:3.168000px;}
.ls46{letter-spacing:3.180000px;}
.ls42{letter-spacing:3.240000px;}
.ls26{letter-spacing:3.300000px;}
.ls29{letter-spacing:3.360000px;}
.ls55{letter-spacing:3.540000px;}
.ls57{letter-spacing:3.600000px;}
.ls33{letter-spacing:3.660000px;}
.ls60{letter-spacing:3.720000px;}
.ls25{letter-spacing:3.840000px;}
.ls58{letter-spacing:3.900000px;}
.ls3b{letter-spacing:4.080000px;}
.ls13{letter-spacing:4.200000px;}
.ls70{letter-spacing:4.320000px;}
.ls4b{letter-spacing:4.380000px;}
.ls56{letter-spacing:4.560000px;}
.ls7c{letter-spacing:4.800000px;}
.ls6e{letter-spacing:5.088000px;}
.ls59{letter-spacing:5.160000px;}
.ls37{letter-spacing:5.220000px;}
.ls62{letter-spacing:5.340000px;}
.lsf{letter-spacing:7.260000px;}
.ls66{letter-spacing:7.620000px;}
.ls4e{letter-spacing:159.075000px;}
.ls51{letter-spacing:193.095000px;}
.ls50{letter-spacing:224.100000px;}
.ls5a{letter-spacing:316.176000px;}
.ls4f{letter-spacing:388.710000px;}
.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;}
.wsba{word-spacing:-22.020000px;}
.ws75{word-spacing:-19.380000px;}
.wsaa{word-spacing:-18.900000px;}
.ws9e{word-spacing:-18.660000px;}
.ws9b{word-spacing:-18.540000px;}
.ws9d{word-spacing:-18.120000px;}
.ws12{word-spacing:-17.820000px;}
.wsbb{word-spacing:-17.760000px;}
.ws46{word-spacing:-17.700000px;}
.ws13{word-spacing:-17.520000px;}
.ws99{word-spacing:-16.980000px;}
.ws14{word-spacing:-16.800000px;}
.ws10{word-spacing:-16.680000px;}
.ws47{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.200000px;}
.ws11{word-spacing:-16.140000px;}
.ws4a{word-spacing:-16.080000px;}
.ws9a{word-spacing:-15.900000px;}
.wsb9{word-spacing:-15.720000px;}
.ws3e{word-spacing:-15.660000px;}
.ws98{word-spacing:-15.540000px;}
.wsac{word-spacing:-15.240000px;}
.ws49{word-spacing:-15.120000px;}
.wsd2{word-spacing:-15.072000px;}
.ws48{word-spacing:-15.000000px;}
.wsab{word-spacing:-14.700000px;}
.wsca{word-spacing:-14.496000px;}
.wsd3{word-spacing:-14.256000px;}
.wsc9{word-spacing:-14.160000px;}
.ws9c{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.344000px;}
.wscc{word-spacing:-13.200000px;}
.wscb{word-spacing:-13.008000px;}
.wsce{word-spacing:-12.768000px;}
.wsc8{word-spacing:-12.576000px;}
.ws2{word-spacing:-12.510000px;}
.wsd1{word-spacing:-12.480000px;}
.wscd{word-spacing:-12.432000px;}
.wseb{word-spacing:-12.384000px;}
.wsc7{word-spacing:-12.288000px;}
.wsd0{word-spacing:-12.240000px;}
.ws3f{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.210662px;}
.wscf{word-spacing:-9.360000px;}
.wse3{word-spacing:-5.088000px;}
.wsec{word-spacing:-4.800000px;}
.wsa5{word-spacing:-4.560000px;}
.ws19{word-spacing:-4.200000px;}
.ws4c{word-spacing:-4.080000px;}
.wsc3{word-spacing:-3.900000px;}
.ws2f{word-spacing:-3.840000px;}
.ws3d{word-spacing:-3.660000px;}
.wsa4{word-spacing:-3.600000px;}
.ws33{word-spacing:-3.360000px;}
.ws31{word-spacing:-3.300000px;}
.ws5c{word-spacing:-3.240000px;}
.ws57{word-spacing:-3.180000px;}
.wse8{word-spacing:-3.168000px;}
.ws96{word-spacing:-3.120000px;}
.wsd8{word-spacing:-3.072000px;}
.ws97{word-spacing:-3.060000px;}
.wsa0{word-spacing:-2.940000px;}
.wsf0{word-spacing:-2.928000px;}
.ws6{word-spacing:-2.886000px;}
.ws2e{word-spacing:-2.880000px;}
.ws2b{word-spacing:-2.820000px;}
.ws32{word-spacing:-2.760000px;}
.ws4b{word-spacing:-2.700000px;}
.wsd5{word-spacing:-2.640000px;}
.ws30{word-spacing:-2.580000px;}
.ws1c{word-spacing:-2.520000px;}
.wsdb{word-spacing:-2.496000px;}
.ws56{word-spacing:-2.460000px;}
.ws51{word-spacing:-2.400000px;}
.wse7{word-spacing:-2.352000px;}
.ws15{word-spacing:-2.340000px;}
.ws2d{word-spacing:-2.280000px;}
.wsea{word-spacing:-2.256000px;}
.wsc{word-spacing:-2.220000px;}
.ws54{word-spacing:-2.160000px;}
.ws3b{word-spacing:-2.100000px;}
.ws5d{word-spacing:-2.040000px;}
.wse4{word-spacing:-2.016000px;}
.wsa2{word-spacing:-1.980000px;}
.ws23{word-spacing:-1.968000px;}
.ws52{word-spacing:-1.920000px;}
.wsd{word-spacing:-1.860000px;}
.ws27{word-spacing:-1.824000px;}
.ws35{word-spacing:-1.800000px;}
.wsc4{word-spacing:-1.740000px;}
.wsf1{word-spacing:-1.728000px;}
.ws95{word-spacing:-1.680000px;}
.wsda{word-spacing:-1.632000px;}
.ws9f{word-spacing:-1.620000px;}
.ws28{word-spacing:-1.584000px;}
.ws38{word-spacing:-1.560000px;}
.wse9{word-spacing:-1.536000px;}
.wsb{word-spacing:-1.500000px;}
.ws5e{word-spacing:-1.488000px;}
.ws4d{word-spacing:-1.440000px;}
.wse6{word-spacing:-1.392000px;}
.ws40{word-spacing:-1.380000px;}
.ws1a{word-spacing:-1.320000px;}
.ws39{word-spacing:-1.260000px;}
.ws5a{word-spacing:-1.248000px;}
.ws43{word-spacing:-1.200000px;}
.wsee{word-spacing:-1.152000px;}
.ws2a{word-spacing:-1.140000px;}
.wsb8{word-spacing:-1.104000px;}
.ws18{word-spacing:-1.080000px;}
.wsb7{word-spacing:-1.056000px;}
.ws34{word-spacing:-1.020000px;}
.ws1d{word-spacing:-0.960000px;}
.wsf2{word-spacing:-0.912000px;}
.ws42{word-spacing:-0.900000px;}
.wsdc{word-spacing:-0.864000px;}
.ws3a{word-spacing:-0.840000px;}
.wsd9{word-spacing:-0.816000px;}
.ws50{word-spacing:-0.780000px;}
.wsb6{word-spacing:-0.768000px;}
.ws24{word-spacing:-0.720000px;}
.ws26{word-spacing:-0.672000px;}
.wsa{word-spacing:-0.660000px;}
.wsde{word-spacing:-0.624000px;}
.ws21{word-spacing:-0.600000px;}
.wsdd{word-spacing:-0.576000px;}
.ws16{word-spacing:-0.540000px;}
.wsef{word-spacing:-0.528000px;}
.ws41{word-spacing:-0.480000px;}
.wse5{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.420000px;}
.wsd7{word-spacing:-0.384000px;}
.ws1e{word-spacing:-0.360000px;}
.wsed{word-spacing:-0.336000px;}
.wse{word-spacing:-0.300000px;}
.ws5b{word-spacing:-0.288000px;}
.ws36{word-spacing:-0.240000px;}
.ws25{word-spacing:-0.192000px;}
.ws2c{word-spacing:-0.180000px;}
.ws29{word-spacing:-0.144000px;}
.ws1b{word-spacing:-0.120000px;}
.ws74{word-spacing:-0.096000px;}
.ws3c{word-spacing:-0.060000px;}
.ws45{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws73{word-spacing:0.045000px;}
.wse2{word-spacing:0.048000px;}
.ws4e{word-spacing:0.060000px;}
.ws58{word-spacing:0.120000px;}
.ws59{word-spacing:0.144000px;}
.ws20{word-spacing:0.180000px;}
.wsd6{word-spacing:0.240000px;}
.wsa3{word-spacing:0.300000px;}
.ws4f{word-spacing:0.360000px;}
.ws37{word-spacing:0.480000px;}
.wsc6{word-spacing:0.660000px;}
.wsb2{word-spacing:0.720000px;}
.wsb3{word-spacing:0.900000px;}
.ws5f{word-spacing:0.960000px;}
.ws53{word-spacing:1.020000px;}
.wsa6{word-spacing:1.140000px;}
.wsbf{word-spacing:1.440000px;}
.wsdf{word-spacing:1.488000px;}
.wsc2{word-spacing:1.500000px;}
.ws55{word-spacing:1.740000px;}
.wsa8{word-spacing:1.980000px;}
.wse1{word-spacing:2.064000px;}
.wsbd{word-spacing:2.160000px;}
.ws1f{word-spacing:2.400000px;}
.wsa1{word-spacing:2.520000px;}
.wsb4{word-spacing:2.580000px;}
.wsc5{word-spacing:2.820000px;}
.wsf{word-spacing:2.940000px;}
.wsa9{word-spacing:2.976000px;}
.wse0{word-spacing:3.216000px;}
.ws8{word-spacing:3.240000px;}
.wsb1{word-spacing:3.420000px;}
.wsc1{word-spacing:3.720000px;}
.ws22{word-spacing:3.936000px;}
.ws44{word-spacing:3.984000px;}
.wsb5{word-spacing:4.260000px;}
.wsbe{word-spacing:4.320000px;}
.wsa7{word-spacing:4.380000px;}
.wsc0{word-spacing:4.620000px;}
.wsbc{word-spacing:4.740000px;}
.ws7{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.wsd4{word-spacing:5.520000px;}
.wsb0{word-spacing:8.880000px;}
.ws7b{word-spacing:16.065000px;}
.ws78{word-spacing:18.855000px;}
.ws79{word-spacing:20.115000px;}
.ws7d{word-spacing:21.330000px;}
.ws76{word-spacing:21.600000px;}
.ws66{word-spacing:25.830000px;}
.ws68{word-spacing:34.335000px;}
.ws62{word-spacing:35.865000px;}
.ws63{word-spacing:37.125000px;}
.ws71{word-spacing:38.340000px;}
.ws60{word-spacing:47.115000px;}
.ws69{word-spacing:54.945000px;}
.ws7a{word-spacing:55.620000px;}
.ws6b{word-spacing:57.690000px;}
.ws6c{word-spacing:65.880000px;}
.ws6f{word-spacing:80.190000px;}
.ws64{word-spacing:81.135000px;}
.ws6e{word-spacing:88.380000px;}
.ws81{word-spacing:88.560000px;}
.ws88{word-spacing:88.605000px;}
.ws6d{word-spacing:88.695000px;}
.ws8b{word-spacing:88.830000px;}
.ws6a{word-spacing:88.965000px;}
.ws8d{word-spacing:89.415000px;}
.ws83{word-spacing:97.920000px;}
.ws72{word-spacing:99.900000px;}
.ws89{word-spacing:103.590000px;}
.ws80{word-spacing:114.075000px;}
.ws8c{word-spacing:118.260000px;}
.ws85{word-spacing:122.310000px;}
.ws90{word-spacing:122.355000px;}
.ws70{word-spacing:122.400000px;}
.ws93{word-spacing:122.580000px;}
.ws7c{word-spacing:126.090000px;}
.ws65{word-spacing:127.350000px;}
.ws91{word-spacing:130.815000px;}
.ws7e{word-spacing:134.730000px;}
.ws67{word-spacing:144.495000px;}
.ws94{word-spacing:144.810000px;}
.ws86{word-spacing:148.095000px;}
.ws8f{word-spacing:148.950000px;}
.ws92{word-spacing:156.330000px;}
.ws82{word-spacing:164.835000px;}
.ws7f{word-spacing:178.830000px;}
.ws84{word-spacing:186.030000px;}
.ws87{word-spacing:190.350000px;}
.ws77{word-spacing:205.965000px;}
.ws61{word-spacing:222.975000px;}
.wsad{word-spacing:280.176000px;}
.wsae{word-spacing:292.176000px;}
.ws8a{word-spacing:343.710000px;}
.ws8e{word-spacing:347.850000px;}
.wsaf{word-spacing:644.304000px;}
._e{margin-left:-2898.096000px;}
._f{margin-left:-2874.288000px;}
._85{margin-left:-11.766000px;}
._4{margin-left:-9.368400px;}
._6{margin-left:-7.186800px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.012800px;}
._a{width:1.612800px;}
._b{width:3.600000px;}
._8{width:5.004000px;}
._7{width:6.156000px;}
._9{width:7.236000px;}
._c{width:8.280000px;}
._d{width:10.080000px;}
._84{width:19.824000px;}
._83{width:22.512000px;}
._5c{width:35.685000px;}
._18{width:45.585000px;}
._1a{width:49.590000px;}
._44{width:56.385000px;}
._1f{width:57.690000px;}
._5{width:59.606214px;}
._36{width:61.740000px;}
._1d{width:66.195000px;}
._52{width:70.440000px;}
._2d{width:71.550000px;}
._51{width:72.945000px;}
._5b{width:74.700000px;}
._2e{width:77.490000px;}
._53{width:88.695000px;}
._2c{width:90.195000px;}
._3c{width:91.440000px;}
._3b{width:94.590000px;}
._74{width:98.865000px;}
._17{width:100.215000px;}
._35{width:101.715000px;}
._43{width:104.355000px;}
._58{width:108.450000px;}
._3a{width:111.195000px;}
._2b{width:112.320000px;}
._77{width:113.850000px;}
._6f{width:115.020000px;}
._19{width:117.090000px;}
._4c{width:119.835000px;}
._50{width:123.030000px;}
._14{width:125.460000px;}
._68{width:133.065000px;}
._1b{width:134.235000px;}
._29{width:135.754800px;}
._47{width:139.365000px;}
._6b{width:141.255000px;}
._1e{width:142.335000px;}
._23{width:145.485000px;}
._49{width:153.270000px;}
._5e{width:156.105000px;}
._4f{width:158.040000px;}
._66{width:159.345000px;}
._45{width:164.790000px;}
._7b{width:166.725000px;}
._3e{width:167.985000px;}
._41{width:169.290000px;}
._20{width:176.355000px;}
._37{width:178.365000px;}
._24{width:180.450000px;}
._5d{width:182.340000px;}
._27{width:184.860000px;}
._38{width:186.360000px;}
._78{width:192.690000px;}
._6c{width:193.905000px;}
._64{width:197.820000px;}
._3d{width:198.855000px;}
._65{width:200.790000px;}
._71{width:202.050000px;}
._62{width:203.145000px;}
._60{width:215.595000px;}
._5f{width:223.605000px;}
._56{width:256.230000px;}
._6e{width:257.535000px;}
._59{width:260.955000px;}
._12{width:264.735000px;}
._7e{width:266.640000px;}
._73{width:268.380000px;}
._15{width:269.460000px;}
._16{width:271.755000px;}
._70{width:279.990000px;}
._46{width:283.680000px;}
._72{width:287.505000px;}
._75{width:289.980000px;}
._57{width:293.220000px;}
._6d{width:294.975000px;}
._55{width:301.860000px;}
._28{width:303.075000px;}
._7f{width:304.176000px;}
._13{width:310.230000px;}
._48{width:318.690000px;}
._30{width:321.345000px;}
._2a{width:326.835000px;}
._11{width:344.385000px;}
._25{width:345.555000px;}
._54{width:351.855000px;}
._42{width:354.555000px;}
._76{width:355.815000px;}
._22{width:375.525000px;}
._26{width:378.045000px;}
._67{width:385.065000px;}
._33{width:386.145000px;}
._10{width:394.335000px;}
._63{width:411.300000px;}
._61{width:412.560000px;}
._7c{width:413.685000px;}
._40{width:421.830000px;}
._1c{width:423.090000px;}
._4e{width:424.215000px;}
._4d{width:426.780000px;}
._69{width:431.280000px;}
._34{width:445.050000px;}
._5a{width:475.560000px;}
._3f{width:479.250000px;}
._4a{width:504.315000px;}
._4b{width:514.215000px;}
._7d{width:521.424000px;}
._39{width:525.465000px;}
._21{width:534.240000px;}
._80{width:572.064000px;}
._7a{width:584.835000px;}
._79{width:607.455000px;}
._6a{width:611.190000px;}
._32{width:625.455000px;}
._2f{width:640.485000px;}
._31{width:655.515000px;}
._81{width:934.944000px;}
._82{width:958.401000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.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;}
.fsc{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fsb{font-size:106.466400px;}
.fsa{font-size:121.675800px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2b{bottom:47.777250px;}
.y21a{bottom:80.263500px;}
.y13c{bottom:82.990950px;}
.ye3{bottom:83.212500px;}
.y111{bottom:83.333550px;}
.y9d{bottom:83.353950px;}
.y150{bottom:83.460300px;}
.y1b9{bottom:83.637600px;}
.y11a{bottom:83.661150px;}
.y90{bottom:83.763750px;}
.yc5{bottom:83.770350px;}
.y20{bottom:87.489900px;}
.y1d9{bottom:89.121900px;}
.y159{bottom:92.603550px;}
.y14e{bottom:93.512100px;}
.y219{bottom:95.263500px;}
.y5a{bottom:97.428750px;}
.y187{bottom:98.772600px;}
.ye2{bottom:98.956500px;}
.y9c{bottom:99.097950px;}
.y14f{bottom:99.204300px;}
.y119{bottom:99.405150px;}
.y110{bottom:99.833550px;}
.y1b8{bottom:101.637600px;}
.y8f{bottom:101.763750px;}
.yc4{bottom:101.770350px;}
.y1f{bottom:102.486150px;}
.y1d8{bottom:104.121900px;}
.y13b{bottom:108.369150px;}
.y158{bottom:108.851550px;}
.y218{bottom:110.263500px;}
.y14d{bottom:111.512100px;}
.ye1{bottom:114.700500px;}
.y118{bottom:115.149150px;}
.y59{bottom:115.428750px;}
.y10f{bottom:116.333550px;}
.y186{bottom:116.772600px;}
.y1e{bottom:117.479550px;}
.y1d7{bottom:119.121900px;}
.y1b7{bottom:119.637600px;}
.y8e{bottom:119.763750px;}
.yc3{bottom:119.770350px;}
.y13a{bottom:123.871650px;}
.y157{bottom:125.099550px;}
.y217{bottom:125.263500px;}
.y14c{bottom:129.512100px;}
.ye0{bottom:130.444500px;}
.y58{bottom:133.428750px;}
.y1d6{bottom:134.121900px;}
.y185{bottom:134.772600px;}
.y1b6{bottom:137.637600px;}
.y8d{bottom:137.763750px;}
.yc2{bottom:137.770350px;}
.y139{bottom:139.374150px;}
.y216{bottom:140.263500px;}
.y10e{bottom:141.706200px;}
.ydf{bottom:146.188500px;}
.y14b{bottom:147.512100px;}
.y1d5{bottom:149.121900px;}
.y57{bottom:151.428750px;}
.y184{bottom:152.772600px;}
.y156{bottom:154.103550px;}
.y138{bottom:154.876650px;}
.y215{bottom:155.263500px;}
.y1b5{bottom:155.637600px;}
.y8c{bottom:155.763750px;}
.yc1{bottom:155.770350px;}
.y10d{bottom:157.208700px;}
.y1d4{bottom:164.121900px;}
.y14a{bottom:165.512100px;}
.y56{bottom:169.428750px;}
.y214{bottom:170.263500px;}
.y137{bottom:170.371650px;}
.y183{bottom:170.772600px;}
.y10c{bottom:172.711200px;}
.y1b4{bottom:173.637600px;}
.y8b{bottom:173.763750px;}
.yc0{bottom:173.770350px;}
.y1d3{bottom:179.121900px;}
.y26{bottom:182.808000px;}
.y155{bottom:183.107550px;}
.y149{bottom:183.512100px;}
.y213{bottom:185.263500px;}
.y136{bottom:185.874150px;}
.y55{bottom:187.428750px;}
.y10b{bottom:188.213700px;}
.y182{bottom:188.772600px;}
.y1b3{bottom:191.637600px;}
.y8a{bottom:191.763750px;}
.ybf{bottom:191.770350px;}
.y1d2{bottom:194.121900px;}
.y152{bottom:195.890203px;}
.y212{bottom:200.263500px;}
.y25{bottom:200.808000px;}
.y135{bottom:201.376650px;}
.y148{bottom:201.512100px;}
.y10a{bottom:203.716200px;}
.y54{bottom:205.428750px;}
.y181{bottom:206.772600px;}
.y1d1{bottom:209.121900px;}
.y1b2{bottom:209.637600px;}
.y89{bottom:209.763750px;}
.ybe{bottom:209.770350px;}
.y211{bottom:215.263500px;}
.y154{bottom:215.500350px;}
.y134{bottom:216.879150px;}
.y24{bottom:218.808000px;}
.y109{bottom:219.218700px;}
.y147{bottom:219.512100px;}
.y1d0{bottom:224.121900px;}
.y180{bottom:224.772600px;}
.y117{bottom:226.080578px;}
.y1b1{bottom:227.637600px;}
.y88{bottom:227.763750px;}
.ybd{bottom:227.770350px;}
.y210{bottom:230.263500px;}
.y133{bottom:232.381650px;}
.y108{bottom:234.721200px;}
.y153{bottom:235.000350px;}
.y23{bottom:236.808000px;}
.y146{bottom:237.512100px;}
.y1cf{bottom:239.121900px;}
.y53{bottom:240.921750px;}
.y17f{bottom:242.772600px;}
.y20f{bottom:245.263500px;}
.y1b0{bottom:245.637600px;}
.y87{bottom:245.763750px;}
.ybc{bottom:245.770350px;}
.y132{bottom:247.884150px;}
.y107{bottom:250.223700px;}
.y1ce{bottom:254.121900px;}
.y22{bottom:254.808000px;}
.y145{bottom:255.512100px;}
.y52{bottom:255.921750px;}
.y20e{bottom:260.263500px;}
.y17e{bottom:260.772600px;}
.y131{bottom:263.386650px;}
.y1af{bottom:263.637600px;}
.y86{bottom:263.763750px;}
.ybb{bottom:263.770350px;}
.y106{bottom:265.726200px;}
.y1cd{bottom:269.121900px;}
.y51{bottom:270.921750px;}
.y28{bottom:272.808000px;}
.y144{bottom:273.512100px;}
.y20d{bottom:275.263500px;}
.y17d{bottom:278.772600px;}
.y130{bottom:278.889150px;}
.y105{bottom:281.228700px;}
.y1ae{bottom:281.637600px;}
.y85{bottom:281.763750px;}
.yba{bottom:281.770350px;}
.y15d{bottom:281.791200px;}
.y1cc{bottom:284.121900px;}
.y50{bottom:285.921750px;}
.y20c{bottom:290.263500px;}
.y21{bottom:290.403000px;}
.y27{bottom:290.808000px;}
.y143{bottom:291.512100px;}
.y12f{bottom:294.391650px;}
.y104{bottom:296.731200px;}
.y17c{bottom:296.772600px;}
.y15c{bottom:297.535200px;}
.y1cb{bottom:299.121900px;}
.y1ad{bottom:299.637600px;}
.y84{bottom:299.763750px;}
.yb9{bottom:299.770350px;}
.y4f{bottom:300.921750px;}
.y20b{bottom:305.263500px;}
.y12e{bottom:309.894150px;}
.y103{bottom:312.233700px;}
.y15b{bottom:313.279200px;}
.y1ca{bottom:314.121900px;}
.y17b{bottom:314.772600px;}
.y4e{bottom:315.921750px;}
.y1ac{bottom:317.637600px;}
.y83{bottom:317.763750px;}
.yb8{bottom:317.770350px;}
.y20a{bottom:320.263500px;}
.y12d{bottom:325.396650px;}
.y142{bottom:326.352750px;}
.y102{bottom:327.736200px;}
.y15a{bottom:329.023200px;}
.y1c9{bottom:329.121900px;}
.y4d{bottom:330.921750px;}
.y17a{bottom:332.772600px;}
.y209{bottom:335.263500px;}
.y1ab{bottom:335.637600px;}
.y82{bottom:335.763750px;}
.yb7{bottom:335.770350px;}
.y12c{bottom:340.899150px;}
.y141{bottom:341.958750px;}
.y101{bottom:343.231800px;}
.y1c8{bottom:344.121900px;}
.y4c{bottom:345.921750px;}
.y208{bottom:350.263500px;}
.y179{bottom:350.772600px;}
.y1aa{bottom:353.637600px;}
.y81{bottom:353.763750px;}
.yb6{bottom:353.770350px;}
.y140{bottom:356.320350px;}
.y12b{bottom:356.401650px;}
.y151{bottom:356.867400px;}
.y100{bottom:358.734300px;}
.y1c7{bottom:359.121900px;}
.y4b{bottom:360.921750px;}
.y207{bottom:365.263500px;}
.y1d{bottom:366.667950px;}
.y178{bottom:368.772600px;}
.y1a9{bottom:371.637600px;}
.y80{bottom:371.763750px;}
.yb5{bottom:371.770350px;}
.y12a{bottom:371.898900px;}
.y13f{bottom:371.920350px;}
.y1c6{bottom:374.121900px;}
.yff{bottom:374.236800px;}
.y116{bottom:379.871293px;}
.y206{bottom:380.263500px;}
.y177{bottom:386.772600px;}
.y129{bottom:387.401400px;}
.y1c5{bottom:389.121900px;}
.y13e{bottom:389.515350px;}
.y1a8{bottom:389.637600px;}
.yfe{bottom:389.739300px;}
.y7f{bottom:389.763750px;}
.yb4{bottom:389.770350px;}
.y4a{bottom:392.050350px;}
.y1c{bottom:394.012950px;}
.y205{bottom:395.263500px;}
.y128{bottom:402.903900px;}
.y1c4{bottom:404.121900px;}
.y176{bottom:404.772600px;}
.yfd{bottom:405.241800px;}
.y1a7{bottom:407.637600px;}
.y49{bottom:407.650350px;}
.y7e{bottom:407.763750px;}
.yb3{bottom:407.770350px;}
.y204{bottom:410.263500px;}
.y1b{bottom:412.012950px;}
.y127{bottom:418.406400px;}
.y1c3{bottom:419.121900px;}
.yfc{bottom:420.744300px;}
.y175{bottom:422.772600px;}
.y48{bottom:425.245350px;}
.y203{bottom:425.263500px;}
.y1a6{bottom:425.637600px;}
.y7d{bottom:425.763750px;}
.yb2{bottom:425.770350px;}
.y1a{bottom:430.012950px;}
.y126{bottom:433.908900px;}
.y1c2{bottom:434.121900px;}
.yfb{bottom:436.246800px;}
.y202{bottom:440.263500px;}
.y174{bottom:440.772600px;}
.y1a5{bottom:443.232600px;}
.y7c{bottom:443.763750px;}
.yb1{bottom:443.770350px;}
.y99{bottom:447.748200px;}
.y19{bottom:448.012950px;}
.y1c1{bottom:449.121900px;}
.y125{bottom:449.411400px;}
.yfa{bottom:451.749300px;}
.y201{bottom:455.263500px;}
.y173{bottom:458.772600px;}
.y47{bottom:461.095350px;}
.y7b{bottom:461.763750px;}
.yb0{bottom:461.770350px;}
.y1c0{bottom:464.121900px;}
.y124{bottom:464.913900px;}
.y18{bottom:466.012950px;}
.yf9{bottom:467.251800px;}
.y200{bottom:470.263500px;}
.y172{bottom:476.772600px;}
.y1a4{bottom:479.637600px;}
.y7a{bottom:479.763750px;}
.yaf{bottom:479.770350px;}
.y123{bottom:480.416400px;}
.yf8{bottom:482.754300px;}
.y17{bottom:484.012950px;}
.y1ff{bottom:485.263500px;}
.y171{bottom:494.772600px;}
.y122{bottom:495.918900px;}
.y1bf{bottom:497.230350px;}
.y1a3{bottom:497.637600px;}
.y79{bottom:497.763750px;}
.yae{bottom:497.770350px;}
.yf7{bottom:498.256800px;}
.y1fe{bottom:500.263500px;}
.y16{bottom:502.012950px;}
.yf6{bottom:513.759300px;}
.y1fd{bottom:515.263500px;}
.y46{bottom:515.635350px;}
.y1a2{bottom:515.637600px;}
.y78{bottom:515.763750px;}
.yad{bottom:515.770350px;}
.y15{bottom:520.012950px;}
.y121{bottom:524.178900px;}
.yf5{bottom:529.261800px;}
.y1fc{bottom:530.263500px;}
.y170{bottom:530.367600px;}
.y45{bottom:533.635350px;}
.y1a1{bottom:533.637600px;}
.y77{bottom:533.763750px;}
.yac{bottom:533.770350px;}
.y14{bottom:538.012950px;}
.y9b{bottom:539.588381px;}
.yf4{bottom:544.758600px;}
.y1fb{bottom:545.263500px;}
.y44{bottom:551.635350px;}
.y1a0{bottom:551.637600px;}
.y76{bottom:551.763750px;}
.yab{bottom:551.770350px;}
.y120{bottom:552.427650px;}
.y13{bottom:556.012950px;}
.yf3{bottom:560.261100px;}
.y1fa{bottom:560.263500px;}
.y11f{bottom:568.931400px;}
.y1be{bottom:569.365350px;}
.y43{bottom:569.635350px;}
.y19f{bottom:569.637600px;}
.y75{bottom:569.763750px;}
.yaa{bottom:569.770350px;}
.yde{bottom:571.570350px;}
.y12{bottom:574.012950px;}
.y1f9{bottom:575.263500px;}
.yf2{bottom:575.763600px;}
.y16f{bottom:584.405250px;}
.y42{bottom:587.635350px;}
.y19e{bottom:587.637600px;}
.y74{bottom:587.763750px;}
.ya9{bottom:587.770350px;}
.ydd{bottom:589.570350px;}
.y115{bottom:589.849650px;}
.y1f8{bottom:590.263500px;}
.yf1{bottom:591.266100px;}
.y11{bottom:592.012950px;}
.y11e{bottom:597.191400px;}
.y16e{bottom:599.405250px;}
.y1f7{bottom:605.263500px;}
.y41{bottom:605.635350px;}
.y73{bottom:605.763750px;}
.ya8{bottom:605.770350px;}
.yf0{bottom:606.768600px;}
.ydc{bottom:607.570350px;}
.y10{bottom:610.012950px;}
.y16d{bottom:614.405250px;}
.y1f6{bottom:620.263500px;}
.yef{bottom:622.271100px;}
.y19d{bottom:623.232600px;}
.y1bd{bottom:623.365350px;}
.y40{bottom:623.635350px;}
.y72{bottom:623.763750px;}
.ya7{bottom:623.770350px;}
.y11d{bottom:625.451400px;}
.ydb{bottom:625.570350px;}
.yf{bottom:628.012950px;}
.y16c{bottom:629.405250px;}
.y1f5{bottom:635.263500px;}
.yee{bottom:637.773600px;}
.y3f{bottom:641.635350px;}
.y71{bottom:641.763750px;}
.ya6{bottom:641.770350px;}
.yda{bottom:643.570350px;}
.y16b{bottom:644.405250px;}
.y1f4{bottom:650.263500px;}
.yed{bottom:653.276100px;}
.y114{bottom:654.139050px;}
.y11c{bottom:657.220350px;}
.y16a{bottom:659.405250px;}
.y3e{bottom:659.635350px;}
.y70{bottom:659.763750px;}
.ya5{bottom:659.770350px;}
.yd9{bottom:661.570350px;}
.y1f3{bottom:665.263500px;}
.yec{bottom:668.778600px;}
.y113{bottom:669.883050px;}
.ye{bottom:673.167300px;}
.y169{bottom:674.405250px;}
.y3d{bottom:677.635350px;}
.y6f{bottom:677.763750px;}
.ya4{bottom:677.770350px;}
.y19c{bottom:677.772600px;}
.yd8{bottom:679.570350px;}
.y1f2{bottom:680.263500px;}
.yeb{bottom:684.281100px;}
.yd{bottom:685.618050px;}
.y168{bottom:689.405250px;}
.y1f1{bottom:695.263500px;}
.y3c{bottom:695.635350px;}
.y6e{bottom:695.763750px;}
.ya3{bottom:695.770350px;}
.y19b{bottom:695.772600px;}
.yd7{bottom:697.570350px;}
.y167{bottom:704.405250px;}
.y1f0{bottom:710.265900px;}
.yea{bottom:712.541100px;}
.y3b{bottom:713.635350px;}
.y6d{bottom:713.763750px;}
.ya2{bottom:713.770350px;}
.y19a{bottom:713.772600px;}
.y9a{bottom:714.588600px;}
.yd6{bottom:715.570350px;}
.y166{bottom:719.405250px;}
.yc{bottom:722.758950px;}
.y1ef{bottom:725.265900px;}
.yb{bottom:730.833600px;}
.y3a{bottom:731.635350px;}
.y6c{bottom:731.763750px;}
.ya1{bottom:731.770350px;}
.y199{bottom:731.772600px;}
.yd5{bottom:733.570350px;}
.y165{bottom:734.405250px;}
.y1ee{bottom:740.265900px;}
.ye9{bottom:740.789850px;}
.y39{bottom:749.635350px;}
.ya{bottom:749.758950px;}
.y6b{bottom:749.763750px;}
.ya0{bottom:749.770350px;}
.y198{bottom:749.772600px;}
.yd4{bottom:751.570350px;}
.y1ed{bottom:755.265900px;}
.ye8{bottom:757.293600px;}
.y1bc{bottom:767.365350px;}
.y164{bottom:767.515350px;}
.y38{bottom:767.635350px;}
.y6a{bottom:767.763750px;}
.y9f{bottom:767.770350px;}
.y197{bottom:767.772600px;}
.yd3{bottom:769.570350px;}
.y1ec{bottom:770.265900px;}
.y9{bottom:778.480800px;}
.y22d{bottom:785.263500px;}
.y1eb{bottom:785.265900px;}
.y163{bottom:785.515350px;}
.ye7{bottom:785.553600px;}
.y37{bottom:785.635350px;}
.y69{bottom:785.763750px;}
.y98{bottom:785.770350px;}
.y196{bottom:785.772600px;}
.yd2{bottom:787.570350px;}
.y22c{bottom:800.263500px;}
.y1ea{bottom:800.265900px;}
.y162{bottom:803.515350px;}
.y36{bottom:803.635350px;}
.y68{bottom:803.763750px;}
.y97{bottom:803.770350px;}
.y195{bottom:803.772600px;}
.yd1{bottom:805.570350px;}
.ye6{bottom:813.813600px;}
.y22b{bottom:815.263500px;}
.y1e9{bottom:815.265900px;}
.y1bb{bottom:821.365350px;}
.y161{bottom:821.515350px;}
.y35{bottom:821.635350px;}
.y67{bottom:821.763750px;}
.y96{bottom:821.770350px;}
.y194{bottom:821.772600px;}
.yd0{bottom:823.570350px;}
.y8{bottom:824.716950px;}
.y22a{bottom:830.263500px;}
.y1e8{bottom:830.265900px;}
.y160{bottom:839.515350px;}
.y66{bottom:839.763750px;}
.y95{bottom:839.770350px;}
.y193{bottom:839.772600px;}
.ycf{bottom:841.570350px;}
.y229{bottom:845.263500px;}
.y1e7{bottom:845.265900px;}
.ye5{bottom:845.575350px;}
.y34{bottom:857.230350px;}
.y15f{bottom:857.515350px;}
.y65{bottom:857.763750px;}
.y94{bottom:857.770350px;}
.y192{bottom:857.772600px;}
.yce{bottom:859.570350px;}
.y228{bottom:860.263500px;}
.y1e6{bottom:860.265900px;}
.y7{bottom:861.177750px;}
.y227{bottom:875.263500px;}
.y1e5{bottom:875.265900px;}
.y64{bottom:875.763750px;}
.y93{bottom:875.770350px;}
.y191{bottom:875.772600px;}
.y226{bottom:890.263500px;}
.y1e4{bottom:890.265900px;}
.y1ba{bottom:893.365350px;}
.y63{bottom:893.763750px;}
.y92{bottom:893.770350px;}
.y190{bottom:893.772600px;}
.ycd{bottom:895.063500px;}
.y6{bottom:897.606900px;}
.y225{bottom:905.263500px;}
.y1e3{bottom:905.265900px;}
.ycc{bottom:910.063500px;}
.y62{bottom:911.763750px;}
.y33{bottom:911.770350px;}
.y18f{bottom:911.772600px;}
.y224{bottom:920.263500px;}
.y1e2{bottom:920.265900px;}
.ycb{bottom:925.063500px;}
.y61{bottom:929.763750px;}
.y32{bottom:929.770350px;}
.y18e{bottom:929.772600px;}
.y5{bottom:934.036050px;}
.y223{bottom:935.263500px;}
.y1e1{bottom:935.265900px;}
.yca{bottom:940.063500px;}
.y60{bottom:947.763750px;}
.y31{bottom:947.770350px;}
.y18d{bottom:947.772600px;}
.y222{bottom:950.263500px;}
.y1e0{bottom:950.265900px;}
.yc9{bottom:955.063500px;}
.y221{bottom:965.263500px;}
.y1df{bottom:965.265900px;}
.y5f{bottom:965.763750px;}
.y30{bottom:965.770350px;}
.y18c{bottom:965.772600px;}
.y4{bottom:970.496850px;}
.y220{bottom:980.263500px;}
.y1de{bottom:980.265900px;}
.y5e{bottom:983.763750px;}
.y2f{bottom:983.770350px;}
.y18b{bottom:983.772600px;}
.yc8{bottom:986.170350px;}
.y21f{bottom:995.263500px;}
.y1dd{bottom:995.265900px;}
.y5d{bottom:1001.763750px;}
.y2e{bottom:1001.770350px;}
.y18a{bottom:1001.772600px;}
.y3{bottom:1006.926000px;}
.y21e{bottom:1010.263500px;}
.y1dc{bottom:1010.265900px;}
.yc7{bottom:1019.365350px;}
.y5c{bottom:1019.763750px;}
.y2d{bottom:1019.770350px;}
.y189{bottom:1019.772600px;}
.y21d{bottom:1025.263500px;}
.y1db{bottom:1025.265900px;}
.yc6{bottom:1037.365350px;}
.y5b{bottom:1037.763750px;}
.y2c{bottom:1037.770350px;}
.y188{bottom:1037.772600px;}
.y21c{bottom:1040.263500px;}
.y1da{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y13d{bottom:1132.414950px;}
.y91{bottom:1132.418700px;}
.y112{bottom:1132.421550px;}
.y21b{bottom:1132.423500px;}
.y11b{bottom:1132.425150px;}
.y9e{bottom:1132.429950px;}
.y15e{bottom:1132.435200px;}
.ye4{bottom:1132.444500px;}
.y2a{bottom:1136.092500px;}
.y29{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.h15{height:31.245117px;}
.h14{height:31.267090px;}
.h19{height:31.288090px;}
.h16{height:31.289890px;}
.h17{height:31.294690px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.hc{height:32.816576px;}
.h1b{height:33.328125px;}
.h1c{height:33.341963px;}
.h12{height:33.351562px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h1a{height:37.520508px;}
.he{height:41.660156px;}
.hf{height:41.689453px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h18{height:77.562436px;}
.h13{height:88.642721px;}
.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;}
.x38{left:78.682500px;}
.x28{left:83.929650px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x27{left:99.876450px;}
.x11{left:102.047400px;}
.x4{left:106.299150px;}
.x18{left:107.724450px;}
.xb{left:110.555400px;}
.xe{left:117.575400px;}
.x3a{left:120.755850px;}
.x3f{left:123.307350px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.xc{left:144.710400px;}
.xf{left:146.165400px;}
.x10{left:186.605400px;}
.x3e{left:194.270400px;}
.xd{left:211.085400px;}
.x5{left:212.876400px;}
.x3b{left:220.137450px;}
.x1f{left:274.566450px;}
.x20{left:279.853950px;}
.x21{left:281.428950px;}
.x1e{left:296.132700px;}
.x2a{left:306.468000px;}
.x2b{left:311.755500px;}
.x2c{left:313.330500px;}
.x29{left:323.770500px;}
.x22{left:338.466450px;}
.x2d{left:363.989250px;}
.x37{left:406.438500px;}
.x23{left:441.595200px;}
.x9{left:455.041500px;}
.x12{left:457.096200px;}
.x2e{left:462.854250px;}
.x34{left:476.438850px;}
.x16{left:478.345350px;}
.x7{left:480.476400px;}
.x1d{left:482.598600px;}
.x36{left:485.686500px;}
.x13{left:491.116200px;}
.x1a{left:495.286200px;}
.x24{left:500.038950px;}
.x40{left:503.851350px;}
.x33{left:506.195400px;}
.x17{left:512.365350px;}
.x32{left:514.625400px;}
.x2f{left:517.045500px;}
.x1c{left:520.111200px;}
.x1b{left:568.186200px;}
.x35{left:581.090850px;}
.x3c{left:591.972450px;}
.x15{left:663.492300px;}
.x25{left:668.338950px;}
.x30{left:678.966750px;}
.x2{left:693.365400px;}
.x39{left:721.723950px;}
.x14{left:728.391600px;}
.x26{left:736.693950px;}
.x31{left:740.943000px;}
.x3d{left:743.868150px;}
.x19{left:749.671350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls7b{letter-spacing:-2.346667pt;}
.ls53{letter-spacing:-1.480000pt;}
.ls63{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls32{letter-spacing:-0.426667pt;}
.ls64{letter-spacing:-0.320000pt;}
.ls5e{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.225067pt;}
.ls79{letter-spacing:-0.213333pt;}
.ls2e{letter-spacing:-0.160000pt;}
.ls47{letter-spacing:-0.106667pt;}
.ls45{letter-spacing:-0.053333pt;}
.ls7a{letter-spacing:-0.042667pt;}
.ls48{letter-spacing:-0.040000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003147pt;}
.ls39{letter-spacing:0.042667pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls49{letter-spacing:0.085333pt;}
.ls14{letter-spacing:0.106667pt;}
.ls21{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.170667pt;}
.ls16{letter-spacing:0.213333pt;}
.ls41{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls5f{letter-spacing:0.341333pt;}
.ls11{letter-spacing:0.373333pt;}
.ls6d{letter-spacing:0.384000pt;}
.ls35{letter-spacing:0.426667pt;}
.ls83{letter-spacing:0.469333pt;}
.ls10{letter-spacing:0.480000pt;}
.ls69{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls1e{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.586667pt;}
.ls78{letter-spacing:0.597333pt;}
.ls2f{letter-spacing:0.640000pt;}
.ls5b{letter-spacing:0.682667pt;}
.ls2b{letter-spacing:0.693333pt;}
.ls67{letter-spacing:0.725333pt;}
.ls3d{letter-spacing:0.746667pt;}
.ls6b{letter-spacing:0.768000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls82{letter-spacing:0.810667pt;}
.ls19{letter-spacing:0.853333pt;}
.ls6c{letter-spacing:0.896000pt;}
.ls31{letter-spacing:0.906667pt;}
.ls5c{letter-spacing:0.938667pt;}
.ls12{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:0.981333pt;}
.ls15{letter-spacing:1.013333pt;}
.ls7d{letter-spacing:1.024000pt;}
.ls1{letter-spacing:1.066667pt;}
.ls40{letter-spacing:1.109333pt;}
.ls2{letter-spacing:1.120000pt;}
.ls17{letter-spacing:1.173333pt;}
.ls34{letter-spacing:1.226667pt;}
.ls73{letter-spacing:1.237333pt;}
.ls38{letter-spacing:1.280000pt;}
.ls44{letter-spacing:1.322667pt;}
.ls5{letter-spacing:1.333333pt;}
.ls76{letter-spacing:1.365333pt;}
.ls2a{letter-spacing:1.386667pt;}
.ls20{letter-spacing:1.408000pt;}
.ls4a{letter-spacing:1.440000pt;}
.ls68{letter-spacing:1.450667pt;}
.ls52{letter-spacing:1.493333pt;}
.ls81{letter-spacing:1.536000pt;}
.ls61{letter-spacing:1.546667pt;}
.ls72{letter-spacing:1.578667pt;}
.ls7{letter-spacing:1.600000pt;}
.ls1f{letter-spacing:1.621333pt;}
.lsd{letter-spacing:1.653333pt;}
.ls1c{letter-spacing:1.706667pt;}
.ls7f{letter-spacing:1.749333pt;}
.ls3{letter-spacing:1.760000pt;}
.ls6f{letter-spacing:1.792000pt;}
.ls43{letter-spacing:1.813333pt;}
.ls2c{letter-spacing:1.866667pt;}
.ls28{letter-spacing:1.920000pt;}
.ls6{letter-spacing:1.973333pt;}
.ls77{letter-spacing:2.005333pt;}
.lse{letter-spacing:2.026667pt;}
.ls74{letter-spacing:2.048000pt;}
.ls3c{letter-spacing:2.080000pt;}
.ls84{letter-spacing:2.090667pt;}
.ls3e{letter-spacing:2.133333pt;}
.ls4d{letter-spacing:2.186667pt;}
.ls6a{letter-spacing:2.218667pt;}
.ls18{letter-spacing:2.240000pt;}
.ls30{letter-spacing:2.293333pt;}
.ls65{letter-spacing:2.346667pt;}
.ls3a{letter-spacing:2.400000pt;}
.ls27{letter-spacing:2.453333pt;}
.ls22{letter-spacing:2.506667pt;}
.ls80{letter-spacing:2.517333pt;}
.ls24{letter-spacing:2.560000pt;}
.ls7e{letter-spacing:2.602667pt;}
.ls36{letter-spacing:2.613333pt;}
.ls54{letter-spacing:2.666667pt;}
.ls4c{letter-spacing:2.720000pt;}
.ls71{letter-spacing:2.730667pt;}
.ls3f{letter-spacing:2.773333pt;}
.ls75{letter-spacing:2.816000pt;}
.ls46{letter-spacing:2.826667pt;}
.ls42{letter-spacing:2.880000pt;}
.ls26{letter-spacing:2.933333pt;}
.ls29{letter-spacing:2.986667pt;}
.ls55{letter-spacing:3.146667pt;}
.ls57{letter-spacing:3.200000pt;}
.ls33{letter-spacing:3.253333pt;}
.ls60{letter-spacing:3.306667pt;}
.ls25{letter-spacing:3.413333pt;}
.ls58{letter-spacing:3.466667pt;}
.ls3b{letter-spacing:3.626667pt;}
.ls13{letter-spacing:3.733333pt;}
.ls70{letter-spacing:3.840000pt;}
.ls4b{letter-spacing:3.893333pt;}
.ls56{letter-spacing:4.053333pt;}
.ls7c{letter-spacing:4.266667pt;}
.ls6e{letter-spacing:4.522667pt;}
.ls59{letter-spacing:4.586667pt;}
.ls37{letter-spacing:4.640000pt;}
.ls62{letter-spacing:4.746667pt;}
.lsf{letter-spacing:6.453333pt;}
.ls66{letter-spacing:6.773333pt;}
.ls4e{letter-spacing:141.400000pt;}
.ls51{letter-spacing:171.640000pt;}
.ls50{letter-spacing:199.200000pt;}
.ls5a{letter-spacing:281.045333pt;}
.ls4f{letter-spacing:345.520000pt;}
.ws0{word-spacing:-31.284267pt;}
.wsba{word-spacing:-19.573333pt;}
.ws75{word-spacing:-17.226667pt;}
.wsaa{word-spacing:-16.800000pt;}
.ws9e{word-spacing:-16.586667pt;}
.ws9b{word-spacing:-16.480000pt;}
.ws9d{word-spacing:-16.106667pt;}
.ws12{word-spacing:-15.840000pt;}
.wsbb{word-spacing:-15.786667pt;}
.ws46{word-spacing:-15.733333pt;}
.ws13{word-spacing:-15.573333pt;}
.ws99{word-spacing:-15.093333pt;}
.ws14{word-spacing:-14.933333pt;}
.ws10{word-spacing:-14.826667pt;}
.ws47{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.400000pt;}
.ws11{word-spacing:-14.346667pt;}
.ws4a{word-spacing:-14.293333pt;}
.ws9a{word-spacing:-14.133333pt;}
.wsb9{word-spacing:-13.973333pt;}
.ws3e{word-spacing:-13.920000pt;}
.ws98{word-spacing:-13.813333pt;}
.wsac{word-spacing:-13.546667pt;}
.ws49{word-spacing:-13.440000pt;}
.wsd2{word-spacing:-13.397333pt;}
.ws48{word-spacing:-13.333333pt;}
.wsab{word-spacing:-13.066667pt;}
.wsca{word-spacing:-12.885333pt;}
.wsd3{word-spacing:-12.672000pt;}
.wsc9{word-spacing:-12.586667pt;}
.ws9c{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.861333pt;}
.wscc{word-spacing:-11.733333pt;}
.wscb{word-spacing:-11.562667pt;}
.wsce{word-spacing:-11.349333pt;}
.wsc8{word-spacing:-11.178667pt;}
.ws2{word-spacing:-11.120000pt;}
.wsd1{word-spacing:-11.093333pt;}
.wscd{word-spacing:-11.050667pt;}
.wseb{word-spacing:-11.008000pt;}
.wsc7{word-spacing:-10.922667pt;}
.wsd0{word-spacing:-10.880000pt;}
.ws3f{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.076144pt;}
.wscf{word-spacing:-8.320000pt;}
.wse3{word-spacing:-4.522667pt;}
.wsec{word-spacing:-4.266667pt;}
.wsa5{word-spacing:-4.053333pt;}
.ws19{word-spacing:-3.733333pt;}
.ws4c{word-spacing:-3.626667pt;}
.wsc3{word-spacing:-3.466667pt;}
.ws2f{word-spacing:-3.413333pt;}
.ws3d{word-spacing:-3.253333pt;}
.wsa4{word-spacing:-3.200000pt;}
.ws33{word-spacing:-2.986667pt;}
.ws31{word-spacing:-2.933333pt;}
.ws5c{word-spacing:-2.880000pt;}
.ws57{word-spacing:-2.826667pt;}
.wse8{word-spacing:-2.816000pt;}
.ws96{word-spacing:-2.773333pt;}
.wsd8{word-spacing:-2.730667pt;}
.ws97{word-spacing:-2.720000pt;}
.wsa0{word-spacing:-2.613333pt;}
.wsf0{word-spacing:-2.602667pt;}
.ws6{word-spacing:-2.565333pt;}
.ws2e{word-spacing:-2.560000pt;}
.ws2b{word-spacing:-2.506667pt;}
.ws32{word-spacing:-2.453333pt;}
.ws4b{word-spacing:-2.400000pt;}
.wsd5{word-spacing:-2.346667pt;}
.ws30{word-spacing:-2.293333pt;}
.ws1c{word-spacing:-2.240000pt;}
.wsdb{word-spacing:-2.218667pt;}
.ws56{word-spacing:-2.186667pt;}
.ws51{word-spacing:-2.133333pt;}
.wse7{word-spacing:-2.090667pt;}
.ws15{word-spacing:-2.080000pt;}
.ws2d{word-spacing:-2.026667pt;}
.wsea{word-spacing:-2.005333pt;}
.wsc{word-spacing:-1.973333pt;}
.ws54{word-spacing:-1.920000pt;}
.ws3b{word-spacing:-1.866667pt;}
.ws5d{word-spacing:-1.813333pt;}
.wse4{word-spacing:-1.792000pt;}
.wsa2{word-spacing:-1.760000pt;}
.ws23{word-spacing:-1.749333pt;}
.ws52{word-spacing:-1.706667pt;}
.wsd{word-spacing:-1.653333pt;}
.ws27{word-spacing:-1.621333pt;}
.ws35{word-spacing:-1.600000pt;}
.wsc4{word-spacing:-1.546667pt;}
.wsf1{word-spacing:-1.536000pt;}
.ws95{word-spacing:-1.493333pt;}
.wsda{word-spacing:-1.450667pt;}
.ws9f{word-spacing:-1.440000pt;}
.ws28{word-spacing:-1.408000pt;}
.ws38{word-spacing:-1.386667pt;}
.wse9{word-spacing:-1.365333pt;}
.wsb{word-spacing:-1.333333pt;}
.ws5e{word-spacing:-1.322667pt;}
.ws4d{word-spacing:-1.280000pt;}
.wse6{word-spacing:-1.237333pt;}
.ws40{word-spacing:-1.226667pt;}
.ws1a{word-spacing:-1.173333pt;}
.ws39{word-spacing:-1.120000pt;}
.ws5a{word-spacing:-1.109333pt;}
.ws43{word-spacing:-1.066667pt;}
.wsee{word-spacing:-1.024000pt;}
.ws2a{word-spacing:-1.013333pt;}
.wsb8{word-spacing:-0.981333pt;}
.ws18{word-spacing:-0.960000pt;}
.wsb7{word-spacing:-0.938667pt;}
.ws34{word-spacing:-0.906667pt;}
.ws1d{word-spacing:-0.853333pt;}
.wsf2{word-spacing:-0.810667pt;}
.ws42{word-spacing:-0.800000pt;}
.wsdc{word-spacing:-0.768000pt;}
.ws3a{word-spacing:-0.746667pt;}
.wsd9{word-spacing:-0.725333pt;}
.ws50{word-spacing:-0.693333pt;}
.wsb6{word-spacing:-0.682667pt;}
.ws24{word-spacing:-0.640000pt;}
.ws26{word-spacing:-0.597333pt;}
.wsa{word-spacing:-0.586667pt;}
.wsde{word-spacing:-0.554667pt;}
.ws21{word-spacing:-0.533333pt;}
.wsdd{word-spacing:-0.512000pt;}
.ws16{word-spacing:-0.480000pt;}
.wsef{word-spacing:-0.469333pt;}
.ws41{word-spacing:-0.426667pt;}
.wse5{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.373333pt;}
.wsd7{word-spacing:-0.341333pt;}
.ws1e{word-spacing:-0.320000pt;}
.wsed{word-spacing:-0.298667pt;}
.wse{word-spacing:-0.266667pt;}
.ws5b{word-spacing:-0.256000pt;}
.ws36{word-spacing:-0.213333pt;}
.ws25{word-spacing:-0.170667pt;}
.ws2c{word-spacing:-0.160000pt;}
.ws29{word-spacing:-0.128000pt;}
.ws1b{word-spacing:-0.106667pt;}
.ws74{word-spacing:-0.085333pt;}
.ws3c{word-spacing:-0.053333pt;}
.ws45{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws73{word-spacing:0.040000pt;}
.wse2{word-spacing:0.042667pt;}
.ws4e{word-spacing:0.053333pt;}
.ws58{word-spacing:0.106667pt;}
.ws59{word-spacing:0.128000pt;}
.ws20{word-spacing:0.160000pt;}
.wsd6{word-spacing:0.213333pt;}
.wsa3{word-spacing:0.266667pt;}
.ws4f{word-spacing:0.320000pt;}
.ws37{word-spacing:0.426667pt;}
.wsc6{word-spacing:0.586667pt;}
.wsb2{word-spacing:0.640000pt;}
.wsb3{word-spacing:0.800000pt;}
.ws5f{word-spacing:0.853333pt;}
.ws53{word-spacing:0.906667pt;}
.wsa6{word-spacing:1.013333pt;}
.wsbf{word-spacing:1.280000pt;}
.wsdf{word-spacing:1.322667pt;}
.wsc2{word-spacing:1.333333pt;}
.ws55{word-spacing:1.546667pt;}
.wsa8{word-spacing:1.760000pt;}
.wse1{word-spacing:1.834667pt;}
.wsbd{word-spacing:1.920000pt;}
.ws1f{word-spacing:2.133333pt;}
.wsa1{word-spacing:2.240000pt;}
.wsb4{word-spacing:2.293333pt;}
.wsc5{word-spacing:2.506667pt;}
.wsf{word-spacing:2.613333pt;}
.wsa9{word-spacing:2.645333pt;}
.wse0{word-spacing:2.858667pt;}
.ws8{word-spacing:2.880000pt;}
.wsb1{word-spacing:3.040000pt;}
.wsc1{word-spacing:3.306667pt;}
.ws22{word-spacing:3.498667pt;}
.ws44{word-spacing:3.541333pt;}
.wsb5{word-spacing:3.786667pt;}
.wsbe{word-spacing:3.840000pt;}
.wsa7{word-spacing:3.893333pt;}
.wsc0{word-spacing:4.106667pt;}
.wsbc{word-spacing:4.213333pt;}
.ws7{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.wsd4{word-spacing:4.906667pt;}
.wsb0{word-spacing:7.893333pt;}
.ws7b{word-spacing:14.280000pt;}
.ws78{word-spacing:16.760000pt;}
.ws79{word-spacing:17.880000pt;}
.ws7d{word-spacing:18.960000pt;}
.ws76{word-spacing:19.200000pt;}
.ws66{word-spacing:22.960000pt;}
.ws68{word-spacing:30.520000pt;}
.ws62{word-spacing:31.880000pt;}
.ws63{word-spacing:33.000000pt;}
.ws71{word-spacing:34.080000pt;}
.ws60{word-spacing:41.880000pt;}
.ws69{word-spacing:48.840000pt;}
.ws7a{word-spacing:49.440000pt;}
.ws6b{word-spacing:51.280000pt;}
.ws6c{word-spacing:58.560000pt;}
.ws6f{word-spacing:71.280000pt;}
.ws64{word-spacing:72.120000pt;}
.ws6e{word-spacing:78.560000pt;}
.ws81{word-spacing:78.720000pt;}
.ws88{word-spacing:78.760000pt;}
.ws6d{word-spacing:78.840000pt;}
.ws8b{word-spacing:78.960000pt;}
.ws6a{word-spacing:79.080000pt;}
.ws8d{word-spacing:79.480000pt;}
.ws83{word-spacing:87.040000pt;}
.ws72{word-spacing:88.800000pt;}
.ws89{word-spacing:92.080000pt;}
.ws80{word-spacing:101.400000pt;}
.ws8c{word-spacing:105.120000pt;}
.ws85{word-spacing:108.720000pt;}
.ws90{word-spacing:108.760000pt;}
.ws70{word-spacing:108.800000pt;}
.ws93{word-spacing:108.960000pt;}
.ws7c{word-spacing:112.080000pt;}
.ws65{word-spacing:113.200000pt;}
.ws91{word-spacing:116.280000pt;}
.ws7e{word-spacing:119.760000pt;}
.ws67{word-spacing:128.440000pt;}
.ws94{word-spacing:128.720000pt;}
.ws86{word-spacing:131.640000pt;}
.ws8f{word-spacing:132.400000pt;}
.ws92{word-spacing:138.960000pt;}
.ws82{word-spacing:146.520000pt;}
.ws7f{word-spacing:158.960000pt;}
.ws84{word-spacing:165.360000pt;}
.ws87{word-spacing:169.200000pt;}
.ws77{word-spacing:183.080000pt;}
.ws61{word-spacing:198.200000pt;}
.wsad{word-spacing:249.045333pt;}
.wsae{word-spacing:259.712000pt;}
.ws8a{word-spacing:305.520000pt;}
.ws8e{word-spacing:309.200000pt;}
.wsaf{word-spacing:572.714667pt;}
._e{margin-left:-2576.085333pt;}
._f{margin-left:-2554.922667pt;}
._85{margin-left:-10.458667pt;}
._4{margin-left:-8.327467pt;}
._6{margin-left:-6.388267pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.900267pt;}
._a{width:1.433600pt;}
._b{width:3.200000pt;}
._8{width:4.448000pt;}
._7{width:5.472000pt;}
._9{width:6.432000pt;}
._c{width:7.360000pt;}
._d{width:8.960000pt;}
._84{width:17.621333pt;}
._83{width:20.010667pt;}
._5c{width:31.720000pt;}
._18{width:40.520000pt;}
._1a{width:44.080000pt;}
._44{width:50.120000pt;}
._1f{width:51.280000pt;}
._5{width:52.983301pt;}
._36{width:54.880000pt;}
._1d{width:58.840000pt;}
._52{width:62.613333pt;}
._2d{width:63.600000pt;}
._51{width:64.840000pt;}
._5b{width:66.400000pt;}
._2e{width:68.880000pt;}
._53{width:78.840000pt;}
._2c{width:80.173333pt;}
._3c{width:81.280000pt;}
._3b{width:84.080000pt;}
._74{width:87.880000pt;}
._17{width:89.080000pt;}
._35{width:90.413333pt;}
._43{width:92.760000pt;}
._58{width:96.400000pt;}
._3a{width:98.840000pt;}
._2b{width:99.840000pt;}
._77{width:101.200000pt;}
._6f{width:102.240000pt;}
._19{width:104.080000pt;}
._4c{width:106.520000pt;}
._50{width:109.360000pt;}
._14{width:111.520000pt;}
._68{width:118.280000pt;}
._1b{width:119.320000pt;}
._29{width:120.670933pt;}
._47{width:123.880000pt;}
._6b{width:125.560000pt;}
._1e{width:126.520000pt;}
._23{width:129.320000pt;}
._49{width:136.240000pt;}
._5e{width:138.760000pt;}
._4f{width:140.480000pt;}
._66{width:141.640000pt;}
._45{width:146.480000pt;}
._7b{width:148.200000pt;}
._3e{width:149.320000pt;}
._41{width:150.480000pt;}
._20{width:156.760000pt;}
._37{width:158.546667pt;}
._24{width:160.400000pt;}
._5d{width:162.080000pt;}
._27{width:164.320000pt;}
._38{width:165.653333pt;}
._78{width:171.280000pt;}
._6c{width:172.360000pt;}
._64{width:175.840000pt;}
._3d{width:176.760000pt;}
._65{width:178.480000pt;}
._71{width:179.600000pt;}
._62{width:180.573333pt;}
._60{width:191.640000pt;}
._5f{width:198.760000pt;}
._56{width:227.760000pt;}
._6e{width:228.920000pt;}
._59{width:231.960000pt;}
._12{width:235.320000pt;}
._7e{width:237.013333pt;}
._73{width:238.560000pt;}
._15{width:239.520000pt;}
._16{width:241.560000pt;}
._70{width:248.880000pt;}
._46{width:252.160000pt;}
._72{width:255.560000pt;}
._75{width:257.760000pt;}
._57{width:260.640000pt;}
._6d{width:262.200000pt;}
._55{width:268.320000pt;}
._28{width:269.400000pt;}
._7f{width:270.378667pt;}
._13{width:275.760000pt;}
._48{width:283.280000pt;}
._30{width:285.640000pt;}
._2a{width:290.520000pt;}
._11{width:306.120000pt;}
._25{width:307.160000pt;}
._54{width:312.760000pt;}
._42{width:315.160000pt;}
._76{width:316.280000pt;}
._22{width:333.800000pt;}
._26{width:336.040000pt;}
._67{width:342.280000pt;}
._33{width:343.240000pt;}
._10{width:350.520000pt;}
._63{width:365.600000pt;}
._61{width:366.720000pt;}
._7c{width:367.720000pt;}
._40{width:374.960000pt;}
._1c{width:376.080000pt;}
._4e{width:377.080000pt;}
._4d{width:379.360000pt;}
._69{width:383.360000pt;}
._34{width:395.600000pt;}
._5a{width:422.720000pt;}
._3f{width:426.000000pt;}
._4a{width:448.280000pt;}
._4b{width:457.080000pt;}
._7d{width:463.488000pt;}
._39{width:467.080000pt;}
._21{width:474.880000pt;}
._80{width:508.501333pt;}
._7a{width:519.853333pt;}
._79{width:539.960000pt;}
._6a{width:543.280000pt;}
._32{width:555.960000pt;}
._2f{width:569.320000pt;}
._31{width:582.680000pt;}
._81{width:831.061333pt;}
._82{width:851.912000pt;}
.fs5{font-size:23.320000pt;}
.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;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fsb{font-size:94.636800pt;}
.fsa{font-size:108.156267pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2b{bottom:42.468667pt;}
.y21a{bottom:71.345333pt;}
.y13c{bottom:73.769733pt;}
.ye3{bottom:73.966667pt;}
.y111{bottom:74.074267pt;}
.y9d{bottom:74.092400pt;}
.y150{bottom:74.186933pt;}
.y1b9{bottom:74.344533pt;}
.y11a{bottom:74.365467pt;}
.y90{bottom:74.456667pt;}
.yc5{bottom:74.462533pt;}
.y20{bottom:77.768800pt;}
.y1d9{bottom:79.219467pt;}
.y159{bottom:82.314267pt;}
.y14e{bottom:83.121867pt;}
.y219{bottom:84.678667pt;}
.y5a{bottom:86.603333pt;}
.y187{bottom:87.797867pt;}
.ye2{bottom:87.961333pt;}
.y9c{bottom:88.087067pt;}
.y14f{bottom:88.181600pt;}
.y119{bottom:88.360133pt;}
.y110{bottom:88.740933pt;}
.y1b8{bottom:90.344533pt;}
.y8f{bottom:90.456667pt;}
.yc4{bottom:90.462533pt;}
.y1f{bottom:91.098800pt;}
.y1d8{bottom:92.552800pt;}
.y13b{bottom:96.328133pt;}
.y158{bottom:96.756933pt;}
.y218{bottom:98.012000pt;}
.y14d{bottom:99.121867pt;}
.ye1{bottom:101.956000pt;}
.y118{bottom:102.354800pt;}
.y59{bottom:102.603333pt;}
.y10f{bottom:103.407600pt;}
.y186{bottom:103.797867pt;}
.y1e{bottom:104.426267pt;}
.y1d7{bottom:105.886133pt;}
.y1b7{bottom:106.344533pt;}
.y8e{bottom:106.456667pt;}
.yc3{bottom:106.462533pt;}
.y13a{bottom:110.108133pt;}
.y157{bottom:111.199600pt;}
.y217{bottom:111.345333pt;}
.y14c{bottom:115.121867pt;}
.ye0{bottom:115.950667pt;}
.y58{bottom:118.603333pt;}
.y1d6{bottom:119.219467pt;}
.y185{bottom:119.797867pt;}
.y1b6{bottom:122.344533pt;}
.y8d{bottom:122.456667pt;}
.yc2{bottom:122.462533pt;}
.y139{bottom:123.888133pt;}
.y216{bottom:124.678667pt;}
.y10e{bottom:125.961067pt;}
.ydf{bottom:129.945333pt;}
.y14b{bottom:131.121867pt;}
.y1d5{bottom:132.552800pt;}
.y57{bottom:134.603333pt;}
.y184{bottom:135.797867pt;}
.y156{bottom:136.980933pt;}
.y138{bottom:137.668133pt;}
.y215{bottom:138.012000pt;}
.y1b5{bottom:138.344533pt;}
.y8c{bottom:138.456667pt;}
.yc1{bottom:138.462533pt;}
.y10d{bottom:139.741067pt;}
.y1d4{bottom:145.886133pt;}
.y14a{bottom:147.121867pt;}
.y56{bottom:150.603333pt;}
.y214{bottom:151.345333pt;}
.y137{bottom:151.441467pt;}
.y183{bottom:151.797867pt;}
.y10c{bottom:153.521067pt;}
.y1b4{bottom:154.344533pt;}
.y8b{bottom:154.456667pt;}
.yc0{bottom:154.462533pt;}
.y1d3{bottom:159.219467pt;}
.y26{bottom:162.496000pt;}
.y155{bottom:162.762267pt;}
.y149{bottom:163.121867pt;}
.y213{bottom:164.678667pt;}
.y136{bottom:165.221467pt;}
.y55{bottom:166.603333pt;}
.y10b{bottom:167.301067pt;}
.y182{bottom:167.797867pt;}
.y1b3{bottom:170.344533pt;}
.y8a{bottom:170.456667pt;}
.ybf{bottom:170.462533pt;}
.y1d2{bottom:172.552800pt;}
.y152{bottom:174.124625pt;}
.y212{bottom:178.012000pt;}
.y25{bottom:178.496000pt;}
.y135{bottom:179.001467pt;}
.y148{bottom:179.121867pt;}
.y10a{bottom:181.081067pt;}
.y54{bottom:182.603333pt;}
.y181{bottom:183.797867pt;}
.y1d1{bottom:185.886133pt;}
.y1b2{bottom:186.344533pt;}
.y89{bottom:186.456667pt;}
.ybe{bottom:186.462533pt;}
.y211{bottom:191.345333pt;}
.y154{bottom:191.555867pt;}
.y134{bottom:192.781467pt;}
.y24{bottom:194.496000pt;}
.y109{bottom:194.861067pt;}
.y147{bottom:195.121867pt;}
.y1d0{bottom:199.219467pt;}
.y180{bottom:199.797867pt;}
.y117{bottom:200.960514pt;}
.y1b1{bottom:202.344533pt;}
.y88{bottom:202.456667pt;}
.ybd{bottom:202.462533pt;}
.y210{bottom:204.678667pt;}
.y133{bottom:206.561467pt;}
.y108{bottom:208.641067pt;}
.y153{bottom:208.889200pt;}
.y23{bottom:210.496000pt;}
.y146{bottom:211.121867pt;}
.y1cf{bottom:212.552800pt;}
.y53{bottom:214.152667pt;}
.y17f{bottom:215.797867pt;}
.y20f{bottom:218.012000pt;}
.y1b0{bottom:218.344533pt;}
.y87{bottom:218.456667pt;}
.ybc{bottom:218.462533pt;}
.y132{bottom:220.341467pt;}
.y107{bottom:222.421067pt;}
.y1ce{bottom:225.886133pt;}
.y22{bottom:226.496000pt;}
.y145{bottom:227.121867pt;}
.y52{bottom:227.486000pt;}
.y20e{bottom:231.345333pt;}
.y17e{bottom:231.797867pt;}
.y131{bottom:234.121467pt;}
.y1af{bottom:234.344533pt;}
.y86{bottom:234.456667pt;}
.ybb{bottom:234.462533pt;}
.y106{bottom:236.201067pt;}
.y1cd{bottom:239.219467pt;}
.y51{bottom:240.819333pt;}
.y28{bottom:242.496000pt;}
.y144{bottom:243.121867pt;}
.y20d{bottom:244.678667pt;}
.y17d{bottom:247.797867pt;}
.y130{bottom:247.901467pt;}
.y105{bottom:249.981067pt;}
.y1ae{bottom:250.344533pt;}
.y85{bottom:250.456667pt;}
.yba{bottom:250.462533pt;}
.y15d{bottom:250.481067pt;}
.y1cc{bottom:252.552800pt;}
.y50{bottom:254.152667pt;}
.y20c{bottom:258.012000pt;}
.y21{bottom:258.136000pt;}
.y27{bottom:258.496000pt;}
.y143{bottom:259.121867pt;}
.y12f{bottom:261.681467pt;}
.y104{bottom:263.761067pt;}
.y17c{bottom:263.797867pt;}
.y15c{bottom:264.475733pt;}
.y1cb{bottom:265.886133pt;}
.y1ad{bottom:266.344533pt;}
.y84{bottom:266.456667pt;}
.yb9{bottom:266.462533pt;}
.y4f{bottom:267.486000pt;}
.y20b{bottom:271.345333pt;}
.y12e{bottom:275.461467pt;}
.y103{bottom:277.541067pt;}
.y15b{bottom:278.470400pt;}
.y1ca{bottom:279.219467pt;}
.y17b{bottom:279.797867pt;}
.y4e{bottom:280.819333pt;}
.y1ac{bottom:282.344533pt;}
.y83{bottom:282.456667pt;}
.yb8{bottom:282.462533pt;}
.y20a{bottom:284.678667pt;}
.y12d{bottom:289.241467pt;}
.y142{bottom:290.091333pt;}
.y102{bottom:291.321067pt;}
.y15a{bottom:292.465067pt;}
.y1c9{bottom:292.552800pt;}
.y4d{bottom:294.152667pt;}
.y17a{bottom:295.797867pt;}
.y209{bottom:298.012000pt;}
.y1ab{bottom:298.344533pt;}
.y82{bottom:298.456667pt;}
.yb7{bottom:298.462533pt;}
.y12c{bottom:303.021467pt;}
.y141{bottom:303.963333pt;}
.y101{bottom:305.094933pt;}
.y1c8{bottom:305.886133pt;}
.y4c{bottom:307.486000pt;}
.y208{bottom:311.345333pt;}
.y179{bottom:311.797867pt;}
.y1aa{bottom:314.344533pt;}
.y81{bottom:314.456667pt;}
.yb6{bottom:314.462533pt;}
.y140{bottom:316.729200pt;}
.y12b{bottom:316.801467pt;}
.y151{bottom:317.215467pt;}
.y100{bottom:318.874933pt;}
.y1c7{bottom:319.219467pt;}
.y4b{bottom:320.819333pt;}
.y207{bottom:324.678667pt;}
.y1d{bottom:325.927067pt;}
.y178{bottom:327.797867pt;}
.y1a9{bottom:330.344533pt;}
.y80{bottom:330.456667pt;}
.yb5{bottom:330.462533pt;}
.y12a{bottom:330.576800pt;}
.y13f{bottom:330.595867pt;}
.y1c6{bottom:332.552800pt;}
.yff{bottom:332.654933pt;}
.y116{bottom:337.663371pt;}
.y206{bottom:338.012000pt;}
.y177{bottom:343.797867pt;}
.y129{bottom:344.356800pt;}
.y1c5{bottom:345.886133pt;}
.y13e{bottom:346.235867pt;}
.y1a8{bottom:346.344533pt;}
.yfe{bottom:346.434933pt;}
.y7f{bottom:346.456667pt;}
.yb4{bottom:346.462533pt;}
.y4a{bottom:348.489200pt;}
.y1c{bottom:350.233733pt;}
.y205{bottom:351.345333pt;}
.y128{bottom:358.136800pt;}
.y1c4{bottom:359.219467pt;}
.y176{bottom:359.797867pt;}
.yfd{bottom:360.214933pt;}
.y1a7{bottom:362.344533pt;}
.y49{bottom:362.355867pt;}
.y7e{bottom:362.456667pt;}
.yb3{bottom:362.462533pt;}
.y204{bottom:364.678667pt;}
.y1b{bottom:366.233733pt;}
.y127{bottom:371.916800pt;}
.y1c3{bottom:372.552800pt;}
.yfc{bottom:373.994933pt;}
.y175{bottom:375.797867pt;}
.y48{bottom:377.995867pt;}
.y203{bottom:378.012000pt;}
.y1a6{bottom:378.344533pt;}
.y7d{bottom:378.456667pt;}
.yb2{bottom:378.462533pt;}
.y1a{bottom:382.233733pt;}
.y126{bottom:385.696800pt;}
.y1c2{bottom:385.886133pt;}
.yfb{bottom:387.774933pt;}
.y202{bottom:391.345333pt;}
.y174{bottom:391.797867pt;}
.y1a5{bottom:393.984533pt;}
.y7c{bottom:394.456667pt;}
.yb1{bottom:394.462533pt;}
.y99{bottom:397.998400pt;}
.y19{bottom:398.233733pt;}
.y1c1{bottom:399.219467pt;}
.y125{bottom:399.476800pt;}
.yfa{bottom:401.554933pt;}
.y201{bottom:404.678667pt;}
.y173{bottom:407.797867pt;}
.y47{bottom:409.862533pt;}
.y7b{bottom:410.456667pt;}
.yb0{bottom:410.462533pt;}
.y1c0{bottom:412.552800pt;}
.y124{bottom:413.256800pt;}
.y18{bottom:414.233733pt;}
.yf9{bottom:415.334933pt;}
.y200{bottom:418.012000pt;}
.y172{bottom:423.797867pt;}
.y1a4{bottom:426.344533pt;}
.y7a{bottom:426.456667pt;}
.yaf{bottom:426.462533pt;}
.y123{bottom:427.036800pt;}
.yf8{bottom:429.114933pt;}
.y17{bottom:430.233733pt;}
.y1ff{bottom:431.345333pt;}
.y171{bottom:439.797867pt;}
.y122{bottom:440.816800pt;}
.y1bf{bottom:441.982533pt;}
.y1a3{bottom:442.344533pt;}
.y79{bottom:442.456667pt;}
.yae{bottom:442.462533pt;}
.yf7{bottom:442.894933pt;}
.y1fe{bottom:444.678667pt;}
.y16{bottom:446.233733pt;}
.yf6{bottom:456.674933pt;}
.y1fd{bottom:458.012000pt;}
.y46{bottom:458.342533pt;}
.y1a2{bottom:458.344533pt;}
.y78{bottom:458.456667pt;}
.yad{bottom:458.462533pt;}
.y15{bottom:462.233733pt;}
.y121{bottom:465.936800pt;}
.yf5{bottom:470.454933pt;}
.y1fc{bottom:471.345333pt;}
.y170{bottom:471.437867pt;}
.y45{bottom:474.342533pt;}
.y1a1{bottom:474.344533pt;}
.y77{bottom:474.456667pt;}
.yac{bottom:474.462533pt;}
.y14{bottom:478.233733pt;}
.y9b{bottom:479.634116pt;}
.yf4{bottom:484.229867pt;}
.y1fb{bottom:484.678667pt;}
.y44{bottom:490.342533pt;}
.y1a0{bottom:490.344533pt;}
.y76{bottom:490.456667pt;}
.yab{bottom:490.462533pt;}
.y120{bottom:491.046800pt;}
.y13{bottom:494.233733pt;}
.yf3{bottom:498.009867pt;}
.y1fa{bottom:498.012000pt;}
.y11f{bottom:505.716800pt;}
.y1be{bottom:506.102533pt;}
.y43{bottom:506.342533pt;}
.y19f{bottom:506.344533pt;}
.y75{bottom:506.456667pt;}
.yaa{bottom:506.462533pt;}
.yde{bottom:508.062533pt;}
.y12{bottom:510.233733pt;}
.y1f9{bottom:511.345333pt;}
.yf2{bottom:511.789867pt;}
.y16f{bottom:519.471333pt;}
.y42{bottom:522.342533pt;}
.y19e{bottom:522.344533pt;}
.y74{bottom:522.456667pt;}
.ya9{bottom:522.462533pt;}
.ydd{bottom:524.062533pt;}
.y115{bottom:524.310800pt;}
.y1f8{bottom:524.678667pt;}
.yf1{bottom:525.569867pt;}
.y11{bottom:526.233733pt;}
.y11e{bottom:530.836800pt;}
.y16e{bottom:532.804667pt;}
.y1f7{bottom:538.012000pt;}
.y41{bottom:538.342533pt;}
.y73{bottom:538.456667pt;}
.ya8{bottom:538.462533pt;}
.yf0{bottom:539.349867pt;}
.ydc{bottom:540.062533pt;}
.y10{bottom:542.233733pt;}
.y16d{bottom:546.138000pt;}
.y1f6{bottom:551.345333pt;}
.yef{bottom:553.129867pt;}
.y19d{bottom:553.984533pt;}
.y1bd{bottom:554.102533pt;}
.y40{bottom:554.342533pt;}
.y72{bottom:554.456667pt;}
.ya7{bottom:554.462533pt;}
.y11d{bottom:555.956800pt;}
.ydb{bottom:556.062533pt;}
.yf{bottom:558.233733pt;}
.y16c{bottom:559.471333pt;}
.y1f5{bottom:564.678667pt;}
.yee{bottom:566.909867pt;}
.y3f{bottom:570.342533pt;}
.y71{bottom:570.456667pt;}
.ya6{bottom:570.462533pt;}
.yda{bottom:572.062533pt;}
.y16b{bottom:572.804667pt;}
.y1f4{bottom:578.012000pt;}
.yed{bottom:580.689867pt;}
.y114{bottom:581.456933pt;}
.y11c{bottom:584.195867pt;}
.y16a{bottom:586.138000pt;}
.y3e{bottom:586.342533pt;}
.y70{bottom:586.456667pt;}
.ya5{bottom:586.462533pt;}
.yd9{bottom:588.062533pt;}
.y1f3{bottom:591.345333pt;}
.yec{bottom:594.469867pt;}
.y113{bottom:595.451600pt;}
.ye{bottom:598.370933pt;}
.y169{bottom:599.471333pt;}
.y3d{bottom:602.342533pt;}
.y6f{bottom:602.456667pt;}
.ya4{bottom:602.462533pt;}
.y19c{bottom:602.464533pt;}
.yd8{bottom:604.062533pt;}
.y1f2{bottom:604.678667pt;}
.yeb{bottom:608.249867pt;}
.yd{bottom:609.438267pt;}
.y168{bottom:612.804667pt;}
.y1f1{bottom:618.012000pt;}
.y3c{bottom:618.342533pt;}
.y6e{bottom:618.456667pt;}
.ya3{bottom:618.462533pt;}
.y19b{bottom:618.464533pt;}
.yd7{bottom:620.062533pt;}
.y167{bottom:626.138000pt;}
.y1f0{bottom:631.347467pt;}
.yea{bottom:633.369867pt;}
.y3b{bottom:634.342533pt;}
.y6d{bottom:634.456667pt;}
.ya2{bottom:634.462533pt;}
.y19a{bottom:634.464533pt;}
.y9a{bottom:635.189867pt;}
.yd6{bottom:636.062533pt;}
.y166{bottom:639.471333pt;}
.yc{bottom:642.452400pt;}
.y1ef{bottom:644.680800pt;}
.yb{bottom:649.629867pt;}
.y3a{bottom:650.342533pt;}
.y6c{bottom:650.456667pt;}
.ya1{bottom:650.462533pt;}
.y199{bottom:650.464533pt;}
.yd5{bottom:652.062533pt;}
.y165{bottom:652.804667pt;}
.y1ee{bottom:658.014133pt;}
.ye9{bottom:658.479867pt;}
.y39{bottom:666.342533pt;}
.ya{bottom:666.452400pt;}
.y6b{bottom:666.456667pt;}
.ya0{bottom:666.462533pt;}
.y198{bottom:666.464533pt;}
.yd4{bottom:668.062533pt;}
.y1ed{bottom:671.347467pt;}
.ye8{bottom:673.149867pt;}
.y1bc{bottom:682.102533pt;}
.y164{bottom:682.235867pt;}
.y38{bottom:682.342533pt;}
.y6a{bottom:682.456667pt;}
.y9f{bottom:682.462533pt;}
.y197{bottom:682.464533pt;}
.yd3{bottom:684.062533pt;}
.y1ec{bottom:684.680800pt;}
.y9{bottom:691.982933pt;}
.y22d{bottom:698.012000pt;}
.y1eb{bottom:698.014133pt;}
.y163{bottom:698.235867pt;}
.ye7{bottom:698.269867pt;}
.y37{bottom:698.342533pt;}
.y69{bottom:698.456667pt;}
.y98{bottom:698.462533pt;}
.y196{bottom:698.464533pt;}
.yd2{bottom:700.062533pt;}
.y22c{bottom:711.345333pt;}
.y1ea{bottom:711.347467pt;}
.y162{bottom:714.235867pt;}
.y36{bottom:714.342533pt;}
.y68{bottom:714.456667pt;}
.y97{bottom:714.462533pt;}
.y195{bottom:714.464533pt;}
.yd1{bottom:716.062533pt;}
.ye6{bottom:723.389867pt;}
.y22b{bottom:724.678667pt;}
.y1e9{bottom:724.680800pt;}
.y1bb{bottom:730.102533pt;}
.y161{bottom:730.235867pt;}
.y35{bottom:730.342533pt;}
.y67{bottom:730.456667pt;}
.y96{bottom:730.462533pt;}
.y194{bottom:730.464533pt;}
.yd0{bottom:732.062533pt;}
.y8{bottom:733.081733pt;}
.y22a{bottom:738.012000pt;}
.y1e8{bottom:738.014133pt;}
.y160{bottom:746.235867pt;}
.y66{bottom:746.456667pt;}
.y95{bottom:746.462533pt;}
.y193{bottom:746.464533pt;}
.ycf{bottom:748.062533pt;}
.y229{bottom:751.345333pt;}
.y1e7{bottom:751.347467pt;}
.ye5{bottom:751.622533pt;}
.y34{bottom:761.982533pt;}
.y15f{bottom:762.235867pt;}
.y65{bottom:762.456667pt;}
.y94{bottom:762.462533pt;}
.y192{bottom:762.464533pt;}
.yce{bottom:764.062533pt;}
.y228{bottom:764.678667pt;}
.y1e6{bottom:764.680800pt;}
.y7{bottom:765.491333pt;}
.y227{bottom:778.012000pt;}
.y1e5{bottom:778.014133pt;}
.y64{bottom:778.456667pt;}
.y93{bottom:778.462533pt;}
.y191{bottom:778.464533pt;}
.y226{bottom:791.345333pt;}
.y1e4{bottom:791.347467pt;}
.y1ba{bottom:794.102533pt;}
.y63{bottom:794.456667pt;}
.y92{bottom:794.462533pt;}
.y190{bottom:794.464533pt;}
.ycd{bottom:795.612000pt;}
.y6{bottom:797.872800pt;}
.y225{bottom:804.678667pt;}
.y1e3{bottom:804.680800pt;}
.ycc{bottom:808.945333pt;}
.y62{bottom:810.456667pt;}
.y33{bottom:810.462533pt;}
.y18f{bottom:810.464533pt;}
.y224{bottom:818.012000pt;}
.y1e2{bottom:818.014133pt;}
.ycb{bottom:822.278667pt;}
.y61{bottom:826.456667pt;}
.y32{bottom:826.462533pt;}
.y18e{bottom:826.464533pt;}
.y5{bottom:830.254267pt;}
.y223{bottom:831.345333pt;}
.y1e1{bottom:831.347467pt;}
.yca{bottom:835.612000pt;}
.y60{bottom:842.456667pt;}
.y31{bottom:842.462533pt;}
.y18d{bottom:842.464533pt;}
.y222{bottom:844.678667pt;}
.y1e0{bottom:844.680800pt;}
.yc9{bottom:848.945333pt;}
.y221{bottom:858.012000pt;}
.y1df{bottom:858.014133pt;}
.y5f{bottom:858.456667pt;}
.y30{bottom:858.462533pt;}
.y18c{bottom:858.464533pt;}
.y4{bottom:862.663867pt;}
.y220{bottom:871.345333pt;}
.y1de{bottom:871.347467pt;}
.y5e{bottom:874.456667pt;}
.y2f{bottom:874.462533pt;}
.y18b{bottom:874.464533pt;}
.yc8{bottom:876.595867pt;}
.y21f{bottom:884.678667pt;}
.y1dd{bottom:884.680800pt;}
.y5d{bottom:890.456667pt;}
.y2e{bottom:890.462533pt;}
.y18a{bottom:890.464533pt;}
.y3{bottom:895.045333pt;}
.y21e{bottom:898.012000pt;}
.y1dc{bottom:898.014133pt;}
.yc7{bottom:906.102533pt;}
.y5c{bottom:906.456667pt;}
.y2d{bottom:906.462533pt;}
.y189{bottom:906.464533pt;}
.y21d{bottom:911.345333pt;}
.y1db{bottom:911.347467pt;}
.yc6{bottom:922.102533pt;}
.y5b{bottom:922.456667pt;}
.y2c{bottom:922.462533pt;}
.y188{bottom:922.464533pt;}
.y21c{bottom:924.678667pt;}
.y1da{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y13d{bottom:1006.591067pt;}
.y91{bottom:1006.594400pt;}
.y112{bottom:1006.596933pt;}
.y21b{bottom:1006.598667pt;}
.y11b{bottom:1006.600133pt;}
.y9e{bottom:1006.604400pt;}
.y15e{bottom:1006.609067pt;}
.ye4{bottom:1006.617333pt;}
.y2a{bottom:1009.860000pt;}
.y29{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.h15{height:27.773438pt;}
.h14{height:27.792969pt;}
.h19{height:27.811635pt;}
.h16{height:27.813235pt;}
.h17{height:27.817502pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.hc{height:29.170290pt;}
.h1b{height:29.625000pt;}
.h1c{height:29.637300pt;}
.h12{height:29.645833pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h1a{height:33.351562pt;}
.he{height:37.031250pt;}
.hf{height:37.057292pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h18{height:68.944387pt;}
.h13{height:78.793530pt;}
.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;}
.x38{left:69.940000pt;}
.x28{left:74.604133pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x27{left:88.779067pt;}
.x11{left:90.708800pt;}
.x4{left:94.488133pt;}
.x18{left:95.755067pt;}
.xb{left:98.271467pt;}
.xe{left:104.511467pt;}
.x3a{left:107.338533pt;}
.x3f{left:109.606533pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.xc{left:128.631467pt;}
.xf{left:129.924800pt;}
.x10{left:165.871467pt;}
.x3e{left:172.684800pt;}
.xd{left:187.631467pt;}
.x5{left:189.223467pt;}
.x3b{left:195.677733pt;}
.x1f{left:244.059067pt;}
.x20{left:248.759067pt;}
.x21{left:250.159067pt;}
.x1e{left:263.229067pt;}
.x2a{left:272.416000pt;}
.x2b{left:277.116000pt;}
.x2c{left:278.516000pt;}
.x29{left:287.796000pt;}
.x22{left:300.859067pt;}
.x2d{left:323.546000pt;}
.x37{left:361.278667pt;}
.x23{left:392.529067pt;}
.x9{left:404.481333pt;}
.x12{left:406.307733pt;}
.x2e{left:411.426000pt;}
.x34{left:423.501200pt;}
.x16{left:425.195867pt;}
.x7{left:427.090133pt;}
.x1d{left:428.976533pt;}
.x36{left:431.721333pt;}
.x13{left:436.547733pt;}
.x1a{left:440.254400pt;}
.x24{left:444.479067pt;}
.x40{left:447.867867pt;}
.x33{left:449.951467pt;}
.x17{left:455.435867pt;}
.x32{left:457.444800pt;}
.x2f{left:459.596000pt;}
.x1c{left:462.321067pt;}
.x1b{left:505.054400pt;}
.x35{left:516.525200pt;}
.x3c{left:526.197733pt;}
.x15{left:589.770933pt;}
.x25{left:594.079067pt;}
.x30{left:603.526000pt;}
.x2{left:616.324800pt;}
.x39{left:641.532400pt;}
.x14{left:647.459200pt;}
.x26{left:654.839067pt;}
.x31{left:658.616000pt;}
.x3d{left:661.216133pt;}
.x19{left:666.374533pt;}
}




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