
    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_8725a57ab77315b73ec8f19f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_03dc533d63bde88e78683292.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.718000;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_ca3c8fb1842c10000ace2ff1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056000;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_0216176451a3126a127d2bd8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.866000;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_d6d8e32def79f2ff7e4250cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.018000;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_f6201701ffa57bcbd82947c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.015000;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_94b3eeb29b4b1cdab604ddaf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056000;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_90bc2c40bd0039d8bd84e3e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.015000;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_8fd3364f56933ed19555990b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.056000;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_e35eef7b00389f3c43a87da7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4c205fd9bfc4d6566ad234cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916000;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_5559af86e61e20dffde2a12c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-6.018000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.978000px;}
.v6{vertical-align:16.983000px;}
.v3{vertical-align:17.988000px;}
.v5{vertical-align:29.982000px;}
.v4{vertical-align:33.978000px;}
.lsd{letter-spacing:-13.770000px;}
.lse{letter-spacing:-10.908000px;}
.ls11{letter-spacing:-10.260000px;}
.lsf{letter-spacing:-9.990000px;}
.ls10{letter-spacing:-9.882000px;}
.ls0{letter-spacing:-8.520000px;}
.ls13{letter-spacing:-8.370000px;}
.lsc{letter-spacing:-8.100000px;}
.ls12{letter-spacing:-7.506000px;}
.ls2{letter-spacing:-1.260000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000096px;}
.ls14{letter-spacing:0.000252px;}
.ls4{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.780000px;}
.lsb{letter-spacing:0.864000px;}
.ls5{letter-spacing:2.160000px;}
.lsa{letter-spacing:2.880000px;}
.ls8{letter-spacing:3.600000px;}
.ls3{letter-spacing:4.080000px;}
.ls7{letter-spacing:70.227000px;}
.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;}
}
.ws30{word-spacing:-29.580000px;}
.ws58{word-spacing:-26.100000px;}
.ws42{word-spacing:-20.880000px;}
.ws7d{word-spacing:-15.984000px;}
.ws2{word-spacing:-15.096000px;}
.ws3{word-spacing:-14.178000px;}
.ws6b{word-spacing:-14.040000px;}
.ws31{word-spacing:-13.668000px;}
.ws40{word-spacing:-12.510000px;}
.ws77{word-spacing:-8.265774px;}
.ws41{word-spacing:-8.185320px;}
.ws37{word-spacing:-4.590000px;}
.ws3f{word-spacing:-4.080000px;}
.ws7a{word-spacing:-3.234000px;}
.ws4a{word-spacing:-2.851200px;}
.ws12{word-spacing:-2.652000px;}
.ws3a{word-spacing:-2.601000px;}
.ws13{word-spacing:-2.397000px;}
.ws29{word-spacing:-2.295000px;}
.ws6{word-spacing:-2.040000px;}
.ws4{word-spacing:-1.836000px;}
.ws53{word-spacing:-1.728000px;}
.ws4d{word-spacing:-1.620000px;}
.ws3c{word-spacing:-1.581000px;}
.ws5f{word-spacing:-1.530000px;}
.ws5e{word-spacing:-1.377000px;}
.ws73{word-spacing:-1.296000px;}
.ws6f{word-spacing:-1.080000px;}
.ws21{word-spacing:-0.663000px;}
.wsa{word-spacing:-0.600000px;}
.ws59{word-spacing:-0.405000px;}
.ws45{word-spacing:-0.315000px;}
.ws49{word-spacing:-0.204000px;}
.ws1{word-spacing:0.000000px;}
.ws79{word-spacing:0.252000px;}
.ws36{word-spacing:0.612000px;}
.ws78{word-spacing:0.672000px;}
.ws43{word-spacing:0.720000px;}
.wsf{word-spacing:0.969000px;}
.ws34{word-spacing:1.020000px;}
.ws63{word-spacing:1.071000px;}
.ws5c{word-spacing:1.734000px;}
.ws5d{word-spacing:1.938000px;}
.ws7b{word-spacing:2.016000px;}
.ws76{word-spacing:2.295000px;}
.ws6e{word-spacing:2.448000px;}
.ws71{word-spacing:2.703000px;}
.ws72{word-spacing:3.009000px;}
.ws4f{word-spacing:4.335000px;}
.ws16{word-spacing:4.845000px;}
.ws10{word-spacing:5.763000px;}
.ws38{word-spacing:6.300000px;}
.ws39{word-spacing:6.345000px;}
.ws48{word-spacing:6.987000px;}
.ws33{word-spacing:7.038000px;}
.ws25{word-spacing:7.191000px;}
.wsc{word-spacing:7.242000px;}
.ws62{word-spacing:7.506000px;}
.ws47{word-spacing:7.752000px;}
.ws32{word-spacing:7.803000px;}
.ws46{word-spacing:8.007000px;}
.ws4e{word-spacing:8.100000px;}
.ws22{word-spacing:8.262000px;}
.ws64{word-spacing:8.370000px;}
.ws0{word-spacing:8.520000px;}
.ws9{word-spacing:8.823000px;}
.ws2f{word-spacing:8.976000px;}
.ws69{word-spacing:9.384000px;}
.ws28{word-spacing:9.588000px;}
.ws5a{word-spacing:9.639000px;}
.ws57{word-spacing:9.882000px;}
.ws52{word-spacing:9.990000px;}
.ws35{word-spacing:9.996000px;}
.ws61{word-spacing:10.260000px;}
.ws5b{word-spacing:10.710000px;}
.ws51{word-spacing:10.908000px;}
.ws70{word-spacing:10.965000px;}
.ws44{word-spacing:10.980000px;}
.ws7c{word-spacing:11.172000px;}
.ws4c{word-spacing:12.291000px;}
.ws2c{word-spacing:12.648000px;}
.ws1a{word-spacing:13.311000px;}
.ws50{word-spacing:13.770000px;}
.wsb{word-spacing:14.484000px;}
.ws24{word-spacing:14.994000px;}
.ws65{word-spacing:15.249000px;}
.ws18{word-spacing:15.402000px;}
.ws6c{word-spacing:15.657000px;}
.ws60{word-spacing:15.708000px;}
.ws3e{word-spacing:15.912000px;}
.ws2d{word-spacing:15.963000px;}
.ws5{word-spacing:16.167000px;}
.ws1b{word-spacing:16.932000px;}
.ws26{word-spacing:17.085000px;}
.ws19{word-spacing:17.136000px;}
.ws2e{word-spacing:19.125000px;}
.ws3d{word-spacing:19.788000px;}
.ws6d{word-spacing:20.400000px;}
.ws1d{word-spacing:20.706000px;}
.ws1c{word-spacing:21.369000px;}
.ws7{word-spacing:22.389000px;}
.ws8{word-spacing:24.888000px;}
.ws75{word-spacing:28.050000px;}
.ws66{word-spacing:29.580000px;}
.ws20{word-spacing:31.161000px;}
.ws6a{word-spacing:31.569000px;}
.ws15{word-spacing:32.232000px;}
.wse{word-spacing:41.667000px;}
.ws56{word-spacing:42.228000px;}
.wsd{word-spacing:42.381000px;}
.ws67{word-spacing:42.738000px;}
.ws1f{word-spacing:43.248000px;}
.ws4b{word-spacing:43.503000px;}
.ws23{word-spacing:48.042000px;}
.ws1e{word-spacing:48.093000px;}
.ws17{word-spacing:58.548000px;}
.ws14{word-spacing:61.149000px;}
.ws55{word-spacing:61.710000px;}
.ws27{word-spacing:65.331000px;}
.ws3b{word-spacing:65.943000px;}
.ws11{word-spacing:72.573000px;}
.ws2a{word-spacing:78.387000px;}
.ws74{word-spacing:78.438000px;}
.ws68{word-spacing:83.079000px;}
.ws2b{word-spacing:87.159000px;}
.ws54{word-spacing:99.552000px;}
._32{margin-left:-29.454000px;}
._2{margin-left:-17.040000px;}
._23{margin-left:-14.662800px;}
._24{margin-left:-12.877200px;}
._25{margin-left:-11.235600px;}
._21{margin-left:-9.792000px;}
._22{margin-left:-8.695200px;}
._0{margin-left:-7.668000px;}
._6{margin-left:-6.120000px;}
._7{margin-left:-4.692000px;}
._f{margin-left:-3.468000px;}
._5{margin-left:-2.268000px;}
._4{margin-left:-1.260000px;}
._3{width:1.260000px;}
._12{width:2.310000px;}
._13{width:3.392100px;}
._11{width:4.452300px;}
._17{width:6.471900px;}
._28{width:7.506000px;}
._1{width:8.520000px;}
._c{width:9.914400px;}
._8{width:11.322000px;}
._20{width:13.015200px;}
._10{width:15.733500px;}
._16{width:17.605200px;}
._14{width:18.982200px;}
._1a{width:20.048100px;}
._1b{width:21.873900px;}
._a{width:24.051600px;}
._2f{width:25.158300px;}
._9{width:26.163000px;}
._1d{width:27.448200px;}
._2b{width:29.350500px;}
._2a{width:31.186500px;}
._15{width:33.685500px;}
._b{width:34.746300px;}
._e{width:37.305000px;}
._2e{width:39.290400px;}
._d{width:42.381000px;}
._2c{width:43.956900px;}
._19{width:49.964700px;}
._2d{width:53.080800px;}
._27{width:54.141600px;}
._30{width:62.311800px;}
._1c{width:63.882600px;}
._31{width:71.349000px;}
._26{width:79.687500px;}
._18{width:89.250000px;}
._29{width:97.823100px;}
._1f{width:223.176000px;}
._1e{width:296.208000px;}
.fc6{color:rgb(147,146,142);}
.fc5{color:transparent;}
.fc4{color:rgb(170,190,176);}
.fc3{color:rgb(183,144,124);}
.fc2{color:rgb(193,193,190);}
.fc1{color:rgb(100,99,94);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:27.000000px;}
.fs9{font-size:27.984000px;}
.fs11{font-size:29.733000px;}
.fsc{font-size:31.482000px;}
.fse{font-size:38.478000px;}
.fsd{font-size:39.000000px;}
.fs12{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs13{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fsf{font-size:72.000000px;}
.fs10{font-size:86.400000px;}
.fsb{font-size:90.000000px;}
.fs4{font-size:102.000000px;}
.fs2{font-size:126.000000px;}
.fs1{font-size:330.000000px;}
.fs0{font-size:426.000000px;}
.y0{bottom:0.000000px;}
.y210{bottom:20.139900px;}
.y3ca{bottom:28.233750px;}
.y117{bottom:29.190300px;}
.y20f{bottom:32.143650px;}
.y3c9{bottom:40.235250px;}
.y116{bottom:41.194050px;}
.y16c{bottom:46.151550px;}
.y27b{bottom:46.942950px;}
.y2b0{bottom:47.611800px;}
.y26e{bottom:50.015400px;}
.y3c8{bottom:56.489250px;}
.y231{bottom:56.946150px;}
.y115{bottom:57.450300px;}
.y155{bottom:60.468750px;}
.y151{bottom:60.552150px;}
.y20e{bottom:62.142150px;}
.yfe{bottom:62.458950px;}
.y12e{bottom:63.029550px;}
.y104{bottom:63.628950px;}
.y1a7{bottom:63.777300px;}
.y2af{bottom:63.868050px;}
.y26d{bottom:66.513900px;}
.yad{bottom:67.497600px;}
.y2ea{bottom:67.850250px;}
.y230{bottom:68.948400px;}
.y114{bottom:69.454050px;}
.y31b{bottom:71.735100px;}
.y297{bottom:72.054450px;}
.y3c7{bottom:72.743250px;}
.y292{bottom:73.673100px;}
.y3b3{bottom:73.913250px;}
.y20d{bottom:74.144400px;}
.y9e{bottom:74.164350px;}
.y1a6{bottom:75.779550px;}
.y1f3{bottom:76.145850px;}
.y37a{bottom:76.596900px;}
.y150{bottom:77.050650px;}
.yfd{bottom:77.455200px;}
.y327{bottom:78.169050px;}
.y103{bottom:78.625200px;}
.yac{bottom:79.501350px;}
.y272{bottom:81.265650px;}
.y113{bottom:81.457800px;}
.y199{bottom:83.084700px;}
.y182{bottom:83.335650px;}
.y23f{bottom:84.216900px;}
.y2e9{bottom:84.348750px;}
.y3c6{bottom:84.744750px;}
.y144{bottom:84.907050px;}
.y35d{bottom:85.037100px;}
.y305{bottom:85.353300px;}
.y17b{bottom:85.929900px;}
.y28{bottom:87.029700px;}
.y296{bottom:88.552950px;}
.y379{bottom:88.599150px;}
.y2f1{bottom:89.934450px;}
.y326{bottom:90.171300px;}
.y291{bottom:90.171600px;}
.y3b2{bottom:90.411750px;}
.y9d{bottom:90.662850px;}
.y96{bottom:91.036350px;}
.yab{bottom:91.505100px;}
.y1f2{bottom:92.644350px;}
.y1d8{bottom:93.088500px;}
.y154{bottom:93.465750px;}
.y102{bottom:93.621450px;}
.y26b{bottom:95.481900px;}
.y143{bottom:96.909300px;}
.y35c{bottom:97.039350px;}
.y304{bottom:97.355550px;}
.y271{bottom:97.764150px;}
.y243{bottom:99.703500px;}
.y23e{bottom:100.715400px;}
.y2e8{bottom:100.847250px;}
.y3c5{bottom:100.998750px;}
.yfc{bottom:101.203950px;}
.y17a{bottom:102.428400px;}
.y27a{bottom:103.243800px;}
.yaa{bottom:103.508850px;}
.y27{bottom:103.528200px;}
.y295{bottom:105.051450px;}
.y290{bottom:106.670100px;}
.y3b1{bottom:106.910250px;}
.y259{bottom:107.118150px;}
.y9c{bottom:107.161350px;}
.y101{bottom:108.617700px;}
.y142{bottom:108.911550px;}
.y153{bottom:109.964250px;}
.y20c{bottom:110.047200px;}
.y14f{bottom:110.047650px;}
.y22f{bottom:111.038250px;}
.y26a{bottom:111.980400px;}
.y1c1{bottom:112.517700px;}
.y16b{bottom:112.930800px;}
.y6c{bottom:114.045300px;}
.y270{bottom:114.262650px;}
.y279{bottom:115.246050px;}
.yfb{bottom:115.457700px;}
.y242{bottom:116.202000px;}
.y2d3{bottom:117.003600px;}
.y12d{bottom:117.152100px;}
.y23d{bottom:117.213900px;}
.y3c4{bottom:117.252750px;}
.y26{bottom:120.026700px;}
.y28f{bottom:123.168600px;}
.y100{bottom:123.613950px;}
.y9b{bottom:123.659850px;}
.y16a{bottom:124.933050px;}
.y152{bottom:126.462750px;}
.y14e{bottom:126.546150px;}
.y350{bottom:126.870450px;}
.y269{bottom:128.478900px;}
.y20b{bottom:128.798700px;}
.y2d2{bottom:129.005850px;}
.yfa{bottom:129.711450px;}
.y22e{bottom:129.789750px;}
.y6b{bottom:130.543800px;}
.y26f{bottom:130.761150px;}
.y3dc{bottom:133.118100px;}
.y3c3{bottom:133.506750px;}
.y2e7{bottom:133.844250px;}
.y1fc{bottom:133.891650px;}
.y39a{bottom:134.108250px;}
.y2f0{bottom:134.950050px;}
.y1f8{bottom:135.806100px;}
.y12c{bottom:135.903600px;}
.y25{bottom:136.525200px;}
.y31a{bottom:137.641950px;}
.y1a5{bottom:137.676450px;}
.y294{bottom:138.048450px;}
.y24a{bottom:138.301200px;}
.y179{bottom:138.578700px;}
.y181{bottom:138.606750px;}
.yff{bottom:138.610200px;}
.y34f{bottom:138.872700px;}
.y28e{bottom:139.667100px;}
.y47{bottom:139.798500px;}
.y9a{bottom:140.158350px;}
.y112{bottom:140.495850px;}
.y82{bottom:141.763800px;}
.y35b{bottom:143.078400px;}
.yf9{bottom:143.965200px;}
.y325{bottom:144.632550px;}
.y3c2{bottom:145.508250px;}
.y378{bottom:146.180700px;}
.y6a{bottom:147.042300px;}
.y1d7{bottom:147.057150px;}
.y3ae{bottom:147.545550px;}
.y20a{bottom:147.550200px;}
.y22d{bottom:148.541250px;}
.y2e6{bottom:150.342750px;}
.y1fb{bottom:150.390150px;}
.y198{bottom:150.751350px;}
.y3db{bottom:151.113600px;}
.y3b9{bottom:151.776600px;}
.y1f7{bottom:152.304600px;}
.y111{bottom:152.498100px;}
.y1e2{bottom:152.749800px;}
.y24{bottom:153.023700px;}
.y33d{bottom:153.287100px;}
.y2ef{bottom:153.701550px;}
.y293{bottom:154.546950px;}
.y2db{bottom:155.625150px;}
.y28d{bottom:156.165600px;}
.y258{bottom:156.272550px;}
.y319{bottom:156.393450px;}
.y1a4{bottom:156.427950px;}
.y241{bottom:156.956850px;}
.y180{bottom:157.358250px;}
.y23c{bottom:157.605900px;}
.y46{bottom:157.801500px;}
.yf8{bottom:158.218950px;}
.y81{bottom:158.262300px;}
.y390{bottom:158.320950px;}
.y26c{bottom:159.410400px;}
.y178{bottom:161.078700px;}
.y3c1{bottom:161.762250px;}
.y35a{bottom:161.829900px;}
.y324{bottom:163.384050px;}
.y69{bottom:163.540800px;}
.y3ad{bottom:164.044050px;}
.y2b8{bottom:164.406750px;}
.y1e1{bottom:164.752050px;}
.y377{bottom:164.932200px;}
.y33c{bottom:165.289350px;}
.y1d6{bottom:165.808650px;}
.y95{bottom:165.987750px;}
.y209{bottom:166.301700px;}
.y1fa{bottom:166.888650px;}
.y1c0{bottom:167.053350px;}
.y22c{bottom:167.292750px;}
.y303{bottom:167.416950px;}
.y2da{bottom:167.627400px;}
.y3b8{bottom:168.275100px;}
.y3da{bottom:169.109100px;}
.y197{bottom:169.502850px;}
.y23{bottom:169.522200px;}
.y89{bottom:169.699350px;}
.y38f{bottom:170.323200px;}
.y141{bottom:171.489750px;}
.y278{bottom:171.648000px;}
.y2ee{bottom:172.453050px;}
.y99{bottom:173.155350px;}
.y240{bottom:173.455350px;}
.y2ae{bottom:173.600250px;}
.y3c0{bottom:173.763750px;}
.y23b{bottom:174.104400px;}
.y371{bottom:174.234000px;}
.y45{bottom:174.300000px;}
.y80{bottom:174.760800px;}
.y257{bottom:175.024050px;}
.y318{bottom:175.144950px;}
.y1a3{bottom:175.179450px;}
.y14d{bottom:175.527750px;}
.y268{bottom:175.908900px;}
.y17f{bottom:176.109750px;}
.yf7{bottom:176.725200px;}
.y2d1{bottom:178.346250px;}
.y68{bottom:180.039300px;}
.y3ac{bottom:180.542550px;}
.y359{bottom:180.581400px;}
.y323{bottom:182.135550px;}
.y94{bottom:182.486250px;}
.y376{bottom:183.683700px;}
.y30b{bottom:183.803550px;}
.y1d5{bottom:184.560150px;}
.y3b7{bottom:184.773600px;}
.y208{bottom:185.053200px;}
.y2ad{bottom:185.602500px;}
.y1bf{bottom:185.804850px;}
.y22{bottom:186.020700px;}
.y22b{bottom:186.044250px;}
.y1f6{bottom:186.076350px;}
.y302{bottom:186.168450px;}
.y88{bottom:186.197850px;}
.y370{bottom:186.236250px;}
.y196{bottom:188.254350px;}
.y399{bottom:189.401400px;}
.y98{bottom:189.653850px;}
.y140{bottom:190.241250px;}
.y277{bottom:190.399500px;}
.y169{bottom:190.762650px;}
.y44{bottom:190.798500px;}
.yf6{bottom:190.978950px;}
.y6{bottom:191.134350px;}
.y2ed{bottom:191.204550px;}
.y7f{bottom:191.259300px;}
.y267{bottom:192.407400px;}
.y249{bottom:193.572300px;}
.y256{bottom:193.775550px;}
.y317{bottom:193.896450px;}
.y1a2{bottom:193.930950px;}
.y2e5{bottom:194.201850px;}
.y17e{bottom:194.861250px;}
.y30a{bottom:195.805800px;}
.yec{bottom:196.277700px;}
.y67{bottom:196.537800px;}
.y3ab{bottom:197.041050px;}
.y2d0{bottom:197.097750px;}
.y28c{bottom:197.421300px;}
.y2ac{bottom:197.604750px;}
.y14c{bottom:198.027750px;}
.y110{bottom:198.260400px;}
.y34e{bottom:199.052400px;}
.y358{bottom:199.332900px;}
.y322{bottom:200.887050px;}
.y375{bottom:202.435200px;}
.y1f5{bottom:202.574850px;}
.y1d4{bottom:203.311650px;}
.y207{bottom:203.804700px;}
.y1be{bottom:204.556350px;}
.y22a{bottom:204.795750px;}
.y301{bottom:204.919950px;}
.y3d9{bottom:205.113600px;}
.yf5{bottom:205.232700px;}
.y195{bottom:207.005850px;}
.y43{bottom:207.297000px;}
.y7e{bottom:207.757800px;}
.y398{bottom:208.152900px;}
.y13f{bottom:208.992750px;}
.y276{bottom:209.151000px;}
.y168{bottom:209.514150px;}
.yeb{bottom:210.531450px;}
.y248{bottom:212.323800px;}
.y255{bottom:212.527050px;}
.y316{bottom:212.647950px;}
.y1a1{bottom:212.682450px;}
.y66{bottom:213.036300px;}
.y3aa{bottom:213.539550px;}
.y2cf{bottom:215.849250px;}
.y2e4{bottom:216.701850px;}
.y10f{bottom:217.011900px;}
.y93{bottom:217.051200px;}
.y34d{bottom:217.803900px;}
.y357{bottom:218.084400px;}
.y1f9{bottom:218.331900px;}
.y21{bottom:219.017700px;}
.y1f4{bottom:219.073350px;}
.yf4{bottom:219.486450px;}
.y321{bottom:219.638550px;}
.y28b{bottom:219.921300px;}
.y374{bottom:221.186700px;}
.y2b7{bottom:221.988300px;}
.y1d3{bottom:222.063150px;}
.y33b{bottom:222.904350px;}
.y3d8{bottom:223.109100px;}
.y1bd{bottom:223.307850px;}
.y229{bottom:223.547250px;}
.y300{bottom:223.671450px;}
.y42{bottom:223.795500px;}
.y38e{bottom:224.946600px;}
.y233{bottom:225.307050px;}
.y5{bottom:225.626850px;}
.y194{bottom:225.757350px;}
.y397{bottom:226.904400px;}
.y13e{bottom:227.744250px;}
.y275{bottom:227.902500px;}
.y167{bottom:228.265650px;}
.yea{bottom:229.037700px;}
.y247{bottom:231.075300px;}
.y254{bottom:231.278550px;}
.y315{bottom:231.399450px;}
.y1a0{bottom:231.433950px;}
.y1e0{bottom:232.418700px;}
.yf3{bottom:233.740200px;}
.y2ce{bottom:234.600750px;}
.y20{bottom:235.516200px;}
.y10e{bottom:235.763400px;}
.y2d9{bottom:236.443350px;}
.y34c{bottom:236.555400px;}
.y356{bottom:236.835900px;}
.y65{bottom:238.039050px;}
.y320{bottom:238.390050px;}
.y373{bottom:239.938200px;}
.y3b6{bottom:240.197850px;}
.y41{bottom:240.294000px;}
.y2b6{bottom:240.739800px;}
.y1d2{bottom:240.814650px;}
.y3d7{bottom:241.104600px;}
.y25b{bottom:241.251900px;}
.y33a{bottom:241.655850px;}
.y1bc{bottom:242.059350px;}
.y2ff{bottom:242.422950px;}
.ye9{bottom:243.291450px;}
.y38d{bottom:243.698100px;}
.y193{bottom:244.508850px;}
.y7d{bottom:245.013300px;}
.y396{bottom:245.655900px;}
.y36f{bottom:246.349950px;}
.y13d{bottom:246.495750px;}
.y274{bottom:246.654000px;}
.y166{bottom:247.017150px;}
.y3d0{bottom:247.456200px;}
.y232{bottom:247.807050px;}
.y246{bottom:249.826800px;}
.y253{bottom:250.030050px;}
.y314{bottom:250.150950px;}
.y19f{bottom:250.185450px;}
.y1df{bottom:251.170200px;}
.y1f{bottom:252.014700px;}
.yf2{bottom:252.246450px;}
.y2cd{bottom:253.352250px;}
.y10d{bottom:254.514900px;}
.y64{bottom:254.537550px;}
.y2d8{bottom:255.194850px;}
.y34b{bottom:255.306900px;}
.y355{bottom:255.587400px;}
.y3b0{bottom:255.805800px;}
.y97{bottom:256.581000px;}
.y3b5{bottom:256.696350px;}
.y40{bottom:256.792500px;}
.y1f1{bottom:257.030100px;}
.y31f{bottom:257.141550px;}
.ye8{bottom:257.545200px;}
.y309{bottom:257.545350px;}
.y372{bottom:258.689700px;}
.y2b5{bottom:259.491300px;}
.y1d1{bottom:259.566150px;}
.y4{bottom:260.119350px;}
.y339{bottom:260.407350px;}
.y1bb{bottom:260.810850px;}
.y2fe{bottom:261.174450px;}
.y7c{bottom:261.511800px;}
.y177{bottom:262.420950px;}
.y38c{bottom:262.449600px;}
.y3cf{bottom:262.456200px;}
.y192{bottom:263.260350px;}
.y25a{bottom:263.751900px;}
.y395{bottom:264.407400px;}
.y36e{bottom:265.101450px;}
.y13c{bottom:265.247250px;}
.y165{bottom:265.768650px;}
.yf1{bottom:266.500200px;}
.y1e{bottom:268.513200px;}
.y252{bottom:268.781550px;}
.y313{bottom:268.902450px;}
.y19e{bottom:268.936950px;}
.y1de{bottom:269.921700px;}
.y63{bottom:271.036050px;}
.ye7{bottom:271.798950px;}
.y2cc{bottom:272.103750px;}
.y3af{bottom:272.304300px;}
.y3b4{bottom:273.194850px;}
.y10c{bottom:273.266400px;}
.y3f{bottom:273.291000px;}
.y1f0{bottom:273.528600px;}
.y2d7{bottom:273.946350px;}
.y34a{bottom:274.058400px;}
.y354{bottom:274.338900px;}
.y176{bottom:274.423200px;}
.y308{bottom:276.296850px;}
.y3d6{bottom:277.109100px;}
.y3ce{bottom:277.456200px;}
.y2b4{bottom:278.242800px;}
.y2ab{bottom:279.066750px;}
.y338{bottom:279.158850px;}
.y1ba{bottom:279.562350px;}
.yf0{bottom:280.753950px;}
.y38b{bottom:281.201100px;}
.y191{bottom:282.011850px;}
.y394{bottom:283.158900px;}
.y36d{bottom:283.852950px;}
.y13b{bottom:283.998750px;}
.y164{bottom:284.520150px;}
.y1d{bottom:285.011700px;}
.y14b{bottom:286.224150px;}
.y7b{bottom:286.514550px;}
.y62{bottom:287.534550px;}
.y19d{bottom:287.688450px;}
.y1dd{bottom:288.673200px;}
.y3e{bottom:289.789500px;}
.y1ef{bottom:290.027100px;}
.ye6{bottom:290.305200px;}
.y2cb{bottom:290.855250px;}
.y10b{bottom:292.017900px;}
.y90{bottom:292.223850px;}
.y3cd{bottom:292.456200px;}
.y2d6{bottom:292.697850px;}
.y349{bottom:292.809900px;}
.y353{bottom:293.090400px;}
.y92{bottom:293.132250px;}
.y3{bottom:294.611850px;}
.y307{bottom:295.048350px;}
.y3d5{bottom:295.104600px;}
.y2b3{bottom:296.994300px;}
.y2aa{bottom:297.818250px;}
.y1b9{bottom:298.313850px;}
.yef{bottom:298.753950px;}
.y38a{bottom:299.952600px;}
.y393{bottom:301.910400px;}
.y36c{bottom:302.604450px;}
.y13a{bottom:302.750250px;}
.y7a{bottom:303.013050px;}
.y163{bottom:303.271650px;}
.y61{bottom:304.033050px;}
.ye5{bottom:304.558950px;}
.y228{bottom:305.289000px;}
.y3d{bottom:306.288000px;}
.y19c{bottom:306.439950px;}
.y1ee{bottom:306.525600px;}
.y2e3{bottom:307.285200px;}
.y1dc{bottom:307.424700px;}
.y3cc{bottom:307.456200px;}
.y8f{bottom:308.722350px;}
.y2ca{bottom:309.606750px;}
.y91{bottom:309.630750px;}
.y1c{bottom:310.015650px;}
.y10a{bottom:310.769400px;}
.y2d5{bottom:311.449350px;}
.y348{bottom:311.561400px;}
.y352{bottom:311.841900px;}
.y3d4{bottom:313.100100px;}
.yee{bottom:313.750200px;}
.y306{bottom:313.799850px;}
.y2b2{bottom:315.745800px;}
.y2a9{bottom:316.569750px;}
.y28a{bottom:316.980900px;}
.y1b8{bottom:317.065350px;}
.y389{bottom:318.704100px;}
.ye4{bottom:318.812700px;}
.y2e2{bottom:319.287450px;}
.y60{bottom:320.531550px;}
.y392{bottom:320.661900px;}
.y139{bottom:321.501750px;}
.y3a9{bottom:321.583650px;}
.y3c{bottom:322.786500px;}
.y19b{bottom:325.191450px;}
.y1db{bottom:326.176200px;}
.y79{bottom:328.015800px;}
.y2c9{bottom:328.358250px;}
.y3cb{bottom:329.350350px;}
.y109{bottom:329.520900px;}
.y2d4{bottom:330.200850px;}
.y347{bottom:330.312900px;}
.y351{bottom:330.593400px;}
.y3d3{bottom:331.095600px;}
.ya7{bottom:332.436000px;}
.ye3{bottom:333.066450px;}
.y2b1{bottom:334.497300px;}
.y2a8{bottom:335.298750px;}
.y1b7{bottom:335.816850px;}
.y5f{bottom:337.030050px;}
.y388{bottom:337.455600px;}
.yed{bottom:337.746450px;}
.y14a{bottom:337.781850px;}
.y175{bottom:337.828950px;}
.y3b{bottom:339.285000px;}
.y391{bottom:339.413400px;}
.y138{bottom:340.253250px;}
.y266{bottom:341.223300px;}
.y19a{bottom:343.942950px;}
.y3a8{bottom:344.083650px;}
.y1b{bottom:344.526000px;}
.y8d{bottom:344.529000px;}
.y1da{bottom:344.927700px;}
.y1ed{bottom:346.866150px;}
.ye2{bottom:347.320200px;}
.y108{bottom:348.272400px;}
.y78{bottom:348.772800px;}
.ya6{bottom:348.934500px;}
.y346{bottom:349.064400px;}
.y3d2{bottom:349.091100px;}
.y265{bottom:353.225550px;}
.y1d0{bottom:353.973450px;}
.y2a7{bottom:354.050250px;}
.y1b6{bottom:354.568350px;}
.y3a{bottom:355.783500px;}
.y387{bottom:356.207100px;}
.y149{bottom:356.533350px;}
.y174{bottom:356.580450px;}
.y5e{bottom:357.787050px;}
.y1a{bottom:361.024500px;}
.y8c{bottom:361.027500px;}
.y1d9{bottom:363.679200px;}
.y2{bottom:365.254350px;}
.y77{bottom:365.271300px;}
.ye1{bottom:365.320200px;}
.ya5{bottom:365.433000px;}
.y3a7{bottom:366.583650px;}
.y107{bottom:367.022400px;}
.y3d1{bottom:367.086600px;}
.y345{bottom:367.815900px;}
.y227{bottom:368.321250px;}
.y1ec{bottom:369.366150px;}
.y39{bottom:372.282000px;}
.y2a6{bottom:372.801750px;}
.y1b5{bottom:373.319850px;}
.y5d{bottom:374.285550px;}
.y386{bottom:374.958600px;}
.y148{bottom:375.284850px;}
.y173{bottom:375.331950px;}
.y312{bottom:375.704700px;}
.y2e1{bottom:375.801600px;}
.y19{bottom:377.523000px;}
.y289{bottom:378.652050px;}
.ya4{bottom:381.931500px;}
.y2fd{bottom:384.974400px;}
.y106{bottom:385.773900px;}
.y344{bottom:386.567400px;}
.y226{bottom:387.072750px;}
.y311{bottom:387.706950px;}
.y38{bottom:388.780500px;}
.y5c{bottom:390.784050px;}
.y2a5{bottom:391.553250px;}
.y1b4{bottom:392.071350px;}
.y385{bottom:393.710100px;}
.y18{bottom:394.021500px;}
.y147{bottom:394.036350px;}
.y172{bottom:394.083450px;}
.y2e0{bottom:394.553100px;}
.y8e{bottom:395.669250px;}
.y288{bottom:397.403550px;}
.y264{bottom:398.423400px;}
.ya3{bottom:398.430000px;}
.ye0{bottom:399.958950px;}
.y76{bottom:402.526800px;}
.y251{bottom:402.805650px;}
.y37{bottom:405.279000px;}
.y343{bottom:405.318900px;}
.yd7{bottom:405.370200px;}
.y225{bottom:405.824250px;}
.y1cf{bottom:409.349850px;}
.y2a4{bottom:410.304750px;}
.y17{bottom:410.520000px;}
.y1b3{bottom:410.822850px;}
.y162{bottom:412.301250px;}
.y384{bottom:412.461600px;}
.y146{bottom:412.787850px;}
.y171{bottom:412.834950px;}
.y2df{bottom:413.304600px;}
.ydf{bottom:414.212700px;}
.y250{bottom:414.807900px;}
.ya2{bottom:414.928500px;}
.y287{bottom:416.155050px;}
.y263{bottom:417.174900px;}
.yd6{bottom:419.623950px;}
.y36{bottom:421.777500px;}
.y161{bottom:424.303500px;}
.y224{bottom:424.575750px;}
.y2c8{bottom:425.135400px;}
.y75{bottom:427.529550px;}
.y5b{bottom:428.039550px;}
.y105{bottom:428.083350px;}
.y1ce{bottom:428.101350px;}
.y2a3{bottom:429.056250px;}
.y337{bottom:429.499800px;}
.y383{bottom:431.213100px;}
.ya1{bottom:431.427000px;}
.y145{bottom:431.539350px;}
.y170{bottom:431.586450px;}
.y2de{bottom:432.056100px;}
.yde{bottom:432.718950px;}
.yd5{bottom:433.877700px;}
.y3dd{bottom:433.889700px;}
.y190{bottom:434.625750px;}
.y286{bottom:434.906550px;}
.y2fc{bottom:435.329850px;}
.y262{bottom:435.926400px;}
.y336{bottom:441.502050px;}
.y223{bottom:443.327250px;}
.y74{bottom:444.028050px;}
.y5a{bottom:444.538050px;}
.y1eb{bottom:446.454450px;}
.y18f{bottom:446.628000px;}
.y35{bottom:446.781450px;}
.y1cd{bottom:446.852850px;}
.ydd{bottom:446.972700px;}
.y16{bottom:447.775500px;}
.y2a2{bottom:447.807750px;}
.ya0{bottom:447.925500px;}
.yd4{bottom:448.131450px;}
.y310{bottom:449.250000px;}
.y382{bottom:449.964600px;}
.y16f{bottom:450.337950px;}
.y118{bottom:450.506550px;}
.y2dd{bottom:450.807600px;}
.y36b{bottom:452.910750px;}
.y285{bottom:453.658050px;}
.y1{bottom:453.755850px;}
.y2fb{bottom:454.081350px;}
.y261{bottom:454.677900px;}
.y1ea{bottom:458.456700px;}
.y59{bottom:461.036550px;}
.y222{bottom:462.078750px;}
.y206{bottom:463.483800px;}
.y24f{bottom:464.249850px;}
.y15{bottom:464.274000px;}
.y36a{bottom:464.913000px;}
.ydc{bottom:465.478950px;}
.y1cc{bottom:465.604350px;}
.y2a1{bottom:466.559250px;}
.yd3{bottom:466.637700px;}
.y30f{bottom:468.001500px;}
.y73{bottom:469.030800px;}
.y16e{bottom:469.089450px;}
.y2dc{bottom:469.559100px;}
.y284{bottom:472.409550px;}
.y2fa{bottom:472.832850px;}
.y8b{bottom:473.428650px;}
.y260{bottom:473.429400px;}
.y58{bottom:477.535050px;}
.y2c7{bottom:478.254150px;}
.ydb{bottom:479.732700px;}
.y14{bottom:480.772500px;}
.y221{bottom:480.830250px;}
.yd2{bottom:480.891450px;}
.y34{bottom:481.323450px;}
.y24e{bottom:483.001350px;}
.y1cb{bottom:484.355850px;}
.y2a0{bottom:485.310750px;}
.y72{bottom:485.529300px;}
.y30e{bottom:486.753000px;}
.y160{bottom:487.582500px;}
.y16d{bottom:487.840950px;}
.y205{bottom:488.976300px;}
.y8a{bottom:489.927150px;}
.y283{bottom:491.161050px;}
.y2f9{bottom:491.584350px;}
.y25f{bottom:492.180900px;}
.yd1{bottom:495.145200px;}
.y2c6{bottom:497.005650px;}
.y13{bottom:497.271000px;}
.y33{bottom:497.821950px;}
.yda{bottom:498.238950px;}
.y335{bottom:498.336150px;}
.y24d{bottom:501.752850px;}
.y57{bottom:502.537800px;}
.y23a{bottom:503.171550px;}
.y122{bottom:503.766750px;}
.y29f{bottom:504.062250px;}
.y30d{bottom:505.504500px;}
.y15f{bottom:506.334000px;}
.y3a6{bottom:507.972150px;}
.yd0{bottom:509.398950px;}
.y282{bottom:509.912550px;}
.y2f8{bottom:510.335850px;}
.y71{bottom:510.532050px;}
.y1e9{bottom:510.593100px;}
.y25e{bottom:510.932400px;}
.y18e{bottom:511.572150px;}
.yd9{bottom:512.492700px;}
.y32{bottom:514.320450px;}
.y204{bottom:514.399650px;}
.y9f{bottom:514.852650px;}
.y239{bottom:515.173800px;}
.y137{bottom:515.174100px;}
.y2c5{bottom:515.757150px;}
.y334{bottom:517.087650px;}
.y369{bottom:518.561100px;}
.y56{bottom:519.036300px;}
.y1b2{bottom:519.186750px;}
.y3a5{bottom:519.974400px;}
.y121{bottom:520.265250px;}
.y24c{bottom:520.504350px;}
.y12{bottom:522.273750px;}
.y29e{bottom:522.813750px;}
.ycf{bottom:523.652700px;}
.y30c{bottom:524.256000px;}
.y15e{bottom:525.085500px;}
.y87{bottom:526.587150px;}
.y281{bottom:528.664050px;}
.y1e8{bottom:529.344600px;}
.y25d{bottom:529.683900px;}
.y18d{bottom:530.323650px;}
.y203{bottom:530.337000px;}
.y31{bottom:530.818950px;}
.y1b1{bottom:531.189000px;}
.yb6{bottom:531.668250px;}
.yd8{bottom:533.496450px;}
.y2c4{bottom:534.508650px;}
.y55{bottom:535.534800px;}
.y333{bottom:535.839150px;}
.y368{bottom:537.312600px;}
.yce{bottom:537.906450px;}
.y11{bottom:538.772250px;}
.y24b{bottom:539.255850px;}
.y29d{bottom:541.565250px;}
.y86{bottom:543.085650px;}
.y15d{bottom:543.837000px;}
.y120{bottom:545.268000px;}
.y30{bottom:547.317450px;}
.y3bb{bottom:547.677150px;}
.y1e7{bottom:548.096100px;}
.yb5{bottom:548.166750px;}
.y18c{bottom:549.075150px;}
.y381{bottom:550.642950px;}
.y54{bottom:552.033300px;}
.y2c3{bottom:553.260150px;}
.y332{bottom:554.590650px;}
.y367{bottom:556.064100px;}
.ycd{bottom:556.412700px;}
.y2ec{bottom:556.818900px;}
.y342{bottom:559.669500px;}
.y29c{bottom:560.316750px;}
.y11f{bottom:561.766500px;}
.y15c{bottom:562.588500px;}
.y10{bottom:563.775000px;}
.y12b{bottom:563.815350px;}
.y2f{bottom:563.815950px;}
.y3ba{bottom:564.177150px;}
.yb4{bottom:564.665250px;}
.y238{bottom:565.252500px;}
.yc4{bottom:565.615200px;}
.y1e6{bottom:566.847600px;}
.y18b{bottom:567.826650px;}
.y3a4{bottom:570.334950px;}
.ycc{bottom:570.666450px;}
.y2c2{bottom:572.011650px;}
.y331{bottom:573.342150px;}
.y366{bottom:574.815600px;}
.y12a{bottom:575.817600px;}
.y53{bottom:577.036050px;}
.y11e{bottom:578.265000px;}
.y29b{bottom:579.068250px;}
.y85{bottom:579.189000px;}
.y2eb{bottom:579.242100px;}
.yc3{bottom:579.868950px;}
.yf{bottom:580.273500px;}
.y2e{bottom:580.314450px;}
.yb3{bottom:581.163750px;}
.y15b{bottom:581.340000px;}
.y237{bottom:584.004000px;}
.ycb{bottom:584.920200px;}
.y1e5{bottom:585.599100px;}
.y1b0{bottom:585.702150px;}
.y1ca{bottom:586.015800px;}
.y18a{bottom:586.578150px;}
.y219{bottom:586.777950px;}
.y129{bottom:587.819850px;}
.y136{bottom:587.944650px;}
.y3a3{bottom:589.086450px;}
.y2c1{bottom:590.763150px;}
.y330{bottom:592.093650px;}
.y52{bottom:593.534550px;}
.y365{bottom:593.567100px;}
.y2d{bottom:596.812950px;}
.yb2{bottom:597.662250px;}
.y29a{bottom:597.819750px;}
.yc2{bottom:598.375200px;}
.y202{bottom:598.656300px;}
.yca{bottom:599.173950px;}
.y25c{bottom:599.235300px;}
.y15a{bottom:600.091500px;}
.ye{bottom:601.030500px;}
.y236{bottom:602.755500px;}
.y11d{bottom:603.267750px;}
.y218{bottom:603.276450px;}
.y1e4{bottom:604.350600px;}
.y1af{bottom:604.453650px;}
.y220{bottom:604.843800px;}
.y189{bottom:605.329650px;}
.y135{bottom:606.696150px;}
.y3a2{bottom:607.837950px;}
.y2c0{bottom:609.514650px;}
.y51{bottom:610.033050px;}
.y32f{bottom:610.845150px;}
.y380{bottom:611.325150px;}
.y364{bottom:612.318600px;}
.yc1{bottom:612.628950px;}
.yc9{bottom:613.427700px;}
.yb1{bottom:614.160750px;}
.y70{bottom:614.291550px;}
.y299{bottom:616.571250px;}
.y201{bottom:617.407800px;}
.yd{bottom:617.529000px;}
.y159{bottom:618.843000px;}
.y11c{bottom:619.766250px;}
.y217{bottom:619.774950px;}
.y341{bottom:621.190350px;}
.y235{bottom:621.507000px;}
.y1e3{bottom:623.102100px;}
.y1ae{bottom:623.205150px;}
.y188{bottom:624.081150px;}
.y134{bottom:625.447650px;}
.y50{bottom:626.531550px;}
.y3a1{bottom:626.589450px;}
.yc0{bottom:626.882700px;}
.yc8{bottom:627.681450px;}
.y3be{bottom:627.985800px;}
.y2bf{bottom:628.266150px;}
.y32e{bottom:629.596650px;}
.y2c{bottom:629.809950px;}
.y37f{bottom:630.076650px;}
.yb0{bottom:630.659250px;}
.y6f{bottom:630.790050px;}
.y363{bottom:631.070100px;}
.yc{bottom:634.027500px;}
.y200{bottom:636.159300px;}
.y11b{bottom:636.264750px;}
.y216{bottom:636.273450px;}
.y84{bottom:637.653600px;}
.y340{bottom:639.941850px;}
.y234{bottom:640.258500px;}
.ybf{bottom:641.136450px;}
.y1c9{bottom:641.853600px;}
.yc7{bottom:641.935200px;}
.y1ad{bottom:641.956650px;}
.y187{bottom:642.832650px;}
.y4f{bottom:643.030050px;}
.y280{bottom:644.072550px;}
.y133{bottom:644.199150px;}
.y3bd{bottom:644.485800px;}
.y3a0{bottom:645.340950px;}
.y128{bottom:646.014150px;}
.y2b{bottom:646.308450px;}
.y2be{bottom:647.017650px;}
.yaf{bottom:647.159250px;}
.y32d{bottom:648.348150px;}
.y37e{bottom:648.828150px;}
.y362{bottom:649.821600px;}
.y2f6{bottom:650.608800px;}
.y11a{bottom:652.763250px;}
.y1ff{bottom:654.910800px;}
.ybe{bottom:655.390200px;}
.y33f{bottom:658.693350px;}
.yb{bottom:659.031450px;}
.y4e{bottom:659.528550px;}
.yc6{bottom:659.935200px;}
.y1c8{bottom:660.605100px;}
.y1ac{bottom:660.708150px;}
.y3bc{bottom:660.984300px;}
.y215{bottom:661.276200px;}
.y186{bottom:661.584150px;}
.y2a{bottom:662.806950px;}
.y132{bottom:662.950650px;}
.yae{bottom:663.657750px;}
.y6e{bottom:663.787050px;}
.y39f{bottom:664.092450px;}
.y127{bottom:664.765650px;}
.y2bd{bottom:665.769150px;}
.y32c{bottom:667.099650px;}
.y2f5{bottom:667.107300px;}
.y37d{bottom:667.579650px;}
.y21f{bottom:668.528850px;}
.y361{bottom:668.573100px;}
.ybd{bottom:669.643950px;}
.y1fe{bottom:673.662300px;}
.yc5{bottom:674.931450px;}
.y4d{bottom:676.027050px;}
.ya{bottom:677.031450px;}
.y33e{bottom:677.444850px;}
.y214{bottom:677.774700px;}
.y29{bottom:679.305450px;}
.y1c7{bottom:679.356600px;}
.y1ab{bottom:679.459650px;}
.y6d{bottom:680.285550px;}
.y185{bottom:680.335650px;}
.y119{bottom:681.015300px;}
.y131{bottom:681.702150px;}
.y39e{bottom:682.843950px;}
.y126{bottom:683.517150px;}
.y2f4{bottom:683.605800px;}
.ybc{bottom:683.897700px;}
.y3bf{bottom:684.389700px;}
.y2bc{bottom:684.520650px;}
.y32b{bottom:685.851150px;}
.y37c{bottom:686.331150px;}
.y21e{bottom:687.280350px;}
.y360{bottom:687.324600px;}
.y1fd{bottom:692.413800px;}
.y213{bottom:694.273200px;}
.y4c{bottom:696.784050px;}
.y1c6{bottom:698.108100px;}
.y1aa{bottom:698.211150px;}
.y184{bottom:699.087150px;}
.y2f3{bottom:700.104300px;}
.yb8{bottom:700.441650px;}
.y130{bottom:700.453650px;}
.y39d{bottom:701.595450px;}
.y125{bottom:702.268650px;}
.y2bb{bottom:703.272150px;}
.y158{bottom:703.974000px;}
.y32a{bottom:704.602650px;}
.ybb{bottom:704.901450px;}
.y37b{bottom:705.082650px;}
.y27f{bottom:705.593400px;}
.y21d{bottom:706.031850px;}
.y35f{bottom:706.076100px;}
.y4b{bottom:713.282550px;}
.y31e{bottom:714.231900px;}
.y212{bottom:715.030200px;}
.y1c5{bottom:716.859600px;}
.y1a9{bottom:716.962650px;}
.y183{bottom:717.838650px;}
.y12f{bottom:719.205150px;}
.yba{bottom:719.897700px;}
.y39c{bottom:720.346950px;}
.y298{bottom:721.224000px;}
.y2ba{bottom:722.023650px;}
.y329{bottom:723.354150px;}
.y2f2{bottom:724.104300px;}
.y27e{bottom:724.344900px;}
.y21c{bottom:724.783350px;}
.y35e{bottom:724.827600px;}
.y157{bottom:729.466500px;}
.y4a{bottom:729.781050px;}
.y123{bottom:733.678050px;}
.y1c4{bottom:735.611100px;}
.y1a8{bottom:735.714150px;}
.y39b{bottom:739.098450px;}
.y31d{bottom:739.724400px;}
.y2b9{bottom:740.775150px;}
.y328{bottom:742.105650px;}
.y27d{bottom:743.096400px;}
.y21b{bottom:743.534850px;}
.y245{bottom:743.716500px;}
.y83{bottom:745.706700px;}
.y49{bottom:746.279550px;}
.y211{bottom:746.530200px;}
.y273{bottom:746.716500px;}
.y17d{bottom:748.272600px;}
.y1c3{bottom:754.362600px;}
.y156{bottom:756.389700px;}
.yb9{bottom:758.738700px;}
.y27c{bottom:761.847900px;}
.y31c{bottom:762.147600px;}
.yb7{bottom:768.614100px;}
.y244{bottom:769.139700px;}
.y48{bottom:771.283500px;}
.y17c{bottom:772.195800px;}
.y1c2{bottom:773.114100px;}
.ya9{bottom:776.106300px;}
.y2f7{bottom:779.191350px;}
.y8{bottom:785.622000px;}
.y7{bottom:787.450500px;}
.y3de{bottom:788.584500px;}
.y21a{bottom:797.267550px;}
.y124{bottom:814.759800px;}
.y9{bottom:841.021650px;}
.ya8{bottom:841.033500px;}
.h4{height:20.736000px;}
.h10{height:29.484000px;}
.h19{height:32.256000px;}
.ha{height:34.560000px;}
.h1a{height:36.864000px;}
.h6{height:39.168000px;}
.h9{height:39.204000px;}
.h8{height:39.525000px;}
.h18{height:39.811944px;}
.h17{height:39.817944px;}
.hd{height:41.472000px;}
.h15{height:42.250176px;}
.hf{height:42.498000px;}
.he{height:42.504000px;}
.h7{height:46.500000px;}
.h16{height:49.896000px;}
.hb{height:50.688000px;}
.h12{height:52.272000px;}
.h14{height:54.160176px;}
.h11{height:63.529104px;}
.hc{height:65.340000px;}
.h13{height:66.960000px;}
.h5{height:74.052000px;}
.h3{height:96.768000px;}
.h2{height:327.168000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x17{left:44.769750px;}
.x4a{left:51.300900px;}
.x8{left:53.149650px;}
.x48{left:54.311400px;}
.x47{left:58.199400px;}
.x49{left:60.183900px;}
.xa{left:61.653900px;}
.x80{left:62.720100px;}
.xd{left:63.779550px;}
.x18{left:65.182650px;}
.x69{left:67.329600px;}
.x86{left:68.377800px;}
.x46{left:69.417900px;}
.xaa{left:71.100450px;}
.xe{left:72.283800px;}
.x6e{left:73.289100px;}
.xb{left:74.403900px;}
.x87{left:75.640800px;}
.x28{left:76.724400px;}
.xa9{left:77.769450px;}
.x5f{left:78.819300px;}
.x43{left:79.974750px;}
.x27{left:81.078900px;}
.x2{left:82.531950px;}
.x6d{left:83.589600px;}
.xf{left:85.033800px;}
.x6a{left:86.067600px;}
.x5e{left:87.418800px;}
.x4b{left:90.963900px;}
.x38{left:93.769200px;}
.x77{left:94.790400px;}
.x39{left:95.902200px;}
.x29{left:97.978350px;}
.x3a{left:100.033200px;}
.x3c{left:101.563350px;}
.x72{left:103.307250px;}
.x9d{left:104.625300px;}
.x19{left:105.935250px;}
.x76{left:107.588400px;}
.x37{left:109.253700px;}
.x1{left:112.032450px;}
.x36{left:113.033700px;}
.x15{left:114.081150px;}
.x9a{left:115.739550px;}
.x13{left:117.301200px;}
.x44{left:118.313250px;}
.x7d{left:119.658600px;}
.x88{left:120.714000px;}
.x1a{left:122.945250px;}
.x85{left:124.963800px;}
.x70{left:126.044250px;}
.x6f{left:127.355100px;}
.x89{left:129.070500px;}
.x71{left:130.209450px;}
.x1d{left:132.059100px;}
.x7c{left:133.393650px;}
.x9e{left:137.922600px;}
.x3d{left:139.646850px;}
.x4{left:141.445350px;}
.x6{left:143.303850px;}
.x40{left:145.351050px;}
.x55{left:147.592800px;}
.x3e{left:150.103050px;}
.x5{left:151.430850px;}
.x3b{left:152.440200px;}
.x92{left:153.855600px;}
.xab{left:164.520600px;}
.x3f{left:165.776550px;}
.x3{left:167.212350px;}
.x61{left:168.294150px;}
.x62{left:169.927650px;}
.x8c{left:171.800700px;}
.x60{left:173.505150px;}
.x2f{left:175.428750px;}
.x8f{left:177.426450px;}
.x7f{left:178.475100px;}
.x73{left:180.108750px;}
.x63{left:182.442150px;}
.x8d{left:188.540700px;}
.x51{left:190.678200px;}
.x4e{left:191.879700px;}
.x41{left:194.072550px;}
.x4f{left:196.307700px;}
.x50{left:198.305700px;}
.xa0{left:200.289000px;}
.x90{left:202.158450px;}
.xa1{left:208.335000px;}
.x95{left:210.841350px;}
.x9b{left:216.552300px;}
.x8e{left:218.009250px;}
.x7e{left:219.234600px;}
.x64{left:221.884950px;}
.x53{left:224.021850px;}
.x91{left:227.470800px;}
.x42{left:229.220400px;}
.x84{left:232.201050px;}
.x54{left:234.503100px;}
.x57{left:235.719300px;}
.x8a{left:237.167250px;}
.x30{left:238.325250px;}
.xa2{left:241.221000px;}
.x56{left:245.548800px;}
.x94{left:249.063000px;}
.xaf{left:251.590950px;}
.xac{left:254.156700px;}
.x96{left:263.208600px;}
.xad{left:266.969550px;}
.xa3{left:275.709750px;}
.x52{left:284.111700px;}
.xae{left:285.398550px;}
.xa5{left:293.211150px;}
.xa7{left:296.046150px;}
.xa6{left:299.893650px;}
.x31{left:300.952500px;}
.xa4{left:302.539650px;}
.x9{left:304.726500px;}
.xc{left:329.544150px;}
.x5c{left:334.696500px;}
.x5b{left:337.585500px;}
.x6c{left:338.694150px;}
.x10{left:340.157550px;}
.x6b{left:341.481300px;}
.x58{left:342.837000px;}
.x59{left:343.984500px;}
.x14{left:345.398550px;}
.x16{left:347.089050px;}
.x11{left:348.661800px;}
.x74{left:349.690500px;}
.x67{left:350.715750px;}
.x5a{left:352.192500px;}
.x9c{left:354.076050px;}
.x65{left:355.872750px;}
.x5d{left:357.761700px;}
.x34{left:359.301300px;}
.x12{left:361.411800px;}
.x66{left:362.474250px;}
.x32{left:364.120800px;}
.xa8{left:365.472750px;}
.x33{left:367.171800px;}
.x7a{left:368.254500px;}
.x35{left:369.642300px;}
.x45{left:371.670000px;}
.x68{left:373.661400px;}
.x25{left:375.065250px;}
.x82{left:376.685400px;}
.x75{left:377.817450px;}
.x79{left:379.216500px;}
.x8b{left:381.167400px;}
.x83{left:382.557900px;}
.x81{left:384.069900px;}
.x4c{left:385.331850px;}
.x9f{left:386.537100px;}
.x1b{left:387.804000px;}
.x21{left:391.438350px;}
.x1f{left:394.360950px;}
.x1e{left:397.060950px;}
.x22{left:399.457350px;}
.x93{left:400.921800px;}
.x23{left:401.941350px;}
.x1c{left:404.814000px;}
.x20{left:405.910350px;}
.x78{left:408.813600px;}
.x97{left:411.437100px;}
.x4d{left:412.813650px;}
.x2c{left:415.863450px;}
.x99{left:417.390600px;}
.x2d{left:422.512950px;}
.x98{left:423.816600px;}
.x2b{left:428.294700px;}
.x24{left:430.939350px;}
.x7b{left:432.216300px;}
.x26{left:436.607250px;}
.x2e{left:438.717450px;}
.x2a{left:440.944200px;}
.x7{left:620.474400px;}
@media print{
.v1{vertical-align:-5.349333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.202667pt;}
.v6{vertical-align:15.096000pt;}
.v3{vertical-align:15.989333pt;}
.v5{vertical-align:26.650667pt;}
.v4{vertical-align:30.202667pt;}
.lsd{letter-spacing:-12.240000pt;}
.lse{letter-spacing:-9.696000pt;}
.ls11{letter-spacing:-9.120000pt;}
.lsf{letter-spacing:-8.880000pt;}
.ls10{letter-spacing:-8.784000pt;}
.ls0{letter-spacing:-7.573333pt;}
.ls13{letter-spacing:-7.440000pt;}
.lsc{letter-spacing:-7.200000pt;}
.ls12{letter-spacing:-6.672000pt;}
.ls2{letter-spacing:-1.120000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000085pt;}
.ls14{letter-spacing:0.000224pt;}
.ls4{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.693333pt;}
.lsb{letter-spacing:0.768000pt;}
.ls5{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.560000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls3{letter-spacing:3.626667pt;}
.ls7{letter-spacing:62.424000pt;}
.ws30{word-spacing:-26.293333pt;}
.ws58{word-spacing:-23.200000pt;}
.ws42{word-spacing:-18.560000pt;}
.ws7d{word-spacing:-14.208000pt;}
.ws2{word-spacing:-13.418667pt;}
.ws3{word-spacing:-12.602667pt;}
.ws6b{word-spacing:-12.480000pt;}
.ws31{word-spacing:-12.149333pt;}
.ws40{word-spacing:-11.120000pt;}
.ws77{word-spacing:-7.347355pt;}
.ws41{word-spacing:-7.275840pt;}
.ws37{word-spacing:-4.080000pt;}
.ws3f{word-spacing:-3.626667pt;}
.ws7a{word-spacing:-2.874667pt;}
.ws4a{word-spacing:-2.534400pt;}
.ws12{word-spacing:-2.357333pt;}
.ws3a{word-spacing:-2.312000pt;}
.ws13{word-spacing:-2.130667pt;}
.ws29{word-spacing:-2.040000pt;}
.ws6{word-spacing:-1.813333pt;}
.ws4{word-spacing:-1.632000pt;}
.ws53{word-spacing:-1.536000pt;}
.ws4d{word-spacing:-1.440000pt;}
.ws3c{word-spacing:-1.405333pt;}
.ws5f{word-spacing:-1.360000pt;}
.ws5e{word-spacing:-1.224000pt;}
.ws73{word-spacing:-1.152000pt;}
.ws6f{word-spacing:-0.960000pt;}
.ws21{word-spacing:-0.589333pt;}
.wsa{word-spacing:-0.533333pt;}
.ws59{word-spacing:-0.360000pt;}
.ws45{word-spacing:-0.280000pt;}
.ws49{word-spacing:-0.181333pt;}
.ws1{word-spacing:0.000000pt;}
.ws79{word-spacing:0.224000pt;}
.ws36{word-spacing:0.544000pt;}
.ws78{word-spacing:0.597333pt;}
.ws43{word-spacing:0.640000pt;}
.wsf{word-spacing:0.861333pt;}
.ws34{word-spacing:0.906667pt;}
.ws63{word-spacing:0.952000pt;}
.ws5c{word-spacing:1.541333pt;}
.ws5d{word-spacing:1.722667pt;}
.ws7b{word-spacing:1.792000pt;}
.ws76{word-spacing:2.040000pt;}
.ws6e{word-spacing:2.176000pt;}
.ws71{word-spacing:2.402667pt;}
.ws72{word-spacing:2.674667pt;}
.ws4f{word-spacing:3.853333pt;}
.ws16{word-spacing:4.306667pt;}
.ws10{word-spacing:5.122667pt;}
.ws38{word-spacing:5.600000pt;}
.ws39{word-spacing:5.640000pt;}
.ws48{word-spacing:6.210667pt;}
.ws33{word-spacing:6.256000pt;}
.ws25{word-spacing:6.392000pt;}
.wsc{word-spacing:6.437333pt;}
.ws62{word-spacing:6.672000pt;}
.ws47{word-spacing:6.890667pt;}
.ws32{word-spacing:6.936000pt;}
.ws46{word-spacing:7.117333pt;}
.ws4e{word-spacing:7.200000pt;}
.ws22{word-spacing:7.344000pt;}
.ws64{word-spacing:7.440000pt;}
.ws0{word-spacing:7.573333pt;}
.ws9{word-spacing:7.842667pt;}
.ws2f{word-spacing:7.978667pt;}
.ws69{word-spacing:8.341333pt;}
.ws28{word-spacing:8.522667pt;}
.ws5a{word-spacing:8.568000pt;}
.ws57{word-spacing:8.784000pt;}
.ws52{word-spacing:8.880000pt;}
.ws35{word-spacing:8.885333pt;}
.ws61{word-spacing:9.120000pt;}
.ws5b{word-spacing:9.520000pt;}
.ws51{word-spacing:9.696000pt;}
.ws70{word-spacing:9.746667pt;}
.ws44{word-spacing:9.760000pt;}
.ws7c{word-spacing:9.930667pt;}
.ws4c{word-spacing:10.925333pt;}
.ws2c{word-spacing:11.242667pt;}
.ws1a{word-spacing:11.832000pt;}
.ws50{word-spacing:12.240000pt;}
.wsb{word-spacing:12.874667pt;}
.ws24{word-spacing:13.328000pt;}
.ws65{word-spacing:13.554667pt;}
.ws18{word-spacing:13.690667pt;}
.ws6c{word-spacing:13.917333pt;}
.ws60{word-spacing:13.962667pt;}
.ws3e{word-spacing:14.144000pt;}
.ws2d{word-spacing:14.189333pt;}
.ws5{word-spacing:14.370667pt;}
.ws1b{word-spacing:15.050667pt;}
.ws26{word-spacing:15.186667pt;}
.ws19{word-spacing:15.232000pt;}
.ws2e{word-spacing:17.000000pt;}
.ws3d{word-spacing:17.589333pt;}
.ws6d{word-spacing:18.133333pt;}
.ws1d{word-spacing:18.405333pt;}
.ws1c{word-spacing:18.994667pt;}
.ws7{word-spacing:19.901333pt;}
.ws8{word-spacing:22.122667pt;}
.ws75{word-spacing:24.933333pt;}
.ws66{word-spacing:26.293333pt;}
.ws20{word-spacing:27.698667pt;}
.ws6a{word-spacing:28.061333pt;}
.ws15{word-spacing:28.650667pt;}
.wse{word-spacing:37.037333pt;}
.ws56{word-spacing:37.536000pt;}
.wsd{word-spacing:37.672000pt;}
.ws67{word-spacing:37.989333pt;}
.ws1f{word-spacing:38.442667pt;}
.ws4b{word-spacing:38.669333pt;}
.ws23{word-spacing:42.704000pt;}
.ws1e{word-spacing:42.749333pt;}
.ws17{word-spacing:52.042667pt;}
.ws14{word-spacing:54.354667pt;}
.ws55{word-spacing:54.853333pt;}
.ws27{word-spacing:58.072000pt;}
.ws3b{word-spacing:58.616000pt;}
.ws11{word-spacing:64.509333pt;}
.ws2a{word-spacing:69.677333pt;}
.ws74{word-spacing:69.722667pt;}
.ws68{word-spacing:73.848000pt;}
.ws2b{word-spacing:77.474667pt;}
.ws54{word-spacing:88.490667pt;}
._32{margin-left:-26.181333pt;}
._2{margin-left:-15.146667pt;}
._23{margin-left:-13.033600pt;}
._24{margin-left:-11.446400pt;}
._25{margin-left:-9.987200pt;}
._21{margin-left:-8.704000pt;}
._22{margin-left:-7.729067pt;}
._0{margin-left:-6.816000pt;}
._6{margin-left:-5.440000pt;}
._7{margin-left:-4.170667pt;}
._f{margin-left:-3.082667pt;}
._5{margin-left:-2.016000pt;}
._4{margin-left:-1.120000pt;}
._3{width:1.120000pt;}
._12{width:2.053333pt;}
._13{width:3.015200pt;}
._11{width:3.957600pt;}
._17{width:5.752800pt;}
._28{width:6.672000pt;}
._1{width:7.573333pt;}
._c{width:8.812800pt;}
._8{width:10.064000pt;}
._20{width:11.569067pt;}
._10{width:13.985333pt;}
._16{width:15.649067pt;}
._14{width:16.873067pt;}
._1a{width:17.820533pt;}
._1b{width:19.443467pt;}
._a{width:21.379200pt;}
._2f{width:22.362933pt;}
._9{width:23.256000pt;}
._1d{width:24.398400pt;}
._2b{width:26.089333pt;}
._2a{width:27.721333pt;}
._15{width:29.942667pt;}
._b{width:30.885600pt;}
._e{width:33.160000pt;}
._2e{width:34.924800pt;}
._d{width:37.672000pt;}
._2c{width:39.072800pt;}
._19{width:44.413067pt;}
._2d{width:47.182933pt;}
._27{width:48.125867pt;}
._30{width:55.388267pt;}
._1c{width:56.784533pt;}
._31{width:63.421333pt;}
._26{width:70.833333pt;}
._18{width:79.333333pt;}
._29{width:86.953867pt;}
._1f{width:198.378667pt;}
._1e{width:263.296000pt;}
.fs3{font-size:24.000000pt;}
.fs9{font-size:24.874667pt;}
.fs11{font-size:26.429333pt;}
.fsc{font-size:27.984000pt;}
.fse{font-size:34.202667pt;}
.fsd{font-size:34.666667pt;}
.fs12{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs13{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fsf{font-size:64.000000pt;}
.fs10{font-size:76.800000pt;}
.fsb{font-size:80.000000pt;}
.fs4{font-size:90.666667pt;}
.fs2{font-size:112.000000pt;}
.fs1{font-size:293.333333pt;}
.fs0{font-size:378.666667pt;}
.y0{bottom:0.000000pt;}
.y210{bottom:17.902133pt;}
.y3ca{bottom:25.096667pt;}
.y117{bottom:25.946933pt;}
.y20f{bottom:28.572133pt;}
.y3c9{bottom:35.764667pt;}
.y116{bottom:36.616933pt;}
.y16c{bottom:41.023600pt;}
.y27b{bottom:41.727067pt;}
.y2b0{bottom:42.321600pt;}
.y26e{bottom:44.458133pt;}
.y3c8{bottom:50.212667pt;}
.y231{bottom:50.618800pt;}
.y115{bottom:51.066933pt;}
.y155{bottom:53.750000pt;}
.y151{bottom:53.824133pt;}
.y20e{bottom:55.237467pt;}
.yfe{bottom:55.519067pt;}
.y12e{bottom:56.026267pt;}
.y104{bottom:56.559067pt;}
.y1a7{bottom:56.690933pt;}
.y2af{bottom:56.771600pt;}
.y26d{bottom:59.123467pt;}
.yad{bottom:59.997867pt;}
.y2ea{bottom:60.311333pt;}
.y230{bottom:61.287467pt;}
.y114{bottom:61.736933pt;}
.y31b{bottom:63.764533pt;}
.y297{bottom:64.048400pt;}
.y3c7{bottom:64.660667pt;}
.y292{bottom:65.487200pt;}
.y3b3{bottom:65.700667pt;}
.y20d{bottom:65.906133pt;}
.y9e{bottom:65.923867pt;}
.y1a6{bottom:67.359600pt;}
.y1f3{bottom:67.685200pt;}
.y37a{bottom:68.086133pt;}
.y150{bottom:68.489467pt;}
.yfd{bottom:68.849067pt;}
.y327{bottom:69.483600pt;}
.y103{bottom:69.889067pt;}
.yac{bottom:70.667867pt;}
.y272{bottom:72.236133pt;}
.y113{bottom:72.406933pt;}
.y199{bottom:73.853067pt;}
.y182{bottom:74.076133pt;}
.y23f{bottom:74.859467pt;}
.y2e9{bottom:74.976667pt;}
.y3c6{bottom:75.328667pt;}
.y144{bottom:75.472933pt;}
.y35d{bottom:75.588533pt;}
.y305{bottom:75.869600pt;}
.y17b{bottom:76.382133pt;}
.y28{bottom:77.359733pt;}
.y296{bottom:78.713733pt;}
.y379{bottom:78.754800pt;}
.y2f1{bottom:79.941733pt;}
.y326{bottom:80.152267pt;}
.y291{bottom:80.152533pt;}
.y3b2{bottom:80.366000pt;}
.y9d{bottom:80.589200pt;}
.y96{bottom:80.921200pt;}
.yab{bottom:81.337867pt;}
.y1f2{bottom:82.350533pt;}
.y1d8{bottom:82.745333pt;}
.y154{bottom:83.080667pt;}
.y102{bottom:83.219067pt;}
.y26b{bottom:84.872800pt;}
.y143{bottom:86.141600pt;}
.y35c{bottom:86.257200pt;}
.y304{bottom:86.538267pt;}
.y271{bottom:86.901467pt;}
.y243{bottom:88.625333pt;}
.y23e{bottom:89.524800pt;}
.y2e8{bottom:89.642000pt;}
.y3c5{bottom:89.776667pt;}
.yfc{bottom:89.959067pt;}
.y17a{bottom:91.047467pt;}
.y27a{bottom:91.772267pt;}
.yaa{bottom:92.007867pt;}
.y27{bottom:92.025067pt;}
.y295{bottom:93.379067pt;}
.y290{bottom:94.817867pt;}
.y3b1{bottom:95.031333pt;}
.y259{bottom:95.216133pt;}
.y9c{bottom:95.254533pt;}
.y101{bottom:96.549067pt;}
.y142{bottom:96.810267pt;}
.y153{bottom:97.746000pt;}
.y20c{bottom:97.819733pt;}
.y14f{bottom:97.820133pt;}
.y22f{bottom:98.700667pt;}
.y26a{bottom:99.538133pt;}
.y1c1{bottom:100.015733pt;}
.y16b{bottom:100.382933pt;}
.y6c{bottom:101.373600pt;}
.y270{bottom:101.566800pt;}
.y279{bottom:102.440933pt;}
.yfb{bottom:102.629067pt;}
.y242{bottom:103.290667pt;}
.y2d3{bottom:104.003200pt;}
.y12d{bottom:104.135200pt;}
.y23d{bottom:104.190133pt;}
.y3c4{bottom:104.224667pt;}
.y26{bottom:106.690400pt;}
.y28f{bottom:109.483200pt;}
.y100{bottom:109.879067pt;}
.y9b{bottom:109.919867pt;}
.y16a{bottom:111.051600pt;}
.y152{bottom:112.411333pt;}
.y14e{bottom:112.485467pt;}
.y350{bottom:112.773733pt;}
.y269{bottom:114.203467pt;}
.y20b{bottom:114.487733pt;}
.y2d2{bottom:114.671867pt;}
.yfa{bottom:115.299067pt;}
.y22e{bottom:115.368667pt;}
.y6b{bottom:116.038933pt;}
.y26f{bottom:116.232133pt;}
.y3dc{bottom:118.327200pt;}
.y3c3{bottom:118.672667pt;}
.y2e7{bottom:118.972667pt;}
.y1fc{bottom:119.014800pt;}
.y39a{bottom:119.207333pt;}
.y2f0{bottom:119.955600pt;}
.y1f8{bottom:120.716533pt;}
.y12c{bottom:120.803200pt;}
.y25{bottom:121.355733pt;}
.y31a{bottom:122.348400pt;}
.y1a5{bottom:122.379067pt;}
.y294{bottom:122.709733pt;}
.y24a{bottom:122.934400pt;}
.y179{bottom:123.181067pt;}
.y181{bottom:123.206000pt;}
.yff{bottom:123.209067pt;}
.y34f{bottom:123.442400pt;}
.y28e{bottom:124.148533pt;}
.y47{bottom:124.265333pt;}
.y9a{bottom:124.585200pt;}
.y112{bottom:124.885200pt;}
.y82{bottom:126.012267pt;}
.y35b{bottom:127.180800pt;}
.yf9{bottom:127.969067pt;}
.y325{bottom:128.562267pt;}
.y3c2{bottom:129.340667pt;}
.y378{bottom:129.938400pt;}
.y6a{bottom:130.704267pt;}
.y1d7{bottom:130.717467pt;}
.y3ae{bottom:131.151600pt;}
.y20a{bottom:131.155733pt;}
.y22d{bottom:132.036667pt;}
.y2e6{bottom:133.638000pt;}
.y1fb{bottom:133.680133pt;}
.y198{bottom:134.001200pt;}
.y3db{bottom:134.323200pt;}
.y3b9{bottom:134.912533pt;}
.y1f7{bottom:135.381867pt;}
.y111{bottom:135.553867pt;}
.y1e2{bottom:135.777600pt;}
.y24{bottom:136.021067pt;}
.y33d{bottom:136.255200pt;}
.y2ef{bottom:136.623600pt;}
.y293{bottom:137.375067pt;}
.y2db{bottom:138.333467pt;}
.y28d{bottom:138.813867pt;}
.y258{bottom:138.908933pt;}
.y319{bottom:139.016400pt;}
.y1a4{bottom:139.047067pt;}
.y241{bottom:139.517200pt;}
.y180{bottom:139.874000pt;}
.y23c{bottom:140.094133pt;}
.y46{bottom:140.268000pt;}
.yf8{bottom:140.639067pt;}
.y81{bottom:140.677600pt;}
.y390{bottom:140.729733pt;}
.y26c{bottom:141.698133pt;}
.y178{bottom:143.181067pt;}
.y3c1{bottom:143.788667pt;}
.y35a{bottom:143.848800pt;}
.y324{bottom:145.230267pt;}
.y69{bottom:145.369600pt;}
.y3ad{bottom:145.816933pt;}
.y2b8{bottom:146.139333pt;}
.y1e1{bottom:146.446267pt;}
.y377{bottom:146.606400pt;}
.y33c{bottom:146.923867pt;}
.y1d6{bottom:147.385467pt;}
.y95{bottom:147.544667pt;}
.y209{bottom:147.823733pt;}
.y1fa{bottom:148.345467pt;}
.y1c0{bottom:148.491867pt;}
.y22c{bottom:148.704667pt;}
.y303{bottom:148.815067pt;}
.y2da{bottom:149.002133pt;}
.y3b8{bottom:149.577867pt;}
.y3da{bottom:150.319200pt;}
.y197{bottom:150.669200pt;}
.y23{bottom:150.686400pt;}
.y89{bottom:150.843867pt;}
.y38f{bottom:151.398400pt;}
.y141{bottom:152.435333pt;}
.y278{bottom:152.576000pt;}
.y2ee{bottom:153.291600pt;}
.y99{bottom:153.915867pt;}
.y240{bottom:154.182533pt;}
.y2ae{bottom:154.311333pt;}
.y3c0{bottom:154.456667pt;}
.y23b{bottom:154.759467pt;}
.y371{bottom:154.874667pt;}
.y45{bottom:154.933333pt;}
.y80{bottom:155.342933pt;}
.y257{bottom:155.576933pt;}
.y318{bottom:155.684400pt;}
.y1a3{bottom:155.715067pt;}
.y14d{bottom:156.024667pt;}
.y268{bottom:156.363467pt;}
.y17f{bottom:156.542000pt;}
.yf7{bottom:157.089067pt;}
.y2d1{bottom:158.530000pt;}
.y68{bottom:160.034933pt;}
.y3ac{bottom:160.482267pt;}
.y359{bottom:160.516800pt;}
.y323{bottom:161.898267pt;}
.y94{bottom:162.210000pt;}
.y376{bottom:163.274400pt;}
.y30b{bottom:163.380933pt;}
.y1d5{bottom:164.053467pt;}
.y3b7{bottom:164.243200pt;}
.y208{bottom:164.491733pt;}
.y2ad{bottom:164.980000pt;}
.y1bf{bottom:165.159867pt;}
.y22{bottom:165.351733pt;}
.y22b{bottom:165.372667pt;}
.y1f6{bottom:165.401200pt;}
.y302{bottom:165.483067pt;}
.y88{bottom:165.509200pt;}
.y370{bottom:165.543333pt;}
.y196{bottom:167.337200pt;}
.y399{bottom:168.356800pt;}
.y98{bottom:168.581200pt;}
.y140{bottom:169.103333pt;}
.y277{bottom:169.244000pt;}
.y169{bottom:169.566800pt;}
.y44{bottom:169.598667pt;}
.yf6{bottom:169.759067pt;}
.y6{bottom:169.897200pt;}
.y2ed{bottom:169.959600pt;}
.y7f{bottom:170.008267pt;}
.y267{bottom:171.028800pt;}
.y249{bottom:172.064267pt;}
.y256{bottom:172.244933pt;}
.y317{bottom:172.352400pt;}
.y1a2{bottom:172.383067pt;}
.y2e5{bottom:172.623867pt;}
.y17e{bottom:173.210000pt;}
.y30a{bottom:174.049600pt;}
.yec{bottom:174.469067pt;}
.y67{bottom:174.700267pt;}
.y3ab{bottom:175.147600pt;}
.y2d0{bottom:175.198000pt;}
.y28c{bottom:175.485600pt;}
.y2ac{bottom:175.648667pt;}
.y14c{bottom:176.024667pt;}
.y110{bottom:176.231467pt;}
.y34e{bottom:176.935467pt;}
.y358{bottom:177.184800pt;}
.y322{bottom:178.566267pt;}
.y375{bottom:179.942400pt;}
.y1f5{bottom:180.066533pt;}
.y1d4{bottom:180.721467pt;}
.y207{bottom:181.159733pt;}
.y1be{bottom:181.827867pt;}
.y22a{bottom:182.040667pt;}
.y301{bottom:182.151067pt;}
.y3d9{bottom:182.323200pt;}
.yf5{bottom:182.429067pt;}
.y195{bottom:184.005200pt;}
.y43{bottom:184.264000pt;}
.y7e{bottom:184.673600pt;}
.y398{bottom:185.024800pt;}
.y13f{bottom:185.771333pt;}
.y276{bottom:185.912000pt;}
.y168{bottom:186.234800pt;}
.yeb{bottom:187.139067pt;}
.y248{bottom:188.732267pt;}
.y255{bottom:188.912933pt;}
.y316{bottom:189.020400pt;}
.y1a1{bottom:189.051067pt;}
.y66{bottom:189.365600pt;}
.y3aa{bottom:189.812933pt;}
.y2cf{bottom:191.866000pt;}
.y2e4{bottom:192.623867pt;}
.y10f{bottom:192.899467pt;}
.y93{bottom:192.934400pt;}
.y34d{bottom:193.603467pt;}
.y357{bottom:193.852800pt;}
.y1f9{bottom:194.072800pt;}
.y21{bottom:194.682400pt;}
.y1f4{bottom:194.731867pt;}
.yf4{bottom:195.099067pt;}
.y321{bottom:195.234267pt;}
.y28b{bottom:195.485600pt;}
.y374{bottom:196.610400pt;}
.y2b7{bottom:197.322933pt;}
.y1d3{bottom:197.389467pt;}
.y33b{bottom:198.137200pt;}
.y3d8{bottom:198.319200pt;}
.y1bd{bottom:198.495867pt;}
.y229{bottom:198.708667pt;}
.y300{bottom:198.819067pt;}
.y42{bottom:198.929333pt;}
.y38e{bottom:199.952533pt;}
.y233{bottom:200.272933pt;}
.y5{bottom:200.557200pt;}
.y194{bottom:200.673200pt;}
.y397{bottom:201.692800pt;}
.y13e{bottom:202.439333pt;}
.y275{bottom:202.580000pt;}
.y167{bottom:202.902800pt;}
.yea{bottom:203.589067pt;}
.y247{bottom:205.400267pt;}
.y254{bottom:205.580933pt;}
.y315{bottom:205.688400pt;}
.y1a0{bottom:205.719067pt;}
.y1e0{bottom:206.594400pt;}
.yf3{bottom:207.769067pt;}
.y2ce{bottom:208.534000pt;}
.y20{bottom:209.347733pt;}
.y10e{bottom:209.567467pt;}
.y2d9{bottom:210.171867pt;}
.y34c{bottom:210.271467pt;}
.y356{bottom:210.520800pt;}
.y65{bottom:211.590267pt;}
.y320{bottom:211.902267pt;}
.y373{bottom:213.278400pt;}
.y3b6{bottom:213.509200pt;}
.y41{bottom:213.594667pt;}
.y2b6{bottom:213.990933pt;}
.y1d2{bottom:214.057467pt;}
.y3d7{bottom:214.315200pt;}
.y25b{bottom:214.446133pt;}
.y33a{bottom:214.805200pt;}
.y1bc{bottom:215.163867pt;}
.y2ff{bottom:215.487067pt;}
.ye9{bottom:216.259067pt;}
.y38d{bottom:216.620533pt;}
.y193{bottom:217.341200pt;}
.y7d{bottom:217.789600pt;}
.y396{bottom:218.360800pt;}
.y36f{bottom:218.977733pt;}
.y13d{bottom:219.107333pt;}
.y274{bottom:219.248000pt;}
.y166{bottom:219.570800pt;}
.y3d0{bottom:219.961067pt;}
.y232{bottom:220.272933pt;}
.y246{bottom:222.068267pt;}
.y253{bottom:222.248933pt;}
.y314{bottom:222.356400pt;}
.y19f{bottom:222.387067pt;}
.y1df{bottom:223.262400pt;}
.y1f{bottom:224.013067pt;}
.yf2{bottom:224.219067pt;}
.y2cd{bottom:225.202000pt;}
.y10d{bottom:226.235467pt;}
.y64{bottom:226.255600pt;}
.y2d8{bottom:226.839867pt;}
.y34b{bottom:226.939467pt;}
.y355{bottom:227.188800pt;}
.y3b0{bottom:227.382933pt;}
.y97{bottom:228.072000pt;}
.y3b5{bottom:228.174533pt;}
.y40{bottom:228.260000pt;}
.y1f1{bottom:228.471200pt;}
.y31f{bottom:228.570267pt;}
.ye8{bottom:228.929067pt;}
.y309{bottom:228.929200pt;}
.y372{bottom:229.946400pt;}
.y2b5{bottom:230.658933pt;}
.y1d1{bottom:230.725467pt;}
.y4{bottom:231.217200pt;}
.y339{bottom:231.473200pt;}
.y1bb{bottom:231.831867pt;}
.y2fe{bottom:232.155067pt;}
.y7c{bottom:232.454933pt;}
.y177{bottom:233.263067pt;}
.y38c{bottom:233.288533pt;}
.y3cf{bottom:233.294400pt;}
.y192{bottom:234.009200pt;}
.y25a{bottom:234.446133pt;}
.y395{bottom:235.028800pt;}
.y36e{bottom:235.645733pt;}
.y13c{bottom:235.775333pt;}
.y165{bottom:236.238800pt;}
.yf1{bottom:236.889067pt;}
.y1e{bottom:238.678400pt;}
.y252{bottom:238.916933pt;}
.y313{bottom:239.024400pt;}
.y19e{bottom:239.055067pt;}
.y1de{bottom:239.930400pt;}
.y63{bottom:240.920933pt;}
.ye7{bottom:241.599067pt;}
.y2cc{bottom:241.870000pt;}
.y3af{bottom:242.048267pt;}
.y3b4{bottom:242.839867pt;}
.y10c{bottom:242.903467pt;}
.y3f{bottom:242.925333pt;}
.y1f0{bottom:243.136533pt;}
.y2d7{bottom:243.507867pt;}
.y34a{bottom:243.607467pt;}
.y354{bottom:243.856800pt;}
.y176{bottom:243.931733pt;}
.y308{bottom:245.597200pt;}
.y3d6{bottom:246.319200pt;}
.y3ce{bottom:246.627733pt;}
.y2b4{bottom:247.326933pt;}
.y2ab{bottom:248.059333pt;}
.y338{bottom:248.141200pt;}
.y1ba{bottom:248.499867pt;}
.yf0{bottom:249.559067pt;}
.y38b{bottom:249.956533pt;}
.y191{bottom:250.677200pt;}
.y394{bottom:251.696800pt;}
.y36d{bottom:252.313733pt;}
.y13b{bottom:252.443333pt;}
.y164{bottom:252.906800pt;}
.y1d{bottom:253.343733pt;}
.y14b{bottom:254.421467pt;}
.y7b{bottom:254.679600pt;}
.y62{bottom:255.586267pt;}
.y19d{bottom:255.723067pt;}
.y1dd{bottom:256.598400pt;}
.y3e{bottom:257.590667pt;}
.y1ef{bottom:257.801867pt;}
.ye6{bottom:258.049067pt;}
.y2cb{bottom:258.538000pt;}
.y10b{bottom:259.571467pt;}
.y90{bottom:259.754533pt;}
.y3cd{bottom:259.961067pt;}
.y2d6{bottom:260.175867pt;}
.y349{bottom:260.275467pt;}
.y353{bottom:260.524800pt;}
.y92{bottom:260.562000pt;}
.y3{bottom:261.877200pt;}
.y307{bottom:262.265200pt;}
.y3d5{bottom:262.315200pt;}
.y2b3{bottom:263.994933pt;}
.y2aa{bottom:264.727333pt;}
.y1b9{bottom:265.167867pt;}
.yef{bottom:265.559067pt;}
.y38a{bottom:266.624533pt;}
.y393{bottom:268.364800pt;}
.y36c{bottom:268.981733pt;}
.y13a{bottom:269.111333pt;}
.y7a{bottom:269.344933pt;}
.y163{bottom:269.574800pt;}
.y61{bottom:270.251600pt;}
.ye5{bottom:270.719067pt;}
.y228{bottom:271.368000pt;}
.y3d{bottom:272.256000pt;}
.y19c{bottom:272.391067pt;}
.y1ee{bottom:272.467200pt;}
.y2e3{bottom:273.142400pt;}
.y1dc{bottom:273.266400pt;}
.y3cc{bottom:273.294400pt;}
.y8f{bottom:274.419867pt;}
.y2ca{bottom:275.206000pt;}
.y91{bottom:275.227333pt;}
.y1c{bottom:275.569467pt;}
.y10a{bottom:276.239467pt;}
.y2d5{bottom:276.843867pt;}
.y348{bottom:276.943467pt;}
.y352{bottom:277.192800pt;}
.y3d4{bottom:278.311200pt;}
.yee{bottom:278.889067pt;}
.y306{bottom:278.933200pt;}
.y2b2{bottom:280.662933pt;}
.y2a9{bottom:281.395333pt;}
.y28a{bottom:281.760800pt;}
.y1b8{bottom:281.835867pt;}
.y389{bottom:283.292533pt;}
.ye4{bottom:283.389067pt;}
.y2e2{bottom:283.811067pt;}
.y60{bottom:284.916933pt;}
.y392{bottom:285.032800pt;}
.y139{bottom:285.779333pt;}
.y3a9{bottom:285.852133pt;}
.y3c{bottom:286.921333pt;}
.y19b{bottom:289.059067pt;}
.y1db{bottom:289.934400pt;}
.y79{bottom:291.569600pt;}
.y2c9{bottom:291.874000pt;}
.y3cb{bottom:292.755867pt;}
.y109{bottom:292.907467pt;}
.y2d4{bottom:293.511867pt;}
.y347{bottom:293.611467pt;}
.y351{bottom:293.860800pt;}
.y3d3{bottom:294.307200pt;}
.ya7{bottom:295.498667pt;}
.ye3{bottom:296.059067pt;}
.y2b1{bottom:297.330933pt;}
.y2a8{bottom:298.043333pt;}
.y1b7{bottom:298.503867pt;}
.y5f{bottom:299.582267pt;}
.y388{bottom:299.960533pt;}
.yed{bottom:300.219067pt;}
.y14a{bottom:300.250533pt;}
.y175{bottom:300.292400pt;}
.y3b{bottom:301.586667pt;}
.y391{bottom:301.700800pt;}
.y138{bottom:302.447333pt;}
.y266{bottom:303.309600pt;}
.y19a{bottom:305.727067pt;}
.y3a8{bottom:305.852133pt;}
.y1b{bottom:306.245333pt;}
.y8d{bottom:306.248000pt;}
.y1da{bottom:306.602400pt;}
.y1ed{bottom:308.325467pt;}
.ye2{bottom:308.729067pt;}
.y108{bottom:309.575467pt;}
.y78{bottom:310.020267pt;}
.ya6{bottom:310.164000pt;}
.y346{bottom:310.279467pt;}
.y3d2{bottom:310.303200pt;}
.y265{bottom:313.978267pt;}
.y1d0{bottom:314.643067pt;}
.y2a7{bottom:314.711333pt;}
.y1b6{bottom:315.171867pt;}
.y3a{bottom:316.252000pt;}
.y387{bottom:316.628533pt;}
.y149{bottom:316.918533pt;}
.y174{bottom:316.960400pt;}
.y5e{bottom:318.032933pt;}
.y1a{bottom:320.910667pt;}
.y8c{bottom:320.913333pt;}
.y1d9{bottom:323.270400pt;}
.y2{bottom:324.670533pt;}
.y77{bottom:324.685600pt;}
.ye1{bottom:324.729067pt;}
.ya5{bottom:324.829333pt;}
.y3a7{bottom:325.852133pt;}
.y107{bottom:326.242133pt;}
.y3d1{bottom:326.299200pt;}
.y345{bottom:326.947467pt;}
.y227{bottom:327.396667pt;}
.y1ec{bottom:328.325467pt;}
.y39{bottom:330.917333pt;}
.y2a6{bottom:331.379333pt;}
.y1b5{bottom:331.839867pt;}
.y5d{bottom:332.698267pt;}
.y386{bottom:333.296533pt;}
.y148{bottom:333.586533pt;}
.y173{bottom:333.628400pt;}
.y312{bottom:333.959733pt;}
.y2e1{bottom:334.045867pt;}
.y19{bottom:335.576000pt;}
.y289{bottom:336.579600pt;}
.ya4{bottom:339.494667pt;}
.y2fd{bottom:342.199467pt;}
.y106{bottom:342.910133pt;}
.y344{bottom:343.615467pt;}
.y226{bottom:344.064667pt;}
.y311{bottom:344.628400pt;}
.y38{bottom:345.582667pt;}
.y5c{bottom:347.363600pt;}
.y2a5{bottom:348.047333pt;}
.y1b4{bottom:348.507867pt;}
.y385{bottom:349.964533pt;}
.y18{bottom:350.241333pt;}
.y147{bottom:350.254533pt;}
.y172{bottom:350.296400pt;}
.y2e0{bottom:350.713867pt;}
.y8e{bottom:351.706000pt;}
.y288{bottom:353.247600pt;}
.y264{bottom:354.154133pt;}
.ya3{bottom:354.160000pt;}
.ye0{bottom:355.519067pt;}
.y76{bottom:357.801600pt;}
.y251{bottom:358.049467pt;}
.y37{bottom:360.248000pt;}
.y343{bottom:360.283467pt;}
.yd7{bottom:360.329067pt;}
.y225{bottom:360.732667pt;}
.y1cf{bottom:363.866533pt;}
.y2a4{bottom:364.715333pt;}
.y17{bottom:364.906667pt;}
.y1b3{bottom:365.175867pt;}
.y162{bottom:366.490000pt;}
.y384{bottom:366.632533pt;}
.y146{bottom:366.922533pt;}
.y171{bottom:366.964400pt;}
.y2df{bottom:367.381867pt;}
.ydf{bottom:368.189067pt;}
.y250{bottom:368.718133pt;}
.ya2{bottom:368.825333pt;}
.y287{bottom:369.915600pt;}
.y263{bottom:370.822133pt;}
.yd6{bottom:372.999067pt;}
.y36{bottom:374.913333pt;}
.y161{bottom:377.158667pt;}
.y224{bottom:377.400667pt;}
.y2c8{bottom:377.898133pt;}
.y75{bottom:380.026267pt;}
.y5b{bottom:380.479600pt;}
.y105{bottom:380.518533pt;}
.y1ce{bottom:380.534533pt;}
.y2a3{bottom:381.383333pt;}
.y337{bottom:381.777600pt;}
.y383{bottom:383.300533pt;}
.ya1{bottom:383.490667pt;}
.y145{bottom:383.590533pt;}
.y170{bottom:383.632400pt;}
.y2de{bottom:384.049867pt;}
.yde{bottom:384.639067pt;}
.yd5{bottom:385.669067pt;}
.y3dd{bottom:385.679733pt;}
.y190{bottom:386.334000pt;}
.y286{bottom:386.583600pt;}
.y2fc{bottom:386.959867pt;}
.y262{bottom:387.490133pt;}
.y336{bottom:392.446267pt;}
.y223{bottom:394.068667pt;}
.y74{bottom:394.691600pt;}
.y5a{bottom:395.144933pt;}
.y1eb{bottom:396.848400pt;}
.y18f{bottom:397.002667pt;}
.y35{bottom:397.139067pt;}
.y1cd{bottom:397.202533pt;}
.ydd{bottom:397.309067pt;}
.y16{bottom:398.022667pt;}
.y2a2{bottom:398.051333pt;}
.ya0{bottom:398.156000pt;}
.yd4{bottom:398.339067pt;}
.y310{bottom:399.333333pt;}
.y382{bottom:399.968533pt;}
.y16f{bottom:400.300400pt;}
.y118{bottom:400.450267pt;}
.y2dd{bottom:400.717867pt;}
.y36b{bottom:402.587333pt;}
.y285{bottom:403.251600pt;}
.y1{bottom:403.338533pt;}
.y2fb{bottom:403.627867pt;}
.y261{bottom:404.158133pt;}
.y1ea{bottom:407.517067pt;}
.y59{bottom:409.810267pt;}
.y222{bottom:410.736667pt;}
.y206{bottom:411.985600pt;}
.y24f{bottom:412.666533pt;}
.y15{bottom:412.688000pt;}
.y36a{bottom:413.256000pt;}
.ydc{bottom:413.759067pt;}
.y1cc{bottom:413.870533pt;}
.y2a1{bottom:414.719333pt;}
.yd3{bottom:414.789067pt;}
.y30f{bottom:416.001333pt;}
.y73{bottom:416.916267pt;}
.y16e{bottom:416.968400pt;}
.y2dc{bottom:417.385867pt;}
.y284{bottom:419.919600pt;}
.y2fa{bottom:420.295867pt;}
.y8b{bottom:420.825467pt;}
.y260{bottom:420.826133pt;}
.y58{bottom:424.475600pt;}
.y2c7{bottom:425.114800pt;}
.ydb{bottom:426.429067pt;}
.y14{bottom:427.353333pt;}
.y221{bottom:427.404667pt;}
.yd2{bottom:427.459067pt;}
.y34{bottom:427.843067pt;}
.y24e{bottom:429.334533pt;}
.y1cb{bottom:430.538533pt;}
.y2a0{bottom:431.387333pt;}
.y72{bottom:431.581600pt;}
.y30e{bottom:432.669333pt;}
.y160{bottom:433.406667pt;}
.y16d{bottom:433.636400pt;}
.y205{bottom:434.645600pt;}
.y8a{bottom:435.490800pt;}
.y283{bottom:436.587600pt;}
.y2f9{bottom:436.963867pt;}
.y25f{bottom:437.494133pt;}
.yd1{bottom:440.129067pt;}
.y2c6{bottom:441.782800pt;}
.y13{bottom:442.018667pt;}
.y33{bottom:442.508400pt;}
.yda{bottom:442.879067pt;}
.y335{bottom:442.965467pt;}
.y24d{bottom:446.002533pt;}
.y57{bottom:446.700267pt;}
.y23a{bottom:447.263600pt;}
.y122{bottom:447.792667pt;}
.y29f{bottom:448.055333pt;}
.y30d{bottom:449.337333pt;}
.y15f{bottom:450.074667pt;}
.y3a6{bottom:451.530800pt;}
.yd0{bottom:452.799067pt;}
.y282{bottom:453.255600pt;}
.y2f8{bottom:453.631867pt;}
.y71{bottom:453.806267pt;}
.y1e9{bottom:453.860533pt;}
.y25e{bottom:454.162133pt;}
.y18e{bottom:454.730800pt;}
.yd9{bottom:455.549067pt;}
.y32{bottom:457.173733pt;}
.y204{bottom:457.244133pt;}
.y9f{bottom:457.646800pt;}
.y239{bottom:457.932267pt;}
.y137{bottom:457.932533pt;}
.y2c5{bottom:458.450800pt;}
.y334{bottom:459.633467pt;}
.y369{bottom:460.943200pt;}
.y56{bottom:461.365600pt;}
.y1b2{bottom:461.499333pt;}
.y3a5{bottom:462.199467pt;}
.y121{bottom:462.458000pt;}
.y24c{bottom:462.670533pt;}
.y12{bottom:464.243333pt;}
.y29e{bottom:464.723333pt;}
.ycf{bottom:465.469067pt;}
.y30c{bottom:466.005333pt;}
.y15e{bottom:466.742667pt;}
.y87{bottom:468.077467pt;}
.y281{bottom:469.923600pt;}
.y1e8{bottom:470.528533pt;}
.y25d{bottom:470.830133pt;}
.y18d{bottom:471.398800pt;}
.y203{bottom:471.410667pt;}
.y31{bottom:471.839067pt;}
.y1b1{bottom:472.168000pt;}
.yb6{bottom:472.594000pt;}
.yd8{bottom:474.219067pt;}
.y2c4{bottom:475.118800pt;}
.y55{bottom:476.030933pt;}
.y333{bottom:476.301467pt;}
.y368{bottom:477.611200pt;}
.yce{bottom:478.139067pt;}
.y11{bottom:478.908667pt;}
.y24b{bottom:479.338533pt;}
.y29d{bottom:481.391333pt;}
.y86{bottom:482.742800pt;}
.y15d{bottom:483.410667pt;}
.y120{bottom:484.682667pt;}
.y30{bottom:486.504400pt;}
.y3bb{bottom:486.824133pt;}
.y1e7{bottom:487.196533pt;}
.yb5{bottom:487.259333pt;}
.y18c{bottom:488.066800pt;}
.y381{bottom:489.460400pt;}
.y54{bottom:490.696267pt;}
.y2c3{bottom:491.786800pt;}
.y332{bottom:492.969467pt;}
.y367{bottom:494.279200pt;}
.ycd{bottom:494.589067pt;}
.y2ec{bottom:494.950133pt;}
.y342{bottom:497.484000pt;}
.y29c{bottom:498.059333pt;}
.y11f{bottom:499.348000pt;}
.y15c{bottom:500.078667pt;}
.y10{bottom:501.133333pt;}
.y12b{bottom:501.169200pt;}
.y2f{bottom:501.169733pt;}
.y3ba{bottom:501.490800pt;}
.yb4{bottom:501.924667pt;}
.y238{bottom:502.446667pt;}
.yc4{bottom:502.769067pt;}
.y1e6{bottom:503.864533pt;}
.y18b{bottom:504.734800pt;}
.y3a4{bottom:506.964400pt;}
.ycc{bottom:507.259067pt;}
.y2c2{bottom:508.454800pt;}
.y331{bottom:509.637467pt;}
.y366{bottom:510.947200pt;}
.y12a{bottom:511.837867pt;}
.y53{bottom:512.920933pt;}
.y11e{bottom:514.013333pt;}
.y29b{bottom:514.727333pt;}
.y85{bottom:514.834667pt;}
.y2eb{bottom:514.881867pt;}
.yc3{bottom:515.439067pt;}
.yf{bottom:515.798667pt;}
.y2e{bottom:515.835067pt;}
.yb3{bottom:516.590000pt;}
.y15b{bottom:516.746667pt;}
.y237{bottom:519.114667pt;}
.ycb{bottom:519.929067pt;}
.y1e5{bottom:520.532533pt;}
.y1b0{bottom:520.624133pt;}
.y1ca{bottom:520.902933pt;}
.y18a{bottom:521.402800pt;}
.y219{bottom:521.580400pt;}
.y129{bottom:522.506533pt;}
.y136{bottom:522.617467pt;}
.y3a3{bottom:523.632400pt;}
.y2c1{bottom:525.122800pt;}
.y330{bottom:526.305467pt;}
.y52{bottom:527.586267pt;}
.y365{bottom:527.615200pt;}
.y2d{bottom:530.500400pt;}
.yb2{bottom:531.255333pt;}
.y29a{bottom:531.395333pt;}
.yc2{bottom:531.889067pt;}
.y202{bottom:532.138933pt;}
.yca{bottom:532.599067pt;}
.y25c{bottom:532.653600pt;}
.y15a{bottom:533.414667pt;}
.ye{bottom:534.249333pt;}
.y236{bottom:535.782667pt;}
.y11d{bottom:536.238000pt;}
.y218{bottom:536.245733pt;}
.y1e4{bottom:537.200533pt;}
.y1af{bottom:537.292133pt;}
.y220{bottom:537.638933pt;}
.y189{bottom:538.070800pt;}
.y135{bottom:539.285467pt;}
.y3a2{bottom:540.300400pt;}
.y2c0{bottom:541.790800pt;}
.y51{bottom:542.251600pt;}
.y32f{bottom:542.973467pt;}
.y380{bottom:543.400133pt;}
.y364{bottom:544.283200pt;}
.yc1{bottom:544.559067pt;}
.yc9{bottom:545.269067pt;}
.yb1{bottom:545.920667pt;}
.y70{bottom:546.036933pt;}
.y299{bottom:548.063333pt;}
.y201{bottom:548.806933pt;}
.yd{bottom:548.914667pt;}
.y159{bottom:550.082667pt;}
.y11c{bottom:550.903333pt;}
.y217{bottom:550.911067pt;}
.y341{bottom:552.169200pt;}
.y235{bottom:552.450667pt;}
.y1e3{bottom:553.868533pt;}
.y1ae{bottom:553.960133pt;}
.y188{bottom:554.738800pt;}
.y134{bottom:555.953467pt;}
.y50{bottom:556.916933pt;}
.y3a1{bottom:556.968400pt;}
.yc0{bottom:557.229067pt;}
.yc8{bottom:557.939067pt;}
.y3be{bottom:558.209600pt;}
.y2bf{bottom:558.458800pt;}
.y32e{bottom:559.641467pt;}
.y2c{bottom:559.831067pt;}
.y37f{bottom:560.068133pt;}
.yb0{bottom:560.586000pt;}
.y6f{bottom:560.702267pt;}
.y363{bottom:560.951200pt;}
.yc{bottom:563.580000pt;}
.y200{bottom:565.474933pt;}
.y11b{bottom:565.568667pt;}
.y216{bottom:565.576400pt;}
.y84{bottom:566.803200pt;}
.y340{bottom:568.837200pt;}
.y234{bottom:569.118667pt;}
.ybf{bottom:569.899067pt;}
.y1c9{bottom:570.536533pt;}
.yc7{bottom:570.609067pt;}
.y1ad{bottom:570.628133pt;}
.y187{bottom:571.406800pt;}
.y4f{bottom:571.582267pt;}
.y280{bottom:572.508933pt;}
.y133{bottom:572.621467pt;}
.y3bd{bottom:572.876267pt;}
.y3a0{bottom:573.636400pt;}
.y128{bottom:574.234800pt;}
.y2b{bottom:574.496400pt;}
.y2be{bottom:575.126800pt;}
.yaf{bottom:575.252667pt;}
.y32d{bottom:576.309467pt;}
.y37e{bottom:576.736133pt;}
.y362{bottom:577.619200pt;}
.y2f6{bottom:578.318933pt;}
.y11a{bottom:580.234000pt;}
.y1ff{bottom:582.142933pt;}
.ybe{bottom:582.569067pt;}
.y33f{bottom:585.505200pt;}
.yb{bottom:585.805733pt;}
.y4e{bottom:586.247600pt;}
.yc6{bottom:586.609067pt;}
.y1c8{bottom:587.204533pt;}
.y1ac{bottom:587.296133pt;}
.y3bc{bottom:587.541600pt;}
.y215{bottom:587.801067pt;}
.y186{bottom:588.074800pt;}
.y2a{bottom:589.161733pt;}
.y132{bottom:589.289467pt;}
.yae{bottom:589.918000pt;}
.y6e{bottom:590.032933pt;}
.y39f{bottom:590.304400pt;}
.y127{bottom:590.902800pt;}
.y2bd{bottom:591.794800pt;}
.y32c{bottom:592.977467pt;}
.y2f5{bottom:592.984267pt;}
.y37d{bottom:593.404133pt;}
.y21f{bottom:594.247867pt;}
.y361{bottom:594.287200pt;}
.ybd{bottom:595.239067pt;}
.y1fe{bottom:598.810933pt;}
.yc5{bottom:599.939067pt;}
.y4d{bottom:600.912933pt;}
.ya{bottom:601.805733pt;}
.y33e{bottom:602.173200pt;}
.y214{bottom:602.466400pt;}
.y29{bottom:603.827067pt;}
.y1c7{bottom:603.872533pt;}
.y1ab{bottom:603.964133pt;}
.y6d{bottom:604.698267pt;}
.y185{bottom:604.742800pt;}
.y119{bottom:605.346933pt;}
.y131{bottom:605.957467pt;}
.y39e{bottom:606.972400pt;}
.y126{bottom:607.570800pt;}
.y2f4{bottom:607.649600pt;}
.ybc{bottom:607.909067pt;}
.y3bf{bottom:608.346400pt;}
.y2bc{bottom:608.462800pt;}
.y32b{bottom:609.645467pt;}
.y37c{bottom:610.072133pt;}
.y21e{bottom:610.915867pt;}
.y360{bottom:610.955200pt;}
.y1fd{bottom:615.478933pt;}
.y213{bottom:617.131733pt;}
.y4c{bottom:619.363600pt;}
.y1c6{bottom:620.540533pt;}
.y1aa{bottom:620.632133pt;}
.y184{bottom:621.410800pt;}
.y2f3{bottom:622.314933pt;}
.yb8{bottom:622.614800pt;}
.y130{bottom:622.625467pt;}
.y39d{bottom:623.640400pt;}
.y125{bottom:624.238800pt;}
.y2bb{bottom:625.130800pt;}
.y158{bottom:625.754667pt;}
.y32a{bottom:626.313467pt;}
.ybb{bottom:626.579067pt;}
.y37b{bottom:626.740133pt;}
.y27f{bottom:627.194133pt;}
.y21d{bottom:627.583867pt;}
.y35f{bottom:627.623200pt;}
.y4b{bottom:634.028933pt;}
.y31e{bottom:634.872800pt;}
.y212{bottom:635.582400pt;}
.y1c5{bottom:637.208533pt;}
.y1a9{bottom:637.300133pt;}
.y183{bottom:638.078800pt;}
.y12f{bottom:639.293467pt;}
.yba{bottom:639.909067pt;}
.y39c{bottom:640.308400pt;}
.y298{bottom:641.088000pt;}
.y2ba{bottom:641.798800pt;}
.y329{bottom:642.981467pt;}
.y2f2{bottom:643.648267pt;}
.y27e{bottom:643.862133pt;}
.y21c{bottom:644.251867pt;}
.y35e{bottom:644.291200pt;}
.y157{bottom:648.414667pt;}
.y4a{bottom:648.694267pt;}
.y123{bottom:652.158267pt;}
.y1c4{bottom:653.876533pt;}
.y1a8{bottom:653.968133pt;}
.y39b{bottom:656.976400pt;}
.y31d{bottom:657.532800pt;}
.y2b9{bottom:658.466800pt;}
.y328{bottom:659.649467pt;}
.y27d{bottom:660.530133pt;}
.y21b{bottom:660.919867pt;}
.y245{bottom:661.081333pt;}
.y83{bottom:662.850400pt;}
.y49{bottom:663.359600pt;}
.y211{bottom:663.582400pt;}
.y273{bottom:663.748000pt;}
.y17d{bottom:665.131200pt;}
.y1c3{bottom:670.544533pt;}
.y156{bottom:672.346400pt;}
.yb9{bottom:674.434400pt;}
.y27c{bottom:677.198133pt;}
.y31c{bottom:677.464533pt;}
.yb7{bottom:683.212533pt;}
.y244{bottom:683.679733pt;}
.y48{bottom:685.585333pt;}
.y17c{bottom:686.396267pt;}
.y1c2{bottom:687.212533pt;}
.ya9{bottom:689.872267pt;}
.y2f7{bottom:692.614533pt;}
.y8{bottom:698.330667pt;}
.y7{bottom:699.956000pt;}
.y3de{bottom:700.964000pt;}
.y21a{bottom:708.682267pt;}
.y124{bottom:724.230933pt;}
.y9{bottom:747.574800pt;}
.ya8{bottom:747.585333pt;}
.h4{height:18.432000pt;}
.h10{height:26.208000pt;}
.h19{height:28.672000pt;}
.ha{height:30.720000pt;}
.h1a{height:32.768000pt;}
.h6{height:34.816000pt;}
.h9{height:34.848000pt;}
.h8{height:35.133333pt;}
.h18{height:35.388395pt;}
.h17{height:35.393728pt;}
.hd{height:36.864000pt;}
.h15{height:37.555712pt;}
.hf{height:37.776000pt;}
.he{height:37.781333pt;}
.h7{height:41.333333pt;}
.h16{height:44.352000pt;}
.hb{height:45.056000pt;}
.h12{height:46.464000pt;}
.h14{height:48.142379pt;}
.h11{height:56.470315pt;}
.hc{height:58.080000pt;}
.h13{height:59.520000pt;}
.h5{height:65.824000pt;}
.h3{height:86.016000pt;}
.h2{height:290.816000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x17{left:39.795333pt;}
.x4a{left:45.600800pt;}
.x8{left:47.244133pt;}
.x48{left:48.276800pt;}
.x47{left:51.732800pt;}
.x49{left:53.496800pt;}
.xa{left:54.803467pt;}
.x80{left:55.751200pt;}
.xd{left:56.692933pt;}
.x18{left:57.940133pt;}
.x69{left:59.848533pt;}
.x86{left:60.780267pt;}
.x46{left:61.704800pt;}
.xaa{left:63.200400pt;}
.xe{left:64.252267pt;}
.x6e{left:65.145867pt;}
.xb{left:66.136800pt;}
.x87{left:67.236267pt;}
.x28{left:68.199467pt;}
.xa9{left:69.128400pt;}
.x5f{left:70.061600pt;}
.x43{left:71.088667pt;}
.x27{left:72.070133pt;}
.x2{left:73.361733pt;}
.x6d{left:74.301867pt;}
.xf{left:75.585600pt;}
.x6a{left:76.504533pt;}
.x5e{left:77.705600pt;}
.x4b{left:80.856800pt;}
.x38{left:83.350400pt;}
.x77{left:84.258133pt;}
.x39{left:85.246400pt;}
.x29{left:87.091867pt;}
.x3a{left:88.918400pt;}
.x3c{left:90.278533pt;}
.x72{left:91.828667pt;}
.x9d{left:93.000267pt;}
.x19{left:94.164667pt;}
.x76{left:95.634133pt;}
.x37{left:97.114400pt;}
.x1{left:99.584400pt;}
.x36{left:100.474400pt;}
.x15{left:101.405467pt;}
.x9a{left:102.879600pt;}
.x13{left:104.267733pt;}
.x44{left:105.167333pt;}
.x7d{left:106.363200pt;}
.x88{left:107.301333pt;}
.x1a{left:109.284667pt;}
.x85{left:111.078933pt;}
.x70{left:112.039333pt;}
.x6f{left:113.204533pt;}
.x89{left:114.729333pt;}
.x71{left:115.741733pt;}
.x1d{left:117.385867pt;}
.x7c{left:118.572133pt;}
.x9e{left:122.597867pt;}
.x3d{left:124.130533pt;}
.x4{left:125.729200pt;}
.x6{left:127.381200pt;}
.x40{left:129.200933pt;}
.x55{left:131.193600pt;}
.x3e{left:133.424933pt;}
.x5{left:134.605200pt;}
.x3b{left:135.502400pt;}
.x92{left:136.760533pt;}
.xab{left:146.240533pt;}
.x3f{left:147.356933pt;}
.x3{left:148.633200pt;}
.x61{left:149.594800pt;}
.x62{left:151.046800pt;}
.x8c{left:152.711733pt;}
.x60{left:154.226800pt;}
.x2f{left:155.936667pt;}
.x8f{left:157.712400pt;}
.x7f{left:158.644533pt;}
.x73{left:160.096667pt;}
.x63{left:162.170800pt;}
.x8d{left:167.591733pt;}
.x51{left:169.491733pt;}
.x4e{left:170.559733pt;}
.x41{left:172.508933pt;}
.x4f{left:174.495733pt;}
.x50{left:176.271733pt;}
.xa0{left:178.034667pt;}
.x90{left:179.696400pt;}
.xa1{left:185.186667pt;}
.x95{left:187.414533pt;}
.x9b{left:192.490933pt;}
.x8e{left:193.786000pt;}
.x7e{left:194.875200pt;}
.x64{left:197.231067pt;}
.x53{left:199.130533pt;}
.x91{left:202.196267pt;}
.x42{left:203.751467pt;}
.x84{left:206.400933pt;}
.x54{left:208.447200pt;}
.x57{left:209.528267pt;}
.x8a{left:210.815333pt;}
.x30{left:211.844667pt;}
.xa2{left:214.418667pt;}
.x56{left:218.265600pt;}
.x94{left:221.389333pt;}
.xaf{left:223.636400pt;}
.xac{left:225.917067pt;}
.x96{left:233.963200pt;}
.xad{left:237.306267pt;}
.xa3{left:245.075333pt;}
.x52{left:252.543733pt;}
.xae{left:253.687600pt;}
.xa5{left:260.632133pt;}
.xa7{left:263.152133pt;}
.xa6{left:266.572133pt;}
.x31{left:267.513333pt;}
.xa4{left:268.924133pt;}
.x9{left:270.868000pt;}
.xc{left:292.928133pt;}
.x5c{left:297.508000pt;}
.x5b{left:300.076000pt;}
.x6c{left:301.061467pt;}
.x10{left:302.362267pt;}
.x6b{left:303.538933pt;}
.x58{left:304.744000pt;}
.x59{left:305.764000pt;}
.x14{left:307.020933pt;}
.x16{left:308.523600pt;}
.x11{left:309.921600pt;}
.x74{left:310.836000pt;}
.x67{left:311.747333pt;}
.x5a{left:313.060000pt;}
.x9c{left:314.734267pt;}
.x65{left:316.331333pt;}
.x5d{left:318.010400pt;}
.x34{left:319.378933pt;}
.x12{left:321.254933pt;}
.x66{left:322.199333pt;}
.x32{left:323.662933pt;}
.xa8{left:324.864667pt;}
.x33{left:326.374933pt;}
.x7a{left:327.337333pt;}
.x35{left:328.570933pt;}
.x45{left:330.373333pt;}
.x68{left:332.143467pt;}
.x25{left:333.391333pt;}
.x82{left:334.831467pt;}
.x75{left:335.837733pt;}
.x79{left:337.081333pt;}
.x8b{left:338.815467pt;}
.x83{left:340.051467pt;}
.x81{left:341.395467pt;}
.x4c{left:342.517200pt;}
.x9f{left:343.588533pt;}
.x1b{left:344.714667pt;}
.x21{left:347.945200pt;}
.x1f{left:350.543067pt;}
.x1e{left:352.943067pt;}
.x22{left:355.073200pt;}
.x93{left:356.374933pt;}
.x23{left:357.281200pt;}
.x1c{left:359.834667pt;}
.x20{left:360.809200pt;}
.x78{left:363.389867pt;}
.x97{left:365.721867pt;}
.x4d{left:366.945467pt;}
.x2c{left:369.656400pt;}
.x99{left:371.013867pt;}
.x2d{left:375.567067pt;}
.x98{left:376.725867pt;}
.x2b{left:380.706400pt;}
.x24{left:383.057200pt;}
.x7b{left:384.192267pt;}
.x26{left:388.095333pt;}
.x2e{left:389.971067pt;}
.x2a{left:391.950400pt;}
.x7{left:551.532800pt;}
}




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