
    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_7f90ac42f5db7fc5b26962b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e0074b762f5af049bcb53fc9.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_0cec53987c3dbfeb4bf68bb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2d0ad1849147cd8fbbd8ee8f.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_1fa4381f27c4a21b263091f3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fc36880dcecb5d2b52f56fcd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_7fdf28e417c6467b2f2af335.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.146000;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_fd18b2e4a57e6259666da566.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_b18abf7d24b6f472017d19fa.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_2cfe8f5322036f6558fb9f3b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_50b86a600c9d8f20073bbc98.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dd394e4697de6203169235db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a38f261cc1560cca7b95440e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;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:ffe;src:url('chunks/assets/font_a82b5c9ae7358d9fa38fab51.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.685547;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.400011px;}
.v4{vertical-align:-3.600037px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.609985px;}
.v1{vertical-align:24.000000px;}
.ls46{letter-spacing:-0.928422px;}
.ls9{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.840000px;}
.lsb{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.680843px;}
.ls40{letter-spacing:-0.495158px;}
.ls5{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.420000px;}
.ls42{letter-spacing:-0.371369px;}
.lsc{letter-spacing:-0.360000px;}
.ls6f{letter-spacing:-0.357000px;}
.ls73{letter-spacing:-0.306000px;}
.ls7{letter-spacing:-0.300000px;}
.ls7d{letter-spacing:-0.255000px;}
.ls43{letter-spacing:-0.247579px;}
.ls26{letter-spacing:-0.240000px;}
.ls70{letter-spacing:-0.204000px;}
.ls41{letter-spacing:-0.185684px;}
.ls2e{letter-spacing:-0.180000px;}
.ls7c{letter-spacing:-0.153000px;}
.ls3f{letter-spacing:-0.123790px;}
.ls8{letter-spacing:-0.120000px;}
.ls7e{letter-spacing:-0.102000px;}
.ls3c{letter-spacing:-0.061895px;}
.ls6{letter-spacing:-0.060000px;}
.ls7f{letter-spacing:-0.051000px;}
.ls4{letter-spacing:0.000000px;}
.ls79{letter-spacing:0.025500px;}
.ls5a{letter-spacing:0.051000px;}
.ls28{letter-spacing:0.060000px;}
.ls34{letter-spacing:0.061895px;}
.ls38{letter-spacing:0.101456px;}
.ls5d{letter-spacing:0.102000px;}
.ls3{letter-spacing:0.120000px;}
.ls35{letter-spacing:0.123790px;}
.ls68{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.178791px;}
.ls10{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.185684px;}
.ls57{letter-spacing:0.204000px;}
.ls0{letter-spacing:0.240000px;}
.ls39{letter-spacing:0.247579px;}
.ls2{letter-spacing:0.255000px;}
.ls59{letter-spacing:0.264000px;}
.ls2d{letter-spacing:0.270000px;}
.ls49{letter-spacing:0.282000px;}
.ls5e{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.300000px;}
.ls6e{letter-spacing:0.306000px;}
.ls3a{letter-spacing:0.309474px;}
.ls5b{letter-spacing:0.357000px;}
.ls19{letter-spacing:0.360000px;}
.ls76{letter-spacing:0.382500px;}
.ls5c{letter-spacing:0.408000px;}
.ls14{letter-spacing:0.420000px;}
.ls45{letter-spacing:0.433264px;}
.ls80{letter-spacing:0.433500px;}
.ls67{letter-spacing:0.459000px;}
.ls21{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.510000px;}
.lsf{letter-spacing:0.540000px;}
.ls66{letter-spacing:0.561000px;}
.ls33{letter-spacing:0.570000px;}
.ls81{letter-spacing:0.586500px;}
.lse{letter-spacing:0.600000px;}
.ls60{letter-spacing:0.612000px;}
.ls44{letter-spacing:0.618948px;}
.ls25{letter-spacing:0.630000px;}
.ls1d{letter-spacing:0.660000px;}
.ls6b{letter-spacing:0.663000px;}
.ls5f{letter-spacing:0.714000px;}
.ls17{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.750000px;}
.ls6d{letter-spacing:0.765000px;}
.ls18{letter-spacing:0.780000px;}
.ls75{letter-spacing:0.790500px;}
.ls58{letter-spacing:0.816000px;}
.ls12{letter-spacing:0.840000px;}
.ls78{letter-spacing:0.867000px;}
.ls4d{letter-spacing:0.870000px;}
.ls16{letter-spacing:0.900000px;}
.ls74{letter-spacing:0.918000px;}
.ls54{letter-spacing:0.930000px;}
.ls20{letter-spacing:0.960000px;}
.ls56{letter-spacing:0.969000px;}
.ls77{letter-spacing:0.994500px;}
.ls11{letter-spacing:1.020000px;}
.ls71{letter-spacing:1.071000px;}
.ls24{letter-spacing:1.080000px;}
.ls50{letter-spacing:1.110000px;}
.ls7b{letter-spacing:1.122000px;}
.ls13{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.200000px;}
.ls6c{letter-spacing:1.224000px;}
.ls7a{letter-spacing:1.249500px;}
.ls27{letter-spacing:1.260000px;}
.ls61{letter-spacing:1.275000px;}
.ls1b{letter-spacing:1.290000px;}
.ls1f{letter-spacing:1.320000px;}
.ls1e{letter-spacing:1.380000px;}
.ls65{letter-spacing:1.428000px;}
.ls23{letter-spacing:1.440000px;}
.ls51{letter-spacing:1.470000px;}
.ls4c{letter-spacing:1.500000px;}
.ls82{letter-spacing:1.530000px;}
.ls15{letter-spacing:1.560000px;}
.ls62{letter-spacing:1.606500px;}
.ls1c{letter-spacing:1.620000px;}
.ls47{letter-spacing:1.680000px;}
.ls83{letter-spacing:1.734000px;}
.ls2c{letter-spacing:1.740000px;}
.ls6a{letter-spacing:1.759500px;}
.ls72{letter-spacing:1.785000px;}
.ls30{letter-spacing:1.800000px;}
.ls4f{letter-spacing:1.830000px;}
.ls2f{letter-spacing:1.860000px;}
.ls32{letter-spacing:1.920000px;}
.ls31{letter-spacing:1.980000px;}
.ls4b{letter-spacing:2.040000px;}
.ls48{letter-spacing:2.100000px;}
.ls52{letter-spacing:2.130000px;}
.ls4a{letter-spacing:2.160000px;}
.ls53{letter-spacing:2.220000px;}
.ls1a{letter-spacing:2.280000px;}
.ls63{letter-spacing:2.295000px;}
.ls69{letter-spacing:2.346000px;}
.ls4e{letter-spacing:2.400000px;}
.ls55{letter-spacing:2.460000px;}
.ls84{letter-spacing:2.805000px;}
.ls64{letter-spacing:2.856000px;}
.ls85{letter-spacing:3.264000px;}
.ls3b{letter-spacing:3.775583px;}
.ls36{letter-spacing:148.561396px;}
.ls37{letter-spacing:149.217697px;}
.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;}
}
.ws7f{word-spacing:-16.620000px;}
.ws62{word-spacing:-16.140000px;}
.ws89{word-spacing:-16.092648px;}
.ws8a{word-spacing:-15.906963px;}
.ws1c{word-spacing:-15.660000px;}
.ws85{word-spacing:-15.597489px;}
.ws82{word-spacing:-15.535594px;}
.ws86{word-spacing:-15.473700px;}
.ws81{word-spacing:-15.411805px;}
.ws1b{word-spacing:-15.300000px;}
.ws84{word-spacing:-15.288015px;}
.ws5f{word-spacing:-15.240000px;}
.ws88{word-spacing:-15.226120px;}
.ws1d{word-spacing:-15.120000px;}
.ws87{word-spacing:-15.102331px;}
.ws60{word-spacing:-15.060000px;}
.ws6{word-spacing:-15.000000px;}
.ws83{word-spacing:-14.978541px;}
.ws61{word-spacing:-14.940000px;}
.wsab{word-spacing:-14.832000px;}
.wsa0{word-spacing:-14.820000px;}
.ws80{word-spacing:-14.792857px;}
.ws8b{word-spacing:-14.545278px;}
.ws4f{word-spacing:-14.544000px;}
.wsbc{word-spacing:-13.719000px;}
.wsaf{word-spacing:-13.005000px;}
.ws95{word-spacing:-12.750000px;}
.ws50{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws7{word-spacing:-12.120000px;}
.ws5{word-spacing:-11.520000px;}
.wsaa{word-spacing:-10.761000px;}
.ws1{word-spacing:-9.996000px;}
.ws8c{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws8{word-spacing:-1.890000px;}
.wsb2{word-spacing:-1.887000px;}
.ws7a{word-spacing:-1.860000px;}
.ws64{word-spacing:-1.740000px;}
.ws36{word-spacing:-1.620000px;}
.wsa{word-spacing:-1.500000px;}
.wsb1{word-spacing:-1.479000px;}
.ws75{word-spacing:-1.440000px;}
.wsc0{word-spacing:-1.428000px;}
.ws30{word-spacing:-1.380000px;}
.ws2a{word-spacing:-1.320000px;}
.wsb4{word-spacing:-1.275000px;}
.ws40{word-spacing:-1.260000px;}
.wse2{word-spacing:-1.224000px;}
.wse{word-spacing:-1.200000px;}
.ws3a{word-spacing:-1.140000px;}
.wsdf{word-spacing:-1.122000px;}
.ws3d{word-spacing:-1.080000px;}
.wsb7{word-spacing:-1.071000px;}
.wsf{word-spacing:-1.020000px;}
.wsb3{word-spacing:-0.969000px;}
.ws2e{word-spacing:-0.960000px;}
.wse9{word-spacing:-0.918000px;}
.ws78{word-spacing:-0.900000px;}
.wsd4{word-spacing:-0.867000px;}
.wsa9{word-spacing:-0.840000px;}
.ws2f{word-spacing:-0.780000px;}
.wsb8{word-spacing:-0.765000px;}
.ws16{word-spacing:-0.720000px;}
.wsb9{word-spacing:-0.714000px;}
.wsc9{word-spacing:-0.663000px;}
.ws11{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.612000px;}
.ws1e{word-spacing:-0.600000px;}
.wsd9{word-spacing:-0.561000px;}
.ws15{word-spacing:-0.540000px;}
.ws3e{word-spacing:-0.480000px;}
.wsf3{word-spacing:-0.459000px;}
.ws41{word-spacing:-0.420000px;}
.wse7{word-spacing:-0.408000px;}
.ws54{word-spacing:-0.360000px;}
.ws92{word-spacing:-0.309474px;}
.wsd1{word-spacing:-0.306000px;}
.ws25{word-spacing:-0.300000px;}
.wsa1{word-spacing:-0.282000px;}
.wsb0{word-spacing:-0.264000px;}
.wsae{word-spacing:-0.255000px;}
.ws8f{word-spacing:-0.247579px;}
.ws38{word-spacing:-0.240000px;}
.wsad{word-spacing:-0.204000px;}
.ws8e{word-spacing:-0.185684px;}
.ws12{word-spacing:-0.180000px;}
.wsba{word-spacing:-0.153000px;}
.ws91{word-spacing:-0.123790px;}
.wsc{word-spacing:-0.120000px;}
.wsea{word-spacing:-0.102000px;}
.ws90{word-spacing:-0.061895px;}
.ws58{word-spacing:-0.060000px;}
.wsf4{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.ws4a{word-spacing:0.060000px;}
.ws8d{word-spacing:0.061895px;}
.wse4{word-spacing:0.102000px;}
.ws5d{word-spacing:0.120000px;}
.ws93{word-spacing:0.123790px;}
.ws7e{word-spacing:0.153000px;}
.ws51{word-spacing:0.180000px;}
.ws3b{word-spacing:0.240000px;}
.ws1a{word-spacing:0.300000px;}
.ws6b{word-spacing:0.360000px;}
.ws9a{word-spacing:0.408000px;}
.ws59{word-spacing:0.420000px;}
.wsbb{word-spacing:0.459000px;}
.ws4b{word-spacing:0.480000px;}
.wse3{word-spacing:0.561000px;}
.ws6c{word-spacing:0.600000px;}
.wsd{word-spacing:0.660000px;}
.wsda{word-spacing:0.663000px;}
.wsf2{word-spacing:0.714000px;}
.ws26{word-spacing:0.720000px;}
.ws5a{word-spacing:0.780000px;}
.ws10{word-spacing:0.840000px;}
.wse8{word-spacing:0.867000px;}
.ws2d{word-spacing:0.900000px;}
.ws13{word-spacing:0.960000px;}
.wsc7{word-spacing:0.969000px;}
.ws35{word-spacing:1.020000px;}
.ws24{word-spacing:1.080000px;}
.ws7c{word-spacing:1.140000px;}
.wsb5{word-spacing:1.173000px;}
.ws42{word-spacing:1.200000px;}
.wscd{word-spacing:1.224000px;}
.ws76{word-spacing:1.260000px;}
.wsb6{word-spacing:1.275000px;}
.ws48{word-spacing:1.320000px;}
.wse6{word-spacing:1.326000px;}
.wsce{word-spacing:1.377000px;}
.ws14{word-spacing:1.380000px;}
.wsd2{word-spacing:1.428000px;}
.ws57{word-spacing:1.440000px;}
.wsb{word-spacing:1.500000px;}
.wsde{word-spacing:1.530000px;}
.ws5c{word-spacing:1.560000px;}
.ws28{word-spacing:1.620000px;}
.wscb{word-spacing:1.632000px;}
.ws45{word-spacing:1.680000px;}
.ws94{word-spacing:1.683000px;}
.ws31{word-spacing:1.740000px;}
.wsdd{word-spacing:1.785000px;}
.ws46{word-spacing:1.860000px;}
.wsca{word-spacing:1.887000px;}
.ws47{word-spacing:1.920000px;}
.wscc{word-spacing:1.938000px;}
.ws20{word-spacing:1.980000px;}
.wsd0{word-spacing:1.989000px;}
.ws43{word-spacing:2.040000px;}
.wsc2{word-spacing:2.091000px;}
.ws65{word-spacing:2.100000px;}
.ws34{word-spacing:2.160000px;}
.ws56{word-spacing:2.220000px;}
.ws77{word-spacing:2.280000px;}
.wsc8{word-spacing:2.295000px;}
.ws27{word-spacing:2.340000px;}
.wse1{word-spacing:2.346000px;}
.ws2b{word-spacing:2.400000px;}
.ws6f{word-spacing:2.448000px;}
.ws7b{word-spacing:2.460000px;}
.wsd5{word-spacing:2.499000px;}
.wsa5{word-spacing:2.520000px;}
.wsbd{word-spacing:2.550000px;}
.ws53{word-spacing:2.580000px;}
.wscf{word-spacing:2.601000px;}
.ws52{word-spacing:2.640000px;}
.wsdc{word-spacing:2.652000px;}
.ws55{word-spacing:2.700000px;}
.ws7d{word-spacing:2.703000px;}
.wsd3{word-spacing:2.754000px;}
.ws2c{word-spacing:2.760000px;}
.wsed{word-spacing:2.805000px;}
.ws22{word-spacing:2.820000px;}
.wsd7{word-spacing:2.856000px;}
.ws32{word-spacing:2.880000px;}
.ws5e{word-spacing:2.940000px;}
.wseb{word-spacing:2.958000px;}
.ws1f{word-spacing:3.000000px;}
.wsef{word-spacing:3.009000px;}
.ws73{word-spacing:3.060000px;}
.ws3c{word-spacing:3.120000px;}
.wsd6{word-spacing:3.162000px;}
.ws68{word-spacing:3.180000px;}
.ws49{word-spacing:3.240000px;}
.wsc3{word-spacing:3.264000px;}
.ws66{word-spacing:3.300000px;}
.wsd8{word-spacing:3.315000px;}
.ws44{word-spacing:3.360000px;}
.ws6a{word-spacing:3.420000px;}
.ws6d{word-spacing:3.480000px;}
.wse5{word-spacing:3.519000px;}
.ws21{word-spacing:3.540000px;}
.ws39{word-spacing:3.600000px;}
.wsdb{word-spacing:3.621000px;}
.ws71{word-spacing:3.672000px;}
.wsa7{word-spacing:3.720000px;}
.ws3f{word-spacing:3.780000px;}
.wsa6{word-spacing:3.840000px;}
.wsa2{word-spacing:3.960000px;}
.ws99{word-spacing:4.020000px;}
.ws4c{word-spacing:4.080000px;}
.ws4e{word-spacing:4.140000px;}
.wsa4{word-spacing:4.260000px;}
.wsac{word-spacing:4.284000px;}
.ws74{word-spacing:4.320000px;}
.wsc1{word-spacing:4.335000px;}
.wse0{word-spacing:4.488000px;}
.ws5b{word-spacing:4.500000px;}
.ws6e{word-spacing:4.794000px;}
.ws4d{word-spacing:4.800000px;}
.ws72{word-spacing:4.845000px;}
.ws33{word-spacing:4.980000px;}
.ws97{word-spacing:5.040000px;}
.ws69{word-spacing:5.100000px;}
.wsc4{word-spacing:5.202000px;}
.ws23{word-spacing:5.460000px;}
.wsa8{word-spacing:5.580000px;}
.ws98{word-spacing:5.700000px;}
.wsec{word-spacing:5.712000px;}
.ws37{word-spacing:5.760000px;}
.ws67{word-spacing:5.880000px;}
.wsa3{word-spacing:5.916000px;}
.wsbf{word-spacing:5.967000px;}
.ws29{word-spacing:6.060000px;}
.ws63{word-spacing:6.420000px;}
.wsee{word-spacing:6.630000px;}
.wsc6{word-spacing:6.885000px;}
.ws79{word-spacing:7.140000px;}
.ws9b{word-spacing:8.262000px;}
.ws9f{word-spacing:8.364000px;}
.ws70{word-spacing:8.415000px;}
.wsbe{word-spacing:8.874000px;}
.ws9e{word-spacing:9.078000px;}
.wsc5{word-spacing:9.690000px;}
.ws9d{word-spacing:10.047000px;}
.wsf0{word-spacing:11.985000px;}
.wsf1{word-spacing:14.433000px;}
.ws9c{word-spacing:18.360000px;}
.ws19{word-spacing:21.456000px;}
.ws17{word-spacing:72.267000px;}
.ws96{word-spacing:199.103990px;}
._c{margin-left:-2959.376905px;}
._19{margin-left:-48.450000px;}
._7{margin-left:-24.225000px;}
._4{margin-left:-16.575000px;}
._18{margin-left:-13.614000px;}
._12{margin-left:-12.474000px;}
._14{margin-left:-9.528000px;}
._9{margin-left:-8.186400px;}
._15{margin-left:-6.540000px;}
._3{margin-left:-4.532400px;}
._1{margin-left:-3.081600px;}
._0{margin-left:-1.632000px;}
._2{width:1.526400px;}
._a{width:3.315600px;}
._b{width:4.533600px;}
._13{width:6.570000px;}
._23{width:8.619000px;}
._10{width:11.939400px;}
._e{width:13.864800px;}
._16{width:15.606000px;}
._5{width:18.360000px;}
._11{width:20.526000px;}
._1a{width:29.994000px;}
._17{width:31.086000px;}
._f{width:33.000000px;}
._d{width:36.000000px;}
._6{width:54.621000px;}
._24{width:72.981000px;}
._26{width:111.282000px;}
._1e{width:148.626720px;}
._1c{width:150.179595px;}
._1f{width:204.917984px;}
._20{width:208.233000px;}
._1b{width:209.823366px;}
._29{width:211.853990px;}
._28{width:216.851993px;}
._27{width:220.931989px;}
._1d{width:234.593530px;}
._22{width:320.228990px;}
._21{width:370.310984px;}
._25{width:436.639289px;}
._8{width:1544.433000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fsa{font-size:41.261999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fsb{font-size:56.399998px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:61.894798px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y170{bottom:4.745087px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y2a{bottom:112.944300px;}
.y1bd{bottom:113.155796px;}
.y64{bottom:113.415344px;}
.y1b7{bottom:113.449802px;}
.y12e{bottom:114.229797px;}
.y15e{bottom:114.235797px;}
.y121{bottom:114.564297px;}
.y1ee{bottom:114.735306px;}
.y211{bottom:114.825306px;}
.y13f{bottom:114.874947px;}
.y294{bottom:116.614823px;}
.y2d6{bottom:117.010073px;}
.y2e{bottom:118.923900px;}
.y29{bottom:127.938300px;}
.y1bc{bottom:128.149796px;}
.y15d{bottom:129.229797px;}
.y210{bottom:129.819306px;}
.y161{bottom:131.242355px;}
.y11e{bottom:131.283302px;}
.y1d1{bottom:131.283325px;}
.y293{bottom:131.608823px;}
.y252{bottom:131.693530px;}
.y2d5{bottom:132.004073px;}
.y63{bottom:132.165344px;}
.y120{bottom:133.314297px;}
.y1ed{bottom:133.485306px;}
.y13e{bottom:133.624947px;}
.y2d{bottom:137.673900px;}
.y20f{bottom:144.813306px;}
.y292{bottom:146.602823px;}
.y251{bottom:146.687530px;}
.y2d4{bottom:146.998073px;}
.y28{bottom:148.032303px;}
.y160{bottom:149.992355px;}
.y11d{bottom:150.033302px;}
.y1d0{bottom:150.033325px;}
.y62{bottom:150.915344px;}
.yef{bottom:151.044296px;}
.y11f{bottom:152.064297px;}
.y92{bottom:152.235306px;}
.y13d{bottom:152.374947px;}
.y2c{bottom:156.423900px;}
.y20e{bottom:159.807306px;}
.y291{bottom:161.596823px;}
.y250{bottom:161.681530px;}
.y2d3{bottom:161.992073px;}
.y15f{bottom:168.742355px;}
.y11c{bottom:168.783302px;}
.y1cf{bottom:168.783325px;}
.y61{bottom:169.665344px;}
.yee{bottom:169.794296px;}
.y91{bottom:170.985306px;}
.y13c{bottom:171.124947px;}
.y27{bottom:173.032794px;}
.y20d{bottom:174.801306px;}
.y290{bottom:176.590823px;}
.y24f{bottom:176.675530px;}
.y2d2{bottom:176.986073px;}
.y11b{bottom:187.533302px;}
.y1ce{bottom:187.533325px;}
.y26{bottom:188.026794px;}
.y60{bottom:188.415344px;}
.yed{bottom:188.544296px;}
.y90{bottom:189.735306px;}
.y20c{bottom:189.795306px;}
.y13b{bottom:189.874947px;}
.y28f{bottom:191.584823px;}
.y24e{bottom:191.669530px;}
.y2d1{bottom:191.980073px;}
.y2b{bottom:193.923889px;}
.y20b{bottom:204.789306px;}
.y11a{bottom:206.283302px;}
.y1cd{bottom:206.283325px;}
.y28e{bottom:206.578823px;}
.y24d{bottom:206.663530px;}
.y2d0{bottom:206.974073px;}
.y5f{bottom:207.165344px;}
.yec{bottom:207.294296px;}
.y8f{bottom:208.485306px;}
.y13a{bottom:208.624947px;}
.y126{bottom:211.602294px;}
.y129{bottom:211.615044px;}
.y164{bottom:219.098969px;}
.y20a{bottom:219.783306px;}
.y28d{bottom:221.572823px;}
.y24c{bottom:221.657530px;}
.y2cf{bottom:221.968073px;}
.y119{bottom:225.033302px;}
.y1cc{bottom:225.033325px;}
.y5e{bottom:225.915344px;}
.yeb{bottom:226.044296px;}
.y125{bottom:226.596294px;}
.y128{bottom:226.609044px;}
.y173{bottom:226.769989px;}
.y8e{bottom:227.235306px;}
.y139{bottom:227.374947px;}
.y209{bottom:234.777306px;}
.y25{bottom:235.473450px;}
.y28c{bottom:236.566823px;}
.y24b{bottom:236.651530px;}
.y2ce{bottom:236.962073px;}
.y124{bottom:241.590294px;}
.y127{bottom:241.603044px;}
.y118{bottom:243.783302px;}
.y1cb{bottom:243.783325px;}
.y5d{bottom:244.665344px;}
.yea{bottom:244.794296px;}
.ybf{bottom:245.985306px;}
.y208{bottom:249.771306px;}
.y28b{bottom:251.560823px;}
.y24a{bottom:251.645530px;}
.y2cd{bottom:251.956073px;}
.y24{bottom:254.223450px;}
.y117{bottom:262.533302px;}
.y1ca{bottom:262.533325px;}
.y5c{bottom:263.415344px;}
.ye9{bottom:263.544296px;}
.y8d{bottom:264.735306px;}
.y207{bottom:264.765306px;}
.y138{bottom:264.874947px;}
.y28a{bottom:266.554823px;}
.y249{bottom:266.639530px;}
.y2cc{bottom:266.950073px;}
.y206{bottom:279.759306px;}
.y116{bottom:281.283302px;}
.y1c9{bottom:281.283325px;}
.y289{bottom:281.548823px;}
.y248{bottom:281.633530px;}
.y2cb{bottom:281.944073px;}
.y5b{bottom:282.165344px;}
.ye8{bottom:282.294296px;}
.ybe{bottom:283.485306px;}
.y14a{bottom:283.624947px;}
.y23{bottom:291.723450px;}
.y205{bottom:294.753306px;}
.y288{bottom:296.542823px;}
.y247{bottom:296.627530px;}
.y2ca{bottom:296.938073px;}
.y115{bottom:300.033302px;}
.y1c8{bottom:300.033325px;}
.y5a{bottom:300.915344px;}
.ye7{bottom:301.044296px;}
.y8c{bottom:302.235260px;}
.ybd{bottom:302.235306px;}
.y149{bottom:302.374947px;}
.y204{bottom:309.747306px;}
.y22{bottom:310.473450px;}
.y287{bottom:311.536823px;}
.y246{bottom:311.621530px;}
.y2c9{bottom:311.932073px;}
.y114{bottom:318.783302px;}
.y1c7{bottom:318.783325px;}
.y59{bottom:319.665344px;}
.ye6{bottom:319.794296px;}
.y8b{bottom:320.985260px;}
.ybc{bottom:320.985306px;}
.y137{bottom:321.124786px;}
.y148{bottom:321.124947px;}
.y203{bottom:324.741306px;}
.y286{bottom:326.530823px;}
.y245{bottom:326.615530px;}
.y2c8{bottom:326.926073px;}
.y21{bottom:329.223450px;}
.y113{bottom:337.533302px;}
.y1c6{bottom:337.533325px;}
.y58{bottom:338.415344px;}
.ye5{bottom:338.544296px;}
.y8a{bottom:339.735260px;}
.ybb{bottom:339.735306px;}
.y136{bottom:339.874786px;}
.y147{bottom:339.874947px;}
.y285{bottom:341.524823px;}
.y244{bottom:341.609530px;}
.y2c7{bottom:341.920073px;}
.y20{bottom:347.973450px;}
.y112{bottom:356.283302px;}
.y1c5{bottom:356.283325px;}
.y19c{bottom:356.465297px;}
.y284{bottom:356.518823px;}
.y243{bottom:356.603530px;}
.y2c6{bottom:356.914073px;}
.y57{bottom:357.165344px;}
.ye4{bottom:357.294296px;}
.y89{bottom:358.485260px;}
.yba{bottom:358.485306px;}
.y135{bottom:358.624786px;}
.y146{bottom:358.624947px;}
.y1f{bottom:366.723450px;}
.y19b{bottom:371.459297px;}
.y283{bottom:371.512823px;}
.y242{bottom:371.597530px;}
.y2c5{bottom:371.908073px;}
.y202{bottom:373.485306px;}
.y111{bottom:375.033302px;}
.y1c4{bottom:375.033325px;}
.y56{bottom:375.915344px;}
.ye3{bottom:376.044296px;}
.y88{bottom:377.235260px;}
.yb9{bottom:377.235306px;}
.y134{bottom:377.374786px;}
.y145{bottom:377.374947px;}
.y1e{bottom:385.473450px;}
.y19a{bottom:386.453297px;}
.y282{bottom:386.506823px;}
.y241{bottom:386.591530px;}
.y2c4{bottom:386.902073px;}
.y1c3{bottom:393.783325px;}
.y55{bottom:394.665344px;}
.ye2{bottom:394.794296px;}
.y87{bottom:395.985260px;}
.yb8{bottom:395.985306px;}
.y133{bottom:396.124786px;}
.y144{bottom:396.124947px;}
.y199{bottom:401.447297px;}
.y281{bottom:401.500823px;}
.y240{bottom:401.585530px;}
.y2c3{bottom:401.896073px;}
.y1d{bottom:404.223450px;}
.y110{bottom:412.533279px;}
.y1c2{bottom:412.533325px;}
.y54{bottom:413.415344px;}
.ye1{bottom:413.544296px;}
.y86{bottom:414.735260px;}
.yb7{bottom:414.735306px;}
.y132{bottom:414.874786px;}
.y143{bottom:414.874947px;}
.y280{bottom:416.494823px;}
.y23f{bottom:416.579530px;}
.y2c2{bottom:416.890073px;}
.y1c{bottom:422.973450px;}
.y1c1{bottom:431.283325px;}
.y27f{bottom:431.488823px;}
.y23e{bottom:431.573530px;}
.y2c1{bottom:431.884073px;}
.y53{bottom:432.165344px;}
.ye0{bottom:432.294296px;}
.y85{bottom:433.485260px;}
.yb6{bottom:433.485306px;}
.y131{bottom:433.624786px;}
.y142{bottom:433.624947px;}
.y1b{bottom:441.723450px;}
.y27e{bottom:446.482823px;}
.y23d{bottom:446.567530px;}
.y2c0{bottom:446.878073px;}
.y201{bottom:448.556556px;}
.y10f{bottom:450.033279px;}
.y1c0{bottom:450.033325px;}
.y52{bottom:450.915344px;}
.ydf{bottom:451.044296px;}
.y84{bottom:452.235260px;}
.yb5{bottom:452.235306px;}
.y130{bottom:452.374786px;}
.y141{bottom:452.374947px;}
.y187{bottom:452.374969px;}
.y1a{bottom:460.473450px;}
.y1a6{bottom:460.740885px;}
.y27d{bottom:461.476823px;}
.y23c{bottom:461.561530px;}
.y2bf{bottom:461.872073px;}
.y200{bottom:463.550556px;}
.y1bf{bottom:468.783325px;}
.y51{bottom:469.665344px;}
.yde{bottom:469.794296px;}
.y83{bottom:470.985260px;}
.yb4{bottom:470.985306px;}
.y12f{bottom:471.124786px;}
.y140{bottom:471.124947px;}
.y186{bottom:471.124969px;}
.y27c{bottom:476.470823px;}
.y23b{bottom:476.555530px;}
.y2be{bottom:476.866073px;}
.y1ff{bottom:478.544556px;}
.y19{bottom:479.223450px;}
.y1a5{bottom:479.534385px;}
.y1be{bottom:487.533325px;}
.y50{bottom:488.415344px;}
.ydd{bottom:488.544296px;}
.y1b5{bottom:488.683823px;}
.y82{bottom:489.735260px;}
.yb3{bottom:489.735306px;}
.y15a{bottom:489.874786px;}
.y185{bottom:489.874969px;}
.y27b{bottom:491.464823px;}
.y23a{bottom:491.549530px;}
.y2bd{bottom:491.860073px;}
.y1fe{bottom:493.538556px;}
.y18{bottom:497.973450px;}
.y1a4{bottom:498.251385px;}
.y10e{bottom:506.283325px;}
.y27a{bottom:506.458823px;}
.y239{bottom:506.543530px;}
.y2bc{bottom:506.854073px;}
.y4f{bottom:507.165344px;}
.ydc{bottom:507.294296px;}
.y1b4{bottom:507.433823px;}
.y81{bottom:508.485260px;}
.yb2{bottom:508.485306px;}
.y1fd{bottom:508.532556px;}
.y159{bottom:508.624786px;}
.y184{bottom:508.624969px;}
.y1a3{bottom:516.968385px;}
.y279{bottom:521.452823px;}
.y238{bottom:521.537530px;}
.y2bb{bottom:521.848073px;}
.y1fc{bottom:523.526556px;}
.y123{bottom:524.176807px;}
.y10d{bottom:525.033325px;}
.y4e{bottom:525.915344px;}
.ydb{bottom:526.044296px;}
.y1b3{bottom:526.183823px;}
.y80{bottom:527.235260px;}
.yb1{bottom:527.235306px;}
.y158{bottom:527.374786px;}
.y183{bottom:527.374969px;}
.y14b{bottom:528.190933px;}
.y17{bottom:535.479450px;}
.y278{bottom:536.446823px;}
.y237{bottom:536.531530px;}
.y2ba{bottom:536.842073px;}
.y1fb{bottom:538.520556px;}
.y122{bottom:539.170807px;}
.y10c{bottom:543.783325px;}
.y4d{bottom:544.665344px;}
.yda{bottom:544.794296px;}
.y1b2{bottom:544.933823px;}
.y1a2{bottom:545.056635px;}
.y7f{bottom:545.985260px;}
.yb0{bottom:545.985306px;}
.y157{bottom:546.124786px;}
.y182{bottom:546.124969px;}
.y277{bottom:551.440823px;}
.y236{bottom:551.525530px;}
.y2b9{bottom:551.836073px;}
.y1fa{bottom:553.514556px;}
.y16{bottom:554.223450px;}
.y10b{bottom:562.533325px;}
.y4c{bottom:563.415344px;}
.yd9{bottom:563.544296px;}
.y1b1{bottom:563.683823px;}
.y7e{bottom:564.735260px;}
.yaf{bottom:564.735306px;}
.y156{bottom:564.874786px;}
.y181{bottom:564.874969px;}
.y276{bottom:566.434823px;}
.y235{bottom:566.519530px;}
.y2b8{bottom:566.830073px;}
.y1f9{bottom:568.508556px;}
.y1a1{bottom:569.472885px;}
.y10a{bottom:581.283325px;}
.y275{bottom:581.428823px;}
.y234{bottom:581.513530px;}
.y2b7{bottom:581.824073px;}
.y4b{bottom:582.165344px;}
.yd8{bottom:582.294296px;}
.y1b0{bottom:582.433823px;}
.y7d{bottom:583.485260px;}
.yae{bottom:583.485306px;}
.y1f8{bottom:583.502556px;}
.y155{bottom:583.624786px;}
.y180{bottom:583.624969px;}
.y1a0{bottom:594.981455px;}
.y274{bottom:596.422823px;}
.y233{bottom:596.507530px;}
.y2b6{bottom:596.818073px;}
.y1f7{bottom:598.496556px;}
.y109{bottom:600.033325px;}
.y4a{bottom:600.915344px;}
.yd7{bottom:601.044296px;}
.y1af{bottom:601.183823px;}
.y7c{bottom:602.235260px;}
.yad{bottom:602.235306px;}
.y1ec{bottom:602.238316px;}
.y154{bottom:602.374786px;}
.y17f{bottom:602.374969px;}
.y19f{bottom:609.975455px;}
.y15{bottom:610.473450px;}
.y273{bottom:611.416823px;}
.y232{bottom:611.501530px;}
.y2b5{bottom:611.812073px;}
.y1f6{bottom:613.490556px;}
.y108{bottom:618.783325px;}
.y49{bottom:619.665344px;}
.yd6{bottom:619.794296px;}
.y1ae{bottom:619.933823px;}
.y7b{bottom:620.985260px;}
.yac{bottom:620.985306px;}
.y1eb{bottom:620.988316px;}
.y153{bottom:621.124786px;}
.y17e{bottom:621.124969px;}
.y19e{bottom:624.969455px;}
.y272{bottom:626.410823px;}
.y231{bottom:626.495530px;}
.y2b4{bottom:626.806073px;}
.y14{bottom:629.223450px;}
.y107{bottom:637.533325px;}
.y48{bottom:638.415344px;}
.yd5{bottom:638.544296px;}
.y1ad{bottom:638.683823px;}
.y7a{bottom:639.735260px;}
.yab{bottom:639.735306px;}
.y1ea{bottom:639.738316px;}
.y152{bottom:639.874786px;}
.y17d{bottom:639.874969px;}
.y19d{bottom:639.963455px;}
.y271{bottom:641.404823px;}
.y230{bottom:641.489530px;}
.y2f5{bottom:641.596073px;}
.y2b3{bottom:641.800073px;}
.y1f5{bottom:643.491306px;}
.y106{bottom:656.283325px;}
.y270{bottom:656.398823px;}
.y22f{bottom:656.483530px;}
.y2f4{bottom:656.590073px;}
.y2b2{bottom:656.794073px;}
.y47{bottom:657.165344px;}
.yd4{bottom:657.294296px;}
.y1ac{bottom:657.433823px;}
.y79{bottom:658.485260px;}
.yaa{bottom:658.485306px;}
.y1e9{bottom:658.488316px;}
.y1a7{bottom:658.618786px;}
.y151{bottom:658.624786px;}
.y17c{bottom:658.624969px;}
.y13{bottom:666.723450px;}
.y26f{bottom:671.392823px;}
.y22e{bottom:671.477530px;}
.y2f3{bottom:671.584073px;}
.y2b1{bottom:671.788073px;}
.y105{bottom:675.033325px;}
.y46{bottom:675.915344px;}
.yd3{bottom:676.044296px;}
.y1ab{bottom:676.183823px;}
.y1bb{bottom:676.944305px;}
.y78{bottom:677.235260px;}
.ya9{bottom:677.235306px;}
.y1e8{bottom:677.238316px;}
.y150{bottom:677.374786px;}
.y17b{bottom:677.374969px;}
.y12{bottom:685.473450px;}
.y26e{bottom:686.386823px;}
.y22d{bottom:686.471530px;}
.y2f2{bottom:686.578073px;}
.y2b0{bottom:686.782073px;}
.y1f4{bottom:688.485306px;}
.y104{bottom:693.783325px;}
.y45{bottom:694.665344px;}
.yd2{bottom:694.794296px;}
.y1aa{bottom:694.933823px;}
.y1ba{bottom:695.694305px;}
.y77{bottom:695.985260px;}
.ya8{bottom:695.985306px;}
.y1e7{bottom:695.988316px;}
.y14f{bottom:696.124786px;}
.y17a{bottom:696.124969px;}
.y26d{bottom:701.380823px;}
.y22c{bottom:701.465530px;}
.y2f1{bottom:701.572073px;}
.y2af{bottom:701.776073px;}
.y11{bottom:704.223450px;}
.y103{bottom:712.533325px;}
.y44{bottom:713.415344px;}
.yd1{bottom:713.544296px;}
.y1a9{bottom:713.683823px;}
.y76{bottom:714.735260px;}
.ya7{bottom:714.735306px;}
.y1e6{bottom:714.738316px;}
.y14e{bottom:714.874786px;}
.y26c{bottom:716.374823px;}
.y22b{bottom:716.459530px;}
.y2f0{bottom:716.566073px;}
.y2ae{bottom:716.770073px;}
.y1f3{bottom:722.252510px;}
.y10{bottom:722.973450px;}
.y102{bottom:731.283325px;}
.y26b{bottom:731.368823px;}
.y22a{bottom:731.453530px;}
.y2ef{bottom:731.560073px;}
.y2ad{bottom:731.764073px;}
.y43{bottom:732.165344px;}
.y1b9{bottom:733.194305px;}
.y75{bottom:733.485260px;}
.ya6{bottom:733.485306px;}
.y1e5{bottom:733.488316px;}
.y14d{bottom:733.624786px;}
.y179{bottom:733.624969px;}
.y1f2{bottom:737.246510px;}
.yf{bottom:741.723450px;}
.y26a{bottom:746.362823px;}
.y229{bottom:746.447530px;}
.y2ee{bottom:746.554073px;}
.y2ac{bottom:746.758073px;}
.y101{bottom:750.033325px;}
.y42{bottom:750.915344px;}
.yd0{bottom:751.044296px;}
.y1a8{bottom:751.183823px;}
.y1b8{bottom:751.944305px;}
.y74{bottom:752.235260px;}
.ya5{bottom:752.235306px;}
.y1e4{bottom:752.238316px;}
.y1f1{bottom:752.240510px;}
.y14c{bottom:752.374786px;}
.ye{bottom:760.473450px;}
.y269{bottom:761.356823px;}
.y228{bottom:761.441530px;}
.y2ed{bottom:761.548073px;}
.y2ab{bottom:761.752073px;}
.y100{bottom:768.783325px;}
.y41{bottom:769.665344px;}
.y73{bottom:770.985260px;}
.ya4{bottom:770.985306px;}
.y1e3{bottom:770.988316px;}
.y178{bottom:771.124969px;}
.y268{bottom:776.350823px;}
.y227{bottom:776.435530px;}
.y2ec{bottom:776.542073px;}
.y2aa{bottom:776.746073px;}
.yd{bottom:779.223450px;}
.y1f0{bottom:782.241260px;}
.yff{bottom:787.533325px;}
.y40{bottom:788.415344px;}
.ycf{bottom:788.544342px;}
.y72{bottom:789.735260px;}
.ya3{bottom:789.735306px;}
.y1e2{bottom:789.738316px;}
.y177{bottom:789.874969px;}
.y267{bottom:791.344823px;}
.y226{bottom:791.429530px;}
.y2eb{bottom:791.536073px;}
.y2a9{bottom:791.740073px;}
.y1b6{bottom:795.310913px;}
.y1ef{bottom:797.235260px;}
.yc{bottom:797.973450px;}
.yfe{bottom:806.283325px;}
.y266{bottom:806.338823px;}
.y225{bottom:806.423530px;}
.y2ea{bottom:806.530073px;}
.y2a8{bottom:806.734073px;}
.y3f{bottom:807.165344px;}
.yce{bottom:807.294342px;}
.y15c{bottom:808.396778px;}
.y71{bottom:808.485260px;}
.ya2{bottom:808.485306px;}
.y1e1{bottom:808.488316px;}
.y176{bottom:808.624969px;}
.y172{bottom:813.096637px;}
.yb{bottom:816.723450px;}
.y265{bottom:821.332823px;}
.y224{bottom:821.417530px;}
.y2e9{bottom:821.524073px;}
.y2a7{bottom:821.728073px;}
.y15b{bottom:823.390778px;}
.yfd{bottom:825.033325px;}
.y3e{bottom:825.915344px;}
.ycd{bottom:826.044342px;}
.y12d{bottom:827.235260px;}
.ya1{bottom:827.235306px;}
.y1e0{bottom:827.238316px;}
.y175{bottom:827.374969px;}
.y171{bottom:833.190582px;}
.ya{bottom:835.473450px;}
.y264{bottom:836.326823px;}
.y223{bottom:836.411530px;}
.y2e8{bottom:836.518073px;}
.y2a6{bottom:836.722073px;}
.yfc{bottom:843.783325px;}
.y3d{bottom:844.665344px;}
.ycc{bottom:844.794342px;}
.y70{bottom:845.985260px;}
.ya0{bottom:845.985306px;}
.y1df{bottom:845.988316px;}
.y174{bottom:846.124969px;}
.y163{bottom:846.652496px;}
.y263{bottom:851.320823px;}
.y222{bottom:851.405530px;}
.y2e7{bottom:851.512073px;}
.y2a5{bottom:851.716073px;}
.yfb{bottom:862.533325px;}
.y3c{bottom:863.415344px;}
.ycb{bottom:863.544342px;}
.y12c{bottom:864.735260px;}
.y9f{bottom:864.735306px;}
.y1de{bottom:864.738316px;}
.y262{bottom:866.314823px;}
.y221{bottom:866.399530px;}
.y2e6{bottom:866.506073px;}
.y2a4{bottom:866.710073px;}
.y16f{bottom:870.363067px;}
.y9{bottom:879.656208px;}
.yfa{bottom:881.283325px;}
.y261{bottom:881.308823px;}
.y220{bottom:881.393530px;}
.y2e5{bottom:881.500073px;}
.y2a3{bottom:881.704073px;}
.y3b{bottom:882.165344px;}
.yca{bottom:882.294342px;}
.y6f{bottom:883.485260px;}
.y9e{bottom:883.485306px;}
.y1dd{bottom:883.488316px;}
.y16e{bottom:894.597565px;}
.y8{bottom:894.650208px;}
.y192{bottom:895.384844px;}
.y260{bottom:896.302823px;}
.y21f{bottom:896.387530px;}
.y2e4{bottom:896.494073px;}
.y2a2{bottom:896.698073px;}
.yf9{bottom:900.033325px;}
.y3a{bottom:900.915344px;}
.yc9{bottom:901.044342px;}
.y12b{bottom:902.235260px;}
.y9d{bottom:902.235306px;}
.y1dc{bottom:902.238316px;}
.y191{bottom:910.378844px;}
.y25f{bottom:911.296823px;}
.y21e{bottom:911.381530px;}
.y2e3{bottom:911.488073px;}
.y2a1{bottom:911.692073px;}
.yf8{bottom:918.783325px;}
.y16d{bottom:919.266632px;}
.y39{bottom:919.665344px;}
.yc8{bottom:919.794342px;}
.y12a{bottom:920.985260px;}
.y9c{bottom:920.985306px;}
.y1db{bottom:920.988316px;}
.y25e{bottom:926.290823px;}
.y21d{bottom:926.375530px;}
.y2e2{bottom:926.482073px;}
.y2a0{bottom:926.686073px;}
.y7{bottom:937.250244px;}
.yf7{bottom:937.533325px;}
.y38{bottom:938.415344px;}
.yc7{bottom:938.544342px;}
.y198{bottom:939.025524px;}
.y16c{bottom:939.659821px;}
.y6e{bottom:939.735260px;}
.y9b{bottom:939.735306px;}
.y1da{bottom:939.738316px;}
.y25d{bottom:941.284823px;}
.y21c{bottom:941.369530px;}
.y2e1{bottom:941.476073px;}
.y29f{bottom:941.680073px;}
.y168{bottom:953.474383px;}
.y25c{bottom:956.278823px;}
.yf6{bottom:956.283325px;}
.y21b{bottom:956.363530px;}
.y2e0{bottom:956.470073px;}
.y29e{bottom:956.674073px;}
.y37{bottom:957.165344px;}
.yc6{bottom:957.294342px;}
.y197{bottom:957.819024px;}
.y6d{bottom:958.485260px;}
.y9a{bottom:958.485306px;}
.y1d9{bottom:958.488316px;}
.y16b{bottom:961.808441px;}
.y167{bottom:971.238190px;}
.y25b{bottom:971.272823px;}
.y21a{bottom:971.357530px;}
.y2df{bottom:971.464073px;}
.y29d{bottom:971.668073px;}
.yf5{bottom:975.033325px;}
.y36{bottom:975.915344px;}
.yc5{bottom:976.044342px;}
.y196{bottom:976.536024px;}
.y6c{bottom:977.235260px;}
.y99{bottom:977.235306px;}
.y1d8{bottom:977.238316px;}
.y18e{bottom:977.239986px;}
.y6{bottom:981.936768px;}
.y16a{bottom:983.847565px;}
.y25a{bottom:986.266823px;}
.y219{bottom:986.351530px;}
.y2de{bottom:986.458073px;}
.y29c{bottom:986.662073px;}
.yf4{bottom:993.783325px;}
.y35{bottom:994.665344px;}
.yc4{bottom:994.794342px;}
.y6b{bottom:995.985260px;}
.y98{bottom:995.985306px;}
.y1d7{bottom:995.988316px;}
.y18d{bottom:995.989986px;}
.y259{bottom:1001.260823px;}
.y218{bottom:1001.345530px;}
.y2dd{bottom:1001.452073px;}
.y29b{bottom:1001.656073px;}
.y195{bottom:1004.624274px;}
.y169{bottom:1005.992119px;}
.y5{bottom:1008.936768px;}
.yf3{bottom:1012.533325px;}
.y34{bottom:1013.415344px;}
.yc3{bottom:1013.544342px;}
.y6a{bottom:1014.735260px;}
.y97{bottom:1014.735306px;}
.y1d6{bottom:1014.738316px;}
.y18c{bottom:1014.739986px;}
.y258{bottom:1016.254823px;}
.y217{bottom:1016.339530px;}
.y2dc{bottom:1016.446073px;}
.y29a{bottom:1016.650073px;}
.y194{bottom:1019.618274px;}
.y166{bottom:1027.264431px;}
.y257{bottom:1031.248823px;}
.yf2{bottom:1031.283325px;}
.y216{bottom:1031.333530px;}
.y2db{bottom:1031.440073px;}
.y299{bottom:1031.644073px;}
.y33{bottom:1032.165344px;}
.yc2{bottom:1032.294342px;}
.y69{bottom:1033.485260px;}
.y96{bottom:1033.485306px;}
.y1d5{bottom:1033.488316px;}
.y18b{bottom:1033.489986px;}
.y193{bottom:1034.612274px;}
.y165{bottom:1044.919922px;}
.y256{bottom:1046.242823px;}
.y215{bottom:1046.327530px;}
.y2da{bottom:1046.434073px;}
.y298{bottom:1046.638073px;}
.yf1{bottom:1050.033325px;}
.y32{bottom:1050.915344px;}
.yc1{bottom:1051.044342px;}
.y68{bottom:1052.235260px;}
.y95{bottom:1052.235306px;}
.y1d4{bottom:1052.238316px;}
.y18a{bottom:1052.239986px;}
.y190{bottom:1060.114844px;}
.y255{bottom:1061.236823px;}
.y214{bottom:1061.321530px;}
.y2d9{bottom:1061.428073px;}
.y297{bottom:1061.632073px;}
.y31{bottom:1069.665344px;}
.y67{bottom:1070.985260px;}
.y94{bottom:1070.985306px;}
.y1d3{bottom:1070.988316px;}
.y189{bottom:1070.989986px;}
.y18f{bottom:1075.108844px;}
.y254{bottom:1076.230823px;}
.y213{bottom:1076.315530px;}
.y2d8{bottom:1076.422073px;}
.y296{bottom:1076.626073px;}
.yf0{bottom:1087.533325px;}
.y30{bottom:1088.415344px;}
.yc0{bottom:1088.544342px;}
.y66{bottom:1089.735260px;}
.y93{bottom:1089.735306px;}
.y1d2{bottom:1089.738316px;}
.y188{bottom:1089.739986px;}
.y162{bottom:1090.102844px;}
.y253{bottom:1091.224823px;}
.y212{bottom:1091.309530px;}
.y2d7{bottom:1091.416073px;}
.y295{bottom:1091.620073px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y2f{bottom:1127.482361px;}
.y65{bottom:1127.482544px;}
.h16{height:28.677089px;}
.hb{height:33.129599px;}
.h2{height:33.840000px;}
.h12{height:41.964673px;}
.h13{height:43.016885px;}
.h14{height:43.033150px;}
.h4{height:44.676000px;}
.ha{height:47.328000px;}
.h15{height:49.287075px;}
.h17{height:52.339198px;}
.h10{height:53.160000px;}
.hf{height:53.805000px;}
.h3{height:54.862258px;}
.h8{height:55.680000px;}
.hd{height:59.004000px;}
.h7{height:59.340000px;}
.he{height:61.380000px;}
.h6{height:64.866000px;}
.h9{height:65.274000px;}
.hc{height:71.208000px;}
.h5{height:85.056000px;}
.h11{height:233.572495px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:739.841995px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x6{left:78.746400px;}
.x7{left:93.545402px;}
.x1d{left:95.525402px;}
.x4{left:97.796100px;}
.x1e{left:102.048152px;}
.x17{left:105.951456px;}
.x18{left:162.224705px;}
.x16{left:182.487453px;}
.x10{left:185.995800px;}
.x11{left:189.400014px;}
.x12{left:266.582827px;}
.x19{left:273.927451px;}
.x15{left:295.860443px;}
.x13{left:306.167107px;}
.x14{left:352.108200px;}
.x1a{left:373.109698px;}
.xc{left:414.496216px;}
.xb{left:435.763212px;}
.xd{left:438.170976px;}
.x5{left:459.212540px;}
.x8{left:476.225402px;}
.x1f{left:484.726656px;}
.xe{left:536.521810px;}
.xf{left:540.467604px;}
.x1c{left:560.710362px;}
.x1b{left:622.292862px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xa{left:804.265686px;}
.x9{left:810.321716px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v4{vertical-align:-3.200033pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.319987pt;}
.v1{vertical-align:21.333333pt;}
.ls46{letter-spacing:-0.825264pt;}
.ls9{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.746667pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.605194pt;}
.ls40{letter-spacing:-0.440141pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.373333pt;}
.ls42{letter-spacing:-0.330106pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls6f{letter-spacing:-0.317333pt;}
.ls73{letter-spacing:-0.272000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls7d{letter-spacing:-0.226667pt;}
.ls43{letter-spacing:-0.220070pt;}
.ls26{letter-spacing:-0.213333pt;}
.ls70{letter-spacing:-0.181333pt;}
.ls41{letter-spacing:-0.165053pt;}
.ls2e{letter-spacing:-0.160000pt;}
.ls7c{letter-spacing:-0.136000pt;}
.ls3f{letter-spacing:-0.110035pt;}
.ls8{letter-spacing:-0.106667pt;}
.ls7e{letter-spacing:-0.090667pt;}
.ls3c{letter-spacing:-0.055018pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls7f{letter-spacing:-0.045333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls79{letter-spacing:0.022667pt;}
.ls5a{letter-spacing:0.045333pt;}
.ls28{letter-spacing:0.053333pt;}
.ls34{letter-spacing:0.055018pt;}
.ls38{letter-spacing:0.090183pt;}
.ls5d{letter-spacing:0.090667pt;}
.ls3{letter-spacing:0.106667pt;}
.ls35{letter-spacing:0.110035pt;}
.ls68{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.158926pt;}
.ls10{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.165053pt;}
.ls57{letter-spacing:0.181333pt;}
.ls0{letter-spacing:0.213333pt;}
.ls39{letter-spacing:0.220070pt;}
.ls2{letter-spacing:0.226667pt;}
.ls59{letter-spacing:0.234667pt;}
.ls2d{letter-spacing:0.240000pt;}
.ls49{letter-spacing:0.250667pt;}
.ls5e{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls6e{letter-spacing:0.272000pt;}
.ls3a{letter-spacing:0.275088pt;}
.ls5b{letter-spacing:0.317333pt;}
.ls19{letter-spacing:0.320000pt;}
.ls76{letter-spacing:0.340000pt;}
.ls5c{letter-spacing:0.362667pt;}
.ls14{letter-spacing:0.373333pt;}
.ls45{letter-spacing:0.385123pt;}
.ls80{letter-spacing:0.385333pt;}
.ls67{letter-spacing:0.408000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.453333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls66{letter-spacing:0.498667pt;}
.ls33{letter-spacing:0.506667pt;}
.ls81{letter-spacing:0.521333pt;}
.lse{letter-spacing:0.533333pt;}
.ls60{letter-spacing:0.544000pt;}
.ls44{letter-spacing:0.550176pt;}
.ls25{letter-spacing:0.560000pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls6b{letter-spacing:0.589333pt;}
.ls5f{letter-spacing:0.634667pt;}
.ls17{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.666667pt;}
.ls6d{letter-spacing:0.680000pt;}
.ls18{letter-spacing:0.693333pt;}
.ls75{letter-spacing:0.702667pt;}
.ls58{letter-spacing:0.725333pt;}
.ls12{letter-spacing:0.746667pt;}
.ls78{letter-spacing:0.770667pt;}
.ls4d{letter-spacing:0.773333pt;}
.ls16{letter-spacing:0.800000pt;}
.ls74{letter-spacing:0.816000pt;}
.ls54{letter-spacing:0.826667pt;}
.ls20{letter-spacing:0.853333pt;}
.ls56{letter-spacing:0.861333pt;}
.ls77{letter-spacing:0.884000pt;}
.ls11{letter-spacing:0.906667pt;}
.ls71{letter-spacing:0.952000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls50{letter-spacing:0.986667pt;}
.ls7b{letter-spacing:0.997333pt;}
.ls13{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.066667pt;}
.ls6c{letter-spacing:1.088000pt;}
.ls7a{letter-spacing:1.110667pt;}
.ls27{letter-spacing:1.120000pt;}
.ls61{letter-spacing:1.133333pt;}
.ls1b{letter-spacing:1.146667pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls1e{letter-spacing:1.226667pt;}
.ls65{letter-spacing:1.269333pt;}
.ls23{letter-spacing:1.280000pt;}
.ls51{letter-spacing:1.306667pt;}
.ls4c{letter-spacing:1.333333pt;}
.ls82{letter-spacing:1.360000pt;}
.ls15{letter-spacing:1.386667pt;}
.ls62{letter-spacing:1.428000pt;}
.ls1c{letter-spacing:1.440000pt;}
.ls47{letter-spacing:1.493333pt;}
.ls83{letter-spacing:1.541333pt;}
.ls2c{letter-spacing:1.546667pt;}
.ls6a{letter-spacing:1.564000pt;}
.ls72{letter-spacing:1.586667pt;}
.ls30{letter-spacing:1.600000pt;}
.ls4f{letter-spacing:1.626667pt;}
.ls2f{letter-spacing:1.653333pt;}
.ls32{letter-spacing:1.706667pt;}
.ls31{letter-spacing:1.760000pt;}
.ls4b{letter-spacing:1.813333pt;}
.ls48{letter-spacing:1.866667pt;}
.ls52{letter-spacing:1.893333pt;}
.ls4a{letter-spacing:1.920000pt;}
.ls53{letter-spacing:1.973333pt;}
.ls1a{letter-spacing:2.026667pt;}
.ls63{letter-spacing:2.040000pt;}
.ls69{letter-spacing:2.085333pt;}
.ls4e{letter-spacing:2.133333pt;}
.ls55{letter-spacing:2.186667pt;}
.ls84{letter-spacing:2.493333pt;}
.ls64{letter-spacing:2.538667pt;}
.ls85{letter-spacing:2.901333pt;}
.ls3b{letter-spacing:3.356074pt;}
.ls36{letter-spacing:132.054575pt;}
.ls37{letter-spacing:132.637953pt;}
.ws7f{word-spacing:-14.773333pt;}
.ws62{word-spacing:-14.346667pt;}
.ws89{word-spacing:-14.304576pt;}
.ws8a{word-spacing:-14.139523pt;}
.ws1c{word-spacing:-13.920000pt;}
.ws85{word-spacing:-13.864435pt;}
.ws82{word-spacing:-13.809417pt;}
.ws86{word-spacing:-13.754400pt;}
.ws81{word-spacing:-13.699382pt;}
.ws1b{word-spacing:-13.600000pt;}
.ws84{word-spacing:-13.589347pt;}
.ws5f{word-spacing:-13.546667pt;}
.ws88{word-spacing:-13.534329pt;}
.ws1d{word-spacing:-13.440000pt;}
.ws87{word-spacing:-13.424294pt;}
.ws60{word-spacing:-13.386667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws83{word-spacing:-13.314259pt;}
.ws61{word-spacing:-13.280000pt;}
.wsab{word-spacing:-13.184000pt;}
.wsa0{word-spacing:-13.173333pt;}
.ws80{word-spacing:-13.149206pt;}
.ws8b{word-spacing:-12.929136pt;}
.ws4f{word-spacing:-12.928000pt;}
.wsbc{word-spacing:-12.194667pt;}
.wsaf{word-spacing:-11.560000pt;}
.ws95{word-spacing:-11.333333pt;}
.ws50{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws7{word-spacing:-10.773333pt;}
.ws5{word-spacing:-10.240000pt;}
.wsaa{word-spacing:-9.565333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws8c{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws8{word-spacing:-1.680000pt;}
.wsb2{word-spacing:-1.677333pt;}
.ws7a{word-spacing:-1.653333pt;}
.ws64{word-spacing:-1.546667pt;}
.ws36{word-spacing:-1.440000pt;}
.wsa{word-spacing:-1.333333pt;}
.wsb1{word-spacing:-1.314667pt;}
.ws75{word-spacing:-1.280000pt;}
.wsc0{word-spacing:-1.269333pt;}
.ws30{word-spacing:-1.226667pt;}
.ws2a{word-spacing:-1.173333pt;}
.wsb4{word-spacing:-1.133333pt;}
.ws40{word-spacing:-1.120000pt;}
.wse2{word-spacing:-1.088000pt;}
.wse{word-spacing:-1.066667pt;}
.ws3a{word-spacing:-1.013333pt;}
.wsdf{word-spacing:-0.997333pt;}
.ws3d{word-spacing:-0.960000pt;}
.wsb7{word-spacing:-0.952000pt;}
.wsf{word-spacing:-0.906667pt;}
.wsb3{word-spacing:-0.861333pt;}
.ws2e{word-spacing:-0.853333pt;}
.wse9{word-spacing:-0.816000pt;}
.ws78{word-spacing:-0.800000pt;}
.wsd4{word-spacing:-0.770667pt;}
.wsa9{word-spacing:-0.746667pt;}
.ws2f{word-spacing:-0.693333pt;}
.wsb8{word-spacing:-0.680000pt;}
.ws16{word-spacing:-0.640000pt;}
.wsb9{word-spacing:-0.634667pt;}
.wsc9{word-spacing:-0.589333pt;}
.ws11{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.544000pt;}
.ws1e{word-spacing:-0.533333pt;}
.wsd9{word-spacing:-0.498667pt;}
.ws15{word-spacing:-0.480000pt;}
.ws3e{word-spacing:-0.426667pt;}
.wsf3{word-spacing:-0.408000pt;}
.ws41{word-spacing:-0.373333pt;}
.wse7{word-spacing:-0.362667pt;}
.ws54{word-spacing:-0.320000pt;}
.ws92{word-spacing:-0.275088pt;}
.wsd1{word-spacing:-0.272000pt;}
.ws25{word-spacing:-0.266667pt;}
.wsa1{word-spacing:-0.250667pt;}
.wsb0{word-spacing:-0.234667pt;}
.wsae{word-spacing:-0.226667pt;}
.ws8f{word-spacing:-0.220070pt;}
.ws38{word-spacing:-0.213333pt;}
.wsad{word-spacing:-0.181333pt;}
.ws8e{word-spacing:-0.165053pt;}
.ws12{word-spacing:-0.160000pt;}
.wsba{word-spacing:-0.136000pt;}
.ws91{word-spacing:-0.110035pt;}
.wsc{word-spacing:-0.106667pt;}
.wsea{word-spacing:-0.090667pt;}
.ws90{word-spacing:-0.055018pt;}
.ws58{word-spacing:-0.053333pt;}
.wsf4{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.053333pt;}
.ws8d{word-spacing:0.055018pt;}
.wse4{word-spacing:0.090667pt;}
.ws5d{word-spacing:0.106667pt;}
.ws93{word-spacing:0.110035pt;}
.ws7e{word-spacing:0.136000pt;}
.ws51{word-spacing:0.160000pt;}
.ws3b{word-spacing:0.213333pt;}
.ws1a{word-spacing:0.266667pt;}
.ws6b{word-spacing:0.320000pt;}
.ws9a{word-spacing:0.362667pt;}
.ws59{word-spacing:0.373333pt;}
.wsbb{word-spacing:0.408000pt;}
.ws4b{word-spacing:0.426667pt;}
.wse3{word-spacing:0.498667pt;}
.ws6c{word-spacing:0.533333pt;}
.wsd{word-spacing:0.586667pt;}
.wsda{word-spacing:0.589333pt;}
.wsf2{word-spacing:0.634667pt;}
.ws26{word-spacing:0.640000pt;}
.ws5a{word-spacing:0.693333pt;}
.ws10{word-spacing:0.746667pt;}
.wse8{word-spacing:0.770667pt;}
.ws2d{word-spacing:0.800000pt;}
.ws13{word-spacing:0.853333pt;}
.wsc7{word-spacing:0.861333pt;}
.ws35{word-spacing:0.906667pt;}
.ws24{word-spacing:0.960000pt;}
.ws7c{word-spacing:1.013333pt;}
.wsb5{word-spacing:1.042667pt;}
.ws42{word-spacing:1.066667pt;}
.wscd{word-spacing:1.088000pt;}
.ws76{word-spacing:1.120000pt;}
.wsb6{word-spacing:1.133333pt;}
.ws48{word-spacing:1.173333pt;}
.wse6{word-spacing:1.178667pt;}
.wsce{word-spacing:1.224000pt;}
.ws14{word-spacing:1.226667pt;}
.wsd2{word-spacing:1.269333pt;}
.ws57{word-spacing:1.280000pt;}
.wsb{word-spacing:1.333333pt;}
.wsde{word-spacing:1.360000pt;}
.ws5c{word-spacing:1.386667pt;}
.ws28{word-spacing:1.440000pt;}
.wscb{word-spacing:1.450667pt;}
.ws45{word-spacing:1.493333pt;}
.ws94{word-spacing:1.496000pt;}
.ws31{word-spacing:1.546667pt;}
.wsdd{word-spacing:1.586667pt;}
.ws46{word-spacing:1.653333pt;}
.wsca{word-spacing:1.677333pt;}
.ws47{word-spacing:1.706667pt;}
.wscc{word-spacing:1.722667pt;}
.ws20{word-spacing:1.760000pt;}
.wsd0{word-spacing:1.768000pt;}
.ws43{word-spacing:1.813333pt;}
.wsc2{word-spacing:1.858667pt;}
.ws65{word-spacing:1.866667pt;}
.ws34{word-spacing:1.920000pt;}
.ws56{word-spacing:1.973333pt;}
.ws77{word-spacing:2.026667pt;}
.wsc8{word-spacing:2.040000pt;}
.ws27{word-spacing:2.080000pt;}
.wse1{word-spacing:2.085333pt;}
.ws2b{word-spacing:2.133333pt;}
.ws6f{word-spacing:2.176000pt;}
.ws7b{word-spacing:2.186667pt;}
.wsd5{word-spacing:2.221333pt;}
.wsa5{word-spacing:2.240000pt;}
.wsbd{word-spacing:2.266667pt;}
.ws53{word-spacing:2.293333pt;}
.wscf{word-spacing:2.312000pt;}
.ws52{word-spacing:2.346667pt;}
.wsdc{word-spacing:2.357333pt;}
.ws55{word-spacing:2.400000pt;}
.ws7d{word-spacing:2.402667pt;}
.wsd3{word-spacing:2.448000pt;}
.ws2c{word-spacing:2.453333pt;}
.wsed{word-spacing:2.493333pt;}
.ws22{word-spacing:2.506667pt;}
.wsd7{word-spacing:2.538667pt;}
.ws32{word-spacing:2.560000pt;}
.ws5e{word-spacing:2.613333pt;}
.wseb{word-spacing:2.629333pt;}
.ws1f{word-spacing:2.666667pt;}
.wsef{word-spacing:2.674667pt;}
.ws73{word-spacing:2.720000pt;}
.ws3c{word-spacing:2.773333pt;}
.wsd6{word-spacing:2.810667pt;}
.ws68{word-spacing:2.826667pt;}
.ws49{word-spacing:2.880000pt;}
.wsc3{word-spacing:2.901333pt;}
.ws66{word-spacing:2.933333pt;}
.wsd8{word-spacing:2.946667pt;}
.ws44{word-spacing:2.986667pt;}
.ws6a{word-spacing:3.040000pt;}
.ws6d{word-spacing:3.093333pt;}
.wse5{word-spacing:3.128000pt;}
.ws21{word-spacing:3.146667pt;}
.ws39{word-spacing:3.200000pt;}
.wsdb{word-spacing:3.218667pt;}
.ws71{word-spacing:3.264000pt;}
.wsa7{word-spacing:3.306667pt;}
.ws3f{word-spacing:3.360000pt;}
.wsa6{word-spacing:3.413333pt;}
.wsa2{word-spacing:3.520000pt;}
.ws99{word-spacing:3.573333pt;}
.ws4c{word-spacing:3.626667pt;}
.ws4e{word-spacing:3.680000pt;}
.wsa4{word-spacing:3.786667pt;}
.wsac{word-spacing:3.808000pt;}
.ws74{word-spacing:3.840000pt;}
.wsc1{word-spacing:3.853333pt;}
.wse0{word-spacing:3.989333pt;}
.ws5b{word-spacing:4.000000pt;}
.ws6e{word-spacing:4.261333pt;}
.ws4d{word-spacing:4.266667pt;}
.ws72{word-spacing:4.306667pt;}
.ws33{word-spacing:4.426667pt;}
.ws97{word-spacing:4.480000pt;}
.ws69{word-spacing:4.533333pt;}
.wsc4{word-spacing:4.624000pt;}
.ws23{word-spacing:4.853333pt;}
.wsa8{word-spacing:4.960000pt;}
.ws98{word-spacing:5.066667pt;}
.wsec{word-spacing:5.077333pt;}
.ws37{word-spacing:5.120000pt;}
.ws67{word-spacing:5.226667pt;}
.wsa3{word-spacing:5.258667pt;}
.wsbf{word-spacing:5.304000pt;}
.ws29{word-spacing:5.386667pt;}
.ws63{word-spacing:5.706667pt;}
.wsee{word-spacing:5.893333pt;}
.wsc6{word-spacing:6.120000pt;}
.ws79{word-spacing:6.346667pt;}
.ws9b{word-spacing:7.344000pt;}
.ws9f{word-spacing:7.434667pt;}
.ws70{word-spacing:7.480000pt;}
.wsbe{word-spacing:7.888000pt;}
.ws9e{word-spacing:8.069333pt;}
.wsc5{word-spacing:8.613333pt;}
.ws9d{word-spacing:8.930667pt;}
.wsf0{word-spacing:10.653333pt;}
.wsf1{word-spacing:12.829333pt;}
.ws9c{word-spacing:16.320000pt;}
.ws19{word-spacing:19.072000pt;}
.ws17{word-spacing:64.237333pt;}
.ws96{word-spacing:176.981324pt;}
._c{margin-left:-2630.557249pt;}
._19{margin-left:-43.066667pt;}
._7{margin-left:-21.533333pt;}
._4{margin-left:-14.733333pt;}
._18{margin-left:-12.101333pt;}
._12{margin-left:-11.088000pt;}
._14{margin-left:-8.469333pt;}
._9{margin-left:-7.276800pt;}
._15{margin-left:-5.813333pt;}
._3{margin-left:-4.028800pt;}
._1{margin-left:-2.739200pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.356800pt;}
._a{width:2.947200pt;}
._b{width:4.029867pt;}
._13{width:5.840000pt;}
._23{width:7.661333pt;}
._10{width:10.612800pt;}
._e{width:12.324267pt;}
._16{width:13.872000pt;}
._5{width:16.320000pt;}
._11{width:18.245333pt;}
._1a{width:26.661333pt;}
._17{width:27.632000pt;}
._f{width:29.333333pt;}
._d{width:32.000000pt;}
._6{width:48.552000pt;}
._24{width:64.872000pt;}
._26{width:98.917333pt;}
._1e{width:132.112640pt;}
._1c{width:133.492973pt;}
._1f{width:182.149319pt;}
._20{width:185.096000pt;}
._1b{width:186.509659pt;}
._29{width:188.314658pt;}
._28{width:192.757327pt;}
._27{width:196.383990pt;}
._1d{width:208.527582pt;}
._22{width:284.647991pt;}
._21{width:329.165319pt;}
._25{width:388.123813pt;}
._8{width:1372.829333pt;}
.fs7{font-size:31.733332pt;}
.fsa{font-size:36.677333pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fsb{font-size:50.133331pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:55.017598pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y170{bottom:4.217855pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y2a{bottom:100.394933pt;}
.y1bd{bottom:100.582929pt;}
.y64{bottom:100.813639pt;}
.y1b7{bottom:100.844269pt;}
.y12e{bottom:101.537598pt;}
.y15e{bottom:101.542931pt;}
.y121{bottom:101.834930pt;}
.y1ee{bottom:101.986938pt;}
.y211{bottom:102.066938pt;}
.y13f{bottom:102.111064pt;}
.y294{bottom:103.657620pt;}
.y2d6{bottom:104.008954pt;}
.y2e{bottom:105.710133pt;}
.y29{bottom:113.722933pt;}
.y1bc{bottom:113.910929pt;}
.y15d{bottom:114.870931pt;}
.y210{bottom:115.394938pt;}
.y161{bottom:116.659871pt;}
.y11e{bottom:116.696269pt;}
.y1d1{bottom:116.696289pt;}
.y293{bottom:116.985620pt;}
.y252{bottom:117.060916pt;}
.y2d5{bottom:117.336954pt;}
.y63{bottom:117.480306pt;}
.y120{bottom:118.501597pt;}
.y1ed{bottom:118.653605pt;}
.y13e{bottom:118.777730pt;}
.y2d{bottom:122.376800pt;}
.y20f{bottom:128.722938pt;}
.y292{bottom:130.313620pt;}
.y251{bottom:130.388916pt;}
.y2d4{bottom:130.664954pt;}
.y28{bottom:131.584269pt;}
.y160{bottom:133.326538pt;}
.y11d{bottom:133.362935pt;}
.y1d0{bottom:133.362956pt;}
.y62{bottom:134.146973pt;}
.yef{bottom:134.261597pt;}
.y11f{bottom:135.168264pt;}
.y92{bottom:135.320272pt;}
.y13d{bottom:135.444397pt;}
.y2c{bottom:139.043467pt;}
.y20e{bottom:142.050938pt;}
.y291{bottom:143.641620pt;}
.y250{bottom:143.716916pt;}
.y2d3{bottom:143.992954pt;}
.y15f{bottom:149.993205pt;}
.y11c{bottom:150.029602pt;}
.y1cf{bottom:150.029622pt;}
.y61{bottom:150.813639pt;}
.yee{bottom:150.928263pt;}
.y91{bottom:151.986938pt;}
.y13c{bottom:152.111064pt;}
.y27{bottom:153.806928pt;}
.y20d{bottom:155.378938pt;}
.y290{bottom:156.969620pt;}
.y24f{bottom:157.044916pt;}
.y2d2{bottom:157.320954pt;}
.y11b{bottom:166.696269pt;}
.y1ce{bottom:166.696289pt;}
.y26{bottom:167.134928pt;}
.y60{bottom:167.480306pt;}
.yed{bottom:167.594930pt;}
.y90{bottom:168.653605pt;}
.y20c{bottom:168.706938pt;}
.y13b{bottom:168.777730pt;}
.y28f{bottom:170.297620pt;}
.y24e{bottom:170.372916pt;}
.y2d1{bottom:170.648954pt;}
.y2b{bottom:172.376790pt;}
.y20b{bottom:182.034938pt;}
.y11a{bottom:183.362935pt;}
.y1cd{bottom:183.362956pt;}
.y28e{bottom:183.625620pt;}
.y24d{bottom:183.700916pt;}
.y2d0{bottom:183.976954pt;}
.y5f{bottom:184.146973pt;}
.yec{bottom:184.261597pt;}
.y8f{bottom:185.320272pt;}
.y13a{bottom:185.444397pt;}
.y126{bottom:188.090928pt;}
.y129{bottom:188.102261pt;}
.y164{bottom:194.754639pt;}
.y20a{bottom:195.362938pt;}
.y28d{bottom:196.953620pt;}
.y24c{bottom:197.028916pt;}
.y2cf{bottom:197.304954pt;}
.y119{bottom:200.029602pt;}
.y1cc{bottom:200.029622pt;}
.y5e{bottom:200.813639pt;}
.yeb{bottom:200.928263pt;}
.y125{bottom:201.418928pt;}
.y128{bottom:201.430261pt;}
.y173{bottom:201.573324pt;}
.y8e{bottom:201.986938pt;}
.y139{bottom:202.111064pt;}
.y209{bottom:208.690938pt;}
.y25{bottom:209.309733pt;}
.y28c{bottom:210.281620pt;}
.y24b{bottom:210.356916pt;}
.y2ce{bottom:210.632954pt;}
.y124{bottom:214.746928pt;}
.y127{bottom:214.758261pt;}
.y118{bottom:216.696269pt;}
.y1cb{bottom:216.696289pt;}
.y5d{bottom:217.480306pt;}
.yea{bottom:217.594930pt;}
.ybf{bottom:218.653605pt;}
.y208{bottom:222.018938pt;}
.y28b{bottom:223.609620pt;}
.y24a{bottom:223.684916pt;}
.y2cd{bottom:223.960954pt;}
.y24{bottom:225.976400pt;}
.y117{bottom:233.362935pt;}
.y1ca{bottom:233.362956pt;}
.y5c{bottom:234.146973pt;}
.ye9{bottom:234.261597pt;}
.y8d{bottom:235.320272pt;}
.y207{bottom:235.346938pt;}
.y138{bottom:235.444397pt;}
.y28a{bottom:236.937620pt;}
.y249{bottom:237.012916pt;}
.y2cc{bottom:237.288954pt;}
.y206{bottom:248.674938pt;}
.y116{bottom:250.029602pt;}
.y1c9{bottom:250.029622pt;}
.y289{bottom:250.265620pt;}
.y248{bottom:250.340916pt;}
.y2cb{bottom:250.616954pt;}
.y5b{bottom:250.813639pt;}
.ye8{bottom:250.928263pt;}
.ybe{bottom:251.986938pt;}
.y14a{bottom:252.111064pt;}
.y23{bottom:259.309733pt;}
.y205{bottom:262.002938pt;}
.y288{bottom:263.593620pt;}
.y247{bottom:263.668916pt;}
.y2ca{bottom:263.944954pt;}
.y115{bottom:266.696269pt;}
.y1c8{bottom:266.696289pt;}
.y5a{bottom:267.480306pt;}
.ye7{bottom:267.594930pt;}
.y8c{bottom:268.653564pt;}
.ybd{bottom:268.653605pt;}
.y149{bottom:268.777730pt;}
.y204{bottom:275.330938pt;}
.y22{bottom:275.976400pt;}
.y287{bottom:276.921620pt;}
.y246{bottom:276.996916pt;}
.y2c9{bottom:277.272954pt;}
.y114{bottom:283.362935pt;}
.y1c7{bottom:283.362956pt;}
.y59{bottom:284.146973pt;}
.ye6{bottom:284.261597pt;}
.y8b{bottom:285.320231pt;}
.ybc{bottom:285.320272pt;}
.y137{bottom:285.444255pt;}
.y148{bottom:285.444397pt;}
.y203{bottom:288.658938pt;}
.y286{bottom:290.249620pt;}
.y245{bottom:290.324916pt;}
.y2c8{bottom:290.600954pt;}
.y21{bottom:292.643066pt;}
.y113{bottom:300.029602pt;}
.y1c6{bottom:300.029622pt;}
.y58{bottom:300.813639pt;}
.ye5{bottom:300.928263pt;}
.y8a{bottom:301.986898pt;}
.ybb{bottom:301.986938pt;}
.y136{bottom:302.110921pt;}
.y147{bottom:302.111064pt;}
.y285{bottom:303.577620pt;}
.y244{bottom:303.652916pt;}
.y2c7{bottom:303.928954pt;}
.y20{bottom:309.309733pt;}
.y112{bottom:316.696269pt;}
.y1c5{bottom:316.696289pt;}
.y19c{bottom:316.858042pt;}
.y284{bottom:316.905620pt;}
.y243{bottom:316.980916pt;}
.y2c6{bottom:317.256954pt;}
.y57{bottom:317.480306pt;}
.ye4{bottom:317.594930pt;}
.y89{bottom:318.653564pt;}
.yba{bottom:318.653605pt;}
.y135{bottom:318.777588pt;}
.y146{bottom:318.777730pt;}
.y1f{bottom:325.976400pt;}
.y19b{bottom:330.186042pt;}
.y283{bottom:330.233620pt;}
.y242{bottom:330.308916pt;}
.y2c5{bottom:330.584954pt;}
.y202{bottom:331.986938pt;}
.y111{bottom:333.362935pt;}
.y1c4{bottom:333.362956pt;}
.y56{bottom:334.146973pt;}
.ye3{bottom:334.261597pt;}
.y88{bottom:335.320231pt;}
.yb9{bottom:335.320272pt;}
.y134{bottom:335.444255pt;}
.y145{bottom:335.444397pt;}
.y1e{bottom:342.643066pt;}
.y19a{bottom:343.514042pt;}
.y282{bottom:343.561620pt;}
.y241{bottom:343.636916pt;}
.y2c4{bottom:343.912954pt;}
.y1c3{bottom:350.029622pt;}
.y55{bottom:350.813639pt;}
.ye2{bottom:350.928263pt;}
.y87{bottom:351.986898pt;}
.yb8{bottom:351.986938pt;}
.y133{bottom:352.110921pt;}
.y144{bottom:352.111064pt;}
.y199{bottom:356.842042pt;}
.y281{bottom:356.889620pt;}
.y240{bottom:356.964916pt;}
.y2c3{bottom:357.240954pt;}
.y1d{bottom:359.309733pt;}
.y110{bottom:366.696248pt;}
.y1c2{bottom:366.696289pt;}
.y54{bottom:367.480306pt;}
.ye1{bottom:367.594930pt;}
.y86{bottom:368.653564pt;}
.yb7{bottom:368.653605pt;}
.y132{bottom:368.777588pt;}
.y143{bottom:368.777730pt;}
.y280{bottom:370.217620pt;}
.y23f{bottom:370.292916pt;}
.y2c2{bottom:370.568954pt;}
.y1c{bottom:375.976400pt;}
.y1c1{bottom:383.362956pt;}
.y27f{bottom:383.545620pt;}
.y23e{bottom:383.620916pt;}
.y2c1{bottom:383.896954pt;}
.y53{bottom:384.146973pt;}
.ye0{bottom:384.261597pt;}
.y85{bottom:385.320231pt;}
.yb6{bottom:385.320272pt;}
.y131{bottom:385.444255pt;}
.y142{bottom:385.444397pt;}
.y1b{bottom:392.643066pt;}
.y27e{bottom:396.873620pt;}
.y23d{bottom:396.948916pt;}
.y2c0{bottom:397.224954pt;}
.y201{bottom:398.716938pt;}
.y10f{bottom:400.029582pt;}
.y1c0{bottom:400.029622pt;}
.y52{bottom:400.813639pt;}
.ydf{bottom:400.928263pt;}
.y84{bottom:401.986898pt;}
.yb5{bottom:401.986938pt;}
.y130{bottom:402.110921pt;}
.y141{bottom:402.111064pt;}
.y187{bottom:402.111084pt;}
.y1a{bottom:409.309733pt;}
.y1a6{bottom:409.547453pt;}
.y27d{bottom:410.201620pt;}
.y23c{bottom:410.276916pt;}
.y2bf{bottom:410.552954pt;}
.y200{bottom:412.044938pt;}
.y1bf{bottom:416.696289pt;}
.y51{bottom:417.480306pt;}
.yde{bottom:417.594930pt;}
.y83{bottom:418.653564pt;}
.yb4{bottom:418.653605pt;}
.y12f{bottom:418.777588pt;}
.y140{bottom:418.777730pt;}
.y186{bottom:418.777751pt;}
.y27c{bottom:423.529620pt;}
.y23b{bottom:423.604916pt;}
.y2be{bottom:423.880954pt;}
.y1ff{bottom:425.372938pt;}
.y19{bottom:425.976400pt;}
.y1a5{bottom:426.252787pt;}
.y1be{bottom:433.362956pt;}
.y50{bottom:434.146973pt;}
.ydd{bottom:434.261597pt;}
.y1b5{bottom:434.385620pt;}
.y82{bottom:435.320231pt;}
.yb3{bottom:435.320272pt;}
.y15a{bottom:435.444255pt;}
.y185{bottom:435.444417pt;}
.y27b{bottom:436.857620pt;}
.y23a{bottom:436.932916pt;}
.y2bd{bottom:437.208954pt;}
.y1fe{bottom:438.700938pt;}
.y18{bottom:442.643066pt;}
.y1a4{bottom:442.890120pt;}
.y10e{bottom:450.029622pt;}
.y27a{bottom:450.185620pt;}
.y239{bottom:450.260916pt;}
.y2bc{bottom:450.536954pt;}
.y4f{bottom:450.813639pt;}
.ydc{bottom:450.928263pt;}
.y1b4{bottom:451.052287pt;}
.y81{bottom:451.986898pt;}
.yb2{bottom:451.986938pt;}
.y1fd{bottom:452.028938pt;}
.y159{bottom:452.110921pt;}
.y184{bottom:452.111084pt;}
.y1a3{bottom:459.527453pt;}
.y279{bottom:463.513620pt;}
.y238{bottom:463.588916pt;}
.y2bb{bottom:463.864954pt;}
.y1fc{bottom:465.356938pt;}
.y123{bottom:465.934939pt;}
.y10d{bottom:466.696289pt;}
.y4e{bottom:467.480306pt;}
.ydb{bottom:467.594930pt;}
.y1b3{bottom:467.718953pt;}
.y80{bottom:468.653564pt;}
.yb1{bottom:468.653605pt;}
.y158{bottom:468.777588pt;}
.y183{bottom:468.777751pt;}
.y14b{bottom:469.503052pt;}
.y17{bottom:475.981733pt;}
.y278{bottom:476.841620pt;}
.y237{bottom:476.916916pt;}
.y2ba{bottom:477.192954pt;}
.y1fb{bottom:478.684938pt;}
.y122{bottom:479.262939pt;}
.y10c{bottom:483.362956pt;}
.y4d{bottom:484.146973pt;}
.yda{bottom:484.261597pt;}
.y1b2{bottom:484.385620pt;}
.y1a2{bottom:484.494787pt;}
.y7f{bottom:485.320231pt;}
.yb0{bottom:485.320272pt;}
.y157{bottom:485.444255pt;}
.y182{bottom:485.444417pt;}
.y277{bottom:490.169620pt;}
.y236{bottom:490.244916pt;}
.y2b9{bottom:490.520954pt;}
.y1fa{bottom:492.012938pt;}
.y16{bottom:492.643066pt;}
.y10b{bottom:500.029622pt;}
.y4c{bottom:500.813639pt;}
.yd9{bottom:500.928263pt;}
.y1b1{bottom:501.052287pt;}
.y7e{bottom:501.986898pt;}
.yaf{bottom:501.986938pt;}
.y156{bottom:502.110921pt;}
.y181{bottom:502.111084pt;}
.y276{bottom:503.497620pt;}
.y235{bottom:503.572916pt;}
.y2b8{bottom:503.848954pt;}
.y1f9{bottom:505.340938pt;}
.y1a1{bottom:506.198120pt;}
.y10a{bottom:516.696289pt;}
.y275{bottom:516.825620pt;}
.y234{bottom:516.900916pt;}
.y2b7{bottom:517.176954pt;}
.y4b{bottom:517.480306pt;}
.yd8{bottom:517.594930pt;}
.y1b0{bottom:517.718953pt;}
.y7d{bottom:518.653564pt;}
.yae{bottom:518.653605pt;}
.y1f8{bottom:518.668938pt;}
.y155{bottom:518.777588pt;}
.y180{bottom:518.777751pt;}
.y1a0{bottom:528.872405pt;}
.y274{bottom:530.153620pt;}
.y233{bottom:530.228916pt;}
.y2b6{bottom:530.504954pt;}
.y1f7{bottom:531.996938pt;}
.y109{bottom:533.362956pt;}
.y4a{bottom:534.146973pt;}
.yd7{bottom:534.261597pt;}
.y1af{bottom:534.385620pt;}
.y7c{bottom:535.320231pt;}
.yad{bottom:535.320272pt;}
.y1ec{bottom:535.322947pt;}
.y154{bottom:535.444255pt;}
.y17f{bottom:535.444417pt;}
.y19f{bottom:542.200405pt;}
.y15{bottom:542.643066pt;}
.y273{bottom:543.481620pt;}
.y232{bottom:543.556916pt;}
.y2b5{bottom:543.832954pt;}
.y1f6{bottom:545.324938pt;}
.y108{bottom:550.029622pt;}
.y49{bottom:550.813639pt;}
.yd6{bottom:550.928263pt;}
.y1ae{bottom:551.052287pt;}
.y7b{bottom:551.986898pt;}
.yac{bottom:551.986938pt;}
.y1eb{bottom:551.989614pt;}
.y153{bottom:552.110921pt;}
.y17e{bottom:552.111084pt;}
.y19e{bottom:555.528405pt;}
.y272{bottom:556.809620pt;}
.y231{bottom:556.884916pt;}
.y2b4{bottom:557.160954pt;}
.y14{bottom:559.309733pt;}
.y107{bottom:566.696289pt;}
.y48{bottom:567.480306pt;}
.yd5{bottom:567.594930pt;}
.y1ad{bottom:567.718953pt;}
.y7a{bottom:568.653564pt;}
.yab{bottom:568.653605pt;}
.y1ea{bottom:568.656281pt;}
.y152{bottom:568.777588pt;}
.y17d{bottom:568.777751pt;}
.y19d{bottom:568.856405pt;}
.y271{bottom:570.137620pt;}
.y230{bottom:570.212916pt;}
.y2f5{bottom:570.307620pt;}
.y2b3{bottom:570.488954pt;}
.y1f5{bottom:571.992272pt;}
.y106{bottom:583.362956pt;}
.y270{bottom:583.465620pt;}
.y22f{bottom:583.540916pt;}
.y2f4{bottom:583.635620pt;}
.y2b2{bottom:583.816954pt;}
.y47{bottom:584.146973pt;}
.yd4{bottom:584.261597pt;}
.y1ac{bottom:584.385620pt;}
.y79{bottom:585.320231pt;}
.yaa{bottom:585.320272pt;}
.y1e9{bottom:585.322947pt;}
.y1a7{bottom:585.438921pt;}
.y151{bottom:585.444255pt;}
.y17c{bottom:585.444417pt;}
.y13{bottom:592.643066pt;}
.y26f{bottom:596.793620pt;}
.y22e{bottom:596.868916pt;}
.y2f3{bottom:596.963620pt;}
.y2b1{bottom:597.144954pt;}
.y105{bottom:600.029622pt;}
.y46{bottom:600.813639pt;}
.yd3{bottom:600.928263pt;}
.y1ab{bottom:601.052287pt;}
.y1bb{bottom:601.728271pt;}
.y78{bottom:601.986898pt;}
.ya9{bottom:601.986938pt;}
.y1e8{bottom:601.989614pt;}
.y150{bottom:602.110921pt;}
.y17b{bottom:602.111084pt;}
.y12{bottom:609.309733pt;}
.y26e{bottom:610.121620pt;}
.y22d{bottom:610.196916pt;}
.y2f2{bottom:610.291620pt;}
.y2b0{bottom:610.472954pt;}
.y1f4{bottom:611.986938pt;}
.y104{bottom:616.696289pt;}
.y45{bottom:617.480306pt;}
.yd2{bottom:617.594930pt;}
.y1aa{bottom:617.718953pt;}
.y1ba{bottom:618.394938pt;}
.y77{bottom:618.653564pt;}
.ya8{bottom:618.653605pt;}
.y1e7{bottom:618.656281pt;}
.y14f{bottom:618.777588pt;}
.y17a{bottom:618.777751pt;}
.y26d{bottom:623.449620pt;}
.y22c{bottom:623.524916pt;}
.y2f1{bottom:623.619620pt;}
.y2af{bottom:623.800954pt;}
.y11{bottom:625.976400pt;}
.y103{bottom:633.362956pt;}
.y44{bottom:634.146973pt;}
.yd1{bottom:634.261597pt;}
.y1a9{bottom:634.385620pt;}
.y76{bottom:635.320231pt;}
.ya7{bottom:635.320272pt;}
.y1e6{bottom:635.322947pt;}
.y14e{bottom:635.444255pt;}
.y26c{bottom:636.777620pt;}
.y22b{bottom:636.852916pt;}
.y2f0{bottom:636.947620pt;}
.y2ae{bottom:637.128954pt;}
.y1f3{bottom:642.002231pt;}
.y10{bottom:642.643066pt;}
.y102{bottom:650.029622pt;}
.y26b{bottom:650.105620pt;}
.y22a{bottom:650.180916pt;}
.y2ef{bottom:650.275620pt;}
.y2ad{bottom:650.456954pt;}
.y43{bottom:650.813639pt;}
.y1b9{bottom:651.728271pt;}
.y75{bottom:651.986898pt;}
.ya6{bottom:651.986938pt;}
.y1e5{bottom:651.989614pt;}
.y14d{bottom:652.110921pt;}
.y179{bottom:652.111084pt;}
.y1f2{bottom:655.330231pt;}
.yf{bottom:659.309733pt;}
.y26a{bottom:663.433620pt;}
.y229{bottom:663.508916pt;}
.y2ee{bottom:663.603620pt;}
.y2ac{bottom:663.784954pt;}
.y101{bottom:666.696289pt;}
.y42{bottom:667.480306pt;}
.yd0{bottom:667.594930pt;}
.y1a8{bottom:667.718953pt;}
.y1b8{bottom:668.394938pt;}
.y74{bottom:668.653564pt;}
.ya5{bottom:668.653605pt;}
.y1e4{bottom:668.656281pt;}
.y1f1{bottom:668.658231pt;}
.y14c{bottom:668.777588pt;}
.ye{bottom:675.976400pt;}
.y269{bottom:676.761620pt;}
.y228{bottom:676.836916pt;}
.y2ed{bottom:676.931620pt;}
.y2ab{bottom:677.112954pt;}
.y100{bottom:683.362956pt;}
.y41{bottom:684.146973pt;}
.y73{bottom:685.320231pt;}
.ya4{bottom:685.320272pt;}
.y1e3{bottom:685.322947pt;}
.y178{bottom:685.444417pt;}
.y268{bottom:690.089620pt;}
.y227{bottom:690.164916pt;}
.y2ec{bottom:690.259620pt;}
.y2aa{bottom:690.440954pt;}
.yd{bottom:692.643066pt;}
.y1f0{bottom:695.325564pt;}
.yff{bottom:700.029622pt;}
.y40{bottom:700.813639pt;}
.ycf{bottom:700.928304pt;}
.y72{bottom:701.986898pt;}
.ya3{bottom:701.986938pt;}
.y1e2{bottom:701.989614pt;}
.y177{bottom:702.111084pt;}
.y267{bottom:703.417620pt;}
.y226{bottom:703.492916pt;}
.y2eb{bottom:703.587620pt;}
.y2a9{bottom:703.768954pt;}
.y1b6{bottom:706.943034pt;}
.y1ef{bottom:708.653564pt;}
.yc{bottom:709.309733pt;}
.yfe{bottom:716.696289pt;}
.y266{bottom:716.745620pt;}
.y225{bottom:716.820916pt;}
.y2ea{bottom:716.915620pt;}
.y2a8{bottom:717.096954pt;}
.y3f{bottom:717.480306pt;}
.yce{bottom:717.594971pt;}
.y15c{bottom:718.574913pt;}
.y71{bottom:718.653564pt;}
.ya2{bottom:718.653605pt;}
.y1e1{bottom:718.656281pt;}
.y176{bottom:718.777751pt;}
.y172{bottom:722.752566pt;}
.yb{bottom:725.976400pt;}
.y265{bottom:730.073620pt;}
.y224{bottom:730.148916pt;}
.y2e9{bottom:730.243620pt;}
.y2a7{bottom:730.424954pt;}
.y15b{bottom:731.902913pt;}
.yfd{bottom:733.362956pt;}
.y3e{bottom:734.146973pt;}
.ycd{bottom:734.261637pt;}
.y12d{bottom:735.320231pt;}
.ya1{bottom:735.320272pt;}
.y1e0{bottom:735.322947pt;}
.y175{bottom:735.444417pt;}
.y171{bottom:740.613851pt;}
.ya{bottom:742.643066pt;}
.y264{bottom:743.401620pt;}
.y223{bottom:743.476916pt;}
.y2e8{bottom:743.571620pt;}
.y2a6{bottom:743.752954pt;}
.yfc{bottom:750.029622pt;}
.y3d{bottom:750.813639pt;}
.ycc{bottom:750.928304pt;}
.y70{bottom:751.986898pt;}
.ya0{bottom:751.986938pt;}
.y1df{bottom:751.989614pt;}
.y174{bottom:752.111084pt;}
.y163{bottom:752.579997pt;}
.y263{bottom:756.729620pt;}
.y222{bottom:756.804916pt;}
.y2e7{bottom:756.899620pt;}
.y2a5{bottom:757.080954pt;}
.yfb{bottom:766.696289pt;}
.y3c{bottom:767.480306pt;}
.ycb{bottom:767.594971pt;}
.y12c{bottom:768.653564pt;}
.y9f{bottom:768.653605pt;}
.y1de{bottom:768.656281pt;}
.y262{bottom:770.057620pt;}
.y221{bottom:770.132916pt;}
.y2e6{bottom:770.227620pt;}
.y2a4{bottom:770.408954pt;}
.y16f{bottom:773.656060pt;}
.y9{bottom:781.916629pt;}
.yfa{bottom:783.362956pt;}
.y261{bottom:783.385620pt;}
.y220{bottom:783.460916pt;}
.y2e5{bottom:783.555620pt;}
.y2a3{bottom:783.736954pt;}
.y3b{bottom:784.146973pt;}
.yca{bottom:784.261637pt;}
.y6f{bottom:785.320231pt;}
.y9e{bottom:785.320272pt;}
.y1dd{bottom:785.322947pt;}
.y16e{bottom:795.197835pt;}
.y8{bottom:795.244629pt;}
.y192{bottom:795.897639pt;}
.y260{bottom:796.713620pt;}
.y21f{bottom:796.788916pt;}
.y2e4{bottom:796.883620pt;}
.y2a2{bottom:797.064954pt;}
.yf9{bottom:800.029622pt;}
.y3a{bottom:800.813639pt;}
.yc9{bottom:800.928304pt;}
.y12b{bottom:801.986898pt;}
.y9d{bottom:801.986938pt;}
.y1dc{bottom:801.989614pt;}
.y191{bottom:809.225639pt;}
.y25f{bottom:810.041620pt;}
.y21e{bottom:810.116916pt;}
.y2e3{bottom:810.211620pt;}
.y2a1{bottom:810.392954pt;}
.yf8{bottom:816.696289pt;}
.y16d{bottom:817.125895pt;}
.y39{bottom:817.480306pt;}
.yc8{bottom:817.594971pt;}
.y12a{bottom:818.653564pt;}
.y9c{bottom:818.653605pt;}
.y1db{bottom:818.656281pt;}
.y25e{bottom:823.369620pt;}
.y21d{bottom:823.444916pt;}
.y2e2{bottom:823.539620pt;}
.y2a0{bottom:823.720954pt;}
.y7{bottom:833.111328pt;}
.yf7{bottom:833.362956pt;}
.y38{bottom:834.146973pt;}
.yc7{bottom:834.261637pt;}
.y198{bottom:834.689355pt;}
.y16c{bottom:835.253174pt;}
.y6e{bottom:835.320231pt;}
.y9b{bottom:835.320272pt;}
.y1da{bottom:835.322947pt;}
.y25d{bottom:836.697620pt;}
.y21c{bottom:836.772916pt;}
.y2e1{bottom:836.867620pt;}
.y29f{bottom:837.048954pt;}
.y168{bottom:847.532785pt;}
.y25c{bottom:850.025620pt;}
.yf6{bottom:850.029622pt;}
.y21b{bottom:850.100916pt;}
.y2e0{bottom:850.195620pt;}
.y29e{bottom:850.376954pt;}
.y37{bottom:850.813639pt;}
.yc6{bottom:850.928304pt;}
.y197{bottom:851.394688pt;}
.y6d{bottom:851.986898pt;}
.y9a{bottom:851.986938pt;}
.y1d9{bottom:851.989614pt;}
.y16b{bottom:854.940837pt;}
.y167{bottom:863.322835pt;}
.y25b{bottom:863.353620pt;}
.y21a{bottom:863.428916pt;}
.y2df{bottom:863.523620pt;}
.y29d{bottom:863.704954pt;}
.yf5{bottom:866.696289pt;}
.y36{bottom:867.480306pt;}
.yc5{bottom:867.594971pt;}
.y196{bottom:868.032021pt;}
.y6c{bottom:868.653564pt;}
.y99{bottom:868.653605pt;}
.y1d8{bottom:868.656281pt;}
.y18e{bottom:868.657766pt;}
.y6{bottom:872.832682pt;}
.y16a{bottom:874.531169pt;}
.y25a{bottom:876.681620pt;}
.y219{bottom:876.756916pt;}
.y2de{bottom:876.851620pt;}
.y29c{bottom:877.032954pt;}
.yf4{bottom:883.362956pt;}
.y35{bottom:884.146973pt;}
.yc4{bottom:884.261637pt;}
.y6b{bottom:885.320231pt;}
.y98{bottom:885.320272pt;}
.y1d7{bottom:885.322947pt;}
.y18d{bottom:885.324432pt;}
.y259{bottom:890.009620pt;}
.y218{bottom:890.084916pt;}
.y2dd{bottom:890.179620pt;}
.y29b{bottom:890.360954pt;}
.y195{bottom:892.999355pt;}
.y169{bottom:894.215217pt;}
.y5{bottom:896.832682pt;}
.yf3{bottom:900.029622pt;}
.y34{bottom:900.813639pt;}
.yc3{bottom:900.928304pt;}
.y6a{bottom:901.986898pt;}
.y97{bottom:901.986938pt;}
.y1d6{bottom:901.989614pt;}
.y18c{bottom:901.991099pt;}
.y258{bottom:903.337620pt;}
.y217{bottom:903.412916pt;}
.y2dc{bottom:903.507620pt;}
.y29a{bottom:903.688954pt;}
.y194{bottom:906.327355pt;}
.y166{bottom:913.123938pt;}
.y257{bottom:916.665620pt;}
.yf2{bottom:916.696289pt;}
.y216{bottom:916.740916pt;}
.y2db{bottom:916.835620pt;}
.y299{bottom:917.016954pt;}
.y33{bottom:917.480306pt;}
.yc2{bottom:917.594971pt;}
.y69{bottom:918.653564pt;}
.y96{bottom:918.653605pt;}
.y1d5{bottom:918.656281pt;}
.y18b{bottom:918.657766pt;}
.y193{bottom:919.655355pt;}
.y165{bottom:928.817708pt;}
.y256{bottom:929.993620pt;}
.y215{bottom:930.068916pt;}
.y2da{bottom:930.163620pt;}
.y298{bottom:930.344954pt;}
.yf1{bottom:933.362956pt;}
.y32{bottom:934.146973pt;}
.yc1{bottom:934.261637pt;}
.y68{bottom:935.320231pt;}
.y95{bottom:935.320272pt;}
.y1d4{bottom:935.322947pt;}
.y18a{bottom:935.324432pt;}
.y190{bottom:942.324306pt;}
.y255{bottom:943.321620pt;}
.y214{bottom:943.396916pt;}
.y2d9{bottom:943.491620pt;}
.y297{bottom:943.672954pt;}
.y31{bottom:950.813639pt;}
.y67{bottom:951.986898pt;}
.y94{bottom:951.986938pt;}
.y1d3{bottom:951.989614pt;}
.y189{bottom:951.991099pt;}
.y18f{bottom:955.652306pt;}
.y254{bottom:956.649620pt;}
.y213{bottom:956.724916pt;}
.y2d8{bottom:956.819620pt;}
.y296{bottom:957.000954pt;}
.yf0{bottom:966.696289pt;}
.y30{bottom:967.480306pt;}
.yc0{bottom:967.594971pt;}
.y66{bottom:968.653564pt;}
.y93{bottom:968.653605pt;}
.y1d2{bottom:968.656281pt;}
.y188{bottom:968.657766pt;}
.y162{bottom:968.980306pt;}
.y253{bottom:969.977620pt;}
.y212{bottom:970.052916pt;}
.y2d7{bottom:970.147620pt;}
.y295{bottom:970.328954pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y2f{bottom:1002.206543pt;}
.y65{bottom:1002.206706pt;}
.h16{height:25.490746pt;}
.hb{height:29.448532pt;}
.h2{height:30.080000pt;}
.h12{height:37.301932pt;}
.h13{height:38.237231pt;}
.h14{height:38.251689pt;}
.h4{height:39.712000pt;}
.ha{height:42.069333pt;}
.h15{height:43.810733pt;}
.h17{height:46.523731pt;}
.h10{height:47.253333pt;}
.hf{height:47.826667pt;}
.h3{height:48.766452pt;}
.h8{height:49.493333pt;}
.hd{height:52.448000pt;}
.h7{height:52.746667pt;}
.he{height:54.560000pt;}
.h6{height:57.658667pt;}
.h9{height:58.021333pt;}
.hc{height:63.296000pt;}
.h5{height:75.605333pt;}
.h11{height:207.619995pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:657.637329pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x6{left:69.996800pt;}
.x7{left:83.151469pt;}
.x1d{left:84.911469pt;}
.x4{left:86.929867pt;}
.x1e{left:90.709469pt;}
.x17{left:94.179072pt;}
.x18{left:144.199738pt;}
.x16{left:162.211070pt;}
.x10{left:165.329600pt;}
.x11{left:168.355568pt;}
.x12{left:236.962513pt;}
.x19{left:243.491067pt;}
.x15{left:262.987061pt;}
.x13{left:272.148539pt;}
.x14{left:312.985067pt;}
.x1a{left:331.653065pt;}
.xc{left:368.441081pt;}
.xb{left:387.345078pt;}
.xd{left:389.485312pt;}
.x5{left:408.188924pt;}
.x8{left:423.311468pt;}
.x1f{left:430.868138pt;}
.xe{left:476.908276pt;}
.xf{left:480.415648pt;}
.x1c{left:498.409210pt;}
.x1b{left:553.149211pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xa{left:714.902832pt;}
.x9{left:720.285970pt;}
}




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