
    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_2a2c41f75a41ca8ea7be6d8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d91837c30e66cb804dca3df9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062000;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_7fc0b61347476617bad78d6b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.066000;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_d8d2c6ab005d84f73cdfc5e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.027000;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_31e7a50938f58b2c6c306bf9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_31e7a50938f58b2c6c306bf9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.004000;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_a625a4e655dc52d27df476af.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003000;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_730965f0f7c80debcd7acd6a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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;}
.m3{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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.985000px;}
.v1{vertical-align:17.958000px;}
.ls5{letter-spacing:-1.242000px;}
.lsb{letter-spacing:-0.675000px;}
.ls10{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.324000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.486000px;}
.lsf{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.787050px;}
.ls7{letter-spacing:1.260000px;}
.lsa{letter-spacing:1.350000px;}
.ls2{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.800000px;}
.ls4{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.520000px;}
.ls1{letter-spacing:4.500000px;}
.lsd{letter-spacing:438.998910px;}
.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;}
}
.ws4{word-spacing:-20.448000px;}
.ws1{word-spacing:-19.740000px;}
.ws3e{word-spacing:-17.040000px;}
.ws3{word-spacing:-13.632000px;}
.ws74{word-spacing:-13.500000px;}
.ws18{word-spacing:-12.810000px;}
.wscd{word-spacing:-12.780000px;}
.ws10c{word-spacing:-12.192000px;}
.ws2{word-spacing:-12.000000px;}
.ws10b{word-spacing:-11.760000px;}
.ws10d{word-spacing:-11.424000px;}
.wsbb{word-spacing:-11.250000px;}
.ws17{word-spacing:-10.668000px;}
.wsc1{word-spacing:-10.500000px;}
.ws3d{word-spacing:-7.870500px;}
.ws33{word-spacing:-6.048000px;}
.ws86{word-spacing:-5.616000px;}
.wsf4{word-spacing:-4.968000px;}
.wse3{word-spacing:-4.752000px;}
.wsd4{word-spacing:-4.158000px;}
.wse7{word-spacing:-4.050000px;}
.ws85{word-spacing:-3.996000px;}
.ws34{word-spacing:-3.888000px;}
.ws45{word-spacing:-3.618000px;}
.wsfc{word-spacing:-3.564000px;}
.ws22{word-spacing:-3.456000px;}
.ws6b{word-spacing:-3.348000px;}
.ws8f{word-spacing:-3.240000px;}
.ws31{word-spacing:-3.186000px;}
.ws5b{word-spacing:-3.078000px;}
.ws1e{word-spacing:-3.024000px;}
.ws29{word-spacing:-2.862000px;}
.ws1f{word-spacing:-2.700000px;}
.wse2{word-spacing:-2.646000px;}
.wsd5{word-spacing:-2.538000px;}
.wse5{word-spacing:-2.430000px;}
.ws28{word-spacing:-2.376000px;}
.ws4a{word-spacing:-2.322000px;}
.wsfd{word-spacing:-2.268000px;}
.ws56{word-spacing:-2.214000px;}
.ws52{word-spacing:-2.160000px;}
.ws66{word-spacing:-2.106000px;}
.wsad{word-spacing:-2.052000px;}
.ws2f{word-spacing:-1.998000px;}
.ws54{word-spacing:-1.944000px;}
.ws7{word-spacing:-1.890000px;}
.ws82{word-spacing:-1.836000px;}
.ws55{word-spacing:-1.800000px;}
.ws3a{word-spacing:-1.728000px;}
.wscf{word-spacing:-1.674000px;}
.wse0{word-spacing:-1.566000px;}
.ws27{word-spacing:-1.458000px;}
.ws5a{word-spacing:-1.404000px;}
.wsca{word-spacing:-1.350000px;}
.ws62{word-spacing:-1.296000px;}
.ws5{word-spacing:-1.242000px;}
.wse6{word-spacing:-1.188000px;}
.ws3c{word-spacing:-1.134000px;}
.ws2b{word-spacing:-1.080000px;}
.ws2d{word-spacing:-1.026000px;}
.ws9f{word-spacing:-0.972000px;}
.ws35{word-spacing:-0.918000px;}
.wsf6{word-spacing:-0.864000px;}
.ws51{word-spacing:-0.810000px;}
.ws61{word-spacing:-0.756000px;}
.ws8a{word-spacing:-0.648000px;}
.ws109{word-spacing:-0.594000px;}
.ws19{word-spacing:-0.486000px;}
.wsf{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.378000px;}
.ws10e{word-spacing:-0.336000px;}
.wsb3{word-spacing:-0.324000px;}
.ws4d{word-spacing:-0.162000px;}
.ws6f{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.wsf9{word-spacing:0.054000px;}
.ws24{word-spacing:0.108000px;}
.ws7f{word-spacing:0.216000px;}
.wsd6{word-spacing:0.270000px;}
.ws71{word-spacing:0.324000px;}
.ws43{word-spacing:0.378000px;}
.ws1d{word-spacing:0.432000px;}
.ws12{word-spacing:0.486000px;}
.ws106{word-spacing:0.540000px;}
.ws4c{word-spacing:0.648000px;}
.wsf0{word-spacing:0.702000px;}
.ws4e{word-spacing:0.756000px;}
.wsf5{word-spacing:0.810000px;}
.ws1b{word-spacing:0.864000px;}
.ws8d{word-spacing:0.918000px;}
.ws107{word-spacing:0.972000px;}
.wsea{word-spacing:1.026000px;}
.ws9e{word-spacing:1.134000px;}
.wsf1{word-spacing:1.242000px;}
.ws2e{word-spacing:1.296000px;}
.ws5c{word-spacing:1.350000px;}
.wsd2{word-spacing:1.404000px;}
.wse8{word-spacing:1.458000px;}
.wsa9{word-spacing:1.512000px;}
.ws99{word-spacing:1.620000px;}
.ws102{word-spacing:1.674000px;}
.ws38{word-spacing:1.836000px;}
.wsd7{word-spacing:1.890000px;}
.ws7a{word-spacing:1.944000px;}
.wsd8{word-spacing:1.998000px;}
.wsb5{word-spacing:2.052000px;}
.ws9{word-spacing:2.106000px;}
.ws36{word-spacing:2.160000px;}
.ws6a{word-spacing:2.214000px;}
.ws21{word-spacing:2.268000px;}
.ws10{word-spacing:2.322000px;}
.ws2c{word-spacing:2.376000px;}
.ws84{word-spacing:2.430000px;}
.ws1c{word-spacing:2.484000px;}
.ws58{word-spacing:2.538000px;}
.ws2a{word-spacing:2.592000px;}
.ws81{word-spacing:2.700000px;}
.ws4b{word-spacing:2.808000px;}
.ws1a{word-spacing:2.862000px;}
.ws57{word-spacing:2.970000px;}
.wsae{word-spacing:3.024000px;}
.ws97{word-spacing:3.132000px;}
.ws72{word-spacing:3.186000px;}
.ws67{word-spacing:3.294000px;}
.ws3f{word-spacing:3.348000px;}
.ws39{word-spacing:3.402000px;}
.wsd0{word-spacing:3.456000px;}
.wsef{word-spacing:3.564000px;}
.ws3b{word-spacing:3.618000px;}
.wsa3{word-spacing:3.672000px;}
.wsd1{word-spacing:3.726000px;}
.wse{word-spacing:3.780000px;}
.ws9d{word-spacing:3.888000px;}
.wsda{word-spacing:3.942000px;}
.wsa5{word-spacing:3.996000px;}
.wsaf{word-spacing:4.050000px;}
.wsf7{word-spacing:4.104000px;}
.ws63{word-spacing:4.158000px;}
.ws70{word-spacing:4.266000px;}
.ws53{word-spacing:4.320000px;}
.ws6d{word-spacing:4.374000px;}
.ws6{word-spacing:4.428000px;}
.ws80{word-spacing:4.482000px;}
.ws16{word-spacing:4.536000px;}
.ws20{word-spacing:4.590000px;}
.wsde{word-spacing:4.644000px;}
.wsb2{word-spacing:4.698000px;}
.wsd3{word-spacing:4.806000px;}
.ws90{word-spacing:4.860000px;}
.ws79{word-spacing:4.968000px;}
.wsec{word-spacing:5.022000px;}
.wsdc{word-spacing:5.076000px;}
.ws25{word-spacing:5.130000px;}
.ws14{word-spacing:5.238000px;}
.ws100{word-spacing:5.292000px;}
.wsa6{word-spacing:5.346000px;}
.ws89{word-spacing:5.454000px;}
.ws83{word-spacing:5.508000px;}
.ws11{word-spacing:5.670000px;}
.ws42{word-spacing:5.724000px;}
.wsa8{word-spacing:5.778000px;}
.ws44{word-spacing:5.886000px;}
.ws26{word-spacing:5.940000px;}
.wsdf{word-spacing:5.994000px;}
.ws105{word-spacing:6.048000px;}
.wsee{word-spacing:6.102000px;}
.ws8{word-spacing:6.210000px;}
.ws96{word-spacing:6.264000px;}
.ws8c{word-spacing:6.318000px;}
.ws9b{word-spacing:6.372000px;}
.ws98{word-spacing:6.426000px;}
.ws46{word-spacing:6.534000px;}
.wsff{word-spacing:6.588000px;}
.ws9c{word-spacing:6.642000px;}
.ws50{word-spacing:6.750000px;}
.ws47{word-spacing:6.804000px;}
.ws5f{word-spacing:6.858000px;}
.ws4f{word-spacing:6.912000px;}
.wsb1{word-spacing:6.966000px;}
.ws95{word-spacing:7.074000px;}
.wse9{word-spacing:7.182000px;}
.ws92{word-spacing:7.236000px;}
.ws37{word-spacing:7.290000px;}
.wsb{word-spacing:7.344000px;}
.ws87{word-spacing:7.398000px;}
.ws6c{word-spacing:7.452000px;}
.wsfa{word-spacing:7.506000px;}
.ws101{word-spacing:7.668000px;}
.ws6e{word-spacing:7.776000px;}
.wseb{word-spacing:7.884000px;}
.ws13{word-spacing:7.938000px;}
.wsf8{word-spacing:8.100000px;}
.wsfe{word-spacing:8.154000px;}
.wsa4{word-spacing:8.262000px;}
.ws7c{word-spacing:8.316000px;}
.ws5d{word-spacing:8.370000px;}
.ws5e{word-spacing:8.424000px;}
.ws48{word-spacing:8.586000px;}
.ws7b{word-spacing:8.640000px;}
.ws64{word-spacing:8.748000px;}
.ws30{word-spacing:8.802000px;}
.ws23{word-spacing:8.856000px;}
.ws73{word-spacing:8.910000px;}
.wsfb{word-spacing:8.964000px;}
.wsdb{word-spacing:9.072000px;}
.wsc{word-spacing:9.126000px;}
.wsed{word-spacing:9.234000px;}
.ws78{word-spacing:9.288000px;}
.ws59{word-spacing:9.612000px;}
.ws9a{word-spacing:9.666000px;}
.ws68{word-spacing:9.720000px;}
.ws32{word-spacing:9.774000px;}
.ws88{word-spacing:9.882000px;}
.ws103{word-spacing:9.936000px;}
.wse1{word-spacing:9.990000px;}
.wse4{word-spacing:10.098000px;}
.wsdd{word-spacing:10.152000px;}
.wsf2{word-spacing:10.260000px;}
.ws7e{word-spacing:10.314000px;}
.ws49{word-spacing:10.368000px;}
.ws93{word-spacing:10.476000px;}
.wsd9{word-spacing:10.530000px;}
.wsb0{word-spacing:10.638000px;}
.wsd{word-spacing:10.692000px;}
.wsf3{word-spacing:11.016000px;}
.ws77{word-spacing:11.124000px;}
.wsac{word-spacing:11.286000px;}
.ws91{word-spacing:11.664000px;}
.ws8b{word-spacing:11.718000px;}
.wsa{word-spacing:11.934000px;}
.ws41{word-spacing:11.988000px;}
.ws8e{word-spacing:12.096000px;}
.wsab{word-spacing:12.150000px;}
.ws7d{word-spacing:12.474000px;}
.ws104{word-spacing:12.582000px;}
.ws75{word-spacing:12.960000px;}
.wsa1{word-spacing:13.068000px;}
.ws76{word-spacing:13.230000px;}
.wsb4{word-spacing:13.608000px;}
.ws60{word-spacing:13.662000px;}
.ws94{word-spacing:15.390000px;}
.wsa7{word-spacing:17.226000px;}
.ws65{word-spacing:17.820000px;}
.ws10a{word-spacing:17.982000px;}
.ws108{word-spacing:18.036000px;}
.ws40{word-spacing:20.250000px;}
.ws69{word-spacing:20.844000px;}
.wsa2{word-spacing:22.194000px;}
.wsaa{word-spacing:31.212000px;}
.wsa0{word-spacing:37.584000px;}
.wsc9{word-spacing:96.030000px;}
.wsc8{word-spacing:121.808400px;}
.wsb6{word-spacing:129.060000px;}
.wsb8{word-spacing:151.425000px;}
.wsc5{word-spacing:164.745000px;}
.wsbd{word-spacing:165.960000px;}
.wsbe{word-spacing:169.020000px;}
.wsc2{word-spacing:170.955000px;}
.wsbf{word-spacing:172.845000px;}
.wsc7{word-spacing:176.940000px;}
.wsc4{word-spacing:180.180000px;}
.wsc3{word-spacing:180.225000px;}
.wsb7{word-spacing:181.035000px;}
.wsc6{word-spacing:185.265000px;}
.wsbc{word-spacing:194.040000px;}
.wsc0{word-spacing:196.785000px;}
.wsba{word-spacing:201.015000px;}
.wscc{word-spacing:206.448645px;}
.wsb9{word-spacing:213.480000px;}
.wscb{word-spacing:295.470000px;}
.wsce{word-spacing:385.470000px;}
._b{margin-left:-663.412200px;}
._5{margin-left:-662.114400px;}
._9a{margin-left:-660.216000px;}
._a6{margin-left:-658.965000px;}
._c{margin-left:-15.378000px;}
._2{margin-left:-7.866000px;}
._4{margin-left:-4.140000px;}
._1{margin-left:-2.736000px;}
._0{margin-left:-1.344000px;}
._3{width:1.242000px;}
._11{width:3.015000px;}
._7{width:5.940000px;}
._6{width:8.856000px;}
._a7{width:53.041200px;}
._8{width:66.196800px;}
._a2{width:77.754000px;}
._6f{width:80.595000px;}
._97{width:81.765000px;}
._71{width:84.870000px;}
._85{width:86.085000px;}
._70{width:89.100000px;}
._84{width:91.215000px;}
._72{width:97.605000px;}
._8c{width:99.180000px;}
._4d{width:102.555000px;}
._74{width:104.625000px;}
._87{width:105.975000px;}
._6d{width:107.280000px;}
._6e{width:110.385000px;}
._94{width:111.870000px;}
._88{width:113.130000px;}
._89{width:115.425000px;}
._95{width:118.170000px;}
._7b{width:119.700000px;}
._76{width:124.605000px;}
._78{width:128.880000px;}
._77{width:133.110000px;}
._93{width:134.910000px;}
._79{width:136.665000px;}
._60{width:140.670000px;}
._69{width:141.795000px;}
._6a{width:145.395000px;}
._81{width:149.085000px;}
._61{width:151.065000px;}
._75{width:154.395000px;}
._66{width:155.475000px;}
._65{width:157.680000px;}
._64{width:158.805000px;}
._8e{width:160.155000px;}
._5e{width:162.855000px;}
._68{width:165.330000px;}
._5f{width:166.500000px;}
._67{width:168.570000px;}
._91{width:170.955000px;}
._10{width:173.520000px;}
._62{width:175.635000px;}
._90{width:178.290000px;}
._f{width:183.195000px;}
._9{width:184.725000px;}
._16{width:186.435000px;}
._3d{width:188.010000px;}
._3f{width:189.360000px;}
._7f{width:191.340000px;}
._80{width:194.445000px;}
._12{width:196.830000px;}
._3e{width:199.395000px;}
._82{width:201.150000px;}
._41{width:202.500000px;}
._46{width:203.895000px;}
._42{width:205.290000px;}
._23{width:206.325000px;}
._2c{width:207.765000px;}
._13{width:208.980000px;}
._17{width:210.960000px;}
._1c{width:212.850000px;}
._e{width:214.965000px;}
._44{width:216.315000px;}
._15{width:217.440000px;}
._4a{width:218.610000px;}
._31{width:219.870000px;}
._3c{width:221.445000px;}
._48{width:223.245000px;}
._1b{width:224.730000px;}
._5c{width:227.295000px;}
._38{width:229.050000px;}
._4f{width:230.715000px;}
._32{width:232.560000px;}
._25{width:233.865000px;}
._30{width:236.295000px;}
._29{width:237.780000px;}
._20{width:239.085000px;}
._1f{width:240.435000px;}
._18{width:241.740000px;}
._1e{width:243.405000px;}
._1a{width:244.440000px;}
._28{width:246.330000px;}
._36{width:247.365000px;}
._22{width:248.490000px;}
._1d{width:250.560000px;}
._24{width:252.405000px;}
._2d{width:253.935000px;}
._a{width:256.905000px;}
._2e{width:262.935000px;}
._49{width:264.690000px;}
._8a{width:266.670000px;}
._33{width:268.065000px;}
._26{width:269.640000px;}
._2a{width:271.305000px;}
._7e{width:281.778000px;}
._5d{width:284.433000px;}
._73{width:308.964000px;}
._a5{width:310.365000px;}
._a3{width:324.180000px;}
._4c{width:335.559000px;}
._2f{width:337.764000px;}
._8f{width:342.486000px;}
._9d{width:355.635000px;}
._4b{width:359.010000px;}
._a0{width:364.095000px;}
._9c{width:367.740000px;}
._9e{width:390.459000px;}
._6b{width:396.630000px;}
._98{width:398.829000px;}
._7c{width:401.439000px;}
._92{width:405.675000px;}
._96{width:406.704000px;}
._99{width:408.285000px;}
._63{width:409.725000px;}
._9f{width:424.980000px;}
._a1{width:434.173800px;}
._34{width:462.684000px;}
._7a{width:473.985000px;}
._51{width:492.300000px;}
._4e{width:508.761000px;}
._3b{width:510.840000px;}
._3a{width:514.215000px;}
._58{width:516.060000px;}
._54{width:518.445000px;}
._56{width:520.065000px;}
._59{width:524.160000px;}
._57{width:525.330000px;}
._5b{width:528.525000px;}
._52{width:531.450000px;}
._55{width:534.555000px;}
._5a{width:536.760000px;}
._39{width:543.549000px;}
._6c{width:570.510000px;}
._9b{width:573.165000px;}
._37{width:589.854000px;}
._47{width:594.804000px;}
._86{width:601.329000px;}
._8d{width:606.324000px;}
._7d{width:607.770000px;}
._35{width:627.300000px;}
._83{width:638.505000px;}
._8b{width:646.155000px;}
._27{width:660.006000px;}
._2b{width:668.025000px;}
._a4{width:697.860000px;}
._21{width:741.546000px;}
._43{width:748.206000px;}
._53{width:752.796000px;}
._45{width:773.865000px;}
._14{width:802.215000px;}
._19{width:805.680000px;}
._50{width:816.930000px;}
._40{width:823.590000px;}
._d{width:859.680000px;}
.fc3{color:rgb(99,100,102);}
.fc1{color:rgb(166,27,17);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:26.235000px;}
.fs8{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y266{bottom:45.024000px;}
.y1fe{bottom:45.851100px;}
.y1cf{bottom:59.231550px;}
.y180{bottom:63.779550px;}
.y265{bottom:64.518000px;}
.y181{bottom:64.595550px;}
.y1fd{bottom:65.345100px;}
.y5{bottom:66.525004px;}
.y4e{bottom:66.816600px;}
.yd6{bottom:67.904700px;}
.y326{bottom:68.035050px;}
.y128{bottom:72.894900px;}
.yba{bottom:79.830750px;}
.y264{bottom:84.012000px;}
.y325{bottom:84.535050px;}
.y1fc{bottom:84.839100px;}
.y4d{bottom:86.310600px;}
.yd5{bottom:87.398700px;}
.y89{bottom:90.807600px;}
.y308{bottom:92.055150px;}
.y127{bottom:92.388900px;}
.y146{bottom:94.696950px;}
.y4{bottom:97.125005px;}
.y2ca{bottom:99.531600px;}
.y33{bottom:100.649100px;}
.y324{bottom:101.035050px;}
.y263{bottom:103.506000px;}
.y1fb{bottom:104.333100px;}
.y4c{bottom:105.804600px;}
.y307{bottom:110.055150px;}
.y88{bottom:110.301600px;}
.yd4{bottom:111.150600px;}
.y126{bottom:111.882900px;}
.y145{bottom:114.190950px;}
.y32{bottom:117.149100px;}
.y2c9{bottom:117.531600px;}
.y323{bottom:117.535050px;}
.y262{bottom:123.006000px;}
.y1fa{bottom:123.827100px;}
.y4b{bottom:125.298600px;}
.y290{bottom:127.107750px;}
.y306{bottom:128.055150px;}
.y87{bottom:129.795600px;}
.y244{bottom:130.233150px;}
.yb9{bottom:133.391100px;}
.y31{bottom:133.649100px;}
.y144{bottom:133.684950px;}
.y2c8{bottom:135.531600px;}
.y322{bottom:138.283050px;}
.y21{bottom:139.264499px;}
.y125{bottom:139.886850px;}
.y17f{bottom:142.323600px;}
.y1f9{bottom:143.321100px;}
.y4a{bottom:144.792600px;}
.y305{bottom:146.055150px;}
.y28f{bottom:146.601750px;}
.y86{bottom:149.289600px;}
.y243{bottom:149.727150px;}
.y30{bottom:150.149100px;}
.y261{bottom:151.067700px;}
.yb8{bottom:152.885100px;}
.y143{bottom:153.178950px;}
.y2c7{bottom:153.531600px;}
.y321{bottom:154.783050px;}
.y17e{bottom:161.817600px;}
.y1f8{bottom:162.815100px;}
.yf4{bottom:163.048350px;}
.y304{bottom:164.055150px;}
.y49{bottom:164.286600px;}
.y28e{bottom:166.095750px;}
.y2f{bottom:166.649100px;}
.y242{bottom:169.221150px;}
.y260{bottom:170.561700px;}
.y320{bottom:171.283050px;}
.y2c6{bottom:171.531600px;}
.yb7{bottom:172.379100px;}
.y142{bottom:172.672950px;}
.y85{bottom:177.288600px;}
.yf3{bottom:178.044600px;}
.y124{bottom:180.688800px;}
.y17d{bottom:181.311600px;}
.y303{bottom:182.055150px;}
.y1f7{bottom:182.309100px;}
.y2e{bottom:183.149100px;}
.y48{bottom:183.780600px;}
.y28d{bottom:185.589750px;}
.y188{bottom:186.309750px;}
.y1c7{bottom:186.354750px;}
.y1c3{bottom:186.568500px;}
.y182{bottom:186.804750px;}
.y192{bottom:186.875700px;}
.y18e{bottom:186.886950px;}
.y184{bottom:186.894750px;}
.y196{bottom:186.906000px;}
.y1c4{bottom:186.917250px;}
.y1ca{bottom:186.951000px;}
.y18d{bottom:186.999450px;}
.y183{bottom:187.007250px;}
.y31f{bottom:187.783050px;}
.y241{bottom:188.715150px;}
.y2c5{bottom:189.531600px;}
.y25f{bottom:190.055700px;}
.yb6{bottom:191.873100px;}
.y141{bottom:192.166950px;}
.yf2{bottom:193.040850px;}
.y84{bottom:196.782600px;}
.y18{bottom:196.933500px;}
.y191{bottom:198.440700px;}
.y187{bottom:198.482250px;}
.y1c6{bottom:198.516000px;}
.y189{bottom:199.067250px;}
.y1c8{bottom:199.112250px;}
.y190{bottom:199.216950px;}
.y186{bottom:199.247250px;}
.y1c5{bottom:199.269750px;}
.y194{bottom:199.610700px;}
.y18a{bottom:199.618500px;}
.y1ce{bottom:199.618800px;}
.y18f{bottom:199.621950px;}
.y185{bottom:199.629750px;}
.y1cd{bottom:199.630050px;}
.y193{bottom:199.633200px;}
.y18c{bottom:199.641000px;}
.y1cc{bottom:199.641300px;}
.y2d{bottom:199.649100px;}
.y18b{bottom:199.652250px;}
.y1cb{bottom:199.652550px;}
.y197{bottom:199.663500px;}
.y1c9{bottom:199.674750px;}
.y302{bottom:200.055150px;}
.y123{bottom:200.182800px;}
.y17c{bottom:200.805600px;}
.y1f6{bottom:201.803100px;}
.y47{bottom:203.274600px;}
.y31e{bottom:204.283050px;}
.y28c{bottom:205.083750px;}
.y1e2{bottom:207.101850px;}
.y1d4{bottom:207.114750px;}
.y1da{bottom:207.126000px;}
.y2c4{bottom:207.531600px;}
.y1d8{bottom:207.688500px;}
.y1e0{bottom:207.698100px;}
.y1df{bottom:207.754350px;}
.y1d7{bottom:207.756000px;}
.y1dc{bottom:207.765600px;}
.y1d5{bottom:207.767250px;}
.y1e1{bottom:207.788100px;}
.y1d2{bottom:207.789750px;}
.y1d3{bottom:207.801000px;}
.y1d9{bottom:207.812250px;}
.y1e3{bottom:207.866850px;}
.y1d1{bottom:207.891000px;}
.yf1{bottom:208.037100px;}
.y240{bottom:208.209150px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y25e{bottom:209.549700px;}
.yb5{bottom:211.367100px;}
.y140{bottom:211.660950px;}
.y2c{bottom:216.149100px;}
.y83{bottom:216.276600px;}
.y301{bottom:218.055150px;}
.y122{bottom:219.676800px;}
.y17b{bottom:220.299600px;}
.y1dd{bottom:220.511850px;}
.y1de{bottom:220.523100px;}
.y1d6{bottom:220.536000px;}
.y1db{bottom:220.547250px;}
.y31d{bottom:220.783050px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y46{bottom:222.768600px;}
.yf0{bottom:223.033350px;}
.y2c3{bottom:225.531600px;}
.y23f{bottom:227.703150px;}
.y25d{bottom:229.043700px;}
.y1f5{bottom:229.802100px;}
.y13f{bottom:231.154950px;}
.y2b{bottom:232.649100px;}
.y28b{bottom:233.087700px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y300{bottom:236.055150px;}
.y31c{bottom:237.283050px;}
.yef{bottom:238.029600px;}
.y121{bottom:239.170800px;}
.yb4{bottom:239.371050px;}
.y17a{bottom:239.793600px;}
.y45{bottom:242.262600px;}
.y2c2{bottom:243.531600px;}
.y82{bottom:244.388550px;}
.y23e{bottom:247.197150px;}
.y2a{bottom:249.149100px;}
.y1f4{bottom:249.296100px;}
.yee{bottom:253.025850px;}
.y31b{bottom:253.783050px;}
.y2ff{bottom:254.055150px;}
.y25c{bottom:257.042700px;}
.y120{bottom:258.664800px;}
.y13e{bottom:259.153950px;}
.y179{bottom:259.287600px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y2c1{bottom:261.531600px;}
.y44{bottom:261.756600px;}
.y81{bottom:263.882550px;}
.y23d{bottom:266.691150px;}
.y1f3{bottom:268.790100px;}
.y31a{bottom:270.283050px;}
.y2fe{bottom:272.055150px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y25b{bottom:276.536700px;}
.y11f{bottom:278.158800px;}
.yed{bottom:278.473350px;}
.y13d{bottom:278.647950px;}
.y178{bottom:278.781600px;}
.y2c0{bottom:279.531600px;}
.yb3{bottom:280.209000px;}
.y43{bottom:281.250600px;}
.y80{bottom:283.376550px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y28a{bottom:285.351450px;}
.y23c{bottom:286.185150px;}
.y319{bottom:286.783050px;}
.y1f2{bottom:288.284100px;}
.y2fd{bottom:290.055150px;}
.y29{bottom:291.161100px;}
.yec{bottom:293.469600px;}
.y25a{bottom:296.030700px;}
.y2bf{bottom:297.531600px;}
.y11e{bottom:297.652800px;}
.y13c{bottom:298.141950px;}
.yb2{bottom:299.703000px;}
.y42{bottom:300.744600px;}
.y7f{bottom:302.870550px;}
.y318{bottom:303.283050px;}
.y23b{bottom:305.679150px;}
.y177{bottom:307.033200px;}
.y28{bottom:307.661100px;}
.y1f1{bottom:307.778100px;}
.y2fc{bottom:308.055150px;}
.yeb{bottom:308.465850px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y289{bottom:313.355400px;}
.y2be{bottom:315.531600px;}
.y11d{bottom:317.146800px;}
.y13b{bottom:317.635950px;}
.yb1{bottom:319.197000px;}
.y317{bottom:319.783050px;}
.y41{bottom:320.238600px;}
.y7e{bottom:322.364550px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yea{bottom:323.462100px;}
.y259{bottom:324.029700px;}
.y27{bottom:324.161100px;}
.y23a{bottom:325.173150px;}
.y2fb{bottom:326.055150px;}
.y176{bottom:326.527200px;}
.y2bd{bottom:333.531600px;}
.y1f0{bottom:335.777100px;}
.y316{bottom:336.283050px;}
.y13a{bottom:337.129950px;}
.ye9{bottom:338.458350px;}
.yb0{bottom:338.691000px;}
.y40{bottom:339.732600px;}
.y7d{bottom:341.858550px;}
.y258{bottom:343.523700px;}
.y2fa{bottom:344.055150px;}
.y239{bottom:344.667150px;}
.y11c{bottom:345.150600px;}
.y175{bottom:346.021200px;}
.yf{bottom:348.133500px;}
.y2bc{bottom:351.531600px;}
.ye8{bottom:353.454600px;}
.y1ef{bottom:355.271100px;}
.y139{bottom:356.623950px;}
.yaf{bottom:358.185000px;}
.y3f{bottom:359.226600px;}
.y7c{bottom:361.352550px;}
.y2f9{bottom:362.055150px;}
.y257{bottom:363.017700px;}
.y238{bottom:364.161150px;}
.y174{bottom:365.515200px;}
.y288{bottom:365.625150px;}
.ye7{bottom:368.450850px;}
.y2bb{bottom:369.531600px;}
.y1ee{bottom:374.765100px;}
.y138{bottom:376.117950px;}
.yae{bottom:377.679000px;}
.y315{bottom:378.295050px;}
.y3e{bottom:378.720600px;}
.y2f8{bottom:380.055150px;}
.y7b{bottom:380.846550px;}
.ye6{bottom:383.447100px;}
.y237{bottom:383.655150px;}
.y173{bottom:385.009200px;}
.y287{bottom:385.119150px;}
.y11b{bottom:385.934550px;}
.ye{bottom:386.785499px;}
.y26{bottom:387.437100px;}
.y2ba{bottom:387.531600px;}
.y256{bottom:391.021800px;}
.y1ed{bottom:394.259100px;}
.y314{bottom:394.795050px;}
.y137{bottom:395.611950px;}
.yad{bottom:397.173000px;}
.y2f7{bottom:398.055150px;}
.y3d{bottom:398.214600px;}
.ye5{bottom:398.443350px;}
.y7a{bottom:400.340550px;}
.y172{bottom:404.503200px;}
.y11a{bottom:405.428550px;}
.y2b9{bottom:405.531600px;}
.yd{bottom:408.044999px;}
.y25{bottom:408.185100px;}
.y1d0{bottom:409.356000px;}
.y313{bottom:411.295050px;}
.y236{bottom:411.654150px;}
.y286{bottom:413.123100px;}
.ye4{bottom:413.439600px;}
.y1ec{bottom:413.753100px;}
.y2f6{bottom:416.055150px;}
.yac{bottom:416.667000px;}
.y3c{bottom:417.708600px;}
.y79{bottom:419.834550px;}
.y2b8{bottom:423.531600px;}
.y136{bottom:423.610950px;}
.y171{bottom:423.997200px;}
.y119{bottom:424.922550px;}
.y198{bottom:426.418500px;}
.y1ab{bottom:426.429750px;}
.ye3{bottom:428.435850px;}
.y24{bottom:428.933100px;}
.y235{bottom:431.148150px;}
.y2f5{bottom:434.055150px;}
.yab{bottom:436.161000px;}
.y78{bottom:439.328550px;}
.y2b7{bottom:441.531600px;}
.y1eb{bottom:441.752100px;}
.y135{bottom:443.104950px;}
.ye2{bottom:443.432100px;}
.y170{bottom:443.491200px;}
.y118{bottom:444.416550px;}
.y3b{bottom:445.712550px;}
.y23{bottom:449.681100px;}
.y234{bottom:450.642150px;}
.y2f4{bottom:452.055150px;}
.y312{bottom:453.307050px;}
.yaa{bottom:455.655000px;}
.y77{bottom:458.822550px;}
.y2b6{bottom:459.531600px;}
.y1ea{bottom:461.246100px;}
.y134{bottom:462.598950px;}
.y255{bottom:462.985200px;}
.y117{bottom:463.910550px;}
.y285{bottom:465.499800px;}
.ye1{bottom:468.879600px;}
.y311{bottom:469.807050px;}
.y2f3{bottom:470.055150px;}
.y233{bottom:470.136150px;}
.y16f{bottom:471.490200px;}
.ya9{bottom:475.149000px;}
.y2b5{bottom:477.531600px;}
.y1e9{bottom:480.740100px;}
.y133{bottom:482.092950px;}
.y254{bottom:482.479200px;}
.ye0{bottom:483.875850px;}
.y284{bottom:484.993800px;}
.y310{bottom:486.307050px;}
.y76{bottom:486.821550px;}
.y116{bottom:487.662450px;}
.y2f2{bottom:488.055150px;}
.y232{bottom:489.630150px;}
.y16e{bottom:490.984200px;}
.y1bc{bottom:492.669750px;}
.y1ac{bottom:492.804750px;}
.y19a{bottom:493.322250px;}
.y1ad{bottom:493.333500px;}
.y199{bottom:493.727250px;}
.ya8{bottom:494.643000px;}
.y2b4{bottom:495.531600px;}
.ydf{bottom:498.872100px;}
.y1e8{bottom:500.234100px;}
.y132{bottom:501.586950px;}
.y253{bottom:501.973200px;}
.y30f{bottom:502.807050px;}
.yc{bottom:502.864502px;}
.y283{bottom:504.487800px;}
.y2f1{bottom:506.055150px;}
.y75{bottom:506.315550px;}
.y231{bottom:509.124150px;}
.y16d{bottom:510.478200px;}
.y2b3{bottom:513.531600px;}
.yde{bottom:513.868350px;}
.ya7{bottom:514.137000px;}
.y30e{bottom:519.307050px;}
.y1e7{bottom:519.728100px;}
.yb{bottom:520.864502px;}
.y131{bottom:521.080950px;}
.y252{bottom:521.467200px;}
.y282{bottom:523.981800px;}
.y2f0{bottom:524.055150px;}
.y74{bottom:525.809550px;}
.y115{bottom:528.618150px;}
.ydd{bottom:528.864600px;}
.y16c{bottom:529.972200px;}
.y2b2{bottom:531.531600px;}
.ya6{bottom:533.631000px;}
.y30d{bottom:535.807050px;}
.ya{bottom:538.864499px;}
.y1e6{bottom:539.222100px;}
.y130{bottom:540.574950px;}
.y251{bottom:540.961200px;}
.y2ef{bottom:542.055150px;}
.y281{bottom:543.475800px;}
.ydc{bottom:543.860850px;}
.y73{bottom:545.303550px;}
.y114{bottom:548.112150px;}
.y16b{bottom:549.466200px;}
.y2b1{bottom:549.531600px;}
.y30c{bottom:552.307050px;}
.y9{bottom:556.864499px;}
.y1e5{bottom:558.716100px;}
.ydb{bottom:558.857100px;}
.y2ee{bottom:560.055150px;}
.y12f{bottom:560.068950px;}
.ya5{bottom:561.634950px;}
.y19b{bottom:561.846000px;}
.y1ae{bottom:561.857250px;}
.y19c{bottom:562.419750px;}
.y1af{bottom:562.431000px;}
.y280{bottom:562.969800px;}
.y1bd{bottom:563.139750px;}
.y72{bottom:564.797550px;}
.y2b0{bottom:567.531600px;}
.y113{bottom:567.606150px;}
.y30b{bottom:568.807050px;}
.y16a{bottom:568.960200px;}
.yda{bottom:573.853350px;}
.y2ed{bottom:578.055150px;}
.y12e{bottom:579.562950px;}
.y27f{bottom:582.463800px;}
.y71{bottom:584.291550px;}
.y30a{bottom:585.307050px;}
.y2af{bottom:585.531600px;}
.y1e4{bottom:586.720050px;}
.y112{bottom:587.100150px;}
.y169{bottom:588.454200px;}
.y2ec{bottom:596.055150px;}
.y12d{bottom:599.056950px;}
.y309{bottom:601.807050px;}
.y27e{bottom:601.957800px;}
.ya4{bottom:602.406750px;}
.y2ae{bottom:603.531600px;}
.y70{bottom:603.785550px;}
.y111{bottom:606.594150px;}
.y168{bottom:607.948200px;}
.y2eb{bottom:614.055150px;}
.yd9{bottom:617.858250px;}
.y12c{bottom:618.550950px;}
.yd3{bottom:620.046300px;}
.y27d{bottom:621.451800px;}
.y2ad{bottom:621.531600px;}
.ya3{bottom:621.900750px;}
.y6f{bottom:623.279550px;}
.y110{bottom:626.088150px;}
.y167{bottom:627.442200px;}
.y19d{bottom:628.918500px;}
.y1b0{bottom:628.929750px;}
.y1be{bottom:629.402250px;}
.y19e{bottom:629.447250px;}
.y1b1{bottom:629.458500px;}
.y22e{bottom:629.999700px;}
.y2ea{bottom:632.055150px;}
.yd8{bottom:634.358250px;}
.y12b{bottom:638.044950px;}
.y218{bottom:639.246000px;}
.y2ac{bottom:639.531600px;}
.yd2{bottom:639.540300px;}
.y27c{bottom:640.945800px;}
.ya2{bottom:641.394750px;}
.y8{bottom:645.510000px;}
.y10f{bottom:645.582150px;}
.y22d{bottom:646.499700px;}
.y250{bottom:646.936200px;}
.y2e9{bottom:650.055150px;}
.yd7{bottom:650.858250px;}
.y6e{bottom:651.283500px;}
.y217{bottom:654.242250px;}
.y166{bottom:655.441200px;}
.y2ab{bottom:657.531600px;}
.yd1{bottom:659.034300px;}
.y22c{bottom:662.999700px;}
.y10e{bottom:665.076150px;}
.y12a{bottom:666.048900px;}
.y24f{bottom:666.430200px;}
.y7{bottom:666.771000px;}
.y2e8{bottom:668.055150px;}
.y27b{bottom:668.944800px;}
.ya1{bottom:669.398700px;}
.y165{bottom:674.935200px;}
.y2aa{bottom:675.531600px;}
.yd0{bottom:678.528300px;}
.y22b{bottom:679.499700px;}
.y216{bottom:679.689750px;}
.y10d{bottom:684.570150px;}
.y24e{bottom:685.924200px;}
.y2e7{bottom:686.055150px;}
.y27a{bottom:688.438800px;}
.y19f{bottom:688.442250px;}
.y1b2{bottom:688.453500px;}
.y1a0{bottom:688.971000px;}
.y1b3{bottom:688.982250px;}
.y6d{bottom:692.174400px;}
.y2a9{bottom:693.531600px;}
.y129{bottom:694.052850px;}
.y164{bottom:694.429200px;}
.y215{bottom:694.686000px;}
.ycf{bottom:698.022300px;}
.y22a{bottom:700.247700px;}
.y2e6{bottom:704.055150px;}
.y10c{bottom:704.064150px;}
.y24d{bottom:705.418200px;}
.y279{bottom:707.932800px;}
.y2a8{bottom:711.531600px;}
.y6c{bottom:711.668400px;}
.y163{bottom:713.923200px;}
.y229{bottom:716.747700px;}
.y214{bottom:720.133500px;}
.ya0{bottom:721.739400px;}
.y2e5{bottom:722.055150px;}
.y10b{bottom:723.558150px;}
.y24c{bottom:724.912200px;}
.yce{bottom:726.021300px;}
.y6{bottom:726.298500px;}
.y278{bottom:727.426800px;}
.y2a7{bottom:729.531600px;}
.y6b{bottom:731.162400px;}
.y228{bottom:733.247700px;}
.y162{bottom:733.417200px;}
.y213{bottom:735.129750px;}
.y14b{bottom:737.316600px;}
.y2e4{bottom:740.055150px;}
.y9f{bottom:741.233400px;}
.y24b{bottom:744.406200px;}
.ycd{bottom:745.515300px;}
.y1b4{bottom:746.874750px;}
.y1bf{bottom:746.919750px;}
.y277{bottom:746.920800px;}
.y1a1{bottom:747.381000px;}
.y1a2{bottom:747.437250px;}
.y1b5{bottom:747.448500px;}
.y2a6{bottom:747.531600px;}
.y227{bottom:749.747700px;}
.y6a{bottom:750.656400px;}
.y10a{bottom:751.557150px;}
.y3{bottom:752.599495px;}
.y161{bottom:752.911200px;}
.y14a{bottom:753.816600px;}
.y4f{bottom:754.736100px;}
.y2e3{bottom:758.055150px;}
.y212{bottom:760.577250px;}
.y9e{bottom:760.727400px;}
.y24a{bottom:763.900200px;}
.ycc{bottom:765.009300px;}
.y2a5{bottom:765.531600px;}
.y226{bottom:766.247700px;}
.y276{bottom:766.414800px;}
.y69{bottom:770.150400px;}
.y149{bottom:770.316600px;}
.y109{bottom:771.051150px;}
.y160{bottom:772.405200px;}
.y2e2{bottom:776.055150px;}
.y3a{bottom:779.740050px;}
.y9d{bottom:780.221400px;}
.y225{bottom:782.747700px;}
.y2a4{bottom:783.531600px;}
.ycb{bottom:784.503300px;}
.y275{bottom:785.908800px;}
.y211{bottom:786.024750px;}
.y148{bottom:786.816600px;}
.y68{bottom:789.644400px;}
.y108{bottom:790.545150px;}
.y15f{bottom:791.899200px;}
.y2e1{bottom:794.055150px;}
.y224{bottom:799.247700px;}
.y9c{bottom:799.715400px;}
.y210{bottom:801.021000px;}
.y2a3{bottom:801.531600px;}
.y147{bottom:803.316600px;}
.yca{bottom:803.997300px;}
.y274{bottom:805.402800px;}
.y39{bottom:806.244000px;}
.y67{bottom:809.138400px;}
.y107{bottom:810.039150px;}
.y15e{bottom:811.393200px;}
.y2e0{bottom:812.055150px;}
.y223{bottom:815.747700px;}
.y1a3{bottom:816.006000px;}
.y1c0{bottom:816.489750px;}
.y1a4{bottom:816.534750px;}
.y1b7{bottom:816.546000px;}
.y1b6{bottom:816.951000px;}
.y2a2{bottom:819.531600px;}
.yc9{bottom:823.491300px;}
.y273{bottom:824.896800px;}
.y20f{bottom:826.468500px;}
.y9b{bottom:827.714400px;}
.y66{bottom:828.632400px;}
.y106{bottom:829.533150px;}
.y2df{bottom:830.055150px;}
.y15d{bottom:830.887200px;}
.y222{bottom:832.247700px;}
.y38{bottom:832.747950px;}
.y2a1{bottom:837.531600px;}
.y20e{bottom:841.464750px;}
.yc8{bottom:842.985300px;}
.y272{bottom:844.390800px;}
.y9a{bottom:847.208400px;}
.y2de{bottom:848.055150px;}
.y221{bottom:848.747700px;}
.y105{bottom:849.027150px;}
.y15c{bottom:850.381200px;}
.y2a0{bottom:855.531600px;}
.y65{bottom:856.631400px;}
.yc7{bottom:862.479300px;}
.y220{bottom:865.247700px;}
.y2dd{bottom:866.055150px;}
.y99{bottom:866.702400px;}
.y20d{bottom:866.912250px;}
.y104{bottom:868.521150px;}
.y15b{bottom:869.875200px;}
.y271{bottom:872.394750px;}
.y29f{bottom:873.531600px;}
.y64{bottom:876.125400px;}
.y249{bottom:878.380200px;}
.y2{bottom:879.369000px;}
.y20c{bottom:881.908500px;}
.yc6{bottom:881.973300px;}
.y2dc{bottom:884.055150px;}
.y1b8{bottom:884.979750px;}
.y1a5{bottom:885.058500px;}
.y1c1{bottom:885.587250px;}
.y1a6{bottom:885.632250px;}
.y1b9{bottom:885.643500px;}
.y21f{bottom:885.995700px;}
.y98{bottom:886.196400px;}
.y103{bottom:888.015150px;}
.y29e{bottom:891.531600px;}
.y63{bottom:895.619400px;}
.y15a{bottom:897.874200px;}
.yc5{bottom:901.467300px;}
.y2db{bottom:902.055150px;}
.y21e{bottom:902.495700px;}
.y97{bottom:905.690400px;}
.y20b{bottom:907.356000px;}
.y102{bottom:907.509150px;}
.y29d{bottom:909.531600px;}
.y22{bottom:914.173350px;}
.y37{bottom:914.213850px;}
.y62{bottom:915.113400px;}
.y159{bottom:917.368200px;}
.y21d{bottom:918.995700px;}
.y2da{bottom:920.055150px;}
.y270{bottom:920.416950px;}
.yc4{bottom:920.961300px;}
.y96{bottom:925.184400px;}
.y101{bottom:927.003150px;}
.y29c{bottom:927.531600px;}
.y20a{bottom:932.803500px;}
.y61{bottom:934.607400px;}
.y21c{bottom:935.495700px;}
.y158{bottom:936.862200px;}
.y2d9{bottom:938.055150px;}
.y26f{bottom:939.910950px;}
.yc3{bottom:940.455300px;}
.y95{bottom:944.678400px;}
.y29b{bottom:945.531600px;}
.y230{bottom:946.497150px;}
.y209{bottom:947.799750px;}
.y1ba{bottom:950.882250px;}
.y1c2{bottom:951.017250px;}
.y1a8{bottom:951.546000px;}
.y1a7{bottom:951.658500px;}
.y60{bottom:954.101400px;}
.y100{bottom:955.002150px;}
.y2d8{bottom:956.055150px;}
.y36{bottom:956.200350px;}
.y21b{bottom:956.243700px;}
.y157{bottom:956.356200px;}
.y94{bottom:964.172400px;}
.y22f{bottom:965.991150px;}
.y1{bottom:966.726000px;}
.yc2{bottom:968.454300px;}
.y29a{bottom:972.035550px;}
.y26e{bottom:972.162450px;}
.y208{bottom:973.247250px;}
.y5f{bottom:973.595400px;}
.y2d7{bottom:974.055150px;}
.yff{bottom:974.496150px;}
.y156{bottom:975.850200px;}
.y21a{bottom:976.991700px;}
.y93{bottom:983.672400px;}
.y248{bottom:984.355200px;}
.yc1{bottom:987.948300px;}
.y207{bottom:988.243500px;}
.y2d6{bottom:992.055150px;}
.y5e{bottom:993.089400px;}
.y219{bottom:993.491700px;}
.yfe{bottom:993.990150px;}
.y155{bottom:995.344200px;}
.y35{bottom:998.186850px;}
.y26d{bottom:1000.166400px;}
.y92{bottom:1003.166400px;}
.y247{bottom:1003.849200px;}
.yc0{bottom:1007.442300px;}
.y2d5{bottom:1010.055150px;}
.y5d{bottom:1012.583400px;}
.yfd{bottom:1013.484150px;}
.y206{bottom:1013.691000px;}
.y154{bottom:1014.838200px;}
.y299{bottom:1020.047400px;}
.y246{bottom:1023.343200px;}
.y1bb{bottom:1024.232250px;}
.y1aa{bottom:1024.896000px;}
.y1a9{bottom:1025.008500px;}
.ybf{bottom:1026.936300px;}
.y2d4{bottom:1028.055150px;}
.y205{bottom:1028.687250px;}
.y91{bottom:1031.170350px;}
.y5c{bottom:1032.077400px;}
.yfc{bottom:1032.978150px;}
.y153{bottom:1034.332200px;}
.y298{bottom:1036.547400px;}
.y34{bottom:1040.173350px;}
.y245{bottom:1042.837200px;}
.y2d3{bottom:1046.055150px;}
.ybe{bottom:1046.430300px;}
.y5b{bottom:1051.571400px;}
.y26c{bottom:1052.460150px;}
.yfb{bottom:1052.472150px;}
.y297{bottom:1053.051300px;}
.y204{bottom:1054.134750px;}
.y152{bottom:1062.331200px;}
.y2d2{bottom:1064.055150px;}
.y32e{bottom:1064.059050px;}
.ybd{bottom:1065.924300px;}
.y5a{bottom:1071.065400px;}
.y26b{bottom:1071.954150px;}
.y90{bottom:1071.960150px;}
.yfa{bottom:1071.966150px;}
.y296{bottom:1073.799300px;}
.y203{bottom:1079.573700px;}
.y151{bottom:1081.825200px;}
.y2d1{bottom:1082.055150px;}
.y32d{bottom:1082.059050px;}
.ybc{bottom:1085.418300px;}
.y295{bottom:1090.299300px;}
.y59{bottom:1090.559400px;}
.y26a{bottom:1091.448150px;}
.y8f{bottom:1091.454150px;}
.yf9{bottom:1091.460150px;}
.y2d0{bottom:1100.055150px;}
.y32c{bottom:1100.059050px;}
.y150{bottom:1101.319200px;}
.y202{bottom:1105.021200px;}
.y294{bottom:1106.803200px;}
.ybb{bottom:1109.170350px;}
.y58{bottom:1110.053400px;}
.y269{bottom:1110.942150px;}
.y8e{bottom:1110.948150px;}
.yf8{bottom:1110.954150px;}
.y2cf{bottom:1118.055150px;}
.y32b{bottom:1118.059050px;}
.y14f{bottom:1120.813200px;}
.y293{bottom:1127.551200px;}
.y57{bottom:1129.547400px;}
.y268{bottom:1130.436150px;}
.y8d{bottom:1130.442150px;}
.yf7{bottom:1130.448150px;}
.y201{bottom:1130.468700px;}
.y2ce{bottom:1136.055150px;}
.y32a{bottom:1136.059050px;}
.y54{bottom:1137.168150px;}
.y14e{bottom:1140.307200px;}
.y292{bottom:1144.051200px;}
.y267{bottom:1149.930150px;}
.y8c{bottom:1149.936150px;}
.yf6{bottom:1149.942150px;}
.y53{bottom:1150.671150px;}
.y2cd{bottom:1154.055150px;}
.y329{bottom:1154.059050px;}
.y200{bottom:1155.916200px;}
.y56{bottom:1157.551200px;}
.y14d{bottom:1159.801200px;}
.y291{bottom:1160.551200px;}
.y195{bottom:1161.712800px;}
.y52{bottom:1164.174150px;}
.y8b{bottom:1169.430150px;}
.yf5{bottom:1169.436150px;}
.y2cc{bottom:1172.055150px;}
.y328{bottom:1172.059050px;}
.y51{bottom:1177.677150px;}
.y1ff{bottom:1181.363700px;}
.y55{bottom:1185.555150px;}
.y14c{bottom:1187.805150px;}
.y8a{bottom:1188.930150px;}
.y2cb{bottom:1190.055150px;}
.y327{bottom:1190.059050px;}
.y50{bottom:1191.180150px;}
.h7{height:32.130000px;}
.h10{height:32.340000px;}
.h11{height:34.482000px;}
.hf{height:34.818000px;}
.h13{height:36.945000px;}
.h16{height:36.979200px;}
.h15{height:37.064400px;}
.h14{height:37.305000px;}
.h18{height:37.536000px;}
.hb{height:39.408000px;}
.ha{height:39.792000px;}
.he{height:44.334000px;}
.h17{height:44.766000px;}
.h6{height:45.900000px;}
.h12{height:46.200000px;}
.h3{height:48.195000px;}
.h9{height:49.740000px;}
.h2{height:55.080000px;}
.hd{height:59.688000px;}
.h5{height:78.030000px;}
.hc{height:106.260000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.779550px;}
.x5e{left:64.903050px;}
.x5d{left:68.032050px;}
.x5b{left:70.714200px;}
.x58{left:71.798550px;}
.x9{left:73.156500px;}
.x26{left:81.470850px;}
.x6{left:89.291250px;}
.x5f{left:90.415050px;}
.xb{left:93.527550px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3b{left:114.275550px;}
.x27{left:132.737100px;}
.xc{left:134.230800px;}
.x3c{left:149.455200px;}
.x28{left:151.985850px;}
.xd{left:159.678300px;}
.x3d{left:172.348950px;}
.x29{left:177.433350px;}
.xe{left:185.125800px;}
.x3e{left:195.242700px;}
.x2a{left:196.682100px;}
.x4{left:203.484001px;}
.xf{left:210.573300px;}
.xa{left:213.736500px;}
.x3f{left:218.136450px;}
.x2b{left:222.129600px;}
.x10{left:236.020800px;}
.x2c{left:241.378350px;}
.x11{left:261.468300px;}
.x40{left:263.923950px;}
.x2d{left:266.825850px;}
.x57{left:273.658350px;}
.x12{left:286.915800px;}
.x2e{left:292.273350px;}
.x41{left:309.711450px;}
.x13{left:312.363300px;}
.x2f{left:317.720850px;}
.x42{left:332.605200px;}
.x14{left:337.810800px;}
.x30{left:343.168350px;}
.x43{left:355.498950px;}
.x15{left:363.258300px;}
.x31{left:368.615850px;}
.x44{left:378.392700px;}
.x16{left:388.705800px;}
.x59{left:392.936700px;}
.x32{left:394.063350px;}
.x45{left:401.286450px;}
.x17{left:414.153300px;}
.x33{left:419.510850px;}
.x46{left:424.180200px;}
.x18{left:439.600800px;}
.x34{left:444.958350px;}
.x47{left:447.073950px;}
.x3{left:454.959000px;}
.x19{left:465.048300px;}
.x35{left:470.405850px;}
.x1a{left:490.495800px;}
.x48{left:492.861450px;}
.x36{left:495.837000px;}
.x5a{left:505.909200px;}
.x5c{left:507.315450px;}
.x1b{left:515.913450px;}
.x37{left:521.284500px;}
.x49{left:538.656000px;}
.x1c{left:541.360950px;}
.x38{left:546.732000px;}
.x4a{left:561.549750px;}
.x1d{left:566.808450px;}
.x39{left:572.179500px;}
.x4b{left:584.443500px;}
.x1e{left:592.255950px;}
.x3a{left:597.627000px;}
.x4c{left:607.337250px;}
.x1f{left:617.703450px;}
.x4d{left:630.231000px;}
.x20{left:643.150950px;}
.x4e{left:653.124750px;}
.x5{left:663.307050px;}
.x21{left:668.598450px;}
.x4f{left:676.018500px;}
.x22{left:694.045950px;}
.x50{left:698.912250px;}
.x23{left:719.493450px;}
.x51{left:721.806000px;}
.x24{left:744.940950px;}
.x52{left:767.593500px;}
.x25{left:780.245100px;}
.x53{left:790.487250px;}
.x54{left:813.381000px;}
.x56{left:815.971050px;}
.x7{left:822.640650px;}
.x55{left:836.274750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.320000pt;}
.v1{vertical-align:15.962667pt;}
.ls5{letter-spacing:-1.104000pt;}
.lsb{letter-spacing:-0.600000pt;}
.ls10{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.288000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.432000pt;}
.lsf{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.699600pt;}
.ls7{letter-spacing:1.120000pt;}
.lsa{letter-spacing:1.200000pt;}
.ls2{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.600000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.240000pt;}
.ls1{letter-spacing:4.000000pt;}
.lsd{letter-spacing:390.221253pt;}
.ws4{word-spacing:-18.176000pt;}
.ws1{word-spacing:-17.546667pt;}
.ws3e{word-spacing:-15.146667pt;}
.ws3{word-spacing:-12.117333pt;}
.ws74{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.386667pt;}
.wscd{word-spacing:-11.360000pt;}
.ws10c{word-spacing:-10.837333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws10b{word-spacing:-10.453333pt;}
.ws10d{word-spacing:-10.154667pt;}
.wsbb{word-spacing:-10.000000pt;}
.ws17{word-spacing:-9.482667pt;}
.wsc1{word-spacing:-9.333333pt;}
.ws3d{word-spacing:-6.996000pt;}
.ws33{word-spacing:-5.376000pt;}
.ws86{word-spacing:-4.992000pt;}
.wsf4{word-spacing:-4.416000pt;}
.wse3{word-spacing:-4.224000pt;}
.wsd4{word-spacing:-3.696000pt;}
.wse7{word-spacing:-3.600000pt;}
.ws85{word-spacing:-3.552000pt;}
.ws34{word-spacing:-3.456000pt;}
.ws45{word-spacing:-3.216000pt;}
.wsfc{word-spacing:-3.168000pt;}
.ws22{word-spacing:-3.072000pt;}
.ws6b{word-spacing:-2.976000pt;}
.ws8f{word-spacing:-2.880000pt;}
.ws31{word-spacing:-2.832000pt;}
.ws5b{word-spacing:-2.736000pt;}
.ws1e{word-spacing:-2.688000pt;}
.ws29{word-spacing:-2.544000pt;}
.ws1f{word-spacing:-2.400000pt;}
.wse2{word-spacing:-2.352000pt;}
.wsd5{word-spacing:-2.256000pt;}
.wse5{word-spacing:-2.160000pt;}
.ws28{word-spacing:-2.112000pt;}
.ws4a{word-spacing:-2.064000pt;}
.wsfd{word-spacing:-2.016000pt;}
.ws56{word-spacing:-1.968000pt;}
.ws52{word-spacing:-1.920000pt;}
.ws66{word-spacing:-1.872000pt;}
.wsad{word-spacing:-1.824000pt;}
.ws2f{word-spacing:-1.776000pt;}
.ws54{word-spacing:-1.728000pt;}
.ws7{word-spacing:-1.680000pt;}
.ws82{word-spacing:-1.632000pt;}
.ws55{word-spacing:-1.600000pt;}
.ws3a{word-spacing:-1.536000pt;}
.wscf{word-spacing:-1.488000pt;}
.wse0{word-spacing:-1.392000pt;}
.ws27{word-spacing:-1.296000pt;}
.ws5a{word-spacing:-1.248000pt;}
.wsca{word-spacing:-1.200000pt;}
.ws62{word-spacing:-1.152000pt;}
.ws5{word-spacing:-1.104000pt;}
.wse6{word-spacing:-1.056000pt;}
.ws3c{word-spacing:-1.008000pt;}
.ws2b{word-spacing:-0.960000pt;}
.ws2d{word-spacing:-0.912000pt;}
.ws9f{word-spacing:-0.864000pt;}
.ws35{word-spacing:-0.816000pt;}
.wsf6{word-spacing:-0.768000pt;}
.ws51{word-spacing:-0.720000pt;}
.ws61{word-spacing:-0.672000pt;}
.ws8a{word-spacing:-0.576000pt;}
.ws109{word-spacing:-0.528000pt;}
.ws19{word-spacing:-0.432000pt;}
.wsf{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.336000pt;}
.ws10e{word-spacing:-0.298667pt;}
.wsb3{word-spacing:-0.288000pt;}
.ws4d{word-spacing:-0.144000pt;}
.ws6f{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.048000pt;}
.ws24{word-spacing:0.096000pt;}
.ws7f{word-spacing:0.192000pt;}
.wsd6{word-spacing:0.240000pt;}
.ws71{word-spacing:0.288000pt;}
.ws43{word-spacing:0.336000pt;}
.ws1d{word-spacing:0.384000pt;}
.ws12{word-spacing:0.432000pt;}
.ws106{word-spacing:0.480000pt;}
.ws4c{word-spacing:0.576000pt;}
.wsf0{word-spacing:0.624000pt;}
.ws4e{word-spacing:0.672000pt;}
.wsf5{word-spacing:0.720000pt;}
.ws1b{word-spacing:0.768000pt;}
.ws8d{word-spacing:0.816000pt;}
.ws107{word-spacing:0.864000pt;}
.wsea{word-spacing:0.912000pt;}
.ws9e{word-spacing:1.008000pt;}
.wsf1{word-spacing:1.104000pt;}
.ws2e{word-spacing:1.152000pt;}
.ws5c{word-spacing:1.200000pt;}
.wsd2{word-spacing:1.248000pt;}
.wse8{word-spacing:1.296000pt;}
.wsa9{word-spacing:1.344000pt;}
.ws99{word-spacing:1.440000pt;}
.ws102{word-spacing:1.488000pt;}
.ws38{word-spacing:1.632000pt;}
.wsd7{word-spacing:1.680000pt;}
.ws7a{word-spacing:1.728000pt;}
.wsd8{word-spacing:1.776000pt;}
.wsb5{word-spacing:1.824000pt;}
.ws9{word-spacing:1.872000pt;}
.ws36{word-spacing:1.920000pt;}
.ws6a{word-spacing:1.968000pt;}
.ws21{word-spacing:2.016000pt;}
.ws10{word-spacing:2.064000pt;}
.ws2c{word-spacing:2.112000pt;}
.ws84{word-spacing:2.160000pt;}
.ws1c{word-spacing:2.208000pt;}
.ws58{word-spacing:2.256000pt;}
.ws2a{word-spacing:2.304000pt;}
.ws81{word-spacing:2.400000pt;}
.ws4b{word-spacing:2.496000pt;}
.ws1a{word-spacing:2.544000pt;}
.ws57{word-spacing:2.640000pt;}
.wsae{word-spacing:2.688000pt;}
.ws97{word-spacing:2.784000pt;}
.ws72{word-spacing:2.832000pt;}
.ws67{word-spacing:2.928000pt;}
.ws3f{word-spacing:2.976000pt;}
.ws39{word-spacing:3.024000pt;}
.wsd0{word-spacing:3.072000pt;}
.wsef{word-spacing:3.168000pt;}
.ws3b{word-spacing:3.216000pt;}
.wsa3{word-spacing:3.264000pt;}
.wsd1{word-spacing:3.312000pt;}
.wse{word-spacing:3.360000pt;}
.ws9d{word-spacing:3.456000pt;}
.wsda{word-spacing:3.504000pt;}
.wsa5{word-spacing:3.552000pt;}
.wsaf{word-spacing:3.600000pt;}
.wsf7{word-spacing:3.648000pt;}
.ws63{word-spacing:3.696000pt;}
.ws70{word-spacing:3.792000pt;}
.ws53{word-spacing:3.840000pt;}
.ws6d{word-spacing:3.888000pt;}
.ws6{word-spacing:3.936000pt;}
.ws80{word-spacing:3.984000pt;}
.ws16{word-spacing:4.032000pt;}
.ws20{word-spacing:4.080000pt;}
.wsde{word-spacing:4.128000pt;}
.wsb2{word-spacing:4.176000pt;}
.wsd3{word-spacing:4.272000pt;}
.ws90{word-spacing:4.320000pt;}
.ws79{word-spacing:4.416000pt;}
.wsec{word-spacing:4.464000pt;}
.wsdc{word-spacing:4.512000pt;}
.ws25{word-spacing:4.560000pt;}
.ws14{word-spacing:4.656000pt;}
.ws100{word-spacing:4.704000pt;}
.wsa6{word-spacing:4.752000pt;}
.ws89{word-spacing:4.848000pt;}
.ws83{word-spacing:4.896000pt;}
.ws11{word-spacing:5.040000pt;}
.ws42{word-spacing:5.088000pt;}
.wsa8{word-spacing:5.136000pt;}
.ws44{word-spacing:5.232000pt;}
.ws26{word-spacing:5.280000pt;}
.wsdf{word-spacing:5.328000pt;}
.ws105{word-spacing:5.376000pt;}
.wsee{word-spacing:5.424000pt;}
.ws8{word-spacing:5.520000pt;}
.ws96{word-spacing:5.568000pt;}
.ws8c{word-spacing:5.616000pt;}
.ws9b{word-spacing:5.664000pt;}
.ws98{word-spacing:5.712000pt;}
.ws46{word-spacing:5.808000pt;}
.wsff{word-spacing:5.856000pt;}
.ws9c{word-spacing:5.904000pt;}
.ws50{word-spacing:6.000000pt;}
.ws47{word-spacing:6.048000pt;}
.ws5f{word-spacing:6.096000pt;}
.ws4f{word-spacing:6.144000pt;}
.wsb1{word-spacing:6.192000pt;}
.ws95{word-spacing:6.288000pt;}
.wse9{word-spacing:6.384000pt;}
.ws92{word-spacing:6.432000pt;}
.ws37{word-spacing:6.480000pt;}
.wsb{word-spacing:6.528000pt;}
.ws87{word-spacing:6.576000pt;}
.ws6c{word-spacing:6.624000pt;}
.wsfa{word-spacing:6.672000pt;}
.ws101{word-spacing:6.816000pt;}
.ws6e{word-spacing:6.912000pt;}
.wseb{word-spacing:7.008000pt;}
.ws13{word-spacing:7.056000pt;}
.wsf8{word-spacing:7.200000pt;}
.wsfe{word-spacing:7.248000pt;}
.wsa4{word-spacing:7.344000pt;}
.ws7c{word-spacing:7.392000pt;}
.ws5d{word-spacing:7.440000pt;}
.ws5e{word-spacing:7.488000pt;}
.ws48{word-spacing:7.632000pt;}
.ws7b{word-spacing:7.680000pt;}
.ws64{word-spacing:7.776000pt;}
.ws30{word-spacing:7.824000pt;}
.ws23{word-spacing:7.872000pt;}
.ws73{word-spacing:7.920000pt;}
.wsfb{word-spacing:7.968000pt;}
.wsdb{word-spacing:8.064000pt;}
.wsc{word-spacing:8.112000pt;}
.wsed{word-spacing:8.208000pt;}
.ws78{word-spacing:8.256000pt;}
.ws59{word-spacing:8.544000pt;}
.ws9a{word-spacing:8.592000pt;}
.ws68{word-spacing:8.640000pt;}
.ws32{word-spacing:8.688000pt;}
.ws88{word-spacing:8.784000pt;}
.ws103{word-spacing:8.832000pt;}
.wse1{word-spacing:8.880000pt;}
.wse4{word-spacing:8.976000pt;}
.wsdd{word-spacing:9.024000pt;}
.wsf2{word-spacing:9.120000pt;}
.ws7e{word-spacing:9.168000pt;}
.ws49{word-spacing:9.216000pt;}
.ws93{word-spacing:9.312000pt;}
.wsd9{word-spacing:9.360000pt;}
.wsb0{word-spacing:9.456000pt;}
.wsd{word-spacing:9.504000pt;}
.wsf3{word-spacing:9.792000pt;}
.ws77{word-spacing:9.888000pt;}
.wsac{word-spacing:10.032000pt;}
.ws91{word-spacing:10.368000pt;}
.ws8b{word-spacing:10.416000pt;}
.wsa{word-spacing:10.608000pt;}
.ws41{word-spacing:10.656000pt;}
.ws8e{word-spacing:10.752000pt;}
.wsab{word-spacing:10.800000pt;}
.ws7d{word-spacing:11.088000pt;}
.ws104{word-spacing:11.184000pt;}
.ws75{word-spacing:11.520000pt;}
.wsa1{word-spacing:11.616000pt;}
.ws76{word-spacing:11.760000pt;}
.wsb4{word-spacing:12.096000pt;}
.ws60{word-spacing:12.144000pt;}
.ws94{word-spacing:13.680000pt;}
.wsa7{word-spacing:15.312000pt;}
.ws65{word-spacing:15.840000pt;}
.ws10a{word-spacing:15.984000pt;}
.ws108{word-spacing:16.032000pt;}
.ws40{word-spacing:18.000000pt;}
.ws69{word-spacing:18.528000pt;}
.wsa2{word-spacing:19.728000pt;}
.wsaa{word-spacing:27.744000pt;}
.wsa0{word-spacing:33.408000pt;}
.wsc9{word-spacing:85.360000pt;}
.wsc8{word-spacing:108.274133pt;}
.wsb6{word-spacing:114.720000pt;}
.wsb8{word-spacing:134.600000pt;}
.wsc5{word-spacing:146.440000pt;}
.wsbd{word-spacing:147.520000pt;}
.wsbe{word-spacing:150.240000pt;}
.wsc2{word-spacing:151.960000pt;}
.wsbf{word-spacing:153.640000pt;}
.wsc7{word-spacing:157.280000pt;}
.wsc4{word-spacing:160.160000pt;}
.wsc3{word-spacing:160.200000pt;}
.wsb7{word-spacing:160.920000pt;}
.wsc6{word-spacing:164.680000pt;}
.wsbc{word-spacing:172.480000pt;}
.wsc0{word-spacing:174.920000pt;}
.wsba{word-spacing:178.680000pt;}
.wscc{word-spacing:183.509907pt;}
.wsb9{word-spacing:189.760000pt;}
.wscb{word-spacing:262.640000pt;}
.wsce{word-spacing:342.640000pt;}
._b{margin-left:-589.699733pt;}
._5{margin-left:-588.546133pt;}
._9a{margin-left:-586.858667pt;}
._a6{margin-left:-585.746667pt;}
._c{margin-left:-13.669333pt;}
._2{margin-left:-6.992000pt;}
._4{margin-left:-3.680000pt;}
._1{margin-left:-2.432000pt;}
._0{margin-left:-1.194667pt;}
._3{width:1.104000pt;}
._11{width:2.680000pt;}
._7{width:5.280000pt;}
._6{width:7.872000pt;}
._a7{width:47.147733pt;}
._8{width:58.841600pt;}
._a2{width:69.114667pt;}
._6f{width:71.640000pt;}
._97{width:72.680000pt;}
._71{width:75.440000pt;}
._85{width:76.520000pt;}
._70{width:79.200000pt;}
._84{width:81.080000pt;}
._72{width:86.760000pt;}
._8c{width:88.160000pt;}
._4d{width:91.160000pt;}
._74{width:93.000000pt;}
._87{width:94.200000pt;}
._6d{width:95.360000pt;}
._6e{width:98.120000pt;}
._94{width:99.440000pt;}
._88{width:100.560000pt;}
._89{width:102.600000pt;}
._95{width:105.040000pt;}
._7b{width:106.400000pt;}
._76{width:110.760000pt;}
._78{width:114.560000pt;}
._77{width:118.320000pt;}
._93{width:119.920000pt;}
._79{width:121.480000pt;}
._60{width:125.040000pt;}
._69{width:126.040000pt;}
._6a{width:129.240000pt;}
._81{width:132.520000pt;}
._61{width:134.280000pt;}
._75{width:137.240000pt;}
._66{width:138.200000pt;}
._65{width:140.160000pt;}
._64{width:141.160000pt;}
._8e{width:142.360000pt;}
._5e{width:144.760000pt;}
._68{width:146.960000pt;}
._5f{width:148.000000pt;}
._67{width:149.840000pt;}
._91{width:151.960000pt;}
._10{width:154.240000pt;}
._62{width:156.120000pt;}
._90{width:158.480000pt;}
._f{width:162.840000pt;}
._9{width:164.200000pt;}
._16{width:165.720000pt;}
._3d{width:167.120000pt;}
._3f{width:168.320000pt;}
._7f{width:170.080000pt;}
._80{width:172.840000pt;}
._12{width:174.960000pt;}
._3e{width:177.240000pt;}
._82{width:178.800000pt;}
._41{width:180.000000pt;}
._46{width:181.240000pt;}
._42{width:182.480000pt;}
._23{width:183.400000pt;}
._2c{width:184.680000pt;}
._13{width:185.760000pt;}
._17{width:187.520000pt;}
._1c{width:189.200000pt;}
._e{width:191.080000pt;}
._44{width:192.280000pt;}
._15{width:193.280000pt;}
._4a{width:194.320000pt;}
._31{width:195.440000pt;}
._3c{width:196.840000pt;}
._48{width:198.440000pt;}
._1b{width:199.760000pt;}
._5c{width:202.040000pt;}
._38{width:203.600000pt;}
._4f{width:205.080000pt;}
._32{width:206.720000pt;}
._25{width:207.880000pt;}
._30{width:210.040000pt;}
._29{width:211.360000pt;}
._20{width:212.520000pt;}
._1f{width:213.720000pt;}
._18{width:214.880000pt;}
._1e{width:216.360000pt;}
._1a{width:217.280000pt;}
._28{width:218.960000pt;}
._36{width:219.880000pt;}
._22{width:220.880000pt;}
._1d{width:222.720000pt;}
._24{width:224.360000pt;}
._2d{width:225.720000pt;}
._a{width:228.360000pt;}
._2e{width:233.720000pt;}
._49{width:235.280000pt;}
._8a{width:237.040000pt;}
._33{width:238.280000pt;}
._26{width:239.680000pt;}
._2a{width:241.160000pt;}
._7e{width:250.469333pt;}
._5d{width:252.829333pt;}
._73{width:274.634667pt;}
._a5{width:275.880000pt;}
._a3{width:288.160000pt;}
._4c{width:298.274667pt;}
._2f{width:300.234667pt;}
._8f{width:304.432000pt;}
._9d{width:316.120000pt;}
._4b{width:319.120000pt;}
._a0{width:323.640000pt;}
._9c{width:326.880000pt;}
._9e{width:347.074667pt;}
._6b{width:352.560000pt;}
._98{width:354.514667pt;}
._7c{width:356.834667pt;}
._92{width:360.600000pt;}
._96{width:361.514667pt;}
._99{width:362.920000pt;}
._63{width:364.200000pt;}
._9f{width:377.760000pt;}
._a1{width:385.932267pt;}
._34{width:411.274667pt;}
._7a{width:421.320000pt;}
._51{width:437.600000pt;}
._4e{width:452.232000pt;}
._3b{width:454.080000pt;}
._3a{width:457.080000pt;}
._58{width:458.720000pt;}
._54{width:460.840000pt;}
._56{width:462.280000pt;}
._59{width:465.920000pt;}
._57{width:466.960000pt;}
._5b{width:469.800000pt;}
._52{width:472.400000pt;}
._55{width:475.160000pt;}
._5a{width:477.120000pt;}
._39{width:483.154667pt;}
._6c{width:507.120000pt;}
._9b{width:509.480000pt;}
._37{width:524.314667pt;}
._47{width:528.714667pt;}
._86{width:534.514667pt;}
._8d{width:538.954667pt;}
._7d{width:540.240000pt;}
._35{width:557.600000pt;}
._83{width:567.560000pt;}
._8b{width:574.360000pt;}
._27{width:586.672000pt;}
._2b{width:593.800000pt;}
._a4{width:620.320000pt;}
._21{width:659.152000pt;}
._43{width:665.072000pt;}
._53{width:669.152000pt;}
._45{width:687.880000pt;}
._14{width:713.080000pt;}
._19{width:716.160000pt;}
._50{width:726.160000pt;}
._40{width:732.080000pt;}
._d{width:764.160000pt;}
.fsa{font-size:23.320000pt;}
.fs8{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y266{bottom:40.021333pt;}
.y1fe{bottom:40.756533pt;}
.y1cf{bottom:52.650267pt;}
.y180{bottom:56.692933pt;}
.y265{bottom:57.349333pt;}
.y181{bottom:57.418267pt;}
.y1fd{bottom:58.084533pt;}
.y5{bottom:59.133337pt;}
.y4e{bottom:59.392533pt;}
.yd6{bottom:60.359733pt;}
.y326{bottom:60.475600pt;}
.y128{bottom:64.795467pt;}
.yba{bottom:70.960667pt;}
.y264{bottom:74.677333pt;}
.y325{bottom:75.142267pt;}
.y1fc{bottom:75.412533pt;}
.y4d{bottom:76.720533pt;}
.yd5{bottom:77.687733pt;}
.y89{bottom:80.717867pt;}
.y308{bottom:81.826800pt;}
.y127{bottom:82.123467pt;}
.y146{bottom:84.175067pt;}
.y4{bottom:86.333337pt;}
.y2ca{bottom:88.472533pt;}
.y33{bottom:89.465867pt;}
.y324{bottom:89.808933pt;}
.y263{bottom:92.005333pt;}
.y1fb{bottom:92.740533pt;}
.y4c{bottom:94.048533pt;}
.y307{bottom:97.826800pt;}
.y88{bottom:98.045867pt;}
.yd4{bottom:98.800533pt;}
.y126{bottom:99.451467pt;}
.y145{bottom:101.503067pt;}
.y32{bottom:104.132533pt;}
.y2c9{bottom:104.472533pt;}
.y323{bottom:104.475600pt;}
.y262{bottom:109.338667pt;}
.y1fa{bottom:110.068533pt;}
.y4b{bottom:111.376533pt;}
.y290{bottom:112.984667pt;}
.y306{bottom:113.826800pt;}
.y87{bottom:115.373867pt;}
.y244{bottom:115.762800pt;}
.yb9{bottom:118.569867pt;}
.y31{bottom:118.799200pt;}
.y144{bottom:118.831067pt;}
.y2c8{bottom:120.472533pt;}
.y322{bottom:122.918267pt;}
.y21{bottom:123.790666pt;}
.y125{bottom:124.343867pt;}
.y17f{bottom:126.509867pt;}
.y1f9{bottom:127.396533pt;}
.y4a{bottom:128.704533pt;}
.y305{bottom:129.826800pt;}
.y28f{bottom:130.312667pt;}
.y86{bottom:132.701867pt;}
.y243{bottom:133.090800pt;}
.y30{bottom:133.465867pt;}
.y261{bottom:134.282400pt;}
.yb8{bottom:135.897867pt;}
.y143{bottom:136.159067pt;}
.y2c7{bottom:136.472533pt;}
.y321{bottom:137.584933pt;}
.y17e{bottom:143.837867pt;}
.y1f8{bottom:144.724533pt;}
.yf4{bottom:144.931867pt;}
.y304{bottom:145.826800pt;}
.y49{bottom:146.032533pt;}
.y28e{bottom:147.640667pt;}
.y2f{bottom:148.132533pt;}
.y242{bottom:150.418800pt;}
.y260{bottom:151.610400pt;}
.y320{bottom:152.251600pt;}
.y2c6{bottom:152.472533pt;}
.yb7{bottom:153.225867pt;}
.y142{bottom:153.487067pt;}
.y85{bottom:157.589867pt;}
.yf3{bottom:158.261867pt;}
.y124{bottom:160.612267pt;}
.y17d{bottom:161.165867pt;}
.y303{bottom:161.826800pt;}
.y1f7{bottom:162.052533pt;}
.y2e{bottom:162.799200pt;}
.y48{bottom:163.360533pt;}
.y28d{bottom:164.968667pt;}
.y188{bottom:165.608667pt;}
.y1c7{bottom:165.648667pt;}
.y1c3{bottom:165.838667pt;}
.y182{bottom:166.048667pt;}
.y192{bottom:166.111733pt;}
.y18e{bottom:166.121733pt;}
.y184{bottom:166.128667pt;}
.y196{bottom:166.138667pt;}
.y1c4{bottom:166.148667pt;}
.y1ca{bottom:166.178667pt;}
.y18d{bottom:166.221733pt;}
.y183{bottom:166.228667pt;}
.y31f{bottom:166.918267pt;}
.y241{bottom:167.746800pt;}
.y2c5{bottom:168.472533pt;}
.y25f{bottom:168.938400pt;}
.yb6{bottom:170.553867pt;}
.y141{bottom:170.815067pt;}
.yf2{bottom:171.591867pt;}
.y84{bottom:174.917867pt;}
.y18{bottom:175.052000pt;}
.y191{bottom:176.391733pt;}
.y187{bottom:176.428667pt;}
.y1c6{bottom:176.458667pt;}
.y189{bottom:176.948667pt;}
.y1c8{bottom:176.988667pt;}
.y190{bottom:177.081733pt;}
.y186{bottom:177.108667pt;}
.y1c5{bottom:177.128667pt;}
.y194{bottom:177.431733pt;}
.y18a{bottom:177.438667pt;}
.y1ce{bottom:177.438933pt;}
.y18f{bottom:177.441733pt;}
.y185{bottom:177.448667pt;}
.y1cd{bottom:177.448933pt;}
.y193{bottom:177.451733pt;}
.y18c{bottom:177.458667pt;}
.y1cc{bottom:177.458933pt;}
.y2d{bottom:177.465867pt;}
.y18b{bottom:177.468667pt;}
.y1cb{bottom:177.468933pt;}
.y197{bottom:177.478667pt;}
.y1c9{bottom:177.488667pt;}
.y302{bottom:177.826800pt;}
.y123{bottom:177.940267pt;}
.y17c{bottom:178.493867pt;}
.y1f6{bottom:179.380533pt;}
.y47{bottom:180.688533pt;}
.y31e{bottom:181.584933pt;}
.y28c{bottom:182.296667pt;}
.y1e2{bottom:184.090533pt;}
.y1d4{bottom:184.102000pt;}
.y1da{bottom:184.112000pt;}
.y2c4{bottom:184.472533pt;}
.y1d8{bottom:184.612000pt;}
.y1e0{bottom:184.620533pt;}
.y1df{bottom:184.670533pt;}
.y1d7{bottom:184.672000pt;}
.y1dc{bottom:184.680533pt;}
.y1d5{bottom:184.682000pt;}
.y1e1{bottom:184.700533pt;}
.y1d2{bottom:184.702000pt;}
.y1d3{bottom:184.712000pt;}
.y1d9{bottom:184.722000pt;}
.y1e3{bottom:184.770533pt;}
.y1d1{bottom:184.792000pt;}
.yf1{bottom:184.921867pt;}
.y240{bottom:185.074800pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y25e{bottom:186.266400pt;}
.yb5{bottom:187.881867pt;}
.y140{bottom:188.143067pt;}
.y2c{bottom:192.132533pt;}
.y83{bottom:192.245867pt;}
.y301{bottom:193.826800pt;}
.y122{bottom:195.268267pt;}
.y17b{bottom:195.821867pt;}
.y1dd{bottom:196.010533pt;}
.y1de{bottom:196.020533pt;}
.y1d6{bottom:196.032000pt;}
.y1db{bottom:196.042000pt;}
.y31d{bottom:196.251600pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y46{bottom:198.016533pt;}
.yf0{bottom:198.251867pt;}
.y2c3{bottom:200.472533pt;}
.y23f{bottom:202.402800pt;}
.y25d{bottom:203.594400pt;}
.y1f5{bottom:204.268533pt;}
.y13f{bottom:205.471067pt;}
.y2b{bottom:206.799200pt;}
.y28b{bottom:207.189067pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y300{bottom:209.826800pt;}
.y31c{bottom:210.918267pt;}
.yef{bottom:211.581867pt;}
.y121{bottom:212.596267pt;}
.yb4{bottom:212.774267pt;}
.y17a{bottom:213.149867pt;}
.y45{bottom:215.344533pt;}
.y2c2{bottom:216.472533pt;}
.y82{bottom:217.234267pt;}
.y23e{bottom:219.730800pt;}
.y2a{bottom:221.465867pt;}
.y1f4{bottom:221.596533pt;}
.yee{bottom:224.911867pt;}
.y31b{bottom:225.584933pt;}
.y2ff{bottom:225.826800pt;}
.y25c{bottom:228.482400pt;}
.y120{bottom:229.924267pt;}
.y13e{bottom:230.359067pt;}
.y179{bottom:230.477867pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y2c1{bottom:232.472533pt;}
.y44{bottom:232.672533pt;}
.y81{bottom:234.562267pt;}
.y23d{bottom:237.058800pt;}
.y1f3{bottom:238.924533pt;}
.y31a{bottom:240.251600pt;}
.y2fe{bottom:241.826800pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y25b{bottom:245.810400pt;}
.y11f{bottom:247.252267pt;}
.yed{bottom:247.531867pt;}
.y13d{bottom:247.687067pt;}
.y178{bottom:247.805867pt;}
.y2c0{bottom:248.472533pt;}
.yb3{bottom:249.074667pt;}
.y43{bottom:250.000533pt;}
.y80{bottom:251.890267pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y28a{bottom:253.645733pt;}
.y23c{bottom:254.386800pt;}
.y319{bottom:254.918267pt;}
.y1f2{bottom:256.252533pt;}
.y2fd{bottom:257.826800pt;}
.y29{bottom:258.809867pt;}
.yec{bottom:260.861867pt;}
.y25a{bottom:263.138400pt;}
.y2bf{bottom:264.472533pt;}
.y11e{bottom:264.580267pt;}
.y13c{bottom:265.015067pt;}
.yb2{bottom:266.402667pt;}
.y42{bottom:267.328533pt;}
.y7f{bottom:269.218267pt;}
.y318{bottom:269.584933pt;}
.y23b{bottom:271.714800pt;}
.y177{bottom:272.918400pt;}
.y28{bottom:273.476533pt;}
.y1f1{bottom:273.580533pt;}
.y2fc{bottom:273.826800pt;}
.yeb{bottom:274.191867pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y289{bottom:278.538133pt;}
.y2be{bottom:280.472533pt;}
.y11d{bottom:281.908267pt;}
.y13b{bottom:282.343067pt;}
.yb1{bottom:283.730667pt;}
.y317{bottom:284.251600pt;}
.y41{bottom:284.656533pt;}
.y7e{bottom:286.546267pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yea{bottom:287.521867pt;}
.y259{bottom:288.026400pt;}
.y27{bottom:288.143200pt;}
.y23a{bottom:289.042800pt;}
.y2fb{bottom:289.826800pt;}
.y176{bottom:290.246400pt;}
.y2bd{bottom:296.472533pt;}
.y1f0{bottom:298.468533pt;}
.y316{bottom:298.918267pt;}
.y13a{bottom:299.671067pt;}
.ye9{bottom:300.851867pt;}
.yb0{bottom:301.058667pt;}
.y40{bottom:301.984533pt;}
.y7d{bottom:303.874267pt;}
.y258{bottom:305.354400pt;}
.y2fa{bottom:305.826800pt;}
.y239{bottom:306.370800pt;}
.y11c{bottom:306.800533pt;}
.y175{bottom:307.574400pt;}
.yf{bottom:309.452000pt;}
.y2bc{bottom:312.472533pt;}
.ye8{bottom:314.181867pt;}
.y1ef{bottom:315.796533pt;}
.y139{bottom:316.999067pt;}
.yaf{bottom:318.386667pt;}
.y3f{bottom:319.312533pt;}
.y7c{bottom:321.202267pt;}
.y2f9{bottom:321.826800pt;}
.y257{bottom:322.682400pt;}
.y238{bottom:323.698800pt;}
.y174{bottom:324.902400pt;}
.y288{bottom:325.000133pt;}
.ye7{bottom:327.511867pt;}
.y2bb{bottom:328.472533pt;}
.y1ee{bottom:333.124533pt;}
.y138{bottom:334.327067pt;}
.yae{bottom:335.714667pt;}
.y315{bottom:336.262267pt;}
.y3e{bottom:336.640533pt;}
.y2f8{bottom:337.826800pt;}
.y7b{bottom:338.530267pt;}
.ye6{bottom:340.841867pt;}
.y237{bottom:341.026800pt;}
.y173{bottom:342.230400pt;}
.y287{bottom:342.328133pt;}
.y11b{bottom:343.052933pt;}
.ye{bottom:343.809333pt;}
.y26{bottom:344.388533pt;}
.y2ba{bottom:344.472533pt;}
.y256{bottom:347.574933pt;}
.y1ed{bottom:350.452533pt;}
.y314{bottom:350.928933pt;}
.y137{bottom:351.655067pt;}
.yad{bottom:353.042667pt;}
.y2f7{bottom:353.826800pt;}
.y3d{bottom:353.968533pt;}
.ye5{bottom:354.171867pt;}
.y7a{bottom:355.858267pt;}
.y172{bottom:359.558400pt;}
.y11a{bottom:360.380933pt;}
.y2b9{bottom:360.472533pt;}
.yd{bottom:362.706666pt;}
.y25{bottom:362.831200pt;}
.y1d0{bottom:363.872000pt;}
.y313{bottom:365.595600pt;}
.y236{bottom:365.914800pt;}
.y286{bottom:367.220533pt;}
.ye4{bottom:367.501867pt;}
.y1ec{bottom:367.780533pt;}
.y2f6{bottom:369.826800pt;}
.yac{bottom:370.370667pt;}
.y3c{bottom:371.296533pt;}
.y79{bottom:373.186267pt;}
.y2b8{bottom:376.472533pt;}
.y136{bottom:376.543067pt;}
.y171{bottom:376.886400pt;}
.y119{bottom:377.708933pt;}
.y198{bottom:379.038667pt;}
.y1ab{bottom:379.048667pt;}
.ye3{bottom:380.831867pt;}
.y24{bottom:381.273867pt;}
.y235{bottom:383.242800pt;}
.y2f5{bottom:385.826800pt;}
.yab{bottom:387.698667pt;}
.y78{bottom:390.514267pt;}
.y2b7{bottom:392.472533pt;}
.y1eb{bottom:392.668533pt;}
.y135{bottom:393.871067pt;}
.ye2{bottom:394.161867pt;}
.y170{bottom:394.214400pt;}
.y118{bottom:395.036933pt;}
.y3b{bottom:396.188933pt;}
.y23{bottom:399.716533pt;}
.y234{bottom:400.570800pt;}
.y2f4{bottom:401.826800pt;}
.y312{bottom:402.939600pt;}
.yaa{bottom:405.026667pt;}
.y77{bottom:407.842267pt;}
.y2b6{bottom:408.472533pt;}
.y1ea{bottom:409.996533pt;}
.y134{bottom:411.199067pt;}
.y255{bottom:411.542400pt;}
.y117{bottom:412.364933pt;}
.y285{bottom:413.777600pt;}
.ye1{bottom:416.781867pt;}
.y311{bottom:417.606267pt;}
.y2f3{bottom:417.826800pt;}
.y233{bottom:417.898800pt;}
.y16f{bottom:419.102400pt;}
.ya9{bottom:422.354667pt;}
.y2b5{bottom:424.472533pt;}
.y1e9{bottom:427.324533pt;}
.y133{bottom:428.527067pt;}
.y254{bottom:428.870400pt;}
.ye0{bottom:430.111867pt;}
.y284{bottom:431.105600pt;}
.y310{bottom:432.272933pt;}
.y76{bottom:432.730267pt;}
.y116{bottom:433.477733pt;}
.y2f2{bottom:433.826800pt;}
.y232{bottom:435.226800pt;}
.y16e{bottom:436.430400pt;}
.y1bc{bottom:437.928667pt;}
.y1ac{bottom:438.048667pt;}
.y19a{bottom:438.508667pt;}
.y1ad{bottom:438.518667pt;}
.y199{bottom:438.868667pt;}
.ya8{bottom:439.682667pt;}
.y2b4{bottom:440.472533pt;}
.ydf{bottom:443.441867pt;}
.y1e8{bottom:444.652533pt;}
.y132{bottom:445.855067pt;}
.y253{bottom:446.198400pt;}
.y30f{bottom:446.939600pt;}
.yc{bottom:446.990669pt;}
.y283{bottom:448.433600pt;}
.y2f1{bottom:449.826800pt;}
.y75{bottom:450.058267pt;}
.y231{bottom:452.554800pt;}
.y16d{bottom:453.758400pt;}
.y2b3{bottom:456.472533pt;}
.yde{bottom:456.771867pt;}
.ya7{bottom:457.010667pt;}
.y30e{bottom:461.606267pt;}
.y1e7{bottom:461.980533pt;}
.yb{bottom:462.990669pt;}
.y131{bottom:463.183067pt;}
.y252{bottom:463.526400pt;}
.y282{bottom:465.761600pt;}
.y2f0{bottom:465.826800pt;}
.y74{bottom:467.386267pt;}
.y115{bottom:469.882800pt;}
.ydd{bottom:470.101867pt;}
.y16c{bottom:471.086400pt;}
.y2b2{bottom:472.472533pt;}
.ya6{bottom:474.338667pt;}
.y30d{bottom:476.272933pt;}
.ya{bottom:478.990666pt;}
.y1e6{bottom:479.308533pt;}
.y130{bottom:480.511067pt;}
.y251{bottom:480.854400pt;}
.y2ef{bottom:481.826800pt;}
.y281{bottom:483.089600pt;}
.ydc{bottom:483.431867pt;}
.y73{bottom:484.714267pt;}
.y114{bottom:487.210800pt;}
.y16b{bottom:488.414400pt;}
.y2b1{bottom:488.472533pt;}
.y30c{bottom:490.939600pt;}
.y9{bottom:494.990666pt;}
.y1e5{bottom:496.636533pt;}
.ydb{bottom:496.761867pt;}
.y2ee{bottom:497.826800pt;}
.y12f{bottom:497.839067pt;}
.ya5{bottom:499.231067pt;}
.y19b{bottom:499.418667pt;}
.y1ae{bottom:499.428667pt;}
.y19c{bottom:499.928667pt;}
.y1af{bottom:499.938667pt;}
.y280{bottom:500.417600pt;}
.y1bd{bottom:500.568667pt;}
.y72{bottom:502.042267pt;}
.y2b0{bottom:504.472533pt;}
.y113{bottom:504.538800pt;}
.y30b{bottom:505.606267pt;}
.y16a{bottom:505.742400pt;}
.yda{bottom:510.091867pt;}
.y2ed{bottom:513.826800pt;}
.y12e{bottom:515.167067pt;}
.y27f{bottom:517.745600pt;}
.y71{bottom:519.370267pt;}
.y30a{bottom:520.272933pt;}
.y2af{bottom:520.472533pt;}
.y1e4{bottom:521.528933pt;}
.y112{bottom:521.866800pt;}
.y169{bottom:523.070400pt;}
.y2ec{bottom:529.826800pt;}
.y12d{bottom:532.495067pt;}
.y309{bottom:534.939600pt;}
.y27e{bottom:535.073600pt;}
.ya4{bottom:535.472667pt;}
.y2ae{bottom:536.472533pt;}
.y70{bottom:536.698267pt;}
.y111{bottom:539.194800pt;}
.y168{bottom:540.398400pt;}
.y2eb{bottom:545.826800pt;}
.yd9{bottom:549.207333pt;}
.y12c{bottom:549.823067pt;}
.yd3{bottom:551.152267pt;}
.y27d{bottom:552.401600pt;}
.y2ad{bottom:552.472533pt;}
.ya3{bottom:552.800667pt;}
.y6f{bottom:554.026267pt;}
.y110{bottom:556.522800pt;}
.y167{bottom:557.726400pt;}
.y19d{bottom:559.038667pt;}
.y1b0{bottom:559.048667pt;}
.y1be{bottom:559.468667pt;}
.y19e{bottom:559.508667pt;}
.y1b1{bottom:559.518667pt;}
.y22e{bottom:559.999733pt;}
.y2ea{bottom:561.826800pt;}
.yd8{bottom:563.874000pt;}
.y12b{bottom:567.151067pt;}
.y218{bottom:568.218667pt;}
.y2ac{bottom:568.472533pt;}
.yd2{bottom:568.480267pt;}
.y27c{bottom:569.729600pt;}
.ya2{bottom:570.128667pt;}
.y8{bottom:573.786667pt;}
.y10f{bottom:573.850800pt;}
.y22d{bottom:574.666400pt;}
.y250{bottom:575.054400pt;}
.y2e9{bottom:577.826800pt;}
.yd7{bottom:578.540667pt;}
.y6e{bottom:578.918667pt;}
.y217{bottom:581.548667pt;}
.y166{bottom:582.614400pt;}
.y2ab{bottom:584.472533pt;}
.yd1{bottom:585.808267pt;}
.y22c{bottom:589.333067pt;}
.y10e{bottom:591.178800pt;}
.y12a{bottom:592.043467pt;}
.y24f{bottom:592.382400pt;}
.y7{bottom:592.685334pt;}
.y2e8{bottom:593.826800pt;}
.y27b{bottom:594.617600pt;}
.ya1{bottom:595.021067pt;}
.y165{bottom:599.942400pt;}
.y2aa{bottom:600.472533pt;}
.yd0{bottom:603.136267pt;}
.y22b{bottom:603.999733pt;}
.y216{bottom:604.168667pt;}
.y10d{bottom:608.506800pt;}
.y24e{bottom:609.710400pt;}
.y2e7{bottom:609.826800pt;}
.y27a{bottom:611.945600pt;}
.y19f{bottom:611.948667pt;}
.y1b2{bottom:611.958667pt;}
.y1a0{bottom:612.418667pt;}
.y1b3{bottom:612.428667pt;}
.y6d{bottom:615.266133pt;}
.y2a9{bottom:616.472533pt;}
.y129{bottom:616.935867pt;}
.y164{bottom:617.270400pt;}
.y215{bottom:617.498667pt;}
.ycf{bottom:620.464267pt;}
.y22a{bottom:622.442400pt;}
.y2e6{bottom:625.826800pt;}
.y10c{bottom:625.834800pt;}
.y24d{bottom:627.038400pt;}
.y279{bottom:629.273600pt;}
.y2a8{bottom:632.472533pt;}
.y6c{bottom:632.594133pt;}
.y163{bottom:634.598400pt;}
.y229{bottom:637.109067pt;}
.y214{bottom:640.118667pt;}
.ya0{bottom:641.546133pt;}
.y2e5{bottom:641.826800pt;}
.y10b{bottom:643.162800pt;}
.y24c{bottom:644.366400pt;}
.yce{bottom:645.352267pt;}
.y6{bottom:645.598667pt;}
.y278{bottom:646.601600pt;}
.y2a7{bottom:648.472533pt;}
.y6b{bottom:649.922133pt;}
.y228{bottom:651.775733pt;}
.y162{bottom:651.926400pt;}
.y213{bottom:653.448667pt;}
.y14b{bottom:655.392533pt;}
.y2e4{bottom:657.826800pt;}
.y9f{bottom:658.874133pt;}
.y24b{bottom:661.694400pt;}
.ycd{bottom:662.680267pt;}
.y1b4{bottom:663.888667pt;}
.y1bf{bottom:663.928667pt;}
.y277{bottom:663.929600pt;}
.y1a1{bottom:664.338667pt;}
.y1a2{bottom:664.388667pt;}
.y1b5{bottom:664.398667pt;}
.y2a6{bottom:664.472533pt;}
.y227{bottom:666.442400pt;}
.y6a{bottom:667.250133pt;}
.y10a{bottom:668.050800pt;}
.y3{bottom:668.977329pt;}
.y161{bottom:669.254400pt;}
.y14a{bottom:670.059200pt;}
.y4f{bottom:670.876533pt;}
.y2e3{bottom:673.826800pt;}
.y212{bottom:676.068667pt;}
.y9e{bottom:676.202133pt;}
.y24a{bottom:679.022400pt;}
.ycc{bottom:680.008267pt;}
.y2a5{bottom:680.472533pt;}
.y226{bottom:681.109067pt;}
.y276{bottom:681.257600pt;}
.y69{bottom:684.578133pt;}
.y149{bottom:684.725867pt;}
.y109{bottom:685.378800pt;}
.y160{bottom:686.582400pt;}
.y2e2{bottom:689.826800pt;}
.y3a{bottom:693.102267pt;}
.y9d{bottom:693.530133pt;}
.y225{bottom:695.775733pt;}
.y2a4{bottom:696.472533pt;}
.ycb{bottom:697.336267pt;}
.y275{bottom:698.585600pt;}
.y211{bottom:698.688667pt;}
.y148{bottom:699.392533pt;}
.y68{bottom:701.906133pt;}
.y108{bottom:702.706800pt;}
.y15f{bottom:703.910400pt;}
.y2e1{bottom:705.826800pt;}
.y224{bottom:710.442400pt;}
.y9c{bottom:710.858133pt;}
.y210{bottom:712.018667pt;}
.y2a3{bottom:712.472533pt;}
.y147{bottom:714.059200pt;}
.yca{bottom:714.664267pt;}
.y274{bottom:715.913600pt;}
.y39{bottom:716.661333pt;}
.y67{bottom:719.234133pt;}
.y107{bottom:720.034800pt;}
.y15e{bottom:721.238400pt;}
.y2e0{bottom:721.826800pt;}
.y223{bottom:725.109067pt;}
.y1a3{bottom:725.338667pt;}
.y1c0{bottom:725.768667pt;}
.y1a4{bottom:725.808667pt;}
.y1b7{bottom:725.818667pt;}
.y1b6{bottom:726.178667pt;}
.y2a2{bottom:728.472533pt;}
.yc9{bottom:731.992267pt;}
.y273{bottom:733.241600pt;}
.y20f{bottom:734.638667pt;}
.y9b{bottom:735.746133pt;}
.y66{bottom:736.562133pt;}
.y106{bottom:737.362800pt;}
.y2df{bottom:737.826800pt;}
.y15d{bottom:738.566400pt;}
.y222{bottom:739.775733pt;}
.y38{bottom:740.220400pt;}
.y2a1{bottom:744.472533pt;}
.y20e{bottom:747.968667pt;}
.yc8{bottom:749.320267pt;}
.y272{bottom:750.569600pt;}
.y9a{bottom:753.074133pt;}
.y2de{bottom:753.826800pt;}
.y221{bottom:754.442400pt;}
.y105{bottom:754.690800pt;}
.y15c{bottom:755.894400pt;}
.y2a0{bottom:760.472533pt;}
.y65{bottom:761.450133pt;}
.yc7{bottom:766.648267pt;}
.y220{bottom:769.109067pt;}
.y2dd{bottom:769.826800pt;}
.y99{bottom:770.402133pt;}
.y20d{bottom:770.588667pt;}
.y104{bottom:772.018800pt;}
.y15b{bottom:773.222400pt;}
.y271{bottom:775.462000pt;}
.y29f{bottom:776.472533pt;}
.y64{bottom:778.778133pt;}
.y249{bottom:780.782400pt;}
.y2{bottom:781.661334pt;}
.y20c{bottom:783.918667pt;}
.yc6{bottom:783.976267pt;}
.y2dc{bottom:785.826800pt;}
.y1b8{bottom:786.648667pt;}
.y1a5{bottom:786.718667pt;}
.y1c1{bottom:787.188667pt;}
.y1a6{bottom:787.228667pt;}
.y1b9{bottom:787.238667pt;}
.y21f{bottom:787.551733pt;}
.y98{bottom:787.730133pt;}
.y103{bottom:789.346800pt;}
.y29e{bottom:792.472533pt;}
.y63{bottom:796.106133pt;}
.y15a{bottom:798.110400pt;}
.yc5{bottom:801.304267pt;}
.y2db{bottom:801.826800pt;}
.y21e{bottom:802.218400pt;}
.y97{bottom:805.058133pt;}
.y20b{bottom:806.538667pt;}
.y102{bottom:806.674800pt;}
.y29d{bottom:808.472533pt;}
.y22{bottom:812.598533pt;}
.y37{bottom:812.634533pt;}
.y62{bottom:813.434133pt;}
.y159{bottom:815.438400pt;}
.y21d{bottom:816.885067pt;}
.y2da{bottom:817.826800pt;}
.y270{bottom:818.148400pt;}
.yc4{bottom:818.632267pt;}
.y96{bottom:822.386133pt;}
.y101{bottom:824.002800pt;}
.y29c{bottom:824.472533pt;}
.y20a{bottom:829.158667pt;}
.y61{bottom:830.762133pt;}
.y21c{bottom:831.551733pt;}
.y158{bottom:832.766400pt;}
.y2d9{bottom:833.826800pt;}
.y26f{bottom:835.476400pt;}
.yc3{bottom:835.960267pt;}
.y95{bottom:839.714133pt;}
.y29b{bottom:840.472533pt;}
.y230{bottom:841.330800pt;}
.y209{bottom:842.488667pt;}
.y1ba{bottom:845.228667pt;}
.y1c2{bottom:845.348667pt;}
.y1a8{bottom:845.818667pt;}
.y1a7{bottom:845.918667pt;}
.y60{bottom:848.090133pt;}
.y100{bottom:848.890800pt;}
.y2d8{bottom:849.826800pt;}
.y36{bottom:849.955867pt;}
.y21b{bottom:849.994400pt;}
.y157{bottom:850.094400pt;}
.y94{bottom:857.042133pt;}
.y22f{bottom:858.658800pt;}
.y1{bottom:859.312000pt;}
.yc2{bottom:860.848267pt;}
.y29a{bottom:864.031600pt;}
.y26e{bottom:864.144400pt;}
.y208{bottom:865.108667pt;}
.y5f{bottom:865.418133pt;}
.y2d7{bottom:865.826800pt;}
.yff{bottom:866.218800pt;}
.y156{bottom:867.422400pt;}
.y21a{bottom:868.437067pt;}
.y93{bottom:874.375467pt;}
.y248{bottom:874.982400pt;}
.yc1{bottom:878.176267pt;}
.y207{bottom:878.438667pt;}
.y2d6{bottom:881.826800pt;}
.y5e{bottom:882.746133pt;}
.y219{bottom:883.103733pt;}
.yfe{bottom:883.546800pt;}
.y155{bottom:884.750400pt;}
.y35{bottom:887.277200pt;}
.y26d{bottom:889.036800pt;}
.y92{bottom:891.703467pt;}
.y247{bottom:892.310400pt;}
.yc0{bottom:895.504267pt;}
.y2d5{bottom:897.826800pt;}
.y5d{bottom:900.074133pt;}
.yfd{bottom:900.874800pt;}
.y206{bottom:901.058667pt;}
.y154{bottom:902.078400pt;}
.y299{bottom:906.708800pt;}
.y246{bottom:909.638400pt;}
.y1bb{bottom:910.428667pt;}
.y1aa{bottom:911.018667pt;}
.y1a9{bottom:911.118667pt;}
.ybf{bottom:912.832267pt;}
.y2d4{bottom:913.826800pt;}
.y205{bottom:914.388667pt;}
.y91{bottom:916.595867pt;}
.y5c{bottom:917.402133pt;}
.yfc{bottom:918.202800pt;}
.y153{bottom:919.406400pt;}
.y298{bottom:921.375467pt;}
.y34{bottom:924.598533pt;}
.y245{bottom:926.966400pt;}
.y2d3{bottom:929.826800pt;}
.ybe{bottom:930.160267pt;}
.y5b{bottom:934.730133pt;}
.y26c{bottom:935.520133pt;}
.yfb{bottom:935.530800pt;}
.y297{bottom:936.045600pt;}
.y204{bottom:937.008667pt;}
.y152{bottom:944.294400pt;}
.y2d2{bottom:945.826800pt;}
.y32e{bottom:945.830267pt;}
.ybd{bottom:947.488267pt;}
.y5a{bottom:952.058133pt;}
.y26b{bottom:952.848133pt;}
.y90{bottom:952.853467pt;}
.yfa{bottom:952.858800pt;}
.y296{bottom:954.488267pt;}
.y203{bottom:959.621067pt;}
.y151{bottom:961.622400pt;}
.y2d1{bottom:961.826800pt;}
.y32d{bottom:961.830267pt;}
.ybc{bottom:964.816267pt;}
.y295{bottom:969.154933pt;}
.y59{bottom:969.386133pt;}
.y26a{bottom:970.176133pt;}
.y8f{bottom:970.181467pt;}
.yf9{bottom:970.186800pt;}
.y2d0{bottom:977.826800pt;}
.y32c{bottom:977.830267pt;}
.y150{bottom:978.950400pt;}
.y202{bottom:982.241067pt;}
.y294{bottom:983.825067pt;}
.ybb{bottom:985.929200pt;}
.y58{bottom:986.714133pt;}
.y269{bottom:987.504133pt;}
.y8e{bottom:987.509467pt;}
.yf8{bottom:987.514800pt;}
.y2cf{bottom:993.826800pt;}
.y32b{bottom:993.830267pt;}
.y14f{bottom:996.278400pt;}
.y293{bottom:1002.267733pt;}
.y57{bottom:1004.042133pt;}
.y268{bottom:1004.832133pt;}
.y8d{bottom:1004.837467pt;}
.yf7{bottom:1004.842800pt;}
.y201{bottom:1004.861067pt;}
.y2ce{bottom:1009.826800pt;}
.y32a{bottom:1009.830267pt;}
.y54{bottom:1010.816133pt;}
.y14e{bottom:1013.606400pt;}
.y292{bottom:1016.934400pt;}
.y267{bottom:1022.160133pt;}
.y8c{bottom:1022.165467pt;}
.yf6{bottom:1022.170800pt;}
.y53{bottom:1022.818800pt;}
.y2cd{bottom:1025.826800pt;}
.y329{bottom:1025.830267pt;}
.y200{bottom:1027.481067pt;}
.y56{bottom:1028.934400pt;}
.y14d{bottom:1030.934400pt;}
.y291{bottom:1031.601067pt;}
.y195{bottom:1032.633600pt;}
.y52{bottom:1034.821467pt;}
.y8b{bottom:1039.493467pt;}
.yf5{bottom:1039.498800pt;}
.y2cc{bottom:1041.826800pt;}
.y328{bottom:1041.830267pt;}
.y51{bottom:1046.824133pt;}
.y1ff{bottom:1050.101067pt;}
.y55{bottom:1053.826800pt;}
.y14c{bottom:1055.826800pt;}
.y8a{bottom:1056.826800pt;}
.y2cb{bottom:1057.826800pt;}
.y327{bottom:1057.830267pt;}
.y50{bottom:1058.826800pt;}
.h7{height:28.560000pt;}
.h10{height:28.746667pt;}
.h11{height:30.650667pt;}
.hf{height:30.949333pt;}
.h13{height:32.840000pt;}
.h16{height:32.870400pt;}
.h15{height:32.946133pt;}
.h14{height:33.160000pt;}
.h18{height:33.365333pt;}
.hb{height:35.029333pt;}
.ha{height:35.370667pt;}
.he{height:39.408000pt;}
.h17{height:39.792000pt;}
.h6{height:40.800000pt;}
.h12{height:41.066667pt;}
.h3{height:42.840000pt;}
.h9{height:44.213333pt;}
.h2{height:48.960000pt;}
.hd{height:53.056000pt;}
.h5{height:69.360000pt;}
.hc{height:94.453333pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.692933pt;}
.x5e{left:57.691600pt;}
.x5d{left:60.472933pt;}
.x5b{left:62.857067pt;}
.x58{left:63.820933pt;}
.x9{left:65.028000pt;}
.x26{left:72.418533pt;}
.x6{left:79.370000pt;}
.x5f{left:80.368933pt;}
.xb{left:83.135600pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3b{left:101.578267pt;}
.x27{left:117.988533pt;}
.xc{left:119.316267pt;}
.x3c{left:132.849067pt;}
.x28{left:135.098533pt;}
.xd{left:141.936267pt;}
.x3d{left:153.199067pt;}
.x29{left:157.718533pt;}
.xe{left:164.556267pt;}
.x3e{left:173.549067pt;}
.x2a{left:174.828533pt;}
.x4{left:180.874667pt;}
.xf{left:187.176267pt;}
.xa{left:189.988000pt;}
.x3f{left:193.899067pt;}
.x2b{left:197.448533pt;}
.x10{left:209.796267pt;}
.x2c{left:214.558533pt;}
.x11{left:232.416267pt;}
.x40{left:234.599067pt;}
.x2d{left:237.178533pt;}
.x57{left:243.251867pt;}
.x12{left:255.036267pt;}
.x2e{left:259.798533pt;}
.x41{left:275.299067pt;}
.x13{left:277.656267pt;}
.x2f{left:282.418533pt;}
.x42{left:295.649067pt;}
.x14{left:300.276267pt;}
.x30{left:305.038533pt;}
.x43{left:315.999067pt;}
.x15{left:322.896267pt;}
.x31{left:327.658533pt;}
.x44{left:336.349067pt;}
.x16{left:345.516267pt;}
.x59{left:349.277067pt;}
.x32{left:350.278533pt;}
.x45{left:356.699067pt;}
.x17{left:368.136267pt;}
.x33{left:372.898533pt;}
.x46{left:377.049067pt;}
.x18{left:390.756267pt;}
.x34{left:395.518533pt;}
.x47{left:397.399067pt;}
.x3{left:404.408000pt;}
.x19{left:413.376267pt;}
.x35{left:418.138533pt;}
.x1a{left:435.996267pt;}
.x48{left:438.099067pt;}
.x36{left:440.744000pt;}
.x5a{left:449.697067pt;}
.x5c{left:450.947067pt;}
.x1b{left:458.589733pt;}
.x37{left:463.364000pt;}
.x49{left:478.805333pt;}
.x1c{left:481.209733pt;}
.x38{left:485.984000pt;}
.x4a{left:499.155333pt;}
.x1d{left:503.829733pt;}
.x39{left:508.604000pt;}
.x4b{left:519.505333pt;}
.x1e{left:526.449733pt;}
.x3a{left:531.224000pt;}
.x4c{left:539.855333pt;}
.x1f{left:549.069733pt;}
.x4d{left:560.205333pt;}
.x20{left:571.689733pt;}
.x4e{left:580.555333pt;}
.x5{left:589.606267pt;}
.x21{left:594.309733pt;}
.x4f{left:600.905333pt;}
.x22{left:616.929733pt;}
.x50{left:621.255333pt;}
.x23{left:639.549733pt;}
.x51{left:641.605333pt;}
.x24{left:662.169733pt;}
.x52{left:682.305333pt;}
.x25{left:693.551200pt;}
.x53{left:702.655333pt;}
.x54{left:723.005333pt;}
.x56{left:725.307600pt;}
.x7{left:731.236133pt;}
.x55{left:743.355333pt;}
}




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