
    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_55f6280f500e0b089b5aec56.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_85b85c186769a1a7c17a79ea.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0479a2bd482e239fb6f7c413.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e6068d44434a2342ebc87df7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9f26602816445938c559fac1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d048542d30d05bb3b933a89d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_b98646270514df7f7bbbb31b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090000;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_f5294a49b46641f2fd1a6a6b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf2a5c9f829cd2d713f64e18.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_c1d4eea0333b661740fdffa3.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_2c811912a33a961354db8ebf.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls39{letter-spacing:-2.040000px;}
.ls4e{letter-spacing:-1.200000px;}
.ls53{letter-spacing:-1.080000px;}
.ls4d{letter-spacing:-1.020000px;}
.ls6e{letter-spacing:-0.969000px;}
.ls73{letter-spacing:-0.918000px;}
.ls78{letter-spacing:-0.867000px;}
.ls58{letter-spacing:-0.840000px;}
.ls75{letter-spacing:-0.765000px;}
.ls6c{letter-spacing:-0.714000px;}
.ls32{letter-spacing:-0.660000px;}
.ls74{letter-spacing:-0.612000px;}
.ls4c{letter-spacing:-0.600000px;}
.ls6b{letter-spacing:-0.561000px;}
.ls37{letter-spacing:-0.540000px;}
.ls72{letter-spacing:-0.510000px;}
.ls2a{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.459000px;}
.ls44{letter-spacing:-0.420000px;}
.ls79{letter-spacing:-0.408000px;}
.ls33{letter-spacing:-0.360000px;}
.ls69{letter-spacing:-0.357000px;}
.ls6d{letter-spacing:-0.306000px;}
.ls15{letter-spacing:-0.300000px;}
.ls71{letter-spacing:-0.255000px;}
.ls14{letter-spacing:-0.240000px;}
.ls6a{letter-spacing:-0.204000px;}
.ls28{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.153000px;}
.ls13{letter-spacing:-0.120000px;}
.ls6f{letter-spacing:-0.102000px;}
.ls29{letter-spacing:-0.060000px;}
.ls70{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000083px;}
.ls77{letter-spacing:0.025500px;}
.ls6{letter-spacing:0.030000px;}
.ls5f{letter-spacing:0.051000px;}
.ls7{letter-spacing:0.060000px;}
.ls62{letter-spacing:0.102000px;}
.lsb{letter-spacing:0.120000px;}
.ls65{letter-spacing:0.127500px;}
.ls42{letter-spacing:0.150000px;}
.ls66{letter-spacing:0.153000px;}
.ls11{letter-spacing:0.178791px;}
.ls1b{letter-spacing:0.180000px;}
.ls59{letter-spacing:0.204000px;}
.ls2f{letter-spacing:0.210000px;}
.ls16{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.255000px;}
.ls5e{letter-spacing:0.264000px;}
.ls2b{letter-spacing:0.270000px;}
.ls63{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls60{letter-spacing:0.357000px;}
.ls18{letter-spacing:0.359979px;}
.ls5{letter-spacing:0.360000px;}
.ls5d{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.420000px;}
.ls30{letter-spacing:0.450000px;}
.ls61{letter-spacing:0.459000px;}
.ls1e{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.510000px;}
.ls1d{letter-spacing:0.540000px;}
.ls64{letter-spacing:0.561000px;}
.ls1c{letter-spacing:0.570000px;}
.lsa{letter-spacing:0.600000px;}
.ls5a{letter-spacing:0.612000px;}
.ls27{letter-spacing:0.630000px;}
.ls5b{letter-spacing:0.637500px;}
.lsf{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.750000px;}
.lse{letter-spacing:0.780000px;}
.ls21{letter-spacing:0.791982px;}
.ls23{letter-spacing:0.810000px;}
.ls19{letter-spacing:0.840000px;}
.ls67{letter-spacing:0.867000px;}
.ls20{letter-spacing:0.900000px;}
.ls54{letter-spacing:0.930000px;}
.lsc{letter-spacing:0.960000px;}
.ls5c{letter-spacing:0.969000px;}
.ls57{letter-spacing:0.990000px;}
.ls17{letter-spacing:1.020000px;}
.ls3e{letter-spacing:1.050000px;}
.ls24{letter-spacing:1.080000px;}
.ls4b{letter-spacing:1.110000px;}
.ls1a{letter-spacing:1.140000px;}
.lsd{letter-spacing:1.176000px;}
.ls34{letter-spacing:1.200000px;}
.ls52{letter-spacing:1.230000px;}
.ls1f{letter-spacing:1.260000px;}
.ls68{letter-spacing:1.275000px;}
.ls36{letter-spacing:1.290000px;}
.ls2c{letter-spacing:1.320000px;}
.ls76{letter-spacing:1.326000px;}
.ls25{letter-spacing:1.380000px;}
.ls3f{letter-spacing:1.440000px;}
.ls2e{letter-spacing:1.470000px;}
.ls31{letter-spacing:1.500000px;}
.ls10{letter-spacing:1.560000px;}
.ls55{letter-spacing:1.590000px;}
.ls4a{letter-spacing:1.620000px;}
.ls4f{letter-spacing:1.680000px;}
.ls45{letter-spacing:1.740000px;}
.ls3b{letter-spacing:1.800000px;}
.ls35{letter-spacing:1.860000px;}
.ls50{letter-spacing:1.920000px;}
.ls2d{letter-spacing:1.980000px;}
.ls47{letter-spacing:2.040000px;}
.ls40{letter-spacing:2.100000px;}
.ls41{letter-spacing:2.130000px;}
.ls3c{letter-spacing:2.160000px;}
.ls48{letter-spacing:2.280000px;}
.ls56{letter-spacing:2.400000px;}
.ls43{letter-spacing:2.460000px;}
.ls51{letter-spacing:2.520000px;}
.ls3d{letter-spacing:2.790000px;}
.ls46{letter-spacing:3.720000px;}
.ls1{letter-spacing:3.990000px;}
.ls49{letter-spacing:5.100000px;}
.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;}
}
.wsbd{word-spacing:-16.140000px;}
.wsb8{word-spacing:-15.780000px;}
.ws1e{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.000000px;}
.wsbe{word-spacing:-14.820000px;}
.wsbc{word-spacing:-14.520000px;}
.wsb{word-spacing:-13.005000px;}
.wscd{word-spacing:-12.852000px;}
.ws69{word-spacing:-12.750000px;}
.ws45{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.wse0{word-spacing:-12.291000px;}
.wsf7{word-spacing:-12.240000px;}
.ws6{word-spacing:-11.760000px;}
.ws7{word-spacing:-11.550000px;}
.ws8{word-spacing:-11.520000px;}
.wscc{word-spacing:-10.761000px;}
.ws96{word-spacing:-10.500000px;}
.ws2{word-spacing:-9.996000px;}
.wsc{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.wsb3{word-spacing:-7.500000px;}
.ws7e{word-spacing:-6.375000px;}
.ws9d{word-spacing:-5.250000px;}
.wse{word-spacing:-2.400000px;}
.wsc3{word-spacing:-1.980000px;}
.ws46{word-spacing:-1.740000px;}
.wsa6{word-spacing:-1.620000px;}
.ws44{word-spacing:-1.560000px;}
.ws13{word-spacing:-1.500000px;}
.ws15{word-spacing:-1.440000px;}
.ws57{word-spacing:-1.380000px;}
.ws35{word-spacing:-1.320000px;}
.wsd8{word-spacing:-1.275000px;}
.wsb7{word-spacing:-1.260000px;}
.ws1a{word-spacing:-1.200000px;}
.wsbb{word-spacing:-1.140000px;}
.ws23{word-spacing:-1.080000px;}
.wsdd{word-spacing:-1.071000px;}
.ws63{word-spacing:-1.020000px;}
.wsd7{word-spacing:-0.969000px;}
.ws5c{word-spacing:-0.960000px;}
.ws37{word-spacing:-0.900000px;}
.wse9{word-spacing:-0.867000px;}
.ws3b{word-spacing:-0.840000px;}
.ws42{word-spacing:-0.780000px;}
.wsde{word-spacing:-0.765000px;}
.ws11{word-spacing:-0.720000px;}
.wsdf{word-spacing:-0.714000px;}
.ws28{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.612000px;}
.ws5d{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.570000px;}
.wsf{word-spacing:-0.480000px;}
.ws3a{word-spacing:-0.420000px;}
.ws33{word-spacing:-0.360000px;}
.wsea{word-spacing:-0.357000px;}
.ws5{word-spacing:-0.300000px;}
.wsd9{word-spacing:-0.264000px;}
.wsd6{word-spacing:-0.255000px;}
.ws38{word-spacing:-0.240000px;}
.wsd5{word-spacing:-0.204000px;}
.ws4f{word-spacing:-0.180000px;}
.wsf2{word-spacing:-0.153000px;}
.ws3f{word-spacing:-0.120000px;}
.wsf0{word-spacing:-0.102000px;}
.ws9{word-spacing:-0.072000px;}
.wsb9{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws39{word-spacing:0.060000px;}
.ws12{word-spacing:0.120000px;}
.ws47{word-spacing:0.180000px;}
.wsee{word-spacing:0.204000px;}
.ws58{word-spacing:0.240000px;}
.wsd3{word-spacing:0.255000px;}
.ws20{word-spacing:0.300000px;}
.wsf1{word-spacing:0.306000px;}
.ws29{word-spacing:0.360000px;}
.ws5e{word-spacing:0.420000px;}
.wsd1{word-spacing:0.459000px;}
.ws2d{word-spacing:0.480000px;}
.wse2{word-spacing:0.510000px;}
.ws9a{word-spacing:0.540000px;}
.wseb{word-spacing:0.561000px;}
.ws10{word-spacing:0.600000px;}
.ws3c{word-spacing:0.660000px;}
.wse4{word-spacing:0.714000px;}
.ws91{word-spacing:0.720000px;}
.ws21{word-spacing:0.780000px;}
.ws16{word-spacing:0.840000px;}
.wsf8{word-spacing:0.867000px;}
.ws2c{word-spacing:0.900000px;}
.wsce{word-spacing:0.969000px;}
.ws9b{word-spacing:1.020000px;}
.ws2a{word-spacing:1.080000px;}
.wsdc{word-spacing:1.173000px;}
.wsd2{word-spacing:1.224000px;}
.ws60{word-spacing:1.260000px;}
.wscf{word-spacing:1.275000px;}
.ws48{word-spacing:1.320000px;}
.ws17{word-spacing:1.380000px;}
.wsef{word-spacing:1.479000px;}
.ws14{word-spacing:1.500000px;}
.wse5{word-spacing:1.530000px;}
.ws27{word-spacing:1.560000px;}
.ws19{word-spacing:1.620000px;}
.wse3{word-spacing:1.632000px;}
.ws1f{word-spacing:1.680000px;}
.wsf4{word-spacing:1.683000px;}
.ws54{word-spacing:1.740000px;}
.wsf9{word-spacing:1.785000px;}
.ws32{word-spacing:1.800000px;}
.ws25{word-spacing:1.860000px;}
.wsa3{word-spacing:1.920000px;}
.wse7{word-spacing:1.938000px;}
.ws4a{word-spacing:1.980000px;}
.ws31{word-spacing:2.040000px;}
.ws30{word-spacing:2.100000px;}
.ws59{word-spacing:2.160000px;}
.ws2f{word-spacing:2.220000px;}
.ws40{word-spacing:2.280000px;}
.wsd0{word-spacing:2.295000px;}
.wsba{word-spacing:2.340000px;}
.wsec{word-spacing:2.346000px;}
.ws4e{word-spacing:2.400000px;}
.wsad{word-spacing:2.460000px;}
.ws53{word-spacing:2.520000px;}
.wse8{word-spacing:2.550000px;}
.ws18{word-spacing:2.580000px;}
.ws2e{word-spacing:2.640000px;}
.ws36{word-spacing:2.700000px;}
.ws22{word-spacing:2.760000px;}
.wse1{word-spacing:2.805000px;}
.ws64{word-spacing:2.820000px;}
.wsda{word-spacing:2.856000px;}
.ws61{word-spacing:2.880000px;}
.ws24{word-spacing:2.940000px;}
.wsf3{word-spacing:2.958000px;}
.ws41{word-spacing:3.000000px;}
.wsed{word-spacing:3.009000px;}
.ws3d{word-spacing:3.060000px;}
.ws34{word-spacing:3.120000px;}
.ws56{word-spacing:3.180000px;}
.wsb4{word-spacing:3.240000px;}
.ws26{word-spacing:3.300000px;}
.wsa8{word-spacing:3.360000px;}
.ws43{word-spacing:3.420000px;}
.ws49{word-spacing:3.480000px;}
.ws52{word-spacing:3.540000px;}
.wsc9{word-spacing:3.600000px;}
.ws9c{word-spacing:3.720000px;}
.wsdb{word-spacing:3.723000px;}
.wsa1{word-spacing:3.780000px;}
.ws5b{word-spacing:3.840000px;}
.wsa4{word-spacing:3.900000px;}
.ws50{word-spacing:3.960000px;}
.ws51{word-spacing:4.080000px;}
.ws2b{word-spacing:4.140000px;}
.ws5f{word-spacing:4.200000px;}
.wsa2{word-spacing:4.260000px;}
.wsd4{word-spacing:4.284000px;}
.ws4b{word-spacing:4.320000px;}
.ws62{word-spacing:4.380000px;}
.wsf5{word-spacing:4.539000px;}
.wse6{word-spacing:4.590000px;}
.ws3e{word-spacing:4.620000px;}
.wsa9{word-spacing:4.920000px;}
.wsc8{word-spacing:4.947000px;}
.ws4d{word-spacing:5.040000px;}
.wsc5{word-spacing:5.100000px;}
.ws55{word-spacing:5.160000px;}
.ws9e{word-spacing:5.400000px;}
.ws1b{word-spacing:5.460000px;}
.wsca{word-spacing:5.580000px;}
.wsc2{word-spacing:5.640000px;}
.wsc6{word-spacing:5.763000px;}
.wsb6{word-spacing:5.820000px;}
.wsab{word-spacing:6.300000px;}
.wsaf{word-spacing:6.660000px;}
.ws9f{word-spacing:6.840000px;}
.ws5a{word-spacing:6.960000px;}
.ws4c{word-spacing:7.500000px;}
.wsb1{word-spacing:8.040000px;}
.wsaa{word-spacing:8.220000px;}
.wsac{word-spacing:8.400000px;}
.wsf6{word-spacing:8.415000px;}
.wsa0{word-spacing:8.460000px;}
.wsb2{word-spacing:9.120000px;}
.wscb{word-spacing:9.231000px;}
.wsa7{word-spacing:9.840000px;}
.wsb0{word-spacing:10.080000px;}
.wsc4{word-spacing:10.440000px;}
.wsa5{word-spacing:11.640000px;}
.wsae{word-spacing:16.200000px;}
.wsfa{word-spacing:18.513000px;}
.wsb5{word-spacing:23.280000px;}
.wsfb{word-spacing:24.123000px;}
.ws72{word-spacing:25.041000px;}
.wsbf{word-spacing:26.213991px;}
.ws84{word-spacing:27.540000px;}
.ws90{word-spacing:36.006000px;}
.ws6c{word-spacing:36.975000px;}
.ws97{word-spacing:42.672000px;}
.ws8f{word-spacing:45.186000px;}
.ws74{word-spacing:56.253000px;}
.ws6e{word-spacing:68.187000px;}
.ws1c{word-spacing:72.267000px;}
.wsc1{word-spacing:81.650991px;}
.ws73{word-spacing:81.753000px;}
.ws6d{word-spacing:93.687000px;}
.wsc0{word-spacing:94.400991px;}
.ws89{word-spacing:106.896000px;}
.ws75{word-spacing:107.763000px;}
.ws8c{word-spacing:109.752000px;}
.ws8a{word-spacing:110.262000px;}
.ws7a{word-spacing:112.914000px;}
.ws77{word-spacing:113.424000px;}
.ws98{word-spacing:113.736000px;}
.ws8e{word-spacing:113.832000px;}
.ws95{word-spacing:115.122000px;}
.ws8b{word-spacing:115.515000px;}
.ws7b{word-spacing:115.770000px;}
.ws8d{word-spacing:115.872000px;}
.ws86{word-spacing:116.637000px;}
.ws94{word-spacing:117.348000px;}
.ws83{word-spacing:118.218000px;}
.ws7d{word-spacing:119.850000px;}
.ws87{word-spacing:121.074000px;}
.ws7c{word-spacing:121.533000px;}
.ws93{word-spacing:124.362000px;}
.ws99{word-spacing:124.404000px;}
.ws6f{word-spacing:124.746000px;}
.ws85{word-spacing:126.735000px;}
.ws79{word-spacing:127.092000px;}
.ws88{word-spacing:127.296000px;}
.ws71{word-spacing:129.897000px;}
.ws66{word-spacing:130.101000px;}
.ws78{word-spacing:132.753000px;}
.wsc7{word-spacing:138.465000px;}
.ws70{word-spacing:141.219000px;}
.ws67{word-spacing:141.423000px;}
.ws6b{word-spacing:150.399000px;}
.ws92{word-spacing:154.686000px;}
.ws7f{word-spacing:163.557000px;}
.ws65{word-spacing:169.575000px;}
.ws80{word-spacing:172.074000px;}
.ws68{word-spacing:207.774000px;}
.ws82{word-spacing:209.304000px;}
.ws81{word-spacing:211.701000px;}
.ws76{word-spacing:215.373000px;}
.ws6a{word-spacing:223.431000px;}
._9{margin-left:-72.675000px;}
._35{margin-left:-21.422407px;}
._2f{margin-left:-17.580000px;}
._6{margin-left:-16.575000px;}
._37{margin-left:-15.326407px;}
._2e{margin-left:-14.220000px;}
._53{margin-left:-13.158000px;}
._13{margin-left:-11.519993px;}
._10{margin-left:-10.113624px;}
._b{margin-left:-8.940000px;}
._2d{margin-left:-7.824000px;}
._f{margin-left:-6.348017px;}
._1{margin-left:-4.622700px;}
._5{margin-left:-2.721600px;}
._0{margin-left:-1.632000px;}
._2{width:1.785600px;}
._c{width:3.180000px;}
._12{width:4.259993px;}
._36{width:5.715607px;}
._31{width:6.750000px;}
._4e{width:8.721000px;}
._47{width:10.206608px;}
._48{width:11.297392px;}
._51{width:12.444000px;}
._4f{width:13.617000px;}
._4{width:15.912000px;}
._7{width:18.360000px;}
._30{width:23.121600px;}
._52{width:24.302407px;}
._50{width:26.520000px;}
._39{width:27.672000px;}
._34{width:29.940000px;}
._2c{width:31.620000px;}
._38{width:32.880000px;}
._2b{width:34.200000px;}
._32{width:35.220000px;}
._33{width:36.420000px;}
._3{width:40.082391px;}
._45{width:43.400991px;}
._8{width:54.621000px;}
._21{width:57.833400px;}
._3d{width:68.951991px;}
._23{width:70.838400px;}
._49{width:85.781992px;}
._41{width:119.900991px;}
._3f{width:123.420000px;}
._1b{width:124.662600px;}
._3b{width:132.701991px;}
._3c{width:142.053600px;}
._44{width:146.268000px;}
._17{width:171.717000px;}
._42{width:184.518000px;}
._22{width:188.583866px;}
._20{width:191.402366px;}
._4d{width:195.330000px;}
._46{width:197.268000px;}
._e{width:200.591989px;}
._d{width:202.903200px;}
._3e{width:210.018000px;}
._11{width:212.109000px;}
._4a{width:214.167600px;}
._3a{width:219.096000px;}
._40{width:222.768000px;}
._2a{width:245.568609px;}
._27{width:247.688700px;}
._4b{width:271.830000px;}
._43{width:286.161000px;}
._1f{width:298.688700px;}
._15{width:306.666609px;}
._1d{width:311.438700px;}
._18{width:336.938700px;}
._1a{width:362.438700px;}
._29{width:398.156966px;}
._28{width:406.622966px;}
._1c{width:411.161966px;}
._24{width:439.415966px;}
._4c{width:443.292000px;}
._19{width:522.800966px;}
._26{width:656.012966px;}
._16{width:767.925566px;}
._25{width:814.877966px;}
._1e{width:824.618966px;}
._14{width:994.601966px;}
._a{width:2669.850073px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y24{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y5a{bottom:112.938300px;}
.y23b{bottom:113.029804px;}
.y90{bottom:113.415344px;}
.y98{bottom:114.432289px;}
.y1e4{bottom:114.564308px;}
.y101{bottom:114.735260px;}
.yca{bottom:114.735306px;}
.y28a{bottom:114.739769px;}
.y245{bottom:114.874786px;}
.y257{bottom:114.874809px;}
.y203{bottom:114.874947px;}
.y2bb{bottom:114.879308px;}
.y144{bottom:115.389771px;}
.y4e{bottom:122.461349px;}
.y1b1{bottom:131.422806px;}
.y8f{bottom:132.165344px;}
.y1c6{bottom:132.433823px;}
.y59{bottom:133.032303px;}
.y97{bottom:133.182289px;}
.y1e1{bottom:133.314308px;}
.y100{bottom:133.485260px;}
.yc9{bottom:133.485306px;}
.y289{bottom:133.489769px;}
.y244{bottom:133.624786px;}
.y256{bottom:133.624809px;}
.y202{bottom:133.624947px;}
.y2ba{bottom:133.629308px;}
.y143{bottom:134.139771px;}
.y23{bottom:139.264499px;}
.y4d{bottom:141.211349px;}
.y1b0{bottom:150.172806px;}
.y58{bottom:150.485553px;}
.y8e{bottom:150.915344px;}
.y1c5{bottom:151.183823px;}
.y96{bottom:151.932289px;}
.y1e0{bottom:152.064308px;}
.yff{bottom:152.235260px;}
.yc8{bottom:152.235306px;}
.y243{bottom:152.374786px;}
.y255{bottom:152.374809px;}
.y201{bottom:152.374947px;}
.y2b9{bottom:152.379308px;}
.y142{bottom:152.889771px;}
.y4c{bottom:159.961349px;}
.y1af{bottom:168.922806px;}
.y8d{bottom:169.665344px;}
.y1c4{bottom:169.933823px;}
.y57{bottom:170.579556px;}
.y95{bottom:170.682289px;}
.y1df{bottom:170.814308px;}
.yfe{bottom:170.985260px;}
.yc7{bottom:170.985306px;}
.y288{bottom:170.989769px;}
.y242{bottom:171.124786px;}
.y254{bottom:171.124809px;}
.y200{bottom:171.124947px;}
.y2b8{bottom:171.129308px;}
.y141{bottom:171.639771px;}
.y4b{bottom:178.711349px;}
.y175{bottom:183.874786px;}
.y220{bottom:186.180302px;}
.y1ae{bottom:187.672806px;}
.y56{bottom:188.032794px;}
.y8c{bottom:188.415344px;}
.y1c3{bottom:188.683823px;}
.y94{bottom:189.432289px;}
.y1de{bottom:189.564308px;}
.yfd{bottom:189.735260px;}
.yc6{bottom:189.735306px;}
.y287{bottom:189.739769px;}
.y241{bottom:189.874786px;}
.y253{bottom:189.874809px;}
.y1ff{bottom:189.874947px;}
.y2b7{bottom:189.879308px;}
.y140{bottom:190.389771px;}
.y133{bottom:193.978524px;}
.y1a{bottom:196.933500px;}
.y4a{bottom:197.461349px;}
.y174{bottom:202.624786px;}
.y1ad{bottom:206.422806px;}
.y32c{bottom:206.602821px;}
.y8b{bottom:207.165344px;}
.y1c2{bottom:207.433823px;}
.y55{bottom:208.126808px;}
.y93{bottom:208.182289px;}
.y1e3{bottom:208.314308px;}
.yfc{bottom:208.485260px;}
.yc5{bottom:208.485306px;}
.y286{bottom:208.489769px;}
.y2f0{bottom:208.515306px;}
.y240{bottom:208.624786px;}
.y252{bottom:208.624809px;}
.y1fe{bottom:208.624947px;}
.y2b6{bottom:208.629308px;}
.y13f{bottom:209.139771px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y132{bottom:212.772024px;}
.y49{bottom:216.211349px;}
.y173{bottom:221.374786px;}
.y179{bottom:221.374947px;}
.y32b{bottom:221.596821px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y2ef{bottom:223.509306px;}
.y1ac{bottom:225.172806px;}
.y8a{bottom:225.915344px;}
.y1c1{bottom:226.183823px;}
.y92{bottom:226.932289px;}
.y1dd{bottom:227.064308px;}
.yfb{bottom:227.235260px;}
.yc4{bottom:227.235306px;}
.y285{bottom:227.239769px;}
.y23f{bottom:227.374786px;}
.y251{bottom:227.374809px;}
.y1fd{bottom:227.374947px;}
.y2b5{bottom:227.379308px;}
.y13e{bottom:227.889771px;}
.y54{bottom:230.674049px;}
.y131{bottom:231.489024px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y48{bottom:234.961349px;}
.y32a{bottom:236.590821px;}
.y2ee{bottom:238.503306px;}
.y172{bottom:240.124786px;}
.y178{bottom:240.124947px;}
.y1ab{bottom:243.922806px;}
.y89{bottom:244.665344px;}
.y1c0{bottom:244.933823px;}
.y1e2{bottom:245.814308px;}
.yfa{bottom:245.985260px;}
.yc3{bottom:245.985306px;}
.y284{bottom:245.989769px;}
.y23e{bottom:246.124786px;}
.y250{bottom:246.124809px;}
.y2b4{bottom:246.129308px;}
.y130{bottom:246.483024px;}
.y13d{bottom:246.639771px;}
.y53{bottom:248.133300px;}
.y329{bottom:251.584821px;}
.y21e{bottom:252.060448px;}
.y2ed{bottom:253.497306px;}
.y47{bottom:253.711349px;}
.y171{bottom:258.874786px;}
.y177{bottom:258.874947px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y12f{bottom:261.477024px;}
.y1aa{bottom:262.672806px;}
.y52{bottom:263.127300px;}
.y88{bottom:263.415344px;}
.y1bf{bottom:263.683823px;}
.y91{bottom:264.432289px;}
.y1dc{bottom:264.564308px;}
.yf9{bottom:264.735260px;}
.yc2{bottom:264.735306px;}
.y283{bottom:264.739769px;}
.y23d{bottom:264.874786px;}
.y24f{bottom:264.874809px;}
.y1fc{bottom:264.874947px;}
.y2b3{bottom:264.879308px;}
.y13c{bottom:265.389771px;}
.y328{bottom:266.578821px;}
.y2ec{bottom:268.491306px;}
.y46{bottom:272.461349px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y12e{bottom:276.471024px;}
.y170{bottom:277.624786px;}
.y1a9{bottom:281.422806px;}
.y327{bottom:281.572821px;}
.y87{bottom:282.165344px;}
.y1be{bottom:282.433823px;}
.y51{bottom:283.221291px;}
.y1db{bottom:283.314308px;}
.yf8{bottom:283.485260px;}
.yc1{bottom:283.485306px;}
.y282{bottom:283.489769px;}
.y23c{bottom:283.624786px;}
.y24e{bottom:283.624809px;}
.y21b{bottom:283.624947px;}
.y2b2{bottom:283.629308px;}
.y13b{bottom:284.139771px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y45{bottom:291.211349px;}
.y12d{bottom:291.465024px;}
.y16f{bottom:296.374786px;}
.y176{bottom:296.374947px;}
.y326{bottom:296.566821px;}
.y1a8{bottom:300.172806px;}
.y86{bottom:300.915344px;}
.y1bd{bottom:301.183823px;}
.y1da{bottom:302.064308px;}
.yf7{bottom:302.235260px;}
.yc0{bottom:302.235306px;}
.y281{bottom:302.239769px;}
.y1fb{bottom:302.374786px;}
.y24d{bottom:302.374809px;}
.y21a{bottom:302.374947px;}
.y2b1{bottom:302.379308px;}
.y13a{bottom:302.889771px;}
.y12c{bottom:306.459024px;}
.y50{bottom:308.221805px;}
.y44{bottom:309.961349px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y325{bottom:311.560821px;}
.y2c6{bottom:312.557977px;}
.y16e{bottom:315.124786px;}
.y2eb{bottom:317.235306px;}
.y1a7{bottom:318.922806px;}
.y85{bottom:319.665344px;}
.y1bc{bottom:319.933823px;}
.yf6{bottom:320.985260px;}
.ybf{bottom:320.985306px;}
.y280{bottom:320.989769px;}
.y1fa{bottom:321.124786px;}
.y24c{bottom:321.124809px;}
.y219{bottom:321.124947px;}
.y2b0{bottom:321.129308px;}
.y139{bottom:321.639771px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y4f{bottom:323.215805px;}
.y12b{bottom:325.176024px;}
.y324{bottom:326.554821px;}
.y43{bottom:328.711349px;}
.y2c5{bottom:331.351477px;}
.y16d{bottom:333.874786px;}
.y1a6{bottom:337.672806px;}
.y84{bottom:338.415344px;}
.y1bb{bottom:338.683823px;}
.yf5{bottom:339.735260px;}
.ybe{bottom:339.735306px;}
.y27f{bottom:339.739769px;}
.y1f9{bottom:339.874786px;}
.y24b{bottom:339.874809px;}
.y218{bottom:339.874947px;}
.y2af{bottom:339.879308px;}
.y12a{bottom:340.170024px;}
.y138{bottom:340.389771px;}
.y323{bottom:341.548821px;}
.y1e6{bottom:343.620300px;}
.y42{bottom:347.461349px;}
.y11{bottom:348.133500px;}
.y2c4{bottom:350.068477px;}
.y16c{bottom:352.624786px;}
.y2ea{bottom:354.812556px;}
.y129{bottom:355.164024px;}
.y1a5{bottom:356.422806px;}
.y322{bottom:356.542821px;}
.y83{bottom:357.165344px;}
.y1ba{bottom:357.433823px;}
.yf4{bottom:358.485260px;}
.ybd{bottom:358.485306px;}
.y27e{bottom:358.489769px;}
.y1f8{bottom:358.624786px;}
.y24a{bottom:358.624809px;}
.y217{bottom:358.624947px;}
.y2ae{bottom:358.629308px;}
.y137{bottom:359.139771px;}
.y41{bottom:366.211349px;}
.y2c3{bottom:368.785477px;}
.y2e9{bottom:369.806556px;}
.y16b{bottom:371.374786px;}
.y321{bottom:371.536821px;}
.y128{bottom:373.881024px;}
.y1a4{bottom:375.172806px;}
.y82{bottom:375.915344px;}
.y1b9{bottom:376.183823px;}
.yf3{bottom:377.235260px;}
.ybc{bottom:377.235306px;}
.y27d{bottom:377.239769px;}
.y1f7{bottom:377.374786px;}
.y249{bottom:377.374809px;}
.y216{bottom:377.374947px;}
.y2ad{bottom:377.379308px;}
.y136{bottom:377.889771px;}
.y2e8{bottom:384.800556px;}
.y320{bottom:386.530821px;}
.y10{bottom:386.785499px;}
.y2c2{bottom:387.502477px;}
.y127{bottom:388.875024px;}
.y16a{bottom:390.124786px;}
.y1a3{bottom:393.922806px;}
.y81{bottom:394.665344px;}
.y1b8{bottom:394.933823px;}
.yf2{bottom:395.985260px;}
.ybb{bottom:395.985306px;}
.y1f6{bottom:396.124786px;}
.y215{bottom:396.124947px;}
.y2ac{bottom:396.129308px;}
.y135{bottom:396.639771px;}
.y2e7{bottom:399.794556px;}
.y31f{bottom:401.524821px;}
.y40{bottom:403.711349px;}
.y2c1{bottom:406.219477px;}
.y126{bottom:407.592024px;}
.yf{bottom:408.044999px;}
.y169{bottom:408.874786px;}
.y1a2{bottom:412.672806px;}
.y80{bottom:413.415344px;}
.y1b7{bottom:413.683823px;}
.yf1{bottom:414.735260px;}
.yba{bottom:414.735306px;}
.y27c{bottom:414.739769px;}
.y2e6{bottom:414.788556px;}
.y1f5{bottom:414.874786px;}
.y214{bottom:414.874947px;}
.y2ab{bottom:414.879308px;}
.y248{bottom:414.880786px;}
.y134{bottom:415.389771px;}
.y31e{bottom:416.518821px;}
.y125{bottom:426.309024px;}
.y168{bottom:427.624786px;}
.y2e5{bottom:429.782556px;}
.y1a1{bottom:431.422806px;}
.y31d{bottom:431.512821px;}
.y7f{bottom:432.165344px;}
.y1b6{bottom:432.433823px;}
.yf0{bottom:433.485260px;}
.yb9{bottom:433.485306px;}
.y27b{bottom:433.489769px;}
.y1f4{bottom:433.624786px;}
.y213{bottom:433.624947px;}
.y2aa{bottom:433.629308px;}
.y2c0{bottom:434.307727px;}
.y124{bottom:441.303024px;}
.y2e4{bottom:444.776556px;}
.y167{bottom:446.374786px;}
.y31c{bottom:446.506821px;}
.y2bf{bottom:449.301727px;}
.y1a0{bottom:450.172806px;}
.y7e{bottom:450.915344px;}
.y1b5{bottom:451.183823px;}
.yef{bottom:452.235260px;}
.yb8{bottom:452.235306px;}
.y27a{bottom:452.239769px;}
.y1f3{bottom:452.374786px;}
.y212{bottom:452.374947px;}
.y123{bottom:456.297024px;}
.y2e3{bottom:459.770556px;}
.y3f{bottom:459.961395px;}
.y31b{bottom:461.500821px;}
.y166{bottom:465.124786px;}
.y7d{bottom:469.665344px;}
.y1b4{bottom:469.933823px;}
.yee{bottom:470.985260px;}
.yb7{bottom:470.985306px;}
.y279{bottom:470.989769px;}
.y1f2{bottom:471.124786px;}
.y211{bottom:471.124947px;}
.y2a9{bottom:471.129308px;}
.y2e2{bottom:474.764556px;}
.y2be{bottom:474.798430px;}
.y122{bottom:475.014024px;}
.y31a{bottom:476.494821px;}
.y162{bottom:478.354524px;}
.y165{bottom:483.874786px;}
.ye{bottom:484.864502px;}
.y19f{bottom:487.672806px;}
.y7c{bottom:488.415344px;}
.y1b3{bottom:488.683823px;}
.yed{bottom:489.735260px;}
.yb6{bottom:489.735306px;}
.y278{bottom:489.739769px;}
.y2e1{bottom:489.758556px;}
.y2bd{bottom:489.792430px;}
.y1f1{bottom:489.874786px;}
.y210{bottom:489.874947px;}
.y2a8{bottom:489.879308px;}
.y319{bottom:491.488821px;}
.y121{bottom:493.731024px;}
.y161{bottom:497.148024px;}
.y3e{bottom:497.461395px;}
.y164{bottom:502.624786px;}
.yd{bottom:502.864502px;}
.y2e0{bottom:504.752556px;}
.y318{bottom:506.482821px;}
.y7b{bottom:507.165344px;}
.yec{bottom:508.485260px;}
.yb5{bottom:508.485306px;}
.y277{bottom:508.489769px;}
.y1f0{bottom:508.624786px;}
.y20f{bottom:508.624947px;}
.y120{bottom:512.448024px;}
.y160{bottom:515.865024px;}
.y2df{bottom:519.746556px;}
.yc{bottom:520.864502px;}
.y163{bottom:521.374786px;}
.y317{bottom:521.476821px;}
.y19e{bottom:525.172806px;}
.y7a{bottom:525.915344px;}
.y1b2{bottom:526.183823px;}
.yeb{bottom:527.235260px;}
.yb4{bottom:527.235306px;}
.y276{bottom:527.239769px;}
.y1ef{bottom:527.374786px;}
.y20e{bottom:527.374947px;}
.y11f{bottom:531.165024px;}
.y15f{bottom:534.582024px;}
.y3d{bottom:534.961395px;}
.y316{bottom:536.470821px;}
.yb{bottom:538.864499px;}
.y2bc{bottom:544.030930px;}
.y79{bottom:544.665344px;}
.yea{bottom:545.985260px;}
.yb3{bottom:545.985306px;}
.y275{bottom:545.989769px;}
.y1ee{bottom:546.124786px;}
.y20d{bottom:546.124947px;}
.y15e{bottom:549.576024px;}
.y2de{bottom:549.747306px;}
.y11e{bottom:549.882024px;}
.y315{bottom:551.464821px;}
.y3c{bottom:553.711395px;}
.ya{bottom:556.864499px;}
.y23a{bottom:562.533325px;}
.y78{bottom:563.415344px;}
.y15d{bottom:564.570024px;}
.ye9{bottom:564.735260px;}
.yb2{bottom:564.735306px;}
.y274{bottom:564.739769px;}
.y2dd{bottom:564.741306px;}
.y1ed{bottom:564.874786px;}
.y20c{bottom:564.874947px;}
.y314{bottom:566.458821px;}
.y11d{bottom:568.599024px;}
.y2a7{bottom:572.137524px;}
.y3b{bottom:572.461395px;}
.y1d9{bottom:579.500274px;}
.y2dc{bottom:579.735306px;}
.y239{bottom:581.283325px;}
.y313{bottom:581.452821px;}
.y77{bottom:582.165344px;}
.y15c{bottom:583.287024px;}
.ye8{bottom:583.485260px;}
.yb1{bottom:583.485306px;}
.y273{bottom:583.489769px;}
.y1ec{bottom:583.624786px;}
.y20b{bottom:583.624947px;}
.y19d{bottom:585.053274px;}
.y11c{bottom:587.316024px;}
.y2a6{bottom:590.931024px;}
.y3a{bottom:591.211395px;}
.y1d8{bottom:594.494274px;}
.y312{bottom:596.446821px;}
.y19c{bottom:597.800274px;}
.y15b{bottom:598.281024px;}
.y238{bottom:600.033325px;}
.y76{bottom:600.915344px;}
.y246{bottom:601.990814px;}
.ye7{bottom:602.235260px;}
.yb0{bottom:602.235306px;}
.y272{bottom:602.239769px;}
.y1eb{bottom:602.374786px;}
.y20a{bottom:602.374947px;}
.y11b{bottom:606.033024px;}
.y2a5{bottom:609.648024px;}
.y2db{bottom:609.735306px;}
.y39{bottom:609.961395px;}
.y19b{bottom:610.547274px;}
.y311{bottom:611.440821px;}
.y15a{bottom:613.275024px;}
.y237{bottom:618.783325px;}
.y75{bottom:619.665344px;}
.ye6{bottom:620.985260px;}
.yaf{bottom:620.985306px;}
.y271{bottom:620.989769px;}
.y209{bottom:621.124947px;}
.y19a{bottom:623.294274px;}
.y11a{bottom:624.750024px;}
.y310{bottom:626.434821px;}
.y159{bottom:628.269024px;}
.y2a4{bottom:628.365024px;}
.y38{bottom:628.711395px;}
.y199{bottom:636.041274px;}
.y236{bottom:637.533325px;}
.y74{bottom:638.415344px;}
.ye5{bottom:639.735260px;}
.yae{bottom:639.735306px;}
.y270{bottom:639.739769px;}
.y1ea{bottom:639.874786px;}
.y208{bottom:639.874947px;}
.y30f{bottom:641.428821px;}
.y158{bottom:643.263024px;}
.y1d7{bottom:643.275774px;}
.y119{bottom:643.467024px;}
.y2da{bottom:643.573760px;}
.y9{bottom:645.510000px;}
.y2c8{bottom:645.676807px;}
.y2a3{bottom:647.082024px;}
.y21d{bottom:647.170807px;}
.y37{bottom:647.461395px;}
.y198{bottom:648.788274px;}
.y247{bottom:652.750809px;}
.y21f{bottom:654.730820px;}
.y235{bottom:656.283325px;}
.y30e{bottom:656.422821px;}
.y73{bottom:657.165344px;}
.y157{bottom:658.257024px;}
.ye4{bottom:658.485260px;}
.yad{bottom:658.485306px;}
.y26f{bottom:658.489769px;}
.y2d9{bottom:658.567760px;}
.y1e9{bottom:658.624786px;}
.y207{bottom:658.624947px;}
.y2c7{bottom:660.670807px;}
.y197{bottom:661.535274px;}
.y1d6{bottom:661.980024px;}
.y118{bottom:662.184024px;}
.y2a2{bottom:665.799024px;}
.y36{bottom:666.211395px;}
.y8{bottom:666.771000px;}
.y30d{bottom:671.416821px;}
.y2d8{bottom:673.561760px;}
.y196{bottom:674.282274px;}
.y234{bottom:675.033325px;}
.y72{bottom:675.915344px;}
.y156{bottom:676.974024px;}
.ye3{bottom:677.235260px;}
.y26e{bottom:677.239769px;}
.y1e8{bottom:677.374786px;}
.y206{bottom:677.374947px;}
.y117{bottom:680.901024px;}
.y2a1{bottom:684.516024px;}
.y35{bottom:684.961395px;}
.y30c{bottom:686.410821px;}
.y195{bottom:691.386774px;}
.y233{bottom:693.783325px;}
.y71{bottom:694.665344px;}
.y155{bottom:695.691024px;}
.ye2{bottom:695.985260px;}
.yac{bottom:695.985306px;}
.y26d{bottom:695.989769px;}
.y205{bottom:696.124947px;}
.y116{bottom:699.618024px;}
.y347{bottom:701.380823px;}
.y30b{bottom:701.404821px;}
.y2a0{bottom:703.233024px;}
.y2d7{bottom:703.562510px;}
.y34{bottom:703.711395px;}
.y194{bottom:708.407274px;}
.y232{bottom:712.533325px;}
.y70{bottom:713.415344px;}
.y154{bottom:714.408024px;}
.ye1{bottom:714.735260px;}
.y26c{bottom:714.739769px;}
.y1e7{bottom:714.874786px;}
.y204{bottom:714.874947px;}
.y346{bottom:716.374823px;}
.y30a{bottom:716.398821px;}
.y115{bottom:718.335024px;}
.y2d6{bottom:718.556510px;}
.y29f{bottom:721.950024px;}
.y33{bottom:722.461395px;}
.y193{bottom:725.427774px;}
.y7{bottom:726.298500px;}
.y153{bottom:729.402024px;}
.y231{bottom:731.283325px;}
.y345{bottom:731.368823px;}
.y309{bottom:731.392821px;}
.y6f{bottom:732.165344px;}
.y1d5{bottom:733.125024px;}
.yab{bottom:733.485260px;}
.yde{bottom:733.485306px;}
.y26b{bottom:733.489769px;}
.y2d5{bottom:733.550510px;}
.y1e5{bottom:734.830811px;}
.y114{bottom:737.052024px;}
.y29e{bottom:740.667024px;}
.y32{bottom:741.211395px;}
.y192{bottom:742.448274px;}
.y152{bottom:744.396024px;}
.y344{bottom:746.362823px;}
.y308{bottom:746.386821px;}
.y230{bottom:750.033325px;}
.y6e{bottom:750.915344px;}
.y1d3{bottom:751.842024px;}
.yaa{bottom:752.235260px;}
.ydd{bottom:752.235306px;}
.y26a{bottom:752.239769px;}
.y3{bottom:752.599495px;}
.y191{bottom:755.195274px;}
.y29d{bottom:755.661024px;}
.y113{bottom:755.769024px;}
.y21c{bottom:756.610931px;}
.y31{bottom:759.961395px;}
.y343{bottom:761.356823px;}
.y307{bottom:761.380821px;}
.y151{bottom:763.113024px;}
.y2d4{bottom:763.551260px;}
.y1d2{bottom:766.836024px;}
.y190{bottom:767.942274px;}
.y22f{bottom:768.783325px;}
.y6d{bottom:769.665344px;}
.ya9{bottom:770.985260px;}
.ydc{bottom:770.985306px;}
.y269{bottom:770.989769px;}
.y29c{bottom:774.378024px;}
.y112{bottom:774.486024px;}
.y342{bottom:776.350823px;}
.y306{bottom:776.374821px;}
.y35c{bottom:776.401816px;}
.y2d3{bottom:778.545260px;}
.y30{bottom:778.711395px;}
.y18f{bottom:780.689274px;}
.y150{bottom:781.830024px;}
.y1d4{bottom:781.842774px;}
.y6c{bottom:788.415344px;}
.ya8{bottom:789.735260px;}
.ydb{bottom:789.735306px;}
.y268{bottom:789.739769px;}
.y341{bottom:791.344823px;}
.y305{bottom:791.368821px;}
.y35b{bottom:791.395816px;}
.y29b{bottom:793.095024px;}
.y111{bottom:793.203024px;}
.y18e{bottom:793.436274px;}
.y2d2{bottom:793.539260px;}
.y14f{bottom:796.824024px;}
.y2f{bottom:797.461395px;}
.y1d0{bottom:800.547024px;}
.y18d{bottom:806.183274px;}
.y22e{bottom:806.283325px;}
.y340{bottom:806.338823px;}
.y304{bottom:806.362821px;}
.y6b{bottom:807.165344px;}
.ya7{bottom:808.485260px;}
.yda{bottom:808.485306px;}
.y267{bottom:808.489769px;}
.y2d1{bottom:808.533260px;}
.y29a{bottom:811.812024px;}
.y110{bottom:811.920024px;}
.y14e{bottom:815.541024px;}
.y2e{bottom:816.211395px;}
.y18c{bottom:818.930274px;}
.y33f{bottom:821.332823px;}
.y303{bottom:821.356821px;}
.y35a{bottom:821.485815px;}
.y2d0{bottom:823.527260px;}
.y6a{bottom:825.915344px;}
.ya6{bottom:827.235260px;}
.yd9{bottom:827.235306px;}
.y266{bottom:827.239769px;}
.y299{bottom:830.529024px;}
.y1cf{bottom:830.535024px;}
.y1d1{bottom:830.547774px;}
.y10f{bottom:830.637024px;}
.y18b{bottom:831.677274px;}
.y14d{bottom:834.258024px;}
.y33e{bottom:836.326823px;}
.y302{bottom:836.350821px;}
.y359{bottom:836.479815px;}
.y2cf{bottom:838.521260px;}
.y22d{bottom:843.783325px;}
.y18a{bottom:844.424274px;}
.y69{bottom:844.665344px;}
.y298{bottom:845.523024px;}
.ya5{bottom:845.985260px;}
.yd8{bottom:845.985306px;}
.y265{bottom:845.989769px;}
.y14c{bottom:849.252024px;}
.y10e{bottom:849.354024px;}
.y33d{bottom:851.320823px;}
.y301{bottom:851.344821px;}
.y358{bottom:851.473815px;}
.y2ce{bottom:853.515260px;}
.y189{bottom:857.171274px;}
.y2d{bottom:860.394153px;}
.y22c{bottom:862.533325px;}
.y68{bottom:863.415344px;}
.y297{bottom:864.240024px;}
.y14b{bottom:864.246024px;}
.ya4{bottom:864.735260px;}
.yd7{bottom:864.735306px;}
.y264{bottom:864.739769px;}
.y33c{bottom:866.314823px;}
.y300{bottom:866.338821px;}
.y357{bottom:866.467815px;}
.y10d{bottom:868.071024px;}
.y2cd{bottom:868.509260px;}
.y188{bottom:869.918274px;}
.y2c{bottom:875.388153px;}
.y14a{bottom:879.240024px;}
.y1ce{bottom:879.252774px;}
.y2{bottom:879.369000px;}
.y22b{bottom:881.283325px;}
.y33b{bottom:881.308823px;}
.y2ff{bottom:881.332821px;}
.y356{bottom:881.461815px;}
.y67{bottom:882.165344px;}
.y187{bottom:882.665274px;}
.y296{bottom:882.957024px;}
.ye0{bottom:883.485260px;}
.yd6{bottom:883.485306px;}
.y263{bottom:883.489769px;}
.y2cc{bottom:883.503260px;}
.y10c{bottom:886.788024px;}
.y149{bottom:894.234024px;}
.y186{bottom:895.412274px;}
.y33a{bottom:896.302823px;}
.y2fe{bottom:896.326821px;}
.y355{bottom:896.455815px;}
.y1cd{bottom:897.957024px;}
.y2cb{bottom:898.497260px;}
.y22a{bottom:900.033325px;}
.y66{bottom:900.915344px;}
.y295{bottom:901.674024px;}
.ya3{bottom:902.235260px;}
.yd5{bottom:902.235306px;}
.y262{bottom:902.239769px;}
.y10b{bottom:905.505024px;}
.y185{bottom:908.159274px;}
.y148{bottom:909.228024px;}
.y339{bottom:911.296823px;}
.y2fd{bottom:911.320821px;}
.y354{bottom:911.449815px;}
.y1cc{bottom:912.951024px;}
.y2ca{bottom:913.491260px;}
.y2b{bottom:917.988190px;}
.y229{bottom:918.783325px;}
.y65{bottom:919.665344px;}
.y294{bottom:920.391024px;}
.y184{bottom:920.906274px;}
.ya2{bottom:920.985260px;}
.yd4{bottom:920.985306px;}
.y261{bottom:920.989769px;}
.y10a{bottom:924.222024px;}
.y338{bottom:926.290823px;}
.y2fc{bottom:926.314821px;}
.y353{bottom:926.443815px;}
.y147{bottom:927.945024px;}
.y2c9{bottom:928.485260px;}
.y1cb{bottom:931.668024px;}
.y183{bottom:933.653274px;}
.y293{bottom:935.385024px;}
.y2a{bottom:936.738190px;}
.y228{bottom:937.533325px;}
.y64{bottom:938.415344px;}
.ya1{bottom:939.735260px;}
.yd3{bottom:939.735306px;}
.y260{bottom:939.739769px;}
.y337{bottom:941.284823px;}
.y2fb{bottom:941.308821px;}
.y352{bottom:941.437815px;}
.y109{bottom:942.939024px;}
.y182{bottom:946.400274px;}
.y146{bottom:946.662024px;}
.y1ca{bottom:950.385024px;}
.y292{bottom:954.102024px;}
.y336{bottom:956.278823px;}
.y227{bottom:956.283325px;}
.y2fa{bottom:956.302821px;}
.y351{bottom:956.431815px;}
.y63{bottom:957.165344px;}
.ya0{bottom:958.485260px;}
.yd2{bottom:958.485306px;}
.y25f{bottom:958.489769px;}
.y181{bottom:959.147274px;}
.y108{bottom:961.656024px;}
.y145{bottom:965.379024px;}
.y1{bottom:966.726000px;}
.y1c8{bottom:969.102024px;}
.y335{bottom:971.272823px;}
.y2f9{bottom:971.296821px;}
.y350{bottom:971.425815px;}
.y180{bottom:971.894274px;}
.y291{bottom:972.819024px;}
.y226{bottom:975.033325px;}
.y62{bottom:975.915344px;}
.y9f{bottom:977.235260px;}
.yd1{bottom:977.235306px;}
.y25e{bottom:977.239769px;}
.y107{bottom:980.373024px;}
.y29{bottom:981.424622px;}
.y1c7{bottom:984.096024px;}
.y17f{bottom:984.641274px;}
.y334{bottom:986.266823px;}
.y2f8{bottom:986.290821px;}
.y34f{bottom:986.419815px;}
.y290{bottom:991.536024px;}
.y225{bottom:993.783325px;}
.y61{bottom:994.665344px;}
.y9e{bottom:995.985260px;}
.yd0{bottom:995.985306px;}
.y25d{bottom:995.989769px;}
.y17e{bottom:997.388274px;}
.y106{bottom:999.090024px;}
.y1c9{bottom:999.102774px;}
.y333{bottom:1001.260823px;}
.y2f7{bottom:1001.284821px;}
.y34e{bottom:1001.413815px;}
.y28{bottom:1008.424622px;}
.y17d{bottom:1010.135274px;}
.y224{bottom:1012.533325px;}
.y60{bottom:1013.415344px;}
.y9d{bottom:1014.735260px;}
.ycf{bottom:1014.735306px;}
.y25c{bottom:1014.739769px;}
.y332{bottom:1016.254823px;}
.y2f6{bottom:1016.278821px;}
.y34d{bottom:1016.407815px;}
.y105{bottom:1017.807024px;}
.y28e{bottom:1019.624274px;}
.y17c{bottom:1022.882274px;}
.y331{bottom:1031.248823px;}
.y2f5{bottom:1031.272821px;}
.y223{bottom:1031.283325px;}
.y34c{bottom:1031.401815px;}
.y5f{bottom:1032.165344px;}
.ydf{bottom:1033.485260px;}
.yce{bottom:1033.485306px;}
.y25b{bottom:1033.489769px;}
.y28d{bottom:1034.618274px;}
.y104{bottom:1036.524024px;}
.y17b{bottom:1039.902774px;}
.y330{bottom:1046.242823px;}
.y2f4{bottom:1046.266821px;}
.y34b{bottom:1046.395815px;}
.y28c{bottom:1049.612274px;}
.y28f{bottom:1049.625024px;}
.y222{bottom:1050.033325px;}
.y5e{bottom:1050.915344px;}
.y9c{bottom:1052.235260px;}
.ycd{bottom:1052.235306px;}
.y25a{bottom:1052.239769px;}
.y32f{bottom:1061.236823px;}
.y2f3{bottom:1061.260821px;}
.y34a{bottom:1061.389815px;}
.y103{bottom:1064.612274px;}
.y17a{bottom:1066.299774px;}
.y5d{bottom:1069.665344px;}
.y9b{bottom:1070.985260px;}
.ycc{bottom:1070.985306px;}
.y259{bottom:1070.989769px;}
.y28b{bottom:1075.108844px;}
.y27{bottom:1076.132080px;}
.y32e{bottom:1076.230823px;}
.y2f2{bottom:1076.254821px;}
.y349{bottom:1076.383815px;}
.y221{bottom:1087.533325px;}
.y5c{bottom:1088.415344px;}
.y9a{bottom:1089.735260px;}
.ycb{bottom:1089.735306px;}
.y258{bottom:1089.739769px;}
.y102{bottom:1090.102844px;}
.y32d{bottom:1091.224823px;}
.y2f1{bottom:1091.248821px;}
.y348{bottom:1091.377815px;}
.y26{bottom:1109.586556px;}
.y25{bottom:1126.582306px;}
.y5b{bottom:1127.482361px;}
.y99{bottom:1127.482544px;}
.h14{height:31.130399px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.h19{height:36.624000px;}
.hf{height:43.260000px;}
.h1a{height:44.310000px;}
.h13{height:44.472000px;}
.hb{height:44.676000px;}
.h17{height:45.186000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h12{height:51.912000px;}
.h11{height:52.320000px;}
.h10{height:53.160000px;}
.h18{height:53.805000px;}
.h2{height:55.080000px;}
.hc{height:55.461000px;}
.h15{height:59.004000px;}
.h16{height:61.380000px;}
.he{height:64.866000px;}
.h5{height:78.030000px;}
.hd{height:85.056000px;}
.h4{height:119.055004px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x1a{left:81.038241px;}
.x7{left:85.181849px;}
.xb{left:93.545402px;}
.x14{left:96.305402px;}
.xa{left:97.796100px;}
.xd{left:100.535402px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x10{left:155.999402px;}
.xf{left:165.033152px;}
.xe{left:166.537684px;}
.x4{left:203.484001px;}
.x18{left:207.824249px;}
.x1b{left:277.921650px;}
.x19{left:285.828749px;}
.x1c{left:347.077648px;}
.x11{left:382.905076px;}
.x3{left:454.959000px;}
.x8{left:459.212540px;}
.x9{left:476.222540px;}
.x15{left:478.985391px;}
.x17{left:483.215389px;}
.x1d{left:484.701159px;}
.x16{left:512.120388px;}
.x12{left:587.478826px;}
.x13{left:596.480251px;}
.x5{left:728.220612px;}
.xc{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls39{letter-spacing:-1.813333pt;}
.ls4e{letter-spacing:-1.066667pt;}
.ls53{letter-spacing:-0.960000pt;}
.ls4d{letter-spacing:-0.906667pt;}
.ls6e{letter-spacing:-0.861333pt;}
.ls73{letter-spacing:-0.816000pt;}
.ls78{letter-spacing:-0.770667pt;}
.ls58{letter-spacing:-0.746667pt;}
.ls75{letter-spacing:-0.680000pt;}
.ls6c{letter-spacing:-0.634667pt;}
.ls32{letter-spacing:-0.586667pt;}
.ls74{letter-spacing:-0.544000pt;}
.ls4c{letter-spacing:-0.533333pt;}
.ls6b{letter-spacing:-0.498667pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls72{letter-spacing:-0.453333pt;}
.ls2a{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.408000pt;}
.ls44{letter-spacing:-0.373333pt;}
.ls79{letter-spacing:-0.362667pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls69{letter-spacing:-0.317333pt;}
.ls6d{letter-spacing:-0.272000pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls71{letter-spacing:-0.226667pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls6a{letter-spacing:-0.181333pt;}
.ls28{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.136000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls6f{letter-spacing:-0.090667pt;}
.ls29{letter-spacing:-0.053333pt;}
.ls70{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000074pt;}
.ls77{letter-spacing:0.022667pt;}
.ls6{letter-spacing:0.026667pt;}
.ls5f{letter-spacing:0.045333pt;}
.ls7{letter-spacing:0.053333pt;}
.ls62{letter-spacing:0.090667pt;}
.lsb{letter-spacing:0.106667pt;}
.ls65{letter-spacing:0.113333pt;}
.ls42{letter-spacing:0.133333pt;}
.ls66{letter-spacing:0.136000pt;}
.ls11{letter-spacing:0.158926pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls59{letter-spacing:0.181333pt;}
.ls2f{letter-spacing:0.186667pt;}
.ls16{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.226667pt;}
.ls5e{letter-spacing:0.234667pt;}
.ls2b{letter-spacing:0.240000pt;}
.ls63{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls60{letter-spacing:0.317333pt;}
.ls18{letter-spacing:0.319982pt;}
.ls5{letter-spacing:0.320000pt;}
.ls5d{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.373333pt;}
.ls30{letter-spacing:0.400000pt;}
.ls61{letter-spacing:0.408000pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.453333pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls64{letter-spacing:0.498667pt;}
.ls1c{letter-spacing:0.506667pt;}
.lsa{letter-spacing:0.533333pt;}
.ls5a{letter-spacing:0.544000pt;}
.ls27{letter-spacing:0.560000pt;}
.ls5b{letter-spacing:0.566667pt;}
.lsf{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.666667pt;}
.lse{letter-spacing:0.693333pt;}
.ls21{letter-spacing:0.703984pt;}
.ls23{letter-spacing:0.720000pt;}
.ls19{letter-spacing:0.746667pt;}
.ls67{letter-spacing:0.770667pt;}
.ls20{letter-spacing:0.800000pt;}
.ls54{letter-spacing:0.826667pt;}
.lsc{letter-spacing:0.853333pt;}
.ls5c{letter-spacing:0.861333pt;}
.ls57{letter-spacing:0.880000pt;}
.ls17{letter-spacing:0.906667pt;}
.ls3e{letter-spacing:0.933333pt;}
.ls24{letter-spacing:0.960000pt;}
.ls4b{letter-spacing:0.986667pt;}
.ls1a{letter-spacing:1.013333pt;}
.lsd{letter-spacing:1.045333pt;}
.ls34{letter-spacing:1.066667pt;}
.ls52{letter-spacing:1.093333pt;}
.ls1f{letter-spacing:1.120000pt;}
.ls68{letter-spacing:1.133333pt;}
.ls36{letter-spacing:1.146667pt;}
.ls2c{letter-spacing:1.173333pt;}
.ls76{letter-spacing:1.178667pt;}
.ls25{letter-spacing:1.226667pt;}
.ls3f{letter-spacing:1.280000pt;}
.ls2e{letter-spacing:1.306667pt;}
.ls31{letter-spacing:1.333333pt;}
.ls10{letter-spacing:1.386667pt;}
.ls55{letter-spacing:1.413333pt;}
.ls4a{letter-spacing:1.440000pt;}
.ls4f{letter-spacing:1.493333pt;}
.ls45{letter-spacing:1.546667pt;}
.ls3b{letter-spacing:1.600000pt;}
.ls35{letter-spacing:1.653333pt;}
.ls50{letter-spacing:1.706667pt;}
.ls2d{letter-spacing:1.760000pt;}
.ls47{letter-spacing:1.813333pt;}
.ls40{letter-spacing:1.866667pt;}
.ls41{letter-spacing:1.893333pt;}
.ls3c{letter-spacing:1.920000pt;}
.ls48{letter-spacing:2.026667pt;}
.ls56{letter-spacing:2.133333pt;}
.ls43{letter-spacing:2.186667pt;}
.ls51{letter-spacing:2.240000pt;}
.ls3d{letter-spacing:2.480000pt;}
.ls46{letter-spacing:3.306667pt;}
.ls1{letter-spacing:3.546667pt;}
.ls49{letter-spacing:4.533333pt;}
.wsbd{word-spacing:-14.346667pt;}
.wsb8{word-spacing:-14.026667pt;}
.ws1e{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.333333pt;}
.wsbe{word-spacing:-13.173333pt;}
.wsbc{word-spacing:-12.906667pt;}
.wsb{word-spacing:-11.560000pt;}
.wscd{word-spacing:-11.424000pt;}
.ws69{word-spacing:-11.333333pt;}
.ws45{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.wse0{word-spacing:-10.925333pt;}
.wsf7{word-spacing:-10.880000pt;}
.ws6{word-spacing:-10.453333pt;}
.ws7{word-spacing:-10.266667pt;}
.ws8{word-spacing:-10.240000pt;}
.wscc{word-spacing:-9.565333pt;}
.ws96{word-spacing:-9.333333pt;}
.ws2{word-spacing:-8.885333pt;}
.wsc{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.wsb3{word-spacing:-6.666667pt;}
.ws7e{word-spacing:-5.666667pt;}
.ws9d{word-spacing:-4.666667pt;}
.wse{word-spacing:-2.133333pt;}
.wsc3{word-spacing:-1.760000pt;}
.ws46{word-spacing:-1.546667pt;}
.wsa6{word-spacing:-1.440000pt;}
.ws44{word-spacing:-1.386667pt;}
.ws13{word-spacing:-1.333333pt;}
.ws15{word-spacing:-1.280000pt;}
.ws57{word-spacing:-1.226667pt;}
.ws35{word-spacing:-1.173333pt;}
.wsd8{word-spacing:-1.133333pt;}
.wsb7{word-spacing:-1.120000pt;}
.ws1a{word-spacing:-1.066667pt;}
.wsbb{word-spacing:-1.013333pt;}
.ws23{word-spacing:-0.960000pt;}
.wsdd{word-spacing:-0.952000pt;}
.ws63{word-spacing:-0.906667pt;}
.wsd7{word-spacing:-0.861333pt;}
.ws5c{word-spacing:-0.853333pt;}
.ws37{word-spacing:-0.800000pt;}
.wse9{word-spacing:-0.770667pt;}
.ws3b{word-spacing:-0.746667pt;}
.ws42{word-spacing:-0.693333pt;}
.wsde{word-spacing:-0.680000pt;}
.ws11{word-spacing:-0.640000pt;}
.wsdf{word-spacing:-0.634667pt;}
.ws28{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.544000pt;}
.ws5d{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.506667pt;}
.wsf{word-spacing:-0.426667pt;}
.ws3a{word-spacing:-0.373333pt;}
.ws33{word-spacing:-0.320000pt;}
.wsea{word-spacing:-0.317333pt;}
.ws5{word-spacing:-0.266667pt;}
.wsd9{word-spacing:-0.234667pt;}
.wsd6{word-spacing:-0.226667pt;}
.ws38{word-spacing:-0.213333pt;}
.wsd5{word-spacing:-0.181333pt;}
.ws4f{word-spacing:-0.160000pt;}
.wsf2{word-spacing:-0.136000pt;}
.ws3f{word-spacing:-0.106667pt;}
.wsf0{word-spacing:-0.090667pt;}
.ws9{word-spacing:-0.064000pt;}
.wsb9{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws39{word-spacing:0.053333pt;}
.ws12{word-spacing:0.106667pt;}
.ws47{word-spacing:0.160000pt;}
.wsee{word-spacing:0.181333pt;}
.ws58{word-spacing:0.213333pt;}
.wsd3{word-spacing:0.226667pt;}
.ws20{word-spacing:0.266667pt;}
.wsf1{word-spacing:0.272000pt;}
.ws29{word-spacing:0.320000pt;}
.ws5e{word-spacing:0.373333pt;}
.wsd1{word-spacing:0.408000pt;}
.ws2d{word-spacing:0.426667pt;}
.wse2{word-spacing:0.453333pt;}
.ws9a{word-spacing:0.480000pt;}
.wseb{word-spacing:0.498667pt;}
.ws10{word-spacing:0.533333pt;}
.ws3c{word-spacing:0.586667pt;}
.wse4{word-spacing:0.634667pt;}
.ws91{word-spacing:0.640000pt;}
.ws21{word-spacing:0.693333pt;}
.ws16{word-spacing:0.746667pt;}
.wsf8{word-spacing:0.770667pt;}
.ws2c{word-spacing:0.800000pt;}
.wsce{word-spacing:0.861333pt;}
.ws9b{word-spacing:0.906667pt;}
.ws2a{word-spacing:0.960000pt;}
.wsdc{word-spacing:1.042667pt;}
.wsd2{word-spacing:1.088000pt;}
.ws60{word-spacing:1.120000pt;}
.wscf{word-spacing:1.133333pt;}
.ws48{word-spacing:1.173333pt;}
.ws17{word-spacing:1.226667pt;}
.wsef{word-spacing:1.314667pt;}
.ws14{word-spacing:1.333333pt;}
.wse5{word-spacing:1.360000pt;}
.ws27{word-spacing:1.386667pt;}
.ws19{word-spacing:1.440000pt;}
.wse3{word-spacing:1.450667pt;}
.ws1f{word-spacing:1.493333pt;}
.wsf4{word-spacing:1.496000pt;}
.ws54{word-spacing:1.546667pt;}
.wsf9{word-spacing:1.586667pt;}
.ws32{word-spacing:1.600000pt;}
.ws25{word-spacing:1.653333pt;}
.wsa3{word-spacing:1.706667pt;}
.wse7{word-spacing:1.722667pt;}
.ws4a{word-spacing:1.760000pt;}
.ws31{word-spacing:1.813333pt;}
.ws30{word-spacing:1.866667pt;}
.ws59{word-spacing:1.920000pt;}
.ws2f{word-spacing:1.973333pt;}
.ws40{word-spacing:2.026667pt;}
.wsd0{word-spacing:2.040000pt;}
.wsba{word-spacing:2.080000pt;}
.wsec{word-spacing:2.085333pt;}
.ws4e{word-spacing:2.133333pt;}
.wsad{word-spacing:2.186667pt;}
.ws53{word-spacing:2.240000pt;}
.wse8{word-spacing:2.266667pt;}
.ws18{word-spacing:2.293333pt;}
.ws2e{word-spacing:2.346667pt;}
.ws36{word-spacing:2.400000pt;}
.ws22{word-spacing:2.453333pt;}
.wse1{word-spacing:2.493333pt;}
.ws64{word-spacing:2.506667pt;}
.wsda{word-spacing:2.538667pt;}
.ws61{word-spacing:2.560000pt;}
.ws24{word-spacing:2.613333pt;}
.wsf3{word-spacing:2.629333pt;}
.ws41{word-spacing:2.666667pt;}
.wsed{word-spacing:2.674667pt;}
.ws3d{word-spacing:2.720000pt;}
.ws34{word-spacing:2.773333pt;}
.ws56{word-spacing:2.826667pt;}
.wsb4{word-spacing:2.880000pt;}
.ws26{word-spacing:2.933333pt;}
.wsa8{word-spacing:2.986667pt;}
.ws43{word-spacing:3.040000pt;}
.ws49{word-spacing:3.093333pt;}
.ws52{word-spacing:3.146667pt;}
.wsc9{word-spacing:3.200000pt;}
.ws9c{word-spacing:3.306667pt;}
.wsdb{word-spacing:3.309333pt;}
.wsa1{word-spacing:3.360000pt;}
.ws5b{word-spacing:3.413333pt;}
.wsa4{word-spacing:3.466667pt;}
.ws50{word-spacing:3.520000pt;}
.ws51{word-spacing:3.626667pt;}
.ws2b{word-spacing:3.680000pt;}
.ws5f{word-spacing:3.733333pt;}
.wsa2{word-spacing:3.786667pt;}
.wsd4{word-spacing:3.808000pt;}
.ws4b{word-spacing:3.840000pt;}
.ws62{word-spacing:3.893333pt;}
.wsf5{word-spacing:4.034667pt;}
.wse6{word-spacing:4.080000pt;}
.ws3e{word-spacing:4.106667pt;}
.wsa9{word-spacing:4.373333pt;}
.wsc8{word-spacing:4.397333pt;}
.ws4d{word-spacing:4.480000pt;}
.wsc5{word-spacing:4.533333pt;}
.ws55{word-spacing:4.586667pt;}
.ws9e{word-spacing:4.800000pt;}
.ws1b{word-spacing:4.853333pt;}
.wsca{word-spacing:4.960000pt;}
.wsc2{word-spacing:5.013333pt;}
.wsc6{word-spacing:5.122667pt;}
.wsb6{word-spacing:5.173333pt;}
.wsab{word-spacing:5.600000pt;}
.wsaf{word-spacing:5.920000pt;}
.ws9f{word-spacing:6.080000pt;}
.ws5a{word-spacing:6.186667pt;}
.ws4c{word-spacing:6.666667pt;}
.wsb1{word-spacing:7.146667pt;}
.wsaa{word-spacing:7.306667pt;}
.wsac{word-spacing:7.466667pt;}
.wsf6{word-spacing:7.480000pt;}
.wsa0{word-spacing:7.520000pt;}
.wsb2{word-spacing:8.106667pt;}
.wscb{word-spacing:8.205333pt;}
.wsa7{word-spacing:8.746667pt;}
.wsb0{word-spacing:8.960000pt;}
.wsc4{word-spacing:9.280000pt;}
.wsa5{word-spacing:10.346667pt;}
.wsae{word-spacing:14.400000pt;}
.wsfa{word-spacing:16.456000pt;}
.wsb5{word-spacing:20.693333pt;}
.wsfb{word-spacing:21.442667pt;}
.ws72{word-spacing:22.258667pt;}
.wsbf{word-spacing:23.301326pt;}
.ws84{word-spacing:24.480000pt;}
.ws90{word-spacing:32.005333pt;}
.ws6c{word-spacing:32.866667pt;}
.ws97{word-spacing:37.930667pt;}
.ws8f{word-spacing:40.165333pt;}
.ws74{word-spacing:50.002667pt;}
.ws6e{word-spacing:60.610667pt;}
.ws1c{word-spacing:64.237333pt;}
.wsc1{word-spacing:72.578659pt;}
.ws73{word-spacing:72.669333pt;}
.ws6d{word-spacing:83.277333pt;}
.wsc0{word-spacing:83.911992pt;}
.ws89{word-spacing:95.018667pt;}
.ws75{word-spacing:95.789333pt;}
.ws8c{word-spacing:97.557333pt;}
.ws8a{word-spacing:98.010667pt;}
.ws7a{word-spacing:100.368000pt;}
.ws77{word-spacing:100.821333pt;}
.ws98{word-spacing:101.098667pt;}
.ws8e{word-spacing:101.184000pt;}
.ws95{word-spacing:102.330667pt;}
.ws8b{word-spacing:102.680000pt;}
.ws7b{word-spacing:102.906667pt;}
.ws8d{word-spacing:102.997333pt;}
.ws86{word-spacing:103.677333pt;}
.ws94{word-spacing:104.309333pt;}
.ws83{word-spacing:105.082667pt;}
.ws7d{word-spacing:106.533333pt;}
.ws87{word-spacing:107.621333pt;}
.ws7c{word-spacing:108.029333pt;}
.ws93{word-spacing:110.544000pt;}
.ws99{word-spacing:110.581333pt;}
.ws6f{word-spacing:110.885333pt;}
.ws85{word-spacing:112.653333pt;}
.ws79{word-spacing:112.970667pt;}
.ws88{word-spacing:113.152000pt;}
.ws71{word-spacing:115.464000pt;}
.ws66{word-spacing:115.645333pt;}
.ws78{word-spacing:118.002667pt;}
.wsc7{word-spacing:123.080000pt;}
.ws70{word-spacing:125.528000pt;}
.ws67{word-spacing:125.709333pt;}
.ws6b{word-spacing:133.688000pt;}
.ws92{word-spacing:137.498667pt;}
.ws7f{word-spacing:145.384000pt;}
.ws65{word-spacing:150.733333pt;}
.ws80{word-spacing:152.954667pt;}
.ws68{word-spacing:184.688000pt;}
.ws82{word-spacing:186.048000pt;}
.ws81{word-spacing:188.178667pt;}
.ws76{word-spacing:191.442667pt;}
.ws6a{word-spacing:198.605333pt;}
._9{margin-left:-64.600000pt;}
._35{margin-left:-19.042139pt;}
._2f{margin-left:-15.626667pt;}
._6{margin-left:-14.733333pt;}
._37{margin-left:-13.623473pt;}
._2e{margin-left:-12.640000pt;}
._53{margin-left:-11.696000pt;}
._13{margin-left:-10.239994pt;}
._10{margin-left:-8.989888pt;}
._b{margin-left:-7.946667pt;}
._2d{margin-left:-6.954667pt;}
._f{margin-left:-5.642682pt;}
._1{margin-left:-4.109067pt;}
._5{margin-left:-2.419200pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.587200pt;}
._c{width:2.826667pt;}
._12{width:3.786661pt;}
._36{width:5.080539pt;}
._31{width:6.000000pt;}
._4e{width:7.752000pt;}
._47{width:9.072541pt;}
._48{width:10.042126pt;}
._51{width:11.061333pt;}
._4f{width:12.104000pt;}
._4{width:14.144000pt;}
._7{width:16.320000pt;}
._30{width:20.552533pt;}
._52{width:21.602139pt;}
._50{width:23.573333pt;}
._39{width:24.597333pt;}
._34{width:26.613333pt;}
._2c{width:28.106667pt;}
._38{width:29.226667pt;}
._2b{width:30.400000pt;}
._32{width:31.306667pt;}
._33{width:32.373333pt;}
._3{width:35.628792pt;}
._45{width:38.578659pt;}
._8{width:48.552000pt;}
._21{width:51.407467pt;}
._3d{width:61.290659pt;}
._23{width:62.967467pt;}
._49{width:76.250659pt;}
._41{width:106.578659pt;}
._3f{width:109.706667pt;}
._1b{width:110.811200pt;}
._3b{width:117.957326pt;}
._3c{width:126.269867pt;}
._44{width:130.016000pt;}
._17{width:152.637333pt;}
._42{width:164.016000pt;}
._22{width:167.630103pt;}
._20{width:170.135436pt;}
._4d{width:173.626667pt;}
._46{width:175.349333pt;}
._e{width:178.303990pt;}
._d{width:180.358400pt;}
._3e{width:186.682667pt;}
._11{width:188.541333pt;}
._4a{width:190.371200pt;}
._3a{width:194.752000pt;}
._40{width:198.016000pt;}
._2a{width:218.283208pt;}
._27{width:220.167733pt;}
._4b{width:241.626667pt;}
._43{width:254.365333pt;}
._1f{width:265.501067pt;}
._15{width:272.592541pt;}
._1d{width:276.834400pt;}
._18{width:299.501067pt;}
._1a{width:322.167733pt;}
._29{width:353.917303pt;}
._28{width:361.442636pt;}
._1c{width:365.477303pt;}
._24{width:390.591970pt;}
._4c{width:394.037333pt;}
._19{width:464.711970pt;}
._26{width:583.122636pt;}
._16{width:682.600503pt;}
._25{width:724.335970pt;}
._1e{width:732.994636pt;}
._14{width:884.090636pt;}
._a{width:2373.200065pt;}
.fs9{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y24{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y5a{bottom:100.389600pt;}
.y23b{bottom:100.470937pt;}
.y90{bottom:100.813639pt;}
.y98{bottom:101.717590pt;}
.y1e4{bottom:101.834941pt;}
.y101{bottom:101.986898pt;}
.yca{bottom:101.986938pt;}
.y28a{bottom:101.990906pt;}
.y245{bottom:102.110921pt;}
.y257{bottom:102.110942pt;}
.y203{bottom:102.111064pt;}
.y2bb{bottom:102.114941pt;}
.y144{bottom:102.568685pt;}
.y4e{bottom:108.854533pt;}
.y1b1{bottom:116.820272pt;}
.y8f{bottom:117.480306pt;}
.y1c6{bottom:117.718953pt;}
.y59{bottom:118.250936pt;}
.y97{bottom:118.384257pt;}
.y1e1{bottom:118.501607pt;}
.y100{bottom:118.653564pt;}
.yc9{bottom:118.653605pt;}
.y289{bottom:118.657572pt;}
.y244{bottom:118.777588pt;}
.y256{bottom:118.777608pt;}
.y202{bottom:118.777730pt;}
.y2ba{bottom:118.781607pt;}
.y143{bottom:119.235352pt;}
.y23{bottom:123.790666pt;}
.y4d{bottom:125.521200pt;}
.y1b0{bottom:133.486938pt;}
.y58{bottom:133.764936pt;}
.y8e{bottom:134.146973pt;}
.y1c5{bottom:134.385620pt;}
.y96{bottom:135.050924pt;}
.y1e0{bottom:135.168274pt;}
.yff{bottom:135.320231pt;}
.yc8{bottom:135.320272pt;}
.y243{bottom:135.444255pt;}
.y255{bottom:135.444275pt;}
.y201{bottom:135.444397pt;}
.y2b9{bottom:135.448274pt;}
.y142{bottom:135.902018pt;}
.y4c{bottom:142.187866pt;}
.y1af{bottom:150.153605pt;}
.y8d{bottom:150.813639pt;}
.y1c4{bottom:151.052287pt;}
.y57{bottom:151.626272pt;}
.y95{bottom:151.717590pt;}
.y1df{bottom:151.834941pt;}
.yfe{bottom:151.986898pt;}
.yc7{bottom:151.986938pt;}
.y288{bottom:151.990906pt;}
.y242{bottom:152.110921pt;}
.y254{bottom:152.110942pt;}
.y200{bottom:152.111064pt;}
.y2b8{bottom:152.114941pt;}
.y141{bottom:152.568685pt;}
.y4b{bottom:158.854533pt;}
.y175{bottom:163.444255pt;}
.y220{bottom:165.493601pt;}
.y1ae{bottom:166.820272pt;}
.y56{bottom:167.140262pt;}
.y8c{bottom:167.480306pt;}
.y1c3{bottom:167.718953pt;}
.y94{bottom:168.384257pt;}
.y1de{bottom:168.501607pt;}
.yfd{bottom:168.653564pt;}
.yc6{bottom:168.653605pt;}
.y287{bottom:168.657572pt;}
.y241{bottom:168.777588pt;}
.y253{bottom:168.777608pt;}
.y1ff{bottom:168.777730pt;}
.y2b7{bottom:168.781607pt;}
.y140{bottom:169.235352pt;}
.y133{bottom:172.425355pt;}
.y1a{bottom:175.052000pt;}
.y4a{bottom:175.521200pt;}
.y174{bottom:180.110921pt;}
.y1ad{bottom:183.486938pt;}
.y32c{bottom:183.646952pt;}
.y8b{bottom:184.146973pt;}
.y1c2{bottom:184.385620pt;}
.y55{bottom:185.001607pt;}
.y93{bottom:185.050924pt;}
.y1e3{bottom:185.168274pt;}
.yfc{bottom:185.320231pt;}
.yc5{bottom:185.320272pt;}
.y286{bottom:185.324239pt;}
.y2f0{bottom:185.346938pt;}
.y240{bottom:185.444255pt;}
.y252{bottom:185.444275pt;}
.y1fe{bottom:185.444397pt;}
.y2b6{bottom:185.448274pt;}
.y13f{bottom:185.902018pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y132{bottom:189.130688pt;}
.y49{bottom:192.187866pt;}
.y173{bottom:196.777588pt;}
.y179{bottom:196.777730pt;}
.y32b{bottom:196.974952pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y2ef{bottom:198.674938pt;}
.y1ac{bottom:200.153605pt;}
.y8a{bottom:200.813639pt;}
.y1c1{bottom:201.052287pt;}
.y92{bottom:201.717590pt;}
.y1dd{bottom:201.834941pt;}
.yfb{bottom:201.986898pt;}
.yc4{bottom:201.986938pt;}
.y285{bottom:201.990906pt;}
.y23f{bottom:202.110921pt;}
.y251{bottom:202.110942pt;}
.y1fd{bottom:202.111064pt;}
.y2b5{bottom:202.114941pt;}
.y13e{bottom:202.568685pt;}
.y54{bottom:205.043599pt;}
.y131{bottom:205.768021pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y48{bottom:208.854533pt;}
.y32a{bottom:210.302952pt;}
.y2ee{bottom:212.002938pt;}
.y172{bottom:213.444255pt;}
.y178{bottom:213.444397pt;}
.y1ab{bottom:216.820272pt;}
.y89{bottom:217.480306pt;}
.y1c0{bottom:217.718953pt;}
.y1e2{bottom:218.501607pt;}
.yfa{bottom:218.653564pt;}
.yc3{bottom:218.653605pt;}
.y284{bottom:218.657572pt;}
.y23e{bottom:218.777588pt;}
.y250{bottom:218.777608pt;}
.y2b4{bottom:218.781607pt;}
.y130{bottom:219.096021pt;}
.y13d{bottom:219.235352pt;}
.y53{bottom:220.562933pt;}
.y329{bottom:223.630952pt;}
.y21e{bottom:224.053731pt;}
.y2ed{bottom:225.330938pt;}
.y47{bottom:225.521200pt;}
.y171{bottom:230.110921pt;}
.y177{bottom:230.111064pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y12f{bottom:232.424021pt;}
.y1aa{bottom:233.486938pt;}
.y52{bottom:233.890933pt;}
.y88{bottom:234.146973pt;}
.y1bf{bottom:234.385620pt;}
.y91{bottom:235.050924pt;}
.y1dc{bottom:235.168274pt;}
.yf9{bottom:235.320231pt;}
.yc2{bottom:235.320272pt;}
.y283{bottom:235.324239pt;}
.y23d{bottom:235.444255pt;}
.y24f{bottom:235.444275pt;}
.y1fc{bottom:235.444397pt;}
.y2b3{bottom:235.448274pt;}
.y13c{bottom:235.902018pt;}
.y328{bottom:236.958952pt;}
.y2ec{bottom:238.658938pt;}
.y46{bottom:242.187866pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y12e{bottom:245.752021pt;}
.y170{bottom:246.777588pt;}
.y1a9{bottom:250.153605pt;}
.y327{bottom:250.286952pt;}
.y87{bottom:250.813639pt;}
.y1be{bottom:251.052287pt;}
.y51{bottom:251.752258pt;}
.y1db{bottom:251.834941pt;}
.yf8{bottom:251.986898pt;}
.yc1{bottom:251.986938pt;}
.y282{bottom:251.990906pt;}
.y23c{bottom:252.110921pt;}
.y24e{bottom:252.110942pt;}
.y21b{bottom:252.111064pt;}
.y2b2{bottom:252.114941pt;}
.y13b{bottom:252.568685pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y45{bottom:258.854533pt;}
.y12d{bottom:259.080021pt;}
.y16f{bottom:263.444255pt;}
.y176{bottom:263.444397pt;}
.y326{bottom:263.614952pt;}
.y1a8{bottom:266.820272pt;}
.y86{bottom:267.480306pt;}
.y1bd{bottom:267.718953pt;}
.y1da{bottom:268.501607pt;}
.yf7{bottom:268.653564pt;}
.yc0{bottom:268.653605pt;}
.y281{bottom:268.657572pt;}
.y1fb{bottom:268.777588pt;}
.y24d{bottom:268.777608pt;}
.y21a{bottom:268.777730pt;}
.y2b1{bottom:268.781607pt;}
.y13a{bottom:269.235352pt;}
.y12c{bottom:272.408021pt;}
.y50{bottom:273.974938pt;}
.y44{bottom:275.521200pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y325{bottom:276.942952pt;}
.y2c6{bottom:277.829313pt;}
.y16e{bottom:280.110921pt;}
.y2eb{bottom:281.986938pt;}
.y1a7{bottom:283.486938pt;}
.y85{bottom:284.146973pt;}
.y1bc{bottom:284.385620pt;}
.yf6{bottom:285.320231pt;}
.ybf{bottom:285.320272pt;}
.y280{bottom:285.324239pt;}
.y1fa{bottom:285.444255pt;}
.y24c{bottom:285.444275pt;}
.y219{bottom:285.444397pt;}
.y2b0{bottom:285.448274pt;}
.y139{bottom:285.902018pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y4f{bottom:287.302938pt;}
.y12b{bottom:289.045355pt;}
.y324{bottom:290.270952pt;}
.y43{bottom:292.187866pt;}
.y2c5{bottom:294.534646pt;}
.y16d{bottom:296.777588pt;}
.y1a6{bottom:300.153605pt;}
.y84{bottom:300.813639pt;}
.y1bb{bottom:301.052287pt;}
.yf5{bottom:301.986898pt;}
.ybe{bottom:301.986938pt;}
.y27f{bottom:301.990906pt;}
.y1f9{bottom:302.110921pt;}
.y24b{bottom:302.110942pt;}
.y218{bottom:302.111064pt;}
.y2af{bottom:302.114941pt;}
.y12a{bottom:302.373355pt;}
.y138{bottom:302.568685pt;}
.y323{bottom:303.598952pt;}
.y1e6{bottom:305.440267pt;}
.y42{bottom:308.854533pt;}
.y11{bottom:309.452000pt;}
.y2c4{bottom:311.171980pt;}
.y16c{bottom:313.444255pt;}
.y2ea{bottom:315.388938pt;}
.y129{bottom:315.701355pt;}
.y1a5{bottom:316.820272pt;}
.y322{bottom:316.926952pt;}
.y83{bottom:317.480306pt;}
.y1ba{bottom:317.718953pt;}
.yf4{bottom:318.653564pt;}
.ybd{bottom:318.653605pt;}
.y27e{bottom:318.657572pt;}
.y1f8{bottom:318.777588pt;}
.y24a{bottom:318.777608pt;}
.y217{bottom:318.777730pt;}
.y2ae{bottom:318.781607pt;}
.y137{bottom:319.235352pt;}
.y41{bottom:325.521200pt;}
.y2c3{bottom:327.809313pt;}
.y2e9{bottom:328.716938pt;}
.y16b{bottom:330.110921pt;}
.y321{bottom:330.254952pt;}
.y128{bottom:332.338688pt;}
.y1a4{bottom:333.486938pt;}
.y82{bottom:334.146973pt;}
.y1b9{bottom:334.385620pt;}
.yf3{bottom:335.320231pt;}
.ybc{bottom:335.320272pt;}
.y27d{bottom:335.324239pt;}
.y1f7{bottom:335.444255pt;}
.y249{bottom:335.444275pt;}
.y216{bottom:335.444397pt;}
.y2ad{bottom:335.448274pt;}
.y136{bottom:335.902018pt;}
.y2e8{bottom:342.044938pt;}
.y320{bottom:343.582952pt;}
.y10{bottom:343.809333pt;}
.y2c2{bottom:344.446646pt;}
.y127{bottom:345.666688pt;}
.y16a{bottom:346.777588pt;}
.y1a3{bottom:350.153605pt;}
.y81{bottom:350.813639pt;}
.y1b8{bottom:351.052287pt;}
.yf2{bottom:351.986898pt;}
.ybb{bottom:351.986938pt;}
.y1f6{bottom:352.110921pt;}
.y215{bottom:352.111064pt;}
.y2ac{bottom:352.114941pt;}
.y135{bottom:352.568685pt;}
.y2e7{bottom:355.372938pt;}
.y31f{bottom:356.910952pt;}
.y40{bottom:358.854533pt;}
.y2c1{bottom:361.083980pt;}
.y126{bottom:362.304021pt;}
.yf{bottom:362.706666pt;}
.y169{bottom:363.444255pt;}
.y1a2{bottom:366.820272pt;}
.y80{bottom:367.480306pt;}
.y1b7{bottom:367.718953pt;}
.yf1{bottom:368.653564pt;}
.yba{bottom:368.653605pt;}
.y27c{bottom:368.657572pt;}
.y2e6{bottom:368.700938pt;}
.y1f5{bottom:368.777588pt;}
.y214{bottom:368.777730pt;}
.y2ab{bottom:368.781607pt;}
.y248{bottom:368.782921pt;}
.y134{bottom:369.235352pt;}
.y31e{bottom:370.238952pt;}
.y125{bottom:378.941355pt;}
.y168{bottom:380.110921pt;}
.y2e5{bottom:382.028938pt;}
.y1a1{bottom:383.486938pt;}
.y31d{bottom:383.566952pt;}
.y7f{bottom:384.146973pt;}
.y1b6{bottom:384.385620pt;}
.yf0{bottom:385.320231pt;}
.yb9{bottom:385.320272pt;}
.y27b{bottom:385.324239pt;}
.y1f4{bottom:385.444255pt;}
.y213{bottom:385.444397pt;}
.y2aa{bottom:385.448274pt;}
.y2c0{bottom:386.051313pt;}
.y124{bottom:392.269355pt;}
.y2e4{bottom:395.356938pt;}
.y167{bottom:396.777588pt;}
.y31c{bottom:396.894952pt;}
.y2bf{bottom:399.379313pt;}
.y1a0{bottom:400.153605pt;}
.y7e{bottom:400.813639pt;}
.y1b5{bottom:401.052287pt;}
.yef{bottom:401.986898pt;}
.yb8{bottom:401.986938pt;}
.y27a{bottom:401.990906pt;}
.y1f3{bottom:402.110921pt;}
.y212{bottom:402.111064pt;}
.y123{bottom:405.597355pt;}
.y2e3{bottom:408.684938pt;}
.y3f{bottom:408.854574pt;}
.y31b{bottom:410.222952pt;}
.y166{bottom:413.444255pt;}
.y7d{bottom:417.480306pt;}
.y1b4{bottom:417.718953pt;}
.yee{bottom:418.653564pt;}
.yb7{bottom:418.653605pt;}
.y279{bottom:418.657572pt;}
.y1f2{bottom:418.777588pt;}
.y211{bottom:418.777730pt;}
.y2a9{bottom:418.781607pt;}
.y2e2{bottom:422.012938pt;}
.y2be{bottom:422.043049pt;}
.y122{bottom:422.234688pt;}
.y31a{bottom:423.550952pt;}
.y162{bottom:425.204021pt;}
.y165{bottom:430.110921pt;}
.ye{bottom:430.990669pt;}
.y19f{bottom:433.486938pt;}
.y7c{bottom:434.146973pt;}
.y1b3{bottom:434.385620pt;}
.yed{bottom:435.320231pt;}
.yb6{bottom:435.320272pt;}
.y278{bottom:435.324239pt;}
.y2e1{bottom:435.340938pt;}
.y2bd{bottom:435.371049pt;}
.y1f1{bottom:435.444255pt;}
.y210{bottom:435.444397pt;}
.y2a8{bottom:435.448274pt;}
.y319{bottom:436.878952pt;}
.y121{bottom:438.872021pt;}
.y161{bottom:441.909355pt;}
.y3e{bottom:442.187907pt;}
.y164{bottom:446.777588pt;}
.yd{bottom:446.990669pt;}
.y2e0{bottom:448.668938pt;}
.y318{bottom:450.206952pt;}
.y7b{bottom:450.813639pt;}
.yec{bottom:451.986898pt;}
.yb5{bottom:451.986938pt;}
.y277{bottom:451.990906pt;}
.y1f0{bottom:452.110921pt;}
.y20f{bottom:452.111064pt;}
.y120{bottom:455.509355pt;}
.y160{bottom:458.546688pt;}
.y2df{bottom:461.996938pt;}
.yc{bottom:462.990669pt;}
.y163{bottom:463.444255pt;}
.y317{bottom:463.534952pt;}
.y19e{bottom:466.820272pt;}
.y7a{bottom:467.480306pt;}
.y1b2{bottom:467.718953pt;}
.yeb{bottom:468.653564pt;}
.yb4{bottom:468.653605pt;}
.y276{bottom:468.657572pt;}
.y1ef{bottom:468.777588pt;}
.y20e{bottom:468.777730pt;}
.y11f{bottom:472.146688pt;}
.y15f{bottom:475.184021pt;}
.y3d{bottom:475.521240pt;}
.y316{bottom:476.862952pt;}
.yb{bottom:478.990666pt;}
.y2bc{bottom:483.583049pt;}
.y79{bottom:484.146973pt;}
.yea{bottom:485.320231pt;}
.yb3{bottom:485.320272pt;}
.y275{bottom:485.324239pt;}
.y1ee{bottom:485.444255pt;}
.y20d{bottom:485.444397pt;}
.y15e{bottom:488.512021pt;}
.y2de{bottom:488.664272pt;}
.y11e{bottom:488.784021pt;}
.y315{bottom:490.190952pt;}
.y3c{bottom:492.187907pt;}
.ya{bottom:494.990666pt;}
.y23a{bottom:500.029622pt;}
.y78{bottom:500.813639pt;}
.y15d{bottom:501.840021pt;}
.ye9{bottom:501.986898pt;}
.yb2{bottom:501.986938pt;}
.y274{bottom:501.990906pt;}
.y2dd{bottom:501.992272pt;}
.y1ed{bottom:502.110921pt;}
.y20c{bottom:502.111064pt;}
.y314{bottom:503.518952pt;}
.y11d{bottom:505.421355pt;}
.y2a7{bottom:508.566688pt;}
.y3b{bottom:508.854574pt;}
.y1d9{bottom:515.111355pt;}
.y2dc{bottom:515.320272pt;}
.y239{bottom:516.696289pt;}
.y313{bottom:516.846952pt;}
.y77{bottom:517.480306pt;}
.y15c{bottom:518.477355pt;}
.ye8{bottom:518.653564pt;}
.yb1{bottom:518.653605pt;}
.y273{bottom:518.657572pt;}
.y1ec{bottom:518.777588pt;}
.y20b{bottom:518.777730pt;}
.y19d{bottom:520.047355pt;}
.y11c{bottom:522.058688pt;}
.y2a6{bottom:525.272021pt;}
.y3a{bottom:525.521240pt;}
.y1d8{bottom:528.439355pt;}
.y312{bottom:530.174952pt;}
.y19c{bottom:531.378021pt;}
.y15b{bottom:531.805355pt;}
.y238{bottom:533.362956pt;}
.y76{bottom:534.146973pt;}
.y246{bottom:535.102946pt;}
.ye7{bottom:535.320231pt;}
.yb0{bottom:535.320272pt;}
.y272{bottom:535.324239pt;}
.y1eb{bottom:535.444255pt;}
.y20a{bottom:535.444397pt;}
.y11b{bottom:538.696021pt;}
.y2a5{bottom:541.909355pt;}
.y2db{bottom:541.986938pt;}
.y39{bottom:542.187907pt;}
.y19b{bottom:542.708688pt;}
.y311{bottom:543.502952pt;}
.y15a{bottom:545.133355pt;}
.y237{bottom:550.029622pt;}
.y75{bottom:550.813639pt;}
.ye6{bottom:551.986898pt;}
.yaf{bottom:551.986938pt;}
.y271{bottom:551.990906pt;}
.y209{bottom:552.111064pt;}
.y19a{bottom:554.039355pt;}
.y11a{bottom:555.333355pt;}
.y310{bottom:556.830952pt;}
.y159{bottom:558.461355pt;}
.y2a4{bottom:558.546688pt;}
.y38{bottom:558.854574pt;}
.y199{bottom:565.370021pt;}
.y236{bottom:566.696289pt;}
.y74{bottom:567.480306pt;}
.ye5{bottom:568.653564pt;}
.yae{bottom:568.653605pt;}
.y270{bottom:568.657572pt;}
.y1ea{bottom:568.777588pt;}
.y208{bottom:568.777730pt;}
.y30f{bottom:570.158952pt;}
.y158{bottom:571.789355pt;}
.y1d7{bottom:571.800688pt;}
.y119{bottom:571.970688pt;}
.y2da{bottom:572.065564pt;}
.y9{bottom:573.786667pt;}
.y2c8{bottom:573.934939pt;}
.y2a3{bottom:575.184021pt;}
.y21d{bottom:575.262939pt;}
.y37{bottom:575.521240pt;}
.y198{bottom:576.700688pt;}
.y247{bottom:580.222941pt;}
.y21f{bottom:581.982951pt;}
.y235{bottom:583.362956pt;}
.y30e{bottom:583.486952pt;}
.y73{bottom:584.146973pt;}
.y157{bottom:585.117355pt;}
.ye4{bottom:585.320231pt;}
.yad{bottom:585.320272pt;}
.y26f{bottom:585.324239pt;}
.y2d9{bottom:585.393564pt;}
.y1e9{bottom:585.444255pt;}
.y207{bottom:585.444397pt;}
.y2c7{bottom:587.262939pt;}
.y197{bottom:588.031355pt;}
.y1d6{bottom:588.426688pt;}
.y118{bottom:588.608021pt;}
.y2a2{bottom:591.821355pt;}
.y36{bottom:592.187907pt;}
.y8{bottom:592.685334pt;}
.y30d{bottom:596.814952pt;}
.y2d8{bottom:598.721564pt;}
.y196{bottom:599.362021pt;}
.y234{bottom:600.029622pt;}
.y72{bottom:600.813639pt;}
.y156{bottom:601.754688pt;}
.ye3{bottom:601.986898pt;}
.y26e{bottom:601.990906pt;}
.y1e8{bottom:602.110921pt;}
.y206{bottom:602.111064pt;}
.y117{bottom:605.245355pt;}
.y2a1{bottom:608.458688pt;}
.y35{bottom:608.854574pt;}
.y30c{bottom:610.142952pt;}
.y195{bottom:614.566021pt;}
.y233{bottom:616.696289pt;}
.y71{bottom:617.480306pt;}
.y155{bottom:618.392021pt;}
.ye2{bottom:618.653564pt;}
.yac{bottom:618.653605pt;}
.y26d{bottom:618.657572pt;}
.y205{bottom:618.777730pt;}
.y116{bottom:621.882688pt;}
.y347{bottom:623.449620pt;}
.y30b{bottom:623.470952pt;}
.y2a0{bottom:625.096021pt;}
.y2d7{bottom:625.388898pt;}
.y34{bottom:625.521240pt;}
.y194{bottom:629.695355pt;}
.y232{bottom:633.362956pt;}
.y70{bottom:634.146973pt;}
.y154{bottom:635.029355pt;}
.ye1{bottom:635.320231pt;}
.y26c{bottom:635.324239pt;}
.y1e7{bottom:635.444255pt;}
.y204{bottom:635.444397pt;}
.y346{bottom:636.777620pt;}
.y30a{bottom:636.798952pt;}
.y115{bottom:638.520021pt;}
.y2d6{bottom:638.716898pt;}
.y29f{bottom:641.733355pt;}
.y33{bottom:642.187907pt;}
.y193{bottom:644.824688pt;}
.y7{bottom:645.598667pt;}
.y153{bottom:648.357355pt;}
.y231{bottom:650.029622pt;}
.y345{bottom:650.105620pt;}
.y309{bottom:650.126952pt;}
.y6f{bottom:650.813639pt;}
.y1d5{bottom:651.666688pt;}
.yab{bottom:651.986898pt;}
.yde{bottom:651.986938pt;}
.y26b{bottom:651.990906pt;}
.y2d5{bottom:652.044898pt;}
.y1e5{bottom:653.182943pt;}
.y114{bottom:655.157355pt;}
.y29e{bottom:658.370688pt;}
.y32{bottom:658.854574pt;}
.y192{bottom:659.954021pt;}
.y152{bottom:661.685355pt;}
.y344{bottom:663.433620pt;}
.y308{bottom:663.454952pt;}
.y230{bottom:666.696289pt;}
.y6e{bottom:667.480306pt;}
.y1d3{bottom:668.304021pt;}
.yaa{bottom:668.653564pt;}
.ydd{bottom:668.653605pt;}
.y26a{bottom:668.657572pt;}
.y3{bottom:668.977329pt;}
.y191{bottom:671.284688pt;}
.y29d{bottom:671.698688pt;}
.y113{bottom:671.794688pt;}
.y21c{bottom:672.543050pt;}
.y31{bottom:675.521240pt;}
.y343{bottom:676.761620pt;}
.y307{bottom:676.782952pt;}
.y151{bottom:678.322688pt;}
.y2d4{bottom:678.712231pt;}
.y1d2{bottom:681.632021pt;}
.y190{bottom:682.615355pt;}
.y22f{bottom:683.362956pt;}
.y6d{bottom:684.146973pt;}
.ya9{bottom:685.320231pt;}
.ydc{bottom:685.320272pt;}
.y269{bottom:685.324239pt;}
.y29c{bottom:688.336021pt;}
.y112{bottom:688.432021pt;}
.y342{bottom:690.089620pt;}
.y306{bottom:690.110952pt;}
.y35c{bottom:690.134948pt;}
.y2d3{bottom:692.040231pt;}
.y30{bottom:692.187907pt;}
.y18f{bottom:693.946021pt;}
.y150{bottom:694.960021pt;}
.y1d4{bottom:694.971355pt;}
.y6c{bottom:700.813639pt;}
.ya8{bottom:701.986898pt;}
.ydb{bottom:701.986938pt;}
.y268{bottom:701.990906pt;}
.y341{bottom:703.417620pt;}
.y305{bottom:703.438952pt;}
.y35b{bottom:703.462948pt;}
.y29b{bottom:704.973355pt;}
.y111{bottom:705.069355pt;}
.y18e{bottom:705.276688pt;}
.y2d2{bottom:705.368231pt;}
.y14f{bottom:708.288021pt;}
.y2f{bottom:708.854574pt;}
.y1d0{bottom:711.597355pt;}
.y18d{bottom:716.607355pt;}
.y22e{bottom:716.696289pt;}
.y340{bottom:716.745620pt;}
.y304{bottom:716.766952pt;}
.y6b{bottom:717.480306pt;}
.ya7{bottom:718.653564pt;}
.yda{bottom:718.653605pt;}
.y267{bottom:718.657572pt;}
.y2d1{bottom:718.696231pt;}
.y29a{bottom:721.610688pt;}
.y110{bottom:721.706688pt;}
.y14e{bottom:724.925355pt;}
.y2e{bottom:725.521240pt;}
.y18c{bottom:727.938021pt;}
.y33f{bottom:730.073620pt;}
.y303{bottom:730.094952pt;}
.y35a{bottom:730.209613pt;}
.y2d0{bottom:732.024231pt;}
.y6a{bottom:734.146973pt;}
.ya6{bottom:735.320231pt;}
.yd9{bottom:735.320272pt;}
.y266{bottom:735.324239pt;}
.y299{bottom:738.248021pt;}
.y1cf{bottom:738.253355pt;}
.y1d1{bottom:738.264688pt;}
.y10f{bottom:738.344021pt;}
.y18b{bottom:739.268688pt;}
.y14d{bottom:741.562688pt;}
.y33e{bottom:743.401620pt;}
.y302{bottom:743.422952pt;}
.y359{bottom:743.537613pt;}
.y2cf{bottom:745.352231pt;}
.y22d{bottom:750.029622pt;}
.y18a{bottom:750.599355pt;}
.y69{bottom:750.813639pt;}
.y298{bottom:751.576021pt;}
.ya5{bottom:751.986898pt;}
.yd8{bottom:751.986938pt;}
.y265{bottom:751.990906pt;}
.y14c{bottom:754.890688pt;}
.y10e{bottom:754.981355pt;}
.y33d{bottom:756.729620pt;}
.y301{bottom:756.750952pt;}
.y358{bottom:756.865613pt;}
.y2ce{bottom:758.680231pt;}
.y189{bottom:761.930021pt;}
.y2d{bottom:764.794803pt;}
.y22c{bottom:766.696289pt;}
.y68{bottom:767.480306pt;}
.y297{bottom:768.213355pt;}
.y14b{bottom:768.218688pt;}
.ya4{bottom:768.653564pt;}
.yd7{bottom:768.653605pt;}
.y264{bottom:768.657572pt;}
.y33c{bottom:770.057620pt;}
.y300{bottom:770.078952pt;}
.y357{bottom:770.193613pt;}
.y10d{bottom:771.618688pt;}
.y2cd{bottom:772.008231pt;}
.y188{bottom:773.260688pt;}
.y2c{bottom:778.122803pt;}
.y14a{bottom:781.546688pt;}
.y1ce{bottom:781.558021pt;}
.y2{bottom:781.661334pt;}
.y22b{bottom:783.362956pt;}
.y33b{bottom:783.385620pt;}
.y2ff{bottom:783.406952pt;}
.y356{bottom:783.521613pt;}
.y67{bottom:784.146973pt;}
.y187{bottom:784.591355pt;}
.y296{bottom:784.850688pt;}
.ye0{bottom:785.320231pt;}
.yd6{bottom:785.320272pt;}
.y263{bottom:785.324239pt;}
.y2cc{bottom:785.336231pt;}
.y10c{bottom:788.256021pt;}
.y149{bottom:794.874688pt;}
.y186{bottom:795.922021pt;}
.y33a{bottom:796.713620pt;}
.y2fe{bottom:796.734952pt;}
.y355{bottom:796.849613pt;}
.y1cd{bottom:798.184021pt;}
.y2cb{bottom:798.664231pt;}
.y22a{bottom:800.029622pt;}
.y66{bottom:800.813639pt;}
.y295{bottom:801.488021pt;}
.ya3{bottom:801.986898pt;}
.yd5{bottom:801.986938pt;}
.y262{bottom:801.990906pt;}
.y10b{bottom:804.893355pt;}
.y185{bottom:807.252688pt;}
.y148{bottom:808.202688pt;}
.y339{bottom:810.041620pt;}
.y2fd{bottom:810.062952pt;}
.y354{bottom:810.177613pt;}
.y1cc{bottom:811.512021pt;}
.y2ca{bottom:811.992231pt;}
.y2b{bottom:815.989502pt;}
.y229{bottom:816.696289pt;}
.y65{bottom:817.480306pt;}
.y294{bottom:818.125355pt;}
.y184{bottom:818.583355pt;}
.ya2{bottom:818.653564pt;}
.yd4{bottom:818.653605pt;}
.y261{bottom:818.657572pt;}
.y10a{bottom:821.530688pt;}
.y338{bottom:823.369620pt;}
.y2fc{bottom:823.390952pt;}
.y353{bottom:823.505613pt;}
.y147{bottom:824.840021pt;}
.y2c9{bottom:825.320231pt;}
.y1cb{bottom:828.149355pt;}
.y183{bottom:829.914021pt;}
.y293{bottom:831.453355pt;}
.y2a{bottom:832.656169pt;}
.y228{bottom:833.362956pt;}
.y64{bottom:834.146973pt;}
.ya1{bottom:835.320231pt;}
.yd3{bottom:835.320272pt;}
.y260{bottom:835.324239pt;}
.y337{bottom:836.697620pt;}
.y2fb{bottom:836.718952pt;}
.y352{bottom:836.833613pt;}
.y109{bottom:838.168021pt;}
.y182{bottom:841.244688pt;}
.y146{bottom:841.477355pt;}
.y1ca{bottom:844.786688pt;}
.y292{bottom:848.090688pt;}
.y336{bottom:850.025620pt;}
.y227{bottom:850.029622pt;}
.y2fa{bottom:850.046952pt;}
.y351{bottom:850.161613pt;}
.y63{bottom:850.813639pt;}
.ya0{bottom:851.986898pt;}
.yd2{bottom:851.986938pt;}
.y25f{bottom:851.990906pt;}
.y181{bottom:852.575355pt;}
.y108{bottom:854.805355pt;}
.y145{bottom:858.114688pt;}
.y1{bottom:859.312000pt;}
.y1c8{bottom:861.424021pt;}
.y335{bottom:863.353620pt;}
.y2f9{bottom:863.374952pt;}
.y350{bottom:863.489613pt;}
.y180{bottom:863.906021pt;}
.y291{bottom:864.728021pt;}
.y226{bottom:866.696289pt;}
.y62{bottom:867.480306pt;}
.y9f{bottom:868.653564pt;}
.yd1{bottom:868.653605pt;}
.y25e{bottom:868.657572pt;}
.y107{bottom:871.442688pt;}
.y29{bottom:872.377441pt;}
.y1c7{bottom:874.752021pt;}
.y17f{bottom:875.236688pt;}
.y334{bottom:876.681620pt;}
.y2f8{bottom:876.702952pt;}
.y34f{bottom:876.817613pt;}
.y290{bottom:881.365355pt;}
.y225{bottom:883.362956pt;}
.y61{bottom:884.146973pt;}
.y9e{bottom:885.320231pt;}
.yd0{bottom:885.320272pt;}
.y25d{bottom:885.324239pt;}
.y17e{bottom:886.567355pt;}
.y106{bottom:888.080021pt;}
.y1c9{bottom:888.091355pt;}
.y333{bottom:890.009620pt;}
.y2f7{bottom:890.030952pt;}
.y34e{bottom:890.145613pt;}
.y28{bottom:896.377441pt;}
.y17d{bottom:897.898021pt;}
.y224{bottom:900.029622pt;}
.y60{bottom:900.813639pt;}
.y9d{bottom:901.986898pt;}
.ycf{bottom:901.986938pt;}
.y25c{bottom:901.990906pt;}
.y332{bottom:903.337620pt;}
.y2f6{bottom:903.358952pt;}
.y34d{bottom:903.473613pt;}
.y105{bottom:904.717355pt;}
.y28e{bottom:906.332688pt;}
.y17c{bottom:909.228688pt;}
.y331{bottom:916.665620pt;}
.y2f5{bottom:916.686952pt;}
.y223{bottom:916.696289pt;}
.y34c{bottom:916.801613pt;}
.y5f{bottom:917.480306pt;}
.ydf{bottom:918.653564pt;}
.yce{bottom:918.653605pt;}
.y25b{bottom:918.657572pt;}
.y28d{bottom:919.660688pt;}
.y104{bottom:921.354688pt;}
.y17b{bottom:924.358021pt;}
.y330{bottom:929.993620pt;}
.y2f4{bottom:930.014952pt;}
.y34b{bottom:930.129613pt;}
.y28c{bottom:932.988688pt;}
.y28f{bottom:933.000021pt;}
.y222{bottom:933.362956pt;}
.y5e{bottom:934.146973pt;}
.y9c{bottom:935.320231pt;}
.ycd{bottom:935.320272pt;}
.y25a{bottom:935.324239pt;}
.y32f{bottom:943.321620pt;}
.y2f3{bottom:943.342952pt;}
.y34a{bottom:943.457613pt;}
.y103{bottom:946.322021pt;}
.y17a{bottom:947.822021pt;}
.y5d{bottom:950.813639pt;}
.y9b{bottom:951.986898pt;}
.ycc{bottom:951.986938pt;}
.y259{bottom:951.990906pt;}
.y28b{bottom:955.652306pt;}
.y27{bottom:956.561849pt;}
.y32e{bottom:956.649620pt;}
.y2f2{bottom:956.670952pt;}
.y349{bottom:956.785613pt;}
.y221{bottom:966.696289pt;}
.y5c{bottom:967.480306pt;}
.y9a{bottom:968.653564pt;}
.ycb{bottom:968.653605pt;}
.y258{bottom:968.657572pt;}
.y102{bottom:968.980306pt;}
.y32d{bottom:969.977620pt;}
.y2f1{bottom:969.998952pt;}
.y348{bottom:970.113613pt;}
.y26{bottom:986.299161pt;}
.y25{bottom:1001.406494pt;}
.y5b{bottom:1002.206543pt;}
.y99{bottom:1002.206706pt;}
.h14{height:27.671466pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.h19{height:32.554667pt;}
.hf{height:38.453333pt;}
.h1a{height:39.386667pt;}
.h13{height:39.530667pt;}
.hb{height:39.712000pt;}
.h17{height:40.165333pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h12{height:46.144000pt;}
.h11{height:46.506667pt;}
.h10{height:47.253333pt;}
.h18{height:47.826667pt;}
.h2{height:48.960000pt;}
.hc{height:49.298667pt;}
.h15{height:52.448000pt;}
.h16{height:54.560000pt;}
.he{height:57.658667pt;}
.h5{height:69.360000pt;}
.hd{height:75.605333pt;}
.h4{height:105.826671pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x1a{left:72.033992pt;}
.x7{left:75.717199pt;}
.xb{left:83.151469pt;}
.x14{left:85.604802pt;}
.xa{left:86.929867pt;}
.xd{left:89.364802pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x10{left:138.666135pt;}
.xf{left:146.696135pt;}
.xe{left:148.033497pt;}
.x4{left:180.874667pt;}
.x18{left:184.732666pt;}
.x1b{left:247.041467pt;}
.x19{left:254.069999pt;}
.x1c{left:308.513464pt;}
.x11{left:340.360068pt;}
.x3{left:404.408000pt;}
.x8{left:408.188924pt;}
.x9{left:423.308924pt;}
.x15{left:425.764792pt;}
.x17{left:429.524790pt;}
.x1d{left:430.845475pt;}
.x16{left:455.218122pt;}
.x12{left:522.203401pt;}
.x13{left:530.204667pt;}
.x5{left:647.307210pt;}
.xc{left:709.519613pt;}
}




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