
    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_b8b27e33c3c3afceb49087a0.woff')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_0ecf435428e2ab192cd7375b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.825000;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_8e43cef28a7e27d5da0aeaf0.woff')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_9edbb92c13d612e5a8f6fb4f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_dd7a90bea8bc0c2d81a09b96.woff')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_21f12b98c1c3da876ac4ebbc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_4fdeeb17017b56e22746d90b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.142000;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_dd5ec17031305adee62488c2.woff')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_51d93986aeca64056b4adb29.woff')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_fc578b77e0dce0b4c40d7795.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_23b9f4ffcf9602cbfe155bd2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.710000;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_c9616e87245a6616c9208422.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9297f284eef749e8d2fb7c4f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.237000;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_c782cd4a232d7f8e8332c3a7.woff')format("woff");}.ffe{font-family:ffe;line-height:1.144000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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.400055px;}
.v3{vertical-align:-15.000183px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v4{vertical-align:59.976013px;}
.ls5f{letter-spacing:-1.320000px;}
.ls4c{letter-spacing:-1.020000px;}
.ls41{letter-spacing:-0.765000px;}
.ls59{letter-spacing:-0.720000px;}
.ls9a{letter-spacing:-0.714000px;}
.ls4b{letter-spacing:-0.660000px;}
.ls51{letter-spacing:-0.600000px;}
.ls89{letter-spacing:-0.561000px;}
.ls50{letter-spacing:-0.540000px;}
.ls9e{letter-spacing:-0.510000px;}
.ls39{letter-spacing:-0.420000px;}
.ls8b{letter-spacing:-0.408000px;}
.ls3b{letter-spacing:-0.360000px;}
.ls77{letter-spacing:-0.357000px;}
.ls79{letter-spacing:-0.306000px;}
.ls3a{letter-spacing:-0.300000px;}
.ls7a{letter-spacing:-0.255000px;}
.ls38{letter-spacing:-0.240000px;}
.ls76{letter-spacing:-0.204000px;}
.ls37{letter-spacing:-0.180000px;}
.ls78{letter-spacing:-0.153000px;}
.ls36{letter-spacing:-0.120000px;}
.ls8a{letter-spacing:-0.102000px;}
.ls1c{letter-spacing:-0.060562px;}
.ls1d{letter-spacing:-0.060000px;}
.ls88{letter-spacing:-0.051000px;}
.ls19{letter-spacing:-0.043238px;}
.ls1a{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000022px;}
.ls40{letter-spacing:0.000032px;}
.ls54{letter-spacing:0.000205px;}
.ls34{letter-spacing:0.030000px;}
.ls1b{letter-spacing:0.042324px;}
.ls66{letter-spacing:0.051000px;}
.ls5b{letter-spacing:0.059967px;}
.lsb{letter-spacing:0.060000px;}
.ls64{letter-spacing:0.102000px;}
.ls10{letter-spacing:0.120000px;}
.ls9b{letter-spacing:0.127500px;}
.ls71{letter-spacing:0.153000px;}
.ls17{letter-spacing:0.178791px;}
.ls3f{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.180004px;}
.ls56{letter-spacing:0.180176px;}
.ls35{letter-spacing:0.183105px;}
.ls61{letter-spacing:0.204000px;}
.ls42{letter-spacing:0.209930px;}
.ls3c{letter-spacing:0.210000px;}
.ls6b{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.ls62{letter-spacing:0.254975px;}
.ls18{letter-spacing:0.255000px;}
.ls65{letter-spacing:0.264000px;}
.ls49{letter-spacing:0.270000px;}
.ls97{letter-spacing:0.280500px;}
.ls4f{letter-spacing:0.281977px;}
.ls68{letter-spacing:0.288000px;}
.ls4e{letter-spacing:0.297627px;}
.ls33{letter-spacing:0.299927px;}
.ls2{letter-spacing:0.300000px;}
.ls5c{letter-spacing:0.300021px;}
.ls3d{letter-spacing:0.300029px;}
.ls5d{letter-spacing:0.300110px;}
.ls7b{letter-spacing:0.306000px;}
.ls44{letter-spacing:0.330000px;}
.ls6e{letter-spacing:0.331500px;}
.ls67{letter-spacing:0.357000px;}
.ls11{letter-spacing:0.360000px;}
.ls7f{letter-spacing:0.408000px;}
.ls5{letter-spacing:0.420000px;}
.ls8f{letter-spacing:0.433500px;}
.ls46{letter-spacing:0.450000px;}
.ls63{letter-spacing:0.459000px;}
.ls2b{letter-spacing:0.480000px;}
.ls8d{letter-spacing:0.484500px;}
.ls9{letter-spacing:0.510000px;}
.ls72{letter-spacing:0.535500px;}
.ls3e{letter-spacing:0.539978px;}
.lsf{letter-spacing:0.540000px;}
.ls82{letter-spacing:0.561000px;}
.ls45{letter-spacing:0.570007px;}
.ls43{letter-spacing:0.573624px;}
.ls83{letter-spacing:0.586500px;}
.lsa{letter-spacing:0.600000px;}
.ls85{letter-spacing:0.612000px;}
.ls5a{letter-spacing:0.630000px;}
.ls4{letter-spacing:0.660000px;}
.ls2d{letter-spacing:0.660095px;}
.ls81{letter-spacing:0.663000px;}
.ls9d{letter-spacing:0.688500px;}
.ls2c{letter-spacing:0.690000px;}
.ls70{letter-spacing:0.714000px;}
.lse{letter-spacing:0.720000px;}
.ls7e{letter-spacing:0.739500px;}
.ls75{letter-spacing:0.765000px;}
.ls3{letter-spacing:0.780000px;}
.ls98{letter-spacing:0.790500px;}
.ls2f{letter-spacing:0.810000px;}
.ls7c{letter-spacing:0.816000px;}
.ls90{letter-spacing:0.816042px;}
.lsc{letter-spacing:0.840000px;}
.ls6c{letter-spacing:0.867000px;}
.ls84{letter-spacing:0.892500px;}
.ls32{letter-spacing:0.899963px;}
.ls30{letter-spacing:0.900000px;}
.ls6f{letter-spacing:0.918000px;}
.ls13{letter-spacing:0.960000px;}
.ls58{letter-spacing:0.960125px;}
.ls73{letter-spacing:0.969000px;}
.ls4a{letter-spacing:0.990000px;}
.ls1f{letter-spacing:1.020000px;}
.ls8c{letter-spacing:1.071000px;}
.ls7{letter-spacing:1.080000px;}
.ls57{letter-spacing:1.080139px;}
.ls55{letter-spacing:1.110000px;}
.ls87{letter-spacing:1.122000px;}
.ls6{letter-spacing:1.140000px;}
.ls99{letter-spacing:1.147500px;}
.ls52{letter-spacing:1.170000px;}
.ls69{letter-spacing:1.173000px;}
.ls1e{letter-spacing:1.200000px;}
.ls7d{letter-spacing:1.224000px;}
.ls26{letter-spacing:1.260000px;}
.ls74{letter-spacing:1.275000px;}
.ls12{letter-spacing:1.320000px;}
.ls9c{letter-spacing:1.326000px;}
.ls4d{letter-spacing:1.350000px;}
.ls6a{letter-spacing:1.377000px;}
.ls16{letter-spacing:1.380000px;}
.ls92{letter-spacing:1.402500px;}
.ls8e{letter-spacing:1.428000px;}
.lsd{letter-spacing:1.440000px;}
.ls91{letter-spacing:1.479000px;}
.ls14{letter-spacing:1.500000px;}
.ls5e{letter-spacing:1.560000px;}
.ls80{letter-spacing:1.581000px;}
.ls29{letter-spacing:1.620000px;}
.ls95{letter-spacing:1.632000px;}
.ls2e{letter-spacing:1.650000px;}
.ls22{letter-spacing:1.680000px;}
.ls8{letter-spacing:1.740000px;}
.ls60{letter-spacing:1.800000px;}
.ls25{letter-spacing:1.860000px;}
.ls27{letter-spacing:1.920000px;}
.ls94{letter-spacing:1.938000px;}
.ls28{letter-spacing:1.950000px;}
.ls24{letter-spacing:1.980000px;}
.ls93{letter-spacing:2.040000px;}
.ls86{letter-spacing:2.091000px;}
.ls21{letter-spacing:2.100000px;}
.ls96{letter-spacing:2.218500px;}
.ls23{letter-spacing:2.220000px;}
.ls6d{letter-spacing:2.295000px;}
.ls48{letter-spacing:2.310059px;}
.ls47{letter-spacing:2.358032px;}
.ls15{letter-spacing:2.400000px;}
.ls20{letter-spacing:2.520000px;}
.ls2a{letter-spacing:2.580000px;}
.ls0{letter-spacing:3.990000px;}
.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;}
}
.ws30{word-spacing:-17.520000px;}
.wsd{word-spacing:-17.400000px;}
.ws32{word-spacing:-17.220000px;}
.ws31{word-spacing:-17.100000px;}
.ws96{word-spacing:-16.920000px;}
.ws34{word-spacing:-16.860000px;}
.wsb0{word-spacing:-16.620000px;}
.wsaf{word-spacing:-16.560000px;}
.wsb1{word-spacing:-16.500000px;}
.wsa9{word-spacing:-16.440000px;}
.ws98{word-spacing:-16.320000px;}
.ws35{word-spacing:-16.260000px;}
.wsb{word-spacing:-16.200000px;}
.ws99{word-spacing:-16.170000px;}
.wsa{word-spacing:-16.140000px;}
.ws9a{word-spacing:-16.080000px;}
.ws33{word-spacing:-16.020000px;}
.ws76{word-spacing:-15.960000px;}
.ws36{word-spacing:-15.900000px;}
.ws97{word-spacing:-15.840000px;}
.ws37{word-spacing:-15.780000px;}
.ws5f{word-spacing:-15.720000px;}
.ws9{word-spacing:-15.600000px;}
.ws8{word-spacing:-15.540000px;}
.ws7{word-spacing:-15.510000px;}
.ws7a{word-spacing:-15.480000px;}
.ws74{word-spacing:-15.420000px;}
.ws78{word-spacing:-15.360000px;}
.wsc{word-spacing:-15.300000px;}
.ws77{word-spacing:-15.240000px;}
.ws61{word-spacing:-15.180000px;}
.ws38{word-spacing:-15.120000px;}
.ws60{word-spacing:-15.060000px;}
.ws79{word-spacing:-15.000000px;}
.ws7b{word-spacing:-14.940000px;}
.ws8d{word-spacing:-14.880000px;}
.wsb6{word-spacing:-14.832000px;}
.ws75{word-spacing:-14.820000px;}
.ws8c{word-spacing:-14.760000px;}
.ws72{word-spacing:-14.700000px;}
.ws8b{word-spacing:-14.640000px;}
.ws6{word-spacing:-14.544000px;}
.ws10d{word-spacing:-14.076000px;}
.wsf8{word-spacing:-13.719000px;}
.wsfd{word-spacing:-13.464000px;}
.wsdd{word-spacing:-13.362000px;}
.wsf{word-spacing:-13.005000px;}
.wsb5{word-spacing:-12.852000px;}
.ws6c{word-spacing:-12.750000px;}
.ws10e{word-spacing:-12.648000px;}
.ws10c{word-spacing:-12.597000px;}
.ws105{word-spacing:-12.444000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws7c{word-spacing:-12.300000px;}
.wsf9{word-spacing:-12.036000px;}
.ws5{word-spacing:-11.520000px;}
.ws73{word-spacing:-11.220000px;}
.ws1{word-spacing:-9.996000px;}
.ws10{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.wsa7{word-spacing:-5.472000px;}
.ws3b{word-spacing:-2.520000px;}
.ws46{word-spacing:-1.860000px;}
.wsb4{word-spacing:-1.620000px;}
.ws16{word-spacing:-1.500000px;}
.ws3f{word-spacing:-1.440000px;}
.ws20{word-spacing:-1.380000px;}
.wseb{word-spacing:-1.326000px;}
.ws55{word-spacing:-1.320000px;}
.wsbb{word-spacing:-1.275000px;}
.ws44{word-spacing:-1.260000px;}
.wsd2{word-spacing:-1.224000px;}
.ws26{word-spacing:-1.200000px;}
.wse0{word-spacing:-1.173000px;}
.ws22{word-spacing:-1.140000px;}
.wsd0{word-spacing:-1.122000px;}
.ws24{word-spacing:-1.080000px;}
.wsc0{word-spacing:-1.071000px;}
.ws1a{word-spacing:-1.020000px;}
.wsbe{word-spacing:-0.969000px;}
.ws4f{word-spacing:-0.960000px;}
.wsc4{word-spacing:-0.918000px;}
.ws29{word-spacing:-0.900000px;}
.ws9e{word-spacing:-0.840000px;}
.wse9{word-spacing:-0.816000px;}
.ws5c{word-spacing:-0.780000px;}
.wsc1{word-spacing:-0.765000px;}
.ws1c{word-spacing:-0.720000px;}
.wsc2{word-spacing:-0.714000px;}
.wsf1{word-spacing:-0.663000px;}
.ws2f{word-spacing:-0.612000px;}
.ws15{word-spacing:-0.602432px;}
.ws21{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.570000px;}
.wse6{word-spacing:-0.561000px;}
.ws1b{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.510000px;}
.ws8a{word-spacing:-0.480000px;}
.ws119{word-spacing:-0.459000px;}
.ws7e{word-spacing:-0.420000px;}
.ws28{word-spacing:-0.360000px;}
.ws102{word-spacing:-0.357000px;}
.ws2b{word-spacing:-0.300000px;}
.wsbd{word-spacing:-0.264000px;}
.wsd4{word-spacing:-0.255000px;}
.ws82{word-spacing:-0.240000px;}
.wsbc{word-spacing:-0.204000px;}
.ws5d{word-spacing:-0.180000px;}
.ws11{word-spacing:-0.160761px;}
.ws106{word-spacing:-0.153000px;}
.ws14{word-spacing:-0.131755px;}
.ws92{word-spacing:-0.120000px;}
.wscb{word-spacing:-0.102000px;}
.ws48{word-spacing:-0.060000px;}
.wse{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws13{word-spacing:0.000000px;}
.ws27{word-spacing:0.060000px;}
.ws56{word-spacing:0.120000px;}
.wsf7{word-spacing:0.153000px;}
.ws4b{word-spacing:0.180000px;}
.ws68{word-spacing:0.240000px;}
.ws118{word-spacing:0.255000px;}
.wsa2{word-spacing:0.300000px;}
.wsc5{word-spacing:0.357000px;}
.ws8f{word-spacing:0.360000px;}
.wsc3{word-spacing:0.408000px;}
.ws67{word-spacing:0.420000px;}
.wse4{word-spacing:0.459000px;}
.ws3e{word-spacing:0.480000px;}
.wse7{word-spacing:0.510000px;}
.ws6a{word-spacing:0.540000px;}
.wsfc{word-spacing:0.561000px;}
.ws88{word-spacing:0.600000px;}
.ws18{word-spacing:0.660000px;}
.ws84{word-spacing:0.720000px;}
.ws71{word-spacing:0.765000px;}
.ws62{word-spacing:0.780000px;}
.wsdc{word-spacing:0.816000px;}
.wsab{word-spacing:0.840000px;}
.ws70{word-spacing:0.867000px;}
.ws4e{word-spacing:0.900000px;}
.wsb9{word-spacing:0.918000px;}
.ws95{word-spacing:0.960000px;}
.wsd3{word-spacing:0.969000px;}
.ws85{word-spacing:1.020000px;}
.wsd5{word-spacing:1.071000px;}
.ws1f{word-spacing:1.080000px;}
.ws103{word-spacing:1.122000px;}
.ws40{word-spacing:1.140000px;}
.wsbf{word-spacing:1.173000px;}
.ws5a{word-spacing:1.200000px;}
.ws107{word-spacing:1.224000px;}
.wsa6{word-spacing:1.260000px;}
.wsba{word-spacing:1.275000px;}
.ws9b{word-spacing:1.320000px;}
.wsf5{word-spacing:1.326000px;}
.wse5{word-spacing:1.377000px;}
.wsad{word-spacing:1.380000px;}
.wsf0{word-spacing:1.428000px;}
.wsb2{word-spacing:1.440000px;}
.wsdb{word-spacing:1.479000px;}
.ws19{word-spacing:1.500000px;}
.wscd{word-spacing:1.530000px;}
.ws4a{word-spacing:1.560000px;}
.ws17{word-spacing:1.620000px;}
.ws104{word-spacing:1.632000px;}
.ws54{word-spacing:1.680000px;}
.wscf{word-spacing:1.683000px;}
.wse8{word-spacing:1.734000px;}
.ws80{word-spacing:1.740000px;}
.wse1{word-spacing:1.785000px;}
.ws2c{word-spacing:1.800000px;}
.wsf3{word-spacing:1.836000px;}
.ws1d{word-spacing:1.860000px;}
.ws10b{word-spacing:1.887000px;}
.ws90{word-spacing:1.920000px;}
.wsaa{word-spacing:1.980000px;}
.wsed{word-spacing:1.989000px;}
.ws64{word-spacing:2.040000px;}
.ws10f{word-spacing:2.091000px;}
.ws25{word-spacing:2.100000px;}
.ws111{word-spacing:2.142000px;}
.ws89{word-spacing:2.160000px;}
.ws52{word-spacing:2.220000px;}
.ws115{word-spacing:2.244000px;}
.ws53{word-spacing:2.280000px;}
.wsde{word-spacing:2.295000px;}
.ws69{word-spacing:2.340000px;}
.wsff{word-spacing:2.346000px;}
.wsd7{word-spacing:2.397000px;}
.wsac{word-spacing:2.400000px;}
.wsc9{word-spacing:2.448000px;}
.ws63{word-spacing:2.460000px;}
.wsf6{word-spacing:2.499000px;}
.ws91{word-spacing:2.520000px;}
.wsea{word-spacing:2.550000px;}
.ws43{word-spacing:2.580000px;}
.ws109{word-spacing:2.600995px;}
.ws45{word-spacing:2.640000px;}
.wscc{word-spacing:2.652000px;}
.ws7d{word-spacing:2.700000px;}
.ws116{word-spacing:2.703000px;}
.wsd1{word-spacing:2.754000px;}
.ws86{word-spacing:2.760000px;}
.wsd9{word-spacing:2.805000px;}
.ws47{word-spacing:2.820000px;}
.ws2a{word-spacing:2.880000px;}
.wsec{word-spacing:2.907000px;}
.ws42{word-spacing:2.940000px;}
.ws49{word-spacing:3.000000px;}
.wsd6{word-spacing:3.009000px;}
.ws41{word-spacing:3.059994px;}
.wsce{word-spacing:3.060000px;}
.wse2{word-spacing:3.111000px;}
.ws7f{word-spacing:3.120000px;}
.ws112{word-spacing:3.162000px;}
.wsa3{word-spacing:3.180000px;}
.wsf4{word-spacing:3.213000px;}
.ws59{word-spacing:3.240000px;}
.wsee{word-spacing:3.264000px;}
.ws9d{word-spacing:3.300000px;}
.ws108{word-spacing:3.315000px;}
.ws81{word-spacing:3.360000px;}
.ws117{word-spacing:3.417000px;}
.wsa4{word-spacing:3.420000px;}
.ws66{word-spacing:3.480000px;}
.ws23{word-spacing:3.540000px;}
.wsa1{word-spacing:3.600000px;}
.ws3c{word-spacing:3.660000px;}
.ws110{word-spacing:3.672000px;}
.ws9f{word-spacing:3.720000px;}
.wsf2{word-spacing:3.723000px;}
.ws83{word-spacing:3.780000px;}
.wsc8{word-spacing:3.825000px;}
.wsa5{word-spacing:3.840000px;}
.ws114{word-spacing:3.876000px;}
.wsa8{word-spacing:3.900000px;}
.wsb3{word-spacing:4.020000px;}
.wsc6{word-spacing:4.029000px;}
.ws5e{word-spacing:4.080000px;}
.ws100{word-spacing:4.131000px;}
.ws3d{word-spacing:4.200000px;}
.wsdf{word-spacing:4.233000px;}
.wsa0{word-spacing:4.259994px;}
.ws87{word-spacing:4.380000px;}
.wsd8{word-spacing:4.437000px;}
.ws4d{word-spacing:4.440000px;}
.wsda{word-spacing:4.488000px;}
.ws8e{word-spacing:4.500000px;}
.wsfb{word-spacing:4.539000px;}
.ws50{word-spacing:4.560000px;}
.ws65{word-spacing:4.620000px;}
.ws5b{word-spacing:4.680000px;}
.ws113{word-spacing:4.692000px;}
.wsfe{word-spacing:4.743000px;}
.ws11a{word-spacing:4.794000px;}
.ws1e{word-spacing:4.860000px;}
.wsae{word-spacing:4.920000px;}
.wsc7{word-spacing:4.947000px;}
.ws94{word-spacing:5.100000px;}
.ws57{word-spacing:5.280000px;}
.wsfa{word-spacing:5.304000px;}
.ws2d{word-spacing:5.340000px;}
.wsb7{word-spacing:5.400000px;}
.ws10a{word-spacing:5.508000px;}
.ws101{word-spacing:5.610000px;}
.ws3a{word-spacing:5.700000px;}
.ws93{word-spacing:5.880000px;}
.wse3{word-spacing:5.967000px;}
.ws51{word-spacing:6.000000px;}
.ws4c{word-spacing:6.120000px;}
.ws58{word-spacing:6.240000px;}
.wsb8{word-spacing:6.660000px;}
.ws9c{word-spacing:7.320000px;}
.wsef{word-spacing:8.670000px;}
.wsca{word-spacing:9.486000px;}
.ws11b{word-spacing:13.515000px;}
.ws6b{word-spacing:15.708000px;}
.ws11c{word-spacing:17.595000px;}
.ws2e{word-spacing:72.267000px;}
.ws6f{word-spacing:546.363001px;}
.ws6d{word-spacing:598.944047px;}
.ws6e{word-spacing:627.300001px;}
._e{margin-left:-19.313507px;}
._24{margin-left:-17.773049px;}
._7{margin-left:-16.575009px;}
._d{margin-left:-12.609185px;}
._b{margin-left:-5.327950px;}
._5{margin-left:-3.923920px;}
._3{margin-left:-2.561476px;}
._0{margin-left:-1.188524px;}
._1{width:1.018847px;}
._4{width:2.142524px;}
._6{width:3.540005px;}
._c{width:4.752464px;}
._23{width:6.301104px;}
._a{width:7.619961px;}
._22{width:11.321461px;}
._26{width:13.989522px;}
._f{width:16.622909px;}
._8{width:18.360000px;}
._25{width:19.410496px;}
._9{width:54.621018px;}
._1c{width:86.648803px;}
._1d{width:114.851497px;}
._1e{width:119.402279px;}
._17{width:128.444955px;}
._1f{width:137.115043px;}
._15{width:156.059952px;}
._20{width:186.281257px;}
._1b{width:212.594997px;}
._16{width:240.160104px;}
._21{width:257.051497px;}
._1a{width:267.727199px;}
._19{width:275.577150px;}
._18{width:315.538139px;}
._14{width:395.301047px;}
._11{width:498.728955px;}
._13{width:547.077170px;}
._10{width:573.918476px;}
._12{width:583.032022px;}
._2{width:669.049414px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.829002px;}
.ye9{bottom:112.830127px;}
.ye5{bottom:112.842887px;}
.yde{bottom:112.855636px;}
.ycf{bottom:112.868373px;}
.yd3{bottom:112.868385px;}
.ycc{bottom:112.881133px;}
.yc6{bottom:112.893871px;}
.ybe{bottom:112.906642px;}
.yb6{bottom:112.919391px;}
.yb5{bottom:112.932140px;}
.yb4{bottom:112.932300px;}
.y36{bottom:112.938297px;}
.y121{bottom:114.735260px;}
.y137{bottom:114.735294px;}
.yb2{bottom:114.874786px;}
.y1ec{bottom:116.614826px;}
.y1aa{bottom:116.674084px;}
.y22e{bottom:117.010082px;}
.y168{bottom:117.936298px;}
.ye6{bottom:121.844386px;}
.ydf{bottom:121.857135px;}
.yd0{bottom:121.869872px;}
.yd4{bottom:121.869884px;}
.yc7{bottom:121.895370px;}
.yb7{bottom:121.920890px;}
.y2d{bottom:122.461349px;}
.y9f{bottom:130.665298px;}
.y1eb{bottom:131.608829px;}
.y1a9{bottom:131.668076px;}
.y230{bottom:131.902084px;}
.y22d{bottom:132.004086px;}
.y6c{bottom:132.165344px;}
.y167{bottom:132.930302px;}
.y35{bottom:133.032303px;}
.y120{bottom:133.485260px;}
.y136{bottom:133.485294px;}
.yb1{bottom:133.624786px;}
.y2c{bottom:141.211349px;}
.y1ea{bottom:146.602833px;}
.y1a8{bottom:146.662079px;}
.y22f{bottom:146.896076px;}
.y22c{bottom:146.998077px;}
.y166{bottom:147.924305px;}
.y9e{bottom:149.415298px;}
.y34{bottom:150.485550px;}
.y6b{bottom:150.915344px;}
.y11f{bottom:152.235260px;}
.y135{bottom:152.235294px;}
.yb0{bottom:152.374786px;}
.y2b{bottom:159.961349px;}
.y1e9{bottom:161.596825px;}
.y1a7{bottom:161.656082px;}
.y22b{bottom:161.992081px;}
.y165{bottom:162.918297px;}
.y9d{bottom:168.165298px;}
.y6a{bottom:169.665344px;}
.y33{bottom:170.579556px;}
.y11e{bottom:170.985260px;}
.y134{bottom:170.985294px;}
.yaf{bottom:171.124786px;}
.y1e8{bottom:176.590828px;}
.y1a6{bottom:176.650085px;}
.y22a{bottom:176.986084px;}
.y164{bottom:177.912300px;}
.y2a{bottom:178.711349px;}
.y9c{bottom:186.915298px;}
.y32{bottom:188.038799px;}
.y69{bottom:188.415344px;}
.y11d{bottom:189.735260px;}
.y133{bottom:189.735294px;}
.yae{bottom:189.874786px;}
.y1e7{bottom:191.584831px;}
.y1a5{bottom:191.644077px;}
.y229{bottom:191.980076px;}
.y163{bottom:192.906303px;}
.y29{bottom:197.461349px;}
.y31{bottom:203.032791px;}
.y9b{bottom:205.665298px;}
.y1e6{bottom:206.578835px;}
.y1a4{bottom:206.638069px;}
.y228{bottom:206.974091px;}
.y68{bottom:207.165344px;}
.y162{bottom:207.900307px;}
.y11c{bottom:208.485260px;}
.y132{bottom:208.485306px;}
.yad{bottom:208.624786px;}
.y28{bottom:216.211349px;}
.y1e5{bottom:221.572838px;}
.y1a3{bottom:221.632072px;}
.y227{bottom:221.968071px;}
.y161{bottom:222.894310px;}
.y30{bottom:223.126808px;}
.y9a{bottom:224.415298px;}
.y67{bottom:225.915344px;}
.y11b{bottom:227.235260px;}
.y131{bottom:227.235306px;}
.yac{bottom:227.374786px;}
.y27{bottom:234.961349px;}
.y1e4{bottom:236.566841px;}
.y1a2{bottom:236.626076px;}
.y226{bottom:236.962074px;}
.y160{bottom:237.888290px;}
.y99{bottom:243.165298px;}
.y66{bottom:244.665344px;}
.y11a{bottom:245.985260px;}
.y130{bottom:245.985306px;}
.yab{bottom:246.124786px;}
.y2f{bottom:248.127296px;}
.y1e3{bottom:251.560822px;}
.y1a1{bottom:251.620079px;}
.y225{bottom:251.956078px;}
.y15f{bottom:252.882294px;}
.y26{bottom:253.711349px;}
.y98{bottom:261.915298px;}
.y2e{bottom:263.121300px;}
.y65{bottom:263.415344px;}
.y119{bottom:264.735260px;}
.y12f{bottom:264.735306px;}
.yaa{bottom:264.874786px;}
.y1e2{bottom:266.554825px;}
.y1a0{bottom:266.614082px;}
.y224{bottom:266.950081px;}
.y25{bottom:272.461349px;}
.y97{bottom:280.665298px;}
.y1e1{bottom:281.548828px;}
.y19f{bottom:281.608086px;}
.y223{bottom:281.944084px;}
.y64{bottom:282.165344px;}
.y118{bottom:283.485260px;}
.y12e{bottom:283.485306px;}
.ya9{bottom:283.624786px;}
.y15e{bottom:286.632294px;}
.y24{bottom:291.211349px;}
.y1e0{bottom:296.542831px;}
.y19e{bottom:296.602089px;}
.y222{bottom:296.938087px;}
.y96{bottom:299.415298px;}
.y63{bottom:300.915344px;}
.y117{bottom:302.235260px;}
.y12d{bottom:302.235306px;}
.ya8{bottom:302.374786px;}
.y22{bottom:309.961349px;}
.ye0{bottom:311.283885px;}
.yd5{bottom:311.296634px;}
.yb8{bottom:311.347629px;}
.y1df{bottom:311.536835px;}
.y19d{bottom:311.596069px;}
.y221{bottom:311.932091px;}
.y95{bottom:318.165298px;}
.y62{bottom:319.665344px;}
.yea{bottom:320.259876px;}
.yd1{bottom:320.298122px;}
.yd6{bottom:320.298145px;}
.ybf{bottom:320.336368px;}
.y116{bottom:320.985260px;}
.y12c{bottom:320.985306px;}
.ya7{bottom:321.124786px;}
.y1de{bottom:326.530838px;}
.y19c{bottom:326.590073px;}
.y220{bottom:326.926071px;}
.y21{bottom:328.711349px;}
.y94{bottom:336.915298px;}
.y61{bottom:338.415344px;}
.y115{bottom:339.735260px;}
.y12b{bottom:339.735306px;}
.ya6{bottom:339.874786px;}
.y1dd{bottom:341.524841px;}
.y19b{bottom:341.584076px;}
.y21f{bottom:341.920074px;}
.y20{bottom:347.461349px;}
.y93{bottom:355.665344px;}
.y1dc{bottom:356.518822px;}
.y19a{bottom:356.578079px;}
.y21e{bottom:356.914078px;}
.y60{bottom:357.165344px;}
.y114{bottom:358.485260px;}
.y12a{bottom:358.485306px;}
.y15d{bottom:358.550560px;}
.ya5{bottom:358.624786px;}
.y1f{bottom:366.211349px;}
.y1db{bottom:371.512825px;}
.y199{bottom:371.572083px;}
.y21d{bottom:371.908081px;}
.y15c{bottom:373.544540px;}
.y92{bottom:374.415344px;}
.y5f{bottom:375.915344px;}
.y113{bottom:377.235260px;}
.y129{bottom:377.235306px;}
.ya4{bottom:377.374786px;}
.y1e{bottom:384.961349px;}
.y1da{bottom:386.506851px;}
.y198{bottom:386.566086px;}
.y21c{bottom:386.902084px;}
.y15b{bottom:388.538544px;}
.y91{bottom:393.165344px;}
.y5e{bottom:394.665344px;}
.y112{bottom:395.985260px;}
.y128{bottom:395.985306px;}
.ya3{bottom:396.124786px;}
.y1d9{bottom:401.500809px;}
.y197{bottom:401.560089px;}
.y21b{bottom:401.896088px;}
.y15a{bottom:403.532547px;}
.y1d{bottom:403.711349px;}
.y90{bottom:411.915344px;}
.y5d{bottom:413.415344px;}
.y111{bottom:414.735260px;}
.y127{bottom:414.735306px;}
.ya2{bottom:414.874786px;}
.y1d8{bottom:416.494812px;}
.y196{bottom:416.554092px;}
.y21a{bottom:416.890091px;}
.y159{bottom:418.526550px;}
.y1c{bottom:422.461349px;}
.y8f{bottom:430.665344px;}
.y1d7{bottom:431.488815px;}
.y195{bottom:431.548096px;}
.y219{bottom:431.884094px;}
.y5c{bottom:432.165344px;}
.y110{bottom:433.485260px;}
.y126{bottom:433.485306px;}
.y158{bottom:433.520554px;}
.y1b{bottom:441.211349px;}
.y1d6{bottom:446.482819px;}
.y194{bottom:446.542099px;}
.y218{bottom:446.878098px;}
.y157{bottom:448.514557px;}
.y8e{bottom:449.415344px;}
.y5b{bottom:450.915344px;}
.y10f{bottom:452.235260px;}
.y125{bottom:452.235306px;}
.yb3{bottom:458.998489px;}
.y1a{bottom:459.961349px;}
.y1d5{bottom:461.476822px;}
.y193{bottom:461.536102px;}
.y217{bottom:461.872101px;}
.y156{bottom:463.508560px;}
.y8d{bottom:468.165344px;}
.y5a{bottom:469.665344px;}
.y147{bottom:470.979309px;}
.y10e{bottom:470.985260px;}
.y146{bottom:470.985306px;}
.y1d4{bottom:476.470825px;}
.y192{bottom:476.530060px;}
.y216{bottom:476.866058px;}
.y155{bottom:478.502563px;}
.y19{bottom:478.711349px;}
.y8c{bottom:486.915344px;}
.y59{bottom:488.415344px;}
.y124{bottom:489.729309px;}
.y10d{bottom:489.735260px;}
.y145{bottom:489.735306px;}
.y1d3{bottom:491.464828px;}
.y191{bottom:491.524063px;}
.y215{bottom:491.860062px;}
.y154{bottom:493.496567px;}
.y18{bottom:497.461349px;}
.y8b{bottom:505.665344px;}
.y1d2{bottom:506.458832px;}
.y190{bottom:506.518066px;}
.y214{bottom:506.854065px;}
.y58{bottom:507.165344px;}
.y10c{bottom:508.485260px;}
.y123{bottom:508.485306px;}
.y153{bottom:508.490570px;}
.yeb{bottom:508.551853px;}
.yd2{bottom:508.590122px;}
.yc0{bottom:508.628391px;}
.y23{bottom:516.211349px;}
.ye7{bottom:517.553363px;}
.ye1{bottom:517.566135px;}
.yda{bottom:517.578861px;}
.ycd{bottom:517.591632px;}
.yc8{bottom:517.604358px;}
.yc4{bottom:517.617130px;}
.yc1{bottom:517.629856px;}
.yb9{bottom:517.629901px;}
.y1d1{bottom:521.452835px;}
.y18f{bottom:521.512070px;}
.y213{bottom:521.848068px;}
.y152{bottom:523.484528px;}
.y8a{bottom:524.415344px;}
.y57{bottom:525.915344px;}
.y10b{bottom:527.235260px;}
.y144{bottom:527.235306px;}
.y17{bottom:534.961349px;}
.y1d0{bottom:536.446838px;}
.y18e{bottom:536.506073px;}
.y212{bottom:536.842072px;}
.y89{bottom:543.165344px;}
.y56{bottom:544.665344px;}
.y10a{bottom:545.985260px;}
.y143{bottom:545.985306px;}
.y1cf{bottom:551.440842px;}
.y18d{bottom:551.500076px;}
.y211{bottom:551.836075px;}
.y151{bottom:553.485306px;}
.y88{bottom:561.915344px;}
.y55{bottom:563.415344px;}
.y109{bottom:564.735260px;}
.y142{bottom:564.735306px;}
.y1ce{bottom:566.434845px;}
.y18c{bottom:566.494080px;}
.y210{bottom:566.830078px;}
.y87{bottom:580.665344px;}
.y1cd{bottom:581.428848px;}
.y18b{bottom:581.488083px;}
.y20f{bottom:581.824081px;}
.y54{bottom:582.165344px;}
.y108{bottom:583.485260px;}
.y141{bottom:583.485306px;}
.y16{bottom:591.211395px;}
.y1cc{bottom:596.422852px;}
.y18a{bottom:596.482086px;}
.y20e{bottom:596.818085px;}
.y86{bottom:599.415344px;}
.y53{bottom:600.915344px;}
.y107{bottom:602.235260px;}
.y140{bottom:602.235306px;}
.y1cb{bottom:611.416809px;}
.y189{bottom:611.476089px;}
.y20d{bottom:611.812088px;}
.y150{bottom:617.264557px;}
.y85{bottom:618.165344px;}
.y52{bottom:619.665344px;}
.y106{bottom:620.985260px;}
.y13f{bottom:620.985306px;}
.y1ca{bottom:626.410812px;}
.y188{bottom:626.470093px;}
.y20c{bottom:626.806091px;}
.y15{bottom:628.711395px;}
.y14f{bottom:632.258560px;}
.y84{bottom:636.915344px;}
.y51{bottom:638.415344px;}
.y105{bottom:639.735260px;}
.y13e{bottom:639.735306px;}
.y1c9{bottom:641.404816px;}
.y187{bottom:641.464096px;}
.y20b{bottom:641.800095px;}
.y14e{bottom:647.252563px;}
.y14{bottom:647.461395px;}
.y83{bottom:655.665344px;}
.y1c8{bottom:656.398819px;}
.y186{bottom:656.458099px;}
.y20a{bottom:656.794098px;}
.y50{bottom:657.165344px;}
.y104{bottom:658.485260px;}
.y13d{bottom:658.485306px;}
.y14d{bottom:662.246567px;}
.y13{bottom:666.211395px;}
.y1c7{bottom:671.392822px;}
.y185{bottom:671.452103px;}
.y209{bottom:671.788101px;}
.y82{bottom:674.415344px;}
.y4f{bottom:675.915344px;}
.y103{bottom:677.235260px;}
.y13c{bottom:677.235306px;}
.y14c{bottom:677.240570px;}
.y12{bottom:684.961395px;}
.y1c6{bottom:686.386826px;}
.y184{bottom:686.446060px;}
.y208{bottom:686.782059px;}
.y14b{bottom:692.234528px;}
.y81{bottom:693.165344px;}
.y4e{bottom:694.665344px;}
.y149{bottom:695.973312px;}
.y102{bottom:695.985260px;}
.y13b{bottom:695.985306px;}
.y1c5{bottom:701.380829px;}
.y183{bottom:701.440063px;}
.y207{bottom:701.776062px;}
.y11{bottom:703.711395px;}
.ye2{bottom:705.679630px;}
.ydb{bottom:705.692356px;}
.yce{bottom:705.705127px;}
.yc9{bottom:705.717853px;}
.yc5{bottom:705.730625px;}
.yc2{bottom:705.743350px;}
.yba{bottom:705.743396px;}
.y80{bottom:711.915344px;}
.y4d{bottom:713.415344px;}
.yec{bottom:714.668369px;}
.ye3{bottom:714.681140px;}
.ydc{bottom:714.693866px;}
.yd7{bottom:714.706638px;}
.yca{bottom:714.719364px;}
.y148{bottom:714.729309px;}
.y101{bottom:714.735260px;}
.y13a{bottom:714.735306px;}
.yc3{bottom:714.744861px;}
.ybb{bottom:714.744907px;}
.y1c4{bottom:716.374832px;}
.y182{bottom:716.434067px;}
.y206{bottom:716.770065px;}
.y14a{bottom:722.235306px;}
.y10{bottom:722.461395px;}
.y7f{bottom:730.665344px;}
.y1c3{bottom:731.368835px;}
.y181{bottom:731.428070px;}
.y205{bottom:731.764069px;}
.y4c{bottom:732.165344px;}
.y100{bottom:733.485260px;}
.y139{bottom:733.485306px;}
.yf{bottom:741.211395px;}
.y1c2{bottom:746.362839px;}
.y180{bottom:746.422073px;}
.y204{bottom:746.758072px;}
.y7e{bottom:749.415344px;}
.y4b{bottom:750.915344px;}
.yff{bottom:752.235260px;}
.y138{bottom:752.235306px;}
.ye{bottom:759.961395px;}
.y1c1{bottom:761.356842px;}
.y17f{bottom:761.416077px;}
.y203{bottom:761.752075px;}
.y7d{bottom:768.165344px;}
.y4a{bottom:769.665344px;}
.y122{bottom:770.985260px;}
.y1c0{bottom:776.350800px;}
.y17e{bottom:776.410126px;}
.y202{bottom:776.746124px;}
.yd{bottom:778.711395px;}
.y7c{bottom:786.915344px;}
.y49{bottom:788.415344px;}
.yfe{bottom:789.735260px;}
.y1bf{bottom:791.344849px;}
.y17d{bottom:791.404083px;}
.y201{bottom:791.740082px;}
.yc{bottom:797.461395px;}
.y7b{bottom:805.665344px;}
.y1be{bottom:806.338806px;}
.y17c{bottom:806.398041px;}
.y200{bottom:806.734039px;}
.y48{bottom:807.165344px;}
.yfd{bottom:808.485260px;}
.yb{bottom:816.211395px;}
.y1bd{bottom:821.332855px;}
.y17b{bottom:821.392090px;}
.y1ff{bottom:821.728088px;}
.y7a{bottom:824.415344px;}
.y47{bottom:825.915344px;}
.yfc{bottom:827.235260px;}
.ya{bottom:834.961395px;}
.y1bc{bottom:836.326813px;}
.y17a{bottom:836.386047px;}
.y1fe{bottom:836.722046px;}
.y79{bottom:843.165344px;}
.y46{bottom:844.665344px;}
.yfb{bottom:845.985260px;}
.y1bb{bottom:851.320862px;}
.y179{bottom:851.380096px;}
.y1fd{bottom:851.716095px;}
.y78{bottom:861.915344px;}
.y45{bottom:863.415344px;}
.yfa{bottom:864.735260px;}
.y1ba{bottom:866.314819px;}
.y178{bottom:866.374054px;}
.y1fc{bottom:866.710052px;}
.y9{bottom:879.144196px;}
.y77{bottom:880.665344px;}
.y1b9{bottom:881.308868px;}
.y177{bottom:881.368103px;}
.y1fb{bottom:881.704102px;}
.y44{bottom:882.165344px;}
.yf9{bottom:883.485260px;}
.y37{bottom:894.128358px;}
.y8{bottom:894.138153px;}
.y1b8{bottom:896.302826px;}
.y176{bottom:896.362061px;}
.y1fa{bottom:896.698059px;}
.y76{bottom:899.415344px;}
.y43{bottom:900.915344px;}
.yf8{bottom:902.235260px;}
.ye8{bottom:902.641651px;}
.ye4{bottom:902.654376px;}
.ydd{bottom:902.667102px;}
.yd8{bottom:902.679828px;}
.ycb{bottom:902.692645px;}
.ybc{bottom:902.718097px;}
.y1b7{bottom:911.296875px;}
.y175{bottom:911.356110px;}
.yd9{bottom:911.681384px;}
.y1f9{bottom:911.692108px;}
.ybd{bottom:911.719654px;}
.y75{bottom:918.165344px;}
.y42{bottom:919.665344px;}
.yf7{bottom:920.985260px;}
.y1b6{bottom:926.290833px;}
.y174{bottom:926.350067px;}
.y1f8{bottom:926.686066px;}
.y7{bottom:936.738190px;}
.y74{bottom:936.915344px;}
.y41{bottom:938.415344px;}
.yf6{bottom:939.735260px;}
.y1b5{bottom:941.284790px;}
.y173{bottom:941.344116px;}
.y1f7{bottom:941.680115px;}
.y73{bottom:955.665344px;}
.y1b4{bottom:956.278839px;}
.y172{bottom:956.338074px;}
.y1f6{bottom:956.674072px;}
.y40{bottom:957.165344px;}
.yf5{bottom:958.485260px;}
.y1b3{bottom:971.272797px;}
.y171{bottom:971.332123px;}
.y1f5{bottom:971.668121px;}
.y72{bottom:974.415344px;}
.y3f{bottom:975.915344px;}
.yf4{bottom:977.235260px;}
.y6{bottom:981.424622px;}
.y1b2{bottom:986.266846px;}
.y170{bottom:986.326080px;}
.y1f4{bottom:986.662079px;}
.y71{bottom:993.165344px;}
.y3e{bottom:994.665344px;}
.yf3{bottom:995.985260px;}
.y1b1{bottom:1001.260803px;}
.y16f{bottom:1001.320038px;}
.y1f3{bottom:1001.656036px;}
.y5{bottom:1008.424622px;}
.y70{bottom:1011.915344px;}
.y3d{bottom:1013.415344px;}
.yf2{bottom:1014.735260px;}
.y1b0{bottom:1016.254852px;}
.y16e{bottom:1016.314087px;}
.y1f2{bottom:1016.650085px;}
.y6f{bottom:1030.665344px;}
.y1af{bottom:1031.248810px;}
.y16d{bottom:1031.308044px;}
.y1f1{bottom:1031.644043px;}
.y3c{bottom:1032.165344px;}
.yf1{bottom:1033.485260px;}
.y1ae{bottom:1046.242859px;}
.y16c{bottom:1046.302093px;}
.y1f0{bottom:1046.638092px;}
.y3b{bottom:1050.915344px;}
.yf0{bottom:1052.235260px;}
.y1ad{bottom:1061.236816px;}
.y16b{bottom:1061.296050px;}
.y1ef{bottom:1061.632050px;}
.y6e{bottom:1067.409302px;}
.y3a{bottom:1069.665344px;}
.yef{bottom:1070.985260px;}
.y4{bottom:1076.132080px;}
.y1ac{bottom:1076.230865px;}
.y16a{bottom:1076.290100px;}
.y1ee{bottom:1076.626099px;}
.y6d{bottom:1086.165344px;}
.y39{bottom:1088.415344px;}
.yee{bottom:1089.735260px;}
.y1ab{bottom:1091.224823px;}
.y169{bottom:1091.284058px;}
.y1ed{bottom:1091.620056px;}
.y3{bottom:1109.586548px;}
.y1{bottom:1126.582351px;}
.y38{bottom:1127.482346px;}
.ya1{bottom:1127.482361px;}
.yed{bottom:1127.482484px;}
.ya0{bottom:1127.482496px;}
.hc{height:32.986799px;}
.h3{height:33.840000px;}
.hd{height:35.700000px;}
.h2{height:44.676000px;}
.hb{height:47.124000px;}
.he{height:52.173000px;}
.h8{height:55.440000px;}
.h4{height:55.461000px;}
.h12{height:59.004000px;}
.h7{height:59.340000px;}
.ha{height:61.380000px;}
.h11{height:62.808000px;}
.h6{height:64.866000px;}
.h9{height:71.208000px;}
.h5{height:85.056000px;}
.h10{height:107.100010px;}
.hf{height:107.100013px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535402px;}
.x3{left:85.181849px;}
.x9{left:93.545385px;}
.x6{left:97.796098px;}
.x35{left:107.288395px;}
.xc{left:121.897053px;}
.xd{left:136.891045px;}
.xe{left:162.387762px;}
.xf{left:190.476015px;}
.x10{left:205.470007px;}
.x11{left:220.464011px;}
.x12{left:239.168257px;}
.xa{left:250.546509px;}
.x13{left:254.162260px;}
.x14{left:272.879256px;}
.x15{left:287.873259px;}
.x16{left:302.867262px;}
.x17{left:321.584258px;}
.x18{left:336.578261px;}
.x19{left:355.295256px;}
.x7{left:364.487069px;}
.x1a{left:370.289259px;}
.x8{left:379.903504px;}
.x1b{left:385.283263px;}
.x1c{left:400.277266px;}
.x1d{left:418.994261px;}
.x1e{left:433.988264px;}
.x1f{left:448.982268px;}
.x4{left:459.215372px;}
.x20{left:463.976271px;}
.x5{left:476.225366px;}
.x21{left:482.693266px;}
.x36{left:489.966888px;}
.x22{left:497.687270px;}
.x23{left:512.681273px;}
.x24{left:527.675276px;}
.x25{left:546.392271px;}
.x26{left:561.386275px;}
.x27{left:576.380278px;}
.x28{left:595.084502px;}
.x29{left:610.078505px;}
.x2a{left:625.072508px;}
.x2b{left:640.066512px;}
.x2c{left:658.783507px;}
.x2d{left:673.777510px;}
.x2e{left:688.771513px;}
.x2f{left:707.488509px;}
.x30{left:722.482512px;}
.x2{left:728.220612px;}
.x31{left:741.275999px;}
.x32{left:756.270003px;}
.x33{left:771.264052px;}
.xb{left:798.465014px;}
.x34{left:799.842012px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v3{vertical-align:-13.333496pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v4{vertical-align:53.312012pt;}
.ls5f{letter-spacing:-1.173333pt;}
.ls4c{letter-spacing:-0.906667pt;}
.ls41{letter-spacing:-0.680000pt;}
.ls59{letter-spacing:-0.640000pt;}
.ls9a{letter-spacing:-0.634667pt;}
.ls4b{letter-spacing:-0.586667pt;}
.ls51{letter-spacing:-0.533333pt;}
.ls89{letter-spacing:-0.498667pt;}
.ls50{letter-spacing:-0.480000pt;}
.ls9e{letter-spacing:-0.453333pt;}
.ls39{letter-spacing:-0.373333pt;}
.ls8b{letter-spacing:-0.362667pt;}
.ls3b{letter-spacing:-0.320000pt;}
.ls77{letter-spacing:-0.317333pt;}
.ls79{letter-spacing:-0.272000pt;}
.ls3a{letter-spacing:-0.266667pt;}
.ls7a{letter-spacing:-0.226667pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls76{letter-spacing:-0.181333pt;}
.ls37{letter-spacing:-0.160000pt;}
.ls78{letter-spacing:-0.136000pt;}
.ls36{letter-spacing:-0.106667pt;}
.ls8a{letter-spacing:-0.090667pt;}
.ls1c{letter-spacing:-0.053833pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls88{letter-spacing:-0.045333pt;}
.ls19{letter-spacing:-0.038434pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000020pt;}
.ls40{letter-spacing:0.000029pt;}
.ls54{letter-spacing:0.000182pt;}
.ls34{letter-spacing:0.026667pt;}
.ls1b{letter-spacing:0.037621pt;}
.ls66{letter-spacing:0.045333pt;}
.ls5b{letter-spacing:0.053304pt;}
.lsb{letter-spacing:0.053333pt;}
.ls64{letter-spacing:0.090667pt;}
.ls10{letter-spacing:0.106667pt;}
.ls9b{letter-spacing:0.113333pt;}
.ls71{letter-spacing:0.136000pt;}
.ls17{letter-spacing:0.158926pt;}
.ls3f{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.160003pt;}
.ls56{letter-spacing:0.160156pt;}
.ls35{letter-spacing:0.162760pt;}
.ls61{letter-spacing:0.181333pt;}
.ls42{letter-spacing:0.186605pt;}
.ls3c{letter-spacing:0.186667pt;}
.ls6b{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls62{letter-spacing:0.226644pt;}
.ls18{letter-spacing:0.226667pt;}
.ls65{letter-spacing:0.234667pt;}
.ls49{letter-spacing:0.240000pt;}
.ls97{letter-spacing:0.249333pt;}
.ls4f{letter-spacing:0.250646pt;}
.ls68{letter-spacing:0.256000pt;}
.ls4e{letter-spacing:0.264557pt;}
.ls33{letter-spacing:0.266602pt;}
.ls2{letter-spacing:0.266667pt;}
.ls5c{letter-spacing:0.266685pt;}
.ls3d{letter-spacing:0.266692pt;}
.ls5d{letter-spacing:0.266764pt;}
.ls7b{letter-spacing:0.272000pt;}
.ls44{letter-spacing:0.293333pt;}
.ls6e{letter-spacing:0.294667pt;}
.ls67{letter-spacing:0.317333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls7f{letter-spacing:0.362667pt;}
.ls5{letter-spacing:0.373333pt;}
.ls8f{letter-spacing:0.385333pt;}
.ls46{letter-spacing:0.400000pt;}
.ls63{letter-spacing:0.408000pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls8d{letter-spacing:0.430667pt;}
.ls9{letter-spacing:0.453333pt;}
.ls72{letter-spacing:0.476000pt;}
.ls3e{letter-spacing:0.479980pt;}
.lsf{letter-spacing:0.480000pt;}
.ls82{letter-spacing:0.498667pt;}
.ls45{letter-spacing:0.506673pt;}
.ls43{letter-spacing:0.509888pt;}
.ls83{letter-spacing:0.521333pt;}
.lsa{letter-spacing:0.533333pt;}
.ls85{letter-spacing:0.544000pt;}
.ls5a{letter-spacing:0.560000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls2d{letter-spacing:0.586751pt;}
.ls81{letter-spacing:0.589333pt;}
.ls9d{letter-spacing:0.612000pt;}
.ls2c{letter-spacing:0.613333pt;}
.ls70{letter-spacing:0.634667pt;}
.lse{letter-spacing:0.640000pt;}
.ls7e{letter-spacing:0.657333pt;}
.ls75{letter-spacing:0.680000pt;}
.ls3{letter-spacing:0.693333pt;}
.ls98{letter-spacing:0.702667pt;}
.ls2f{letter-spacing:0.720000pt;}
.ls7c{letter-spacing:0.725333pt;}
.ls90{letter-spacing:0.725370pt;}
.lsc{letter-spacing:0.746667pt;}
.ls6c{letter-spacing:0.770667pt;}
.ls84{letter-spacing:0.793333pt;}
.ls32{letter-spacing:0.799967pt;}
.ls30{letter-spacing:0.800000pt;}
.ls6f{letter-spacing:0.816000pt;}
.ls13{letter-spacing:0.853333pt;}
.ls58{letter-spacing:0.853444pt;}
.ls73{letter-spacing:0.861333pt;}
.ls4a{letter-spacing:0.880000pt;}
.ls1f{letter-spacing:0.906667pt;}
.ls8c{letter-spacing:0.952000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls57{letter-spacing:0.960124pt;}
.ls55{letter-spacing:0.986667pt;}
.ls87{letter-spacing:0.997333pt;}
.ls6{letter-spacing:1.013333pt;}
.ls99{letter-spacing:1.020000pt;}
.ls52{letter-spacing:1.040000pt;}
.ls69{letter-spacing:1.042667pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls7d{letter-spacing:1.088000pt;}
.ls26{letter-spacing:1.120000pt;}
.ls74{letter-spacing:1.133333pt;}
.ls12{letter-spacing:1.173333pt;}
.ls9c{letter-spacing:1.178667pt;}
.ls4d{letter-spacing:1.200000pt;}
.ls6a{letter-spacing:1.224000pt;}
.ls16{letter-spacing:1.226667pt;}
.ls92{letter-spacing:1.246667pt;}
.ls8e{letter-spacing:1.269333pt;}
.lsd{letter-spacing:1.280000pt;}
.ls91{letter-spacing:1.314667pt;}
.ls14{letter-spacing:1.333333pt;}
.ls5e{letter-spacing:1.386667pt;}
.ls80{letter-spacing:1.405333pt;}
.ls29{letter-spacing:1.440000pt;}
.ls95{letter-spacing:1.450667pt;}
.ls2e{letter-spacing:1.466667pt;}
.ls22{letter-spacing:1.493333pt;}
.ls8{letter-spacing:1.546667pt;}
.ls60{letter-spacing:1.600000pt;}
.ls25{letter-spacing:1.653333pt;}
.ls27{letter-spacing:1.706667pt;}
.ls94{letter-spacing:1.722667pt;}
.ls28{letter-spacing:1.733333pt;}
.ls24{letter-spacing:1.760000pt;}
.ls93{letter-spacing:1.813333pt;}
.ls86{letter-spacing:1.858667pt;}
.ls21{letter-spacing:1.866667pt;}
.ls96{letter-spacing:1.972000pt;}
.ls23{letter-spacing:1.973333pt;}
.ls6d{letter-spacing:2.040000pt;}
.ls48{letter-spacing:2.053385pt;}
.ls47{letter-spacing:2.096029pt;}
.ls15{letter-spacing:2.133333pt;}
.ls20{letter-spacing:2.240000pt;}
.ls2a{letter-spacing:2.293333pt;}
.ls0{letter-spacing:3.546667pt;}
.ws30{word-spacing:-15.573333pt;}
.wsd{word-spacing:-15.466667pt;}
.ws32{word-spacing:-15.306667pt;}
.ws31{word-spacing:-15.200000pt;}
.ws96{word-spacing:-15.040000pt;}
.ws34{word-spacing:-14.986667pt;}
.wsb0{word-spacing:-14.773333pt;}
.wsaf{word-spacing:-14.720000pt;}
.wsb1{word-spacing:-14.666667pt;}
.wsa9{word-spacing:-14.613333pt;}
.ws98{word-spacing:-14.506667pt;}
.ws35{word-spacing:-14.453333pt;}
.wsb{word-spacing:-14.400000pt;}
.ws99{word-spacing:-14.373333pt;}
.wsa{word-spacing:-14.346667pt;}
.ws9a{word-spacing:-14.293333pt;}
.ws33{word-spacing:-14.240000pt;}
.ws76{word-spacing:-14.186667pt;}
.ws36{word-spacing:-14.133333pt;}
.ws97{word-spacing:-14.080000pt;}
.ws37{word-spacing:-14.026667pt;}
.ws5f{word-spacing:-13.973333pt;}
.ws9{word-spacing:-13.866667pt;}
.ws8{word-spacing:-13.813333pt;}
.ws7{word-spacing:-13.786667pt;}
.ws7a{word-spacing:-13.760000pt;}
.ws74{word-spacing:-13.706667pt;}
.ws78{word-spacing:-13.653333pt;}
.wsc{word-spacing:-13.600000pt;}
.ws77{word-spacing:-13.546667pt;}
.ws61{word-spacing:-13.493333pt;}
.ws38{word-spacing:-13.440000pt;}
.ws60{word-spacing:-13.386667pt;}
.ws79{word-spacing:-13.333333pt;}
.ws7b{word-spacing:-13.280000pt;}
.ws8d{word-spacing:-13.226667pt;}
.wsb6{word-spacing:-13.184000pt;}
.ws75{word-spacing:-13.173333pt;}
.ws8c{word-spacing:-13.120000pt;}
.ws72{word-spacing:-13.066667pt;}
.ws8b{word-spacing:-13.013333pt;}
.ws6{word-spacing:-12.928000pt;}
.ws10d{word-spacing:-12.512000pt;}
.wsf8{word-spacing:-12.194667pt;}
.wsfd{word-spacing:-11.968000pt;}
.wsdd{word-spacing:-11.877333pt;}
.wsf{word-spacing:-11.560000pt;}
.wsb5{word-spacing:-11.424000pt;}
.ws6c{word-spacing:-11.333333pt;}
.ws10e{word-spacing:-11.242667pt;}
.ws10c{word-spacing:-11.197333pt;}
.ws105{word-spacing:-11.061333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws7c{word-spacing:-10.933333pt;}
.wsf9{word-spacing:-10.698667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws73{word-spacing:-9.973333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws10{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.wsa7{word-spacing:-4.864000pt;}
.ws3b{word-spacing:-2.240000pt;}
.ws46{word-spacing:-1.653333pt;}
.wsb4{word-spacing:-1.440000pt;}
.ws16{word-spacing:-1.333333pt;}
.ws3f{word-spacing:-1.280000pt;}
.ws20{word-spacing:-1.226667pt;}
.wseb{word-spacing:-1.178667pt;}
.ws55{word-spacing:-1.173333pt;}
.wsbb{word-spacing:-1.133333pt;}
.ws44{word-spacing:-1.120000pt;}
.wsd2{word-spacing:-1.088000pt;}
.ws26{word-spacing:-1.066667pt;}
.wse0{word-spacing:-1.042667pt;}
.ws22{word-spacing:-1.013333pt;}
.wsd0{word-spacing:-0.997333pt;}
.ws24{word-spacing:-0.960000pt;}
.wsc0{word-spacing:-0.952000pt;}
.ws1a{word-spacing:-0.906667pt;}
.wsbe{word-spacing:-0.861333pt;}
.ws4f{word-spacing:-0.853333pt;}
.wsc4{word-spacing:-0.816000pt;}
.ws29{word-spacing:-0.800000pt;}
.ws9e{word-spacing:-0.746667pt;}
.wse9{word-spacing:-0.725333pt;}
.ws5c{word-spacing:-0.693333pt;}
.wsc1{word-spacing:-0.680000pt;}
.ws1c{word-spacing:-0.640000pt;}
.wsc2{word-spacing:-0.634667pt;}
.wsf1{word-spacing:-0.589333pt;}
.ws2f{word-spacing:-0.544000pt;}
.ws15{word-spacing:-0.535495pt;}
.ws21{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.506667pt;}
.wse6{word-spacing:-0.498667pt;}
.ws1b{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.453333pt;}
.ws8a{word-spacing:-0.426667pt;}
.ws119{word-spacing:-0.408000pt;}
.ws7e{word-spacing:-0.373333pt;}
.ws28{word-spacing:-0.320000pt;}
.ws102{word-spacing:-0.317333pt;}
.ws2b{word-spacing:-0.266667pt;}
.wsbd{word-spacing:-0.234667pt;}
.wsd4{word-spacing:-0.226667pt;}
.ws82{word-spacing:-0.213333pt;}
.wsbc{word-spacing:-0.181333pt;}
.ws5d{word-spacing:-0.160000pt;}
.ws11{word-spacing:-0.142899pt;}
.ws106{word-spacing:-0.136000pt;}
.ws14{word-spacing:-0.117115pt;}
.ws92{word-spacing:-0.106667pt;}
.wscb{word-spacing:-0.090667pt;}
.ws48{word-spacing:-0.053333pt;}
.wse{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws13{word-spacing:0.000000pt;}
.ws27{word-spacing:0.053333pt;}
.ws56{word-spacing:0.106667pt;}
.wsf7{word-spacing:0.136000pt;}
.ws4b{word-spacing:0.160000pt;}
.ws68{word-spacing:0.213333pt;}
.ws118{word-spacing:0.226667pt;}
.wsa2{word-spacing:0.266667pt;}
.wsc5{word-spacing:0.317333pt;}
.ws8f{word-spacing:0.320000pt;}
.wsc3{word-spacing:0.362667pt;}
.ws67{word-spacing:0.373333pt;}
.wse4{word-spacing:0.408000pt;}
.ws3e{word-spacing:0.426667pt;}
.wse7{word-spacing:0.453333pt;}
.ws6a{word-spacing:0.480000pt;}
.wsfc{word-spacing:0.498667pt;}
.ws88{word-spacing:0.533333pt;}
.ws18{word-spacing:0.586667pt;}
.ws84{word-spacing:0.640000pt;}
.ws71{word-spacing:0.680000pt;}
.ws62{word-spacing:0.693333pt;}
.wsdc{word-spacing:0.725333pt;}
.wsab{word-spacing:0.746667pt;}
.ws70{word-spacing:0.770667pt;}
.ws4e{word-spacing:0.800000pt;}
.wsb9{word-spacing:0.816000pt;}
.ws95{word-spacing:0.853333pt;}
.wsd3{word-spacing:0.861333pt;}
.ws85{word-spacing:0.906667pt;}
.wsd5{word-spacing:0.952000pt;}
.ws1f{word-spacing:0.960000pt;}
.ws103{word-spacing:0.997333pt;}
.ws40{word-spacing:1.013333pt;}
.wsbf{word-spacing:1.042667pt;}
.ws5a{word-spacing:1.066667pt;}
.ws107{word-spacing:1.088000pt;}
.wsa6{word-spacing:1.120000pt;}
.wsba{word-spacing:1.133333pt;}
.ws9b{word-spacing:1.173333pt;}
.wsf5{word-spacing:1.178667pt;}
.wse5{word-spacing:1.224000pt;}
.wsad{word-spacing:1.226667pt;}
.wsf0{word-spacing:1.269333pt;}
.wsb2{word-spacing:1.280000pt;}
.wsdb{word-spacing:1.314667pt;}
.ws19{word-spacing:1.333333pt;}
.wscd{word-spacing:1.360000pt;}
.ws4a{word-spacing:1.386667pt;}
.ws17{word-spacing:1.440000pt;}
.ws104{word-spacing:1.450667pt;}
.ws54{word-spacing:1.493333pt;}
.wscf{word-spacing:1.496000pt;}
.wse8{word-spacing:1.541333pt;}
.ws80{word-spacing:1.546667pt;}
.wse1{word-spacing:1.586667pt;}
.ws2c{word-spacing:1.600000pt;}
.wsf3{word-spacing:1.632000pt;}
.ws1d{word-spacing:1.653333pt;}
.ws10b{word-spacing:1.677333pt;}
.ws90{word-spacing:1.706667pt;}
.wsaa{word-spacing:1.760000pt;}
.wsed{word-spacing:1.768000pt;}
.ws64{word-spacing:1.813333pt;}
.ws10f{word-spacing:1.858667pt;}
.ws25{word-spacing:1.866667pt;}
.ws111{word-spacing:1.904000pt;}
.ws89{word-spacing:1.920000pt;}
.ws52{word-spacing:1.973333pt;}
.ws115{word-spacing:1.994667pt;}
.ws53{word-spacing:2.026667pt;}
.wsde{word-spacing:2.040000pt;}
.ws69{word-spacing:2.080000pt;}
.wsff{word-spacing:2.085333pt;}
.wsd7{word-spacing:2.130667pt;}
.wsac{word-spacing:2.133333pt;}
.wsc9{word-spacing:2.176000pt;}
.ws63{word-spacing:2.186667pt;}
.wsf6{word-spacing:2.221333pt;}
.ws91{word-spacing:2.240000pt;}
.wsea{word-spacing:2.266667pt;}
.ws43{word-spacing:2.293333pt;}
.ws109{word-spacing:2.311995pt;}
.ws45{word-spacing:2.346667pt;}
.wscc{word-spacing:2.357333pt;}
.ws7d{word-spacing:2.400000pt;}
.ws116{word-spacing:2.402667pt;}
.wsd1{word-spacing:2.448000pt;}
.ws86{word-spacing:2.453333pt;}
.wsd9{word-spacing:2.493333pt;}
.ws47{word-spacing:2.506667pt;}
.ws2a{word-spacing:2.560000pt;}
.wsec{word-spacing:2.584000pt;}
.ws42{word-spacing:2.613333pt;}
.ws49{word-spacing:2.666667pt;}
.wsd6{word-spacing:2.674667pt;}
.ws41{word-spacing:2.719995pt;}
.wsce{word-spacing:2.720000pt;}
.wse2{word-spacing:2.765333pt;}
.ws7f{word-spacing:2.773333pt;}
.ws112{word-spacing:2.810667pt;}
.wsa3{word-spacing:2.826667pt;}
.wsf4{word-spacing:2.856000pt;}
.ws59{word-spacing:2.880000pt;}
.wsee{word-spacing:2.901333pt;}
.ws9d{word-spacing:2.933333pt;}
.ws108{word-spacing:2.946667pt;}
.ws81{word-spacing:2.986667pt;}
.ws117{word-spacing:3.037333pt;}
.wsa4{word-spacing:3.040000pt;}
.ws66{word-spacing:3.093333pt;}
.ws23{word-spacing:3.146667pt;}
.wsa1{word-spacing:3.200000pt;}
.ws3c{word-spacing:3.253333pt;}
.ws110{word-spacing:3.264000pt;}
.ws9f{word-spacing:3.306667pt;}
.wsf2{word-spacing:3.309333pt;}
.ws83{word-spacing:3.360000pt;}
.wsc8{word-spacing:3.400000pt;}
.wsa5{word-spacing:3.413333pt;}
.ws114{word-spacing:3.445333pt;}
.wsa8{word-spacing:3.466667pt;}
.wsb3{word-spacing:3.573333pt;}
.wsc6{word-spacing:3.581333pt;}
.ws5e{word-spacing:3.626667pt;}
.ws100{word-spacing:3.672000pt;}
.ws3d{word-spacing:3.733333pt;}
.wsdf{word-spacing:3.762667pt;}
.wsa0{word-spacing:3.786661pt;}
.ws87{word-spacing:3.893333pt;}
.wsd8{word-spacing:3.944000pt;}
.ws4d{word-spacing:3.946667pt;}
.wsda{word-spacing:3.989333pt;}
.ws8e{word-spacing:4.000000pt;}
.wsfb{word-spacing:4.034667pt;}
.ws50{word-spacing:4.053333pt;}
.ws65{word-spacing:4.106667pt;}
.ws5b{word-spacing:4.160000pt;}
.ws113{word-spacing:4.170667pt;}
.wsfe{word-spacing:4.216000pt;}
.ws11a{word-spacing:4.261333pt;}
.ws1e{word-spacing:4.320000pt;}
.wsae{word-spacing:4.373333pt;}
.wsc7{word-spacing:4.397333pt;}
.ws94{word-spacing:4.533333pt;}
.ws57{word-spacing:4.693333pt;}
.wsfa{word-spacing:4.714667pt;}
.ws2d{word-spacing:4.746667pt;}
.wsb7{word-spacing:4.800000pt;}
.ws10a{word-spacing:4.896000pt;}
.ws101{word-spacing:4.986667pt;}
.ws3a{word-spacing:5.066667pt;}
.ws93{word-spacing:5.226667pt;}
.wse3{word-spacing:5.304000pt;}
.ws51{word-spacing:5.333333pt;}
.ws4c{word-spacing:5.440000pt;}
.ws58{word-spacing:5.546667pt;}
.wsb8{word-spacing:5.920000pt;}
.ws9c{word-spacing:6.506667pt;}
.wsef{word-spacing:7.706667pt;}
.wsca{word-spacing:8.432000pt;}
.ws11b{word-spacing:12.013333pt;}
.ws6b{word-spacing:13.962667pt;}
.ws11c{word-spacing:15.640000pt;}
.ws2e{word-spacing:64.237333pt;}
.ws6f{word-spacing:485.656001pt;}
.ws6d{word-spacing:532.394708pt;}
.ws6e{word-spacing:557.600001pt;}
._e{margin-left:-17.167562pt;}
._24{margin-left:-15.798266pt;}
._7{margin-left:-14.733341pt;}
._d{margin-left:-11.208165pt;}
._b{margin-left:-4.735956pt;}
._5{margin-left:-3.487929pt;}
._3{margin-left:-2.276867pt;}
._0{margin-left:-1.056466pt;}
._1{width:0.905642pt;}
._4{width:1.904466pt;}
._6{width:3.146671pt;}
._c{width:4.224412pt;}
._23{width:5.600981pt;}
._a{width:6.773298pt;}
._22{width:10.063521pt;}
._26{width:12.435131pt;}
._f{width:14.775919pt;}
._8{width:16.320000pt;}
._25{width:17.253774pt;}
._9{width:48.552016pt;}
._1c{width:77.021159pt;}
._1d{width:102.090220pt;}
._1e{width:106.135359pt;}
._17{width:114.173294pt;}
._1f{width:121.880038pt;}
._15{width:138.719957pt;}
._20{width:165.583339pt;}
._1b{width:188.973331pt;}
._16{width:213.475648pt;}
._21{width:228.490220pt;}
._1a{width:237.979733pt;}
._19{width:244.957467pt;}
._18{width:280.478346pt;}
._14{width:351.378708pt;}
._11{width:443.314627pt;}
._13{width:486.290818pt;}
._10{width:510.149757pt;}
._12{width:518.250686pt;}
._2{width:594.710590pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:61.181335pt;}
.ye9{bottom:100.293446pt;}
.ye5{bottom:100.304789pt;}
.yde{bottom:100.316121pt;}
.ycf{bottom:100.327443pt;}
.yd3{bottom:100.327453pt;}
.ycc{bottom:100.338785pt;}
.yc6{bottom:100.350107pt;}
.ybe{bottom:100.361460pt;}
.yb6{bottom:100.372792pt;}
.yb5{bottom:100.384124pt;}
.yb4{bottom:100.384267pt;}
.y36{bottom:100.389598pt;}
.y121{bottom:101.986898pt;}
.y137{bottom:101.986928pt;}
.yb2{bottom:102.110921pt;}
.y1ec{bottom:103.657623pt;}
.y1aa{bottom:103.710297pt;}
.y22e{bottom:104.008962pt;}
.y168{bottom:104.832265pt;}
.ye6{bottom:108.306121pt;}
.ydf{bottom:108.317454pt;}
.yd0{bottom:108.328776pt;}
.yd4{bottom:108.328786pt;}
.yc7{bottom:108.351440pt;}
.yb7{bottom:108.374125pt;}
.y2d{bottom:108.854533pt;}
.y9f{bottom:116.146932pt;}
.y1eb{bottom:116.985626pt;}
.y1a9{bottom:117.038289pt;}
.y230{bottom:117.246297pt;}
.y22d{bottom:117.336965pt;}
.y6c{bottom:117.480306pt;}
.y167{bottom:118.160268pt;}
.y35{bottom:118.250936pt;}
.y120{bottom:118.653564pt;}
.y136{bottom:118.653595pt;}
.yb1{bottom:118.777588pt;}
.y2c{bottom:125.521200pt;}
.y1ea{bottom:130.313629pt;}
.y1a8{bottom:130.366292pt;}
.y22f{bottom:130.574290pt;}
.y22c{bottom:130.664958pt;}
.y166{bottom:131.488271pt;}
.y9e{bottom:132.813599pt;}
.y34{bottom:133.764933pt;}
.y6b{bottom:134.146973pt;}
.y11f{bottom:135.320231pt;}
.y135{bottom:135.320262pt;}
.yb0{bottom:135.444255pt;}
.y2b{bottom:142.187866pt;}
.y1e9{bottom:143.641622pt;}
.y1a7{bottom:143.694295pt;}
.y22b{bottom:143.992961pt;}
.y165{bottom:144.816264pt;}
.y9d{bottom:149.480265pt;}
.y6a{bottom:150.813639pt;}
.y33{bottom:151.626272pt;}
.y11e{bottom:151.986898pt;}
.y134{bottom:151.986928pt;}
.yaf{bottom:152.110921pt;}
.y1e8{bottom:156.969625pt;}
.y1a6{bottom:157.022298pt;}
.y22a{bottom:157.320964pt;}
.y164{bottom:158.144267pt;}
.y2a{bottom:158.854533pt;}
.y9c{bottom:166.146932pt;}
.y32{bottom:167.145599pt;}
.y69{bottom:167.480306pt;}
.y11d{bottom:168.653564pt;}
.y133{bottom:168.653595pt;}
.yae{bottom:168.777588pt;}
.y1e7{bottom:170.297628pt;}
.y1a5{bottom:170.350291pt;}
.y229{bottom:170.648956pt;}
.y163{bottom:171.472270pt;}
.y29{bottom:175.521200pt;}
.y31{bottom:180.473592pt;}
.y9b{bottom:182.813599pt;}
.y1e6{bottom:183.625631pt;}
.y1a4{bottom:183.678284pt;}
.y228{bottom:183.976969pt;}
.y68{bottom:184.146973pt;}
.y162{bottom:184.800273pt;}
.y11c{bottom:185.320231pt;}
.y132{bottom:185.320272pt;}
.yad{bottom:185.444255pt;}
.y28{bottom:192.187866pt;}
.y1e5{bottom:196.953634pt;}
.y1a3{bottom:197.006287pt;}
.y227{bottom:197.304952pt;}
.y161{bottom:198.128276pt;}
.y30{bottom:198.334941pt;}
.y9a{bottom:199.480265pt;}
.y67{bottom:200.813639pt;}
.y11b{bottom:201.986898pt;}
.y131{bottom:201.986938pt;}
.yac{bottom:202.110921pt;}
.y27{bottom:208.854533pt;}
.y1e4{bottom:210.281637pt;}
.y1a2{bottom:210.334290pt;}
.y226{bottom:210.632955pt;}
.y160{bottom:211.456258pt;}
.y99{bottom:216.146932pt;}
.y66{bottom:217.480306pt;}
.y11a{bottom:218.653564pt;}
.y130{bottom:218.653605pt;}
.yab{bottom:218.777588pt;}
.y2f{bottom:220.557597pt;}
.y1e3{bottom:223.609619pt;}
.y1a1{bottom:223.662292pt;}
.y225{bottom:223.960958pt;}
.y15f{bottom:224.784261pt;}
.y26{bottom:225.521200pt;}
.y98{bottom:232.813599pt;}
.y2e{bottom:233.885600pt;}
.y65{bottom:234.146973pt;}
.y119{bottom:235.320231pt;}
.y12f{bottom:235.320272pt;}
.yaa{bottom:235.444255pt;}
.y1e2{bottom:236.937622pt;}
.y1a0{bottom:236.990295pt;}
.y224{bottom:237.288961pt;}
.y25{bottom:242.187866pt;}
.y97{bottom:249.480265pt;}
.y1e1{bottom:250.265625pt;}
.y19f{bottom:250.318298pt;}
.y223{bottom:250.616964pt;}
.y64{bottom:250.813639pt;}
.y118{bottom:251.986898pt;}
.y12e{bottom:251.986938pt;}
.ya9{bottom:252.110921pt;}
.y15e{bottom:254.784261pt;}
.y24{bottom:258.854533pt;}
.y1e0{bottom:263.593628pt;}
.y19e{bottom:263.646301pt;}
.y222{bottom:263.944967pt;}
.y96{bottom:266.146932pt;}
.y63{bottom:267.480306pt;}
.y117{bottom:268.653564pt;}
.y12d{bottom:268.653605pt;}
.ya8{bottom:268.777588pt;}
.y22{bottom:275.521200pt;}
.ye0{bottom:276.696787pt;}
.yd5{bottom:276.708119pt;}
.yb8{bottom:276.753448pt;}
.y1df{bottom:276.921631pt;}
.y19d{bottom:276.974284pt;}
.y221{bottom:277.272970pt;}
.y95{bottom:282.813599pt;}
.y62{bottom:284.146973pt;}
.yea{bottom:284.675445pt;}
.yd1{bottom:284.709442pt;}
.yd6{bottom:284.709462pt;}
.ybf{bottom:284.743438pt;}
.y116{bottom:285.320231pt;}
.y12c{bottom:285.320272pt;}
.ya7{bottom:285.444255pt;}
.y1de{bottom:290.249634pt;}
.y19c{bottom:290.302287pt;}
.y220{bottom:290.600952pt;}
.y21{bottom:292.187866pt;}
.y94{bottom:299.480265pt;}
.y61{bottom:300.813639pt;}
.y115{bottom:301.986898pt;}
.y12b{bottom:301.986938pt;}
.ya6{bottom:302.110921pt;}
.y1dd{bottom:303.577637pt;}
.y19b{bottom:303.630290pt;}
.y21f{bottom:303.928955pt;}
.y20{bottom:308.854533pt;}
.y93{bottom:316.146973pt;}
.y1dc{bottom:316.905619pt;}
.y19a{bottom:316.958293pt;}
.y21e{bottom:317.256958pt;}
.y60{bottom:317.480306pt;}
.y114{bottom:318.653564pt;}
.y12a{bottom:318.653605pt;}
.y15d{bottom:318.711609pt;}
.ya5{bottom:318.777588pt;}
.y1f{bottom:325.521200pt;}
.y1db{bottom:330.233622pt;}
.y199{bottom:330.286296pt;}
.y21d{bottom:330.584961pt;}
.y15c{bottom:332.039591pt;}
.y92{bottom:332.813639pt;}
.y5f{bottom:334.146973pt;}
.y113{bottom:335.320231pt;}
.y129{bottom:335.320272pt;}
.ya4{bottom:335.444255pt;}
.y1e{bottom:342.187866pt;}
.y1da{bottom:343.561646pt;}
.y198{bottom:343.614299pt;}
.y21c{bottom:343.912964pt;}
.y15b{bottom:345.367594pt;}
.y91{bottom:349.480306pt;}
.y5e{bottom:350.813639pt;}
.y112{bottom:351.986898pt;}
.y128{bottom:351.986938pt;}
.ya3{bottom:352.110921pt;}
.y1d9{bottom:356.889608pt;}
.y197{bottom:356.942301pt;}
.y21b{bottom:357.240967pt;}
.y15a{bottom:358.695597pt;}
.y1d{bottom:358.854533pt;}
.y90{bottom:366.146973pt;}
.y5d{bottom:367.480306pt;}
.y111{bottom:368.653564pt;}
.y127{bottom:368.653605pt;}
.ya2{bottom:368.777588pt;}
.y1d8{bottom:370.217611pt;}
.y196{bottom:370.270304pt;}
.y21a{bottom:370.568970pt;}
.y159{bottom:372.023600pt;}
.y1c{bottom:375.521200pt;}
.y8f{bottom:382.813639pt;}
.y1d7{bottom:383.545614pt;}
.y195{bottom:383.598307pt;}
.y219{bottom:383.896973pt;}
.y5c{bottom:384.146973pt;}
.y110{bottom:385.320231pt;}
.y126{bottom:385.320272pt;}
.y158{bottom:385.351603pt;}
.y1b{bottom:392.187866pt;}
.y1d6{bottom:396.873617pt;}
.y194{bottom:396.926310pt;}
.y218{bottom:397.224976pt;}
.y157{bottom:398.679606pt;}
.y8e{bottom:399.480306pt;}
.y5b{bottom:400.813639pt;}
.y10f{bottom:401.986898pt;}
.y125{bottom:401.986938pt;}
.yb3{bottom:407.998657pt;}
.y1a{bottom:408.854533pt;}
.y1d5{bottom:410.201619pt;}
.y193{bottom:410.254313pt;}
.y217{bottom:410.552979pt;}
.y156{bottom:412.007609pt;}
.y8d{bottom:416.146973pt;}
.y5a{bottom:417.480306pt;}
.y147{bottom:418.648275pt;}
.y10e{bottom:418.653564pt;}
.y146{bottom:418.653605pt;}
.y1d4{bottom:423.529622pt;}
.y192{bottom:423.582275pt;}
.y216{bottom:423.880941pt;}
.y155{bottom:425.335612pt;}
.y19{bottom:425.521200pt;}
.y8c{bottom:432.813639pt;}
.y59{bottom:434.146973pt;}
.y124{bottom:435.314941pt;}
.y10d{bottom:435.320231pt;}
.y145{bottom:435.320272pt;}
.y1d3{bottom:436.857625pt;}
.y191{bottom:436.910278pt;}
.y215{bottom:437.208944pt;}
.y154{bottom:438.663615pt;}
.y18{bottom:442.187866pt;}
.y8b{bottom:449.480306pt;}
.y1d2{bottom:450.185628pt;}
.y190{bottom:450.238281pt;}
.y214{bottom:450.536947pt;}
.y58{bottom:450.813639pt;}
.y10c{bottom:451.986898pt;}
.y123{bottom:451.986938pt;}
.y153{bottom:451.991618pt;}
.yeb{bottom:452.046091pt;}
.yd2{bottom:452.080108pt;}
.yc0{bottom:452.114125pt;}
.y23{bottom:458.854533pt;}
.ye7{bottom:460.047434pt;}
.ye1{bottom:460.058787pt;}
.yda{bottom:460.070098pt;}
.ycd{bottom:460.081451pt;}
.yc8{bottom:460.092763pt;}
.yc4{bottom:460.104115pt;}
.yc1{bottom:460.115427pt;}
.yb9{bottom:460.115468pt;}
.y1d1{bottom:463.513631pt;}
.y18f{bottom:463.566284pt;}
.y213{bottom:463.864950pt;}
.y152{bottom:465.319580pt;}
.y8a{bottom:466.146973pt;}
.y57{bottom:467.480306pt;}
.y10b{bottom:468.653564pt;}
.y144{bottom:468.653605pt;}
.y17{bottom:475.521200pt;}
.y1d0{bottom:476.841634pt;}
.y18e{bottom:476.894287pt;}
.y212{bottom:477.192952pt;}
.y89{bottom:482.813639pt;}
.y56{bottom:484.146973pt;}
.y10a{bottom:485.320231pt;}
.y143{bottom:485.320272pt;}
.y1cf{bottom:490.169637pt;}
.y18d{bottom:490.222290pt;}
.y211{bottom:490.520955pt;}
.y151{bottom:491.986938pt;}
.y88{bottom:499.480306pt;}
.y55{bottom:500.813639pt;}
.y109{bottom:501.986898pt;}
.y142{bottom:501.986938pt;}
.y1ce{bottom:503.497640pt;}
.y18c{bottom:503.550293pt;}
.y210{bottom:503.848958pt;}
.y87{bottom:516.146973pt;}
.y1cd{bottom:516.825643pt;}
.y18b{bottom:516.878296pt;}
.y20f{bottom:517.176961pt;}
.y54{bottom:517.480306pt;}
.y108{bottom:518.653564pt;}
.y141{bottom:518.653605pt;}
.y16{bottom:525.521240pt;}
.y1cc{bottom:530.153646pt;}
.y18a{bottom:530.206299pt;}
.y20e{bottom:530.504964pt;}
.y86{bottom:532.813639pt;}
.y53{bottom:534.146973pt;}
.y107{bottom:535.320231pt;}
.y140{bottom:535.320272pt;}
.y1cb{bottom:543.481608pt;}
.y189{bottom:543.534302pt;}
.y20d{bottom:543.832967pt;}
.y150{bottom:548.679606pt;}
.y85{bottom:549.480306pt;}
.y52{bottom:550.813639pt;}
.y106{bottom:551.986898pt;}
.y13f{bottom:551.986938pt;}
.y1ca{bottom:556.809611pt;}
.y188{bottom:556.862305pt;}
.y20c{bottom:557.160970pt;}
.y15{bottom:558.854574pt;}
.y14f{bottom:562.007609pt;}
.y84{bottom:566.146973pt;}
.y51{bottom:567.480306pt;}
.y105{bottom:568.653564pt;}
.y13e{bottom:568.653605pt;}
.y1c9{bottom:570.137614pt;}
.y187{bottom:570.190308pt;}
.y20b{bottom:570.488973pt;}
.y14e{bottom:575.335612pt;}
.y14{bottom:575.521240pt;}
.y83{bottom:582.813639pt;}
.y1c8{bottom:583.465617pt;}
.y186{bottom:583.518311pt;}
.y20a{bottom:583.816976pt;}
.y50{bottom:584.146973pt;}
.y104{bottom:585.320231pt;}
.y13d{bottom:585.320272pt;}
.y14d{bottom:588.663615pt;}
.y13{bottom:592.187907pt;}
.y1c7{bottom:596.793620pt;}
.y185{bottom:596.846313pt;}
.y209{bottom:597.144979pt;}
.y82{bottom:599.480306pt;}
.y4f{bottom:600.813639pt;}
.y103{bottom:601.986898pt;}
.y13c{bottom:601.986938pt;}
.y14c{bottom:601.991618pt;}
.y12{bottom:608.854574pt;}
.y1c6{bottom:610.121623pt;}
.y184{bottom:610.174276pt;}
.y208{bottom:610.472941pt;}
.y14b{bottom:615.319580pt;}
.y81{bottom:616.146973pt;}
.y4e{bottom:617.480306pt;}
.y149{bottom:618.642944pt;}
.y102{bottom:618.653564pt;}
.y13b{bottom:618.653605pt;}
.y1c5{bottom:623.449626pt;}
.y183{bottom:623.502279pt;}
.y207{bottom:623.800944pt;}
.y11{bottom:625.521240pt;}
.ye2{bottom:627.270782pt;}
.ydb{bottom:627.282094pt;}
.yce{bottom:627.293446pt;}
.yc9{bottom:627.304758pt;}
.yc5{bottom:627.316111pt;}
.yc2{bottom:627.327423pt;}
.yba{bottom:627.327463pt;}
.y80{bottom:632.813639pt;}
.y4d{bottom:634.146973pt;}
.yec{bottom:635.260772pt;}
.ye3{bottom:635.272125pt;}
.ydc{bottom:635.283437pt;}
.yd7{bottom:635.294789pt;}
.yca{bottom:635.306101pt;}
.y148{bottom:635.314941pt;}
.y101{bottom:635.320231pt;}
.y13a{bottom:635.320272pt;}
.yc3{bottom:635.328765pt;}
.ybb{bottom:635.328806pt;}
.y1c4{bottom:636.777629pt;}
.y182{bottom:636.830282pt;}
.y206{bottom:637.128947pt;}
.y14a{bottom:641.986938pt;}
.y10{bottom:642.187907pt;}
.y7f{bottom:649.480306pt;}
.y1c3{bottom:650.105632pt;}
.y181{bottom:650.158285pt;}
.y205{bottom:650.456950pt;}
.y4c{bottom:650.813639pt;}
.y100{bottom:651.986898pt;}
.y139{bottom:651.986938pt;}
.yf{bottom:658.854574pt;}
.y1c2{bottom:663.433634pt;}
.y180{bottom:663.486287pt;}
.y204{bottom:663.784953pt;}
.y7e{bottom:666.146973pt;}
.y4b{bottom:667.480306pt;}
.yff{bottom:668.653564pt;}
.y138{bottom:668.653605pt;}
.ye{bottom:675.521240pt;}
.y1c1{bottom:676.761637pt;}
.y17f{bottom:676.814290pt;}
.y203{bottom:677.112956pt;}
.y7d{bottom:682.813639pt;}
.y4a{bottom:684.146973pt;}
.y122{bottom:685.320231pt;}
.y1c0{bottom:690.089600pt;}
.y17e{bottom:690.142334pt;}
.y202{bottom:690.440999pt;}
.yd{bottom:692.187907pt;}
.y7c{bottom:699.480306pt;}
.y49{bottom:700.813639pt;}
.yfe{bottom:701.986898pt;}
.y1bf{bottom:703.417643pt;}
.y17d{bottom:703.470296pt;}
.y201{bottom:703.768962pt;}
.yc{bottom:708.854574pt;}
.y7b{bottom:716.146973pt;}
.y1be{bottom:716.745605pt;}
.y17c{bottom:716.798258pt;}
.y200{bottom:717.096924pt;}
.y48{bottom:717.480306pt;}
.yfd{bottom:718.653564pt;}
.yb{bottom:725.521240pt;}
.y1bd{bottom:730.073649pt;}
.y17b{bottom:730.126302pt;}
.y1ff{bottom:730.424967pt;}
.y7a{bottom:732.813639pt;}
.y47{bottom:734.146973pt;}
.yfc{bottom:735.320231pt;}
.ya{bottom:742.187907pt;}
.y1bc{bottom:743.401611pt;}
.y17a{bottom:743.454264pt;}
.y1fe{bottom:743.752930pt;}
.y79{bottom:749.480306pt;}
.y46{bottom:750.813639pt;}
.yfb{bottom:751.986898pt;}
.y1bb{bottom:756.729655pt;}
.y179{bottom:756.782308pt;}
.y1fd{bottom:757.080973pt;}
.y78{bottom:766.146973pt;}
.y45{bottom:767.480306pt;}
.yfa{bottom:768.653564pt;}
.y1ba{bottom:770.057617pt;}
.y178{bottom:770.110270pt;}
.y1fc{bottom:770.408936pt;}
.y9{bottom:781.461507pt;}
.y77{bottom:782.813639pt;}
.y1b9{bottom:783.385661pt;}
.y177{bottom:783.438314pt;}
.y1fb{bottom:783.736979pt;}
.y44{bottom:784.146973pt;}
.yf9{bottom:785.320231pt;}
.y37{bottom:794.780762pt;}
.y8{bottom:794.789469pt;}
.y1b8{bottom:796.713623pt;}
.y176{bottom:796.766276pt;}
.y1fa{bottom:797.064941pt;}
.y76{bottom:799.480306pt;}
.y43{bottom:800.813639pt;}
.yf8{bottom:801.986898pt;}
.ye8{bottom:802.348134pt;}
.ye4{bottom:802.359446pt;}
.ydd{bottom:802.370758pt;}
.yd8{bottom:802.382069pt;}
.ycb{bottom:802.393463pt;}
.ybc{bottom:802.416086pt;}
.y1b7{bottom:810.041667pt;}
.y175{bottom:810.094320pt;}
.yd9{bottom:810.383453pt;}
.y1f9{bottom:810.392985pt;}
.ybd{bottom:810.417470pt;}
.y75{bottom:816.146973pt;}
.y42{bottom:817.480306pt;}
.yf7{bottom:818.653564pt;}
.y1b6{bottom:823.369629pt;}
.y174{bottom:823.422282pt;}
.y1f8{bottom:823.720947pt;}
.y7{bottom:832.656169pt;}
.y74{bottom:832.813639pt;}
.y41{bottom:834.146973pt;}
.yf6{bottom:835.320231pt;}
.y1b5{bottom:836.697591pt;}
.y173{bottom:836.750326pt;}
.y1f7{bottom:837.048991pt;}
.y73{bottom:849.480306pt;}
.y1b4{bottom:850.025635pt;}
.y172{bottom:850.078288pt;}
.y1f6{bottom:850.376953pt;}
.y40{bottom:850.813639pt;}
.yf5{bottom:851.986898pt;}
.y1b3{bottom:863.353597pt;}
.y171{bottom:863.406331pt;}
.y1f5{bottom:863.704997pt;}
.y72{bottom:866.146973pt;}
.y3f{bottom:867.480306pt;}
.yf4{bottom:868.653564pt;}
.y6{bottom:872.377441pt;}
.y1b2{bottom:876.681641pt;}
.y170{bottom:876.734294pt;}
.y1f4{bottom:877.032959pt;}
.y71{bottom:882.813639pt;}
.y3e{bottom:884.146973pt;}
.yf3{bottom:885.320231pt;}
.y1b1{bottom:890.009603pt;}
.y16f{bottom:890.062256pt;}
.y1f3{bottom:890.360921pt;}
.y5{bottom:896.377441pt;}
.y70{bottom:899.480306pt;}
.y3d{bottom:900.813639pt;}
.yf2{bottom:901.986898pt;}
.y1b0{bottom:903.337646pt;}
.y16e{bottom:903.390299pt;}
.y1f2{bottom:903.688965pt;}
.y6f{bottom:916.146973pt;}
.y1af{bottom:916.665609pt;}
.y16d{bottom:916.718262pt;}
.y1f1{bottom:917.016927pt;}
.y3c{bottom:917.480306pt;}
.yf1{bottom:918.653564pt;}
.y1ae{bottom:929.993652pt;}
.y16c{bottom:930.046305pt;}
.y1f0{bottom:930.344971pt;}
.y3b{bottom:934.146973pt;}
.yf0{bottom:935.320231pt;}
.y1ad{bottom:943.321615pt;}
.y16b{bottom:943.374267pt;}
.y1ef{bottom:943.672933pt;}
.y6e{bottom:948.808268pt;}
.y3a{bottom:950.813639pt;}
.yef{bottom:951.986898pt;}
.y4{bottom:956.561849pt;}
.y1ac{bottom:956.649658pt;}
.y16a{bottom:956.702311pt;}
.y1ee{bottom:957.000977pt;}
.y6d{bottom:965.480306pt;}
.y39{bottom:967.480306pt;}
.yee{bottom:968.653564pt;}
.y1ab{bottom:969.977620pt;}
.y169{bottom:970.030273pt;}
.y1ed{bottom:970.328939pt;}
.y3{bottom:986.299154pt;}
.y1{bottom:1001.406534pt;}
.y38{bottom:1002.206530pt;}
.ya1{bottom:1002.206543pt;}
.yed{bottom:1002.206652pt;}
.ya0{bottom:1002.206663pt;}
.hc{height:29.321599pt;}
.h3{height:30.080000pt;}
.hd{height:31.733333pt;}
.h2{height:39.712000pt;}
.hb{height:41.888000pt;}
.he{height:46.376000pt;}
.h8{height:49.280000pt;}
.h4{height:49.298667pt;}
.h12{height:52.448000pt;}
.h7{height:52.746667pt;}
.ha{height:54.560000pt;}
.h11{height:55.829333pt;}
.h6{height:57.658667pt;}
.h9{height:63.296000pt;}
.h5{height:75.605333pt;}
.h10{height:95.200009pt;}
.hf{height:95.200012pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031469pt;}
.x3{left:75.717199pt;}
.x9{left:83.151454pt;}
.x6{left:86.929865pt;}
.x35{left:95.367462pt;}
.xc{left:108.352936pt;}
.xd{left:121.680929pt;}
.xe{left:144.344678pt;}
.xf{left:169.312014pt;}
.x10{left:182.640007pt;}
.x11{left:195.968009pt;}
.x12{left:212.594006pt;}
.xa{left:222.708008pt;}
.x13{left:225.922009pt;}
.x14{left:242.559338pt;}
.x15{left:255.887341pt;}
.x16{left:269.215344pt;}
.x17{left:285.852673pt;}
.x18{left:299.180676pt;}
.x19{left:315.818005pt;}
.x7{left:323.988505pt;}
.x1a{left:329.146008pt;}
.x8{left:337.692003pt;}
.x1b{left:342.474011pt;}
.x1c{left:355.802014pt;}
.x1d{left:372.439343pt;}
.x1e{left:385.767346pt;}
.x1f{left:399.095349pt;}
.x4{left:408.191442pt;}
.x20{left:412.423352pt;}
.x5{left:423.311437pt;}
.x21{left:429.060681pt;}
.x36{left:435.526123pt;}
.x22{left:442.388684pt;}
.x23{left:455.716687pt;}
.x24{left:469.044690pt;}
.x25{left:485.682019pt;}
.x26{left:499.010022pt;}
.x27{left:512.338025pt;}
.x28{left:528.964001pt;}
.x29{left:542.292004pt;}
.x2a{left:555.620007pt;}
.x2b{left:568.948010pt;}
.x2c{left:585.585339pt;}
.x2d{left:598.913342pt;}
.x2e{left:612.241345pt;}
.x2f{left:628.878674pt;}
.x30{left:642.206677pt;}
.x2{left:647.307210pt;}
.x31{left:658.912000pt;}
.x32{left:672.240002pt;}
.x33{left:685.568046pt;}
.xb{left:709.746679pt;}
.x34{left:710.970678pt;}
}




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