
    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_812b04bd2c6fd7485f37087d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ff7b9f1f010beca35dd856d5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1ead523fc4aea330ddd4d4d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_ded29902eef33a4f6c49a696.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_aad076b046268b866faa110f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_552d98fadefa6b2f06516aef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.649414;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_5e75cb6b2f3459305adf65a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ca799a5f935c84251393c0ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_0e4dbb28d6d920a7b3317e9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v3{vertical-align:-82.500000px;}
.v1f{vertical-align:-34.500000px;}
.v2{vertical-align:-24.000000px;}
.v1e{vertical-align:-21.000000px;}
.v5{vertical-align:-15.000000px;}
.v19{vertical-align:-12.000000px;}
.vb{vertical-align:-10.500000px;}
.v4{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:3.060000px;}
.vf{vertical-align:10.500000px;}
.v17{vertical-align:12.000000px;}
.ve{vertical-align:13.500000px;}
.v6{vertical-align:15.000000px;}
.v7{vertical-align:18.000000px;}
.v1b{vertical-align:19.500000px;}
.v1{vertical-align:24.000000px;}
.v13{vertical-align:25.500000px;}
.v18{vertical-align:27.000000px;}
.v12{vertical-align:30.000000px;}
.v9{vertical-align:31.500000px;}
.v1a{vertical-align:34.500000px;}
.vc{vertical-align:36.000000px;}
.v8{vertical-align:42.000000px;}
.va{vertical-align:45.000000px;}
.v11{vertical-align:46.500000px;}
.v1d{vertical-align:51.000000px;}
.v16{vertical-align:56.940000px;}
.v1c{vertical-align:61.500000px;}
.v15{vertical-align:70.500000px;}
.v14{vertical-align:73.500000px;}
.vd{vertical-align:78.000000px;}
.ls80{letter-spacing:-2.016000px;}
.ls7e{letter-spacing:-1.992000px;}
.ls4b{letter-spacing:-1.800000px;}
.ls4a{letter-spacing:-1.500000px;}
.ls2b{letter-spacing:-0.648000px;}
.ls44{letter-spacing:-0.624000px;}
.ls7c{letter-spacing:-0.579000px;}
.ls2{letter-spacing:-0.516000px;}
.ls14{letter-spacing:-0.492000px;}
.ls11{letter-spacing:-0.468000px;}
.ls62{letter-spacing:-0.348000px;}
.ls63{letter-spacing:-0.315000px;}
.ls49{letter-spacing:-0.312000px;}
.ls28{letter-spacing:-0.255000px;}
.ls5f{letter-spacing:-0.168000px;}
.ls29{letter-spacing:-0.054000px;}
.lse{letter-spacing:-0.024000px;}
.ls60{letter-spacing:-0.003000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024000px;}
.ls58{letter-spacing:0.045000px;}
.ls6c{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.126000px;}
.ls3a{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.156000px;}
.ls41{letter-spacing:0.168000px;}
.ls24{letter-spacing:0.186000px;}
.ls13{letter-spacing:0.228000px;}
.ls1c{letter-spacing:0.240000px;}
.ls61{letter-spacing:0.315000px;}
.ls45{letter-spacing:0.333000px;}
.ls7d{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.468000px;}
.ls3b{letter-spacing:0.471000px;}
.ls2d{letter-spacing:0.492000px;}
.ls42{letter-spacing:0.510000px;}
.ls10{letter-spacing:0.516000px;}
.ls31{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.594000px;}
.ls35{letter-spacing:0.612000px;}
.lsd{letter-spacing:0.618000px;}
.ls2a{letter-spacing:0.624000px;}
.ls77{letter-spacing:0.627000px;}
.lsc{letter-spacing:0.642000px;}
.ls73{letter-spacing:0.645000px;}
.ls5a{letter-spacing:0.660000px;}
.ls9{letter-spacing:0.666000px;}
.ls67{letter-spacing:0.696000px;}
.ls72{letter-spacing:0.738000px;}
.ls46{letter-spacing:0.744000px;}
.ls70{letter-spacing:0.756000px;}
.ls36{letter-spacing:0.774000px;}
.ls68{letter-spacing:0.876000px;}
.ls21{letter-spacing:0.984000px;}
.ls12{letter-spacing:1.032000px;}
.ls53{letter-spacing:1.188000px;}
.ls43{letter-spacing:1.290000px;}
.ls3{letter-spacing:1.500000px;}
.ls2f{letter-spacing:1.524000px;}
.ls81{letter-spacing:1.656000px;}
.ls23{letter-spacing:1.860000px;}
.ls2c{letter-spacing:1.992000px;}
.ls37{letter-spacing:2.010000px;}
.ls3e{letter-spacing:2.190000px;}
.ls33{letter-spacing:2.196000px;}
.ls64{letter-spacing:2.421000px;}
.ls47{letter-spacing:2.610000px;}
.ls26{letter-spacing:2.946000px;}
.ls66{letter-spacing:2.961000px;}
.ls69{letter-spacing:3.201000px;}
.ls32{letter-spacing:3.471000px;}
.ls5d{letter-spacing:3.690000px;}
.ls65{letter-spacing:3.921000px;}
.ls1b{letter-spacing:4.245000px;}
.ls1a{letter-spacing:4.278000px;}
.ls1f{letter-spacing:4.398000px;}
.ls4d{letter-spacing:4.497000px;}
.ls1e{letter-spacing:5.094000px;}
.ls52{letter-spacing:5.145000px;}
.ls6f{letter-spacing:5.400000px;}
.ls4f{letter-spacing:5.778000px;}
.ls25{letter-spacing:11.835000px;}
.ls5e{letter-spacing:13.335000px;}
.ls56{letter-spacing:13.500000px;}
.ls17{letter-spacing:15.000000px;}
.ls38{letter-spacing:15.138000px;}
.ls3c{letter-spacing:16.716000px;}
.ls3f{letter-spacing:17.103000px;}
.ls57{letter-spacing:17.946000px;}
.ls6b{letter-spacing:18.021000px;}
.ls34{letter-spacing:18.120000px;}
.ls55{letter-spacing:18.240000px;}
.ls78{letter-spacing:18.360000px;}
.ls54{letter-spacing:19.620000px;}
.ls39{letter-spacing:19.716000px;}
.ls30{letter-spacing:19.896000px;}
.ls79{letter-spacing:20.400000px;}
.ls51{letter-spacing:20.778000px;}
.ls7a{letter-spacing:20.997000px;}
.ls74{letter-spacing:21.360000px;}
.ls59{letter-spacing:21.471000px;}
.ls5b{letter-spacing:21.591000px;}
.ls4e{letter-spacing:23.778000px;}
.ls50{letter-spacing:23.865000px;}
.ls75{letter-spacing:23.997000px;}
.ls6a{letter-spacing:24.645000px;}
.ls6e{letter-spacing:24.900000px;}
.ls1d{letter-spacing:25.278000px;}
.ls19{letter-spacing:26.094000px;}
.ls4c{letter-spacing:27.000000px;}
.ls7b{letter-spacing:28.716000px;}
.ls82{letter-spacing:33.984000px;}
.ls76{letter-spacing:37.716000px;}
.ls6d{letter-spacing:43.494000px;}
.ls6{letter-spacing:46.728000px;}
.ls5{letter-spacing:49.728000px;}
.ls48{letter-spacing:53.484000px;}
.ls7f{letter-spacing:55.716000px;}
.ls15{letter-spacing:71.148000px;}
.ls16{letter-spacing:75.648000px;}
.lsb{letter-spacing:90.180000px;}
.ls71{letter-spacing:97.716000px;}
.ls3d{letter-spacing:105.216000px;}
.ls40{letter-spacing:256.836000px;}
.ls5c{letter-spacing:304.620000px;}
.ls27{letter-spacing:373.620000px;}
.ls20{letter-spacing:373.830000px;}
.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;}
}
.ws36{word-spacing:-72.000000px;}
.ws0{word-spacing:-27.024000px;}
.wsf{word-spacing:-21.000000px;}
.ws1c{word-spacing:-20.352000px;}
.ws1e{word-spacing:-19.524000px;}
.ws3{word-spacing:-19.500000px;}
.wsc{word-spacing:-19.032000px;}
.wsa{word-spacing:-18.516000px;}
.ws1d{word-spacing:-18.492000px;}
.ws9{word-spacing:-18.468000px;}
.ws5{word-spacing:-18.024000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.976000px;}
.wsb{word-spacing:-17.532000px;}
.wse{word-spacing:-17.508000px;}
.ws2{word-spacing:-17.484000px;}
.ws25{word-spacing:-16.452000px;}
.ws37{word-spacing:-16.200000px;}
.wsd{word-spacing:-16.068000px;}
.ws4d{word-spacing:-16.008000px;}
.ws50{word-spacing:-15.984000px;}
.ws7{word-spacing:-15.840000px;}
.ws40{word-spacing:-15.672000px;}
.ws43{word-spacing:-15.492000px;}
.ws51{word-spacing:-13.656000px;}
.ws1f{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.156000px;}
.ws6{word-spacing:-12.000000px;}
.ws34{word-spacing:-11.688000px;}
.ws2b{word-spacing:-11.553000px;}
.ws39{word-spacing:-11.280000px;}
.ws18{word-spacing:-11.220000px;}
.ws41{word-spacing:-11.217000px;}
.ws15{word-spacing:-10.965000px;}
.ws23{word-spacing:-10.596000px;}
.ws35{word-spacing:-10.500000px;}
.ws2e{word-spacing:-9.984000px;}
.ws4c{word-spacing:-9.780000px;}
.ws19{word-spacing:-9.240000px;}
.ws1a{word-spacing:-9.186000px;}
.ws1{word-spacing:0.000000px;}
.ws2c{word-spacing:1.929000px;}
.ws11{word-spacing:3.732000px;}
.ws13{word-spacing:3.876000px;}
.ws31{word-spacing:3.996000px;}
.ws24{word-spacing:4.056000px;}
.ws3f{word-spacing:4.371000px;}
.ws27{word-spacing:4.770000px;}
.ws1b{word-spacing:5.298000px;}
.ws3e{word-spacing:5.376000px;}
.ws17{word-spacing:6.900000px;}
.ws20{word-spacing:7.002000px;}
.ws44{word-spacing:8.241000px;}
.ws16{word-spacing:8.379000px;}
.ws22{word-spacing:9.858000px;}
.ws38{word-spacing:9.864000px;}
.ws14{word-spacing:9.879000px;}
.ws3a{word-spacing:10.059000px;}
.ws3b{word-spacing:10.251000px;}
.ws30{word-spacing:11.499000px;}
.ws28{word-spacing:11.751000px;}
.ws42{word-spacing:11.835000px;}
.ws12{word-spacing:12.468000px;}
.ws48{word-spacing:12.525000px;}
.ws2a{word-spacing:12.858000px;}
.ws4e{word-spacing:12.861000px;}
.ws45{word-spacing:13.095000px;}
.ws3d{word-spacing:13.251000px;}
.ws32{word-spacing:13.389000px;}
.ws4f{word-spacing:13.506000px;}
.ws3c{word-spacing:13.584000px;}
.ws46{word-spacing:13.602000px;}
.ws2f{word-spacing:13.770000px;}
.ws21{word-spacing:14.004000px;}
.ws49{word-spacing:14.025000px;}
.ws47{word-spacing:14.898000px;}
.ws4b{word-spacing:15.123000px;}
.ws33{word-spacing:15.429000px;}
.ws26{word-spacing:22.608000px;}
.ws4a{word-spacing:26.886000px;}
.ws29{word-spacing:31.470000px;}
.ws2d{word-spacing:74.214000px;}
._18{margin-left:-16.188000px;}
._12{margin-left:-14.916000px;}
._49{margin-left:-11.808000px;}
._13{margin-left:-9.900000px;}
._17{margin-left:-8.196000px;}
._1a{margin-left:-6.516000px;}
._15{margin-left:-4.572000px;}
._4{margin-left:-3.024000px;}
._0{margin-left:-1.848000px;}
._1{width:1.008000px;}
._3{width:2.184000px;}
._2{width:3.606000px;}
._e{width:5.178000px;}
._5a{width:6.534000px;}
._27{width:8.052000px;}
._6d{width:9.534000px;}
._78{width:10.692000px;}
._79{width:11.784000px;}
._59{width:12.822000px;}
._67{width:14.160000px;}
._7f{width:15.198000px;}
._30{width:16.230000px;}
._8b{width:17.838000px;}
._7{width:19.896000px;}
._8{width:21.066000px;}
._76{width:22.296000px;}
._75{width:23.736000px;}
._88{width:24.750000px;}
._6b{width:26.616000px;}
._b{width:28.032000px;}
._a{width:29.472000px;}
._9{width:30.528000px;}
._d{width:32.016000px;}
._c{width:33.192000px;}
._98{width:34.206000px;}
._6a{width:35.232000px;}
._69{width:37.056000px;}
._77{width:38.688000px;}
._6{width:39.774000px;}
._5{width:41.736000px;}
._93{width:42.912000px;}
._7a{width:44.328000px;}
._3f{width:45.480000px;}
._68{width:47.136000px;}
._64{width:48.510000px;}
._63{width:50.106000px;}
._62{width:51.432000px;}
._89{width:52.848000px;}
._71{width:54.096000px;}
._73{width:55.248000px;}
._72{width:56.256000px;}
._91{width:57.432000px;}
._6c{width:59.358000px;}
._36{width:60.708000px;}
._8e{width:62.208000px;}
._66{width:63.912000px;}
._32{width:65.076000px;}
._65{width:66.888000px;}
._33{width:68.604000px;}
._5d{width:70.428000px;}
._70{width:74.184000px;}
._6f{width:75.216000px;}
._6e{width:76.536000px;}
._a8{width:78.672000px;}
._7c{width:83.400000px;}
._7b{width:84.408000px;}
._92{width:87.204000px;}
._28{width:88.884000px;}
._7d{width:94.116000px;}
._8a{width:95.328000px;}
._25{width:96.708000px;}
._90{width:97.758000px;}
._87{width:99.744000px;}
._3b{width:101.004000px;}
._80{width:103.044000px;}
._83{width:106.104000px;}
._34{width:107.988000px;}
._9d{width:110.010000px;}
._2a{width:112.932000px;}
._af{width:118.434000px;}
._20{width:120.474000px;}
._99{width:124.524000px;}
._a4{width:126.726000px;}
._9c{width:142.584000px;}
._2c{width:144.732000px;}
._96{width:146.202000px;}
._a9{width:147.420000px;}
._a1{width:152.436000px;}
._84{width:153.942000px;}
._4e{width:165.360000px;}
._ac{width:166.668000px;}
._61{width:169.854000px;}
._9a{width:173.652000px;}
._51{width:175.176000px;}
._ae{width:181.290000px;}
._60{width:186.780000px;}
._47{width:189.594000px;}
._a3{width:192.780000px;}
._8c{width:194.280000px;}
._3d{width:195.456000px;}
._2f{width:196.980000px;}
._4d{width:204.678000px;}
._4b{width:210.516000px;}
._85{width:211.818000px;}
._58{width:213.792000px;}
._35{width:217.068000px;}
._5c{width:225.660000px;}
._29{width:229.020000px;}
._4f{width:230.670000px;}
._82{width:233.718000px;}
._53{width:240.678000px;}
._39{width:244.236000px;}
._21{width:246.306000px;}
._2e{width:248.280000px;}
._57{width:249.846000px;}
._3c{width:253.068000px;}
._8f{width:254.328000px;}
._1d{width:255.462000px;}
._52{width:261.588000px;}
._86{width:262.788000px;}
._a2{width:264.150000px;}
._55{width:270.492000px;}
._ab{width:272.430000px;}
._42{width:273.486000px;}
._8d{width:274.704000px;}
._4a{width:277.854000px;}
._a7{width:279.219000px;}
._a6{width:280.284000px;}
._46{width:282.426000px;}
._41{width:284.814000px;}
._95{width:288.570000px;}
._5e{width:289.782000px;}
._40{width:293.886000px;}
._9b{width:295.776000px;}
._44{width:297.420000px;}
._9f{width:301.596000px;}
._4c{width:302.616000px;}
._94{width:305.526000px;}
._45{width:306.798000px;}
._97{width:307.908000px;}
._37{width:309.168000px;}
._31{width:312.180000px;}
._9e{width:313.620000px;}
._a5{width:316.266000px;}
._50{width:317.814000px;}
._a0{width:319.239000px;}
._26{width:321.180000px;}
._23{width:325.680000px;}
._ad{width:327.765000px;}
._22{width:329.838000px;}
._3e{width:331.680000px;}
._3a{width:333.180000px;}
._24{width:337.680000px;}
._5b{width:339.642000px;}
._2d{width:341.862000px;}
._38{width:345.180000px;}
._48{width:349.854000px;}
._2b{width:353.814000px;}
._5f{width:356.280000px;}
._7e{width:357.312000px;}
._aa{width:359.178000px;}
._56{width:360.702000px;}
._1f{width:363.882000px;}
._43{width:371.184000px;}
._54{width:372.456000px;}
._1e{width:373.620000px;}
._81{width:374.676000px;}
._74{width:847.278000px;}
._14{width:1087.968000px;}
._19{width:1152.840000px;}
._16{width:1285.128000px;}
._f{width:1484.022000px;}
._11{width:1537.128000px;}
._1b{width:1838.328000px;}
._1c{width:1864.374000px;}
._10{width:1935.168000px;}
.fc7{color:rgb(0,150,255);}
.fc4{color:rgb(255,64,255);}
.fc8{color:rgb(0,102,33);}
.fc6{color:rgb(4,50,255);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(148,55,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs8{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs1{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:4.125000px;}
.y173{bottom:13.875000px;}
.y160{bottom:14.235000px;}
.y159{bottom:14.250000px;}
.y2ab{bottom:14.265000px;}
.y15b{bottom:14.280000px;}
.y162{bottom:14.295000px;}
.y15d{bottom:14.625000px;}
.y16f{bottom:45.000000px;}
.y178{bottom:45.030000px;}
.y169{bottom:45.045000px;}
.y1ab{bottom:45.360000px;}
.y176{bottom:45.375000px;}
.y16b{bottom:45.382500px;}
.y16d{bottom:45.405000px;}
.yc8{bottom:91.537500px;}
.y22f{bottom:95.662500px;}
.y1e9{bottom:99.037500px;}
.y1db{bottom:101.287500px;}
.y51{bottom:104.287500px;}
.y124{bottom:105.037500px;}
.y1bd{bottom:105.787500px;}
.y248{bottom:108.412500px;}
.y73{bottom:108.787500px;}
.y16a{bottom:109.162500px;}
.y133{bottom:111.412500px;}
.y1cc{bottom:114.412500px;}
.y11c{bottom:115.162500px;}
.yab{bottom:117.037500px;}
.y1f9{bottom:117.412500px;}
.y211{bottom:120.787500px;}
.yc7{bottom:122.662500px;}
.y22e{bottom:127.162500px;}
.y1e8{bottom:130.162500px;}
.y1da{bottom:132.037500px;}
.y27b{bottom:132.787500px;}
.y123{bottom:136.162500px;}
.y1bc{bottom:136.537500px;}
.y247{bottom:140.287500px;}
.y132{bottom:142.537500px;}
.y62{bottom:143.287500px;}
.y1a5{bottom:145.537500px;}
.y11b{bottom:145.912500px;}
.yaa{bottom:148.162500px;}
.y1f8{bottom:148.537500px;}
.yc6{bottom:153.795000px;}
.y184{bottom:154.905000px;}
.y22d{bottom:157.920000px;}
.y1e7{bottom:161.295000px;}
.y50{bottom:162.405000px;}
.y1d9{bottom:163.170000px;}
.y27a{bottom:163.920000px;}
.ye6{bottom:165.780000px;}
.y72{bottom:166.920000px;}
.y1bb{bottom:167.670000px;}
.y210{bottom:168.405000px;}
.y168{bottom:172.155000px;}
.y246{bottom:172.530000px;}
.y131{bottom:173.295000px;}
.y1cb{bottom:176.295000px;}
.y1a4{bottom:176.670000px;}
.y11a{bottom:177.045000px;}
.ya9{bottom:179.280000px;}
.y122{bottom:182.700000px;}
.y290{bottom:183.075000px;}
.y25f{bottom:183.825000px;}
.yc5{bottom:184.950000px;}
.y183{bottom:186.075000px;}
.y22c{bottom:189.075000px;}
.y2b2{bottom:190.200000px;}
.y1e6{bottom:192.450000px;}
.y25e{bottom:192.825000px;}
.y1d8{bottom:194.325000px;}
.y1f7{bottom:195.075000px;}
.ye5{bottom:196.950000px;}
.y1ba{bottom:198.825000px;}
.y20f{bottom:199.200000px;}
.y61{bottom:201.450000px;}
.y130{bottom:204.450000px;}
.y245{bottom:204.825000px;}
.y1a3{bottom:207.450000px;}
.y119{bottom:208.200000px;}
.ya8{bottom:210.450000px;}
.y244{bottom:213.825000px;}
.y28f{bottom:214.200000px;}
.yc4{bottom:215.700000px;}
.y182{bottom:217.200000px;}
.y22b{bottom:220.200000px;}
.y4f{bottom:220.575000px;}
.y1e5{bottom:223.200000px;}
.y164{bottom:223.575000px;}
.y71{bottom:225.075000px;}
.y1d7{bottom:225.450000px;}
.y279{bottom:226.200000px;}
.ye4{bottom:227.325000px;}
.y1a{bottom:227.700000px;}
.y25d{bottom:228.450000px;}
.y1b9{bottom:229.950000px;}
.y20e{bottom:230.325000px;}
.y12f{bottom:235.575000px;}
.ye3{bottom:236.325000px;}
.y1a2{bottom:238.575000px;}
.y118{bottom:239.325000px;}
.ya7{bottom:241.575000px;}
.y121{bottom:242.700000px;}
.y28e{bottom:245.325000px;}
.yc3{bottom:247.950000px;}
.y181{bottom:248.325000px;}
.y243{bottom:250.575000px;}
.y22a{bottom:251.325000px;}
.y1e4{bottom:254.325000px;}
.y1f6{bottom:256.200000px;}
.y1d6{bottom:256.575000px;}
.y278{bottom:256.950000px;}
.y1b8{bottom:257.325000px;}
.y60{bottom:259.575000px;}
.y20d{bottom:261.450000px;}
.y19{bottom:263.700000px;}
.y14c{bottom:264.825000px;}
.y1b7{bottom:266.325000px;}
.y12e{bottom:266.700000px;}
.y8e{bottom:268.200000px;}
.y120{bottom:268.575000px;}
.y1a1{bottom:269.700000px;}
.y117{bottom:270.450000px;}
.ye2{bottom:271.575000px;}
.ya6{bottom:272.325000px;}
.y167{bottom:276.450000px;}
.y4e{bottom:278.325000px;}
.y180{bottom:279.075000px;}
.yc2{bottom:279.825000px;}
.y2bd{bottom:280.200000px;}
.y242{bottom:281.700000px;}
.y229{bottom:282.450000px;}
.y70{bottom:283.200000px;}
.y163{bottom:284.700000px;}
.y1e3{bottom:285.450000px;}
.y1d5{bottom:287.325000px;}
.y25c{bottom:290.700000px;}
.y20c{bottom:292.575000px;}
.y14b{bottom:295.950000px;}
.y12d{bottom:297.825000px;}
.y8d{bottom:298.950000px;}
.y13b{bottom:299.325000px;}
.y18{bottom:300.075000px;}
.y1a0{bottom:300.825000px;}
.y116{bottom:301.200000px;}
.y161{bottom:302.325000px;}
.ye1{bottom:302.700000px;}
.y277{bottom:303.075000px;}
.ya5{bottom:303.450000px;}
.y28d{bottom:307.200000px;}
.y17f{bottom:310.245000px;}
.yc1{bottom:310.980000px;}
.y241{bottom:312.870000px;}
.y228{bottom:313.245000px;}
.y1e2{bottom:316.620000px;}
.y5f{bottom:317.730000px;}
.y1d4{bottom:318.495000px;}
.y25b{bottom:321.480000px;}
.y20b{bottom:323.370000px;}
.y14a{bottom:326.745000px;}
.y13a{bottom:327.855000px;}
.y12c{bottom:328.620000px;}
.y8c{bottom:330.120000px;}
.y41{bottom:331.605000px;}
.y19f{bottom:331.995000px;}
.y115{bottom:332.370000px;}
.y1b6{bottom:333.120000px;}
.ye0{bottom:333.870000px;}
.y276{bottom:334.230000px;}
.y15f{bottom:334.245000px;}
.ya4{bottom:334.605000px;}
.y17{bottom:336.120000px;}
.y4d{bottom:336.870000px;}
.y28c{bottom:338.355000px;}
.y6f{bottom:340.980000px;}
.y17e{bottom:341.355000px;}
.yc0{bottom:342.120000px;}
.y240{bottom:343.620000px;}
.y227{bottom:344.355000px;}
.y1e1{bottom:347.730000px;}
.y1f5{bottom:349.245000px;}
.y1d3{bottom:349.620000px;}
.y25a{bottom:352.620000px;}
.y139{bottom:353.370000px;}
.y20a{bottom:355.620000px;}
.y149{bottom:357.855000px;}
.y12b{bottom:359.745000px;}
.y19e{bottom:360.120000px;}
.y8b{bottom:361.230000px;}
.y1ca{bottom:362.745000px;}
.y114{bottom:363.495000px;}
.y1b5{bottom:364.245000px;}
.ydf{bottom:364.980000px;}
.y275{bottom:365.355000px;}
.ya3{bottom:365.745000px;}
.y15e{bottom:366.120000px;}
.y19d{bottom:366.870000px;}
.y19c{bottom:369.120000px;}
.y28b{bottom:369.495000px;}
.y16{bottom:370.245000px;}
.y17d{bottom:372.495000px;}
.ybf{bottom:373.245000px;}
.y23f{bottom:374.730000px;}
.y5e{bottom:375.480000px;}
.y19b{bottom:378.105000px;}
.y1e0{bottom:378.480000px;}
.y1f4{bottom:380.370000px;}
.y1d2{bottom:380.745000px;}
.y259{bottom:385.995000px;}
.y209{bottom:387.495000px;}
.y148{bottom:388.980000px;}
.y40{bottom:390.870000px;}
.y8a{bottom:392.355000px;}
.y1c9{bottom:393.870000px;}
.y113{bottom:394.620000px;}
.y4c{bottom:395.355000px;}
.yde{bottom:396.120000px;}
.y274{bottom:396.495000px;}
.ya2{bottom:396.870000px;}
.y15c{bottom:398.370000px;}
.y154{bottom:398.730000px;}
.y6e{bottom:399.495000px;}
.y28a{bottom:400.620000px;}
.y15{bottom:401.370000px;}
.y17c{bottom:403.620000px;}
.ybe{bottom:405.120000px;}
.y23e{bottom:405.870000px;}
.y226{bottom:408.870000px;}
.y1df{bottom:409.620000px;}
.y3f{bottom:411.495000px;}
.y1d1{bottom:411.870000px;}
.y19a{bottom:413.745000px;}
.y2a4{bottom:415.245000px;}
.y208{bottom:417.120000px;}
.y258{bottom:417.495000px;}
.y147{bottom:420.120000px;}
.y12a{bottom:421.995000px;}
.y105{bottom:422.745000px;}
.y207{bottom:423.495000px;}
.y1c8{bottom:424.995000px;}
.ydd{bottom:426.870000px;}
.y1b4{bottom:427.245000px;}
.ya1{bottom:427.620000px;}
.y112{bottom:427.995000px;}
.y153{bottom:429.870000px;}
.y15a{bottom:430.620000px;}
.y289{bottom:431.370000px;}
.y14{bottom:432.495000px;}
.y5d{bottom:433.620000px;}
.y17b{bottom:434.370000px;}
.y206{bottom:434.745000px;}
.y23d{bottom:437.025000px;}
.ybd{bottom:437.400000px;}
.y100{bottom:437.775000px;}
.y89{bottom:438.525000px;}
.y225{bottom:440.400000px;}
.y1de{bottom:440.775000px;}
.y1d0{bottom:442.650000px;}
.y199{bottom:444.900000px;}
.y2a3{bottom:446.400000px;}
.y257{bottom:448.650000px;}
.y146{bottom:451.275000px;}
.y3e{bottom:453.150000px;}
.yf7{bottom:453.900000px;}
.y1c7{bottom:456.150000px;}
.y6d{bottom:458.025000px;}
.y273{bottom:458.400000px;}
.ya0{bottom:458.775000px;}
.y111{bottom:459.525000px;}
.y152{bottom:460.650000px;}
.y158{bottom:462.525000px;}
.y13{bottom:463.650000px;}
.y17a{bottom:465.525000px;}
.y23c{bottom:468.150000px;}
.ybc{bottom:468.525000px;}
.yff{bottom:468.900000px;}
.y88{bottom:469.275000px;}
.y205{bottom:471.150000px;}
.y224{bottom:471.525000px;}
.y3d{bottom:473.775000px;}
.y198{bottom:476.025000px;}
.y2a2{bottom:477.525000px;}
.y256{bottom:479.775000px;}
.y145{bottom:482.025000px;}
.y179{bottom:483.150000px;}
.y129{bottom:483.900000px;}
.yf6{bottom:484.650000px;}
.y104{bottom:485.025000px;}
.y1c6{bottom:486.900000px;}
.y1dd{bottom:487.650000px;}
.ydc{bottom:489.525000px;}
.y9f{bottom:489.900000px;}
.y110{bottom:490.650000px;}
.y5c{bottom:491.775000px;}
.y288{bottom:493.650000px;}
.y12{bottom:494.400000px;}
.y23b{bottom:498.900000px;}
.ybb{bottom:499.275000px;}
.yfe{bottom:500.025000px;}
.y87{bottom:500.400000px;}
.y204{bottom:502.275000px;}
.y26d{bottom:504.525000px;}
.y1f3{bottom:504.900000px;}
.y197{bottom:507.150000px;}
.y157{bottom:507.525000px;}
.y2a1{bottom:508.650000px;}
.y255{bottom:510.525000px;}
.y4b{bottom:511.275000px;}
.y3c{bottom:512.400000px;}
.y144{bottom:513.150000px;}
.y128{bottom:515.025000px;}
.yf5{bottom:515.775000px;}
.y103{bottom:516.150000px;}
.y6c{bottom:516.525000px;}
.y1c5{bottom:518.025000px;}
.ydb{bottom:520.650000px;}
.y9e{bottom:521.025000px;}
.y10f{bottom:521.775000px;}
.y151{bottom:522.900000px;}
.y287{bottom:524.775000px;}
.y11{bottom:525.525000px;}
.yba{bottom:530.400000px;}
.yfd{bottom:531.150000px;}
.y86{bottom:531.525000px;}
.y23a{bottom:532.650000px;}
.y203{bottom:533.025000px;}
.y223{bottom:533.400000px;}
.y26c{bottom:535.650000px;}
.y1f2{bottom:536.400000px;}
.y156{bottom:537.150000px;}
.y196{bottom:538.275000px;}
.y2a0{bottom:539.400000px;}
.y254{bottom:541.650000px;}
.y143{bottom:544.275000px;}
.y127{bottom:546.150000px;}
.yf4{bottom:546.900000px;}
.y1dc{bottom:548.775000px;}
.y1c4{bottom:549.150000px;}
.y5b{bottom:549.900000px;}
.y3b{bottom:551.025000px;}
.y9d{bottom:552.150000px;}
.y1b3{bottom:552.525000px;}
.yda{bottom:552.900000px;}
.y10e{bottom:553.275000px;}
.y150{bottom:554.025000px;}
.y286{bottom:555.900000px;}
.y10{bottom:556.650000px;}
.yb9{bottom:561.525000px;}
.yfc{bottom:561.900000px;}
.y85{bottom:562.650000px;}
.y202{bottom:564.195000px;}
.y222{bottom:564.570000px;}
.y26b{bottom:566.445000px;}
.y272{bottom:566.820000px;}
.y155{bottom:567.195000px;}
.y1f1{bottom:567.570000px;}
.y195{bottom:569.070000px;}
.y4a{bottom:569.445000px;}
.y29f{bottom:570.570000px;}
.y3a{bottom:571.695000px;}
.y253{bottom:572.820000px;}
.y6b{bottom:574.695000px;}
.y142{bottom:575.445000px;}
.y126{bottom:576.195000px;}
.yf3{bottom:578.070000px;}
.y1c3{bottom:580.320000px;}
.y2a{bottom:581.820000px;}
.y9c{bottom:582.945000px;}
.y1b2{bottom:583.695000px;}
.yd9{bottom:584.070000px;}
.y10d{bottom:584.820000px;}
.y14f{bottom:585.195000px;}
.y285{bottom:586.695000px;}
.yf{bottom:587.820000px;}
.y39{bottom:592.695000px;}
.yd8{bottom:593.070000px;}
.y84{bottom:593.820000px;}
.y201{bottom:595.320000px;}
.y221{bottom:595.695000px;}
.y194{bottom:596.445000px;}
.y26a{bottom:597.570000px;}
.y1f0{bottom:599.070000px;}
.y125{bottom:601.695000px;}
.y193{bottom:602.820000px;}
.y251{bottom:603.195000px;}
.y191{bottom:605.070000px;}
.y141{bottom:606.570000px;}
.y2b1{bottom:608.070000px;}
.y5a{bottom:608.820000px;}
.yf2{bottom:609.195000px;}
.y1c2{bottom:611.445000px;}
.y250{bottom:612.195000px;}
.y29{bottom:612.570000px;}
.y38{bottom:613.320000px;}
.y9b{bottom:614.070000px;}
.y14e{bottom:614.820000px;}
.y269{bottom:615.195000px;}
.y10c{bottom:615.945000px;}
.y284{bottom:616.320000px;}
.ye{bottom:618.570000px;}
.y252{bottom:620.820000px;}
.y192{bottom:622.320000px;}
.yb8{bottom:623.445000px;}
.yfb{bottom:624.195000px;}
.y239{bottom:626.070000px;}
.y220{bottom:626.445000px;}
.y200{bottom:627.195000px;}
.y49{bottom:627.570000px;}
.y271{bottom:628.695000px;}
.yd7{bottom:630.195000px;}
.y6a{bottom:632.820000px;}
.y140{bottom:637.320000px;}
.y83{bottom:639.570000px;}
.yf1{bottom:639.945000px;}
.y14d{bottom:640.695000px;}
.y1c1{bottom:642.195000px;}
.y28{bottom:643.695000px;}
.y9a{bottom:645.195000px;}
.y1b1{bottom:645.945000px;}
.y10b{bottom:647.070000px;}
.y24f{bottom:648.945000px;}
.yd{bottom:649.695000px;}
.y37{bottom:651.945000px;}
.y2bc{bottom:653.070000px;}
.y102{bottom:653.820000px;}
.yb7{bottom:654.570000px;}
.yfa{bottom:655.320000px;}
.y238{bottom:657.195000px;}
.y21f{bottom:657.570000px;}
.y1ff{bottom:659.445000px;}
.y190{bottom:659.820000px;}
.yd6{bottom:661.320000px;}
.y29e{bottom:663.570000px;}
.y13f{bottom:668.445000px;}
.y59{bottom:668.820000px;}
.y82{bottom:670.695000px;}
.yf0{bottom:671.070000px;}
.y2b0{bottom:671.445000px;}
.y177{bottom:671.820000px;}
.y36{bottom:672.570000px;}
.y1c0{bottom:673.320000px;}
.y27{bottom:674.820000px;}
.y283{bottom:675.945000px;}
.y99{bottom:676.320000px;}
.y1b0{bottom:677.070000px;}
.y10a{bottom:678.195000px;}
.y268{bottom:678.945000px;}
.y101{bottom:679.320000px;}
.y24e{bottom:680.445000px;}
.y48{bottom:685.695000px;}
.yb6{bottom:686.445000px;}
.y21e{bottom:688.695000px;}
.y69{bottom:690.600000px;}
.y270{bottom:690.975000px;}
.yd5{bottom:692.100000px;}
.y1ef{bottom:692.475000px;}
.y35{bottom:693.225000px;}
.y29d{bottom:694.725000px;}
.yc{bottom:696.975000px;}
.y13e{bottom:699.600000px;}
.y81{bottom:701.850000px;}
.yef{bottom:702.225000px;}
.y2bb{bottom:702.600000px;}
.y2af{bottom:703.350000px;}
.y1bf{bottom:704.475000px;}
.y26{bottom:705.975000px;}
.y98{bottom:707.100000px;}
.y1af{bottom:707.850000px;}
.y109{bottom:708.975000px;}
.y267{bottom:710.850000px;}
.y24d{bottom:711.975000px;}
.y34{bottom:714.225000px;}
.yf9{bottom:716.100000px;}
.yb5{bottom:718.725000px;}
.y18f{bottom:721.725000px;}
.y21d{bottom:722.100000px;}
.yd4{bottom:723.225000px;}
.y1ee{bottom:723.975000px;}
.y29c{bottom:725.850000px;}
.y58{bottom:728.100000px;}
.y13d{bottom:730.725000px;}
.y80{bottom:732.975000px;}
.yee{bottom:733.350000px;}
.y175{bottom:734.475000px;}
.y2ae{bottom:735.225000px;}
.y1be{bottom:735.600000px;}
.y25{bottom:736.725000px;}
.y97{bottom:738.225000px;}
.y1ae{bottom:738.975000px;}
.y108{bottom:740.100000px;}
.yf8{bottom:741.975000px;}
.y24c{bottom:742.725000px;}
.y47{bottom:743.475000px;}
.y68{bottom:748.725000px;}
.yb4{bottom:750.600000px;}
.y1fe{bottom:752.475000px;}
.yb{bottom:752.850000px;}
.y237{bottom:753.225000px;}
.y21c{bottom:753.600000px;}
.yd3{bottom:754.350000px;}
.y1ed{bottom:755.100000px;}
.y266{bottom:755.475000px;}
.y29b{bottom:756.975000px;}
.y13c{bottom:760.725000px;}
.y7f{bottom:763.725000px;}
.yed{bottom:764.100000px;}
.y166{bottom:766.350000px;}
.y2ad{bottom:767.100000px;}
.y24{bottom:767.850000px;}
.y96{bottom:769.350000px;}
.y107{bottom:770.100000px;}
.y33{bottom:773.475000px;}
.y24b{bottom:773.850000px;}
.yb3{bottom:782.850000px;}
.y1fd{bottom:783.600000px;}
.y18e{bottom:783.975000px;}
.y236{bottom:784.350000px;}
.y21b{bottom:784.725000px;}
.y265{bottom:785.100000px;}
.yd2{bottom:785.475000px;}
.y57{bottom:786.225000px;}
.y1ec{bottom:786.600000px;}
.y29a{bottom:788.100000px;}
.ya{bottom:791.850000px;}
.y32{bottom:794.100000px;}
.y7e{bottom:794.850000px;}
.yec{bottom:795.225000px;}
.y106{bottom:795.975000px;}
.y165{bottom:797.475000px;}
.y2ba{bottom:798.225000px;}
.y23{bottom:798.975000px;}
.y95{bottom:800.475000px;}
.y1ad{bottom:801.225000px;}
.y46{bottom:801.600000px;}
.y24a{bottom:804.225000px;}
.y67{bottom:806.850000px;}
.y249{bottom:813.225000px;}
.yb2{bottom:813.975000px;}
.y235{bottom:814.350000px;}
.y1fc{bottom:814.725000px;}
.y18d{bottom:815.100000px;}
.y21a{bottom:815.475000px;}
.y264{bottom:816.225000px;}
.yd1{bottom:816.600000px;}
.y1eb{bottom:817.755000px;}
.y299{bottom:818.895000px;}
.y9{bottom:823.005000px;}
.y234{bottom:823.380000px;}
.y7d{bottom:826.005000px;}
.yeb{bottom:826.380000px;}
.y138{bottom:828.645000px;}
.y174{bottom:829.380000px;}
.y2b9{bottom:829.755000px;}
.y22{bottom:830.130000px;}
.y2ac{bottom:830.505000px;}
.y282{bottom:831.255000px;}
.y94{bottom:831.630000px;}
.y31{bottom:832.770000px;}
.y56{bottom:844.380000px;}
.yb1{bottom:845.130000px;}
.y18c{bottom:845.880000px;}
.y26f{bottom:846.270000px;}
.y219{bottom:846.630000px;}
.yd0{bottom:847.380000px;}
.y1ac{bottom:847.755000px;}
.y1ea{bottom:848.895000px;}
.y298{bottom:850.005000px;}
.y30{bottom:853.755000px;}
.y8{bottom:854.130000px;}
.y7c{bottom:857.130000px;}
.yea{bottom:857.505000px;}
.y233{bottom:859.020000px;}
.y45{bottom:859.770000px;}
.y21{bottom:861.255000px;}
.y2b8{bottom:861.630000px;}
.y2aa{bottom:862.380000px;}
.y93{bottom:862.395000px;}
.y66{bottom:865.005000px;}
.y2f{bottom:874.380000px;}
.yb0{bottom:876.255000px;}
.y18b{bottom:877.005000px;}
.y218{bottom:877.755000px;}
.y263{bottom:878.130000px;}
.ycf{bottom:878.505000px;}
.y1cf{bottom:879.630000px;}
.y297{bottom:881.130000px;}
.y7{bottom:885.255000px;}
.y7b{bottom:888.255000px;}
.ye9{bottom:888.630000px;}
.y232{bottom:890.130000px;}
.y137{bottom:890.880000px;}
.y20{bottom:892.005000px;}
.y172{bottom:892.755000px;}
.y281{bottom:893.505000px;}
.y2a9{bottom:894.255000px;}
.y1aa{bottom:895.395000px;}
.y55{bottom:902.505000px;}
.y1fb{bottom:906.630000px;}
.yaf{bottom:907.005000px;}
.y18a{bottom:908.130000px;}
.y217{bottom:908.880000px;}
.y92{bottom:909.255000px;}
.yce{bottom:910.005000px;}
.y1ce{bottom:910.755000px;}
.y296{bottom:912.255000px;}
.y2e{bottom:913.005000px;}
.y1fa{bottom:915.630000px;}
.y6{bottom:916.380000px;}
.y44{bottom:917.880000px;}
.y11f{bottom:919.005000px;}
.ye8{bottom:919.380000px;}
.y231{bottom:921.255000px;}
.y136{bottom:921.630000px;}
.y1f{bottom:923.130000px;}
.y280{bottom:924.630000px;}
.y171{bottom:924.645000px;}
.y2b7{bottom:925.395000px;}
.y2a8{bottom:926.145000px;}
.y7a{bottom:934.005000px;}
.y189{bottom:939.255000px;}
.y216{bottom:940.005000px;}
.y262{bottom:940.380000px;}
.ycd{bottom:941.505000px;}
.y1cd{bottom:941.880000px;}
.y295{bottom:943.380000px;}
.y11e{bottom:950.175000px;}
.y2d{bottom:951.675000px;}
.y230{bottom:952.425000px;}
.y135{bottom:952.800000px;}
.yae{bottom:953.925000px;}
.y1e{bottom:954.300000px;}
.y27f{bottom:955.800000px;}
.y170{bottom:956.550000px;}
.y2b6{bottom:957.300000px;}
.y2a7{bottom:958.050000px;}
.y5{bottom:958.425000px;}
.y54{bottom:961.050000px;}
.y79{bottom:965.175000px;}
.ye7{bottom:966.300000px;}
.y91{bottom:970.425000px;}
.y215{bottom:970.800000px;}
.y261{bottom:971.550000px;}
.ycc{bottom:973.050000px;}
.y294{bottom:974.175000px;}
.y43{bottom:976.050000px;}
.y65{bottom:980.925000px;}
.y134{bottom:983.925000px;}
.y1d{bottom:985.425000px;}
.y27e{bottom:986.550000px;}
.y16e{bottom:988.425000px;}
.y2b5{bottom:988.800000px;}
.y2a6{bottom:989.550000px;}
.y1a9{bottom:990.300000px;}
.y2c{bottom:991.425000px;}
.y78{bottom:996.300000px;}
.y11d{bottom:997.050000px;}
.y188{bottom:1001.175000px;}
.y90{bottom:1001.550000px;}
.y214{bottom:1001.925000px;}
.y4{bottom:1003.800000px;}
.ycb{bottom:1004.175000px;}
.y293{bottom:1005.300000px;}
.y260{bottom:1010.550000px;}
.yad{bottom:1015.050000px;}
.y1c{bottom:1016.550000px;}
.y27d{bottom:1017.675000px;}
.y53{bottom:1019.175000px;}
.y2b4{bottom:1020.675000px;}
.y2a5{bottom:1021.425000px;}
.y1a8{bottom:1022.175000px;}
.y77{bottom:1027.425000px;}
.y187{bottom:1032.675000px;}
.y213{bottom:1033.050000px;}
.y42{bottom:1033.800000px;}
.yca{bottom:1034.925000px;}
.y292{bottom:1036.425000px;}
.y64{bottom:1039.050000px;}
.y2b{bottom:1042.800000px;}
.yac{bottom:1046.175000px;}
.y1b{bottom:1047.300000px;}
.y8f{bottom:1048.050000px;}
.y3{bottom:1048.800000px;}
.y16c{bottom:1051.050000px;}
.y2b3{bottom:1052.550000px;}
.y1a7{bottom:1053.675000px;}
.y186{bottom:1062.675000px;}
.y26e{bottom:1063.050000px;}
.y27c{bottom:1064.550000px;}
.y212{bottom:1064.925000px;}
.yc9{bottom:1066.050000px;}
.y291{bottom:1067.550000px;}
.y185{bottom:1071.675000px;}
.y76{bottom:1073.955000px;}
.y52{bottom:1076.955000px;}
.y2{bottom:1094.205000px;}
.y63{bottom:1097.205000px;}
.y1a6{bottom:1098.705000px;}
.y74{bottom:1114.455000px;}
.y1{bottom:1118.580000px;}
.hb{height:21.000000px;}
.h1c{height:30.750000px;}
.h33{height:30.787500px;}
.h30{height:31.110000px;}
.h14{height:31.125000px;}
.h1b{height:31.147500px;}
.h15{height:31.162500px;}
.h16{height:31.500000px;}
.h23{height:46.655273px;}
.ha{height:52.695866px;}
.h29{height:56.652832px;}
.h1a{height:61.875000px;}
.h17{height:61.912500px;}
.h18{height:62.250000px;}
.h28{height:62.272500px;}
.h19{height:62.287500px;}
.h13{height:64.775391px;}
.h31{height:65.707031px;}
.h12{height:66.515625px;}
.h1{height:70.664062px;}
.h7{height:71.109375px;}
.h8{height:71.229375px;}
.h2f{height:71.289375px;}
.h5{height:71.613281px;}
.h6{height:72.562500px;}
.h32{height:75.093750px;}
.h24{height:76.655273px;}
.h9{height:79.980469px;}
.h21{height:82.152832px;}
.h2{height:82.441406px;}
.hd{height:82.980469px;}
.h4{height:84.656250px;}
.hc{height:87.445312px;}
.h11{height:98.652832px;}
.h1d{height:98.772832px;}
.h2d{height:98.832832px;}
.he{height:101.652832px;}
.h2c{height:103.152832px;}
.h3{height:105.996094px;}
.h10{height:106.664062px;}
.h2b{height:106.784062px;}
.h2a{height:114.480469px;}
.h1f{height:115.980469px;}
.h26{height:134.592832px;}
.h2e{height:134.652832px;}
.h1e{height:134.772832px;}
.hf{height:137.652832px;}
.h25{height:150.480469px;}
.h27{height:151.920469px;}
.h22{height:171.155273px;}
.h20{height:175.655273px;}
.h0{height:1263.000000px;}
.w3{width:9.037500px;}
.w4{width:18.037500px;}
.we{width:77.287500px;}
.wd{width:79.537500px;}
.w13{width:94.537500px;}
.w6{width:105.412500px;}
.w9{width:105.825000px;}
.w11{width:114.037500px;}
.w12{width:114.075000px;}
.w7{width:115.950000px;}
.wa{width:126.787500px;}
.wb{width:136.950000px;}
.wf{width:137.700000px;}
.w15{width:211.620000px;}
.w16{width:211.950000px;}
.w8{width:264.870000px;}
.w10{width:311.775000px;}
.wc{width:339.900000px;}
.w5{width:413.820000px;}
.w14{width:636.675000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.912500px;}
.x2{left:127.537487px;}
.x19{left:128.662487px;}
.x7{left:135.449987px;}
.x17{left:136.949987px;}
.x6{left:138.074987px;}
.x5{left:153.074987px;}
.x4b{left:154.574987px;}
.x2c{left:161.324987px;}
.x31{left:163.574987px;}
.x37{left:174.074987px;}
.x12{left:177.449987px;}
.x40{left:181.949987px;}
.x16{left:187.574987px;}
.x42{left:200.324987px;}
.x41{left:202.574987px;}
.x3e{left:205.574987px;}
.x1d{left:207.074987px;}
.x22{left:208.574987px;}
.x3b{left:210.449987px;}
.x47{left:211.949987px;}
.x14{left:225.494987px;}
.x3f{left:229.619987px;}
.x15{left:233.369987px;}
.x3c{left:234.494987px;}
.x3d{left:236.369987px;}
.x1f{left:241.619987px;}
.x43{left:244.619987px;}
.x28{left:249.869987px;}
.x1b{left:253.994987px;}
.x4{left:261.494987px;}
.xf{left:277.994987px;}
.x10{left:285.869987px;}
.x44{left:299.744987px;}
.x46{left:308.744987px;}
.x2e{left:310.244987px;}
.x24{left:319.649987px;}
.x4f{left:321.149987px;}
.x39{left:326.774987px;}
.x13{left:330.149987px;}
.x3a{left:337.649987px;}
.x45{left:341.024987px;}
.x4e{left:346.649987px;}
.x38{left:353.774987px;}
.x3{left:363.149987px;}
.x32{left:364.274987px;}
.xb{left:371.024987px;}
.xc{left:378.899987px;}
.x29{left:393.900000px;}
.x30{left:436.694987px;}
.x48{left:440.820000px;}
.x35{left:468.945000px;}
.x33{left:482.444987px;}
.x2f{left:489.194987px;}
.x2a{left:500.475000px;}
.x34{left:512.474987px;}
.x26{left:542.850000px;}
.x36{left:549.225000px;}
.x4d{left:553.350000px;}
.x49{left:555.600000px;}
.xd{left:602.879987px;}
.x1a{left:604.004987px;}
.xe{left:613.769987px;}
.x2b{left:628.020000px;}
.x2d{left:635.519987px;}
.x23{left:642.269987px;}
.x27{left:649.020000px;}
.x20{left:665.129987px;}
.x4a{left:670.425000px;}
.x18{left:701.549987px;}
.x4c{left:718.049987px;}
.x1{left:738.674987px;}
.x1c{left:746.549987px;}
.x11{left:747.675000px;}
.x9{left:751.424987px;}
.x1e{left:754.049987px;}
.x8{left:756.675000px;}
.xa{left:759.344987px;}
.x21{left:768.329987px;}
@media print{
.v3{vertical-align:-73.333333pt;}
.v1f{vertical-align:-30.666667pt;}
.v2{vertical-align:-21.333333pt;}
.v1e{vertical-align:-18.666667pt;}
.v5{vertical-align:-13.333333pt;}
.v19{vertical-align:-10.666667pt;}
.vb{vertical-align:-9.333333pt;}
.v4{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:2.720000pt;}
.vf{vertical-align:9.333333pt;}
.v17{vertical-align:10.666667pt;}
.ve{vertical-align:12.000000pt;}
.v6{vertical-align:13.333333pt;}
.v7{vertical-align:16.000000pt;}
.v1b{vertical-align:17.333333pt;}
.v1{vertical-align:21.333333pt;}
.v13{vertical-align:22.666667pt;}
.v18{vertical-align:24.000000pt;}
.v12{vertical-align:26.666667pt;}
.v9{vertical-align:28.000000pt;}
.v1a{vertical-align:30.666667pt;}
.vc{vertical-align:32.000000pt;}
.v8{vertical-align:37.333333pt;}
.va{vertical-align:40.000000pt;}
.v11{vertical-align:41.333333pt;}
.v1d{vertical-align:45.333333pt;}
.v16{vertical-align:50.613333pt;}
.v1c{vertical-align:54.666667pt;}
.v15{vertical-align:62.666667pt;}
.v14{vertical-align:65.333333pt;}
.vd{vertical-align:69.333333pt;}
.ls80{letter-spacing:-1.792000pt;}
.ls7e{letter-spacing:-1.770667pt;}
.ls4b{letter-spacing:-1.600000pt;}
.ls4a{letter-spacing:-1.333333pt;}
.ls2b{letter-spacing:-0.576000pt;}
.ls44{letter-spacing:-0.554667pt;}
.ls7c{letter-spacing:-0.514667pt;}
.ls2{letter-spacing:-0.458667pt;}
.ls14{letter-spacing:-0.437333pt;}
.ls11{letter-spacing:-0.416000pt;}
.ls62{letter-spacing:-0.309333pt;}
.ls63{letter-spacing:-0.280000pt;}
.ls49{letter-spacing:-0.277333pt;}
.ls28{letter-spacing:-0.226667pt;}
.ls5f{letter-spacing:-0.149333pt;}
.ls29{letter-spacing:-0.048000pt;}
.lse{letter-spacing:-0.021333pt;}
.ls60{letter-spacing:-0.002667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls58{letter-spacing:0.040000pt;}
.ls6c{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.112000pt;}
.ls3a{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.138667pt;}
.ls41{letter-spacing:0.149333pt;}
.ls24{letter-spacing:0.165333pt;}
.ls13{letter-spacing:0.202667pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls61{letter-spacing:0.280000pt;}
.ls45{letter-spacing:0.296000pt;}
.ls7d{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.416000pt;}
.ls3b{letter-spacing:0.418667pt;}
.ls2d{letter-spacing:0.437333pt;}
.ls42{letter-spacing:0.453333pt;}
.ls10{letter-spacing:0.458667pt;}
.ls31{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.528000pt;}
.ls35{letter-spacing:0.544000pt;}
.lsd{letter-spacing:0.549333pt;}
.ls2a{letter-spacing:0.554667pt;}
.ls77{letter-spacing:0.557333pt;}
.lsc{letter-spacing:0.570667pt;}
.ls73{letter-spacing:0.573333pt;}
.ls5a{letter-spacing:0.586667pt;}
.ls9{letter-spacing:0.592000pt;}
.ls67{letter-spacing:0.618667pt;}
.ls72{letter-spacing:0.656000pt;}
.ls46{letter-spacing:0.661333pt;}
.ls70{letter-spacing:0.672000pt;}
.ls36{letter-spacing:0.688000pt;}
.ls68{letter-spacing:0.778667pt;}
.ls21{letter-spacing:0.874667pt;}
.ls12{letter-spacing:0.917333pt;}
.ls53{letter-spacing:1.056000pt;}
.ls43{letter-spacing:1.146667pt;}
.ls3{letter-spacing:1.333333pt;}
.ls2f{letter-spacing:1.354667pt;}
.ls81{letter-spacing:1.472000pt;}
.ls23{letter-spacing:1.653333pt;}
.ls2c{letter-spacing:1.770667pt;}
.ls37{letter-spacing:1.786667pt;}
.ls3e{letter-spacing:1.946667pt;}
.ls33{letter-spacing:1.952000pt;}
.ls64{letter-spacing:2.152000pt;}
.ls47{letter-spacing:2.320000pt;}
.ls26{letter-spacing:2.618667pt;}
.ls66{letter-spacing:2.632000pt;}
.ls69{letter-spacing:2.845333pt;}
.ls32{letter-spacing:3.085333pt;}
.ls5d{letter-spacing:3.280000pt;}
.ls65{letter-spacing:3.485333pt;}
.ls1b{letter-spacing:3.773333pt;}
.ls1a{letter-spacing:3.802667pt;}
.ls1f{letter-spacing:3.909333pt;}
.ls4d{letter-spacing:3.997333pt;}
.ls1e{letter-spacing:4.528000pt;}
.ls52{letter-spacing:4.573333pt;}
.ls6f{letter-spacing:4.800000pt;}
.ls4f{letter-spacing:5.136000pt;}
.ls25{letter-spacing:10.520000pt;}
.ls5e{letter-spacing:11.853333pt;}
.ls56{letter-spacing:12.000000pt;}
.ls17{letter-spacing:13.333333pt;}
.ls38{letter-spacing:13.456000pt;}
.ls3c{letter-spacing:14.858667pt;}
.ls3f{letter-spacing:15.202667pt;}
.ls57{letter-spacing:15.952000pt;}
.ls6b{letter-spacing:16.018667pt;}
.ls34{letter-spacing:16.106667pt;}
.ls55{letter-spacing:16.213333pt;}
.ls78{letter-spacing:16.320000pt;}
.ls54{letter-spacing:17.440000pt;}
.ls39{letter-spacing:17.525333pt;}
.ls30{letter-spacing:17.685333pt;}
.ls79{letter-spacing:18.133333pt;}
.ls51{letter-spacing:18.469333pt;}
.ls7a{letter-spacing:18.664000pt;}
.ls74{letter-spacing:18.986667pt;}
.ls59{letter-spacing:19.085333pt;}
.ls5b{letter-spacing:19.192000pt;}
.ls4e{letter-spacing:21.136000pt;}
.ls50{letter-spacing:21.213333pt;}
.ls75{letter-spacing:21.330667pt;}
.ls6a{letter-spacing:21.906667pt;}
.ls6e{letter-spacing:22.133333pt;}
.ls1d{letter-spacing:22.469333pt;}
.ls19{letter-spacing:23.194667pt;}
.ls4c{letter-spacing:24.000000pt;}
.ls7b{letter-spacing:25.525333pt;}
.ls82{letter-spacing:30.208000pt;}
.ls76{letter-spacing:33.525333pt;}
.ls6d{letter-spacing:38.661333pt;}
.ls6{letter-spacing:41.536000pt;}
.ls5{letter-spacing:44.202667pt;}
.ls48{letter-spacing:47.541333pt;}
.ls7f{letter-spacing:49.525333pt;}
.ls15{letter-spacing:63.242667pt;}
.ls16{letter-spacing:67.242667pt;}
.lsb{letter-spacing:80.160000pt;}
.ls71{letter-spacing:86.858667pt;}
.ls3d{letter-spacing:93.525333pt;}
.ls40{letter-spacing:228.298667pt;}
.ls5c{letter-spacing:270.773333pt;}
.ls27{letter-spacing:332.106667pt;}
.ls20{letter-spacing:332.293333pt;}
.ws36{word-spacing:-64.000000pt;}
.ws0{word-spacing:-24.021333pt;}
.wsf{word-spacing:-18.666667pt;}
.ws1c{word-spacing:-18.090667pt;}
.ws1e{word-spacing:-17.354667pt;}
.ws3{word-spacing:-17.333333pt;}
.wsc{word-spacing:-16.917333pt;}
.wsa{word-spacing:-16.458667pt;}
.ws1d{word-spacing:-16.437333pt;}
.ws9{word-spacing:-16.416000pt;}
.ws5{word-spacing:-16.021333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.978667pt;}
.wsb{word-spacing:-15.584000pt;}
.wse{word-spacing:-15.562667pt;}
.ws2{word-spacing:-15.541333pt;}
.ws25{word-spacing:-14.624000pt;}
.ws37{word-spacing:-14.400000pt;}
.wsd{word-spacing:-14.282667pt;}
.ws4d{word-spacing:-14.229333pt;}
.ws50{word-spacing:-14.208000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws40{word-spacing:-13.930667pt;}
.ws43{word-spacing:-13.770667pt;}
.ws51{word-spacing:-12.138667pt;}
.ws1f{word-spacing:-12.000000pt;}
.ws10{word-spacing:-10.805333pt;}
.ws6{word-spacing:-10.666667pt;}
.ws34{word-spacing:-10.389333pt;}
.ws2b{word-spacing:-10.269333pt;}
.ws39{word-spacing:-10.026667pt;}
.ws18{word-spacing:-9.973333pt;}
.ws41{word-spacing:-9.970667pt;}
.ws15{word-spacing:-9.746667pt;}
.ws23{word-spacing:-9.418667pt;}
.ws35{word-spacing:-9.333333pt;}
.ws2e{word-spacing:-8.874667pt;}
.ws4c{word-spacing:-8.693333pt;}
.ws19{word-spacing:-8.213333pt;}
.ws1a{word-spacing:-8.165333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2c{word-spacing:1.714667pt;}
.ws11{word-spacing:3.317333pt;}
.ws13{word-spacing:3.445333pt;}
.ws31{word-spacing:3.552000pt;}
.ws24{word-spacing:3.605333pt;}
.ws3f{word-spacing:3.885333pt;}
.ws27{word-spacing:4.240000pt;}
.ws1b{word-spacing:4.709333pt;}
.ws3e{word-spacing:4.778667pt;}
.ws17{word-spacing:6.133333pt;}
.ws20{word-spacing:6.224000pt;}
.ws44{word-spacing:7.325333pt;}
.ws16{word-spacing:7.448000pt;}
.ws22{word-spacing:8.762667pt;}
.ws38{word-spacing:8.768000pt;}
.ws14{word-spacing:8.781333pt;}
.ws3a{word-spacing:8.941333pt;}
.ws3b{word-spacing:9.112000pt;}
.ws30{word-spacing:10.221333pt;}
.ws28{word-spacing:10.445333pt;}
.ws42{word-spacing:10.520000pt;}
.ws12{word-spacing:11.082667pt;}
.ws48{word-spacing:11.133333pt;}
.ws2a{word-spacing:11.429333pt;}
.ws4e{word-spacing:11.432000pt;}
.ws45{word-spacing:11.640000pt;}
.ws3d{word-spacing:11.778667pt;}
.ws32{word-spacing:11.901333pt;}
.ws4f{word-spacing:12.005333pt;}
.ws3c{word-spacing:12.074667pt;}
.ws46{word-spacing:12.090667pt;}
.ws2f{word-spacing:12.240000pt;}
.ws21{word-spacing:12.448000pt;}
.ws49{word-spacing:12.466667pt;}
.ws47{word-spacing:13.242667pt;}
.ws4b{word-spacing:13.442667pt;}
.ws33{word-spacing:13.714667pt;}
.ws26{word-spacing:20.096000pt;}
.ws4a{word-spacing:23.898667pt;}
.ws29{word-spacing:27.973333pt;}
.ws2d{word-spacing:65.968000pt;}
._18{margin-left:-14.389333pt;}
._12{margin-left:-13.258667pt;}
._49{margin-left:-10.496000pt;}
._13{margin-left:-8.800000pt;}
._17{margin-left:-7.285333pt;}
._1a{margin-left:-5.792000pt;}
._15{margin-left:-4.064000pt;}
._4{margin-left:-2.688000pt;}
._0{margin-left:-1.642667pt;}
._1{width:0.896000pt;}
._3{width:1.941333pt;}
._2{width:3.205333pt;}
._e{width:4.602667pt;}
._5a{width:5.808000pt;}
._27{width:7.157333pt;}
._6d{width:8.474667pt;}
._78{width:9.504000pt;}
._79{width:10.474667pt;}
._59{width:11.397333pt;}
._67{width:12.586667pt;}
._7f{width:13.509333pt;}
._30{width:14.426667pt;}
._8b{width:15.856000pt;}
._7{width:17.685333pt;}
._8{width:18.725333pt;}
._76{width:19.818667pt;}
._75{width:21.098667pt;}
._88{width:22.000000pt;}
._6b{width:23.658667pt;}
._b{width:24.917333pt;}
._a{width:26.197333pt;}
._9{width:27.136000pt;}
._d{width:28.458667pt;}
._c{width:29.504000pt;}
._98{width:30.405333pt;}
._6a{width:31.317333pt;}
._69{width:32.938667pt;}
._77{width:34.389333pt;}
._6{width:35.354667pt;}
._5{width:37.098667pt;}
._93{width:38.144000pt;}
._7a{width:39.402667pt;}
._3f{width:40.426667pt;}
._68{width:41.898667pt;}
._64{width:43.120000pt;}
._63{width:44.538667pt;}
._62{width:45.717333pt;}
._89{width:46.976000pt;}
._71{width:48.085333pt;}
._73{width:49.109333pt;}
._72{width:50.005333pt;}
._91{width:51.050667pt;}
._6c{width:52.762667pt;}
._36{width:53.962667pt;}
._8e{width:55.296000pt;}
._66{width:56.810667pt;}
._32{width:57.845333pt;}
._65{width:59.456000pt;}
._33{width:60.981333pt;}
._5d{width:62.602667pt;}
._70{width:65.941333pt;}
._6f{width:66.858667pt;}
._6e{width:68.032000pt;}
._a8{width:69.930667pt;}
._7c{width:74.133333pt;}
._7b{width:75.029333pt;}
._92{width:77.514667pt;}
._28{width:79.008000pt;}
._7d{width:83.658667pt;}
._8a{width:84.736000pt;}
._25{width:85.962667pt;}
._90{width:86.896000pt;}
._87{width:88.661333pt;}
._3b{width:89.781333pt;}
._80{width:91.594667pt;}
._83{width:94.314667pt;}
._34{width:95.989333pt;}
._9d{width:97.786667pt;}
._2a{width:100.384000pt;}
._af{width:105.274667pt;}
._20{width:107.088000pt;}
._99{width:110.688000pt;}
._a4{width:112.645333pt;}
._9c{width:126.741333pt;}
._2c{width:128.650667pt;}
._96{width:129.957333pt;}
._a9{width:131.040000pt;}
._a1{width:135.498667pt;}
._84{width:136.837333pt;}
._4e{width:146.986667pt;}
._ac{width:148.149333pt;}
._61{width:150.981333pt;}
._9a{width:154.357333pt;}
._51{width:155.712000pt;}
._ae{width:161.146667pt;}
._60{width:166.026667pt;}
._47{width:168.528000pt;}
._a3{width:171.360000pt;}
._8c{width:172.693333pt;}
._3d{width:173.738667pt;}
._2f{width:175.093333pt;}
._4d{width:181.936000pt;}
._4b{width:187.125333pt;}
._85{width:188.282667pt;}
._58{width:190.037333pt;}
._35{width:192.949333pt;}
._5c{width:200.586667pt;}
._29{width:203.573333pt;}
._4f{width:205.040000pt;}
._82{width:207.749333pt;}
._53{width:213.936000pt;}
._39{width:217.098667pt;}
._21{width:218.938667pt;}
._2e{width:220.693333pt;}
._57{width:222.085333pt;}
._3c{width:224.949333pt;}
._8f{width:226.069333pt;}
._1d{width:227.077333pt;}
._52{width:232.522667pt;}
._86{width:233.589333pt;}
._a2{width:234.800000pt;}
._55{width:240.437333pt;}
._ab{width:242.160000pt;}
._42{width:243.098667pt;}
._8d{width:244.181333pt;}
._4a{width:246.981333pt;}
._a7{width:248.194667pt;}
._a6{width:249.141333pt;}
._46{width:251.045333pt;}
._41{width:253.168000pt;}
._95{width:256.506667pt;}
._5e{width:257.584000pt;}
._40{width:261.232000pt;}
._9b{width:262.912000pt;}
._44{width:264.373333pt;}
._9f{width:268.085333pt;}
._4c{width:268.992000pt;}
._94{width:271.578667pt;}
._45{width:272.709333pt;}
._97{width:273.696000pt;}
._37{width:274.816000pt;}
._31{width:277.493333pt;}
._9e{width:278.773333pt;}
._a5{width:281.125333pt;}
._50{width:282.501333pt;}
._a0{width:283.768000pt;}
._26{width:285.493333pt;}
._23{width:289.493333pt;}
._ad{width:291.346667pt;}
._22{width:293.189333pt;}
._3e{width:294.826667pt;}
._3a{width:296.160000pt;}
._24{width:300.160000pt;}
._5b{width:301.904000pt;}
._2d{width:303.877333pt;}
._38{width:306.826667pt;}
._48{width:310.981333pt;}
._2b{width:314.501333pt;}
._5f{width:316.693333pt;}
._7e{width:317.610667pt;}
._aa{width:319.269333pt;}
._56{width:320.624000pt;}
._1f{width:323.450667pt;}
._43{width:329.941333pt;}
._54{width:331.072000pt;}
._1e{width:332.106667pt;}
._81{width:333.045333pt;}
._74{width:753.136000pt;}
._14{width:967.082667pt;}
._19{width:1024.746667pt;}
._16{width:1142.336000pt;}
._f{width:1319.130667pt;}
._11{width:1366.336000pt;}
._1b{width:1634.069333pt;}
._1c{width:1657.221333pt;}
._10{width:1720.149333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs8{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs1{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:3.666667pt;}
.y173{bottom:12.333333pt;}
.y160{bottom:12.653333pt;}
.y159{bottom:12.666667pt;}
.y2ab{bottom:12.680000pt;}
.y15b{bottom:12.693333pt;}
.y162{bottom:12.706667pt;}
.y15d{bottom:13.000000pt;}
.y16f{bottom:40.000000pt;}
.y178{bottom:40.026667pt;}
.y169{bottom:40.040000pt;}
.y1ab{bottom:40.320000pt;}
.y176{bottom:40.333333pt;}
.y16b{bottom:40.340000pt;}
.y16d{bottom:40.360000pt;}
.yc8{bottom:81.366667pt;}
.y22f{bottom:85.033333pt;}
.y1e9{bottom:88.033333pt;}
.y1db{bottom:90.033333pt;}
.y51{bottom:92.700000pt;}
.y124{bottom:93.366667pt;}
.y1bd{bottom:94.033333pt;}
.y248{bottom:96.366667pt;}
.y73{bottom:96.700000pt;}
.y16a{bottom:97.033333pt;}
.y133{bottom:99.033333pt;}
.y1cc{bottom:101.700000pt;}
.y11c{bottom:102.366667pt;}
.yab{bottom:104.033333pt;}
.y1f9{bottom:104.366667pt;}
.y211{bottom:107.366667pt;}
.yc7{bottom:109.033333pt;}
.y22e{bottom:113.033333pt;}
.y1e8{bottom:115.700000pt;}
.y1da{bottom:117.366667pt;}
.y27b{bottom:118.033333pt;}
.y123{bottom:121.033333pt;}
.y1bc{bottom:121.366667pt;}
.y247{bottom:124.700000pt;}
.y132{bottom:126.700000pt;}
.y62{bottom:127.366667pt;}
.y1a5{bottom:129.366667pt;}
.y11b{bottom:129.700000pt;}
.yaa{bottom:131.700000pt;}
.y1f8{bottom:132.033333pt;}
.yc6{bottom:136.706667pt;}
.y184{bottom:137.693333pt;}
.y22d{bottom:140.373333pt;}
.y1e7{bottom:143.373333pt;}
.y50{bottom:144.360000pt;}
.y1d9{bottom:145.040000pt;}
.y27a{bottom:145.706667pt;}
.ye6{bottom:147.360000pt;}
.y72{bottom:148.373333pt;}
.y1bb{bottom:149.040000pt;}
.y210{bottom:149.693333pt;}
.y168{bottom:153.026667pt;}
.y246{bottom:153.360000pt;}
.y131{bottom:154.040000pt;}
.y1cb{bottom:156.706667pt;}
.y1a4{bottom:157.040000pt;}
.y11a{bottom:157.373333pt;}
.ya9{bottom:159.360000pt;}
.y122{bottom:162.400000pt;}
.y290{bottom:162.733333pt;}
.y25f{bottom:163.400000pt;}
.yc5{bottom:164.400000pt;}
.y183{bottom:165.400000pt;}
.y22c{bottom:168.066667pt;}
.y2b2{bottom:169.066667pt;}
.y1e6{bottom:171.066667pt;}
.y25e{bottom:171.400000pt;}
.y1d8{bottom:172.733333pt;}
.y1f7{bottom:173.400000pt;}
.ye5{bottom:175.066667pt;}
.y1ba{bottom:176.733333pt;}
.y20f{bottom:177.066667pt;}
.y61{bottom:179.066667pt;}
.y130{bottom:181.733333pt;}
.y245{bottom:182.066667pt;}
.y1a3{bottom:184.400000pt;}
.y119{bottom:185.066667pt;}
.ya8{bottom:187.066667pt;}
.y244{bottom:190.066667pt;}
.y28f{bottom:190.400000pt;}
.yc4{bottom:191.733333pt;}
.y182{bottom:193.066667pt;}
.y22b{bottom:195.733333pt;}
.y4f{bottom:196.066667pt;}
.y1e5{bottom:198.400000pt;}
.y164{bottom:198.733333pt;}
.y71{bottom:200.066667pt;}
.y1d7{bottom:200.400000pt;}
.y279{bottom:201.066667pt;}
.ye4{bottom:202.066667pt;}
.y1a{bottom:202.400000pt;}
.y25d{bottom:203.066667pt;}
.y1b9{bottom:204.400000pt;}
.y20e{bottom:204.733333pt;}
.y12f{bottom:209.400000pt;}
.ye3{bottom:210.066667pt;}
.y1a2{bottom:212.066667pt;}
.y118{bottom:212.733333pt;}
.ya7{bottom:214.733333pt;}
.y121{bottom:215.733333pt;}
.y28e{bottom:218.066667pt;}
.yc3{bottom:220.400000pt;}
.y181{bottom:220.733333pt;}
.y243{bottom:222.733333pt;}
.y22a{bottom:223.400000pt;}
.y1e4{bottom:226.066667pt;}
.y1f6{bottom:227.733333pt;}
.y1d6{bottom:228.066667pt;}
.y278{bottom:228.400000pt;}
.y1b8{bottom:228.733333pt;}
.y60{bottom:230.733333pt;}
.y20d{bottom:232.400000pt;}
.y19{bottom:234.400000pt;}
.y14c{bottom:235.400000pt;}
.y1b7{bottom:236.733333pt;}
.y12e{bottom:237.066667pt;}
.y8e{bottom:238.400000pt;}
.y120{bottom:238.733333pt;}
.y1a1{bottom:239.733333pt;}
.y117{bottom:240.400000pt;}
.ye2{bottom:241.400000pt;}
.ya6{bottom:242.066667pt;}
.y167{bottom:245.733333pt;}
.y4e{bottom:247.400000pt;}
.y180{bottom:248.066667pt;}
.yc2{bottom:248.733333pt;}
.y2bd{bottom:249.066667pt;}
.y242{bottom:250.400000pt;}
.y229{bottom:251.066667pt;}
.y70{bottom:251.733333pt;}
.y163{bottom:253.066667pt;}
.y1e3{bottom:253.733333pt;}
.y1d5{bottom:255.400000pt;}
.y25c{bottom:258.400000pt;}
.y20c{bottom:260.066667pt;}
.y14b{bottom:263.066667pt;}
.y12d{bottom:264.733333pt;}
.y8d{bottom:265.733333pt;}
.y13b{bottom:266.066667pt;}
.y18{bottom:266.733333pt;}
.y1a0{bottom:267.400000pt;}
.y116{bottom:267.733333pt;}
.y161{bottom:268.733333pt;}
.ye1{bottom:269.066667pt;}
.y277{bottom:269.400000pt;}
.ya5{bottom:269.733333pt;}
.y28d{bottom:273.066667pt;}
.y17f{bottom:275.773333pt;}
.yc1{bottom:276.426667pt;}
.y241{bottom:278.106667pt;}
.y228{bottom:278.440000pt;}
.y1e2{bottom:281.440000pt;}
.y5f{bottom:282.426667pt;}
.y1d4{bottom:283.106667pt;}
.y25b{bottom:285.760000pt;}
.y20b{bottom:287.440000pt;}
.y14a{bottom:290.440000pt;}
.y13a{bottom:291.426667pt;}
.y12c{bottom:292.106667pt;}
.y8c{bottom:293.440000pt;}
.y41{bottom:294.760000pt;}
.y19f{bottom:295.106667pt;}
.y115{bottom:295.440000pt;}
.y1b6{bottom:296.106667pt;}
.ye0{bottom:296.773333pt;}
.y276{bottom:297.093333pt;}
.y15f{bottom:297.106667pt;}
.ya4{bottom:297.426667pt;}
.y17{bottom:298.773333pt;}
.y4d{bottom:299.440000pt;}
.y28c{bottom:300.760000pt;}
.y6f{bottom:303.093333pt;}
.y17e{bottom:303.426667pt;}
.yc0{bottom:304.106667pt;}
.y240{bottom:305.440000pt;}
.y227{bottom:306.093333pt;}
.y1e1{bottom:309.093333pt;}
.y1f5{bottom:310.440000pt;}
.y1d3{bottom:310.773333pt;}
.y25a{bottom:313.440000pt;}
.y139{bottom:314.106667pt;}
.y20a{bottom:316.106667pt;}
.y149{bottom:318.093333pt;}
.y12b{bottom:319.773333pt;}
.y19e{bottom:320.106667pt;}
.y8b{bottom:321.093333pt;}
.y1ca{bottom:322.440000pt;}
.y114{bottom:323.106667pt;}
.y1b5{bottom:323.773333pt;}
.ydf{bottom:324.426667pt;}
.y275{bottom:324.760000pt;}
.ya3{bottom:325.106667pt;}
.y15e{bottom:325.440000pt;}
.y19d{bottom:326.106667pt;}
.y19c{bottom:328.106667pt;}
.y28b{bottom:328.440000pt;}
.y16{bottom:329.106667pt;}
.y17d{bottom:331.106667pt;}
.ybf{bottom:331.773333pt;}
.y23f{bottom:333.093333pt;}
.y5e{bottom:333.760000pt;}
.y19b{bottom:336.093333pt;}
.y1e0{bottom:336.426667pt;}
.y1f4{bottom:338.106667pt;}
.y1d2{bottom:338.440000pt;}
.y259{bottom:343.106667pt;}
.y209{bottom:344.440000pt;}
.y148{bottom:345.760000pt;}
.y40{bottom:347.440000pt;}
.y8a{bottom:348.760000pt;}
.y1c9{bottom:350.106667pt;}
.y113{bottom:350.773333pt;}
.y4c{bottom:351.426667pt;}
.yde{bottom:352.106667pt;}
.y274{bottom:352.440000pt;}
.ya2{bottom:352.773333pt;}
.y15c{bottom:354.106667pt;}
.y154{bottom:354.426667pt;}
.y6e{bottom:355.106667pt;}
.y28a{bottom:356.106667pt;}
.y15{bottom:356.773333pt;}
.y17c{bottom:358.773333pt;}
.ybe{bottom:360.106667pt;}
.y23e{bottom:360.773333pt;}
.y226{bottom:363.440000pt;}
.y1df{bottom:364.106667pt;}
.y3f{bottom:365.773333pt;}
.y1d1{bottom:366.106667pt;}
.y19a{bottom:367.773333pt;}
.y2a4{bottom:369.106667pt;}
.y208{bottom:370.773333pt;}
.y258{bottom:371.106667pt;}
.y147{bottom:373.440000pt;}
.y12a{bottom:375.106667pt;}
.y105{bottom:375.773333pt;}
.y207{bottom:376.440000pt;}
.y1c8{bottom:377.773333pt;}
.ydd{bottom:379.440000pt;}
.y1b4{bottom:379.773333pt;}
.ya1{bottom:380.106667pt;}
.y112{bottom:380.440000pt;}
.y153{bottom:382.106667pt;}
.y15a{bottom:382.773333pt;}
.y289{bottom:383.440000pt;}
.y14{bottom:384.440000pt;}
.y5d{bottom:385.440000pt;}
.y17b{bottom:386.106667pt;}
.y206{bottom:386.440000pt;}
.y23d{bottom:388.466667pt;}
.ybd{bottom:388.800000pt;}
.y100{bottom:389.133333pt;}
.y89{bottom:389.800000pt;}
.y225{bottom:391.466667pt;}
.y1de{bottom:391.800000pt;}
.y1d0{bottom:393.466667pt;}
.y199{bottom:395.466667pt;}
.y2a3{bottom:396.800000pt;}
.y257{bottom:398.800000pt;}
.y146{bottom:401.133333pt;}
.y3e{bottom:402.800000pt;}
.yf7{bottom:403.466667pt;}
.y1c7{bottom:405.466667pt;}
.y6d{bottom:407.133333pt;}
.y273{bottom:407.466667pt;}
.ya0{bottom:407.800000pt;}
.y111{bottom:408.466667pt;}
.y152{bottom:409.466667pt;}
.y158{bottom:411.133333pt;}
.y13{bottom:412.133333pt;}
.y17a{bottom:413.800000pt;}
.y23c{bottom:416.133333pt;}
.ybc{bottom:416.466667pt;}
.yff{bottom:416.800000pt;}
.y88{bottom:417.133333pt;}
.y205{bottom:418.800000pt;}
.y224{bottom:419.133333pt;}
.y3d{bottom:421.133333pt;}
.y198{bottom:423.133333pt;}
.y2a2{bottom:424.466667pt;}
.y256{bottom:426.466667pt;}
.y145{bottom:428.466667pt;}
.y179{bottom:429.466667pt;}
.y129{bottom:430.133333pt;}
.yf6{bottom:430.800000pt;}
.y104{bottom:431.133333pt;}
.y1c6{bottom:432.800000pt;}
.y1dd{bottom:433.466667pt;}
.ydc{bottom:435.133333pt;}
.y9f{bottom:435.466667pt;}
.y110{bottom:436.133333pt;}
.y5c{bottom:437.133333pt;}
.y288{bottom:438.800000pt;}
.y12{bottom:439.466667pt;}
.y23b{bottom:443.466667pt;}
.ybb{bottom:443.800000pt;}
.yfe{bottom:444.466667pt;}
.y87{bottom:444.800000pt;}
.y204{bottom:446.466667pt;}
.y26d{bottom:448.466667pt;}
.y1f3{bottom:448.800000pt;}
.y197{bottom:450.800000pt;}
.y157{bottom:451.133333pt;}
.y2a1{bottom:452.133333pt;}
.y255{bottom:453.800000pt;}
.y4b{bottom:454.466667pt;}
.y3c{bottom:455.466667pt;}
.y144{bottom:456.133333pt;}
.y128{bottom:457.800000pt;}
.yf5{bottom:458.466667pt;}
.y103{bottom:458.800000pt;}
.y6c{bottom:459.133333pt;}
.y1c5{bottom:460.466667pt;}
.ydb{bottom:462.800000pt;}
.y9e{bottom:463.133333pt;}
.y10f{bottom:463.800000pt;}
.y151{bottom:464.800000pt;}
.y287{bottom:466.466667pt;}
.y11{bottom:467.133333pt;}
.yba{bottom:471.466667pt;}
.yfd{bottom:472.133333pt;}
.y86{bottom:472.466667pt;}
.y23a{bottom:473.466667pt;}
.y203{bottom:473.800000pt;}
.y223{bottom:474.133333pt;}
.y26c{bottom:476.133333pt;}
.y1f2{bottom:476.800000pt;}
.y156{bottom:477.466667pt;}
.y196{bottom:478.466667pt;}
.y2a0{bottom:479.466667pt;}
.y254{bottom:481.466667pt;}
.y143{bottom:483.800000pt;}
.y127{bottom:485.466667pt;}
.yf4{bottom:486.133333pt;}
.y1dc{bottom:487.800000pt;}
.y1c4{bottom:488.133333pt;}
.y5b{bottom:488.800000pt;}
.y3b{bottom:489.800000pt;}
.y9d{bottom:490.800000pt;}
.y1b3{bottom:491.133333pt;}
.yda{bottom:491.466667pt;}
.y10e{bottom:491.800000pt;}
.y150{bottom:492.466667pt;}
.y286{bottom:494.133333pt;}
.y10{bottom:494.800000pt;}
.yb9{bottom:499.133333pt;}
.yfc{bottom:499.466667pt;}
.y85{bottom:500.133333pt;}
.y202{bottom:501.506667pt;}
.y222{bottom:501.840000pt;}
.y26b{bottom:503.506667pt;}
.y272{bottom:503.840000pt;}
.y155{bottom:504.173333pt;}
.y1f1{bottom:504.506667pt;}
.y195{bottom:505.840000pt;}
.y4a{bottom:506.173333pt;}
.y29f{bottom:507.173333pt;}
.y3a{bottom:508.173333pt;}
.y253{bottom:509.173333pt;}
.y6b{bottom:510.840000pt;}
.y142{bottom:511.506667pt;}
.y126{bottom:512.173333pt;}
.yf3{bottom:513.840000pt;}
.y1c3{bottom:515.840000pt;}
.y2a{bottom:517.173333pt;}
.y9c{bottom:518.173333pt;}
.y1b2{bottom:518.840000pt;}
.yd9{bottom:519.173333pt;}
.y10d{bottom:519.840000pt;}
.y14f{bottom:520.173333pt;}
.y285{bottom:521.506667pt;}
.yf{bottom:522.506667pt;}
.y39{bottom:526.840000pt;}
.yd8{bottom:527.173333pt;}
.y84{bottom:527.840000pt;}
.y201{bottom:529.173333pt;}
.y221{bottom:529.506667pt;}
.y194{bottom:530.173333pt;}
.y26a{bottom:531.173333pt;}
.y1f0{bottom:532.506667pt;}
.y125{bottom:534.840000pt;}
.y193{bottom:535.840000pt;}
.y251{bottom:536.173333pt;}
.y191{bottom:537.840000pt;}
.y141{bottom:539.173333pt;}
.y2b1{bottom:540.506667pt;}
.y5a{bottom:541.173333pt;}
.yf2{bottom:541.506667pt;}
.y1c2{bottom:543.506667pt;}
.y250{bottom:544.173333pt;}
.y29{bottom:544.506667pt;}
.y38{bottom:545.173333pt;}
.y9b{bottom:545.840000pt;}
.y14e{bottom:546.506667pt;}
.y269{bottom:546.840000pt;}
.y10c{bottom:547.506667pt;}
.y284{bottom:547.840000pt;}
.ye{bottom:549.840000pt;}
.y252{bottom:551.840000pt;}
.y192{bottom:553.173333pt;}
.yb8{bottom:554.173333pt;}
.yfb{bottom:554.840000pt;}
.y239{bottom:556.506667pt;}
.y220{bottom:556.840000pt;}
.y200{bottom:557.506667pt;}
.y49{bottom:557.840000pt;}
.y271{bottom:558.840000pt;}
.yd7{bottom:560.173333pt;}
.y6a{bottom:562.506667pt;}
.y140{bottom:566.506667pt;}
.y83{bottom:568.506667pt;}
.yf1{bottom:568.840000pt;}
.y14d{bottom:569.506667pt;}
.y1c1{bottom:570.840000pt;}
.y28{bottom:572.173333pt;}
.y9a{bottom:573.506667pt;}
.y1b1{bottom:574.173333pt;}
.y10b{bottom:575.173333pt;}
.y24f{bottom:576.840000pt;}
.yd{bottom:577.506667pt;}
.y37{bottom:579.506667pt;}
.y2bc{bottom:580.506667pt;}
.y102{bottom:581.173333pt;}
.yb7{bottom:581.840000pt;}
.yfa{bottom:582.506667pt;}
.y238{bottom:584.173333pt;}
.y21f{bottom:584.506667pt;}
.y1ff{bottom:586.173333pt;}
.y190{bottom:586.506667pt;}
.yd6{bottom:587.840000pt;}
.y29e{bottom:589.840000pt;}
.y13f{bottom:594.173333pt;}
.y59{bottom:594.506667pt;}
.y82{bottom:596.173333pt;}
.yf0{bottom:596.506667pt;}
.y2b0{bottom:596.840000pt;}
.y177{bottom:597.173333pt;}
.y36{bottom:597.840000pt;}
.y1c0{bottom:598.506667pt;}
.y27{bottom:599.840000pt;}
.y283{bottom:600.840000pt;}
.y99{bottom:601.173333pt;}
.y1b0{bottom:601.840000pt;}
.y10a{bottom:602.840000pt;}
.y268{bottom:603.506667pt;}
.y101{bottom:603.840000pt;}
.y24e{bottom:604.840000pt;}
.y48{bottom:609.506667pt;}
.yb6{bottom:610.173333pt;}
.y21e{bottom:612.173333pt;}
.y69{bottom:613.866667pt;}
.y270{bottom:614.200000pt;}
.yd5{bottom:615.200000pt;}
.y1ef{bottom:615.533333pt;}
.y35{bottom:616.200000pt;}
.y29d{bottom:617.533333pt;}
.yc{bottom:619.533333pt;}
.y13e{bottom:621.866667pt;}
.y81{bottom:623.866667pt;}
.yef{bottom:624.200000pt;}
.y2bb{bottom:624.533333pt;}
.y2af{bottom:625.200000pt;}
.y1bf{bottom:626.200000pt;}
.y26{bottom:627.533333pt;}
.y98{bottom:628.533333pt;}
.y1af{bottom:629.200000pt;}
.y109{bottom:630.200000pt;}
.y267{bottom:631.866667pt;}
.y24d{bottom:632.866667pt;}
.y34{bottom:634.866667pt;}
.yf9{bottom:636.533333pt;}
.yb5{bottom:638.866667pt;}
.y18f{bottom:641.533333pt;}
.y21d{bottom:641.866667pt;}
.yd4{bottom:642.866667pt;}
.y1ee{bottom:643.533333pt;}
.y29c{bottom:645.200000pt;}
.y58{bottom:647.200000pt;}
.y13d{bottom:649.533333pt;}
.y80{bottom:651.533333pt;}
.yee{bottom:651.866667pt;}
.y175{bottom:652.866667pt;}
.y2ae{bottom:653.533333pt;}
.y1be{bottom:653.866667pt;}
.y25{bottom:654.866667pt;}
.y97{bottom:656.200000pt;}
.y1ae{bottom:656.866667pt;}
.y108{bottom:657.866667pt;}
.yf8{bottom:659.533333pt;}
.y24c{bottom:660.200000pt;}
.y47{bottom:660.866667pt;}
.y68{bottom:665.533333pt;}
.yb4{bottom:667.200000pt;}
.y1fe{bottom:668.866667pt;}
.yb{bottom:669.200000pt;}
.y237{bottom:669.533333pt;}
.y21c{bottom:669.866667pt;}
.yd3{bottom:670.533333pt;}
.y1ed{bottom:671.200000pt;}
.y266{bottom:671.533333pt;}
.y29b{bottom:672.866667pt;}
.y13c{bottom:676.200000pt;}
.y7f{bottom:678.866667pt;}
.yed{bottom:679.200000pt;}
.y166{bottom:681.200000pt;}
.y2ad{bottom:681.866667pt;}
.y24{bottom:682.533333pt;}
.y96{bottom:683.866667pt;}
.y107{bottom:684.533333pt;}
.y33{bottom:687.533333pt;}
.y24b{bottom:687.866667pt;}
.yb3{bottom:695.866667pt;}
.y1fd{bottom:696.533333pt;}
.y18e{bottom:696.866667pt;}
.y236{bottom:697.200000pt;}
.y21b{bottom:697.533333pt;}
.y265{bottom:697.866667pt;}
.yd2{bottom:698.200000pt;}
.y57{bottom:698.866667pt;}
.y1ec{bottom:699.200000pt;}
.y29a{bottom:700.533333pt;}
.ya{bottom:703.866667pt;}
.y32{bottom:705.866667pt;}
.y7e{bottom:706.533333pt;}
.yec{bottom:706.866667pt;}
.y106{bottom:707.533333pt;}
.y165{bottom:708.866667pt;}
.y2ba{bottom:709.533333pt;}
.y23{bottom:710.200000pt;}
.y95{bottom:711.533333pt;}
.y1ad{bottom:712.200000pt;}
.y46{bottom:712.533333pt;}
.y24a{bottom:714.866667pt;}
.y67{bottom:717.200000pt;}
.y249{bottom:722.866667pt;}
.yb2{bottom:723.533333pt;}
.y235{bottom:723.866667pt;}
.y1fc{bottom:724.200000pt;}
.y18d{bottom:724.533333pt;}
.y21a{bottom:724.866667pt;}
.y264{bottom:725.533333pt;}
.yd1{bottom:725.866667pt;}
.y1eb{bottom:726.893333pt;}
.y299{bottom:727.906667pt;}
.y9{bottom:731.560000pt;}
.y234{bottom:731.893333pt;}
.y7d{bottom:734.226667pt;}
.yeb{bottom:734.560000pt;}
.y138{bottom:736.573333pt;}
.y174{bottom:737.226667pt;}
.y2b9{bottom:737.560000pt;}
.y22{bottom:737.893333pt;}
.y2ac{bottom:738.226667pt;}
.y282{bottom:738.893333pt;}
.y94{bottom:739.226667pt;}
.y31{bottom:740.240000pt;}
.y56{bottom:750.560000pt;}
.yb1{bottom:751.226667pt;}
.y18c{bottom:751.893333pt;}
.y26f{bottom:752.240000pt;}
.y219{bottom:752.560000pt;}
.yd0{bottom:753.226667pt;}
.y1ac{bottom:753.560000pt;}
.y1ea{bottom:754.573333pt;}
.y298{bottom:755.560000pt;}
.y30{bottom:758.893333pt;}
.y8{bottom:759.226667pt;}
.y7c{bottom:761.893333pt;}
.yea{bottom:762.226667pt;}
.y233{bottom:763.573333pt;}
.y45{bottom:764.240000pt;}
.y21{bottom:765.560000pt;}
.y2b8{bottom:765.893333pt;}
.y2aa{bottom:766.560000pt;}
.y93{bottom:766.573333pt;}
.y66{bottom:768.893333pt;}
.y2f{bottom:777.226667pt;}
.yb0{bottom:778.893333pt;}
.y18b{bottom:779.560000pt;}
.y218{bottom:780.226667pt;}
.y263{bottom:780.560000pt;}
.ycf{bottom:780.893333pt;}
.y1cf{bottom:781.893333pt;}
.y297{bottom:783.226667pt;}
.y7{bottom:786.893333pt;}
.y7b{bottom:789.560000pt;}
.ye9{bottom:789.893333pt;}
.y232{bottom:791.226667pt;}
.y137{bottom:791.893333pt;}
.y20{bottom:792.893333pt;}
.y172{bottom:793.560000pt;}
.y281{bottom:794.226667pt;}
.y2a9{bottom:794.893333pt;}
.y1aa{bottom:795.906667pt;}
.y55{bottom:802.226667pt;}
.y1fb{bottom:805.893333pt;}
.yaf{bottom:806.226667pt;}
.y18a{bottom:807.226667pt;}
.y217{bottom:807.893333pt;}
.y92{bottom:808.226667pt;}
.yce{bottom:808.893333pt;}
.y1ce{bottom:809.560000pt;}
.y296{bottom:810.893333pt;}
.y2e{bottom:811.560000pt;}
.y1fa{bottom:813.893333pt;}
.y6{bottom:814.560000pt;}
.y44{bottom:815.893333pt;}
.y11f{bottom:816.893333pt;}
.ye8{bottom:817.226667pt;}
.y231{bottom:818.893333pt;}
.y136{bottom:819.226667pt;}
.y1f{bottom:820.560000pt;}
.y280{bottom:821.893333pt;}
.y171{bottom:821.906667pt;}
.y2b7{bottom:822.573333pt;}
.y2a8{bottom:823.240000pt;}
.y7a{bottom:830.226667pt;}
.y189{bottom:834.893333pt;}
.y216{bottom:835.560000pt;}
.y262{bottom:835.893333pt;}
.ycd{bottom:836.893333pt;}
.y1cd{bottom:837.226667pt;}
.y295{bottom:838.560000pt;}
.y11e{bottom:844.600000pt;}
.y2d{bottom:845.933333pt;}
.y230{bottom:846.600000pt;}
.y135{bottom:846.933333pt;}
.yae{bottom:847.933333pt;}
.y1e{bottom:848.266667pt;}
.y27f{bottom:849.600000pt;}
.y170{bottom:850.266667pt;}
.y2b6{bottom:850.933333pt;}
.y2a7{bottom:851.600000pt;}
.y5{bottom:851.933333pt;}
.y54{bottom:854.266667pt;}
.y79{bottom:857.933333pt;}
.ye7{bottom:858.933333pt;}
.y91{bottom:862.600000pt;}
.y215{bottom:862.933333pt;}
.y261{bottom:863.600000pt;}
.ycc{bottom:864.933333pt;}
.y294{bottom:865.933333pt;}
.y43{bottom:867.600000pt;}
.y65{bottom:871.933333pt;}
.y134{bottom:874.600000pt;}
.y1d{bottom:875.933333pt;}
.y27e{bottom:876.933333pt;}
.y16e{bottom:878.600000pt;}
.y2b5{bottom:878.933333pt;}
.y2a6{bottom:879.600000pt;}
.y1a9{bottom:880.266667pt;}
.y2c{bottom:881.266667pt;}
.y78{bottom:885.600000pt;}
.y11d{bottom:886.266667pt;}
.y188{bottom:889.933333pt;}
.y90{bottom:890.266667pt;}
.y214{bottom:890.600000pt;}
.y4{bottom:892.266667pt;}
.ycb{bottom:892.600000pt;}
.y293{bottom:893.600000pt;}
.y260{bottom:898.266667pt;}
.yad{bottom:902.266667pt;}
.y1c{bottom:903.600000pt;}
.y27d{bottom:904.600000pt;}
.y53{bottom:905.933333pt;}
.y2b4{bottom:907.266667pt;}
.y2a5{bottom:907.933333pt;}
.y1a8{bottom:908.600000pt;}
.y77{bottom:913.266667pt;}
.y187{bottom:917.933333pt;}
.y213{bottom:918.266667pt;}
.y42{bottom:918.933333pt;}
.yca{bottom:919.933333pt;}
.y292{bottom:921.266667pt;}
.y64{bottom:923.600000pt;}
.y2b{bottom:926.933333pt;}
.yac{bottom:929.933333pt;}
.y1b{bottom:930.933333pt;}
.y8f{bottom:931.600000pt;}
.y3{bottom:932.266667pt;}
.y16c{bottom:934.266667pt;}
.y2b3{bottom:935.600000pt;}
.y1a7{bottom:936.600000pt;}
.y186{bottom:944.600000pt;}
.y26e{bottom:944.933333pt;}
.y27c{bottom:946.266667pt;}
.y212{bottom:946.600000pt;}
.yc9{bottom:947.600000pt;}
.y291{bottom:948.933333pt;}
.y185{bottom:952.600000pt;}
.y76{bottom:954.626667pt;}
.y52{bottom:957.293333pt;}
.y2{bottom:972.626667pt;}
.y63{bottom:975.293333pt;}
.y1a6{bottom:976.626667pt;}
.y74{bottom:990.626667pt;}
.y1{bottom:994.293333pt;}
.hb{height:18.666667pt;}
.h1c{height:27.333333pt;}
.h33{height:27.366667pt;}
.h30{height:27.653333pt;}
.h14{height:27.666667pt;}
.h1b{height:27.686667pt;}
.h15{height:27.700000pt;}
.h16{height:28.000000pt;}
.h23{height:41.471354pt;}
.ha{height:46.840769pt;}
.h29{height:50.358073pt;}
.h1a{height:55.000000pt;}
.h17{height:55.033333pt;}
.h18{height:55.333333pt;}
.h28{height:55.353333pt;}
.h19{height:55.366667pt;}
.h13{height:57.578125pt;}
.h31{height:58.406250pt;}
.h12{height:59.125000pt;}
.h1{height:62.812500pt;}
.h7{height:63.208333pt;}
.h8{height:63.315000pt;}
.h2f{height:63.368333pt;}
.h5{height:63.656250pt;}
.h6{height:64.500000pt;}
.h32{height:66.750000pt;}
.h24{height:68.138021pt;}
.h9{height:71.093750pt;}
.h21{height:73.024740pt;}
.h2{height:73.281250pt;}
.hd{height:73.760417pt;}
.h4{height:75.250000pt;}
.hc{height:77.729167pt;}
.h11{height:87.691406pt;}
.h1d{height:87.798073pt;}
.h2d{height:87.851406pt;}
.he{height:90.358073pt;}
.h2c{height:91.691406pt;}
.h3{height:94.218750pt;}
.h10{height:94.812500pt;}
.h2b{height:94.919167pt;}
.h2a{height:101.760417pt;}
.h1f{height:103.093750pt;}
.h26{height:119.638073pt;}
.h2e{height:119.691406pt;}
.h1e{height:119.798073pt;}
.hf{height:122.358073pt;}
.h25{height:133.760417pt;}
.h27{height:135.040417pt;}
.h22{height:152.138021pt;}
.h20{height:156.138021pt;}
.h0{height:1122.666667pt;}
.w3{width:8.033333pt;}
.w4{width:16.033333pt;}
.we{width:68.700000pt;}
.wd{width:70.700000pt;}
.w13{width:84.033333pt;}
.w6{width:93.700000pt;}
.w9{width:94.066667pt;}
.w11{width:101.366667pt;}
.w12{width:101.400000pt;}
.w7{width:103.066667pt;}
.wa{width:112.700000pt;}
.wb{width:121.733333pt;}
.wf{width:122.400000pt;}
.w15{width:188.106667pt;}
.w16{width:188.400000pt;}
.w8{width:235.440000pt;}
.w10{width:277.133333pt;}
.wc{width:302.133333pt;}
.w5{width:367.840000pt;}
.w14{width:565.933333pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.033333pt;}
.x2{left:113.366655pt;}
.x19{left:114.366655pt;}
.x7{left:120.399988pt;}
.x17{left:121.733322pt;}
.x6{left:122.733322pt;}
.x5{left:136.066655pt;}
.x4b{left:137.399988pt;}
.x2c{left:143.399988pt;}
.x31{left:145.399988pt;}
.x37{left:154.733322pt;}
.x12{left:157.733322pt;}
.x40{left:161.733322pt;}
.x16{left:166.733322pt;}
.x42{left:178.066655pt;}
.x41{left:180.066655pt;}
.x3e{left:182.733322pt;}
.x1d{left:184.066655pt;}
.x22{left:185.399988pt;}
.x3b{left:187.066655pt;}
.x47{left:188.399988pt;}
.x14{left:200.439988pt;}
.x3f{left:204.106655pt;}
.x15{left:207.439988pt;}
.x3c{left:208.439988pt;}
.x3d{left:210.106655pt;}
.x1f{left:214.773322pt;}
.x43{left:217.439988pt;}
.x28{left:222.106655pt;}
.x1b{left:225.773322pt;}
.x4{left:232.439988pt;}
.xf{left:247.106655pt;}
.x10{left:254.106655pt;}
.x44{left:266.439988pt;}
.x46{left:274.439988pt;}
.x2e{left:275.773322pt;}
.x24{left:284.133322pt;}
.x4f{left:285.466655pt;}
.x39{left:290.466655pt;}
.x13{left:293.466655pt;}
.x3a{left:300.133322pt;}
.x45{left:303.133322pt;}
.x4e{left:308.133322pt;}
.x38{left:314.466655pt;}
.x3{left:322.799988pt;}
.x32{left:323.799988pt;}
.xb{left:329.799988pt;}
.xc{left:336.799988pt;}
.x29{left:350.133333pt;}
.x30{left:388.173322pt;}
.x48{left:391.840000pt;}
.x35{left:416.840000pt;}
.x33{left:428.839988pt;}
.x2f{left:434.839988pt;}
.x2a{left:444.866667pt;}
.x34{left:455.533322pt;}
.x26{left:482.533333pt;}
.x36{left:488.200000pt;}
.x4d{left:491.866667pt;}
.x49{left:493.866667pt;}
.xd{left:535.893322pt;}
.x1a{left:536.893322pt;}
.xe{left:545.573322pt;}
.x2b{left:558.240000pt;}
.x2d{left:564.906655pt;}
.x23{left:570.906655pt;}
.x27{left:576.906667pt;}
.x20{left:591.226655pt;}
.x4a{left:595.933333pt;}
.x18{left:623.599988pt;}
.x4c{left:638.266655pt;}
.x1{left:656.599988pt;}
.x1c{left:663.599988pt;}
.x11{left:664.600000pt;}
.x9{left:667.933322pt;}
.x1e{left:670.266655pt;}
.x8{left:672.600000pt;}
.xa{left:674.973322pt;}
.x21{left:682.959988pt;}
}




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