
    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_a7d71af46145c36df668c4ae.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_c60f55dfb7e6fcb7e4ba2882.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_35c1e5c160e45ef06847bde0.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_00d8795bbe2bab7736b9448d.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_28af60b342a7d44caaf17207.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_584827963a28bd1323c1f7f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_52f3e17141f57d6f9bebf692.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_a423c7bab9cf7883d1eabaca.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_3c7ee055f300813bd5d0f519.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;}
.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;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.400055px;}
.v1{vertical-align:24.000000px;}
.ls45{letter-spacing:-1.734000px;}
.ls44{letter-spacing:-0.867000px;}
.ls34{letter-spacing:-0.765000px;}
.ls4c{letter-spacing:-0.480000px;}
.ls2a{letter-spacing:-0.420000px;}
.ls28{letter-spacing:-0.360000px;}
.ls70{letter-spacing:-0.357000px;}
.ls71{letter-spacing:-0.306000px;}
.ls29{letter-spacing:-0.300000px;}
.ls6f{letter-spacing:-0.255000px;}
.ls16{letter-spacing:-0.240000px;}
.ls72{letter-spacing:-0.204000px;}
.ls17{letter-spacing:-0.180000px;}
.ls73{letter-spacing:-0.153000px;}
.ls15{letter-spacing:-0.120000px;}
.ls74{letter-spacing:-0.102000px;}
.ls2b{letter-spacing:-0.060000px;}
.ls6e{letter-spacing:-0.051000px;}
.ls14{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls2d{letter-spacing:0.030000px;}
.ls35{letter-spacing:0.048000px;}
.ls52{letter-spacing:0.051000px;}
.ls30{letter-spacing:0.059967px;}
.ls36{letter-spacing:0.059986px;}
.ls1a{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.084000px;}
.lsb{letter-spacing:0.090000px;}
.ls5a{letter-spacing:0.102000px;}
.ls3{letter-spacing:0.120000px;}
.ls7f{letter-spacing:0.127500px;}
.ls53{letter-spacing:0.153000px;}
.ls87{letter-spacing:0.163178px;}
.ls8c{letter-spacing:0.178500px;}
.ls13{letter-spacing:0.178791px;}
.ls5{letter-spacing:0.180000px;}
.ls4e{letter-spacing:0.204000px;}
.ls47{letter-spacing:0.210000px;}
.ls97{letter-spacing:0.229500px;}
.ls2{letter-spacing:0.240000px;}
.ls94{letter-spacing:0.254988px;}
.ls12{letter-spacing:0.255000px;}
.ls58{letter-spacing:0.264000px;}
.ls1e{letter-spacing:0.270000px;}
.ls82{letter-spacing:0.280500px;}
.ls49{letter-spacing:0.282000px;}
.ls5b{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.299983px;}
.ls4{letter-spacing:0.300000px;}
.ls50{letter-spacing:0.306000px;}
.ls68{letter-spacing:0.311056px;}
.ls22{letter-spacing:0.330000px;}
.ls51{letter-spacing:0.357000px;}
.lsf{letter-spacing:0.360000px;}
.ls89{letter-spacing:0.382500px;}
.ls64{letter-spacing:0.408000px;}
.ls6{letter-spacing:0.420000px;}
.ls84{letter-spacing:0.433500px;}
.ls25{letter-spacing:0.450000px;}
.ls59{letter-spacing:0.459000px;}
.ls18{letter-spacing:0.480000px;}
.ls6c{letter-spacing:0.484500px;}
.ls48{letter-spacing:0.504000px;}
.ls3f{letter-spacing:0.510000px;}
.ls19{letter-spacing:0.540000px;}
.ls5c{letter-spacing:0.561000px;}
.ls93{letter-spacing:0.586500px;}
.ls24{letter-spacing:0.600000px;}
.ls69{letter-spacing:0.612000px;}
.ls1d{letter-spacing:0.630000px;}
.ls60{letter-spacing:0.637500px;}
.ls1c{letter-spacing:0.660000px;}
.ls57{letter-spacing:0.663000px;}
.ls4b{letter-spacing:0.689978px;}
.ls32{letter-spacing:0.690000px;}
.ls2f{letter-spacing:0.702000px;}
.ls56{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.720000px;}
.ls90{letter-spacing:0.739500px;}
.ls38{letter-spacing:0.750000px;}
.ls5f{letter-spacing:0.765000px;}
.ls27{letter-spacing:0.780000px;}
.ls67{letter-spacing:0.816000px;}
.lsa{letter-spacing:0.840000px;}
.ls78{letter-spacing:0.841500px;}
.ls4f{letter-spacing:0.867000px;}
.ls21{letter-spacing:0.870000px;}
.ls98{letter-spacing:0.892500px;}
.lse{letter-spacing:0.900000px;}
.ls65{letter-spacing:0.918000px;}
.ls4d{letter-spacing:0.930000px;}
.ls96{letter-spacing:0.943500px;}
.ls1b{letter-spacing:0.960000px;}
.ls54{letter-spacing:0.969000px;}
.ls3a{letter-spacing:0.983973px;}
.ls9{letter-spacing:0.990000px;}
.lsc{letter-spacing:1.020000px;}
.ls5d{letter-spacing:1.071000px;}
.ls10{letter-spacing:1.080000px;}
.ls92{letter-spacing:1.096500px;}
.ls80{letter-spacing:1.116882px;}
.ls61{letter-spacing:1.122000px;}
.ls2c{letter-spacing:1.140000px;}
.ls1f{letter-spacing:1.170000px;}
.ls76{letter-spacing:1.173000px;}
.lsd{letter-spacing:1.200000px;}
.ls9b{letter-spacing:1.224000px;}
.ls20{letter-spacing:1.260000px;}
.ls55{letter-spacing:1.275000px;}
.ls9e{letter-spacing:1.300500px;}
.ls2e{letter-spacing:1.320000px;}
.ls66{letter-spacing:1.326000px;}
.ls8{letter-spacing:1.380000px;}
.ls6a{letter-spacing:1.428000px;}
.ls26{letter-spacing:1.440000px;}
.ls7c{letter-spacing:1.479000px;}
.ls23{letter-spacing:1.500000px;}
.ls7a{letter-spacing:1.530000px;}
.ls3b{letter-spacing:1.560000px;}
.ls8e{letter-spacing:1.581000px;}
.ls3e{letter-spacing:1.590000px;}
.ls86{letter-spacing:1.596286px;}
.ls46{letter-spacing:1.620000px;}
.ls3d{letter-spacing:1.680000px;}
.ls63{letter-spacing:1.683000px;}
.ls11{letter-spacing:1.740000px;}
.ls6d{letter-spacing:1.795174px;}
.ls39{letter-spacing:1.800000px;}
.ls4a{letter-spacing:1.860000px;}
.ls88{letter-spacing:1.876800px;}
.ls7d{letter-spacing:1.887000px;}
.ls62{letter-spacing:1.938000px;}
.ls85{letter-spacing:1.968600px;}
.ls5e{letter-spacing:2.060389px;}
.ls3c{letter-spacing:2.100000px;}
.ls6b{letter-spacing:2.147100px;}
.ls37{letter-spacing:2.160000px;}
.ls8b{letter-spacing:2.177700px;}
.ls77{letter-spacing:2.244000px;}
.ls79{letter-spacing:2.269491px;}
.ls7b{letter-spacing:2.376592px;}
.ls91{letter-spacing:2.550000px;}
.ls9a{letter-spacing:2.570389px;}
.ls8d{letter-spacing:2.723388px;}
.ls75{letter-spacing:2.733600px;}
.ls99{letter-spacing:3.417000px;}
.ls8f{letter-spacing:3.559800px;}
.ls95{letter-spacing:3.774000px;}
.ls83{letter-spacing:3.845400px;}
.ls0{letter-spacing:3.990000px;}
.ls8a{letter-spacing:3.993300px;}
.ls81{letter-spacing:4.181983px;}
.ls9d{letter-spacing:4.646069px;}
.ls7e{letter-spacing:5.727300px;}
.ls9c{letter-spacing:5.737470px;}
.ls41{letter-spacing:166.081183px;}
.ls42{letter-spacing:168.639587px;}
.ls43{letter-spacing:234.940247px;}
.ls33{letter-spacing:767.360413px;}
.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;}
}
.ws7c{word-spacing:-16.380000px;}
.ws60{word-spacing:-16.260000px;}
.ws4b{word-spacing:-16.200000px;}
.wsa1{word-spacing:-16.140000px;}
.wsac{word-spacing:-16.080000px;}
.ws4a{word-spacing:-16.020000px;}
.wsb0{word-spacing:-15.960000px;}
.ws47{word-spacing:-15.900000px;}
.ws49{word-spacing:-15.840000px;}
.ws62{word-spacing:-15.690000px;}
.ws7b{word-spacing:-15.600000px;}
.ws25{word-spacing:-15.540000px;}
.ws61{word-spacing:-15.360000px;}
.ws7{word-spacing:-15.300000px;}
.wsa3{word-spacing:-15.240000px;}
.wsab{word-spacing:-15.180000px;}
.ws46{word-spacing:-15.120000px;}
.ws24{word-spacing:-15.000000px;}
.wsa2{word-spacing:-14.880000px;}
.ws48{word-spacing:-14.820000px;}
.wsaa{word-spacing:-14.760000px;}
.wsda{word-spacing:-14.637000px;}
.wsd9{word-spacing:-14.025000px;}
.wsd8{word-spacing:-13.770000px;}
.wsb2{word-spacing:-13.719000px;}
.wsd6{word-spacing:-13.617000px;}
.wsd7{word-spacing:-13.566000px;}
.ws103{word-spacing:-13.515000px;}
.wse1{word-spacing:-13.413000px;}
.wse0{word-spacing:-13.311000px;}
.wsdd{word-spacing:-13.158000px;}
.ws107{word-spacing:-13.056000px;}
.ws8{word-spacing:-13.005000px;}
.wsdb{word-spacing:-12.903000px;}
.wsdc{word-spacing:-12.852000px;}
.wsde{word-spacing:-12.801000px;}
.wsa{word-spacing:-12.750000px;}
.ws102{word-spacing:-12.699000px;}
.wsdf{word-spacing:-12.597000px;}
.ws105{word-spacing:-12.546000px;}
.ws6d{word-spacing:-12.474000px;}
.ws104{word-spacing:-12.444000px;}
.ws2{word-spacing:-12.420000px;}
.ws6e{word-spacing:-11.985000px;}
.ws8f{word-spacing:-11.883000px;}
.ws5{word-spacing:-11.520000px;}
.ws90{word-spacing:-11.016000px;}
.ws1{word-spacing:-9.996000px;}
.wsb1{word-spacing:-9.537000px;}
.ws0{word-spacing:-9.408000px;}
.ws9{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws67{word-spacing:-7.500000px;}
.ws77{word-spacing:-6.375000px;}
.wsb{word-spacing:-1.890000px;}
.wsea{word-spacing:-1.887000px;}
.ws86{word-spacing:-1.800000px;}
.ws7e{word-spacing:-1.680000px;}
.ws82{word-spacing:-1.620000px;}
.ws78{word-spacing:-1.560000px;}
.wse{word-spacing:-1.500000px;}
.ws2e{word-spacing:-1.440000px;}
.wse6{word-spacing:-1.428000px;}
.ws14{word-spacing:-1.380000px;}
.wsf1{word-spacing:-1.326000px;}
.ws35{word-spacing:-1.320000px;}
.wsb5{word-spacing:-1.275000px;}
.ws88{word-spacing:-1.260000px;}
.wsc5{word-spacing:-1.224000px;}
.ws63{word-spacing:-1.200000px;}
.wsc4{word-spacing:-1.173000px;}
.ws30{word-spacing:-1.140000px;}
.wsc6{word-spacing:-1.122000px;}
.ws36{word-spacing:-1.080000px;}
.wsc1{word-spacing:-1.071000px;}
.ws80{word-spacing:-1.020000px;}
.wsbf{word-spacing:-0.969000px;}
.ws3d{word-spacing:-0.960000px;}
.ws10b{word-spacing:-0.918000px;}
.ws50{word-spacing:-0.900000px;}
.wsca{word-spacing:-0.867000px;}
.ws28{word-spacing:-0.840000px;}
.wsf6{word-spacing:-0.816000px;}
.ws3e{word-spacing:-0.780000px;}
.wsc2{word-spacing:-0.765000px;}
.ws11{word-spacing:-0.720000px;}
.wsc3{word-spacing:-0.714000px;}
.wsd0{word-spacing:-0.663000px;}
.wsf{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.612000px;}
.ws39{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.570000px;}
.ws106{word-spacing:-0.561000px;}
.ws27{word-spacing:-0.540000px;}
.wsc8{word-spacing:-0.510000px;}
.ws26{word-spacing:-0.480000px;}
.ws1b{word-spacing:-0.420000px;}
.wsc9{word-spacing:-0.408000px;}
.ws2a{word-spacing:-0.360000px;}
.wsd2{word-spacing:-0.357000px;}
.wscb{word-spacing:-0.306000px;}
.ws4{word-spacing:-0.300000px;}
.wsbe{word-spacing:-0.264000px;}
.wsce{word-spacing:-0.255000px;}
.ws73{word-spacing:-0.240000px;}
.wsec{word-spacing:-0.204000px;}
.ws2d{word-spacing:-0.180000px;}
.wsef{word-spacing:-0.153000px;}
.ws29{word-spacing:-0.120000px;}
.ws10f{word-spacing:-0.102000px;}
.ws6{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.060000px;}
.wsf9{word-spacing:-0.051000px;}
.wsc{word-spacing:0.000000px;}
.wsd3{word-spacing:0.051000px;}
.ws2b{word-spacing:0.060000px;}
.wsd5{word-spacing:0.102000px;}
.ws45{word-spacing:0.120000px;}
.ws10c{word-spacing:0.153000px;}
.ws1f{word-spacing:0.180000px;}
.wsfb{word-spacing:0.204000px;}
.ws4f{word-spacing:0.240000px;}
.wsb3{word-spacing:0.255000px;}
.ws55{word-spacing:0.300000px;}
.ws109{word-spacing:0.306000px;}
.wsb4{word-spacing:0.357000px;}
.ws19{word-spacing:0.360000px;}
.ws10d{word-spacing:0.408000px;}
.ws4d{word-spacing:0.420000px;}
.ws2f{word-spacing:0.480000px;}
.wsd4{word-spacing:0.510000px;}
.ws3f{word-spacing:0.540000px;}
.wsfa{word-spacing:0.561000px;}
.ws3a{word-spacing:0.600000px;}
.wscc{word-spacing:0.612000px;}
.ws17{word-spacing:0.660000px;}
.ws5e{word-spacing:0.720000px;}
.ws101{word-spacing:0.765000px;}
.ws56{word-spacing:0.780000px;}
.wsf0{word-spacing:0.816000px;}
.ws18{word-spacing:0.840000px;}
.wsee{word-spacing:0.918000px;}
.ws38{word-spacing:0.960000px;}
.wsf5{word-spacing:0.969000px;}
.wsba{word-spacing:1.071000px;}
.ws10{word-spacing:1.080000px;}
.wsd1{word-spacing:1.122000px;}
.ws6b{word-spacing:1.140000px;}
.wsc0{word-spacing:1.173000px;}
.ws7a{word-spacing:1.200000px;}
.wsb7{word-spacing:1.224000px;}
.ws65{word-spacing:1.260000px;}
.wsb6{word-spacing:1.275000px;}
.ws32{word-spacing:1.320000px;}
.wscf{word-spacing:1.326000px;}
.wsbd{word-spacing:1.377000px;}
.ws51{word-spacing:1.380000px;}
.ws114{word-spacing:1.428000px;}
.ws6a{word-spacing:1.440000px;}
.wsfc{word-spacing:1.479000px;}
.ws12{word-spacing:1.500000px;}
.wscd{word-spacing:1.530000px;}
.ws5a{word-spacing:1.560000px;}
.ws43{word-spacing:1.620000px;}
.wsbb{word-spacing:1.632000px;}
.ws59{word-spacing:1.680000px;}
.wse7{word-spacing:1.683000px;}
.wsfe{word-spacing:1.734000px;}
.ws87{word-spacing:1.740000px;}
.wsfd{word-spacing:1.785000px;}
.ws57{word-spacing:1.800000px;}
.ws112{word-spacing:1.836000px;}
.ws5d{word-spacing:1.860000px;}
.ws68{word-spacing:1.920000px;}
.wse9{word-spacing:1.938000px;}
.ws42{word-spacing:1.980000px;}
.ws16{word-spacing:2.040000px;}
.ws110{word-spacing:2.091000px;}
.ws1d{word-spacing:2.100000px;}
.ws54{word-spacing:2.160000px;}
.wse8{word-spacing:2.193000px;}
.ws83{word-spacing:2.220000px;}
.wsa5{word-spacing:2.280000px;}
.ws95{word-spacing:2.295000px;}
.ws64{word-spacing:2.340000px;}
.ws9f{word-spacing:2.346000px;}
.wsed{word-spacing:2.397000px;}
.ws3c{word-spacing:2.400000px;}
.ws2c{word-spacing:2.460000px;}
.wsbc{word-spacing:2.499000px;}
.ws3b{word-spacing:2.520000px;}
.wsf8{word-spacing:2.550000px;}
.ws6c{word-spacing:2.580000px;}
.wsf4{word-spacing:2.601000px;}
.ws15{word-spacing:2.640000px;}
.ws4e{word-spacing:2.700000px;}
.ws10a{word-spacing:2.703000px;}
.wsad{word-spacing:2.760000px;}
.ws10e{word-spacing:2.805000px;}
.ws5b{word-spacing:2.820000px;}
.wsa0{word-spacing:2.856000px;}
.ws1a{word-spacing:2.880000px;}
.wsc7{word-spacing:2.907000px;}
.wsa6{word-spacing:2.940000px;}
.wsf2{word-spacing:2.958000px;}
.wsa8{word-spacing:3.000000px;}
.ws53{word-spacing:3.060000px;}
.wsff{word-spacing:3.111000px;}
.ws34{word-spacing:3.120000px;}
.wsf3{word-spacing:3.162000px;}
.ws20{word-spacing:3.180000px;}
.ws40{word-spacing:3.240000px;}
.ws113{word-spacing:3.264000px;}
.ws5c{word-spacing:3.300000px;}
.wsb8{word-spacing:3.315000px;}
.wsa7{word-spacing:3.420000px;}
.ws8c{word-spacing:3.468000px;}
.ws5f{word-spacing:3.540000px;}
.ws111{word-spacing:3.570000px;}
.ws31{word-spacing:3.600000px;}
.wsf7{word-spacing:3.621000px;}
.ws9d{word-spacing:3.672000px;}
.ws58{word-spacing:3.720000px;}
.wse2{word-spacing:3.723000px;}
.ws100{word-spacing:3.774000px;}
.wsa9{word-spacing:3.780000px;}
.ws1c{word-spacing:3.840000px;}
.ws44{word-spacing:3.900000px;}
.wseb{word-spacing:3.927000px;}
.ws33{word-spacing:3.960000px;}
.ws79{word-spacing:4.020000px;}
.wse4{word-spacing:4.029000px;}
.ws8a{word-spacing:4.182000px;}
.ws52{word-spacing:4.200000px;}
.ws115{word-spacing:4.233000px;}
.wsa4{word-spacing:4.320000px;}
.wsb9{word-spacing:4.335000px;}
.ws66{word-spacing:4.380000px;}
.ws69{word-spacing:4.440000px;}
.ws4c{word-spacing:4.500000px;}
.ws8e{word-spacing:4.539000px;}
.ws7d{word-spacing:4.560000px;}
.ws84{word-spacing:4.620000px;}
.ws13{word-spacing:4.680000px;}
.ws98{word-spacing:4.845000px;}
.ws89{word-spacing:4.920000px;}
.ws9e{word-spacing:4.947000px;}
.ws41{word-spacing:5.040000px;}
.ws37{word-spacing:5.160000px;}
.wse3{word-spacing:5.202000px;}
.ws94{word-spacing:5.253000px;}
.wsae{word-spacing:5.280000px;}
.ws74{word-spacing:5.559000px;}
.ws81{word-spacing:5.700000px;}
.ws9b{word-spacing:5.763000px;}
.wse5{word-spacing:5.865000px;}
.ws108{word-spacing:5.916000px;}
.ws7f{word-spacing:6.240000px;}
.ws21{word-spacing:6.420000px;}
.ws76{word-spacing:6.528000px;}
.ws91{word-spacing:6.681000px;}
.ws85{word-spacing:6.720000px;}
.ws75{word-spacing:6.783000px;}
.wsaf{word-spacing:7.080000px;}
.ws92{word-spacing:8.211000px;}
.ws8b{word-spacing:8.619000px;}
.ws9c{word-spacing:8.670000px;}
.ws9a{word-spacing:9.384000px;}
.ws93{word-spacing:9.741000px;}
.ws8d{word-spacing:9.792000px;}
.ws99{word-spacing:11.832000px;}
.ws116{word-spacing:13.668000px;}
.ws97{word-spacing:16.218000px;}
.ws117{word-spacing:17.799000px;}
.ws96{word-spacing:21.726000px;}
.ws23{word-spacing:72.267000px;}
.ws72{word-spacing:231.316260px;}
.ws70{word-spacing:533.222426px;}
.ws6f{word-spacing:540.465025px;}
.ws71{word-spacing:557.395826px;}
._1c{margin-left:-27.542400px;}
._1d{margin-left:-23.229900px;}
._4{margin-left:-16.575000px;}
._1e{margin-left:-15.147000px;}
._13{margin-left:-13.056000px;}
._18{margin-left:-11.388000px;}
._c{margin-left:-9.990000px;}
._d{margin-left:-8.190000px;}
._b{margin-left:-7.034400px;}
._a{margin-left:-5.982000px;}
._1{margin-left:-4.622700px;}
._2{margin-left:-2.985600px;}
._0{margin-left:-1.632000px;}
._3{width:1.430400px;}
._8{width:2.820000px;}
._9{width:4.723200px;}
._f{width:6.372595px;}
._19{width:7.980000px;}
._17{width:9.930000px;}
._11{width:12.750000px;}
._24{width:14.433000px;}
._e{width:15.679500px;}
._5{width:18.360000px;}
._23{width:44.981991px;}
._22{width:46.794177px;}
._6{width:54.621000px;}
._16{width:117.759000px;}
._1f{width:123.317981px;}
._15{width:193.647000px;}
._1b{width:241.791000px;}
._12{width:355.164000px;}
._21{width:450.306600px;}
._20{width:460.785000px;}
._10{width:612.556169px;}
._1a{width:671.466000px;}
._14{width:681.462000px;}
._7{width:2016.998945px;}
.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;}
.y42{bottom:112.938300px;}
.y78{bottom:113.415344px;}
.y185{bottom:113.674945px;}
.y118{bottom:114.289799px;}
.yad{bottom:114.735260px;}
.yd0{bottom:114.735306px;}
.ydb{bottom:114.874947px;}
.y251{bottom:116.614823px;}
.y2d5{bottom:116.997307px;}
.y293{bottom:117.010073px;}
.y20f{bottom:119.950373px;}
.y1d2{bottom:122.061904px;}
.y16d{bottom:122.322748px;}
.y2d{bottom:122.461349px;}
.y184{bottom:128.674945px;}
.y250{bottom:131.608823px;}
.y2d4{bottom:131.991307px;}
.y292{bottom:132.004073px;}
.y77{bottom:132.165344px;}
.y41{bottom:133.032303px;}
.yac{bottom:133.485260px;}
.ycf{bottom:133.485306px;}
.yda{bottom:133.624947px;}
.y20e{bottom:134.944373px;}
.y1d1{bottom:137.055904px;}
.y16c{bottom:137.316748px;}
.y2c{bottom:141.211349px;}
.y183{bottom:143.764970px;}
.y24f{bottom:146.602823px;}
.y2d3{bottom:146.985307px;}
.y291{bottom:146.998073px;}
.y20d{bottom:149.938373px;}
.y40{bottom:150.491553px;}
.y76{bottom:150.915344px;}
.y1d0{bottom:152.049904px;}
.yab{bottom:152.235260px;}
.yce{bottom:152.235306px;}
.y166{bottom:152.285250px;}
.y16b{bottom:152.310748px;}
.yde{bottom:152.374947px;}
.y182{bottom:158.758970px;}
.y2b{bottom:159.961349px;}
.y24e{bottom:161.596823px;}
.y2d2{bottom:161.979307px;}
.y290{bottom:161.992073px;}
.y20c{bottom:164.932373px;}
.y3f{bottom:165.485553px;}
.y1cf{bottom:167.043904px;}
.y165{bottom:167.279250px;}
.y16a{bottom:167.304748px;}
.y171{bottom:167.342998px;}
.y75{bottom:169.665344px;}
.yaa{bottom:170.985260px;}
.ycd{bottom:170.985306px;}
.ydd{bottom:171.124947px;}
.yd9{bottom:171.130947px;}
.y24d{bottom:176.590823px;}
.y2d1{bottom:176.973307px;}
.y28f{bottom:176.986073px;}
.y2a{bottom:178.711349px;}
.y20b{bottom:179.926373px;}
.y1ce{bottom:182.037904px;}
.y164{bottom:182.273250px;}
.y169{bottom:182.298748px;}
.y170{bottom:182.336998px;}
.y3e{bottom:185.579556px;}
.y192{bottom:186.617549px;}
.y74{bottom:188.415344px;}
.ya9{bottom:189.735260px;}
.ycc{bottom:189.735306px;}
.yd8{bottom:189.874947px;}
.y24c{bottom:191.584823px;}
.y2d0{bottom:191.967307px;}
.y28e{bottom:191.980073px;}
.y20a{bottom:194.920373px;}
.y1cd{bottom:197.031904px;}
.y163{bottom:197.267250px;}
.y168{bottom:197.292748px;}
.y16f{bottom:197.330998px;}
.y29{bottom:197.461349px;}
.y191{bottom:201.611540px;}
.y193{bottom:201.611549px;}
.y3d{bottom:203.038794px;}
.y24b{bottom:206.578823px;}
.y2cf{bottom:206.961307px;}
.y28d{bottom:206.974073px;}
.y73{bottom:207.165344px;}
.ya8{bottom:208.485260px;}
.ycb{bottom:208.485306px;}
.ydc{bottom:208.624947px;}
.y209{bottom:209.914373px;}
.y1cc{bottom:212.025904px;}
.y162{bottom:212.261250px;}
.y167{bottom:212.286748px;}
.y16e{bottom:212.324998px;}
.y28{bottom:216.211349px;}
.y3c{bottom:218.032794px;}
.y18f{bottom:220.405040px;}
.y24a{bottom:221.572823px;}
.y2ce{bottom:221.955307px;}
.y28c{bottom:221.968073px;}
.y208{bottom:224.908373px;}
.y72{bottom:225.915344px;}
.ya7{bottom:227.235260px;}
.yca{bottom:227.235306px;}
.yd7{bottom:227.374947px;}
.y161{bottom:231.054750px;}
.y27{bottom:234.961349px;}
.y190{bottom:235.399040px;}
.y18e{bottom:235.400549px;}
.y249{bottom:236.566823px;}
.y2cd{bottom:236.949307px;}
.y28b{bottom:236.962073px;}
.y3b{bottom:238.126808px;}
.y207{bottom:239.902373px;}
.y71{bottom:244.665344px;}
.y1cb{bottom:245.736904px;}
.ya6{bottom:245.985260px;}
.yc9{bottom:245.985306px;}
.y15d{bottom:246.036000px;}
.y160{bottom:246.048750px;}
.yd6{bottom:246.124947px;}
.y248{bottom:251.560823px;}
.y2cc{bottom:251.943307px;}
.y28a{bottom:251.956073px;}
.y26{bottom:253.711349px;}
.y18c{bottom:254.117549px;}
.y206{bottom:254.896373px;}
.y3a{bottom:255.580059px;}
.y1ca{bottom:260.730904px;}
.y15c{bottom:261.030000px;}
.y15f{bottom:261.042750px;}
.y70{bottom:263.415344px;}
.ya5{bottom:264.735260px;}
.yc8{bottom:264.735306px;}
.yd5{bottom:264.874947px;}
.y247{bottom:266.554823px;}
.y2cb{bottom:266.937307px;}
.y289{bottom:266.950073px;}
.y18d{bottom:269.111549px;}
.y18b{bottom:269.113059px;}
.y205{bottom:269.890373px;}
.y25{bottom:272.461349px;}
.y39{bottom:275.674049px;}
.y15b{bottom:276.024000px;}
.y15e{bottom:276.036750px;}
.y246{bottom:281.548823px;}
.y2ca{bottom:281.931307px;}
.y288{bottom:281.944073px;}
.y6f{bottom:282.165344px;}
.ya4{bottom:283.485260px;}
.yc7{bottom:283.485306px;}
.yd4{bottom:283.624947px;}
.y204{bottom:284.884373px;}
.y188{bottom:287.829295px;}
.y18a{bottom:287.830059px;}
.y24{bottom:291.211349px;}
.y38{bottom:293.127300px;}
.y1c9{bottom:294.480904px;}
.y245{bottom:296.542823px;}
.y2c9{bottom:296.925307px;}
.y287{bottom:296.938073px;}
.y203{bottom:299.878373px;}
.y6e{bottom:300.915344px;}
.ya3{bottom:302.235260px;}
.yc6{bottom:302.235306px;}
.yd3{bottom:302.374947px;}
.y187{bottom:302.823295px;}
.y189{bottom:302.824059px;}
.y15a{bottom:304.112250px;}
.y23{bottom:309.961349px;}
.y244{bottom:311.536823px;}
.y2c8{bottom:311.919307px;}
.y286{bottom:311.932073px;}
.y37{bottom:313.221291px;}
.y202{bottom:314.872373px;}
.y6d{bottom:319.665344px;}
.ya2{bottom:320.985260px;}
.yc5{bottom:320.985306px;}
.y243{bottom:326.530823px;}
.y2c7{bottom:326.913307px;}
.y285{bottom:326.926073px;}
.y22{bottom:328.711349px;}
.y156{bottom:329.620798px;}
.y201{bottom:329.866373px;}
.y36{bottom:330.680541px;}
.y186{bottom:330.911545px;}
.y1c8{bottom:332.114100px;}
.y6c{bottom:338.415344px;}
.ya1{bottom:339.735260px;}
.yc4{bottom:339.735306px;}
.y242{bottom:341.524823px;}
.y2c6{bottom:341.907307px;}
.y284{bottom:341.920073px;}
.y155{bottom:344.614798px;}
.y159{bottom:344.627548px;}
.y200{bottom:344.860373px;}
.y35{bottom:345.674541px;}
.y1c7{bottom:347.108100px;}
.y21{bottom:347.461349px;}
.y181{bottom:356.485970px;}
.y241{bottom:356.518823px;}
.y2c5{bottom:356.901307px;}
.y283{bottom:356.914073px;}
.y6b{bottom:357.165344px;}
.ya0{bottom:358.485260px;}
.yc3{bottom:358.485306px;}
.ye5{bottom:358.871845px;}
.y154{bottom:359.608798px;}
.y158{bottom:359.621548px;}
.y1ff{bottom:359.854373px;}
.y1c6{bottom:362.102100px;}
.y34{bottom:365.768555px;}
.y20{bottom:366.211349px;}
.y180{bottom:371.479970px;}
.y240{bottom:371.512823px;}
.y2c4{bottom:371.895307px;}
.y282{bottom:371.908073px;}
.y153{bottom:374.602798px;}
.y157{bottom:374.615548px;}
.y1fe{bottom:374.848373px;}
.y6a{bottom:375.915344px;}
.y1c5{bottom:377.096100px;}
.y9f{bottom:377.235260px;}
.yc2{bottom:377.235306px;}
.ye4{bottom:378.965858px;}
.y1f{bottom:384.961349px;}
.y23f{bottom:386.506823px;}
.y2c3{bottom:386.889307px;}
.y281{bottom:386.902073px;}
.y1fd{bottom:389.842373px;}
.y33{bottom:390.786920px;}
.y1c4{bottom:392.090100px;}
.ye3{bottom:393.124076px;}
.y69{bottom:394.665344px;}
.y9e{bottom:395.985260px;}
.yc1{bottom:395.985306px;}
.y23e{bottom:401.500823px;}
.y2c2{bottom:401.883307px;}
.y280{bottom:401.896073px;}
.y1e{bottom:403.711349px;}
.y1fc{bottom:404.836373px;}
.y32{bottom:405.780920px;}
.y1c3{bottom:407.084100px;}
.ye2{bottom:412.376576px;}
.y68{bottom:413.415344px;}
.y9d{bottom:414.735260px;}
.yc0{bottom:414.735306px;}
.y23d{bottom:416.494823px;}
.y2c1{bottom:416.877307px;}
.y27f{bottom:416.890073px;}
.y1fb{bottom:419.830373px;}
.y1c2{bottom:422.078100px;}
.y1d{bottom:422.461349px;}
.ye1{bottom:427.370576px;}
.y31{bottom:428.322920px;}
.y23c{bottom:431.488823px;}
.y2c0{bottom:431.871307px;}
.y27e{bottom:431.884073px;}
.y67{bottom:432.165344px;}
.y136{bottom:432.294342px;}
.y152{bottom:433.305313px;}
.y9c{bottom:433.485260px;}
.ybf{bottom:433.485306px;}
.y1fa{bottom:434.824373px;}
.y1c1{bottom:437.072100px;}
.y1c{bottom:441.211349px;}
.ye0{bottom:442.364576px;}
.y30{bottom:443.316920px;}
.y23b{bottom:446.482823px;}
.y2bf{bottom:446.865307px;}
.y27d{bottom:446.878073px;}
.y1f9{bottom:449.818373px;}
.y66{bottom:450.915344px;}
.y135{bottom:451.044342px;}
.y151{bottom:452.055313px;}
.y9b{bottom:452.235260px;}
.ybe{bottom:452.235306px;}
.y1b{bottom:459.961349px;}
.y23a{bottom:461.476823px;}
.y2be{bottom:461.859307px;}
.y27c{bottom:461.872073px;}
.y1f8{bottom:464.812373px;}
.y65{bottom:469.665344px;}
.y134{bottom:469.794342px;}
.y111{bottom:470.541902px;}
.y1c0{bottom:470.783100px;}
.y150{bottom:470.805313px;}
.y9a{bottom:470.985260px;}
.ybd{bottom:470.985306px;}
.y178{bottom:473.326970px;}
.y17f{bottom:473.365220px;}
.y2f{bottom:474.133670px;}
.y239{bottom:476.470823px;}
.y2bd{bottom:476.853307px;}
.y27b{bottom:476.866073px;}
.y1a{bottom:478.711349px;}
.y1f7{bottom:479.806373px;}
.y110{bottom:485.535902px;}
.y1bf{bottom:485.777100px;}
.y177{bottom:488.320970px;}
.y17e{bottom:488.359220px;}
.y64{bottom:488.415344px;}
.y133{bottom:488.544342px;}
.y2e{bottom:489.127670px;}
.y99{bottom:489.735260px;}
.ybc{bottom:489.735306px;}
.y238{bottom:491.464823px;}
.y2bc{bottom:491.847307px;}
.y27a{bottom:491.860073px;}
.y1f6{bottom:494.800373px;}
.y19{bottom:497.461349px;}
.y10f{bottom:500.529902px;}
.y1be{bottom:500.771100px;}
.y176{bottom:503.314970px;}
.y17d{bottom:503.353220px;}
.y237{bottom:506.458823px;}
.y2bb{bottom:506.841307px;}
.y279{bottom:506.854073px;}
.y63{bottom:507.165344px;}
.y132{bottom:507.294342px;}
.y14f{bottom:508.305313px;}
.y98{bottom:508.485260px;}
.ybb{bottom:508.485306px;}
.y1f5{bottom:509.794373px;}
.y10e{bottom:515.523902px;}
.y1bd{bottom:515.765100px;}
.y18{bottom:516.211349px;}
.y175{bottom:518.308970px;}
.y17c{bottom:518.347220px;}
.y236{bottom:521.452823px;}
.y2ba{bottom:521.835307px;}
.y278{bottom:521.848073px;}
.y1f4{bottom:524.788373px;}
.y62{bottom:525.915344px;}
.y97{bottom:527.235260px;}
.yba{bottom:527.235306px;}
.y10d{bottom:530.517902px;}
.y1bc{bottom:530.759100px;}
.y174{bottom:533.302970px;}
.y17b{bottom:533.341220px;}
.y17{bottom:534.961349px;}
.y235{bottom:536.446823px;}
.y2b9{bottom:536.829307px;}
.y277{bottom:536.842073px;}
.y1f3{bottom:539.782373px;}
.y61{bottom:544.665344px;}
.y131{bottom:544.794342px;}
.y10c{bottom:545.511902px;}
.y1bb{bottom:545.753100px;}
.y96{bottom:545.985260px;}
.yb9{bottom:545.985306px;}
.y173{bottom:548.296970px;}
.y17a{bottom:548.335220px;}
.y234{bottom:551.440823px;}
.y2b8{bottom:551.823307px;}
.y276{bottom:551.836073px;}
.y1f2{bottom:554.776373px;}
.y1ba{bottom:560.747100px;}
.y172{bottom:563.290970px;}
.y179{bottom:563.329220px;}
.y60{bottom:563.415344px;}
.y10b{bottom:564.305402px;}
.y14e{bottom:564.555313px;}
.y95{bottom:564.735260px;}
.yb8{bottom:564.735306px;}
.y233{bottom:566.434823px;}
.y2b7{bottom:566.817307px;}
.y275{bottom:566.830073px;}
.y1f1{bottom:569.770373px;}
.y16{bottom:572.461349px;}
.y1b9{bottom:575.741100px;}
.y10a{bottom:579.299402px;}
.y232{bottom:581.428823px;}
.y2b6{bottom:581.811307px;}
.y274{bottom:581.824073px;}
.y5f{bottom:582.165344px;}
.y130{bottom:582.294342px;}
.y14d{bottom:583.305313px;}
.y94{bottom:583.485260px;}
.yb7{bottom:583.485306px;}
.y1a2{bottom:583.497306px;}
.y1f0{bottom:584.764373px;}
.y1b8{bottom:590.735100px;}
.y109{bottom:594.293402px;}
.y231{bottom:596.422823px;}
.y2b5{bottom:596.805307px;}
.y273{bottom:596.818073px;}
.y1ef{bottom:599.758373px;}
.y5e{bottom:600.915344px;}
.y12f{bottom:601.044342px;}
.y14c{bottom:602.055313px;}
.y93{bottom:602.235260px;}
.yb6{bottom:602.235306px;}
.y1a1{bottom:602.241306px;}
.y1b7{bottom:605.729100px;}
.y108{bottom:609.287402px;}
.y230{bottom:611.416823px;}
.y2b4{bottom:611.799307px;}
.y272{bottom:611.812073px;}
.y1ee{bottom:614.752373px;}
.y5d{bottom:619.665344px;}
.y12e{bottom:619.794342px;}
.y1b6{bottom:620.723100px;}
.y92{bottom:620.985260px;}
.yb5{bottom:620.985306px;}
.y107{bottom:624.281402px;}
.y22f{bottom:626.410823px;}
.y2b3{bottom:626.793307px;}
.y271{bottom:626.806073px;}
.y15{bottom:628.711395px;}
.y1ed{bottom:629.746373px;}
.y5c{bottom:638.415344px;}
.y12d{bottom:638.544342px;}
.y106{bottom:639.275402px;}
.y14b{bottom:639.561313px;}
.y91{bottom:639.735260px;}
.yb4{bottom:639.735306px;}
.y22e{bottom:641.404823px;}
.y2b2{bottom:641.787307px;}
.y270{bottom:641.800073px;}
.y1ec{bottom:644.740373px;}
.y14{bottom:647.461395px;}
.y1b5{bottom:654.434100px;}
.y22d{bottom:656.398823px;}
.y2b1{bottom:656.781307px;}
.y26f{bottom:656.794073px;}
.y5b{bottom:657.165344px;}
.y12c{bottom:657.294342px;}
.y105{bottom:657.992402px;}
.y14a{bottom:658.305313px;}
.y90{bottom:658.485260px;}
.yb3{bottom:658.485306px;}
.y1eb{bottom:659.734373px;}
.y1b4{bottom:669.428100px;}
.y22c{bottom:671.392823px;}
.y2b0{bottom:671.775307px;}
.y26e{bottom:671.788073px;}
.y104{bottom:672.986402px;}
.y1ea{bottom:674.728373px;}
.y5a{bottom:675.915344px;}
.y12b{bottom:676.044342px;}
.y8f{bottom:677.235260px;}
.yb2{bottom:677.235306px;}
.y13{bottom:684.961395px;}
.y22b{bottom:686.386823px;}
.y2af{bottom:686.769307px;}
.y26d{bottom:686.782073px;}
.y103{bottom:687.980402px;}
.y1e9{bottom:689.722373px;}
.y59{bottom:694.665344px;}
.y12a{bottom:694.794342px;}
.y149{bottom:695.799362px;}
.y8e{bottom:695.985260px;}
.yb1{bottom:695.985306px;}
.y22a{bottom:701.380823px;}
.y2ae{bottom:701.763307px;}
.y26c{bottom:701.776073px;}
.y102{bottom:702.974402px;}
.y1b3{bottom:703.136810px;}
.y12{bottom:703.711395px;}
.y1e8{bottom:704.716373px;}
.y58{bottom:713.415344px;}
.y129{bottom:713.544342px;}
.y148{bottom:714.549362px;}
.y8d{bottom:714.735260px;}
.yb0{bottom:714.735306px;}
.y229{bottom:716.374823px;}
.y2ad{bottom:716.757307px;}
.y26b{bottom:716.770073px;}
.y100{bottom:717.968402px;}
.y1e7{bottom:719.710373px;}
.y1b2{bottom:721.886810px;}
.y11{bottom:722.461395px;}
.y228{bottom:731.368823px;}
.y2ac{bottom:731.751307px;}
.y26a{bottom:731.764073px;}
.y57{bottom:732.165344px;}
.y128{bottom:732.294342px;}
.y101{bottom:732.962402px;}
.yff{bottom:732.963911px;}
.y147{bottom:733.299362px;}
.y8c{bottom:733.485260px;}
.yaf{bottom:733.485306px;}
.y1a5{bottom:733.503260px;}
.y1e6{bottom:734.704373px;}
.y1b1{bottom:740.636810px;}
.y10{bottom:741.211395px;}
.y227{bottom:746.362823px;}
.y2ab{bottom:746.745307px;}
.y269{bottom:746.758073px;}
.y1e5{bottom:749.698373px;}
.y56{bottom:750.915344px;}
.y127{bottom:751.044342px;}
.yfd{bottom:751.680911px;}
.y146{bottom:752.049362px;}
.y8b{bottom:752.235260px;}
.yae{bottom:752.235306px;}
.y1a4{bottom:752.247260px;}
.y1b0{bottom:759.386810px;}
.yf{bottom:759.961395px;}
.y226{bottom:761.356823px;}
.y2aa{bottom:761.739307px;}
.y268{bottom:761.752073px;}
.y1e4{bottom:764.692373px;}
.yfe{bottom:766.674911px;}
.yfc{bottom:766.676421px;}
.y55{bottom:769.665344px;}
.y145{bottom:770.799362px;}
.y8a{bottom:770.985260px;}
.y1a0{bottom:770.985306px;}
.y1a3{bottom:770.991260px;}
.y225{bottom:776.350823px;}
.y2a9{bottom:776.733307px;}
.y267{bottom:776.746073px;}
.y1af{bottom:778.136810px;}
.ye{bottom:778.711395px;}
.y1e3{bottom:779.686373px;}
.yfa{bottom:785.393421px;}
.y54{bottom:788.415344px;}
.y126{bottom:788.544342px;}
.y89{bottom:789.735260px;}
.y19f{bottom:789.735306px;}
.y112{bottom:789.741260px;}
.y195{bottom:789.747260px;}
.y224{bottom:791.344823px;}
.y2a8{bottom:791.727307px;}
.y266{bottom:791.740073px;}
.y1e2{bottom:794.680373px;}
.y1ae{bottom:796.886810px;}
.yd{bottom:797.461395px;}
.yfb{bottom:800.387421px;}
.yf9{bottom:800.388792px;}
.y223{bottom:806.338823px;}
.y2a7{bottom:806.721307px;}
.y265{bottom:806.734073px;}
.y53{bottom:807.165344px;}
.y144{bottom:808.299362px;}
.y88{bottom:808.485260px;}
.y19e{bottom:808.485306px;}
.y194{bottom:808.491260px;}
.y1e1{bottom:809.674373px;}
.y1ad{bottom:815.636810px;}
.yc{bottom:816.211395px;}
.yf7{bottom:819.105792px;}
.y222{bottom:821.332823px;}
.y2a6{bottom:821.715307px;}
.y264{bottom:821.728073px;}
.y1e0{bottom:824.668373px;}
.y52{bottom:825.915344px;}
.y125{bottom:826.044342px;}
.y87{bottom:827.235260px;}
.y19d{bottom:827.235306px;}
.yf8{bottom:834.099792px;}
.yf6{bottom:834.125256px;}
.y1ac{bottom:834.386810px;}
.yb{bottom:834.961395px;}
.y221{bottom:836.326823px;}
.y2a5{bottom:836.709307px;}
.y263{bottom:836.722073px;}
.y1df{bottom:839.662373px;}
.y51{bottom:844.665344px;}
.y124{bottom:844.794342px;}
.y143{bottom:845.799362px;}
.y86{bottom:845.985260px;}
.y19c{bottom:845.985306px;}
.y220{bottom:851.320823px;}
.y2a4{bottom:851.703307px;}
.y262{bottom:851.716073px;}
.yf5{bottom:852.842256px;}
.y1ab{bottom:853.136810px;}
.y1de{bottom:854.656373px;}
.y50{bottom:863.415344px;}
.y123{bottom:863.544342px;}
.y142{bottom:864.549362px;}
.y85{bottom:864.735260px;}
.y19b{bottom:864.735306px;}
.y21f{bottom:866.314823px;}
.y2a3{bottom:866.697307px;}
.y261{bottom:866.710073px;}
.yf4{bottom:867.836256px;}
.y1dd{bottom:869.650373px;}
.y1aa{bottom:871.886810px;}
.ya{bottom:879.144153px;}
.y21e{bottom:881.308823px;}
.y2a2{bottom:881.691307px;}
.y260{bottom:881.704073px;}
.y4f{bottom:882.165344px;}
.y122{bottom:882.294342px;}
.yf3{bottom:882.830256px;}
.y141{bottom:883.299362px;}
.y84{bottom:883.485260px;}
.y19a{bottom:883.485306px;}
.y1dc{bottom:884.644373px;}
.y1a9{bottom:890.636810px;}
.y9{bottom:894.138153px;}
.y21d{bottom:896.302823px;}
.y2a1{bottom:896.685307px;}
.y25f{bottom:896.698073px;}
.yf2{bottom:897.824256px;}
.y1db{bottom:899.638373px;}
.y4e{bottom:900.915344px;}
.y121{bottom:901.044342px;}
.y140{bottom:902.049362px;}
.y83{bottom:902.235260px;}
.y199{bottom:902.235306px;}
.y1a8{bottom:909.386810px;}
.y21c{bottom:911.296823px;}
.y2a0{bottom:911.679307px;}
.y25e{bottom:911.692073px;}
.yf0{bottom:912.818256px;}
.y1da{bottom:914.632373px;}
.y4d{bottom:919.665344px;}
.y120{bottom:919.794342px;}
.y13f{bottom:920.799362px;}
.y82{bottom:920.985260px;}
.y198{bottom:920.985306px;}
.y21b{bottom:926.290823px;}
.y29f{bottom:926.673307px;}
.y25d{bottom:926.686073px;}
.yf1{bottom:927.812256px;}
.yef{bottom:927.837719px;}
.y1a7{bottom:928.136810px;}
.y1d9{bottom:929.626373px;}
.y8{bottom:936.738190px;}
.y4c{bottom:938.415344px;}
.y11f{bottom:938.544342px;}
.y13e{bottom:939.549362px;}
.y81{bottom:939.735260px;}
.y197{bottom:939.735306px;}
.y21a{bottom:941.284823px;}
.y29e{bottom:941.667307px;}
.y25c{bottom:941.680073px;}
.yee{bottom:946.554719px;}
.y219{bottom:956.278823px;}
.y29d{bottom:956.661307px;}
.y25b{bottom:956.674073px;}
.y4b{bottom:957.165344px;}
.y11e{bottom:957.294342px;}
.y13d{bottom:958.299362px;}
.y80{bottom:958.485260px;}
.y196{bottom:958.485306px;}
.yed{bottom:961.548719px;}
.y1d8{bottom:963.376373px;}
.y1a6{bottom:965.636810px;}
.y218{bottom:971.272823px;}
.y29c{bottom:971.655307px;}
.y25a{bottom:971.668073px;}
.y4a{bottom:975.915344px;}
.y11d{bottom:976.044342px;}
.yec{bottom:976.542719px;}
.y13c{bottom:977.049362px;}
.y7f{bottom:977.235260px;}
.y117{bottom:977.235306px;}
.y7{bottom:981.424622px;}
.y217{bottom:986.266823px;}
.y29b{bottom:986.649307px;}
.y259{bottom:986.662073px;}
.yeb{bottom:991.536719px;}
.y49{bottom:994.665344px;}
.y11c{bottom:994.794342px;}
.y13b{bottom:995.799362px;}
.y7e{bottom:995.985260px;}
.y116{bottom:995.985306px;}
.y216{bottom:1001.260823px;}
.y29a{bottom:1001.643307px;}
.y258{bottom:1001.656073px;}
.ye9{bottom:1006.530719px;}
.y6{bottom:1008.424622px;}
.y48{bottom:1013.415344px;}
.y13a{bottom:1014.549362px;}
.y7d{bottom:1014.735260px;}
.y115{bottom:1014.735306px;}
.y215{bottom:1016.254823px;}
.y299{bottom:1016.637307px;}
.y257{bottom:1016.650073px;}
.yea{bottom:1021.524719px;}
.ye8{bottom:1021.530024px;}
.y214{bottom:1031.248823px;}
.y1d7{bottom:1031.289889px;}
.y298{bottom:1031.631307px;}
.y256{bottom:1031.644073px;}
.y47{bottom:1032.165344px;}
.y11b{bottom:1032.294342px;}
.y139{bottom:1033.299362px;}
.y7c{bottom:1033.485260px;}
.y114{bottom:1033.485306px;}
.y213{bottom:1046.242823px;}
.y1d6{bottom:1046.283889px;}
.y297{bottom:1046.625307px;}
.y255{bottom:1046.638073px;}
.ye7{bottom:1049.618274px;}
.y46{bottom:1050.915344px;}
.y138{bottom:1052.049362px;}
.y7b{bottom:1052.235260px;}
.y113{bottom:1052.235306px;}
.y212{bottom:1061.236823px;}
.y1d5{bottom:1061.277889px;}
.y296{bottom:1061.619307px;}
.y254{bottom:1061.632073px;}
.ye6{bottom:1064.612274px;}
.y45{bottom:1069.665344px;}
.y11a{bottom:1069.800342px;}
.y7a{bottom:1070.985260px;}
.yd2{bottom:1070.985306px;}
.y2d7{bottom:1076.090573px;}
.y5{bottom:1076.132080px;}
.y211{bottom:1076.230823px;}
.y1d4{bottom:1076.271889px;}
.y295{bottom:1076.613307px;}
.y253{bottom:1076.626073px;}
.y44{bottom:1088.415344px;}
.y119{bottom:1088.544342px;}
.y137{bottom:1089.549362px;}
.y79{bottom:1089.735260px;}
.yd1{bottom:1089.735306px;}
.ydf{bottom:1090.102844px;}
.y2d6{bottom:1091.084573px;}
.y210{bottom:1091.224823px;}
.y1d3{bottom:1091.265889px;}
.y294{bottom:1091.607307px;}
.y252{bottom:1091.620073px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y43{bottom:1127.482361px;}
.hf{height:25.204199px;}
.hd{height:36.006000px;}
.he{height:36.855469px;}
.h2{height:42.048000px;}
.h9{height:42.360000px;}
.h8{height:43.260000px;}
.h4{height:44.676000px;}
.h11{height:45.186000px;}
.h19{height:45.220110px;}
.h14{height:45.502492px;}
.h15{height:45.502858px;}
.h1a{height:45.580208px;}
.h1b{height:45.583217px;}
.h13{height:45.583858px;}
.h17{height:45.597394px;}
.h18{height:45.598126px;}
.h16{height:45.598492px;}
.hb{height:51.912000px;}
.h1c{height:52.166963px;}
.h12{height:52.173000px;}
.h1d{height:52.173037px;}
.ha{height:53.160000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h10{height:59.004000px;}
.hc{height:61.380000px;}
.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;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.545395px;}
.x7{left:97.796100px;}
.x19{left:102.048152px;}
.x12{left:261.313042px;}
.x13{left:270.314542px;}
.xa{left:292.878159px;}
.xf{left:367.923884px;}
.x10{left:376.925384px;}
.xb{left:388.044159px;}
.x14{left:446.978542px;}
.x15{left:455.980042px;}
.x5{left:459.212723px;}
.x6{left:476.222723px;}
.xc{left:483.210159px;}
.x18{left:484.725290px;}
.x11{left:520.299133px;}
.xd{left:578.376159px;}
.x16{left:632.095788px;}
.x17{left:641.097288px;}
.xe{left:673.542159px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.133382pt;}
.v1{vertical-align:21.333333pt;}
.ls45{letter-spacing:-1.541333pt;}
.ls44{letter-spacing:-0.770667pt;}
.ls34{letter-spacing:-0.680000pt;}
.ls4c{letter-spacing:-0.426667pt;}
.ls2a{letter-spacing:-0.373333pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls70{letter-spacing:-0.317333pt;}
.ls71{letter-spacing:-0.272000pt;}
.ls29{letter-spacing:-0.266667pt;}
.ls6f{letter-spacing:-0.226667pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls72{letter-spacing:-0.181333pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls73{letter-spacing:-0.136000pt;}
.ls15{letter-spacing:-0.106667pt;}
.ls74{letter-spacing:-0.090667pt;}
.ls2b{letter-spacing:-0.053333pt;}
.ls6e{letter-spacing:-0.045333pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls2d{letter-spacing:0.026667pt;}
.ls35{letter-spacing:0.042667pt;}
.ls52{letter-spacing:0.045333pt;}
.ls30{letter-spacing:0.053304pt;}
.ls36{letter-spacing:0.053321pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.074667pt;}
.lsb{letter-spacing:0.080000pt;}
.ls5a{letter-spacing:0.090667pt;}
.ls3{letter-spacing:0.106667pt;}
.ls7f{letter-spacing:0.113333pt;}
.ls53{letter-spacing:0.136000pt;}
.ls87{letter-spacing:0.145047pt;}
.ls8c{letter-spacing:0.158667pt;}
.ls13{letter-spacing:0.158926pt;}
.ls5{letter-spacing:0.160000pt;}
.ls4e{letter-spacing:0.181333pt;}
.ls47{letter-spacing:0.186667pt;}
.ls97{letter-spacing:0.204000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls94{letter-spacing:0.226656pt;}
.ls12{letter-spacing:0.226667pt;}
.ls58{letter-spacing:0.234667pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls82{letter-spacing:0.249333pt;}
.ls49{letter-spacing:0.250667pt;}
.ls5b{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.266651pt;}
.ls4{letter-spacing:0.266667pt;}
.ls50{letter-spacing:0.272000pt;}
.ls68{letter-spacing:0.276494pt;}
.ls22{letter-spacing:0.293333pt;}
.ls51{letter-spacing:0.317333pt;}
.lsf{letter-spacing:0.320000pt;}
.ls89{letter-spacing:0.340000pt;}
.ls64{letter-spacing:0.362667pt;}
.ls6{letter-spacing:0.373333pt;}
.ls84{letter-spacing:0.385333pt;}
.ls25{letter-spacing:0.400000pt;}
.ls59{letter-spacing:0.408000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls6c{letter-spacing:0.430667pt;}
.ls48{letter-spacing:0.448000pt;}
.ls3f{letter-spacing:0.453333pt;}
.ls19{letter-spacing:0.480000pt;}
.ls5c{letter-spacing:0.498667pt;}
.ls93{letter-spacing:0.521333pt;}
.ls24{letter-spacing:0.533333pt;}
.ls69{letter-spacing:0.544000pt;}
.ls1d{letter-spacing:0.560000pt;}
.ls60{letter-spacing:0.566667pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls57{letter-spacing:0.589333pt;}
.ls4b{letter-spacing:0.613314pt;}
.ls32{letter-spacing:0.613333pt;}
.ls2f{letter-spacing:0.624000pt;}
.ls56{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls90{letter-spacing:0.657333pt;}
.ls38{letter-spacing:0.666667pt;}
.ls5f{letter-spacing:0.680000pt;}
.ls27{letter-spacing:0.693333pt;}
.ls67{letter-spacing:0.725333pt;}
.lsa{letter-spacing:0.746667pt;}
.ls78{letter-spacing:0.748000pt;}
.ls4f{letter-spacing:0.770667pt;}
.ls21{letter-spacing:0.773333pt;}
.ls98{letter-spacing:0.793333pt;}
.lse{letter-spacing:0.800000pt;}
.ls65{letter-spacing:0.816000pt;}
.ls4d{letter-spacing:0.826667pt;}
.ls96{letter-spacing:0.838667pt;}
.ls1b{letter-spacing:0.853333pt;}
.ls54{letter-spacing:0.861333pt;}
.ls3a{letter-spacing:0.874643pt;}
.ls9{letter-spacing:0.880000pt;}
.lsc{letter-spacing:0.906667pt;}
.ls5d{letter-spacing:0.952000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls92{letter-spacing:0.974667pt;}
.ls80{letter-spacing:0.992784pt;}
.ls61{letter-spacing:0.997333pt;}
.ls2c{letter-spacing:1.013333pt;}
.ls1f{letter-spacing:1.040000pt;}
.ls76{letter-spacing:1.042667pt;}
.lsd{letter-spacing:1.066667pt;}
.ls9b{letter-spacing:1.088000pt;}
.ls20{letter-spacing:1.120000pt;}
.ls55{letter-spacing:1.133333pt;}
.ls9e{letter-spacing:1.156000pt;}
.ls2e{letter-spacing:1.173333pt;}
.ls66{letter-spacing:1.178667pt;}
.ls8{letter-spacing:1.226667pt;}
.ls6a{letter-spacing:1.269333pt;}
.ls26{letter-spacing:1.280000pt;}
.ls7c{letter-spacing:1.314667pt;}
.ls23{letter-spacing:1.333333pt;}
.ls7a{letter-spacing:1.360000pt;}
.ls3b{letter-spacing:1.386667pt;}
.ls8e{letter-spacing:1.405333pt;}
.ls3e{letter-spacing:1.413333pt;}
.ls86{letter-spacing:1.418921pt;}
.ls46{letter-spacing:1.440000pt;}
.ls3d{letter-spacing:1.493333pt;}
.ls63{letter-spacing:1.496000pt;}
.ls11{letter-spacing:1.546667pt;}
.ls6d{letter-spacing:1.595710pt;}
.ls39{letter-spacing:1.600000pt;}
.ls4a{letter-spacing:1.653333pt;}
.ls88{letter-spacing:1.668267pt;}
.ls7d{letter-spacing:1.677333pt;}
.ls62{letter-spacing:1.722667pt;}
.ls85{letter-spacing:1.749867pt;}
.ls5e{letter-spacing:1.831457pt;}
.ls3c{letter-spacing:1.866667pt;}
.ls6b{letter-spacing:1.908533pt;}
.ls37{letter-spacing:1.920000pt;}
.ls8b{letter-spacing:1.935733pt;}
.ls77{letter-spacing:1.994667pt;}
.ls79{letter-spacing:2.017326pt;}
.ls7b{letter-spacing:2.112526pt;}
.ls91{letter-spacing:2.266667pt;}
.ls9a{letter-spacing:2.284790pt;}
.ls8d{letter-spacing:2.420789pt;}
.ls75{letter-spacing:2.429867pt;}
.ls99{letter-spacing:3.037333pt;}
.ls8f{letter-spacing:3.164267pt;}
.ls95{letter-spacing:3.354667pt;}
.ls83{letter-spacing:3.418133pt;}
.ls0{letter-spacing:3.546667pt;}
.ls8a{letter-spacing:3.549600pt;}
.ls81{letter-spacing:3.717318pt;}
.ls9d{letter-spacing:4.129839pt;}
.ls7e{letter-spacing:5.090933pt;}
.ls9c{letter-spacing:5.099973pt;}
.ls41{letter-spacing:147.627719pt;}
.ls42{letter-spacing:149.901856pt;}
.ls43{letter-spacing:208.835775pt;}
.ls33{letter-spacing:682.098145pt;}
.ws7c{word-spacing:-14.560000pt;}
.ws60{word-spacing:-14.453333pt;}
.ws4b{word-spacing:-14.400000pt;}
.wsa1{word-spacing:-14.346667pt;}
.wsac{word-spacing:-14.293333pt;}
.ws4a{word-spacing:-14.240000pt;}
.wsb0{word-spacing:-14.186667pt;}
.ws47{word-spacing:-14.133333pt;}
.ws49{word-spacing:-14.080000pt;}
.ws62{word-spacing:-13.946667pt;}
.ws7b{word-spacing:-13.866667pt;}
.ws25{word-spacing:-13.813333pt;}
.ws61{word-spacing:-13.653333pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa3{word-spacing:-13.546667pt;}
.wsab{word-spacing:-13.493333pt;}
.ws46{word-spacing:-13.440000pt;}
.ws24{word-spacing:-13.333333pt;}
.wsa2{word-spacing:-13.226667pt;}
.ws48{word-spacing:-13.173333pt;}
.wsaa{word-spacing:-13.120000pt;}
.wsda{word-spacing:-13.010667pt;}
.wsd9{word-spacing:-12.466667pt;}
.wsd8{word-spacing:-12.240000pt;}
.wsb2{word-spacing:-12.194667pt;}
.wsd6{word-spacing:-12.104000pt;}
.wsd7{word-spacing:-12.058667pt;}
.ws103{word-spacing:-12.013333pt;}
.wse1{word-spacing:-11.922667pt;}
.wse0{word-spacing:-11.832000pt;}
.wsdd{word-spacing:-11.696000pt;}
.ws107{word-spacing:-11.605333pt;}
.ws8{word-spacing:-11.560000pt;}
.wsdb{word-spacing:-11.469333pt;}
.wsdc{word-spacing:-11.424000pt;}
.wsde{word-spacing:-11.378667pt;}
.wsa{word-spacing:-11.333333pt;}
.ws102{word-spacing:-11.288000pt;}
.wsdf{word-spacing:-11.197333pt;}
.ws105{word-spacing:-11.152000pt;}
.ws6d{word-spacing:-11.088000pt;}
.ws104{word-spacing:-11.061333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws6e{word-spacing:-10.653333pt;}
.ws8f{word-spacing:-10.562667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws90{word-spacing:-9.792000pt;}
.ws1{word-spacing:-8.885333pt;}
.wsb1{word-spacing:-8.477333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws9{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws67{word-spacing:-6.666667pt;}
.ws77{word-spacing:-5.666667pt;}
.wsb{word-spacing:-1.680000pt;}
.wsea{word-spacing:-1.677333pt;}
.ws86{word-spacing:-1.600000pt;}
.ws7e{word-spacing:-1.493333pt;}
.ws82{word-spacing:-1.440000pt;}
.ws78{word-spacing:-1.386667pt;}
.wse{word-spacing:-1.333333pt;}
.ws2e{word-spacing:-1.280000pt;}
.wse6{word-spacing:-1.269333pt;}
.ws14{word-spacing:-1.226667pt;}
.wsf1{word-spacing:-1.178667pt;}
.ws35{word-spacing:-1.173333pt;}
.wsb5{word-spacing:-1.133333pt;}
.ws88{word-spacing:-1.120000pt;}
.wsc5{word-spacing:-1.088000pt;}
.ws63{word-spacing:-1.066667pt;}
.wsc4{word-spacing:-1.042667pt;}
.ws30{word-spacing:-1.013333pt;}
.wsc6{word-spacing:-0.997333pt;}
.ws36{word-spacing:-0.960000pt;}
.wsc1{word-spacing:-0.952000pt;}
.ws80{word-spacing:-0.906667pt;}
.wsbf{word-spacing:-0.861333pt;}
.ws3d{word-spacing:-0.853333pt;}
.ws10b{word-spacing:-0.816000pt;}
.ws50{word-spacing:-0.800000pt;}
.wsca{word-spacing:-0.770667pt;}
.ws28{word-spacing:-0.746667pt;}
.wsf6{word-spacing:-0.725333pt;}
.ws3e{word-spacing:-0.693333pt;}
.wsc2{word-spacing:-0.680000pt;}
.ws11{word-spacing:-0.640000pt;}
.wsc3{word-spacing:-0.634667pt;}
.wsd0{word-spacing:-0.589333pt;}
.wsf{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.544000pt;}
.ws39{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.506667pt;}
.ws106{word-spacing:-0.498667pt;}
.ws27{word-spacing:-0.480000pt;}
.wsc8{word-spacing:-0.453333pt;}
.ws26{word-spacing:-0.426667pt;}
.ws1b{word-spacing:-0.373333pt;}
.wsc9{word-spacing:-0.362667pt;}
.ws2a{word-spacing:-0.320000pt;}
.wsd2{word-spacing:-0.317333pt;}
.wscb{word-spacing:-0.272000pt;}
.ws4{word-spacing:-0.266667pt;}
.wsbe{word-spacing:-0.234667pt;}
.wsce{word-spacing:-0.226667pt;}
.ws73{word-spacing:-0.213333pt;}
.wsec{word-spacing:-0.181333pt;}
.ws2d{word-spacing:-0.160000pt;}
.wsef{word-spacing:-0.136000pt;}
.ws29{word-spacing:-0.106667pt;}
.ws10f{word-spacing:-0.090667pt;}
.ws6{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.053333pt;}
.wsf9{word-spacing:-0.045333pt;}
.wsc{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.045333pt;}
.ws2b{word-spacing:0.053333pt;}
.wsd5{word-spacing:0.090667pt;}
.ws45{word-spacing:0.106667pt;}
.ws10c{word-spacing:0.136000pt;}
.ws1f{word-spacing:0.160000pt;}
.wsfb{word-spacing:0.181333pt;}
.ws4f{word-spacing:0.213333pt;}
.wsb3{word-spacing:0.226667pt;}
.ws55{word-spacing:0.266667pt;}
.ws109{word-spacing:0.272000pt;}
.wsb4{word-spacing:0.317333pt;}
.ws19{word-spacing:0.320000pt;}
.ws10d{word-spacing:0.362667pt;}
.ws4d{word-spacing:0.373333pt;}
.ws2f{word-spacing:0.426667pt;}
.wsd4{word-spacing:0.453333pt;}
.ws3f{word-spacing:0.480000pt;}
.wsfa{word-spacing:0.498667pt;}
.ws3a{word-spacing:0.533333pt;}
.wscc{word-spacing:0.544000pt;}
.ws17{word-spacing:0.586667pt;}
.ws5e{word-spacing:0.640000pt;}
.ws101{word-spacing:0.680000pt;}
.ws56{word-spacing:0.693333pt;}
.wsf0{word-spacing:0.725333pt;}
.ws18{word-spacing:0.746667pt;}
.wsee{word-spacing:0.816000pt;}
.ws38{word-spacing:0.853333pt;}
.wsf5{word-spacing:0.861333pt;}
.wsba{word-spacing:0.952000pt;}
.ws10{word-spacing:0.960000pt;}
.wsd1{word-spacing:0.997333pt;}
.ws6b{word-spacing:1.013333pt;}
.wsc0{word-spacing:1.042667pt;}
.ws7a{word-spacing:1.066667pt;}
.wsb7{word-spacing:1.088000pt;}
.ws65{word-spacing:1.120000pt;}
.wsb6{word-spacing:1.133333pt;}
.ws32{word-spacing:1.173333pt;}
.wscf{word-spacing:1.178667pt;}
.wsbd{word-spacing:1.224000pt;}
.ws51{word-spacing:1.226667pt;}
.ws114{word-spacing:1.269333pt;}
.ws6a{word-spacing:1.280000pt;}
.wsfc{word-spacing:1.314667pt;}
.ws12{word-spacing:1.333333pt;}
.wscd{word-spacing:1.360000pt;}
.ws5a{word-spacing:1.386667pt;}
.ws43{word-spacing:1.440000pt;}
.wsbb{word-spacing:1.450667pt;}
.ws59{word-spacing:1.493333pt;}
.wse7{word-spacing:1.496000pt;}
.wsfe{word-spacing:1.541333pt;}
.ws87{word-spacing:1.546667pt;}
.wsfd{word-spacing:1.586667pt;}
.ws57{word-spacing:1.600000pt;}
.ws112{word-spacing:1.632000pt;}
.ws5d{word-spacing:1.653333pt;}
.ws68{word-spacing:1.706667pt;}
.wse9{word-spacing:1.722667pt;}
.ws42{word-spacing:1.760000pt;}
.ws16{word-spacing:1.813333pt;}
.ws110{word-spacing:1.858667pt;}
.ws1d{word-spacing:1.866667pt;}
.ws54{word-spacing:1.920000pt;}
.wse8{word-spacing:1.949333pt;}
.ws83{word-spacing:1.973333pt;}
.wsa5{word-spacing:2.026667pt;}
.ws95{word-spacing:2.040000pt;}
.ws64{word-spacing:2.080000pt;}
.ws9f{word-spacing:2.085333pt;}
.wsed{word-spacing:2.130667pt;}
.ws3c{word-spacing:2.133333pt;}
.ws2c{word-spacing:2.186667pt;}
.wsbc{word-spacing:2.221333pt;}
.ws3b{word-spacing:2.240000pt;}
.wsf8{word-spacing:2.266667pt;}
.ws6c{word-spacing:2.293333pt;}
.wsf4{word-spacing:2.312000pt;}
.ws15{word-spacing:2.346667pt;}
.ws4e{word-spacing:2.400000pt;}
.ws10a{word-spacing:2.402667pt;}
.wsad{word-spacing:2.453333pt;}
.ws10e{word-spacing:2.493333pt;}
.ws5b{word-spacing:2.506667pt;}
.wsa0{word-spacing:2.538667pt;}
.ws1a{word-spacing:2.560000pt;}
.wsc7{word-spacing:2.584000pt;}
.wsa6{word-spacing:2.613333pt;}
.wsf2{word-spacing:2.629333pt;}
.wsa8{word-spacing:2.666667pt;}
.ws53{word-spacing:2.720000pt;}
.wsff{word-spacing:2.765333pt;}
.ws34{word-spacing:2.773333pt;}
.wsf3{word-spacing:2.810667pt;}
.ws20{word-spacing:2.826667pt;}
.ws40{word-spacing:2.880000pt;}
.ws113{word-spacing:2.901333pt;}
.ws5c{word-spacing:2.933333pt;}
.wsb8{word-spacing:2.946667pt;}
.wsa7{word-spacing:3.040000pt;}
.ws8c{word-spacing:3.082667pt;}
.ws5f{word-spacing:3.146667pt;}
.ws111{word-spacing:3.173333pt;}
.ws31{word-spacing:3.200000pt;}
.wsf7{word-spacing:3.218667pt;}
.ws9d{word-spacing:3.264000pt;}
.ws58{word-spacing:3.306667pt;}
.wse2{word-spacing:3.309333pt;}
.ws100{word-spacing:3.354667pt;}
.wsa9{word-spacing:3.360000pt;}
.ws1c{word-spacing:3.413333pt;}
.ws44{word-spacing:3.466667pt;}
.wseb{word-spacing:3.490667pt;}
.ws33{word-spacing:3.520000pt;}
.ws79{word-spacing:3.573333pt;}
.wse4{word-spacing:3.581333pt;}
.ws8a{word-spacing:3.717333pt;}
.ws52{word-spacing:3.733333pt;}
.ws115{word-spacing:3.762667pt;}
.wsa4{word-spacing:3.840000pt;}
.wsb9{word-spacing:3.853333pt;}
.ws66{word-spacing:3.893333pt;}
.ws69{word-spacing:3.946667pt;}
.ws4c{word-spacing:4.000000pt;}
.ws8e{word-spacing:4.034667pt;}
.ws7d{word-spacing:4.053333pt;}
.ws84{word-spacing:4.106667pt;}
.ws13{word-spacing:4.160000pt;}
.ws98{word-spacing:4.306667pt;}
.ws89{word-spacing:4.373333pt;}
.ws9e{word-spacing:4.397333pt;}
.ws41{word-spacing:4.480000pt;}
.ws37{word-spacing:4.586667pt;}
.wse3{word-spacing:4.624000pt;}
.ws94{word-spacing:4.669333pt;}
.wsae{word-spacing:4.693333pt;}
.ws74{word-spacing:4.941333pt;}
.ws81{word-spacing:5.066667pt;}
.ws9b{word-spacing:5.122667pt;}
.wse5{word-spacing:5.213333pt;}
.ws108{word-spacing:5.258667pt;}
.ws7f{word-spacing:5.546667pt;}
.ws21{word-spacing:5.706667pt;}
.ws76{word-spacing:5.802667pt;}
.ws91{word-spacing:5.938667pt;}
.ws85{word-spacing:5.973333pt;}
.ws75{word-spacing:6.029333pt;}
.wsaf{word-spacing:6.293333pt;}
.ws92{word-spacing:7.298667pt;}
.ws8b{word-spacing:7.661333pt;}
.ws9c{word-spacing:7.706667pt;}
.ws9a{word-spacing:8.341333pt;}
.ws93{word-spacing:8.658667pt;}
.ws8d{word-spacing:8.704000pt;}
.ws99{word-spacing:10.517333pt;}
.ws116{word-spacing:12.149333pt;}
.ws97{word-spacing:14.416000pt;}
.ws117{word-spacing:15.821333pt;}
.ws96{word-spacing:19.312000pt;}
.ws23{word-spacing:64.237333pt;}
.ws72{word-spacing:205.614454pt;}
.ws70{word-spacing:473.975489pt;}
.ws6f{word-spacing:480.413356pt;}
.ws71{word-spacing:495.462957pt;}
._1c{margin-left:-24.482133pt;}
._1d{margin-left:-20.648800pt;}
._4{margin-left:-14.733333pt;}
._1e{margin-left:-13.464000pt;}
._13{margin-left:-11.605333pt;}
._18{margin-left:-10.122667pt;}
._c{margin-left:-8.880000pt;}
._d{margin-left:-7.280000pt;}
._b{margin-left:-6.252800pt;}
._a{margin-left:-5.317333pt;}
._1{margin-left:-4.109067pt;}
._2{margin-left:-2.653867pt;}
._0{margin-left:-1.450667pt;}
._3{width:1.271467pt;}
._8{width:2.506667pt;}
._9{width:4.198400pt;}
._f{width:5.664529pt;}
._19{width:7.093333pt;}
._17{width:8.826667pt;}
._11{width:11.333333pt;}
._24{width:12.829333pt;}
._e{width:13.937333pt;}
._5{width:16.320000pt;}
._23{width:39.983992pt;}
._22{width:41.594824pt;}
._6{width:48.552000pt;}
._16{width:104.674667pt;}
._1f{width:109.615983pt;}
._15{width:172.130667pt;}
._1b{width:214.925333pt;}
._12{width:315.701333pt;}
._21{width:400.272533pt;}
._20{width:409.586667pt;}
._10{width:544.494372pt;}
._1a{width:596.858667pt;}
._14{width:605.744000pt;}
._7{width:1792.887952pt;}
.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;}
.y42{bottom:100.389600pt;}
.y78{bottom:100.813639pt;}
.y185{bottom:101.044396pt;}
.y118{bottom:101.590932pt;}
.yad{bottom:101.986898pt;}
.yd0{bottom:101.986938pt;}
.ydb{bottom:102.111064pt;}
.y251{bottom:103.657620pt;}
.y2d5{bottom:103.997606pt;}
.y293{bottom:104.008954pt;}
.y20f{bottom:106.622554pt;}
.y1d2{bottom:108.499470pt;}
.y16d{bottom:108.731332pt;}
.y2d{bottom:108.854533pt;}
.y184{bottom:114.377729pt;}
.y250{bottom:116.985620pt;}
.y2d4{bottom:117.325606pt;}
.y292{bottom:117.336954pt;}
.y77{bottom:117.480306pt;}
.y41{bottom:118.250936pt;}
.yac{bottom:118.653564pt;}
.ycf{bottom:118.653605pt;}
.yda{bottom:118.777730pt;}
.y20e{bottom:119.950554pt;}
.y1d1{bottom:121.827470pt;}
.y16c{bottom:122.059332pt;}
.y2c{bottom:125.521200pt;}
.y183{bottom:127.791084pt;}
.y24f{bottom:130.313620pt;}
.y2d3{bottom:130.653606pt;}
.y291{bottom:130.664954pt;}
.y20d{bottom:133.278554pt;}
.y40{bottom:133.770270pt;}
.y76{bottom:134.146973pt;}
.y1d0{bottom:135.155470pt;}
.yab{bottom:135.320231pt;}
.yce{bottom:135.320272pt;}
.y166{bottom:135.364667pt;}
.y16b{bottom:135.387332pt;}
.yde{bottom:135.444397pt;}
.y182{bottom:141.119084pt;}
.y2b{bottom:142.187866pt;}
.y24e{bottom:143.641620pt;}
.y2d2{bottom:143.981606pt;}
.y290{bottom:143.992954pt;}
.y20c{bottom:146.606554pt;}
.y3f{bottom:147.098270pt;}
.y1cf{bottom:148.483470pt;}
.y165{bottom:148.692667pt;}
.y16a{bottom:148.715332pt;}
.y171{bottom:148.749332pt;}
.y75{bottom:150.813639pt;}
.yaa{bottom:151.986898pt;}
.ycd{bottom:151.986938pt;}
.ydd{bottom:152.111064pt;}
.yd9{bottom:152.116397pt;}
.y24d{bottom:156.969620pt;}
.y2d1{bottom:157.309606pt;}
.y28f{bottom:157.320954pt;}
.y2a{bottom:158.854533pt;}
.y20b{bottom:159.934554pt;}
.y1ce{bottom:161.811470pt;}
.y164{bottom:162.020667pt;}
.y169{bottom:162.043332pt;}
.y170{bottom:162.077332pt;}
.y3e{bottom:164.959605pt;}
.y192{bottom:165.882266pt;}
.y74{bottom:167.480306pt;}
.ya9{bottom:168.653564pt;}
.ycc{bottom:168.653605pt;}
.yd8{bottom:168.777730pt;}
.y24c{bottom:170.297620pt;}
.y2d0{bottom:170.637606pt;}
.y28e{bottom:170.648954pt;}
.y20a{bottom:173.262554pt;}
.y1cd{bottom:175.139470pt;}
.y163{bottom:175.348667pt;}
.y168{bottom:175.371332pt;}
.y16f{bottom:175.405332pt;}
.y29{bottom:175.521200pt;}
.y191{bottom:179.210258pt;}
.y193{bottom:179.210266pt;}
.y3d{bottom:180.478928pt;}
.y24b{bottom:183.625620pt;}
.y2cf{bottom:183.965606pt;}
.y28d{bottom:183.976954pt;}
.y73{bottom:184.146973pt;}
.ya8{bottom:185.320231pt;}
.ycb{bottom:185.320272pt;}
.ydc{bottom:185.444397pt;}
.y209{bottom:186.590554pt;}
.y1cc{bottom:188.467470pt;}
.y162{bottom:188.676667pt;}
.y167{bottom:188.699332pt;}
.y16e{bottom:188.733332pt;}
.y28{bottom:192.187866pt;}
.y3c{bottom:193.806928pt;}
.y18f{bottom:195.915591pt;}
.y24a{bottom:196.953620pt;}
.y2ce{bottom:197.293606pt;}
.y28c{bottom:197.304954pt;}
.y208{bottom:199.918554pt;}
.y72{bottom:200.813639pt;}
.ya7{bottom:201.986898pt;}
.yca{bottom:201.986938pt;}
.yd7{bottom:202.111064pt;}
.y161{bottom:205.382000pt;}
.y27{bottom:208.854533pt;}
.y190{bottom:209.243591pt;}
.y18e{bottom:209.244933pt;}
.y249{bottom:210.281620pt;}
.y2cd{bottom:210.621606pt;}
.y28b{bottom:210.632954pt;}
.y3b{bottom:211.668274pt;}
.y207{bottom:213.246554pt;}
.y71{bottom:217.480306pt;}
.y1cb{bottom:218.432803pt;}
.ya6{bottom:218.653564pt;}
.yc9{bottom:218.653605pt;}
.y15d{bottom:218.698667pt;}
.y160{bottom:218.710000pt;}
.yd6{bottom:218.777730pt;}
.y248{bottom:223.609620pt;}
.y2cc{bottom:223.949606pt;}
.y28a{bottom:223.960954pt;}
.y26{bottom:225.521200pt;}
.y18c{bottom:225.882266pt;}
.y206{bottom:226.574554pt;}
.y3a{bottom:227.182274pt;}
.y1ca{bottom:231.760803pt;}
.y15c{bottom:232.026667pt;}
.y15f{bottom:232.038000pt;}
.y70{bottom:234.146973pt;}
.ya5{bottom:235.320231pt;}
.yc8{bottom:235.320272pt;}
.yd5{bottom:235.444397pt;}
.y247{bottom:236.937620pt;}
.y2cb{bottom:237.277606pt;}
.y289{bottom:237.288954pt;}
.y18d{bottom:239.210266pt;}
.y18b{bottom:239.211608pt;}
.y205{bottom:239.902554pt;}
.y25{bottom:242.187866pt;}
.y39{bottom:245.043599pt;}
.y15b{bottom:245.354667pt;}
.y15e{bottom:245.366000pt;}
.y246{bottom:250.265620pt;}
.y2ca{bottom:250.605606pt;}
.y288{bottom:250.616954pt;}
.y6f{bottom:250.813639pt;}
.ya4{bottom:251.986898pt;}
.yc7{bottom:251.986938pt;}
.yd4{bottom:252.111064pt;}
.y204{bottom:253.230554pt;}
.y188{bottom:255.848262pt;}
.y18a{bottom:255.848941pt;}
.y24{bottom:258.854533pt;}
.y38{bottom:260.557600pt;}
.y1c9{bottom:261.760803pt;}
.y245{bottom:263.593620pt;}
.y2c9{bottom:263.933606pt;}
.y287{bottom:263.944954pt;}
.y203{bottom:266.558554pt;}
.y6e{bottom:267.480306pt;}
.ya3{bottom:268.653564pt;}
.yc6{bottom:268.653605pt;}
.yd3{bottom:268.777730pt;}
.y187{bottom:269.176262pt;}
.y189{bottom:269.176941pt;}
.y15a{bottom:270.322000pt;}
.y23{bottom:275.521200pt;}
.y244{bottom:276.921620pt;}
.y2c8{bottom:277.261606pt;}
.y286{bottom:277.272954pt;}
.y37{bottom:278.418925pt;}
.y202{bottom:279.886554pt;}
.y6d{bottom:284.146973pt;}
.ya2{bottom:285.320231pt;}
.yc5{bottom:285.320272pt;}
.y243{bottom:290.249620pt;}
.y2c7{bottom:290.589606pt;}
.y285{bottom:290.600954pt;}
.y22{bottom:292.187866pt;}
.y156{bottom:292.996265pt;}
.y201{bottom:293.214554pt;}
.y36{bottom:293.938259pt;}
.y186{bottom:294.143595pt;}
.y1c8{bottom:295.212533pt;}
.y6c{bottom:300.813639pt;}
.ya1{bottom:301.986898pt;}
.yc4{bottom:301.986938pt;}
.y242{bottom:303.577620pt;}
.y2c6{bottom:303.917606pt;}
.y284{bottom:303.928954pt;}
.y155{bottom:306.324265pt;}
.y159{bottom:306.335599pt;}
.y200{bottom:306.542554pt;}
.y35{bottom:307.266259pt;}
.y1c7{bottom:308.540533pt;}
.y21{bottom:308.854533pt;}
.y181{bottom:316.876418pt;}
.y241{bottom:316.905620pt;}
.y2c5{bottom:317.245606pt;}
.y283{bottom:317.256954pt;}
.y6b{bottom:317.480306pt;}
.ya0{bottom:318.653564pt;}
.yc3{bottom:318.653605pt;}
.ye5{bottom:318.997195pt;}
.y154{bottom:319.652265pt;}
.y158{bottom:319.663599pt;}
.y1ff{bottom:319.870554pt;}
.y1c6{bottom:321.868533pt;}
.y34{bottom:325.127604pt;}
.y20{bottom:325.521200pt;}
.y180{bottom:330.204418pt;}
.y240{bottom:330.233620pt;}
.y2c4{bottom:330.573606pt;}
.y282{bottom:330.584954pt;}
.y153{bottom:332.980265pt;}
.y157{bottom:332.991599pt;}
.y1fe{bottom:333.198554pt;}
.y6a{bottom:334.146973pt;}
.y1c5{bottom:335.196533pt;}
.y9f{bottom:335.320231pt;}
.yc2{bottom:335.320272pt;}
.ye4{bottom:336.858541pt;}
.y1f{bottom:342.187866pt;}
.y23f{bottom:343.561620pt;}
.y2c3{bottom:343.901606pt;}
.y281{bottom:343.912954pt;}
.y1fd{bottom:346.526554pt;}
.y33{bottom:347.366151pt;}
.y1c4{bottom:348.524533pt;}
.ye3{bottom:349.443623pt;}
.y69{bottom:350.813639pt;}
.y9e{bottom:351.986898pt;}
.yc1{bottom:351.986938pt;}
.y23e{bottom:356.889620pt;}
.y2c2{bottom:357.229606pt;}
.y280{bottom:357.240954pt;}
.y1e{bottom:358.854533pt;}
.y1fc{bottom:359.854554pt;}
.y32{bottom:360.694151pt;}
.y1c3{bottom:361.852533pt;}
.ye2{bottom:366.556957pt;}
.y68{bottom:367.480306pt;}
.y9d{bottom:368.653564pt;}
.yc0{bottom:368.653605pt;}
.y23d{bottom:370.217620pt;}
.y2c1{bottom:370.557606pt;}
.y27f{bottom:370.568954pt;}
.y1fb{bottom:373.182554pt;}
.y1c2{bottom:375.180533pt;}
.y1d{bottom:375.521200pt;}
.ye1{bottom:379.884957pt;}
.y31{bottom:380.731485pt;}
.y23c{bottom:383.545620pt;}
.y2c0{bottom:383.885606pt;}
.y27e{bottom:383.896954pt;}
.y67{bottom:384.146973pt;}
.y136{bottom:384.261637pt;}
.y152{bottom:385.160278pt;}
.y9c{bottom:385.320231pt;}
.ybf{bottom:385.320272pt;}
.y1fa{bottom:386.510554pt;}
.y1c1{bottom:388.508533pt;}
.y1c{bottom:392.187866pt;}
.ye0{bottom:393.212957pt;}
.y30{bottom:394.059485pt;}
.y23b{bottom:396.873620pt;}
.y2bf{bottom:397.213606pt;}
.y27d{bottom:397.224954pt;}
.y1f9{bottom:399.838554pt;}
.y66{bottom:400.813639pt;}
.y135{bottom:400.928304pt;}
.y151{bottom:401.826945pt;}
.y9b{bottom:401.986898pt;}
.ybe{bottom:401.986938pt;}
.y1b{bottom:408.854533pt;}
.y23a{bottom:410.201620pt;}
.y2be{bottom:410.541606pt;}
.y27c{bottom:410.552954pt;}
.y1f8{bottom:413.166554pt;}
.y65{bottom:417.480306pt;}
.y134{bottom:417.594971pt;}
.y111{bottom:418.259469pt;}
.y1c0{bottom:418.473867pt;}
.y150{bottom:418.493612pt;}
.y9a{bottom:418.653564pt;}
.ybd{bottom:418.653605pt;}
.y178{bottom:420.735084pt;}
.y17f{bottom:420.769084pt;}
.y2f{bottom:421.452151pt;}
.y239{bottom:423.529620pt;}
.y2bd{bottom:423.869606pt;}
.y27b{bottom:423.880954pt;}
.y1a{bottom:425.521200pt;}
.y1f7{bottom:426.494554pt;}
.y110{bottom:431.587469pt;}
.y1bf{bottom:431.801867pt;}
.y177{bottom:434.063084pt;}
.y17e{bottom:434.097084pt;}
.y64{bottom:434.146973pt;}
.y133{bottom:434.261637pt;}
.y2e{bottom:434.780151pt;}
.y99{bottom:435.320231pt;}
.ybc{bottom:435.320272pt;}
.y238{bottom:436.857620pt;}
.y2bc{bottom:437.197606pt;}
.y27a{bottom:437.208954pt;}
.y1f6{bottom:439.822554pt;}
.y19{bottom:442.187866pt;}
.y10f{bottom:444.915469pt;}
.y1be{bottom:445.129867pt;}
.y176{bottom:447.391084pt;}
.y17d{bottom:447.425084pt;}
.y237{bottom:450.185620pt;}
.y2bb{bottom:450.525606pt;}
.y279{bottom:450.536954pt;}
.y63{bottom:450.813639pt;}
.y132{bottom:450.928304pt;}
.y14f{bottom:451.826945pt;}
.y98{bottom:451.986898pt;}
.ybb{bottom:451.986938pt;}
.y1f5{bottom:453.150554pt;}
.y10e{bottom:458.243469pt;}
.y1bd{bottom:458.457867pt;}
.y18{bottom:458.854533pt;}
.y175{bottom:460.719084pt;}
.y17c{bottom:460.753084pt;}
.y236{bottom:463.513620pt;}
.y2ba{bottom:463.853606pt;}
.y278{bottom:463.864954pt;}
.y1f4{bottom:466.478554pt;}
.y62{bottom:467.480306pt;}
.y97{bottom:468.653564pt;}
.yba{bottom:468.653605pt;}
.y10d{bottom:471.571469pt;}
.y1bc{bottom:471.785867pt;}
.y174{bottom:474.047084pt;}
.y17b{bottom:474.081084pt;}
.y17{bottom:475.521200pt;}
.y235{bottom:476.841620pt;}
.y2b9{bottom:477.181606pt;}
.y277{bottom:477.192954pt;}
.y1f3{bottom:479.806554pt;}
.y61{bottom:484.146973pt;}
.y131{bottom:484.261637pt;}
.y10c{bottom:484.899469pt;}
.y1bb{bottom:485.113867pt;}
.y96{bottom:485.320231pt;}
.yb9{bottom:485.320272pt;}
.y173{bottom:487.375084pt;}
.y17a{bottom:487.409084pt;}
.y234{bottom:490.169620pt;}
.y2b8{bottom:490.509606pt;}
.y276{bottom:490.520954pt;}
.y1f2{bottom:493.134554pt;}
.y1ba{bottom:498.441867pt;}
.y172{bottom:500.703084pt;}
.y179{bottom:500.737084pt;}
.y60{bottom:500.813639pt;}
.y10b{bottom:501.604802pt;}
.y14e{bottom:501.826945pt;}
.y95{bottom:501.986898pt;}
.yb8{bottom:501.986938pt;}
.y233{bottom:503.497620pt;}
.y2b7{bottom:503.837606pt;}
.y275{bottom:503.848954pt;}
.y1f1{bottom:506.462554pt;}
.y16{bottom:508.854533pt;}
.y1b9{bottom:511.769867pt;}
.y10a{bottom:514.932802pt;}
.y232{bottom:516.825620pt;}
.y2b6{bottom:517.165606pt;}
.y274{bottom:517.176954pt;}
.y5f{bottom:517.480306pt;}
.y130{bottom:517.594971pt;}
.y14d{bottom:518.493612pt;}
.y94{bottom:518.653564pt;}
.yb7{bottom:518.653605pt;}
.y1a2{bottom:518.664272pt;}
.y1f0{bottom:519.790554pt;}
.y1b8{bottom:525.097867pt;}
.y109{bottom:528.260802pt;}
.y231{bottom:530.153620pt;}
.y2b5{bottom:530.493606pt;}
.y273{bottom:530.504954pt;}
.y1ef{bottom:533.118554pt;}
.y5e{bottom:534.146973pt;}
.y12f{bottom:534.261637pt;}
.y14c{bottom:535.160278pt;}
.y93{bottom:535.320231pt;}
.yb6{bottom:535.320272pt;}
.y1a1{bottom:535.325605pt;}
.y1b7{bottom:538.425867pt;}
.y108{bottom:541.588802pt;}
.y230{bottom:543.481620pt;}
.y2b4{bottom:543.821606pt;}
.y272{bottom:543.832954pt;}
.y1ee{bottom:546.446554pt;}
.y5d{bottom:550.813639pt;}
.y12e{bottom:550.928304pt;}
.y1b6{bottom:551.753867pt;}
.y92{bottom:551.986898pt;}
.yb5{bottom:551.986938pt;}
.y107{bottom:554.916802pt;}
.y22f{bottom:556.809620pt;}
.y2b3{bottom:557.149606pt;}
.y271{bottom:557.160954pt;}
.y15{bottom:558.854574pt;}
.y1ed{bottom:559.774554pt;}
.y5c{bottom:567.480306pt;}
.y12d{bottom:567.594971pt;}
.y106{bottom:568.244802pt;}
.y14b{bottom:568.498945pt;}
.y91{bottom:568.653564pt;}
.yb4{bottom:568.653605pt;}
.y22e{bottom:570.137620pt;}
.y2b2{bottom:570.477606pt;}
.y270{bottom:570.488954pt;}
.y1ec{bottom:573.102554pt;}
.y14{bottom:575.521240pt;}
.y1b5{bottom:581.719200pt;}
.y22d{bottom:583.465620pt;}
.y2b1{bottom:583.805606pt;}
.y26f{bottom:583.816954pt;}
.y5b{bottom:584.146973pt;}
.y12c{bottom:584.261637pt;}
.y105{bottom:584.882135pt;}
.y14a{bottom:585.160278pt;}
.y90{bottom:585.320231pt;}
.yb3{bottom:585.320272pt;}
.y1eb{bottom:586.430554pt;}
.y1b4{bottom:595.047200pt;}
.y22c{bottom:596.793620pt;}
.y2b0{bottom:597.133606pt;}
.y26e{bottom:597.144954pt;}
.y104{bottom:598.210135pt;}
.y1ea{bottom:599.758554pt;}
.y5a{bottom:600.813639pt;}
.y12b{bottom:600.928304pt;}
.y8f{bottom:601.986898pt;}
.yb2{bottom:601.986938pt;}
.y13{bottom:608.854574pt;}
.y22b{bottom:610.121620pt;}
.y2af{bottom:610.461606pt;}
.y26d{bottom:610.472954pt;}
.y103{bottom:611.538135pt;}
.y1e9{bottom:613.086554pt;}
.y59{bottom:617.480306pt;}
.y12a{bottom:617.594971pt;}
.y149{bottom:618.488322pt;}
.y8e{bottom:618.653564pt;}
.yb1{bottom:618.653605pt;}
.y22a{bottom:623.449620pt;}
.y2ae{bottom:623.789606pt;}
.y26c{bottom:623.800954pt;}
.y102{bottom:624.866135pt;}
.y1b3{bottom:625.010498pt;}
.y12{bottom:625.521240pt;}
.y1e8{bottom:626.414554pt;}
.y58{bottom:634.146973pt;}
.y129{bottom:634.261637pt;}
.y148{bottom:635.154989pt;}
.y8d{bottom:635.320231pt;}
.yb0{bottom:635.320272pt;}
.y229{bottom:636.777620pt;}
.y2ad{bottom:637.117606pt;}
.y26b{bottom:637.128954pt;}
.y100{bottom:638.194135pt;}
.y1e7{bottom:639.742554pt;}
.y1b2{bottom:641.677165pt;}
.y11{bottom:642.187907pt;}
.y228{bottom:650.105620pt;}
.y2ac{bottom:650.445606pt;}
.y26a{bottom:650.456954pt;}
.y57{bottom:650.813639pt;}
.y128{bottom:650.928304pt;}
.y101{bottom:651.522135pt;}
.yff{bottom:651.523477pt;}
.y147{bottom:651.821655pt;}
.y8c{bottom:651.986898pt;}
.yaf{bottom:651.986938pt;}
.y1a5{bottom:652.002898pt;}
.y1e6{bottom:653.070554pt;}
.y1b1{bottom:658.343831pt;}
.y10{bottom:658.854574pt;}
.y227{bottom:663.433620pt;}
.y2ab{bottom:663.773606pt;}
.y269{bottom:663.784954pt;}
.y1e5{bottom:666.398554pt;}
.y56{bottom:667.480306pt;}
.y127{bottom:667.594971pt;}
.yfd{bottom:668.160810pt;}
.y146{bottom:668.488322pt;}
.y8b{bottom:668.653564pt;}
.yae{bottom:668.653605pt;}
.y1a4{bottom:668.664231pt;}
.y1b0{bottom:675.010498pt;}
.yf{bottom:675.521240pt;}
.y226{bottom:676.761620pt;}
.y2aa{bottom:677.101606pt;}
.y268{bottom:677.112954pt;}
.y1e4{bottom:679.726554pt;}
.yfe{bottom:681.488810pt;}
.yfc{bottom:681.490152pt;}
.y55{bottom:684.146973pt;}
.y145{bottom:685.154989pt;}
.y8a{bottom:685.320231pt;}
.y1a0{bottom:685.320272pt;}
.y1a3{bottom:685.325564pt;}
.y225{bottom:690.089620pt;}
.y2a9{bottom:690.429606pt;}
.y267{bottom:690.440954pt;}
.y1af{bottom:691.677165pt;}
.ye{bottom:692.187907pt;}
.y1e3{bottom:693.054554pt;}
.yfa{bottom:698.127485pt;}
.y54{bottom:700.813639pt;}
.y126{bottom:700.928304pt;}
.y89{bottom:701.986898pt;}
.y19f{bottom:701.986938pt;}
.y112{bottom:701.992231pt;}
.y195{bottom:701.997564pt;}
.y224{bottom:703.417620pt;}
.y2a8{bottom:703.757606pt;}
.y266{bottom:703.768954pt;}
.y1e2{bottom:706.382554pt;}
.y1ae{bottom:708.343831pt;}
.yd{bottom:708.854574pt;}
.yfb{bottom:711.455485pt;}
.yf9{bottom:711.456704pt;}
.y223{bottom:716.745620pt;}
.y2a7{bottom:717.085606pt;}
.y265{bottom:717.096954pt;}
.y53{bottom:717.480306pt;}
.y144{bottom:718.488322pt;}
.y88{bottom:718.653564pt;}
.y19e{bottom:718.653605pt;}
.y194{bottom:718.658898pt;}
.y1e1{bottom:719.710554pt;}
.y1ad{bottom:725.010498pt;}
.yc{bottom:725.521240pt;}
.yf7{bottom:728.094038pt;}
.y222{bottom:730.073620pt;}
.y2a6{bottom:730.413606pt;}
.y264{bottom:730.424954pt;}
.y1e0{bottom:733.038554pt;}
.y52{bottom:734.146973pt;}
.y125{bottom:734.261637pt;}
.y87{bottom:735.320231pt;}
.y19d{bottom:735.320272pt;}
.yf8{bottom:741.422038pt;}
.yf6{bottom:741.444672pt;}
.y1ac{bottom:741.677165pt;}
.yb{bottom:742.187907pt;}
.y221{bottom:743.401620pt;}
.y2a5{bottom:743.741606pt;}
.y263{bottom:743.752954pt;}
.y1df{bottom:746.366554pt;}
.y51{bottom:750.813639pt;}
.y124{bottom:750.928304pt;}
.y143{bottom:751.821655pt;}
.y86{bottom:751.986898pt;}
.y19c{bottom:751.986938pt;}
.y220{bottom:756.729620pt;}
.y2a4{bottom:757.069606pt;}
.y262{bottom:757.080954pt;}
.yf5{bottom:758.082005pt;}
.y1ab{bottom:758.343831pt;}
.y1de{bottom:759.694554pt;}
.y50{bottom:767.480306pt;}
.y123{bottom:767.594971pt;}
.y142{bottom:768.488322pt;}
.y85{bottom:768.653564pt;}
.y19b{bottom:768.653605pt;}
.y21f{bottom:770.057620pt;}
.y2a3{bottom:770.397606pt;}
.y261{bottom:770.408954pt;}
.yf4{bottom:771.410005pt;}
.y1dd{bottom:773.022554pt;}
.y1aa{bottom:775.010498pt;}
.ya{bottom:781.461469pt;}
.y21e{bottom:783.385620pt;}
.y2a2{bottom:783.725606pt;}
.y260{bottom:783.736954pt;}
.y4f{bottom:784.146973pt;}
.y122{bottom:784.261637pt;}
.yf3{bottom:784.738005pt;}
.y141{bottom:785.154989pt;}
.y84{bottom:785.320231pt;}
.y19a{bottom:785.320272pt;}
.y1dc{bottom:786.350554pt;}
.y1a9{bottom:791.677165pt;}
.y9{bottom:794.789469pt;}
.y21d{bottom:796.713620pt;}
.y2a1{bottom:797.053606pt;}
.y25f{bottom:797.064954pt;}
.yf2{bottom:798.066005pt;}
.y1db{bottom:799.678554pt;}
.y4e{bottom:800.813639pt;}
.y121{bottom:800.928304pt;}
.y140{bottom:801.821655pt;}
.y83{bottom:801.986898pt;}
.y199{bottom:801.986938pt;}
.y1a8{bottom:808.343831pt;}
.y21c{bottom:810.041620pt;}
.y2a0{bottom:810.381606pt;}
.y25e{bottom:810.392954pt;}
.yf0{bottom:811.394005pt;}
.y1da{bottom:813.006554pt;}
.y4d{bottom:817.480306pt;}
.y120{bottom:817.594971pt;}
.y13f{bottom:818.488322pt;}
.y82{bottom:818.653564pt;}
.y198{bottom:818.653605pt;}
.y21b{bottom:823.369620pt;}
.y29f{bottom:823.709606pt;}
.y25d{bottom:823.720954pt;}
.yf1{bottom:824.722005pt;}
.yef{bottom:824.744639pt;}
.y1a7{bottom:825.010498pt;}
.y1d9{bottom:826.334554pt;}
.y8{bottom:832.656169pt;}
.y4c{bottom:834.146973pt;}
.y11f{bottom:834.261637pt;}
.y13e{bottom:835.154989pt;}
.y81{bottom:835.320231pt;}
.y197{bottom:835.320272pt;}
.y21a{bottom:836.697620pt;}
.y29e{bottom:837.037606pt;}
.y25c{bottom:837.048954pt;}
.yee{bottom:841.381973pt;}
.y219{bottom:850.025620pt;}
.y29d{bottom:850.365606pt;}
.y25b{bottom:850.376954pt;}
.y4b{bottom:850.813639pt;}
.y11e{bottom:850.928304pt;}
.y13d{bottom:851.821655pt;}
.y80{bottom:851.986898pt;}
.y196{bottom:851.986938pt;}
.yed{bottom:854.709973pt;}
.y1d8{bottom:856.334554pt;}
.y1a6{bottom:858.343831pt;}
.y218{bottom:863.353620pt;}
.y29c{bottom:863.693606pt;}
.y25a{bottom:863.704954pt;}
.y4a{bottom:867.480306pt;}
.y11d{bottom:867.594971pt;}
.yec{bottom:868.037973pt;}
.y13c{bottom:868.488322pt;}
.y7f{bottom:868.653564pt;}
.y117{bottom:868.653605pt;}
.y7{bottom:872.377441pt;}
.y217{bottom:876.681620pt;}
.y29b{bottom:877.021606pt;}
.y259{bottom:877.032954pt;}
.yeb{bottom:881.365973pt;}
.y49{bottom:884.146973pt;}
.y11c{bottom:884.261637pt;}
.y13b{bottom:885.154989pt;}
.y7e{bottom:885.320231pt;}
.y116{bottom:885.320272pt;}
.y216{bottom:890.009620pt;}
.y29a{bottom:890.349606pt;}
.y258{bottom:890.360954pt;}
.ye9{bottom:894.693973pt;}
.y6{bottom:896.377441pt;}
.y48{bottom:900.813639pt;}
.y13a{bottom:901.821655pt;}
.y7d{bottom:901.986898pt;}
.y115{bottom:901.986938pt;}
.y215{bottom:903.337620pt;}
.y299{bottom:903.677606pt;}
.y257{bottom:903.688954pt;}
.yea{bottom:908.021973pt;}
.ye8{bottom:908.026688pt;}
.y214{bottom:916.665620pt;}
.y1d7{bottom:916.702123pt;}
.y298{bottom:917.005606pt;}
.y256{bottom:917.016954pt;}
.y47{bottom:917.480306pt;}
.y11b{bottom:917.594971pt;}
.y139{bottom:918.488322pt;}
.y7c{bottom:918.653564pt;}
.y114{bottom:918.653605pt;}
.y213{bottom:929.993620pt;}
.y1d6{bottom:930.030123pt;}
.y297{bottom:930.333606pt;}
.y255{bottom:930.344954pt;}
.ye7{bottom:932.994021pt;}
.y46{bottom:934.146973pt;}
.y138{bottom:935.154989pt;}
.y7b{bottom:935.320231pt;}
.y113{bottom:935.320272pt;}
.y212{bottom:943.321620pt;}
.y1d5{bottom:943.358123pt;}
.y296{bottom:943.661606pt;}
.y254{bottom:943.672954pt;}
.ye6{bottom:946.322021pt;}
.y45{bottom:950.813639pt;}
.y11a{bottom:950.933637pt;}
.y7a{bottom:951.986898pt;}
.yd2{bottom:951.986938pt;}
.y2d7{bottom:956.524954pt;}
.y5{bottom:956.561849pt;}
.y211{bottom:956.649620pt;}
.y1d4{bottom:956.686123pt;}
.y295{bottom:956.989606pt;}
.y253{bottom:957.000954pt;}
.y44{bottom:967.480306pt;}
.y119{bottom:967.594971pt;}
.y137{bottom:968.488322pt;}
.y79{bottom:968.653564pt;}
.yd1{bottom:968.653605pt;}
.ydf{bottom:968.980306pt;}
.y2d6{bottom:969.852954pt;}
.y210{bottom:969.977620pt;}
.y1d3{bottom:970.014123pt;}
.y294{bottom:970.317606pt;}
.y252{bottom:970.328954pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y43{bottom:1002.206543pt;}
.hf{height:22.403733pt;}
.hd{height:32.005333pt;}
.he{height:32.760417pt;}
.h2{height:37.376000pt;}
.h9{height:37.653333pt;}
.h8{height:38.453333pt;}
.h4{height:39.712000pt;}
.h11{height:40.165333pt;}
.h19{height:40.195654pt;}
.h14{height:40.446660pt;}
.h15{height:40.446985pt;}
.h1a{height:40.515741pt;}
.h1b{height:40.518416pt;}
.h13{height:40.518985pt;}
.h17{height:40.531016pt;}
.h18{height:40.531668pt;}
.h16{height:40.531993pt;}
.hb{height:46.144000pt;}
.h1c{height:46.370634pt;}
.h12{height:46.376000pt;}
.h1d{height:46.376033pt;}
.ha{height:47.253333pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h10{height:52.448000pt;}
.hc{height:54.560000pt;}
.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;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.151462pt;}
.x7{left:86.929867pt;}
.x19{left:90.709469pt;}
.x12{left:232.278259pt;}
.x13{left:240.279593pt;}
.xa{left:260.336141pt;}
.xf{left:327.043453pt;}
.x10{left:335.044786pt;}
.xb{left:344.928141pt;}
.x14{left:397.314259pt;}
.x15{left:405.315593pt;}
.x5{left:408.189087pt;}
.x6{left:423.309087pt;}
.xc{left:429.520141pt;}
.x18{left:430.866924pt;}
.x11{left:462.488118pt;}
.xd{left:514.112141pt;}
.x16{left:561.862923pt;}
.x17{left:569.864256pt;}
.xe{left:598.704141pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
}




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