
    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_672928d405623b4c15a18e75.woff')format("woff");}.ff1{font-family:ff1;line-height:1.124023;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_2117aa67f623a38a7813a3f8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_e04e5fc6ae11a494d54ca3b2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.148926;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_427ee3d7e233b1feff88abfc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.135742;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_f7c0d46ca6c77e26b2003a55.woff')format("woff");}.ff5{font-family:ff5;line-height:1.135742;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_8c7537d9f4baa580ba8e2d5e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.971680;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_d1bb7b600471e331461f61e7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.133789;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_13cad578c6e24d51586a8b83.woff')format("woff");}.ff8{font-family:ff8;line-height:1.124023;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_db1fbece5ca3bcd14f8e7c74.woff')format("woff");}.ff9{font-family:ff9;line-height:0.979980;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_8c7e69042f07c5429102b2ad.woff')format("woff");}.ffa{font-family:ffa;line-height:0.979980;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_c79afe43740a42f8bdec1214.woff')format("woff");}.ffb{font-family:ffb;line-height:1.124023;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_3f58e4046b4ec64013235f60.woff')format("woff");}.ffc{font-family:ffc;line-height:0.979980;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_69e7a7b3962b555433a194a1.woff')format("woff");}.ffd{font-family:ffd;line-height:1.085938;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_dc02c9910e6a97bd4aa0b2f9.woff')format("woff");}.ffe{font-family:ffe;line-height:1.090820;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.145400px;}
.v3{vertical-align:17.820600px;}
.v6{vertical-align:19.800000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:30.600000px;}
.ls42{letter-spacing:-7.194000px;}
.ls3c{letter-spacing:-5.148000px;}
.ls25{letter-spacing:-5.082000px;}
.ls44{letter-spacing:-4.026000px;}
.ls43{letter-spacing:-3.762000px;}
.ls45{letter-spacing:-3.696000px;}
.ls7{letter-spacing:-2.754000px;}
.ls3d{letter-spacing:-2.706000px;}
.ls1e{letter-spacing:-2.508000px;}
.ls17{letter-spacing:-2.496000px;}
.ls3e{letter-spacing:-2.376000px;}
.ls47{letter-spacing:-1.944000px;}
.ls39{letter-spacing:-0.918000px;}
.ls49{letter-spacing:-0.780000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.702000px;}
.ls3a{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.594000px;}
.ls31{letter-spacing:-0.561000px;}
.ls13{letter-spacing:-0.540000px;}
.ls4c{letter-spacing:-0.480000px;}
.ls37{letter-spacing:-0.459000px;}
.ls10{letter-spacing:-0.432000px;}
.ls4f{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.357000px;}
.ls14{letter-spacing:-0.324000px;}
.ls4a{letter-spacing:-0.300000px;}
.ls3{letter-spacing:-0.270000px;}
.ls2a{letter-spacing:-0.255000px;}
.lsa{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.204000px;}
.ls38{letter-spacing:-0.153000px;}
.ls48{letter-spacing:-0.120000px;}
.ls2f{letter-spacing:-0.102000px;}
.ls46{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.060000px;}
.ls30{letter-spacing:-0.051000px;}
.ls2{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.002400px;}
.ls3b{letter-spacing:0.051000px;}
.ls21{letter-spacing:0.064200px;}
.ls2b{letter-spacing:0.102000px;}
.ls4e{letter-spacing:0.105000px;}
.ls5{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.168000px;}
.ls1f{letter-spacing:0.264000px;}
.ls1b{letter-spacing:0.288000px;}
.ls41{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.324000px;}
.ls2d{letter-spacing:0.357000px;}
.ls22{letter-spacing:0.396000px;}
.ls36{letter-spacing:0.408000px;}
.ls23{letter-spacing:0.462000px;}
.ls19{letter-spacing:0.480000px;}
.ls32{letter-spacing:0.510000px;}
.ls3f{letter-spacing:0.528000px;}
.ls35{letter-spacing:0.561000px;}
.lsf{letter-spacing:0.594000px;}
.ls1a{letter-spacing:0.600000px;}
.ls29{letter-spacing:0.612000px;}
.ls6{letter-spacing:0.648000px;}
.ls34{letter-spacing:0.663000px;}
.ls15{letter-spacing:0.702000px;}
.ls28{letter-spacing:0.765000px;}
.ls18{letter-spacing:0.780000px;}
.ls1d{letter-spacing:0.858000px;}
.ls33{letter-spacing:0.918000px;}
.ls40{letter-spacing:0.960000px;}
.ls1{letter-spacing:0.975480px;}
.ls16{letter-spacing:1.296000px;}
.ls27{letter-spacing:1.479000px;}
.ls9{letter-spacing:1.512000px;}
.lsd{letter-spacing:1.566000px;}
.lsc{letter-spacing:1.836000px;}
.ls0{letter-spacing:2.503680px;}
.ls4b{letter-spacing:5.062200px;}
.ls24{letter-spacing:86.088000px;}
.ls2e{letter-spacing:174.318000px;}
.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;}
}
.ws6f{word-spacing:-19.206000px;}
.ws7b{word-spacing:-18.942000px;}
.wsa5{word-spacing:-18.810000px;}
.ws137{word-spacing:-18.072000px;}
.ws1e{word-spacing:-15.336000px;}
.ws1f{word-spacing:-15.012000px;}
.ws1d{word-spacing:-15.000000px;}
.ws14a{word-spacing:-14.520000px;}
.ws149{word-spacing:-14.400000px;}
.ws142{word-spacing:-14.220000px;}
.ws1{word-spacing:-13.500000px;}
.wsbf{word-spacing:-13.266000px;}
.wsaa{word-spacing:-12.750000px;}
.wsce{word-spacing:-12.189000px;}
.ws0{word-spacing:-11.609280px;}
.ws2{word-spacing:-10.746000px;}
.ws141{word-spacing:-10.500000px;}
.wsd6{word-spacing:-9.333000px;}
.ws3{word-spacing:-7.830000px;}
.ws145{word-spacing:-7.680000px;}
.ws20{word-spacing:-7.500000px;}
.ws36{word-spacing:-7.452000px;}
.ws11e{word-spacing:-7.380000px;}
.ws58{word-spacing:-7.260000px;}
.ws133{word-spacing:-7.080000px;}
.ws4{word-spacing:-6.960000px;}
.ws118{word-spacing:-6.900000px;}
.ws12c{word-spacing:-6.780000px;}
.ws26{word-spacing:-6.750000px;}
.ws153{word-spacing:-6.720000px;}
.ws42{word-spacing:-6.696000px;}
.ws48{word-spacing:-6.642000px;}
.ws10e{word-spacing:-6.600000px;}
.ws8f{word-spacing:-6.480000px;}
.wsed{word-spacing:-6.420000px;}
.ws143{word-spacing:-6.408000px;}
.wsbb{word-spacing:-6.375000px;}
.ws13d{word-spacing:-6.300000px;}
.ws7d{word-spacing:-6.120000px;}
.ws86{word-spacing:-6.060000px;}
.ws15b{word-spacing:-5.880000px;}
.ws109{word-spacing:-5.760000px;}
.ws6e{word-spacing:-5.640000px;}
.wse0{word-spacing:-5.610000px;}
.ws13e{word-spacing:-5.580000px;}
.ws2b{word-spacing:-5.562000px;}
.wse3{word-spacing:-5.559000px;}
.wsde{word-spacing:-5.508000px;}
.wsf3{word-spacing:-5.460000px;}
.ws19{word-spacing:-5.424000px;}
.wsea{word-spacing:-5.400000px;}
.wse5{word-spacing:-5.355000px;}
.ws5f{word-spacing:-5.340000px;}
.ws4d{word-spacing:-5.280000px;}
.wsfc{word-spacing:-5.220000px;}
.ws157{word-spacing:-5.160000px;}
.ws11f{word-spacing:-5.100000px;}
.wsc3{word-spacing:-4.998000px;}
.ws119{word-spacing:-4.980000px;}
.ws140{word-spacing:-4.920000px;}
.wsd5{word-spacing:-4.845000px;}
.ws10c{word-spacing:-4.740000px;}
.ws9e{word-spacing:-4.620000px;}
.ws17{word-spacing:-4.608000px;}
.ws156{word-spacing:-4.560000px;}
.ws73{word-spacing:-4.440000px;}
.wsbc{word-spacing:-4.386000px;}
.ws14d{word-spacing:-4.380000px;}
.ws13{word-spacing:-4.374000px;}
.ws129{word-spacing:-4.260000px;}
.ws3b{word-spacing:-4.158000px;}
.wsad{word-spacing:-4.140000px;}
.wsbe{word-spacing:-4.131000px;}
.wsdc{word-spacing:-4.080000px;}
.ws82{word-spacing:-4.020000px;}
.ws5e{word-spacing:-3.960000px;}
.ws110{word-spacing:-3.900000px;}
.wsb{word-spacing:-3.888000px;}
.wsa2{word-spacing:-3.840000px;}
.ws12{word-spacing:-3.672000px;}
.wsfe{word-spacing:-3.660000px;}
.ws7f{word-spacing:-3.648000px;}
.ws101{word-spacing:-3.552000px;}
.ws5c{word-spacing:-3.540000px;}
.wse1{word-spacing:-3.519000px;}
.ws7a{word-spacing:-3.480000px;}
.ws68{word-spacing:-3.420000px;}
.wse7{word-spacing:-3.417000px;}
.ws11a{word-spacing:-3.360000px;}
.ws3a{word-spacing:-3.348000px;}
.wsa4{word-spacing:-3.312000px;}
.wsd0{word-spacing:-3.213000px;}
.ws59{word-spacing:-3.180000px;}
.ws80{word-spacing:-3.168000px;}
.wsaf{word-spacing:-3.111000px;}
.wscf{word-spacing:-3.060000px;}
.wsff{word-spacing:-2.940000px;}
.ws35{word-spacing:-2.916000px;}
.ws104{word-spacing:-2.880000px;}
.ws49{word-spacing:-2.862000px;}
.ws14c{word-spacing:-2.820000px;}
.ws60{word-spacing:-2.760000px;}
.wsd8{word-spacing:-2.754000px;}
.ws7c{word-spacing:-2.700000px;}
.ws88{word-spacing:-2.640000px;}
.ws102{word-spacing:-2.592000px;}
.ws12e{word-spacing:-2.580000px;}
.ws130{word-spacing:-2.520000px;}
.ws4e{word-spacing:-2.448000px;}
.ws50{word-spacing:-2.400000px;}
.ws120{word-spacing:-2.340000px;}
.ws146{word-spacing:-2.280000px;}
.wsf6{word-spacing:-2.220000px;}
.ws8b{word-spacing:-2.160000px;}
.ws75{word-spacing:-2.100000px;}
.ws78{word-spacing:-2.040000px;}
.ws72{word-spacing:-2.016000px;}
.wsb5{word-spacing:-1.989000px;}
.ws13c{word-spacing:-1.980000px;}
.wsec{word-spacing:-1.920000px;}
.ws79{word-spacing:-1.860000px;}
.ws27{word-spacing:-1.836000px;}
.ws4f{word-spacing:-1.824000px;}
.ws123{word-spacing:-1.800000px;}
.wsd{word-spacing:-1.674000px;}
.wsf8{word-spacing:-1.656000px;}
.wscb{word-spacing:-1.632000px;}
.ws85{word-spacing:-1.620000px;}
.ws89{word-spacing:-1.500000px;}
.wsb1{word-spacing:-1.479000px;}
.ws29{word-spacing:-1.458000px;}
.wse{word-spacing:-1.404000px;}
.ws3c{word-spacing:-1.350000px;}
.wsc6{word-spacing:-1.326000px;}
.ws10d{word-spacing:-1.320000px;}
.wseb{word-spacing:-1.260000px;}
.ws14b{word-spacing:-1.200000px;}
.wsb9{word-spacing:-1.173000px;}
.ws9f{word-spacing:-1.140000px;}
.ws159{word-spacing:-1.080000px;}
.ws99{word-spacing:-1.020000px;}
.wsca{word-spacing:-0.969000px;}
.ws51{word-spacing:-0.960000px;}
.ws4b{word-spacing:-0.918000px;}
.ws107{word-spacing:-0.900000px;}
.ws10{word-spacing:-0.864000px;}
.ws132{word-spacing:-0.840000px;}
.ws5d{word-spacing:-0.780000px;}
.ws9a{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.702000px;}
.ws52{word-spacing:-0.660000px;}
.ws9{word-spacing:-0.648000px;}
.ws55{word-spacing:-0.600000px;}
.ws9b{word-spacing:-0.540000px;}
.ws10b{word-spacing:-0.528000px;}
.ws18{word-spacing:-0.480000px;}
.wsb4{word-spacing:-0.459000px;}
.ws61{word-spacing:-0.420000px;}
.wsb3{word-spacing:-0.408000px;}
.wsa3{word-spacing:-0.396000px;}
.ws77{word-spacing:-0.360000px;}
.wsc8{word-spacing:-0.357000px;}
.wsef{word-spacing:-0.300000px;}
.ws57{word-spacing:-0.288000px;}
.ws71{word-spacing:-0.264000px;}
.ws13f{word-spacing:-0.180000px;}
.ws10f{word-spacing:-0.120000px;}
.ws5a{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws121{word-spacing:0.060000px;}
.ws135{word-spacing:0.072000px;}
.wsd2{word-spacing:0.102000px;}
.ws158{word-spacing:0.120000px;}
.wsd4{word-spacing:0.153000px;}
.ws98{word-spacing:0.180000px;}
.ws2a{word-spacing:0.216000px;}
.wsee{word-spacing:0.240000px;}
.ws41{word-spacing:0.270000px;}
.ws90{word-spacing:0.288000px;}
.ws148{word-spacing:0.300000px;}
.ws14{word-spacing:0.324000px;}
.ws8e{word-spacing:0.360000px;}
.ws6c{word-spacing:0.420000px;}
.ws25{word-spacing:0.432000px;}
.ws136{word-spacing:0.480000px;}
.ws3e{word-spacing:0.486000px;}
.ws67{word-spacing:0.600000px;}
.ws64{word-spacing:0.660000px;}
.ws155{word-spacing:0.720000px;}
.ws3f{word-spacing:0.756000px;}
.ws13a{word-spacing:0.780000px;}
.ws69{word-spacing:0.840000px;}
.ws12a{word-spacing:0.900000px;}
.ws2c{word-spacing:0.918000px;}
.ws95{word-spacing:0.960000px;}
.wsbd{word-spacing:1.020000px;}
.wsa{word-spacing:1.026000px;}
.ws126{word-spacing:1.080000px;}
.ws16{word-spacing:1.134000px;}
.ws74{word-spacing:1.140000px;}
.wsfa{word-spacing:1.200000px;}
.ws92{word-spacing:1.260000px;}
.wsc9{word-spacing:1.275000px;}
.ws12f{word-spacing:1.320000px;}
.ws83{word-spacing:1.380000px;}
.ws56{word-spacing:1.440000px;}
.ws108{word-spacing:1.500000px;}
.ws97{word-spacing:1.560000px;}
.ws31{word-spacing:1.620000px;}
.ws7e{word-spacing:1.680000px;}
.wsf{word-spacing:1.728000px;}
.ws103{word-spacing:1.740000px;}
.wsa7{word-spacing:1.800000px;}
.wsc7{word-spacing:1.836000px;}
.wsa8{word-spacing:1.920000px;}
.ws63{word-spacing:1.980000px;}
.ws62{word-spacing:2.040000px;}
.ws11{word-spacing:2.052000px;}
.wsa0{word-spacing:2.100000px;}
.wsc2{word-spacing:2.142000px;}
.ws9c{word-spacing:2.160000px;}
.wsda{word-spacing:2.193000px;}
.ws1b{word-spacing:2.208000px;}
.ws76{word-spacing:2.220000px;}
.wsb7{word-spacing:2.244000px;}
.wsf9{word-spacing:2.280000px;}
.ws93{word-spacing:2.340000px;}
.ws10a{word-spacing:2.376000px;}
.wsf5{word-spacing:2.400000px;}
.wsb6{word-spacing:2.448000px;}
.ws94{word-spacing:2.460000px;}
.ws70{word-spacing:2.508000px;}
.wsfb{word-spacing:2.520000px;}
.ws8a{word-spacing:2.580000px;}
.wsd7{word-spacing:2.601000px;}
.ws12b{word-spacing:2.640000px;}
.ws2e{word-spacing:2.700000px;}
.ws106{word-spacing:2.706000px;}
.ws30{word-spacing:2.754000px;}
.ws53{word-spacing:2.760000px;}
.ws105{word-spacing:2.820000px;}
.ws116{word-spacing:2.880000px;}
.ws2d{word-spacing:2.970000px;}
.ws151{word-spacing:3.060000px;}
.ws111{word-spacing:3.120000px;}
.wsf1{word-spacing:3.180000px;}
.ws43{word-spacing:3.240000px;}
.ws81{word-spacing:3.264000px;}
.ws6a{word-spacing:3.300000px;}
.ws54{word-spacing:3.360000px;}
.ws66{word-spacing:3.420000px;}
.ws96{word-spacing:3.540000px;}
.ws3d{word-spacing:3.672000px;}
.ws134{word-spacing:3.696000px;}
.ws12d{word-spacing:3.720000px;}
.ws115{word-spacing:3.762000px;}
.ws6b{word-spacing:3.780000px;}
.wsf4{word-spacing:3.840000px;}
.ws11b{word-spacing:3.900000px;}
.ws1a{word-spacing:3.984000px;}
.ws113{word-spacing:4.020000px;}
.ws131{word-spacing:4.026000px;}
.ws33{word-spacing:4.050000px;}
.ws8d{word-spacing:4.080000px;}
.wsab{word-spacing:4.140000px;}
.wse9{word-spacing:4.200000px;}
.wsba{word-spacing:4.233000px;}
.ws124{word-spacing:4.260000px;}
.ws147{word-spacing:4.380000px;}
.wse6{word-spacing:4.386000px;}
.ws152{word-spacing:4.440000px;}
.ws138{word-spacing:4.560000px;}
.ws5b{word-spacing:4.620000px;}
.ws87{word-spacing:4.800000px;}
.ws6d{word-spacing:4.860000px;}
.wsc{word-spacing:4.914000px;}
.ws40{word-spacing:5.022000px;}
.ws14e{word-spacing:5.040000px;}
.ws23{word-spacing:5.076000px;}
.wsae{word-spacing:5.082000px;}
.wsf0{word-spacing:5.100000px;}
.wsf2{word-spacing:5.148000px;}
.wsa6{word-spacing:5.280000px;}
.ws114{word-spacing:5.340000px;}
.ws46{word-spacing:5.346000px;}
.ws9d{word-spacing:5.400000px;}
.wsd3{word-spacing:5.406000px;}
.ws22{word-spacing:5.454000px;}
.ws14f{word-spacing:5.460000px;}
.ws117{word-spacing:5.580000px;}
.wsa1{word-spacing:5.700000px;}
.ws122{word-spacing:5.760000px;}
.ws11c{word-spacing:5.880000px;}
.ws139{word-spacing:6.240000px;}
.ws13b{word-spacing:6.300000px;}
.ws125{word-spacing:6.360000px;}
.ws24{word-spacing:6.372000px;}
.ws84{word-spacing:6.420000px;}
.ws37{word-spacing:6.534000px;}
.wsf7{word-spacing:6.600000px;}
.ws11d{word-spacing:6.660000px;}
.wsac{word-spacing:6.720000px;}
.ws8c{word-spacing:6.780000px;}
.wse8{word-spacing:6.960000px;}
.ws32{word-spacing:6.966000px;}
.ws34{word-spacing:7.128000px;}
.ws112{word-spacing:7.194000px;}
.ws100{word-spacing:7.260000px;}
.ws38{word-spacing:7.776000px;}
.ws144{word-spacing:7.800000px;}
.wsdd{word-spacing:7.956000px;}
.wsb0{word-spacing:8.058000px;}
.ws128{word-spacing:8.100000px;}
.ws28{word-spacing:8.154000px;}
.ws15a{word-spacing:8.160000px;}
.ws65{word-spacing:8.400000px;}
.ws4a{word-spacing:8.478000px;}
.wsc4{word-spacing:8.568000px;}
.ws39{word-spacing:8.586000px;}
.wsc5{word-spacing:8.619000px;}
.ws7{word-spacing:8.640000px;}
.ws91{word-spacing:8.700000px;}
.ws8{word-spacing:8.784000px;}
.ws4c{word-spacing:8.964000px;}
.ws127{word-spacing:9.180000px;}
.wse2{word-spacing:9.333000px;}
.ws2f{word-spacing:9.342000px;}
.ws44{word-spacing:9.720000px;}
.ws45{word-spacing:10.044000px;}
.wse4{word-spacing:10.149000px;}
.wsd1{word-spacing:10.761000px;}
.wscd{word-spacing:10.914000px;}
.wsdf{word-spacing:11.118000px;}
.wscc{word-spacing:11.577000px;}
.ws154{word-spacing:11.640000px;}
.wsb8{word-spacing:11.832000px;}
.wsfd{word-spacing:12.000000px;}
.wsd9{word-spacing:12.138000px;}
.wsb2{word-spacing:12.750000px;}
.ws47{word-spacing:12.798000px;}
.ws21{word-spacing:13.500000px;}
.ws150{word-spacing:14.220000px;}
.ws6{word-spacing:20.412000px;}
.wsa9{word-spacing:75.061800px;}
.wsc1{word-spacing:124.572600px;}
.wsdb{word-spacing:147.084000px;}
.wsc0{word-spacing:147.196200px;}
.ws1c{word-spacing:1748.018400px;}
._1d{margin-left:-8.505600px;}
._5{margin-left:-7.423800px;}
._6{margin-left:-6.280200px;}
._4{margin-left:-4.410480px;}
._3{margin-left:-3.349200px;}
._8{margin-left:-2.347200px;}
._1{margin-left:-1.268400px;}
._0{width:1.554000px;}
._2{width:2.763600px;}
._7{width:4.735800px;}
._9{width:6.210000px;}
._a{width:7.614000px;}
._f{width:9.236100px;}
._17{width:10.786500px;}
._1c{width:27.480000px;}
._1b{width:28.620000px;}
._b{width:30.000000px;}
._18{width:53.958000px;}
._c{width:90.586200px;}
._19{width:108.018000px;}
._11{width:134.498400px;}
._16{width:139.206000px;}
._1a{width:162.078000px;}
._d{width:171.156000px;}
._15{width:176.511000px;}
._12{width:223.573800px;}
._10{width:283.662000px;}
._e{width:353.610000px;}
._13{width:457.623000px;}
._14{width:782.537400px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(145,143,143);}
.fs6{font-size:27.840000px;}
.fs5{font-size:31.320000px;}
.fsa{font-size:34.800000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:84.564450px;}
.y20{bottom:85.639800px;}
.y1f{bottom:136.063050px;}
.ya6{bottom:136.063200px;}
.yf8{bottom:136.148550px;}
.y1c0{bottom:136.239300px;}
.ye8{bottom:136.241850px;}
.y8b{bottom:136.327050px;}
.ye4{bottom:136.358250px;}
.y1e0{bottom:136.375350px;}
.y187{bottom:136.432050px;}
.y24f{bottom:136.445550px;}
.y268{bottom:136.892550px;}
.y21b{bottom:137.541600px;}
.yb5{bottom:140.320050px;}
.y141{bottom:142.062600px;}
.y156{bottom:142.224450px;}
.y1cf{bottom:142.855500px;}
.y165{bottom:147.969000px;}
.y1a3{bottom:150.308550px;}
.y1e{bottom:150.463050px;}
.ya5{bottom:150.463200px;}
.y29e{bottom:150.639750px;}
.y161{bottom:151.544700px;}
.y14e{bottom:151.548600px;}
.y15d{bottom:151.557450px;}
.y14a{bottom:151.561350px;}
.y159{bottom:151.570200px;}
.y146{bottom:151.574100px;}
.y152{bottom:151.582950px;}
.y142{bottom:151.586850px;}
.y1fe{bottom:151.757250px;}
.y237{bottom:152.848350px;}
.y1bf{bottom:154.239300px;}
.y8a{bottom:154.327050px;}
.ye3{bottom:154.358250px;}
.y1df{bottom:154.375350px;}
.y186{bottom:154.432050px;}
.y24e{bottom:154.445550px;}
.y282{bottom:154.466550px;}
.y267{bottom:154.892550px;}
.y21a{bottom:155.541600px;}
.y1d6{bottom:155.715900px;}
.yb4{bottom:158.320050px;}
.y1ce{bottom:160.855500px;}
.yf7{bottom:161.168550px;}
.y227{bottom:161.496450px;}
.y1d{bottom:164.863050px;}
.ya4{bottom:164.863200px;}
.y1a2{bottom:168.308550px;}
.y29d{bottom:168.639750px;}
.y1fd{bottom:169.757250px;}
.y236{bottom:170.848350px;}
.y1be{bottom:172.239300px;}
.y89{bottom:172.327050px;}
.ye2{bottom:172.358250px;}
.y1de{bottom:172.375350px;}
.y185{bottom:172.432050px;}
.y281{bottom:172.466550px;}
.y219{bottom:173.541600px;}
.yb3{bottom:176.320050px;}
.y1cd{bottom:178.855500px;}
.y1c{bottom:179.263050px;}
.ya3{bottom:179.263200px;}
.y226{bottom:179.496450px;}
.yf6{bottom:186.188550px;}
.y29c{bottom:186.639750px;}
.y1fc{bottom:187.757250px;}
.y24d{bottom:188.600550px;}
.y235{bottom:188.848350px;}
.y169{bottom:189.253500px;}
.y266{bottom:189.475350px;}
.y88{bottom:190.327050px;}
.ye1{bottom:190.358250px;}
.y1dd{bottom:190.375350px;}
.y184{bottom:190.432050px;}
.y280{bottom:190.466550px;}
.y218{bottom:191.541600px;}
.y9b{bottom:192.622500px;}
.y157{bottom:194.269950px;}
.yb2{bottom:194.320050px;}
.y1a1{bottom:194.813550px;}
.y1cc{bottom:196.855500px;}
.y225{bottom:197.496450px;}
.y1b{bottom:197.623050px;}
.ya2{bottom:197.623200px;}
.y140{bottom:201.072600px;}
.y158{bottom:202.939950px;}
.y1fb{bottom:205.757250px;}
.y24c{bottom:206.600550px;}
.y265{bottom:207.475350px;}
.y87{bottom:208.327050px;}
.ye0{bottom:208.358250px;}
.y1dc{bottom:208.375350px;}
.y183{bottom:208.432050px;}
.y27f{bottom:208.466550px;}
.y217{bottom:209.541600px;}
.y9a{bottom:210.622500px;}
.yb1{bottom:212.320050px;}
.y1a0{bottom:212.813550px;}
.y1cb{bottom:214.855500px;}
.y224{bottom:215.496450px;}
.y1bd{bottom:217.451850px;}
.yf5{bottom:221.198550px;}
.y29b{bottom:221.647650px;}
.y1a{bottom:222.634800px;}
.y1fa{bottom:223.757250px;}
.y234{bottom:223.858350px;}
.y264{bottom:225.475350px;}
.y86{bottom:226.327050px;}
.y1db{bottom:226.375350px;}
.y182{bottom:226.432050px;}
.y216{bottom:227.541600px;}
.y99{bottom:228.622500px;}
.yb0{bottom:230.320050px;}
.y6a{bottom:231.784650px;}
.y1ca{bottom:232.855500px;}
.y223{bottom:233.496450px;}
.yd1{bottom:235.705350px;}
.y19f{bottom:239.318550px;}
.y29a{bottom:239.647650px;}
.y24b{bottom:240.755550px;}
.y233{bottom:241.858350px;}
.y27e{bottom:243.049200px;}
.y45{bottom:243.286650px;}
.ydf{bottom:243.368250px;}
.y85{bottom:244.327050px;}
.y215{bottom:245.541600px;}
.y98{bottom:246.622500px;}
.y13f{bottom:247.266600px;}
.y19{bottom:247.646550px;}
.y69{bottom:247.984650px;}
.yaf{bottom:248.320050px;}
.y1c9{bottom:250.855500px;}
.yd0{bottom:253.705350px;}
.y19e{bottom:257.318550px;}
.y299{bottom:257.647650px;}
.y24a{bottom:258.755550px;}
.y1f9{bottom:258.767250px;}
.y44{bottom:259.486650px;}
.y232{bottom:259.858350px;}
.y263{bottom:260.058000px;}
.yde{bottom:261.368250px;}
.y181{bottom:261.442050px;}
.y84{bottom:262.327050px;}
.y68{bottom:264.184650px;}
.y97{bottom:264.622500px;}
.y13e{bottom:265.266600px;}
.yae{bottom:266.320050px;}
.y1c8{bottom:268.855500px;}
.yf4{bottom:268.962300px;}
.y162{bottom:269.571450px;}
.y14f{bottom:269.575350px;}
.y15e{bottom:269.584200px;}
.y14b{bottom:269.588100px;}
.y15a{bottom:269.596950px;}
.y147{bottom:269.600850px;}
.y153{bottom:269.609700px;}
.y143{bottom:269.613600px;}
.y166{bottom:269.616750px;}
.y1da{bottom:269.887200px;}
.ycf{bottom:271.705350px;}
.y18{bottom:272.658300px;}
.y177{bottom:274.315350px;}
.y43{bottom:275.686650px;}
.y249{bottom:276.755550px;}
.y1f8{bottom:276.767250px;}
.y27d{bottom:277.631850px;}
.y231{bottom:277.858350px;}
.y262{bottom:278.058000px;}
.ydd{bottom:279.368250px;}
.y83{bottom:280.327050px;}
.y214{bottom:280.551600px;}
.y222{bottom:281.260200px;}
.y117{bottom:281.476350px;}
.y10a{bottom:281.870700px;}
.y96{bottom:282.622500px;}
.y13d{bottom:283.266600px;}
.y19d{bottom:283.823550px;}
.yad{bottom:284.320050px;}
.y180{bottom:285.262050px;}
.y1c7{bottom:286.855500px;}
.yce{bottom:289.705350px;}
.y176{bottom:292.315350px;}
.y298{bottom:292.655550px;}
.y1d9{bottom:292.791150px;}
.y67{bottom:293.142150px;}
.y1f7{bottom:294.767250px;}
.y27c{bottom:295.631850px;}
.y261{bottom:296.058000px;}
.y115{bottom:296.776350px;}
.ydc{bottom:297.368250px;}
.y17{bottom:297.670200px;}
.y82{bottom:298.327050px;}
.y213{bottom:298.551600px;}
.y95{bottom:300.622500px;}
.y19c{bottom:301.823550px;}
.y17f{bottom:303.262050px;}
.y42{bottom:304.644150px;}
.y1c6{bottom:304.855500px;}
.ycd{bottom:307.705350px;}
.y66{bottom:309.342150px;}
.y175{bottom:310.315350px;}
.y297{bottom:310.655550px;}
.y248{bottom:310.910550px;}
.y109{bottom:310.978950px;}
.y116{bottom:312.076350px;}
.y1f6{bottom:312.767250px;}
.y230{bottom:312.868350px;}
.ydb{bottom:315.368250px;}
.y81{bottom:316.327050px;}
.y212{bottom:316.551600px;}
.y94{bottom:318.622500px;}
.yac{bottom:319.330050px;}
.y19b{bottom:319.823550px;}
.y41{bottom:320.844150px;}
.y10b{bottom:324.544950px;}
.y65{bottom:325.542150px;}
.y17e{bottom:327.082050px;}
.y174{bottom:328.315350px;}
.y296{bottom:328.655550px;}
.y247{bottom:328.910550px;}
.y27b{bottom:330.214500px;}
.y260{bottom:330.640650px;}
.y1f5{bottom:330.767250px;}
.y22f{bottom:330.868350px;}
.y13c{bottom:331.030350px;}
.yda{bottom:333.368250px;}
.y113{bottom:333.368850px;}
.y211{bottom:334.551600px;}
.y93{bottom:336.622500px;}
.y40{bottom:337.044150px;}
.yab{bottom:337.330050px;}
.y163{bottom:337.605450px;}
.y150{bottom:337.609350px;}
.y15f{bottom:337.618200px;}
.y14c{bottom:337.622100px;}
.y15b{bottom:337.630950px;}
.y148{bottom:337.634850px;}
.y154{bottom:337.643700px;}
.y144{bottom:337.647600px;}
.y167{bottom:337.650750px;}
.y19a{bottom:337.823550px;}
.y16{bottom:339.594750px;}
.y112{bottom:341.018850px;}
.y64{bottom:341.742150px;}
.ycc{bottom:342.715350px;}
.y17d{bottom:345.082050px;}
.y173{bottom:346.315350px;}
.y246{bottom:346.910550px;}
.y27a{bottom:348.214500px;}
.y25f{bottom:348.640650px;}
.y114{bottom:348.668850px;}
.y1f4{bottom:348.767250px;}
.y22e{bottom:348.868350px;}
.y80{bottom:351.337050px;}
.yd9{bottom:351.368250px;}
.y210{bottom:352.551600px;}
.y1c5{bottom:352.619250px;}
.y3f{bottom:353.244150px;}
.y92{bottom:354.622500px;}
.yaa{bottom:355.330050px;}
.y15{bottom:355.794750px;}
.y63{bottom:357.942150px;}
.y135{bottom:358.185750px;}
.ycb{bottom:360.715350px;}
.y295{bottom:363.663450px;}
.y172{bottom:364.315350px;}
.ya1{bottom:365.950500px;}
.y279{bottom:366.214500px;}
.y25e{bottom:366.640650px;}
.y1f3{bottom:366.767250px;}
.y22d{bottom:366.868350px;}
.y17c{bottom:368.902050px;}
.y7f{bottom:369.337050px;}
.yd8{bottom:369.368250px;}
.y3e{bottom:369.444150px;}
.y110{bottom:369.961350px;}
.y20f{bottom:370.551600px;}
.y14{bottom:371.994750px;}
.y91{bottom:372.622500px;}
.y199{bottom:372.833550px;}
.ya9{bottom:373.330050px;}
.y13b{bottom:373.485750px;}
.y62{bottom:374.142150px;}
.y10f{bottom:377.611350px;}
.yca{bottom:378.715350px;}
.y245{bottom:381.068100px;}
.y294{bottom:381.663450px;}
.y171{bottom:382.315350px;}
.ya0{bottom:383.950500px;}
.y278{bottom:384.214500px;}
.y25d{bottom:384.640650px;}
.y1f2{bottom:384.767250px;}
.y22c{bottom:384.868350px;}
.y111{bottom:385.261350px;}
.y3d{bottom:385.644150px;}
.y17b{bottom:386.902050px;}
.y7e{bottom:387.337050px;}
.yd7{bottom:387.368250px;}
.y13{bottom:388.194750px;}
.y20e{bottom:388.551600px;}
.y13a{bottom:388.785750px;}
.y61{bottom:390.342150px;}
.y90{bottom:390.622500px;}
.y198{bottom:390.833550px;}
.ya8{bottom:391.330050px;}
.y136{bottom:396.435750px;}
.yc9{bottom:396.715350px;}
.y293{bottom:399.663450px;}
.y170{bottom:400.315350px;}
.y3c{bottom:401.844150px;}
.y9f{bottom:401.950500px;}
.y244{bottom:402.668100px;}
.y1f1{bottom:402.767250px;}
.y139{bottom:404.085750px;}
.y12{bottom:404.394750px;}
.y7d{bottom:405.337050px;}
.yd6{bottom:405.368250px;}
.y60{bottom:406.542150px;}
.y20d{bottom:406.551600px;}
.y10d{bottom:406.553850px;}
.y197{bottom:408.833550px;}
.y17a{bottom:410.722050px;}
.y10c{bottom:414.203850px;}
.yc8{bottom:414.715350px;}
.y292{bottom:417.663450px;}
.y3b{bottom:418.044150px;}
.y16f{bottom:418.315350px;}
.y277{bottom:418.797300px;}
.y25c{bottom:419.223300px;}
.y138{bottom:419.385750px;}
.y22b{bottom:419.868150px;}
.y9e{bottom:419.950500px;}
.y11{bottom:420.594600px;}
.y1f0{bottom:420.767250px;}
.y10e{bottom:421.853850px;}
.y5f{bottom:422.742150px;}
.y7c{bottom:423.337050px;}
.yd5{bottom:423.368250px;}
.y20c{bottom:424.551600px;}
.y196{bottom:426.833550px;}
.yc7{bottom:432.715350px;}
.y3a{bottom:434.244150px;}
.y137{bottom:434.685750px;}
.y291{bottom:435.663450px;}
.y10{bottom:436.794600px;}
.y25b{bottom:437.223300px;}
.y9d{bottom:437.950500px;}
.y8f{bottom:438.386250px;}
.y1ef{bottom:438.767250px;}
.y5e{bottom:438.942150px;}
.ya7{bottom:439.093950px;}
.y7b{bottom:441.337050px;}
.yd4{bottom:441.368250px;}
.y20b{bottom:442.551600px;}
.y108{bottom:443.147700px;}
.y195{bottom:444.833550px;}
.y179{bottom:445.732050px;}
.y39{bottom:450.444150px;}
.yc6{bottom:450.715350px;}
.y8e{bottom:452.786250px;}
.yf{bottom:452.994600px;}
.y16e{bottom:453.323250px;}
.y276{bottom:453.379950px;}
.y243{bottom:454.034400px;}
.y5d{bottom:455.142150px;}
.y134{bottom:456.010200px;}
.y1ee{bottom:456.767250px;}
.y7a{bottom:459.337050px;}
.yd3{bottom:459.368250px;}
.y194{bottom:462.833550px;}
.y133{bottom:463.660200px;}
.y38{bottom:466.644150px;}
.ye{bottom:469.194600px;}
.y290{bottom:470.671200px;}
.y22a{bottom:471.240150px;}
.y5c{bottom:471.342150px;}
.y275{bottom:471.379950px;}
.y25a{bottom:471.806100px;}
.y242{bottom:472.034400px;}
.y1ed{bottom:474.767250px;}
.y79{bottom:477.337050px;}
.y20a{bottom:477.559500px;}
.y1b0{bottom:480.024450px;}
.y193{bottom:480.833550px;}
.y107{bottom:481.244550px;}
.y37{bottom:482.844150px;}
.yd{bottom:485.394600px;}
.y9c{bottom:485.714250px;}
.yc5{bottom:485.723250px;}
.y5b{bottom:487.542150px;}
.y28f{bottom:488.671200px;}
.y274{bottom:489.379950px;}
.y259{bottom:489.806100px;}
.y241{bottom:490.034400px;}
.y131{bottom:492.602700px;}
.y1ec{bottom:492.767250px;}
.y178{bottom:493.495950px;}
.y78{bottom:495.337050px;}
.y192{bottom:498.833550px;}
.y36{bottom:499.044150px;}
.y1af{bottom:499.824450px;}
.y130{bottom:500.252700px;}
.y106{bottom:501.044550px;}
.yc{bottom:501.594600px;}
.y5a{bottom:503.742150px;}
.y16d{bottom:504.680700px;}
.yd2{bottom:507.132150px;}
.yc4{bottom:507.323250px;}
.y273{bottom:507.379950px;}
.y132{bottom:507.902700px;}
.y240{bottom:508.034400px;}
.y221{bottom:508.967250px;}
.y1eb{bottom:510.767250px;}
.y77{bottom:513.337050px;}
.y35{bottom:515.244150px;}
.yb{bottom:517.794600px;}
.y59{bottom:519.942150px;}
.y16c{bottom:522.680700px;}
.y28e{bottom:523.679100px;}
.y258{bottom:524.813850px;}
.y272{bottom:525.379950px;}
.y209{bottom:527.119050px;}
.y1ea{bottom:528.767250px;}
.y12e{bottom:529.195200px;}
.y76{bottom:531.337050px;}
.y34{bottom:531.444150px;}
.y191{bottom:533.841300px;}
.y11a{bottom:533.974050px;}
.ya{bottom:533.994600px;}
.y58{bottom:536.142150px;}
.y12d{bottom:536.845200px;}
.y229{bottom:539.611650px;}
.y16b{bottom:540.680700px;}
.y28d{bottom:541.679100px;}
.y23f{bottom:542.189400px;}
.y12f{bottom:544.495200px;}
.y208{bottom:545.119050px;}
.y1bc{bottom:545.265000px;}
.y119{bottom:547.540050px;}
.y33{bottom:547.644150px;}
.y75{bottom:549.337050px;}
.y9{bottom:550.194600px;}
.y105{bottom:550.580700px;}
.y1ae{bottom:551.827200px;}
.y57{bottom:552.342150px;}
.y16a{bottom:558.680700px;}
.y271{bottom:559.962600px;}
.y23e{bottom:560.189400px;}
.y1e9{bottom:563.775150px;}
.y32{bottom:563.844150px;}
.y12b{bottom:565.787700px;}
.y8{bottom:566.394600px;}
.y74{bottom:567.337050px;}
.y56{bottom:568.542150px;}
.y104{bottom:568.580700px;}
.y1ad{bottom:569.827200px;}
.y12a{bottom:573.437700px;}
.yc3{bottom:575.690700px;}
.y28c{bottom:576.687000px;}
.y270{bottom:577.962600px;}
.y23d{bottom:578.189400px;}
.y220{bottom:578.328900px;}
.y31{bottom:580.044150px;}
.y207{bottom:580.129050px;}
.y12c{bottom:581.087700px;}
.y55{bottom:584.742150px;}
.y190{bottom:585.205050px;}
.y73{bottom:585.337050px;}
.y103{bottom:586.580700px;}
.y1ac{bottom:587.827200px;}
.y164{bottom:588.474450px;}
.y151{bottom:588.478350px;}
.y160{bottom:588.487200px;}
.y14d{bottom:588.491100px;}
.y15c{bottom:588.499950px;}
.y149{bottom:588.503850px;}
.y155{bottom:588.512700px;}
.y145{bottom:588.516600px;}
.y168{bottom:588.519750px;}
.y257{bottom:593.181300px;}
.yc2{bottom:593.690700px;}
.y28b{bottom:594.687000px;}
.y1bb{bottom:594.830700px;}
.y26f{bottom:595.962600px;}
.y23c{bottom:596.189400px;}
.y30{bottom:596.244150px;}
.y21f{bottom:596.328900px;}
.y1d8{bottom:597.465000px;}
.y206{bottom:598.129050px;}
.y54{bottom:600.942150px;}
.y129{bottom:602.380200px;}
.y18f{bottom:603.205050px;}
.y72{bottom:603.337050px;}
.y102{bottom:604.580700px;}
.y1ab{bottom:605.827200px;}
.y256{bottom:611.181300px;}
.yc1{bottom:611.690700px;}
.yf3{bottom:611.837550px;}
.y2f{bottom:612.444150px;}
.y1ba{bottom:612.830700px;}
.y1e8{bottom:613.338900px;}
.y26e{bottom:613.962600px;}
.y23b{bottom:614.189400px;}
.y21e{bottom:614.328900px;}
.y1d5{bottom:615.139050px;}
.y205{bottom:616.129050px;}
.y53{bottom:617.142150px;}
.y1d7{bottom:617.265000px;}
.y128{bottom:617.680200px;}
.y18e{bottom:621.205050px;}
.y71{bottom:621.337050px;}
.y101{bottom:622.580700px;}
.y1aa{bottom:623.827200px;}
.y2e{bottom:628.644150px;}
.y255{bottom:629.181300px;}
.yc0{bottom:629.690700px;}
.y28a{bottom:629.694900px;}
.y1b9{bottom:630.830700px;}
.y1e7{bottom:631.338900px;}
.yf2{bottom:631.637550px;}
.y23a{bottom:632.189400px;}
.y21d{bottom:632.328900px;}
.y52{bottom:633.342150px;}
.y7{bottom:634.610400px;}
.y127{bottom:637.225950px;}
.y100{bottom:640.580700px;}
.y1a9{bottom:641.827200px;}
.y2d{bottom:644.844150px;}
.y254{bottom:647.181300px;}
.ybf{bottom:647.690700px;}
.y289{bottom:647.694900px;}
.y26d{bottom:648.545250px;}
.y1b8{bottom:648.830700px;}
.y1e6{bottom:649.338900px;}
.y51{bottom:649.542150px;}
.y239{bottom:650.189400px;}
.y21c{bottom:650.328900px;}
.y204{bottom:651.139050px;}
.y126{bottom:652.525950px;}
.y6{bottom:656.210400px;}
.y18d{bottom:656.212950px;}
.y70{bottom:656.344950px;}
.yff{bottom:658.580700px;}
.y2c{bottom:661.044150px;}
.y1d4{bottom:664.700700px;}
.y253{bottom:665.181300px;}
.ybe{bottom:665.690700px;}
.y288{bottom:665.694900px;}
.y50{bottom:665.742150px;}
.y26c{bottom:666.545250px;}
.y1b7{bottom:666.830700px;}
.y1e5{bottom:667.338900px;}
.ye7{bottom:667.339050px;}
.y203{bottom:669.139050px;}
.y125{bottom:672.071700px;}
.y1a8{bottom:676.835100px;}
.y2b{bottom:677.244150px;}
.y6f{bottom:677.944950px;}
.yf1{bottom:681.201300px;}
.y4f{bottom:681.942150px;}
.y1c4{bottom:682.546800px;}
.y1d3{bottom:682.700700px;}
.ybd{bottom:683.690700px;}
.y2a1{bottom:683.694900px;}
.y238{bottom:684.346800px;}
.y1b6{bottom:684.830700px;}
.y1e4{bottom:685.338900px;}
.ye6{bottom:687.139050px;}
.y124{bottom:687.371700px;}
.y2a{bottom:693.444150px;}
.yfe{bottom:693.590700px;}
.y4e{bottom:698.142150px;}
.y5{bottom:699.070200px;}
.yf0{bottom:699.201300px;}
.y252{bottom:700.191300px;}
.y1d2{bottom:700.700700px;}
.y287{bottom:700.702800px;}
.y26b{bottom:701.127900px;}
.y2a0{bottom:701.694900px;}
.y1c3{bottom:702.346800px;}
.y123{bottom:702.671700px;}
.y1b5{bottom:702.830700px;}
.y1e3{bottom:703.338900px;}
.y202{bottom:705.139050px;}
.y29{bottom:709.644150px;}
.y11b{bottom:710.308950px;}
.y4d{bottom:714.342150px;}
.yef{bottom:717.201300px;}
.y251{bottom:718.191300px;}
.yfd{bottom:718.610700px;}
.ybc{bottom:718.700700px;}
.y286{bottom:718.702800px;}
.y26a{bottom:719.127900px;}
.y29f{bottom:719.694900px;}
.y1b4{bottom:720.830700px;}
.y1e2{bottom:721.338900px;}
.y1c2{bottom:722.146800px;}
.y122{bottom:722.217450px;}
.y201{bottom:723.139050px;}
.y4{bottom:724.270200px;}
.y18c{bottom:724.610700px;}
.y28{bottom:725.844150px;}
.y1a7{bottom:728.195700px;}
.y4c{bottom:730.542150px;}
.yee{bottom:735.201300px;}
.y1d1{bottom:735.710700px;}
.y250{bottom:736.191300px;}
.ybb{bottom:736.700700px;}
.y285{bottom:736.702800px;}
.y269{bottom:737.127900px;}
.y121{bottom:737.517450px;}
.y1b3{bottom:738.830700px;}
.y200{bottom:741.139050px;}
.y27{bottom:742.044150px;}
.yfc{bottom:743.630700px;}
.y1a6{bottom:746.195700px;}
.y6e{bottom:746.316900px;}
.y4b{bottom:746.742150px;}
.y18b{bottom:748.430700px;}
.yed{bottom:753.201300px;}
.y1d0{bottom:753.710700px;}
.yba{bottom:754.700700px;}
.y284{bottom:754.702800px;}
.y1e1{bottom:756.346800px;}
.y1b2{bottom:756.830700px;}
.y120{bottom:757.063200px;}
.y26{bottom:758.244150px;}
.y4a{bottom:762.942150px;}
.y2{bottom:763.912650px;}
.yfb{bottom:768.650700px;}
.yec{bottom:771.201300px;}
.y1c1{bottom:771.710700px;}
.y18a{bottom:772.250700px;}
.y11f{bottom:772.363200px;}
.yb9{bottom:772.700700px;}
.y283{bottom:772.702800px;}
.y25{bottom:774.444150px;}
.y1ff{bottom:776.146800px;}
.y49{bottom:779.142150px;}
.y1a5{bottom:781.205700px;}
.y6d{bottom:781.326900px;}
.y11e{bottom:787.663200px;}
.yeb{bottom:789.201300px;}
.y1b1{bottom:789.710700px;}
.yb8{bottom:790.700700px;}
.yfa{bottom:793.670700px;}
.y189{bottom:796.070700px;}
.y1a4{bottom:799.205700px;}
.y11d{bottom:802.963200px;}
.y228{bottom:803.645550px;}
.yea{bottom:807.201300px;}
.y24{bottom:807.652050px;}
.ye5{bottom:807.710700px;}
.y48{bottom:812.352150px;}
.y11c{bottom:818.263200px;}
.yf9{bottom:818.690700px;}
.y188{bottom:819.890700px;}
.y8d{bottom:823.445550px;}
.y23{bottom:825.652050px;}
.yb7{bottom:825.710700px;}
.y6c{bottom:826.281900px;}
.y47{bottom:828.552150px;}
.y118{bottom:839.556750px;}
.y3{bottom:841.066350px;}
.ye9{bottom:842.209200px;}
.y8c{bottom:843.245550px;}
.y22{bottom:843.652050px;}
.yb6{bottom:843.710700px;}
.y6b{bottom:844.281900px;}
.y46{bottom:844.752150px;}
.y21{bottom:905.882100px;}
.h9{height:27.636562px;}
.hb{height:37.549805px;}
.h4{height:40.500000px;}
.h2{height:42.914062px;}
.ha{height:43.476562px;}
.h12{height:44.052246px;}
.hf{height:45.000000px;}
.h13{height:46.193848px;}
.hd{height:48.278320px;}
.h7{height:48.911133px;}
.h8{height:48.911733px;}
.h16{height:49.500000px;}
.h6{height:49.675781px;}
.he{height:53.642578px;}
.h15{height:54.000000px;}
.h17{height:54.052734px;}
.h10{height:54.345703px;}
.hc{height:55.195312px;}
.h11{height:59.006836px;}
.h5{height:64.371094px;}
.h3{height:75.099609px;}
.h14{height:76.793848px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.xa{left:86.652150px;}
.x71{left:88.865400px;}
.x5{left:90.293400px;}
.x6b{left:91.929750px;}
.x1a{left:96.439500px;}
.x10{left:99.619650px;}
.x36{left:101.458650px;}
.xc{left:105.172200px;}
.x6a{left:106.294350px;}
.x6c{left:107.749650px;}
.x11{left:108.820650px;}
.xe{left:109.861950px;}
.x6d{left:111.498150px;}
.x72{left:112.651050px;}
.x6e{left:114.866100px;}
.x37{left:116.758650px;}
.x7{left:121.995300px;}
.x73{left:123.244050px;}
.x38{left:132.058650px;}
.x1b{left:134.536650px;}
.x39{left:136.304400px;}
.x9{left:138.705900px;}
.x18{left:140.292300px;}
.x12{left:147.937650px;}
.x5f{left:151.591650px;}
.x17{left:155.587650px;}
.x3a{left:157.596900px;}
.x13{left:163.237650px;}
.x5d{left:166.904400px;}
.x19{left:170.892300px;}
.x3b{left:172.896900px;}
.x6f{left:178.176600px;}
.xb{left:182.236650px;}
.x1c{left:186.429150px;}
.x3c{left:188.196900px;}
.x1d{left:190.674900px;}
.x3e{left:192.442650px;}
.x14{left:194.102550px;}
.x5e{left:201.750150px;}
.x3d{left:203.496900px;}
.x1e{left:205.974900px;}
.x3f{left:207.742650px;}
.x1f{left:221.274900px;}
.x15{left:222.853800px;}
.x40{left:227.288400px;}
.x60{left:236.583150px;}
.x20{left:240.820650px;}
.x41{left:242.588400px;}
.x21{left:256.120650px;}
.xd{left:258.094200px;}
.x42{left:262.134150px;}
.x22{left:271.420650px;}
.x43{left:277.434150px;}
.x6{left:279.135900px;}
.x8{left:293.463300px;}
.x44{left:298.726650px;}
.xf{left:305.254950px;}
.x23{left:308.013150px;}
.x25{left:312.258900px;}
.x45{left:314.026650px;}
.x47{left:318.272400px;}
.x24{left:323.313150px;}
.x61{left:327.554400px;}
.x46{left:329.326650px;}
.x26{left:331.804650px;}
.x49{left:333.559650px;}
.x16{left:337.654800px;}
.x27{left:347.104650px;}
.x4a{left:348.859650px;}
.x4{left:350.786850px;}
.x48{left:353.118150px;}
.x62{left:366.645900px;}
.x28{left:368.397150px;}
.x4b{left:374.410650px;}
.x63{left:381.945900px;}
.x29{left:383.697150px;}
.x4c{left:389.710650px;}
.x2a{left:398.997150px;}
.x64{left:401.491650px;}
.x2b{left:403.242900px;}
.x4d{left:405.010650px;}
.x4e{left:409.256400px;}
.x65{left:416.791650px;}
.x2c{left:418.542900px;}
.x4f{left:424.556400px;}
.x66{left:432.091650px;}
.x2d{left:439.835400px;}
.x50{left:445.848900px;}
.x67{left:447.391650px;}
.x2e{left:455.135400px;}
.x51{left:461.148900px;}
.x68{left:462.691650px;}
.x58{left:465.394650px;}
.x2f{left:470.435400px;}
.x30{left:474.681150px;}
.x52{left:476.448900px;}
.x59{left:484.940400px;}
.x31{left:489.981150px;}
.x53{left:495.994650px;}
.x69{left:499.284150px;}
.x5a{left:504.486150px;}
.x3{left:508.370100px;}
.x32{left:509.526900px;}
.x54{left:511.294650px;}
.x5b{left:524.031900px;}
.x55{left:526.594650px;}
.x33{left:530.819400px;}
.x56{left:541.894650px;}
.x5c{left:543.577650px;}
.x34{left:546.119400px;}
.x57{left:557.194650px;}
.x35{left:561.419400px;}
.x1{left:582.033300px;}
.x70{left:595.275600px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.684800pt;}
.v3{vertical-align:15.840533pt;}
.v6{vertical-align:17.600000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:27.200000pt;}
.ls42{letter-spacing:-6.394667pt;}
.ls3c{letter-spacing:-4.576000pt;}
.ls25{letter-spacing:-4.517333pt;}
.ls44{letter-spacing:-3.578667pt;}
.ls43{letter-spacing:-3.344000pt;}
.ls45{letter-spacing:-3.285333pt;}
.ls7{letter-spacing:-2.448000pt;}
.ls3d{letter-spacing:-2.405333pt;}
.ls1e{letter-spacing:-2.229333pt;}
.ls17{letter-spacing:-2.218667pt;}
.ls3e{letter-spacing:-2.112000pt;}
.ls47{letter-spacing:-1.728000pt;}
.ls39{letter-spacing:-0.816000pt;}
.ls49{letter-spacing:-0.693333pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.624000pt;}
.ls3a{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.528000pt;}
.ls31{letter-spacing:-0.498667pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls4c{letter-spacing:-0.426667pt;}
.ls37{letter-spacing:-0.408000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls4f{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.317333pt;}
.ls14{letter-spacing:-0.288000pt;}
.ls4a{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:-0.240000pt;}
.ls2a{letter-spacing:-0.226667pt;}
.lsa{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.181333pt;}
.ls38{letter-spacing:-0.136000pt;}
.ls48{letter-spacing:-0.106667pt;}
.ls2f{letter-spacing:-0.090667pt;}
.ls46{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls30{letter-spacing:-0.045333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.002133pt;}
.ls3b{letter-spacing:0.045333pt;}
.ls21{letter-spacing:0.057067pt;}
.ls2b{letter-spacing:0.090667pt;}
.ls4e{letter-spacing:0.093333pt;}
.ls5{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.149333pt;}
.ls1f{letter-spacing:0.234667pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls41{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.288000pt;}
.ls2d{letter-spacing:0.317333pt;}
.ls22{letter-spacing:0.352000pt;}
.ls36{letter-spacing:0.362667pt;}
.ls23{letter-spacing:0.410667pt;}
.ls19{letter-spacing:0.426667pt;}
.ls32{letter-spacing:0.453333pt;}
.ls3f{letter-spacing:0.469333pt;}
.ls35{letter-spacing:0.498667pt;}
.lsf{letter-spacing:0.528000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls29{letter-spacing:0.544000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls34{letter-spacing:0.589333pt;}
.ls15{letter-spacing:0.624000pt;}
.ls28{letter-spacing:0.680000pt;}
.ls18{letter-spacing:0.693333pt;}
.ls1d{letter-spacing:0.762667pt;}
.ls33{letter-spacing:0.816000pt;}
.ls40{letter-spacing:0.853333pt;}
.ls1{letter-spacing:0.867093pt;}
.ls16{letter-spacing:1.152000pt;}
.ls27{letter-spacing:1.314667pt;}
.ls9{letter-spacing:1.344000pt;}
.lsd{letter-spacing:1.392000pt;}
.lsc{letter-spacing:1.632000pt;}
.ls0{letter-spacing:2.225493pt;}
.ls4b{letter-spacing:4.499733pt;}
.ls24{letter-spacing:76.522667pt;}
.ls2e{letter-spacing:154.949333pt;}
.ws6f{word-spacing:-17.072000pt;}
.ws7b{word-spacing:-16.837333pt;}
.wsa5{word-spacing:-16.720000pt;}
.ws137{word-spacing:-16.064000pt;}
.ws1e{word-spacing:-13.632000pt;}
.ws1f{word-spacing:-13.344000pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws14a{word-spacing:-12.906667pt;}
.ws149{word-spacing:-12.800000pt;}
.ws142{word-spacing:-12.640000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsbf{word-spacing:-11.792000pt;}
.wsaa{word-spacing:-11.333333pt;}
.wsce{word-spacing:-10.834667pt;}
.ws0{word-spacing:-10.319360pt;}
.ws2{word-spacing:-9.552000pt;}
.ws141{word-spacing:-9.333333pt;}
.wsd6{word-spacing:-8.296000pt;}
.ws3{word-spacing:-6.960000pt;}
.ws145{word-spacing:-6.826667pt;}
.ws20{word-spacing:-6.666667pt;}
.ws36{word-spacing:-6.624000pt;}
.ws11e{word-spacing:-6.560000pt;}
.ws58{word-spacing:-6.453333pt;}
.ws133{word-spacing:-6.293333pt;}
.ws4{word-spacing:-6.186667pt;}
.ws118{word-spacing:-6.133333pt;}
.ws12c{word-spacing:-6.026667pt;}
.ws26{word-spacing:-6.000000pt;}
.ws153{word-spacing:-5.973333pt;}
.ws42{word-spacing:-5.952000pt;}
.ws48{word-spacing:-5.904000pt;}
.ws10e{word-spacing:-5.866667pt;}
.ws8f{word-spacing:-5.760000pt;}
.wsed{word-spacing:-5.706667pt;}
.ws143{word-spacing:-5.696000pt;}
.wsbb{word-spacing:-5.666667pt;}
.ws13d{word-spacing:-5.600000pt;}
.ws7d{word-spacing:-5.440000pt;}
.ws86{word-spacing:-5.386667pt;}
.ws15b{word-spacing:-5.226667pt;}
.ws109{word-spacing:-5.120000pt;}
.ws6e{word-spacing:-5.013333pt;}
.wse0{word-spacing:-4.986667pt;}
.ws13e{word-spacing:-4.960000pt;}
.ws2b{word-spacing:-4.944000pt;}
.wse3{word-spacing:-4.941333pt;}
.wsde{word-spacing:-4.896000pt;}
.wsf3{word-spacing:-4.853333pt;}
.ws19{word-spacing:-4.821333pt;}
.wsea{word-spacing:-4.800000pt;}
.wse5{word-spacing:-4.760000pt;}
.ws5f{word-spacing:-4.746667pt;}
.ws4d{word-spacing:-4.693333pt;}
.wsfc{word-spacing:-4.640000pt;}
.ws157{word-spacing:-4.586667pt;}
.ws11f{word-spacing:-4.533333pt;}
.wsc3{word-spacing:-4.442667pt;}
.ws119{word-spacing:-4.426667pt;}
.ws140{word-spacing:-4.373333pt;}
.wsd5{word-spacing:-4.306667pt;}
.ws10c{word-spacing:-4.213333pt;}
.ws9e{word-spacing:-4.106667pt;}
.ws17{word-spacing:-4.096000pt;}
.ws156{word-spacing:-4.053333pt;}
.ws73{word-spacing:-3.946667pt;}
.wsbc{word-spacing:-3.898667pt;}
.ws14d{word-spacing:-3.893333pt;}
.ws13{word-spacing:-3.888000pt;}
.ws129{word-spacing:-3.786667pt;}
.ws3b{word-spacing:-3.696000pt;}
.wsad{word-spacing:-3.680000pt;}
.wsbe{word-spacing:-3.672000pt;}
.wsdc{word-spacing:-3.626667pt;}
.ws82{word-spacing:-3.573333pt;}
.ws5e{word-spacing:-3.520000pt;}
.ws110{word-spacing:-3.466667pt;}
.wsb{word-spacing:-3.456000pt;}
.wsa2{word-spacing:-3.413333pt;}
.ws12{word-spacing:-3.264000pt;}
.wsfe{word-spacing:-3.253333pt;}
.ws7f{word-spacing:-3.242667pt;}
.ws101{word-spacing:-3.157333pt;}
.ws5c{word-spacing:-3.146667pt;}
.wse1{word-spacing:-3.128000pt;}
.ws7a{word-spacing:-3.093333pt;}
.ws68{word-spacing:-3.040000pt;}
.wse7{word-spacing:-3.037333pt;}
.ws11a{word-spacing:-2.986667pt;}
.ws3a{word-spacing:-2.976000pt;}
.wsa4{word-spacing:-2.944000pt;}
.wsd0{word-spacing:-2.856000pt;}
.ws59{word-spacing:-2.826667pt;}
.ws80{word-spacing:-2.816000pt;}
.wsaf{word-spacing:-2.765333pt;}
.wscf{word-spacing:-2.720000pt;}
.wsff{word-spacing:-2.613333pt;}
.ws35{word-spacing:-2.592000pt;}
.ws104{word-spacing:-2.560000pt;}
.ws49{word-spacing:-2.544000pt;}
.ws14c{word-spacing:-2.506667pt;}
.ws60{word-spacing:-2.453333pt;}
.wsd8{word-spacing:-2.448000pt;}
.ws7c{word-spacing:-2.400000pt;}
.ws88{word-spacing:-2.346667pt;}
.ws102{word-spacing:-2.304000pt;}
.ws12e{word-spacing:-2.293333pt;}
.ws130{word-spacing:-2.240000pt;}
.ws4e{word-spacing:-2.176000pt;}
.ws50{word-spacing:-2.133333pt;}
.ws120{word-spacing:-2.080000pt;}
.ws146{word-spacing:-2.026667pt;}
.wsf6{word-spacing:-1.973333pt;}
.ws8b{word-spacing:-1.920000pt;}
.ws75{word-spacing:-1.866667pt;}
.ws78{word-spacing:-1.813333pt;}
.ws72{word-spacing:-1.792000pt;}
.wsb5{word-spacing:-1.768000pt;}
.ws13c{word-spacing:-1.760000pt;}
.wsec{word-spacing:-1.706667pt;}
.ws79{word-spacing:-1.653333pt;}
.ws27{word-spacing:-1.632000pt;}
.ws4f{word-spacing:-1.621333pt;}
.ws123{word-spacing:-1.600000pt;}
.wsd{word-spacing:-1.488000pt;}
.wsf8{word-spacing:-1.472000pt;}
.wscb{word-spacing:-1.450667pt;}
.ws85{word-spacing:-1.440000pt;}
.ws89{word-spacing:-1.333333pt;}
.wsb1{word-spacing:-1.314667pt;}
.ws29{word-spacing:-1.296000pt;}
.wse{word-spacing:-1.248000pt;}
.ws3c{word-spacing:-1.200000pt;}
.wsc6{word-spacing:-1.178667pt;}
.ws10d{word-spacing:-1.173333pt;}
.wseb{word-spacing:-1.120000pt;}
.ws14b{word-spacing:-1.066667pt;}
.wsb9{word-spacing:-1.042667pt;}
.ws9f{word-spacing:-1.013333pt;}
.ws159{word-spacing:-0.960000pt;}
.ws99{word-spacing:-0.906667pt;}
.wsca{word-spacing:-0.861333pt;}
.ws51{word-spacing:-0.853333pt;}
.ws4b{word-spacing:-0.816000pt;}
.ws107{word-spacing:-0.800000pt;}
.ws10{word-spacing:-0.768000pt;}
.ws132{word-spacing:-0.746667pt;}
.ws5d{word-spacing:-0.693333pt;}
.ws9a{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.624000pt;}
.ws52{word-spacing:-0.586667pt;}
.ws9{word-spacing:-0.576000pt;}
.ws55{word-spacing:-0.533333pt;}
.ws9b{word-spacing:-0.480000pt;}
.ws10b{word-spacing:-0.469333pt;}
.ws18{word-spacing:-0.426667pt;}
.wsb4{word-spacing:-0.408000pt;}
.ws61{word-spacing:-0.373333pt;}
.wsb3{word-spacing:-0.362667pt;}
.wsa3{word-spacing:-0.352000pt;}
.ws77{word-spacing:-0.320000pt;}
.wsc8{word-spacing:-0.317333pt;}
.wsef{word-spacing:-0.266667pt;}
.ws57{word-spacing:-0.256000pt;}
.ws71{word-spacing:-0.234667pt;}
.ws13f{word-spacing:-0.160000pt;}
.ws10f{word-spacing:-0.106667pt;}
.ws5a{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws121{word-spacing:0.053333pt;}
.ws135{word-spacing:0.064000pt;}
.wsd2{word-spacing:0.090667pt;}
.ws158{word-spacing:0.106667pt;}
.wsd4{word-spacing:0.136000pt;}
.ws98{word-spacing:0.160000pt;}
.ws2a{word-spacing:0.192000pt;}
.wsee{word-spacing:0.213333pt;}
.ws41{word-spacing:0.240000pt;}
.ws90{word-spacing:0.256000pt;}
.ws148{word-spacing:0.266667pt;}
.ws14{word-spacing:0.288000pt;}
.ws8e{word-spacing:0.320000pt;}
.ws6c{word-spacing:0.373333pt;}
.ws25{word-spacing:0.384000pt;}
.ws136{word-spacing:0.426667pt;}
.ws3e{word-spacing:0.432000pt;}
.ws67{word-spacing:0.533333pt;}
.ws64{word-spacing:0.586667pt;}
.ws155{word-spacing:0.640000pt;}
.ws3f{word-spacing:0.672000pt;}
.ws13a{word-spacing:0.693333pt;}
.ws69{word-spacing:0.746667pt;}
.ws12a{word-spacing:0.800000pt;}
.ws2c{word-spacing:0.816000pt;}
.ws95{word-spacing:0.853333pt;}
.wsbd{word-spacing:0.906667pt;}
.wsa{word-spacing:0.912000pt;}
.ws126{word-spacing:0.960000pt;}
.ws16{word-spacing:1.008000pt;}
.ws74{word-spacing:1.013333pt;}
.wsfa{word-spacing:1.066667pt;}
.ws92{word-spacing:1.120000pt;}
.wsc9{word-spacing:1.133333pt;}
.ws12f{word-spacing:1.173333pt;}
.ws83{word-spacing:1.226667pt;}
.ws56{word-spacing:1.280000pt;}
.ws108{word-spacing:1.333333pt;}
.ws97{word-spacing:1.386667pt;}
.ws31{word-spacing:1.440000pt;}
.ws7e{word-spacing:1.493333pt;}
.wsf{word-spacing:1.536000pt;}
.ws103{word-spacing:1.546667pt;}
.wsa7{word-spacing:1.600000pt;}
.wsc7{word-spacing:1.632000pt;}
.wsa8{word-spacing:1.706667pt;}
.ws63{word-spacing:1.760000pt;}
.ws62{word-spacing:1.813333pt;}
.ws11{word-spacing:1.824000pt;}
.wsa0{word-spacing:1.866667pt;}
.wsc2{word-spacing:1.904000pt;}
.ws9c{word-spacing:1.920000pt;}
.wsda{word-spacing:1.949333pt;}
.ws1b{word-spacing:1.962667pt;}
.ws76{word-spacing:1.973333pt;}
.wsb7{word-spacing:1.994667pt;}
.wsf9{word-spacing:2.026667pt;}
.ws93{word-spacing:2.080000pt;}
.ws10a{word-spacing:2.112000pt;}
.wsf5{word-spacing:2.133333pt;}
.wsb6{word-spacing:2.176000pt;}
.ws94{word-spacing:2.186667pt;}
.ws70{word-spacing:2.229333pt;}
.wsfb{word-spacing:2.240000pt;}
.ws8a{word-spacing:2.293333pt;}
.wsd7{word-spacing:2.312000pt;}
.ws12b{word-spacing:2.346667pt;}
.ws2e{word-spacing:2.400000pt;}
.ws106{word-spacing:2.405333pt;}
.ws30{word-spacing:2.448000pt;}
.ws53{word-spacing:2.453333pt;}
.ws105{word-spacing:2.506667pt;}
.ws116{word-spacing:2.560000pt;}
.ws2d{word-spacing:2.640000pt;}
.ws151{word-spacing:2.720000pt;}
.ws111{word-spacing:2.773333pt;}
.wsf1{word-spacing:2.826667pt;}
.ws43{word-spacing:2.880000pt;}
.ws81{word-spacing:2.901333pt;}
.ws6a{word-spacing:2.933333pt;}
.ws54{word-spacing:2.986667pt;}
.ws66{word-spacing:3.040000pt;}
.ws96{word-spacing:3.146667pt;}
.ws3d{word-spacing:3.264000pt;}
.ws134{word-spacing:3.285333pt;}
.ws12d{word-spacing:3.306667pt;}
.ws115{word-spacing:3.344000pt;}
.ws6b{word-spacing:3.360000pt;}
.wsf4{word-spacing:3.413333pt;}
.ws11b{word-spacing:3.466667pt;}
.ws1a{word-spacing:3.541333pt;}
.ws113{word-spacing:3.573333pt;}
.ws131{word-spacing:3.578667pt;}
.ws33{word-spacing:3.600000pt;}
.ws8d{word-spacing:3.626667pt;}
.wsab{word-spacing:3.680000pt;}
.wse9{word-spacing:3.733333pt;}
.wsba{word-spacing:3.762667pt;}
.ws124{word-spacing:3.786667pt;}
.ws147{word-spacing:3.893333pt;}
.wse6{word-spacing:3.898667pt;}
.ws152{word-spacing:3.946667pt;}
.ws138{word-spacing:4.053333pt;}
.ws5b{word-spacing:4.106667pt;}
.ws87{word-spacing:4.266667pt;}
.ws6d{word-spacing:4.320000pt;}
.wsc{word-spacing:4.368000pt;}
.ws40{word-spacing:4.464000pt;}
.ws14e{word-spacing:4.480000pt;}
.ws23{word-spacing:4.512000pt;}
.wsae{word-spacing:4.517333pt;}
.wsf0{word-spacing:4.533333pt;}
.wsf2{word-spacing:4.576000pt;}
.wsa6{word-spacing:4.693333pt;}
.ws114{word-spacing:4.746667pt;}
.ws46{word-spacing:4.752000pt;}
.ws9d{word-spacing:4.800000pt;}
.wsd3{word-spacing:4.805333pt;}
.ws22{word-spacing:4.848000pt;}
.ws14f{word-spacing:4.853333pt;}
.ws117{word-spacing:4.960000pt;}
.wsa1{word-spacing:5.066667pt;}
.ws122{word-spacing:5.120000pt;}
.ws11c{word-spacing:5.226667pt;}
.ws139{word-spacing:5.546667pt;}
.ws13b{word-spacing:5.600000pt;}
.ws125{word-spacing:5.653333pt;}
.ws24{word-spacing:5.664000pt;}
.ws84{word-spacing:5.706667pt;}
.ws37{word-spacing:5.808000pt;}
.wsf7{word-spacing:5.866667pt;}
.ws11d{word-spacing:5.920000pt;}
.wsac{word-spacing:5.973333pt;}
.ws8c{word-spacing:6.026667pt;}
.wse8{word-spacing:6.186667pt;}
.ws32{word-spacing:6.192000pt;}
.ws34{word-spacing:6.336000pt;}
.ws112{word-spacing:6.394667pt;}
.ws100{word-spacing:6.453333pt;}
.ws38{word-spacing:6.912000pt;}
.ws144{word-spacing:6.933333pt;}
.wsdd{word-spacing:7.072000pt;}
.wsb0{word-spacing:7.162667pt;}
.ws128{word-spacing:7.200000pt;}
.ws28{word-spacing:7.248000pt;}
.ws15a{word-spacing:7.253333pt;}
.ws65{word-spacing:7.466667pt;}
.ws4a{word-spacing:7.536000pt;}
.wsc4{word-spacing:7.616000pt;}
.ws39{word-spacing:7.632000pt;}
.wsc5{word-spacing:7.661333pt;}
.ws7{word-spacing:7.680000pt;}
.ws91{word-spacing:7.733333pt;}
.ws8{word-spacing:7.808000pt;}
.ws4c{word-spacing:7.968000pt;}
.ws127{word-spacing:8.160000pt;}
.wse2{word-spacing:8.296000pt;}
.ws2f{word-spacing:8.304000pt;}
.ws44{word-spacing:8.640000pt;}
.ws45{word-spacing:8.928000pt;}
.wse4{word-spacing:9.021333pt;}
.wsd1{word-spacing:9.565333pt;}
.wscd{word-spacing:9.701333pt;}
.wsdf{word-spacing:9.882667pt;}
.wscc{word-spacing:10.290667pt;}
.ws154{word-spacing:10.346667pt;}
.wsb8{word-spacing:10.517333pt;}
.wsfd{word-spacing:10.666667pt;}
.wsd9{word-spacing:10.789333pt;}
.wsb2{word-spacing:11.333333pt;}
.ws47{word-spacing:11.376000pt;}
.ws21{word-spacing:12.000000pt;}
.ws150{word-spacing:12.640000pt;}
.ws6{word-spacing:18.144000pt;}
.wsa9{word-spacing:66.721600pt;}
.wsc1{word-spacing:110.731200pt;}
.wsdb{word-spacing:130.741333pt;}
.wsc0{word-spacing:130.841067pt;}
.ws1c{word-spacing:1553.794133pt;}
._1d{margin-left:-7.560533pt;}
._5{margin-left:-6.598933pt;}
._6{margin-left:-5.582400pt;}
._4{margin-left:-3.920427pt;}
._3{margin-left:-2.977067pt;}
._8{margin-left:-2.086400pt;}
._1{margin-left:-1.127467pt;}
._0{width:1.381333pt;}
._2{width:2.456533pt;}
._7{width:4.209600pt;}
._9{width:5.520000pt;}
._a{width:6.768000pt;}
._f{width:8.209867pt;}
._17{width:9.588000pt;}
._1c{width:24.426667pt;}
._1b{width:25.440000pt;}
._b{width:26.666667pt;}
._18{width:47.962667pt;}
._c{width:80.521067pt;}
._19{width:96.016000pt;}
._11{width:119.554133pt;}
._16{width:123.738667pt;}
._1a{width:144.069333pt;}
._d{width:152.138667pt;}
._15{width:156.898667pt;}
._12{width:198.732267pt;}
._10{width:252.144000pt;}
._e{width:314.320000pt;}
._13{width:406.776000pt;}
._14{width:695.588800pt;}
.fs6{font-size:24.746667pt;}
.fs5{font-size:27.840000pt;}
.fsa{font-size:30.933333pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.168400pt;}
.y20{bottom:76.124267pt;}
.y1f{bottom:120.944933pt;}
.ya6{bottom:120.945067pt;}
.yf8{bottom:121.020933pt;}
.y1c0{bottom:121.101600pt;}
.ye8{bottom:121.103867pt;}
.y8b{bottom:121.179600pt;}
.ye4{bottom:121.207333pt;}
.y1e0{bottom:121.222533pt;}
.y187{bottom:121.272933pt;}
.y24f{bottom:121.284933pt;}
.y268{bottom:121.682267pt;}
.y21b{bottom:122.259200pt;}
.yb5{bottom:124.728933pt;}
.y141{bottom:126.277867pt;}
.y156{bottom:126.421733pt;}
.y1cf{bottom:126.982667pt;}
.y165{bottom:131.528000pt;}
.y1a3{bottom:133.607600pt;}
.y1e{bottom:133.744933pt;}
.ya5{bottom:133.745067pt;}
.y29e{bottom:133.902000pt;}
.y161{bottom:134.706400pt;}
.y14e{bottom:134.709867pt;}
.y15d{bottom:134.717733pt;}
.y14a{bottom:134.721200pt;}
.y159{bottom:134.729067pt;}
.y146{bottom:134.732533pt;}
.y152{bottom:134.740400pt;}
.y142{bottom:134.743867pt;}
.y1fe{bottom:134.895333pt;}
.y237{bottom:135.865200pt;}
.y1bf{bottom:137.101600pt;}
.y8a{bottom:137.179600pt;}
.ye3{bottom:137.207333pt;}
.y1df{bottom:137.222533pt;}
.y186{bottom:137.272933pt;}
.y24e{bottom:137.284933pt;}
.y282{bottom:137.303600pt;}
.y267{bottom:137.682267pt;}
.y21a{bottom:138.259200pt;}
.y1d6{bottom:138.414133pt;}
.yb4{bottom:140.728933pt;}
.y1ce{bottom:142.982667pt;}
.yf7{bottom:143.260933pt;}
.y227{bottom:143.552400pt;}
.y1d{bottom:146.544933pt;}
.ya4{bottom:146.545067pt;}
.y1a2{bottom:149.607600pt;}
.y29d{bottom:149.902000pt;}
.y1fd{bottom:150.895333pt;}
.y236{bottom:151.865200pt;}
.y1be{bottom:153.101600pt;}
.y89{bottom:153.179600pt;}
.ye2{bottom:153.207333pt;}
.y1de{bottom:153.222533pt;}
.y185{bottom:153.272933pt;}
.y281{bottom:153.303600pt;}
.y219{bottom:154.259200pt;}
.yb3{bottom:156.728933pt;}
.y1cd{bottom:158.982667pt;}
.y1c{bottom:159.344933pt;}
.ya3{bottom:159.345067pt;}
.y226{bottom:159.552400pt;}
.yf6{bottom:165.500933pt;}
.y29c{bottom:165.902000pt;}
.y1fc{bottom:166.895333pt;}
.y24d{bottom:167.644933pt;}
.y235{bottom:167.865200pt;}
.y169{bottom:168.225333pt;}
.y266{bottom:168.422533pt;}
.y88{bottom:169.179600pt;}
.ye1{bottom:169.207333pt;}
.y1dd{bottom:169.222533pt;}
.y184{bottom:169.272933pt;}
.y280{bottom:169.303600pt;}
.y218{bottom:170.259200pt;}
.y9b{bottom:171.220000pt;}
.y157{bottom:172.684400pt;}
.yb2{bottom:172.728933pt;}
.y1a1{bottom:173.167600pt;}
.y1cc{bottom:174.982667pt;}
.y225{bottom:175.552400pt;}
.y1b{bottom:175.664933pt;}
.ya2{bottom:175.665067pt;}
.y140{bottom:178.731200pt;}
.y158{bottom:180.391067pt;}
.y1fb{bottom:182.895333pt;}
.y24c{bottom:183.644933pt;}
.y265{bottom:184.422533pt;}
.y87{bottom:185.179600pt;}
.ye0{bottom:185.207333pt;}
.y1dc{bottom:185.222533pt;}
.y183{bottom:185.272933pt;}
.y27f{bottom:185.303600pt;}
.y217{bottom:186.259200pt;}
.y9a{bottom:187.220000pt;}
.yb1{bottom:188.728933pt;}
.y1a0{bottom:189.167600pt;}
.y1cb{bottom:190.982667pt;}
.y224{bottom:191.552400pt;}
.y1bd{bottom:193.290533pt;}
.yf5{bottom:196.620933pt;}
.y29b{bottom:197.020133pt;}
.y1a{bottom:197.897600pt;}
.y1fa{bottom:198.895333pt;}
.y234{bottom:198.985200pt;}
.y264{bottom:200.422533pt;}
.y86{bottom:201.179600pt;}
.y1db{bottom:201.222533pt;}
.y182{bottom:201.272933pt;}
.y216{bottom:202.259200pt;}
.y99{bottom:203.220000pt;}
.yb0{bottom:204.728933pt;}
.y6a{bottom:206.030800pt;}
.y1ca{bottom:206.982667pt;}
.y223{bottom:207.552400pt;}
.yd1{bottom:209.515867pt;}
.y19f{bottom:212.727600pt;}
.y29a{bottom:213.020133pt;}
.y24b{bottom:214.004933pt;}
.y233{bottom:214.985200pt;}
.y27e{bottom:216.043733pt;}
.y45{bottom:216.254800pt;}
.ydf{bottom:216.327333pt;}
.y85{bottom:217.179600pt;}
.y215{bottom:218.259200pt;}
.y98{bottom:219.220000pt;}
.y13f{bottom:219.792533pt;}
.y19{bottom:220.130267pt;}
.y69{bottom:220.430800pt;}
.yaf{bottom:220.728933pt;}
.y1c9{bottom:222.982667pt;}
.yd0{bottom:225.515867pt;}
.y19e{bottom:228.727600pt;}
.y299{bottom:229.020133pt;}
.y24a{bottom:230.004933pt;}
.y1f9{bottom:230.015333pt;}
.y44{bottom:230.654800pt;}
.y232{bottom:230.985200pt;}
.y263{bottom:231.162667pt;}
.yde{bottom:232.327333pt;}
.y181{bottom:232.392933pt;}
.y84{bottom:233.179600pt;}
.y68{bottom:234.830800pt;}
.y97{bottom:235.220000pt;}
.y13e{bottom:235.792533pt;}
.yae{bottom:236.728933pt;}
.y1c8{bottom:238.982667pt;}
.yf4{bottom:239.077600pt;}
.y162{bottom:239.619067pt;}
.y14f{bottom:239.622533pt;}
.y15e{bottom:239.630400pt;}
.y14b{bottom:239.633867pt;}
.y15a{bottom:239.641733pt;}
.y147{bottom:239.645200pt;}
.y153{bottom:239.653067pt;}
.y143{bottom:239.656533pt;}
.y166{bottom:239.659333pt;}
.y1da{bottom:239.899733pt;}
.ycf{bottom:241.515867pt;}
.y18{bottom:242.362933pt;}
.y177{bottom:243.835867pt;}
.y43{bottom:245.054800pt;}
.y249{bottom:246.004933pt;}
.y1f8{bottom:246.015333pt;}
.y27d{bottom:246.783867pt;}
.y231{bottom:246.985200pt;}
.y262{bottom:247.162667pt;}
.ydd{bottom:248.327333pt;}
.y83{bottom:249.179600pt;}
.y214{bottom:249.379200pt;}
.y222{bottom:250.009067pt;}
.y117{bottom:250.201200pt;}
.y10a{bottom:250.551733pt;}
.y96{bottom:251.220000pt;}
.y13d{bottom:251.792533pt;}
.y19d{bottom:252.287600pt;}
.yad{bottom:252.728933pt;}
.y180{bottom:253.566267pt;}
.y1c7{bottom:254.982667pt;}
.yce{bottom:257.515867pt;}
.y176{bottom:259.835867pt;}
.y298{bottom:260.138267pt;}
.y1d9{bottom:260.258800pt;}
.y67{bottom:260.570800pt;}
.y1f7{bottom:262.015333pt;}
.y27c{bottom:262.783867pt;}
.y261{bottom:263.162667pt;}
.y115{bottom:263.801200pt;}
.ydc{bottom:264.327333pt;}
.y17{bottom:264.595733pt;}
.y82{bottom:265.179600pt;}
.y213{bottom:265.379200pt;}
.y95{bottom:267.220000pt;}
.y19c{bottom:268.287600pt;}
.y17f{bottom:269.566267pt;}
.y42{bottom:270.794800pt;}
.y1c6{bottom:270.982667pt;}
.ycd{bottom:273.515867pt;}
.y66{bottom:274.970800pt;}
.y175{bottom:275.835867pt;}
.y297{bottom:276.138267pt;}
.y248{bottom:276.364933pt;}
.y109{bottom:276.425733pt;}
.y116{bottom:277.401200pt;}
.y1f6{bottom:278.015333pt;}
.y230{bottom:278.105200pt;}
.ydb{bottom:280.327333pt;}
.y81{bottom:281.179600pt;}
.y212{bottom:281.379200pt;}
.y94{bottom:283.220000pt;}
.yac{bottom:283.848933pt;}
.y19b{bottom:284.287600pt;}
.y41{bottom:285.194800pt;}
.y10b{bottom:288.484400pt;}
.y65{bottom:289.370800pt;}
.y17e{bottom:290.739600pt;}
.y174{bottom:291.835867pt;}
.y296{bottom:292.138267pt;}
.y247{bottom:292.364933pt;}
.y27b{bottom:293.524000pt;}
.y260{bottom:293.902800pt;}
.y1f5{bottom:294.015333pt;}
.y22f{bottom:294.105200pt;}
.y13c{bottom:294.249200pt;}
.yda{bottom:296.327333pt;}
.y113{bottom:296.327867pt;}
.y211{bottom:297.379200pt;}
.y93{bottom:299.220000pt;}
.y40{bottom:299.594800pt;}
.yab{bottom:299.848933pt;}
.y163{bottom:300.093733pt;}
.y150{bottom:300.097200pt;}
.y15f{bottom:300.105067pt;}
.y14c{bottom:300.108533pt;}
.y15b{bottom:300.116400pt;}
.y148{bottom:300.119867pt;}
.y154{bottom:300.127733pt;}
.y144{bottom:300.131200pt;}
.y167{bottom:300.134000pt;}
.y19a{bottom:300.287600pt;}
.y16{bottom:301.862000pt;}
.y112{bottom:303.127867pt;}
.y64{bottom:303.770800pt;}
.ycc{bottom:304.635867pt;}
.y17d{bottom:306.739600pt;}
.y173{bottom:307.835867pt;}
.y246{bottom:308.364933pt;}
.y27a{bottom:309.524000pt;}
.y25f{bottom:309.902800pt;}
.y114{bottom:309.927867pt;}
.y1f4{bottom:310.015333pt;}
.y22e{bottom:310.105200pt;}
.y80{bottom:312.299600pt;}
.yd9{bottom:312.327333pt;}
.y210{bottom:313.379200pt;}
.y1c5{bottom:313.439333pt;}
.y3f{bottom:313.994800pt;}
.y92{bottom:315.220000pt;}
.yaa{bottom:315.848933pt;}
.y15{bottom:316.262000pt;}
.y63{bottom:318.170800pt;}
.y135{bottom:318.387333pt;}
.ycb{bottom:320.635867pt;}
.y295{bottom:323.256400pt;}
.y172{bottom:323.835867pt;}
.ya1{bottom:325.289333pt;}
.y279{bottom:325.524000pt;}
.y25e{bottom:325.902800pt;}
.y1f3{bottom:326.015333pt;}
.y22d{bottom:326.105200pt;}
.y17c{bottom:327.912933pt;}
.y7f{bottom:328.299600pt;}
.yd8{bottom:328.327333pt;}
.y3e{bottom:328.394800pt;}
.y110{bottom:328.854533pt;}
.y20f{bottom:329.379200pt;}
.y14{bottom:330.662000pt;}
.y91{bottom:331.220000pt;}
.y199{bottom:331.407600pt;}
.ya9{bottom:331.848933pt;}
.y13b{bottom:331.987333pt;}
.y62{bottom:332.570800pt;}
.y10f{bottom:335.654533pt;}
.yca{bottom:336.635867pt;}
.y245{bottom:338.727200pt;}
.y294{bottom:339.256400pt;}
.y171{bottom:339.835867pt;}
.ya0{bottom:341.289333pt;}
.y278{bottom:341.524000pt;}
.y25d{bottom:341.902800pt;}
.y1f2{bottom:342.015333pt;}
.y22c{bottom:342.105200pt;}
.y111{bottom:342.454533pt;}
.y3d{bottom:342.794800pt;}
.y17b{bottom:343.912933pt;}
.y7e{bottom:344.299600pt;}
.yd7{bottom:344.327333pt;}
.y13{bottom:345.062000pt;}
.y20e{bottom:345.379200pt;}
.y13a{bottom:345.587333pt;}
.y61{bottom:346.970800pt;}
.y90{bottom:347.220000pt;}
.y198{bottom:347.407600pt;}
.ya8{bottom:347.848933pt;}
.y136{bottom:352.387333pt;}
.yc9{bottom:352.635867pt;}
.y293{bottom:355.256400pt;}
.y170{bottom:355.835867pt;}
.y3c{bottom:357.194800pt;}
.y9f{bottom:357.289333pt;}
.y244{bottom:357.927200pt;}
.y1f1{bottom:358.015333pt;}
.y139{bottom:359.187333pt;}
.y12{bottom:359.462000pt;}
.y7d{bottom:360.299600pt;}
.yd6{bottom:360.327333pt;}
.y60{bottom:361.370800pt;}
.y20d{bottom:361.379200pt;}
.y10d{bottom:361.381200pt;}
.y197{bottom:363.407600pt;}
.y17a{bottom:365.086267pt;}
.y10c{bottom:368.181200pt;}
.yc8{bottom:368.635867pt;}
.y292{bottom:371.256400pt;}
.y3b{bottom:371.594800pt;}
.y16f{bottom:371.835867pt;}
.y277{bottom:372.264267pt;}
.y25c{bottom:372.642933pt;}
.y138{bottom:372.787333pt;}
.y22b{bottom:373.216133pt;}
.y9e{bottom:373.289333pt;}
.y11{bottom:373.861867pt;}
.y1f0{bottom:374.015333pt;}
.y10e{bottom:374.981200pt;}
.y5f{bottom:375.770800pt;}
.y7c{bottom:376.299600pt;}
.yd5{bottom:376.327333pt;}
.y20c{bottom:377.379200pt;}
.y196{bottom:379.407600pt;}
.yc7{bottom:384.635867pt;}
.y3a{bottom:385.994800pt;}
.y137{bottom:386.387333pt;}
.y291{bottom:387.256400pt;}
.y10{bottom:388.261867pt;}
.y25b{bottom:388.642933pt;}
.y9d{bottom:389.289333pt;}
.y8f{bottom:389.676667pt;}
.y1ef{bottom:390.015333pt;}
.y5e{bottom:390.170800pt;}
.ya7{bottom:390.305733pt;}
.y7b{bottom:392.299600pt;}
.yd4{bottom:392.327333pt;}
.y20b{bottom:393.379200pt;}
.y108{bottom:393.909067pt;}
.y195{bottom:395.407600pt;}
.y179{bottom:396.206267pt;}
.y39{bottom:400.394800pt;}
.yc6{bottom:400.635867pt;}
.y8e{bottom:402.476667pt;}
.yf{bottom:402.661867pt;}
.y16e{bottom:402.954000pt;}
.y276{bottom:403.004400pt;}
.y243{bottom:403.586133pt;}
.y5d{bottom:404.570800pt;}
.y134{bottom:405.342400pt;}
.y1ee{bottom:406.015333pt;}
.y7a{bottom:408.299600pt;}
.yd3{bottom:408.327333pt;}
.y194{bottom:411.407600pt;}
.y133{bottom:412.142400pt;}
.y38{bottom:414.794800pt;}
.ye{bottom:417.061867pt;}
.y290{bottom:418.374400pt;}
.y22a{bottom:418.880133pt;}
.y5c{bottom:418.970800pt;}
.y275{bottom:419.004400pt;}
.y25a{bottom:419.383200pt;}
.y242{bottom:419.586133pt;}
.y1ed{bottom:422.015333pt;}
.y79{bottom:424.299600pt;}
.y20a{bottom:424.497333pt;}
.y1b0{bottom:426.688400pt;}
.y193{bottom:427.407600pt;}
.y107{bottom:427.772933pt;}
.y37{bottom:429.194800pt;}
.yd{bottom:431.461867pt;}
.y9c{bottom:431.746000pt;}
.yc5{bottom:431.754000pt;}
.y5b{bottom:433.370800pt;}
.y28f{bottom:434.374400pt;}
.y274{bottom:435.004400pt;}
.y259{bottom:435.383200pt;}
.y241{bottom:435.586133pt;}
.y131{bottom:437.869067pt;}
.y1ec{bottom:438.015333pt;}
.y178{bottom:438.663067pt;}
.y78{bottom:440.299600pt;}
.y192{bottom:443.407600pt;}
.y36{bottom:443.594800pt;}
.y1af{bottom:444.288400pt;}
.y130{bottom:444.669067pt;}
.y106{bottom:445.372933pt;}
.yc{bottom:445.861867pt;}
.y5a{bottom:447.770800pt;}
.y16d{bottom:448.605067pt;}
.yd2{bottom:450.784133pt;}
.yc4{bottom:450.954000pt;}
.y273{bottom:451.004400pt;}
.y132{bottom:451.469067pt;}
.y240{bottom:451.586133pt;}
.y221{bottom:452.415333pt;}
.y1eb{bottom:454.015333pt;}
.y77{bottom:456.299600pt;}
.y35{bottom:457.994800pt;}
.yb{bottom:460.261867pt;}
.y59{bottom:462.170800pt;}
.y16c{bottom:464.605067pt;}
.y28e{bottom:465.492533pt;}
.y258{bottom:466.501200pt;}
.y272{bottom:467.004400pt;}
.y209{bottom:468.550267pt;}
.y1ea{bottom:470.015333pt;}
.y12e{bottom:470.395733pt;}
.y76{bottom:472.299600pt;}
.y34{bottom:472.394800pt;}
.y191{bottom:474.525600pt;}
.y11a{bottom:474.643600pt;}
.ya{bottom:474.661867pt;}
.y58{bottom:476.570800pt;}
.y12d{bottom:477.195733pt;}
.y229{bottom:479.654800pt;}
.y16b{bottom:480.605067pt;}
.y28d{bottom:481.492533pt;}
.y23f{bottom:481.946133pt;}
.y12f{bottom:483.995733pt;}
.y208{bottom:484.550267pt;}
.y1bc{bottom:484.680000pt;}
.y119{bottom:486.702267pt;}
.y33{bottom:486.794800pt;}
.y75{bottom:488.299600pt;}
.y9{bottom:489.061867pt;}
.y105{bottom:489.405067pt;}
.y1ae{bottom:490.513067pt;}
.y57{bottom:490.970800pt;}
.y16a{bottom:496.605067pt;}
.y271{bottom:497.744533pt;}
.y23e{bottom:497.946133pt;}
.y1e9{bottom:501.133467pt;}
.y32{bottom:501.194800pt;}
.y12b{bottom:502.922400pt;}
.y8{bottom:503.461867pt;}
.y74{bottom:504.299600pt;}
.y56{bottom:505.370800pt;}
.y104{bottom:505.405067pt;}
.y1ad{bottom:506.513067pt;}
.y12a{bottom:509.722400pt;}
.yc3{bottom:511.725067pt;}
.y28c{bottom:512.610667pt;}
.y270{bottom:513.744533pt;}
.y23d{bottom:513.946133pt;}
.y220{bottom:514.070133pt;}
.y31{bottom:515.594800pt;}
.y207{bottom:515.670267pt;}
.y12c{bottom:516.522400pt;}
.y55{bottom:519.770800pt;}
.y190{bottom:520.182267pt;}
.y73{bottom:520.299600pt;}
.y103{bottom:521.405067pt;}
.y1ac{bottom:522.513067pt;}
.y164{bottom:523.088400pt;}
.y151{bottom:523.091867pt;}
.y160{bottom:523.099733pt;}
.y14d{bottom:523.103200pt;}
.y15c{bottom:523.111067pt;}
.y149{bottom:523.114533pt;}
.y155{bottom:523.122400pt;}
.y145{bottom:523.125867pt;}
.y168{bottom:523.128667pt;}
.y257{bottom:527.272267pt;}
.yc2{bottom:527.725067pt;}
.y28b{bottom:528.610667pt;}
.y1bb{bottom:528.738400pt;}
.y26f{bottom:529.744533pt;}
.y23c{bottom:529.946133pt;}
.y30{bottom:529.994800pt;}
.y21f{bottom:530.070133pt;}
.y1d8{bottom:531.080000pt;}
.y206{bottom:531.670267pt;}
.y54{bottom:534.170800pt;}
.y129{bottom:535.449067pt;}
.y18f{bottom:536.182267pt;}
.y72{bottom:536.299600pt;}
.y102{bottom:537.405067pt;}
.y1ab{bottom:538.513067pt;}
.y256{bottom:543.272267pt;}
.yc1{bottom:543.725067pt;}
.yf3{bottom:543.855600pt;}
.y2f{bottom:544.394800pt;}
.y1ba{bottom:544.738400pt;}
.y1e8{bottom:545.190133pt;}
.y26e{bottom:545.744533pt;}
.y23b{bottom:545.946133pt;}
.y21e{bottom:546.070133pt;}
.y1d5{bottom:546.790267pt;}
.y205{bottom:547.670267pt;}
.y53{bottom:548.570800pt;}
.y1d7{bottom:548.680000pt;}
.y128{bottom:549.049067pt;}
.y18e{bottom:552.182267pt;}
.y71{bottom:552.299600pt;}
.y101{bottom:553.405067pt;}
.y1aa{bottom:554.513067pt;}
.y2e{bottom:558.794800pt;}
.y255{bottom:559.272267pt;}
.yc0{bottom:559.725067pt;}
.y28a{bottom:559.728800pt;}
.y1b9{bottom:560.738400pt;}
.y1e7{bottom:561.190133pt;}
.yf2{bottom:561.455600pt;}
.y23a{bottom:561.946133pt;}
.y21d{bottom:562.070133pt;}
.y52{bottom:562.970800pt;}
.y7{bottom:564.098133pt;}
.y127{bottom:566.423067pt;}
.y100{bottom:569.405067pt;}
.y1a9{bottom:570.513067pt;}
.y2d{bottom:573.194800pt;}
.y254{bottom:575.272267pt;}
.ybf{bottom:575.725067pt;}
.y289{bottom:575.728800pt;}
.y26d{bottom:576.484667pt;}
.y1b8{bottom:576.738400pt;}
.y1e6{bottom:577.190133pt;}
.y51{bottom:577.370800pt;}
.y239{bottom:577.946133pt;}
.y21c{bottom:578.070133pt;}
.y204{bottom:578.790267pt;}
.y126{bottom:580.023067pt;}
.y6{bottom:583.298133pt;}
.y18d{bottom:583.300400pt;}
.y70{bottom:583.417733pt;}
.yff{bottom:585.405067pt;}
.y2c{bottom:587.594800pt;}
.y1d4{bottom:590.845067pt;}
.y253{bottom:591.272267pt;}
.ybe{bottom:591.725067pt;}
.y288{bottom:591.728800pt;}
.y50{bottom:591.770800pt;}
.y26c{bottom:592.484667pt;}
.y1b7{bottom:592.738400pt;}
.y1e5{bottom:593.190133pt;}
.ye7{bottom:593.190267pt;}
.y203{bottom:594.790267pt;}
.y125{bottom:597.397067pt;}
.y1a8{bottom:601.631200pt;}
.y2b{bottom:601.994800pt;}
.y6f{bottom:602.617733pt;}
.yf1{bottom:605.512267pt;}
.y4f{bottom:606.170800pt;}
.y1c4{bottom:606.708267pt;}
.y1d3{bottom:606.845067pt;}
.ybd{bottom:607.725067pt;}
.y2a1{bottom:607.728800pt;}
.y238{bottom:608.308267pt;}
.y1b6{bottom:608.738400pt;}
.y1e4{bottom:609.190133pt;}
.ye6{bottom:610.790267pt;}
.y124{bottom:610.997067pt;}
.y2a{bottom:616.394800pt;}
.yfe{bottom:616.525067pt;}
.y4e{bottom:620.570800pt;}
.y5{bottom:621.395733pt;}
.yf0{bottom:621.512267pt;}
.y252{bottom:622.392267pt;}
.y1d2{bottom:622.845067pt;}
.y287{bottom:622.846933pt;}
.y26b{bottom:623.224800pt;}
.y2a0{bottom:623.728800pt;}
.y1c3{bottom:624.308267pt;}
.y123{bottom:624.597067pt;}
.y1b5{bottom:624.738400pt;}
.y1e3{bottom:625.190133pt;}
.y202{bottom:626.790267pt;}
.y29{bottom:630.794800pt;}
.y11b{bottom:631.385733pt;}
.y4d{bottom:634.970800pt;}
.yef{bottom:637.512267pt;}
.y251{bottom:638.392267pt;}
.yfd{bottom:638.765067pt;}
.ybc{bottom:638.845067pt;}
.y286{bottom:638.846933pt;}
.y26a{bottom:639.224800pt;}
.y29f{bottom:639.728800pt;}
.y1b4{bottom:640.738400pt;}
.y1e2{bottom:641.190133pt;}
.y1c2{bottom:641.908267pt;}
.y122{bottom:641.971067pt;}
.y201{bottom:642.790267pt;}
.y4{bottom:643.795733pt;}
.y18c{bottom:644.098400pt;}
.y28{bottom:645.194800pt;}
.y1a7{bottom:647.285067pt;}
.y4c{bottom:649.370800pt;}
.yee{bottom:653.512267pt;}
.y1d1{bottom:653.965067pt;}
.y250{bottom:654.392267pt;}
.ybb{bottom:654.845067pt;}
.y285{bottom:654.846933pt;}
.y269{bottom:655.224800pt;}
.y121{bottom:655.571067pt;}
.y1b3{bottom:656.738400pt;}
.y200{bottom:658.790267pt;}
.y27{bottom:659.594800pt;}
.yfc{bottom:661.005067pt;}
.y1a6{bottom:663.285067pt;}
.y6e{bottom:663.392800pt;}
.y4b{bottom:663.770800pt;}
.y18b{bottom:665.271733pt;}
.yed{bottom:669.512267pt;}
.y1d0{bottom:669.965067pt;}
.yba{bottom:670.845067pt;}
.y284{bottom:670.846933pt;}
.y1e1{bottom:672.308267pt;}
.y1b2{bottom:672.738400pt;}
.y120{bottom:672.945067pt;}
.y26{bottom:673.994800pt;}
.y4a{bottom:678.170800pt;}
.y2{bottom:679.033467pt;}
.yfb{bottom:683.245067pt;}
.yec{bottom:685.512267pt;}
.y1c1{bottom:685.965067pt;}
.y18a{bottom:686.445067pt;}
.y11f{bottom:686.545067pt;}
.yb9{bottom:686.845067pt;}
.y283{bottom:686.846933pt;}
.y25{bottom:688.394800pt;}
.y1ff{bottom:689.908267pt;}
.y49{bottom:692.570800pt;}
.y1a5{bottom:694.405067pt;}
.y6d{bottom:694.512800pt;}
.y11e{bottom:700.145067pt;}
.yeb{bottom:701.512267pt;}
.y1b1{bottom:701.965067pt;}
.yb8{bottom:702.845067pt;}
.yfa{bottom:705.485067pt;}
.y189{bottom:707.618400pt;}
.y1a4{bottom:710.405067pt;}
.y11d{bottom:713.745067pt;}
.y228{bottom:714.351600pt;}
.yea{bottom:717.512267pt;}
.y24{bottom:717.912933pt;}
.ye5{bottom:717.965067pt;}
.y48{bottom:722.090800pt;}
.y11c{bottom:727.345067pt;}
.yf9{bottom:727.725067pt;}
.y188{bottom:728.791733pt;}
.y8d{bottom:731.951600pt;}
.y23{bottom:733.912933pt;}
.yb7{bottom:733.965067pt;}
.y6c{bottom:734.472800pt;}
.y47{bottom:736.490800pt;}
.y118{bottom:746.272667pt;}
.y3{bottom:747.614533pt;}
.ye9{bottom:748.630400pt;}
.y8c{bottom:749.551600pt;}
.y22{bottom:749.912933pt;}
.yb6{bottom:749.965067pt;}
.y6b{bottom:750.472800pt;}
.y46{bottom:750.890800pt;}
.y21{bottom:805.228533pt;}
.h9{height:24.565833pt;}
.hb{height:33.377604pt;}
.h4{height:36.000000pt;}
.h2{height:38.145833pt;}
.ha{height:38.645833pt;}
.h12{height:39.157552pt;}
.hf{height:40.000000pt;}
.h13{height:41.061198pt;}
.hd{height:42.914062pt;}
.h7{height:43.476562pt;}
.h8{height:43.477096pt;}
.h16{height:44.000000pt;}
.h6{height:44.156250pt;}
.he{height:47.682292pt;}
.h15{height:48.000000pt;}
.h17{height:48.046875pt;}
.h10{height:48.307292pt;}
.hc{height:49.062500pt;}
.h11{height:52.450521pt;}
.h5{height:57.218750pt;}
.h3{height:66.755208pt;}
.h14{height:68.261198pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.xa{left:77.024133pt;}
.x71{left:78.991467pt;}
.x5{left:80.260800pt;}
.x6b{left:81.715333pt;}
.x1a{left:85.724000pt;}
.x10{left:88.550800pt;}
.x36{left:90.185467pt;}
.xc{left:93.486400pt;}
.x6a{left:94.483867pt;}
.x6c{left:95.777467pt;}
.x11{left:96.729467pt;}
.xe{left:97.655067pt;}
.x6d{left:99.109467pt;}
.x72{left:100.134267pt;}
.x6e{left:102.103200pt;}
.x37{left:103.785467pt;}
.x7{left:108.440267pt;}
.x73{left:109.550267pt;}
.x38{left:117.385467pt;}
.x1b{left:119.588133pt;}
.x39{left:121.159467pt;}
.x9{left:123.294133pt;}
.x18{left:124.704267pt;}
.x12{left:131.500133pt;}
.x5f{left:134.748133pt;}
.x17{left:138.300133pt;}
.x3a{left:140.086133pt;}
.x13{left:145.100133pt;}
.x5d{left:148.359467pt;}
.x19{left:151.904267pt;}
.x3b{left:153.686133pt;}
.x6f{left:158.379200pt;}
.xb{left:161.988133pt;}
.x1c{left:165.714800pt;}
.x3c{left:167.286133pt;}
.x1d{left:169.488800pt;}
.x3e{left:171.060133pt;}
.x14{left:172.535600pt;}
.x5e{left:179.333467pt;}
.x3d{left:180.886133pt;}
.x1e{left:183.088800pt;}
.x3f{left:184.660133pt;}
.x1f{left:196.688800pt;}
.x15{left:198.092267pt;}
.x40{left:202.034133pt;}
.x60{left:210.296133pt;}
.x20{left:214.062800pt;}
.x41{left:215.634133pt;}
.x21{left:227.662800pt;}
.xd{left:229.417067pt;}
.x42{left:233.008133pt;}
.x22{left:241.262800pt;}
.x43{left:246.608133pt;}
.x6{left:248.120800pt;}
.x8{left:260.856267pt;}
.x44{left:265.534800pt;}
.xf{left:271.337733pt;}
.x23{left:273.789467pt;}
.x25{left:277.563467pt;}
.x45{left:279.134800pt;}
.x47{left:282.908800pt;}
.x24{left:287.389467pt;}
.x61{left:291.159467pt;}
.x46{left:292.734800pt;}
.x26{left:294.937467pt;}
.x49{left:296.497467pt;}
.x16{left:300.137600pt;}
.x27{left:308.537467pt;}
.x4a{left:310.097467pt;}
.x4{left:311.810533pt;}
.x48{left:313.882800pt;}
.x62{left:325.907467pt;}
.x28{left:327.464133pt;}
.x4b{left:332.809467pt;}
.x63{left:339.507467pt;}
.x29{left:341.064133pt;}
.x4c{left:346.409467pt;}
.x2a{left:354.664133pt;}
.x64{left:356.881467pt;}
.x2b{left:358.438133pt;}
.x4d{left:360.009467pt;}
.x4e{left:363.783467pt;}
.x65{left:370.481467pt;}
.x2c{left:372.038133pt;}
.x4f{left:377.383467pt;}
.x66{left:384.081467pt;}
.x2d{left:390.964800pt;}
.x50{left:396.310133pt;}
.x67{left:397.681467pt;}
.x2e{left:404.564800pt;}
.x51{left:409.910133pt;}
.x68{left:411.281467pt;}
.x58{left:413.684133pt;}
.x2f{left:418.164800pt;}
.x30{left:421.938800pt;}
.x52{left:423.510133pt;}
.x59{left:431.058133pt;}
.x31{left:435.538800pt;}
.x53{left:440.884133pt;}
.x69{left:443.808133pt;}
.x5a{left:448.432133pt;}
.x3{left:451.884533pt;}
.x32{left:452.912800pt;}
.x54{left:454.484133pt;}
.x5b{left:465.806133pt;}
.x55{left:468.084133pt;}
.x33{left:471.839467pt;}
.x56{left:481.684133pt;}
.x5c{left:483.180133pt;}
.x34{left:485.439467pt;}
.x57{left:495.284133pt;}
.x35{left:499.039467pt;}
.x1{left:517.362933pt;}
.x70{left:529.133867pt;}
}




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