
    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_2d01e4994a01a0ca1bd53f31.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5c147025625ee373e26ea120.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fd6783b28d6c461f57f8bcba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.101000;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_1283f2b890f17a07a06f05a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e0b257993a368c472a72ef85.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3a72c6954b902526dbadca3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;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_bf1ab1343d5d1a27301b7795.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_569eacd9fa33804c6ec151fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.799000;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(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-69.012000px;}
.v3{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.976000px;}
.v5{vertical-align:15.840000px;}
.v4{vertical-align:17.862000px;}
.v2{vertical-align:19.800000px;}
.v1{vertical-align:31.740000px;}
.ls87{letter-spacing:-2.040000px;}
.ls5c{letter-spacing:-1.800000px;}
.ls59{letter-spacing:-1.680000px;}
.ls3e{letter-spacing:-1.440000px;}
.ls7f{letter-spacing:-1.350000px;}
.ls2b{letter-spacing:-1.320000px;}
.ls80{letter-spacing:-1.296000px;}
.ls18{letter-spacing:-1.260000px;}
.ls5a{letter-spacing:-1.176000px;}
.ls2c{letter-spacing:-1.140000px;}
.ls2d{letter-spacing:-1.080000px;}
.lsa8{letter-spacing:-1.071000px;}
.ls5d{letter-spacing:-1.020000px;}
.ls5f{letter-spacing:-0.972000px;}
.ls44{letter-spacing:-0.960000px;}
.ls68{letter-spacing:-0.918000px;}
.ls2e{letter-spacing:-0.900000px;}
.ls86{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.840000px;}
.lsf{letter-spacing:-0.816000px;}
.ls43{letter-spacing:-0.810000px;}
.ls34{letter-spacing:-0.798000px;}
.lsd{letter-spacing:-0.780000px;}
.lsb5{letter-spacing:-0.769500px;}
.ls36{letter-spacing:-0.768000px;}
.ls8{letter-spacing:-0.765000px;}
.ls60{letter-spacing:-0.756000px;}
.lsb6{letter-spacing:-0.729000px;}
.ls9{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.702000px;}
.ls85{letter-spacing:-0.680400px;}
.ls30{letter-spacing:-0.675000px;}
.ls61{letter-spacing:-0.672000px;}
.ls15{letter-spacing:-0.660000px;}
.ls55{letter-spacing:-0.648000px;}
.ls56{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.600000px;}
.ls3f{letter-spacing:-0.594000px;}
.ls47{letter-spacing:-0.576000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls48{letter-spacing:-0.528000px;}
.ls7c{letter-spacing:-0.510000px;}
.ls6d{letter-spacing:-0.486000px;}
.ls1e{letter-spacing:-0.480000px;}
.ls7d{letter-spacing:-0.456000px;}
.ls46{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.420000px;}
.ls33{letter-spacing:-0.399000px;}
.ls83{letter-spacing:-0.384000px;}
.ls79{letter-spacing:-0.378000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.357000px;}
.ls6e{letter-spacing:-0.340200px;}
.ls74{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.306000px;}
.ls1c{letter-spacing:-0.300000px;}
.ls32{letter-spacing:-0.294000px;}
.ls31{letter-spacing:-0.285000px;}
.ls75{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.255000px;}
.ls3d{letter-spacing:-0.252000px;}
.ls16{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.228000px;}
.ls49{letter-spacing:-0.225000px;}
.ls69{letter-spacing:-0.216000px;}
.lsa6{letter-spacing:-0.204000px;}
.ls45{letter-spacing:-0.192000px;}
.ls77{letter-spacing:-0.189000px;}
.lsc{letter-spacing:-0.180000px;}
.ls35{letter-spacing:-0.171000px;}
.ls7b{letter-spacing:-0.162000px;}
.lsb4{letter-spacing:-0.153000px;}
.ls6f{letter-spacing:-0.144000px;}
.ls40{letter-spacing:-0.120000px;}
.ls42{letter-spacing:-0.108000px;}
.ls38{letter-spacing:-0.096000px;}
.ls5b{letter-spacing:-0.090000px;}
.lsb9{letter-spacing:-0.081000px;}
.ls6c{letter-spacing:-0.075600px;}
.lse{letter-spacing:-0.060000px;}
.ls41{letter-spacing:-0.054000px;}
.ls5{letter-spacing:-0.051000px;}
.ls1f{letter-spacing:-0.048000px;}
.lsb8{letter-spacing:-0.040500px;}
.ls4{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.012000px;}
.ls7a{letter-spacing:0.030000px;}
.lsb0{letter-spacing:0.036000px;}
.lsb7{letter-spacing:0.040500px;}
.ls29{letter-spacing:0.048000px;}
.ls9c{letter-spacing:0.051000px;}
.ls66{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.060000px;}
.ls6a{letter-spacing:0.075600px;}
.ls5e{letter-spacing:0.084000px;}
.ls73{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.102000px;}
.ls64{letter-spacing:0.108000px;}
.ls4b{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.144000px;}
.ls63{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.192000px;}
.ls81{letter-spacing:0.216000px;}
.ls39{letter-spacing:0.228000px;}
.ls13{letter-spacing:0.240000px;}
.lsb2{letter-spacing:0.243000px;}
.ls82{letter-spacing:0.252000px;}
.lsb{letter-spacing:0.255000px;}
.ls70{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.300000px;}
.lsb1{letter-spacing:0.318000px;}
.ls71{letter-spacing:0.324000px;}
.ls78{letter-spacing:0.342000px;}
.ls9b{letter-spacing:0.357000px;}
.ls14{letter-spacing:0.360000px;}
.ls7e{letter-spacing:0.378000px;}
.ls99{letter-spacing:0.408000px;}
.ls76{letter-spacing:0.415800px;}
.ls3{letter-spacing:0.420000px;}
.ls24{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.480000px;}
.ls62{letter-spacing:0.486000px;}
.lsac{letter-spacing:0.526500px;}
.ls26{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.540000px;}
.lsad{letter-spacing:0.576000px;}
.ls72{letter-spacing:0.594000px;}
.ls3c{letter-spacing:0.600000px;}
.ls6b{letter-spacing:0.648000px;}
.ls84{letter-spacing:0.660000px;}
.ls67{letter-spacing:0.675000px;}
.ls9a{letter-spacing:0.714000px;}
.ls37{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.768000px;}
.ls65{letter-spacing:0.780000px;}
.ls3a{letter-spacing:0.810000px;}
.ls53{letter-spacing:0.840000px;}
.ls3b{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.900000px;}
.lsa7{letter-spacing:0.969000px;}
.ls1{letter-spacing:1.020000px;}
.ls4a{letter-spacing:1.080000px;}
.ls52{letter-spacing:1.140000px;}
.ls4e{letter-spacing:1.200000px;}
.ls98{letter-spacing:1.275000px;}
.lsa9{letter-spacing:1.350000px;}
.lsae{letter-spacing:1.368000px;}
.lsaf{letter-spacing:1.377000px;}
.lsaa{letter-spacing:1.404000px;}
.ls58{letter-spacing:1.440000px;}
.lsb3{letter-spacing:1.674000px;}
.ls50{letter-spacing:1.767000px;}
.ls51{letter-spacing:1.824000px;}
.ls4f{letter-spacing:1.860000px;}
.ls4d{letter-spacing:1.938000px;}
.ls4c{letter-spacing:2.040000px;}
.ls91{letter-spacing:2.550000px;}
.ls9d{letter-spacing:5.049000px;}
.ls96{letter-spacing:5.151000px;}
.ls9f{letter-spacing:6.375000px;}
.ls8f{letter-spacing:7.650000px;}
.lsa1{letter-spacing:8.925000px;}
.lsab{letter-spacing:10.047000px;}
.ls8b{letter-spacing:10.149000px;}
.ls8d{letter-spacing:10.251000px;}
.lsa2{letter-spacing:12.750000px;}
.ls20{letter-spacing:13.500000px;}
.ls57{letter-spacing:13.890000px;}
.ls9e{letter-spacing:15.351000px;}
.ls22{letter-spacing:16.020000px;}
.ls90{letter-spacing:17.850000px;}
.ls94{letter-spacing:20.349000px;}
.ls97{letter-spacing:20.451000px;}
.lsa0{letter-spacing:25.449000px;}
.ls88{letter-spacing:63.072000px;}
.ls95{letter-spacing:66.042000px;}
.ls8c{letter-spacing:69.066000px;}
.ls92{letter-spacing:72.738000px;}
.ls8e{letter-spacing:85.080000px;}
.ls93{letter-spacing:85.104000px;}
.ls89{letter-spacing:184.842000px;}
.ls8a{letter-spacing:184.896000px;}
.lsa4{letter-spacing:299.106000px;}
.lsa5{letter-spacing:326.067000px;}
.lsa3{letter-spacing:478.116000px;}
.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;}
}
.wsff{word-spacing:-27.540000px;}
.ws81{word-spacing:-16.200000px;}
.ws80{word-spacing:-16.188000px;}
.ws7d{word-spacing:-16.080000px;}
.ws83{word-spacing:-16.074000px;}
.ws82{word-spacing:-16.017000px;}
.wsc6{word-spacing:-15.780000px;}
.wsed{word-spacing:-15.660000px;}
.wse5{word-spacing:-15.600000px;}
.wse4{word-spacing:-15.540000px;}
.wsbe{word-spacing:-15.480000px;}
.wsbd{word-spacing:-15.420000px;}
.ws84{word-spacing:-15.390000px;}
.ws5b{word-spacing:-15.360000px;}
.ws32{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.240000px;}
.ws7c{word-spacing:-15.180000px;}
.ws94{word-spacing:-15.060000px;}
.ws13{word-spacing:-15.000000px;}
.ws1a{word-spacing:-14.940000px;}
.ws61{word-spacing:-14.880000px;}
.ws10d{word-spacing:-14.850000px;}
.ws17{word-spacing:-14.820000px;}
.ws19{word-spacing:-14.760000px;}
.ws5c{word-spacing:-14.700000px;}
.ws1c{word-spacing:-14.640000px;}
.ws39{word-spacing:-14.580000px;}
.ws8b{word-spacing:-14.400000px;}
.ws8a{word-spacing:-14.340000px;}
.ws14{word-spacing:-14.280000px;}
.wsc7{word-spacing:-14.250000px;}
.wsd4{word-spacing:-14.220000px;}
.ws36{word-spacing:-14.100000px;}
.ws11a{word-spacing:-14.094000px;}
.ws65{word-spacing:-14.040000px;}
.ws15{word-spacing:-14.022000px;}
.wse2{word-spacing:-13.986000px;}
.ws91{word-spacing:-13.980000px;}
.ws38{word-spacing:-13.965000px;}
.ws33{word-spacing:-13.920000px;}
.wsdd{word-spacing:-13.878000px;}
.ws3b{word-spacing:-13.851000px;}
.wsdb{word-spacing:-13.824000px;}
.wsd0{word-spacing:-13.794000px;}
.ws16{word-spacing:-13.740000px;}
.wse1{word-spacing:-13.716000px;}
.wsdc{word-spacing:-13.554000px;}
.ws62{word-spacing:-13.500000px;}
.ws64{word-spacing:-13.446000px;}
.wsda{word-spacing:-13.392000px;}
.wsd9{word-spacing:-13.338000px;}
.wsa4{word-spacing:-13.284000px;}
.wsd8{word-spacing:-13.230000px;}
.ws8e{word-spacing:-13.200000px;}
.wsc9{word-spacing:-13.176000px;}
.ws111{word-spacing:-13.107000px;}
.wsb4{word-spacing:-13.014000px;}
.ws5f{word-spacing:-12.960000px;}
.ws60{word-spacing:-12.906000px;}
.wsc8{word-spacing:-12.852000px;}
.ws7f{word-spacing:-12.798000px;}
.ws1{word-spacing:-12.750000px;}
.ws95{word-spacing:-12.744000px;}
.ws40{word-spacing:-12.720000px;}
.ws102{word-spacing:-12.699000px;}
.wseb{word-spacing:-12.636000px;}
.ws10e{word-spacing:-12.597000px;}
.wsa5{word-spacing:-12.582000px;}
.wsce{word-spacing:-12.528000px;}
.ws43{word-spacing:-12.480000px;}
.ws41{word-spacing:-12.432000px;}
.ws47{word-spacing:-12.192000px;}
.ws46{word-spacing:-12.144000px;}
.ws1e{word-spacing:-12.000000px;}
.ws1f{word-spacing:-11.952000px;}
.ws48{word-spacing:-11.904000px;}
.wse6{word-spacing:-11.856000px;}
.ws66{word-spacing:-11.568000px;}
.ws113{word-spacing:-11.502000px;}
.ws6a{word-spacing:-11.430000px;}
.ws68{word-spacing:-11.424000px;}
.ws99{word-spacing:-11.328000px;}
.wsca{word-spacing:-11.250000px;}
.ws3f{word-spacing:-11.232000px;}
.wsd5{word-spacing:-11.184000px;}
.ws8d{word-spacing:-11.160000px;}
.ws6b{word-spacing:-11.025000px;}
.wse3{word-spacing:-10.752000px;}
.ws10f{word-spacing:-10.651500px;}
.ws110{word-spacing:-10.611000px;}
.wsd2{word-spacing:-10.584000px;}
.ws35{word-spacing:-10.575000px;}
.ws34{word-spacing:-10.500000px;}
.ws117{word-spacing:-10.368000px;}
.ws5d{word-spacing:-10.248000px;}
.ws3a{word-spacing:-10.206000px;}
.ws116{word-spacing:-10.165500px;}
.ws114{word-spacing:-10.125000px;}
.ws92{word-spacing:-10.080000px;}
.ws11c{word-spacing:-10.044000px;}
.wsbf{word-spacing:-9.865800px;}
.wsa7{word-spacing:-9.525600px;}
.ws7e{word-spacing:-9.450000px;}
.ws115{word-spacing:-9.396000px;}
.wsb3{word-spacing:-9.374400px;}
.ws112{word-spacing:-9.355500px;}
.ws8f{word-spacing:-9.240000px;}
.wse7{word-spacing:-8.400000px;}
.ws12{word-spacing:-8.016000px;}
.wsf{word-spacing:-0.720000px;}
.wscd{word-spacing:-0.702000px;}
.ws11{word-spacing:-0.660000px;}
.wsb1{word-spacing:-0.648000px;}
.wsa{word-spacing:-0.624000px;}
.ws2{word-spacing:-0.612000px;}
.ws27{word-spacing:-0.600000px;}
.ws86{word-spacing:-0.594000px;}
.ws42{word-spacing:-0.576000px;}
.ws8{word-spacing:-0.561000px;}
.wse{word-spacing:-0.540000px;}
.ws57{word-spacing:-0.528000px;}
.ws119{word-spacing:-0.510000px;}
.wsde{word-spacing:-0.486000px;}
.ws21{word-spacing:-0.480000px;}
.ws103{word-spacing:-0.459000px;}
.ws76{word-spacing:-0.432000px;}
.ws2f{word-spacing:-0.420000px;}
.ws7{word-spacing:-0.408000px;}
.ws7b{word-spacing:-0.384000px;}
.wsae{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.360000px;}
.ws4{word-spacing:-0.357000px;}
.ws79{word-spacing:-0.336000px;}
.wsac{word-spacing:-0.324000px;}
.ws3{word-spacing:-0.306000px;}
.ws2e{word-spacing:-0.300000px;}
.ws49{word-spacing:-0.288000px;}
.ws87{word-spacing:-0.270000px;}
.ws4e{word-spacing:-0.252000px;}
.ws2b{word-spacing:-0.240000px;}
.ws52{word-spacing:-0.228000px;}
.ws7a{word-spacing:-0.225000px;}
.ws9f{word-spacing:-0.216000px;}
.ws78{word-spacing:-0.192000px;}
.ws28{word-spacing:-0.180000px;}
.ws53{word-spacing:-0.168000px;}
.wsa0{word-spacing:-0.162000px;}
.wsd6{word-spacing:-0.153000px;}
.ws18{word-spacing:-0.120000px;}
.ws6e{word-spacing:-0.108000px;}
.ws26{word-spacing:-0.060000px;}
.ws5e{word-spacing:-0.054000px;}
.ws88{word-spacing:-0.051000px;}
.ws0{word-spacing:0.000000px;}
.wsef{word-spacing:0.051000px;}
.wsa1{word-spacing:0.054000px;}
.wsc1{word-spacing:0.060000px;}
.ws9c{word-spacing:0.090000px;}
.ws6{word-spacing:0.096000px;}
.ws5{word-spacing:0.102000px;}
.wse0{word-spacing:0.108000px;}
.ws30{word-spacing:0.120000px;}
.wsd7{word-spacing:0.144000px;}
.ws74{word-spacing:0.162000px;}
.ws24{word-spacing:0.180000px;}
.wsbb{word-spacing:0.192000px;}
.ws22{word-spacing:0.240000px;}
.ws106{word-spacing:0.255000px;}
.wsab{word-spacing:0.270000px;}
.wsa2{word-spacing:0.288000px;}
.ws2c{word-spacing:0.300000px;}
.wsc{word-spacing:0.306000px;}
.ws9e{word-spacing:0.324000px;}
.ws71{word-spacing:0.342000px;}
.ws4d{word-spacing:0.360000px;}
.ws85{word-spacing:0.378000px;}
.ws107{word-spacing:0.408000px;}
.ws4c{word-spacing:0.420000px;}
.ws55{word-spacing:0.432000px;}
.ws25{word-spacing:0.480000px;}
.ws72{word-spacing:0.486000px;}
.ws63{word-spacing:0.540000px;}
.wsf1{word-spacing:0.561000px;}
.wse9{word-spacing:0.594000px;}
.ws2a{word-spacing:0.600000px;}
.ws6d{word-spacing:0.648000px;}
.ws89{word-spacing:0.660000px;}
.ws58{word-spacing:0.672000px;}
.wsba{word-spacing:0.702000px;}
.ws4f{word-spacing:0.720000px;}
.wsaa{word-spacing:0.735000px;}
.wsc2{word-spacing:0.756000px;}
.ws104{word-spacing:0.765000px;}
.ws56{word-spacing:0.768000px;}
.wsb8{word-spacing:0.780000px;}
.wsad{word-spacing:0.810000px;}
.wsd1{word-spacing:0.813000px;}
.ws6c{word-spacing:0.840000px;}
.wse8{word-spacing:0.864000px;}
.wsf0{word-spacing:0.867000px;}
.ws70{word-spacing:0.882000px;}
.ws75{word-spacing:0.900000px;}
.wsdf{word-spacing:0.918000px;}
.wsc5{word-spacing:0.960000px;}
.ws9{word-spacing:0.969000px;}
.wscf{word-spacing:0.972000px;}
.ws59{word-spacing:1.008000px;}
.ws9d{word-spacing:1.020000px;}
.wscc{word-spacing:1.026000px;}
.ws77{word-spacing:1.056000px;}
.ws10{word-spacing:1.080000px;}
.wscb{word-spacing:1.083000px;}
.wsc3{word-spacing:1.104000px;}
.wsb{word-spacing:1.122000px;}
.wsb9{word-spacing:1.134000px;}
.ws31{word-spacing:1.140000px;}
.ws5a{word-spacing:1.152000px;}
.ws108{word-spacing:1.173000px;}
.wsaf{word-spacing:1.188000px;}
.ws6f{word-spacing:1.197000px;}
.ws29{word-spacing:1.200000px;}
.ws109{word-spacing:1.224000px;}
.wsa9{word-spacing:1.230000px;}
.wsb0{word-spacing:1.242000px;}
.wsa3{word-spacing:1.248000px;}
.ws2d{word-spacing:1.260000px;}
.wsa8{word-spacing:1.290000px;}
.ws73{word-spacing:1.296000px;}
.wsd{word-spacing:1.320000px;}
.ws51{word-spacing:1.368000px;}
.ws54{word-spacing:1.380000px;}
.ws23{word-spacing:1.440000px;}
.ws50{word-spacing:1.500000px;}
.ws45{word-spacing:1.575000px;}
.ws3c{word-spacing:1.920000px;}
.ws69{word-spacing:2.676000px;}
.ws11b{word-spacing:2.734500px;}
.ws105{word-spacing:2.754000px;}
.ws118{word-spacing:2.856000px;}
.ws4b{word-spacing:2.928000px;}
.ws4a{word-spacing:2.976000px;}
.ws97{word-spacing:3.000000px;}
.ws9b{word-spacing:3.048000px;}
.wsb7{word-spacing:3.096000px;}
.wsb6{word-spacing:3.168000px;}
.ws37{word-spacing:3.360000px;}
.wsb2{word-spacing:3.376800px;}
.wsc0{word-spacing:3.537000px;}
.ws44{word-spacing:3.648000px;}
.wsb5{word-spacing:3.750600px;}
.wsec{word-spacing:4.062000px;}
.wsea{word-spacing:4.111200px;}
.ws9a{word-spacing:4.260000px;}
.wsc4{word-spacing:4.320000px;}
.ws8c{word-spacing:4.368000px;}
.wsbc{word-spacing:4.500000px;}
.ws90{word-spacing:5.676000px;}
.ws93{word-spacing:5.808000px;}
.wsa6{word-spacing:5.928000px;}
.wsf2{word-spacing:10.740000px;}
.wsfb{word-spacing:11.940000px;}
.wsf7{word-spacing:11.958000px;}
.wsf8{word-spacing:12.840000px;}
.wsf4{word-spacing:14.280000px;}
.wsf9{word-spacing:15.000000px;}
.wsfe{word-spacing:15.006000px;}
.ws98{word-spacing:17.040000px;}
.ws96{word-spacing:18.000000px;}
.wsd3{word-spacing:25.020000px;}
.ws1d{word-spacing:36.000000px;}
.ws3e{word-spacing:42.000000px;}
.ws67{word-spacing:42.720000px;}
.wsee{word-spacing:71.580000px;}
.wsf5{word-spacing:190.386000px;}
.ws100{word-spacing:201.849000px;}
.ws10a{word-spacing:208.866000px;}
.wsf6{word-spacing:215.121000px;}
.ws10c{word-spacing:247.197000px;}
.wsfc{word-spacing:247.731000px;}
.ws10b{word-spacing:275.502000px;}
.wsfd{word-spacing:343.068000px;}
.wsfa{word-spacing:367.977000px;}
.ws3d{word-spacing:400.080000px;}
.ws101{word-spacing:415.776000px;}
.wsf3{word-spacing:433.758000px;}
._a{margin-left:-28.500000px;}
._11{margin-left:-23.001000px;}
._16{margin-left:-21.960000px;}
._13{margin-left:-19.584000px;}
._14{margin-left:-18.309000px;}
._8{margin-left:-6.600000px;}
._6{margin-left:-5.280000px;}
._1{margin-left:-3.519000px;}
._4{margin-left:-2.505000px;}
._0{margin-left:-1.275000px;}
._5{width:1.020000px;}
._b{width:2.907000px;}
._c{width:5.358000px;}
._9{width:6.660000px;}
._f{width:11.748000px;}
._10{width:13.878000px;}
._12{width:15.300000px;}
._29{width:17.799000px;}
._17{width:20.124000px;}
._15{width:21.216000px;}
._22{width:26.946000px;}
._21{width:28.512000px;}
._e{width:30.000000px;}
._3{width:48.102000px;}
._d{width:54.000000px;}
._2{width:66.000000px;}
._1d{width:141.885000px;}
._31{width:162.201000px;}
._1b{width:168.609000px;}
._28{width:170.688000px;}
._1f{width:175.290000px;}
._2f{width:177.756000px;}
._24{width:183.543000px;}
._2d{width:204.714000px;}
._20{width:207.114000px;}
._19{width:211.908000px;}
._1a{width:214.101000px;}
._1e{width:239.550000px;}
._2b{width:246.687000px;}
._1c{width:253.779000px;}
._18{width:264.693000px;}
._33{width:275.730000px;}
._2a{width:280.137000px;}
._2c{width:284.145000px;}
._27{width:303.603000px;}
._26{width:306.891000px;}
._32{width:311.124000px;}
._30{width:336.573000px;}
._2e{width:347.946000px;}
._25{width:366.663000px;}
._23{width:475.308000px;}
._7{width:866.889000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:25.500000px;}
.fsb{font-size:33.600000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:37.800000px;}
.fsd{font-size:40.500000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:67.200000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y14a{bottom:54.384000px;}
.y19d{bottom:54.390000px;}
.y16a{bottom:54.396000px;}
.y192{bottom:54.432000px;}
.y60{bottom:54.441000px;}
.y1a{bottom:54.615000px;}
.y1fa{bottom:54.882750px;}
.y4d{bottom:54.885000px;}
.y81{bottom:54.936000px;}
.y126{bottom:55.005000px;}
.yb1{bottom:55.065000px;}
.yd6{bottom:55.281000px;}
.y116{bottom:55.386000px;}
.yf6{bottom:55.419000px;}
.y98{bottom:55.500000px;}
.y21c{bottom:57.840000px;}
.y1ca{bottom:59.202750px;}
.y149{bottom:68.646000px;}
.y169{bottom:68.652000px;}
.y191{bottom:68.676000px;}
.y5f{bottom:68.697000px;}
.y80{bottom:69.174000px;}
.y125{bottom:69.249000px;}
.yb0{bottom:69.321000px;}
.yd5{bottom:69.519000px;}
.y115{bottom:69.636000px;}
.yf5{bottom:69.687000px;}
.y1f9{bottom:72.133500px;}
.y4c{bottom:72.135000px;}
.y21b{bottom:73.594500px;}
.y1c9{bottom:76.453500px;}
.y19c{bottom:82.890000px;}
.y148{bottom:82.896000px;}
.y190{bottom:82.932000px;}
.y5e{bottom:82.941000px;}
.y7f{bottom:83.436000px;}
.y124{bottom:83.505000px;}
.yaf{bottom:83.565000px;}
.yd4{bottom:83.781000px;}
.y114{bottom:83.880000px;}
.yf4{bottom:83.931000px;}
.y21a{bottom:89.349000px;}
.y1f8{bottom:89.384250px;}
.y4b{bottom:89.385000px;}
.y1c8{bottom:93.704250px;}
.y19b{bottom:97.134000px;}
.y147{bottom:97.140000px;}
.y18f{bottom:97.176000px;}
.y5d{bottom:97.197000px;}
.y7e{bottom:97.698000px;}
.yae{bottom:97.809000px;}
.yd3{bottom:98.025000px;}
.y113{bottom:98.136000px;}
.yf3{bottom:98.175000px;}
.y1f7{bottom:104.391000px;}
.y219{bottom:105.103500px;}
.y4a{bottom:106.635000px;}
.y19{bottom:107.580000px;}
.y1c7{bottom:110.955000px;}
.y19a{bottom:111.390000px;}
.y18e{bottom:111.420000px;}
.y5c{bottom:111.441000px;}
.y7d{bottom:111.942000px;}
.yad{bottom:112.083000px;}
.y112{bottom:112.380000px;}
.yf2{bottom:112.431000px;}
.y218{bottom:120.858000px;}
.y97{bottom:121.635000px;}
.y123{bottom:123.130500px;}
.y49{bottom:123.885000px;}
.y18{bottom:124.830000px;}
.y5b{bottom:125.685000px;}
.y7c{bottom:126.198000px;}
.yac{bottom:126.327000px;}
.yf1{bottom:126.681000px;}
.y1c6{bottom:128.205000px;}
.y217{bottom:136.612500px;}
.yd2{bottom:137.760000px;}
.y122{bottom:138.880500px;}
.y96{bottom:138.885000px;}
.y5a{bottom:139.941000px;}
.y7b{bottom:140.442000px;}
.yab{bottom:140.571000px;}
.yf0{bottom:140.925000px;}
.y17{bottom:142.080000px;}
.y168{bottom:147.108000px;}
.y146{bottom:148.635000px;}
.y1f6{bottom:151.836000px;}
.y111{bottom:152.010000px;}
.y216{bottom:152.367000px;}
.y1c5{bottom:154.080000px;}
.y59{bottom:154.185000px;}
.y121{bottom:154.635000px;}
.y7a{bottom:154.686000px;}
.yaa{bottom:154.827000px;}
.yd1{bottom:155.010000px;}
.yef{bottom:155.181000px;}
.y95{bottom:156.135000px;}
.y48{bottom:158.385000px;}
.y16{bottom:159.330000px;}
.y167{bottom:162.862500px;}
.y145{bottom:165.885000px;}
.y215{bottom:168.121500px;}
.y58{bottom:168.429000px;}
.y79{bottom:168.942000px;}
.ya9{bottom:169.071000px;}
.y110{bottom:169.260000px;}
.yee{bottom:169.425000px;}
.y18d{bottom:169.635000px;}
.y1f5{bottom:171.330000px;}
.yd0{bottom:172.260000px;}
.y94{bottom:173.385000px;}
.y47{bottom:175.635000px;}
.y15{bottom:176.580000px;}
.y166{bottom:178.617000px;}
.y57{bottom:182.685000px;}
.y144{bottom:183.135000px;}
.y78{bottom:183.186000px;}
.ya8{bottom:183.315000px;}
.y214{bottom:183.876000px;}
.y1f4{bottom:186.336000px;}
.y10f{bottom:186.510000px;}
.y18c{bottom:186.885000px;}
.y120{bottom:187.635000px;}
.y1f3{bottom:188.580000px;}
.ycf{bottom:189.510000px;}
.y93{bottom:190.635000px;}
.y46{bottom:192.885000px;}
.y14{bottom:193.830000px;}
.y165{bottom:194.371500px;}
.y56{bottom:196.929000px;}
.y77{bottom:197.430000px;}
.ya7{bottom:197.559000px;}
.y213{bottom:199.630500px;}
.y143{bottom:200.385000px;}
.y1c4{bottom:201.329250px;}
.y1c3{bottom:203.586000px;}
.y10e{bottom:203.760000px;}
.y18b{bottom:204.135000px;}
.y11f{bottom:204.885000px;}
.y1f2{bottom:205.827000px;}
.y1c2{bottom:205.830000px;}
.yce{bottom:206.760000px;}
.y92{bottom:207.885000px;}
.y164{bottom:210.126000px;}
.y45{bottom:210.135000px;}
.y55{bottom:211.179000px;}
.ya6{bottom:211.809000px;}
.y212{bottom:215.380500px;}
.yed{bottom:216.510000px;}
.y142{bottom:217.635000px;}
.y18a{bottom:221.385000px;}
.y1c1{bottom:223.077750px;}
.y1f1{bottom:223.080000px;}
.y91{bottom:225.135000px;}
.y54{bottom:225.423000px;}
.y163{bottom:225.880500px;}
.ya5{bottom:226.065000px;}
.y44{bottom:227.385000px;}
.y211{bottom:231.130500px;}
.yec{bottom:233.760000px;}
.y141{bottom:234.885000px;}
.y1f0{bottom:238.086000px;}
.y10d{bottom:238.255500px;}
.y189{bottom:238.635000px;}
.y11e{bottom:239.353500px;}
.y53{bottom:239.679000px;}
.y1c0{bottom:240.328500px;}
.y1ef{bottom:240.330000px;}
.ycd{bottom:241.255500px;}
.y162{bottom:241.635000px;}
.y76{bottom:242.385000px;}
.y43{bottom:244.635000px;}
.y210{bottom:246.876000px;}
.y52{bottom:253.935000px;}
.y10c{bottom:254.005500px;}
.y11d{bottom:255.108000px;}
.y188{bottom:255.885000px;}
.ycc{bottom:257.010000px;}
.y1ee{bottom:257.577000px;}
.y1bf{bottom:257.579250px;}
.y13{bottom:258.090000px;}
.y75{bottom:259.635000px;}
.y42{bottom:261.885000px;}
.y20f{bottom:262.630500px;}
.y51{bottom:268.179000px;}
.yeb{bottom:268.260000px;}
.y140{bottom:269.385000px;}
.y10b{bottom:269.760000px;}
.y11c{bottom:270.862500px;}
.y1be{bottom:272.580000px;}
.y12{bottom:273.102000px;}
.y187{bottom:273.135000px;}
.y161{bottom:274.635000px;}
.y1bd{bottom:274.830000px;}
.y74{bottom:276.885000px;}
.y20e{bottom:278.376000px;}
.y41{bottom:279.135000px;}
.ya4{bottom:279.510000px;}
.y50{bottom:282.435000px;}
.y11b{bottom:286.617000px;}
.y13f{bottom:286.635000px;}
.y11{bottom:288.096000px;}
.ycb{bottom:290.010000px;}
.y160{bottom:291.885000px;}
.y1bc{bottom:292.077750px;}
.y20d{bottom:294.130500px;}
.y73{bottom:294.135000px;}
.y40{bottom:296.385000px;}
.ya3{bottom:296.760000px;}
.yea{bottom:301.260000px;}
.y11a{bottom:302.371500px;}
.y10a{bottom:302.760000px;}
.y1ed{bottom:302.766000px;}
.y10{bottom:303.113250px;}
.y13e{bottom:303.885000px;}
.y1ec{bottom:305.010000px;}
.yca{bottom:307.260000px;}
.y186{bottom:307.635000px;}
.y1bb{bottom:309.328500px;}
.y20c{bottom:309.871500px;}
.y72{bottom:311.385000px;}
.y3f{bottom:313.635000px;}
.ya2{bottom:314.010000px;}
.yf{bottom:318.107250px;}
.y119{bottom:318.126000px;}
.ye9{bottom:318.510000px;}
.y109{bottom:320.010000px;}
.y1eb{bottom:320.016000px;}
.y13d{bottom:321.135000px;}
.y1ea{bottom:322.260000px;}
.yc9{bottom:324.510000px;}
.y185{bottom:324.885000px;}
.y20b{bottom:325.626000px;}
.y15f{bottom:326.350500px;}
.y1ba{bottom:326.579250px;}
.y71{bottom:328.635000px;}
.y3e{bottom:330.885000px;}
.ye{bottom:333.101250px;}
.y118{bottom:333.880500px;}
.ye8{bottom:335.760000px;}
.y108{bottom:337.260000px;}
.y1e9{bottom:337.266000px;}
.y199{bottom:338.385000px;}
.y1e8{bottom:339.510000px;}
.y20a{bottom:341.380500px;}
.y1b9{bottom:341.580000px;}
.y15e{bottom:342.105000px;}
.y184{bottom:342.135000px;}
.y1b8{bottom:343.830000px;}
.y90{bottom:345.885000px;}
.yd{bottom:348.095250px;}
.y3d{bottom:348.135000px;}
.ya1{bottom:348.501000px;}
.y117{bottom:349.635000px;}
.ye7{bottom:353.010000px;}
.y1e7{bottom:354.516000px;}
.y13c{bottom:355.635000px;}
.y1e6{bottom:356.760000px;}
.y209{bottom:357.130500px;}
.y15d{bottom:357.859500px;}
.yc8{bottom:359.001000px;}
.y183{bottom:359.385000px;}
.y1b7{bottom:361.077750px;}
.yc{bottom:363.089250px;}
.y70{bottom:363.106500px;}
.y8f{bottom:363.135000px;}
.ya0{bottom:364.255500px;}
.y3c{bottom:365.385000px;}
.ye6{bottom:370.260000px;}
.y107{bottom:371.745000px;}
.y1e5{bottom:371.766000px;}
.y208{bottom:372.876000px;}
.y13b{bottom:372.885000px;}
.y15c{bottom:373.614000px;}
.y1e4{bottom:374.010000px;}
.yc7{bottom:374.755500px;}
.y1b6{bottom:378.328500px;}
.y6f{bottom:378.861000px;}
.y9f{bottom:380.010000px;}
.y8e{bottom:380.385000px;}
.y3b{bottom:382.635000px;}
.y106{bottom:387.499500px;}
.ye5{bottom:387.510000px;}
.y207{bottom:388.630500px;}
.y1e3{bottom:389.016000px;}
.y15b{bottom:389.368500px;}
.y13a{bottom:390.135000px;}
.yc6{bottom:390.510000px;}
.y1e2{bottom:391.260000px;}
.yb{bottom:393.090000px;}
.y182{bottom:393.871500px;}
.y6e{bottom:394.615500px;}
.y1b5{bottom:395.579250px;}
.y3a{bottom:399.885000px;}
.y105{bottom:403.254000px;}
.y206{bottom:404.376000px;}
.y15a{bottom:405.123000px;}
.y1e1{bottom:406.266000px;}
.y139{bottom:407.385000px;}
.y1e0{bottom:408.510000px;}
.y181{bottom:409.626000px;}
.y6d{bottom:410.370000px;}
.y1b4{bottom:412.830000px;}
.y9e{bottom:413.010000px;}
.y8d{bottom:414.876000px;}
.y39{bottom:417.135000px;}
.y205{bottom:420.130500px;}
.y159{bottom:420.877500px;}
.ye4{bottom:422.005500px;}
.yc5{bottom:423.510000px;}
.y1df{bottom:423.516000px;}
.y138{bottom:424.635000px;}
.y180{bottom:425.380500px;}
.y1de{bottom:425.760000px;}
.y6c{bottom:426.124500px;}
.y104{bottom:427.635000px;}
.ya{bottom:429.090750px;}
.y1b3{bottom:430.079250px;}
.y9d{bottom:430.260000px;}
.y8c{bottom:430.630500px;}
.y38{bottom:434.385000px;}
.y204{bottom:435.885000px;}
.y158{bottom:436.632000px;}
.ye3{bottom:437.751000px;}
.yc4{bottom:440.760000px;}
.y1dd{bottom:440.766000px;}
.y17f{bottom:441.135000px;}
.y6b{bottom:441.879000px;}
.y137{bottom:441.885000px;}
.y1dc{bottom:443.010000px;}
.y8b{bottom:446.376000px;}
.y1b2{bottom:447.330000px;}
.y9c{bottom:447.510000px;}
.y9{bottom:450.108000px;}
.y4f{bottom:451.635000px;}
.y157{bottom:452.386500px;}
.ye2{bottom:453.505500px;}
.yc3{bottom:458.010000px;}
.y1db{bottom:458.016000px;}
.y136{bottom:459.135000px;}
.y1da{bottom:460.260000px;}
.y103{bottom:460.635000px;}
.y8a{bottom:462.130500px;}
.y1b1{bottom:464.580000px;}
.y8{bottom:465.102000px;}
.y6a{bottom:466.260000px;}
.y156{bottom:468.141000px;}
.y37{bottom:468.885000px;}
.ye1{bottom:469.260000px;}
.y17e{bottom:474.135000px;}
.yc2{bottom:475.260000px;}
.y1d9{bottom:475.266000px;}
.y135{bottom:476.385000px;}
.y1d8{bottom:477.510000px;}
.y89{bottom:477.874500px;}
.y102{bottom:477.885000px;}
.y7{bottom:480.096000px;}
.y9b{bottom:481.999500px;}
.y36{bottom:486.135000px;}
.y17d{bottom:491.385000px;}
.yc1{bottom:492.510000px;}
.y1d7{bottom:492.516000px;}
.y88{bottom:493.629000px;}
.y134{bottom:493.635000px;}
.y1b0{bottom:494.760000px;}
.y6{bottom:495.114000px;}
.y101{bottom:495.135000px;}
.y9a{bottom:497.754000px;}
.y69{bottom:499.260000px;}
.y155{bottom:501.126000px;}
.ye0{bottom:502.260000px;}
.y35{bottom:503.385000px;}
.y17c{bottom:508.635000px;}
.yc0{bottom:509.760000px;}
.y5{bottom:510.108000px;}
.y133{bottom:510.885000px;}
.y203{bottom:512.008500px;}
.y1af{bottom:512.010000px;}
.y100{bottom:512.385000px;}
.y68{bottom:516.510000px;}
.y154{bottom:516.880500px;}
.y87{bottom:518.010000px;}
.ydf{bottom:519.510000px;}
.y34{bottom:520.635000px;}
.y99{bottom:522.135000px;}
.y4{bottom:525.102000px;}
.y17b{bottom:525.885000px;}
.ybf{bottom:527.010000px;}
.y202{bottom:527.015250px;}
.y1ae{bottom:527.016000px;}
.y132{bottom:528.135000px;}
.y201{bottom:529.259250px;}
.y1ad{bottom:529.260000px;}
.y153{bottom:532.635000px;}
.y67{bottom:533.760000px;}
.yde{bottom:536.760000px;}
.y33{bottom:537.885000px;}
.y3{bottom:540.096000px;}
.y17a{bottom:543.135000px;}
.y200{bottom:544.266000px;}
.y131{bottom:545.385000px;}
.y1ff{bottom:546.510000px;}
.yff{bottom:546.874500px;}
.y66{bottom:551.010000px;}
.ydd{bottom:554.010000px;}
.y2{bottom:555.090000px;}
.y32{bottom:555.135000px;}
.y1ac{bottom:557.210250px;}
.y1ab{bottom:559.454250px;}
.ybe{bottom:561.483000px;}
.yfe{bottom:562.629000px;}
.y198{bottom:562.635000px;}
.y1fe{bottom:563.758500px;}
.y152{bottom:565.635000px;}
.y65{bottom:568.260000px;}
.y31{bottom:572.385000px;}
.y1aa{bottom:576.705000px;}
.ybd{bottom:577.237500px;}
.y179{bottom:577.567500px;}
.y130{bottom:579.885000px;}
.y1fd{bottom:581.009250px;}
.y151{bottom:582.885000px;}
.y1{bottom:585.090000px;}
.y64{bottom:585.510000px;}
.yfd{bottom:587.010000px;}
.ydc{bottom:588.505500px;}
.y1d6{bottom:589.626000px;}
.y30{bottom:589.635000px;}
.ybc{bottom:592.992000px;}
.y178{bottom:593.322000px;}
.y1a9{bottom:593.952750px;}
.y12f{bottom:597.135000px;}
.y1fc{bottom:598.260000px;}
.y150{bottom:600.135000px;}
.y86{bottom:602.760000px;}
.ydb{bottom:604.255500px;}
.y1d5{bottom:606.876750px;}
.y2f{bottom:606.885000px;}
.ybb{bottom:608.746500px;}
.y177{bottom:609.076500px;}
.y1a8{bottom:611.203500px;}
.y12e{bottom:614.385000px;}
.y14f{bottom:617.385000px;}
.y63{bottom:619.999500px;}
.y85{bottom:620.010000px;}
.y22{bottom:623.670000px;}
.y1d4{bottom:624.127500px;}
.y2e{bottom:624.135000px;}
.yba{bottom:624.501000px;}
.y176{bottom:624.831000px;}
.y1a7{bottom:628.454250px;}
.y12d{bottom:631.635000px;}
.y62{bottom:635.754000px;}
.yfc{bottom:637.260000px;}
.yb9{bottom:640.255500px;}
.y175{bottom:640.585500px;}
.y1d3{bottom:641.378250px;}
.y2d{bottom:641.385000px;}
.y1a6{bottom:643.461000px;}
.y1a5{bottom:645.705000px;}
.y12c{bottom:648.885000px;}
.y14e{bottom:651.882000px;}
.yda{bottom:653.010000px;}
.y84{bottom:654.499500px;}
.yfb{bottom:654.510000px;}
.yb8{bottom:656.010000px;}
.y174{bottom:656.340000px;}
.y1d2{bottom:658.629000px;}
.y2c{bottom:658.635000px;}
.y61{bottom:660.135000px;}
.y1a4{bottom:662.954250px;}
.y12b{bottom:666.135000px;}
.y14d{bottom:667.636500px;}
.y83{bottom:670.254000px;}
.yd9{bottom:670.260000px;}
.yfa{bottom:671.760000px;}
.y173{bottom:672.094500px;}
.y1d1{bottom:675.879750px;}
.y2b{bottom:675.885000px;}
.y1a3{bottom:680.205000px;}
.y197{bottom:683.385000px;}
.y14c{bottom:683.391000px;}
.y172{bottom:687.849000px;}
.yb7{bottom:689.010000px;}
.y1d0{bottom:693.130500px;}
.y2a{bottom:693.135000px;}
.y82{bottom:694.635000px;}
.y21{bottom:694.833000px;}
.y1a2{bottom:695.211000px;}
.y1a1{bottom:697.449000px;}
.y12a{bottom:700.626000px;}
.y196{bottom:700.635000px;}
.y171{bottom:703.603500px;}
.yd8{bottom:704.754000px;}
.yb6{bottom:706.260000px;}
.y20{bottom:709.089000px;}
.y1cf{bottom:710.381250px;}
.y29{bottom:710.385000px;}
.y14b{bottom:716.371500px;}
.y129{bottom:716.380500px;}
.y170{bottom:719.358000px;}
.y1f{bottom:723.345000px;}
.yf9{bottom:723.499500px;}
.yb5{bottom:723.510000px;}
.y1a0{bottom:725.391000px;}
.y1ce{bottom:727.632000px;}
.y28{bottom:727.635000px;}
.yd7{bottom:729.135000px;}
.y128{bottom:732.126000px;}
.y16f{bottom:735.112500px;}
.y195{bottom:735.121500px;}
.yf8{bottom:739.254000px;}
.y1e{bottom:741.345000px;}
.y19f{bottom:742.635000px;}
.y1cd{bottom:744.882750px;}
.y27{bottom:744.885000px;}
.y127{bottom:747.880500px;}
.y16e{bottom:750.867000px;}
.y194{bottom:750.876000px;}
.y21d{bottom:750.880500px;}
.yb4{bottom:757.995000px;}
.y19e{bottom:762.132000px;}
.y1cc{bottom:762.133500px;}
.y4e{bottom:762.135000px;}
.yf7{bottom:763.635000px;}
.y16d{bottom:766.621500px;}
.y193{bottom:766.630500px;}
.yb3{bottom:773.749500px;}
.y1cb{bottom:779.384250px;}
.y26{bottom:779.385000px;}
.y16c{bottom:782.376000px;}
.y1d{bottom:786.345000px;}
.yb2{bottom:789.504000px;}
.y1fb{bottom:796.632000px;}
.y25{bottom:796.635000px;}
.y16b{bottom:798.130500px;}
.y1c{bottom:810.345000px;}
.y24{bottom:813.885000px;}
.y1b{bottom:861.345000px;}
.y23{bottom:924.000000px;}
.h1f{height:21.700500px;}
.h20{height:43.401000px;}
.h9{height:47.085938px;}
.h4{height:47.109375px;}
.hb{height:47.133375px;}
.h5{height:48.375000px;}
.h1a{height:48.768563px;}
.h1d{height:50.018555px;}
.h2{height:50.053711px;}
.h1{height:51.398438px;}
.h1e{height:52.377000px;}
.h1c{height:52.971680px;}
.h8{height:52.998047px;}
.h24{height:53.010047px;}
.h15{height:53.016047px;}
.hd{height:53.034047px;}
.h25{height:53.052047px;}
.h10{height:54.918633px;}
.h17{height:54.930633px;}
.h12{height:54.936633px;}
.h11{height:54.942633px;}
.h13{height:54.954633px;}
.hc{height:54.960633px;}
.h16{height:54.972633px;}
.he{height:54.978633px;}
.hf{height:55.026633px;}
.h14{height:55.044633px;}
.h18{height:55.056633px;}
.h19{height:55.188633px;}
.h3{height:58.886719px;}
.h1b{height:60.468750px;}
.ha{height:61.020703px;}
.h22{height:61.404000px;}
.h21{height:61.947680px;}
.h23{height:61.974047px;}
.h6{height:94.218750px;}
.h7{height:97.693125px;}
.h0{height:894.000000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x4{left:4.500000px;}
.x1{left:74.700000px;}
.x5{left:75.915000px;}
.x29{left:82.665000px;}
.x50{left:89.691000px;}
.x51{left:90.900000px;}
.x9{left:91.950000px;}
.x8{left:93.165000px;}
.x6{left:97.212000px;}
.x7{left:98.415000px;}
.xa{left:100.201500px;}
.x44{left:101.656500px;}
.x43{left:107.915250px;}
.x4e{left:112.740000px;}
.x42{left:123.495750px;}
.x20{left:124.980000px;}
.x11{left:131.730000px;}
.x2a{left:137.622750px;}
.x2c{left:139.637250px;}
.x47{left:146.766000px;}
.x4b{left:148.653750px;}
.x2d{left:153.458250px;}
.x33{left:154.503750px;}
.x10{left:159.750000px;}
.x21{left:161.415000px;}
.x22{left:166.800000px;}
.x1b{left:174.463500px;}
.x23{left:177.982500px;}
.x4f{left:180.825000px;}
.x1c{left:182.113500px;}
.x24{left:185.224500px;}
.x13{left:188.259000px;}
.x25{left:191.535750px;}
.x14{left:195.666750px;}
.x40{left:197.139750px;}
.x26{left:198.153000px;}
.x15{left:203.380500px;}
.x1f{left:204.900000px;}
.x16{left:211.030500px;}
.xb{left:212.040000px;}
.x3d{left:213.357750px;}
.xd{left:214.817250px;}
.xc{left:216.780000px;}
.x17{left:220.733250px;}
.x4c{left:221.775000px;}
.x4d{left:248.502000px;}
.x18{left:251.027250px;}
.x49{left:260.039250px;}
.x1d{left:261.648000px;}
.x19{left:264.210750px;}
.x1e{left:267.423750px;}
.x1a{left:271.503750px;}
.xe{left:288.142500px;}
.x48{left:297.129000px;}
.xf{left:299.400750px;}
.x12{left:301.224000px;}
.x45{left:309.802500px;}
.x34{left:317.656500px;}
.x35{left:323.113500px;}
.x41{left:330.954750px;}
.x39{left:335.838000px;}
.x2e{left:340.236750px;}
.x2f{left:346.522500px;}
.x27{left:354.593250px;}
.x3a{left:357.054000px;}
.x36{left:365.456250px;}
.x30{left:367.700250px;}
.x2b{left:370.467000px;}
.x3e{left:374.355750px;}
.x37{left:385.206000px;}
.x28{left:401.194500px;}
.x3{left:408.120000px;}
.x31{left:412.248750px;}
.x32{left:418.700250px;}
.x2{left:424.380000px;}
.x46{left:428.256000px;}
.x38{left:434.650500px;}
.x4a{left:438.940500px;}
.x3f{left:443.562750px;}
.x3b{left:447.987000px;}
.x3c{left:465.671250px;}
@media print{
.v7{vertical-align:-61.344000pt;}
.v3{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.978667pt;}
.v5{vertical-align:14.080000pt;}
.v4{vertical-align:15.877333pt;}
.v2{vertical-align:17.600000pt;}
.v1{vertical-align:28.213333pt;}
.ls87{letter-spacing:-1.813333pt;}
.ls5c{letter-spacing:-1.600000pt;}
.ls59{letter-spacing:-1.493333pt;}
.ls3e{letter-spacing:-1.280000pt;}
.ls7f{letter-spacing:-1.200000pt;}
.ls2b{letter-spacing:-1.173333pt;}
.ls80{letter-spacing:-1.152000pt;}
.ls18{letter-spacing:-1.120000pt;}
.ls5a{letter-spacing:-1.045333pt;}
.ls2c{letter-spacing:-1.013333pt;}
.ls2d{letter-spacing:-0.960000pt;}
.lsa8{letter-spacing:-0.952000pt;}
.ls5d{letter-spacing:-0.906667pt;}
.ls5f{letter-spacing:-0.864000pt;}
.ls44{letter-spacing:-0.853333pt;}
.ls68{letter-spacing:-0.816000pt;}
.ls2e{letter-spacing:-0.800000pt;}
.ls86{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.746667pt;}
.lsf{letter-spacing:-0.725333pt;}
.ls43{letter-spacing:-0.720000pt;}
.ls34{letter-spacing:-0.709333pt;}
.lsd{letter-spacing:-0.693333pt;}
.lsb5{letter-spacing:-0.684000pt;}
.ls36{letter-spacing:-0.682667pt;}
.ls8{letter-spacing:-0.680000pt;}
.ls60{letter-spacing:-0.672000pt;}
.lsb6{letter-spacing:-0.648000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.624000pt;}
.ls85{letter-spacing:-0.604800pt;}
.ls30{letter-spacing:-0.600000pt;}
.ls61{letter-spacing:-0.597333pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls55{letter-spacing:-0.576000pt;}
.ls56{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.533333pt;}
.ls3f{letter-spacing:-0.528000pt;}
.ls47{letter-spacing:-0.512000pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls48{letter-spacing:-0.469333pt;}
.ls7c{letter-spacing:-0.453333pt;}
.ls6d{letter-spacing:-0.432000pt;}
.ls1e{letter-spacing:-0.426667pt;}
.ls7d{letter-spacing:-0.405333pt;}
.ls46{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.373333pt;}
.ls33{letter-spacing:-0.354667pt;}
.ls83{letter-spacing:-0.341333pt;}
.ls79{letter-spacing:-0.336000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.317333pt;}
.ls6e{letter-spacing:-0.302400pt;}
.ls74{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.272000pt;}
.ls1c{letter-spacing:-0.266667pt;}
.ls32{letter-spacing:-0.261333pt;}
.ls31{letter-spacing:-0.253333pt;}
.ls75{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.226667pt;}
.ls3d{letter-spacing:-0.224000pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.202667pt;}
.ls49{letter-spacing:-0.200000pt;}
.ls69{letter-spacing:-0.192000pt;}
.lsa6{letter-spacing:-0.181333pt;}
.ls45{letter-spacing:-0.170667pt;}
.ls77{letter-spacing:-0.168000pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls35{letter-spacing:-0.152000pt;}
.ls7b{letter-spacing:-0.144000pt;}
.lsb4{letter-spacing:-0.136000pt;}
.ls6f{letter-spacing:-0.128000pt;}
.ls40{letter-spacing:-0.106667pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls38{letter-spacing:-0.085333pt;}
.ls5b{letter-spacing:-0.080000pt;}
.lsb9{letter-spacing:-0.072000pt;}
.ls6c{letter-spacing:-0.067200pt;}
.lse{letter-spacing:-0.053333pt;}
.ls41{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:-0.045333pt;}
.ls1f{letter-spacing:-0.042667pt;}
.lsb8{letter-spacing:-0.036000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.010667pt;}
.ls7a{letter-spacing:0.026667pt;}
.lsb0{letter-spacing:0.032000pt;}
.lsb7{letter-spacing:0.036000pt;}
.ls29{letter-spacing:0.042667pt;}
.ls9c{letter-spacing:0.045333pt;}
.ls66{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.053333pt;}
.ls6a{letter-spacing:0.067200pt;}
.ls5e{letter-spacing:0.074667pt;}
.ls73{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.090667pt;}
.ls64{letter-spacing:0.096000pt;}
.ls4b{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.128000pt;}
.ls63{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.170667pt;}
.ls81{letter-spacing:0.192000pt;}
.ls39{letter-spacing:0.202667pt;}
.ls13{letter-spacing:0.213333pt;}
.lsb2{letter-spacing:0.216000pt;}
.ls82{letter-spacing:0.224000pt;}
.lsb{letter-spacing:0.226667pt;}
.ls70{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.266667pt;}
.lsb1{letter-spacing:0.282667pt;}
.ls71{letter-spacing:0.288000pt;}
.ls78{letter-spacing:0.304000pt;}
.ls9b{letter-spacing:0.317333pt;}
.ls14{letter-spacing:0.320000pt;}
.ls7e{letter-spacing:0.336000pt;}
.ls99{letter-spacing:0.362667pt;}
.ls76{letter-spacing:0.369600pt;}
.ls3{letter-spacing:0.373333pt;}
.ls24{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls62{letter-spacing:0.432000pt;}
.lsac{letter-spacing:0.468000pt;}
.ls26{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.480000pt;}
.lsad{letter-spacing:0.512000pt;}
.ls72{letter-spacing:0.528000pt;}
.ls3c{letter-spacing:0.533333pt;}
.ls6b{letter-spacing:0.576000pt;}
.ls84{letter-spacing:0.586667pt;}
.ls67{letter-spacing:0.600000pt;}
.ls9a{letter-spacing:0.634667pt;}
.ls37{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.682667pt;}
.ls65{letter-spacing:0.693333pt;}
.ls3a{letter-spacing:0.720000pt;}
.ls53{letter-spacing:0.746667pt;}
.ls3b{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.800000pt;}
.lsa7{letter-spacing:0.861333pt;}
.ls1{letter-spacing:0.906667pt;}
.ls4a{letter-spacing:0.960000pt;}
.ls52{letter-spacing:1.013333pt;}
.ls4e{letter-spacing:1.066667pt;}
.ls98{letter-spacing:1.133333pt;}
.lsa9{letter-spacing:1.200000pt;}
.lsae{letter-spacing:1.216000pt;}
.lsaf{letter-spacing:1.224000pt;}
.lsaa{letter-spacing:1.248000pt;}
.ls58{letter-spacing:1.280000pt;}
.lsb3{letter-spacing:1.488000pt;}
.ls50{letter-spacing:1.570667pt;}
.ls51{letter-spacing:1.621333pt;}
.ls4f{letter-spacing:1.653333pt;}
.ls4d{letter-spacing:1.722667pt;}
.ls4c{letter-spacing:1.813333pt;}
.ls91{letter-spacing:2.266667pt;}
.ls9d{letter-spacing:4.488000pt;}
.ls96{letter-spacing:4.578667pt;}
.ls9f{letter-spacing:5.666667pt;}
.ls8f{letter-spacing:6.800000pt;}
.lsa1{letter-spacing:7.933333pt;}
.lsab{letter-spacing:8.930667pt;}
.ls8b{letter-spacing:9.021333pt;}
.ls8d{letter-spacing:9.112000pt;}
.lsa2{letter-spacing:11.333333pt;}
.ls20{letter-spacing:12.000000pt;}
.ls57{letter-spacing:12.346667pt;}
.ls9e{letter-spacing:13.645333pt;}
.ls22{letter-spacing:14.240000pt;}
.ls90{letter-spacing:15.866667pt;}
.ls94{letter-spacing:18.088000pt;}
.ls97{letter-spacing:18.178667pt;}
.lsa0{letter-spacing:22.621333pt;}
.ls88{letter-spacing:56.064000pt;}
.ls95{letter-spacing:58.704000pt;}
.ls8c{letter-spacing:61.392000pt;}
.ls92{letter-spacing:64.656000pt;}
.ls8e{letter-spacing:75.626667pt;}
.ls93{letter-spacing:75.648000pt;}
.ls89{letter-spacing:164.304000pt;}
.ls8a{letter-spacing:164.352000pt;}
.lsa4{letter-spacing:265.872000pt;}
.lsa5{letter-spacing:289.837333pt;}
.lsa3{letter-spacing:424.992000pt;}
.wsff{word-spacing:-24.480000pt;}
.ws81{word-spacing:-14.400000pt;}
.ws80{word-spacing:-14.389333pt;}
.ws7d{word-spacing:-14.293333pt;}
.ws83{word-spacing:-14.288000pt;}
.ws82{word-spacing:-14.237333pt;}
.wsc6{word-spacing:-14.026667pt;}
.wsed{word-spacing:-13.920000pt;}
.wse5{word-spacing:-13.866667pt;}
.wse4{word-spacing:-13.813333pt;}
.wsbe{word-spacing:-13.760000pt;}
.wsbd{word-spacing:-13.706667pt;}
.ws84{word-spacing:-13.680000pt;}
.ws5b{word-spacing:-13.653333pt;}
.ws32{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.546667pt;}
.ws7c{word-spacing:-13.493333pt;}
.ws94{word-spacing:-13.386667pt;}
.ws13{word-spacing:-13.333333pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws61{word-spacing:-13.226667pt;}
.ws10d{word-spacing:-13.200000pt;}
.ws17{word-spacing:-13.173333pt;}
.ws19{word-spacing:-13.120000pt;}
.ws5c{word-spacing:-13.066667pt;}
.ws1c{word-spacing:-13.013333pt;}
.ws39{word-spacing:-12.960000pt;}
.ws8b{word-spacing:-12.800000pt;}
.ws8a{word-spacing:-12.746667pt;}
.ws14{word-spacing:-12.693333pt;}
.wsc7{word-spacing:-12.666667pt;}
.wsd4{word-spacing:-12.640000pt;}
.ws36{word-spacing:-12.533333pt;}
.ws11a{word-spacing:-12.528000pt;}
.ws65{word-spacing:-12.480000pt;}
.ws15{word-spacing:-12.464000pt;}
.wse2{word-spacing:-12.432000pt;}
.ws91{word-spacing:-12.426667pt;}
.ws38{word-spacing:-12.413333pt;}
.ws33{word-spacing:-12.373333pt;}
.wsdd{word-spacing:-12.336000pt;}
.ws3b{word-spacing:-12.312000pt;}
.wsdb{word-spacing:-12.288000pt;}
.wsd0{word-spacing:-12.261333pt;}
.ws16{word-spacing:-12.213333pt;}
.wse1{word-spacing:-12.192000pt;}
.wsdc{word-spacing:-12.048000pt;}
.ws62{word-spacing:-12.000000pt;}
.ws64{word-spacing:-11.952000pt;}
.wsda{word-spacing:-11.904000pt;}
.wsd9{word-spacing:-11.856000pt;}
.wsa4{word-spacing:-11.808000pt;}
.wsd8{word-spacing:-11.760000pt;}
.ws8e{word-spacing:-11.733333pt;}
.wsc9{word-spacing:-11.712000pt;}
.ws111{word-spacing:-11.650667pt;}
.wsb4{word-spacing:-11.568000pt;}
.ws5f{word-spacing:-11.520000pt;}
.ws60{word-spacing:-11.472000pt;}
.wsc8{word-spacing:-11.424000pt;}
.ws7f{word-spacing:-11.376000pt;}
.ws1{word-spacing:-11.333333pt;}
.ws95{word-spacing:-11.328000pt;}
.ws40{word-spacing:-11.306667pt;}
.ws102{word-spacing:-11.288000pt;}
.wseb{word-spacing:-11.232000pt;}
.ws10e{word-spacing:-11.197333pt;}
.wsa5{word-spacing:-11.184000pt;}
.wsce{word-spacing:-11.136000pt;}
.ws43{word-spacing:-11.093333pt;}
.ws41{word-spacing:-11.050667pt;}
.ws47{word-spacing:-10.837333pt;}
.ws46{word-spacing:-10.794667pt;}
.ws1e{word-spacing:-10.666667pt;}
.ws1f{word-spacing:-10.624000pt;}
.ws48{word-spacing:-10.581333pt;}
.wse6{word-spacing:-10.538667pt;}
.ws66{word-spacing:-10.282667pt;}
.ws113{word-spacing:-10.224000pt;}
.ws6a{word-spacing:-10.160000pt;}
.ws68{word-spacing:-10.154667pt;}
.ws99{word-spacing:-10.069333pt;}
.wsca{word-spacing:-10.000000pt;}
.ws3f{word-spacing:-9.984000pt;}
.wsd5{word-spacing:-9.941333pt;}
.ws8d{word-spacing:-9.920000pt;}
.ws6b{word-spacing:-9.800000pt;}
.wse3{word-spacing:-9.557333pt;}
.ws10f{word-spacing:-9.468000pt;}
.ws110{word-spacing:-9.432000pt;}
.wsd2{word-spacing:-9.408000pt;}
.ws35{word-spacing:-9.400000pt;}
.ws34{word-spacing:-9.333333pt;}
.ws117{word-spacing:-9.216000pt;}
.ws5d{word-spacing:-9.109333pt;}
.ws3a{word-spacing:-9.072000pt;}
.ws116{word-spacing:-9.036000pt;}
.ws114{word-spacing:-9.000000pt;}
.ws92{word-spacing:-8.960000pt;}
.ws11c{word-spacing:-8.928000pt;}
.wsbf{word-spacing:-8.769600pt;}
.wsa7{word-spacing:-8.467200pt;}
.ws7e{word-spacing:-8.400000pt;}
.ws115{word-spacing:-8.352000pt;}
.wsb3{word-spacing:-8.332800pt;}
.ws112{word-spacing:-8.316000pt;}
.ws8f{word-spacing:-8.213333pt;}
.wse7{word-spacing:-7.466667pt;}
.ws12{word-spacing:-7.125333pt;}
.wsf{word-spacing:-0.640000pt;}
.wscd{word-spacing:-0.624000pt;}
.ws11{word-spacing:-0.586667pt;}
.wsb1{word-spacing:-0.576000pt;}
.wsa{word-spacing:-0.554667pt;}
.ws2{word-spacing:-0.544000pt;}
.ws27{word-spacing:-0.533333pt;}
.ws86{word-spacing:-0.528000pt;}
.ws42{word-spacing:-0.512000pt;}
.ws8{word-spacing:-0.498667pt;}
.wse{word-spacing:-0.480000pt;}
.ws57{word-spacing:-0.469333pt;}
.ws119{word-spacing:-0.453333pt;}
.wsde{word-spacing:-0.432000pt;}
.ws21{word-spacing:-0.426667pt;}
.ws103{word-spacing:-0.408000pt;}
.ws76{word-spacing:-0.384000pt;}
.ws2f{word-spacing:-0.373333pt;}
.ws7{word-spacing:-0.362667pt;}
.ws7b{word-spacing:-0.341333pt;}
.wsae{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.320000pt;}
.ws4{word-spacing:-0.317333pt;}
.ws79{word-spacing:-0.298667pt;}
.wsac{word-spacing:-0.288000pt;}
.ws3{word-spacing:-0.272000pt;}
.ws2e{word-spacing:-0.266667pt;}
.ws49{word-spacing:-0.256000pt;}
.ws87{word-spacing:-0.240000pt;}
.ws4e{word-spacing:-0.224000pt;}
.ws2b{word-spacing:-0.213333pt;}
.ws52{word-spacing:-0.202667pt;}
.ws7a{word-spacing:-0.200000pt;}
.ws9f{word-spacing:-0.192000pt;}
.ws78{word-spacing:-0.170667pt;}
.ws28{word-spacing:-0.160000pt;}
.ws53{word-spacing:-0.149333pt;}
.wsa0{word-spacing:-0.144000pt;}
.wsd6{word-spacing:-0.136000pt;}
.ws18{word-spacing:-0.106667pt;}
.ws6e{word-spacing:-0.096000pt;}
.ws26{word-spacing:-0.053333pt;}
.ws5e{word-spacing:-0.048000pt;}
.ws88{word-spacing:-0.045333pt;}
.ws0{word-spacing:0.000000pt;}
.wsef{word-spacing:0.045333pt;}
.wsa1{word-spacing:0.048000pt;}
.wsc1{word-spacing:0.053333pt;}
.ws9c{word-spacing:0.080000pt;}
.ws6{word-spacing:0.085333pt;}
.ws5{word-spacing:0.090667pt;}
.wse0{word-spacing:0.096000pt;}
.ws30{word-spacing:0.106667pt;}
.wsd7{word-spacing:0.128000pt;}
.ws74{word-spacing:0.144000pt;}
.ws24{word-spacing:0.160000pt;}
.wsbb{word-spacing:0.170667pt;}
.ws22{word-spacing:0.213333pt;}
.ws106{word-spacing:0.226667pt;}
.wsab{word-spacing:0.240000pt;}
.wsa2{word-spacing:0.256000pt;}
.ws2c{word-spacing:0.266667pt;}
.wsc{word-spacing:0.272000pt;}
.ws9e{word-spacing:0.288000pt;}
.ws71{word-spacing:0.304000pt;}
.ws4d{word-spacing:0.320000pt;}
.ws85{word-spacing:0.336000pt;}
.ws107{word-spacing:0.362667pt;}
.ws4c{word-spacing:0.373333pt;}
.ws55{word-spacing:0.384000pt;}
.ws25{word-spacing:0.426667pt;}
.ws72{word-spacing:0.432000pt;}
.ws63{word-spacing:0.480000pt;}
.wsf1{word-spacing:0.498667pt;}
.wse9{word-spacing:0.528000pt;}
.ws2a{word-spacing:0.533333pt;}
.ws6d{word-spacing:0.576000pt;}
.ws89{word-spacing:0.586667pt;}
.ws58{word-spacing:0.597333pt;}
.wsba{word-spacing:0.624000pt;}
.ws4f{word-spacing:0.640000pt;}
.wsaa{word-spacing:0.653333pt;}
.wsc2{word-spacing:0.672000pt;}
.ws104{word-spacing:0.680000pt;}
.ws56{word-spacing:0.682667pt;}
.wsb8{word-spacing:0.693333pt;}
.wsad{word-spacing:0.720000pt;}
.wsd1{word-spacing:0.722667pt;}
.ws6c{word-spacing:0.746667pt;}
.wse8{word-spacing:0.768000pt;}
.wsf0{word-spacing:0.770667pt;}
.ws70{word-spacing:0.784000pt;}
.ws75{word-spacing:0.800000pt;}
.wsdf{word-spacing:0.816000pt;}
.wsc5{word-spacing:0.853333pt;}
.ws9{word-spacing:0.861333pt;}
.wscf{word-spacing:0.864000pt;}
.ws59{word-spacing:0.896000pt;}
.ws9d{word-spacing:0.906667pt;}
.wscc{word-spacing:0.912000pt;}
.ws77{word-spacing:0.938667pt;}
.ws10{word-spacing:0.960000pt;}
.wscb{word-spacing:0.962667pt;}
.wsc3{word-spacing:0.981333pt;}
.wsb{word-spacing:0.997333pt;}
.wsb9{word-spacing:1.008000pt;}
.ws31{word-spacing:1.013333pt;}
.ws5a{word-spacing:1.024000pt;}
.ws108{word-spacing:1.042667pt;}
.wsaf{word-spacing:1.056000pt;}
.ws6f{word-spacing:1.064000pt;}
.ws29{word-spacing:1.066667pt;}
.ws109{word-spacing:1.088000pt;}
.wsa9{word-spacing:1.093333pt;}
.wsb0{word-spacing:1.104000pt;}
.wsa3{word-spacing:1.109333pt;}
.ws2d{word-spacing:1.120000pt;}
.wsa8{word-spacing:1.146667pt;}
.ws73{word-spacing:1.152000pt;}
.wsd{word-spacing:1.173333pt;}
.ws51{word-spacing:1.216000pt;}
.ws54{word-spacing:1.226667pt;}
.ws23{word-spacing:1.280000pt;}
.ws50{word-spacing:1.333333pt;}
.ws45{word-spacing:1.400000pt;}
.ws3c{word-spacing:1.706667pt;}
.ws69{word-spacing:2.378667pt;}
.ws11b{word-spacing:2.430667pt;}
.ws105{word-spacing:2.448000pt;}
.ws118{word-spacing:2.538667pt;}
.ws4b{word-spacing:2.602667pt;}
.ws4a{word-spacing:2.645333pt;}
.ws97{word-spacing:2.666667pt;}
.ws9b{word-spacing:2.709333pt;}
.wsb7{word-spacing:2.752000pt;}
.wsb6{word-spacing:2.816000pt;}
.ws37{word-spacing:2.986667pt;}
.wsb2{word-spacing:3.001600pt;}
.wsc0{word-spacing:3.144000pt;}
.ws44{word-spacing:3.242667pt;}
.wsb5{word-spacing:3.333867pt;}
.wsec{word-spacing:3.610667pt;}
.wsea{word-spacing:3.654400pt;}
.ws9a{word-spacing:3.786667pt;}
.wsc4{word-spacing:3.840000pt;}
.ws8c{word-spacing:3.882667pt;}
.wsbc{word-spacing:4.000000pt;}
.ws90{word-spacing:5.045333pt;}
.ws93{word-spacing:5.162667pt;}
.wsa6{word-spacing:5.269333pt;}
.wsf2{word-spacing:9.546667pt;}
.wsfb{word-spacing:10.613333pt;}
.wsf7{word-spacing:10.629333pt;}
.wsf8{word-spacing:11.413333pt;}
.wsf4{word-spacing:12.693333pt;}
.wsf9{word-spacing:13.333333pt;}
.wsfe{word-spacing:13.338667pt;}
.ws98{word-spacing:15.146667pt;}
.ws96{word-spacing:16.000000pt;}
.wsd3{word-spacing:22.240000pt;}
.ws1d{word-spacing:32.000000pt;}
.ws3e{word-spacing:37.333333pt;}
.ws67{word-spacing:37.973333pt;}
.wsee{word-spacing:63.626667pt;}
.wsf5{word-spacing:169.232000pt;}
.ws100{word-spacing:179.421333pt;}
.ws10a{word-spacing:185.658667pt;}
.wsf6{word-spacing:191.218667pt;}
.ws10c{word-spacing:219.730667pt;}
.wsfc{word-spacing:220.205333pt;}
.ws10b{word-spacing:244.890667pt;}
.wsfd{word-spacing:304.949333pt;}
.wsfa{word-spacing:327.090667pt;}
.ws3d{word-spacing:355.626667pt;}
.ws101{word-spacing:369.578667pt;}
.wsf3{word-spacing:385.562667pt;}
._a{margin-left:-25.333333pt;}
._11{margin-left:-20.445333pt;}
._16{margin-left:-19.520000pt;}
._13{margin-left:-17.408000pt;}
._14{margin-left:-16.274667pt;}
._8{margin-left:-5.866667pt;}
._6{margin-left:-4.693333pt;}
._1{margin-left:-3.128000pt;}
._4{margin-left:-2.226667pt;}
._0{margin-left:-1.133333pt;}
._5{width:0.906667pt;}
._b{width:2.584000pt;}
._c{width:4.762667pt;}
._9{width:5.920000pt;}
._f{width:10.442667pt;}
._10{width:12.336000pt;}
._12{width:13.600000pt;}
._29{width:15.821333pt;}
._17{width:17.888000pt;}
._15{width:18.858667pt;}
._22{width:23.952000pt;}
._21{width:25.344000pt;}
._e{width:26.666667pt;}
._3{width:42.757333pt;}
._d{width:48.000000pt;}
._2{width:58.666667pt;}
._1d{width:126.120000pt;}
._31{width:144.178667pt;}
._1b{width:149.874667pt;}
._28{width:151.722667pt;}
._1f{width:155.813333pt;}
._2f{width:158.005333pt;}
._24{width:163.149333pt;}
._2d{width:181.968000pt;}
._20{width:184.101333pt;}
._19{width:188.362667pt;}
._1a{width:190.312000pt;}
._1e{width:212.933333pt;}
._2b{width:219.277333pt;}
._1c{width:225.581333pt;}
._18{width:235.282667pt;}
._33{width:245.093333pt;}
._2a{width:249.010667pt;}
._2c{width:252.573333pt;}
._27{width:269.869333pt;}
._26{width:272.792000pt;}
._32{width:276.554667pt;}
._30{width:299.176000pt;}
._2e{width:309.285333pt;}
._25{width:325.922667pt;}
._23{width:422.496000pt;}
._7{width:770.568000pt;}
.fsc{font-size:22.666667pt;}
.fsb{font-size:29.866667pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:33.600000pt;}
.fsd{font-size:36.000000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:59.733333pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y14a{bottom:48.341333pt;}
.y19d{bottom:48.346667pt;}
.y16a{bottom:48.352000pt;}
.y192{bottom:48.384000pt;}
.y60{bottom:48.392000pt;}
.y1a{bottom:48.546667pt;}
.y1fa{bottom:48.784667pt;}
.y4d{bottom:48.786667pt;}
.y81{bottom:48.832000pt;}
.y126{bottom:48.893333pt;}
.yb1{bottom:48.946667pt;}
.yd6{bottom:49.138667pt;}
.y116{bottom:49.232000pt;}
.yf6{bottom:49.261333pt;}
.y98{bottom:49.333333pt;}
.y21c{bottom:51.413333pt;}
.y1ca{bottom:52.624667pt;}
.y149{bottom:61.018667pt;}
.y169{bottom:61.024000pt;}
.y191{bottom:61.045333pt;}
.y5f{bottom:61.064000pt;}
.y80{bottom:61.488000pt;}
.y125{bottom:61.554667pt;}
.yb0{bottom:61.618667pt;}
.yd5{bottom:61.794667pt;}
.y115{bottom:61.898667pt;}
.yf5{bottom:61.944000pt;}
.y1f9{bottom:64.118667pt;}
.y4c{bottom:64.120000pt;}
.y21b{bottom:65.417333pt;}
.y1c9{bottom:67.958667pt;}
.y19c{bottom:73.680000pt;}
.y148{bottom:73.685333pt;}
.y190{bottom:73.717333pt;}
.y5e{bottom:73.725333pt;}
.y7f{bottom:74.165333pt;}
.y124{bottom:74.226667pt;}
.yaf{bottom:74.280000pt;}
.yd4{bottom:74.472000pt;}
.y114{bottom:74.560000pt;}
.yf4{bottom:74.605333pt;}
.y21a{bottom:79.421333pt;}
.y1f8{bottom:79.452667pt;}
.y4b{bottom:79.453333pt;}
.y1c8{bottom:83.292667pt;}
.y19b{bottom:86.341333pt;}
.y147{bottom:86.346667pt;}
.y18f{bottom:86.378667pt;}
.y5d{bottom:86.397333pt;}
.y7e{bottom:86.842667pt;}
.yae{bottom:86.941333pt;}
.yd3{bottom:87.133333pt;}
.y113{bottom:87.232000pt;}
.yf3{bottom:87.266667pt;}
.y1f7{bottom:92.792000pt;}
.y219{bottom:93.425333pt;}
.y4a{bottom:94.786667pt;}
.y19{bottom:95.626667pt;}
.y1c7{bottom:98.626667pt;}
.y19a{bottom:99.013333pt;}
.y18e{bottom:99.040000pt;}
.y5c{bottom:99.058667pt;}
.y7d{bottom:99.504000pt;}
.yad{bottom:99.629333pt;}
.y112{bottom:99.893333pt;}
.yf2{bottom:99.938667pt;}
.y218{bottom:107.429333pt;}
.y97{bottom:108.120000pt;}
.y123{bottom:109.449333pt;}
.y49{bottom:110.120000pt;}
.y18{bottom:110.960000pt;}
.y5b{bottom:111.720000pt;}
.y7c{bottom:112.176000pt;}
.yac{bottom:112.290667pt;}
.yf1{bottom:112.605333pt;}
.y1c6{bottom:113.960000pt;}
.y217{bottom:121.433333pt;}
.yd2{bottom:122.453333pt;}
.y122{bottom:123.449333pt;}
.y96{bottom:123.453333pt;}
.y5a{bottom:124.392000pt;}
.y7b{bottom:124.837333pt;}
.yab{bottom:124.952000pt;}
.yf0{bottom:125.266667pt;}
.y17{bottom:126.293333pt;}
.y168{bottom:130.762667pt;}
.y146{bottom:132.120000pt;}
.y1f6{bottom:134.965333pt;}
.y111{bottom:135.120000pt;}
.y216{bottom:135.437333pt;}
.y1c5{bottom:136.960000pt;}
.y59{bottom:137.053333pt;}
.y121{bottom:137.453333pt;}
.y7a{bottom:137.498667pt;}
.yaa{bottom:137.624000pt;}
.yd1{bottom:137.786667pt;}
.yef{bottom:137.938667pt;}
.y95{bottom:138.786667pt;}
.y48{bottom:140.786667pt;}
.y16{bottom:141.626667pt;}
.y167{bottom:144.766667pt;}
.y145{bottom:147.453333pt;}
.y215{bottom:149.441333pt;}
.y58{bottom:149.714667pt;}
.y79{bottom:150.170667pt;}
.ya9{bottom:150.285333pt;}
.y110{bottom:150.453333pt;}
.yee{bottom:150.600000pt;}
.y18d{bottom:150.786667pt;}
.y1f5{bottom:152.293333pt;}
.yd0{bottom:153.120000pt;}
.y94{bottom:154.120000pt;}
.y47{bottom:156.120000pt;}
.y15{bottom:156.960000pt;}
.y166{bottom:158.770667pt;}
.y57{bottom:162.386667pt;}
.y144{bottom:162.786667pt;}
.y78{bottom:162.832000pt;}
.ya8{bottom:162.946667pt;}
.y214{bottom:163.445333pt;}
.y1f4{bottom:165.632000pt;}
.y10f{bottom:165.786667pt;}
.y18c{bottom:166.120000pt;}
.y120{bottom:166.786667pt;}
.y1f3{bottom:167.626667pt;}
.ycf{bottom:168.453333pt;}
.y93{bottom:169.453333pt;}
.y46{bottom:171.453333pt;}
.y14{bottom:172.293333pt;}
.y165{bottom:172.774667pt;}
.y56{bottom:175.048000pt;}
.y77{bottom:175.493333pt;}
.ya7{bottom:175.608000pt;}
.y213{bottom:177.449333pt;}
.y143{bottom:178.120000pt;}
.y1c4{bottom:178.959333pt;}
.y1c3{bottom:180.965333pt;}
.y10e{bottom:181.120000pt;}
.y18b{bottom:181.453333pt;}
.y11f{bottom:182.120000pt;}
.y1f2{bottom:182.957333pt;}
.y1c2{bottom:182.960000pt;}
.yce{bottom:183.786667pt;}
.y92{bottom:184.786667pt;}
.y164{bottom:186.778667pt;}
.y45{bottom:186.786667pt;}
.y55{bottom:187.714667pt;}
.ya6{bottom:188.274667pt;}
.y212{bottom:191.449333pt;}
.yed{bottom:192.453333pt;}
.y142{bottom:193.453333pt;}
.y18a{bottom:196.786667pt;}
.y1c1{bottom:198.291333pt;}
.y1f1{bottom:198.293333pt;}
.y91{bottom:200.120000pt;}
.y54{bottom:200.376000pt;}
.y163{bottom:200.782667pt;}
.ya5{bottom:200.946667pt;}
.y44{bottom:202.120000pt;}
.y211{bottom:205.449333pt;}
.yec{bottom:207.786667pt;}
.y141{bottom:208.786667pt;}
.y1f0{bottom:211.632000pt;}
.y10d{bottom:211.782667pt;}
.y189{bottom:212.120000pt;}
.y11e{bottom:212.758667pt;}
.y53{bottom:213.048000pt;}
.y1c0{bottom:213.625333pt;}
.y1ef{bottom:213.626667pt;}
.ycd{bottom:214.449333pt;}
.y162{bottom:214.786667pt;}
.y76{bottom:215.453333pt;}
.y43{bottom:217.453333pt;}
.y210{bottom:219.445333pt;}
.y52{bottom:225.720000pt;}
.y10c{bottom:225.782667pt;}
.y11d{bottom:226.762667pt;}
.y188{bottom:227.453333pt;}
.ycc{bottom:228.453333pt;}
.y1ee{bottom:228.957333pt;}
.y1bf{bottom:228.959333pt;}
.y13{bottom:229.413333pt;}
.y75{bottom:230.786667pt;}
.y42{bottom:232.786667pt;}
.y20f{bottom:233.449333pt;}
.y51{bottom:238.381333pt;}
.yeb{bottom:238.453333pt;}
.y140{bottom:239.453333pt;}
.y10b{bottom:239.786667pt;}
.y11c{bottom:240.766667pt;}
.y1be{bottom:242.293333pt;}
.y12{bottom:242.757333pt;}
.y187{bottom:242.786667pt;}
.y161{bottom:244.120000pt;}
.y1bd{bottom:244.293333pt;}
.y74{bottom:246.120000pt;}
.y20e{bottom:247.445333pt;}
.y41{bottom:248.120000pt;}
.ya4{bottom:248.453333pt;}
.y50{bottom:251.053333pt;}
.y11b{bottom:254.770667pt;}
.y13f{bottom:254.786667pt;}
.y11{bottom:256.085333pt;}
.ycb{bottom:257.786667pt;}
.y160{bottom:259.453333pt;}
.y1bc{bottom:259.624667pt;}
.y20d{bottom:261.449333pt;}
.y73{bottom:261.453333pt;}
.y40{bottom:263.453333pt;}
.ya3{bottom:263.786667pt;}
.yea{bottom:267.786667pt;}
.y11a{bottom:268.774667pt;}
.y10a{bottom:269.120000pt;}
.y1ed{bottom:269.125333pt;}
.y10{bottom:269.434000pt;}
.y13e{bottom:270.120000pt;}
.y1ec{bottom:271.120000pt;}
.yca{bottom:273.120000pt;}
.y186{bottom:273.453333pt;}
.y1bb{bottom:274.958667pt;}
.y20c{bottom:275.441333pt;}
.y72{bottom:276.786667pt;}
.y3f{bottom:278.786667pt;}
.ya2{bottom:279.120000pt;}
.yf{bottom:282.762000pt;}
.y119{bottom:282.778667pt;}
.ye9{bottom:283.120000pt;}
.y109{bottom:284.453333pt;}
.y1eb{bottom:284.458667pt;}
.y13d{bottom:285.453333pt;}
.y1ea{bottom:286.453333pt;}
.yc9{bottom:288.453333pt;}
.y185{bottom:288.786667pt;}
.y20b{bottom:289.445333pt;}
.y15f{bottom:290.089333pt;}
.y1ba{bottom:290.292667pt;}
.y71{bottom:292.120000pt;}
.y3e{bottom:294.120000pt;}
.ye{bottom:296.090000pt;}
.y118{bottom:296.782667pt;}
.ye8{bottom:298.453333pt;}
.y108{bottom:299.786667pt;}
.y1e9{bottom:299.792000pt;}
.y199{bottom:300.786667pt;}
.y1e8{bottom:301.786667pt;}
.y20a{bottom:303.449333pt;}
.y1b9{bottom:303.626667pt;}
.y15e{bottom:304.093333pt;}
.y184{bottom:304.120000pt;}
.y1b8{bottom:305.626667pt;}
.y90{bottom:307.453333pt;}
.yd{bottom:309.418000pt;}
.y3d{bottom:309.453333pt;}
.ya1{bottom:309.778667pt;}
.y117{bottom:310.786667pt;}
.ye7{bottom:313.786667pt;}
.y1e7{bottom:315.125333pt;}
.y13c{bottom:316.120000pt;}
.y1e6{bottom:317.120000pt;}
.y209{bottom:317.449333pt;}
.y15d{bottom:318.097333pt;}
.yc8{bottom:319.112000pt;}
.y183{bottom:319.453333pt;}
.y1b7{bottom:320.958000pt;}
.yc{bottom:322.746000pt;}
.y70{bottom:322.761333pt;}
.y8f{bottom:322.786667pt;}
.ya0{bottom:323.782667pt;}
.y3c{bottom:324.786667pt;}
.ye6{bottom:329.120000pt;}
.y107{bottom:330.440000pt;}
.y1e5{bottom:330.458667pt;}
.y208{bottom:331.445333pt;}
.y13b{bottom:331.453333pt;}
.y15c{bottom:332.101333pt;}
.y1e4{bottom:332.453333pt;}
.yc7{bottom:333.116000pt;}
.y1b6{bottom:336.292000pt;}
.y6f{bottom:336.765333pt;}
.y9f{bottom:337.786667pt;}
.y8e{bottom:338.120000pt;}
.y3b{bottom:340.120000pt;}
.y106{bottom:344.444000pt;}
.ye5{bottom:344.453333pt;}
.y207{bottom:345.449333pt;}
.y1e3{bottom:345.792000pt;}
.y15b{bottom:346.105333pt;}
.y13a{bottom:346.786667pt;}
.yc6{bottom:347.120000pt;}
.y1e2{bottom:347.786667pt;}
.yb{bottom:349.413333pt;}
.y182{bottom:350.108000pt;}
.y6e{bottom:350.769333pt;}
.y1b5{bottom:351.626000pt;}
.y3a{bottom:355.453333pt;}
.y105{bottom:358.448000pt;}
.y206{bottom:359.445333pt;}
.y15a{bottom:360.109333pt;}
.y1e1{bottom:361.125333pt;}
.y139{bottom:362.120000pt;}
.y1e0{bottom:363.120000pt;}
.y181{bottom:364.112000pt;}
.y6d{bottom:364.773333pt;}
.y1b4{bottom:366.960000pt;}
.y9e{bottom:367.120000pt;}
.y8d{bottom:368.778667pt;}
.y39{bottom:370.786667pt;}
.y205{bottom:373.449333pt;}
.y159{bottom:374.113333pt;}
.ye4{bottom:375.116000pt;}
.yc5{bottom:376.453333pt;}
.y1df{bottom:376.458667pt;}
.y138{bottom:377.453333pt;}
.y180{bottom:378.116000pt;}
.y1de{bottom:378.453333pt;}
.y6c{bottom:378.777333pt;}
.y104{bottom:380.120000pt;}
.ya{bottom:381.414000pt;}
.y1b3{bottom:382.292667pt;}
.y9d{bottom:382.453333pt;}
.y8c{bottom:382.782667pt;}
.y38{bottom:386.120000pt;}
.y204{bottom:387.453333pt;}
.y158{bottom:388.117333pt;}
.ye3{bottom:389.112000pt;}
.yc4{bottom:391.786667pt;}
.y1dd{bottom:391.792000pt;}
.y17f{bottom:392.120000pt;}
.y6b{bottom:392.781333pt;}
.y137{bottom:392.786667pt;}
.y1dc{bottom:393.786667pt;}
.y8b{bottom:396.778667pt;}
.y1b2{bottom:397.626667pt;}
.y9c{bottom:397.786667pt;}
.y9{bottom:400.096000pt;}
.y4f{bottom:401.453333pt;}
.y157{bottom:402.121333pt;}
.ye2{bottom:403.116000pt;}
.yc3{bottom:407.120000pt;}
.y1db{bottom:407.125333pt;}
.y136{bottom:408.120000pt;}
.y1da{bottom:409.120000pt;}
.y103{bottom:409.453333pt;}
.y8a{bottom:410.782667pt;}
.y1b1{bottom:412.960000pt;}
.y8{bottom:413.424000pt;}
.y6a{bottom:414.453333pt;}
.y156{bottom:416.125333pt;}
.y37{bottom:416.786667pt;}
.ye1{bottom:417.120000pt;}
.y17e{bottom:421.453333pt;}
.yc2{bottom:422.453333pt;}
.y1d9{bottom:422.458667pt;}
.y135{bottom:423.453333pt;}
.y1d8{bottom:424.453333pt;}
.y89{bottom:424.777333pt;}
.y102{bottom:424.786667pt;}
.y7{bottom:426.752000pt;}
.y9b{bottom:428.444000pt;}
.y36{bottom:432.120000pt;}
.y17d{bottom:436.786667pt;}
.yc1{bottom:437.786667pt;}
.y1d7{bottom:437.792000pt;}
.y88{bottom:438.781333pt;}
.y134{bottom:438.786667pt;}
.y1b0{bottom:439.786667pt;}
.y6{bottom:440.101333pt;}
.y101{bottom:440.120000pt;}
.y9a{bottom:442.448000pt;}
.y69{bottom:443.786667pt;}
.y155{bottom:445.445333pt;}
.ye0{bottom:446.453333pt;}
.y35{bottom:447.453333pt;}
.y17c{bottom:452.120000pt;}
.yc0{bottom:453.120000pt;}
.y5{bottom:453.429333pt;}
.y133{bottom:454.120000pt;}
.y203{bottom:455.118667pt;}
.y1af{bottom:455.120000pt;}
.y100{bottom:455.453333pt;}
.y68{bottom:459.120000pt;}
.y154{bottom:459.449333pt;}
.y87{bottom:460.453333pt;}
.ydf{bottom:461.786667pt;}
.y34{bottom:462.786667pt;}
.y99{bottom:464.120000pt;}
.y4{bottom:466.757333pt;}
.y17b{bottom:467.453333pt;}
.ybf{bottom:468.453333pt;}
.y202{bottom:468.458000pt;}
.y1ae{bottom:468.458667pt;}
.y132{bottom:469.453333pt;}
.y201{bottom:470.452667pt;}
.y1ad{bottom:470.453333pt;}
.y153{bottom:473.453333pt;}
.y67{bottom:474.453333pt;}
.yde{bottom:477.120000pt;}
.y33{bottom:478.120000pt;}
.y3{bottom:480.085333pt;}
.y17a{bottom:482.786667pt;}
.y200{bottom:483.792000pt;}
.y131{bottom:484.786667pt;}
.y1ff{bottom:485.786667pt;}
.yff{bottom:486.110667pt;}
.y66{bottom:489.786667pt;}
.ydd{bottom:492.453333pt;}
.y2{bottom:493.413333pt;}
.y32{bottom:493.453333pt;}
.y1ac{bottom:495.298000pt;}
.y1ab{bottom:497.292667pt;}
.ybe{bottom:499.096000pt;}
.yfe{bottom:500.114667pt;}
.y198{bottom:500.120000pt;}
.y1fe{bottom:501.118667pt;}
.y152{bottom:502.786667pt;}
.y65{bottom:505.120000pt;}
.y31{bottom:508.786667pt;}
.y1aa{bottom:512.626667pt;}
.ybd{bottom:513.100000pt;}
.y179{bottom:513.393333pt;}
.y130{bottom:515.453333pt;}
.y1fd{bottom:516.452667pt;}
.y151{bottom:518.120000pt;}
.y1{bottom:520.080000pt;}
.y64{bottom:520.453333pt;}
.yfd{bottom:521.786667pt;}
.ydc{bottom:523.116000pt;}
.y1d6{bottom:524.112000pt;}
.y30{bottom:524.120000pt;}
.ybc{bottom:527.104000pt;}
.y178{bottom:527.397333pt;}
.y1a9{bottom:527.958000pt;}
.y12f{bottom:530.786667pt;}
.y1fc{bottom:531.786667pt;}
.y150{bottom:533.453333pt;}
.y86{bottom:535.786667pt;}
.ydb{bottom:537.116000pt;}
.y1d5{bottom:539.446000pt;}
.y2f{bottom:539.453333pt;}
.ybb{bottom:541.108000pt;}
.y177{bottom:541.401333pt;}
.y1a8{bottom:543.292000pt;}
.y12e{bottom:546.120000pt;}
.y14f{bottom:548.786667pt;}
.y63{bottom:551.110667pt;}
.y85{bottom:551.120000pt;}
.y22{bottom:554.373333pt;}
.y1d4{bottom:554.780000pt;}
.y2e{bottom:554.786667pt;}
.yba{bottom:555.112000pt;}
.y176{bottom:555.405333pt;}
.y1a7{bottom:558.626000pt;}
.y12d{bottom:561.453333pt;}
.y62{bottom:565.114667pt;}
.yfc{bottom:566.453333pt;}
.yb9{bottom:569.116000pt;}
.y175{bottom:569.409333pt;}
.y1d3{bottom:570.114000pt;}
.y2d{bottom:570.120000pt;}
.y1a6{bottom:571.965333pt;}
.y1a5{bottom:573.960000pt;}
.y12c{bottom:576.786667pt;}
.y14e{bottom:579.450667pt;}
.yda{bottom:580.453333pt;}
.y84{bottom:581.777333pt;}
.yfb{bottom:581.786667pt;}
.yb8{bottom:583.120000pt;}
.y174{bottom:583.413333pt;}
.y1d2{bottom:585.448000pt;}
.y2c{bottom:585.453333pt;}
.y61{bottom:586.786667pt;}
.y1a4{bottom:589.292667pt;}
.y12b{bottom:592.120000pt;}
.y14d{bottom:593.454667pt;}
.y83{bottom:595.781333pt;}
.yd9{bottom:595.786667pt;}
.yfa{bottom:597.120000pt;}
.y173{bottom:597.417333pt;}
.y1d1{bottom:600.782000pt;}
.y2b{bottom:600.786667pt;}
.y1a3{bottom:604.626667pt;}
.y197{bottom:607.453333pt;}
.y14c{bottom:607.458667pt;}
.y172{bottom:611.421333pt;}
.yb7{bottom:612.453333pt;}
.y1d0{bottom:616.116000pt;}
.y2a{bottom:616.120000pt;}
.y82{bottom:617.453333pt;}
.y21{bottom:617.629333pt;}
.y1a2{bottom:617.965333pt;}
.y1a1{bottom:619.954667pt;}
.y12a{bottom:622.778667pt;}
.y196{bottom:622.786667pt;}
.y171{bottom:625.425333pt;}
.yd8{bottom:626.448000pt;}
.yb6{bottom:627.786667pt;}
.y20{bottom:630.301333pt;}
.y1cf{bottom:631.450000pt;}
.y29{bottom:631.453333pt;}
.y14b{bottom:636.774667pt;}
.y129{bottom:636.782667pt;}
.y170{bottom:639.429333pt;}
.y1f{bottom:642.973333pt;}
.yf9{bottom:643.110667pt;}
.yb5{bottom:643.120000pt;}
.y1a0{bottom:644.792000pt;}
.y1ce{bottom:646.784000pt;}
.y28{bottom:646.786667pt;}
.yd7{bottom:648.120000pt;}
.y128{bottom:650.778667pt;}
.y16f{bottom:653.433333pt;}
.y195{bottom:653.441333pt;}
.yf8{bottom:657.114667pt;}
.y1e{bottom:658.973333pt;}
.y19f{bottom:660.120000pt;}
.y1cd{bottom:662.118000pt;}
.y27{bottom:662.120000pt;}
.y127{bottom:664.782667pt;}
.y16e{bottom:667.437333pt;}
.y194{bottom:667.445333pt;}
.y21d{bottom:667.449333pt;}
.yb4{bottom:673.773333pt;}
.y19e{bottom:677.450667pt;}
.y1cc{bottom:677.452000pt;}
.y4e{bottom:677.453333pt;}
.yf7{bottom:678.786667pt;}
.y16d{bottom:681.441333pt;}
.y193{bottom:681.449333pt;}
.yb3{bottom:687.777333pt;}
.y1cb{bottom:692.786000pt;}
.y26{bottom:692.786667pt;}
.y16c{bottom:695.445333pt;}
.y1d{bottom:698.973333pt;}
.yb2{bottom:701.781333pt;}
.y1fb{bottom:708.117333pt;}
.y25{bottom:708.120000pt;}
.y16b{bottom:709.449333pt;}
.y1c{bottom:720.306667pt;}
.y24{bottom:723.453333pt;}
.y1b{bottom:765.640000pt;}
.y23{bottom:821.333333pt;}
.h1f{height:19.289333pt;}
.h20{height:38.578667pt;}
.h9{height:41.854167pt;}
.h4{height:41.875000pt;}
.hb{height:41.896333pt;}
.h5{height:43.000000pt;}
.h1a{height:43.349833pt;}
.h1d{height:44.460938pt;}
.h2{height:44.492188pt;}
.h1{height:45.687500pt;}
.h1e{height:46.557333pt;}
.h1c{height:47.085938pt;}
.h8{height:47.109375pt;}
.h24{height:47.120042pt;}
.h15{height:47.125375pt;}
.hd{height:47.141375pt;}
.h25{height:47.157375pt;}
.h10{height:48.816563pt;}
.h17{height:48.827229pt;}
.h12{height:48.832563pt;}
.h11{height:48.837896pt;}
.h13{height:48.848563pt;}
.hc{height:48.853896pt;}
.h16{height:48.864562pt;}
.he{height:48.869896pt;}
.hf{height:48.912563pt;}
.h14{height:48.928563pt;}
.h18{height:48.939229pt;}
.h19{height:49.056562pt;}
.h3{height:52.343750pt;}
.h1b{height:53.750000pt;}
.ha{height:54.240625pt;}
.h22{height:54.581333pt;}
.h21{height:55.064604pt;}
.h23{height:55.088042pt;}
.h6{height:83.750000pt;}
.h7{height:86.838333pt;}
.h0{height:794.666667pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x4{left:4.000000pt;}
.x1{left:66.400000pt;}
.x5{left:67.480000pt;}
.x29{left:73.480000pt;}
.x50{left:79.725333pt;}
.x51{left:80.800000pt;}
.x9{left:81.733333pt;}
.x8{left:82.813333pt;}
.x6{left:86.410667pt;}
.x7{left:87.480000pt;}
.xa{left:89.068000pt;}
.x44{left:90.361333pt;}
.x43{left:95.924667pt;}
.x4e{left:100.213333pt;}
.x42{left:109.774000pt;}
.x20{left:111.093333pt;}
.x11{left:117.093333pt;}
.x2a{left:122.331333pt;}
.x2c{left:124.122000pt;}
.x47{left:130.458667pt;}
.x4b{left:132.136667pt;}
.x2d{left:136.407333pt;}
.x33{left:137.336667pt;}
.x10{left:142.000000pt;}
.x21{left:143.480000pt;}
.x22{left:148.266667pt;}
.x1b{left:155.078667pt;}
.x23{left:158.206667pt;}
.x4f{left:160.733333pt;}
.x1c{left:161.878667pt;}
.x24{left:164.644000pt;}
.x13{left:167.341333pt;}
.x25{left:170.254000pt;}
.x14{left:173.926000pt;}
.x40{left:175.235333pt;}
.x26{left:176.136000pt;}
.x15{left:180.782667pt;}
.x1f{left:182.133333pt;}
.x16{left:187.582667pt;}
.xb{left:188.480000pt;}
.x3d{left:189.651333pt;}
.xd{left:190.948667pt;}
.xc{left:192.693333pt;}
.x17{left:196.207333pt;}
.x4c{left:197.133333pt;}
.x4d{left:220.890667pt;}
.x18{left:223.135333pt;}
.x49{left:231.146000pt;}
.x1d{left:232.576000pt;}
.x19{left:234.854000pt;}
.x1e{left:237.710000pt;}
.x1a{left:241.336667pt;}
.xe{left:256.126667pt;}
.x48{left:264.114667pt;}
.xf{left:266.134000pt;}
.x12{left:267.754667pt;}
.x45{left:275.380000pt;}
.x34{left:282.361333pt;}
.x35{left:287.212000pt;}
.x41{left:294.182000pt;}
.x39{left:298.522667pt;}
.x2e{left:302.432667pt;}
.x2f{left:308.020000pt;}
.x27{left:315.194000pt;}
.x3a{left:317.381333pt;}
.x36{left:324.850000pt;}
.x30{left:326.844667pt;}
.x2b{left:329.304000pt;}
.x3e{left:332.760667pt;}
.x37{left:342.405333pt;}
.x28{left:356.617333pt;}
.x3{left:362.773333pt;}
.x31{left:366.443333pt;}
.x32{left:372.178000pt;}
.x2{left:377.226667pt;}
.x46{left:380.672000pt;}
.x38{left:386.356000pt;}
.x4a{left:390.169333pt;}
.x3f{left:394.278000pt;}
.x3b{left:398.210667pt;}
.x3c{left:413.930000pt;}
}




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