
    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_d66f8141fcb26765d02b9fa5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_8d707cdf90be51f0db33032c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_63a9078651b30580230e17a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_ba2a8c3aa1e8a8ee1934fe4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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_2580379dcf9e7d80d42b8129.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_a87813a3066489dd6c5de616.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_974fe7c557ddd46cfd846043.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_30ee8cc3f15ddbbe8de89cb4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.230000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;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_006a7343caf6b2b38f7acfd1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871000;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:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.257006px;}
.v4{vertical-align:20.400513px;}
.v1{vertical-align:24.000000px;}
.ls40{letter-spacing:-3.960000px;}
.ls41{letter-spacing:-1.122000px;}
.ls27{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-0.960000px;}
.ls29{letter-spacing:-0.900000px;}
.ls2b{letter-spacing:-0.780000px;}
.ls26{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.540000px;}
.ls3e{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.360000px;}
.ls55{letter-spacing:-0.357000px;}
.ls28{letter-spacing:-0.300000px;}
.ls2c{letter-spacing:-0.240000px;}
.ls54{letter-spacing:-0.204000px;}
.ls10{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.155012px;}
.ls53{letter-spacing:-0.153000px;}
.lsd{letter-spacing:-0.120000px;}
.ls35{letter-spacing:-0.103342px;}
.ls79{letter-spacing:-0.102000px;}
.lsf{letter-spacing:-0.060000px;}
.ls33{letter-spacing:-0.051671px;}
.ls56{letter-spacing:-0.051000px;}
.lsc{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.035980px;}
.ls50{letter-spacing:0.051000px;}
.ls30{letter-spacing:0.051671px;}
.ls3b{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.060000px;}
.ls31{letter-spacing:0.103342px;}
.ls9{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.150000px;}
.ls48{letter-spacing:0.153000px;}
.lsa{letter-spacing:0.178791px;}
.ls1a{letter-spacing:0.180000px;}
.ls49{letter-spacing:0.204000px;}
.ls3c{letter-spacing:0.209839px;}
.ls15{letter-spacing:0.210000px;}
.ls3d{letter-spacing:0.210025px;}
.ls1{letter-spacing:0.240000px;}
.ls20{letter-spacing:0.246000px;}
.lsb{letter-spacing:0.255000px;}
.ls4b{letter-spacing:0.264000px;}
.ls6{letter-spacing:0.270000px;}
.ls4f{letter-spacing:0.280500px;}
.ls52{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls46{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.360000px;}
.ls61{letter-spacing:0.408000px;}
.ls7{letter-spacing:0.420000px;}
.ls6f{letter-spacing:0.459000px;}
.ls3{letter-spacing:0.480000px;}
.ls4c{letter-spacing:0.510000px;}
.ls58{letter-spacing:0.535500px;}
.ls8{letter-spacing:0.540000px;}
.ls63{letter-spacing:0.561000px;}
.ls1f{letter-spacing:0.600000px;}
.ls4a{letter-spacing:0.612000px;}
.ls21{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.663000px;}
.ls43{letter-spacing:0.690000px;}
.ls5b{letter-spacing:0.714000px;}
.ls22{letter-spacing:0.720000px;}
.ls51{letter-spacing:0.739500px;}
.ls5d{letter-spacing:0.765000px;}
.ls18{letter-spacing:0.780000px;}
.ls64{letter-spacing:0.790500px;}
.ls4e{letter-spacing:0.816000px;}
.ls16{letter-spacing:0.840000px;}
.ls68{letter-spacing:0.867000px;}
.ls47{letter-spacing:0.870000px;}
.ls1d{letter-spacing:0.900000px;}
.ls67{letter-spacing:0.918000px;}
.ls1b{letter-spacing:0.960000px;}
.ls5a{letter-spacing:0.969000px;}
.ls25{letter-spacing:1.020000px;}
.ls6c{letter-spacing:1.071000px;}
.ls19{letter-spacing:1.080000px;}
.ls65{letter-spacing:1.122000px;}
.ls39{letter-spacing:1.140000px;}
.ls75{letter-spacing:1.147500px;}
.ls45{letter-spacing:1.170000px;}
.ls60{letter-spacing:1.173000px;}
.ls23{letter-spacing:1.188000px;}
.ls6d{letter-spacing:1.198500px;}
.ls1c{letter-spacing:1.200000px;}
.ls7a{letter-spacing:1.224000px;}
.ls5{letter-spacing:1.254000px;}
.ls37{letter-spacing:1.260000px;}
.ls6a{letter-spacing:1.275000px;}
.ls2f{letter-spacing:1.320000px;}
.ls6e{letter-spacing:1.326000px;}
.ls5e{letter-spacing:1.377000px;}
.ls42{letter-spacing:1.380000px;}
.ls5c{letter-spacing:1.428000px;}
.ls24{letter-spacing:1.440000px;}
.ls59{letter-spacing:1.479000px;}
.ls2e{letter-spacing:1.500000px;}
.ls70{letter-spacing:1.504500px;}
.ls62{letter-spacing:1.530000px;}
.ls14{letter-spacing:1.560000px;}
.ls74{letter-spacing:1.581000px;}
.ls6b{letter-spacing:1.632000px;}
.ls72{letter-spacing:1.683000px;}
.ls5f{letter-spacing:1.734000px;}
.ls3a{letter-spacing:1.740000px;}
.ls69{letter-spacing:1.759500px;}
.ls1e{letter-spacing:1.770000px;}
.ls71{letter-spacing:1.785000px;}
.ls3f{letter-spacing:1.800000px;}
.ls57{letter-spacing:1.887000px;}
.ls73{letter-spacing:1.938000px;}
.ls44{letter-spacing:2.040000px;}
.ls66{letter-spacing:2.091000px;}
.ls77{letter-spacing:2.244000px;}
.ls76{letter-spacing:2.371500px;}
.ls78{letter-spacing:2.601000px;}
.ls0{letter-spacing:3.990000px;}
.ls32{letter-spacing:11.935955px;}
.ls34{letter-spacing:11.987626px;}
.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;}
}
.ws4b{word-spacing:-23.665226px;}
.ws4a{word-spacing:-23.613556px;}
.ws69{word-spacing:-16.140000px;}
.ws72{word-spacing:-15.900000px;}
.ws26{word-spacing:-15.300000px;}
.ws25{word-spacing:-15.180000px;}
.ws6{word-spacing:-15.000000px;}
.ws5b{word-spacing:-14.640000px;}
.ws24{word-spacing:-14.460000px;}
.ws93{word-spacing:-13.719000px;}
.ws81{word-spacing:-13.260000px;}
.ws80{word-spacing:-13.005000px;}
.ws71{word-spacing:-12.750000px;}
.ws5a{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws7{word-spacing:-11.940000px;}
.ws5{word-spacing:-11.880000px;}
.ws49{word-spacing:-11.729272px;}
.ws50{word-spacing:-11.677601px;}
.ws4c{word-spacing:-11.574259px;}
.ws4e{word-spacing:-11.522588px;}
.ws8{word-spacing:-11.520000px;}
.ws6a{word-spacing:-11.040000px;}
.ws5c{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.ws7f{word-spacing:-9.945000px;}
.ws7e{word-spacing:-9.639000px;}
.ws0{word-spacing:-9.408000px;}
.wsa{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws14{word-spacing:-7.500000px;}
.ws70{word-spacing:-6.375000px;}
.wsb{word-spacing:-1.890000px;}
.ws12{word-spacing:-1.500000px;}
.ws51{word-spacing:-1.440000px;}
.ws75{word-spacing:-1.380000px;}
.ws16{word-spacing:-1.320000px;}
.ws84{word-spacing:-1.275000px;}
.ws1c{word-spacing:-1.260000px;}
.ws11{word-spacing:-1.200000px;}
.wsa8{word-spacing:-1.122000px;}
.ws38{word-spacing:-1.080000px;}
.ws42{word-spacing:-1.020000px;}
.ws8f{word-spacing:-0.969000px;}
.ws1e{word-spacing:-0.960000px;}
.ws3e{word-spacing:-0.900000px;}
.ws9d{word-spacing:-0.867000px;}
.ws2e{word-spacing:-0.840000px;}
.wsab{word-spacing:-0.816000px;}
.ws27{word-spacing:-0.780000px;}
.wsf{word-spacing:-0.720000px;}
.wsa0{word-spacing:-0.714000px;}
.ws17{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.612000px;}
.ws32{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.570000px;}
.ws54{word-spacing:-0.540000px;}
.ws9f{word-spacing:-0.510000px;}
.ws1a{word-spacing:-0.480000px;}
.ws68{word-spacing:-0.420000px;}
.ws8a{word-spacing:-0.408000px;}
.ws5e{word-spacing:-0.360000px;}
.wsad{word-spacing:-0.357000px;}
.ws89{word-spacing:-0.306000px;}
.ws4{word-spacing:-0.300000px;}
.ws8b{word-spacing:-0.255000px;}
.ws15{word-spacing:-0.240000px;}
.ws35{word-spacing:-0.180000px;}
.ws1b{word-spacing:-0.120000px;}
.ws9{word-spacing:-0.072000px;}
.ws59{word-spacing:-0.051671px;}
.wsc{word-spacing:0.000000px;}
.ws47{word-spacing:0.060000px;}
.ws4f{word-spacing:0.103336px;}
.ws4d{word-spacing:0.103342px;}
.ws64{word-spacing:0.120000px;}
.wsaa{word-spacing:0.153000px;}
.ws19{word-spacing:0.180000px;}
.ws29{word-spacing:0.240000px;}
.ws85{word-spacing:0.255000px;}
.ws10{word-spacing:0.300000px;}
.ws9b{word-spacing:0.306000px;}
.ws18{word-spacing:0.360000px;}
.wsa2{word-spacing:0.408000px;}
.ws6d{word-spacing:0.420000px;}
.ws90{word-spacing:0.459000px;}
.ws67{word-spacing:0.480000px;}
.ws28{word-spacing:0.540000px;}
.ws2b{word-spacing:0.600000px;}
.ws95{word-spacing:0.714000px;}
.ws40{word-spacing:0.720000px;}
.ws1d{word-spacing:0.780000px;}
.ws96{word-spacing:0.816000px;}
.ws43{word-spacing:0.840000px;}
.ws92{word-spacing:0.867000px;}
.ws1f{word-spacing:0.900000px;}
.ws2f{word-spacing:0.960000px;}
.ws8c{word-spacing:0.969000px;}
.ws7b{word-spacing:1.020000px;}
.ws2a{word-spacing:1.080000px;}
.ws33{word-spacing:1.200000px;}
.ws57{word-spacing:1.260000px;}
.ws86{word-spacing:1.275000px;}
.ws9a{word-spacing:1.326000px;}
.ws7c{word-spacing:1.380000px;}
.ws8e{word-spacing:1.428000px;}
.ws13{word-spacing:1.440000px;}
.ws9e{word-spacing:1.479000px;}
.wse{word-spacing:1.500000px;}
.ws97{word-spacing:1.530000px;}
.ws6f{word-spacing:1.560000px;}
.ws99{word-spacing:1.581000px;}
.ws36{word-spacing:1.620000px;}
.ws5f{word-spacing:1.680000px;}
.wsa5{word-spacing:1.683000px;}
.ws91{word-spacing:1.734000px;}
.ws55{word-spacing:1.740000px;}
.wsb7{word-spacing:1.785000px;}
.ws20{word-spacing:1.800000px;}
.wsa9{word-spacing:1.836000px;}
.ws3a{word-spacing:1.860000px;}
.ws34{word-spacing:1.920000px;}
.ws98{word-spacing:1.989000px;}
.ws21{word-spacing:2.040000px;}
.wsa3{word-spacing:2.091000px;}
.ws41{word-spacing:2.100000px;}
.ws2c{word-spacing:2.160000px;}
.ws8d{word-spacing:2.244000px;}
.ws30{word-spacing:2.280000px;}
.ws3d{word-spacing:2.340000px;}
.wsb1{word-spacing:2.397000px;}
.ws53{word-spacing:2.520000px;}
.ws83{word-spacing:2.580000px;}
.ws2d{word-spacing:2.640000px;}
.ws3b{word-spacing:2.700000px;}
.ws61{word-spacing:2.760000px;}
.wsa7{word-spacing:2.805000px;}
.ws48{word-spacing:2.820000px;}
.wsb4{word-spacing:2.856000px;}
.ws60{word-spacing:2.880000px;}
.ws52{word-spacing:2.940000px;}
.wsae{word-spacing:2.958000px;}
.ws46{word-spacing:3.000000px;}
.ws9c{word-spacing:3.111000px;}
.ws37{word-spacing:3.120000px;}
.wsa4{word-spacing:3.315000px;}
.ws65{word-spacing:3.360000px;}
.wsac{word-spacing:3.417000px;}
.ws87{word-spacing:3.468000px;}
.ws62{word-spacing:3.540000px;}
.ws3c{word-spacing:3.600000px;}
.ws6e{word-spacing:3.660000px;}
.ws77{word-spacing:3.720000px;}
.wsb8{word-spacing:3.723000px;}
.ws44{word-spacing:3.780000px;}
.ws5d{word-spacing:3.900000px;}
.ws79{word-spacing:4.020000px;}
.wsa6{word-spacing:4.029000px;}
.wsaf{word-spacing:4.080000px;}
.wsb0{word-spacing:4.131000px;}
.ws66{word-spacing:4.140000px;}
.ws82{word-spacing:4.200000px;}
.wsb2{word-spacing:4.233000px;}
.ws78{word-spacing:4.380000px;}
.ws58{word-spacing:4.500000px;}
.ws88{word-spacing:4.539000px;}
.ws76{word-spacing:4.680000px;}
.ws45{word-spacing:4.860000px;}
.wsa1{word-spacing:4.896000px;}
.ws56{word-spacing:5.220000px;}
.ws31{word-spacing:5.460000px;}
.ws39{word-spacing:5.580000px;}
.wsb5{word-spacing:5.610000px;}
.wsb9{word-spacing:5.865000px;}
.ws63{word-spacing:6.360000px;}
.wsb3{word-spacing:6.375000px;}
.ws3f{word-spacing:6.600000px;}
.ws94{word-spacing:7.446000px;}
.wsb6{word-spacing:7.599000px;}
.ws7a{word-spacing:7.920000px;}
.ws7d{word-spacing:13.515000px;}
.wsba{word-spacing:13.668000px;}
.wsbb{word-spacing:17.799000px;}
.ws22{word-spacing:72.267000px;}
.ws73{word-spacing:109.140000px;}
.ws6c{word-spacing:115.413000px;}
.ws6b{word-spacing:198.135000px;}
.ws74{word-spacing:290.139000px;}
._9{margin-left:-16.575000px;}
._f{margin-left:-12.360000px;}
._11{margin-left:-10.770000px;}
._5{margin-left:-9.156073px;}
._6{margin-left:-7.176000px;}
._7{margin-left:-5.502000px;}
._4{margin-left:-3.540000px;}
._0{margin-left:-1.632000px;}
._1{width:1.440000px;}
._d{width:2.880000px;}
._37{width:7.242000px;}
._e{width:10.002000px;}
._12{width:11.460000px;}
._3{width:12.780000px;}
._36{width:14.331000px;}
._8{width:16.260000px;}
._a{width:18.360000px;}
._2{width:40.082391px;}
._b{width:54.621000px;}
._14{width:74.932917px;}
._18{width:79.175167px;}
._29{width:88.536000px;}
._1c{width:100.317000px;}
._20{width:114.036000px;}
._19{width:120.093244px;}
._2e{width:121.798176px;}
._17{width:125.715000px;}
._1d{width:146.217000px;}
._1b{width:151.215000px;}
._31{width:155.131824px;}
._21{width:159.936000px;}
._22{width:170.004000px;}
._15{width:198.684000px;}
._34{width:222.411000px;}
._1a{width:224.589412px;}
._16{width:254.154000px;}
._1f{width:275.400000px;}
._30{width:282.682811px;}
._35{width:293.250000px;}
._2f{width:298.961988px;}
._27{width:300.900000px;}
._32{width:350.676000px;}
._1e{width:443.189984px;}
._13{width:454.409984px;}
._25{width:517.190986px;}
._26{width:588.029986px;}
._24{width:598.178986px;}
._2d{width:614.264986px;}
._2c{width:627.707986px;}
._33{width:667.845000px;}
._10{width:1223.951918px;}
._2b{width:1424.277000px;}
._23{width:1510.017000px;}
._28{width:1536.528000px;}
._2a{width:1597.104000px;}
._c{width:1680.806994px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fsa{font-size:51.670800px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y3d{bottom:112.938300px;}
.y70{bottom:113.415298px;}
.y10a{bottom:114.132305px;}
.y2d{bottom:114.211349px;}
.ya1{bottom:114.432289px;}
.y139{bottom:114.735306px;}
.y182{bottom:114.874786px;}
.yb0{bottom:114.874809px;}
.y153{bottom:114.874947px;}
.y251{bottom:131.991275px;}
.y6f{bottom:132.165298px;}
.y109{bottom:132.882305px;}
.y2c{bottom:132.961349px;}
.y3c{bottom:133.032303px;}
.ya0{bottom:133.182289px;}
.y138{bottom:133.485306px;}
.y181{bottom:133.624786px;}
.yaf{bottom:133.624809px;}
.y152{bottom:133.624947px;}
.y1d0{bottom:141.174003px;}
.y210{bottom:146.602823px;}
.y250{bottom:146.985275px;}
.y3b{bottom:150.485553px;}
.y6e{bottom:150.915298px;}
.y108{bottom:151.632305px;}
.y2b{bottom:151.711349px;}
.y9f{bottom:151.932289px;}
.y137{bottom:152.235306px;}
.y180{bottom:152.374786px;}
.yae{bottom:152.374809px;}
.y151{bottom:152.374947px;}
.y1cf{bottom:156.168003px;}
.y20f{bottom:161.596823px;}
.y24f{bottom:161.979275px;}
.y107{bottom:170.382294px;}
.y2a{bottom:170.461349px;}
.y3a{bottom:170.579556px;}
.y9e{bottom:170.682289px;}
.y136{bottom:170.985306px;}
.y17f{bottom:171.124786px;}
.yad{bottom:171.124809px;}
.y150{bottom:171.124947px;}
.y1ce{bottom:171.162003px;}
.y20e{bottom:176.590823px;}
.y24e{bottom:176.973275px;}
.y39{bottom:188.038794px;}
.y6d{bottom:188.415298px;}
.y106{bottom:189.132294px;}
.y29{bottom:189.211349px;}
.y9d{bottom:189.432289px;}
.y135{bottom:189.735306px;}
.y17e{bottom:189.874786px;}
.yac{bottom:189.874809px;}
.y14f{bottom:189.874947px;}
.y20d{bottom:191.584823px;}
.y24d{bottom:191.967275px;}
.y38{bottom:203.032794px;}
.y1cd{bottom:204.912003px;}
.y20c{bottom:206.578823px;}
.y24c{bottom:206.961275px;}
.y105{bottom:207.882294px;}
.y28{bottom:207.961349px;}
.y9c{bottom:208.182289px;}
.y134{bottom:208.485306px;}
.y17d{bottom:208.624786px;}
.yab{bottom:208.624809px;}
.y14e{bottom:208.624947px;}
.y20b{bottom:221.572823px;}
.y24b{bottom:221.955275px;}
.y37{bottom:223.126808px;}
.y104{bottom:226.632294px;}
.y27{bottom:226.711349px;}
.y9b{bottom:226.932289px;}
.y133{bottom:227.235306px;}
.y17c{bottom:227.374786px;}
.yaa{bottom:227.374809px;}
.y14d{bottom:227.374947px;}
.y20a{bottom:236.566823px;}
.y24a{bottom:236.949275px;}
.y36{bottom:240.580059px;}
.y6c{bottom:244.665344px;}
.y103{bottom:245.382294px;}
.y26{bottom:245.461349px;}
.y9a{bottom:245.682289px;}
.y132{bottom:245.985306px;}
.y17b{bottom:246.124786px;}
.ya9{bottom:246.124809px;}
.y14c{bottom:246.124947px;}
.y209{bottom:251.560823px;}
.y249{bottom:251.943275px;}
.y35{bottom:260.674049px;}
.y6b{bottom:263.415344px;}
.y102{bottom:264.132294px;}
.y25{bottom:264.211349px;}
.y99{bottom:264.432289px;}
.y131{bottom:264.735306px;}
.y17a{bottom:264.874786px;}
.ya8{bottom:264.874809px;}
.y14b{bottom:264.874947px;}
.y208{bottom:266.554823px;}
.y248{bottom:266.937275px;}
.y1cc{bottom:279.989836px;}
.y207{bottom:281.548823px;}
.y247{bottom:281.931275px;}
.y6a{bottom:282.165344px;}
.y101{bottom:282.882294px;}
.y24{bottom:282.961349px;}
.y98{bottom:283.182289px;}
.y34{bottom:283.221153px;}
.y130{bottom:283.485306px;}
.y179{bottom:283.624786px;}
.ya7{bottom:283.624809px;}
.y15a{bottom:283.624947px;}
.y1cb{bottom:294.983836px;}
.y206{bottom:296.542823px;}
.y246{bottom:296.925275px;}
.y33{bottom:300.674541px;}
.y69{bottom:300.915344px;}
.y100{bottom:301.632294px;}
.y23{bottom:301.711349px;}
.y97{bottom:301.932289px;}
.y12f{bottom:302.235306px;}
.y178{bottom:302.374786px;}
.ya6{bottom:302.374809px;}
.y14a{bottom:302.380947px;}
.y1ca{bottom:309.977836px;}
.y205{bottom:311.536823px;}
.y245{bottom:311.919275px;}
.y68{bottom:319.665344px;}
.yff{bottom:320.382294px;}
.y22{bottom:320.461349px;}
.y32{bottom:320.768555px;}
.y12e{bottom:320.985306px;}
.y159{bottom:321.124786px;}
.ya5{bottom:321.124809px;}
.y149{bottom:321.124947px;}
.y1c9{bottom:324.971836px;}
.y204{bottom:326.530823px;}
.y244{bottom:326.913275px;}
.y31{bottom:338.221805px;}
.y67{bottom:338.415344px;}
.yfe{bottom:339.132294px;}
.y21{bottom:339.211349px;}
.y96{bottom:339.432289px;}
.y12d{bottom:339.735306px;}
.y158{bottom:339.874786px;}
.ya4{bottom:339.874809px;}
.y1c8{bottom:339.965836px;}
.y203{bottom:341.524823px;}
.y243{bottom:341.907275px;}
.y1c7{bottom:354.959836px;}
.y202{bottom:356.518823px;}
.y242{bottom:356.901275px;}
.y66{bottom:357.165344px;}
.yfd{bottom:357.882294px;}
.y20{bottom:357.961349px;}
.y30{bottom:358.315796px;}
.y12c{bottom:358.485306px;}
.y148{bottom:358.624786px;}
.ya3{bottom:358.624809px;}
.y201{bottom:371.512823px;}
.y241{bottom:371.895275px;}
.y65{bottom:375.915344px;}
.yfc{bottom:376.632294px;}
.y1f{bottom:376.711349px;}
.y95{bottom:376.932289px;}
.y12b{bottom:377.235306px;}
.y147{bottom:377.374786px;}
.ya2{bottom:377.374809px;}
.y2f{bottom:383.316287px;}
.y200{bottom:386.506823px;}
.y240{bottom:386.889275px;}
.y64{bottom:394.665344px;}
.yfb{bottom:395.382294px;}
.y1e{bottom:395.461349px;}
.y12a{bottom:395.985306px;}
.y146{bottom:396.124786px;}
.y1c6{bottom:396.155086px;}
.y2e{bottom:398.310287px;}
.y1ff{bottom:401.500823px;}
.y23f{bottom:401.883275px;}
.y1c5{bottom:411.149086px;}
.y63{bottom:413.415344px;}
.yfa{bottom:414.132294px;}
.y1d{bottom:414.211349px;}
.y129{bottom:414.735306px;}
.y145{bottom:414.874786px;}
.y1fe{bottom:416.494823px;}
.y23e{bottom:416.877275px;}
.y1c4{bottom:426.143086px;}
.y1fd{bottom:431.488823px;}
.y23d{bottom:431.871275px;}
.y94{bottom:432.165298px;}
.y62{bottom:432.165344px;}
.yf9{bottom:432.882294px;}
.y1a2{bottom:433.485306px;}
.y144{bottom:433.624786px;}
.y1c3{bottom:441.137086px;}
.y1fc{bottom:446.482823px;}
.ycf{bottom:446.601041px;}
.y23c{bottom:446.865275px;}
.y93{bottom:450.915298px;}
.y61{bottom:450.915344px;}
.yf8{bottom:451.632294px;}
.y1c{bottom:451.711349px;}
.y128{bottom:452.235306px;}
.y143{bottom:452.374786px;}
.y1c2{bottom:456.131086px;}
.y1fb{bottom:461.476823px;}
.y23b{bottom:461.859275px;}
.yce{bottom:462.347717px;}
.yd3{bottom:465.877213px;}
.y92{bottom:469.665298px;}
.y60{bottom:469.665344px;}
.yf7{bottom:470.382294px;}
.y1a1{bottom:470.985306px;}
.y142{bottom:471.124786px;}
.y1c1{bottom:471.125086px;}
.y1fa{bottom:476.470823px;}
.y23a{bottom:476.853275px;}
.yd1{bottom:476.962504px;}
.y91{bottom:488.415298px;}
.y5f{bottom:488.415344px;}
.yf6{bottom:489.132294px;}
.y127{bottom:489.735306px;}
.y141{bottom:489.874786px;}
.y1f9{bottom:491.464823px;}
.y239{bottom:491.847275px;}
.yd0{bottom:494.039703px;}
.y1c0{bottom:501.087586px;}
.y1f8{bottom:506.458823px;}
.y238{bottom:506.841275px;}
.y90{bottom:507.165298px;}
.y5e{bottom:507.165344px;}
.yf5{bottom:507.882294px;}
.y1b{bottom:507.961395px;}
.y1a0{bottom:508.485306px;}
.y140{bottom:508.624786px;}
.y1bf{bottom:516.081586px;}
.yc1{bottom:517.195830px;}
.y1f7{bottom:521.452823px;}
.y237{bottom:521.835275px;}
.y8f{bottom:525.915298px;}
.y5d{bottom:525.915344px;}
.yf4{bottom:526.632294px;}
.y19f{bottom:527.235306px;}
.y13f{bottom:527.374786px;}
.yc0{bottom:533.007095px;}
.y1f6{bottom:536.446823px;}
.y236{bottom:536.829275px;}
.yd2{bottom:539.359222px;}
.y8e{bottom:544.665298px;}
.y5c{bottom:544.665344px;}
.yf3{bottom:545.382294px;}
.y1a{bottom:545.461395px;}
.y126{bottom:545.985260px;}
.y19e{bottom:545.985306px;}
.y1be{bottom:546.044086px;}
.y13e{bottom:546.124786px;}
.ybf{bottom:548.818359px;}
.ycd{bottom:550.925073px;}
.y1f5{bottom:551.440823px;}
.y235{bottom:551.823275px;}
.y1bd{bottom:561.038086px;}
.y8d{bottom:563.415298px;}
.y5b{bottom:563.415344px;}
.y19{bottom:564.211395px;}
.y125{bottom:564.735260px;}
.y19d{bottom:564.735306px;}
.y13d{bottom:564.874786px;}
.y157{bottom:564.874947px;}
.y1f4{bottom:566.434823px;}
.ycc{bottom:566.671749px;}
.y234{bottom:566.817275px;}
.y1f3{bottom:581.428823px;}
.y233{bottom:581.811275px;}
.y8c{bottom:582.165298px;}
.y5a{bottom:582.165344px;}
.ycb{bottom:582.418426px;}
.yf2{bottom:582.882294px;}
.y18{bottom:582.961395px;}
.y124{bottom:583.485260px;}
.y19c{bottom:583.485306px;}
.y13c{bottom:583.624786px;}
.y156{bottom:583.624947px;}
.y1bc{bottom:594.788086px;}
.y1f2{bottom:596.422823px;}
.y232{bottom:596.805275px;}
.yca{bottom:598.229691px;}
.y8b{bottom:600.915298px;}
.y59{bottom:600.915344px;}
.ybe{bottom:601.330914px;}
.y17{bottom:601.711395px;}
.y123{bottom:602.235260px;}
.y19b{bottom:602.235306px;}
.y13b{bottom:602.374786px;}
.y155{bottom:602.374947px;}
.y1f1{bottom:611.416823px;}
.y231{bottom:611.799275px;}
.ybd{bottom:617.142179px;}
.y8a{bottom:619.665298px;}
.y58{bottom:619.665344px;}
.y16{bottom:620.461395px;}
.y122{bottom:620.985260px;}
.y19a{bottom:620.985306px;}
.y13a{bottom:621.124786px;}
.y154{bottom:621.124947px;}
.y1f0{bottom:626.410823px;}
.y230{bottom:626.793275px;}
.yf1{bottom:630.058777px;}
.y1bb{bottom:632.351688px;}
.ybc{bottom:632.888855px;}
.y89{bottom:638.415298px;}
.y57{bottom:638.415344px;}
.y15{bottom:639.211395px;}
.y121{bottom:639.735260px;}
.y199{bottom:639.735306px;}
.y177{bottom:639.874786px;}
.y1ef{bottom:641.404823px;}
.y22f{bottom:641.787275px;}
.y1ba{bottom:647.345688px;}
.yf0{bottom:648.808777px;}
.y1ee{bottom:656.398823px;}
.y22e{bottom:656.781275px;}
.yc9{bottom:656.887207px;}
.y88{bottom:657.165298px;}
.y56{bottom:657.165344px;}
.y14{bottom:657.961395px;}
.y120{bottom:658.485260px;}
.y198{bottom:658.485306px;}
.y176{bottom:658.624786px;}
.y1b9{bottom:662.339688px;}
.yef{bottom:667.558777px;}
.y15e{bottom:670.969803px;}
.y1ed{bottom:671.392823px;}
.y22d{bottom:671.775275px;}
.y87{bottom:675.915298px;}
.y55{bottom:675.915344px;}
.y13{bottom:676.711395px;}
.y11f{bottom:677.235260px;}
.y197{bottom:677.235306px;}
.y1b8{bottom:677.333688px;}
.y175{bottom:677.374786px;}
.yee{bottom:686.308777px;}
.y1ec{bottom:686.386823px;}
.y22c{bottom:686.769275px;}
.ybb{bottom:689.359435px;}
.y1b7{bottom:692.327688px;}
.y86{bottom:694.665298px;}
.y54{bottom:694.665344px;}
.y173{bottom:694.804009px;}
.y12{bottom:695.461395px;}
.y11e{bottom:695.985260px;}
.y174{bottom:696.124786px;}
.y1eb{bottom:701.380823px;}
.y22b{bottom:701.763275px;}
.yed{bottom:705.058777px;}
.yba{bottom:705.170700px;}
.y85{bottom:713.415298px;}
.y53{bottom:713.415344px;}
.y172{bottom:713.597509px;}
.y11{bottom:714.211395px;}
.y11d{bottom:714.735260px;}
.y196{bottom:714.735306px;}
.y1ea{bottom:716.374823px;}
.y22a{bottom:716.757275px;}
.yc6{bottom:723.105006px;}
.yec{bottom:723.808777px;}
.y1b6{bottom:726.038688px;}
.y1e9{bottom:731.368823px;}
.y229{bottom:731.751275px;}
.y84{bottom:732.165298px;}
.y52{bottom:732.165344px;}
.y171{bottom:732.314509px;}
.y10{bottom:732.961395px;}
.y11c{bottom:733.485260px;}
.yc5{bottom:740.182205px;}
.y1b5{bottom:741.032688px;}
.yeb{bottom:742.558777px;}
.y1e8{bottom:746.362823px;}
.y228{bottom:746.745275px;}
.y83{bottom:750.915298px;}
.y51{bottom:750.915344px;}
.y170{bottom:751.031509px;}
.yf{bottom:751.711395px;}
.y11b{bottom:752.235260px;}
.y188{bottom:755.713943px;}
.y1b4{bottom:756.026688px;}
.yb9{bottom:761.135427px;}
.yea{bottom:761.308777px;}
.y1e7{bottom:761.356823px;}
.y227{bottom:761.739275px;}
.y82{bottom:769.665298px;}
.y50{bottom:769.665344px;}
.y16f{bottom:769.748509px;}
.y187{bottom:769.899344px;}
.ye{bottom:770.461395px;}
.y11a{bottom:770.985260px;}
.y1e6{bottom:776.350823px;}
.y226{bottom:776.733275px;}
.yb8{bottom:777.024198px;}
.ye9{bottom:780.058777px;}
.y186{bottom:784.893344px;}
.y81{bottom:788.415298px;}
.y4f{bottom:788.415344px;}
.y16e{bottom:788.465509px;}
.yd{bottom:789.211395px;}
.y119{bottom:789.735260px;}
.y1b3{bottom:789.735306px;}
.y1e5{bottom:791.344823px;}
.y225{bottom:791.727275px;}
.yb7{bottom:792.770874px;}
.ye8{bottom:798.808777px;}
.y185{bottom:804.145844px;}
.y1e4{bottom:806.338823px;}
.y224{bottom:806.721275px;}
.y80{bottom:807.165298px;}
.y4e{bottom:807.165344px;}
.y16d{bottom:807.182509px;}
.yc{bottom:807.961395px;}
.y118{bottom:808.485260px;}
.y1b2{bottom:808.485306px;}
.yc8{bottom:809.147903px;}
.ye7{bottom:817.558777px;}
.y1e3{bottom:821.332823px;}
.y223{bottom:821.715275px;}
.y184{bottom:823.398344px;}
.yc7{bottom:824.959167px;}
.y16c{bottom:825.899509px;}
.y7f{bottom:825.915298px;}
.y4d{bottom:825.915344px;}
.y117{bottom:827.235260px;}
.y1b1{bottom:827.235306px;}
.ye6{bottom:836.308777px;}
.y1e2{bottom:836.326823px;}
.y222{bottom:836.709275px;}
.y183{bottom:838.392344px;}
.y16b{bottom:844.616509px;}
.y7e{bottom:844.665298px;}
.y4c{bottom:844.665344px;}
.yb6{bottom:845.077666px;}
.y116{bottom:845.985260px;}
.y1b0{bottom:845.985306px;}
.y1e1{bottom:851.320823px;}
.y221{bottom:851.703275px;}
.yb{bottom:852.144153px;}
.ye5{bottom:855.058777px;}
.yb5{bottom:860.953519px;}
.y16a{bottom:863.333509px;}
.y7d{bottom:863.415298px;}
.y4b{bottom:863.415344px;}
.y115{bottom:864.735260px;}
.y1af{bottom:864.735306px;}
.y1e0{bottom:866.314823px;}
.y220{bottom:866.697275px;}
.y193{bottom:866.966527px;}
.ya{bottom:867.138153px;}
.ye4{bottom:873.808777px;}
.yb4{bottom:876.700195px;}
.y1df{bottom:881.308823px;}
.y21f{bottom:881.691275px;}
.y169{bottom:882.050509px;}
.y7c{bottom:882.165298px;}
.y4a{bottom:882.165344px;}
.y114{bottom:883.485260px;}
.y1ae{bottom:883.485306px;}
.y192{bottom:885.760027px;}
.ye3{bottom:892.558777px;}
.y1de{bottom:896.302823px;}
.y21e{bottom:896.685275px;}
.yc2{bottom:899.006836px;}
.y168{bottom:900.767509px;}
.y7b{bottom:900.915298px;}
.y49{bottom:900.915344px;}
.y113{bottom:902.235260px;}
.y1ad{bottom:902.235306px;}
.y191{bottom:904.477027px;}
.y9{bottom:909.738190px;}
.y1dd{bottom:911.296823px;}
.ye2{bottom:911.308777px;}
.y21d{bottom:911.679275px;}
.y167{bottom:919.484509px;}
.y7a{bottom:919.665298px;}
.y48{bottom:919.665344px;}
.y112{bottom:920.985260px;}
.y1ac{bottom:920.985306px;}
.y190{bottom:923.194027px;}
.yda{bottom:924.423106px;}
.y1dc{bottom:926.290823px;}
.y21c{bottom:926.673275px;}
.ye1{bottom:930.058777px;}
.y166{bottom:938.201509px;}
.y79{bottom:938.415298px;}
.y47{bottom:938.415344px;}
.y111{bottom:939.735260px;}
.y1ab{bottom:939.735306px;}
.y1db{bottom:941.284823px;}
.yd9{bottom:941.500305px;}
.y21b{bottom:941.667275px;}
.y18f{bottom:941.911027px;}
.ye0{bottom:948.808777px;}
.y8{bottom:954.424622px;}
.y1da{bottom:956.278823px;}
.y21a{bottom:956.661275px;}
.y165{bottom:956.918509px;}
.y78{bottom:957.165298px;}
.y46{bottom:957.165344px;}
.yc4{bottom:957.806472px;}
.y110{bottom:958.485260px;}
.y1aa{bottom:958.485306px;}
.y18e{bottom:960.628027px;}
.ydf{bottom:967.558777px;}
.y1d9{bottom:971.272823px;}
.y219{bottom:971.655275px;}
.yc3{bottom:973.617737px;}
.y164{bottom:975.635509px;}
.y77{bottom:975.915298px;}
.y45{bottom:975.915344px;}
.y10f{bottom:977.235260px;}
.y1a9{bottom:977.235306px;}
.y18d{bottom:979.345027px;}
.y7{bottom:981.424622px;}
.y258{bottom:985.489073px;}
.y1d8{bottom:986.266823px;}
.yde{bottom:986.308777px;}
.y218{bottom:986.649275px;}
.y163{bottom:994.342923px;}
.y76{bottom:994.665298px;}
.y44{bottom:994.665344px;}
.y10e{bottom:995.985260px;}
.y1a8{bottom:995.985306px;}
.yd5{bottom:996.494339px;}
.y18c{bottom:998.062027px;}
.y257{bottom:1000.483073px;}
.y1d7{bottom:1001.260823px;}
.y217{bottom:1001.643275px;}
.y6{bottom:1008.424622px;}
.y162{bottom:1013.059923px;}
.y75{bottom:1013.415298px;}
.y43{bottom:1013.415344px;}
.yd4{bottom:1013.429443px;}
.y195{bottom:1014.735260px;}
.y1a7{bottom:1014.735306px;}
.y1d6{bottom:1016.254823px;}
.y216{bottom:1016.637275px;}
.y18b{bottom:1016.779027px;}
.yd8{bottom:1023.245303px;}
.ydd{bottom:1023.808777px;}
.y15d{bottom:1030.126844px;}
.y1d5{bottom:1031.248823px;}
.y256{bottom:1031.325323px;}
.y215{bottom:1031.631275px;}
.y18a{bottom:1031.773027px;}
.y161{bottom:1031.776923px;}
.y74{bottom:1032.165298px;}
.y42{bottom:1032.165344px;}
.y10d{bottom:1033.485260px;}
.y1a6{bottom:1033.485306px;}
.yd7{bottom:1040.257914px;}
.y15c{bottom:1045.120844px;}
.y1d4{bottom:1046.242823px;}
.y255{bottom:1046.319323px;}
.y214{bottom:1046.625275px;}
.y73{bottom:1050.915298px;}
.y41{bottom:1050.915344px;}
.y194{bottom:1052.235260px;}
.y1a5{bottom:1052.235306px;}
.yd6{bottom:1057.335114px;}
.y189{bottom:1059.861277px;}
.y160{bottom:1059.865173px;}
.y15b{bottom:1060.114844px;}
.y1d3{bottom:1061.236823px;}
.y254{bottom:1061.313323px;}
.y213{bottom:1061.619275px;}
.yb3{bottom:1062.845896px;}
.y72{bottom:1069.665298px;}
.y40{bottom:1069.665344px;}
.y10c{bottom:1070.982305px;}
.ydc{bottom:1070.985260px;}
.y1a4{bottom:1070.985306px;}
.yb2{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y1d2{bottom:1076.230823px;}
.y253{bottom:1076.307323px;}
.y212{bottom:1076.613275px;}
.y15f{bottom:1084.277527px;}
.y71{bottom:1088.415298px;}
.y3f{bottom:1088.415344px;}
.y10b{bottom:1089.732305px;}
.ydb{bottom:1089.735260px;}
.y1a3{bottom:1089.735306px;}
.yb1{bottom:1090.102844px;}
.y1d1{bottom:1091.224823px;}
.y252{bottom:1091.301323px;}
.y211{bottom:1091.607275px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3e{bottom:1127.482361px;}
.hf{height:25.454099px;}
.h18{height:31.773037px;}
.h13{height:35.807864px;}
.he{height:36.363000px;}
.hd{height:36.855469px;}
.h2{height:42.048000px;}
.ha{height:42.780000px;}
.h8{height:43.260000px;}
.h4{height:44.676000px;}
.h17{height:45.893319px;}
.h11{height:49.113000px;}
.hc{height:51.912000px;}
.h16{height:52.173000px;}
.h15{height:53.946000px;}
.h14{height:53.946046px;}
.h3{height:54.862258px;}
.h12{height:55.064870px;}
.h5{height:55.404000px;}
.h9{height:57.780000px;}
.hb{height:61.380000px;}
.h10{height:64.680000px;}
.h7{height:64.824000px;}
.h6{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.545402px;}
.x7{left:97.796100px;}
.x2b{left:102.047253px;}
.x26{left:267.873894px;}
.x28{left:272.348988px;}
.x2a{left:276.888145px;}
.x29{left:278.341515px;}
.x15{left:288.957389px;}
.x13{left:297.014397px;}
.x14{left:309.367355px;}
.x21{left:350.519096px;}
.x20{left:351.578407px;}
.x5{left:459.212723px;}
.xe{left:461.766769px;}
.x12{left:462.965888px;}
.x22{left:466.071762px;}
.x1d{left:467.124442px;}
.xf{left:469.389908px;}
.x10{left:473.769007px;}
.xb{left:475.178421px;}
.x6{left:476.222723px;}
.xc{left:482.386496px;}
.xd{left:483.587845px;}
.x11{left:485.278677px;}
.xa{left:502.076659px;}
.x27{left:545.228119px;}
.x24{left:673.105108px;}
.x18{left:678.048752px;}
.x17{left:679.456895px;}
.x1b{left:684.048732px;}
.x1e{left:688.778229px;}
.x1f{left:690.832145px;}
.x23{left:695.271881px;}
.x16{left:704.801422px;}
.x1a{left:706.073410px;}
.x25{left:715.953119px;}
.x1c{left:720.825423px;}
.x19{left:724.139107px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.117339pt;}
.v4{vertical-align:18.133789pt;}
.v1{vertical-align:21.333333pt;}
.ls40{letter-spacing:-3.520000pt;}
.ls41{letter-spacing:-0.997333pt;}
.ls27{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.853333pt;}
.ls29{letter-spacing:-0.800000pt;}
.ls2b{letter-spacing:-0.693333pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls3e{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.320000pt;}
.ls55{letter-spacing:-0.317333pt;}
.ls28{letter-spacing:-0.266667pt;}
.ls2c{letter-spacing:-0.213333pt;}
.ls54{letter-spacing:-0.181333pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.137789pt;}
.ls53{letter-spacing:-0.136000pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls35{letter-spacing:-0.091859pt;}
.ls79{letter-spacing:-0.090667pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls33{letter-spacing:-0.045930pt;}
.ls56{letter-spacing:-0.045333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.031982pt;}
.ls50{letter-spacing:0.045333pt;}
.ls30{letter-spacing:0.045930pt;}
.ls3b{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.053333pt;}
.ls31{letter-spacing:0.091859pt;}
.ls9{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.133333pt;}
.ls48{letter-spacing:0.136000pt;}
.lsa{letter-spacing:0.158926pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls49{letter-spacing:0.181333pt;}
.ls3c{letter-spacing:0.186523pt;}
.ls15{letter-spacing:0.186667pt;}
.ls3d{letter-spacing:0.186689pt;}
.ls1{letter-spacing:0.213333pt;}
.ls20{letter-spacing:0.218667pt;}
.lsb{letter-spacing:0.226667pt;}
.ls4b{letter-spacing:0.234667pt;}
.ls6{letter-spacing:0.240000pt;}
.ls4f{letter-spacing:0.249333pt;}
.ls52{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls46{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls61{letter-spacing:0.362667pt;}
.ls7{letter-spacing:0.373333pt;}
.ls6f{letter-spacing:0.408000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls4c{letter-spacing:0.453333pt;}
.ls58{letter-spacing:0.476000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls63{letter-spacing:0.498667pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls4a{letter-spacing:0.544000pt;}
.ls21{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.589333pt;}
.ls43{letter-spacing:0.613333pt;}
.ls5b{letter-spacing:0.634667pt;}
.ls22{letter-spacing:0.640000pt;}
.ls51{letter-spacing:0.657333pt;}
.ls5d{letter-spacing:0.680000pt;}
.ls18{letter-spacing:0.693333pt;}
.ls64{letter-spacing:0.702667pt;}
.ls4e{letter-spacing:0.725333pt;}
.ls16{letter-spacing:0.746667pt;}
.ls68{letter-spacing:0.770667pt;}
.ls47{letter-spacing:0.773333pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls67{letter-spacing:0.816000pt;}
.ls1b{letter-spacing:0.853333pt;}
.ls5a{letter-spacing:0.861333pt;}
.ls25{letter-spacing:0.906667pt;}
.ls6c{letter-spacing:0.952000pt;}
.ls19{letter-spacing:0.960000pt;}
.ls65{letter-spacing:0.997333pt;}
.ls39{letter-spacing:1.013333pt;}
.ls75{letter-spacing:1.020000pt;}
.ls45{letter-spacing:1.040000pt;}
.ls60{letter-spacing:1.042667pt;}
.ls23{letter-spacing:1.056000pt;}
.ls6d{letter-spacing:1.065333pt;}
.ls1c{letter-spacing:1.066667pt;}
.ls7a{letter-spacing:1.088000pt;}
.ls5{letter-spacing:1.114667pt;}
.ls37{letter-spacing:1.120000pt;}
.ls6a{letter-spacing:1.133333pt;}
.ls2f{letter-spacing:1.173333pt;}
.ls6e{letter-spacing:1.178667pt;}
.ls5e{letter-spacing:1.224000pt;}
.ls42{letter-spacing:1.226667pt;}
.ls5c{letter-spacing:1.269333pt;}
.ls24{letter-spacing:1.280000pt;}
.ls59{letter-spacing:1.314667pt;}
.ls2e{letter-spacing:1.333333pt;}
.ls70{letter-spacing:1.337333pt;}
.ls62{letter-spacing:1.360000pt;}
.ls14{letter-spacing:1.386667pt;}
.ls74{letter-spacing:1.405333pt;}
.ls6b{letter-spacing:1.450667pt;}
.ls72{letter-spacing:1.496000pt;}
.ls5f{letter-spacing:1.541333pt;}
.ls3a{letter-spacing:1.546667pt;}
.ls69{letter-spacing:1.564000pt;}
.ls1e{letter-spacing:1.573333pt;}
.ls71{letter-spacing:1.586667pt;}
.ls3f{letter-spacing:1.600000pt;}
.ls57{letter-spacing:1.677333pt;}
.ls73{letter-spacing:1.722667pt;}
.ls44{letter-spacing:1.813333pt;}
.ls66{letter-spacing:1.858667pt;}
.ls77{letter-spacing:1.994667pt;}
.ls76{letter-spacing:2.108000pt;}
.ls78{letter-spacing:2.312000pt;}
.ls0{letter-spacing:3.546667pt;}
.ls32{letter-spacing:10.609738pt;}
.ls34{letter-spacing:10.655667pt;}
.ws4b{word-spacing:-21.035757pt;}
.ws4a{word-spacing:-20.989827pt;}
.ws69{word-spacing:-14.346667pt;}
.ws72{word-spacing:-14.133333pt;}
.ws26{word-spacing:-13.600000pt;}
.ws25{word-spacing:-13.493333pt;}
.ws6{word-spacing:-13.333333pt;}
.ws5b{word-spacing:-13.013333pt;}
.ws24{word-spacing:-12.853333pt;}
.ws93{word-spacing:-12.194667pt;}
.ws81{word-spacing:-11.786667pt;}
.ws80{word-spacing:-11.560000pt;}
.ws71{word-spacing:-11.333333pt;}
.ws5a{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.613333pt;}
.ws5{word-spacing:-10.560000pt;}
.ws49{word-spacing:-10.426019pt;}
.ws50{word-spacing:-10.380090pt;}
.ws4c{word-spacing:-10.288230pt;}
.ws4e{word-spacing:-10.242301pt;}
.ws8{word-spacing:-10.240000pt;}
.ws6a{word-spacing:-9.813333pt;}
.ws5c{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws7f{word-spacing:-8.840000pt;}
.ws7e{word-spacing:-8.568000pt;}
.ws0{word-spacing:-8.362667pt;}
.wsa{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws14{word-spacing:-6.666667pt;}
.ws70{word-spacing:-5.666667pt;}
.wsb{word-spacing:-1.680000pt;}
.ws12{word-spacing:-1.333333pt;}
.ws51{word-spacing:-1.280000pt;}
.ws75{word-spacing:-1.226667pt;}
.ws16{word-spacing:-1.173333pt;}
.ws84{word-spacing:-1.133333pt;}
.ws1c{word-spacing:-1.120000pt;}
.ws11{word-spacing:-1.066667pt;}
.wsa8{word-spacing:-0.997333pt;}
.ws38{word-spacing:-0.960000pt;}
.ws42{word-spacing:-0.906667pt;}
.ws8f{word-spacing:-0.861333pt;}
.ws1e{word-spacing:-0.853333pt;}
.ws3e{word-spacing:-0.800000pt;}
.ws9d{word-spacing:-0.770667pt;}
.ws2e{word-spacing:-0.746667pt;}
.wsab{word-spacing:-0.725333pt;}
.ws27{word-spacing:-0.693333pt;}
.wsf{word-spacing:-0.640000pt;}
.wsa0{word-spacing:-0.634667pt;}
.ws17{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.544000pt;}
.ws32{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.506667pt;}
.ws54{word-spacing:-0.480000pt;}
.ws9f{word-spacing:-0.453333pt;}
.ws1a{word-spacing:-0.426667pt;}
.ws68{word-spacing:-0.373333pt;}
.ws8a{word-spacing:-0.362667pt;}
.ws5e{word-spacing:-0.320000pt;}
.wsad{word-spacing:-0.317333pt;}
.ws89{word-spacing:-0.272000pt;}
.ws4{word-spacing:-0.266667pt;}
.ws8b{word-spacing:-0.226667pt;}
.ws15{word-spacing:-0.213333pt;}
.ws35{word-spacing:-0.160000pt;}
.ws1b{word-spacing:-0.106667pt;}
.ws9{word-spacing:-0.064000pt;}
.ws59{word-spacing:-0.045930pt;}
.wsc{word-spacing:0.000000pt;}
.ws47{word-spacing:0.053333pt;}
.ws4f{word-spacing:0.091854pt;}
.ws4d{word-spacing:0.091859pt;}
.ws64{word-spacing:0.106667pt;}
.wsaa{word-spacing:0.136000pt;}
.ws19{word-spacing:0.160000pt;}
.ws29{word-spacing:0.213333pt;}
.ws85{word-spacing:0.226667pt;}
.ws10{word-spacing:0.266667pt;}
.ws9b{word-spacing:0.272000pt;}
.ws18{word-spacing:0.320000pt;}
.wsa2{word-spacing:0.362667pt;}
.ws6d{word-spacing:0.373333pt;}
.ws90{word-spacing:0.408000pt;}
.ws67{word-spacing:0.426667pt;}
.ws28{word-spacing:0.480000pt;}
.ws2b{word-spacing:0.533333pt;}
.ws95{word-spacing:0.634667pt;}
.ws40{word-spacing:0.640000pt;}
.ws1d{word-spacing:0.693333pt;}
.ws96{word-spacing:0.725333pt;}
.ws43{word-spacing:0.746667pt;}
.ws92{word-spacing:0.770667pt;}
.ws1f{word-spacing:0.800000pt;}
.ws2f{word-spacing:0.853333pt;}
.ws8c{word-spacing:0.861333pt;}
.ws7b{word-spacing:0.906667pt;}
.ws2a{word-spacing:0.960000pt;}
.ws33{word-spacing:1.066667pt;}
.ws57{word-spacing:1.120000pt;}
.ws86{word-spacing:1.133333pt;}
.ws9a{word-spacing:1.178667pt;}
.ws7c{word-spacing:1.226667pt;}
.ws8e{word-spacing:1.269333pt;}
.ws13{word-spacing:1.280000pt;}
.ws9e{word-spacing:1.314667pt;}
.wse{word-spacing:1.333333pt;}
.ws97{word-spacing:1.360000pt;}
.ws6f{word-spacing:1.386667pt;}
.ws99{word-spacing:1.405333pt;}
.ws36{word-spacing:1.440000pt;}
.ws5f{word-spacing:1.493333pt;}
.wsa5{word-spacing:1.496000pt;}
.ws91{word-spacing:1.541333pt;}
.ws55{word-spacing:1.546667pt;}
.wsb7{word-spacing:1.586667pt;}
.ws20{word-spacing:1.600000pt;}
.wsa9{word-spacing:1.632000pt;}
.ws3a{word-spacing:1.653333pt;}
.ws34{word-spacing:1.706667pt;}
.ws98{word-spacing:1.768000pt;}
.ws21{word-spacing:1.813333pt;}
.wsa3{word-spacing:1.858667pt;}
.ws41{word-spacing:1.866667pt;}
.ws2c{word-spacing:1.920000pt;}
.ws8d{word-spacing:1.994667pt;}
.ws30{word-spacing:2.026667pt;}
.ws3d{word-spacing:2.080000pt;}
.wsb1{word-spacing:2.130667pt;}
.ws53{word-spacing:2.240000pt;}
.ws83{word-spacing:2.293333pt;}
.ws2d{word-spacing:2.346667pt;}
.ws3b{word-spacing:2.400000pt;}
.ws61{word-spacing:2.453333pt;}
.wsa7{word-spacing:2.493333pt;}
.ws48{word-spacing:2.506667pt;}
.wsb4{word-spacing:2.538667pt;}
.ws60{word-spacing:2.560000pt;}
.ws52{word-spacing:2.613333pt;}
.wsae{word-spacing:2.629333pt;}
.ws46{word-spacing:2.666667pt;}
.ws9c{word-spacing:2.765333pt;}
.ws37{word-spacing:2.773333pt;}
.wsa4{word-spacing:2.946667pt;}
.ws65{word-spacing:2.986667pt;}
.wsac{word-spacing:3.037333pt;}
.ws87{word-spacing:3.082667pt;}
.ws62{word-spacing:3.146667pt;}
.ws3c{word-spacing:3.200000pt;}
.ws6e{word-spacing:3.253333pt;}
.ws77{word-spacing:3.306667pt;}
.wsb8{word-spacing:3.309333pt;}
.ws44{word-spacing:3.360000pt;}
.ws5d{word-spacing:3.466667pt;}
.ws79{word-spacing:3.573333pt;}
.wsa6{word-spacing:3.581333pt;}
.wsaf{word-spacing:3.626667pt;}
.wsb0{word-spacing:3.672000pt;}
.ws66{word-spacing:3.680000pt;}
.ws82{word-spacing:3.733333pt;}
.wsb2{word-spacing:3.762667pt;}
.ws78{word-spacing:3.893333pt;}
.ws58{word-spacing:4.000000pt;}
.ws88{word-spacing:4.034667pt;}
.ws76{word-spacing:4.160000pt;}
.ws45{word-spacing:4.320000pt;}
.wsa1{word-spacing:4.352000pt;}
.ws56{word-spacing:4.640000pt;}
.ws31{word-spacing:4.853333pt;}
.ws39{word-spacing:4.960000pt;}
.wsb5{word-spacing:4.986667pt;}
.wsb9{word-spacing:5.213333pt;}
.ws63{word-spacing:5.653333pt;}
.wsb3{word-spacing:5.666667pt;}
.ws3f{word-spacing:5.866667pt;}
.ws94{word-spacing:6.618667pt;}
.wsb6{word-spacing:6.754667pt;}
.ws7a{word-spacing:7.040000pt;}
.ws7d{word-spacing:12.013333pt;}
.wsba{word-spacing:12.149333pt;}
.wsbb{word-spacing:15.821333pt;}
.ws22{word-spacing:64.237333pt;}
.ws73{word-spacing:97.013333pt;}
.ws6c{word-spacing:102.589333pt;}
.ws6b{word-spacing:176.120000pt;}
.ws74{word-spacing:257.901333pt;}
._9{margin-left:-14.733333pt;}
._f{margin-left:-10.986667pt;}
._11{margin-left:-9.573333pt;}
._5{margin-left:-8.138732pt;}
._6{margin-left:-6.378667pt;}
._7{margin-left:-4.890667pt;}
._4{margin-left:-3.146667pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.280000pt;}
._d{width:2.560000pt;}
._37{width:6.437333pt;}
._e{width:8.890667pt;}
._12{width:10.186667pt;}
._3{width:11.360000pt;}
._36{width:12.738667pt;}
._8{width:14.453333pt;}
._a{width:16.320000pt;}
._2{width:35.628792pt;}
._b{width:48.552000pt;}
._14{width:66.607037pt;}
._18{width:70.377926pt;}
._29{width:78.698667pt;}
._1c{width:89.170667pt;}
._20{width:101.365333pt;}
._19{width:106.749551pt;}
._2e{width:108.265046pt;}
._17{width:111.746667pt;}
._1d{width:129.970667pt;}
._1b{width:134.413333pt;}
._31{width:137.894954pt;}
._21{width:142.165333pt;}
._22{width:151.114667pt;}
._15{width:176.608000pt;}
._34{width:197.698667pt;}
._1a{width:199.635033pt;}
._16{width:225.914667pt;}
._1f{width:244.800000pt;}
._30{width:251.273610pt;}
._35{width:260.666667pt;}
._2f{width:265.743989pt;}
._27{width:267.466667pt;}
._32{width:311.712000pt;}
._1e{width:393.946652pt;}
._13{width:403.919986pt;}
._25{width:459.725321pt;}
._26{width:522.693321pt;}
._24{width:531.714655pt;}
._2d{width:546.013321pt;}
._2c{width:557.962655pt;}
._33{width:593.640000pt;}
._10{width:1087.957261pt;}
._2b{width:1266.024000pt;}
._23{width:1342.237333pt;}
._28{width:1365.802667pt;}
._2a{width:1419.648000pt;}
._c{width:1494.050661pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fsa{font-size:45.929600pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y3d{bottom:100.389600pt;}
.y70{bottom:100.813599pt;}
.y10a{bottom:101.450938pt;}
.y2d{bottom:101.521200pt;}
.ya1{bottom:101.717590pt;}
.y139{bottom:101.986938pt;}
.y182{bottom:102.110921pt;}
.yb0{bottom:102.110942pt;}
.y153{bottom:102.111064pt;}
.y251{bottom:117.325578pt;}
.y6f{bottom:117.480265pt;}
.y109{bottom:118.117605pt;}
.y2c{bottom:118.187866pt;}
.y3c{bottom:118.250936pt;}
.ya0{bottom:118.384257pt;}
.y138{bottom:118.653605pt;}
.y181{bottom:118.777588pt;}
.yaf{bottom:118.777608pt;}
.y152{bottom:118.777730pt;}
.y1d0{bottom:125.488002pt;}
.y210{bottom:130.313620pt;}
.y250{bottom:130.653578pt;}
.y3b{bottom:133.764936pt;}
.y6e{bottom:134.146932pt;}
.y108{bottom:134.784271pt;}
.y2b{bottom:134.854533pt;}
.y9f{bottom:135.050924pt;}
.y137{bottom:135.320272pt;}
.y180{bottom:135.444255pt;}
.yae{bottom:135.444275pt;}
.y151{bottom:135.444397pt;}
.y1cf{bottom:138.816002pt;}
.y20f{bottom:143.641620pt;}
.y24f{bottom:143.981578pt;}
.y107{bottom:151.450928pt;}
.y2a{bottom:151.521200pt;}
.y3a{bottom:151.626272pt;}
.y9e{bottom:151.717590pt;}
.y136{bottom:151.986938pt;}
.y17f{bottom:152.110921pt;}
.yad{bottom:152.110942pt;}
.y150{bottom:152.111064pt;}
.y1ce{bottom:152.144002pt;}
.y20e{bottom:156.969620pt;}
.y24e{bottom:157.309578pt;}
.y39{bottom:167.145595pt;}
.y6d{bottom:167.480265pt;}
.y106{bottom:168.117594pt;}
.y29{bottom:168.187866pt;}
.y9d{bottom:168.384257pt;}
.y135{bottom:168.653605pt;}
.y17e{bottom:168.777588pt;}
.yac{bottom:168.777608pt;}
.y14f{bottom:168.777730pt;}
.y20d{bottom:170.297620pt;}
.y24d{bottom:170.637578pt;}
.y38{bottom:180.473595pt;}
.y1cd{bottom:182.144002pt;}
.y20c{bottom:183.625620pt;}
.y24c{bottom:183.965578pt;}
.y105{bottom:184.784261pt;}
.y28{bottom:184.854533pt;}
.y9c{bottom:185.050924pt;}
.y134{bottom:185.320272pt;}
.y17d{bottom:185.444255pt;}
.yab{bottom:185.444275pt;}
.y14e{bottom:185.444397pt;}
.y20b{bottom:196.953620pt;}
.y24b{bottom:197.293578pt;}
.y37{bottom:198.334941pt;}
.y104{bottom:201.450928pt;}
.y27{bottom:201.521200pt;}
.y9b{bottom:201.717590pt;}
.y133{bottom:201.986938pt;}
.y17c{bottom:202.110921pt;}
.yaa{bottom:202.110942pt;}
.y14d{bottom:202.111064pt;}
.y20a{bottom:210.281620pt;}
.y24a{bottom:210.621578pt;}
.y36{bottom:213.848941pt;}
.y6c{bottom:217.480306pt;}
.y103{bottom:218.117594pt;}
.y26{bottom:218.187866pt;}
.y9a{bottom:218.384257pt;}
.y132{bottom:218.653605pt;}
.y17b{bottom:218.777588pt;}
.ya9{bottom:218.777608pt;}
.y14c{bottom:218.777730pt;}
.y209{bottom:223.609620pt;}
.y249{bottom:223.949578pt;}
.y35{bottom:231.710266pt;}
.y6b{bottom:234.146973pt;}
.y102{bottom:234.784261pt;}
.y25{bottom:234.854533pt;}
.y99{bottom:235.050924pt;}
.y131{bottom:235.320272pt;}
.y17a{bottom:235.444255pt;}
.ya8{bottom:235.444275pt;}
.y14b{bottom:235.444397pt;}
.y208{bottom:236.937620pt;}
.y248{bottom:237.277578pt;}
.y1cc{bottom:248.879854pt;}
.y207{bottom:250.265620pt;}
.y247{bottom:250.605578pt;}
.y6a{bottom:250.813639pt;}
.y101{bottom:251.450928pt;}
.y24{bottom:251.521200pt;}
.y98{bottom:251.717590pt;}
.y34{bottom:251.752136pt;}
.y130{bottom:251.986938pt;}
.y179{bottom:252.110921pt;}
.ya7{bottom:252.110942pt;}
.y15a{bottom:252.111064pt;}
.y1cb{bottom:262.207854pt;}
.y206{bottom:263.593620pt;}
.y246{bottom:263.933578pt;}
.y33{bottom:267.266259pt;}
.y69{bottom:267.480306pt;}
.y100{bottom:268.117594pt;}
.y23{bottom:268.187866pt;}
.y97{bottom:268.384257pt;}
.y12f{bottom:268.653605pt;}
.y178{bottom:268.777588pt;}
.ya6{bottom:268.777608pt;}
.y14a{bottom:268.783064pt;}
.y1ca{bottom:275.535854pt;}
.y205{bottom:276.921620pt;}
.y245{bottom:277.261578pt;}
.y68{bottom:284.146973pt;}
.yff{bottom:284.784261pt;}
.y22{bottom:284.854533pt;}
.y32{bottom:285.127604pt;}
.y12e{bottom:285.320272pt;}
.y159{bottom:285.444255pt;}
.ya5{bottom:285.444275pt;}
.y149{bottom:285.444397pt;}
.y1c9{bottom:288.863854pt;}
.y204{bottom:290.249620pt;}
.y244{bottom:290.589578pt;}
.y31{bottom:300.641604pt;}
.y67{bottom:300.813639pt;}
.yfe{bottom:301.450928pt;}
.y21{bottom:301.521200pt;}
.y96{bottom:301.717590pt;}
.y12d{bottom:301.986938pt;}
.y158{bottom:302.110921pt;}
.ya4{bottom:302.110942pt;}
.y1c8{bottom:302.191854pt;}
.y203{bottom:303.577620pt;}
.y243{bottom:303.917578pt;}
.y1c7{bottom:315.519854pt;}
.y202{bottom:316.905620pt;}
.y242{bottom:317.245578pt;}
.y66{bottom:317.480306pt;}
.yfd{bottom:318.117594pt;}
.y20{bottom:318.187866pt;}
.y30{bottom:318.502930pt;}
.y12c{bottom:318.653605pt;}
.y148{bottom:318.777588pt;}
.ya3{bottom:318.777608pt;}
.y201{bottom:330.233620pt;}
.y241{bottom:330.573578pt;}
.y65{bottom:334.146973pt;}
.yfc{bottom:334.784261pt;}
.y1f{bottom:334.854533pt;}
.y95{bottom:335.050924pt;}
.y12b{bottom:335.320272pt;}
.y147{bottom:335.444255pt;}
.ya2{bottom:335.444275pt;}
.y2f{bottom:340.725589pt;}
.y200{bottom:343.561620pt;}
.y240{bottom:343.901578pt;}
.y64{bottom:350.813639pt;}
.yfb{bottom:351.450928pt;}
.y1e{bottom:351.521200pt;}
.y12a{bottom:351.986938pt;}
.y146{bottom:352.110921pt;}
.y1c6{bottom:352.137854pt;}
.y2e{bottom:354.053589pt;}
.y1ff{bottom:356.889620pt;}
.y23f{bottom:357.229578pt;}
.y1c5{bottom:365.465854pt;}
.y63{bottom:367.480306pt;}
.yfa{bottom:368.117594pt;}
.y1d{bottom:368.187866pt;}
.y129{bottom:368.653605pt;}
.y145{bottom:368.777588pt;}
.y1fe{bottom:370.217620pt;}
.y23e{bottom:370.557578pt;}
.y1c4{bottom:378.793854pt;}
.y1fd{bottom:383.545620pt;}
.y23d{bottom:383.885578pt;}
.y94{bottom:384.146932pt;}
.y62{bottom:384.146973pt;}
.yf9{bottom:384.784261pt;}
.y1a2{bottom:385.320272pt;}
.y144{bottom:385.444255pt;}
.y1c3{bottom:392.121854pt;}
.y1fc{bottom:396.873620pt;}
.ycf{bottom:396.978703pt;}
.y23c{bottom:397.213578pt;}
.y93{bottom:400.813599pt;}
.y61{bottom:400.813639pt;}
.yf8{bottom:401.450928pt;}
.y1c{bottom:401.521200pt;}
.y128{bottom:401.986938pt;}
.y143{bottom:402.110921pt;}
.y1c2{bottom:405.449854pt;}
.y1fb{bottom:410.201620pt;}
.y23b{bottom:410.541578pt;}
.yce{bottom:410.975749pt;}
.yd3{bottom:414.113078pt;}
.y92{bottom:417.480265pt;}
.y60{bottom:417.480306pt;}
.yf7{bottom:418.117594pt;}
.y1a1{bottom:418.653605pt;}
.y142{bottom:418.777588pt;}
.y1c1{bottom:418.777854pt;}
.y1fa{bottom:423.529620pt;}
.y23a{bottom:423.869578pt;}
.yd1{bottom:423.966670pt;}
.y91{bottom:434.146932pt;}
.y5f{bottom:434.146973pt;}
.yf6{bottom:434.784261pt;}
.y127{bottom:435.320272pt;}
.y141{bottom:435.444255pt;}
.y1f9{bottom:436.857620pt;}
.y239{bottom:437.197578pt;}
.yd0{bottom:439.146403pt;}
.y1c0{bottom:445.411187pt;}
.y1f8{bottom:450.185620pt;}
.y238{bottom:450.525578pt;}
.y90{bottom:450.813599pt;}
.y5e{bottom:450.813639pt;}
.yf5{bottom:451.450928pt;}
.y1b{bottom:451.521240pt;}
.y1a0{bottom:451.986938pt;}
.y140{bottom:452.110921pt;}
.y1bf{bottom:458.739187pt;}
.yc1{bottom:459.729626pt;}
.y1f7{bottom:463.513620pt;}
.y237{bottom:463.853578pt;}
.y8f{bottom:467.480265pt;}
.y5d{bottom:467.480306pt;}
.yf4{bottom:468.117594pt;}
.y19f{bottom:468.653605pt;}
.y13f{bottom:468.777588pt;}
.yc0{bottom:473.784084pt;}
.y1f6{bottom:476.841620pt;}
.y236{bottom:477.181578pt;}
.yd2{bottom:479.430420pt;}
.y8e{bottom:484.146932pt;}
.y5c{bottom:484.146973pt;}
.yf3{bottom:484.784261pt;}
.y1a{bottom:484.854574pt;}
.y126{bottom:485.320231pt;}
.y19e{bottom:485.320272pt;}
.y1be{bottom:485.372521pt;}
.y13e{bottom:485.444255pt;}
.ybf{bottom:487.838542pt;}
.ycd{bottom:489.711176pt;}
.y1f5{bottom:490.169620pt;}
.y235{bottom:490.509578pt;}
.y1bd{bottom:498.700521pt;}
.y8d{bottom:500.813599pt;}
.y5b{bottom:500.813639pt;}
.y19{bottom:501.521240pt;}
.y125{bottom:501.986898pt;}
.y19d{bottom:501.986938pt;}
.y13d{bottom:502.110921pt;}
.y157{bottom:502.111064pt;}
.y1f4{bottom:503.497620pt;}
.ycc{bottom:503.708222pt;}
.y234{bottom:503.837578pt;}
.y1f3{bottom:516.825620pt;}
.y233{bottom:517.165578pt;}
.y8c{bottom:517.480265pt;}
.y5a{bottom:517.480306pt;}
.ycb{bottom:517.705267pt;}
.yf2{bottom:518.117594pt;}
.y18{bottom:518.187907pt;}
.y124{bottom:518.653564pt;}
.y19c{bottom:518.653605pt;}
.y13c{bottom:518.777588pt;}
.y156{bottom:518.777730pt;}
.y1bc{bottom:528.700521pt;}
.y1f2{bottom:530.153620pt;}
.y232{bottom:530.493578pt;}
.yca{bottom:531.759725pt;}
.y8b{bottom:534.146932pt;}
.y59{bottom:534.146973pt;}
.ybe{bottom:534.516368pt;}
.y17{bottom:534.854574pt;}
.y123{bottom:535.320231pt;}
.y19b{bottom:535.320272pt;}
.y13b{bottom:535.444255pt;}
.y155{bottom:535.444397pt;}
.y1f1{bottom:543.481620pt;}
.y231{bottom:543.821578pt;}
.ybd{bottom:548.570825pt;}
.y8a{bottom:550.813599pt;}
.y58{bottom:550.813639pt;}
.y16{bottom:551.521240pt;}
.y122{bottom:551.986898pt;}
.y19a{bottom:551.986938pt;}
.y13a{bottom:552.110921pt;}
.y154{bottom:552.111064pt;}
.y1f0{bottom:556.809620pt;}
.y230{bottom:557.149578pt;}
.yf1{bottom:560.052246pt;}
.y1bb{bottom:562.090389pt;}
.ybc{bottom:562.567871pt;}
.y89{bottom:567.480265pt;}
.y57{bottom:567.480306pt;}
.y15{bottom:568.187907pt;}
.y121{bottom:568.653564pt;}
.y199{bottom:568.653605pt;}
.y177{bottom:568.777588pt;}
.y1ef{bottom:570.137620pt;}
.y22f{bottom:570.477578pt;}
.y1ba{bottom:575.418389pt;}
.yf0{bottom:576.718913pt;}
.y1ee{bottom:583.465620pt;}
.y22e{bottom:583.805578pt;}
.yc9{bottom:583.899740pt;}
.y88{bottom:584.146932pt;}
.y56{bottom:584.146973pt;}
.y14{bottom:584.854574pt;}
.y120{bottom:585.320231pt;}
.y198{bottom:585.320272pt;}
.y176{bottom:585.444255pt;}
.y1b9{bottom:588.746389pt;}
.yef{bottom:593.385579pt;}
.y15e{bottom:596.417603pt;}
.y1ed{bottom:596.793620pt;}
.y22d{bottom:597.133578pt;}
.y87{bottom:600.813599pt;}
.y55{bottom:600.813639pt;}
.y13{bottom:601.521240pt;}
.y11f{bottom:601.986898pt;}
.y197{bottom:601.986938pt;}
.y1b8{bottom:602.074389pt;}
.y175{bottom:602.110921pt;}
.yee{bottom:610.052246pt;}
.y1ec{bottom:610.121620pt;}
.y22c{bottom:610.461578pt;}
.ybb{bottom:612.763942pt;}
.y1b7{bottom:615.402389pt;}
.y86{bottom:617.480265pt;}
.y54{bottom:617.480306pt;}
.y173{bottom:617.603563pt;}
.y12{bottom:618.187907pt;}
.y11e{bottom:618.653564pt;}
.y174{bottom:618.777588pt;}
.y1eb{bottom:623.449620pt;}
.y22b{bottom:623.789578pt;}
.yed{bottom:626.718913pt;}
.yba{bottom:626.818400pt;}
.y85{bottom:634.146932pt;}
.y53{bottom:634.146973pt;}
.y172{bottom:634.308896pt;}
.y11{bottom:634.854574pt;}
.y11d{bottom:635.320231pt;}
.y196{bottom:635.320272pt;}
.y1ea{bottom:636.777620pt;}
.y22a{bottom:637.117578pt;}
.yc6{bottom:642.760005pt;}
.yec{bottom:643.385579pt;}
.y1b6{bottom:645.367722pt;}
.y1e9{bottom:650.105620pt;}
.y229{bottom:650.445578pt;}
.y84{bottom:650.813599pt;}
.y52{bottom:650.813639pt;}
.y171{bottom:650.946230pt;}
.y10{bottom:651.521240pt;}
.y11c{bottom:651.986898pt;}
.yc5{bottom:657.939738pt;}
.y1b5{bottom:658.695722pt;}
.yeb{bottom:660.052246pt;}
.y1e8{bottom:663.433620pt;}
.y228{bottom:663.773578pt;}
.y83{bottom:667.480265pt;}
.y51{bottom:667.480306pt;}
.y170{bottom:667.583563pt;}
.yf{bottom:668.187907pt;}
.y11b{bottom:668.653564pt;}
.y188{bottom:671.745728pt;}
.y1b4{bottom:672.023722pt;}
.yb9{bottom:676.564824pt;}
.yea{bottom:676.718913pt;}
.y1e7{bottom:676.761620pt;}
.y227{bottom:677.101578pt;}
.y82{bottom:684.146932pt;}
.y50{bottom:684.146973pt;}
.y16f{bottom:684.220896pt;}
.y187{bottom:684.354973pt;}
.ye{bottom:684.854574pt;}
.y11a{bottom:685.320231pt;}
.y1e6{bottom:690.089620pt;}
.y226{bottom:690.429578pt;}
.yb8{bottom:690.688176pt;}
.ye9{bottom:693.385579pt;}
.y186{bottom:697.682973pt;}
.y81{bottom:700.813599pt;}
.y4f{bottom:700.813639pt;}
.y16e{bottom:700.858230pt;}
.yd{bottom:701.521240pt;}
.y119{bottom:701.986898pt;}
.y1b3{bottom:701.986938pt;}
.y1e5{bottom:703.417620pt;}
.y225{bottom:703.757578pt;}
.yb7{bottom:704.685221pt;}
.ye8{bottom:710.052246pt;}
.y185{bottom:714.796306pt;}
.y1e4{bottom:716.745620pt;}
.y224{bottom:717.085578pt;}
.y80{bottom:717.480265pt;}
.y4e{bottom:717.480306pt;}
.y16d{bottom:717.495563pt;}
.yc{bottom:718.187907pt;}
.y118{bottom:718.653564pt;}
.y1b2{bottom:718.653605pt;}
.yc8{bottom:719.242580pt;}
.ye7{bottom:726.718913pt;}
.y1e3{bottom:730.073620pt;}
.y223{bottom:730.413578pt;}
.y184{bottom:731.909639pt;}
.yc7{bottom:733.297038pt;}
.y16c{bottom:734.132896pt;}
.y7f{bottom:734.146932pt;}
.y4d{bottom:734.146973pt;}
.y117{bottom:735.320231pt;}
.y1b1{bottom:735.320272pt;}
.ye6{bottom:743.385579pt;}
.y1e2{bottom:743.401620pt;}
.y222{bottom:743.741578pt;}
.y183{bottom:745.237639pt;}
.y16b{bottom:750.770230pt;}
.y7e{bottom:750.813599pt;}
.y4c{bottom:750.813639pt;}
.yb6{bottom:751.180147pt;}
.y116{bottom:751.986898pt;}
.y1b0{bottom:751.986938pt;}
.y1e1{bottom:756.729620pt;}
.y221{bottom:757.069578pt;}
.yb{bottom:757.461469pt;}
.ye5{bottom:760.052246pt;}
.yb5{bottom:765.292017pt;}
.y16a{bottom:767.407563pt;}
.y7d{bottom:767.480265pt;}
.y4b{bottom:767.480306pt;}
.y115{bottom:768.653564pt;}
.y1af{bottom:768.653605pt;}
.y1e0{bottom:770.057620pt;}
.y220{bottom:770.397578pt;}
.y193{bottom:770.636913pt;}
.ya{bottom:770.789469pt;}
.ye4{bottom:776.718913pt;}
.yb4{bottom:779.289062pt;}
.y1df{bottom:783.385620pt;}
.y21f{bottom:783.725578pt;}
.y169{bottom:784.044896pt;}
.y7c{bottom:784.146932pt;}
.y4a{bottom:784.146973pt;}
.y114{bottom:785.320231pt;}
.y1ae{bottom:785.320272pt;}
.y192{bottom:787.342246pt;}
.ye3{bottom:793.385579pt;}
.y1de{bottom:796.713620pt;}
.y21e{bottom:797.053578pt;}
.yc2{bottom:799.117187pt;}
.y168{bottom:800.682230pt;}
.y7b{bottom:800.813599pt;}
.y49{bottom:800.813639pt;}
.y113{bottom:801.986898pt;}
.y1ad{bottom:801.986938pt;}
.y191{bottom:803.979579pt;}
.y9{bottom:808.656169pt;}
.y1dd{bottom:810.041620pt;}
.ye2{bottom:810.052246pt;}
.y21d{bottom:810.381578pt;}
.y167{bottom:817.319563pt;}
.y7a{bottom:817.480265pt;}
.y48{bottom:817.480306pt;}
.y112{bottom:818.653564pt;}
.y1ac{bottom:818.653605pt;}
.y190{bottom:820.616913pt;}
.yda{bottom:821.709427pt;}
.y1dc{bottom:823.369620pt;}
.y21c{bottom:823.709578pt;}
.ye1{bottom:826.718913pt;}
.y166{bottom:833.956896pt;}
.y79{bottom:834.146932pt;}
.y47{bottom:834.146973pt;}
.y111{bottom:835.320231pt;}
.y1ab{bottom:835.320272pt;}
.y1db{bottom:836.697620pt;}
.yd9{bottom:836.889160pt;}
.y21b{bottom:837.037578pt;}
.y18f{bottom:837.254246pt;}
.ye0{bottom:843.385579pt;}
.y8{bottom:848.377441pt;}
.y1da{bottom:850.025620pt;}
.y21a{bottom:850.365578pt;}
.y165{bottom:850.594230pt;}
.y78{bottom:850.813599pt;}
.y46{bottom:850.813639pt;}
.yc4{bottom:851.383531pt;}
.y110{bottom:851.986898pt;}
.y1aa{bottom:851.986938pt;}
.y18e{bottom:853.891579pt;}
.ydf{bottom:860.052246pt;}
.y1d9{bottom:863.353620pt;}
.y219{bottom:863.693578pt;}
.yc3{bottom:865.437988pt;}
.y164{bottom:867.231563pt;}
.y77{bottom:867.480265pt;}
.y45{bottom:867.480306pt;}
.y10f{bottom:868.653564pt;}
.y1a9{bottom:868.653605pt;}
.y18d{bottom:870.528913pt;}
.y7{bottom:872.377441pt;}
.y258{bottom:875.990287pt;}
.y1d8{bottom:876.681620pt;}
.yde{bottom:876.718913pt;}
.y218{bottom:877.021578pt;}
.y163{bottom:883.860376pt;}
.y76{bottom:884.146932pt;}
.y44{bottom:884.146973pt;}
.y10e{bottom:885.320231pt;}
.y1a8{bottom:885.320272pt;}
.yd5{bottom:885.772745pt;}
.y18c{bottom:887.166246pt;}
.y257{bottom:889.318287pt;}
.y1d7{bottom:890.009620pt;}
.y217{bottom:890.349578pt;}
.y6{bottom:896.377441pt;}
.y162{bottom:900.497710pt;}
.y75{bottom:900.813599pt;}
.y43{bottom:900.813639pt;}
.yd4{bottom:900.826172pt;}
.y195{bottom:901.986898pt;}
.y1a7{bottom:901.986938pt;}
.y1d6{bottom:903.337620pt;}
.y216{bottom:903.677578pt;}
.y18b{bottom:903.803579pt;}
.yd8{bottom:909.551381pt;}
.ydd{bottom:910.052246pt;}
.y15d{bottom:915.668306pt;}
.y1d5{bottom:916.665620pt;}
.y256{bottom:916.733620pt;}
.y215{bottom:917.005578pt;}
.y18a{bottom:917.131579pt;}
.y161{bottom:917.135043pt;}
.y74{bottom:917.480265pt;}
.y42{bottom:917.480306pt;}
.y10d{bottom:918.653564pt;}
.y1a6{bottom:918.653605pt;}
.yd7{bottom:924.673701pt;}
.y15c{bottom:928.996306pt;}
.y1d4{bottom:929.993620pt;}
.y255{bottom:930.061620pt;}
.y214{bottom:930.333578pt;}
.y73{bottom:934.146932pt;}
.y41{bottom:934.146973pt;}
.y194{bottom:935.320231pt;}
.y1a5{bottom:935.320272pt;}
.yd6{bottom:939.853434pt;}
.y189{bottom:942.098913pt;}
.y160{bottom:942.102376pt;}
.y15b{bottom:942.324306pt;}
.y1d3{bottom:943.321620pt;}
.y254{bottom:943.389620pt;}
.y213{bottom:943.661578pt;}
.yb3{bottom:944.751908pt;}
.y72{bottom:950.813599pt;}
.y40{bottom:950.813639pt;}
.y10c{bottom:951.984271pt;}
.ydc{bottom:951.986898pt;}
.y1a4{bottom:951.986938pt;}
.yb2{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y1d2{bottom:956.649620pt;}
.y253{bottom:956.717620pt;}
.y212{bottom:956.989578pt;}
.y15f{bottom:963.802246pt;}
.y71{bottom:967.480265pt;}
.y3f{bottom:967.480306pt;}
.y10b{bottom:968.650938pt;}
.ydb{bottom:968.653564pt;}
.y1a3{bottom:968.653605pt;}
.yb1{bottom:968.980306pt;}
.y1d1{bottom:969.977620pt;}
.y252{bottom:970.045620pt;}
.y211{bottom:970.317578pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3e{bottom:1002.206543pt;}
.hf{height:22.625866pt;}
.h18{height:28.242699pt;}
.h13{height:31.829213pt;}
.he{height:32.322667pt;}
.hd{height:32.760417pt;}
.h2{height:37.376000pt;}
.ha{height:38.026667pt;}
.h8{height:38.453333pt;}
.h4{height:39.712000pt;}
.h17{height:40.794061pt;}
.h11{height:43.656000pt;}
.hc{height:46.144000pt;}
.h16{height:46.376000pt;}
.h15{height:47.952000pt;}
.h14{height:47.952041pt;}
.h3{height:48.766452pt;}
.h12{height:48.946551pt;}
.h5{height:49.248000pt;}
.h9{height:51.360000pt;}
.hb{height:54.560000pt;}
.h10{height:57.493333pt;}
.h7{height:57.621333pt;}
.h6{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.151469pt;}
.x7{left:86.929867pt;}
.x2b{left:90.708669pt;}
.x26{left:238.110128pt;}
.x28{left:242.087989pt;}
.x2a{left:246.122796pt;}
.x29{left:247.414680pt;}
.x15{left:256.851013pt;}
.x13{left:264.012797pt;}
.x14{left:274.993205pt;}
.x21{left:311.572530pt;}
.x20{left:312.514140pt;}
.x5{left:408.189087pt;}
.xe{left:410.459351pt;}
.x12{left:411.525234pt;}
.x22{left:414.286011pt;}
.x1d{left:415.221726pt;}
.xf{left:417.235474pt;}
.x10{left:421.128006pt;}
.xb{left:422.380819pt;}
.x6{left:423.309087pt;}
.xc{left:428.787997pt;}
.xd{left:429.855862pt;}
.x11{left:431.358824pt;}
.xa{left:446.290364pt;}
.x27{left:484.647217pt;}
.x24{left:598.315651pt;}
.x18{left:602.710002pt;}
.x17{left:603.961684pt;}
.x1b{left:608.043317pt;}
.x1e{left:612.247314pt;}
.x1f{left:614.073018pt;}
.x23{left:618.019450pt;}
.x16{left:626.490153pt;}
.x1a{left:627.620809pt;}
.x25{left:636.402772pt;}
.x1c{left:640.733710pt;}
.x19{left:643.679207pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
}




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