
    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_b7468571d00d2b8a8b457b54.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2f31dc9d63065cf6b91e8a50.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2f6aa15df9e9c907198fc078.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cadc55d6a928beeb75880f88.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9bb43f7b953ba27b07294e67.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2397fa1f2486a7779a5d92dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cb9db21c0df57b0507b08108.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_0aafcf2d5ac5bf5b5e0bbd98.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_58e829dfec441cc170658bdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0654f496c72a333551a3e2e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_60bbe43476ecf834ae023777.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_621bc74877f9d08001f23efa.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fa7933d3ec3ecce6602ca67f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400009px;}
.v3{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.000000px;}
.v5{vertical-align:20.391004px;}
.v1{vertical-align:24.000000px;}
.v6{vertical-align:39.018001px;}
.ls9a{letter-spacing:-2.856000px;}
.ls32{letter-spacing:-0.600000px;}
.ls91{letter-spacing:-0.510000px;}
.ls3e{letter-spacing:-0.480000px;}
.ls1c{letter-spacing:-0.420000px;}
.ls33{letter-spacing:-0.360000px;}
.ls90{letter-spacing:-0.357000px;}
.ls92{letter-spacing:-0.306000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls93{letter-spacing:-0.255000px;}
.ls19{letter-spacing:-0.240000px;}
.ls7b{letter-spacing:-0.204000px;}
.ls34{letter-spacing:-0.180000px;}
.ls7a{letter-spacing:-0.153000px;}
.ls1a{letter-spacing:-0.120000px;}
.ls78{letter-spacing:-0.102000px;}
.ls18{letter-spacing:-0.060000px;}
.ls79{letter-spacing:-0.051000px;}
.ls17{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.000037px;}
.ls66{letter-spacing:0.030000px;}
.ls3f{letter-spacing:0.042000px;}
.ls86{letter-spacing:0.051000px;}
.ls4{letter-spacing:0.060000px;}
.ls4f{letter-spacing:0.083999px;}
.ls48{letter-spacing:0.090000px;}
.ls6c{letter-spacing:0.102000px;}
.ls50{letter-spacing:0.109818px;}
.ls4d{letter-spacing:0.119998px;}
.ls12{letter-spacing:0.120000px;}
.ls7f{letter-spacing:0.153000px;}
.ls8f{letter-spacing:0.178500px;}
.ls15{letter-spacing:0.178794px;}
.ls1e{letter-spacing:0.180000px;}
.ls5a{letter-spacing:0.180823px;}
.ls61{letter-spacing:0.192013px;}
.ls6f{letter-spacing:0.204000px;}
.ls56{letter-spacing:0.209997px;}
.ls3b{letter-spacing:0.210000px;}
.ls46{letter-spacing:0.210020px;}
.ls5b{letter-spacing:0.210043px;}
.ls97{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.255000px;}
.ls6d{letter-spacing:0.264000px;}
.ls53{letter-spacing:0.269998px;}
.ls3a{letter-spacing:0.270000px;}
.ls73{letter-spacing:0.288000px;}
.ls4e{letter-spacing:0.298349px;}
.ls2{letter-spacing:0.300000px;}
.ls51{letter-spacing:0.300007px;}
.ls6b{letter-spacing:0.306000px;}
.ls59{letter-spacing:0.317989px;}
.ls39{letter-spacing:0.330000px;}
.ls8b{letter-spacing:0.331500px;}
.ls82{letter-spacing:0.357000px;}
.lsa{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.390000px;}
.ls8c{letter-spacing:0.408000px;}
.ls10{letter-spacing:0.420000px;}
.ls5c{letter-spacing:0.432028px;}
.ls68{letter-spacing:0.450000px;}
.ls65{letter-spacing:0.451172px;}
.ls70{letter-spacing:0.459000px;}
.ls55{letter-spacing:0.464958px;}
.ls7{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.510000px;}
.ls5{letter-spacing:0.540000px;}
.ls5f{letter-spacing:0.551373px;}
.ls71{letter-spacing:0.561000px;}
.lsc{letter-spacing:0.570000px;}
.ls5e{letter-spacing:0.588000px;}
.lsf{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.612013px;}
.ls1f{letter-spacing:0.630000px;}
.ls2d{letter-spacing:0.660000px;}
.ls6e{letter-spacing:0.663000px;}
.ls99{letter-spacing:0.688500px;}
.ls14{letter-spacing:0.690000px;}
.ls85{letter-spacing:0.714000px;}
.ls3{letter-spacing:0.720000px;}
.ls72{letter-spacing:0.739500px;}
.ls2a{letter-spacing:0.750000px;}
.ls41{letter-spacing:0.756000px;}
.ls81{letter-spacing:0.765000px;}
.ls31{letter-spacing:0.780000px;}
.ls63{letter-spacing:0.810000px;}
.ls5d{letter-spacing:0.813626px;}
.ls94{letter-spacing:0.816000px;}
.ls45{letter-spacing:0.827976px;}
.lse{letter-spacing:0.840000px;}
.ls84{letter-spacing:0.867000px;}
.ls29{letter-spacing:0.870000px;}
.ls60{letter-spacing:0.875976px;}
.ls3d{letter-spacing:0.898894px;}
.lsb{letter-spacing:0.900000px;}
.ls57{letter-spacing:0.900006px;}
.ls52{letter-spacing:0.900020px;}
.ls83{letter-spacing:0.918000px;}
.ls37{letter-spacing:0.930000px;}
.ls54{letter-spacing:0.953980px;}
.ls1d{letter-spacing:0.960000px;}
.ls7d{letter-spacing:0.969000px;}
.ls20{letter-spacing:0.990000px;}
.ls2f{letter-spacing:1.020000px;}
.ls58{letter-spacing:1.055989px;}
.ls40{letter-spacing:1.069791px;}
.ls42{letter-spacing:1.070930px;}
.ls75{letter-spacing:1.071000px;}
.ls43{letter-spacing:1.071617px;}
.ls13{letter-spacing:1.080000px;}
.ls49{letter-spacing:1.110000px;}
.ls7c{letter-spacing:1.122000px;}
.ls8{letter-spacing:1.140000px;}
.ls44{letter-spacing:1.167560px;}
.ls38{letter-spacing:1.170000px;}
.ls77{letter-spacing:1.173000px;}
.ls36{letter-spacing:1.199998px;}
.ls28{letter-spacing:1.200000px;}
.ls88{letter-spacing:1.224000px;}
.ls67{letter-spacing:1.230000px;}
.lsd{letter-spacing:1.260000px;}
.ls89{letter-spacing:1.275000px;}
.ls11{letter-spacing:1.320000px;}
.ls8a{letter-spacing:1.326000px;}
.ls4c{letter-spacing:1.361965px;}
.ls98{letter-spacing:1.377000px;}
.ls30{letter-spacing:1.380000px;}
.ls64{letter-spacing:1.410000px;}
.ls76{letter-spacing:1.428000px;}
.ls47{letter-spacing:1.440000px;}
.ls6a{letter-spacing:1.479000px;}
.ls4a{letter-spacing:1.500000px;}
.ls74{letter-spacing:1.530000px;}
.ls2b{letter-spacing:1.560000px;}
.ls96{letter-spacing:1.581000px;}
.ls2e{letter-spacing:1.620000px;}
.ls80{letter-spacing:1.632000px;}
.ls2c{letter-spacing:1.680000px;}
.ls25{letter-spacing:1.740000px;}
.ls7e{letter-spacing:1.785000px;}
.ls24{letter-spacing:1.830000px;}
.ls8d{letter-spacing:1.836000px;}
.ls27{letter-spacing:1.860000px;}
.ls87{letter-spacing:1.887000px;}
.ls3c{letter-spacing:1.920000px;}
.ls8e{letter-spacing:1.963500px;}
.ls35{letter-spacing:1.980000px;}
.ls69{letter-spacing:2.040000px;}
.ls21{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.220000px;}
.ls95{letter-spacing:2.346000px;}
.ls26{letter-spacing:2.460000px;}
.ls23{letter-spacing:2.640000px;}
.ls0{letter-spacing:3.990000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws27{word-spacing:-15.990000px;}
.ws28{word-spacing:-15.750000px;}
.wsa3{word-spacing:-15.600000px;}
.wsa4{word-spacing:-15.480000px;}
.ws26{word-spacing:-15.300000px;}
.ws72{word-spacing:-15.000000px;}
.wsab{word-spacing:-14.832000px;}
.wsa2{word-spacing:-14.640000px;}
.ws5{word-spacing:-14.544000px;}
.wse7{word-spacing:-13.515000px;}
.wsbb{word-spacing:-13.311000px;}
.wsac{word-spacing:-13.005000px;}
.ws7d{word-spacing:-12.750000px;}
.wse8{word-spacing:-12.648000px;}
.ws4d{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.wsba{word-spacing:-12.240000px;}
.ws60{word-spacing:-11.256000px;}
.wsa9{word-spacing:-10.965000px;}
.ws61{word-spacing:-10.710000px;}
.ws4e{word-spacing:-10.542000px;}
.ws89{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.wse6{word-spacing:-9.894000px;}
.wsaa{word-spacing:-9.792000px;}
.ws0{word-spacing:-9.408000px;}
.ws3{word-spacing:-8.694000px;}
.ws5f{word-spacing:-7.500000px;}
.ws88{word-spacing:-6.375000px;}
.ws36{word-spacing:-2.640000px;}
.ws6{word-spacing:-1.890000px;}
.wsde{word-spacing:-1.836000px;}
.wsec{word-spacing:-1.785000px;}
.ws38{word-spacing:-1.740000px;}
.ws8b{word-spacing:-1.560000px;}
.wsb{word-spacing:-1.500000px;}
.ws2e{word-spacing:-1.440000px;}
.wsc2{word-spacing:-1.428000px;}
.ws1e{word-spacing:-1.380000px;}
.ws106{word-spacing:-1.326000px;}
.ws10{word-spacing:-1.320000px;}
.wsb0{word-spacing:-1.275000px;}
.ws19{word-spacing:-1.260000px;}
.ws103{word-spacing:-1.224000px;}
.ws3f{word-spacing:-1.200000px;}
.ws94{word-spacing:-1.140000px;}
.wscc{word-spacing:-1.122000px;}
.ws68{word-spacing:-1.080000px;}
.ws1b{word-spacing:-1.020000px;}
.wsbf{word-spacing:-0.969000px;}
.ws55{word-spacing:-0.960000px;}
.wsc{word-spacing:-0.900000px;}
.wsb3{word-spacing:-0.867000px;}
.ws4b{word-spacing:-0.840000px;}
.wsfb{word-spacing:-0.816000px;}
.ws5a{word-spacing:-0.780000px;}
.wsf8{word-spacing:-0.765000px;}
.wsf{word-spacing:-0.720000px;}
.wscd{word-spacing:-0.714000px;}
.wsc5{word-spacing:-0.663000px;}
.ws29{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.612000px;}
.ws6f{word-spacing:-0.600000px;}
.ws8{word-spacing:-0.570000px;}
.wsee{word-spacing:-0.561000px;}
.wse{word-spacing:-0.540000px;}
.wsc9{word-spacing:-0.510000px;}
.ws12{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.420000px;}
.ws93{word-spacing:-0.360000px;}
.ws108{word-spacing:-0.357000px;}
.ws11{word-spacing:-0.300000px;}
.wsc6{word-spacing:-0.255000px;}
.ws17{word-spacing:-0.240000px;}
.wsdb{word-spacing:-0.204000px;}
.ws4c{word-spacing:-0.180000px;}
.wsf4{word-spacing:-0.153000px;}
.ws20{word-spacing:-0.120000px;}
.wse9{word-spacing:-0.102000px;}
.ws4a{word-spacing:-0.060000px;}
.wsf2{word-spacing:-0.051000px;}
.ws7{word-spacing:0.000000px;}
.wsb2{word-spacing:0.051000px;}
.ws1d{word-spacing:0.060000px;}
.wsf5{word-spacing:0.102000px;}
.ws1c{word-spacing:0.120000px;}
.wscf{word-spacing:0.153000px;}
.wsa8{word-spacing:0.180000px;}
.wsff{word-spacing:0.204000px;}
.ws15{word-spacing:0.240000px;}
.wsdc{word-spacing:0.255000px;}
.ws2f{word-spacing:0.300000px;}
.wse3{word-spacing:0.306000px;}
.ws9{word-spacing:0.360000px;}
.ws7b{word-spacing:0.408000px;}
.ws54{word-spacing:0.420000px;}
.wsb5{word-spacing:0.459000px;}
.ws67{word-spacing:0.480000px;}
.wsd0{word-spacing:0.510000px;}
.ws84{word-spacing:0.540000px;}
.wse5{word-spacing:0.561000px;}
.ws6a{word-spacing:0.600000px;}
.wsf3{word-spacing:0.612000px;}
.ws44{word-spacing:0.660000px;}
.ws109{word-spacing:0.714000px;}
.ws30{word-spacing:0.720000px;}
.wse0{word-spacing:0.765000px;}
.ws66{word-spacing:0.780000px;}
.ws104{word-spacing:0.816000px;}
.ws6b{word-spacing:0.840000px;}
.ws71{word-spacing:0.900000px;}
.wsb4{word-spacing:0.969000px;}
.ws14{word-spacing:1.020000px;}
.wsd{word-spacing:1.080000px;}
.wse2{word-spacing:1.122000px;}
.ws5c{word-spacing:1.140000px;}
.wse4{word-spacing:1.173000px;}
.ws59{word-spacing:1.200000px;}
.wsfa{word-spacing:1.224000px;}
.ws6d{word-spacing:1.260000px;}
.wsaf{word-spacing:1.275000px;}
.ws3c{word-spacing:1.320000px;}
.wsb1{word-spacing:1.326000px;}
.ws76{word-spacing:1.380000px;}
.ws101{word-spacing:1.428000px;}
.ws3d{word-spacing:1.440000px;}
.wsa{word-spacing:1.500000px;}
.ws87{word-spacing:1.530000px;}
.ws56{word-spacing:1.560000px;}
.wsf7{word-spacing:1.581000px;}
.ws49{word-spacing:1.620000px;}
.wsd6{word-spacing:1.632000px;}
.ws52{word-spacing:1.680000px;}
.ws98{word-spacing:1.683000px;}
.wsb6{word-spacing:1.734000px;}
.ws62{word-spacing:1.740000px;}
.wsc7{word-spacing:1.785000px;}
.ws40{word-spacing:1.800000px;}
.ws58{word-spacing:1.860000px;}
.ws2a{word-spacing:1.920000px;}
.wse1{word-spacing:1.938000px;}
.ws51{word-spacing:1.980000px;}
.ws102{word-spacing:1.989000px;}
.ws31{word-spacing:2.040000px;}
.ws9b{word-spacing:2.091000px;}
.ws1a{word-spacing:2.100000px;}
.ws50{word-spacing:2.160000px;}
.ws57{word-spacing:2.220000px;}
.ws22{word-spacing:2.280000px;}
.ws16{word-spacing:2.340000px;}
.wscb{word-spacing:2.397000px;}
.ws32{word-spacing:2.400000px;}
.ws42{word-spacing:2.460000px;}
.ws5e{word-spacing:2.520000px;}
.wsc8{word-spacing:2.550000px;}
.ws2b{word-spacing:2.580000px;}
.wsca{word-spacing:2.601000px;}
.ws2d{word-spacing:2.640000px;}
.wsfd{word-spacing:2.652000px;}
.ws37{word-spacing:2.700000px;}
.wsd2{word-spacing:2.703000px;}
.wsd1{word-spacing:2.754000px;}
.ws3a{word-spacing:2.760000px;}
.ws46{word-spacing:2.820000px;}
.wsbd{word-spacing:2.856000px;}
.ws45{word-spacing:2.880000px;}
.wsf6{word-spacing:2.907000px;}
.ws5b{word-spacing:2.940000px;}
.wsce{word-spacing:2.958000px;}
.ws48{word-spacing:3.000000px;}
.ws9a{word-spacing:3.009000px;}
.ws8e{word-spacing:3.060000px;}
.ws21{word-spacing:3.120000px;}
.wsda{word-spacing:3.162000px;}
.ws64{word-spacing:3.180000px;}
.ws23{word-spacing:3.240000px;}
.wsfc{word-spacing:3.264000px;}
.ws3b{word-spacing:3.300000px;}
.wsc0{word-spacing:3.315000px;}
.ws73{word-spacing:3.360000px;}
.wsb8{word-spacing:3.366000px;}
.ws53{word-spacing:3.480000px;}
.wsef{word-spacing:3.519000px;}
.ws13{word-spacing:3.600000px;}
.ws4f{word-spacing:3.660000px;}
.wsf1{word-spacing:3.672000px;}
.ws65{word-spacing:3.720000px;}
.wsbc{word-spacing:3.825000px;}
.wsa7{word-spacing:3.840000px;}
.ws43{word-spacing:3.900000px;}
.wsd9{word-spacing:3.927000px;}
.ws18{word-spacing:4.080000px;}
.ws74{word-spacing:4.140000px;}
.wsd4{word-spacing:4.182000px;}
.wsad{word-spacing:4.200000px;}
.ws99{word-spacing:4.233000px;}
.wsa6{word-spacing:4.260000px;}
.ws85{word-spacing:4.320000px;}
.wsd5{word-spacing:4.335000px;}
.ws1f{word-spacing:4.380000px;}
.ws105{word-spacing:4.386000px;}
.ws91{word-spacing:4.437000px;}
.ws33{word-spacing:4.440000px;}
.wsfe{word-spacing:4.488000px;}
.ws34{word-spacing:4.500000px;}
.wsd7{word-spacing:4.539000px;}
.ws63{word-spacing:4.560000px;}
.ws107{word-spacing:4.590000px;}
.ws47{word-spacing:4.620000px;}
.wsd8{word-spacing:4.641000px;}
.ws70{word-spacing:4.680000px;}
.ws7a{word-spacing:4.743000px;}
.wsea{word-spacing:4.794000px;}
.ws3e{word-spacing:4.800000px;}
.wsf9{word-spacing:4.845000px;}
.wsa1{word-spacing:4.860000px;}
.ws75{word-spacing:4.920000px;}
.ws6c{word-spacing:4.980000px;}
.ws100{word-spacing:5.049000px;}
.wsc3{word-spacing:5.100000px;}
.ws86{word-spacing:5.160000px;}
.wsc4{word-spacing:5.202000px;}
.wsa0{word-spacing:5.220000px;}
.ws8a{word-spacing:5.340000px;}
.wsb9{word-spacing:5.355000px;}
.ws8c{word-spacing:5.400000px;}
.wsf0{word-spacing:5.457000px;}
.wsbe{word-spacing:5.559000px;}
.ws6e{word-spacing:5.580000px;}
.wsae{word-spacing:5.610000px;}
.ws92{word-spacing:5.760000px;}
.ws79{word-spacing:5.763000px;}
.wsb7{word-spacing:5.814000px;}
.ws8d{word-spacing:5.880000px;}
.ws9c{word-spacing:5.916000px;}
.ws41{word-spacing:5.940000px;}
.ws97{word-spacing:5.967000px;}
.ws39{word-spacing:6.000000px;}
.wsc1{word-spacing:6.222000px;}
.ws69{word-spacing:6.360000px;}
.ws35{word-spacing:6.780000px;}
.ws78{word-spacing:6.936000px;}
.ws9f{word-spacing:6.987000px;}
.wsed{word-spacing:7.140000px;}
.ws7c{word-spacing:7.242000px;}
.wsdd{word-spacing:7.395000px;}
.wsd3{word-spacing:7.497000px;}
.ws5d{word-spacing:7.500000px;}
.wsa5{word-spacing:7.800000px;}
.wsdf{word-spacing:7.905000px;}
.ws9e{word-spacing:8.313000px;}
.ws9d{word-spacing:8.721000px;}
.ws77{word-spacing:8.874000px;}
.wseb{word-spacing:9.894000px;}
.ws96{word-spacing:12.852000px;}
.ws90{word-spacing:13.872001px;}
.ws95{word-spacing:15.044999px;}
.ws8f{word-spacing:18.921000px;}
.ws83{word-spacing:26.673000px;}
.ws80{word-spacing:29.784005px;}
.ws81{word-spacing:34.067999px;}
.ws7e{word-spacing:44.523001px;}
.ws24{word-spacing:72.267002px;}
.ws82{word-spacing:75.378008px;}
.ws7f{word-spacing:160.751995px;}
._5{margin-left:-16.575000px;}
._2c{margin-left:-12.341978px;}
._d{margin-left:-11.300466px;}
._e{margin-left:-9.505268px;}
._b{margin-left:-8.254735px;}
._28{margin-left:-6.167999px;}
._29{margin-left:-5.078400px;}
._3{margin-left:-3.918000px;}
._4{margin-left:-2.716800px;}
._0{margin-left:-1.632000px;}
._1{width:1.334400px;}
._9{width:2.760001px;}
._12{width:4.156788px;}
._f{width:5.216400px;}
._11{width:6.919200px;}
._2b{width:8.210997px;}
._a{width:9.994723px;}
._c{width:11.516426px;}
._2a{width:14.644201px;}
._10{width:16.690800px;}
._6{width:18.359999px;}
._21{width:38.452823px;}
._2{width:40.138177px;}
._14{width:42.382149px;}
._13{width:43.553998px;}
._24{width:44.880032px;}
._1b{width:47.124001px;}
._17{width:48.718790px;}
._7{width:54.621001px;}
._1c{width:64.617007px;}
._1d{width:69.512992px;}
._1e{width:81.395990px;}
._23{width:88.433998px;}
._25{width:96.950990px;}
._22{width:108.170990px;}
._15{width:121.051792px;}
._1a{width:136.374007px;}
._16{width:146.573997px;}
._20{width:174.878990px;}
._1f{width:187.832998px;}
._19{width:200.378990px;}
._18{width:213.332998px;}
._27{width:225.878990px;}
._26{width:232.865990px;}
._8{width:2499.305982px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y225{bottom:101.620823px;}
.y36{bottom:112.944301px;}
.y17a{bottom:113.004289px;}
.y157{bottom:113.107806px;}
.y6c{bottom:113.415344px;}
.y117{bottom:113.683777px;}
.yaa{bottom:114.735146px;}
.ya1{bottom:114.735260px;}
.yc8{bottom:114.735294px;}
.yd6{bottom:114.735306px;}
.yef{bottom:114.874786px;}
.y1e3{bottom:116.614823px;}
.y2f{bottom:122.461349px;}
.y35{bottom:127.938301px;}
.y179{bottom:127.998289px;}
.y156{bottom:128.101806px;}
.y1e2{bottom:131.608823px;}
.y224{bottom:132.004081px;}
.y6b{bottom:132.165344px;}
.y116{bottom:132.433777px;}
.y14b{bottom:132.433800px;}
.ya9{bottom:133.485146px;}
.ya0{bottom:133.485260px;}
.yc7{bottom:133.485294px;}
.yd5{bottom:133.485306px;}
.yee{bottom:133.624786px;}
.y1a1{bottom:140.447561px;}
.y2e{bottom:141.211349px;}
.y178{bottom:142.992289px;}
.y155{bottom:143.095806px;}
.y1e1{bottom:146.602823px;}
.y223{bottom:146.998081px;}
.y265{bottom:146.998113px;}
.y34{bottom:148.032303px;}
.y6a{bottom:150.915344px;}
.y115{bottom:151.183777px;}
.y14a{bottom:151.183800px;}
.ya8{bottom:152.235146px;}
.y9f{bottom:152.235260px;}
.yc6{bottom:152.235294px;}
.yd4{bottom:152.235306px;}
.yed{bottom:152.374786px;}
.y1a0{bottom:155.441561px;}
.y177{bottom:157.986289px;}
.y154{bottom:158.089806px;}
.y2d{bottom:159.961349px;}
.y1e0{bottom:161.596823px;}
.y222{bottom:161.992081px;}
.y264{bottom:161.992113px;}
.y69{bottom:169.665344px;}
.y114{bottom:169.933777px;}
.y149{bottom:169.933800px;}
.y19f{bottom:170.435561px;}
.ya7{bottom:170.985146px;}
.y9e{bottom:170.985260px;}
.yd3{bottom:170.985306px;}
.yec{bottom:171.124786px;}
.y176{bottom:172.980289px;}
.y33{bottom:173.044059px;}
.y1df{bottom:176.590823px;}
.y221{bottom:176.986081px;}
.y263{bottom:176.986113px;}
.y2c{bottom:178.711349px;}
.y19e{bottom:185.429561px;}
.y175{bottom:187.974289px;}
.y32{bottom:188.038059px;}
.y68{bottom:188.415344px;}
.y113{bottom:188.683777px;}
.y148{bottom:188.683800px;}
.ya6{bottom:189.735146px;}
.y9d{bottom:189.735260px;}
.yc5{bottom:189.735294px;}
.yd2{bottom:189.735306px;}
.yeb{bottom:189.874786px;}
.y1de{bottom:191.584823px;}
.y220{bottom:191.980081px;}
.y262{bottom:191.980113px;}
.y2b{bottom:197.461349px;}
.y19d{bottom:200.423561px;}
.y174{bottom:202.968289px;}
.y1dd{bottom:206.578823px;}
.y21f{bottom:206.974081px;}
.y261{bottom:206.974113px;}
.y67{bottom:207.165344px;}
.y112{bottom:207.433777px;}
.y147{bottom:207.433800px;}
.ya5{bottom:208.485146px;}
.y9c{bottom:208.485260px;}
.yd1{bottom:208.485306px;}
.yea{bottom:208.624786px;}
.y31{bottom:210.580059px;}
.y2a{bottom:216.211349px;}
.y173{bottom:217.962289px;}
.y1dc{bottom:221.572823px;}
.y21e{bottom:221.968081px;}
.y260{bottom:221.968113px;}
.y30{bottom:225.574059px;}
.y66{bottom:225.915344px;}
.y111{bottom:226.183777px;}
.y146{bottom:226.183800px;}
.ya4{bottom:227.235146px;}
.y9b{bottom:227.235260px;}
.yc4{bottom:227.235306px;}
.ye9{bottom:227.374786px;}
.y172{bottom:232.956289px;}
.y19c{bottom:234.173561px;}
.y29{bottom:234.961349px;}
.y1db{bottom:236.566823px;}
.y21d{bottom:236.962081px;}
.y25f{bottom:236.962113px;}
.y65{bottom:244.665344px;}
.y110{bottom:244.933777px;}
.y145{bottom:244.933800px;}
.y9a{bottom:245.985260px;}
.yc3{bottom:245.985306px;}
.ye8{bottom:246.124786px;}
.y171{bottom:247.950289px;}
.y1da{bottom:251.560823px;}
.y21c{bottom:251.956081px;}
.y25e{bottom:251.956113px;}
.y28{bottom:253.711349px;}
.y170{bottom:262.944289px;}
.y64{bottom:263.415344px;}
.y144{bottom:263.683800px;}
.ya3{bottom:264.735146px;}
.y99{bottom:264.735260px;}
.yc2{bottom:264.735306px;}
.ye7{bottom:264.874786px;}
.y1d9{bottom:266.554823px;}
.y21b{bottom:266.950081px;}
.y25d{bottom:266.950113px;}
.y27{bottom:272.461349px;}
.y16f{bottom:277.938289px;}
.y1d8{bottom:281.548823px;}
.y21a{bottom:281.944081px;}
.y25c{bottom:281.944113px;}
.y63{bottom:282.165344px;}
.y10f{bottom:282.433777px;}
.y143{bottom:282.433800px;}
.y98{bottom:283.485260px;}
.yc1{bottom:283.485306px;}
.ye6{bottom:283.624786px;}
.y25{bottom:291.211349px;}
.y1d7{bottom:296.542823px;}
.y219{bottom:296.938081px;}
.y25b{bottom:296.938113px;}
.y16e{bottom:298.032303px;}
.y62{bottom:300.915344px;}
.y142{bottom:301.183800px;}
.ya2{bottom:302.235146px;}
.y97{bottom:302.235260px;}
.yc0{bottom:302.235306px;}
.ye5{bottom:302.374786px;}
.y19b{bottom:304.001846px;}
.y24{bottom:309.961349px;}
.y1d6{bottom:311.536823px;}
.y218{bottom:311.932081px;}
.y25a{bottom:311.932113px;}
.y19a{bottom:318.995846px;}
.y61{bottom:319.665344px;}
.y10e{bottom:319.933777px;}
.y141{bottom:319.933800px;}
.y96{bottom:320.985260px;}
.ybf{bottom:320.985306px;}
.ye4{bottom:321.124786px;}
.y1d5{bottom:326.530823px;}
.y217{bottom:326.926081px;}
.y259{bottom:326.926113px;}
.y23{bottom:328.711349px;}
.y199{bottom:333.989846px;}
.y60{bottom:338.415344px;}
.y10d{bottom:338.683777px;}
.y140{bottom:338.683823px;}
.y95{bottom:339.735260px;}
.ybe{bottom:339.735306px;}
.ye3{bottom:339.874786px;}
.y1d4{bottom:341.524823px;}
.y216{bottom:341.920081px;}
.y258{bottom:341.920113px;}
.y22{bottom:347.461349px;}
.y198{bottom:348.983846px;}
.y1d3{bottom:356.518823px;}
.y215{bottom:356.914081px;}
.y257{bottom:356.914113px;}
.y5f{bottom:357.165344px;}
.y10c{bottom:357.433777px;}
.y13f{bottom:357.433823px;}
.y94{bottom:358.485260px;}
.ybd{bottom:358.485306px;}
.ye2{bottom:358.624786px;}
.y197{bottom:363.977846px;}
.y21{bottom:366.211349px;}
.y1d2{bottom:371.512823px;}
.y214{bottom:371.908081px;}
.y256{bottom:371.908113px;}
.y5e{bottom:375.915344px;}
.y10b{bottom:376.183777px;}
.y13e{bottom:376.183823px;}
.y93{bottom:377.235260px;}
.ybc{bottom:377.235306px;}
.ye1{bottom:377.374786px;}
.y196{bottom:378.971846px;}
.y20{bottom:384.961349px;}
.y1d1{bottom:386.506823px;}
.y213{bottom:386.902081px;}
.y255{bottom:386.902113px;}
.y5d{bottom:394.665344px;}
.y10a{bottom:394.933777px;}
.y13d{bottom:394.933823px;}
.y92{bottom:395.985260px;}
.ybb{bottom:395.985306px;}
.ye0{bottom:396.124786px;}
.y1d0{bottom:401.500823px;}
.y212{bottom:401.896081px;}
.y254{bottom:401.896113px;}
.y1f{bottom:403.711349px;}
.y5c{bottom:413.415344px;}
.y109{bottom:413.683777px;}
.y13c{bottom:413.683823px;}
.y91{bottom:414.735260px;}
.yba{bottom:414.735306px;}
.ydf{bottom:414.874786px;}
.y1cf{bottom:416.494823px;}
.y211{bottom:416.890081px;}
.y253{bottom:416.890113px;}
.y195{bottom:420.167096px;}
.y1e{bottom:422.461349px;}
.y1ce{bottom:431.488823px;}
.y210{bottom:431.884081px;}
.y252{bottom:431.884113px;}
.y5b{bottom:432.165344px;}
.y108{bottom:432.433777px;}
.y13b{bottom:432.433823px;}
.y90{bottom:433.485260px;}
.yb9{bottom:433.485306px;}
.yde{bottom:433.624786px;}
.y194{bottom:435.161096px;}
.y1d{bottom:441.211349px;}
.y1cd{bottom:446.482823px;}
.y20f{bottom:446.878081px;}
.y251{bottom:446.878113px;}
.y193{bottom:450.155096px;}
.y5a{bottom:450.915344px;}
.y107{bottom:451.183777px;}
.y13a{bottom:451.183823px;}
.y8f{bottom:452.235260px;}
.yb8{bottom:452.235306px;}
.ydd{bottom:452.374786px;}
.y1c{bottom:459.961349px;}
.y1cc{bottom:461.476823px;}
.y20e{bottom:461.872081px;}
.y250{bottom:461.872113px;}
.y59{bottom:469.665344px;}
.y106{bottom:469.933777px;}
.y139{bottom:469.933823px;}
.y8e{bottom:470.985260px;}
.yb7{bottom:470.985306px;}
.ydc{bottom:471.124786px;}
.y1cb{bottom:476.470823px;}
.y20d{bottom:476.866081px;}
.y24f{bottom:476.866113px;}
.y1b{bottom:478.711349px;}
.y192{bottom:480.117594px;}
.y58{bottom:488.415344px;}
.y105{bottom:488.683777px;}
.y138{bottom:488.683823px;}
.y8d{bottom:489.735260px;}
.yb6{bottom:489.735306px;}
.ydb{bottom:489.874786px;}
.y1ca{bottom:491.464823px;}
.y20c{bottom:491.860081px;}
.y24e{bottom:491.860113px;}
.y191{bottom:495.111594px;}
.y1a{bottom:497.461349px;}
.y1c9{bottom:506.458823px;}
.y20b{bottom:506.854081px;}
.y24d{bottom:506.854113px;}
.y57{bottom:507.165344px;}
.y104{bottom:507.433777px;}
.y137{bottom:507.433823px;}
.y8c{bottom:508.485260px;}
.yb5{bottom:508.485306px;}
.yda{bottom:508.624786px;}
.y19{bottom:516.211349px;}
.y1c8{bottom:521.452823px;}
.y20a{bottom:521.848081px;}
.y24c{bottom:521.848113px;}
.y190{bottom:525.074093px;}
.y56{bottom:525.915344px;}
.y103{bottom:526.183777px;}
.y136{bottom:526.183823px;}
.y8b{bottom:527.235260px;}
.y16d{bottom:527.235306px;}
.yd9{bottom:527.374786px;}
.y18{bottom:534.961349px;}
.y1c7{bottom:536.446823px;}
.y209{bottom:536.842081px;}
.y24b{bottom:536.842113px;}
.y18f{bottom:540.068093px;}
.y55{bottom:544.665344px;}
.y102{bottom:544.933777px;}
.y135{bottom:544.933823px;}
.y8a{bottom:545.985260px;}
.y16c{bottom:545.985306px;}
.yb4{bottom:545.991305px;}
.yd8{bottom:546.124786px;}
.y1c6{bottom:551.440823px;}
.y208{bottom:551.836081px;}
.y24a{bottom:551.836113px;}
.y17{bottom:553.711349px;}
.y18e{bottom:555.062093px;}
.y54{bottom:563.415344px;}
.y134{bottom:563.683823px;}
.y89{bottom:564.735260px;}
.yb3{bottom:564.735306px;}
.yd7{bottom:564.874786px;}
.y1c5{bottom:566.434823px;}
.y207{bottom:566.830081px;}
.y249{bottom:566.830113px;}
.y18d{bottom:570.056093px;}
.y16{bottom:572.461349px;}
.y1c4{bottom:581.428823px;}
.y206{bottom:581.824081px;}
.y248{bottom:581.824113px;}
.y53{bottom:582.165344px;}
.y101{bottom:582.433777px;}
.y133{bottom:582.433823px;}
.y88{bottom:583.485260px;}
.y16b{bottom:583.485306px;}
.y26{bottom:591.211349px;}
.y1c3{bottom:596.422823px;}
.y205{bottom:596.818081px;}
.y247{bottom:596.818113px;}
.y18c{bottom:600.018592px;}
.y52{bottom:600.915344px;}
.y132{bottom:601.183777px;}
.y152{bottom:601.183823px;}
.y87{bottom:602.235260px;}
.yb2{bottom:602.235306px;}
.y121{bottom:602.374786px;}
.y15{bottom:609.961349px;}
.yf3{bottom:610.468928px;}
.yf7{bottom:610.481678px;}
.y1c2{bottom:611.416823px;}
.y204{bottom:611.812081px;}
.y246{bottom:611.812113px;}
.y18b{bottom:615.012592px;}
.y51{bottom:619.665344px;}
.y100{bottom:619.933777px;}
.y151{bottom:619.933823px;}
.y86{bottom:620.985260px;}
.yb1{bottom:620.985306px;}
.yf2{bottom:625.462928px;}
.yf6{bottom:625.475678px;}
.y1c1{bottom:626.410823px;}
.y203{bottom:626.806081px;}
.y245{bottom:626.806113px;}
.y18a{bottom:630.006592px;}
.y50{bottom:638.415344px;}
.yff{bottom:638.683777px;}
.y150{bottom:638.683823px;}
.y85{bottom:639.735260px;}
.yb0{bottom:639.735306px;}
.yf1{bottom:640.456928px;}
.yf5{bottom:640.469678px;}
.y1c0{bottom:641.404823px;}
.y202{bottom:641.800081px;}
.y244{bottom:641.800113px;}
.yf0{bottom:655.450928px;}
.yf4{bottom:655.463678px;}
.y1bf{bottom:656.398823px;}
.y201{bottom:656.794081px;}
.y243{bottom:656.794113px;}
.y4f{bottom:657.165344px;}
.yfe{bottom:657.433777px;}
.y14f{bottom:657.433823px;}
.y84{bottom:658.485260px;}
.yaf{bottom:658.485306px;}
.y120{bottom:658.618755px;}
.y189{bottom:663.756592px;}
.y14{bottom:666.211395px;}
.y1be{bottom:671.392823px;}
.y200{bottom:671.788081px;}
.y242{bottom:671.788113px;}
.y4e{bottom:675.915344px;}
.yfd{bottom:676.183777px;}
.y14e{bottom:676.183823px;}
.y83{bottom:677.235260px;}
.yae{bottom:677.235306px;}
.y11f{bottom:677.368755px;}
.y13{bottom:684.961395px;}
.y1bd{bottom:686.386823px;}
.y1ff{bottom:686.782081px;}
.y241{bottom:686.782113px;}
.y4d{bottom:694.665344px;}
.yfc{bottom:694.933777px;}
.y14d{bottom:694.933823px;}
.y82{bottom:695.985260px;}
.yad{bottom:695.985306px;}
.y11e{bottom:696.118755px;}
.y188{bottom:701.310621px;}
.y1bc{bottom:701.380823px;}
.y1fe{bottom:701.776081px;}
.y240{bottom:701.776113px;}
.y12{bottom:703.711395px;}
.y4c{bottom:713.415344px;}
.yfb{bottom:713.683777px;}
.y81{bottom:714.735260px;}
.yac{bottom:714.735306px;}
.y11d{bottom:714.868755px;}
.y187{bottom:716.304621px;}
.y1bb{bottom:716.374823px;}
.y1fd{bottom:716.770081px;}
.y23f{bottom:716.770113px;}
.y11{bottom:722.461395px;}
.y186{bottom:731.298621px;}
.y1ba{bottom:731.368823px;}
.y1fc{bottom:731.764081px;}
.y23e{bottom:731.764113px;}
.y4b{bottom:732.165344px;}
.yfa{bottom:732.433777px;}
.y80{bottom:733.485260px;}
.yab{bottom:733.485306px;}
.y11c{bottom:733.618755px;}
.y10{bottom:741.211395px;}
.y185{bottom:746.292621px;}
.y1b9{bottom:746.362823px;}
.y1fb{bottom:746.758081px;}
.y23d{bottom:746.758113px;}
.y4a{bottom:750.915344px;}
.y131{bottom:751.183777px;}
.y7f{bottom:752.235260px;}
.y16a{bottom:752.235306px;}
.y11b{bottom:752.368755px;}
.yf{bottom:759.961395px;}
.y184{bottom:761.286621px;}
.y1b8{bottom:761.356823px;}
.y1fa{bottom:761.752081px;}
.y23c{bottom:761.752113px;}
.y49{bottom:769.665344px;}
.yf9{bottom:769.933777px;}
.y7e{bottom:770.985260px;}
.y169{bottom:770.985306px;}
.y11a{bottom:771.118755px;}
.y1b7{bottom:776.350823px;}
.y1f9{bottom:776.746081px;}
.y23b{bottom:776.746113px;}
.ye{bottom:778.711395px;}
.y48{bottom:788.415344px;}
.y14c{bottom:788.683777px;}
.y7d{bottom:789.735260px;}
.y168{bottom:789.735306px;}
.y119{bottom:789.868755px;}
.y1b6{bottom:791.344823px;}
.y1f8{bottom:791.740081px;}
.y23a{bottom:791.740113px;}
.y183{bottom:794.995239px;}
.yd{bottom:797.461395px;}
.y1b5{bottom:806.338823px;}
.y1f7{bottom:806.734081px;}
.y239{bottom:806.734113px;}
.y47{bottom:807.165344px;}
.yf8{bottom:807.433777px;}
.y130{bottom:807.439777px;}
.y7c{bottom:808.485260px;}
.y167{bottom:808.485306px;}
.y118{bottom:808.618755px;}
.y182{bottom:813.745239px;}
.yc{bottom:816.211395px;}
.y1b4{bottom:821.332823px;}
.y1f6{bottom:821.728081px;}
.y238{bottom:821.728113px;}
.y46{bottom:825.915344px;}
.y12f{bottom:826.183777px;}
.y7b{bottom:827.235260px;}
.y166{bottom:827.235306px;}
.y181{bottom:832.495239px;}
.yb{bottom:834.961395px;}
.y1b3{bottom:836.326823px;}
.y1f5{bottom:836.722081px;}
.y237{bottom:836.722113px;}
.y45{bottom:844.665344px;}
.y7a{bottom:845.985260px;}
.y165{bottom:845.985306px;}
.y180{bottom:851.245239px;}
.y1b2{bottom:851.320823px;}
.y1f4{bottom:851.716081px;}
.y236{bottom:851.716113px;}
.y124{bottom:854.878085px;}
.y44{bottom:863.415344px;}
.y79{bottom:864.735260px;}
.y164{bottom:864.735306px;}
.y1b1{bottom:866.314823px;}
.y1f3{bottom:866.710081px;}
.y235{bottom:866.710113px;}
.y123{bottom:869.872085px;}
.y17f{bottom:869.995239px;}
.y153{bottom:876.490906px;}
.ya{bottom:879.144153px;}
.y1b0{bottom:881.308823px;}
.y1f2{bottom:881.704081px;}
.y234{bottom:881.704113px;}
.y43{bottom:882.165344px;}
.y78{bottom:883.485260px;}
.y163{bottom:883.485306px;}
.y17e{bottom:888.745239px;}
.y9{bottom:894.138153px;}
.y1af{bottom:896.302823px;}
.y1f1{bottom:896.698081px;}
.y233{bottom:896.698113px;}
.y12e{bottom:897.454522px;}
.y42{bottom:900.915344px;}
.y77{bottom:902.235260px;}
.y162{bottom:902.235306px;}
.y17d{bottom:907.495239px;}
.y1ae{bottom:911.296823px;}
.y1f0{bottom:911.692081px;}
.y232{bottom:911.692113px;}
.y12d{bottom:916.248022px;}
.y41{bottom:919.665344px;}
.y76{bottom:920.985260px;}
.y161{bottom:920.985306px;}
.y17c{bottom:926.245239px;}
.y1ad{bottom:926.290823px;}
.y1ef{bottom:926.686081px;}
.y231{bottom:926.686113px;}
.y12c{bottom:934.965022px;}
.y8{bottom:936.738190px;}
.y40{bottom:938.415344px;}
.y75{bottom:939.735260px;}
.y160{bottom:939.735306px;}
.y1ac{bottom:941.284823px;}
.y1ee{bottom:941.680081px;}
.y230{bottom:941.680113px;}
.y12b{bottom:953.682023px;}
.y1ab{bottom:956.278823px;}
.y1ed{bottom:956.674081px;}
.y22f{bottom:956.674113px;}
.y3f{bottom:957.165344px;}
.y74{bottom:958.485260px;}
.yd0{bottom:958.485294px;}
.y15f{bottom:958.485306px;}
.y17b{bottom:963.745239px;}
.y1aa{bottom:971.272823px;}
.y1ec{bottom:971.668081px;}
.y22e{bottom:971.668113px;}
.y12a{bottom:972.399024px;}
.y3e{bottom:975.915344px;}
.y73{bottom:977.235260px;}
.ycf{bottom:977.235294px;}
.y15e{bottom:977.235306px;}
.y7{bottom:981.424622px;}
.y1a9{bottom:986.266823px;}
.y1eb{bottom:986.662081px;}
.y22d{bottom:986.662113px;}
.y3d{bottom:994.665344px;}
.y72{bottom:995.985260px;}
.yce{bottom:995.985294px;}
.y15d{bottom:995.985306px;}
.y129{bottom:1000.489468px;}
.y1a8{bottom:1001.260823px;}
.y1ea{bottom:1001.656081px;}
.y22c{bottom:1001.656113px;}
.y6{bottom:1008.424622px;}
.y3c{bottom:1013.415344px;}
.y71{bottom:1014.735260px;}
.ycd{bottom:1014.735294px;}
.y15c{bottom:1014.735306px;}
.y1a7{bottom:1016.254823px;}
.y1e9{bottom:1016.650081px;}
.y22b{bottom:1016.650113px;}
.y128{bottom:1024.905719px;}
.y1a6{bottom:1031.248823px;}
.y1e8{bottom:1031.644081px;}
.y22a{bottom:1031.644113px;}
.y3b{bottom:1032.165344px;}
.y70{bottom:1033.485260px;}
.ycc{bottom:1033.485294px;}
.y15b{bottom:1033.485306px;}
.y127{bottom:1039.899719px;}
.y1a5{bottom:1046.242823px;}
.y1e7{bottom:1046.638081px;}
.y229{bottom:1046.638113px;}
.y126{bottom:1049.618274px;}
.y3a{bottom:1050.915344px;}
.y6f{bottom:1052.235260px;}
.ycb{bottom:1052.235294px;}
.y15a{bottom:1052.235306px;}
.y1a4{bottom:1061.236823px;}
.y1e6{bottom:1061.632081px;}
.y228{bottom:1061.632113px;}
.y125{bottom:1064.612274px;}
.y39{bottom:1069.665344px;}
.y6e{bottom:1070.985260px;}
.yca{bottom:1070.985294px;}
.y159{bottom:1070.985306px;}
.y5{bottom:1076.132080px;}
.y1a3{bottom:1076.230823px;}
.y1e5{bottom:1076.626081px;}
.y227{bottom:1076.626113px;}
.y38{bottom:1088.415344px;}
.y6d{bottom:1089.735260px;}
.yc9{bottom:1089.735294px;}
.y158{bottom:1089.735306px;}
.y122{bottom:1090.102844px;}
.y1a2{bottom:1091.224823px;}
.y1e4{bottom:1091.620081px;}
.y226{bottom:1091.620113px;}
.y4{bottom:1109.586557px;}
.y3{bottom:1126.582306px;}
.y37{bottom:1127.482361px;}
.hd{height:25.204199px;}
.h2{height:33.840000px;}
.hc{height:36.006000px;}
.hb{height:36.855469px;}
.h9{height:42.360000px;}
.h8{height:43.260000px;}
.h4{height:44.676000px;}
.h11{height:45.186000px;}
.ha{height:51.912000px;}
.h13{height:52.173000px;}
.h12{height:53.160000px;}
.h17{height:53.652000px;}
.h10{height:53.652183px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.he{height:59.004000px;}
.hf{height:61.380000px;}
.h7{height:64.824000px;}
.h16{height:66.983910px;}
.h15{height:66.984001px;}
.h14{height:66.984184px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746401px;}
.x4{left:85.181849px;}
.x9{left:93.545401px;}
.x7{left:97.796101px;}
.x10{left:102.048151px;}
.xa{left:156.231606px;}
.xb{left:450.960892px;}
.x6{left:459.215402px;}
.x5{left:476.225401px;}
.xf{left:484.725289px;}
.xc{left:540.229660px;}
.xd{left:629.498383px;}
.xe{left:725.142288px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133342pt;}
.v3{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.333333pt;}
.v5{vertical-align:18.125337pt;}
.v1{vertical-align:21.333333pt;}
.v6{vertical-align:34.682668pt;}
.ls9a{letter-spacing:-2.538667pt;}
.ls32{letter-spacing:-0.533333pt;}
.ls91{letter-spacing:-0.453333pt;}
.ls3e{letter-spacing:-0.426667pt;}
.ls1c{letter-spacing:-0.373333pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls90{letter-spacing:-0.317333pt;}
.ls92{letter-spacing:-0.272000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls93{letter-spacing:-0.226667pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls7b{letter-spacing:-0.181333pt;}
.ls34{letter-spacing:-0.160000pt;}
.ls7a{letter-spacing:-0.136000pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls78{letter-spacing:-0.090667pt;}
.ls18{letter-spacing:-0.053333pt;}
.ls79{letter-spacing:-0.045333pt;}
.ls17{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.000033pt;}
.ls66{letter-spacing:0.026667pt;}
.ls3f{letter-spacing:0.037333pt;}
.ls86{letter-spacing:0.045333pt;}
.ls4{letter-spacing:0.053333pt;}
.ls4f{letter-spacing:0.074666pt;}
.ls48{letter-spacing:0.080000pt;}
.ls6c{letter-spacing:0.090667pt;}
.ls50{letter-spacing:0.097616pt;}
.ls4d{letter-spacing:0.106665pt;}
.ls12{letter-spacing:0.106667pt;}
.ls7f{letter-spacing:0.136000pt;}
.ls8f{letter-spacing:0.158667pt;}
.ls15{letter-spacing:0.158928pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls5a{letter-spacing:0.160732pt;}
.ls61{letter-spacing:0.170678pt;}
.ls6f{letter-spacing:0.181333pt;}
.ls56{letter-spacing:0.186664pt;}
.ls3b{letter-spacing:0.186667pt;}
.ls46{letter-spacing:0.186685pt;}
.ls5b{letter-spacing:0.186705pt;}
.ls97{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.226667pt;}
.ls6d{letter-spacing:0.234667pt;}
.ls53{letter-spacing:0.239998pt;}
.ls3a{letter-spacing:0.240000pt;}
.ls73{letter-spacing:0.256000pt;}
.ls4e{letter-spacing:0.265199pt;}
.ls2{letter-spacing:0.266667pt;}
.ls51{letter-spacing:0.266673pt;}
.ls6b{letter-spacing:0.272000pt;}
.ls59{letter-spacing:0.282657pt;}
.ls39{letter-spacing:0.293333pt;}
.ls8b{letter-spacing:0.294667pt;}
.ls82{letter-spacing:0.317333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.346667pt;}
.ls8c{letter-spacing:0.362667pt;}
.ls10{letter-spacing:0.373333pt;}
.ls5c{letter-spacing:0.384025pt;}
.ls68{letter-spacing:0.400000pt;}
.ls65{letter-spacing:0.401042pt;}
.ls70{letter-spacing:0.408000pt;}
.ls55{letter-spacing:0.413296pt;}
.ls7{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.453333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls5f{letter-spacing:0.490109pt;}
.ls71{letter-spacing:0.498667pt;}
.lsc{letter-spacing:0.506667pt;}
.ls5e{letter-spacing:0.522667pt;}
.lsf{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.544011pt;}
.ls1f{letter-spacing:0.560000pt;}
.ls2d{letter-spacing:0.586667pt;}
.ls6e{letter-spacing:0.589333pt;}
.ls99{letter-spacing:0.612000pt;}
.ls14{letter-spacing:0.613333pt;}
.ls85{letter-spacing:0.634667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls72{letter-spacing:0.657333pt;}
.ls2a{letter-spacing:0.666667pt;}
.ls41{letter-spacing:0.672000pt;}
.ls81{letter-spacing:0.680000pt;}
.ls31{letter-spacing:0.693333pt;}
.ls63{letter-spacing:0.720000pt;}
.ls5d{letter-spacing:0.723223pt;}
.ls94{letter-spacing:0.725333pt;}
.ls45{letter-spacing:0.735979pt;}
.lse{letter-spacing:0.746667pt;}
.ls84{letter-spacing:0.770667pt;}
.ls29{letter-spacing:0.773333pt;}
.ls60{letter-spacing:0.778645pt;}
.ls3d{letter-spacing:0.799017pt;}
.lsb{letter-spacing:0.800000pt;}
.ls57{letter-spacing:0.800005pt;}
.ls52{letter-spacing:0.800018pt;}
.ls83{letter-spacing:0.816000pt;}
.ls37{letter-spacing:0.826667pt;}
.ls54{letter-spacing:0.847982pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls7d{letter-spacing:0.861333pt;}
.ls20{letter-spacing:0.880000pt;}
.ls2f{letter-spacing:0.906667pt;}
.ls58{letter-spacing:0.938657pt;}
.ls40{letter-spacing:0.950925pt;}
.ls42{letter-spacing:0.951938pt;}
.ls75{letter-spacing:0.952000pt;}
.ls43{letter-spacing:0.952548pt;}
.ls13{letter-spacing:0.960000pt;}
.ls49{letter-spacing:0.986667pt;}
.ls7c{letter-spacing:0.997333pt;}
.ls8{letter-spacing:1.013333pt;}
.ls44{letter-spacing:1.037831pt;}
.ls38{letter-spacing:1.040000pt;}
.ls77{letter-spacing:1.042667pt;}
.ls36{letter-spacing:1.066665pt;}
.ls28{letter-spacing:1.066667pt;}
.ls88{letter-spacing:1.088000pt;}
.ls67{letter-spacing:1.093333pt;}
.lsd{letter-spacing:1.120000pt;}
.ls89{letter-spacing:1.133333pt;}
.ls11{letter-spacing:1.173333pt;}
.ls8a{letter-spacing:1.178667pt;}
.ls4c{letter-spacing:1.210636pt;}
.ls98{letter-spacing:1.224000pt;}
.ls30{letter-spacing:1.226667pt;}
.ls64{letter-spacing:1.253333pt;}
.ls76{letter-spacing:1.269333pt;}
.ls47{letter-spacing:1.280000pt;}
.ls6a{letter-spacing:1.314667pt;}
.ls4a{letter-spacing:1.333333pt;}
.ls74{letter-spacing:1.360000pt;}
.ls2b{letter-spacing:1.386667pt;}
.ls96{letter-spacing:1.405333pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls80{letter-spacing:1.450667pt;}
.ls2c{letter-spacing:1.493333pt;}
.ls25{letter-spacing:1.546667pt;}
.ls7e{letter-spacing:1.586667pt;}
.ls24{letter-spacing:1.626667pt;}
.ls8d{letter-spacing:1.632000pt;}
.ls27{letter-spacing:1.653333pt;}
.ls87{letter-spacing:1.677333pt;}
.ls3c{letter-spacing:1.706667pt;}
.ls8e{letter-spacing:1.745333pt;}
.ls35{letter-spacing:1.760000pt;}
.ls69{letter-spacing:1.813333pt;}
.ls21{letter-spacing:1.920000pt;}
.ls22{letter-spacing:1.973333pt;}
.ls95{letter-spacing:2.085333pt;}
.ls26{letter-spacing:2.186667pt;}
.ls23{letter-spacing:2.346667pt;}
.ls0{letter-spacing:3.546667pt;}
.ws27{word-spacing:-14.213333pt;}
.ws28{word-spacing:-14.000000pt;}
.wsa3{word-spacing:-13.866667pt;}
.wsa4{word-spacing:-13.760000pt;}
.ws26{word-spacing:-13.600000pt;}
.ws72{word-spacing:-13.333333pt;}
.wsab{word-spacing:-13.184000pt;}
.wsa2{word-spacing:-13.013333pt;}
.ws5{word-spacing:-12.928000pt;}
.wse7{word-spacing:-12.013333pt;}
.wsbb{word-spacing:-11.832000pt;}
.wsac{word-spacing:-11.560000pt;}
.ws7d{word-spacing:-11.333333pt;}
.wse8{word-spacing:-11.242667pt;}
.ws4d{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.wsba{word-spacing:-10.880000pt;}
.ws60{word-spacing:-10.005333pt;}
.wsa9{word-spacing:-9.746667pt;}
.ws61{word-spacing:-9.520000pt;}
.ws4e{word-spacing:-9.370667pt;}
.ws89{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.wse6{word-spacing:-8.794667pt;}
.wsaa{word-spacing:-8.704000pt;}
.ws0{word-spacing:-8.362667pt;}
.ws3{word-spacing:-7.728000pt;}
.ws5f{word-spacing:-6.666667pt;}
.ws88{word-spacing:-5.666667pt;}
.ws36{word-spacing:-2.346667pt;}
.ws6{word-spacing:-1.680000pt;}
.wsde{word-spacing:-1.632000pt;}
.wsec{word-spacing:-1.586667pt;}
.ws38{word-spacing:-1.546667pt;}
.ws8b{word-spacing:-1.386667pt;}
.wsb{word-spacing:-1.333333pt;}
.ws2e{word-spacing:-1.280000pt;}
.wsc2{word-spacing:-1.269333pt;}
.ws1e{word-spacing:-1.226667pt;}
.ws106{word-spacing:-1.178667pt;}
.ws10{word-spacing:-1.173333pt;}
.wsb0{word-spacing:-1.133333pt;}
.ws19{word-spacing:-1.120000pt;}
.ws103{word-spacing:-1.088000pt;}
.ws3f{word-spacing:-1.066667pt;}
.ws94{word-spacing:-1.013333pt;}
.wscc{word-spacing:-0.997333pt;}
.ws68{word-spacing:-0.960000pt;}
.ws1b{word-spacing:-0.906667pt;}
.wsbf{word-spacing:-0.861333pt;}
.ws55{word-spacing:-0.853333pt;}
.wsc{word-spacing:-0.800000pt;}
.wsb3{word-spacing:-0.770667pt;}
.ws4b{word-spacing:-0.746667pt;}
.wsfb{word-spacing:-0.725333pt;}
.ws5a{word-spacing:-0.693333pt;}
.wsf8{word-spacing:-0.680000pt;}
.wsf{word-spacing:-0.640000pt;}
.wscd{word-spacing:-0.634667pt;}
.wsc5{word-spacing:-0.589333pt;}
.ws29{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.544000pt;}
.ws6f{word-spacing:-0.533333pt;}
.ws8{word-spacing:-0.506667pt;}
.wsee{word-spacing:-0.498667pt;}
.wse{word-spacing:-0.480000pt;}
.wsc9{word-spacing:-0.453333pt;}
.ws12{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.373333pt;}
.ws93{word-spacing:-0.320000pt;}
.ws108{word-spacing:-0.317333pt;}
.ws11{word-spacing:-0.266667pt;}
.wsc6{word-spacing:-0.226667pt;}
.ws17{word-spacing:-0.213333pt;}
.wsdb{word-spacing:-0.181333pt;}
.ws4c{word-spacing:-0.160000pt;}
.wsf4{word-spacing:-0.136000pt;}
.ws20{word-spacing:-0.106667pt;}
.wse9{word-spacing:-0.090667pt;}
.ws4a{word-spacing:-0.053333pt;}
.wsf2{word-spacing:-0.045333pt;}
.ws7{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.045333pt;}
.ws1d{word-spacing:0.053333pt;}
.wsf5{word-spacing:0.090667pt;}
.ws1c{word-spacing:0.106667pt;}
.wscf{word-spacing:0.136000pt;}
.wsa8{word-spacing:0.160000pt;}
.wsff{word-spacing:0.181333pt;}
.ws15{word-spacing:0.213333pt;}
.wsdc{word-spacing:0.226667pt;}
.ws2f{word-spacing:0.266667pt;}
.wse3{word-spacing:0.272000pt;}
.ws9{word-spacing:0.320000pt;}
.ws7b{word-spacing:0.362667pt;}
.ws54{word-spacing:0.373333pt;}
.wsb5{word-spacing:0.408000pt;}
.ws67{word-spacing:0.426667pt;}
.wsd0{word-spacing:0.453333pt;}
.ws84{word-spacing:0.480000pt;}
.wse5{word-spacing:0.498667pt;}
.ws6a{word-spacing:0.533333pt;}
.wsf3{word-spacing:0.544000pt;}
.ws44{word-spacing:0.586667pt;}
.ws109{word-spacing:0.634667pt;}
.ws30{word-spacing:0.640000pt;}
.wse0{word-spacing:0.680000pt;}
.ws66{word-spacing:0.693333pt;}
.ws104{word-spacing:0.725333pt;}
.ws6b{word-spacing:0.746667pt;}
.ws71{word-spacing:0.800000pt;}
.wsb4{word-spacing:0.861333pt;}
.ws14{word-spacing:0.906667pt;}
.wsd{word-spacing:0.960000pt;}
.wse2{word-spacing:0.997333pt;}
.ws5c{word-spacing:1.013333pt;}
.wse4{word-spacing:1.042667pt;}
.ws59{word-spacing:1.066667pt;}
.wsfa{word-spacing:1.088000pt;}
.ws6d{word-spacing:1.120000pt;}
.wsaf{word-spacing:1.133333pt;}
.ws3c{word-spacing:1.173333pt;}
.wsb1{word-spacing:1.178667pt;}
.ws76{word-spacing:1.226667pt;}
.ws101{word-spacing:1.269333pt;}
.ws3d{word-spacing:1.280000pt;}
.wsa{word-spacing:1.333333pt;}
.ws87{word-spacing:1.360000pt;}
.ws56{word-spacing:1.386667pt;}
.wsf7{word-spacing:1.405333pt;}
.ws49{word-spacing:1.440000pt;}
.wsd6{word-spacing:1.450667pt;}
.ws52{word-spacing:1.493333pt;}
.ws98{word-spacing:1.496000pt;}
.wsb6{word-spacing:1.541333pt;}
.ws62{word-spacing:1.546667pt;}
.wsc7{word-spacing:1.586667pt;}
.ws40{word-spacing:1.600000pt;}
.ws58{word-spacing:1.653333pt;}
.ws2a{word-spacing:1.706667pt;}
.wse1{word-spacing:1.722667pt;}
.ws51{word-spacing:1.760000pt;}
.ws102{word-spacing:1.768000pt;}
.ws31{word-spacing:1.813333pt;}
.ws9b{word-spacing:1.858667pt;}
.ws1a{word-spacing:1.866667pt;}
.ws50{word-spacing:1.920000pt;}
.ws57{word-spacing:1.973333pt;}
.ws22{word-spacing:2.026667pt;}
.ws16{word-spacing:2.080000pt;}
.wscb{word-spacing:2.130667pt;}
.ws32{word-spacing:2.133333pt;}
.ws42{word-spacing:2.186667pt;}
.ws5e{word-spacing:2.240000pt;}
.wsc8{word-spacing:2.266667pt;}
.ws2b{word-spacing:2.293333pt;}
.wsca{word-spacing:2.312000pt;}
.ws2d{word-spacing:2.346667pt;}
.wsfd{word-spacing:2.357333pt;}
.ws37{word-spacing:2.400000pt;}
.wsd2{word-spacing:2.402667pt;}
.wsd1{word-spacing:2.448000pt;}
.ws3a{word-spacing:2.453333pt;}
.ws46{word-spacing:2.506667pt;}
.wsbd{word-spacing:2.538667pt;}
.ws45{word-spacing:2.560000pt;}
.wsf6{word-spacing:2.584000pt;}
.ws5b{word-spacing:2.613333pt;}
.wsce{word-spacing:2.629333pt;}
.ws48{word-spacing:2.666667pt;}
.ws9a{word-spacing:2.674667pt;}
.ws8e{word-spacing:2.720000pt;}
.ws21{word-spacing:2.773333pt;}
.wsda{word-spacing:2.810667pt;}
.ws64{word-spacing:2.826667pt;}
.ws23{word-spacing:2.880000pt;}
.wsfc{word-spacing:2.901333pt;}
.ws3b{word-spacing:2.933333pt;}
.wsc0{word-spacing:2.946667pt;}
.ws73{word-spacing:2.986667pt;}
.wsb8{word-spacing:2.992000pt;}
.ws53{word-spacing:3.093333pt;}
.wsef{word-spacing:3.128000pt;}
.ws13{word-spacing:3.200000pt;}
.ws4f{word-spacing:3.253333pt;}
.wsf1{word-spacing:3.264000pt;}
.ws65{word-spacing:3.306667pt;}
.wsbc{word-spacing:3.400000pt;}
.wsa7{word-spacing:3.413333pt;}
.ws43{word-spacing:3.466667pt;}
.wsd9{word-spacing:3.490667pt;}
.ws18{word-spacing:3.626667pt;}
.ws74{word-spacing:3.680000pt;}
.wsd4{word-spacing:3.717333pt;}
.wsad{word-spacing:3.733333pt;}
.ws99{word-spacing:3.762667pt;}
.wsa6{word-spacing:3.786667pt;}
.ws85{word-spacing:3.840000pt;}
.wsd5{word-spacing:3.853333pt;}
.ws1f{word-spacing:3.893333pt;}
.ws105{word-spacing:3.898667pt;}
.ws91{word-spacing:3.944000pt;}
.ws33{word-spacing:3.946667pt;}
.wsfe{word-spacing:3.989333pt;}
.ws34{word-spacing:4.000000pt;}
.wsd7{word-spacing:4.034667pt;}
.ws63{word-spacing:4.053333pt;}
.ws107{word-spacing:4.080000pt;}
.ws47{word-spacing:4.106667pt;}
.wsd8{word-spacing:4.125333pt;}
.ws70{word-spacing:4.160000pt;}
.ws7a{word-spacing:4.216000pt;}
.wsea{word-spacing:4.261333pt;}
.ws3e{word-spacing:4.266667pt;}
.wsf9{word-spacing:4.306667pt;}
.wsa1{word-spacing:4.320000pt;}
.ws75{word-spacing:4.373333pt;}
.ws6c{word-spacing:4.426667pt;}
.ws100{word-spacing:4.488000pt;}
.wsc3{word-spacing:4.533333pt;}
.ws86{word-spacing:4.586667pt;}
.wsc4{word-spacing:4.624000pt;}
.wsa0{word-spacing:4.640000pt;}
.ws8a{word-spacing:4.746667pt;}
.wsb9{word-spacing:4.760000pt;}
.ws8c{word-spacing:4.800000pt;}
.wsf0{word-spacing:4.850667pt;}
.wsbe{word-spacing:4.941333pt;}
.ws6e{word-spacing:4.960000pt;}
.wsae{word-spacing:4.986667pt;}
.ws92{word-spacing:5.120000pt;}
.ws79{word-spacing:5.122667pt;}
.wsb7{word-spacing:5.168000pt;}
.ws8d{word-spacing:5.226667pt;}
.ws9c{word-spacing:5.258667pt;}
.ws41{word-spacing:5.280000pt;}
.ws97{word-spacing:5.304000pt;}
.ws39{word-spacing:5.333333pt;}
.wsc1{word-spacing:5.530667pt;}
.ws69{word-spacing:5.653333pt;}
.ws35{word-spacing:6.026667pt;}
.ws78{word-spacing:6.165333pt;}
.ws9f{word-spacing:6.210667pt;}
.wsed{word-spacing:6.346667pt;}
.ws7c{word-spacing:6.437333pt;}
.wsdd{word-spacing:6.573333pt;}
.wsd3{word-spacing:6.664000pt;}
.ws5d{word-spacing:6.666667pt;}
.wsa5{word-spacing:6.933333pt;}
.wsdf{word-spacing:7.026667pt;}
.ws9e{word-spacing:7.389333pt;}
.ws9d{word-spacing:7.752000pt;}
.ws77{word-spacing:7.888000pt;}
.wseb{word-spacing:8.794667pt;}
.ws96{word-spacing:11.424000pt;}
.ws90{word-spacing:12.330667pt;}
.ws95{word-spacing:13.373332pt;}
.ws8f{word-spacing:16.818667pt;}
.ws83{word-spacing:23.709333pt;}
.ws80{word-spacing:26.474671pt;}
.ws81{word-spacing:30.282666pt;}
.ws7e{word-spacing:39.576001pt;}
.ws24{word-spacing:64.237335pt;}
.ws82{word-spacing:67.002673pt;}
.ws7f{word-spacing:142.890662pt;}
._5{margin-left:-14.733333pt;}
._2c{margin-left:-10.970647pt;}
._d{margin-left:-10.044859pt;}
._e{margin-left:-8.449127pt;}
._b{margin-left:-7.337542pt;}
._28{margin-left:-5.482666pt;}
._29{margin-left:-4.514133pt;}
._3{margin-left:-3.482667pt;}
._4{margin-left:-2.414933pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.186133pt;}
._9{width:2.453334pt;}
._12{width:3.694923pt;}
._f{width:4.636800pt;}
._11{width:6.150400pt;}
._2b{width:7.298664pt;}
._a{width:8.884198pt;}
._c{width:10.236823pt;}
._2a{width:13.017068pt;}
._10{width:14.836267pt;}
._6{width:16.319999pt;}
._21{width:34.180287pt;}
._2{width:35.678379pt;}
._14{width:37.673021pt;}
._13{width:38.714665pt;}
._24{width:39.893362pt;}
._1b{width:41.888000pt;}
._17{width:43.305591pt;}
._7{width:48.552000pt;}
._1c{width:57.437340pt;}
._1d{width:61.789327pt;}
._1e{width:72.351991pt;}
._23{width:78.607998pt;}
._25{width:86.178658pt;}
._22{width:96.151991pt;}
._15{width:107.601593pt;}
._1a{width:121.221340pt;}
._16{width:130.287997pt;}
._20{width:155.447991pt;}
._1f{width:166.962665pt;}
._19{width:178.114658pt;}
._18{width:189.629332pt;}
._27{width:200.781324pt;}
._26{width:206.991991pt;}
._8{width:2221.605317pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930934pt;}
.y1{bottom:61.181335pt;}
.y225{bottom:90.329620pt;}
.y36{bottom:100.394934pt;}
.y17a{bottom:100.448257pt;}
.y157{bottom:100.540272pt;}
.y6c{bottom:100.813639pt;}
.y117{bottom:101.052246pt;}
.yaa{bottom:101.986796pt;}
.ya1{bottom:101.986898pt;}
.yc8{bottom:101.986928pt;}
.yd6{bottom:101.986938pt;}
.yef{bottom:102.110921pt;}
.y1e3{bottom:103.657620pt;}
.y2f{bottom:108.854533pt;}
.y35{bottom:113.722934pt;}
.y179{bottom:113.776257pt;}
.y156{bottom:113.868272pt;}
.y1e2{bottom:116.985620pt;}
.y224{bottom:117.336961pt;}
.y6b{bottom:117.480306pt;}
.y116{bottom:117.718913pt;}
.y14b{bottom:117.718933pt;}
.ya9{bottom:118.653463pt;}
.ya0{bottom:118.653564pt;}
.yc7{bottom:118.653595pt;}
.yd5{bottom:118.653605pt;}
.yee{bottom:118.777588pt;}
.y1a1{bottom:124.842277pt;}
.y2e{bottom:125.521200pt;}
.y178{bottom:127.104257pt;}
.y155{bottom:127.196272pt;}
.y1e1{bottom:130.313620pt;}
.y223{bottom:130.664961pt;}
.y265{bottom:130.664990pt;}
.y34{bottom:131.584269pt;}
.y6a{bottom:134.146973pt;}
.y115{bottom:134.385579pt;}
.y14a{bottom:134.385600pt;}
.ya8{bottom:135.320129pt;}
.y9f{bottom:135.320231pt;}
.yc6{bottom:135.320262pt;}
.yd4{bottom:135.320272pt;}
.yed{bottom:135.444255pt;}
.y1a0{bottom:138.170277pt;}
.y177{bottom:140.432257pt;}
.y154{bottom:140.524272pt;}
.y2d{bottom:142.187866pt;}
.y1e0{bottom:143.641620pt;}
.y222{bottom:143.992961pt;}
.y264{bottom:143.992990pt;}
.y69{bottom:150.813639pt;}
.y114{bottom:151.052246pt;}
.y149{bottom:151.052266pt;}
.y19f{bottom:151.498277pt;}
.ya7{bottom:151.986796pt;}
.y9e{bottom:151.986898pt;}
.yd3{bottom:151.986938pt;}
.yec{bottom:152.110921pt;}
.y176{bottom:153.760257pt;}
.y33{bottom:153.816941pt;}
.y1df{bottom:156.969620pt;}
.y221{bottom:157.320961pt;}
.y263{bottom:157.320990pt;}
.y2c{bottom:158.854533pt;}
.y19e{bottom:164.826277pt;}
.y175{bottom:167.088257pt;}
.y32{bottom:167.144941pt;}
.y68{bottom:167.480306pt;}
.y113{bottom:167.718913pt;}
.y148{bottom:167.718933pt;}
.ya6{bottom:168.653463pt;}
.y9d{bottom:168.653564pt;}
.yc5{bottom:168.653595pt;}
.yd2{bottom:168.653605pt;}
.yeb{bottom:168.777588pt;}
.y1de{bottom:170.297620pt;}
.y220{bottom:170.648961pt;}
.y262{bottom:170.648990pt;}
.y2b{bottom:175.521200pt;}
.y19d{bottom:178.154277pt;}
.y174{bottom:180.416257pt;}
.y1dd{bottom:183.625620pt;}
.y21f{bottom:183.976961pt;}
.y261{bottom:183.976990pt;}
.y67{bottom:184.146973pt;}
.y112{bottom:184.385579pt;}
.y147{bottom:184.385600pt;}
.ya5{bottom:185.320129pt;}
.y9c{bottom:185.320231pt;}
.yd1{bottom:185.320272pt;}
.yea{bottom:185.444255pt;}
.y31{bottom:187.182274pt;}
.y2a{bottom:192.187866pt;}
.y173{bottom:193.744257pt;}
.y1dc{bottom:196.953620pt;}
.y21e{bottom:197.304961pt;}
.y260{bottom:197.304990pt;}
.y30{bottom:200.510274pt;}
.y66{bottom:200.813639pt;}
.y111{bottom:201.052246pt;}
.y146{bottom:201.052266pt;}
.ya4{bottom:201.986796pt;}
.y9b{bottom:201.986898pt;}
.yc4{bottom:201.986938pt;}
.ye9{bottom:202.110921pt;}
.y172{bottom:207.072257pt;}
.y19c{bottom:208.154277pt;}
.y29{bottom:208.854533pt;}
.y1db{bottom:210.281620pt;}
.y21d{bottom:210.632961pt;}
.y25f{bottom:210.632990pt;}
.y65{bottom:217.480306pt;}
.y110{bottom:217.718913pt;}
.y145{bottom:217.718933pt;}
.y9a{bottom:218.653564pt;}
.yc3{bottom:218.653605pt;}
.ye8{bottom:218.777588pt;}
.y171{bottom:220.400257pt;}
.y1da{bottom:223.609620pt;}
.y21c{bottom:223.960961pt;}
.y25e{bottom:223.960990pt;}
.y28{bottom:225.521200pt;}
.y170{bottom:233.728257pt;}
.y64{bottom:234.146973pt;}
.y144{bottom:234.385600pt;}
.ya3{bottom:235.320129pt;}
.y99{bottom:235.320231pt;}
.yc2{bottom:235.320272pt;}
.ye7{bottom:235.444255pt;}
.y1d9{bottom:236.937620pt;}
.y21b{bottom:237.288961pt;}
.y25d{bottom:237.288990pt;}
.y27{bottom:242.187866pt;}
.y16f{bottom:247.056257pt;}
.y1d8{bottom:250.265620pt;}
.y21a{bottom:250.616961pt;}
.y25c{bottom:250.616990pt;}
.y63{bottom:250.813639pt;}
.y10f{bottom:251.052246pt;}
.y143{bottom:251.052266pt;}
.y98{bottom:251.986898pt;}
.yc1{bottom:251.986938pt;}
.ye6{bottom:252.110921pt;}
.y25{bottom:258.854533pt;}
.y1d7{bottom:263.593620pt;}
.y219{bottom:263.944961pt;}
.y25b{bottom:263.944990pt;}
.y16e{bottom:264.917603pt;}
.y62{bottom:267.480306pt;}
.y142{bottom:267.718933pt;}
.ya2{bottom:268.653463pt;}
.y97{bottom:268.653564pt;}
.yc0{bottom:268.653605pt;}
.ye5{bottom:268.777588pt;}
.y19b{bottom:270.223863pt;}
.y24{bottom:275.521200pt;}
.y1d6{bottom:276.921620pt;}
.y218{bottom:277.272961pt;}
.y25a{bottom:277.272990pt;}
.y19a{bottom:283.551863pt;}
.y61{bottom:284.146973pt;}
.y10e{bottom:284.385579pt;}
.y141{bottom:284.385600pt;}
.y96{bottom:285.320231pt;}
.ybf{bottom:285.320272pt;}
.ye4{bottom:285.444255pt;}
.y1d5{bottom:290.249620pt;}
.y217{bottom:290.600961pt;}
.y259{bottom:290.600990pt;}
.y23{bottom:292.187866pt;}
.y199{bottom:296.879863pt;}
.y60{bottom:300.813639pt;}
.y10d{bottom:301.052246pt;}
.y140{bottom:301.052287pt;}
.y95{bottom:301.986898pt;}
.ybe{bottom:301.986938pt;}
.ye3{bottom:302.110921pt;}
.y1d4{bottom:303.577620pt;}
.y216{bottom:303.928961pt;}
.y258{bottom:303.928990pt;}
.y22{bottom:308.854533pt;}
.y198{bottom:310.207863pt;}
.y1d3{bottom:316.905620pt;}
.y215{bottom:317.256961pt;}
.y257{bottom:317.256990pt;}
.y5f{bottom:317.480306pt;}
.y10c{bottom:317.718913pt;}
.y13f{bottom:317.718953pt;}
.y94{bottom:318.653564pt;}
.ybd{bottom:318.653605pt;}
.ye2{bottom:318.777588pt;}
.y197{bottom:323.535863pt;}
.y21{bottom:325.521200pt;}
.y1d2{bottom:330.233620pt;}
.y214{bottom:330.584961pt;}
.y256{bottom:330.584990pt;}
.y5e{bottom:334.146973pt;}
.y10b{bottom:334.385579pt;}
.y13e{bottom:334.385620pt;}
.y93{bottom:335.320231pt;}
.ybc{bottom:335.320272pt;}
.ye1{bottom:335.444255pt;}
.y196{bottom:336.863863pt;}
.y20{bottom:342.187866pt;}
.y1d1{bottom:343.561620pt;}
.y213{bottom:343.912961pt;}
.y255{bottom:343.912990pt;}
.y5d{bottom:350.813639pt;}
.y10a{bottom:351.052246pt;}
.y13d{bottom:351.052287pt;}
.y92{bottom:351.986898pt;}
.ybb{bottom:351.986938pt;}
.ye0{bottom:352.110921pt;}
.y1d0{bottom:356.889620pt;}
.y212{bottom:357.240961pt;}
.y254{bottom:357.240990pt;}
.y1f{bottom:358.854533pt;}
.y5c{bottom:367.480306pt;}
.y109{bottom:367.718913pt;}
.y13c{bottom:367.718953pt;}
.y91{bottom:368.653564pt;}
.yba{bottom:368.653605pt;}
.ydf{bottom:368.777588pt;}
.y1cf{bottom:370.217620pt;}
.y211{bottom:370.568961pt;}
.y253{bottom:370.568990pt;}
.y195{bottom:373.481863pt;}
.y1e{bottom:375.521200pt;}
.y1ce{bottom:383.545620pt;}
.y210{bottom:383.896961pt;}
.y252{bottom:383.896990pt;}
.y5b{bottom:384.146973pt;}
.y108{bottom:384.385579pt;}
.y13b{bottom:384.385620pt;}
.y90{bottom:385.320231pt;}
.yb9{bottom:385.320272pt;}
.yde{bottom:385.444255pt;}
.y194{bottom:386.809863pt;}
.y1d{bottom:392.187866pt;}
.y1cd{bottom:396.873620pt;}
.y20f{bottom:397.224961pt;}
.y251{bottom:397.224990pt;}
.y193{bottom:400.137863pt;}
.y5a{bottom:400.813639pt;}
.y107{bottom:401.052246pt;}
.y13a{bottom:401.052287pt;}
.y8f{bottom:401.986898pt;}
.yb8{bottom:401.986938pt;}
.ydd{bottom:402.110921pt;}
.y1c{bottom:408.854533pt;}
.y1cc{bottom:410.201620pt;}
.y20e{bottom:410.552961pt;}
.y250{bottom:410.552990pt;}
.y59{bottom:417.480306pt;}
.y106{bottom:417.718913pt;}
.y139{bottom:417.718953pt;}
.y8e{bottom:418.653564pt;}
.yb7{bottom:418.653605pt;}
.ydc{bottom:418.777588pt;}
.y1cb{bottom:423.529620pt;}
.y20d{bottom:423.880961pt;}
.y24f{bottom:423.880990pt;}
.y1b{bottom:425.521200pt;}
.y192{bottom:426.771195pt;}
.y58{bottom:434.146973pt;}
.y105{bottom:434.385579pt;}
.y138{bottom:434.385620pt;}
.y8d{bottom:435.320231pt;}
.yb6{bottom:435.320272pt;}
.ydb{bottom:435.444255pt;}
.y1ca{bottom:436.857620pt;}
.y20c{bottom:437.208961pt;}
.y24e{bottom:437.208990pt;}
.y191{bottom:440.099195pt;}
.y1a{bottom:442.187866pt;}
.y1c9{bottom:450.185620pt;}
.y20b{bottom:450.536961pt;}
.y24d{bottom:450.536990pt;}
.y57{bottom:450.813639pt;}
.y104{bottom:451.052246pt;}
.y137{bottom:451.052287pt;}
.y8c{bottom:451.986898pt;}
.yb5{bottom:451.986938pt;}
.yda{bottom:452.110921pt;}
.y19{bottom:458.854533pt;}
.y1c8{bottom:463.513620pt;}
.y20a{bottom:463.864961pt;}
.y24c{bottom:463.864990pt;}
.y190{bottom:466.732527pt;}
.y56{bottom:467.480306pt;}
.y103{bottom:467.718913pt;}
.y136{bottom:467.718953pt;}
.y8b{bottom:468.653564pt;}
.y16d{bottom:468.653605pt;}
.yd9{bottom:468.777588pt;}
.y18{bottom:475.521200pt;}
.y1c7{bottom:476.841620pt;}
.y209{bottom:477.192961pt;}
.y24b{bottom:477.192990pt;}
.y18f{bottom:480.060527pt;}
.y55{bottom:484.146973pt;}
.y102{bottom:484.385579pt;}
.y135{bottom:484.385620pt;}
.y8a{bottom:485.320231pt;}
.y16c{bottom:485.320272pt;}
.yb4{bottom:485.325605pt;}
.yd8{bottom:485.444255pt;}
.y1c6{bottom:490.169620pt;}
.y208{bottom:490.520961pt;}
.y24a{bottom:490.520990pt;}
.y17{bottom:492.187866pt;}
.y18e{bottom:493.388527pt;}
.y54{bottom:500.813639pt;}
.y134{bottom:501.052287pt;}
.y89{bottom:501.986898pt;}
.yb3{bottom:501.986938pt;}
.yd7{bottom:502.110921pt;}
.y1c5{bottom:503.497620pt;}
.y207{bottom:503.848961pt;}
.y249{bottom:503.848990pt;}
.y18d{bottom:506.716527pt;}
.y16{bottom:508.854533pt;}
.y1c4{bottom:516.825620pt;}
.y206{bottom:517.176961pt;}
.y248{bottom:517.176990pt;}
.y53{bottom:517.480306pt;}
.y101{bottom:517.718913pt;}
.y133{bottom:517.718953pt;}
.y88{bottom:518.653564pt;}
.y16b{bottom:518.653605pt;}
.y26{bottom:525.521200pt;}
.y1c3{bottom:530.153620pt;}
.y205{bottom:530.504961pt;}
.y247{bottom:530.504990pt;}
.y18c{bottom:533.349859pt;}
.y52{bottom:534.146973pt;}
.y132{bottom:534.385579pt;}
.y152{bottom:534.385620pt;}
.y87{bottom:535.320231pt;}
.yb2{bottom:535.320272pt;}
.y121{bottom:535.444255pt;}
.y15{bottom:542.187866pt;}
.yf3{bottom:542.639047pt;}
.yf7{bottom:542.650381pt;}
.y1c2{bottom:543.481620pt;}
.y204{bottom:543.832961pt;}
.y246{bottom:543.832990pt;}
.y18b{bottom:546.677859pt;}
.y51{bottom:550.813639pt;}
.y100{bottom:551.052246pt;}
.y151{bottom:551.052287pt;}
.y86{bottom:551.986898pt;}
.yb1{bottom:551.986938pt;}
.yf2{bottom:555.967047pt;}
.yf6{bottom:555.978381pt;}
.y1c1{bottom:556.809620pt;}
.y203{bottom:557.160961pt;}
.y245{bottom:557.160990pt;}
.y18a{bottom:560.005859pt;}
.y50{bottom:567.480306pt;}
.yff{bottom:567.718913pt;}
.y150{bottom:567.718953pt;}
.y85{bottom:568.653564pt;}
.yb0{bottom:568.653605pt;}
.yf1{bottom:569.295047pt;}
.yf5{bottom:569.306381pt;}
.y1c0{bottom:570.137620pt;}
.y202{bottom:570.488961pt;}
.y244{bottom:570.488990pt;}
.yf0{bottom:582.623047pt;}
.yf4{bottom:582.634381pt;}
.y1bf{bottom:583.465620pt;}
.y201{bottom:583.816961pt;}
.y243{bottom:583.816990pt;}
.y4f{bottom:584.146973pt;}
.yfe{bottom:584.385579pt;}
.y14f{bottom:584.385620pt;}
.y84{bottom:585.320231pt;}
.yaf{bottom:585.320272pt;}
.y120{bottom:585.438894pt;}
.y189{bottom:590.005859pt;}
.y14{bottom:592.187907pt;}
.y1be{bottom:596.793620pt;}
.y200{bottom:597.144961pt;}
.y242{bottom:597.144990pt;}
.y4e{bottom:600.813639pt;}
.yfd{bottom:601.052246pt;}
.y14e{bottom:601.052287pt;}
.y83{bottom:601.986898pt;}
.yae{bottom:601.986938pt;}
.y11f{bottom:602.105560pt;}
.y13{bottom:608.854574pt;}
.y1bd{bottom:610.121620pt;}
.y1ff{bottom:610.472961pt;}
.y241{bottom:610.472990pt;}
.y4d{bottom:617.480306pt;}
.yfc{bottom:617.718913pt;}
.y14d{bottom:617.718953pt;}
.y82{bottom:618.653564pt;}
.yad{bottom:618.653605pt;}
.y11e{bottom:618.772227pt;}
.y188{bottom:623.387219pt;}
.y1bc{bottom:623.449620pt;}
.y1fe{bottom:623.800961pt;}
.y240{bottom:623.800990pt;}
.y12{bottom:625.521240pt;}
.y4c{bottom:634.146973pt;}
.yfb{bottom:634.385579pt;}
.y81{bottom:635.320231pt;}
.yac{bottom:635.320272pt;}
.y11d{bottom:635.438894pt;}
.y187{bottom:636.715219pt;}
.y1bb{bottom:636.777620pt;}
.y1fd{bottom:637.128961pt;}
.y23f{bottom:637.128990pt;}
.y11{bottom:642.187907pt;}
.y186{bottom:650.043219pt;}
.y1ba{bottom:650.105620pt;}
.y1fc{bottom:650.456961pt;}
.y23e{bottom:650.456990pt;}
.y4b{bottom:650.813639pt;}
.yfa{bottom:651.052246pt;}
.y80{bottom:651.986898pt;}
.yab{bottom:651.986938pt;}
.y11c{bottom:652.105560pt;}
.y10{bottom:658.854574pt;}
.y185{bottom:663.371219pt;}
.y1b9{bottom:663.433620pt;}
.y1fb{bottom:663.784961pt;}
.y23d{bottom:663.784990pt;}
.y4a{bottom:667.480306pt;}
.y131{bottom:667.718913pt;}
.y7f{bottom:668.653564pt;}
.y16a{bottom:668.653605pt;}
.y11b{bottom:668.772227pt;}
.yf{bottom:675.521240pt;}
.y184{bottom:676.699219pt;}
.y1b8{bottom:676.761620pt;}
.y1fa{bottom:677.112961pt;}
.y23c{bottom:677.112990pt;}
.y49{bottom:684.146973pt;}
.yf9{bottom:684.385579pt;}
.y7e{bottom:685.320231pt;}
.y169{bottom:685.320272pt;}
.y11a{bottom:685.438894pt;}
.y1b7{bottom:690.089620pt;}
.y1f9{bottom:690.440961pt;}
.y23b{bottom:690.440990pt;}
.ye{bottom:692.187907pt;}
.y48{bottom:700.813639pt;}
.y14c{bottom:701.052246pt;}
.y7d{bottom:701.986898pt;}
.y168{bottom:701.986938pt;}
.y119{bottom:702.105560pt;}
.y1b6{bottom:703.417620pt;}
.y1f8{bottom:703.768961pt;}
.y23a{bottom:703.768990pt;}
.y183{bottom:706.662435pt;}
.yd{bottom:708.854574pt;}
.y1b5{bottom:716.745620pt;}
.y1f7{bottom:717.096961pt;}
.y239{bottom:717.096990pt;}
.y47{bottom:717.480306pt;}
.yf8{bottom:717.718913pt;}
.y130{bottom:717.724246pt;}
.y7c{bottom:718.653564pt;}
.y167{bottom:718.653605pt;}
.y118{bottom:718.772227pt;}
.y182{bottom:723.329102pt;}
.yc{bottom:725.521240pt;}
.y1b4{bottom:730.073620pt;}
.y1f6{bottom:730.424961pt;}
.y238{bottom:730.424990pt;}
.y46{bottom:734.146973pt;}
.y12f{bottom:734.385579pt;}
.y7b{bottom:735.320231pt;}
.y166{bottom:735.320272pt;}
.y181{bottom:739.995768pt;}
.yb{bottom:742.187907pt;}
.y1b3{bottom:743.401620pt;}
.y1f5{bottom:743.752961pt;}
.y237{bottom:743.752990pt;}
.y45{bottom:750.813639pt;}
.y7a{bottom:751.986898pt;}
.y165{bottom:751.986938pt;}
.y180{bottom:756.662435pt;}
.y1b2{bottom:756.729620pt;}
.y1f4{bottom:757.080961pt;}
.y236{bottom:757.080990pt;}
.y124{bottom:759.891631pt;}
.y44{bottom:767.480306pt;}
.y79{bottom:768.653564pt;}
.y164{bottom:768.653605pt;}
.y1b1{bottom:770.057620pt;}
.y1f3{bottom:770.408961pt;}
.y235{bottom:770.408990pt;}
.y123{bottom:773.219631pt;}
.y17f{bottom:773.329102pt;}
.y153{bottom:779.103027pt;}
.ya{bottom:781.461469pt;}
.y1b0{bottom:783.385620pt;}
.y1f2{bottom:783.736961pt;}
.y234{bottom:783.736990pt;}
.y43{bottom:784.146973pt;}
.y78{bottom:785.320231pt;}
.y163{bottom:785.320272pt;}
.y17e{bottom:789.995768pt;}
.y9{bottom:794.789469pt;}
.y1af{bottom:796.713620pt;}
.y1f1{bottom:797.064961pt;}
.y233{bottom:797.064990pt;}
.y12e{bottom:797.737353pt;}
.y42{bottom:800.813639pt;}
.y77{bottom:801.986898pt;}
.y162{bottom:801.986938pt;}
.y17d{bottom:806.662435pt;}
.y1ae{bottom:810.041620pt;}
.y1f0{bottom:810.392961pt;}
.y232{bottom:810.392990pt;}
.y12d{bottom:814.442686pt;}
.y41{bottom:817.480306pt;}
.y76{bottom:818.653564pt;}
.y161{bottom:818.653605pt;}
.y17c{bottom:823.329102pt;}
.y1ad{bottom:823.369620pt;}
.y1ef{bottom:823.720961pt;}
.y231{bottom:823.720990pt;}
.y12c{bottom:831.080020pt;}
.y8{bottom:832.656169pt;}
.y40{bottom:834.146973pt;}
.y75{bottom:835.320231pt;}
.y160{bottom:835.320272pt;}
.y1ac{bottom:836.697620pt;}
.y1ee{bottom:837.048961pt;}
.y230{bottom:837.048990pt;}
.y12b{bottom:847.717354pt;}
.y1ab{bottom:850.025620pt;}
.y1ed{bottom:850.376961pt;}
.y22f{bottom:850.376990pt;}
.y3f{bottom:850.813639pt;}
.y74{bottom:851.986898pt;}
.yd0{bottom:851.986928pt;}
.y15f{bottom:851.986938pt;}
.y17b{bottom:856.662435pt;}
.y1aa{bottom:863.353620pt;}
.y1ec{bottom:863.704961pt;}
.y22e{bottom:863.704990pt;}
.y12a{bottom:864.354688pt;}
.y3e{bottom:867.480306pt;}
.y73{bottom:868.653564pt;}
.ycf{bottom:868.653595pt;}
.y15e{bottom:868.653605pt;}
.y7{bottom:872.377441pt;}
.y1a9{bottom:876.681620pt;}
.y1eb{bottom:877.032961pt;}
.y22d{bottom:877.032990pt;}
.y3d{bottom:884.146973pt;}
.y72{bottom:885.320231pt;}
.yce{bottom:885.320262pt;}
.y15d{bottom:885.320272pt;}
.y129{bottom:889.323972pt;}
.y1a8{bottom:890.009620pt;}
.y1ea{bottom:890.360961pt;}
.y22c{bottom:890.360990pt;}
.y6{bottom:896.377441pt;}
.y3c{bottom:900.813639pt;}
.y71{bottom:901.986898pt;}
.ycd{bottom:901.986928pt;}
.y15c{bottom:901.986938pt;}
.y1a7{bottom:903.337620pt;}
.y1e9{bottom:903.688961pt;}
.y22b{bottom:903.688990pt;}
.y128{bottom:911.027306pt;}
.y1a6{bottom:916.665620pt;}
.y1e8{bottom:917.016961pt;}
.y22a{bottom:917.016990pt;}
.y3b{bottom:917.480306pt;}
.y70{bottom:918.653564pt;}
.ycc{bottom:918.653595pt;}
.y15b{bottom:918.653605pt;}
.y127{bottom:924.355306pt;}
.y1a5{bottom:929.993620pt;}
.y1e7{bottom:930.344961pt;}
.y229{bottom:930.344990pt;}
.y126{bottom:932.994021pt;}
.y3a{bottom:934.146973pt;}
.y6f{bottom:935.320231pt;}
.ycb{bottom:935.320262pt;}
.y15a{bottom:935.320272pt;}
.y1a4{bottom:943.321620pt;}
.y1e6{bottom:943.672961pt;}
.y228{bottom:943.672990pt;}
.y125{bottom:946.322021pt;}
.y39{bottom:950.813639pt;}
.y6e{bottom:951.986898pt;}
.yca{bottom:951.986928pt;}
.y159{bottom:951.986938pt;}
.y5{bottom:956.561849pt;}
.y1a3{bottom:956.649620pt;}
.y1e5{bottom:957.000961pt;}
.y227{bottom:957.000990pt;}
.y38{bottom:967.480306pt;}
.y6d{bottom:968.653564pt;}
.yc9{bottom:968.653595pt;}
.y158{bottom:968.653605pt;}
.y122{bottom:968.980306pt;}
.y1a2{bottom:969.977620pt;}
.y1e4{bottom:970.328961pt;}
.y226{bottom:970.328990pt;}
.y4{bottom:986.299162pt;}
.y3{bottom:1001.406494pt;}
.y37{bottom:1002.206543pt;}
.hd{height:22.403733pt;}
.h2{height:30.080000pt;}
.hc{height:32.005333pt;}
.hb{height:32.760417pt;}
.h9{height:37.653333pt;}
.h8{height:38.453333pt;}
.h4{height:39.712000pt;}
.h11{height:40.165333pt;}
.ha{height:46.144000pt;}
.h13{height:46.376000pt;}
.h12{height:47.253333pt;}
.h17{height:47.690667pt;}
.h10{height:47.690829pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.he{height:52.448000pt;}
.hf{height:54.560000pt;}
.h7{height:57.621333pt;}
.h16{height:59.541253pt;}
.h15{height:59.541334pt;}
.h14{height:59.541497pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996801pt;}
.x4{left:75.717199pt;}
.x9{left:83.151468pt;}
.x7{left:86.929867pt;}
.x10{left:90.709468pt;}
.xa{left:138.872538pt;}
.xb{left:400.854126pt;}
.x6{left:408.191468pt;}
.x5{left:423.311467pt;}
.xf{left:430.866923pt;}
.xc{left:480.204142pt;}
.xd{left:559.554118pt;}
.xe{left:644.570923pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  