
    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_65d1f2c0ff5c425dff50a372.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8ec8c1bd4c06ccca84777cd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7cd58e126da2566cab20b206.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_46a1d41ad14ba4bbd4d8f739.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_00e0d7d99742e552522c67ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aa0260a091264df89e8554d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.931000;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_e794626a381759cebbd6c320.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f30a9ffae9ab09e743728f94.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e0fbbf4baaf6d5f6753c2036.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c526f84c5d6af3b5f61eb0ef.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5c625cdc02d265bd5e35c54e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.892090;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.400055px;}
.v4{vertical-align:-15.000183px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.406586px;}
.v1{vertical-align:24.000000px;}
.ls14{letter-spacing:-0.540000px;}
.ls43{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.420000px;}
.ls73{letter-spacing:-0.408000px;}
.ls13{letter-spacing:-0.360000px;}
.ls75{letter-spacing:-0.357000px;}
.ls72{letter-spacing:-0.306000px;}
.ls2a{letter-spacing:-0.300000px;}
.ls83{letter-spacing:-0.255000px;}
.ls12{letter-spacing:-0.240000px;}
.ls77{letter-spacing:-0.204000px;}
.ls15{letter-spacing:-0.180000px;}
.ls76{letter-spacing:-0.153000px;}
.ls29{letter-spacing:-0.120000px;}
.ls74{letter-spacing:-0.102000px;}
.ls2c{letter-spacing:-0.060000px;}
.ls71{letter-spacing:-0.051000px;}
.ls11{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.000037px;}
.ls2f{letter-spacing:0.030000px;}
.ls7a{letter-spacing:0.051000px;}
.ls19{letter-spacing:0.060000px;}
.ls5a{letter-spacing:0.090000px;}
.ls6d{letter-spacing:0.102000px;}
.ls26{letter-spacing:0.120000px;}
.ls78{letter-spacing:0.153000px;}
.lsf{letter-spacing:0.178791px;}
.ls6{letter-spacing:0.179952px;}
.ls21{letter-spacing:0.179990px;}
.ls8{letter-spacing:0.180000px;}
.ls63{letter-spacing:0.204000px;}
.ls59{letter-spacing:0.209971px;}
.ls1{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.255000px;}
.ls6a{letter-spacing:0.264000px;}
.ls2e{letter-spacing:0.269992px;}
.ls22{letter-spacing:0.275962px;}
.ls8a{letter-spacing:0.280500px;}
.ls6f{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.299981px;}
.ls4{letter-spacing:0.300000px;}
.ls6e{letter-spacing:0.306000px;}
.ls84{letter-spacing:0.331500px;}
.ls32{letter-spacing:0.336000px;}
.ls64{letter-spacing:0.357000px;}
.lse{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.378000px;}
.ls5e{letter-spacing:0.384000px;}
.ls58{letter-spacing:0.395975px;}
.ls69{letter-spacing:0.408000px;}
.ls7{letter-spacing:0.420000px;}
.ls34{letter-spacing:0.450000px;}
.ls65{letter-spacing:0.459000px;}
.ls4f{letter-spacing:0.462000px;}
.lsc{letter-spacing:0.480000px;}
.ls27{letter-spacing:0.510000px;}
.ls49{letter-spacing:0.515961px;}
.ls17{letter-spacing:0.540000px;}
.ls7f{letter-spacing:0.561000px;}
.ls3{letter-spacing:0.570000px;}
.ls23{letter-spacing:0.600000px;}
.ls66{letter-spacing:0.612000px;}
.ls50{letter-spacing:0.630000px;}
.ls82{letter-spacing:0.637500px;}
.ls5{letter-spacing:0.660000px;}
.ls6b{letter-spacing:0.663000px;}
.ls8b{letter-spacing:0.688500px;}
.ls6c{letter-spacing:0.714000px;}
.ls2{letter-spacing:0.720000px;}
.ls88{letter-spacing:0.739500px;}
.ls4e{letter-spacing:0.750000px;}
.ls3d{letter-spacing:0.756000px;}
.ls70{letter-spacing:0.765000px;}
.ls2d{letter-spacing:0.780000px;}
.ls3e{letter-spacing:0.798000px;}
.ls1d{letter-spacing:0.810000px;}
.ls7e{letter-spacing:0.816000px;}
.ls9{letter-spacing:0.840000px;}
.ls68{letter-spacing:0.867000px;}
.lsb{letter-spacing:0.900000px;}
.ls67{letter-spacing:0.918000px;}
.ls3a{letter-spacing:0.930000px;}
.ls89{letter-spacing:0.943500px;}
.ls18{letter-spacing:0.960000px;}
.ls7c{letter-spacing:0.969000px;}
.ls81{letter-spacing:0.994500px;}
.ls1e{letter-spacing:1.020000px;}
.ls47{letter-spacing:1.043981px;}
.ls1c{letter-spacing:1.050000px;}
.ls80{letter-spacing:1.071000px;}
.ls1a{letter-spacing:1.080000px;}
.ls79{letter-spacing:1.122000px;}
.ls24{letter-spacing:1.140000px;}
.lsa{letter-spacing:1.200000px;}
.ls57{letter-spacing:1.228175px;}
.ls1f{letter-spacing:1.260000px;}
.ls86{letter-spacing:1.275000px;}
.ls30{letter-spacing:1.320000px;}
.ls25{letter-spacing:1.380000px;}
.ls42{letter-spacing:1.415989px;}
.ls85{letter-spacing:1.428000px;}
.ls31{letter-spacing:1.433976px;}
.ls1b{letter-spacing:1.440000px;}
.ls28{letter-spacing:1.470000px;}
.ls7d{letter-spacing:1.479000px;}
.ls20{letter-spacing:1.500000px;}
.ls46{letter-spacing:1.530000px;}
.ls41{letter-spacing:1.560000px;}
.ls5f{letter-spacing:1.590000px;}
.ls33{letter-spacing:1.620000px;}
.ls55{letter-spacing:1.680000px;}
.ls3f{letter-spacing:1.740000px;}
.ls87{letter-spacing:1.785000px;}
.ls3c{letter-spacing:1.800000px;}
.ls4a{letter-spacing:1.860000px;}
.ls4c{letter-spacing:1.907974px;}
.ls62{letter-spacing:1.920000px;}
.ls7b{letter-spacing:1.938000px;}
.ls48{letter-spacing:1.980000px;}
.ls4d{letter-spacing:2.040000px;}
.ls40{letter-spacing:2.052000px;}
.ls4b{letter-spacing:2.100000px;}
.ls44{letter-spacing:2.160000px;}
.ls56{letter-spacing:2.176213px;}
.ls54{letter-spacing:2.190000px;}
.ls60{letter-spacing:2.220000px;}
.ls53{letter-spacing:2.280000px;}
.ls61{letter-spacing:2.400000px;}
.ls45{letter-spacing:2.436000px;}
.ls3b{letter-spacing:2.460000px;}
.ls51{letter-spacing:3.000000px;}
.ls52{letter-spacing:3.030000px;}
.ls0{letter-spacing:3.990000px;}
.ls39{letter-spacing:80.309455px;}
.ls38{letter-spacing:105.809455px;}
.ls35{letter-spacing:118.559455px;}
.ls5d{letter-spacing:121.139374px;}
.ls37{letter-spacing:209.491736px;}
.ls36{letter-spacing:426.809967px;}
.ls5b{letter-spacing:625.667982px;}
.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;}
}
.ws2{word-spacing:-18.432000px;}
.ws77{word-spacing:-16.800000px;}
.ws20{word-spacing:-16.500000px;}
.ws79{word-spacing:-16.140000px;}
.wsab{word-spacing:-15.960000px;}
.ws83{word-spacing:-15.900000px;}
.ws84{word-spacing:-15.840000px;}
.ws60{word-spacing:-15.720000px;}
.ws9b{word-spacing:-15.660000px;}
.ws72{word-spacing:-15.480000px;}
.ws1f{word-spacing:-15.300000px;}
.ws85{word-spacing:-15.060000px;}
.ws1e{word-spacing:-15.000000px;}
.ws4c{word-spacing:-14.940000px;}
.wsb6{word-spacing:-14.820000px;}
.wsb9{word-spacing:-13.005000px;}
.ws9{word-spacing:-12.750000px;}
.ws4b{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws6{word-spacing:-11.520000px;}
.wsa4{word-spacing:-10.500000px;}
.wsb7{word-spacing:-10.149000px;}
.ws1{word-spacing:-9.996000px;}
.wsb8{word-spacing:-9.690000px;}
.ws0{word-spacing:-9.408000px;}
.ws8{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws11{word-spacing:-7.500000px;}
.ws71{word-spacing:-6.375000px;}
.wsb3{word-spacing:-2.400000px;}
.wsa{word-spacing:-1.890000px;}
.wsc9{word-spacing:-1.785000px;}
.wsb1{word-spacing:-1.740000px;}
.wsb5{word-spacing:-1.620000px;}
.ws19{word-spacing:-1.560000px;}
.ws12{word-spacing:-1.500000px;}
.ws64{word-spacing:-1.440000px;}
.wsf0{word-spacing:-1.428000px;}
.ws1b{word-spacing:-1.380000px;}
.wsc8{word-spacing:-1.377000px;}
.wsd4{word-spacing:-1.326000px;}
.ws56{word-spacing:-1.320000px;}
.wsbe{word-spacing:-1.275000px;}
.ws5f{word-spacing:-1.260000px;}
.wsfb{word-spacing:-1.224000px;}
.ws21{word-spacing:-1.200000px;}
.ws14{word-spacing:-1.140000px;}
.wse0{word-spacing:-1.122000px;}
.ws2d{word-spacing:-1.080000px;}
.wscc{word-spacing:-1.071000px;}
.ws76{word-spacing:-1.050000px;}
.ws88{word-spacing:-1.020000px;}
.wsc0{word-spacing:-0.969000px;}
.ws49{word-spacing:-0.960000px;}
.wsf1{word-spacing:-0.918000px;}
.ws41{word-spacing:-0.900000px;}
.ws26{word-spacing:-0.840000px;}
.wsee{word-spacing:-0.816000px;}
.ws4e{word-spacing:-0.780000px;}
.wscd{word-spacing:-0.765000px;}
.ws15{word-spacing:-0.720000px;}
.wsce{word-spacing:-0.714000px;}
.wse7{word-spacing:-0.663000px;}
.ws44{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.612000px;}
.ws69{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.570000px;}
.wse9{word-spacing:-0.561000px;}
.ws9a{word-spacing:-0.546000px;}
.ws5b{word-spacing:-0.540000px;}
.wsfc{word-spacing:-0.510000px;}
.ws46{word-spacing:-0.480000px;}
.wsd7{word-spacing:-0.459000px;}
.ws55{word-spacing:-0.420000px;}
.ws59{word-spacing:-0.360000px;}
.wsd6{word-spacing:-0.357000px;}
.ws5{word-spacing:-0.300000px;}
.wsc7{word-spacing:-0.264000px;}
.wsc6{word-spacing:-0.255000px;}
.ws5a{word-spacing:-0.240000px;}
.wse1{word-spacing:-0.204000px;}
.ws4a{word-spacing:-0.180000px;}
.wsf8{word-spacing:-0.153000px;}
.ws42{word-spacing:-0.120000px;}
.wsf3{word-spacing:-0.102000px;}
.ws7{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.060000px;}
.ws100{word-spacing:-0.051000px;}
.wsb{word-spacing:0.000000px;}
.wsec{word-spacing:0.051000px;}
.ws32{word-spacing:0.060000px;}
.wsd8{word-spacing:0.102000px;}
.ws22{word-spacing:0.120000px;}
.wsfa{word-spacing:0.153000px;}
.ws66{word-spacing:0.180000px;}
.ws39{word-spacing:0.240000px;}
.wsbc{word-spacing:0.255000px;}
.ws33{word-spacing:0.300000px;}
.wsbd{word-spacing:0.357000px;}
.ws3a{word-spacing:0.360000px;}
.wsf{word-spacing:0.420000px;}
.ws7e{word-spacing:0.459000px;}
.ws9e{word-spacing:0.480000px;}
.ws101{word-spacing:0.510000px;}
.ws38{word-spacing:0.540000px;}
.ws34{word-spacing:0.600000px;}
.wsff{word-spacing:0.612000px;}
.wsbb{word-spacing:0.660000px;}
.ws6e{word-spacing:0.663000px;}
.ws10{word-spacing:0.720000px;}
.wsc1{word-spacing:0.765000px;}
.ws87{word-spacing:0.780000px;}
.wsf4{word-spacing:0.816000px;}
.wsdb{word-spacing:0.867000px;}
.wse{word-spacing:0.900000px;}
.wsc5{word-spacing:0.918000px;}
.ws67{word-spacing:0.960000px;}
.wsc4{word-spacing:0.969000px;}
.ws43{word-spacing:1.020000px;}
.ws90{word-spacing:1.071000px;}
.ws63{word-spacing:1.080000px;}
.ws103{word-spacing:1.122000px;}
.ws1a{word-spacing:1.140000px;}
.ws82{word-spacing:1.173000px;}
.ws99{word-spacing:1.200000px;}
.wsef{word-spacing:1.224000px;}
.ws28{word-spacing:1.260000px;}
.wsbf{word-spacing:1.275000px;}
.ws8e{word-spacing:1.320000px;}
.wsd3{word-spacing:1.326000px;}
.wsd5{word-spacing:1.377000px;}
.ws23{word-spacing:1.380000px;}
.ws6c{word-spacing:1.440000px;}
.wsd9{word-spacing:1.479000px;}
.wsd{word-spacing:1.500000px;}
.wse3{word-spacing:1.530000px;}
.ws74{word-spacing:1.560000px;}
.wsf9{word-spacing:1.581000px;}
.ws75{word-spacing:1.620000px;}
.wsd2{word-spacing:1.632000px;}
.ws4d{word-spacing:1.680000px;}
.wse8{word-spacing:1.734000px;}
.ws51{word-spacing:1.740000px;}
.wscb{word-spacing:1.785000px;}
.ws29{word-spacing:1.800000px;}
.wsca{word-spacing:1.836000px;}
.ws78{word-spacing:1.848000px;}
.ws5d{word-spacing:1.860000px;}
.wse4{word-spacing:1.887000px;}
.ws8a{word-spacing:1.920000px;}
.wsd0{word-spacing:1.938000px;}
.ws16{word-spacing:1.980000px;}
.wse5{word-spacing:1.989000px;}
.ws25{word-spacing:2.040000px;}
.ws18{word-spacing:2.100000px;}
.ws40{word-spacing:2.160000px;}
.ws65{word-spacing:2.220000px;}
.ws89{word-spacing:2.280000px;}
.ws52{word-spacing:2.340000px;}
.wsc3{word-spacing:2.397000px;}
.ws3b{word-spacing:2.400000px;}
.wsa0{word-spacing:2.448000px;}
.ws3c{word-spacing:2.460000px;}
.ws24{word-spacing:2.520000px;}
.wscf{word-spacing:2.550000px;}
.ws57{word-spacing:2.580000px;}
.wsd1{word-spacing:2.601000px;}
.ws3d{word-spacing:2.640000px;}
.wsea{word-spacing:2.652000px;}
.ws27{word-spacing:2.700000px;}
.wsa3{word-spacing:2.703000px;}
.ws102{word-spacing:2.754000px;}
.ws73{word-spacing:2.760000px;}
.wsc2{word-spacing:2.805000px;}
.ws2e{word-spacing:2.820000px;}
.wsdd{word-spacing:2.856000px;}
.ws50{word-spacing:2.880000px;}
.wse2{word-spacing:2.907000px;}
.ws31{word-spacing:2.940000px;}
.wsed{word-spacing:2.958000px;}
.ws2c{word-spacing:3.000000px;}
.wsf7{word-spacing:3.009000px;}
.ws45{word-spacing:3.060000px;}
.ws2a{word-spacing:3.120000px;}
.wsfe{word-spacing:3.162000px;}
.ws3e{word-spacing:3.180000px;}
.ws5e{word-spacing:3.240000px;}
.ws68{word-spacing:3.300000px;}
.wse6{word-spacing:3.315000px;}
.ws36{word-spacing:3.360000px;}
.ws48{word-spacing:3.420000px;}
.ws54{word-spacing:3.480000px;}
.ws53{word-spacing:3.540000px;}
.wsf5{word-spacing:3.570000px;}
.ws6b{word-spacing:3.600000px;}
.ws5c{word-spacing:3.660000px;}
.wseb{word-spacing:3.672000px;}
.ws17{word-spacing:3.720000px;}
.ws8b{word-spacing:3.780000px;}
.wsda{word-spacing:3.825000px;}
.wsba{word-spacing:3.840000px;}
.wsa2{word-spacing:3.876000px;}
.ws35{word-spacing:3.900000px;}
.ws8d{word-spacing:3.960000px;}
.ws2f{word-spacing:4.020000px;}
.ws6a{word-spacing:4.140000px;}
.wsa8{word-spacing:4.200000px;}
.wsa9{word-spacing:4.260000px;}
.ws8c{word-spacing:4.320000px;}
.wsf6{word-spacing:4.335000px;}
.ws58{word-spacing:4.380000px;}
.ws104{word-spacing:4.386000px;}
.ws6f{word-spacing:4.437000px;}
.ws86{word-spacing:4.440000px;}
.ws37{word-spacing:4.500000px;}
.wsaf{word-spacing:4.560000px;}
.ws3f{word-spacing:4.740000px;}
.ws7f{word-spacing:4.743000px;}
.wsae{word-spacing:4.800000px;}
.ws9d{word-spacing:4.920000px;}
.ws2b{word-spacing:4.980000px;}
.ws47{word-spacing:5.040000px;}
.ws30{word-spacing:5.100000px;}
.wsad{word-spacing:5.160000px;}
.ws4f{word-spacing:5.340000px;}
.wsf2{word-spacing:5.355000px;}
.wsac{word-spacing:5.400000px;}
.wsdf{word-spacing:5.457000px;}
.wsb0{word-spacing:5.460000px;}
.wsb2{word-spacing:5.520000px;}
.wsb4{word-spacing:5.640000px;}
.ws62{word-spacing:5.820000px;}
.wsde{word-spacing:5.865000px;}
.wsaa{word-spacing:6.000000px;}
.ws91{word-spacing:6.171000px;}
.ws97{word-spacing:6.222000px;}
.wsa7{word-spacing:6.540000px;}
.wsfd{word-spacing:7.038000px;}
.ws70{word-spacing:7.242000px;}
.ws81{word-spacing:7.446000px;}
.wsa1{word-spacing:7.548000px;}
.wsdc{word-spacing:7.701000px;}
.ws94{word-spacing:8.466000px;}
.ws9c{word-spacing:8.700000px;}
.ws92{word-spacing:9.027000px;}
.ws6d{word-spacing:10.149000px;}
.ws96{word-spacing:11.118000px;}
.ws80{word-spacing:11.322000px;}
.ws7d{word-spacing:11.679000px;}
.ws98{word-spacing:11.730000px;}
.ws8f{word-spacing:12.648000px;}
.ws95{word-spacing:13.260000px;}
.ws93{word-spacing:13.362000px;}
.ws9f{word-spacing:14.025000px;}
.ws7a{word-spacing:19.635000px;}
.ws7c{word-spacing:28.152000px;}
.ws7b{word-spacing:48.093000px;}
.ws1c{word-spacing:72.267000px;}
.wsa6{word-spacing:294.168000px;}
.wsa5{word-spacing:385.458000px;}
.ws61{word-spacing:478.583977px;}
._10{margin-left:-2959.376944px;}
._a{margin-left:-96.900000px;}
._52{margin-left:-22.389000px;}
._58{margin-left:-19.584000px;}
._30{margin-left:-18.345007px;}
._7{margin-left:-16.575000px;}
._55{margin-left:-15.402000px;}
._24{margin-left:-14.280007px;}
._57{margin-left:-13.056000px;}
._2a{margin-left:-11.880000px;}
._c{margin-left:-10.308000px;}
._11{margin-left:-9.270010px;}
._6{margin-left:-7.764000px;}
._26{margin-left:-6.000000px;}
._5{margin-left:-4.992000px;}
._2{margin-left:-3.686400px;}
._e{margin-left:-2.682000px;}
._0{margin-left:-1.632000px;}
._1{width:1.056000px;}
._d{width:2.352000px;}
._f{width:3.551983px;}
._59{width:5.185800px;}
._25{width:6.547895px;}
._4f{width:8.058000px;}
._51{width:9.588000px;}
._28{width:10.590543px;}
._2b{width:12.600000px;}
._29{width:14.940000px;}
._12{width:16.380300px;}
._8{width:18.360000px;}
._27{width:19.560000px;}
._54{width:21.318000px;}
._53{width:23.256007px;}
._4d{width:24.613105px;}
._5a{width:25.854000px;}
._50{width:26.877000px;}
._4e{width:29.376000px;}
._56{width:37.536000px;}
._4{width:39.355150px;}
._3{width:40.930758px;}
._16{width:47.159328px;}
._9{width:54.621000px;}
._40{width:56.202000px;}
._4c{width:81.702000px;}
._43{width:85.841982px;}
._22{width:98.175000px;}
._3b{width:107.202000px;}
._35{width:120.651600px;}
._31{width:121.665000px;}
._14{width:123.675000px;}
._36{width:125.307000px;}
._3c{width:132.702000px;}
._18{width:136.425000px;}
._42{width:144.548418px;}
._3d{width:145.655982px;}
._38{width:146.894400px;}
._1c{width:149.277000px;}
._32{width:150.705000px;}
._2d{width:156.315000px;}
._3e{width:170.952000px;}
._2c{width:176.745000px;}
._2e{width:181.101000px;}
._41{width:185.333982px;}
._45{width:196.008036px;}
._44{width:197.318964px;}
._34{width:204.320400px;}
._47{width:216.188982px;}
._33{width:218.046000px;}
._1a{width:219.111000px;}
._19{width:231.744000px;}
._1f{width:241.689000px;}
._2f{width:243.423000px;}
._37{width:266.271000px;}
._46{width:270.197982px;}
._4a{width:272.777982px;}
._48{width:275.756982px;}
._17{width:278.511000px;}
._39{width:281.418000px;}
._1d{width:309.366000px;}
._4b{width:317.117982px;}
._3a{width:319.973982px;}
._3f{width:349.502982px;}
._49{width:359.549982px;}
._1b{width:363.375000px;}
._21{width:365.955000px;}
._1e{width:368.934000px;}
._23{width:410.295000px;}
._13{width:413.151000px;}
._20{width:452.727000px;}
._15{width:506.532000px;}
._b{width:1751.493075px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y3b{bottom:112.938300px;}
.y198{bottom:113.353800px;}
.y19d{bottom:113.379298px;}
.y1ef{bottom:113.408705px;}
.y71{bottom:113.415344px;}
.y14c{bottom:113.713796px;}
.y1c3{bottom:113.719800px;}
.y151{bottom:113.739295px;}
.y2d{bottom:114.211349px;}
.y211{bottom:114.735260px;}
.ya2{bottom:114.735306px;}
.yde{bottom:114.874786px;}
.y2d5{bottom:116.997307px;}
.y21f{bottom:126.043056px;}
.y197{bottom:128.347800px;}
.y19c{bottom:128.373298px;}
.y14b{bottom:128.707796px;}
.y1c2{bottom:128.713800px;}
.y150{bottom:128.733295px;}
.y293{bottom:131.608823px;}
.y316{bottom:131.991275px;}
.y2d4{bottom:131.991307px;}
.y70{bottom:132.165344px;}
.y2c{bottom:132.961349px;}
.y3a{bottom:133.032303px;}
.y210{bottom:133.485260px;}
.ya1{bottom:133.485306px;}
.ydd{bottom:133.624786px;}
.y256{bottom:136.759814px;}
.y1ee{bottom:137.761196px;}
.y21e{bottom:141.037056px;}
.y196{bottom:143.341800px;}
.y19b{bottom:143.367298px;}
.y14a{bottom:143.701796px;}
.y14f{bottom:143.727295px;}
.y292{bottom:146.602823px;}
.y315{bottom:146.985275px;}
.y2d3{bottom:146.985307px;}
.y6f{bottom:150.915344px;}
.y2b{bottom:151.711349px;}
.y255{bottom:151.753814px;}
.y20f{bottom:152.235260px;}
.ya0{bottom:152.235306px;}
.ydc{bottom:152.374786px;}
.y39{bottom:155.579556px;}
.y1c6{bottom:156.695093px;}
.y1ed{bottom:157.013100px;}
.y195{bottom:158.335800px;}
.y19a{bottom:158.361298px;}
.y149{bottom:158.695796px;}
.y14e{bottom:158.721295px;}
.y291{bottom:161.596823px;}
.y314{bottom:161.979275px;}
.y2d2{bottom:161.979307px;}
.y254{bottom:166.747814px;}
.y6e{bottom:169.665344px;}
.y2a{bottom:170.461349px;}
.y20e{bottom:170.985260px;}
.y9f{bottom:170.985306px;}
.y21d{bottom:171.037806px;}
.ydb{bottom:171.124786px;}
.y38{bottom:173.032794px;}
.y194{bottom:173.329800px;}
.y199{bottom:173.355298px;}
.y148{bottom:173.689796px;}
.y14d{bottom:173.715295px;}
.y1c5{bottom:175.488593px;}
.y1ec{bottom:176.265152px;}
.y290{bottom:176.590823px;}
.y313{bottom:176.973275px;}
.y2d1{bottom:176.973307px;}
.y1c1{bottom:179.446050px;}
.y253{bottom:181.741814px;}
.y21c{bottom:186.031806px;}
.y6d{bottom:188.415344px;}
.y29{bottom:189.211349px;}
.y20d{bottom:189.735260px;}
.y9e{bottom:189.735306px;}
.yda{bottom:189.874786px;}
.y28f{bottom:191.584823px;}
.y312{bottom:191.967275px;}
.y2d0{bottom:191.967307px;}
.y37{bottom:193.126808px;}
.y1c0{bottom:194.440050px;}
.y1eb{bottom:195.517044px;}
.y252{bottom:196.735814px;}
.y21b{bottom:201.025806px;}
.y1c4{bottom:203.576843px;}
.y28e{bottom:206.578823px;}
.y311{bottom:206.961275px;}
.y2cf{bottom:206.961307px;}
.y6c{bottom:207.165344px;}
.y28{bottom:207.961349px;}
.y20c{bottom:208.485260px;}
.y9d{bottom:208.485306px;}
.yd9{bottom:208.624786px;}
.y1bf{bottom:209.434050px;}
.y1ea{bottom:209.672138px;}
.y36{bottom:210.580059px;}
.y251{bottom:211.729814px;}
.y21a{bottom:216.019806px;}
.y28d{bottom:221.572823px;}
.y310{bottom:221.955275px;}
.y2ce{bottom:221.955307px;}
.y6b{bottom:225.915344px;}
.y27{bottom:226.711349px;}
.y250{bottom:226.723814px;}
.y20b{bottom:227.235260px;}
.y9c{bottom:227.235306px;}
.yd8{bottom:227.374786px;}
.y35{bottom:230.674049px;}
.y219{bottom:231.013806px;}
.y28c{bottom:236.566823px;}
.y30f{bottom:236.949275px;}
.y2cd{bottom:236.949307px;}
.y208{bottom:237.461540px;}
.y24f{bottom:241.717814px;}
.y6a{bottom:244.665344px;}
.y26{bottom:245.461349px;}
.y20a{bottom:245.985260px;}
.y9b{bottom:245.985306px;}
.y218{bottom:246.007806px;}
.yd7{bottom:246.124786px;}
.y34{bottom:248.127300px;}
.y28b{bottom:251.560823px;}
.y30e{bottom:251.943275px;}
.y2cc{bottom:251.943307px;}
.y207{bottom:252.451040px;}
.y24e{bottom:256.711814px;}
.y217{bottom:261.001806px;}
.y69{bottom:263.415344px;}
.y25{bottom:264.211349px;}
.y209{bottom:264.735260px;}
.y9a{bottom:264.735306px;}
.yd6{bottom:264.874786px;}
.y28a{bottom:266.554823px;}
.y30d{bottom:266.937275px;}
.y2cb{bottom:266.937307px;}
.y33{bottom:268.221291px;}
.y206{bottom:271.244540px;}
.y24d{bottom:271.705814px;}
.y216{bottom:275.995806px;}
.y289{bottom:281.548823px;}
.y30c{bottom:281.931275px;}
.y2ca{bottom:281.931307px;}
.y68{bottom:282.165344px;}
.y24{bottom:282.961349px;}
.yca{bottom:283.485260px;}
.y99{bottom:283.485306px;}
.yd5{bottom:283.624786px;}
.y1b6{bottom:283.624947px;}
.y32{bottom:285.680541px;}
.y24c{bottom:286.699814px;}
.y205{bottom:289.961540px;}
.y288{bottom:296.542823px;}
.y30b{bottom:296.925275px;}
.y2c9{bottom:296.925307px;}
.y31{bottom:300.674541px;}
.y67{bottom:300.915344px;}
.y24b{bottom:301.693814px;}
.y23{bottom:301.711349px;}
.yc9{bottom:302.235260px;}
.y98{bottom:302.235306px;}
.y107{bottom:302.239746px;}
.yd4{bottom:302.374786px;}
.y1a6{bottom:302.374947px;}
.y215{bottom:305.996556px;}
.y204{bottom:308.674049px;}
.y287{bottom:311.536823px;}
.y30a{bottom:311.919275px;}
.y2c8{bottom:311.919307px;}
.y24a{bottom:316.687814px;}
.y66{bottom:319.665344px;}
.y22{bottom:320.461349px;}
.y30{bottom:320.768555px;}
.yc8{bottom:320.985260px;}
.y97{bottom:320.985306px;}
.y106{bottom:320.989746px;}
.y214{bottom:320.990556px;}
.yd3{bottom:321.124786px;}
.y1a5{bottom:321.124809px;}
.y1b5{bottom:321.124947px;}
.y203{bottom:323.638054px;}
.y286{bottom:326.530823px;}
.y309{bottom:326.913275px;}
.y2c7{bottom:326.913307px;}
.y249{bottom:331.681814px;}
.y65{bottom:338.415344px;}
.y21{bottom:339.211349px;}
.yc7{bottom:339.735260px;}
.y96{bottom:339.735306px;}
.y105{bottom:339.739746px;}
.yd2{bottom:339.874786px;}
.y1a4{bottom:339.874809px;}
.y1b4{bottom:339.874947px;}
.y285{bottom:341.524823px;}
.y308{bottom:341.907275px;}
.y2c6{bottom:341.907307px;}
.y202{bottom:342.355054px;}
.y2f{bottom:345.769046px;}
.y248{bottom:346.675814px;}
.y213{bottom:350.991306px;}
.y284{bottom:356.518823px;}
.y307{bottom:356.901275px;}
.y2c5{bottom:356.901307px;}
.y64{bottom:357.165344px;}
.y20{bottom:357.961349px;}
.yc6{bottom:358.485260px;}
.y95{bottom:358.485306px;}
.y104{bottom:358.489746px;}
.yd1{bottom:358.624786px;}
.y1b3{bottom:358.624947px;}
.y2e{bottom:360.763046px;}
.y201{bottom:361.072054px;}
.y247{bottom:361.669814px;}
.y212{bottom:365.985306px;}
.y283{bottom:371.512823px;}
.y306{bottom:371.895275px;}
.y2c4{bottom:371.895307px;}
.y63{bottom:375.915344px;}
.y246{bottom:376.663814px;}
.y1f{bottom:376.711349px;}
.yc5{bottom:377.235260px;}
.y94{bottom:377.235306px;}
.y103{bottom:377.239746px;}
.yd0{bottom:377.374786px;}
.y1b2{bottom:377.374947px;}
.y200{bottom:379.789054px;}
.y282{bottom:386.506823px;}
.y305{bottom:386.889275px;}
.y2c3{bottom:386.889307px;}
.y245{bottom:391.657814px;}
.y62{bottom:394.665344px;}
.yc4{bottom:395.985260px;}
.y93{bottom:395.985306px;}
.y102{bottom:395.989746px;}
.ycf{bottom:396.124786px;}
.y1b1{bottom:396.124947px;}
.y1ff{bottom:398.506054px;}
.y281{bottom:401.500823px;}
.y304{bottom:401.883275px;}
.y2c2{bottom:401.883307px;}
.y244{bottom:406.651814px;}
.y61{bottom:413.415344px;}
.y16a{bottom:413.683777px;}
.y1e{bottom:414.211349px;}
.y18d{bottom:414.733772px;}
.yc3{bottom:414.735260px;}
.y92{bottom:414.735306px;}
.yce{bottom:414.874786px;}
.y1b0{bottom:414.874947px;}
.y280{bottom:416.494823px;}
.y303{bottom:416.877275px;}
.y2c1{bottom:416.877307px;}
.y1fe{bottom:417.223054px;}
.y243{bottom:421.645814px;}
.y27f{bottom:431.488823px;}
.y302{bottom:431.871275px;}
.y2c0{bottom:431.871307px;}
.y60{bottom:432.165344px;}
.y169{bottom:432.433777px;}
.y18c{bottom:433.483772px;}
.yc2{bottom:433.485260px;}
.y91{bottom:433.485306px;}
.y101{bottom:433.489746px;}
.ycd{bottom:433.624786px;}
.y1af{bottom:433.624947px;}
.y1fd{bottom:435.940054px;}
.y242{bottom:436.639814px;}
.y27e{bottom:446.482823px;}
.y301{bottom:446.865275px;}
.y2bf{bottom:446.865307px;}
.y5f{bottom:450.915344px;}
.y168{bottom:451.183777px;}
.y241{bottom:451.633814px;}
.y18b{bottom:452.233772px;}
.yc1{bottom:452.235260px;}
.y90{bottom:452.235306px;}
.y100{bottom:452.239746px;}
.ycc{bottom:452.374786px;}
.y1ae{bottom:452.374947px;}
.y1fc{bottom:454.657054px;}
.y27d{bottom:461.476823px;}
.y300{bottom:461.859275px;}
.y2be{bottom:461.859307px;}
.y240{bottom:466.627814px;}
.y147{bottom:468.783279px;}
.y5e{bottom:469.665344px;}
.y167{bottom:469.933777px;}
.y1d{bottom:470.461395px;}
.y18a{bottom:470.983772px;}
.yc0{bottom:470.985260px;}
.y8f{bottom:470.985306px;}
.ycb{bottom:471.124786px;}
.y1ad{bottom:471.124947px;}
.y1fb{bottom:473.351554px;}
.y27c{bottom:476.470823px;}
.y2ff{bottom:476.853275px;}
.y2bd{bottom:476.853307px;}
.y23f{bottom:481.621814px;}
.y146{bottom:487.533279px;}
.y5d{bottom:488.415344px;}
.y166{bottom:488.683777px;}
.y189{bottom:489.733772px;}
.ybf{bottom:489.735260px;}
.y8e{bottom:489.735306px;}
.yff{bottom:489.739746px;}
.y1a3{bottom:489.874786px;}
.y1ac{bottom:489.874947px;}
.y27b{bottom:491.464823px;}
.y2fe{bottom:491.847275px;}
.y2bc{bottom:491.847307px;}
.y1fa{bottom:492.068554px;}
.y23e{bottom:496.615814px;}
.y145{bottom:506.283279px;}
.y27a{bottom:506.458823px;}
.y2fd{bottom:506.841275px;}
.y2bb{bottom:506.841307px;}
.y5c{bottom:507.165344px;}
.y165{bottom:507.433777px;}
.y1c{bottom:507.961395px;}
.y188{bottom:508.483772px;}
.ybe{bottom:508.485260px;}
.y8d{bottom:508.485306px;}
.yfe{bottom:508.489746px;}
.y1a2{bottom:508.624786px;}
.y1ab{bottom:508.624947px;}
.y1f9{bottom:510.785554px;}
.y112{bottom:520.109377px;}
.y279{bottom:521.452823px;}
.y2fc{bottom:521.835275px;}
.y2ba{bottom:521.835307px;}
.y144{bottom:525.033279px;}
.y5b{bottom:525.915344px;}
.y164{bottom:526.183777px;}
.y1b{bottom:526.711395px;}
.y187{bottom:527.233772px;}
.ybd{bottom:527.235260px;}
.y8c{bottom:527.235306px;}
.yfd{bottom:527.239746px;}
.y1a1{bottom:527.374786px;}
.y1aa{bottom:527.374947px;}
.y1f8{bottom:529.502554px;}
.y23d{bottom:530.365814px;}
.y278{bottom:536.446823px;}
.y2fb{bottom:536.829275px;}
.y2b9{bottom:536.829307px;}
.y143{bottom:543.783279px;}
.y111{bottom:544.461914px;}
.y5a{bottom:544.665344px;}
.y163{bottom:544.933777px;}
.y1a{bottom:545.461395px;}
.y186{bottom:545.983772px;}
.ybc{bottom:545.985260px;}
.y8b{bottom:545.985306px;}
.yfc{bottom:545.989746px;}
.y1a0{bottom:546.124786px;}
.y1a9{bottom:546.124947px;}
.y1f7{bottom:548.219554px;}
.y277{bottom:551.440823px;}
.y33b{bottom:551.670339px;}
.y2fa{bottom:551.823275px;}
.y2b8{bottom:551.823307px;}
.y142{bottom:562.533279px;}
.y59{bottom:563.415344px;}
.y162{bottom:563.683777px;}
.y110{bottom:563.713943px;}
.y19{bottom:564.211395px;}
.y185{bottom:564.733772px;}
.ybb{bottom:564.735260px;}
.y8a{bottom:564.735306px;}
.yfb{bottom:564.739746px;}
.y19f{bottom:564.874786px;}
.y1a8{bottom:564.874947px;}
.y276{bottom:566.434823px;}
.y33a{bottom:566.664339px;}
.y2f9{bottom:566.817275px;}
.y2b7{bottom:566.817307px;}
.y1f6{bottom:566.936554px;}
.y141{bottom:581.283279px;}
.y275{bottom:581.428823px;}
.y339{bottom:581.658339px;}
.y2f8{bottom:581.811275px;}
.y2b6{bottom:581.811307px;}
.y58{bottom:582.165344px;}
.y161{bottom:582.433777px;}
.y18{bottom:582.961395px;}
.y10f{bottom:582.965836px;}
.y184{bottom:583.483772px;}
.yba{bottom:583.485260px;}
.y89{bottom:583.485306px;}
.yfa{bottom:583.489746px;}
.y19e{bottom:583.624786px;}
.y1a7{bottom:583.624947px;}
.y1f5{bottom:585.649063px;}
.y23c{bottom:592.581323px;}
.y274{bottom:596.422823px;}
.y338{bottom:596.652339px;}
.y2f7{bottom:596.805275px;}
.y2b5{bottom:596.805307px;}
.y10e{bottom:597.135920px;}
.y140{bottom:600.033279px;}
.y1f4{bottom:600.640036px;}
.y57{bottom:600.915344px;}
.y160{bottom:601.183777px;}
.y17{bottom:601.711395px;}
.y183{bottom:602.233772px;}
.yb9{bottom:602.235260px;}
.y88{bottom:602.235306px;}
.yf9{bottom:602.239746px;}
.y23b{bottom:607.575323px;}
.y273{bottom:611.416823px;}
.y337{bottom:611.646339px;}
.y2f6{bottom:611.799275px;}
.y2b4{bottom:611.799307px;}
.y10d{bottom:612.129920px;}
.y13f{bottom:618.783279px;}
.y1f3{bottom:619.357036px;}
.y56{bottom:619.665344px;}
.y15f{bottom:619.933777px;}
.y16{bottom:620.461395px;}
.y182{bottom:620.983772px;}
.yb8{bottom:620.985260px;}
.y87{bottom:620.985306px;}
.yf8{bottom:620.989746px;}
.y23a{bottom:622.569323px;}
.y272{bottom:626.410823px;}
.y336{bottom:626.640339px;}
.y2f5{bottom:626.793275px;}
.y2b3{bottom:626.793307px;}
.y10c{bottom:627.123920px;}
.y1ba{bottom:633.868800px;}
.y1be{bottom:633.881550px;}
.y13e{bottom:637.533279px;}
.y239{bottom:637.563323px;}
.y1f2{bottom:638.074036px;}
.y55{bottom:638.415344px;}
.y15e{bottom:638.683777px;}
.y15{bottom:639.211395px;}
.y181{bottom:639.733772px;}
.yb7{bottom:639.735260px;}
.y86{bottom:639.735306px;}
.yf7{bottom:639.739746px;}
.y271{bottom:641.404823px;}
.y335{bottom:641.634339px;}
.y2f4{bottom:641.787275px;}
.y2b2{bottom:641.787307px;}
.y10b{bottom:647.217728px;}
.y1b9{bottom:648.862800px;}
.y1bd{bottom:648.875550px;}
.y238{bottom:652.557323px;}
.y13d{bottom:656.283279px;}
.y270{bottom:656.398823px;}
.y334{bottom:656.628339px;}
.y2f3{bottom:656.781275px;}
.y2b1{bottom:656.781307px;}
.y54{bottom:657.165344px;}
.y15d{bottom:657.433777px;}
.y14{bottom:657.961395px;}
.y180{bottom:658.483772px;}
.yb6{bottom:658.485260px;}
.y85{bottom:658.485306px;}
.yf6{bottom:658.489746px;}
.y10a{bottom:661.371344px;}
.y1b8{bottom:663.856800px;}
.y1bc{bottom:663.869550px;}
.y1f1{bottom:665.417545px;}
.y237{bottom:667.551323px;}
.y26f{bottom:671.392823px;}
.y333{bottom:671.622339px;}
.y2f2{bottom:671.775275px;}
.y2b0{bottom:671.775307px;}
.y13c{bottom:675.033325px;}
.y53{bottom:675.915344px;}
.y15c{bottom:676.183777px;}
.y109{bottom:676.365344px;}
.y13{bottom:676.711395px;}
.y17f{bottom:677.233772px;}
.yb5{bottom:677.235260px;}
.y84{bottom:677.235306px;}
.yf5{bottom:677.239746px;}
.y1b7{bottom:678.850800px;}
.y1bb{bottom:678.863550px;}
.y1f0{bottom:680.411545px;}
.y236{bottom:682.545323px;}
.y26e{bottom:686.386823px;}
.y332{bottom:686.616339px;}
.y2f1{bottom:686.769275px;}
.y2af{bottom:686.769307px;}
.y13b{bottom:693.783325px;}
.y52{bottom:694.665344px;}
.y15b{bottom:694.933777px;}
.y12{bottom:695.461395px;}
.y17e{bottom:695.983772px;}
.yb4{bottom:695.985260px;}
.y83{bottom:695.985306px;}
.yf4{bottom:695.989746px;}
.y235{bottom:697.539323px;}
.y26d{bottom:701.380823px;}
.y331{bottom:701.610339px;}
.y2f0{bottom:701.763275px;}
.y2ae{bottom:701.763307px;}
.y126{bottom:704.072228px;}
.y1e9{bottom:705.902115px;}
.y234{bottom:712.533323px;}
.y13a{bottom:712.533325px;}
.y51{bottom:713.415344px;}
.y15a{bottom:713.683777px;}
.y11{bottom:714.211395px;}
.y17d{bottom:714.733772px;}
.yb3{bottom:714.735260px;}
.yf3{bottom:714.739746px;}
.y26c{bottom:716.374823px;}
.y330{bottom:716.604339px;}
.y2ef{bottom:716.757275px;}
.y2ad{bottom:716.757307px;}
.y125{bottom:722.865728px;}
.y233{bottom:727.527323px;}
.y139{bottom:731.283325px;}
.y26b{bottom:731.368823px;}
.y32f{bottom:731.598339px;}
.y2ee{bottom:731.751275px;}
.y2ac{bottom:731.751307px;}
.y50{bottom:732.165344px;}
.y159{bottom:732.433777px;}
.y10{bottom:732.961395px;}
.y17c{bottom:733.483772px;}
.yb2{bottom:733.485260px;}
.y82{bottom:733.485306px;}
.yf2{bottom:733.489746px;}
.y124{bottom:741.582728px;}
.y232{bottom:742.521323px;}
.y26a{bottom:746.362823px;}
.y32e{bottom:746.592339px;}
.y2ed{bottom:746.745275px;}
.y2ab{bottom:746.745307px;}
.y138{bottom:750.033325px;}
.y4f{bottom:750.915344px;}
.y158{bottom:751.183777px;}
.yf{bottom:751.711395px;}
.y1d5{bottom:752.055267px;}
.y17b{bottom:752.233772px;}
.y1e8{bottom:752.235254px;}
.yb1{bottom:752.235260px;}
.yf1{bottom:752.239746px;}
.y231{bottom:757.515323px;}
.y123{bottom:760.295421px;}
.y269{bottom:761.356823px;}
.y32d{bottom:761.586339px;}
.y2ec{bottom:761.739275px;}
.y2aa{bottom:761.739307px;}
.y137{bottom:768.783325px;}
.y4e{bottom:769.665344px;}
.y157{bottom:769.933777px;}
.ye{bottom:770.461395px;}
.y1d4{bottom:770.805267px;}
.y17a{bottom:770.983772px;}
.y1e7{bottom:770.985254px;}
.y81{bottom:770.985260px;}
.yf0{bottom:770.989746px;}
.y268{bottom:776.350823px;}
.y32c{bottom:776.580339px;}
.y2eb{bottom:776.733275px;}
.y2a9{bottom:776.733307px;}
.y122{bottom:779.007792px;}
.y230{bottom:787.516073px;}
.y136{bottom:787.533325px;}
.y4d{bottom:788.415344px;}
.y156{bottom:788.683777px;}
.yd{bottom:789.211395px;}
.y1d3{bottom:789.555267px;}
.y179{bottom:789.733772px;}
.y1e6{bottom:789.735254px;}
.yb0{bottom:789.735260px;}
.yef{bottom:789.739746px;}
.y267{bottom:791.344823px;}
.y32b{bottom:791.574339px;}
.y2ea{bottom:791.727275px;}
.y2a8{bottom:791.727307px;}
.y121{bottom:797.697756px;}
.y22f{bottom:802.510073px;}
.y135{bottom:806.283325px;}
.y266{bottom:806.338823px;}
.y32a{bottom:806.568339px;}
.y2e9{bottom:806.721275px;}
.y2a7{bottom:806.721307px;}
.y4c{bottom:807.165344px;}
.y155{bottom:807.433777px;}
.y1d2{bottom:808.305267px;}
.y178{bottom:808.483772px;}
.y1e5{bottom:808.485254px;}
.yaf{bottom:808.485260px;}
.yee{bottom:808.489746px;}
.y120{bottom:816.414756px;}
.y22e{bottom:817.504073px;}
.y265{bottom:821.332823px;}
.y329{bottom:821.562339px;}
.y2e8{bottom:821.715275px;}
.y2a6{bottom:821.715307px;}
.y134{bottom:825.033325px;}
.y4b{bottom:825.915344px;}
.y154{bottom:826.183777px;}
.y1d1{bottom:827.055267px;}
.y177{bottom:827.233772px;}
.y1e4{bottom:827.235254px;}
.y127{bottom:827.235260px;}
.yed{bottom:827.239746px;}
.y22d{bottom:832.498073px;}
.yc{bottom:833.394153px;}
.y11f{bottom:835.131756px;}
.y264{bottom:836.326823px;}
.y328{bottom:836.556339px;}
.y2e7{bottom:836.709275px;}
.y2a5{bottom:836.709307px;}
.y133{bottom:843.783325px;}
.y4a{bottom:844.665344px;}
.y1d0{bottom:845.805267px;}
.y176{bottom:845.983772px;}
.y1e3{bottom:845.985254px;}
.y80{bottom:845.985260px;}
.yec{bottom:845.989746px;}
.y22c{bottom:847.492073px;}
.yb{bottom:848.388153px;}
.y263{bottom:851.320823px;}
.y327{bottom:851.550339px;}
.y2e6{bottom:851.703275px;}
.y2a4{bottom:851.703307px;}
.y11e{bottom:853.848756px;}
.y22b{bottom:862.486073px;}
.y132{bottom:862.533325px;}
.y49{bottom:863.415344px;}
.y153{bottom:863.683777px;}
.y175{bottom:864.733772px;}
.y1e2{bottom:864.735254px;}
.y7f{bottom:864.735260px;}
.yeb{bottom:864.739746px;}
.y262{bottom:866.314823px;}
.y326{bottom:866.544339px;}
.y2e5{bottom:866.697275px;}
.y2a3{bottom:866.697307px;}
.y11d{bottom:872.565756px;}
.y22a{bottom:877.480073px;}
.y131{bottom:881.283325px;}
.y261{bottom:881.308823px;}
.y325{bottom:881.538339px;}
.y2e4{bottom:881.691275px;}
.y2a2{bottom:881.691307px;}
.y48{bottom:882.165344px;}
.y1cf{bottom:883.305267px;}
.y174{bottom:883.483772px;}
.y1e1{bottom:883.485254px;}
.y7e{bottom:883.485260px;}
.yae{bottom:883.485306px;}
.yea{bottom:883.489746px;}
.ya{bottom:890.988190px;}
.y11c{bottom:891.282756px;}
.y260{bottom:896.302823px;}
.y324{bottom:896.532339px;}
.y2e3{bottom:896.685275px;}
.y2a1{bottom:896.685307px;}
.y130{bottom:900.033325px;}
.y47{bottom:900.915344px;}
.y152{bottom:901.183777px;}
.y173{bottom:902.233772px;}
.y1e0{bottom:902.235254px;}
.y7d{bottom:902.235260px;}
.yad{bottom:902.235306px;}
.ye9{bottom:902.239746px;}
.y229{bottom:907.480823px;}
.y9{bottom:909.738190px;}
.y11b{bottom:909.986421px;}
.y25f{bottom:911.296823px;}
.y323{bottom:911.526339px;}
.y2e2{bottom:911.679275px;}
.y2a0{bottom:911.679307px;}
.y12f{bottom:918.783325px;}
.y46{bottom:919.665344px;}
.y172{bottom:920.983772px;}
.y1df{bottom:920.985254px;}
.y7c{bottom:920.985260px;}
.yac{bottom:920.985306px;}
.ye8{bottom:920.989746px;}
.y228{bottom:922.474823px;}
.y25e{bottom:926.290823px;}
.y322{bottom:926.520339px;}
.y2e1{bottom:926.673275px;}
.y29f{bottom:926.673307px;}
.y11a{bottom:928.703421px;}
.y12e{bottom:937.533325px;}
.y45{bottom:938.415344px;}
.y1ce{bottom:939.555267px;}
.y171{bottom:939.733772px;}
.y1de{bottom:939.735254px;}
.y7b{bottom:939.735260px;}
.yab{bottom:939.735306px;}
.ye7{bottom:939.739746px;}
.y25d{bottom:941.284823px;}
.y321{bottom:941.514339px;}
.y2e0{bottom:941.667275px;}
.y29e{bottom:941.667307px;}
.y119{bottom:947.420421px;}
.y227{bottom:952.474823px;}
.y8{bottom:954.424622px;}
.y25c{bottom:956.278823px;}
.y12d{bottom:956.283325px;}
.y320{bottom:956.508339px;}
.y2df{bottom:956.661275px;}
.y29d{bottom:956.661307px;}
.y44{bottom:957.165344px;}
.y1cd{bottom:958.305267px;}
.y170{bottom:958.483772px;}
.y1dd{bottom:958.485254px;}
.y7a{bottom:958.485260px;}
.yaa{bottom:958.485306px;}
.ye6{bottom:958.489746px;}
.y190{bottom:959.887094px;}
.y118{bottom:966.132792px;}
.y25b{bottom:971.272823px;}
.y31f{bottom:971.502339px;}
.y2de{bottom:971.655275px;}
.y29c{bottom:971.655307px;}
.y18f{bottom:974.881094px;}
.y12c{bottom:975.033325px;}
.y43{bottom:975.915344px;}
.y1cc{bottom:977.055267px;}
.y16f{bottom:977.233772px;}
.y1dc{bottom:977.235254px;}
.y79{bottom:977.235260px;}
.ya9{bottom:977.235306px;}
.ye5{bottom:977.239746px;}
.y7{bottom:981.424622px;}
.y117{bottom:984.848274px;}
.y226{bottom:986.254073px;}
.y25a{bottom:986.266823px;}
.y31e{bottom:986.496339px;}
.y2dd{bottom:986.649275px;}
.y29b{bottom:986.649307px;}
.y12b{bottom:993.783325px;}
.y42{bottom:994.665344px;}
.y1cb{bottom:995.805267px;}
.y16e{bottom:995.983772px;}
.y1db{bottom:995.985254px;}
.y78{bottom:995.985260px;}
.ya8{bottom:995.985306px;}
.ye4{bottom:995.989746px;}
.y225{bottom:1001.248073px;}
.y259{bottom:1001.260823px;}
.y31d{bottom:1001.490339px;}
.y2dc{bottom:1001.643275px;}
.y29a{bottom:1001.643307px;}
.y193{bottom:1002.730524px;}
.y116{bottom:1003.565274px;}
.y6{bottom:1008.424622px;}
.y12a{bottom:1012.533325px;}
.y41{bottom:1013.415344px;}
.y1ca{bottom:1014.555267px;}
.y1da{bottom:1014.735254px;}
.y77{bottom:1014.735260px;}
.ya7{bottom:1014.735306px;}
.ye3{bottom:1014.739746px;}
.y224{bottom:1016.242073px;}
.y258{bottom:1016.254823px;}
.y31c{bottom:1016.484339px;}
.y2db{bottom:1016.637275px;}
.y299{bottom:1016.637307px;}
.y192{bottom:1021.524024px;}
.y115{bottom:1022.282274px;}
.y257{bottom:1031.248823px;}
.y31b{bottom:1031.478339px;}
.y2da{bottom:1031.631275px;}
.y298{bottom:1031.631307px;}
.y40{bottom:1032.165344px;}
.y1c9{bottom:1033.305267px;}
.y16d{bottom:1033.483772px;}
.y1d9{bottom:1033.485254px;}
.y76{bottom:1033.485260px;}
.ya6{bottom:1033.485306px;}
.ye2{bottom:1033.489746px;}
.y223{bottom:1046.242823px;}
.y31a{bottom:1046.472339px;}
.y2d9{bottom:1046.625275px;}
.y297{bottom:1046.625307px;}
.y191{bottom:1049.612274px;}
.y114{bottom:1049.618274px;}
.y129{bottom:1050.033325px;}
.y3f{bottom:1050.915344px;}
.y1c8{bottom:1052.055267px;}
.y1d8{bottom:1052.235254px;}
.y75{bottom:1052.235260px;}
.ya5{bottom:1052.235306px;}
.ye1{bottom:1052.239746px;}
.y222{bottom:1061.236823px;}
.y319{bottom:1061.466339px;}
.y2d8{bottom:1061.619275px;}
.y296{bottom:1061.619307px;}
.y113{bottom:1064.612274px;}
.y3e{bottom:1069.665344px;}
.y16c{bottom:1070.983772px;}
.y1d7{bottom:1070.985254px;}
.y74{bottom:1070.985260px;}
.ya4{bottom:1070.985306px;}
.ye0{bottom:1070.989746px;}
.y18e{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y221{bottom:1076.230823px;}
.y318{bottom:1076.460339px;}
.y2d7{bottom:1076.613275px;}
.y295{bottom:1076.613307px;}
.y128{bottom:1087.533325px;}
.y3d{bottom:1088.415344px;}
.y1c7{bottom:1089.555267px;}
.y16b{bottom:1089.733772px;}
.y1d6{bottom:1089.735254px;}
.y73{bottom:1089.735260px;}
.ya3{bottom:1089.735306px;}
.ydf{bottom:1089.739746px;}
.y108{bottom:1090.102844px;}
.y220{bottom:1091.224823px;}
.y317{bottom:1091.454339px;}
.y2d6{bottom:1091.607275px;}
.y294{bottom:1091.607307px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3c{bottom:1127.482361px;}
.y72{bottom:1127.482544px;}
.hf{height:25.454099px;}
.h14{height:31.772854px;}
.h1d{height:31.772991px;}
.h13{height:31.773037px;}
.he{height:36.363000px;}
.hd{height:36.855469px;}
.h2{height:42.048000px;}
.h9{height:42.780000px;}
.h1c{height:42.780549px;}
.h8{height:43.260000px;}
.h4{height:44.676000px;}
.h11{height:45.186000px;}
.h1e{height:45.854063px;}
.h22{height:45.854154px;}
.h17{height:45.871477px;}
.h15{height:45.872392px;}
.h1f{height:45.890172px;}
.h21{height:45.896154px;}
.h18{height:45.914209px;}
.h16{height:45.962758px;}
.h20{height:45.998044px;}
.hc{height:51.912000px;}
.h12{height:52.173000px;}
.hb{height:53.160000px;}
.h1a{height:53.805000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h10{height:59.004000px;}
.h19{height:61.379817px;}
.ha{height:61.380000px;}
.h1b{height:61.380092px;}
.h7{height:64.866000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x7{left:78.746400px;}
.xd{left:81.036147px;}
.x4{left:85.181849px;}
.x8{left:93.530409px;}
.x6{left:97.796100px;}
.x16{left:102.048152px;}
.xf{left:247.015652px;}
.xe{left:267.874652px;}
.xb{left:270.297147px;}
.x10{left:330.120152px;}
.xc{left:357.519897px;}
.x11{left:419.599652px;}
.x5{left:459.212540px;}
.xa{left:476.225389px;}
.x15{left:484.725290px;}
.x12{left:509.079152px;}
.x13{left:598.558652px;}
.x14{left:688.038152px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.x9{left:792.153442px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v4{vertical-align:-13.333496pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.139187pt;}
.v1{vertical-align:21.333333pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls43{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.373333pt;}
.ls73{letter-spacing:-0.362667pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls75{letter-spacing:-0.317333pt;}
.ls72{letter-spacing:-0.272000pt;}
.ls2a{letter-spacing:-0.266667pt;}
.ls83{letter-spacing:-0.226667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls77{letter-spacing:-0.181333pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls76{letter-spacing:-0.136000pt;}
.ls29{letter-spacing:-0.106667pt;}
.ls74{letter-spacing:-0.090667pt;}
.ls2c{letter-spacing:-0.053333pt;}
.ls71{letter-spacing:-0.045333pt;}
.ls11{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.000033pt;}
.ls2f{letter-spacing:0.026667pt;}
.ls7a{letter-spacing:0.045333pt;}
.ls19{letter-spacing:0.053333pt;}
.ls5a{letter-spacing:0.080000pt;}
.ls6d{letter-spacing:0.090667pt;}
.ls26{letter-spacing:0.106667pt;}
.ls78{letter-spacing:0.136000pt;}
.lsf{letter-spacing:0.158926pt;}
.ls6{letter-spacing:0.159958pt;}
.ls21{letter-spacing:0.159991pt;}
.ls8{letter-spacing:0.160000pt;}
.ls63{letter-spacing:0.181333pt;}
.ls59{letter-spacing:0.186641pt;}
.ls1{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.226667pt;}
.ls6a{letter-spacing:0.234667pt;}
.ls2e{letter-spacing:0.239993pt;}
.ls22{letter-spacing:0.245299pt;}
.ls8a{letter-spacing:0.249333pt;}
.ls6f{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.266650pt;}
.ls4{letter-spacing:0.266667pt;}
.ls6e{letter-spacing:0.272000pt;}
.ls84{letter-spacing:0.294667pt;}
.ls32{letter-spacing:0.298667pt;}
.ls64{letter-spacing:0.317333pt;}
.lse{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.336000pt;}
.ls5e{letter-spacing:0.341333pt;}
.ls58{letter-spacing:0.351978pt;}
.ls69{letter-spacing:0.362667pt;}
.ls7{letter-spacing:0.373333pt;}
.ls34{letter-spacing:0.400000pt;}
.ls65{letter-spacing:0.408000pt;}
.ls4f{letter-spacing:0.410667pt;}
.lsc{letter-spacing:0.426667pt;}
.ls27{letter-spacing:0.453333pt;}
.ls49{letter-spacing:0.458632pt;}
.ls17{letter-spacing:0.480000pt;}
.ls7f{letter-spacing:0.498667pt;}
.ls3{letter-spacing:0.506667pt;}
.ls23{letter-spacing:0.533333pt;}
.ls66{letter-spacing:0.544000pt;}
.ls50{letter-spacing:0.560000pt;}
.ls82{letter-spacing:0.566667pt;}
.ls5{letter-spacing:0.586667pt;}
.ls6b{letter-spacing:0.589333pt;}
.ls8b{letter-spacing:0.612000pt;}
.ls6c{letter-spacing:0.634667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls88{letter-spacing:0.657333pt;}
.ls4e{letter-spacing:0.666667pt;}
.ls3d{letter-spacing:0.672000pt;}
.ls70{letter-spacing:0.680000pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls3e{letter-spacing:0.709333pt;}
.ls1d{letter-spacing:0.720000pt;}
.ls7e{letter-spacing:0.725333pt;}
.ls9{letter-spacing:0.746667pt;}
.ls68{letter-spacing:0.770667pt;}
.lsb{letter-spacing:0.800000pt;}
.ls67{letter-spacing:0.816000pt;}
.ls3a{letter-spacing:0.826667pt;}
.ls89{letter-spacing:0.838667pt;}
.ls18{letter-spacing:0.853333pt;}
.ls7c{letter-spacing:0.861333pt;}
.ls81{letter-spacing:0.884000pt;}
.ls1e{letter-spacing:0.906667pt;}
.ls47{letter-spacing:0.927983pt;}
.ls1c{letter-spacing:0.933333pt;}
.ls80{letter-spacing:0.952000pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls79{letter-spacing:0.997333pt;}
.ls24{letter-spacing:1.013333pt;}
.lsa{letter-spacing:1.066667pt;}
.ls57{letter-spacing:1.091711pt;}
.ls1f{letter-spacing:1.120000pt;}
.ls86{letter-spacing:1.133333pt;}
.ls30{letter-spacing:1.173333pt;}
.ls25{letter-spacing:1.226667pt;}
.ls42{letter-spacing:1.258657pt;}
.ls85{letter-spacing:1.269333pt;}
.ls31{letter-spacing:1.274645pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls28{letter-spacing:1.306667pt;}
.ls7d{letter-spacing:1.314667pt;}
.ls20{letter-spacing:1.333333pt;}
.ls46{letter-spacing:1.360000pt;}
.ls41{letter-spacing:1.386667pt;}
.ls5f{letter-spacing:1.413333pt;}
.ls33{letter-spacing:1.440000pt;}
.ls55{letter-spacing:1.493333pt;}
.ls3f{letter-spacing:1.546667pt;}
.ls87{letter-spacing:1.586667pt;}
.ls3c{letter-spacing:1.600000pt;}
.ls4a{letter-spacing:1.653333pt;}
.ls4c{letter-spacing:1.695977pt;}
.ls62{letter-spacing:1.706667pt;}
.ls7b{letter-spacing:1.722667pt;}
.ls48{letter-spacing:1.760000pt;}
.ls4d{letter-spacing:1.813333pt;}
.ls40{letter-spacing:1.824000pt;}
.ls4b{letter-spacing:1.866667pt;}
.ls44{letter-spacing:1.920000pt;}
.ls56{letter-spacing:1.934412pt;}
.ls54{letter-spacing:1.946667pt;}
.ls60{letter-spacing:1.973333pt;}
.ls53{letter-spacing:2.026667pt;}
.ls61{letter-spacing:2.133333pt;}
.ls45{letter-spacing:2.165333pt;}
.ls3b{letter-spacing:2.186667pt;}
.ls51{letter-spacing:2.666667pt;}
.ls52{letter-spacing:2.693333pt;}
.ls0{letter-spacing:3.546667pt;}
.ls39{letter-spacing:71.386182pt;}
.ls38{letter-spacing:94.052849pt;}
.ls35{letter-spacing:105.386182pt;}
.ls5d{letter-spacing:107.679443pt;}
.ls37{letter-spacing:186.214877pt;}
.ls36{letter-spacing:379.386637pt;}
.ls5b{letter-spacing:556.149317pt;}
.ws2{word-spacing:-16.384000pt;}
.ws77{word-spacing:-14.933333pt;}
.ws20{word-spacing:-14.666667pt;}
.ws79{word-spacing:-14.346667pt;}
.wsab{word-spacing:-14.186667pt;}
.ws83{word-spacing:-14.133333pt;}
.ws84{word-spacing:-14.080000pt;}
.ws60{word-spacing:-13.973333pt;}
.ws9b{word-spacing:-13.920000pt;}
.ws72{word-spacing:-13.760000pt;}
.ws1f{word-spacing:-13.600000pt;}
.ws85{word-spacing:-13.386667pt;}
.ws1e{word-spacing:-13.333333pt;}
.ws4c{word-spacing:-13.280000pt;}
.wsb6{word-spacing:-13.173333pt;}
.wsb9{word-spacing:-11.560000pt;}
.ws9{word-spacing:-11.333333pt;}
.ws4b{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.240000pt;}
.wsa4{word-spacing:-9.333333pt;}
.wsb7{word-spacing:-9.021333pt;}
.ws1{word-spacing:-8.885333pt;}
.wsb8{word-spacing:-8.613333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws8{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws11{word-spacing:-6.666667pt;}
.ws71{word-spacing:-5.666667pt;}
.wsb3{word-spacing:-2.133333pt;}
.wsa{word-spacing:-1.680000pt;}
.wsc9{word-spacing:-1.586667pt;}
.wsb1{word-spacing:-1.546667pt;}
.wsb5{word-spacing:-1.440000pt;}
.ws19{word-spacing:-1.386667pt;}
.ws12{word-spacing:-1.333333pt;}
.ws64{word-spacing:-1.280000pt;}
.wsf0{word-spacing:-1.269333pt;}
.ws1b{word-spacing:-1.226667pt;}
.wsc8{word-spacing:-1.224000pt;}
.wsd4{word-spacing:-1.178667pt;}
.ws56{word-spacing:-1.173333pt;}
.wsbe{word-spacing:-1.133333pt;}
.ws5f{word-spacing:-1.120000pt;}
.wsfb{word-spacing:-1.088000pt;}
.ws21{word-spacing:-1.066667pt;}
.ws14{word-spacing:-1.013333pt;}
.wse0{word-spacing:-0.997333pt;}
.ws2d{word-spacing:-0.960000pt;}
.wscc{word-spacing:-0.952000pt;}
.ws76{word-spacing:-0.933333pt;}
.ws88{word-spacing:-0.906667pt;}
.wsc0{word-spacing:-0.861333pt;}
.ws49{word-spacing:-0.853333pt;}
.wsf1{word-spacing:-0.816000pt;}
.ws41{word-spacing:-0.800000pt;}
.ws26{word-spacing:-0.746667pt;}
.wsee{word-spacing:-0.725333pt;}
.ws4e{word-spacing:-0.693333pt;}
.wscd{word-spacing:-0.680000pt;}
.ws15{word-spacing:-0.640000pt;}
.wsce{word-spacing:-0.634667pt;}
.wse7{word-spacing:-0.589333pt;}
.ws44{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.544000pt;}
.ws69{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.506667pt;}
.wse9{word-spacing:-0.498667pt;}
.ws9a{word-spacing:-0.485333pt;}
.ws5b{word-spacing:-0.480000pt;}
.wsfc{word-spacing:-0.453333pt;}
.ws46{word-spacing:-0.426667pt;}
.wsd7{word-spacing:-0.408000pt;}
.ws55{word-spacing:-0.373333pt;}
.ws59{word-spacing:-0.320000pt;}
.wsd6{word-spacing:-0.317333pt;}
.ws5{word-spacing:-0.266667pt;}
.wsc7{word-spacing:-0.234667pt;}
.wsc6{word-spacing:-0.226667pt;}
.ws5a{word-spacing:-0.213333pt;}
.wse1{word-spacing:-0.181333pt;}
.ws4a{word-spacing:-0.160000pt;}
.wsf8{word-spacing:-0.136000pt;}
.ws42{word-spacing:-0.106667pt;}
.wsf3{word-spacing:-0.090667pt;}
.ws7{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.053333pt;}
.ws100{word-spacing:-0.045333pt;}
.wsb{word-spacing:0.000000pt;}
.wsec{word-spacing:0.045333pt;}
.ws32{word-spacing:0.053333pt;}
.wsd8{word-spacing:0.090667pt;}
.ws22{word-spacing:0.106667pt;}
.wsfa{word-spacing:0.136000pt;}
.ws66{word-spacing:0.160000pt;}
.ws39{word-spacing:0.213333pt;}
.wsbc{word-spacing:0.226667pt;}
.ws33{word-spacing:0.266667pt;}
.wsbd{word-spacing:0.317333pt;}
.ws3a{word-spacing:0.320000pt;}
.wsf{word-spacing:0.373333pt;}
.ws7e{word-spacing:0.408000pt;}
.ws9e{word-spacing:0.426667pt;}
.ws101{word-spacing:0.453333pt;}
.ws38{word-spacing:0.480000pt;}
.ws34{word-spacing:0.533333pt;}
.wsff{word-spacing:0.544000pt;}
.wsbb{word-spacing:0.586667pt;}
.ws6e{word-spacing:0.589333pt;}
.ws10{word-spacing:0.640000pt;}
.wsc1{word-spacing:0.680000pt;}
.ws87{word-spacing:0.693333pt;}
.wsf4{word-spacing:0.725333pt;}
.wsdb{word-spacing:0.770667pt;}
.wse{word-spacing:0.800000pt;}
.wsc5{word-spacing:0.816000pt;}
.ws67{word-spacing:0.853333pt;}
.wsc4{word-spacing:0.861333pt;}
.ws43{word-spacing:0.906667pt;}
.ws90{word-spacing:0.952000pt;}
.ws63{word-spacing:0.960000pt;}
.ws103{word-spacing:0.997333pt;}
.ws1a{word-spacing:1.013333pt;}
.ws82{word-spacing:1.042667pt;}
.ws99{word-spacing:1.066667pt;}
.wsef{word-spacing:1.088000pt;}
.ws28{word-spacing:1.120000pt;}
.wsbf{word-spacing:1.133333pt;}
.ws8e{word-spacing:1.173333pt;}
.wsd3{word-spacing:1.178667pt;}
.wsd5{word-spacing:1.224000pt;}
.ws23{word-spacing:1.226667pt;}
.ws6c{word-spacing:1.280000pt;}
.wsd9{word-spacing:1.314667pt;}
.wsd{word-spacing:1.333333pt;}
.wse3{word-spacing:1.360000pt;}
.ws74{word-spacing:1.386667pt;}
.wsf9{word-spacing:1.405333pt;}
.ws75{word-spacing:1.440000pt;}
.wsd2{word-spacing:1.450667pt;}
.ws4d{word-spacing:1.493333pt;}
.wse8{word-spacing:1.541333pt;}
.ws51{word-spacing:1.546667pt;}
.wscb{word-spacing:1.586667pt;}
.ws29{word-spacing:1.600000pt;}
.wsca{word-spacing:1.632000pt;}
.ws78{word-spacing:1.642667pt;}
.ws5d{word-spacing:1.653333pt;}
.wse4{word-spacing:1.677333pt;}
.ws8a{word-spacing:1.706667pt;}
.wsd0{word-spacing:1.722667pt;}
.ws16{word-spacing:1.760000pt;}
.wse5{word-spacing:1.768000pt;}
.ws25{word-spacing:1.813333pt;}
.ws18{word-spacing:1.866667pt;}
.ws40{word-spacing:1.920000pt;}
.ws65{word-spacing:1.973333pt;}
.ws89{word-spacing:2.026667pt;}
.ws52{word-spacing:2.080000pt;}
.wsc3{word-spacing:2.130667pt;}
.ws3b{word-spacing:2.133333pt;}
.wsa0{word-spacing:2.176000pt;}
.ws3c{word-spacing:2.186667pt;}
.ws24{word-spacing:2.240000pt;}
.wscf{word-spacing:2.266667pt;}
.ws57{word-spacing:2.293333pt;}
.wsd1{word-spacing:2.312000pt;}
.ws3d{word-spacing:2.346667pt;}
.wsea{word-spacing:2.357333pt;}
.ws27{word-spacing:2.400000pt;}
.wsa3{word-spacing:2.402667pt;}
.ws102{word-spacing:2.448000pt;}
.ws73{word-spacing:2.453333pt;}
.wsc2{word-spacing:2.493333pt;}
.ws2e{word-spacing:2.506667pt;}
.wsdd{word-spacing:2.538667pt;}
.ws50{word-spacing:2.560000pt;}
.wse2{word-spacing:2.584000pt;}
.ws31{word-spacing:2.613333pt;}
.wsed{word-spacing:2.629333pt;}
.ws2c{word-spacing:2.666667pt;}
.wsf7{word-spacing:2.674667pt;}
.ws45{word-spacing:2.720000pt;}
.ws2a{word-spacing:2.773333pt;}
.wsfe{word-spacing:2.810667pt;}
.ws3e{word-spacing:2.826667pt;}
.ws5e{word-spacing:2.880000pt;}
.ws68{word-spacing:2.933333pt;}
.wse6{word-spacing:2.946667pt;}
.ws36{word-spacing:2.986667pt;}
.ws48{word-spacing:3.040000pt;}
.ws54{word-spacing:3.093333pt;}
.ws53{word-spacing:3.146667pt;}
.wsf5{word-spacing:3.173333pt;}
.ws6b{word-spacing:3.200000pt;}
.ws5c{word-spacing:3.253333pt;}
.wseb{word-spacing:3.264000pt;}
.ws17{word-spacing:3.306667pt;}
.ws8b{word-spacing:3.360000pt;}
.wsda{word-spacing:3.400000pt;}
.wsba{word-spacing:3.413333pt;}
.wsa2{word-spacing:3.445333pt;}
.ws35{word-spacing:3.466667pt;}
.ws8d{word-spacing:3.520000pt;}
.ws2f{word-spacing:3.573333pt;}
.ws6a{word-spacing:3.680000pt;}
.wsa8{word-spacing:3.733333pt;}
.wsa9{word-spacing:3.786667pt;}
.ws8c{word-spacing:3.840000pt;}
.wsf6{word-spacing:3.853333pt;}
.ws58{word-spacing:3.893333pt;}
.ws104{word-spacing:3.898667pt;}
.ws6f{word-spacing:3.944000pt;}
.ws86{word-spacing:3.946667pt;}
.ws37{word-spacing:4.000000pt;}
.wsaf{word-spacing:4.053333pt;}
.ws3f{word-spacing:4.213333pt;}
.ws7f{word-spacing:4.216000pt;}
.wsae{word-spacing:4.266667pt;}
.ws9d{word-spacing:4.373333pt;}
.ws2b{word-spacing:4.426667pt;}
.ws47{word-spacing:4.480000pt;}
.ws30{word-spacing:4.533333pt;}
.wsad{word-spacing:4.586667pt;}
.ws4f{word-spacing:4.746667pt;}
.wsf2{word-spacing:4.760000pt;}
.wsac{word-spacing:4.800000pt;}
.wsdf{word-spacing:4.850667pt;}
.wsb0{word-spacing:4.853333pt;}
.wsb2{word-spacing:4.906667pt;}
.wsb4{word-spacing:5.013333pt;}
.ws62{word-spacing:5.173333pt;}
.wsde{word-spacing:5.213333pt;}
.wsaa{word-spacing:5.333333pt;}
.ws91{word-spacing:5.485333pt;}
.ws97{word-spacing:5.530667pt;}
.wsa7{word-spacing:5.813333pt;}
.wsfd{word-spacing:6.256000pt;}
.ws70{word-spacing:6.437333pt;}
.ws81{word-spacing:6.618667pt;}
.wsa1{word-spacing:6.709333pt;}
.wsdc{word-spacing:6.845333pt;}
.ws94{word-spacing:7.525333pt;}
.ws9c{word-spacing:7.733333pt;}
.ws92{word-spacing:8.024000pt;}
.ws6d{word-spacing:9.021333pt;}
.ws96{word-spacing:9.882667pt;}
.ws80{word-spacing:10.064000pt;}
.ws7d{word-spacing:10.381333pt;}
.ws98{word-spacing:10.426667pt;}
.ws8f{word-spacing:11.242667pt;}
.ws95{word-spacing:11.786667pt;}
.ws93{word-spacing:11.877333pt;}
.ws9f{word-spacing:12.466667pt;}
.ws7a{word-spacing:17.453333pt;}
.ws7c{word-spacing:25.024000pt;}
.ws7b{word-spacing:42.749333pt;}
.ws1c{word-spacing:64.237333pt;}
.wsa6{word-spacing:261.482667pt;}
.wsa5{word-spacing:342.629333pt;}
.ws61{word-spacing:425.407980pt;}
._10{margin-left:-2630.557284pt;}
._a{margin-left:-86.133333pt;}
._52{margin-left:-19.901333pt;}
._58{margin-left:-17.408000pt;}
._30{margin-left:-16.306673pt;}
._7{margin-left:-14.733333pt;}
._55{margin-left:-13.690667pt;}
._24{margin-left:-12.693340pt;}
._57{margin-left:-11.605333pt;}
._2a{margin-left:-10.560000pt;}
._c{margin-left:-9.162667pt;}
._11{margin-left:-8.240009pt;}
._6{margin-left:-6.901333pt;}
._26{margin-left:-5.333333pt;}
._5{margin-left:-4.437333pt;}
._2{margin-left:-3.276800pt;}
._e{margin-left:-2.384000pt;}
._0{margin-left:-1.450667pt;}
._1{width:0.938667pt;}
._d{width:2.090667pt;}
._f{width:3.157318pt;}
._59{width:4.609600pt;}
._25{width:5.820351pt;}
._4f{width:7.162667pt;}
._51{width:8.522667pt;}
._28{width:9.413816pt;}
._2b{width:11.200000pt;}
._29{width:13.280000pt;}
._12{width:14.560266pt;}
._8{width:16.320000pt;}
._27{width:17.386667pt;}
._54{width:18.949333pt;}
._53{width:20.672006pt;}
._4d{width:21.878316pt;}
._5a{width:22.981333pt;}
._50{width:23.890667pt;}
._4e{width:26.112000pt;}
._56{width:33.365333pt;}
._4{width:34.982355pt;}
._3{width:36.382896pt;}
._16{width:41.919403pt;}
._9{width:48.552000pt;}
._40{width:49.957333pt;}
._4c{width:72.624000pt;}
._43{width:76.303984pt;}
._22{width:87.266667pt;}
._3b{width:95.290667pt;}
._35{width:107.245867pt;}
._31{width:108.146667pt;}
._14{width:109.933333pt;}
._36{width:111.384000pt;}
._3c{width:117.957333pt;}
._18{width:121.266667pt;}
._42{width:128.487483pt;}
._3d{width:129.471984pt;}
._38{width:130.572800pt;}
._1c{width:132.690667pt;}
._32{width:133.960000pt;}
._2d{width:138.946667pt;}
._3e{width:151.957333pt;}
._2c{width:157.106667pt;}
._2e{width:160.978667pt;}
._41{width:164.741317pt;}
._45{width:174.229365pt;}
._44{width:175.394635pt;}
._34{width:181.618133pt;}
._47{width:192.167984pt;}
._33{width:193.818667pt;}
._1a{width:194.765333pt;}
._19{width:205.994667pt;}
._1f{width:214.834667pt;}
._2f{width:216.376000pt;}
._37{width:236.685333pt;}
._46{width:240.175984pt;}
._4a{width:242.469317pt;}
._48{width:245.117317pt;}
._17{width:247.565333pt;}
._39{width:250.149333pt;}
._1d{width:274.992000pt;}
._4b{width:281.882651pt;}
._3a{width:284.421317pt;}
._3f{width:310.669317pt;}
._49{width:319.599984pt;}
._1b{width:323.000000pt;}
._21{width:325.293333pt;}
._1e{width:327.941333pt;}
._23{width:364.706667pt;}
._13{width:367.245333pt;}
._20{width:402.424000pt;}
._15{width:450.250667pt;}
._b{width:1556.882733pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y3b{bottom:100.389600pt;}
.y198{bottom:100.758933pt;}
.y19d{bottom:100.781598pt;}
.y1ef{bottom:100.807738pt;}
.y71{bottom:100.813639pt;}
.y14c{bottom:101.078930pt;}
.y1c3{bottom:101.084266pt;}
.y151{bottom:101.101595pt;}
.y2d{bottom:101.521200pt;}
.y211{bottom:101.986898pt;}
.ya2{bottom:101.986938pt;}
.yde{bottom:102.110921pt;}
.y2d5{bottom:103.997606pt;}
.y21f{bottom:112.038272pt;}
.y197{bottom:114.086933pt;}
.y19c{bottom:114.109598pt;}
.y14b{bottom:114.406930pt;}
.y1c2{bottom:114.412266pt;}
.y150{bottom:114.429595pt;}
.y293{bottom:116.985620pt;}
.y316{bottom:117.325578pt;}
.y2d4{bottom:117.325606pt;}
.y70{bottom:117.480306pt;}
.y2c{bottom:118.187866pt;}
.y3a{bottom:118.250936pt;}
.y210{bottom:118.653564pt;}
.ya1{bottom:118.653605pt;}
.ydd{bottom:118.777588pt;}
.y256{bottom:121.564279pt;}
.y1ee{bottom:122.454397pt;}
.y21e{bottom:125.366272pt;}
.y196{bottom:127.414933pt;}
.y19b{bottom:127.437598pt;}
.y14a{bottom:127.734930pt;}
.y14f{bottom:127.757595pt;}
.y292{bottom:130.313620pt;}
.y315{bottom:130.653578pt;}
.y2d3{bottom:130.653606pt;}
.y6f{bottom:134.146973pt;}
.y2b{bottom:134.854533pt;}
.y255{bottom:134.892279pt;}
.y20f{bottom:135.320231pt;}
.ya0{bottom:135.320272pt;}
.ydc{bottom:135.444255pt;}
.y39{bottom:138.292938pt;}
.y1c6{bottom:139.284527pt;}
.y1ed{bottom:139.567200pt;}
.y195{bottom:140.742933pt;}
.y19a{bottom:140.765598pt;}
.y149{bottom:141.062930pt;}
.y14e{bottom:141.085595pt;}
.y291{bottom:143.641620pt;}
.y314{bottom:143.981578pt;}
.y2d2{bottom:143.981606pt;}
.y254{bottom:148.220279pt;}
.y6e{bottom:150.813639pt;}
.y2a{bottom:151.521200pt;}
.y20e{bottom:151.986898pt;}
.y9f{bottom:151.986938pt;}
.y21d{bottom:152.033605pt;}
.ydb{bottom:152.110921pt;}
.y38{bottom:153.806928pt;}
.y194{bottom:154.070933pt;}
.y199{bottom:154.093598pt;}
.y148{bottom:154.390930pt;}
.y14d{bottom:154.413595pt;}
.y1c5{bottom:155.989861pt;}
.y1ec{bottom:156.680135pt;}
.y290{bottom:156.969620pt;}
.y313{bottom:157.309578pt;}
.y2d1{bottom:157.309606pt;}
.y1c1{bottom:159.507600pt;}
.y253{bottom:161.548279pt;}
.y21c{bottom:165.361605pt;}
.y6d{bottom:167.480306pt;}
.y29{bottom:168.187866pt;}
.y20d{bottom:168.653564pt;}
.y9e{bottom:168.653605pt;}
.yda{bottom:168.777588pt;}
.y28f{bottom:170.297620pt;}
.y312{bottom:170.637578pt;}
.y2d0{bottom:170.637606pt;}
.y37{bottom:171.668274pt;}
.y1c0{bottom:172.835600pt;}
.y1eb{bottom:173.792928pt;}
.y252{bottom:174.876279pt;}
.y21b{bottom:178.689605pt;}
.y1c4{bottom:180.957194pt;}
.y28e{bottom:183.625620pt;}
.y311{bottom:183.965578pt;}
.y2cf{bottom:183.965606pt;}
.y6c{bottom:184.146973pt;}
.y28{bottom:184.854533pt;}
.y20c{bottom:185.320231pt;}
.y9d{bottom:185.320272pt;}
.yd9{bottom:185.444255pt;}
.y1bf{bottom:186.163600pt;}
.y1ea{bottom:186.375234pt;}
.y36{bottom:187.182274pt;}
.y251{bottom:188.204279pt;}
.y21a{bottom:192.017605pt;}
.y28d{bottom:196.953620pt;}
.y310{bottom:197.293578pt;}
.y2ce{bottom:197.293606pt;}
.y6b{bottom:200.813639pt;}
.y27{bottom:201.521200pt;}
.y250{bottom:201.532279pt;}
.y20b{bottom:201.986898pt;}
.y9c{bottom:201.986938pt;}
.yd8{bottom:202.110921pt;}
.y35{bottom:205.043599pt;}
.y219{bottom:205.345605pt;}
.y28c{bottom:210.281620pt;}
.y30f{bottom:210.621578pt;}
.y2cd{bottom:210.621606pt;}
.y208{bottom:211.076925pt;}
.y24f{bottom:214.860279pt;}
.y6a{bottom:217.480306pt;}
.y26{bottom:218.187866pt;}
.y20a{bottom:218.653564pt;}
.y9b{bottom:218.653605pt;}
.y218{bottom:218.673605pt;}
.yd7{bottom:218.777588pt;}
.y34{bottom:220.557600pt;}
.y28b{bottom:223.609620pt;}
.y30e{bottom:223.949578pt;}
.y2cc{bottom:223.949606pt;}
.y207{bottom:224.400925pt;}
.y24e{bottom:228.188279pt;}
.y217{bottom:232.001605pt;}
.y69{bottom:234.146973pt;}
.y25{bottom:234.854533pt;}
.y209{bottom:235.320231pt;}
.y9a{bottom:235.320272pt;}
.yd6{bottom:235.444255pt;}
.y28a{bottom:236.937620pt;}
.y30d{bottom:237.277578pt;}
.y2cb{bottom:237.277606pt;}
.y33{bottom:238.418925pt;}
.y206{bottom:241.106258pt;}
.y24d{bottom:241.516279pt;}
.y216{bottom:245.329605pt;}
.y289{bottom:250.265620pt;}
.y30c{bottom:250.605578pt;}
.y2ca{bottom:250.605606pt;}
.y68{bottom:250.813639pt;}
.y24{bottom:251.521200pt;}
.yca{bottom:251.986898pt;}
.y99{bottom:251.986938pt;}
.yd5{bottom:252.110921pt;}
.y1b6{bottom:252.111064pt;}
.y32{bottom:253.938259pt;}
.y24c{bottom:254.844279pt;}
.y205{bottom:257.743591pt;}
.y288{bottom:263.593620pt;}
.y30b{bottom:263.933578pt;}
.y2c9{bottom:263.933606pt;}
.y31{bottom:267.266259pt;}
.y67{bottom:267.480306pt;}
.y24b{bottom:268.172279pt;}
.y23{bottom:268.187866pt;}
.yc9{bottom:268.653564pt;}
.y98{bottom:268.653605pt;}
.y107{bottom:268.657552pt;}
.yd4{bottom:268.777588pt;}
.y1a6{bottom:268.777730pt;}
.y215{bottom:271.996938pt;}
.y204{bottom:274.376933pt;}
.y287{bottom:276.921620pt;}
.y30a{bottom:277.261578pt;}
.y2c8{bottom:277.261606pt;}
.y24a{bottom:281.500279pt;}
.y66{bottom:284.146973pt;}
.y22{bottom:284.854533pt;}
.y30{bottom:285.127604pt;}
.yc8{bottom:285.320231pt;}
.y97{bottom:285.320272pt;}
.y106{bottom:285.324219pt;}
.y214{bottom:285.324938pt;}
.yd3{bottom:285.444255pt;}
.y1a5{bottom:285.444275pt;}
.y1b5{bottom:285.444397pt;}
.y203{bottom:287.678270pt;}
.y286{bottom:290.249620pt;}
.y309{bottom:290.589578pt;}
.y2c7{bottom:290.589606pt;}
.y249{bottom:294.828279pt;}
.y65{bottom:300.813639pt;}
.y21{bottom:301.521200pt;}
.yc7{bottom:301.986898pt;}
.y96{bottom:301.986938pt;}
.y105{bottom:301.990885pt;}
.yd2{bottom:302.110921pt;}
.y1a4{bottom:302.110942pt;}
.y1b4{bottom:302.111064pt;}
.y285{bottom:303.577620pt;}
.y308{bottom:303.917578pt;}
.y2c6{bottom:303.917606pt;}
.y202{bottom:304.315604pt;}
.y2f{bottom:307.350263pt;}
.y248{bottom:308.156279pt;}
.y213{bottom:311.992272pt;}
.y284{bottom:316.905620pt;}
.y307{bottom:317.245578pt;}
.y2c5{bottom:317.245606pt;}
.y64{bottom:317.480306pt;}
.y20{bottom:318.187866pt;}
.yc6{bottom:318.653564pt;}
.y95{bottom:318.653605pt;}
.y104{bottom:318.657552pt;}
.yd1{bottom:318.777588pt;}
.y1b3{bottom:318.777730pt;}
.y2e{bottom:320.678263pt;}
.y201{bottom:320.952937pt;}
.y247{bottom:321.484279pt;}
.y212{bottom:325.320272pt;}
.y283{bottom:330.233620pt;}
.y306{bottom:330.573578pt;}
.y2c4{bottom:330.573606pt;}
.y63{bottom:334.146973pt;}
.y246{bottom:334.812279pt;}
.y1f{bottom:334.854533pt;}
.yc5{bottom:335.320231pt;}
.y94{bottom:335.320272pt;}
.y103{bottom:335.324219pt;}
.yd0{bottom:335.444255pt;}
.y1b2{bottom:335.444397pt;}
.y200{bottom:337.590270pt;}
.y282{bottom:343.561620pt;}
.y305{bottom:343.901578pt;}
.y2c3{bottom:343.901606pt;}
.y245{bottom:348.140279pt;}
.y62{bottom:350.813639pt;}
.yc4{bottom:351.986898pt;}
.y93{bottom:351.986938pt;}
.y102{bottom:351.990885pt;}
.ycf{bottom:352.110921pt;}
.y1b1{bottom:352.111064pt;}
.y1ff{bottom:354.227604pt;}
.y281{bottom:356.889620pt;}
.y304{bottom:357.229578pt;}
.y2c2{bottom:357.229606pt;}
.y244{bottom:361.468279pt;}
.y61{bottom:367.480306pt;}
.y16a{bottom:367.718913pt;}
.y1e{bottom:368.187866pt;}
.y18d{bottom:368.652242pt;}
.yc3{bottom:368.653564pt;}
.y92{bottom:368.653605pt;}
.yce{bottom:368.777588pt;}
.y1b0{bottom:368.777730pt;}
.y280{bottom:370.217620pt;}
.y303{bottom:370.557578pt;}
.y2c1{bottom:370.557606pt;}
.y1fe{bottom:370.864937pt;}
.y243{bottom:374.796279pt;}
.y27f{bottom:383.545620pt;}
.y302{bottom:383.885578pt;}
.y2c0{bottom:383.885606pt;}
.y60{bottom:384.146973pt;}
.y169{bottom:384.385579pt;}
.y18c{bottom:385.318909pt;}
.yc2{bottom:385.320231pt;}
.y91{bottom:385.320272pt;}
.y101{bottom:385.324219pt;}
.ycd{bottom:385.444255pt;}
.y1af{bottom:385.444397pt;}
.y1fd{bottom:387.502270pt;}
.y242{bottom:388.124279pt;}
.y27e{bottom:396.873620pt;}
.y301{bottom:397.213578pt;}
.y2bf{bottom:397.213606pt;}
.y5f{bottom:400.813639pt;}
.y168{bottom:401.052246pt;}
.y241{bottom:401.452279pt;}
.y18b{bottom:401.985575pt;}
.yc1{bottom:401.986898pt;}
.y90{bottom:401.986938pt;}
.y100{bottom:401.990885pt;}
.ycc{bottom:402.110921pt;}
.y1ae{bottom:402.111064pt;}
.y1fc{bottom:404.139604pt;}
.y27d{bottom:410.201620pt;}
.y300{bottom:410.541578pt;}
.y2be{bottom:410.541606pt;}
.y240{bottom:414.780279pt;}
.y147{bottom:416.696248pt;}
.y5e{bottom:417.480306pt;}
.y167{bottom:417.718913pt;}
.y1d{bottom:418.187907pt;}
.y18a{bottom:418.652242pt;}
.yc0{bottom:418.653564pt;}
.y8f{bottom:418.653605pt;}
.ycb{bottom:418.777588pt;}
.y1ad{bottom:418.777730pt;}
.y1fb{bottom:420.756937pt;}
.y27c{bottom:423.529620pt;}
.y2ff{bottom:423.869578pt;}
.y2bd{bottom:423.869606pt;}
.y23f{bottom:428.108279pt;}
.y146{bottom:433.362915pt;}
.y5d{bottom:434.146973pt;}
.y166{bottom:434.385579pt;}
.y189{bottom:435.318909pt;}
.ybf{bottom:435.320231pt;}
.y8e{bottom:435.320272pt;}
.yff{bottom:435.324219pt;}
.y1a3{bottom:435.444255pt;}
.y1ac{bottom:435.444397pt;}
.y27b{bottom:436.857620pt;}
.y2fe{bottom:437.197578pt;}
.y2bc{bottom:437.197606pt;}
.y1fa{bottom:437.394270pt;}
.y23e{bottom:441.436279pt;}
.y145{bottom:450.029582pt;}
.y27a{bottom:450.185620pt;}
.y2fd{bottom:450.525578pt;}
.y2bb{bottom:450.525606pt;}
.y5c{bottom:450.813639pt;}
.y165{bottom:451.052246pt;}
.y1c{bottom:451.521240pt;}
.y188{bottom:451.985575pt;}
.ybe{bottom:451.986898pt;}
.y8d{bottom:451.986938pt;}
.yfe{bottom:451.990885pt;}
.y1a2{bottom:452.110921pt;}
.y1ab{bottom:452.111064pt;}
.y1f9{bottom:454.031604pt;}
.y112{bottom:462.319447pt;}
.y279{bottom:463.513620pt;}
.y2fc{bottom:463.853578pt;}
.y2ba{bottom:463.853606pt;}
.y144{bottom:466.696248pt;}
.y5b{bottom:467.480306pt;}
.y164{bottom:467.718913pt;}
.y1b{bottom:468.187907pt;}
.y187{bottom:468.652242pt;}
.ybd{bottom:468.653564pt;}
.y8c{bottom:468.653605pt;}
.yfd{bottom:468.657552pt;}
.y1a1{bottom:468.777588pt;}
.y1aa{bottom:468.777730pt;}
.y1f8{bottom:470.668937pt;}
.y23d{bottom:471.436279pt;}
.y278{bottom:476.841620pt;}
.y2fb{bottom:477.181578pt;}
.y2b9{bottom:477.181606pt;}
.y143{bottom:483.362915pt;}
.y111{bottom:483.966146pt;}
.y5a{bottom:484.146973pt;}
.y163{bottom:484.385579pt;}
.y1a{bottom:484.854574pt;}
.y186{bottom:485.318909pt;}
.ybc{bottom:485.320231pt;}
.y8b{bottom:485.320272pt;}
.yfc{bottom:485.324219pt;}
.y1a0{bottom:485.444255pt;}
.y1a9{bottom:485.444397pt;}
.y1f7{bottom:487.306270pt;}
.y277{bottom:490.169620pt;}
.y33b{bottom:490.373635pt;}
.y2fa{bottom:490.509578pt;}
.y2b8{bottom:490.509606pt;}
.y142{bottom:500.029582pt;}
.y59{bottom:500.813639pt;}
.y162{bottom:501.052246pt;}
.y110{bottom:501.079061pt;}
.y19{bottom:501.521240pt;}
.y185{bottom:501.985575pt;}
.ybb{bottom:501.986898pt;}
.y8a{bottom:501.986938pt;}
.yfb{bottom:501.990885pt;}
.y19f{bottom:502.110921pt;}
.y1a8{bottom:502.111064pt;}
.y276{bottom:503.497620pt;}
.y33a{bottom:503.701635pt;}
.y2f9{bottom:503.837578pt;}
.y2b7{bottom:503.837606pt;}
.y1f6{bottom:503.943604pt;}
.y141{bottom:516.696248pt;}
.y275{bottom:516.825620pt;}
.y339{bottom:517.029635pt;}
.y2f8{bottom:517.165578pt;}
.y2b6{bottom:517.165606pt;}
.y58{bottom:517.480306pt;}
.y161{bottom:517.718913pt;}
.y18{bottom:518.187907pt;}
.y10f{bottom:518.191854pt;}
.y184{bottom:518.652242pt;}
.yba{bottom:518.653564pt;}
.y89{bottom:518.653605pt;}
.yfa{bottom:518.657552pt;}
.y19e{bottom:518.777588pt;}
.y1a7{bottom:518.777730pt;}
.y1f5{bottom:520.576945pt;}
.y23c{bottom:526.738954pt;}
.y274{bottom:530.153620pt;}
.y338{bottom:530.357635pt;}
.y2f7{bottom:530.493578pt;}
.y2b5{bottom:530.493606pt;}
.y10e{bottom:530.787484pt;}
.y140{bottom:533.362915pt;}
.y1f4{bottom:533.902254pt;}
.y57{bottom:534.146973pt;}
.y160{bottom:534.385579pt;}
.y17{bottom:534.854574pt;}
.y183{bottom:535.318909pt;}
.yb9{bottom:535.320231pt;}
.y88{bottom:535.320272pt;}
.yf9{bottom:535.324219pt;}
.y23b{bottom:540.066954pt;}
.y273{bottom:543.481620pt;}
.y337{bottom:543.685635pt;}
.y2f6{bottom:543.821578pt;}
.y2b4{bottom:543.821606pt;}
.y10d{bottom:544.115484pt;}
.y13f{bottom:550.029582pt;}
.y1f3{bottom:550.539587pt;}
.y56{bottom:550.813639pt;}
.y15f{bottom:551.052246pt;}
.y16{bottom:551.521240pt;}
.y182{bottom:551.985575pt;}
.yb8{bottom:551.986898pt;}
.y87{bottom:551.986938pt;}
.yf8{bottom:551.990885pt;}
.y23a{bottom:553.394954pt;}
.y272{bottom:556.809620pt;}
.y336{bottom:557.013635pt;}
.y2f5{bottom:557.149578pt;}
.y2b3{bottom:557.149606pt;}
.y10c{bottom:557.443484pt;}
.y1ba{bottom:563.438933pt;}
.y1be{bottom:563.450266pt;}
.y13e{bottom:566.696248pt;}
.y239{bottom:566.722954pt;}
.y1f2{bottom:567.176921pt;}
.y55{bottom:567.480306pt;}
.y15e{bottom:567.718913pt;}
.y15{bottom:568.187907pt;}
.y181{bottom:568.652242pt;}
.yb7{bottom:568.653564pt;}
.y86{bottom:568.653605pt;}
.yf7{bottom:568.657552pt;}
.y271{bottom:570.137620pt;}
.y335{bottom:570.341635pt;}
.y2f4{bottom:570.477578pt;}
.y2b2{bottom:570.477606pt;}
.y10b{bottom:575.304647pt;}
.y1b9{bottom:576.766933pt;}
.y1bd{bottom:576.778266pt;}
.y238{bottom:580.050954pt;}
.y13d{bottom:583.362915pt;}
.y270{bottom:583.465620pt;}
.y334{bottom:583.669635pt;}
.y2f3{bottom:583.805578pt;}
.y2b1{bottom:583.805606pt;}
.y54{bottom:584.146973pt;}
.y15d{bottom:584.385579pt;}
.y14{bottom:584.854574pt;}
.y180{bottom:585.318909pt;}
.yb6{bottom:585.320231pt;}
.y85{bottom:585.320272pt;}
.yf6{bottom:585.324219pt;}
.y10a{bottom:587.885639pt;}
.y1b8{bottom:590.094933pt;}
.y1bc{bottom:590.106266pt;}
.y1f1{bottom:591.482262pt;}
.y237{bottom:593.378954pt;}
.y26f{bottom:596.793620pt;}
.y333{bottom:596.997635pt;}
.y2f2{bottom:597.133578pt;}
.y2b0{bottom:597.133606pt;}
.y13c{bottom:600.029622pt;}
.y53{bottom:600.813639pt;}
.y15c{bottom:601.052246pt;}
.y109{bottom:601.213639pt;}
.y13{bottom:601.521240pt;}
.y17f{bottom:601.985575pt;}
.yb5{bottom:601.986898pt;}
.y84{bottom:601.986938pt;}
.yf5{bottom:601.990885pt;}
.y1b7{bottom:603.422933pt;}
.y1bb{bottom:603.434266pt;}
.y1f0{bottom:604.810262pt;}
.y236{bottom:606.706954pt;}
.y26e{bottom:610.121620pt;}
.y332{bottom:610.325635pt;}
.y2f1{bottom:610.461578pt;}
.y2af{bottom:610.461606pt;}
.y13b{bottom:616.696289pt;}
.y52{bottom:617.480306pt;}
.y15b{bottom:617.718913pt;}
.y12{bottom:618.187907pt;}
.y17e{bottom:618.652242pt;}
.yb4{bottom:618.653564pt;}
.y83{bottom:618.653605pt;}
.yf4{bottom:618.657552pt;}
.y235{bottom:620.034954pt;}
.y26d{bottom:623.449620pt;}
.y331{bottom:623.653635pt;}
.y2f0{bottom:623.789578pt;}
.y2ae{bottom:623.789606pt;}
.y126{bottom:625.841981pt;}
.y1e9{bottom:627.468547pt;}
.y234{bottom:633.362954pt;}
.y13a{bottom:633.362956pt;}
.y51{bottom:634.146973pt;}
.y15a{bottom:634.385579pt;}
.y11{bottom:634.854574pt;}
.y17d{bottom:635.318909pt;}
.yb3{bottom:635.320231pt;}
.yf3{bottom:635.324219pt;}
.y26c{bottom:636.777620pt;}
.y330{bottom:636.981635pt;}
.y2ef{bottom:637.117578pt;}
.y2ad{bottom:637.117606pt;}
.y125{bottom:642.547314pt;}
.y233{bottom:646.690954pt;}
.y139{bottom:650.029622pt;}
.y26b{bottom:650.105620pt;}
.y32f{bottom:650.309635pt;}
.y2ee{bottom:650.445578pt;}
.y2ac{bottom:650.445606pt;}
.y50{bottom:650.813639pt;}
.y159{bottom:651.052246pt;}
.y10{bottom:651.521240pt;}
.y17c{bottom:651.985575pt;}
.yb2{bottom:651.986898pt;}
.y82{bottom:651.986938pt;}
.yf2{bottom:651.990885pt;}
.y124{bottom:659.184647pt;}
.y232{bottom:660.018954pt;}
.y26a{bottom:663.433620pt;}
.y32e{bottom:663.637635pt;}
.y2ed{bottom:663.773578pt;}
.y2ab{bottom:663.773606pt;}
.y138{bottom:666.696289pt;}
.y4f{bottom:667.480306pt;}
.y158{bottom:667.718913pt;}
.yf{bottom:668.187907pt;}
.y1d5{bottom:668.493571pt;}
.y17b{bottom:668.652242pt;}
.y1e8{bottom:668.653559pt;}
.yb1{bottom:668.653564pt;}
.yf1{bottom:668.657552pt;}
.y231{bottom:673.346954pt;}
.y123{bottom:675.818152pt;}
.y269{bottom:676.761620pt;}
.y32d{bottom:676.965635pt;}
.y2ec{bottom:677.101578pt;}
.y2aa{bottom:677.101606pt;}
.y137{bottom:683.362956pt;}
.y4e{bottom:684.146973pt;}
.y157{bottom:684.385579pt;}
.ye{bottom:684.854574pt;}
.y1d4{bottom:685.160238pt;}
.y17a{bottom:685.318909pt;}
.y1e7{bottom:685.320226pt;}
.y81{bottom:685.320231pt;}
.yf0{bottom:685.324219pt;}
.y268{bottom:690.089620pt;}
.y32c{bottom:690.293635pt;}
.y2eb{bottom:690.429578pt;}
.y2a9{bottom:690.429606pt;}
.y122{bottom:692.451371pt;}
.y230{bottom:700.014287pt;}
.y136{bottom:700.029622pt;}
.y4d{bottom:700.813639pt;}
.y156{bottom:701.052246pt;}
.yd{bottom:701.521240pt;}
.y1d3{bottom:701.826904pt;}
.y179{bottom:701.985575pt;}
.y1e6{bottom:701.986893pt;}
.yb0{bottom:701.986898pt;}
.yef{bottom:701.990885pt;}
.y267{bottom:703.417620pt;}
.y32b{bottom:703.621635pt;}
.y2ea{bottom:703.757578pt;}
.y2a8{bottom:703.757606pt;}
.y121{bottom:709.064672pt;}
.y22f{bottom:713.342287pt;}
.y135{bottom:716.696289pt;}
.y266{bottom:716.745620pt;}
.y32a{bottom:716.949635pt;}
.y2e9{bottom:717.085578pt;}
.y2a7{bottom:717.085606pt;}
.y4c{bottom:717.480306pt;}
.y155{bottom:717.718913pt;}
.y1d2{bottom:718.493571pt;}
.y178{bottom:718.652242pt;}
.y1e5{bottom:718.653559pt;}
.yaf{bottom:718.653564pt;}
.yee{bottom:718.657552pt;}
.y120{bottom:725.702005pt;}
.y22e{bottom:726.670287pt;}
.y265{bottom:730.073620pt;}
.y329{bottom:730.277635pt;}
.y2e8{bottom:730.413578pt;}
.y2a6{bottom:730.413606pt;}
.y134{bottom:733.362956pt;}
.y4b{bottom:734.146973pt;}
.y154{bottom:734.385579pt;}
.y1d1{bottom:735.160238pt;}
.y177{bottom:735.318909pt;}
.y1e4{bottom:735.320226pt;}
.y127{bottom:735.320231pt;}
.yed{bottom:735.324219pt;}
.y22d{bottom:739.998287pt;}
.yc{bottom:740.794803pt;}
.y11f{bottom:742.339339pt;}
.y264{bottom:743.401620pt;}
.y328{bottom:743.605635pt;}
.y2e7{bottom:743.741578pt;}
.y2a5{bottom:743.741606pt;}
.y133{bottom:750.029622pt;}
.y4a{bottom:750.813639pt;}
.y1d0{bottom:751.826904pt;}
.y176{bottom:751.985575pt;}
.y1e3{bottom:751.986893pt;}
.y80{bottom:751.986898pt;}
.yec{bottom:751.990885pt;}
.y22c{bottom:753.326287pt;}
.yb{bottom:754.122803pt;}
.y263{bottom:756.729620pt;}
.y327{bottom:756.933635pt;}
.y2e6{bottom:757.069578pt;}
.y2a4{bottom:757.069606pt;}
.y11e{bottom:758.976672pt;}
.y22b{bottom:766.654287pt;}
.y132{bottom:766.696289pt;}
.y49{bottom:767.480306pt;}
.y153{bottom:767.718913pt;}
.y175{bottom:768.652242pt;}
.y1e2{bottom:768.653559pt;}
.y7f{bottom:768.653564pt;}
.yeb{bottom:768.657552pt;}
.y262{bottom:770.057620pt;}
.y326{bottom:770.261635pt;}
.y2e5{bottom:770.397578pt;}
.y2a3{bottom:770.397606pt;}
.y11d{bottom:775.614005pt;}
.y22a{bottom:779.982287pt;}
.y131{bottom:783.362956pt;}
.y261{bottom:783.385620pt;}
.y325{bottom:783.589635pt;}
.y2e4{bottom:783.725578pt;}
.y2a2{bottom:783.725606pt;}
.y48{bottom:784.146973pt;}
.y1cf{bottom:785.160238pt;}
.y174{bottom:785.318909pt;}
.y1e1{bottom:785.320226pt;}
.y7e{bottom:785.320231pt;}
.yae{bottom:785.320272pt;}
.yea{bottom:785.324219pt;}
.ya{bottom:791.989502pt;}
.y11c{bottom:792.251339pt;}
.y260{bottom:796.713620pt;}
.y324{bottom:796.917635pt;}
.y2e3{bottom:797.053578pt;}
.y2a1{bottom:797.053606pt;}
.y130{bottom:800.029622pt;}
.y47{bottom:800.813639pt;}
.y152{bottom:801.052246pt;}
.y173{bottom:801.985575pt;}
.y1e0{bottom:801.986893pt;}
.y7d{bottom:801.986898pt;}
.yad{bottom:801.986938pt;}
.ye9{bottom:801.990885pt;}
.y229{bottom:806.649620pt;}
.y9{bottom:808.656169pt;}
.y11b{bottom:808.876818pt;}
.y25f{bottom:810.041620pt;}
.y323{bottom:810.245635pt;}
.y2e2{bottom:810.381578pt;}
.y2a0{bottom:810.381606pt;}
.y12f{bottom:816.696289pt;}
.y46{bottom:817.480306pt;}
.y172{bottom:818.652242pt;}
.y1df{bottom:818.653559pt;}
.y7c{bottom:818.653564pt;}
.yac{bottom:818.653605pt;}
.ye8{bottom:818.657552pt;}
.y228{bottom:819.977620pt;}
.y25e{bottom:823.369620pt;}
.y322{bottom:823.573635pt;}
.y2e1{bottom:823.709578pt;}
.y29f{bottom:823.709606pt;}
.y11a{bottom:825.514152pt;}
.y12e{bottom:833.362956pt;}
.y45{bottom:834.146973pt;}
.y1ce{bottom:835.160238pt;}
.y171{bottom:835.318909pt;}
.y1de{bottom:835.320226pt;}
.y7b{bottom:835.320231pt;}
.yab{bottom:835.320272pt;}
.ye7{bottom:835.324219pt;}
.y25d{bottom:836.697620pt;}
.y321{bottom:836.901635pt;}
.y2e0{bottom:837.037578pt;}
.y29e{bottom:837.037606pt;}
.y119{bottom:842.151485pt;}
.y227{bottom:846.644287pt;}
.y8{bottom:848.377441pt;}
.y25c{bottom:850.025620pt;}
.y12d{bottom:850.029622pt;}
.y320{bottom:850.229635pt;}
.y2df{bottom:850.365578pt;}
.y29d{bottom:850.365606pt;}
.y44{bottom:850.813639pt;}
.y1cd{bottom:851.826904pt;}
.y170{bottom:851.985575pt;}
.y1dd{bottom:851.986893pt;}
.y7a{bottom:851.986898pt;}
.yaa{bottom:851.986938pt;}
.ye6{bottom:851.990885pt;}
.y190{bottom:853.232973pt;}
.y118{bottom:858.784704pt;}
.y25b{bottom:863.353620pt;}
.y31f{bottom:863.557635pt;}
.y2de{bottom:863.693578pt;}
.y29c{bottom:863.693606pt;}
.y18f{bottom:866.560973pt;}
.y12c{bottom:866.696289pt;}
.y43{bottom:867.480306pt;}
.y1cc{bottom:868.493571pt;}
.y16f{bottom:868.652242pt;}
.y1dc{bottom:868.653559pt;}
.y79{bottom:868.653564pt;}
.ya9{bottom:868.653605pt;}
.ye5{bottom:868.657552pt;}
.y7{bottom:872.377441pt;}
.y117{bottom:875.420688pt;}
.y226{bottom:876.670287pt;}
.y25a{bottom:876.681620pt;}
.y31e{bottom:876.885635pt;}
.y2dd{bottom:877.021578pt;}
.y29b{bottom:877.021606pt;}
.y12b{bottom:883.362956pt;}
.y42{bottom:884.146973pt;}
.y1cb{bottom:885.160238pt;}
.y16e{bottom:885.318909pt;}
.y1db{bottom:885.320226pt;}
.y78{bottom:885.320231pt;}
.ya8{bottom:885.320272pt;}
.ye4{bottom:885.324219pt;}
.y225{bottom:889.998287pt;}
.y259{bottom:890.009620pt;}
.y31d{bottom:890.213635pt;}
.y2dc{bottom:890.349578pt;}
.y29a{bottom:890.349606pt;}
.y193{bottom:891.316021pt;}
.y116{bottom:892.058021pt;}
.y6{bottom:896.377441pt;}
.y12a{bottom:900.029622pt;}
.y41{bottom:900.813639pt;}
.y1ca{bottom:901.826904pt;}
.y1da{bottom:901.986893pt;}
.y77{bottom:901.986898pt;}
.ya7{bottom:901.986938pt;}
.ye3{bottom:901.990885pt;}
.y224{bottom:903.326287pt;}
.y258{bottom:903.337620pt;}
.y31c{bottom:903.541635pt;}
.y2db{bottom:903.677578pt;}
.y299{bottom:903.677606pt;}
.y192{bottom:908.021355pt;}
.y115{bottom:908.695355pt;}
.y257{bottom:916.665620pt;}
.y31b{bottom:916.869635pt;}
.y2da{bottom:917.005578pt;}
.y298{bottom:917.005606pt;}
.y40{bottom:917.480306pt;}
.y1c9{bottom:918.493571pt;}
.y16d{bottom:918.652242pt;}
.y1d9{bottom:918.653559pt;}
.y76{bottom:918.653564pt;}
.ya6{bottom:918.653605pt;}
.ye2{bottom:918.657552pt;}
.y223{bottom:929.993620pt;}
.y31a{bottom:930.197635pt;}
.y2d9{bottom:930.333578pt;}
.y297{bottom:930.333606pt;}
.y191{bottom:932.988688pt;}
.y114{bottom:932.994021pt;}
.y129{bottom:933.362956pt;}
.y3f{bottom:934.146973pt;}
.y1c8{bottom:935.160238pt;}
.y1d8{bottom:935.320226pt;}
.y75{bottom:935.320231pt;}
.ya5{bottom:935.320272pt;}
.ye1{bottom:935.324219pt;}
.y222{bottom:943.321620pt;}
.y319{bottom:943.525635pt;}
.y2d8{bottom:943.661578pt;}
.y296{bottom:943.661606pt;}
.y113{bottom:946.322021pt;}
.y3e{bottom:950.813639pt;}
.y16c{bottom:951.985575pt;}
.y1d7{bottom:951.986893pt;}
.y74{bottom:951.986898pt;}
.ya4{bottom:951.986938pt;}
.ye0{bottom:951.990885pt;}
.y18e{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y221{bottom:956.649620pt;}
.y318{bottom:956.853635pt;}
.y2d7{bottom:956.989578pt;}
.y295{bottom:956.989606pt;}
.y128{bottom:966.696289pt;}
.y3d{bottom:967.480306pt;}
.y1c7{bottom:968.493571pt;}
.y16b{bottom:968.652242pt;}
.y1d6{bottom:968.653559pt;}
.y73{bottom:968.653564pt;}
.ya3{bottom:968.653605pt;}
.ydf{bottom:968.657552pt;}
.y108{bottom:968.980306pt;}
.y220{bottom:969.977620pt;}
.y317{bottom:970.181635pt;}
.y2d6{bottom:970.317578pt;}
.y294{bottom:970.317606pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3c{bottom:1002.206543pt;}
.y72{bottom:1002.206706pt;}
.hf{height:22.625866pt;}
.h14{height:28.242536pt;}
.h1d{height:28.242659pt;}
.h13{height:28.242699pt;}
.he{height:32.322667pt;}
.hd{height:32.760417pt;}
.h2{height:37.376000pt;}
.h9{height:38.026667pt;}
.h1c{height:38.027155pt;}
.h8{height:38.453333pt;}
.h4{height:39.712000pt;}
.h11{height:40.165333pt;}
.h1e{height:40.759167pt;}
.h22{height:40.759248pt;}
.h17{height:40.774646pt;}
.h15{height:40.775460pt;}
.h1f{height:40.791264pt;}
.h21{height:40.796581pt;}
.h18{height:40.812630pt;}
.h16{height:40.855785pt;}
.h20{height:40.887150pt;}
.hc{height:46.144000pt;}
.h12{height:46.376000pt;}
.hb{height:47.253333pt;}
.h1a{height:47.826667pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h10{height:52.448000pt;}
.h19{height:54.559837pt;}
.ha{height:54.560000pt;}
.h1b{height:54.560081pt;}
.h7{height:57.658667pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x7{left:69.996800pt;}
.xd{left:72.032130pt;}
.x4{left:75.717199pt;}
.x8{left:83.138141pt;}
.x6{left:86.929867pt;}
.x16{left:90.709469pt;}
.xf{left:219.569469pt;}
.xe{left:238.110802pt;}
.xb{left:240.264130pt;}
.x10{left:293.440135pt;}
.xc{left:317.795464pt;}
.x11{left:372.977469pt;}
.x5{left:408.188924pt;}
.xa{left:423.311457pt;}
.x15{left:430.866924pt;}
.x12{left:452.514802pt;}
.x13{left:532.052135pt;}
.x14{left:611.589469pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.x9{left:704.136393pt;}
}




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