
    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_6a006bd7b9bc165bb708c0c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5fadf3bbcc1646634b66d777.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_2a4a955643499458e5ed52a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f7d052dc81cae62504bb17ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8e3739e037ae0c43177ec58b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f2211f4952e2ccf237429ffb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_131a54c948e8d2c0e5dc9bd6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_02626dd3f6a2c1e343ca86f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5b430b1e9d13dd840cf23769.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_465cbd8f97de247789a1568e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8a835e124d4756bea9d8f38a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d52b2f452e8eeae9b2ed0f7b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.947000;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:fff;src:url('chunks/assets/font_8d09153e948c2f80caa81424.woff2')format("woff");}.fff{font-family:fff;line-height:0.943000;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:ff10;src:url('chunks/assets/font_05a7dbdeea42733221c29be4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.840000px;}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-2.496000px;}
.ls9{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.528000px;}
.ls1c{letter-spacing:-0.378000px;}
.lsa{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.630000px;}
.lse{letter-spacing:0.660000px;}
.ls1e{letter-spacing:0.702000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.lsc{letter-spacing:1.500000px;}
.ls1d{letter-spacing:1.998000px;}
.ls6{letter-spacing:6.649200px;}
.ls1a{letter-spacing:9.157200px;}
.ls7{letter-spacing:66.582600px;}
.ls18{letter-spacing:252.854400px;}
.ls19{letter-spacing:273.973200px;}
.ls17{letter-spacing:278.492400px;}
.ls10{letter-spacing:333.174600px;}
.ls13{letter-spacing:333.175200px;}
.ls14{letter-spacing:334.536600px;}
.ls16{letter-spacing:334.537200px;}
.ls11{letter-spacing:381.894000px;}
.ls12{letter-spacing:381.894600px;}
.ls15{letter-spacing:383.256000px;}
.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;}
}
.ws1{word-spacing:-13.986000px;}
.wsa1{word-spacing:-13.620000px;}
.ws1b4{word-spacing:-13.446000px;}
.wsb8{word-spacing:-13.380000px;}
.ws168{word-spacing:-13.332000px;}
.ws167{word-spacing:-12.726000px;}
.ws5{word-spacing:-12.720000px;}
.ws5e{word-spacing:-12.540000px;}
.ws1b5{word-spacing:-12.150000px;}
.wsff{word-spacing:-12.120000px;}
.wsb2{word-spacing:-11.592000px;}
.ws17f{word-spacing:-11.502000px;}
.ws169{word-spacing:-11.448000px;}
.wsa8{word-spacing:-11.172000px;}
.ws17d{word-spacing:-11.070000px;}
.ws3{word-spacing:-10.908000px;}
.ws180{word-spacing:-9.882000px;}
.ws16a{word-spacing:-9.828000px;}
.ws9{word-spacing:-9.810000px;}
.ws6{word-spacing:-9.696000px;}
.ws17e{word-spacing:-9.450000px;}
.ws7b{word-spacing:-9.408000px;}
.ws2{word-spacing:-9.360000px;}
.ws7d{word-spacing:-8.880000px;}
.ws7{word-spacing:-8.820000px;}
.wse0{word-spacing:-8.736000px;}
.ws8{word-spacing:-8.232000px;}
.wse1{word-spacing:-6.115200px;}
.ws117{word-spacing:-5.678400px;}
.wsfe{word-spacing:-3.408000px;}
.ws4{word-spacing:-2.666400px;}
.ws140{word-spacing:-2.324700px;}
.wsaa{word-spacing:-1.500000px;}
.wsd6{word-spacing:-0.660000px;}
.ws5f{word-spacing:-0.450000px;}
.ws18f{word-spacing:-0.054000px;}
.ws96{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws18a{word-spacing:0.378000px;}
.wsf7{word-spacing:0.600000px;}
.ws1ca{word-spacing:0.756000px;}
.ws189{word-spacing:1.404000px;}
.ws188{word-spacing:1.620000px;}
.ws18e{word-spacing:1.890000px;}
.ws1cb{word-spacing:2.322000px;}
.ws1ad{word-spacing:2.376000px;}
.ws193{word-spacing:2.430000px;}
.ws1cc{word-spacing:2.700000px;}
.ws192{word-spacing:2.862000px;}
.ws179{word-spacing:2.916000px;}
.ws178{word-spacing:3.348000px;}
.ws176{word-spacing:3.780000px;}
.ws1b2{word-spacing:4.320000px;}
.ws1c{word-spacing:4.374000px;}
.ws1a3{word-spacing:4.428000px;}
.ws3f{word-spacing:5.040000px;}
.ws1a2{word-spacing:5.130000px;}
.ws1c1{word-spacing:5.346000px;}
.ws63{word-spacing:5.400000px;}
.ws3b{word-spacing:5.520000px;}
.ws62{word-spacing:5.700000px;}
.ws1c3{word-spacing:5.724000px;}
.wsa0{word-spacing:5.808000px;}
.ws6e{word-spacing:6.060000px;}
.ws13b{word-spacing:6.120000px;}
.ws38{word-spacing:6.192000px;}
.ws171{word-spacing:6.264000px;}
.ws2a{word-spacing:6.420000px;}
.ws1ac{word-spacing:6.426000px;}
.wsd2{word-spacing:6.480000px;}
.ws18d{word-spacing:6.534000px;}
.ws32{word-spacing:6.576000px;}
.ws1a7{word-spacing:6.588000px;}
.ws31{word-spacing:6.594000px;}
.wsb{word-spacing:6.615000px;}
.ws2b{word-spacing:6.660000px;}
.wsde{word-spacing:6.672000px;}
.ws184{word-spacing:6.696000px;}
.ws61{word-spacing:6.720000px;}
.ws162{word-spacing:6.840000px;}
.ws3d{word-spacing:6.900000px;}
.wsd7{word-spacing:6.960000px;}
.ws8b{word-spacing:7.020000px;}
.wsc{word-spacing:7.065000px;}
.ws37{word-spacing:7.104000px;}
.ws170{word-spacing:7.128000px;}
.ws172{word-spacing:7.236000px;}
.ws47{word-spacing:7.260000px;}
.ws198{word-spacing:7.290000px;}
.ws1f{word-spacing:7.320000px;}
.ws68{word-spacing:7.380000px;}
.ws83{word-spacing:7.440000px;}
.ws99{word-spacing:7.500000px;}
.ws1ab{word-spacing:7.506000px;}
.ws33{word-spacing:7.536000px;}
.ws1be{word-spacing:7.560000px;}
.ws1a4{word-spacing:7.614000px;}
.ws74{word-spacing:7.620000px;}
.ws13{word-spacing:7.668000px;}
.ws22{word-spacing:7.680000px;}
.ws78{word-spacing:7.740000px;}
.ws159{word-spacing:7.776000px;}
.ws165{word-spacing:7.800000px;}
.ws17c{word-spacing:7.884000px;}
.ws40{word-spacing:7.980000px;}
.ws16d{word-spacing:7.992000px;}
.ws10d{word-spacing:8.100000px;}
.ws1bc{word-spacing:8.154000px;}
.ws36{word-spacing:8.160000px;}
.ws19a{word-spacing:8.208000px;}
.ws9d{word-spacing:8.220000px;}
.ws16f{word-spacing:8.262000px;}
.ws41{word-spacing:8.280000px;}
.ws1af{word-spacing:8.316000px;}
.wsdd{word-spacing:8.340000px;}
.ws10e{word-spacing:8.400000px;}
.ws16e{word-spacing:8.424000px;}
.ws4d{word-spacing:8.460000px;}
.wsf{word-spacing:8.478000px;}
.ws35{word-spacing:8.484000px;}
.ws57{word-spacing:8.520000px;}
.ws181{word-spacing:8.532000px;}
.wsb0{word-spacing:8.580000px;}
.ws10f{word-spacing:8.640000px;}
.ws186{word-spacing:8.694000px;}
.wsaf{word-spacing:8.700000px;}
.ws24{word-spacing:8.760000px;}
.ws8d{word-spacing:8.778000px;}
.ws114{word-spacing:8.820000px;}
.ws1a{word-spacing:8.856000px;}
.ws25{word-spacing:8.880000px;}
.ws1b1{word-spacing:8.910000px;}
.wsdb{word-spacing:8.940000px;}
.ws8e{word-spacing:8.949000px;}
.ws50{word-spacing:9.000000px;}
.ws58{word-spacing:9.060000px;}
.wsd9{word-spacing:9.120000px;}
.ws4e{word-spacing:9.180000px;}
.ws53{word-spacing:9.240000px;}
.wsb6{word-spacing:9.261000px;}
.ws1a1{word-spacing:9.288000px;}
.ws48{word-spacing:9.360000px;}
.ws98{word-spacing:9.420000px;}
.wsfb{word-spacing:9.480000px;}
.ws111{word-spacing:9.540000px;}
.ws199{word-spacing:9.558000px;}
.wsa{word-spacing:9.600000px;}
.ws1c9{word-spacing:9.612000px;}
.ws10b{word-spacing:9.660000px;}
.ws1ae{word-spacing:9.666000px;}
.ws39{word-spacing:9.720000px;}
.ws11{word-spacing:9.774000px;}
.ws19d{word-spacing:9.828000px;}
.ws1d{word-spacing:9.840000px;}
.ws3a{word-spacing:9.900000px;}
.ws1c8{word-spacing:9.990000px;}
.ws51{word-spacing:10.020000px;}
.wsf8{word-spacing:10.080000px;}
.ws185{word-spacing:10.098000px;}
.ws60{word-spacing:10.140000px;}
.ws2e{word-spacing:10.200000px;}
.ws1c0{word-spacing:10.206000px;}
.ws67{word-spacing:10.260000px;}
.ws55{word-spacing:10.320000px;}
.ws1aa{word-spacing:10.368000px;}
.ws30{word-spacing:10.380000px;}
.ws13d{word-spacing:10.440000px;}
.ws2f{word-spacing:10.500000px;}
.ws1a9{word-spacing:10.530000px;}
.ws13f{word-spacing:10.560000px;}
.ws45{word-spacing:10.692000px;}
.wse{word-spacing:10.710000px;}
.wsb7{word-spacing:10.740000px;}
.ws81{word-spacing:10.800000px;}
.ws1b0{word-spacing:10.854000px;}
.wsa9{word-spacing:10.860000px;}
.wsdc{word-spacing:10.920000px;}
.ws1c2{word-spacing:10.962000px;}
.ws1c6{word-spacing:11.016000px;}
.ws6a{word-spacing:11.040000px;}
.ws28{word-spacing:11.220000px;}
.ws12{word-spacing:11.232000px;}
.ws5a{word-spacing:11.280000px;}
.ws1bd{word-spacing:11.286000px;}
.ws34{word-spacing:11.298000px;}
.ws8a{word-spacing:11.340000px;}
.wsfa{word-spacing:11.400000px;}
.ws19c{word-spacing:11.448000px;}
.ws42{word-spacing:11.460000px;}
.ws174{word-spacing:11.502000px;}
.ws6c{word-spacing:11.520000px;}
.ws177{word-spacing:11.556000px;}
.ws84{word-spacing:11.580000px;}
.ws1b9{word-spacing:11.610000px;}
.ws79{word-spacing:11.640000px;}
.ws1c7{word-spacing:11.664000px;}
.ws46{word-spacing:11.700000px;}
.ws1c4{word-spacing:11.718000px;}
.ws115{word-spacing:11.760000px;}
.ws19b{word-spacing:11.772000px;}
.ws112{word-spacing:11.880000px;}
.ws1bf{word-spacing:11.934000px;}
.wsf9{word-spacing:11.940000px;}
.ws1a0{word-spacing:11.988000px;}
.wsac{word-spacing:12.000000px;}
.ws56{word-spacing:12.060000px;}
.ws88{word-spacing:12.180000px;}
.ws85{word-spacing:12.240000px;}
.ws1a8{word-spacing:12.258000px;}
.ws166{word-spacing:12.300000px;}
.wsfc{word-spacing:12.360000px;}
.ws5b{word-spacing:12.420000px;}
.ws196{word-spacing:12.474000px;}
.ws21{word-spacing:12.480000px;}
.ws161{word-spacing:12.540000px;}
.ws191{word-spacing:12.582000px;}
.ws10a{word-spacing:12.600000px;}
.ws175{word-spacing:12.636000px;}
.ws49{word-spacing:12.660000px;}
.ws13e{word-spacing:12.720000px;}
.ws19e{word-spacing:12.744000px;}
.ws4b{word-spacing:12.780000px;}
.ws164{word-spacing:12.840000px;}
.ws190{word-spacing:12.852000px;}
.ws15c{word-spacing:12.900000px;}
.ws43{word-spacing:12.960000px;}
.ws187{word-spacing:13.014000px;}
.ws13c{word-spacing:13.020000px;}
.ws2c{word-spacing:13.080000px;}
.ws18b{word-spacing:13.122000px;}
.ws9c{word-spacing:13.140000px;}
.ws15e{word-spacing:13.200000px;}
.ws26{word-spacing:13.260000px;}
.wsab{word-spacing:13.320000px;}
.ws1c5{word-spacing:13.338000px;}
.ws54{word-spacing:13.380000px;}
.wsd4{word-spacing:13.440000px;}
.ws8c{word-spacing:13.500000px;}
.ws75{word-spacing:13.620000px;}
.ws66{word-spacing:13.740000px;}
.ws3c{word-spacing:13.800000px;}
.ws71{word-spacing:13.860000px;}
.wsd{word-spacing:13.944000px;}
.ws97{word-spacing:13.980000px;}
.ws82{word-spacing:14.040000px;}
.ws110{word-spacing:14.100000px;}
.ws9b{word-spacing:14.220000px;}
.ws17{word-spacing:14.256000px;}
.ws5d{word-spacing:14.340000px;}
.ws77{word-spacing:14.400000px;}
.ws10{word-spacing:14.418000px;}
.ws4c{word-spacing:14.460000px;}
.ws6f{word-spacing:14.520000px;}
.ws1b{word-spacing:14.526000px;}
.wsd3{word-spacing:14.580000px;}
.ws23{word-spacing:14.640000px;}
.ws19f{word-spacing:14.850000px;}
.wsda{word-spacing:14.940000px;}
.ws1b6{word-spacing:14.958000px;}
.ws197{word-spacing:15.012000px;}
.ws173{word-spacing:15.120000px;}
.ws80{word-spacing:15.180000px;}
.wsad{word-spacing:15.300000px;}
.ws15b{word-spacing:15.360000px;}
.ws17b{word-spacing:15.390000px;}
.wsd8{word-spacing:15.420000px;}
.ws29{word-spacing:15.480000px;}
.ws44{word-spacing:15.540000px;}
.ws89{word-spacing:15.600000px;}
.ws156{word-spacing:15.660000px;}
.wsae{word-spacing:15.720000px;}
.ws52{word-spacing:15.900000px;}
.ws17a{word-spacing:15.930000px;}
.wsb1{word-spacing:15.960000px;}
.ws194{word-spacing:16.038000px;}
.ws1bb{word-spacing:16.254000px;}
.ws1b8{word-spacing:16.362000px;}
.ws5c{word-spacing:16.380000px;}
.ws10c{word-spacing:16.440000px;}
.ws20{word-spacing:16.500000px;}
.ws76{word-spacing:16.560000px;}
.ws64{word-spacing:16.740000px;}
.ws27{word-spacing:16.860000px;}
.ws73{word-spacing:16.902000px;}
.ws163{word-spacing:16.920000px;}
.ws195{word-spacing:16.956000px;}
.ws16c{word-spacing:17.010000px;}
.ws6b{word-spacing:17.160000px;}
.ws160{word-spacing:17.340000px;}
.ws183{word-spacing:17.442000px;}
.ws65{word-spacing:17.550000px;}
.ws1e{word-spacing:17.580000px;}
.ws72{word-spacing:17.874000px;}
.ws15d{word-spacing:18.000000px;}
.ws15f{word-spacing:18.120000px;}
.ws113{word-spacing:18.180000px;}
.ws15a{word-spacing:18.240000px;}
.ws1a6{word-spacing:18.414000px;}
.ws2d{word-spacing:18.420000px;}
.ws59{word-spacing:18.720000px;}
.ws1ba{word-spacing:18.954000px;}
.ws1b7{word-spacing:19.062000px;}
.ws16b{word-spacing:19.080000px;}
.ws87{word-spacing:19.320000px;}
.ws86{word-spacing:19.560000px;}
.ws3e{word-spacing:19.620000px;}
.ws14{word-spacing:19.656000px;}
.ws1b3{word-spacing:19.710000px;}
.wsfd{word-spacing:19.740000px;}
.ws157{word-spacing:20.100000px;}
.ws16{word-spacing:20.142000px;}
.ws182{word-spacing:20.304000px;}
.ws9e{word-spacing:20.520000px;}
.wsd5{word-spacing:20.760000px;}
.ws9a{word-spacing:20.940000px;}
.ws1a5{word-spacing:21.438000px;}
.ws70{word-spacing:22.020000px;}
.ws4f{word-spacing:22.740000px;}
.ws18c{word-spacing:23.652000px;}
.ws69{word-spacing:25.080000px;}
.ws9f{word-spacing:25.920000px;}
.ws4a{word-spacing:27.060000px;}
.ws15{word-spacing:27.108000px;}
.ws158{word-spacing:31.740000px;}
.ws8f{word-spacing:38.592000px;}
.ws19{word-spacing:43.038000px;}
.ws6d{word-spacing:57.180000px;}
.ws18{word-spacing:65.340000px;}
.wscf{word-spacing:85.652400px;}
.wse4{word-spacing:89.171400px;}
.wscc{word-spacing:95.994600px;}
.wse5{word-spacing:100.882800px;}
.wsd0{word-spacing:103.652400px;}
.wse2{word-spacing:108.028200px;}
.wsd1{word-spacing:121.652400px;}
.wse3{word-spacing:143.805000px;}
.wse6{word-spacing:145.434000px;}
.wscd{word-spacing:149.343600px;}
.wsdf{word-spacing:153.331800px;}
.wsce{word-spacing:160.363800px;}
.ws100{word-spacing:198.323400px;}
.wsee{word-spacing:201.853800px;}
.wsec{word-spacing:201.854400px;}
.ws104{word-spacing:204.854400px;}
.wse7{word-spacing:208.210800px;}
.ws12d{word-spacing:209.434800px;}
.wse9{word-spacing:216.540000px;}
.wsf0{word-spacing:219.853800px;}
.wsed{word-spacing:219.854400px;}
.wsef{word-spacing:221.149800px;}
.ws105{word-spacing:224.150400px;}
.wsf4{word-spacing:224.990400px;}
.ws116{word-spacing:225.540000px;}
.ws107{word-spacing:230.492400px;}
.wsf5{word-spacing:239.150400px;}
.wsf3{word-spacing:244.286400px;}
.wsc0{word-spacing:244.944600px;}
.ws106{word-spacing:247.286400px;}
.ws103{word-spacing:249.788400px;}
.ws153{word-spacing:256.837200px;}
.ws119{word-spacing:256.837800px;}
.ws14a{word-spacing:268.405200px;}
.ws148{word-spacing:268.837200px;}
.ws134{word-spacing:268.837800px;}
.ws12c{word-spacing:269.123400px;}
.ws12b{word-spacing:269.124000px;}
.wsc3{word-spacing:273.552000px;}
.ws129{word-spacing:276.131400px;}
.ws151{word-spacing:276.132000px;}
.ws143{word-spacing:278.820000px;}
.wsc5{word-spacing:280.415400px;}
.ws13a{word-spacing:281.123400px;}
.ws152{word-spacing:285.013200px;}
.ws11d{word-spacing:286.115400px;}
.ws122{word-spacing:286.116000px;}
.ws12e{word-spacing:288.131400px;}
.ws144{word-spacing:288.132000px;}
.wsbe{word-spacing:291.552000px;}
.ws127{word-spacing:292.837200px;}
.ws11a{word-spacing:292.837800px;}
.ws139{word-spacing:294.444000px;}
.ws125{word-spacing:295.427400px;}
.ws11c{word-spacing:295.428000px;}
.wsf6{word-spacing:296.123400px;}
.ws130{word-spacing:298.115400px;}
.wsbf{word-spacing:298.415400px;}
.wsc9{word-spacing:298.944000px;}
.ws109{word-spacing:299.123400px;}
.wse8{word-spacing:303.923400px;}
.ws12f{word-spacing:307.427400px;}
.ws108{word-spacing:307.818000px;}
.ws12a{word-spacing:309.443400px;}
.wsbb{word-spacing:311.255400px;}
.ws124{word-spacing:312.131400px;}
.ws14f{word-spacing:312.132000px;}
.wsf1{word-spacing:313.115400px;}
.ws121{word-spacing:314.723400px;}
.ws120{word-spacing:314.724000px;}
.ws154{word-spacing:319.837200px;}
.ws11b{word-spacing:319.837800px;}
.ws138{word-spacing:322.837200px;}
.ws136{word-spacing:322.837800px;}
.ws147{word-spacing:322.883400px;}
.ws132{word-spacing:326.723400px;}
.ws146{word-spacing:327.877200px;}
.ws14c{word-spacing:329.314800px;}
.ws14e{word-spacing:329.315400px;}
.ws11f{word-spacing:331.428000px;}
.ws92{word-spacing:333.978600px;}
.wsca{word-spacing:334.415400px;}
.ws95{word-spacing:335.999400px;}
.wsbd{word-spacing:338.028000px;}
.ws128{word-spacing:339.131400px;}
.wsea{word-spacing:341.723400px;}
.ws91{word-spacing:342.671400px;}
.ws101{word-spacing:344.723400px;}
.ws150{word-spacing:344.963400px;}
.ws94{word-spacing:346.938600px;}
.ws14d{word-spacing:348.013200px;}
.ws149{word-spacing:348.275400px;}
.ws126{word-spacing:350.723400px;}
.ws142{word-spacing:352.115400px;}
.wsa5{word-spacing:360.186600px;}
.ws131{word-spacing:361.428000px;}
.wsb9{word-spacing:362.796000px;}
.ws90{word-spacing:369.066600px;}
.wsa6{word-spacing:374.970600px;}
.ws141{word-spacing:377.314800px;}
.ws133{word-spacing:380.724000px;}
.ws93{word-spacing:391.434600px;}
.ws145{word-spacing:392.963400px;}
.ws14b{word-spacing:397.704600px;}
.wsa3{word-spacing:404.010600px;}
.wsb5{word-spacing:408.378600px;}
.wsa4{word-spacing:409.583400px;}
.ws155{word-spacing:420.204600px;}
.wsb3{word-spacing:449.538600px;}
.wsa7{word-spacing:454.410600px;}
.wsb4{word-spacing:454.507200px;}
.ws123{word-spacing:487.349400px;}
.ws118{word-spacing:487.350000px;}
.wsf2{word-spacing:510.809400px;}
.wseb{word-spacing:510.810000px;}
.ws102{word-spacing:512.172000px;}
.wsa2{word-spacing:512.682600px;}
.ws11e{word-spacing:522.054000px;}
.ws137{word-spacing:527.850000px;}
.ws135{word-spacing:562.553400px;}
.ws7c{word-spacing:615.889800px;}
.ws7e{word-spacing:638.689200px;}
.ws7f{word-spacing:638.689800px;}
.ws7a{word-spacing:652.602600px;}
.wsc4{word-spacing:670.223400px;}
.wsc7{word-spacing:679.223400px;}
.wsc8{word-spacing:787.643400px;}
.wsbc{word-spacing:806.603400px;}
.wsba{word-spacing:1078.559400px;}
.wsc2{word-spacing:1098.167400px;}
.wsc1{word-spacing:1196.410800px;}
.wsc6{word-spacing:1545.418800px;}
.wscb{word-spacing:2370.034200px;}
._15{margin-left:-17.556029px;}
._33{margin-left:-11.664000px;}
._10{margin-left:-9.379785px;}
._d{margin-left:-7.632044px;}
._f{margin-left:-6.186029px;}
._e{margin-left:-5.160000px;}
._1{margin-left:-4.140000px;}
._a{margin-left:-3.088215px;}
._0{margin-left:-1.919985px;}
._4{width:1.848000px;}
._14{width:3.699600px;}
._2{width:6.240000px;}
._3{width:7.799985px;}
._6{width:8.861985px;}
._b{width:10.176000px;}
._8{width:11.729971px;}
._13{width:13.295985px;}
._9{width:14.616000px;}
._b1{width:15.719985px;}
._7{width:17.015971px;}
._b3{width:18.733756px;}
._b2{width:20.027941px;}
._12{width:25.697985px;}
._22{width:29.184000px;}
._1b{width:31.056000px;}
._3d{width:39.259185px;}
._3b{width:54.594585px;}
._5{width:61.296585px;}
._5f{width:94.422029px;}
._56{width:96.206385px;}
._68{width:108.232185px;}
._5b{width:112.422029px;}
._5c{width:113.698171px;}
._6a{width:116.578200px;}
._6b{width:125.577600px;}
._6d{width:128.290800px;}
._11{width:131.698171px;}
._c{width:133.679400px;}
._6e{width:137.292000px;}
._5d{width:139.422029px;}
._62{width:140.945371px;}
._66{width:144.740400px;}
._58{width:151.772400px;}
._83{width:160.955985px;}
._79{width:166.955385px;}
._71{width:168.292800px;}
._61{width:172.446600px;}
._65{width:180.740400px;}
._72{width:182.884800px;}
._3a{width:186.283185px;}
._57{width:187.772400px;}
._67{width:189.740400px;}
._3f{width:192.904156px;}
._59{width:196.772400px;}
._86{width:204.011985px;}
._3e{width:205.531200px;}
._80{width:210.011385px;}
._6f{width:212.597400px;}
._85{width:213.708000px;}
._5e{width:216.750600px;}
._70{width:218.260800px;}
._7e{width:219.707400px;}
._b0{width:220.805400px;}
._60{width:222.414600px;}
._98{width:225.107400px;}
._81{width:237.322785px;}
._ad{width:246.221400px;}
._8e{width:247.734600px;}
._8a{width:249.588000px;}
._84{width:258.156000px;}
._73{width:262.180800px;}
._7d{width:264.156000px;}
._63{width:266.334600px;}
._69{width:268.062000px;}
._a8{width:269.454000px;}
._ae{width:270.845400px;}
._77{width:276.588000px;}
._a5{width:280.835400px;}
._96{width:282.150000px;}
._af{width:286.733400px;}
._7f{width:288.872400px;}
._7b{width:292.713000px;}
._a6{width:294.221400px;}
._a7{width:295.762800px;}
._92{width:297.444000px;}
._3c{width:303.210585px;}
._64{width:307.158600px;}
._7c{width:310.427400px;}
._93{width:315.174000px;}
._9b{width:316.835400px;}
._a9{width:318.844800px;}
._6c{width:320.500800px;}
._8c{width:321.539400px;}
._a2{width:322.649400px;}
._5a{width:324.654600px;}
._45{width:331.360185px;}
._89{width:334.169400px;}
._9e{width:335.838600px;}
._ac{width:338.722800px;}
._94{width:341.531400px;}
._a0{width:344.532000px;}
._8d{width:348.540000px;}
._7a{width:351.455400px;}
._aa{width:354.371400px;}
._ab{width:356.764800px;}
._75{width:358.332000px;}
._90{width:360.131400px;}
._50{width:361.823400px;}
._97{width:363.688800px;}
._78{width:369.316200px;}
._9d{width:370.836000px;}
._a4{width:373.764000px;}
._82{width:380.333415px;}
._76{width:385.331400px;}
._91{width:386.885400px;}
._9a{width:390.132000px;}
._95{width:396.198000px;}
._9f{width:401.273400px;}
._a3{width:402.371400px;}
._43{width:422.587200px;}
._44{width:431.586600px;}
._a1{width:436.697400px;}
._39{width:446.274000px;}
._41{width:473.202600px;}
._38{width:488.778585px;}
._8f{width:496.277400px;}
._87{width:525.708000px;}
._8b{width:531.461400px;}
._99{width:536.778000px;}
._74{width:562.170000px;}
._9c{width:571.962000px;}
._46{width:579.976185px;}
._49{width:623.032185px;}
._42{width:629.272200px;}
._48{width:632.728200px;}
._26{width:636.406800px;}
._4d{width:645.736200px;}
._4e{width:660.328200px;}
._36{width:668.902800px;}
._47{width:677.176200px;}
._34{width:687.238800px;}
._4b{width:690.040200px;}
._55{width:692.471400px;}
._4c{width:695.704200px;}
._1c{width:717.814800px;}
._1f{width:733.078185px;}
._37{width:735.465615px;}
._4f{width:739.624200px;}
._1d{width:753.910800px;}
._20{width:756.934800px;}
._40{width:773.512185px;}
._1e{width:776.710200px;}
._35{width:788.758800px;}
._4a{width:797.944200px;}
._51{width:819.851400px;}
._23{width:822.159000px;}
._29{width:838.390800px;}
._2f{width:842.902800px;}
._2e{width:845.614785px;}
._25{width:853.990800px;}
._2a{width:855.118800px;}
._30{width:860.278800px;}
._32{width:881.974800px;}
._2c{width:885.574785px;}
._27{width:898.342785px;}
._2d{width:908.110800px;}
._28{width:918.934800px;}
._21{width:937.078800px;}
._2b{width:941.206800px;}
._31{width:942.550800px;}
._88{width:950.088000px;}
._24{width:954.550800px;}
._17{width:1006.630785px;}
._18{width:1033.750800px;}
._16{width:1049.446800px;}
._19{width:1056.550800px;}
._54{width:1078.439400px;}
._1a{width:1110.646200px;}
._52{width:1158.251400px;}
._53{width:1186.859400px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:31.200000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y35{bottom:67.597501px;}
.y69{bottom:71.565600px;}
.y2df{bottom:77.551200px;}
.y20f{bottom:77.610000px;}
.y2a0{bottom:79.426200px;}
.y68{bottom:83.565600px;}
.y171{bottom:83.991900px;}
.y34{bottom:84.097501px;}
.yaa{bottom:85.275000px;}
.y129{bottom:85.350600px;}
.y139{bottom:87.881850px;}
.y1bf{bottom:90.038100px;}
.yfb{bottom:90.525000px;}
.y20e{bottom:91.650000px;}
.y197{bottom:93.051750px;}
.y2de{bottom:94.051200px;}
.y238{bottom:95.176200px;}
.y67{bottom:95.565600px;}
.y281{bottom:95.926200px;}
.y4{bottom:97.125005px;}
.y128{bottom:102.113700px;}
.y170{bottom:103.491900px;}
.yfa{bottom:104.025000px;}
.ya9{bottom:104.775000px;}
.y20d{bottom:105.150000px;}
.y138{bottom:107.381850px;}
.y63{bottom:107.940600px;}
.y1be{bottom:109.538100px;}
.y2dd{bottom:110.551200px;}
.y29f{bottom:112.426200px;}
.y196{bottom:112.551750px;}
.y237{bottom:114.676200px;}
.y280{bottom:115.426200px;}
.y127{bottom:115.613700px;}
.yf9{bottom:117.525000px;}
.y20c{bottom:118.650000px;}
.y65{bottom:118.815600px;}
.y16f{bottom:122.991900px;}
.ya8{bottom:124.275000px;}
.y137{bottom:126.881850px;}
.y2dc{bottom:127.051200px;}
.y29e{bottom:128.926200px;}
.y1bd{bottom:129.038100px;}
.y126{bottom:129.113700px;}
.yf8{bottom:131.025000px;}
.y195{bottom:132.051750px;}
.y20b{bottom:132.150000px;}
.y64{bottom:132.315600px;}
.y236{bottom:134.176200px;}
.y27f{bottom:134.926200px;}
.y21{bottom:139.264499px;}
.y16e{bottom:142.491900px;}
.y125{bottom:142.613700px;}
.y2db{bottom:143.551200px;}
.ya7{bottom:143.775000px;}
.yf7{bottom:144.525000px;}
.y29d{bottom:145.426200px;}
.y20a{bottom:145.650000px;}
.y136{bottom:146.381850px;}
.y1bc{bottom:148.538100px;}
.y194{bottom:151.551750px;}
.y27e{bottom:154.426200px;}
.y124{bottom:156.113700px;}
.yf6{bottom:158.025000px;}
.y209{bottom:159.150000px;}
.y2da{bottom:160.051200px;}
.y29c{bottom:161.926200px;}
.y235{bottom:164.176200px;}
.y135{bottom:165.881850px;}
.y1bb{bottom:168.038100px;}
.y123{bottom:169.613700px;}
.y62{bottom:170.926200px;}
.y193{bottom:171.051750px;}
.yf5{bottom:171.525000px;}
.y16d{bottom:172.491900px;}
.y208{bottom:172.650000px;}
.ya6{bottom:173.775000px;}
.y27d{bottom:173.926200px;}
.y2d9{bottom:176.551200px;}
.y29b{bottom:178.426200px;}
.y122{bottom:183.113700px;}
.yf4{bottom:185.025000px;}
.y134{bottom:185.381850px;}
.y207{bottom:186.150000px;}
.y1ba{bottom:187.538100px;}
.y61{bottom:190.426200px;}
.y192{bottom:190.551750px;}
.y2d8{bottom:193.051200px;}
.y27c{bottom:193.426200px;}
.y234{bottom:194.176200px;}
.y29a{bottom:194.926200px;}
.y121{bottom:196.613700px;}
.y18{bottom:196.933500px;}
.yf3{bottom:198.525000px;}
.y206{bottom:199.650000px;}
.y16c{bottom:202.491900px;}
.y133{bottom:204.881850px;}
.y1b9{bottom:207.038100px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2d7{bottom:209.551200px;}
.y60{bottom:209.926200px;}
.y191{bottom:210.051750px;}
.y120{bottom:210.113700px;}
.yf2{bottom:212.025000px;}
.y27b{bottom:212.926200px;}
.y205{bottom:213.150000px;}
.ya5{bottom:221.850600px;}
.y299{bottom:221.926200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y11f{bottom:223.613700px;}
.ycc{bottom:224.153850px;}
.y132{bottom:224.381850px;}
.yf1{bottom:225.525000px;}
.y2d6{bottom:226.051200px;}
.y1b8{bottom:226.538100px;}
.y204{bottom:226.650000px;}
.y5f{bottom:229.426200px;}
.y190{bottom:229.551750px;}
.y27a{bottom:232.426200px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y11e{bottom:237.113700px;}
.yf0{bottom:239.025000px;}
.y203{bottom:240.150000px;}
.ya4{bottom:241.350600px;}
.y2d5{bottom:242.551200px;}
.ycb{bottom:243.653850px;}
.y131{bottom:243.881850px;}
.y180{bottom:244.116900px;}
.y233{bottom:245.176200px;}
.y1b7{bottom:246.038100px;}
.y5e{bottom:248.926200px;}
.y18f{bottom:249.051750px;}
.y11d{bottom:250.613700px;}
.yef{bottom:252.525000px;}
.y202{bottom:253.650000px;}
.y17f{bottom:257.616900px;}
.y2d4{bottom:259.051200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.ya3{bottom:260.850600px;}
.y279{bottom:262.426200px;}
.yca{bottom:263.153850px;}
.y130{bottom:263.381850px;}
.y11c{bottom:264.113700px;}
.y232{bottom:264.676200px;}
.yee{bottom:266.025000px;}
.y201{bottom:267.150000px;}
.y5d{bottom:268.426200px;}
.y18e{bottom:268.551750px;}
.y17e{bottom:271.116900px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y298{bottom:272.926200px;}
.y2d3{bottom:275.551200px;}
.y11b{bottom:277.613700px;}
.yed{bottom:279.525000px;}
.ya2{bottom:280.350600px;}
.y200{bottom:280.650000px;}
.yc9{bottom:282.653850px;}
.y12f{bottom:282.881850px;}
.y231{bottom:284.176200px;}
.y17d{bottom:284.616900px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y33{bottom:286.426501px;}
.y5c{bottom:287.926200px;}
.y297{bottom:289.426200px;}
.y11a{bottom:291.113700px;}
.y2d2{bottom:292.051200px;}
.yec{bottom:293.025000px;}
.y1ff{bottom:294.150000px;}
.y1ec{bottom:294.886200px;}
.y17c{bottom:298.116900px;}
.y18d{bottom:298.551750px;}
.ya1{bottom:299.850600px;}
.yc8{bottom:302.153850px;}
.y12e{bottom:302.381850px;}
.y230{bottom:303.676200px;}
.y119{bottom:304.613700px;}
.yeb{bottom:306.525000px;}
.y5b{bottom:307.426200px;}
.y1fe{bottom:307.650000px;}
.y2d1{bottom:308.551200px;}
.y1eb{bottom:308.926200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y17b{bottom:311.616900px;}
.y278{bottom:313.426200px;}
.y296{bottom:316.426200px;}
.y118{bottom:318.113700px;}
.ya0{bottom:319.350600px;}
.yea{bottom:320.025000px;}
.y1fd{bottom:321.150000px;}
.yc7{bottom:321.653850px;}
.y12d{bottom:321.881850px;}
.y1ea{bottom:322.426200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y22f{bottom:323.176200px;}
.y2d0{bottom:325.051200px;}
.y17a{bottom:325.116900px;}
.y5a{bottom:326.926200px;}
.y117{bottom:331.613700px;}
.y277{bottom:332.926200px;}
.ye9{bottom:333.525000px;}
.y1fc{bottom:334.650000px;}
.y1e9{bottom:335.926200px;}
.y179{bottom:338.616900px;}
.y9f{bottom:338.850600px;}
.yc6{bottom:341.153850px;}
.y12c{bottom:341.381850px;}
.y2cf{bottom:341.551200px;}
.y22e{bottom:342.676200px;}
.y116{bottom:345.113700px;}
.y59{bottom:346.426200px;}
.ye8{bottom:347.025000px;}
.yf{bottom:348.133500px;}
.y22d{bottom:348.150000px;}
.y1e8{bottom:349.426200px;}
.y32{bottom:350.776501px;}
.y178{bottom:352.116900px;}
.y18c{bottom:352.158600px;}
.y276{bottom:352.426200px;}
.y1fa{bottom:353.025000px;}
.y2ce{bottom:358.051200px;}
.y9e{bottom:358.350600px;}
.y115{bottom:358.613700px;}
.ye7{bottom:360.525000px;}
.yc5{bottom:360.653850px;}
.y12b{bottom:360.881850px;}
.y22c{bottom:361.650000px;}
.y1e7{bottom:362.926200px;}
.y177{bottom:365.616900px;}
.y58{bottom:365.926200px;}
.y1fb{bottom:366.525000px;}
.y295{bottom:367.426200px;}
.y18b{bottom:371.658600px;}
.y275{bottom:371.926200px;}
.y114{bottom:372.113700px;}
.ye6{bottom:374.025000px;}
.y2cd{bottom:374.551200px;}
.y1e6{bottom:376.426200px;}
.y9d{bottom:377.850600px;}
.y176{bottom:379.116900px;}
.y22a{bottom:380.025000px;}
.yc4{bottom:380.153850px;}
.y12a{bottom:380.381850px;}
.y24f{bottom:384.886200px;}
.y1f9{bottom:385.275000px;}
.y57{bottom:385.426200px;}
.y113{bottom:385.613700px;}
.ye{bottom:386.785499px;}
.ye5{bottom:387.525000px;}
.y1e5{bottom:389.926200px;}
.y2cc{bottom:391.051200px;}
.y18a{bottom:391.158600px;}
.y274{bottom:391.426200px;}
.y175{bottom:392.616900px;}
.y22b{bottom:393.525000px;}
.y294{bottom:394.426200px;}
.y9c{bottom:397.350600px;}
.y24e{bottom:398.926200px;}
.y112{bottom:399.113700px;}
.ye4{bottom:401.025000px;}
.y1e4{bottom:403.426200px;}
.y56{bottom:404.926200px;}
.yc3{bottom:406.532550px;}
.y2cb{bottom:407.551200px;}
.yd{bottom:408.044999px;}
.y174{bottom:410.616900px;}
.y189{bottom:410.658600px;}
.y273{bottom:410.926200px;}
.y229{bottom:412.275000px;}
.y24d{bottom:412.426200px;}
.y111{bottom:412.613700px;}
.ye3{bottom:414.525000px;}
.y31{bottom:415.126501px;}
.y9b{bottom:416.850600px;}
.y1e3{bottom:416.926200px;}
.yc2{bottom:423.032550px;}
.y2ca{bottom:424.051200px;}
.y55{bottom:424.426200px;}
.y24c{bottom:425.926200px;}
.y110{bottom:426.113700px;}
.y16a{bottom:426.488700px;}
.ye2{bottom:428.025000px;}
.y173{bottom:429.366900px;}
.y188{bottom:430.158600px;}
.y1e2{bottom:430.426200px;}
.y1f8{bottom:433.426200px;}
.y9a{bottom:436.350600px;}
.y24b{bottom:439.426200px;}
.y10f{bottom:439.613700px;}
.y169{bottom:439.988700px;}
.y2c9{bottom:440.551200px;}
.ye1{bottom:441.525000px;}
.y54{bottom:443.926200px;}
.y293{bottom:445.426200px;}
.y187{bottom:449.658600px;}
.y272{bottom:449.926200px;}
.yc1{bottom:452.282550px;}
.y1f7{bottom:452.926200px;}
.y10e{bottom:453.113700px;}
.y168{bottom:453.488700px;}
.ye0{bottom:455.025000px;}
.y99{bottom:455.850600px;}
.y2c8{bottom:457.051200px;}
.y228{bottom:457.266150px;}
.y1e1{bottom:457.426200px;}
.y292{bottom:461.926200px;}
.y172{bottom:462.856200px;}
.y53{bottom:463.426200px;}
.y24a{bottom:466.426200px;}
.y10d{bottom:466.613700px;}
.y167{bottom:466.988700px;}
.ydf{bottom:468.525000px;}
.yc0{bottom:468.782550px;}
.y186{bottom:469.158600px;}
.y271{bottom:469.426200px;}
.y1e0{bottom:470.926200px;}
.y227{bottom:471.306150px;}
.y1f6{bottom:472.426200px;}
.y2c7{bottom:473.551200px;}
.y98{bottom:475.350600px;}
.y249{bottom:479.926200px;}
.y10c{bottom:480.113700px;}
.y166{bottom:480.488700px;}
.yde{bottom:482.025000px;}
.y30{bottom:482.407500px;}
.y52{bottom:482.926200px;}
.y1df{bottom:484.426200px;}
.y226{bottom:484.806150px;}
.y291{bottom:487.426200px;}
.y185{bottom:488.658600px;}
.y270{bottom:488.926200px;}
.y2c6{bottom:490.051200px;}
.y1f5{bottom:491.926200px;}
.y248{bottom:493.426200px;}
.y10b{bottom:493.613700px;}
.y165{bottom:493.988700px;}
.y97{bottom:494.850600px;}
.ydd{bottom:495.525000px;}
.ybf{bottom:497.411250px;}
.y1de{bottom:497.926200px;}
.y225{bottom:498.306150px;}
.y51{bottom:502.426200px;}
.yc{bottom:502.864502px;}
.y290{bottom:503.926200px;}
.y2c5{bottom:506.551200px;}
.y247{bottom:506.926200px;}
.y10a{bottom:507.113700px;}
.y164{bottom:507.488700px;}
.y184{bottom:508.158600px;}
.y26f{bottom:508.426200px;}
.ydc{bottom:509.025000px;}
.y1dd{bottom:511.426200px;}
.y224{bottom:511.806150px;}
.y96{bottom:514.350600px;}
.ybe{bottom:516.911250px;}
.y246{bottom:520.426200px;}
.y109{bottom:520.613700px;}
.yb{bottom:520.864502px;}
.y163{bottom:520.988700px;}
.y50{bottom:521.926200px;}
.ydb{bottom:522.525000px;}
.y2c4{bottom:523.051200px;}
.y1dc{bottom:524.926200px;}
.y223{bottom:525.306150px;}
.y183{bottom:527.658600px;}
.y1f4{bottom:530.926200px;}
.y95{bottom:533.850600px;}
.y245{bottom:533.926200px;}
.y108{bottom:534.113700px;}
.y162{bottom:534.488700px;}
.yda{bottom:536.025000px;}
.ybd{bottom:536.411250px;}
.y1db{bottom:538.426200px;}
.y222{bottom:538.806150px;}
.ya{bottom:538.864499px;}
.y2c3{bottom:539.551200px;}
.y4f{bottom:541.426200px;}
.y2f{bottom:543.826501px;}
.y182{bottom:547.158600px;}
.y244{bottom:547.426200px;}
.y107{bottom:547.613700px;}
.y161{bottom:547.988700px;}
.yd9{bottom:549.525000px;}
.y1f3{bottom:550.426200px;}
.y1da{bottom:551.926200px;}
.y221{bottom:552.306150px;}
.y94{bottom:553.350600px;}
.ybc{bottom:555.911250px;}
.y2c2{bottom:556.051200px;}
.y9{bottom:556.864499px;}
.y4e{bottom:560.926200px;}
.y106{bottom:561.113700px;}
.y160{bottom:561.488700px;}
.yd8{bottom:563.025000px;}
.y220{bottom:565.806150px;}
.y181{bottom:566.658600px;}
.y1d8{bottom:570.301200px;}
.y2c1{bottom:572.551200px;}
.y93{bottom:572.850600px;}
.y243{bottom:574.426200px;}
.y105{bottom:574.613700px;}
.y15f{bottom:574.988700px;}
.ybb{bottom:575.411250px;}
.yd7{bottom:576.525000px;}
.y21f{bottom:579.306150px;}
.y4d{bottom:580.426200px;}
.y28f{bottom:581.926200px;}
.y1d9{bottom:583.801200px;}
.y242{bottom:587.926200px;}
.y104{bottom:588.113700px;}
.y15e{bottom:588.488700px;}
.y2c0{bottom:589.051200px;}
.y26e{bottom:589.426200px;}
.yd6{bottom:590.025000px;}
.y92{bottom:592.350600px;}
.y21e{bottom:592.806150px;}
.yba{bottom:594.911250px;}
.y241{bottom:601.426200px;}
.y103{bottom:601.613700px;}
.y15d{bottom:601.988700px;}
.y1d7{bottom:602.551200px;}
.yd5{bottom:603.525000px;}
.y2bf{bottom:605.551200px;}
.y21d{bottom:606.306150px;}
.y26d{bottom:608.926200px;}
.y4c{bottom:610.426200px;}
.y2e{bottom:611.107500px;}
.y91{bottom:611.850600px;}
.y1b6{bottom:612.872700px;}
.yb9{bottom:614.411250px;}
.y240{bottom:614.926200px;}
.y102{bottom:615.113700px;}
.y15c{bottom:615.488700px;}
.yd4{bottom:617.025000px;}
.y21c{bottom:619.806150px;}
.y2be{bottom:622.051200px;}
.y1b5{bottom:626.372700px;}
.y23f{bottom:628.426200px;}
.y101{bottom:628.613700px;}
.y15b{bottom:628.988700px;}
.yd3{bottom:630.525000px;}
.y90{bottom:631.350600px;}
.y1f2{bottom:631.426200px;}
.y21b{bottom:633.306150px;}
.yb8{bottom:633.911250px;}
.y2bd{bottom:638.551200px;}
.y1b4{bottom:639.872700px;}
.y23e{bottom:641.926200px;}
.y100{bottom:642.113700px;}
.y15a{bottom:642.488700px;}
.yd2{bottom:644.025000px;}
.y2d{bottom:645.457501px;}
.y8{bottom:645.510000px;}
.y21a{bottom:646.806150px;}
.y26c{bottom:647.926200px;}
.y1d6{bottom:650.623950px;}
.y8f{bottom:650.850600px;}
.y1f1{bottom:650.926200px;}
.y1b3{bottom:653.372700px;}
.y2bc{bottom:655.051200px;}
.y23d{bottom:655.426200px;}
.yff{bottom:655.613700px;}
.y159{bottom:655.988700px;}
.y28e{bottom:659.926200px;}
.y219{bottom:660.306150px;}
.y2c{bottom:660.457501px;}
.y79{bottom:660.938700px;}
.yd1{bottom:662.025000px;}
.yb7{bottom:665.539950px;}
.y7{bottom:666.771000px;}
.y1b2{bottom:666.872700px;}
.y26b{bottom:667.426200px;}
.y23c{bottom:668.926200px;}
.yfe{bottom:669.113700px;}
.y1d4{bottom:669.373950px;}
.y158{bottom:669.488700px;}
.y8e{bottom:670.350600px;}
.y1f0{bottom:670.426200px;}
.y2bb{bottom:671.551200px;}
.y4b{bottom:671.926200px;}
.y218{bottom:673.806150px;}
.y78{bottom:674.438700px;}
.y2b{bottom:675.457500px;}
.y1b1{bottom:680.372700px;}
.yd0{bottom:680.775000px;}
.yb6{bottom:682.039950px;}
.y1d5{bottom:682.873950px;}
.y157{bottom:682.988700px;}
.y4a{bottom:686.926200px;}
.yfd{bottom:687.113700px;}
.y23a{bottom:687.301200px;}
.y217{bottom:687.306150px;}
.y77{bottom:687.938700px;}
.y2ba{bottom:688.051200px;}
.y8d{bottom:689.850600px;}
.y1ef{bottom:689.926200px;}
.y156{bottom:696.488700px;}
.y1b0{bottom:698.372700px;}
.y23b{bottom:700.801200px;}
.y216{bottom:700.806150px;}
.y76{bottom:701.438700px;}
.y1d3{bottom:701.623950px;}
.y49{bottom:701.926200px;}
.y2b9{bottom:704.551200px;}
.yfc{bottom:705.863700px;}
.y26a{bottom:706.426200px;}
.y8c{bottom:709.350600px;}
.y1ee{bottom:709.426200px;}
.y155{bottom:709.988700px;}
.yb5{bottom:710.668650px;}
.y215{bottom:714.306150px;}
.y48{bottom:716.926200px;}
.y1ae{bottom:717.122700px;}
.y239{bottom:719.551200px;}
.y2b8{bottom:721.051200px;}
.y154{bottom:723.488700px;}
.y75{bottom:724.201200px;}
.y269{bottom:725.926200px;}
.y6{bottom:726.298500px;}
.y214{bottom:727.806150px;}
.y8b{bottom:728.850600px;}
.y1ed{bottom:728.926200px;}
.yb4{bottom:730.168800px;}
.y1af{bottom:730.622700px;}
.y47{bottom:731.926200px;}
.y28d{bottom:736.426200px;}
.y153{bottom:736.988700px;}
.y2b7{bottom:737.551200px;}
.y74{bottom:737.701200px;}
.y213{bottom:741.306150px;}
.y268{bottom:745.426200px;}
.y1d2{bottom:746.363700px;}
.y46{bottom:746.926200px;}
.ycf{bottom:748.426200px;}
.y1ad{bottom:749.372700px;}
.yb3{bottom:749.668800px;}
.y152{bottom:750.488700px;}
.y73{bottom:751.201200px;}
.y3{bottom:752.599495px;}
.y28c{bottom:752.926200px;}
.y2b6{bottom:754.051200px;}
.y2a{bottom:756.817498px;}
.y8a{bottom:758.850600px;}
.y211{bottom:759.681150px;}
.y45{bottom:761.926200px;}
.y151{bottom:763.988700px;}
.y1d1{bottom:764.363700px;}
.y72{bottom:764.701200px;}
.y267{bottom:764.926200px;}
.y264{bottom:765.323700px;}
.yce{bottom:767.926200px;}
.yb2{bottom:769.168800px;}
.y28b{bottom:769.426200px;}
.y2b5{bottom:770.551200px;}
.y212{bottom:773.181150px;}
.y44{bottom:776.926200px;}
.y150{bottom:777.488700px;}
.y1d0{bottom:777.863700px;}
.y71{bottom:778.201200px;}
.y263{bottom:779.363700px;}
.y266{bottom:784.426200px;}
.y28a{bottom:785.926200px;}
.y29{bottom:786.817498px;}
.y2b4{bottom:787.051200px;}
.ycd{bottom:787.426200px;}
.yb1{bottom:788.668800px;}
.y14f{bottom:790.988700px;}
.y1cf{bottom:791.363700px;}
.y70{bottom:791.701200px;}
.y43{bottom:791.926200px;}
.y210{bottom:791.931150px;}
.y262{bottom:792.863700px;}
.y289{bottom:802.426200px;}
.y2b3{bottom:803.551200px;}
.y14e{bottom:804.488700px;}
.y28{bottom:804.817498px;}
.y1ce{bottom:804.863700px;}
.y6f{bottom:805.201200px;}
.y261{bottom:806.363700px;}
.y1ac{bottom:806.738700px;}
.y42{bottom:806.926200px;}
.yb0{bottom:808.168800px;}
.y265{bottom:814.426200px;}
.y14d{bottom:817.988700px;}
.y1cd{bottom:818.363700px;}
.y260{bottom:819.863700px;}
.y2b2{bottom:820.051200px;}
.y1ab{bottom:820.238700px;}
.y41{bottom:821.926200px;}
.y27{bottom:822.817498px;}
.y89{bottom:826.426200px;}
.yaf{bottom:827.668800px;}
.y6e{bottom:827.963700px;}
.y288{bottom:829.426200px;}
.y14c{bottom:831.488700px;}
.y1cc{bottom:831.863700px;}
.y25f{bottom:833.363700px;}
.y1aa{bottom:833.738700px;}
.y2b1{bottom:836.551200px;}
.y40{bottom:836.926200px;}
.y6d{bottom:841.463700px;}
.y14b{bottom:844.988700px;}
.y88{bottom:845.926200px;}
.y25e{bottom:846.863700px;}
.yae{bottom:847.168800px;}
.y1a9{bottom:847.238700px;}
.y1cb{bottom:849.863700px;}
.y3f{bottom:851.926200px;}
.y2b0{bottom:853.051200px;}
.y6c{bottom:854.963700px;}
.y14a{bottom:858.488700px;}
.y25d{bottom:860.363700px;}
.y1a8{bottom:860.738700px;}
.y87{bottom:865.426200px;}
.y3e{bottom:866.926200px;}
.y6b{bottom:868.463700px;}
.y1c9{bottom:868.613700px;}
.y2af{bottom:869.551200px;}
.y149{bottom:871.988700px;}
.y25c{bottom:873.863700px;}
.y1a7{bottom:874.238700px;}
.y26{bottom:875.289002px;}
.yad{bottom:878.797500px;}
.y287{bottom:878.926200px;}
.y2{bottom:879.369000px;}
.y3d{bottom:881.926200px;}
.y6a{bottom:881.963700px;}
.y1ca{bottom:882.113700px;}
.y86{bottom:884.926200px;}
.y148{bottom:885.488700px;}
.y2ae{bottom:886.051200px;}
.y25b{bottom:887.363700px;}
.y1a6{bottom:887.738700px;}
.yac{bottom:895.297500px;}
.y286{bottom:895.426200px;}
.y147{bottom:898.988700px;}
.y1c8{bottom:900.863700px;}
.y1a5{bottom:901.238700px;}
.y2ad{bottom:902.551200px;}
.y85{bottom:904.426200px;}
.y285{bottom:911.926200px;}
.y146{bottom:912.488700px;}
.y25a{bottom:914.363700px;}
.y1a4{bottom:914.738700px;}
.y2ac{bottom:919.051200px;}
.y84{bottom:923.926200px;}
.y145{bottom:925.988700px;}
.y259{bottom:927.863700px;}
.y1a3{bottom:928.238700px;}
.y284{bottom:928.426200px;}
.y3c{bottom:928.801200px;}
.y2ab{bottom:935.551200px;}
.y25{bottom:938.940000px;}
.y144{bottom:939.488700px;}
.y258{bottom:941.363700px;}
.y1a2{bottom:941.738700px;}
.y83{bottom:943.426200px;}
.y283{bottom:944.926200px;}
.y1c7{bottom:945.488700px;}
.y2aa{bottom:952.051200px;}
.y143{bottom:952.988700px;}
.y257{bottom:954.863700px;}
.y1a1{bottom:955.238700px;}
.y3b{bottom:955.801200px;}
.y82{bottom:962.926200px;}
.y1c6{bottom:963.488700px;}
.y142{bottom:966.488700px;}
.y1{bottom:966.726000px;}
.y256{bottom:968.363700px;}
.y2a9{bottom:968.551200px;}
.y1a0{bottom:968.738700px;}
.y24{bottom:970.440000px;}
.y282{bottom:971.926200px;}
.y1c5{bottom:976.988700px;}
.y141{bottom:979.988700px;}
.y255{bottom:981.863700px;}
.y19f{bottom:982.238700px;}
.y81{bottom:982.426200px;}
.y2a8{bottom:985.051200px;}
.y1c4{bottom:990.488700px;}
.y140{bottom:993.488700px;}
.y3a{bottom:994.801200px;}
.y254{bottom:995.363700px;}
.y19e{bottom:995.738700px;}
.y2a7{bottom:1001.551200px;}
.y80{bottom:1001.926200px;}
.y1c3{bottom:1003.988700px;}
.y13f{bottom:1006.988700px;}
.y253{bottom:1008.863700px;}
.y19d{bottom:1009.238700px;}
.y1c2{bottom:1017.488700px;}
.y2a6{bottom:1018.051200px;}
.y39{bottom:1018.801200px;}
.y13e{bottom:1020.488700px;}
.y7f{bottom:1021.426200px;}
.y252{bottom:1022.363700px;}
.y19c{bottom:1022.738700px;}
.y1c1{bottom:1030.988700px;}
.y13d{bottom:1033.988700px;}
.y2a5{bottom:1034.551200px;}
.y23{bottom:1035.546001px;}
.y251{bottom:1035.863700px;}
.y19b{bottom:1036.238700px;}
.y7e{bottom:1040.926200px;}
.y13c{bottom:1047.488700px;}
.y36{bottom:1047.511200px;}
.y1c0{bottom:1048.988700px;}
.y250{bottom:1049.363700px;}
.y2a4{bottom:1051.051200px;}
.y199{bottom:1054.238700px;}
.y7d{bottom:1060.426200px;}
.y13b{bottom:1060.988700px;}
.y2a3{bottom:1067.551200px;}
.y198{bottom:1067.738700px;}
.y13a{bottom:1079.738700px;}
.y7c{bottom:1079.926200px;}
.y19a{bottom:1081.238700px;}
.y66{bottom:1083.782250px;}
.y2a2{bottom:1084.051200px;}
.y38{bottom:1097.407950px;}
.y7b{bottom:1099.426200px;}
.y16b{bottom:1099.988700px;}
.y2a1{bottom:1100.551200px;}
.y37{bottom:1110.907950px;}
.yab{bottom:1141.238100px;}
.y7a{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h21{height:22.308000px;}
.h1a{height:30.030000px;}
.h17{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1e{height:33.750000px;}
.h1c{height:34.320000px;}
.h1b{height:34.608000px;}
.h1d{height:36.000000px;}
.hb{height:36.726562px;}
.h16{height:38.610000px;}
.h18{height:40.500000px;}
.h1f{height:40.755000px;}
.hf{height:41.317383px;}
.h12{height:45.000000px;}
.h20{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h15{height:47.250000px;}
.h19{height:47.586000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x27{left:123.000000px;}
.xb{left:126.112350px;}
.x6{left:145.650000px;}
.xe{left:161.659350px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x15{left:210.951000px;}
.x21{left:220.124100px;}
.x2b{left:227.318850px;}
.x9{left:228.743990px;}
.x33{left:231.818850px;}
.x2f{left:235.568850px;}
.x24{left:239.976300px;}
.x38{left:245.280600px;}
.x3c{left:250.906650px;}
.x36{left:252.594000px;}
.x13{left:258.382800px;}
.x37{left:261.546450px;}
.x3b{left:267.172500px;}
.x34{left:274.540650px;}
.x35{left:278.452500px;}
.x39{left:280.165650px;}
.x3a{left:284.077500px;}
.x8{left:293.590494px;}
.x22{left:298.933500px;}
.x16{left:302.607300px;}
.x23{left:316.985850px;}
.x20{left:319.755000px;}
.x17{left:321.903000px;}
.x28{left:373.555650px;}
.x30{left:375.805650px;}
.x2d{left:388.492500px;}
.x25{left:391.867500px;}
.x18{left:399.328500px;}
.x12{left:413.265450px;}
.x10{left:428.265450px;}
.x3{left:454.959000px;}
.xf{left:468.835050px;}
.x19{left:498.573000px;}
.x1a{left:512.306850px;}
.x2c{left:565.175550px;}
.xd{left:570.946500px;}
.x1b{left:582.358500px;}
.x1c{left:600.411000px;}
.x1d{left:612.008700px;}
.x11{left:621.139500px;}
.xc{left:650.025750px;}
.x2e{left:682.688850px;}
.x26{left:686.063850px;}
.x31{left:693.707700px;}
.x29{left:695.957700px;}
.x1e{left:697.796700px;}
.x32{left:701.656350px;}
.x2a{left:703.906350px;}
.x1f{left:718.460700px;}
.x14{left:732.354450px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-2.218667pt;}
.ls9{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.469333pt;}
.ls1c{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.560000pt;}
.lse{letter-spacing:0.586667pt;}
.ls1e{letter-spacing:0.624000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.lsc{letter-spacing:1.333333pt;}
.ls1d{letter-spacing:1.776000pt;}
.ls6{letter-spacing:5.910400pt;}
.ls1a{letter-spacing:8.139733pt;}
.ls7{letter-spacing:59.184533pt;}
.ls18{letter-spacing:224.759467pt;}
.ls19{letter-spacing:243.531733pt;}
.ls17{letter-spacing:247.548800pt;}
.ls10{letter-spacing:296.155200pt;}
.ls13{letter-spacing:296.155733pt;}
.ls14{letter-spacing:297.365867pt;}
.ls16{letter-spacing:297.366400pt;}
.ls11{letter-spacing:339.461333pt;}
.ls12{letter-spacing:339.461867pt;}
.ls15{letter-spacing:340.672000pt;}
.ws1{word-spacing:-12.432000pt;}
.wsa1{word-spacing:-12.106667pt;}
.ws1b4{word-spacing:-11.952000pt;}
.wsb8{word-spacing:-11.893333pt;}
.ws168{word-spacing:-11.850667pt;}
.ws167{word-spacing:-11.312000pt;}
.ws5{word-spacing:-11.306667pt;}
.ws5e{word-spacing:-11.146667pt;}
.ws1b5{word-spacing:-10.800000pt;}
.wsff{word-spacing:-10.773333pt;}
.wsb2{word-spacing:-10.304000pt;}
.ws17f{word-spacing:-10.224000pt;}
.ws169{word-spacing:-10.176000pt;}
.wsa8{word-spacing:-9.930667pt;}
.ws17d{word-spacing:-9.840000pt;}
.ws3{word-spacing:-9.696000pt;}
.ws180{word-spacing:-8.784000pt;}
.ws16a{word-spacing:-8.736000pt;}
.ws9{word-spacing:-8.720000pt;}
.ws6{word-spacing:-8.618667pt;}
.ws17e{word-spacing:-8.400000pt;}
.ws7b{word-spacing:-8.362667pt;}
.ws2{word-spacing:-8.320000pt;}
.ws7d{word-spacing:-7.893333pt;}
.ws7{word-spacing:-7.840000pt;}
.wse0{word-spacing:-7.765333pt;}
.ws8{word-spacing:-7.317333pt;}
.wse1{word-spacing:-5.435733pt;}
.ws117{word-spacing:-5.047467pt;}
.wsfe{word-spacing:-3.029333pt;}
.ws4{word-spacing:-2.370133pt;}
.ws140{word-spacing:-2.066400pt;}
.wsaa{word-spacing:-1.333333pt;}
.wsd6{word-spacing:-0.586667pt;}
.ws5f{word-spacing:-0.400000pt;}
.ws18f{word-spacing:-0.048000pt;}
.ws96{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws18a{word-spacing:0.336000pt;}
.wsf7{word-spacing:0.533333pt;}
.ws1ca{word-spacing:0.672000pt;}
.ws189{word-spacing:1.248000pt;}
.ws188{word-spacing:1.440000pt;}
.ws18e{word-spacing:1.680000pt;}
.ws1cb{word-spacing:2.064000pt;}
.ws1ad{word-spacing:2.112000pt;}
.ws193{word-spacing:2.160000pt;}
.ws1cc{word-spacing:2.400000pt;}
.ws192{word-spacing:2.544000pt;}
.ws179{word-spacing:2.592000pt;}
.ws178{word-spacing:2.976000pt;}
.ws176{word-spacing:3.360000pt;}
.ws1b2{word-spacing:3.840000pt;}
.ws1c{word-spacing:3.888000pt;}
.ws1a3{word-spacing:3.936000pt;}
.ws3f{word-spacing:4.480000pt;}
.ws1a2{word-spacing:4.560000pt;}
.ws1c1{word-spacing:4.752000pt;}
.ws63{word-spacing:4.800000pt;}
.ws3b{word-spacing:4.906667pt;}
.ws62{word-spacing:5.066667pt;}
.ws1c3{word-spacing:5.088000pt;}
.wsa0{word-spacing:5.162667pt;}
.ws6e{word-spacing:5.386667pt;}
.ws13b{word-spacing:5.440000pt;}
.ws38{word-spacing:5.504000pt;}
.ws171{word-spacing:5.568000pt;}
.ws2a{word-spacing:5.706667pt;}
.ws1ac{word-spacing:5.712000pt;}
.wsd2{word-spacing:5.760000pt;}
.ws18d{word-spacing:5.808000pt;}
.ws32{word-spacing:5.845333pt;}
.ws1a7{word-spacing:5.856000pt;}
.ws31{word-spacing:5.861333pt;}
.wsb{word-spacing:5.880000pt;}
.ws2b{word-spacing:5.920000pt;}
.wsde{word-spacing:5.930667pt;}
.ws184{word-spacing:5.952000pt;}
.ws61{word-spacing:5.973333pt;}
.ws162{word-spacing:6.080000pt;}
.ws3d{word-spacing:6.133333pt;}
.wsd7{word-spacing:6.186667pt;}
.ws8b{word-spacing:6.240000pt;}
.wsc{word-spacing:6.280000pt;}
.ws37{word-spacing:6.314667pt;}
.ws170{word-spacing:6.336000pt;}
.ws172{word-spacing:6.432000pt;}
.ws47{word-spacing:6.453333pt;}
.ws198{word-spacing:6.480000pt;}
.ws1f{word-spacing:6.506667pt;}
.ws68{word-spacing:6.560000pt;}
.ws83{word-spacing:6.613333pt;}
.ws99{word-spacing:6.666667pt;}
.ws1ab{word-spacing:6.672000pt;}
.ws33{word-spacing:6.698667pt;}
.ws1be{word-spacing:6.720000pt;}
.ws1a4{word-spacing:6.768000pt;}
.ws74{word-spacing:6.773333pt;}
.ws13{word-spacing:6.816000pt;}
.ws22{word-spacing:6.826667pt;}
.ws78{word-spacing:6.880000pt;}
.ws159{word-spacing:6.912000pt;}
.ws165{word-spacing:6.933333pt;}
.ws17c{word-spacing:7.008000pt;}
.ws40{word-spacing:7.093333pt;}
.ws16d{word-spacing:7.104000pt;}
.ws10d{word-spacing:7.200000pt;}
.ws1bc{word-spacing:7.248000pt;}
.ws36{word-spacing:7.253333pt;}
.ws19a{word-spacing:7.296000pt;}
.ws9d{word-spacing:7.306667pt;}
.ws16f{word-spacing:7.344000pt;}
.ws41{word-spacing:7.360000pt;}
.ws1af{word-spacing:7.392000pt;}
.wsdd{word-spacing:7.413333pt;}
.ws10e{word-spacing:7.466667pt;}
.ws16e{word-spacing:7.488000pt;}
.ws4d{word-spacing:7.520000pt;}
.wsf{word-spacing:7.536000pt;}
.ws35{word-spacing:7.541333pt;}
.ws57{word-spacing:7.573333pt;}
.ws181{word-spacing:7.584000pt;}
.wsb0{word-spacing:7.626667pt;}
.ws10f{word-spacing:7.680000pt;}
.ws186{word-spacing:7.728000pt;}
.wsaf{word-spacing:7.733333pt;}
.ws24{word-spacing:7.786667pt;}
.ws8d{word-spacing:7.802667pt;}
.ws114{word-spacing:7.840000pt;}
.ws1a{word-spacing:7.872000pt;}
.ws25{word-spacing:7.893333pt;}
.ws1b1{word-spacing:7.920000pt;}
.wsdb{word-spacing:7.946667pt;}
.ws8e{word-spacing:7.954667pt;}
.ws50{word-spacing:8.000000pt;}
.ws58{word-spacing:8.053333pt;}
.wsd9{word-spacing:8.106667pt;}
.ws4e{word-spacing:8.160000pt;}
.ws53{word-spacing:8.213333pt;}
.wsb6{word-spacing:8.232000pt;}
.ws1a1{word-spacing:8.256000pt;}
.ws48{word-spacing:8.320000pt;}
.ws98{word-spacing:8.373333pt;}
.wsfb{word-spacing:8.426667pt;}
.ws111{word-spacing:8.480000pt;}
.ws199{word-spacing:8.496000pt;}
.wsa{word-spacing:8.533333pt;}
.ws1c9{word-spacing:8.544000pt;}
.ws10b{word-spacing:8.586667pt;}
.ws1ae{word-spacing:8.592000pt;}
.ws39{word-spacing:8.640000pt;}
.ws11{word-spacing:8.688000pt;}
.ws19d{word-spacing:8.736000pt;}
.ws1d{word-spacing:8.746667pt;}
.ws3a{word-spacing:8.800000pt;}
.ws1c8{word-spacing:8.880000pt;}
.ws51{word-spacing:8.906667pt;}
.wsf8{word-spacing:8.960000pt;}
.ws185{word-spacing:8.976000pt;}
.ws60{word-spacing:9.013333pt;}
.ws2e{word-spacing:9.066667pt;}
.ws1c0{word-spacing:9.072000pt;}
.ws67{word-spacing:9.120000pt;}
.ws55{word-spacing:9.173333pt;}
.ws1aa{word-spacing:9.216000pt;}
.ws30{word-spacing:9.226667pt;}
.ws13d{word-spacing:9.280000pt;}
.ws2f{word-spacing:9.333333pt;}
.ws1a9{word-spacing:9.360000pt;}
.ws13f{word-spacing:9.386667pt;}
.ws45{word-spacing:9.504000pt;}
.wse{word-spacing:9.520000pt;}
.wsb7{word-spacing:9.546667pt;}
.ws81{word-spacing:9.600000pt;}
.ws1b0{word-spacing:9.648000pt;}
.wsa9{word-spacing:9.653333pt;}
.wsdc{word-spacing:9.706667pt;}
.ws1c2{word-spacing:9.744000pt;}
.ws1c6{word-spacing:9.792000pt;}
.ws6a{word-spacing:9.813333pt;}
.ws28{word-spacing:9.973333pt;}
.ws12{word-spacing:9.984000pt;}
.ws5a{word-spacing:10.026667pt;}
.ws1bd{word-spacing:10.032000pt;}
.ws34{word-spacing:10.042667pt;}
.ws8a{word-spacing:10.080000pt;}
.wsfa{word-spacing:10.133333pt;}
.ws19c{word-spacing:10.176000pt;}
.ws42{word-spacing:10.186667pt;}
.ws174{word-spacing:10.224000pt;}
.ws6c{word-spacing:10.240000pt;}
.ws177{word-spacing:10.272000pt;}
.ws84{word-spacing:10.293333pt;}
.ws1b9{word-spacing:10.320000pt;}
.ws79{word-spacing:10.346667pt;}
.ws1c7{word-spacing:10.368000pt;}
.ws46{word-spacing:10.400000pt;}
.ws1c4{word-spacing:10.416000pt;}
.ws115{word-spacing:10.453333pt;}
.ws19b{word-spacing:10.464000pt;}
.ws112{word-spacing:10.560000pt;}
.ws1bf{word-spacing:10.608000pt;}
.wsf9{word-spacing:10.613333pt;}
.ws1a0{word-spacing:10.656000pt;}
.wsac{word-spacing:10.666667pt;}
.ws56{word-spacing:10.720000pt;}
.ws88{word-spacing:10.826667pt;}
.ws85{word-spacing:10.880000pt;}
.ws1a8{word-spacing:10.896000pt;}
.ws166{word-spacing:10.933333pt;}
.wsfc{word-spacing:10.986667pt;}
.ws5b{word-spacing:11.040000pt;}
.ws196{word-spacing:11.088000pt;}
.ws21{word-spacing:11.093333pt;}
.ws161{word-spacing:11.146667pt;}
.ws191{word-spacing:11.184000pt;}
.ws10a{word-spacing:11.200000pt;}
.ws175{word-spacing:11.232000pt;}
.ws49{word-spacing:11.253333pt;}
.ws13e{word-spacing:11.306667pt;}
.ws19e{word-spacing:11.328000pt;}
.ws4b{word-spacing:11.360000pt;}
.ws164{word-spacing:11.413333pt;}
.ws190{word-spacing:11.424000pt;}
.ws15c{word-spacing:11.466667pt;}
.ws43{word-spacing:11.520000pt;}
.ws187{word-spacing:11.568000pt;}
.ws13c{word-spacing:11.573333pt;}
.ws2c{word-spacing:11.626667pt;}
.ws18b{word-spacing:11.664000pt;}
.ws9c{word-spacing:11.680000pt;}
.ws15e{word-spacing:11.733333pt;}
.ws26{word-spacing:11.786667pt;}
.wsab{word-spacing:11.840000pt;}
.ws1c5{word-spacing:11.856000pt;}
.ws54{word-spacing:11.893333pt;}
.wsd4{word-spacing:11.946667pt;}
.ws8c{word-spacing:12.000000pt;}
.ws75{word-spacing:12.106667pt;}
.ws66{word-spacing:12.213333pt;}
.ws3c{word-spacing:12.266667pt;}
.ws71{word-spacing:12.320000pt;}
.wsd{word-spacing:12.394667pt;}
.ws97{word-spacing:12.426667pt;}
.ws82{word-spacing:12.480000pt;}
.ws110{word-spacing:12.533333pt;}
.ws9b{word-spacing:12.640000pt;}
.ws17{word-spacing:12.672000pt;}
.ws5d{word-spacing:12.746667pt;}
.ws77{word-spacing:12.800000pt;}
.ws10{word-spacing:12.816000pt;}
.ws4c{word-spacing:12.853333pt;}
.ws6f{word-spacing:12.906667pt;}
.ws1b{word-spacing:12.912000pt;}
.wsd3{word-spacing:12.960000pt;}
.ws23{word-spacing:13.013333pt;}
.ws19f{word-spacing:13.200000pt;}
.wsda{word-spacing:13.280000pt;}
.ws1b6{word-spacing:13.296000pt;}
.ws197{word-spacing:13.344000pt;}
.ws173{word-spacing:13.440000pt;}
.ws80{word-spacing:13.493333pt;}
.wsad{word-spacing:13.600000pt;}
.ws15b{word-spacing:13.653333pt;}
.ws17b{word-spacing:13.680000pt;}
.wsd8{word-spacing:13.706667pt;}
.ws29{word-spacing:13.760000pt;}
.ws44{word-spacing:13.813333pt;}
.ws89{word-spacing:13.866667pt;}
.ws156{word-spacing:13.920000pt;}
.wsae{word-spacing:13.973333pt;}
.ws52{word-spacing:14.133333pt;}
.ws17a{word-spacing:14.160000pt;}
.wsb1{word-spacing:14.186667pt;}
.ws194{word-spacing:14.256000pt;}
.ws1bb{word-spacing:14.448000pt;}
.ws1b8{word-spacing:14.544000pt;}
.ws5c{word-spacing:14.560000pt;}
.ws10c{word-spacing:14.613333pt;}
.ws20{word-spacing:14.666667pt;}
.ws76{word-spacing:14.720000pt;}
.ws64{word-spacing:14.880000pt;}
.ws27{word-spacing:14.986667pt;}
.ws73{word-spacing:15.024000pt;}
.ws163{word-spacing:15.040000pt;}
.ws195{word-spacing:15.072000pt;}
.ws16c{word-spacing:15.120000pt;}
.ws6b{word-spacing:15.253333pt;}
.ws160{word-spacing:15.413333pt;}
.ws183{word-spacing:15.504000pt;}
.ws65{word-spacing:15.600000pt;}
.ws1e{word-spacing:15.626667pt;}
.ws72{word-spacing:15.888000pt;}
.ws15d{word-spacing:16.000000pt;}
.ws15f{word-spacing:16.106667pt;}
.ws113{word-spacing:16.160000pt;}
.ws15a{word-spacing:16.213333pt;}
.ws1a6{word-spacing:16.368000pt;}
.ws2d{word-spacing:16.373333pt;}
.ws59{word-spacing:16.640000pt;}
.ws1ba{word-spacing:16.848000pt;}
.ws1b7{word-spacing:16.944000pt;}
.ws16b{word-spacing:16.960000pt;}
.ws87{word-spacing:17.173333pt;}
.ws86{word-spacing:17.386667pt;}
.ws3e{word-spacing:17.440000pt;}
.ws14{word-spacing:17.472000pt;}
.ws1b3{word-spacing:17.520000pt;}
.wsfd{word-spacing:17.546667pt;}
.ws157{word-spacing:17.866667pt;}
.ws16{word-spacing:17.904000pt;}
.ws182{word-spacing:18.048000pt;}
.ws9e{word-spacing:18.240000pt;}
.wsd5{word-spacing:18.453333pt;}
.ws9a{word-spacing:18.613333pt;}
.ws1a5{word-spacing:19.056000pt;}
.ws70{word-spacing:19.573333pt;}
.ws4f{word-spacing:20.213333pt;}
.ws18c{word-spacing:21.024000pt;}
.ws69{word-spacing:22.293333pt;}
.ws9f{word-spacing:23.040000pt;}
.ws4a{word-spacing:24.053333pt;}
.ws15{word-spacing:24.096000pt;}
.ws158{word-spacing:28.213333pt;}
.ws8f{word-spacing:34.304000pt;}
.ws19{word-spacing:38.256000pt;}
.ws6d{word-spacing:50.826667pt;}
.ws18{word-spacing:58.080000pt;}
.wscf{word-spacing:76.135467pt;}
.wse4{word-spacing:79.263467pt;}
.wscc{word-spacing:85.328533pt;}
.wse5{word-spacing:89.673600pt;}
.wsd0{word-spacing:92.135467pt;}
.wse2{word-spacing:96.025067pt;}
.wsd1{word-spacing:108.135467pt;}
.wse3{word-spacing:127.826667pt;}
.wse6{word-spacing:129.274667pt;}
.wscd{word-spacing:132.749867pt;}
.wsdf{word-spacing:136.294933pt;}
.wsce{word-spacing:142.545600pt;}
.ws100{word-spacing:176.287467pt;}
.wsee{word-spacing:179.425600pt;}
.wsec{word-spacing:179.426133pt;}
.ws104{word-spacing:182.092800pt;}
.wse7{word-spacing:185.076267pt;}
.ws12d{word-spacing:186.164267pt;}
.wse9{word-spacing:192.480000pt;}
.wsf0{word-spacing:195.425600pt;}
.wsed{word-spacing:195.426133pt;}
.wsef{word-spacing:196.577600pt;}
.ws105{word-spacing:199.244800pt;}
.wsf4{word-spacing:199.991467pt;}
.ws116{word-spacing:200.480000pt;}
.ws107{word-spacing:204.882133pt;}
.wsf5{word-spacing:212.578133pt;}
.wsf3{word-spacing:217.143467pt;}
.wsc0{word-spacing:217.728533pt;}
.ws106{word-spacing:219.810133pt;}
.ws103{word-spacing:222.034133pt;}
.ws153{word-spacing:228.299733pt;}
.ws119{word-spacing:228.300267pt;}
.ws14a{word-spacing:238.582400pt;}
.ws148{word-spacing:238.966400pt;}
.ws134{word-spacing:238.966933pt;}
.ws12c{word-spacing:239.220800pt;}
.ws12b{word-spacing:239.221333pt;}
.wsc3{word-spacing:243.157333pt;}
.ws129{word-spacing:245.450133pt;}
.ws151{word-spacing:245.450667pt;}
.ws143{word-spacing:247.840000pt;}
.wsc5{word-spacing:249.258133pt;}
.ws13a{word-spacing:249.887467pt;}
.ws152{word-spacing:253.345067pt;}
.ws11d{word-spacing:254.324800pt;}
.ws122{word-spacing:254.325333pt;}
.ws12e{word-spacing:256.116800pt;}
.ws144{word-spacing:256.117333pt;}
.wsbe{word-spacing:259.157333pt;}
.ws127{word-spacing:260.299733pt;}
.ws11a{word-spacing:260.300267pt;}
.ws139{word-spacing:261.728000pt;}
.ws125{word-spacing:262.602133pt;}
.ws11c{word-spacing:262.602667pt;}
.wsf6{word-spacing:263.220800pt;}
.ws130{word-spacing:264.991467pt;}
.wsbf{word-spacing:265.258133pt;}
.wsc9{word-spacing:265.728000pt;}
.ws109{word-spacing:265.887467pt;}
.wse8{word-spacing:270.154133pt;}
.ws12f{word-spacing:273.268800pt;}
.ws108{word-spacing:273.616000pt;}
.ws12a{word-spacing:275.060800pt;}
.wsbb{word-spacing:276.671467pt;}
.ws124{word-spacing:277.450133pt;}
.ws14f{word-spacing:277.450667pt;}
.wsf1{word-spacing:278.324800pt;}
.ws121{word-spacing:279.754133pt;}
.ws120{word-spacing:279.754667pt;}
.ws154{word-spacing:284.299733pt;}
.ws11b{word-spacing:284.300267pt;}
.ws138{word-spacing:286.966400pt;}
.ws136{word-spacing:286.966933pt;}
.ws147{word-spacing:287.007467pt;}
.ws132{word-spacing:290.420800pt;}
.ws146{word-spacing:291.446400pt;}
.ws14c{word-spacing:292.724267pt;}
.ws14e{word-spacing:292.724800pt;}
.ws11f{word-spacing:294.602667pt;}
.ws92{word-spacing:296.869867pt;}
.wsca{word-spacing:297.258133pt;}
.ws95{word-spacing:298.666133pt;}
.wsbd{word-spacing:300.469333pt;}
.ws128{word-spacing:301.450133pt;}
.wsea{word-spacing:303.754133pt;}
.ws91{word-spacing:304.596800pt;}
.ws101{word-spacing:306.420800pt;}
.ws150{word-spacing:306.634133pt;}
.ws94{word-spacing:308.389867pt;}
.ws14d{word-spacing:309.345067pt;}
.ws149{word-spacing:309.578133pt;}
.ws126{word-spacing:311.754133pt;}
.ws142{word-spacing:312.991467pt;}
.wsa5{word-spacing:320.165867pt;}
.ws131{word-spacing:321.269333pt;}
.wsb9{word-spacing:322.485333pt;}
.ws90{word-spacing:328.059200pt;}
.wsa6{word-spacing:333.307200pt;}
.ws141{word-spacing:335.390933pt;}
.ws133{word-spacing:338.421333pt;}
.ws93{word-spacing:347.941867pt;}
.ws145{word-spacing:349.300800pt;}
.ws14b{word-spacing:353.515200pt;}
.wsa3{word-spacing:359.120533pt;}
.wsb5{word-spacing:363.003200pt;}
.wsa4{word-spacing:364.074133pt;}
.ws155{word-spacing:373.515200pt;}
.wsb3{word-spacing:399.589867pt;}
.wsa7{word-spacing:403.920533pt;}
.wsb4{word-spacing:404.006400pt;}
.ws123{word-spacing:433.199467pt;}
.ws118{word-spacing:433.200000pt;}
.wsf2{word-spacing:454.052800pt;}
.wseb{word-spacing:454.053333pt;}
.ws102{word-spacing:455.264000pt;}
.wsa2{word-spacing:455.717867pt;}
.ws11e{word-spacing:464.048000pt;}
.ws137{word-spacing:469.200000pt;}
.ws135{word-spacing:500.047467pt;}
.ws7c{word-spacing:547.457600pt;}
.ws7e{word-spacing:567.723733pt;}
.ws7f{word-spacing:567.724267pt;}
.ws7a{word-spacing:580.091200pt;}
.wsc4{word-spacing:595.754133pt;}
.wsc7{word-spacing:603.754133pt;}
.wsc8{word-spacing:700.127467pt;}
.wsbc{word-spacing:716.980800pt;}
.wsba{word-spacing:958.719467pt;}
.wsc2{word-spacing:976.148800pt;}
.wsc1{word-spacing:1063.476267pt;}
.wsc6{word-spacing:1373.705600pt;}
.wscb{word-spacing:2106.697067pt;}
._15{margin-left:-15.605359pt;}
._33{margin-left:-10.368000pt;}
._10{margin-left:-8.337587pt;}
._d{margin-left:-6.784039pt;}
._f{margin-left:-5.498693pt;}
._e{margin-left:-4.586667pt;}
._1{margin-left:-3.680000pt;}
._a{margin-left:-2.745080pt;}
._0{margin-left:-1.706654pt;}
._4{width:1.642667pt;}
._14{width:3.288533pt;}
._2{width:5.546667pt;}
._3{width:6.933320pt;}
._6{width:7.877320pt;}
._b{width:9.045333pt;}
._8{width:10.426641pt;}
._13{width:11.818654pt;}
._9{width:12.992000pt;}
._b1{width:13.973320pt;}
._7{width:15.125307pt;}
._b3{width:16.652228pt;}
._b2{width:17.802615pt;}
._12{width:22.842654pt;}
._22{width:25.941333pt;}
._1b{width:27.605333pt;}
._3d{width:34.897054pt;}
._3b{width:48.528520pt;}
._5{width:54.485854pt;}
._5f{width:83.930693pt;}
._56{width:85.516787pt;}
._68{width:96.206387pt;}
._5b{width:99.930693pt;}
._5c{width:101.065041pt;}
._6a{width:103.625067pt;}
._6b{width:111.624533pt;}
._6d{width:114.036267pt;}
._11{width:117.065041pt;}
._c{width:118.826133pt;}
._6e{width:122.037333pt;}
._5d{width:123.930693pt;}
._62{width:125.284774pt;}
._66{width:128.658133pt;}
._58{width:134.908800pt;}
._83{width:143.071987pt;}
._79{width:148.404787pt;}
._71{width:149.593600pt;}
._61{width:153.285867pt;}
._65{width:160.658133pt;}
._72{width:162.564267pt;}
._3a{width:165.585054pt;}
._57{width:166.908800pt;}
._67{width:168.658133pt;}
._3f{width:171.470361pt;}
._59{width:174.908800pt;}
._86{width:181.343987pt;}
._3e{width:182.694400pt;}
._80{width:186.676787pt;}
._6f{width:188.975467pt;}
._85{width:189.962667pt;}
._5e{width:192.667200pt;}
._70{width:194.009600pt;}
._7e{width:195.295467pt;}
._b0{width:196.271467pt;}
._60{width:197.701867pt;}
._98{width:200.095467pt;}
._81{width:210.953587pt;}
._ad{width:218.863467pt;}
._8e{width:220.208533pt;}
._8a{width:221.856000pt;}
._84{width:229.472000pt;}
._73{width:233.049600pt;}
._7d{width:234.805333pt;}
._63{width:236.741867pt;}
._69{width:238.277333pt;}
._a8{width:239.514667pt;}
._ae{width:240.751467pt;}
._77{width:245.856000pt;}
._a5{width:249.631467pt;}
._96{width:250.800000pt;}
._af{width:254.874133pt;}
._7f{width:256.775467pt;}
._7b{width:260.189333pt;}
._a6{width:261.530133pt;}
._a7{width:262.900267pt;}
._92{width:264.394667pt;}
._3c{width:269.520520pt;}
._64{width:273.029867pt;}
._7c{width:275.935467pt;}
._93{width:280.154667pt;}
._9b{width:281.631467pt;}
._a9{width:283.417600pt;}
._6c{width:284.889600pt;}
._8c{width:285.812800pt;}
._a2{width:286.799467pt;}
._5a{width:288.581867pt;}
._45{width:294.542387pt;}
._89{width:297.039467pt;}
._9e{width:298.523200pt;}
._ac{width:301.086933pt;}
._94{width:303.583467pt;}
._a0{width:306.250667pt;}
._8d{width:309.813333pt;}
._7a{width:312.404800pt;}
._aa{width:314.996800pt;}
._ab{width:317.124267pt;}
._75{width:318.517333pt;}
._90{width:320.116800pt;}
._50{width:321.620800pt;}
._97{width:323.278933pt;}
._78{width:328.281067pt;}
._9d{width:329.632000pt;}
._a4{width:332.234667pt;}
._82{width:338.074146pt;}
._76{width:342.516800pt;}
._91{width:343.898133pt;}
._9a{width:346.784000pt;}
._95{width:352.176000pt;}
._9f{width:356.687467pt;}
._a3{width:357.663467pt;}
._43{width:375.633067pt;}
._44{width:383.632533pt;}
._a1{width:388.175467pt;}
._39{width:396.688000pt;}
._41{width:420.624533pt;}
._38{width:434.469854pt;}
._8f{width:441.135467pt;}
._87{width:467.296000pt;}
._8b{width:472.410133pt;}
._99{width:477.136000pt;}
._74{width:499.706667pt;}
._9c{width:508.410667pt;}
._46{width:515.534387pt;}
._49{width:553.806387pt;}
._42{width:559.353067pt;}
._48{width:562.425067pt;}
._26{width:565.694933pt;}
._4d{width:573.987733pt;}
._4e{width:586.958400pt;}
._36{width:594.580267pt;}
._47{width:601.934400pt;}
._34{width:610.878933pt;}
._4b{width:613.369067pt;}
._55{width:615.530133pt;}
._4c{width:618.403733pt;}
._1c{width:638.057600pt;}
._1f{width:651.625054pt;}
._37{width:653.747213pt;}
._4f{width:657.443733pt;}
._1d{width:670.142933pt;}
._20{width:672.830933pt;}
._40{width:687.566387pt;}
._1e{width:690.409067pt;}
._35{width:701.118933pt;}
._4a{width:709.283733pt;}
._51{width:728.756800pt;}
._23{width:730.808000pt;}
._29{width:745.236267pt;}
._2f{width:749.246933pt;}
._2e{width:751.657587pt;}
._25{width:759.102933pt;}
._2a{width:760.105600pt;}
._30{width:764.692267pt;}
._32{width:783.977600pt;}
._2c{width:787.177587pt;}
._27{width:798.526920pt;}
._2d{width:807.209600pt;}
._28{width:816.830933pt;}
._21{width:832.958933pt;}
._2b{width:836.628267pt;}
._31{width:837.822933pt;}
._88{width:844.522667pt;}
._24{width:848.489600pt;}
._17{width:894.782920pt;}
._18{width:918.889600pt;}
._16{width:932.841600pt;}
._19{width:939.156267pt;}
._54{width:958.612800pt;}
._1a{width:987.241067pt;}
._52{width:1029.556800pt;}
._53{width:1054.986133pt;}
.fsd{font-size:27.733333pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y35{bottom:60.086668pt;}
.y69{bottom:63.613867pt;}
.y2df{bottom:68.934400pt;}
.y20f{bottom:68.986667pt;}
.y2a0{bottom:70.601067pt;}
.y68{bottom:74.280533pt;}
.y171{bottom:74.659467pt;}
.y34{bottom:74.753335pt;}
.yaa{bottom:75.800000pt;}
.y129{bottom:75.867200pt;}
.y139{bottom:78.117200pt;}
.y1bf{bottom:80.033867pt;}
.yfb{bottom:80.466667pt;}
.y20e{bottom:81.466667pt;}
.y197{bottom:82.712667pt;}
.y2de{bottom:83.601067pt;}
.y238{bottom:84.601067pt;}
.y67{bottom:84.947200pt;}
.y281{bottom:85.267733pt;}
.y4{bottom:86.333337pt;}
.y128{bottom:90.767733pt;}
.y170{bottom:91.992800pt;}
.yfa{bottom:92.466667pt;}
.ya9{bottom:93.133333pt;}
.y20d{bottom:93.466667pt;}
.y138{bottom:95.450533pt;}
.y63{bottom:95.947200pt;}
.y1be{bottom:97.367200pt;}
.y2dd{bottom:98.267733pt;}
.y29f{bottom:99.934400pt;}
.y196{bottom:100.046000pt;}
.y237{bottom:101.934400pt;}
.y280{bottom:102.601067pt;}
.y127{bottom:102.767733pt;}
.yf9{bottom:104.466667pt;}
.y20c{bottom:105.466667pt;}
.y65{bottom:105.613867pt;}
.y16f{bottom:109.326133pt;}
.ya8{bottom:110.466667pt;}
.y137{bottom:112.783867pt;}
.y2dc{bottom:112.934400pt;}
.y29e{bottom:114.601067pt;}
.y1bd{bottom:114.700533pt;}
.y126{bottom:114.767733pt;}
.yf8{bottom:116.466667pt;}
.y195{bottom:117.379333pt;}
.y20b{bottom:117.466667pt;}
.y64{bottom:117.613867pt;}
.y236{bottom:119.267733pt;}
.y27f{bottom:119.934400pt;}
.y21{bottom:123.790666pt;}
.y16e{bottom:126.659467pt;}
.y125{bottom:126.767733pt;}
.y2db{bottom:127.601067pt;}
.ya7{bottom:127.800000pt;}
.yf7{bottom:128.466667pt;}
.y29d{bottom:129.267733pt;}
.y20a{bottom:129.466667pt;}
.y136{bottom:130.117200pt;}
.y1bc{bottom:132.033867pt;}
.y194{bottom:134.712667pt;}
.y27e{bottom:137.267733pt;}
.y124{bottom:138.767733pt;}
.yf6{bottom:140.466667pt;}
.y209{bottom:141.466667pt;}
.y2da{bottom:142.267733pt;}
.y29c{bottom:143.934400pt;}
.y235{bottom:145.934400pt;}
.y135{bottom:147.450533pt;}
.y1bb{bottom:149.367200pt;}
.y123{bottom:150.767733pt;}
.y62{bottom:151.934400pt;}
.y193{bottom:152.046000pt;}
.yf5{bottom:152.466667pt;}
.y16d{bottom:153.326133pt;}
.y208{bottom:153.466667pt;}
.ya6{bottom:154.466667pt;}
.y27d{bottom:154.601067pt;}
.y2d9{bottom:156.934400pt;}
.y29b{bottom:158.601067pt;}
.y122{bottom:162.767733pt;}
.yf4{bottom:164.466667pt;}
.y134{bottom:164.783867pt;}
.y207{bottom:165.466667pt;}
.y1ba{bottom:166.700533pt;}
.y61{bottom:169.267733pt;}
.y192{bottom:169.379333pt;}
.y2d8{bottom:171.601067pt;}
.y27c{bottom:171.934400pt;}
.y234{bottom:172.601067pt;}
.y29a{bottom:173.267733pt;}
.y121{bottom:174.767733pt;}
.y18{bottom:175.052000pt;}
.yf3{bottom:176.466667pt;}
.y206{bottom:177.466667pt;}
.y16c{bottom:179.992800pt;}
.y133{bottom:182.117200pt;}
.y1b9{bottom:184.033867pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2d7{bottom:186.267733pt;}
.y60{bottom:186.601067pt;}
.y191{bottom:186.712667pt;}
.y120{bottom:186.767733pt;}
.yf2{bottom:188.466667pt;}
.y27b{bottom:189.267733pt;}
.y205{bottom:189.466667pt;}
.ya5{bottom:197.200533pt;}
.y299{bottom:197.267733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y11f{bottom:198.767733pt;}
.ycc{bottom:199.247867pt;}
.y132{bottom:199.450533pt;}
.yf1{bottom:200.466667pt;}
.y2d6{bottom:200.934400pt;}
.y1b8{bottom:201.367200pt;}
.y204{bottom:201.466667pt;}
.y5f{bottom:203.934400pt;}
.y190{bottom:204.046000pt;}
.y27a{bottom:206.601067pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y11e{bottom:210.767733pt;}
.yf0{bottom:212.466667pt;}
.y203{bottom:213.466667pt;}
.ya4{bottom:214.533867pt;}
.y2d5{bottom:215.601067pt;}
.ycb{bottom:216.581200pt;}
.y131{bottom:216.783867pt;}
.y180{bottom:216.992800pt;}
.y233{bottom:217.934400pt;}
.y1b7{bottom:218.700533pt;}
.y5e{bottom:221.267733pt;}
.y18f{bottom:221.379333pt;}
.y11d{bottom:222.767733pt;}
.yef{bottom:224.466667pt;}
.y202{bottom:225.466667pt;}
.y17f{bottom:228.992800pt;}
.y2d4{bottom:230.267733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.ya3{bottom:231.867200pt;}
.y279{bottom:233.267733pt;}
.yca{bottom:233.914533pt;}
.y130{bottom:234.117200pt;}
.y11c{bottom:234.767733pt;}
.y232{bottom:235.267733pt;}
.yee{bottom:236.466667pt;}
.y201{bottom:237.466667pt;}
.y5d{bottom:238.601067pt;}
.y18e{bottom:238.712667pt;}
.y17e{bottom:240.992800pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y298{bottom:242.601067pt;}
.y2d3{bottom:244.934400pt;}
.y11b{bottom:246.767733pt;}
.yed{bottom:248.466667pt;}
.ya2{bottom:249.200533pt;}
.y200{bottom:249.466667pt;}
.yc9{bottom:251.247867pt;}
.y12f{bottom:251.450533pt;}
.y231{bottom:252.601067pt;}
.y17d{bottom:252.992800pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y33{bottom:254.601334pt;}
.y5c{bottom:255.934400pt;}
.y297{bottom:257.267733pt;}
.y11a{bottom:258.767733pt;}
.y2d2{bottom:259.601067pt;}
.yec{bottom:260.466667pt;}
.y1ff{bottom:261.466667pt;}
.y1ec{bottom:262.121067pt;}
.y17c{bottom:264.992800pt;}
.y18d{bottom:265.379333pt;}
.ya1{bottom:266.533867pt;}
.yc8{bottom:268.581200pt;}
.y12e{bottom:268.783867pt;}
.y230{bottom:269.934400pt;}
.y119{bottom:270.767733pt;}
.yeb{bottom:272.466667pt;}
.y5b{bottom:273.267733pt;}
.y1fe{bottom:273.466667pt;}
.y2d1{bottom:274.267733pt;}
.y1eb{bottom:274.601067pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y17b{bottom:276.992800pt;}
.y278{bottom:278.601067pt;}
.y296{bottom:281.267733pt;}
.y118{bottom:282.767733pt;}
.ya0{bottom:283.867200pt;}
.yea{bottom:284.466667pt;}
.y1fd{bottom:285.466667pt;}
.yc7{bottom:285.914533pt;}
.y12d{bottom:286.117200pt;}
.y1ea{bottom:286.601067pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y22f{bottom:287.267733pt;}
.y2d0{bottom:288.934400pt;}
.y17a{bottom:288.992800pt;}
.y5a{bottom:290.601067pt;}
.y117{bottom:294.767733pt;}
.y277{bottom:295.934400pt;}
.ye9{bottom:296.466667pt;}
.y1fc{bottom:297.466667pt;}
.y1e9{bottom:298.601067pt;}
.y179{bottom:300.992800pt;}
.y9f{bottom:301.200533pt;}
.yc6{bottom:303.247867pt;}
.y12c{bottom:303.450533pt;}
.y2cf{bottom:303.601067pt;}
.y22e{bottom:304.601067pt;}
.y116{bottom:306.767733pt;}
.y59{bottom:307.934400pt;}
.ye8{bottom:308.466667pt;}
.yf{bottom:309.452000pt;}
.y22d{bottom:309.466667pt;}
.y1e8{bottom:310.601067pt;}
.y32{bottom:311.801334pt;}
.y178{bottom:312.992800pt;}
.y18c{bottom:313.029867pt;}
.y276{bottom:313.267733pt;}
.y1fa{bottom:313.800000pt;}
.y2ce{bottom:318.267733pt;}
.y9e{bottom:318.533867pt;}
.y115{bottom:318.767733pt;}
.ye7{bottom:320.466667pt;}
.yc5{bottom:320.581200pt;}
.y12b{bottom:320.783867pt;}
.y22c{bottom:321.466667pt;}
.y1e7{bottom:322.601067pt;}
.y177{bottom:324.992800pt;}
.y58{bottom:325.267733pt;}
.y1fb{bottom:325.800000pt;}
.y295{bottom:326.601067pt;}
.y18b{bottom:330.363200pt;}
.y275{bottom:330.601067pt;}
.y114{bottom:330.767733pt;}
.ye6{bottom:332.466667pt;}
.y2cd{bottom:332.934400pt;}
.y1e6{bottom:334.601067pt;}
.y9d{bottom:335.867200pt;}
.y176{bottom:336.992800pt;}
.y22a{bottom:337.800000pt;}
.yc4{bottom:337.914533pt;}
.y12a{bottom:338.117200pt;}
.y24f{bottom:342.121067pt;}
.y1f9{bottom:342.466667pt;}
.y57{bottom:342.601067pt;}
.y113{bottom:342.767733pt;}
.ye{bottom:343.809333pt;}
.ye5{bottom:344.466667pt;}
.y1e5{bottom:346.601067pt;}
.y2cc{bottom:347.601067pt;}
.y18a{bottom:347.696533pt;}
.y274{bottom:347.934400pt;}
.y175{bottom:348.992800pt;}
.y22b{bottom:349.800000pt;}
.y294{bottom:350.601067pt;}
.y9c{bottom:353.200533pt;}
.y24e{bottom:354.601067pt;}
.y112{bottom:354.767733pt;}
.ye4{bottom:356.466667pt;}
.y1e4{bottom:358.601067pt;}
.y56{bottom:359.934400pt;}
.yc3{bottom:361.362267pt;}
.y2cb{bottom:362.267733pt;}
.yd{bottom:362.706666pt;}
.y174{bottom:364.992800pt;}
.y189{bottom:365.029867pt;}
.y273{bottom:365.267733pt;}
.y229{bottom:366.466667pt;}
.y24d{bottom:366.601067pt;}
.y111{bottom:366.767733pt;}
.ye3{bottom:368.466667pt;}
.y31{bottom:369.001334pt;}
.y9b{bottom:370.533867pt;}
.y1e3{bottom:370.601067pt;}
.yc2{bottom:376.028933pt;}
.y2ca{bottom:376.934400pt;}
.y55{bottom:377.267733pt;}
.y24c{bottom:378.601067pt;}
.y110{bottom:378.767733pt;}
.y16a{bottom:379.101067pt;}
.ye2{bottom:380.466667pt;}
.y173{bottom:381.659467pt;}
.y188{bottom:382.363200pt;}
.y1e2{bottom:382.601067pt;}
.y1f8{bottom:385.267733pt;}
.y9a{bottom:387.867200pt;}
.y24b{bottom:390.601067pt;}
.y10f{bottom:390.767733pt;}
.y169{bottom:391.101067pt;}
.y2c9{bottom:391.601067pt;}
.ye1{bottom:392.466667pt;}
.y54{bottom:394.601067pt;}
.y293{bottom:395.934400pt;}
.y187{bottom:399.696533pt;}
.y272{bottom:399.934400pt;}
.yc1{bottom:402.028933pt;}
.y1f7{bottom:402.601067pt;}
.y10e{bottom:402.767733pt;}
.y168{bottom:403.101067pt;}
.ye0{bottom:404.466667pt;}
.y99{bottom:405.200533pt;}
.y2c8{bottom:406.267733pt;}
.y228{bottom:406.458800pt;}
.y1e1{bottom:406.601067pt;}
.y292{bottom:410.601067pt;}
.y172{bottom:411.427733pt;}
.y53{bottom:411.934400pt;}
.y24a{bottom:414.601067pt;}
.y10d{bottom:414.767733pt;}
.y167{bottom:415.101067pt;}
.ydf{bottom:416.466667pt;}
.yc0{bottom:416.695600pt;}
.y186{bottom:417.029867pt;}
.y271{bottom:417.267733pt;}
.y1e0{bottom:418.601067pt;}
.y227{bottom:418.938800pt;}
.y1f6{bottom:419.934400pt;}
.y2c7{bottom:420.934400pt;}
.y98{bottom:422.533867pt;}
.y249{bottom:426.601067pt;}
.y10c{bottom:426.767733pt;}
.y166{bottom:427.101067pt;}
.yde{bottom:428.466667pt;}
.y30{bottom:428.806667pt;}
.y52{bottom:429.267733pt;}
.y1df{bottom:430.601067pt;}
.y226{bottom:430.938800pt;}
.y291{bottom:433.267733pt;}
.y185{bottom:434.363200pt;}
.y270{bottom:434.601067pt;}
.y2c6{bottom:435.601067pt;}
.y1f5{bottom:437.267733pt;}
.y248{bottom:438.601067pt;}
.y10b{bottom:438.767733pt;}
.y165{bottom:439.101067pt;}
.y97{bottom:439.867200pt;}
.ydd{bottom:440.466667pt;}
.ybf{bottom:442.143333pt;}
.y1de{bottom:442.601067pt;}
.y225{bottom:442.938800pt;}
.y51{bottom:446.601067pt;}
.yc{bottom:446.990669pt;}
.y290{bottom:447.934400pt;}
.y2c5{bottom:450.267733pt;}
.y247{bottom:450.601067pt;}
.y10a{bottom:450.767733pt;}
.y164{bottom:451.101067pt;}
.y184{bottom:451.696533pt;}
.y26f{bottom:451.934400pt;}
.ydc{bottom:452.466667pt;}
.y1dd{bottom:454.601067pt;}
.y224{bottom:454.938800pt;}
.y96{bottom:457.200533pt;}
.ybe{bottom:459.476667pt;}
.y246{bottom:462.601067pt;}
.y109{bottom:462.767733pt;}
.yb{bottom:462.990669pt;}
.y163{bottom:463.101067pt;}
.y50{bottom:463.934400pt;}
.ydb{bottom:464.466667pt;}
.y2c4{bottom:464.934400pt;}
.y1dc{bottom:466.601067pt;}
.y223{bottom:466.938800pt;}
.y183{bottom:469.029867pt;}
.y1f4{bottom:471.934400pt;}
.y95{bottom:474.533867pt;}
.y245{bottom:474.601067pt;}
.y108{bottom:474.767733pt;}
.y162{bottom:475.101067pt;}
.yda{bottom:476.466667pt;}
.ybd{bottom:476.810000pt;}
.y1db{bottom:478.601067pt;}
.y222{bottom:478.938800pt;}
.ya{bottom:478.990666pt;}
.y2c3{bottom:479.601067pt;}
.y4f{bottom:481.267733pt;}
.y2f{bottom:483.401334pt;}
.y182{bottom:486.363200pt;}
.y244{bottom:486.601067pt;}
.y107{bottom:486.767733pt;}
.y161{bottom:487.101067pt;}
.yd9{bottom:488.466667pt;}
.y1f3{bottom:489.267733pt;}
.y1da{bottom:490.601067pt;}
.y221{bottom:490.938800pt;}
.y94{bottom:491.867200pt;}
.ybc{bottom:494.143333pt;}
.y2c2{bottom:494.267733pt;}
.y9{bottom:494.990666pt;}
.y4e{bottom:498.601067pt;}
.y106{bottom:498.767733pt;}
.y160{bottom:499.101067pt;}
.yd8{bottom:500.466667pt;}
.y220{bottom:502.938800pt;}
.y181{bottom:503.696533pt;}
.y1d8{bottom:506.934400pt;}
.y2c1{bottom:508.934400pt;}
.y93{bottom:509.200533pt;}
.y243{bottom:510.601067pt;}
.y105{bottom:510.767733pt;}
.y15f{bottom:511.101067pt;}
.ybb{bottom:511.476667pt;}
.yd7{bottom:512.466667pt;}
.y21f{bottom:514.938800pt;}
.y4d{bottom:515.934400pt;}
.y28f{bottom:517.267733pt;}
.y1d9{bottom:518.934400pt;}
.y242{bottom:522.601067pt;}
.y104{bottom:522.767733pt;}
.y15e{bottom:523.101067pt;}
.y2c0{bottom:523.601067pt;}
.y26e{bottom:523.934400pt;}
.yd6{bottom:524.466667pt;}
.y92{bottom:526.533867pt;}
.y21e{bottom:526.938800pt;}
.yba{bottom:528.810000pt;}
.y241{bottom:534.601067pt;}
.y103{bottom:534.767733pt;}
.y15d{bottom:535.101067pt;}
.y1d7{bottom:535.601067pt;}
.yd5{bottom:536.466667pt;}
.y2bf{bottom:538.267733pt;}
.y21d{bottom:538.938800pt;}
.y26d{bottom:541.267733pt;}
.y4c{bottom:542.601067pt;}
.y2e{bottom:543.206667pt;}
.y91{bottom:543.867200pt;}
.y1b6{bottom:544.775733pt;}
.yb9{bottom:546.143333pt;}
.y240{bottom:546.601067pt;}
.y102{bottom:546.767733pt;}
.y15c{bottom:547.101067pt;}
.yd4{bottom:548.466667pt;}
.y21c{bottom:550.938800pt;}
.y2be{bottom:552.934400pt;}
.y1b5{bottom:556.775733pt;}
.y23f{bottom:558.601067pt;}
.y101{bottom:558.767733pt;}
.y15b{bottom:559.101067pt;}
.yd3{bottom:560.466667pt;}
.y90{bottom:561.200533pt;}
.y1f2{bottom:561.267733pt;}
.y21b{bottom:562.938800pt;}
.yb8{bottom:563.476667pt;}
.y2bd{bottom:567.601067pt;}
.y1b4{bottom:568.775733pt;}
.y23e{bottom:570.601067pt;}
.y100{bottom:570.767733pt;}
.y15a{bottom:571.101067pt;}
.yd2{bottom:572.466667pt;}
.y2d{bottom:573.740001pt;}
.y8{bottom:573.786667pt;}
.y21a{bottom:574.938800pt;}
.y26c{bottom:575.934400pt;}
.y1d6{bottom:578.332400pt;}
.y8f{bottom:578.533867pt;}
.y1f1{bottom:578.601067pt;}
.y1b3{bottom:580.775733pt;}
.y2bc{bottom:582.267733pt;}
.y23d{bottom:582.601067pt;}
.yff{bottom:582.767733pt;}
.y159{bottom:583.101067pt;}
.y28e{bottom:586.601067pt;}
.y219{bottom:586.938800pt;}
.y2c{bottom:587.073335pt;}
.y79{bottom:587.501067pt;}
.yd1{bottom:588.466667pt;}
.yb7{bottom:591.591067pt;}
.y7{bottom:592.685334pt;}
.y1b2{bottom:592.775733pt;}
.y26b{bottom:593.267733pt;}
.y23c{bottom:594.601067pt;}
.yfe{bottom:594.767733pt;}
.y1d4{bottom:594.999067pt;}
.y158{bottom:595.101067pt;}
.y8e{bottom:595.867200pt;}
.y1f0{bottom:595.934400pt;}
.y2bb{bottom:596.934400pt;}
.y4b{bottom:597.267733pt;}
.y218{bottom:598.938800pt;}
.y78{bottom:599.501067pt;}
.y2b{bottom:600.406667pt;}
.y1b1{bottom:604.775733pt;}
.yd0{bottom:605.133333pt;}
.yb6{bottom:606.257733pt;}
.y1d5{bottom:606.999067pt;}
.y157{bottom:607.101067pt;}
.y4a{bottom:610.601067pt;}
.yfd{bottom:610.767733pt;}
.y23a{bottom:610.934400pt;}
.y217{bottom:610.938800pt;}
.y77{bottom:611.501067pt;}
.y2ba{bottom:611.601067pt;}
.y8d{bottom:613.200533pt;}
.y1ef{bottom:613.267733pt;}
.y156{bottom:619.101067pt;}
.y1b0{bottom:620.775733pt;}
.y23b{bottom:622.934400pt;}
.y216{bottom:622.938800pt;}
.y76{bottom:623.501067pt;}
.y1d3{bottom:623.665733pt;}
.y49{bottom:623.934400pt;}
.y2b9{bottom:626.267733pt;}
.yfc{bottom:627.434400pt;}
.y26a{bottom:627.934400pt;}
.y8c{bottom:630.533867pt;}
.y1ee{bottom:630.601067pt;}
.y155{bottom:631.101067pt;}
.yb5{bottom:631.705467pt;}
.y215{bottom:634.938800pt;}
.y48{bottom:637.267733pt;}
.y1ae{bottom:637.442400pt;}
.y239{bottom:639.601067pt;}
.y2b8{bottom:640.934400pt;}
.y154{bottom:643.101067pt;}
.y75{bottom:643.734400pt;}
.y269{bottom:645.267733pt;}
.y6{bottom:645.598667pt;}
.y214{bottom:646.938800pt;}
.y8b{bottom:647.867200pt;}
.y1ed{bottom:647.934400pt;}
.yb4{bottom:649.038933pt;}
.y1af{bottom:649.442400pt;}
.y47{bottom:650.601067pt;}
.y28d{bottom:654.601067pt;}
.y153{bottom:655.101067pt;}
.y2b7{bottom:655.601067pt;}
.y74{bottom:655.734400pt;}
.y213{bottom:658.938800pt;}
.y268{bottom:662.601067pt;}
.y1d2{bottom:663.434400pt;}
.y46{bottom:663.934400pt;}
.ycf{bottom:665.267733pt;}
.y1ad{bottom:666.109067pt;}
.yb3{bottom:666.372267pt;}
.y152{bottom:667.101067pt;}
.y73{bottom:667.734400pt;}
.y3{bottom:668.977329pt;}
.y28c{bottom:669.267733pt;}
.y2b6{bottom:670.267733pt;}
.y2a{bottom:672.726665pt;}
.y8a{bottom:674.533867pt;}
.y211{bottom:675.272133pt;}
.y45{bottom:677.267733pt;}
.y151{bottom:679.101067pt;}
.y1d1{bottom:679.434400pt;}
.y72{bottom:679.734400pt;}
.y267{bottom:679.934400pt;}
.y264{bottom:680.287733pt;}
.yce{bottom:682.601067pt;}
.yb2{bottom:683.705600pt;}
.y28b{bottom:683.934400pt;}
.y2b5{bottom:684.934400pt;}
.y212{bottom:687.272133pt;}
.y44{bottom:690.601067pt;}
.y150{bottom:691.101067pt;}
.y1d0{bottom:691.434400pt;}
.y71{bottom:691.734400pt;}
.y263{bottom:692.767733pt;}
.y266{bottom:697.267733pt;}
.y28a{bottom:698.601067pt;}
.y29{bottom:699.393332pt;}
.y2b4{bottom:699.601067pt;}
.ycd{bottom:699.934400pt;}
.yb1{bottom:701.038933pt;}
.y14f{bottom:703.101067pt;}
.y1cf{bottom:703.434400pt;}
.y70{bottom:703.734400pt;}
.y43{bottom:703.934400pt;}
.y210{bottom:703.938800pt;}
.y262{bottom:704.767733pt;}
.y289{bottom:713.267733pt;}
.y2b3{bottom:714.267733pt;}
.y14e{bottom:715.101067pt;}
.y28{bottom:715.393332pt;}
.y1ce{bottom:715.434400pt;}
.y6f{bottom:715.734400pt;}
.y261{bottom:716.767733pt;}
.y1ac{bottom:717.101067pt;}
.y42{bottom:717.267733pt;}
.yb0{bottom:718.372267pt;}
.y265{bottom:723.934400pt;}
.y14d{bottom:727.101067pt;}
.y1cd{bottom:727.434400pt;}
.y260{bottom:728.767733pt;}
.y2b2{bottom:728.934400pt;}
.y1ab{bottom:729.101067pt;}
.y41{bottom:730.601067pt;}
.y27{bottom:731.393332pt;}
.y89{bottom:734.601067pt;}
.yaf{bottom:735.705600pt;}
.y6e{bottom:735.967733pt;}
.y288{bottom:737.267733pt;}
.y14c{bottom:739.101067pt;}
.y1cc{bottom:739.434400pt;}
.y25f{bottom:740.767733pt;}
.y1aa{bottom:741.101067pt;}
.y2b1{bottom:743.601067pt;}
.y40{bottom:743.934400pt;}
.y6d{bottom:747.967733pt;}
.y14b{bottom:751.101067pt;}
.y88{bottom:751.934400pt;}
.y25e{bottom:752.767733pt;}
.yae{bottom:753.038933pt;}
.y1a9{bottom:753.101067pt;}
.y1cb{bottom:755.434400pt;}
.y3f{bottom:757.267733pt;}
.y2b0{bottom:758.267733pt;}
.y6c{bottom:759.967733pt;}
.y14a{bottom:763.101067pt;}
.y25d{bottom:764.767733pt;}
.y1a8{bottom:765.101067pt;}
.y87{bottom:769.267733pt;}
.y3e{bottom:770.601067pt;}
.y6b{bottom:771.967733pt;}
.y1c9{bottom:772.101067pt;}
.y2af{bottom:772.934400pt;}
.y149{bottom:775.101067pt;}
.y25c{bottom:776.767733pt;}
.y1a7{bottom:777.101067pt;}
.y26{bottom:778.034669pt;}
.yad{bottom:781.153333pt;}
.y287{bottom:781.267733pt;}
.y2{bottom:781.661334pt;}
.y3d{bottom:783.934400pt;}
.y6a{bottom:783.967733pt;}
.y1ca{bottom:784.101067pt;}
.y86{bottom:786.601067pt;}
.y148{bottom:787.101067pt;}
.y2ae{bottom:787.601067pt;}
.y25b{bottom:788.767733pt;}
.y1a6{bottom:789.101067pt;}
.yac{bottom:795.820000pt;}
.y286{bottom:795.934400pt;}
.y147{bottom:799.101067pt;}
.y1c8{bottom:800.767733pt;}
.y1a5{bottom:801.101067pt;}
.y2ad{bottom:802.267733pt;}
.y85{bottom:803.934400pt;}
.y285{bottom:810.601067pt;}
.y146{bottom:811.101067pt;}
.y25a{bottom:812.767733pt;}
.y1a4{bottom:813.101067pt;}
.y2ac{bottom:816.934400pt;}
.y84{bottom:821.267733pt;}
.y145{bottom:823.101067pt;}
.y259{bottom:824.767733pt;}
.y1a3{bottom:825.101067pt;}
.y284{bottom:825.267733pt;}
.y3c{bottom:825.601067pt;}
.y2ab{bottom:831.601067pt;}
.y25{bottom:834.613333pt;}
.y144{bottom:835.101067pt;}
.y258{bottom:836.767733pt;}
.y1a2{bottom:837.101067pt;}
.y83{bottom:838.601067pt;}
.y283{bottom:839.934400pt;}
.y1c7{bottom:840.434400pt;}
.y2aa{bottom:846.267733pt;}
.y143{bottom:847.101067pt;}
.y257{bottom:848.767733pt;}
.y1a1{bottom:849.101067pt;}
.y3b{bottom:849.601067pt;}
.y82{bottom:855.934400pt;}
.y1c6{bottom:856.434400pt;}
.y142{bottom:859.101067pt;}
.y1{bottom:859.312000pt;}
.y256{bottom:860.767733pt;}
.y2a9{bottom:860.934400pt;}
.y1a0{bottom:861.101067pt;}
.y24{bottom:862.613333pt;}
.y282{bottom:863.934400pt;}
.y1c5{bottom:868.434400pt;}
.y141{bottom:871.101067pt;}
.y255{bottom:872.767733pt;}
.y19f{bottom:873.101067pt;}
.y81{bottom:873.267733pt;}
.y2a8{bottom:875.601067pt;}
.y1c4{bottom:880.434400pt;}
.y140{bottom:883.101067pt;}
.y3a{bottom:884.267733pt;}
.y254{bottom:884.767733pt;}
.y19e{bottom:885.101067pt;}
.y2a7{bottom:890.267733pt;}
.y80{bottom:890.601067pt;}
.y1c3{bottom:892.434400pt;}
.y13f{bottom:895.101067pt;}
.y253{bottom:896.767733pt;}
.y19d{bottom:897.101067pt;}
.y1c2{bottom:904.434400pt;}
.y2a6{bottom:904.934400pt;}
.y39{bottom:905.601067pt;}
.y13e{bottom:907.101067pt;}
.y7f{bottom:907.934400pt;}
.y252{bottom:908.767733pt;}
.y19c{bottom:909.101067pt;}
.y1c1{bottom:916.434400pt;}
.y13d{bottom:919.101067pt;}
.y2a5{bottom:919.601067pt;}
.y23{bottom:920.485335pt;}
.y251{bottom:920.767733pt;}
.y19b{bottom:921.101067pt;}
.y7e{bottom:925.267733pt;}
.y13c{bottom:931.101067pt;}
.y36{bottom:931.121067pt;}
.y1c0{bottom:932.434400pt;}
.y250{bottom:932.767733pt;}
.y2a4{bottom:934.267733pt;}
.y199{bottom:937.101067pt;}
.y7d{bottom:942.601067pt;}
.y13b{bottom:943.101067pt;}
.y2a3{bottom:948.934400pt;}
.y198{bottom:949.101067pt;}
.y13a{bottom:959.767733pt;}
.y7c{bottom:959.934400pt;}
.y19a{bottom:961.101067pt;}
.y66{bottom:963.362000pt;}
.y2a2{bottom:963.601067pt;}
.y38{bottom:975.473733pt;}
.y7b{bottom:977.267733pt;}
.y16b{bottom:977.767733pt;}
.y2a1{bottom:978.267733pt;}
.y37{bottom:987.473733pt;}
.yab{bottom:1014.433867pt;}
.y7a{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h21{height:19.829333pt;}
.h1a{height:26.693333pt;}
.h17{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1e{height:30.000000pt;}
.h1c{height:30.506667pt;}
.h1b{height:30.762667pt;}
.h1d{height:32.000000pt;}
.hb{height:32.645833pt;}
.h16{height:34.320000pt;}
.h18{height:36.000000pt;}
.h1f{height:36.226667pt;}
.hf{height:36.726562pt;}
.h12{height:40.000000pt;}
.h20{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h15{height:42.000000pt;}
.h19{height:42.298667pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x27{left:109.333333pt;}
.xb{left:112.099867pt;}
.x6{left:129.466667pt;}
.xe{left:143.697200pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x15{left:187.512000pt;}
.x21{left:195.665867pt;}
.x2b{left:202.061200pt;}
.x9{left:203.327991pt;}
.x33{left:206.061200pt;}
.x2f{left:209.394533pt;}
.x24{left:213.312267pt;}
.x38{left:218.027200pt;}
.x3c{left:223.028133pt;}
.x36{left:224.528000pt;}
.x13{left:229.673600pt;}
.x37{left:232.485733pt;}
.x3b{left:237.486667pt;}
.x34{left:244.036133pt;}
.x35{left:247.513333pt;}
.x39{left:249.036133pt;}
.x3a{left:252.513333pt;}
.x8{left:260.969328pt;}
.x22{left:265.718667pt;}
.x16{left:268.984267pt;}
.x23{left:281.765200pt;}
.x20{left:284.226667pt;}
.x17{left:286.136000pt;}
.x28{left:332.049467pt;}
.x30{left:334.049467pt;}
.x2d{left:345.326667pt;}
.x25{left:348.326667pt;}
.x18{left:354.958667pt;}
.x12{left:367.347067pt;}
.x10{left:380.680400pt;}
.x3{left:404.408000pt;}
.xf{left:416.742267pt;}
.x19{left:443.176000pt;}
.x1a{left:455.383867pt;}
.x2c{left:502.378267pt;}
.xd{left:507.508000pt;}
.x1b{left:517.652000pt;}
.x1c{left:533.698667pt;}
.x1d{left:544.007733pt;}
.x11{left:552.124000pt;}
.xc{left:577.800667pt;}
.x2e{left:606.834533pt;}
.x26{left:609.834533pt;}
.x31{left:616.629067pt;}
.x29{left:618.629067pt;}
.x1e{left:620.263733pt;}
.x32{left:623.694533pt;}
.x2a{left:625.694533pt;}
.x1f{left:638.631733pt;}
.x14{left:650.981733pt;}
}




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