
    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_9e2ec2f5ae644498ead5e4fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_bed171e718c8aa3ff0c1030c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.807617;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_96a7a5628deeb6106631122f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921875;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_63e0581b7518e53ea30e4350.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_c1fa70e20f55c85e3f7cb2df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.138000px;}
.v2{vertical-align:32.400000px;}
.ls29{letter-spacing:-0.972000px;}
.ls1c{letter-spacing:-0.864000px;}
.ls61{letter-spacing:-0.675360px;}
.ls55{letter-spacing:-0.648000px;}
.ls69{letter-spacing:-0.530640px;}
.ls63{letter-spacing:-0.337680px;}
.ls1d{letter-spacing:-0.324000px;}
.ls64{letter-spacing:-0.289440px;}
.ls10{letter-spacing:-0.270000px;}
.ls14{letter-spacing:-0.252000px;}
.ls5f{letter-spacing:-0.241200px;}
.ls16{letter-spacing:-0.216000px;}
.ls68{letter-spacing:-0.192960px;}
.ls19{letter-spacing:-0.162000px;}
.ls5e{letter-spacing:-0.144720px;}
.ls13{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.054000px;}
.ls65{letter-spacing:-0.048240px;}
.ls11{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.016200px;}
.ls4b{letter-spacing:0.021600px;}
.ls5a{letter-spacing:0.024120px;}
.ls47{letter-spacing:0.027000px;}
.ls52{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.037800px;}
.ls4a{letter-spacing:0.043200px;}
.ls62{letter-spacing:0.048240px;}
.ls2b{letter-spacing:0.048600px;}
.ls5{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.145800px;}
.ls57{letter-spacing:0.162000px;}
.ls43{letter-spacing:0.189000px;}
.ls60{letter-spacing:0.192960px;}
.ls4c{letter-spacing:0.194400px;}
.ls15{letter-spacing:0.216000px;}
.ls46{letter-spacing:0.270000px;}
.ls4f{letter-spacing:0.307800px;}
.ls3{letter-spacing:0.324000px;}
.ls58{letter-spacing:0.337680px;}
.ls5d{letter-spacing:0.361800px;}
.ls5c{letter-spacing:0.424512px;}
.ls1a{letter-spacing:0.432000px;}
.ls59{letter-spacing:0.545112px;}
.ls67{letter-spacing:0.593352px;}
.ls39{letter-spacing:0.594000px;}
.ls4e{letter-spacing:0.610200px;}
.ls1b{letter-spacing:0.648000px;}
.ls50{letter-spacing:0.702000px;}
.ls22{letter-spacing:0.756000px;}
.ls3a{letter-spacing:0.912600px;}
.ls7{letter-spacing:1.458000px;}
.ls40{letter-spacing:1.517400px;}
.ls2c{letter-spacing:1.560600px;}
.ls66{letter-spacing:2.074320px;}
.ls26{letter-spacing:2.127600px;}
.ls30{letter-spacing:2.214000px;}
.ls1{letter-spacing:2.671704px;}
.ls0{letter-spacing:2.812320px;}
.ls3b{letter-spacing:2.916000px;}
.ls12{letter-spacing:2.968560px;}
.ls37{letter-spacing:3.612600px;}
.ls49{letter-spacing:3.618000px;}
.ls45{letter-spacing:3.996000px;}
.ls56{letter-spacing:4.050000px;}
.ls34{letter-spacing:4.158000px;}
.ls28{letter-spacing:4.173120px;}
.ls2e{letter-spacing:4.265856px;}
.ls44{letter-spacing:4.271400px;}
.ls31{letter-spacing:4.320000px;}
.ls2a{letter-spacing:4.371840px;}
.ls8{letter-spacing:4.374000px;}
.ls2d{letter-spacing:4.491072px;}
.ls18{letter-spacing:4.570560px;}
.ls6c{letter-spacing:4.636800px;}
.ls32{letter-spacing:5.000400px;}
.ls6{letter-spacing:5.076000px;}
.ls35{letter-spacing:5.778000px;}
.ls36{letter-spacing:5.794200px;}
.ls21{letter-spacing:6.442200px;}
.lsd{letter-spacing:6.534000px;}
.lse{letter-spacing:7.236000px;}
.ls24{letter-spacing:7.938000px;}
.ls2f{letter-spacing:8.694000px;}
.lsa{letter-spacing:10.098000px;}
.lsf{letter-spacing:10.854000px;}
.ls9{letter-spacing:11.556000px;}
.ls3d{letter-spacing:12.803400px;}
.ls42{letter-spacing:12.960000px;}
.ls20{letter-spacing:13.014000px;}
.ls41{letter-spacing:13.748400px;}
.ls1e{letter-spacing:14.418000px;}
.ls38{letter-spacing:16.578000px;}
.ls53{letter-spacing:17.334000px;}
.ls3e{letter-spacing:18.036000px;}
.ls3c{letter-spacing:19.494000px;}
.ls23{letter-spacing:23.058000px;}
.ls51{letter-spacing:23.814000px;}
.ls3f{letter-spacing:24.516000px;}
.ls33{letter-spacing:25.218000px;}
.ls54{letter-spacing:25.974000px;}
.lsb{letter-spacing:29.538000px;}
.ls1f{letter-spacing:32.454000px;}
.lsc{letter-spacing:38.178000px;}
.ls4d{letter-spacing:77.814000px;}
.ls5b{letter-spacing:125.906400px;}
.ls6b{letter-spacing:278.694000px;}
.ls6a{letter-spacing:604.818000px;}
.ls48{letter-spacing:851.850000px;}
.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;}
}
.ws0{word-spacing:-38.278800px;}
.ws163{word-spacing:-19.607040px;}
.ws7{word-spacing:-19.540800px;}
.ws81{word-spacing:-19.342080px;}
.wsb8{word-spacing:-16.524000px;}
.ws164{word-spacing:-16.254000px;}
.wsc8{word-spacing:-14.418000px;}
.wsd3{word-spacing:-12.798000px;}
.ws80{word-spacing:-12.528000px;}
.wsda{word-spacing:-12.474000px;}
.wsd9{word-spacing:-12.420000px;}
.ws9{word-spacing:-12.258000px;}
.ws2{word-spacing:-12.204000px;}
.ws6{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.042000px;}
.ws5{word-spacing:-11.988000px;}
.ws3{word-spacing:-11.934000px;}
.wsa{word-spacing:-11.880000px;}
.wsc6{word-spacing:-11.340000px;}
.ws10c{word-spacing:-10.950480px;}
.ws10b{word-spacing:-10.902240px;}
.ws10a{word-spacing:-10.757520px;}
.ws14a{word-spacing:-10.709280px;}
.ws10e{word-spacing:-10.661040px;}
.ws110{word-spacing:-10.612800px;}
.ws10d{word-spacing:-10.564560px;}
.ws10f{word-spacing:-10.226880px;}
.ws4{word-spacing:-8.136000px;}
.ws1{word-spacing:-7.884000px;}
.wsee{word-spacing:-4.374000px;}
.wsb9{word-spacing:-4.320000px;}
.ws82{word-spacing:-4.173120px;}
.ws106{word-spacing:-4.050000px;}
.ws142{word-spacing:-3.183840px;}
.ws5f{word-spacing:-2.916000px;}
.ws2b{word-spacing:-2.862000px;}
.ws27{word-spacing:-2.754000px;}
.ws98{word-spacing:-2.700000px;}
.ws71{word-spacing:-2.646000px;}
.ws28{word-spacing:-2.592000px;}
.ws12e{word-spacing:-2.460240px;}
.ws12f{word-spacing:-2.315520px;}
.ws8d{word-spacing:-2.160000px;}
.ws155{word-spacing:-2.122560px;}
.ws65{word-spacing:-2.106000px;}
.ws11b{word-spacing:-2.026080px;}
.ws60{word-spacing:-1.998000px;}
.ws66{word-spacing:-1.890000px;}
.ws18{word-spacing:-1.836000px;}
.ws15b{word-spacing:-1.736640px;}
.ws13c{word-spacing:-1.591920px;}
.ws17{word-spacing:-1.458000px;}
.ws5a{word-spacing:-1.404000px;}
.ws13d{word-spacing:-1.398960px;}
.ws11e{word-spacing:-1.302480px;}
.ws69{word-spacing:-1.296000px;}
.ws15{word-spacing:-1.242000px;}
.ws94{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.134000px;}
.ws117{word-spacing:-1.013040px;}
.ws1c{word-spacing:-0.756000px;}
.ws6d{word-spacing:-0.702000px;}
.ws21{word-spacing:-0.648000px;}
.wsa7{word-spacing:-0.594000px;}
.ws138{word-spacing:-0.578880px;}
.ws59{word-spacing:-0.486000px;}
.ws70{word-spacing:-0.432000px;}
.ws159{word-spacing:-0.289440px;}
.ws165{word-spacing:-0.270000px;}
.wsf{word-spacing:-0.216000px;}
.ws48{word-spacing:-0.162000px;}
.ws123{word-spacing:-0.144720px;}
.wsb0{word-spacing:-0.132480px;}
.wsdd{word-spacing:-0.108000px;}
.ws13a{word-spacing:-0.096480px;}
.ws35{word-spacing:-0.054000px;}
.ws124{word-spacing:-0.048240px;}
.wsc{word-spacing:0.000000px;}
.ws128{word-spacing:0.048240px;}
.ws11{word-spacing:0.054000px;}
.ws1d{word-spacing:0.108000px;}
.ws11c{word-spacing:0.144720px;}
.wse{word-spacing:0.162000px;}
.ws157{word-spacing:0.192960px;}
.ws16{word-spacing:0.216000px;}
.ws11f{word-spacing:0.241200px;}
.wsaf{word-spacing:0.264960px;}
.ws10{word-spacing:0.270000px;}
.wsb{word-spacing:0.324000px;}
.wsb4{word-spacing:0.378000px;}
.ws15c{word-spacing:0.434160px;}
.ws102{word-spacing:0.648000px;}
.ws11a{word-spacing:0.675360px;}
.wsca{word-spacing:0.702000px;}
.wsc5{word-spacing:0.756000px;}
.ws115{word-spacing:0.771840px;}
.ws41{word-spacing:0.864000px;}
.ws118{word-spacing:0.868320px;}
.ws62{word-spacing:0.918000px;}
.ws46{word-spacing:0.972000px;}
.ws53{word-spacing:1.026000px;}
.wsc4{word-spacing:1.080000px;}
.ws14b{word-spacing:1.157760px;}
.ws1e{word-spacing:1.404000px;}
.ws99{word-spacing:1.458000px;}
.wsab{word-spacing:1.566000px;}
.wsbe{word-spacing:1.620000px;}
.ws12{word-spacing:1.674000px;}
.ws1f{word-spacing:1.728000px;}
.wsb6{word-spacing:2.160000px;}
.wsae{word-spacing:2.214000px;}
.ws15f{word-spacing:2.219040px;}
.ws121{word-spacing:2.315520px;}
.wsb7{word-spacing:2.322000px;}
.wsad{word-spacing:2.376000px;}
.ws2d{word-spacing:2.430000px;}
.ws91{word-spacing:2.484000px;}
.ws13f{word-spacing:2.604960px;}
.ws68{word-spacing:2.862000px;}
.ws2f{word-spacing:2.916000px;}
.ws4f{word-spacing:3.024000px;}
.ws131{word-spacing:3.039120px;}
.wsd8{word-spacing:3.078000px;}
.ws30{word-spacing:3.132000px;}
.ws31{word-spacing:3.186000px;}
.ws12a{word-spacing:3.280320px;}
.ws133{word-spacing:3.425040px;}
.ws108{word-spacing:3.456000px;}
.ws6e{word-spacing:3.564000px;}
.ws5e{word-spacing:3.618000px;}
.ws13{word-spacing:3.726000px;}
.ws109{word-spacing:3.780000px;}
.ws2c{word-spacing:3.834000px;}
.ws1b{word-spacing:3.888000px;}
.ws14f{word-spacing:4.003920px;}
.ws2a{word-spacing:4.320000px;}
.wscf{word-spacing:4.374000px;}
.ws129{word-spacing:4.438080px;}
.ws26{word-spacing:4.482000px;}
.ws1a{word-spacing:4.590000px;}
.ws29{word-spacing:4.644000px;}
.wsaa{word-spacing:4.698000px;}
.ws63{word-spacing:5.022000px;}
.wsac{word-spacing:5.076000px;}
.ws137{word-spacing:5.161680px;}
.ws3a{word-spacing:5.184000px;}
.ws104{word-spacing:5.238000px;}
.ws2e{word-spacing:5.292000px;}
.ws14{word-spacing:5.346000px;}
.ws144{word-spacing:5.451120px;}
.ws149{word-spacing:5.595840px;}
.ws147{word-spacing:5.692320px;}
.ws5c{word-spacing:5.724000px;}
.ws135{word-spacing:5.885280px;}
.wsb3{word-spacing:5.886000px;}
.ws5b{word-spacing:5.940000px;}
.ws148{word-spacing:5.981760px;}
.ws79{word-spacing:5.994000px;}
.wsbb{word-spacing:6.048000px;}
.ws15a{word-spacing:6.174720px;}
.ws95{word-spacing:6.480000px;}
.ws45{word-spacing:6.534000px;}
.ws130{word-spacing:6.608880px;}
.ws7f{word-spacing:6.642000px;}
.ws56{word-spacing:6.750000px;}
.ws44{word-spacing:6.804000px;}
.ws161{word-spacing:6.898320px;}
.wsc9{word-spacing:7.182000px;}
.ws3b{word-spacing:7.236000px;}
.ws136{word-spacing:7.332480px;}
.ws51{word-spacing:7.344000px;}
.ws39{word-spacing:7.452000px;}
.ws3e{word-spacing:7.506000px;}
.wsdb{word-spacing:7.560000px;}
.ws14e{word-spacing:7.621920px;}
.ws88{word-spacing:7.884000px;}
.wse2{word-spacing:7.938000px;}
.ws143{word-spacing:7.959600px;}
.wse5{word-spacing:8.046000px;}
.ws24{word-spacing:8.154000px;}
.ws50{word-spacing:8.208000px;}
.ws105{word-spacing:8.370000px;}
.ws8c{word-spacing:8.640000px;}
.ws153{word-spacing:8.683200px;}
.ws103{word-spacing:8.694000px;}
.ws132{word-spacing:8.779680px;}
.ws47{word-spacing:8.802000px;}
.wsa5{word-spacing:8.910000px;}
.ws58{word-spacing:8.964000px;}
.wsd7{word-spacing:9.342000px;}
.ws14c{word-spacing:9.406800px;}
.wsd6{word-spacing:9.504000px;}
.ws74{word-spacing:9.612000px;}
.ws49{word-spacing:9.666000px;}
.ws134{word-spacing:9.937440px;}
.ws112{word-spacing:10.044000px;}
.wsf2{word-spacing:10.098000px;}
.ws12c{word-spacing:10.130400px;}
.ws76{word-spacing:10.206000px;}
.ws12b{word-spacing:10.226880px;}
.wsc2{word-spacing:10.260000px;}
.ws61{word-spacing:10.314000px;}
.ws77{word-spacing:10.368000px;}
.wsd{word-spacing:10.624320px;}
.ws54{word-spacing:10.800000px;}
.ws37{word-spacing:10.854000px;}
.ws5d{word-spacing:10.962000px;}
.ws55{word-spacing:11.016000px;}
.ws83{word-spacing:11.070000px;}
.ws38{word-spacing:11.124000px;}
.ws33{word-spacing:11.502000px;}
.ws32{word-spacing:11.556000px;}
.wsdc{word-spacing:11.664000px;}
.ws97{word-spacing:11.772000px;}
.ws20{word-spacing:11.826000px;}
.wsc3{word-spacing:12.204000px;}
.ws140{word-spacing:12.301200px;}
.wsf5{word-spacing:12.366000px;}
.ws13b{word-spacing:12.397680px;}
.ws4e{word-spacing:12.420000px;}
.ws8a{word-spacing:12.474000px;}
.wsf4{word-spacing:12.528000px;}
.ws126{word-spacing:13.121280px;}
.ws72{word-spacing:13.122000px;}
.wsde{word-spacing:13.176000px;}
.ws7e{word-spacing:13.230000px;}
.wse3{word-spacing:13.284000px;}
.ws151{word-spacing:13.362480px;}
.wsba{word-spacing:13.716000px;}
.ws7b{word-spacing:13.824000px;}
.wsf1{word-spacing:13.878000px;}
.wsf0{word-spacing:13.932000px;}
.ws7a{word-spacing:13.986000px;}
.ws6a{word-spacing:14.364000px;}
.ws145{word-spacing:14.520240px;}
.wsf3{word-spacing:14.526000px;}
.ws36{word-spacing:14.634000px;}
.ws57{word-spacing:14.688000px;}
.ws22{word-spacing:15.120000px;}
.ws12d{word-spacing:15.147360px;}
.ws23{word-spacing:15.390000px;}
.ws4b{word-spacing:15.444000px;}
.ws158{word-spacing:15.533280px;}
.ws85{word-spacing:15.822000px;}
.ws154{word-spacing:15.870960px;}
.ws120{word-spacing:15.967440px;}
.wsa4{word-spacing:15.984000px;}
.wsa3{word-spacing:16.092000px;}
.ws9f{word-spacing:16.146000px;}
.wsd2{word-spacing:16.686000px;}
.ws8b{word-spacing:16.740000px;}
.wscd{word-spacing:16.794000px;}
.wsa9{word-spacing:16.848000px;}
.ws113{word-spacing:17.318160px;}
.wsa1{word-spacing:17.442000px;}
.wsec{word-spacing:17.550000px;}
.ws84{word-spacing:17.604000px;}
.ws111{word-spacing:17.712000px;}
.wsa2{word-spacing:18.036000px;}
.ws119{word-spacing:18.138240px;}
.wsdf{word-spacing:18.144000px;}
.ws146{word-spacing:18.234720px;}
.ws3c{word-spacing:18.252000px;}
.ws3d{word-spacing:18.306000px;}
.wsf9{word-spacing:18.846000px;}
.ws73{word-spacing:18.900000px;}
.ws8f{word-spacing:19.008000px;}
.ws9c{word-spacing:19.440000px;}
.ws87{word-spacing:19.764000px;}
.ws6f{word-spacing:20.142000px;}
.wsce{word-spacing:20.304000px;}
.ws127{word-spacing:20.309040px;}
.ws7c{word-spacing:20.466000px;}
.ws107{word-spacing:20.844000px;}
.wsb2{word-spacing:20.898000px;}
.ws4a{word-spacing:21.060000px;}
.wsb1{word-spacing:21.114000px;}
.ws7d{word-spacing:21.168000px;}
.ws64{word-spacing:21.762000px;}
.wscb{word-spacing:21.924000px;}
.ws156{word-spacing:22.479840px;}
.wse4{word-spacing:22.572000px;}
.wsf6{word-spacing:22.626000px;}
.ws125{word-spacing:22.721040px;}
.wsb5{word-spacing:23.004000px;}
.ws8e{word-spacing:23.166000px;}
.ws67{word-spacing:23.328000px;}
.ws19{word-spacing:23.922000px;}
.ws40{word-spacing:24.030000px;}
.ws9b{word-spacing:24.462000px;}
.ws114{word-spacing:24.602400px;}
.ws9a{word-spacing:24.786000px;}
.ws141{word-spacing:25.036560px;}
.wsfd{word-spacing:25.164000px;}
.ws152{word-spacing:25.229520px;}
.wsea{word-spacing:25.380000px;}
.wsbc{word-spacing:25.434000px;}
.wsc7{word-spacing:25.488000px;}
.wsa6{word-spacing:25.920000px;}
.wse9{word-spacing:26.136000px;}
.ws90{word-spacing:26.244000px;}
.ws13e{word-spacing:26.773200px;}
.ws92{word-spacing:26.838000px;}
.ws93{word-spacing:26.892000px;}
.wsbd{word-spacing:26.946000px;}
.ws25{word-spacing:27.648000px;}
.wsef{word-spacing:29.052000px;}
.wsd4{word-spacing:29.106000px;}
.ws150{word-spacing:29.233440px;}
.ws4d{word-spacing:29.484000px;}
.wsbf{word-spacing:29.754000px;}
.ws3f{word-spacing:29.808000px;}
.wsa0{word-spacing:30.510000px;}
.wsc0{word-spacing:30.564000px;}
.ws139{word-spacing:30.825360px;}
.wsed{word-spacing:31.266000px;}
.ws52{word-spacing:31.806000px;}
.ws96{word-spacing:31.968000px;}
.ws14d{word-spacing:32.465520px;}
.wsd0{word-spacing:32.562000px;}
.ws6c{word-spacing:32.616000px;}
.ws6b{word-spacing:32.670000px;}
.wsd1{word-spacing:32.724000px;}
.wsfe{word-spacing:33.264000px;}
.wsfa{word-spacing:33.372000px;}
.wsd5{word-spacing:33.426000px;}
.ws86{word-spacing:34.074000px;}
.ws78{word-spacing:34.128000px;}
.wscc{word-spacing:34.830000px;}
.ws75{word-spacing:35.586000px;}
.wsa8{word-spacing:36.990000px;}
.wse0{word-spacing:37.692000px;}
.wse1{word-spacing:37.746000px;}
.ws43{word-spacing:38.286000px;}
.ws9e{word-spacing:38.394000px;}
.ws42{word-spacing:38.448000px;}
.wsc1{word-spacing:39.852000px;}
.ws11d{word-spacing:41.196960px;}
.wsf8{word-spacing:41.364000px;}
.ws89{word-spacing:42.714000px;}
.wsf7{word-spacing:45.630000px;}
.ws160{word-spacing:47.661120px;}
.ws9d{word-spacing:51.408000px;}
.ws15e{word-spacing:52.388640px;}
.ws15d{word-spacing:52.678080px;}
.ws4c{word-spacing:54.324000px;}
.ws116{word-spacing:56.199600px;}
.ws101{word-spacing:59.994000px;}
.wsfc{word-spacing:60.750000px;}
.wsfb{word-spacing:60.804000px;}
.wse6{word-spacing:68.634000px;}
.wseb{word-spacing:75.762000px;}
.ws100{word-spacing:75.924000px;}
.wsff{word-spacing:78.084000px;}
.ws122{word-spacing:87.266160px;}
.ws162{word-spacing:93.633840px;}
.wse7{word-spacing:129.924000px;}
.wse8{word-spacing:130.626000px;}
._e{margin-left:-14.401800px;}
._11{margin-left:-3.315600px;}
._c{margin-left:-2.149200px;}
._1{margin-left:-1.124928px;}
._0{width:1.549800px;}
._12{width:2.635200px;}
._2{width:4.039488px;}
._15{width:5.292000px;}
._6{width:6.566400px;}
._d{width:8.764200px;}
._3{width:9.936000px;}
._b{width:11.097000px;}
._8{width:13.554000px;}
._7{width:14.580000px;}
._10{width:15.650928px;}
._16{width:16.988400px;}
._4{width:18.046800px;}
._9{width:20.493000px;}
._5{width:24.202800px;}
._17{width:26.649000px;}
._f{width:32.848200px;}
._13{width:34.036200px;}
._14{width:36.990000px;}
._18{width:51.996600px;}
._19{width:132.532200px;}
._1a{width:135.432000px;}
._1b{width:161.298000px;}
._a{width:851.796000px;}
.fc3{color:rgb(107,159,37);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc5{color:transparent;}
.fc1{color:rgb(84,158,57);}
.fc0{color:rgb(147,208,124);}
.fs6{font-size:2.880000px;}
.fs4{font-size:5.760000px;}
.fs5{font-size:23.760000px;}
.fs2{font-size:36.000000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y154{bottom:11.160000px;}
.y156{bottom:11.340000px;}
.y153{bottom:23.940000px;}
.y350{bottom:27.720000px;}
.y3{bottom:57.591000px;}
.y2{bottom:74.155500px;}
.y107{bottom:114.142500px;}
.y2da{bottom:115.380000px;}
.y4f{bottom:115.762500px;}
.y128{bottom:116.842500px;}
.y1c3{bottom:117.058500px;}
.y35f{bottom:119.880000px;}
.y17d{bottom:120.982500px;}
.yea{bottom:121.882500px;}
.yd4{bottom:121.887000px;}
.y15f{bottom:122.229000px;}
.y2e{bottom:123.507000px;}
.y1f3{bottom:128.538000px;}
.y194{bottom:131.445000px;}
.y2d9{bottom:132.120540px;}
.y106{bottom:133.042500px;}
.y300{bottom:134.099100px;}
.y27b{bottom:134.100000px;}
.y4e{bottom:134.838000px;}
.y1c2{bottom:136.134000px;}
.y127{bottom:139.698000px;}
.y17c{bottom:139.882500px;}
.ye9{bottom:140.958000px;}
.yd3{bottom:140.962500px;}
.y2d{bottom:142.407000px;}
.y35e{bottom:144.540000px;}
.y270{bottom:147.060000px;}
.y1f2{bottom:147.438000px;}
.y27a{bottom:147.780000px;}
.y15e{bottom:148.689000px;}
.y2d8{bottom:148.859820px;}
.y193{bottom:150.345000px;}
.y105{bottom:151.942500px;}
.y4d{bottom:153.913500px;}
.y1c1{bottom:155.034000px;}
.y2ff{bottom:158.400000px;}
.y17b{bottom:158.782500px;}
.ye8{bottom:159.858000px;}
.yd2{bottom:159.862500px;}
.y2c{bottom:161.307000px;}
.y2d7{bottom:165.780000px;}
.y1f1{bottom:166.338000px;}
.y15d{bottom:167.764500px;}
.y192{bottom:169.245000px;}
.y35d{bottom:169.380000px;}
.y2a9{bottom:170.280000px;}
.y104{bottom:170.842500px;}
.y279{bottom:172.620000px;}
.y4c{bottom:172.813500px;}
.y1c0{bottom:173.934000px;}
.y1a3{bottom:174.622500px;}
.y17a{bottom:177.682500px;}
.ye7{bottom:178.933500px;}
.yd1{bottom:178.938000px;}
.y2b{bottom:180.382500px;}
.y2fe{bottom:182.700540px;}
.y1f0{bottom:185.413500px;}
.y191{bottom:188.320500px;}
.y103{bottom:189.918000px;}
.y2d6{bottom:190.261620px;}
.y15c{bottom:190.620000px;}
.y4b{bottom:191.713500px;}
.y1bf{bottom:192.834000px;}
.y1a2{bottom:193.698000px;}
.y35c{bottom:194.040000px;}
.y29e{bottom:196.744500px;}
.y179{bottom:196.758000px;}
.y278{bottom:197.280000px;}
.ye6{bottom:197.833500px;}
.yd0{bottom:197.838000px;}
.y2a{bottom:199.282500px;}
.y2fd{bottom:199.439820px;}
.y1ef{bottom:204.313500px;}
.y2d5{bottom:207.000900px;}
.y190{bottom:207.220500px;}
.y102{bottom:208.818000px;}
.y271{bottom:209.160000px;}
.y4a{bottom:210.789000px;}
.y1be{bottom:211.909500px;}
.y178{bottom:215.658000px;}
.y29d{bottom:215.820000px;}
.y2fc{bottom:216.360000px;}
.y1a1{bottom:216.553500px;}
.ye5{bottom:216.733500px;}
.ycf{bottom:216.738000px;}
.y29{bottom:218.182500px;}
.y35b{bottom:218.880000px;}
.y2a8{bottom:219.604500px;}
.y277{bottom:221.220000px;}
.y276{bottom:222.120000px;}
.y1ee{bottom:223.213500px;}
.y2d4{bottom:223.740180px;}
.y18f{bottom:226.120500px;}
.y101{bottom:227.718000px;}
.y49{bottom:229.689000px;}
.y1bd{bottom:230.809500px;}
.y177{bottom:234.558000px;}
.y29c{bottom:234.720000px;}
.yce{bottom:235.638000px;}
.y28{bottom:237.258000px;}
.y2a7{bottom:238.680000px;}
.y2d3{bottom:240.660360px;}
.y2fb{bottom:240.841980px;}
.y1ed{bottom:242.289000px;}
.ye4{bottom:243.018000px;}
.y35a{bottom:243.540000px;}
.y18e{bottom:245.196000px;}
.y275{bottom:246.780000px;}
.y100{bottom:246.793500px;}
.y48{bottom:248.589000px;}
.y1bc{bottom:249.709500px;}
.y380{bottom:250.200000px;}
.y29b{bottom:253.620000px;}
.y176{bottom:253.633500px;}
.ycd{bottom:254.713500px;}
.y27{bottom:256.158000px;}
.y2d2{bottom:257.399640px;}
.y2fa{bottom:257.400360px;}
.y1ec{bottom:261.189000px;}
.yff{bottom:262.089000px;}
.ye3{bottom:262.093500px;}
.y37f{bottom:263.880000px;}
.y2a6{bottom:264.964500px;}
.y47{bottom:267.489000px;}
.y359{bottom:268.200000px;}
.y1bb{bottom:268.785000px;}
.y274{bottom:271.440000px;}
.y18d{bottom:271.480500px;}
.y175{bottom:272.533500px;}
.y29a{bottom:272.700000px;}
.ycc{bottom:273.613500px;}
.y2d1{bottom:274.319820px;}
.y2f9{bottom:274.320540px;}
.y26{bottom:275.058000px;}
.y1eb{bottom:280.089000px;}
.ye2{bottom:281.169000px;}
.y2a5{bottom:284.040000px;}
.y46{bottom:286.564500px;}
.y1ba{bottom:287.685000px;}
.y37e{bottom:288.720000px;}
.y18c{bottom:290.556000px;}
.y2d0{bottom:291.240000px;}
.y2f8{bottom:291.240720px;}
.y174{bottom:291.433500px;}
.y299{bottom:291.595500px;}
.ycb{bottom:292.513500px;}
.y358{bottom:293.040000px;}
.y25{bottom:293.958000px;}
.y273{bottom:296.280000px;}
.y1ea{bottom:298.989000px;}
.ye1{bottom:300.069000px;}
.y1b9{bottom:306.585000px;}
.y238{bottom:307.809000px;}
.y2f7{bottom:307.980000px;}
.y18b{bottom:309.456000px;}
.y2a4{bottom:310.320000px;}
.y173{bottom:310.333500px;}
.yca{bottom:311.589000px;}
.y45{bottom:312.849000px;}
.y24{bottom:313.033500px;}
.y37d{bottom:313.380000px;}
.y2cf{bottom:315.721260px;}
.y357{bottom:317.700000px;}
.y298{bottom:317.880000px;}
.y1e9{bottom:318.064500px;}
.ye0{bottom:318.969000px;}
.y1b8{bottom:325.485000px;}
.y18a{bottom:328.356000px;}
.y172{bottom:329.409000px;}
.y2a3{bottom:329.584500px;}
.yc9{bottom:330.489000px;}
.y44{bottom:331.924500px;}
.y23{bottom:331.933500px;}
.y272{bottom:332.100000px;}
.y2ce{bottom:332.460540px;}
.y2f6{bottom:332.642160px;}
.y1e8{bottom:336.964500px;}
.ydf{bottom:337.869000px;}
.y37c{bottom:338.040000px;}
.y126{bottom:342.198000px;}
.y356{bottom:342.360000px;}
.y1b7{bottom:344.560500px;}
.y189{bottom:347.431500px;}
.y171{bottom:348.309000px;}
.y2a2{bottom:348.484500px;}
.y2cd{bottom:349.199820px;}
.y2f5{bottom:349.200540px;}
.y43{bottom:350.824500px;}
.y22{bottom:350.833500px;}
.y22e{bottom:353.344500px;}
.y1e7{bottom:355.864500px;}
.y297{bottom:356.040000px;}
.yc8{bottom:356.773500px;}
.yde{bottom:356.944500px;}
.y1fc{bottom:357.660000px;}
.y237{bottom:360.553500px;}
.y37b{bottom:362.880000px;}
.y1b6{bottom:363.460500px;}
.y2cc{bottom:366.120000px;}
.y2f4{bottom:366.120720px;}
.y188{bottom:366.331500px;}
.y355{bottom:367.200000px;}
.y2a1{bottom:367.384500px;}
.y125{bottom:368.658000px;}
.y42{bottom:369.900000px;}
.y21{bottom:369.909000px;}
.y22d{bottom:372.244500px;}
.y170{bottom:374.593500px;}
.y1e6{bottom:374.940000px;}
.ydd{bottom:375.844500px;}
.yc7{bottom:375.849000px;}
.y236{bottom:379.818000px;}
.y1fb{bottom:380.538000px;}
.y1b5{bottom:382.360500px;}
.y26f{bottom:382.527000px;}
.y2f3{bottom:382.860000px;}
.y187{bottom:385.231500px;}
.y2a0{bottom:386.284500px;}
.y37a{bottom:387.540000px;}
.y124{bottom:387.733500px;}
.y20{bottom:388.809000px;}
.y41{bottom:388.849500px;}
.y2cb{bottom:390.601260px;}
.y22c{bottom:391.144500px;}
.y354{bottom:391.860000px;}
.y16f{bottom:393.669000px;}
.y296{bottom:393.840000px;}
.ydc{bottom:394.744500px;}
.yc6{bottom:394.749000px;}
.y235{bottom:398.718000px;}
.y1b4{bottom:401.436000px;}
.y26e{bottom:401.602500px;}
.y186{bottom:404.307000px;}
.y29f{bottom:405.360000px;}
.y1e5{bottom:407.340000px;}
.y2ca{bottom:407.340540px;}
.y2f2{bottom:407.522700px;}
.y1f{bottom:407.709000px;}
.y40{bottom:407.749500px;}
.y22b{bottom:410.220000px;}
.y123{bottom:410.413500px;}
.y379{bottom:412.380000px;}
.y16e{bottom:412.569000px;}
.y295{bottom:412.744500px;}
.ydb{bottom:413.820000px;}
.yc5{bottom:413.824500px;}
.y353{bottom:416.700000px;}
.y234{bottom:417.618000px;}
.y266{bottom:420.313500px;}
.y26d{bottom:420.502500px;}
.y185{bottom:423.207000px;}
.y2c9{bottom:424.079820px;}
.y2f1{bottom:424.081080px;}
.y1e{bottom:426.609000px;}
.y3f{bottom:426.649500px;}
.y1b3{bottom:427.720500px;}
.y22a{bottom:429.120000px;}
.y16d{bottom:431.644500px;}
.y294{bottom:431.820000px;}
.y15b{bottom:432.000000px;}
.yda{bottom:432.720000px;}
.yc4{bottom:432.724500px;}
.y233{bottom:436.693500px;}
.y378{bottom:437.040000px;}
.y1e4{bottom:438.151500px;}
.y90{bottom:438.156000px;}
.y265{bottom:439.389000px;}
.y26c{bottom:439.402500px;}
.y2c8{bottom:441.000000px;}
.y2f0{bottom:441.001260px;}
.y352{bottom:441.360000px;}
.y184{bottom:442.107000px;}
.y15a{bottom:445.680000px;}
.y1d{bottom:445.684500px;}
.y3e{bottom:445.725000px;}
.y1b2{bottom:446.796000px;}
.y229{bottom:448.020000px;}
.y16c{bottom:450.544500px;}
.yd9{bottom:451.620000px;}
.yc3{bottom:451.624500px;}
.y232{bottom:455.593500px;}
.y2ef{bottom:457.740540px;}
.y264{bottom:458.464500px;}
.y26b{bottom:458.478000px;}
.y183{bottom:461.007000px;}
.y377{bottom:461.700000px;}
.y293{bottom:464.220000px;}
.y1c{bottom:464.584500px;}
.y6f{bottom:464.602500px;}
.y1e3{bottom:464.611500px;}
.y3d{bottom:464.625000px;}
.y2c7{bottom:465.481260px;}
.y1b1{bottom:465.696000px;}
.y34f{bottom:466.020000px;}
.y228{bottom:466.920000px;}
.y339{bottom:468.900000px;}
.y16b{bottom:469.444500px;}
.y159{bottom:470.340000px;}
.yc2{bottom:470.524500px;}
.yd8{bottom:470.551500px;}
.y8f{bottom:472.000500px;}
.y231{bottom:474.493500px;}
.y2ee{bottom:474.660720px;}
.y351{bottom:477.360000px;}
.y263{bottom:477.364500px;}
.y26a{bottom:477.378000px;}
.y182{bottom:480.082500px;}
.y2c6{bottom:482.220540px;}
.y1b{bottom:483.484500px;}
.y3c{bottom:483.525000px;}
.y6e{bottom:483.678000px;}
.y1e2{bottom:483.687000px;}
.y1b0{bottom:484.596000px;}
.y227{bottom:485.995500px;}
.y376{bottom:486.540000px;}
.y16a{bottom:488.520000px;}
.yc1{bottom:489.600000px;}
.yd7{bottom:489.627000px;}
.y8e{bottom:491.265000px;}
.y2ed{bottom:491.400000px;}
.y230{bottom:493.393500px;}
.y292{bottom:495.000000px;}
.y158{bottom:495.180000px;}
.y338{bottom:495.360000px;}
.y262{bottom:496.264500px;}
.y269{bottom:496.278000px;}
.y2c5{bottom:498.959820px;}
.y6d{bottom:502.578000px;}
.y1e1{bottom:502.587000px;}
.y3b{bottom:502.600500px;}
.y1af{bottom:503.671500px;}
.y181{bottom:506.367000px;}
.y34e{bottom:507.240000px;}
.y169{bottom:507.420000px;}
.yc0{bottom:508.500000px;}
.yd6{bottom:508.527000px;}
.y291{bottom:508.680000px;}
.y1a{bottom:509.769000px;}
.y8d{bottom:510.165000px;}
.y375{bottom:511.200000px;}
.y226{bottom:512.280000px;}
.y22f{bottom:512.469000px;}
.y261{bottom:515.340000px;}
.y268{bottom:515.353500px;}
.y2c4{bottom:515.880000px;}
.y2ec{bottom:516.060000px;}
.y157{bottom:519.840000px;}
.y3a{bottom:521.500500px;}
.y6c{bottom:521.653500px;}
.y1e0{bottom:521.662500px;}
.y337{bottom:521.820000px;}
.y1ae{bottom:522.571500px;}
.y180{bottom:525.442500px;}
.y168{bottom:526.320000px;}
.ybf{bottom:527.400000px;}
.yd5{bottom:527.427000px;}
.y19{bottom:529.033500px;}
.y8c{bottom:529.065000px;}
.y34d{bottom:532.080000px;}
.y2eb{bottom:532.620540px;}
.y290{bottom:533.520000px;}
.y260{bottom:534.240000px;}
.y267{bottom:534.253500px;}
.y374{bottom:536.040000px;}
.y2c3{bottom:540.360000px;}
.y39{bottom:540.400500px;}
.y6b{bottom:540.553500px;}
.y1df{bottom:540.562500px;}
.y1ad{bottom:541.471500px;}
.y17f{bottom:544.342500px;}
.y155{bottom:544.500000px;}
.y18{bottom:547.933500px;}
.y8b{bottom:548.140500px;}
.y336{bottom:548.280000px;}
.y2ea{bottom:549.540720px;}
.y225{bottom:556.560000px;}
.y34c{bottom:556.740000px;}
.y2c2{bottom:557.101260px;}
.y28f{bottom:558.180000px;}
.y167{bottom:558.720000px;}
.y38{bottom:559.300500px;}
.y6a{bottom:559.453500px;}
.y1de{bottom:559.462500px;}
.y1ac{bottom:560.547000px;}
.y373{bottom:560.700000px;}
.y17e{bottom:563.242500px;}
.y2e9{bottom:566.280000px;}
.y25f{bottom:566.460000px;}
.y17{bottom:566.833500px;}
.y8a{bottom:567.040500px;}
.y1a0{bottom:567.553500px;}
.y152{bottom:569.340000px;}
.ybe{bottom:570.240000px;}
.y2c1{bottom:573.840540px;}
.y335{bottom:574.740000px;}
.y21b{bottom:576.909000px;}
.y37{bottom:578.376000px;}
.y69{bottom:578.529000px;}
.y1dd{bottom:578.538000px;}
.y1ab{bottom:579.447000px;}
.y34b{bottom:581.400000px;}
.y28e{bottom:582.840000px;}
.y372{bottom:585.360000px;}
.y16{bottom:585.733500px;}
.y89{bottom:585.940500px;}
.y19f{bottom:586.629000px;}
.y166{bottom:589.518000px;}
.y2c0{bottom:590.760720px;}
.y2e8{bottom:590.941800px;}
.y31b{bottom:592.919820px;}
.y224{bottom:595.633500px;}
.y21a{bottom:595.809000px;}
.y68{bottom:597.429000px;}
.y1dc{bottom:597.438000px;}
.y1aa{bottom:598.347000px;}
.ybd{bottom:603.931500px;}
.y36{bottom:604.660500px;}
.y15{bottom:604.809000px;}
.y88{bottom:604.840500px;}
.y34a{bottom:606.240000px;}
.y151{bottom:607.500000px;}
.y2e7{bottom:607.500180px;}
.y28d{bottom:607.680000px;}
.y19e{bottom:609.309000px;}
.y31a{bottom:609.840000px;}
.y371{bottom:610.200000px;}
.ya7{bottom:611.653500px;}
.y219{bottom:614.884500px;}
.y223{bottom:614.898000px;}
.y165{bottom:615.978000px;}
.y67{bottom:616.329000px;}
.y1db{bottom:616.338000px;}
.y25e{bottom:616.855500px;}
.y1a9{bottom:617.247000px;}
.ybc{bottom:623.007000px;}
.y14{bottom:623.709000px;}
.y35{bottom:623.736000px;}
.y87{bottom:623.916000px;}
.y2e6{bottom:624.420360px;}
.y334{bottom:626.942160px;}
.y150{bottom:628.560000px;}
.y252{bottom:628.564500px;}
.ya6{bottom:630.553500px;}
.y349{bottom:630.900000px;}
.y2bf{bottom:632.162160px;}
.y28c{bottom:632.340000px;}
.y218{bottom:633.784500px;}
.y222{bottom:633.798000px;}
.y319{bottom:634.320000px;}
.y370{bottom:634.860000px;}
.y66{bottom:635.229000px;}
.y1da{bottom:635.238000px;}
.y25d{bottom:636.120000px;}
.y1a8{bottom:636.322500px;}
.y164{bottom:638.833500px;}
.y2e5{bottom:641.159640px;}
.ybb{bottom:642.082500px;}
.y13{bottom:642.609000px;}
.y34{bottom:642.636000px;}
.y86{bottom:642.816000px;}
.y333{bottom:643.500540px;}
.y13e{bottom:643.518000px;}
.y251{bottom:647.464500px;}
.y2be{bottom:648.720540px;}
.ya5{bottom:649.453500px;}
.y318{bottom:651.060540px;}
.y217{bottom:652.684500px;}
.y221{bottom:652.698000px;}
.y65{bottom:654.304500px;}
.y1d9{bottom:654.313500px;}
.y25c{bottom:655.020000px;}
.y348{bottom:655.740000px;}
.y28b{bottom:657.000000px;}
.y2e4{bottom:658.079820px;}
.y36f{bottom:659.520000px;}
.y332{bottom:660.420720px;}
.yba{bottom:660.982500px;}
.y12{bottom:661.684500px;}
.y33{bottom:661.711500px;}
.y85{bottom:661.716000px;}
.y1a7{bottom:662.607000px;}
.y13d{bottom:662.782500px;}
.y2bd{bottom:665.640720px;}
.y250{bottom:666.540000px;}
.y317{bottom:667.799820px;}
.ya4{bottom:668.529000px;}
.y216{bottom:671.584500px;}
.y220{bottom:671.598000px;}
.y14f{bottom:673.069500px;}
.y64{bottom:673.204500px;}
.y1d8{bottom:673.213500px;}
.y25b{bottom:673.924500px;}
.y2e3{bottom:675.000000px;}
.y331{bottom:677.160000px;}
.yb9{bottom:679.882500px;}
.y347{bottom:680.400000px;}
.y11{bottom:680.584500px;}
.y32{bottom:680.611500px;}
.y84{bottom:680.791500px;}
.y13c{bottom:681.682500px;}
.y28a{bottom:681.840000px;}
.y2bc{bottom:682.380000px;}
.y36e{bottom:684.360000px;}
.y316{bottom:684.720000px;}
.y24f{bottom:685.440000px;}
.y215{bottom:690.660000px;}
.y21f{bottom:690.673500px;}
.y1d7{bottom:692.113500px;}
.y14e{bottom:692.145000px;}
.y25a{bottom:693.000000px;}
.ya3{bottom:694.624500px;}
.yb8{bottom:698.782500px;}
.y2e2{bottom:699.480000px;}
.y10{bottom:699.484500px;}
.y63{bottom:699.489000px;}
.y31{bottom:699.511500px;}
.y83{bottom:699.691500px;}
.y13b{bottom:700.582500px;}
.y330{bottom:701.820000px;}
.y24e{bottom:704.344500px;}
.y346{bottom:705.060000px;}
.y289{bottom:706.500000px;}
.y2bb{bottom:707.042160px;}
.y36d{bottom:709.020000px;}
.y315{bottom:709.201800px;}
.y214{bottom:709.560000px;}
.y21e{bottom:709.573500px;}
.y1d6{bottom:711.189000px;}
.y14d{bottom:711.220500px;}
.y259{bottom:711.900000px;}
.ya2{bottom:713.889000px;}
.y2e1{bottom:716.220000px;}
.yb7{bottom:717.858000px;}
.y32f{bottom:718.380360px;}
.yf{bottom:718.384500px;}
.y30{bottom:718.411500px;}
.y62{bottom:718.564500px;}
.y82{bottom:718.591500px;}
.y13a{bottom:719.482500px;}
.y24d{bottom:723.244500px;}
.y2ba{bottom:723.600540px;}
.y314{bottom:725.941080px;}
.y213{bottom:728.460000px;}
.y21d{bottom:728.473500px;}
.y345{bottom:729.900000px;}
.y1d5{bottom:730.089000px;}
.y14c{bottom:730.120500px;}
.y258{bottom:730.800000px;}
.y288{bottom:731.340000px;}
.ya1{bottom:732.789000px;}
.y2e0{bottom:732.959460px;}
.y36c{bottom:733.860000px;}
.y32e{bottom:735.300540px;}
.yb6{bottom:736.758000px;}
.ye{bottom:737.460000px;}
.y61{bottom:737.464500px;}
.y2f{bottom:737.487000px;}
.y81{bottom:737.491500px;}
.y139{bottom:738.558000px;}
.y2b9{bottom:740.520720px;}
.y24c{bottom:742.320000px;}
.y313{bottom:742.680360px;}
.y212{bottom:747.535500px;}
.y21c{bottom:747.549000px;}
.y1d4{bottom:748.989000px;}
.y14b{bottom:749.020500px;}
.y257{bottom:749.700000px;}
.y2df{bottom:749.879640px;}
.ya0{bottom:751.689000px;}
.y32d{bottom:752.039820px;}
.y344{bottom:754.560000px;}
.y287{bottom:756.000000px;}
.y60{bottom:756.540000px;}
.y2b8{bottom:757.260000px;}
.y138{bottom:757.458000px;}
.y36b{bottom:758.520000px;}
.y312{bottom:759.600540px;}
.y24b{bottom:761.220000px;}
.y122{bottom:763.033500px;}
.yb5{bottom:763.042500px;}
.y80{bottom:763.776000px;}
.y114{bottom:764.100000px;}
.y1d3{bottom:767.889000px;}
.y256{bottom:768.784500px;}
.y32c{bottom:768.960000px;}
.y9f{bottom:770.764500px;}
.y211{bottom:773.820000px;}
.y2de{bottom:774.361440px;}
.y14a{bottom:775.305000px;}
.y5f{bottom:775.440000px;}
.y137{bottom:776.358000px;}
.y311{bottom:776.520720px;}
.y343{bottom:779.400000px;}
.yd{bottom:780.120000px;}
.y2b7{bottom:781.920000px;}
.y121{bottom:782.109000px;}
.yb4{bottom:782.118000px;}
.y7f{bottom:783.040500px;}
.y113{bottom:783.175500px;}
.y36a{bottom:783.180000px;}
.y1d2{bottom:786.964500px;}
.y255{bottom:787.684500px;}
.y9e{bottom:789.664500px;}
.y2dd{bottom:791.100720px;}
.y310{bottom:793.260000px;}
.y32b{bottom:793.442340px;}
.y286{bottom:794.178000px;}
.y5e{bottom:794.340000px;}
.y149{bottom:794.380500px;}
.y136{bottom:795.433500px;}
.y2b6{bottom:798.480180px;}
.y24a{bottom:799.195500px;}
.y120{bottom:801.184500px;}
.yb3{bottom:801.193500px;}
.y7e{bottom:801.940500px;}
.y112{bottom:802.075500px;}
.y342{bottom:804.060000px;}
.y254{bottom:806.584500px;}
.y2dc{bottom:807.840000px;}
.y369{bottom:808.020000px;}
.y9d{bottom:808.564500px;}
.y32a{bottom:810.181620px;}
.y1d1{bottom:813.249000px;}
.y1fa{bottom:813.253500px;}
.y5d{bottom:813.415500px;}
.y148{bottom:813.456000px;}
.yc{bottom:813.780000px;}
.y135{bottom:814.333500px;}
.y2b5{bottom:815.400360px;}
.y30f{bottom:817.741080px;}
.y210{bottom:818.100000px;}
.y11f{bottom:820.084500px;}
.yb2{bottom:820.093500px;}
.y285{bottom:820.638000px;}
.y7d{bottom:820.840500px;}
.y111{bottom:820.975500px;}
.y249{bottom:825.480000px;}
.y253{bottom:825.664500px;}
.y329{bottom:826.920900px;}
.y9c{bottom:827.464500px;}
.y341{bottom:828.720000px;}
.y206{bottom:829.984500px;}
.y2b4{bottom:832.139640px;}
.y19d{bottom:832.153500px;}
.y5c{bottom:832.315500px;}
.y2db{bottom:832.320000px;}
.y1d0{bottom:832.324500px;}
.y27d{bottom:832.329000px;}
.y147{bottom:832.356000px;}
.y368{bottom:832.680000px;}
.y134{bottom:833.233500px;}
.y30e{bottom:834.480360px;}
.y20f{bottom:837.540000px;}
.y11e{bottom:838.984500px;}
.yb1{bottom:838.993500px;}
.y110{bottom:839.875500px;}
.y284{bottom:839.902500px;}
.y7c{bottom:839.916000px;}
.yb{bottom:840.240000px;}
.yfe{bottom:843.669000px;}
.y328{bottom:843.841080px;}
.y9b{bottom:846.540000px;}
.y205{bottom:848.884500px;}
.y2b3{bottom:849.059820px;}
.y1f9{bottom:851.053500px;}
.y5b{bottom:851.215500px;}
.y1cf{bottom:851.224500px;}
.yf2{bottom:851.229000px;}
.y146{bottom:851.256000px;}
.y30d{bottom:851.400540px;}
.y133{bottom:852.133500px;}
.y340{bottom:853.560000px;}
.y20e{bottom:856.458000px;}
.y367{bottom:857.520000px;}
.y11d{bottom:857.884500px;}
.yb0{bottom:857.893500px;}
.y283{bottom:858.802500px;}
.y7b{bottom:858.816000px;}
.y1a6{bottom:859.518000px;}
.y327{bottom:860.761260px;}
.y9a{bottom:865.449000px;}
.y2b2{bottom:865.980000px;}
.y10f{bottom:866.160000px;}
.ya{bottom:866.700000px;}
.y204{bottom:867.960000px;}
.y30c{bottom:868.139820px;}
.y248{bottom:869.760000px;}
.yfd{bottom:869.953500px;}
.y5a{bottom:870.115500px;}
.y1ce{bottom:870.124500px;}
.yf1{bottom:870.129000px;}
.y145{bottom:870.156000px;}
.y132{bottom:871.209000px;}
.y20d{bottom:875.358000px;}
.y11c{bottom:876.960000px;}
.y326{bottom:877.500540px;}
.y282{bottom:877.702500px;}
.y7a{bottom:877.716000px;}
.y33f{bottom:878.220000px;}
.y1a5{bottom:878.593500px;}
.y366{bottom:882.180000px;}
.yaf{bottom:884.178000px;}
.y99{bottom:884.349000px;}
.y30b{bottom:885.060000px;}
.y10e{bottom:885.424500px;}
.y9{bottom:885.775500px;}
.y203{bottom:886.860000px;}
.y1f7{bottom:889.191000px;}
.y1cd{bottom:889.200000px;}
.yf0{bottom:889.204500px;}
.yfc{bottom:889.218000px;}
.y144{bottom:889.231500px;}
.y325{bottom:894.420720px;}
.y20c{bottom:894.433500px;}
.y11b{bottom:895.860000px;}
.y59{bottom:896.400000px;}
.y281{bottom:896.602500px;}
.y79{bottom:896.616000px;}
.y131{bottom:897.493500px;}
.y1a4{bottom:897.669000px;}
.y2b1{bottom:898.380000px;}
.y33e{bottom:902.880000px;}
.y98{bottom:903.424500px;}
.yae{bottom:903.442500px;}
.y10d{bottom:904.324500px;}
.y202{bottom:905.760000px;}
.y365{bottom:906.840000px;}
.y1f6{bottom:908.091000px;}
.y1cc{bottom:908.100000px;}
.yef{bottom:908.104500px;}
.yfb{bottom:908.118000px;}
.y143{bottom:908.131500px;}
.y30a{bottom:909.541980px;}
.y324{bottom:911.160000px;}
.y8{bottom:912.055500px;}
.y20b{bottom:913.333500px;}
.y247{bottom:915.493500px;}
.y58{bottom:915.664500px;}
.y280{bottom:915.678000px;}
.y78{bottom:915.691500px;}
.y130{bottom:916.569000px;}
.y11a{bottom:922.144500px;}
.y97{bottom:922.324500px;}
.yad{bottom:922.342500px;}
.y10c{bottom:923.224500px;}
.y201{bottom:924.835500px;}
.y309{bottom:926.281260px;}
.y1f5{bottom:926.991000px;}
.yee{bottom:927.004500px;}
.yfa{bottom:927.018000px;}
.y142{bottom:927.031500px;}
.y1cb{bottom:927.072000px;}
.y33d{bottom:927.720000px;}
.y7{bottom:931.315500px;}
.y364{bottom:931.680000px;}
.y20a{bottom:932.233500px;}
.y160{bottom:934.389000px;}
.y57{bottom:934.564500px;}
.y246{bottom:934.569000px;}
.y27f{bottom:934.578000px;}
.y77{bottom:934.591500px;}
.y12f{bottom:935.469000px;}
.y323{bottom:935.821440px;}
.y119{bottom:941.220000px;}
.y96{bottom:941.224500px;}
.yac{bottom:941.242500px;}
.y10b{bottom:942.124500px;}
.y308{bottom:943.020540px;}
.y200{bottom:943.735500px;}
.y23f{bottom:946.066500px;}
.yed{bottom:946.080000px;}
.yf9{bottom:946.093500px;}
.y141{bottom:946.107000px;}
.y1ca{bottom:946.147500px;}
.y2b0{bottom:950.044500px;}
.y2ae{bottom:950.224500px;}
.y209{bottom:951.133500px;}
.y322{bottom:952.379820px;}
.y33c{bottom:952.380000px;}
.y1f4{bottom:953.275500px;}
.y163{bottom:953.289000px;}
.y56{bottom:953.464500px;}
.y245{bottom:953.469000px;}
.y27e{bottom:953.478000px;}
.y76{bottom:953.491500px;}
.y12e{bottom:954.544500px;}
.y363{bottom:956.340000px;}
.y6{bottom:957.600000px;}
.y307{bottom:959.940720px;}
.y118{bottom:960.120000px;}
.y95{bottom:960.124500px;}
.yab{bottom:960.142500px;}
.y10a{bottom:961.200000px;}
.y1ff{bottom:962.635500px;}
.y23e{bottom:964.966500px;}
.yec{bottom:964.980000px;}
.yf8{bottom:964.993500px;}
.y140{bottom:965.007000px;}
.y1c9{bottom:965.047500px;}
.y2af{bottom:969.120000px;}
.y2ad{bottom:969.124500px;}
.y321{bottom:969.300000px;}
.y208{bottom:970.209000px;}
.y27c{bottom:972.364500px;}
.y55{bottom:972.540000px;}
.y244{bottom:972.544500px;}
.y162{bottom:972.553500px;}
.y75{bottom:972.567000px;}
.y12d{bottom:973.444500px;}
.y33a{bottom:975.960000px;}
.y306{bottom:976.680000px;}
.y33b{bottom:977.220000px;}
.y117{bottom:979.195500px;}
.y94{bottom:979.200000px;}
.yaa{bottom:979.218000px;}
.y109{bottom:980.100000px;}
.y362{bottom:981.000000px;}
.y23d{bottom:983.866500px;}
.y198{bottom:983.880000px;}
.y19c{bottom:983.893500px;}
.y1c8{bottom:983.947500px;}
.y5{bottom:988.196940px;}
.y2ac{bottom:988.200000px;}
.y1fe{bottom:988.920000px;}
.y207{bottom:989.109000px;}
.yeb{bottom:991.264500px;}
.yf7{bottom:991.278000px;}
.y13f{bottom:991.291500px;}
.y54{bottom:991.440000px;}
.y243{bottom:991.444500px;}
.y161{bottom:991.453500px;}
.y74{bottom:991.467000px;}
.y12c{bottom:992.344500px;}
.y320{bottom:993.781440px;}
.y116{bottom:998.095500px;}
.y93{bottom:998.100000px;}
.ya9{bottom:998.118000px;}
.y305{bottom:1001.341980px;}
.y23c{bottom:1002.766500px;}
.y197{bottom:1002.780000px;}
.y19b{bottom:1002.793500px;}
.y1c7{bottom:1002.847500px;}
.y361{bottom:1005.840000px;}
.y2ab{bottom:1007.100000px;}
.y1f8{bottom:1010.164500px;}
.y53{bottom:1010.340000px;}
.y242{bottom:1010.344500px;}
.yf6{bottom:1010.353500px;}
.y73{bottom:1010.367000px;}
.y31f{bottom:1010.520720px;}
.y12b{bottom:1011.244500px;}
.y108{bottom:1012.500000px;}
.y115{bottom:1016.995500px;}
.y92{bottom:1017.000000px;}
.ya8{bottom:1017.018000px;}
.y304{bottom:1017.900360px;}
.y23b{bottom:1021.842000px;}
.y196{bottom:1021.855500px;}
.y19a{bottom:1021.869000px;}
.y1c6{bottom:1021.923000px;}
.y2aa{bottom:1026.000000px;}
.y31e{bottom:1027.260000px;}
.y52{bottom:1029.240000px;}
.y241{bottom:1029.244500px;}
.yf5{bottom:1029.253500px;}
.y72{bottom:1029.267000px;}
.y12a{bottom:1030.320000px;}
.y1fd{bottom:1030.500000px;}
.y303{bottom:1034.820540px;}
.y23a{bottom:1040.742000px;}
.y4{bottom:1042.920000px;}
.y195{bottom:1048.140000px;}
.y199{bottom:1048.153500px;}
.y1c5{bottom:1048.207500px;}
.y51{bottom:1048.315500px;}
.y240{bottom:1048.320000px;}
.yf4{bottom:1048.329000px;}
.y71{bottom:1048.342500px;}
.y302{bottom:1051.559820px;}
.y31d{bottom:1051.742520px;}
.y360{bottom:1055.340000px;}
.y91{bottom:1059.840000px;}
.y129{bottom:1062.720000px;}
.y239{bottom:1067.026500px;}
.y50{bottom:1067.215500px;}
.yf3{bottom:1067.229000px;}
.y70{bottom:1067.242500px;}
.y1c4{bottom:1067.283000px;}
.y301{bottom:1068.480000px;}
.y31c{bottom:1068.481800px;}
.y1{bottom:1121.040000px;}
.h13{height:2.002500px;}
.h8{height:4.005000px;}
.he{height:17.054297px;}
.hb{height:23.940000px;}
.h9{height:23.941500px;}
.h12{height:24.118500px;}
.ha{height:24.120000px;}
.h14{height:34.625391px;}
.hc{height:37.415039px;}
.h7{height:37.546875px;}
.h1{height:38.759766px;}
.h4{height:40.157227px;}
.h15{height:40.500000px;}
.hd{height:40.887844px;}
.h6{height:40.923844px;}
.hf{height:40.941844px;}
.h10{height:40.959844px;}
.h3{height:40.977844px;}
.h5{height:47.545312px;}
.h16{height:71.159766px;}
.h2{height:104.134570px;}
.h11{height:221.940000px;}
.h0{height:1188.000000px;}
.we{width:59.400000px;}
.wa{width:59.940000px;}
.wf{width:66.601500px;}
.w5{width:73.440000px;}
.w2{width:76.140000px;}
.w4{width:86.581500px;}
.w10{width:93.778500px;}
.w9{width:102.060000px;}
.w11{width:106.920000px;}
.w1{width:161.101500px;}
.w6{width:161.278500px;}
.w12{width:188.460000px;}
.wd{width:201.420000px;}
.w8{width:230.220000px;}
.wc{width:309.238500px;}
.w3{width:350.640000px;}
.w7{width:350.641500px;}
.wb{width:410.940000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.560000px;}
.x21{left:19.980000px;}
.x1{left:108.000000px;}
.x16{left:116.100000px;}
.x1f{left:117.540000px;}
.x15{left:175.473000px;}
.xb{left:182.700000px;}
.x14{left:188.973000px;}
.x17{left:204.300000px;}
.x13{left:222.277500px;}
.x1c{left:223.573500px;}
.x12{left:229.500000px;}
.x5{left:242.082000px;}
.x9{left:248.751000px;}
.x18{left:278.460000px;}
.x1d{left:283.860000px;}
.x1e{left:297.900000px;}
.xa{left:303.840000px;}
.x6{left:311.202000px;}
.xd{left:344.700000px;}
.x22{left:358.200000px;}
.x23{left:418.860000px;}
.xe{left:421.560000px;}
.x19{left:458.640000px;}
.x7{left:462.402000px;}
.x1a{left:466.740000px;}
.x2{left:475.186500px;}
.x24{left:479.700000px;}
.xf{left:498.600000px;}
.x25{left:547.200000px;}
.x10{left:575.460000px;}
.x20{left:607.860000px;}
.x11{left:652.500000px;}
.x1b{left:698.400000px;}
.x26{left:702.360000px;}
.x3{left:763.776000px;}
.x4{left:779.557500px;}
.x8{left:809.986500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.456000pt;}
.v2{vertical-align:28.800000pt;}
.ls29{letter-spacing:-0.864000pt;}
.ls1c{letter-spacing:-0.768000pt;}
.ls61{letter-spacing:-0.600320pt;}
.ls55{letter-spacing:-0.576000pt;}
.ls69{letter-spacing:-0.471680pt;}
.ls63{letter-spacing:-0.300160pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls64{letter-spacing:-0.257280pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls14{letter-spacing:-0.224000pt;}
.ls5f{letter-spacing:-0.214400pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls68{letter-spacing:-0.171520pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls5e{letter-spacing:-0.128640pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.048000pt;}
.ls65{letter-spacing:-0.042880pt;}
.ls11{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.014400pt;}
.ls4b{letter-spacing:0.019200pt;}
.ls5a{letter-spacing:0.021440pt;}
.ls47{letter-spacing:0.024000pt;}
.ls52{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.033600pt;}
.ls4a{letter-spacing:0.038400pt;}
.ls62{letter-spacing:0.042880pt;}
.ls2b{letter-spacing:0.043200pt;}
.ls5{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.129600pt;}
.ls57{letter-spacing:0.144000pt;}
.ls43{letter-spacing:0.168000pt;}
.ls60{letter-spacing:0.171520pt;}
.ls4c{letter-spacing:0.172800pt;}
.ls15{letter-spacing:0.192000pt;}
.ls46{letter-spacing:0.240000pt;}
.ls4f{letter-spacing:0.273600pt;}
.ls3{letter-spacing:0.288000pt;}
.ls58{letter-spacing:0.300160pt;}
.ls5d{letter-spacing:0.321600pt;}
.ls5c{letter-spacing:0.377344pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls59{letter-spacing:0.484544pt;}
.ls67{letter-spacing:0.527424pt;}
.ls39{letter-spacing:0.528000pt;}
.ls4e{letter-spacing:0.542400pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls50{letter-spacing:0.624000pt;}
.ls22{letter-spacing:0.672000pt;}
.ls3a{letter-spacing:0.811200pt;}
.ls7{letter-spacing:1.296000pt;}
.ls40{letter-spacing:1.348800pt;}
.ls2c{letter-spacing:1.387200pt;}
.ls66{letter-spacing:1.843840pt;}
.ls26{letter-spacing:1.891200pt;}
.ls30{letter-spacing:1.968000pt;}
.ls1{letter-spacing:2.374848pt;}
.ls0{letter-spacing:2.499840pt;}
.ls3b{letter-spacing:2.592000pt;}
.ls12{letter-spacing:2.638720pt;}
.ls37{letter-spacing:3.211200pt;}
.ls49{letter-spacing:3.216000pt;}
.ls45{letter-spacing:3.552000pt;}
.ls56{letter-spacing:3.600000pt;}
.ls34{letter-spacing:3.696000pt;}
.ls28{letter-spacing:3.709440pt;}
.ls2e{letter-spacing:3.791872pt;}
.ls44{letter-spacing:3.796800pt;}
.ls31{letter-spacing:3.840000pt;}
.ls2a{letter-spacing:3.886080pt;}
.ls8{letter-spacing:3.888000pt;}
.ls2d{letter-spacing:3.992064pt;}
.ls18{letter-spacing:4.062720pt;}
.ls6c{letter-spacing:4.121600pt;}
.ls32{letter-spacing:4.444800pt;}
.ls6{letter-spacing:4.512000pt;}
.ls35{letter-spacing:5.136000pt;}
.ls36{letter-spacing:5.150400pt;}
.ls21{letter-spacing:5.726400pt;}
.lsd{letter-spacing:5.808000pt;}
.lse{letter-spacing:6.432000pt;}
.ls24{letter-spacing:7.056000pt;}
.ls2f{letter-spacing:7.728000pt;}
.lsa{letter-spacing:8.976000pt;}
.lsf{letter-spacing:9.648000pt;}
.ls9{letter-spacing:10.272000pt;}
.ls3d{letter-spacing:11.380800pt;}
.ls42{letter-spacing:11.520000pt;}
.ls20{letter-spacing:11.568000pt;}
.ls41{letter-spacing:12.220800pt;}
.ls1e{letter-spacing:12.816000pt;}
.ls38{letter-spacing:14.736000pt;}
.ls53{letter-spacing:15.408000pt;}
.ls3e{letter-spacing:16.032000pt;}
.ls3c{letter-spacing:17.328000pt;}
.ls23{letter-spacing:20.496000pt;}
.ls51{letter-spacing:21.168000pt;}
.ls3f{letter-spacing:21.792000pt;}
.ls33{letter-spacing:22.416000pt;}
.ls54{letter-spacing:23.088000pt;}
.lsb{letter-spacing:26.256000pt;}
.ls1f{letter-spacing:28.848000pt;}
.lsc{letter-spacing:33.936000pt;}
.ls4d{letter-spacing:69.168000pt;}
.ls5b{letter-spacing:111.916800pt;}
.ls6b{letter-spacing:247.728000pt;}
.ls6a{letter-spacing:537.616000pt;}
.ls48{letter-spacing:757.200000pt;}
.ws0{word-spacing:-34.025600pt;}
.ws163{word-spacing:-17.428480pt;}
.ws7{word-spacing:-17.369600pt;}
.ws81{word-spacing:-17.192960pt;}
.wsb8{word-spacing:-14.688000pt;}
.ws164{word-spacing:-14.448000pt;}
.wsc8{word-spacing:-12.816000pt;}
.wsd3{word-spacing:-11.376000pt;}
.ws80{word-spacing:-11.136000pt;}
.wsda{word-spacing:-11.088000pt;}
.wsd9{word-spacing:-11.040000pt;}
.ws9{word-spacing:-10.896000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws6{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.704000pt;}
.ws5{word-spacing:-10.656000pt;}
.ws3{word-spacing:-10.608000pt;}
.wsa{word-spacing:-10.560000pt;}
.wsc6{word-spacing:-10.080000pt;}
.ws10c{word-spacing:-9.733760pt;}
.ws10b{word-spacing:-9.690880pt;}
.ws10a{word-spacing:-9.562240pt;}
.ws14a{word-spacing:-9.519360pt;}
.ws10e{word-spacing:-9.476480pt;}
.ws110{word-spacing:-9.433600pt;}
.ws10d{word-spacing:-9.390720pt;}
.ws10f{word-spacing:-9.090560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws1{word-spacing:-7.008000pt;}
.wsee{word-spacing:-3.888000pt;}
.wsb9{word-spacing:-3.840000pt;}
.ws82{word-spacing:-3.709440pt;}
.ws106{word-spacing:-3.600000pt;}
.ws142{word-spacing:-2.830080pt;}
.ws5f{word-spacing:-2.592000pt;}
.ws2b{word-spacing:-2.544000pt;}
.ws27{word-spacing:-2.448000pt;}
.ws98{word-spacing:-2.400000pt;}
.ws71{word-spacing:-2.352000pt;}
.ws28{word-spacing:-2.304000pt;}
.ws12e{word-spacing:-2.186880pt;}
.ws12f{word-spacing:-2.058240pt;}
.ws8d{word-spacing:-1.920000pt;}
.ws155{word-spacing:-1.886720pt;}
.ws65{word-spacing:-1.872000pt;}
.ws11b{word-spacing:-1.800960pt;}
.ws60{word-spacing:-1.776000pt;}
.ws66{word-spacing:-1.680000pt;}
.ws18{word-spacing:-1.632000pt;}
.ws15b{word-spacing:-1.543680pt;}
.ws13c{word-spacing:-1.415040pt;}
.ws17{word-spacing:-1.296000pt;}
.ws5a{word-spacing:-1.248000pt;}
.ws13d{word-spacing:-1.243520pt;}
.ws11e{word-spacing:-1.157760pt;}
.ws69{word-spacing:-1.152000pt;}
.ws15{word-spacing:-1.104000pt;}
.ws94{word-spacing:-1.056000pt;}
.ws34{word-spacing:-1.008000pt;}
.ws117{word-spacing:-0.900480pt;}
.ws1c{word-spacing:-0.672000pt;}
.ws6d{word-spacing:-0.624000pt;}
.ws21{word-spacing:-0.576000pt;}
.wsa7{word-spacing:-0.528000pt;}
.ws138{word-spacing:-0.514560pt;}
.ws59{word-spacing:-0.432000pt;}
.ws70{word-spacing:-0.384000pt;}
.ws159{word-spacing:-0.257280pt;}
.ws165{word-spacing:-0.240000pt;}
.wsf{word-spacing:-0.192000pt;}
.ws48{word-spacing:-0.144000pt;}
.ws123{word-spacing:-0.128640pt;}
.wsb0{word-spacing:-0.117760pt;}
.wsdd{word-spacing:-0.096000pt;}
.ws13a{word-spacing:-0.085760pt;}
.ws35{word-spacing:-0.048000pt;}
.ws124{word-spacing:-0.042880pt;}
.wsc{word-spacing:0.000000pt;}
.ws128{word-spacing:0.042880pt;}
.ws11{word-spacing:0.048000pt;}
.ws1d{word-spacing:0.096000pt;}
.ws11c{word-spacing:0.128640pt;}
.wse{word-spacing:0.144000pt;}
.ws157{word-spacing:0.171520pt;}
.ws16{word-spacing:0.192000pt;}
.ws11f{word-spacing:0.214400pt;}
.wsaf{word-spacing:0.235520pt;}
.ws10{word-spacing:0.240000pt;}
.wsb{word-spacing:0.288000pt;}
.wsb4{word-spacing:0.336000pt;}
.ws15c{word-spacing:0.385920pt;}
.ws102{word-spacing:0.576000pt;}
.ws11a{word-spacing:0.600320pt;}
.wsca{word-spacing:0.624000pt;}
.wsc5{word-spacing:0.672000pt;}
.ws115{word-spacing:0.686080pt;}
.ws41{word-spacing:0.768000pt;}
.ws118{word-spacing:0.771840pt;}
.ws62{word-spacing:0.816000pt;}
.ws46{word-spacing:0.864000pt;}
.ws53{word-spacing:0.912000pt;}
.wsc4{word-spacing:0.960000pt;}
.ws14b{word-spacing:1.029120pt;}
.ws1e{word-spacing:1.248000pt;}
.ws99{word-spacing:1.296000pt;}
.wsab{word-spacing:1.392000pt;}
.wsbe{word-spacing:1.440000pt;}
.ws12{word-spacing:1.488000pt;}
.ws1f{word-spacing:1.536000pt;}
.wsb6{word-spacing:1.920000pt;}
.wsae{word-spacing:1.968000pt;}
.ws15f{word-spacing:1.972480pt;}
.ws121{word-spacing:2.058240pt;}
.wsb7{word-spacing:2.064000pt;}
.wsad{word-spacing:2.112000pt;}
.ws2d{word-spacing:2.160000pt;}
.ws91{word-spacing:2.208000pt;}
.ws13f{word-spacing:2.315520pt;}
.ws68{word-spacing:2.544000pt;}
.ws2f{word-spacing:2.592000pt;}
.ws4f{word-spacing:2.688000pt;}
.ws131{word-spacing:2.701440pt;}
.wsd8{word-spacing:2.736000pt;}
.ws30{word-spacing:2.784000pt;}
.ws31{word-spacing:2.832000pt;}
.ws12a{word-spacing:2.915840pt;}
.ws133{word-spacing:3.044480pt;}
.ws108{word-spacing:3.072000pt;}
.ws6e{word-spacing:3.168000pt;}
.ws5e{word-spacing:3.216000pt;}
.ws13{word-spacing:3.312000pt;}
.ws109{word-spacing:3.360000pt;}
.ws2c{word-spacing:3.408000pt;}
.ws1b{word-spacing:3.456000pt;}
.ws14f{word-spacing:3.559040pt;}
.ws2a{word-spacing:3.840000pt;}
.wscf{word-spacing:3.888000pt;}
.ws129{word-spacing:3.944960pt;}
.ws26{word-spacing:3.984000pt;}
.ws1a{word-spacing:4.080000pt;}
.ws29{word-spacing:4.128000pt;}
.wsaa{word-spacing:4.176000pt;}
.ws63{word-spacing:4.464000pt;}
.wsac{word-spacing:4.512000pt;}
.ws137{word-spacing:4.588160pt;}
.ws3a{word-spacing:4.608000pt;}
.ws104{word-spacing:4.656000pt;}
.ws2e{word-spacing:4.704000pt;}
.ws14{word-spacing:4.752000pt;}
.ws144{word-spacing:4.845440pt;}
.ws149{word-spacing:4.974080pt;}
.ws147{word-spacing:5.059840pt;}
.ws5c{word-spacing:5.088000pt;}
.ws135{word-spacing:5.231360pt;}
.wsb3{word-spacing:5.232000pt;}
.ws5b{word-spacing:5.280000pt;}
.ws148{word-spacing:5.317120pt;}
.ws79{word-spacing:5.328000pt;}
.wsbb{word-spacing:5.376000pt;}
.ws15a{word-spacing:5.488640pt;}
.ws95{word-spacing:5.760000pt;}
.ws45{word-spacing:5.808000pt;}
.ws130{word-spacing:5.874560pt;}
.ws7f{word-spacing:5.904000pt;}
.ws56{word-spacing:6.000000pt;}
.ws44{word-spacing:6.048000pt;}
.ws161{word-spacing:6.131840pt;}
.wsc9{word-spacing:6.384000pt;}
.ws3b{word-spacing:6.432000pt;}
.ws136{word-spacing:6.517760pt;}
.ws51{word-spacing:6.528000pt;}
.ws39{word-spacing:6.624000pt;}
.ws3e{word-spacing:6.672000pt;}
.wsdb{word-spacing:6.720000pt;}
.ws14e{word-spacing:6.775040pt;}
.ws88{word-spacing:7.008000pt;}
.wse2{word-spacing:7.056000pt;}
.ws143{word-spacing:7.075200pt;}
.wse5{word-spacing:7.152000pt;}
.ws24{word-spacing:7.248000pt;}
.ws50{word-spacing:7.296000pt;}
.ws105{word-spacing:7.440000pt;}
.ws8c{word-spacing:7.680000pt;}
.ws153{word-spacing:7.718400pt;}
.ws103{word-spacing:7.728000pt;}
.ws132{word-spacing:7.804160pt;}
.ws47{word-spacing:7.824000pt;}
.wsa5{word-spacing:7.920000pt;}
.ws58{word-spacing:7.968000pt;}
.wsd7{word-spacing:8.304000pt;}
.ws14c{word-spacing:8.361600pt;}
.wsd6{word-spacing:8.448000pt;}
.ws74{word-spacing:8.544000pt;}
.ws49{word-spacing:8.592000pt;}
.ws134{word-spacing:8.833280pt;}
.ws112{word-spacing:8.928000pt;}
.wsf2{word-spacing:8.976000pt;}
.ws12c{word-spacing:9.004800pt;}
.ws76{word-spacing:9.072000pt;}
.ws12b{word-spacing:9.090560pt;}
.wsc2{word-spacing:9.120000pt;}
.ws61{word-spacing:9.168000pt;}
.ws77{word-spacing:9.216000pt;}
.wsd{word-spacing:9.443840pt;}
.ws54{word-spacing:9.600000pt;}
.ws37{word-spacing:9.648000pt;}
.ws5d{word-spacing:9.744000pt;}
.ws55{word-spacing:9.792000pt;}
.ws83{word-spacing:9.840000pt;}
.ws38{word-spacing:9.888000pt;}
.ws33{word-spacing:10.224000pt;}
.ws32{word-spacing:10.272000pt;}
.wsdc{word-spacing:10.368000pt;}
.ws97{word-spacing:10.464000pt;}
.ws20{word-spacing:10.512000pt;}
.wsc3{word-spacing:10.848000pt;}
.ws140{word-spacing:10.934400pt;}
.wsf5{word-spacing:10.992000pt;}
.ws13b{word-spacing:11.020160pt;}
.ws4e{word-spacing:11.040000pt;}
.ws8a{word-spacing:11.088000pt;}
.wsf4{word-spacing:11.136000pt;}
.ws126{word-spacing:11.663360pt;}
.ws72{word-spacing:11.664000pt;}
.wsde{word-spacing:11.712000pt;}
.ws7e{word-spacing:11.760000pt;}
.wse3{word-spacing:11.808000pt;}
.ws151{word-spacing:11.877760pt;}
.wsba{word-spacing:12.192000pt;}
.ws7b{word-spacing:12.288000pt;}
.wsf1{word-spacing:12.336000pt;}
.wsf0{word-spacing:12.384000pt;}
.ws7a{word-spacing:12.432000pt;}
.ws6a{word-spacing:12.768000pt;}
.ws145{word-spacing:12.906880pt;}
.wsf3{word-spacing:12.912000pt;}
.ws36{word-spacing:13.008000pt;}
.ws57{word-spacing:13.056000pt;}
.ws22{word-spacing:13.440000pt;}
.ws12d{word-spacing:13.464320pt;}
.ws23{word-spacing:13.680000pt;}
.ws4b{word-spacing:13.728000pt;}
.ws158{word-spacing:13.807360pt;}
.ws85{word-spacing:14.064000pt;}
.ws154{word-spacing:14.107520pt;}
.ws120{word-spacing:14.193280pt;}
.wsa4{word-spacing:14.208000pt;}
.wsa3{word-spacing:14.304000pt;}
.ws9f{word-spacing:14.352000pt;}
.wsd2{word-spacing:14.832000pt;}
.ws8b{word-spacing:14.880000pt;}
.wscd{word-spacing:14.928000pt;}
.wsa9{word-spacing:14.976000pt;}
.ws113{word-spacing:15.393920pt;}
.wsa1{word-spacing:15.504000pt;}
.wsec{word-spacing:15.600000pt;}
.ws84{word-spacing:15.648000pt;}
.ws111{word-spacing:15.744000pt;}
.wsa2{word-spacing:16.032000pt;}
.ws119{word-spacing:16.122880pt;}
.wsdf{word-spacing:16.128000pt;}
.ws146{word-spacing:16.208640pt;}
.ws3c{word-spacing:16.224000pt;}
.ws3d{word-spacing:16.272000pt;}
.wsf9{word-spacing:16.752000pt;}
.ws73{word-spacing:16.800000pt;}
.ws8f{word-spacing:16.896000pt;}
.ws9c{word-spacing:17.280000pt;}
.ws87{word-spacing:17.568000pt;}
.ws6f{word-spacing:17.904000pt;}
.wsce{word-spacing:18.048000pt;}
.ws127{word-spacing:18.052480pt;}
.ws7c{word-spacing:18.192000pt;}
.ws107{word-spacing:18.528000pt;}
.wsb2{word-spacing:18.576000pt;}
.ws4a{word-spacing:18.720000pt;}
.wsb1{word-spacing:18.768000pt;}
.ws7d{word-spacing:18.816000pt;}
.ws64{word-spacing:19.344000pt;}
.wscb{word-spacing:19.488000pt;}
.ws156{word-spacing:19.982080pt;}
.wse4{word-spacing:20.064000pt;}
.wsf6{word-spacing:20.112000pt;}
.ws125{word-spacing:20.196480pt;}
.wsb5{word-spacing:20.448000pt;}
.ws8e{word-spacing:20.592000pt;}
.ws67{word-spacing:20.736000pt;}
.ws19{word-spacing:21.264000pt;}
.ws40{word-spacing:21.360000pt;}
.ws9b{word-spacing:21.744000pt;}
.ws114{word-spacing:21.868800pt;}
.ws9a{word-spacing:22.032000pt;}
.ws141{word-spacing:22.254720pt;}
.wsfd{word-spacing:22.368000pt;}
.ws152{word-spacing:22.426240pt;}
.wsea{word-spacing:22.560000pt;}
.wsbc{word-spacing:22.608000pt;}
.wsc7{word-spacing:22.656000pt;}
.wsa6{word-spacing:23.040000pt;}
.wse9{word-spacing:23.232000pt;}
.ws90{word-spacing:23.328000pt;}
.ws13e{word-spacing:23.798400pt;}
.ws92{word-spacing:23.856000pt;}
.ws93{word-spacing:23.904000pt;}
.wsbd{word-spacing:23.952000pt;}
.ws25{word-spacing:24.576000pt;}
.wsef{word-spacing:25.824000pt;}
.wsd4{word-spacing:25.872000pt;}
.ws150{word-spacing:25.985280pt;}
.ws4d{word-spacing:26.208000pt;}
.wsbf{word-spacing:26.448000pt;}
.ws3f{word-spacing:26.496000pt;}
.wsa0{word-spacing:27.120000pt;}
.wsc0{word-spacing:27.168000pt;}
.ws139{word-spacing:27.400320pt;}
.wsed{word-spacing:27.792000pt;}
.ws52{word-spacing:28.272000pt;}
.ws96{word-spacing:28.416000pt;}
.ws14d{word-spacing:28.858240pt;}
.wsd0{word-spacing:28.944000pt;}
.ws6c{word-spacing:28.992000pt;}
.ws6b{word-spacing:29.040000pt;}
.wsd1{word-spacing:29.088000pt;}
.wsfe{word-spacing:29.568000pt;}
.wsfa{word-spacing:29.664000pt;}
.wsd5{word-spacing:29.712000pt;}
.ws86{word-spacing:30.288000pt;}
.ws78{word-spacing:30.336000pt;}
.wscc{word-spacing:30.960000pt;}
.ws75{word-spacing:31.632000pt;}
.wsa8{word-spacing:32.880000pt;}
.wse0{word-spacing:33.504000pt;}
.wse1{word-spacing:33.552000pt;}
.ws43{word-spacing:34.032000pt;}
.ws9e{word-spacing:34.128000pt;}
.ws42{word-spacing:34.176000pt;}
.wsc1{word-spacing:35.424000pt;}
.ws11d{word-spacing:36.619520pt;}
.wsf8{word-spacing:36.768000pt;}
.ws89{word-spacing:37.968000pt;}
.wsf7{word-spacing:40.560000pt;}
.ws160{word-spacing:42.365440pt;}
.ws9d{word-spacing:45.696000pt;}
.ws15e{word-spacing:46.567680pt;}
.ws15d{word-spacing:46.824960pt;}
.ws4c{word-spacing:48.288000pt;}
.ws116{word-spacing:49.955200pt;}
.ws101{word-spacing:53.328000pt;}
.wsfc{word-spacing:54.000000pt;}
.wsfb{word-spacing:54.048000pt;}
.wse6{word-spacing:61.008000pt;}
.wseb{word-spacing:67.344000pt;}
.ws100{word-spacing:67.488000pt;}
.wsff{word-spacing:69.408000pt;}
.ws122{word-spacing:77.569920pt;}
.ws162{word-spacing:83.230080pt;}
.wse7{word-spacing:115.488000pt;}
.wse8{word-spacing:116.112000pt;}
._e{margin-left:-12.801600pt;}
._11{margin-left:-2.947200pt;}
._c{margin-left:-1.910400pt;}
._1{margin-left:-0.999936pt;}
._0{width:1.377600pt;}
._12{width:2.342400pt;}
._2{width:3.590656pt;}
._15{width:4.704000pt;}
._6{width:5.836800pt;}
._d{width:7.790400pt;}
._3{width:8.832000pt;}
._b{width:9.864000pt;}
._8{width:12.048000pt;}
._7{width:12.960000pt;}
._10{width:13.911936pt;}
._16{width:15.100800pt;}
._4{width:16.041600pt;}
._9{width:18.216000pt;}
._5{width:21.513600pt;}
._17{width:23.688000pt;}
._f{width:29.198400pt;}
._13{width:30.254400pt;}
._14{width:32.880000pt;}
._18{width:46.219200pt;}
._19{width:117.806400pt;}
._1a{width:120.384000pt;}
._1b{width:143.376000pt;}
._a{width:757.152000pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:5.120000pt;}
.fs5{font-size:21.120000pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:9.920000pt;}
.y156{bottom:10.080000pt;}
.y153{bottom:21.280000pt;}
.y350{bottom:24.640000pt;}
.y3{bottom:51.192000pt;}
.y2{bottom:65.916000pt;}
.y107{bottom:101.460000pt;}
.y2da{bottom:102.560000pt;}
.y4f{bottom:102.900000pt;}
.y128{bottom:103.860000pt;}
.y1c3{bottom:104.052000pt;}
.y35f{bottom:106.560000pt;}
.y17d{bottom:107.540000pt;}
.yea{bottom:108.340000pt;}
.yd4{bottom:108.344000pt;}
.y15f{bottom:108.648000pt;}
.y2e{bottom:109.784000pt;}
.y1f3{bottom:114.256000pt;}
.y194{bottom:116.840000pt;}
.y2d9{bottom:117.440480pt;}
.y106{bottom:118.260000pt;}
.y300{bottom:119.199200pt;}
.y27b{bottom:119.200000pt;}
.y4e{bottom:119.856000pt;}
.y1c2{bottom:121.008000pt;}
.y127{bottom:124.176000pt;}
.y17c{bottom:124.340000pt;}
.ye9{bottom:125.296000pt;}
.yd3{bottom:125.300000pt;}
.y2d{bottom:126.584000pt;}
.y35e{bottom:128.480000pt;}
.y270{bottom:130.720000pt;}
.y1f2{bottom:131.056000pt;}
.y27a{bottom:131.360000pt;}
.y15e{bottom:132.168000pt;}
.y2d8{bottom:132.319840pt;}
.y193{bottom:133.640000pt;}
.y105{bottom:135.060000pt;}
.y4d{bottom:136.812000pt;}
.y1c1{bottom:137.808000pt;}
.y2ff{bottom:140.800000pt;}
.y17b{bottom:141.140000pt;}
.ye8{bottom:142.096000pt;}
.yd2{bottom:142.100000pt;}
.y2c{bottom:143.384000pt;}
.y2d7{bottom:147.360000pt;}
.y1f1{bottom:147.856000pt;}
.y15d{bottom:149.124000pt;}
.y192{bottom:150.440000pt;}
.y35d{bottom:150.560000pt;}
.y2a9{bottom:151.360000pt;}
.y104{bottom:151.860000pt;}
.y279{bottom:153.440000pt;}
.y4c{bottom:153.612000pt;}
.y1c0{bottom:154.608000pt;}
.y1a3{bottom:155.220000pt;}
.y17a{bottom:157.940000pt;}
.ye7{bottom:159.052000pt;}
.yd1{bottom:159.056000pt;}
.y2b{bottom:160.340000pt;}
.y2fe{bottom:162.400480pt;}
.y1f0{bottom:164.812000pt;}
.y191{bottom:167.396000pt;}
.y103{bottom:168.816000pt;}
.y2d6{bottom:169.121440pt;}
.y15c{bottom:169.440000pt;}
.y4b{bottom:170.412000pt;}
.y1bf{bottom:171.408000pt;}
.y1a2{bottom:172.176000pt;}
.y35c{bottom:172.480000pt;}
.y29e{bottom:174.884000pt;}
.y179{bottom:174.896000pt;}
.y278{bottom:175.360000pt;}
.ye6{bottom:175.852000pt;}
.yd0{bottom:175.856000pt;}
.y2a{bottom:177.140000pt;}
.y2fd{bottom:177.279840pt;}
.y1ef{bottom:181.612000pt;}
.y2d5{bottom:184.000800pt;}
.y190{bottom:184.196000pt;}
.y102{bottom:185.616000pt;}
.y271{bottom:185.920000pt;}
.y4a{bottom:187.368000pt;}
.y1be{bottom:188.364000pt;}
.y178{bottom:191.696000pt;}
.y29d{bottom:191.840000pt;}
.y2fc{bottom:192.320000pt;}
.y1a1{bottom:192.492000pt;}
.ye5{bottom:192.652000pt;}
.ycf{bottom:192.656000pt;}
.y29{bottom:193.940000pt;}
.y35b{bottom:194.560000pt;}
.y2a8{bottom:195.204000pt;}
.y277{bottom:196.640000pt;}
.y276{bottom:197.440000pt;}
.y1ee{bottom:198.412000pt;}
.y2d4{bottom:198.880160pt;}
.y18f{bottom:200.996000pt;}
.y101{bottom:202.416000pt;}
.y49{bottom:204.168000pt;}
.y1bd{bottom:205.164000pt;}
.y177{bottom:208.496000pt;}
.y29c{bottom:208.640000pt;}
.yce{bottom:209.456000pt;}
.y28{bottom:210.896000pt;}
.y2a7{bottom:212.160000pt;}
.y2d3{bottom:213.920320pt;}
.y2fb{bottom:214.081760pt;}
.y1ed{bottom:215.368000pt;}
.ye4{bottom:216.016000pt;}
.y35a{bottom:216.480000pt;}
.y18e{bottom:217.952000pt;}
.y275{bottom:219.360000pt;}
.y100{bottom:219.372000pt;}
.y48{bottom:220.968000pt;}
.y1bc{bottom:221.964000pt;}
.y380{bottom:222.400000pt;}
.y29b{bottom:225.440000pt;}
.y176{bottom:225.452000pt;}
.ycd{bottom:226.412000pt;}
.y27{bottom:227.696000pt;}
.y2d2{bottom:228.799680pt;}
.y2fa{bottom:228.800320pt;}
.y1ec{bottom:232.168000pt;}
.yff{bottom:232.968000pt;}
.ye3{bottom:232.972000pt;}
.y37f{bottom:234.560000pt;}
.y2a6{bottom:235.524000pt;}
.y47{bottom:237.768000pt;}
.y359{bottom:238.400000pt;}
.y1bb{bottom:238.920000pt;}
.y274{bottom:241.280000pt;}
.y18d{bottom:241.316000pt;}
.y175{bottom:242.252000pt;}
.y29a{bottom:242.400000pt;}
.ycc{bottom:243.212000pt;}
.y2d1{bottom:243.839840pt;}
.y2f9{bottom:243.840480pt;}
.y26{bottom:244.496000pt;}
.y1eb{bottom:248.968000pt;}
.ye2{bottom:249.928000pt;}
.y2a5{bottom:252.480000pt;}
.y46{bottom:254.724000pt;}
.y1ba{bottom:255.720000pt;}
.y37e{bottom:256.640000pt;}
.y18c{bottom:258.272000pt;}
.y2d0{bottom:258.880000pt;}
.y2f8{bottom:258.880640pt;}
.y174{bottom:259.052000pt;}
.y299{bottom:259.196000pt;}
.ycb{bottom:260.012000pt;}
.y358{bottom:260.480000pt;}
.y25{bottom:261.296000pt;}
.y273{bottom:263.360000pt;}
.y1ea{bottom:265.768000pt;}
.ye1{bottom:266.728000pt;}
.y1b9{bottom:272.520000pt;}
.y238{bottom:273.608000pt;}
.y2f7{bottom:273.760000pt;}
.y18b{bottom:275.072000pt;}
.y2a4{bottom:275.840000pt;}
.y173{bottom:275.852000pt;}
.yca{bottom:276.968000pt;}
.y45{bottom:278.088000pt;}
.y24{bottom:278.252000pt;}
.y37d{bottom:278.560000pt;}
.y2cf{bottom:280.641120pt;}
.y357{bottom:282.400000pt;}
.y298{bottom:282.560000pt;}
.y1e9{bottom:282.724000pt;}
.ye0{bottom:283.528000pt;}
.y1b8{bottom:289.320000pt;}
.y18a{bottom:291.872000pt;}
.y172{bottom:292.808000pt;}
.y2a3{bottom:292.964000pt;}
.yc9{bottom:293.768000pt;}
.y44{bottom:295.044000pt;}
.y23{bottom:295.052000pt;}
.y272{bottom:295.200000pt;}
.y2ce{bottom:295.520480pt;}
.y2f6{bottom:295.681920pt;}
.y1e8{bottom:299.524000pt;}
.ydf{bottom:300.328000pt;}
.y37c{bottom:300.480000pt;}
.y126{bottom:304.176000pt;}
.y356{bottom:304.320000pt;}
.y1b7{bottom:306.276000pt;}
.y189{bottom:308.828000pt;}
.y171{bottom:309.608000pt;}
.y2a2{bottom:309.764000pt;}
.y2cd{bottom:310.399840pt;}
.y2f5{bottom:310.400480pt;}
.y43{bottom:311.844000pt;}
.y22{bottom:311.852000pt;}
.y22e{bottom:314.084000pt;}
.y1e7{bottom:316.324000pt;}
.y297{bottom:316.480000pt;}
.yc8{bottom:317.132000pt;}
.yde{bottom:317.284000pt;}
.y1fc{bottom:317.920000pt;}
.y237{bottom:320.492000pt;}
.y37b{bottom:322.560000pt;}
.y1b6{bottom:323.076000pt;}
.y2cc{bottom:325.440000pt;}
.y2f4{bottom:325.440640pt;}
.y188{bottom:325.628000pt;}
.y355{bottom:326.400000pt;}
.y2a1{bottom:326.564000pt;}
.y125{bottom:327.696000pt;}
.y42{bottom:328.800000pt;}
.y21{bottom:328.808000pt;}
.y22d{bottom:330.884000pt;}
.y170{bottom:332.972000pt;}
.y1e6{bottom:333.280000pt;}
.ydd{bottom:334.084000pt;}
.yc7{bottom:334.088000pt;}
.y236{bottom:337.616000pt;}
.y1fb{bottom:338.256000pt;}
.y1b5{bottom:339.876000pt;}
.y26f{bottom:340.024000pt;}
.y2f3{bottom:340.320000pt;}
.y187{bottom:342.428000pt;}
.y2a0{bottom:343.364000pt;}
.y37a{bottom:344.480000pt;}
.y124{bottom:344.652000pt;}
.y20{bottom:345.608000pt;}
.y41{bottom:345.644000pt;}
.y2cb{bottom:347.201120pt;}
.y22c{bottom:347.684000pt;}
.y354{bottom:348.320000pt;}
.y16f{bottom:349.928000pt;}
.y296{bottom:350.080000pt;}
.ydc{bottom:350.884000pt;}
.yc6{bottom:350.888000pt;}
.y235{bottom:354.416000pt;}
.y1b4{bottom:356.832000pt;}
.y26e{bottom:356.980000pt;}
.y186{bottom:359.384000pt;}
.y29f{bottom:360.320000pt;}
.y1e5{bottom:362.080000pt;}
.y2ca{bottom:362.080480pt;}
.y2f2{bottom:362.242400pt;}
.y1f{bottom:362.408000pt;}
.y40{bottom:362.444000pt;}
.y22b{bottom:364.640000pt;}
.y123{bottom:364.812000pt;}
.y379{bottom:366.560000pt;}
.y16e{bottom:366.728000pt;}
.y295{bottom:366.884000pt;}
.ydb{bottom:367.840000pt;}
.yc5{bottom:367.844000pt;}
.y353{bottom:370.400000pt;}
.y234{bottom:371.216000pt;}
.y266{bottom:373.612000pt;}
.y26d{bottom:373.780000pt;}
.y185{bottom:376.184000pt;}
.y2c9{bottom:376.959840pt;}
.y2f1{bottom:376.960960pt;}
.y1e{bottom:379.208000pt;}
.y3f{bottom:379.244000pt;}
.y1b3{bottom:380.196000pt;}
.y22a{bottom:381.440000pt;}
.y16d{bottom:383.684000pt;}
.y294{bottom:383.840000pt;}
.y15b{bottom:384.000000pt;}
.yda{bottom:384.640000pt;}
.yc4{bottom:384.644000pt;}
.y233{bottom:388.172000pt;}
.y378{bottom:388.480000pt;}
.y1e4{bottom:389.468000pt;}
.y90{bottom:389.472000pt;}
.y265{bottom:390.568000pt;}
.y26c{bottom:390.580000pt;}
.y2c8{bottom:392.000000pt;}
.y2f0{bottom:392.001120pt;}
.y352{bottom:392.320000pt;}
.y184{bottom:392.984000pt;}
.y15a{bottom:396.160000pt;}
.y1d{bottom:396.164000pt;}
.y3e{bottom:396.200000pt;}
.y1b2{bottom:397.152000pt;}
.y229{bottom:398.240000pt;}
.y16c{bottom:400.484000pt;}
.yd9{bottom:401.440000pt;}
.yc3{bottom:401.444000pt;}
.y232{bottom:404.972000pt;}
.y2ef{bottom:406.880480pt;}
.y264{bottom:407.524000pt;}
.y26b{bottom:407.536000pt;}
.y183{bottom:409.784000pt;}
.y377{bottom:410.400000pt;}
.y293{bottom:412.640000pt;}
.y1c{bottom:412.964000pt;}
.y6f{bottom:412.980000pt;}
.y1e3{bottom:412.988000pt;}
.y3d{bottom:413.000000pt;}
.y2c7{bottom:413.761120pt;}
.y1b1{bottom:413.952000pt;}
.y34f{bottom:414.240000pt;}
.y228{bottom:415.040000pt;}
.y339{bottom:416.800000pt;}
.y16b{bottom:417.284000pt;}
.y159{bottom:418.080000pt;}
.yc2{bottom:418.244000pt;}
.yd8{bottom:418.268000pt;}
.y8f{bottom:419.556000pt;}
.y231{bottom:421.772000pt;}
.y2ee{bottom:421.920640pt;}
.y351{bottom:424.320000pt;}
.y263{bottom:424.324000pt;}
.y26a{bottom:424.336000pt;}
.y182{bottom:426.740000pt;}
.y2c6{bottom:428.640480pt;}
.y1b{bottom:429.764000pt;}
.y3c{bottom:429.800000pt;}
.y6e{bottom:429.936000pt;}
.y1e2{bottom:429.944000pt;}
.y1b0{bottom:430.752000pt;}
.y227{bottom:431.996000pt;}
.y376{bottom:432.480000pt;}
.y16a{bottom:434.240000pt;}
.yc1{bottom:435.200000pt;}
.yd7{bottom:435.224000pt;}
.y8e{bottom:436.680000pt;}
.y2ed{bottom:436.800000pt;}
.y230{bottom:438.572000pt;}
.y292{bottom:440.000000pt;}
.y158{bottom:440.160000pt;}
.y338{bottom:440.320000pt;}
.y262{bottom:441.124000pt;}
.y269{bottom:441.136000pt;}
.y2c5{bottom:443.519840pt;}
.y6d{bottom:446.736000pt;}
.y1e1{bottom:446.744000pt;}
.y3b{bottom:446.756000pt;}
.y1af{bottom:447.708000pt;}
.y181{bottom:450.104000pt;}
.y34e{bottom:450.880000pt;}
.y169{bottom:451.040000pt;}
.yc0{bottom:452.000000pt;}
.yd6{bottom:452.024000pt;}
.y291{bottom:452.160000pt;}
.y1a{bottom:453.128000pt;}
.y8d{bottom:453.480000pt;}
.y375{bottom:454.400000pt;}
.y226{bottom:455.360000pt;}
.y22f{bottom:455.528000pt;}
.y261{bottom:458.080000pt;}
.y268{bottom:458.092000pt;}
.y2c4{bottom:458.560000pt;}
.y2ec{bottom:458.720000pt;}
.y157{bottom:462.080000pt;}
.y3a{bottom:463.556000pt;}
.y6c{bottom:463.692000pt;}
.y1e0{bottom:463.700000pt;}
.y337{bottom:463.840000pt;}
.y1ae{bottom:464.508000pt;}
.y180{bottom:467.060000pt;}
.y168{bottom:467.840000pt;}
.ybf{bottom:468.800000pt;}
.yd5{bottom:468.824000pt;}
.y19{bottom:470.252000pt;}
.y8c{bottom:470.280000pt;}
.y34d{bottom:472.960000pt;}
.y2eb{bottom:473.440480pt;}
.y290{bottom:474.240000pt;}
.y260{bottom:474.880000pt;}
.y267{bottom:474.892000pt;}
.y374{bottom:476.480000pt;}
.y2c3{bottom:480.320000pt;}
.y39{bottom:480.356000pt;}
.y6b{bottom:480.492000pt;}
.y1df{bottom:480.500000pt;}
.y1ad{bottom:481.308000pt;}
.y17f{bottom:483.860000pt;}
.y155{bottom:484.000000pt;}
.y18{bottom:487.052000pt;}
.y8b{bottom:487.236000pt;}
.y336{bottom:487.360000pt;}
.y2ea{bottom:488.480640pt;}
.y225{bottom:494.720000pt;}
.y34c{bottom:494.880000pt;}
.y2c2{bottom:495.201120pt;}
.y28f{bottom:496.160000pt;}
.y167{bottom:496.640000pt;}
.y38{bottom:497.156000pt;}
.y6a{bottom:497.292000pt;}
.y1de{bottom:497.300000pt;}
.y1ac{bottom:498.264000pt;}
.y373{bottom:498.400000pt;}
.y17e{bottom:500.660000pt;}
.y2e9{bottom:503.360000pt;}
.y25f{bottom:503.520000pt;}
.y17{bottom:503.852000pt;}
.y8a{bottom:504.036000pt;}
.y1a0{bottom:504.492000pt;}
.y152{bottom:506.080000pt;}
.ybe{bottom:506.880000pt;}
.y2c1{bottom:510.080480pt;}
.y335{bottom:510.880000pt;}
.y21b{bottom:512.808000pt;}
.y37{bottom:514.112000pt;}
.y69{bottom:514.248000pt;}
.y1dd{bottom:514.256000pt;}
.y1ab{bottom:515.064000pt;}
.y34b{bottom:516.800000pt;}
.y28e{bottom:518.080000pt;}
.y372{bottom:520.320000pt;}
.y16{bottom:520.652000pt;}
.y89{bottom:520.836000pt;}
.y19f{bottom:521.448000pt;}
.y166{bottom:524.016000pt;}
.y2c0{bottom:525.120640pt;}
.y2e8{bottom:525.281600pt;}
.y31b{bottom:527.039840pt;}
.y224{bottom:529.452000pt;}
.y21a{bottom:529.608000pt;}
.y68{bottom:531.048000pt;}
.y1dc{bottom:531.056000pt;}
.y1aa{bottom:531.864000pt;}
.ybd{bottom:536.828000pt;}
.y36{bottom:537.476000pt;}
.y15{bottom:537.608000pt;}
.y88{bottom:537.636000pt;}
.y34a{bottom:538.880000pt;}
.y151{bottom:540.000000pt;}
.y2e7{bottom:540.000160pt;}
.y28d{bottom:540.160000pt;}
.y19e{bottom:541.608000pt;}
.y31a{bottom:542.080000pt;}
.y371{bottom:542.400000pt;}
.ya7{bottom:543.692000pt;}
.y219{bottom:546.564000pt;}
.y223{bottom:546.576000pt;}
.y165{bottom:547.536000pt;}
.y67{bottom:547.848000pt;}
.y1db{bottom:547.856000pt;}
.y25e{bottom:548.316000pt;}
.y1a9{bottom:548.664000pt;}
.ybc{bottom:553.784000pt;}
.y14{bottom:554.408000pt;}
.y35{bottom:554.432000pt;}
.y87{bottom:554.592000pt;}
.y2e6{bottom:555.040320pt;}
.y334{bottom:557.281920pt;}
.y150{bottom:558.720000pt;}
.y252{bottom:558.724000pt;}
.ya6{bottom:560.492000pt;}
.y349{bottom:560.800000pt;}
.y2bf{bottom:561.921920pt;}
.y28c{bottom:562.080000pt;}
.y218{bottom:563.364000pt;}
.y222{bottom:563.376000pt;}
.y319{bottom:563.840000pt;}
.y370{bottom:564.320000pt;}
.y66{bottom:564.648000pt;}
.y1da{bottom:564.656000pt;}
.y25d{bottom:565.440000pt;}
.y1a8{bottom:565.620000pt;}
.y164{bottom:567.852000pt;}
.y2e5{bottom:569.919680pt;}
.ybb{bottom:570.740000pt;}
.y13{bottom:571.208000pt;}
.y34{bottom:571.232000pt;}
.y86{bottom:571.392000pt;}
.y333{bottom:572.000480pt;}
.y13e{bottom:572.016000pt;}
.y251{bottom:575.524000pt;}
.y2be{bottom:576.640480pt;}
.ya5{bottom:577.292000pt;}
.y318{bottom:578.720480pt;}
.y217{bottom:580.164000pt;}
.y221{bottom:580.176000pt;}
.y65{bottom:581.604000pt;}
.y1d9{bottom:581.612000pt;}
.y25c{bottom:582.240000pt;}
.y348{bottom:582.880000pt;}
.y28b{bottom:584.000000pt;}
.y2e4{bottom:584.959840pt;}
.y36f{bottom:586.240000pt;}
.y332{bottom:587.040640pt;}
.yba{bottom:587.540000pt;}
.y12{bottom:588.164000pt;}
.y33{bottom:588.188000pt;}
.y85{bottom:588.192000pt;}
.y1a7{bottom:588.984000pt;}
.y13d{bottom:589.140000pt;}
.y2bd{bottom:591.680640pt;}
.y250{bottom:592.480000pt;}
.y317{bottom:593.599840pt;}
.ya4{bottom:594.248000pt;}
.y216{bottom:596.964000pt;}
.y220{bottom:596.976000pt;}
.y14f{bottom:598.284000pt;}
.y64{bottom:598.404000pt;}
.y1d8{bottom:598.412000pt;}
.y25b{bottom:599.044000pt;}
.y2e3{bottom:600.000000pt;}
.y331{bottom:601.920000pt;}
.yb9{bottom:604.340000pt;}
.y347{bottom:604.800000pt;}
.y11{bottom:604.964000pt;}
.y32{bottom:604.988000pt;}
.y84{bottom:605.148000pt;}
.y13c{bottom:605.940000pt;}
.y28a{bottom:606.080000pt;}
.y2bc{bottom:606.560000pt;}
.y36e{bottom:608.320000pt;}
.y316{bottom:608.640000pt;}
.y24f{bottom:609.280000pt;}
.y215{bottom:613.920000pt;}
.y21f{bottom:613.932000pt;}
.y1d7{bottom:615.212000pt;}
.y14e{bottom:615.240000pt;}
.y25a{bottom:616.000000pt;}
.ya3{bottom:617.444000pt;}
.yb8{bottom:621.140000pt;}
.y2e2{bottom:621.760000pt;}
.y10{bottom:621.764000pt;}
.y63{bottom:621.768000pt;}
.y31{bottom:621.788000pt;}
.y83{bottom:621.948000pt;}
.y13b{bottom:622.740000pt;}
.y330{bottom:623.840000pt;}
.y24e{bottom:626.084000pt;}
.y346{bottom:626.720000pt;}
.y289{bottom:628.000000pt;}
.y2bb{bottom:628.481920pt;}
.y36d{bottom:630.240000pt;}
.y315{bottom:630.401600pt;}
.y214{bottom:630.720000pt;}
.y21e{bottom:630.732000pt;}
.y1d6{bottom:632.168000pt;}
.y14d{bottom:632.196000pt;}
.y259{bottom:632.800000pt;}
.ya2{bottom:634.568000pt;}
.y2e1{bottom:636.640000pt;}
.yb7{bottom:638.096000pt;}
.y32f{bottom:638.560320pt;}
.yf{bottom:638.564000pt;}
.y30{bottom:638.588000pt;}
.y62{bottom:638.724000pt;}
.y82{bottom:638.748000pt;}
.y13a{bottom:639.540000pt;}
.y24d{bottom:642.884000pt;}
.y2ba{bottom:643.200480pt;}
.y314{bottom:645.280960pt;}
.y213{bottom:647.520000pt;}
.y21d{bottom:647.532000pt;}
.y345{bottom:648.800000pt;}
.y1d5{bottom:648.968000pt;}
.y14c{bottom:648.996000pt;}
.y258{bottom:649.600000pt;}
.y288{bottom:650.080000pt;}
.ya1{bottom:651.368000pt;}
.y2e0{bottom:651.519520pt;}
.y36c{bottom:652.320000pt;}
.y32e{bottom:653.600480pt;}
.yb6{bottom:654.896000pt;}
.ye{bottom:655.520000pt;}
.y61{bottom:655.524000pt;}
.y2f{bottom:655.544000pt;}
.y81{bottom:655.548000pt;}
.y139{bottom:656.496000pt;}
.y2b9{bottom:658.240640pt;}
.y24c{bottom:659.840000pt;}
.y313{bottom:660.160320pt;}
.y212{bottom:664.476000pt;}
.y21c{bottom:664.488000pt;}
.y1d4{bottom:665.768000pt;}
.y14b{bottom:665.796000pt;}
.y257{bottom:666.400000pt;}
.y2df{bottom:666.559680pt;}
.ya0{bottom:668.168000pt;}
.y32d{bottom:668.479840pt;}
.y344{bottom:670.720000pt;}
.y287{bottom:672.000000pt;}
.y60{bottom:672.480000pt;}
.y2b8{bottom:673.120000pt;}
.y138{bottom:673.296000pt;}
.y36b{bottom:674.240000pt;}
.y312{bottom:675.200480pt;}
.y24b{bottom:676.640000pt;}
.y122{bottom:678.252000pt;}
.yb5{bottom:678.260000pt;}
.y80{bottom:678.912000pt;}
.y114{bottom:679.200000pt;}
.y1d3{bottom:682.568000pt;}
.y256{bottom:683.364000pt;}
.y32c{bottom:683.520000pt;}
.y9f{bottom:685.124000pt;}
.y211{bottom:687.840000pt;}
.y2de{bottom:688.321280pt;}
.y14a{bottom:689.160000pt;}
.y5f{bottom:689.280000pt;}
.y137{bottom:690.096000pt;}
.y311{bottom:690.240640pt;}
.y343{bottom:692.800000pt;}
.yd{bottom:693.440000pt;}
.y2b7{bottom:695.040000pt;}
.y121{bottom:695.208000pt;}
.yb4{bottom:695.216000pt;}
.y7f{bottom:696.036000pt;}
.y113{bottom:696.156000pt;}
.y36a{bottom:696.160000pt;}
.y1d2{bottom:699.524000pt;}
.y255{bottom:700.164000pt;}
.y9e{bottom:701.924000pt;}
.y2dd{bottom:703.200640pt;}
.y310{bottom:705.120000pt;}
.y32b{bottom:705.282080pt;}
.y286{bottom:705.936000pt;}
.y5e{bottom:706.080000pt;}
.y149{bottom:706.116000pt;}
.y136{bottom:707.052000pt;}
.y2b6{bottom:709.760160pt;}
.y24a{bottom:710.396000pt;}
.y120{bottom:712.164000pt;}
.yb3{bottom:712.172000pt;}
.y7e{bottom:712.836000pt;}
.y112{bottom:712.956000pt;}
.y342{bottom:714.720000pt;}
.y254{bottom:716.964000pt;}
.y2dc{bottom:718.080000pt;}
.y369{bottom:718.240000pt;}
.y9d{bottom:718.724000pt;}
.y32a{bottom:720.161440pt;}
.y1d1{bottom:722.888000pt;}
.y1fa{bottom:722.892000pt;}
.y5d{bottom:723.036000pt;}
.y148{bottom:723.072000pt;}
.yc{bottom:723.360000pt;}
.y135{bottom:723.852000pt;}
.y2b5{bottom:724.800320pt;}
.y30f{bottom:726.880960pt;}
.y210{bottom:727.200000pt;}
.y11f{bottom:728.964000pt;}
.yb2{bottom:728.972000pt;}
.y285{bottom:729.456000pt;}
.y7d{bottom:729.636000pt;}
.y111{bottom:729.756000pt;}
.y249{bottom:733.760000pt;}
.y253{bottom:733.924000pt;}
.y329{bottom:735.040800pt;}
.y9c{bottom:735.524000pt;}
.y341{bottom:736.640000pt;}
.y206{bottom:737.764000pt;}
.y2b4{bottom:739.679680pt;}
.y19d{bottom:739.692000pt;}
.y5c{bottom:739.836000pt;}
.y2db{bottom:739.840000pt;}
.y1d0{bottom:739.844000pt;}
.y27d{bottom:739.848000pt;}
.y147{bottom:739.872000pt;}
.y368{bottom:740.160000pt;}
.y134{bottom:740.652000pt;}
.y30e{bottom:741.760320pt;}
.y20f{bottom:744.480000pt;}
.y11e{bottom:745.764000pt;}
.yb1{bottom:745.772000pt;}
.y110{bottom:746.556000pt;}
.y284{bottom:746.580000pt;}
.y7c{bottom:746.592000pt;}
.yb{bottom:746.880000pt;}
.yfe{bottom:749.928000pt;}
.y328{bottom:750.080960pt;}
.y9b{bottom:752.480000pt;}
.y205{bottom:754.564000pt;}
.y2b3{bottom:754.719840pt;}
.y1f9{bottom:756.492000pt;}
.y5b{bottom:756.636000pt;}
.y1cf{bottom:756.644000pt;}
.yf2{bottom:756.648000pt;}
.y146{bottom:756.672000pt;}
.y30d{bottom:756.800480pt;}
.y133{bottom:757.452000pt;}
.y340{bottom:758.720000pt;}
.y20e{bottom:761.296000pt;}
.y367{bottom:762.240000pt;}
.y11d{bottom:762.564000pt;}
.yb0{bottom:762.572000pt;}
.y283{bottom:763.380000pt;}
.y7b{bottom:763.392000pt;}
.y1a6{bottom:764.016000pt;}
.y327{bottom:765.121120pt;}
.y9a{bottom:769.288000pt;}
.y2b2{bottom:769.760000pt;}
.y10f{bottom:769.920000pt;}
.ya{bottom:770.400000pt;}
.y204{bottom:771.520000pt;}
.y30c{bottom:771.679840pt;}
.y248{bottom:773.120000pt;}
.yfd{bottom:773.292000pt;}
.y5a{bottom:773.436000pt;}
.y1ce{bottom:773.444000pt;}
.yf1{bottom:773.448000pt;}
.y145{bottom:773.472000pt;}
.y132{bottom:774.408000pt;}
.y20d{bottom:778.096000pt;}
.y11c{bottom:779.520000pt;}
.y326{bottom:780.000480pt;}
.y282{bottom:780.180000pt;}
.y7a{bottom:780.192000pt;}
.y33f{bottom:780.640000pt;}
.y1a5{bottom:780.972000pt;}
.y366{bottom:784.160000pt;}
.yaf{bottom:785.936000pt;}
.y99{bottom:786.088000pt;}
.y30b{bottom:786.720000pt;}
.y10e{bottom:787.044000pt;}
.y9{bottom:787.356000pt;}
.y203{bottom:788.320000pt;}
.y1f7{bottom:790.392000pt;}
.y1cd{bottom:790.400000pt;}
.yf0{bottom:790.404000pt;}
.yfc{bottom:790.416000pt;}
.y144{bottom:790.428000pt;}
.y325{bottom:795.040640pt;}
.y20c{bottom:795.052000pt;}
.y11b{bottom:796.320000pt;}
.y59{bottom:796.800000pt;}
.y281{bottom:796.980000pt;}
.y79{bottom:796.992000pt;}
.y131{bottom:797.772000pt;}
.y1a4{bottom:797.928000pt;}
.y2b1{bottom:798.560000pt;}
.y33e{bottom:802.560000pt;}
.y98{bottom:803.044000pt;}
.yae{bottom:803.060000pt;}
.y10d{bottom:803.844000pt;}
.y202{bottom:805.120000pt;}
.y365{bottom:806.080000pt;}
.y1f6{bottom:807.192000pt;}
.y1cc{bottom:807.200000pt;}
.yef{bottom:807.204000pt;}
.yfb{bottom:807.216000pt;}
.y143{bottom:807.228000pt;}
.y30a{bottom:808.481760pt;}
.y324{bottom:809.920000pt;}
.y8{bottom:810.716000pt;}
.y20b{bottom:811.852000pt;}
.y247{bottom:813.772000pt;}
.y58{bottom:813.924000pt;}
.y280{bottom:813.936000pt;}
.y78{bottom:813.948000pt;}
.y130{bottom:814.728000pt;}
.y11a{bottom:819.684000pt;}
.y97{bottom:819.844000pt;}
.yad{bottom:819.860000pt;}
.y10c{bottom:820.644000pt;}
.y201{bottom:822.076000pt;}
.y309{bottom:823.361120pt;}
.y1f5{bottom:823.992000pt;}
.yee{bottom:824.004000pt;}
.yfa{bottom:824.016000pt;}
.y142{bottom:824.028000pt;}
.y1cb{bottom:824.064000pt;}
.y33d{bottom:824.640000pt;}
.y7{bottom:827.836000pt;}
.y364{bottom:828.160000pt;}
.y20a{bottom:828.652000pt;}
.y160{bottom:830.568000pt;}
.y57{bottom:830.724000pt;}
.y246{bottom:830.728000pt;}
.y27f{bottom:830.736000pt;}
.y77{bottom:830.748000pt;}
.y12f{bottom:831.528000pt;}
.y323{bottom:831.841280pt;}
.y119{bottom:836.640000pt;}
.y96{bottom:836.644000pt;}
.yac{bottom:836.660000pt;}
.y10b{bottom:837.444000pt;}
.y308{bottom:838.240480pt;}
.y200{bottom:838.876000pt;}
.y23f{bottom:840.948000pt;}
.yed{bottom:840.960000pt;}
.yf9{bottom:840.972000pt;}
.y141{bottom:840.984000pt;}
.y1ca{bottom:841.020000pt;}
.y2b0{bottom:844.484000pt;}
.y2ae{bottom:844.644000pt;}
.y209{bottom:845.452000pt;}
.y322{bottom:846.559840pt;}
.y33c{bottom:846.560000pt;}
.y1f4{bottom:847.356000pt;}
.y163{bottom:847.368000pt;}
.y56{bottom:847.524000pt;}
.y245{bottom:847.528000pt;}
.y27e{bottom:847.536000pt;}
.y76{bottom:847.548000pt;}
.y12e{bottom:848.484000pt;}
.y363{bottom:850.080000pt;}
.y6{bottom:851.200000pt;}
.y307{bottom:853.280640pt;}
.y118{bottom:853.440000pt;}
.y95{bottom:853.444000pt;}
.yab{bottom:853.460000pt;}
.y10a{bottom:854.400000pt;}
.y1ff{bottom:855.676000pt;}
.y23e{bottom:857.748000pt;}
.yec{bottom:857.760000pt;}
.yf8{bottom:857.772000pt;}
.y140{bottom:857.784000pt;}
.y1c9{bottom:857.820000pt;}
.y2af{bottom:861.440000pt;}
.y2ad{bottom:861.444000pt;}
.y321{bottom:861.600000pt;}
.y208{bottom:862.408000pt;}
.y27c{bottom:864.324000pt;}
.y55{bottom:864.480000pt;}
.y244{bottom:864.484000pt;}
.y162{bottom:864.492000pt;}
.y75{bottom:864.504000pt;}
.y12d{bottom:865.284000pt;}
.y33a{bottom:867.520000pt;}
.y306{bottom:868.160000pt;}
.y33b{bottom:868.640000pt;}
.y117{bottom:870.396000pt;}
.y94{bottom:870.400000pt;}
.yaa{bottom:870.416000pt;}
.y109{bottom:871.200000pt;}
.y362{bottom:872.000000pt;}
.y23d{bottom:874.548000pt;}
.y198{bottom:874.560000pt;}
.y19c{bottom:874.572000pt;}
.y1c8{bottom:874.620000pt;}
.y5{bottom:878.397280pt;}
.y2ac{bottom:878.400000pt;}
.y1fe{bottom:879.040000pt;}
.y207{bottom:879.208000pt;}
.yeb{bottom:881.124000pt;}
.yf7{bottom:881.136000pt;}
.y13f{bottom:881.148000pt;}
.y54{bottom:881.280000pt;}
.y243{bottom:881.284000pt;}
.y161{bottom:881.292000pt;}
.y74{bottom:881.304000pt;}
.y12c{bottom:882.084000pt;}
.y320{bottom:883.361280pt;}
.y116{bottom:887.196000pt;}
.y93{bottom:887.200000pt;}
.ya9{bottom:887.216000pt;}
.y305{bottom:890.081760pt;}
.y23c{bottom:891.348000pt;}
.y197{bottom:891.360000pt;}
.y19b{bottom:891.372000pt;}
.y1c7{bottom:891.420000pt;}
.y361{bottom:894.080000pt;}
.y2ab{bottom:895.200000pt;}
.y1f8{bottom:897.924000pt;}
.y53{bottom:898.080000pt;}
.y242{bottom:898.084000pt;}
.yf6{bottom:898.092000pt;}
.y73{bottom:898.104000pt;}
.y31f{bottom:898.240640pt;}
.y12b{bottom:898.884000pt;}
.y108{bottom:900.000000pt;}
.y115{bottom:903.996000pt;}
.y92{bottom:904.000000pt;}
.ya8{bottom:904.016000pt;}
.y304{bottom:904.800320pt;}
.y23b{bottom:908.304000pt;}
.y196{bottom:908.316000pt;}
.y19a{bottom:908.328000pt;}
.y1c6{bottom:908.376000pt;}
.y2aa{bottom:912.000000pt;}
.y31e{bottom:913.120000pt;}
.y52{bottom:914.880000pt;}
.y241{bottom:914.884000pt;}
.yf5{bottom:914.892000pt;}
.y72{bottom:914.904000pt;}
.y12a{bottom:915.840000pt;}
.y1fd{bottom:916.000000pt;}
.y303{bottom:919.840480pt;}
.y23a{bottom:925.104000pt;}
.y4{bottom:927.040000pt;}
.y195{bottom:931.680000pt;}
.y199{bottom:931.692000pt;}
.y1c5{bottom:931.740000pt;}
.y51{bottom:931.836000pt;}
.y240{bottom:931.840000pt;}
.yf4{bottom:931.848000pt;}
.y71{bottom:931.860000pt;}
.y302{bottom:934.719840pt;}
.y31d{bottom:934.882240pt;}
.y360{bottom:938.080000pt;}
.y91{bottom:942.080000pt;}
.y129{bottom:944.640000pt;}
.y239{bottom:948.468000pt;}
.y50{bottom:948.636000pt;}
.yf3{bottom:948.648000pt;}
.y70{bottom:948.660000pt;}
.y1c4{bottom:948.696000pt;}
.y301{bottom:949.760000pt;}
.y31c{bottom:949.761600pt;}
.y1{bottom:996.480000pt;}
.h13{height:1.780000pt;}
.h8{height:3.560000pt;}
.he{height:15.159375pt;}
.hb{height:21.280000pt;}
.h9{height:21.281333pt;}
.h12{height:21.438667pt;}
.ha{height:21.440000pt;}
.h14{height:30.778125pt;}
.hc{height:33.257812pt;}
.h7{height:33.375000pt;}
.h1{height:34.453125pt;}
.h4{height:35.695312pt;}
.h15{height:36.000000pt;}
.hd{height:36.344750pt;}
.h6{height:36.376750pt;}
.hf{height:36.392750pt;}
.h10{height:36.408750pt;}
.h3{height:36.424750pt;}
.h5{height:42.262500pt;}
.h16{height:63.253125pt;}
.h2{height:92.564062pt;}
.h11{height:197.280000pt;}
.h0{height:1056.000000pt;}
.we{width:52.800000pt;}
.wa{width:53.280000pt;}
.wf{width:59.201333pt;}
.w5{width:65.280000pt;}
.w2{width:67.680000pt;}
.w4{width:76.961333pt;}
.w10{width:83.358667pt;}
.w9{width:90.720000pt;}
.w11{width:95.040000pt;}
.w1{width:143.201333pt;}
.w6{width:143.358667pt;}
.w12{width:167.520000pt;}
.wd{width:179.040000pt;}
.w8{width:204.640000pt;}
.wc{width:274.878667pt;}
.w3{width:311.680000pt;}
.w7{width:311.681333pt;}
.wb{width:365.280000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.720000pt;}
.x21{left:17.760000pt;}
.x1{left:96.000000pt;}
.x16{left:103.200000pt;}
.x1f{left:104.480000pt;}
.x15{left:155.976000pt;}
.xb{left:162.400000pt;}
.x14{left:167.976000pt;}
.x17{left:181.600000pt;}
.x13{left:197.580000pt;}
.x1c{left:198.732000pt;}
.x12{left:204.000000pt;}
.x5{left:215.184000pt;}
.x9{left:221.112000pt;}
.x18{left:247.520000pt;}
.x1d{left:252.320000pt;}
.x1e{left:264.800000pt;}
.xa{left:270.080000pt;}
.x6{left:276.624000pt;}
.xd{left:306.400000pt;}
.x22{left:318.400000pt;}
.x23{left:372.320000pt;}
.xe{left:374.720000pt;}
.x19{left:407.680000pt;}
.x7{left:411.024000pt;}
.x1a{left:414.880000pt;}
.x2{left:422.388000pt;}
.x24{left:426.400000pt;}
.xf{left:443.200000pt;}
.x25{left:486.400000pt;}
.x10{left:511.520000pt;}
.x20{left:540.320000pt;}
.x11{left:580.000000pt;}
.x1b{left:620.800000pt;}
.x26{left:624.320000pt;}
.x3{left:678.912000pt;}
.x4{left:692.940000pt;}
.x8{left:719.988000pt;}
}




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