
    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_1612d593f5dba91a8cf11643.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_939cb1b97becd6372c7f9a1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_5f8a9333b50594a1520edcb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_2aaed8cffb2b489008da517c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_957b47ede5761e8e3221969f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_f5bfde4f210c66d13de82cad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7c{letter-spacing:-2.154240px;}
.lsa6{letter-spacing:-2.090880px;}
.lsa7{letter-spacing:-1.964160px;}
.ls5a{letter-spacing:-1.837440px;}
.ls4d{letter-spacing:-1.774080px;}
.ls8b{letter-spacing:-1.647360px;}
.ls5b{letter-spacing:-1.584000px;}
.ls24{letter-spacing:-1.566000px;}
.ls3d{letter-spacing:-1.457280px;}
.ls22{letter-spacing:-1.404000px;}
.ls3e{letter-spacing:-1.393920px;}
.lsbe{letter-spacing:-1.365120px;}
.ls1b{letter-spacing:-1.296000px;}
.ls5c{letter-spacing:-1.267200px;}
.ls1d{letter-spacing:-1.242000px;}
.ls4b{letter-spacing:-1.203840px;}
.ls1e{letter-spacing:-1.188000px;}
.ls4e{letter-spacing:-1.140480px;}
.lsbf{letter-spacing:-1.080720px;}
.ls1f{letter-spacing:-1.080000px;}
.ls6d{letter-spacing:-1.075680px;}
.ls6c{letter-spacing:-1.015920px;}
.ls36{letter-spacing:-1.013760px;}
.ls32{letter-spacing:-1.010880px;}
.lsc7{letter-spacing:-0.972000px;}
.ls68{letter-spacing:-0.956160px;}
.ls39{letter-spacing:-0.950400px;}
.ls82{letter-spacing:-0.887040px;}
.ls21{letter-spacing:-0.864000px;}
.ls6a{letter-spacing:-0.836640px;}
.ls20{letter-spacing:-0.810000px;}
.ls67{letter-spacing:-0.776880px;}
.ls17{letter-spacing:-0.758160px;}
.ls23{letter-spacing:-0.756000px;}
.ls19{letter-spacing:-0.702000px;}
.ls34{letter-spacing:-0.696960px;}
.lsbb{letter-spacing:-0.682560px;}
.ls3c{letter-spacing:-0.673920px;}
.ls25{letter-spacing:-0.670320px;}
.ls66{letter-spacing:-0.657360px;}
.ls1a{letter-spacing:-0.594000px;}
.ls5d{letter-spacing:-0.570240px;}
.ls35{letter-spacing:-0.506880px;}
.ls18{letter-spacing:-0.486000px;}
.ls69{letter-spacing:-0.478080px;}
.ls33{letter-spacing:-0.380160px;}
.ls1c{letter-spacing:-0.378000px;}
.ls6b{letter-spacing:-0.358560px;}
.ls70{letter-spacing:-0.357840px;}
.lsbc{letter-spacing:-0.341280px;}
.ls15{letter-spacing:-0.324000px;}
.ls38{letter-spacing:-0.316800px;}
.ls72{letter-spacing:-0.255600px;}
.lsba{letter-spacing:-0.227520px;}
.ls71{letter-spacing:-0.204480px;}
.ls4c{letter-spacing:-0.190080px;}
.lsbd{letter-spacing:-0.170640px;}
.ls6e{letter-spacing:-0.119520px;}
.ls16{letter-spacing:-0.084240px;}
.ls7d{letter-spacing:-0.077760px;}
.ls6f{letter-spacing:-0.059760px;}
.lsc0{letter-spacing:-0.056880px;}
.ls0{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.017928px;}
.lsb5{letter-spacing:0.022752px;}
.lsb7{letter-spacing:0.034128px;}
.lsb3{letter-spacing:0.039816px;}
.lsad{letter-spacing:0.051192px;}
.lsac{letter-spacing:0.056880px;}
.ls2c{letter-spacing:0.063360px;}
.ls11{letter-spacing:0.075600px;}
.ls14{letter-spacing:0.108000px;}
.ls8a{letter-spacing:0.149760px;}
.ls3b{letter-spacing:0.190080px;}
.lsc4{letter-spacing:0.216000px;}
.lsb6{letter-spacing:0.227520px;}
.ls61{letter-spacing:0.239040px;}
.ls3a{letter-spacing:0.253440px;}
.ls65{letter-spacing:0.255600px;}
.ls64{letter-spacing:0.306720px;}
.ls54{letter-spacing:0.316800px;}
.ls7b{letter-spacing:0.341280px;}
.ls73{letter-spacing:0.380160px;}
.ls95{letter-spacing:0.443520px;}
.lsb0{letter-spacing:0.472104px;}
.ls97{letter-spacing:0.506880px;}
.ls3f{letter-spacing:0.519552px;}
.ls9d{letter-spacing:0.589248px;}
.ls94{letter-spacing:0.601920px;}
.ls1{letter-spacing:0.673920px;}
.ls84{letter-spacing:0.734976px;}
.lsae{letter-spacing:0.739440px;}
.ls37{letter-spacing:0.760320px;}
.ls26{letter-spacing:0.796320px;}
.lsc6{letter-spacing:0.864000px;}
.lsc2{letter-spacing:0.918000px;}
.ls31{letter-spacing:0.966960px;}
.ls83{letter-spacing:1.108800px;}
.ls9e{letter-spacing:1.146816px;}
.lsa4{letter-spacing:1.755072px;}
.ls53{letter-spacing:1.837440px;}
.ls8f{letter-spacing:1.938816px;}
.ls91{letter-spacing:1.951488px;}
.ls46{letter-spacing:1.964160px;}
.lsc5{letter-spacing:2.235600px;}
.ls9a{letter-spacing:2.534400px;}
.lsa8{letter-spacing:2.547072px;}
.ls42{letter-spacing:2.692800px;}
.ls44{letter-spacing:2.800512px;}
.ls7f{letter-spacing:2.825856px;}
.ls8{letter-spacing:2.970000px;}
.ls2a{letter-spacing:3.294720px;}
.ls7a{letter-spacing:3.402432px;}
.ls75{letter-spacing:3.541824px;}
.ls2{letter-spacing:3.569400px;}
.ls4{letter-spacing:3.726000px;}
.ls96{letter-spacing:3.991680px;}
.ls30{letter-spacing:4.118400px;}
.ls77{letter-spacing:4.251456px;}
.ls3{letter-spacing:4.266000px;}
.lsb9{letter-spacing:4.322880px;}
.lsb8{letter-spacing:4.334256px;}
.lsb4{letter-spacing:5.062320px;}
.lsaf{letter-spacing:5.096448px;}
.lsb{letter-spacing:5.146200px;}
.ls52{letter-spacing:5.448960px;}
.ls41{letter-spacing:5.620032px;}
.lsab{letter-spacing:5.801760px;}
.lsc1{letter-spacing:5.810400px;}
.lse{letter-spacing:5.886000px;}
.ls9b{letter-spacing:6.145920px;}
.ls92{letter-spacing:6.253632px;}
.ls45{letter-spacing:6.690816px;}
.ls5e{letter-spacing:6.842880px;}
.ls59{letter-spacing:6.975936px;}
.ls49{letter-spacing:6.988608px;}
.ls79{letter-spacing:7.121664px;}
.ls76{letter-spacing:7.603200px;}
.ls4f{letter-spacing:7.666560px;}
.ls89{letter-spacing:7.793280px;}
.lsa1{letter-spacing:7.812288px;}
.lsf{letter-spacing:7.884000px;}
.ls62{letter-spacing:7.888320px;}
.ls40{letter-spacing:7.983360px;}
.ls10{letter-spacing:8.046000px;}
.ls74{letter-spacing:8.300160px;}
.ls50{letter-spacing:8.357184px;}
.ls7e{letter-spacing:8.553600px;}
.lsb2{letter-spacing:8.640072px;}
.ls8c{letter-spacing:8.997120px;}
.lsa2{letter-spacing:9.453312px;}
.ls43{letter-spacing:9.757440px;}
.ls80{letter-spacing:9.890496px;}
.ls28{letter-spacing:10.055232px;}
.ls13{letter-spacing:10.098000px;}
.ls78{letter-spacing:10.454400px;}
.ls87{letter-spacing:10.600128px;}
.lsa9{letter-spacing:10.840896px;}
.ls51{letter-spacing:11.189376px;}
.ls8e{letter-spacing:11.214720px;}
.ls48{letter-spacing:11.911680px;}
.ls99{letter-spacing:11.949696px;}
.lsa5{letter-spacing:12.082752px;}
.ls86{letter-spacing:12.786048px;}
.ls57{letter-spacing:13.368960px;}
.ls58{letter-spacing:13.616064px;}
.lsb1{letter-spacing:13.708080px;}
.ls2e{letter-spacing:14.230656px;}
.lsc3{letter-spacing:14.720400px;}
.ls2b{letter-spacing:14.762880px;}
.ls56{letter-spacing:15.523200px;}
.ls7{letter-spacing:15.730200px;}
.ls2d{letter-spacing:16.220160px;}
.ls8d{letter-spacing:16.403904px;}
.ls60{letter-spacing:16.492608px;}
.ls9{letter-spacing:16.686000px;}
.ls4a{letter-spacing:16.974144px;}
.lsc{letter-spacing:17.307000px;}
.lsd{letter-spacing:17.328600px;}
.ls9c{letter-spacing:17.677440px;}
.ls88{letter-spacing:17.968896px;}
.ls6{letter-spacing:18.068400px;}
.ls55{letter-spacing:18.456768px;}
.ls12{letter-spacing:18.743760px;}
.ls27{letter-spacing:19.134720px;}
.ls5f{letter-spacing:19.831680px;}
.ls90{letter-spacing:19.895040px;}
.ls98{letter-spacing:20.528640px;}
.ls81{letter-spacing:20.674368px;}
.ls5{letter-spacing:21.708000px;}
.ls2f{letter-spacing:22.201344px;}
.ls47{letter-spacing:22.264704px;}
.ls85{letter-spacing:26.471808px;}
.ls9f{letter-spacing:28.448640px;}
.lsa0{letter-spacing:29.766528px;}
.lsa3{letter-spacing:32.757120px;}
.ls29{letter-spacing:34.214400px;}
.lsa{letter-spacing:40.446000px;}
.lsaa{letter-spacing:846.385920px;}
.ls93{letter-spacing:1355.791680px;}
.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;}
}
.wse{word-spacing:-56.880000px;}
.ws8{word-spacing:-54.000000px;}
.ws1{word-spacing:-30.024000px;}
.wsf{word-spacing:-25.950960px;}
.ws92{word-spacing:-23.418720px;}
.ws2{word-spacing:-22.660560px;}
.ws41{word-spacing:-22.407840px;}
.wsc9{word-spacing:-21.617280px;}
.wsc8{word-spacing:-21.539520px;}
.wsdf{word-spacing:-20.966400px;}
.ws48{word-spacing:-17.867520px;}
.ws94{word-spacing:-17.677440px;}
.ws42{word-spacing:-17.614080px;}
.wsc7{word-spacing:-17.424000px;}
.ws91{word-spacing:-17.297280px;}
.ws43{word-spacing:-17.233920px;}
.ws45{word-spacing:-17.107200px;}
.wsfa{word-spacing:-17.043840px;}
.ws44{word-spacing:-16.917120px;}
.ws47{word-spacing:-16.663680px;}
.wsa8{word-spacing:-16.613280px;}
.ws40{word-spacing:-16.608960px;}
.ws46{word-spacing:-16.600320px;}
.wsb0{word-spacing:-16.493760px;}
.ws7b{word-spacing:-16.473600px;}
.ws79{word-spacing:-16.410240px;}
.wsac{word-spacing:-16.254720px;}
.ws4a{word-spacing:-16.220160px;}
.ws49{word-spacing:-16.156800px;}
.ws111{word-spacing:-16.153920px;}
.wsab{word-spacing:-16.135200px;}
.ws113{word-spacing:-16.040160px;}
.ws93{word-spacing:-16.030080px;}
.wse0{word-spacing:-15.966720px;}
.wsa7{word-spacing:-15.955920px;}
.ws12e{word-spacing:-15.876000px;}
.ws10e{word-spacing:-15.869520px;}
.ws7a{word-spacing:-15.840000px;}
.wsa9{word-spacing:-15.836400px;}
.ws110{word-spacing:-15.812640px;}
.ws90{word-spacing:-15.776640px;}
.ws118{word-spacing:-15.755760px;}
.wsaa{word-spacing:-15.657120px;}
.ws115{word-spacing:-15.642000px;}
.wsad{word-spacing:-15.597360px;}
.ws10f{word-spacing:-15.585120px;}
.wsaf{word-spacing:-15.537600px;}
.ws112{word-spacing:-15.471360px;}
.ws12d{word-spacing:-15.228000px;}
.ws114{word-spacing:-15.130080px;}
.ws4{word-spacing:-15.012000px;}
.ws116{word-spacing:-14.731920px;}
.ws3{word-spacing:-14.526000px;}
.ws117{word-spacing:-14.447520px;}
.ws9{word-spacing:-14.418000px;}
.wsc{word-spacing:-14.310000px;}
.wsa{word-spacing:-14.256000px;}
.wsd{word-spacing:-14.202000px;}
.ws12f{word-spacing:-14.040000px;}
.ws5{word-spacing:-13.932000px;}
.ws6{word-spacing:-13.770000px;}
.ws7{word-spacing:-13.716000px;}
.wsb{word-spacing:-13.446000px;}
.wsd1{word-spacing:-4.688640px;}
.wsa2{word-spacing:-3.991680px;}
.ws54{word-spacing:-3.928320px;}
.ws35{word-spacing:-3.726000px;}
.ws10a{word-spacing:-3.358080px;}
.ws9c{word-spacing:-3.294720px;}
.ws55{word-spacing:-3.231360px;}
.ws10b{word-spacing:-3.041280px;}
.wsee{word-spacing:-2.977920px;}
.ws1c{word-spacing:-2.970000px;}
.ws125{word-spacing:-2.900880px;}
.ws73{word-spacing:-2.534400px;}
.wsa6{word-spacing:-2.471040px;}
.ws17{word-spacing:-2.268000px;}
.ws11d{word-spacing:-2.161440px;}
.ws38{word-spacing:-2.160000px;}
.wsf1{word-spacing:-2.090880px;}
.ws7d{word-spacing:-1.837440px;}
.ws69{word-spacing:-1.774080px;}
.ws31{word-spacing:-1.566000px;}
.wsef{word-spacing:-1.520640px;}
.ws11e{word-spacing:-1.478880px;}
.ws3b{word-spacing:-1.458000px;}
.ws103{word-spacing:-1.457280px;}
.ws8b{word-spacing:-1.330560px;}
.ws5f{word-spacing:-1.077120px;}
.ws4b{word-spacing:-0.910080px;}
.ws3d{word-spacing:-0.810000px;}
.wsf0{word-spacing:-0.796320px;}
.wsbe{word-spacing:-0.776880px;}
.ws5c{word-spacing:-0.760320px;}
.ws11c{word-spacing:-0.739440px;}
.wsc0{word-spacing:-0.657360px;}
.ws9d{word-spacing:-0.506880px;}
.wsb9{word-spacing:-0.443520px;}
.ws85{word-spacing:-0.380160px;}
.ws129{word-spacing:-0.341280px;}
.ws14{word-spacing:-0.336960px;}
.ws5a{word-spacing:-0.316800px;}
.wsbc{word-spacing:-0.298800px;}
.wscb{word-spacing:-0.284400px;}
.wsca{word-spacing:-0.227520px;}
.ws6f{word-spacing:-0.190080px;}
.wse2{word-spacing:-0.149760px;}
.ws15{word-spacing:-0.108000px;}
.wscf{word-spacing:-0.063360px;}
.wsae{word-spacing:-0.059760px;}
.ws119{word-spacing:-0.056880px;}
.ws23{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsbd{word-spacing:0.059760px;}
.ws8c{word-spacing:0.063360px;}
.ws13{word-spacing:0.084240px;}
.ws137{word-spacing:0.162000px;}
.wsc2{word-spacing:0.179280px;}
.ws83{word-spacing:0.190080px;}
.wsc5{word-spacing:0.204480px;}
.wsc6{word-spacing:0.255600px;}
.wsb7{word-spacing:0.316800px;}
.ws78{word-spacing:0.336960px;}
.ws128{word-spacing:0.341280px;}
.wsc4{word-spacing:0.357840px;}
.ws1d{word-spacing:0.378000px;}
.ws6b{word-spacing:0.380160px;}
.ws12{word-spacing:0.421200px;}
.wsba{word-spacing:0.478080px;}
.ws16{word-spacing:0.486000px;}
.wsdd{word-spacing:0.506880px;}
.ws126{word-spacing:0.511920px;}
.ws10{word-spacing:0.540000px;}
.wsc3{word-spacing:0.562320px;}
.wsf3{word-spacing:0.570240px;}
.ws1a{word-spacing:0.594000px;}
.wsf9{word-spacing:0.633600px;}
.ws22{word-spacing:0.648000px;}
.wsb1{word-spacing:0.673920px;}
.ws124{word-spacing:0.682560px;}
.ws4c{word-spacing:0.696960px;}
.wsd5{word-spacing:0.699840px;}
.ws18{word-spacing:0.702000px;}
.wsd4{word-spacing:0.758160px;}
.wsbf{word-spacing:0.776880px;}
.wsbb{word-spacing:0.836640px;}
.ws2a{word-spacing:0.864000px;}
.ws100{word-spacing:0.887040px;}
.ws86{word-spacing:0.950400px;}
.ws98{word-spacing:1.010880px;}
.ws52{word-spacing:1.013760px;}
.wsc1{word-spacing:1.075680px;}
.ws56{word-spacing:1.077120px;}
.ws36{word-spacing:1.080000px;}
.ws8f{word-spacing:1.140480px;}
.wsdc{word-spacing:1.203840px;}
.wsf4{word-spacing:1.267200px;}
.ws11{word-spacing:1.296000px;}
.ws29{word-spacing:1.350000px;}
.ws80{word-spacing:1.393920px;}
.ws2d{word-spacing:1.404000px;}
.ws11a{word-spacing:1.422000px;}
.wsb8{word-spacing:1.457280px;}
.ws130{word-spacing:1.458000px;}
.wse1{word-spacing:1.520640px;}
.ws10d{word-spacing:1.584000px;}
.ws84{word-spacing:1.774080px;}
.ws51{word-spacing:1.837440px;}
.wsff{word-spacing:1.964160px;}
.ws131{word-spacing:2.052000px;}
.wsce{word-spacing:2.154240px;}
.ws11b{word-spacing:2.161440px;}
.wsd6{word-spacing:2.217600px;}
.ws105{word-spacing:2.407680px;}
.wse9{word-spacing:2.471040px;}
.ws74{word-spacing:2.534400px;}
.ws3e{word-spacing:2.754000px;}
.ws102{word-spacing:2.787840px;}
.ws132{word-spacing:2.808000px;}
.ws39{word-spacing:2.862000px;}
.wsf6{word-spacing:3.104640px;}
.ws6e{word-spacing:3.231360px;}
.ws33{word-spacing:3.510000px;}
.ws12c{word-spacing:3.583440px;}
.ws97{word-spacing:3.674880px;}
.wsa4{word-spacing:3.864960px;}
.ws88{word-spacing:3.928320px;}
.ws53{word-spacing:3.991680px;}
.ws106{word-spacing:4.181760px;}
.ws37{word-spacing:4.212000px;}
.ws34{word-spacing:4.320000px;}
.ws12a{word-spacing:4.322880px;}
.wsb2{word-spacing:4.371840px;}
.ws12b{word-spacing:4.436640px;}
.ws5d{word-spacing:4.625280px;}
.ws4e{word-spacing:4.688640px;}
.ws20{word-spacing:4.914000px;}
.ws21{word-spacing:4.968000px;}
.ws5e{word-spacing:5.005440px;}
.wsd8{word-spacing:5.068800px;}
.ws58{word-spacing:5.385600px;}
.ws1b{word-spacing:5.670000px;}
.ws8e{word-spacing:6.082560px;}
.ws71{word-spacing:6.145920px;}
.ws1f{word-spacing:6.372000px;}
.wsde{word-spacing:6.462720px;}
.ws67{word-spacing:6.842880px;}
.ws24{word-spacing:7.074000px;}
.ws25{word-spacing:7.128000px;}
.ws101{word-spacing:7.476480px;}
.ws9b{word-spacing:7.539840px;}
.ws75{word-spacing:7.603200px;}
.ws2f{word-spacing:7.830000px;}
.wsec{word-spacing:8.236800px;}
.ws63{word-spacing:8.300160px;}
.ws30{word-spacing:8.532000px;}
.ws123{word-spacing:8.645760px;}
.ws72{word-spacing:8.997120px;}
.ws19{word-spacing:9.234000px;}
.ws95{word-spacing:9.694080px;}
.ws66{word-spacing:9.757440px;}
.ws136{word-spacing:9.990000px;}
.ws107{word-spacing:10.391040px;}
.ws4f{word-spacing:10.454400px;}
.ws27{word-spacing:10.692000px;}
.ws26{word-spacing:10.746000px;}
.ws3f{word-spacing:10.800000px;}
.ws28{word-spacing:11.016000px;}
.ws87{word-spacing:11.151360px;}
.ws104{word-spacing:11.468160px;}
.wsf5{word-spacing:11.721600px;}
.ws109{word-spacing:11.784960px;}
.wsa1{word-spacing:11.848320px;}
.ws57{word-spacing:11.911680px;}
.wsf2{word-spacing:12.481920px;}
.wsd0{word-spacing:12.545280px;}
.ws65{word-spacing:12.608640px;}
.wsdb{word-spacing:12.798720px;}
.ws133{word-spacing:12.852000px;}
.ws6c{word-spacing:13.305600px;}
.ws121{word-spacing:13.366800px;}
.ws134{word-spacing:13.608000px;}
.wsb6{word-spacing:13.622400px;}
.ws120{word-spacing:13.651200px;}
.wsfb{word-spacing:13.875840px;}
.wse8{word-spacing:14.002560px;}
.ws64{word-spacing:14.065920px;}
.ws1e{word-spacing:14.256000px;}
.ws135{word-spacing:14.526000px;}
.wsfe{word-spacing:14.699520px;}
.ws6d{word-spacing:14.762880px;}
.ws7c{word-spacing:14.826240px;}
.wsfd{word-spacing:15.333120px;}
.ws5b{word-spacing:15.459840px;}
.ws59{word-spacing:15.523200px;}
.wsed{word-spacing:15.840000px;}
.wsda{word-spacing:15.903360px;}
.wseb{word-spacing:16.156800px;}
.ws8a{word-spacing:16.220160px;}
.ws2e{word-spacing:16.470000px;}
.wse5{word-spacing:16.473600px;}
.ws6a{word-spacing:16.917120px;}
.wsa0{word-spacing:17.297280px;}
.wsd7{word-spacing:17.360640px;}
.ws108{word-spacing:17.550720px;}
.ws8d{word-spacing:17.614080px;}
.ws89{word-spacing:17.677440px;}
.ws3c{word-spacing:17.874000px;}
.ws82{word-spacing:18.374400px;}
.ws2b{word-spacing:18.738000px;}
.ws10c{word-spacing:18.944640px;}
.wsd9{word-spacing:19.071360px;}
.ws9f{word-spacing:19.768320px;}
.ws4d{word-spacing:19.831680px;}
.wsfc{word-spacing:20.338560px;}
.ws9a{word-spacing:20.465280px;}
.wsb5{word-spacing:20.528640px;}
.ws9e{word-spacing:21.225600px;}
.ws60{word-spacing:21.985920px;}
.ws76{word-spacing:22.682880px;}
.wsb3{word-spacing:23.379840px;}
.wsd2{word-spacing:23.443200px;}
.ws81{word-spacing:24.140160px;}
.wsb4{word-spacing:24.837120px;}
.ws68{word-spacing:25.597440px;}
.wsa5{word-spacing:26.294400px;}
.ws2c{word-spacing:26.622000px;}
.wse3{word-spacing:26.991360px;}
.ws32{word-spacing:27.270000px;}
.wsf8{word-spacing:27.688320px;}
.ws61{word-spacing:27.751680px;}
.ws3a{word-spacing:28.080000px;}
.ws7e{word-spacing:28.448640px;}
.ws96{word-spacing:29.145600px;}
.ws11f{word-spacing:29.520720px;}
.wscd{word-spacing:29.842560px;}
.wse4{word-spacing:29.905920px;}
.wsd3{word-spacing:30.602880px;}
.wsa3{word-spacing:31.363200px;}
.ws77{word-spacing:32.060160px;}
.ws99{word-spacing:32.757120px;}
.ws7f{word-spacing:34.214400px;}
.ws50{word-spacing:34.911360px;}
.ws62{word-spacing:35.671680px;}
.wsf7{word-spacing:42.831360px;}
.ws70{word-spacing:44.985600px;}
.wsea{word-spacing:48.597120px;}
.wscc{word-spacing:49.357440px;}
.ws127{word-spacing:59.041440px;}
.ws122{word-spacing:68.369760px;}
.wse6{word-spacing:71.596800px;}
.wse7{word-spacing:72.357120px;}
._1d{margin-left:-21.934800px;}
._1e{margin-left:-13.854960px;}
._1b{margin-left:-11.190960px;}
._1a{margin-left:-5.519520px;}
._d{margin-left:-4.212000px;}
._4{margin-left:-3.024000px;}
._2{margin-left:-1.080000px;}
._1{width:1.112400px;}
._3{width:2.278800px;}
._c{width:3.618000px;}
._5{width:4.860000px;}
._7{width:6.534000px;}
._a{width:7.884000px;}
._1c{width:9.190080px;}
._15{width:10.351440px;}
._16{width:12.294720px;}
._6{width:13.878000px;}
._17{width:15.156000px;}
._e{width:16.524000px;}
._8{width:18.057600px;}
._11{width:19.327680px;}
._13{width:21.732480px;}
._14{width:22.872960px;}
._19{width:24.330240px;}
._9{width:25.347600px;}
._b{width:26.460000px;}
._1f{width:29.427120px;}
._20{width:32.567040px;}
._12{width:34.473600px;}
._f{width:40.716000px;}
._18{width:48.026880px;}
._22{width:58.130640px;}
._23{width:59.692320px;}
._21{width:126.387360px;}
._0{width:351.014400px;}
._24{width:939.060000px;}
._10{width:1372.343760px;}
.fc3{color:rgb(59,56,56);}
.fc2{color:transparent;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsd{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fsc{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fse{font-size:74.880000px;}
.fs9{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:15.480000px;}
.y7b{bottom:18.180000px;}
.y6{bottom:35.925007px;}
.y25{bottom:49.860000px;}
.y3ee{bottom:50.402880px;}
.y5{bottom:66.525004px;}
.y417{bottom:80.640000px;}
.y341{bottom:88.306560px;}
.y314{bottom:89.311680px;}
.y1de{bottom:90.007200px;}
.y20a{bottom:90.511200px;}
.y100{bottom:90.889920px;}
.y39c{bottom:91.533600px;}
.y12e{bottom:92.062080px;}
.y36e{bottom:93.054240px;}
.y145{bottom:93.591360px;}
.y1ba{bottom:93.960000px;}
.y51{bottom:95.688000px;}
.y77{bottom:95.760000px;}
.y4{bottom:97.125005px;}
.y2f1{bottom:99.453600px;}
.y2c4{bottom:100.435680px;}
.y416{bottom:106.735500px;}
.yd3{bottom:107.000640px;}
.ya8{bottom:108.623520px;}
.y21f{bottom:108.650880px;}
.y24c{bottom:108.936000px;}
.y26b{bottom:109.284480px;}
.y340{bottom:110.625120px;}
.y298{bottom:111.280320px;}
.y313{bottom:111.994560px;}
.y1dd{bottom:112.500000px;}
.y209{bottom:113.004000px;}
.yff{bottom:113.034240px;}
.y50{bottom:113.508000px;}
.y76{bottom:113.580000px;}
.y39b{bottom:113.677920px;}
.y12d{bottom:114.554880px;}
.y144{bottom:115.735680px;}
.y36d{bottom:115.737120px;}
.y2f0{bottom:121.946400px;}
.y2c3{bottom:122.928480px;}
.y415{bottom:124.015500px;}
.yd2{bottom:129.493440px;}
.ya7{bottom:131.116320px;}
.y21e{bottom:131.143680px;}
.y4f{bottom:131.152500px;}
.y24b{bottom:131.428800px;}
.y75{bottom:131.575500px;}
.y26a{bottom:131.777280px;}
.y33f{bottom:132.943680px;}
.y1b0{bottom:133.740000px;}
.y297{bottom:134.137440px;}
.y312{bottom:134.851680px;}
.y1dc{bottom:134.992800px;}
.yfe{bottom:135.352800px;}
.y208{bottom:135.496800px;}
.y39a{bottom:135.996480px;}
.y12c{bottom:137.047680px;}
.y143{bottom:137.689920px;}
.y36c{bottom:138.420000px;}
.y23{bottom:139.264499px;}
.y414{bottom:141.295500px;}
.y2ef{bottom:144.439200px;}
.y2c2{bottom:145.421280px;}
.y4e{bottom:149.148000px;}
.y74{bottom:149.395500px;}
.yd1{bottom:151.986240px;}
.y1af{bottom:153.000000px;}
.ya6{bottom:153.609120px;}
.y21d{bottom:153.636480px;}
.y24a{bottom:153.921600px;}
.y269{bottom:154.270080px;}
.y33e{bottom:155.262240px;}
.y296{bottom:156.994560px;}
.y1db{bottom:157.485600px;}
.yfd{bottom:157.497120px;}
.y311{bottom:157.708800px;}
.y207{bottom:157.989600px;}
.y399{bottom:158.140800px;}
.y413{bottom:158.575500px;}
.y12b{bottom:159.540480px;}
.y142{bottom:159.834240px;}
.y36b{bottom:161.102880px;}
.y4d{bottom:166.792500px;}
.y2ee{bottom:166.932000px;}
.y73{bottom:167.215500px;}
.y1b9{bottom:172.440000px;}
.yd0{bottom:174.479040px;}
.ya5{bottom:176.101920px;}
.y249{bottom:176.414400px;}
.y268{bottom:176.762880px;}
.y2c1{bottom:176.927040px;}
.y1ae{bottom:176.940000px;}
.y1b4{bottom:177.120000px;}
.y33d{bottom:177.755040px;}
.yfc{bottom:179.641440px;}
.y295{bottom:179.677440px;}
.y1da{bottom:179.978400px;}
.y398{bottom:180.285120px;}
.y310{bottom:180.391680px;}
.y206{bottom:180.482400px;}
.y36a{bottom:183.785760px;}
.y412{bottom:184.860000px;}
.y72{bottom:185.035500px;}
.y21c{bottom:185.142240px;}
.y2ed{bottom:189.424800px;}
.y141{bottom:190.801440px;}
.y12a{bottom:191.220480px;}
.y4c{bottom:191.808000px;}
.y1b8{bottom:192.240000px;}
.y1ad{bottom:196.740000px;}
.y1a{bottom:196.933500px;}
.ycf{bottom:196.971840px;}
.ya4{bottom:198.594720px;}
.y248{bottom:198.907200px;}
.y267{bottom:199.255680px;}
.y2c0{bottom:199.419840px;}
.y33c{bottom:200.073600px;}
.yfb{bottom:202.106880px;}
.y1d9{bottom:202.471200px;}
.y294{bottom:202.534560px;}
.y397{bottom:202.603680px;}
.y205{bottom:202.975200px;}
.y71{bottom:203.220000px;}
.y30f{bottom:203.248800px;}
.y369{bottom:206.278560px;}
.y21b{bottom:207.635040px;}
.y4b{bottom:209.452500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y411{bottom:211.144500px;}
.y2ec{bottom:211.917600px;}
.y140{bottom:212.945760px;}
.y3ec{bottom:214.259040px;}
.y16d{bottom:214.767360px;}
.y1ac{bottom:216.180000px;}
.yce{bottom:219.464640px;}
.y70{bottom:221.040000px;}
.ya3{bottom:221.087520px;}
.y247{bottom:221.400000px;}
.y266{bottom:221.748480px;}
.y2bf{bottom:221.912640px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y33b{bottom:222.392160px;}
.yfa{bottom:224.251200px;}
.y396{bottom:224.748000px;}
.y1d8{bottom:224.964000px;}
.y293{bottom:225.391680px;}
.y204{bottom:225.468000px;}
.y30e{bottom:226.105920px;}
.y4a{bottom:227.272500px;}
.y410{bottom:228.249000px;}
.y129{bottom:228.666240px;}
.y368{bottom:228.961440px;}
.y21a{bottom:230.127840px;}
.y3eb{bottom:232.261560px;}
.y2eb{bottom:234.410400px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y13f{bottom:234.900000px;}
.y1ab{bottom:235.620000px;}
.y16c{bottom:237.260160px;}
.y1b3{bottom:239.940000px;}
.ycd{bottom:241.957440px;}
.y246{bottom:243.892800px;}
.y265{bottom:244.241280px;}
.y2be{bottom:244.405440px;}
.y33a{bottom:244.710720px;}
.y49{bottom:244.917000px;}
.y6f{bottom:245.943000px;}
.yf9{bottom:246.395520px;}
.y395{bottom:246.892320px;}
.y1d7{bottom:247.456800px;}
.y203{bottom:247.960800px;}
.y292{bottom:248.074560px;}
.y30d{bottom:248.788800px;}
.y40f{bottom:250.024500px;}
.y3ea{bottom:250.264080px;}
.y128{bottom:250.810560px;}
.y367{bottom:251.644320px;}
.ya2{bottom:252.593280px;}
.y219{bottom:252.620640px;}
.y2ea{bottom:256.903200px;}
.y1aa{bottom:259.560000px;}
.y1b2{bottom:259.740000px;}
.y16b{bottom:259.752960px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y48{bottom:262.561500px;}
.y6e{bottom:263.763000px;}
.ycc{bottom:264.450240px;}
.y245{bottom:266.385600px;}
.y264{bottom:266.734080px;}
.y2bd{bottom:266.898240px;}
.y13e{bottom:266.942160px;}
.y339{bottom:267.029280px;}
.yf8{bottom:268.714080px;}
.y394{bottom:269.210880px;}
.y1d6{bottom:269.949600px;}
.y202{bottom:270.453600px;}
.y291{bottom:270.931680px;}
.y30c{bottom:271.645920px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y127{bottom:273.129120px;}
.y366{bottom:274.327200px;}
.ya1{bottom:275.086080px;}
.y218{bottom:275.113440px;}
.y40e{bottom:276.309000px;}
.y3e9{bottom:277.267860px;}
.y1b7{bottom:279.000000px;}
.y1a9{bottom:279.180000px;}
.y2e9{bottom:279.396000px;}
.y47{bottom:280.206000px;}
.y6d{bottom:281.758500px;}
.y16a{bottom:282.245760px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.ycb{bottom:286.943040px;}
.y244{bottom:288.878400px;}
.y338{bottom:289.347840px;}
.y2bc{bottom:289.391040px;}
.yf7{bottom:290.858400px;}
.y393{bottom:291.355200px;}
.y1d5{bottom:292.442400px;}
.y201{bottom:292.946400px;}
.y290{bottom:293.788800px;}
.y13d{bottom:293.941080px;}
.y40d{bottom:294.304500px;}
.y30b{bottom:294.503040px;}
.y126{bottom:295.273440px;}
.y365{bottom:297.010080px;}
.ya0{bottom:297.578880px;}
.y217{bottom:297.606240px;}
.y46{bottom:298.026000px;}
.y263{bottom:298.239840px;}
.y1a8{bottom:298.620000px;}
.y6c{bottom:299.578500px;}
.y2e8{bottom:301.888800px;}
.y1b1{bottom:302.940000px;}
.y3e8{bottom:304.271640px;}
.y169{bottom:304.738560px;}
.yca{bottom:309.435840px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y243{bottom:311.371200px;}
.y337{bottom:311.840640px;}
.y2bb{bottom:311.883840px;}
.y40c{bottom:312.300000px;}
.yf6{bottom:313.002720px;}
.y392{bottom:313.499520px;}
.y200{bottom:315.439200px;}
.y45{bottom:316.021500px;}
.y28f{bottom:316.471680px;}
.y30a{bottom:317.185920px;}
.y125{bottom:317.417760px;}
.y6b{bottom:317.763000px;}
.y1b6{bottom:318.240000px;}
.y364{bottom:319.692960px;}
.y9f{bottom:320.071680px;}
.y216{bottom:320.099040px;}
.y262{bottom:320.384160px;}
.y13c{bottom:320.940000px;}
.y3e7{bottom:322.274160px;}
.y1a7{bottom:322.560000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1d4{bottom:323.948160px;}
.y2e7{bottom:324.381600px;}
.y168{bottom:327.231360px;}
.yc9{bottom:331.928640px;}
.y44{bottom:333.666000px;}
.y242{bottom:333.864000px;}
.y2ba{bottom:334.376640px;}
.y6a{bottom:335.583000px;}
.y391{bottom:335.818080px;}
.y1b5{bottom:337.680000px;}
.y1ff{bottom:337.932000px;}
.y28e{bottom:339.328800px;}
.y124{bottom:339.736320px;}
.y40b{bottom:340.020000px;}
.y309{bottom:340.043040px;}
.y1a6{bottom:342.000000px;}
.y363{bottom:342.185760px;}
.y9e{bottom:342.564480px;}
.y215{bottom:342.591840px;}
.y261{bottom:342.702720px;}
.y336{bottom:343.156320px;}
.yf5{bottom:344.318400px;}
.y1d3{bottom:346.266720px;}
.y2e6{bottom:346.874400px;}
.y11{bottom:348.133500px;}
.y3e6{bottom:349.277940px;}
.y167{bottom:349.724160px;}
.yc8{bottom:354.421440px;}
.y241{bottom:356.356800px;}
.y2b9{bottom:356.869440px;}
.y390{bottom:357.962400px;}
.y43{bottom:358.506000px;}
.y1fe{bottom:360.424800px;}
.y69{bottom:360.598500px;}
.y1a5{bottom:361.440000px;}
.y123{bottom:361.880640px;}
.y28d{bottom:362.185920px;}
.y308{bottom:362.900160px;}
.y260{bottom:364.847040px;}
.y362{bottom:364.868640px;}
.y9d{bottom:365.057280px;}
.y13b{bottom:365.084640px;}
.y335{bottom:365.474880px;}
.y3e5{bottom:367.280460px;}
.y1d2{bottom:368.585280px;}
.y2e5{bottom:369.367200px;}
.y166{bottom:372.216960px;}
.y40a{bottom:375.453000px;}
.y42{bottom:376.326000px;}
.yc7{bottom:376.914240px;}
.y68{bottom:378.243000px;}
.y240{bottom:378.849600px;}
.y2b8{bottom:379.362240px;}
.y1a4{bottom:381.240000px;}
.yf4{bottom:381.764160px;}
.y1fd{bottom:382.917600px;}
.y122{bottom:384.024960px;}
.y28c{bottom:384.868800px;}
.y3e4{bottom:385.282980px;}
.y307{bottom:385.583040px;}
.y10{bottom:386.785499px;}
.y25f{bottom:386.991360px;}
.y9c{bottom:387.550080px;}
.y361{bottom:387.551520px;}
.y13a{bottom:387.577440px;}
.y334{bottom:387.793440px;}
.y38f{bottom:389.103840px;}
.y1d1{bottom:391.078080px;}
.y2e4{bottom:391.860000px;}
.y409{bottom:393.448500px;}
.y41{bottom:393.970500px;}
.y165{bottom:394.709760px;}
.y67{bottom:396.063000px;}
.y1a3{bottom:400.680000px;}
.y23f{bottom:401.342400px;}
.y2b7{bottom:401.855040px;}
.yf3{bottom:403.908480px;}
.y1fc{bottom:405.410400px;}
.y121{bottom:406.343520px;}
.y28b{bottom:407.725920px;}
.yf{bottom:408.044999px;}
.yc6{bottom:408.420000px;}
.y306{bottom:408.440160px;}
.y25e{bottom:409.309920px;}
.y9b{bottom:410.042880px;}
.y139{bottom:410.070240px;}
.y333{bottom:410.112000px;}
.y360{bottom:410.234400px;}
.y408{bottom:411.444000px;}
.y38e{bottom:411.596640px;}
.y40{bottom:411.615000px;}
.y3e3{bottom:412.286760px;}
.y1d0{bottom:413.396640px;}
.y66{bottom:413.707500px;}
.y164{bottom:417.202560px;}
.y23e{bottom:423.835200px;}
.y2e3{bottom:424.087920px;}
.y2b6{bottom:424.347840px;}
.yf2{bottom:425.862720px;}
.y1fb{bottom:427.903200px;}
.y120{bottom:428.487840px;}
.y3f{bottom:429.435000px;}
.y1a2{bottom:429.840000px;}
.y3e2{bottom:430.289280px;}
.y28a{bottom:430.583040px;}
.y305{bottom:431.297280px;}
.y65{bottom:431.352000px;}
.y25d{bottom:431.454240px;}
.y332{bottom:432.430560px;}
.y9a{bottom:432.535680px;}
.y138{bottom:432.563040px;}
.y35f{bottom:432.917280px;}
.y38d{bottom:433.915200px;}
.y1cf{bottom:435.715200px;}
.y163{bottom:439.695360px;}
.y23d{bottom:446.328000px;}
.y2e2{bottom:446.580000px;}
.y2b5{bottom:446.840640px;}
.yc5{bottom:446.942160px;}
.y3e{bottom:447.079500px;}
.y407{bottom:447.448500px;}
.yf1{bottom:448.007040px;}
.y3e1{bottom:448.291800px;}
.y64{bottom:449.172000px;}
.y1a1{bottom:449.460000px;}
.y1fa{bottom:450.396000px;}
.y11f{bottom:450.632160px;}
.y289{bottom:453.265920px;}
.y25c{bottom:453.598560px;}
.y304{bottom:453.980160px;}
.y331{bottom:454.923360px;}
.y137{bottom:455.055840px;}
.y35e{bottom:455.600160px;}
.y38c{bottom:456.408000px;}
.y1ce{bottom:458.033760px;}
.y162{bottom:462.188160px;}
.y99{bottom:464.041440px;}
.y406{bottom:464.904000px;}
.y3e0{bottom:466.294320px;}
.y63{bottom:466.816500px;}
.y23c{bottom:468.820800px;}
.y1a0{bottom:468.900000px;}
.y2b4{bottom:469.333440px;}
.yf0{bottom:469.961280px;}
.y3d{bottom:472.284000px;}
.y1f9{bottom:472.888800px;}
.y11e{bottom:472.950720px;}
.yc4{bottom:473.941080px;}
.y288{bottom:476.123040px;}
.y303{bottom:476.837280px;}
.y330{bottom:477.241920px;}
.y136{bottom:477.548640px;}
.y35d{bottom:478.092960px;}
.y38b{bottom:478.726560px;}
.y1cd{bottom:480.352320px;}
.y405{bottom:482.008500px;}
.y62{bottom:484.461000px;}
.y161{bottom:484.680960px;}
.y25b{bottom:484.740000px;}
.ye{bottom:484.864502px;}
.y98{bottom:486.534240px;}
.y2e1{bottom:486.741600px;}
.y3c{bottom:489.928500px;}
.y23b{bottom:491.313600px;}
.y2b3{bottom:491.826240px;}
.yef{bottom:492.105600px;}
.y3df{bottom:493.298100px;}
.y11d{bottom:495.095040px;}
.y1f8{bottom:495.381600px;}
.y19f{bottom:498.240000px;}
.y287{bottom:498.980160px;}
.y404{bottom:499.113000px;}
.y32f{bottom:499.560480px;}
.y302{bottom:499.694400px;}
.y135{bottom:500.041440px;}
.y35c{bottom:500.775840px;}
.yc3{bottom:500.940000px;}
.y38a{bottom:501.219360px;}
.y61{bottom:502.456500px;}
.y1cc{bottom:502.670880px;}
.yd{bottom:502.864502px;}
.y25a{bottom:507.058560px;}
.y160{bottom:507.173760px;}
.y3b{bottom:507.748500px;}
.y97{bottom:509.027040px;}
.y2e0{bottom:509.234400px;}
.y3de{bottom:511.300620px;}
.y23a{bottom:513.806400px;}
.yee{bottom:514.059840px;}
.y2b2{bottom:514.319040px;}
.y11c{bottom:517.239360px;}
.y1f7{bottom:517.874400px;}
.y60{bottom:520.101000px;}
.yc{bottom:520.864502px;}
.y286{bottom:521.663040px;}
.y32e{bottom:521.879040px;}
.y301{bottom:522.377280px;}
.y134{bottom:522.534240px;}
.y35b{bottom:523.458720px;}
.y389{bottom:523.712160px;}
.y1cb{bottom:525.163680px;}
.y3a{bottom:525.393000px;}
.y259{bottom:529.377120px;}
.y15f{bottom:529.666560px;}
.y19e{bottom:531.470880px;}
.y96{bottom:531.519840px;}
.y2df{bottom:531.727200px;}
.y239{bottom:536.299200px;}
.y5f{bottom:537.921000px;}
.y3dd{bottom:538.304400px;}
.yb{bottom:538.864499px;}
.y11b{bottom:539.557920px;}
.y1f6{bottom:540.367200px;}
.y39{bottom:543.037500px;}
.y32d{bottom:544.197600px;}
.y285{bottom:544.520160px;}
.yed{bottom:545.027040px;}
.y300{bottom:545.234400px;}
.yc2{bottom:545.284800px;}
.y2b1{bottom:545.824800px;}
.y388{bottom:546.030720px;}
.y35a{bottom:546.141600px;}
.y1ca{bottom:547.482240px;}
.y258{bottom:551.695680px;}
.y15e{bottom:552.159360px;}
.y95{bottom:554.012640px;}
.y2de{bottom:554.220000px;}
.y5e{bottom:555.565500px;}
.y3dc{bottom:556.306920px;}
.ya{bottom:556.864499px;}
.y238{bottom:558.792000px;}
.y38{bottom:560.857500px;}
.y11a{bottom:561.702240px;}
.y1f5{bottom:562.860000px;}
.y32c{bottom:566.516160px;}
.y284{bottom:567.377280px;}
.y184{bottom:567.491040px;}
.yec{bottom:567.519840px;}
.y19d{bottom:567.649440px;}
.yc1{bottom:567.777600px;}
.y2ff{bottom:568.091520px;}
.y2b0{bottom:568.317600px;}
.y387{bottom:568.523520px;}
.y359{bottom:568.824480px;}
.y1c9{bottom:569.800800px;}
.y257{bottom:573.840000px;}
.y15d{bottom:574.652160px;}
.y94{bottom:576.505440px;}
.y2dd{bottom:576.712800px;}
.y5d{bottom:580.581000px;}
.y237{bottom:581.284800px;}
.y3db{bottom:583.310700px;}
.y119{bottom:583.846560px;}
.y37{bottom:587.493000px;}
.y403{bottom:588.577500px;}
.y32b{bottom:589.008960px;}
.y183{bottom:589.983840px;}
.yeb{bottom:590.012640px;}
.y19c{bottom:590.142240px;}
.yc0{bottom:590.270400px;}
.y2fe{bottom:590.774400px;}
.y2af{bottom:590.810400px;}
.y386{bottom:590.842080px;}
.y358{bottom:591.507360px;}
.y1c8{bottom:592.119360px;}
.y1f4{bottom:595.087920px;}
.y256{bottom:596.158560px;}
.y15c{bottom:597.144960px;}
.y5c{bottom:598.225500px;}
.y93{bottom:598.998240px;}
.y283{bottom:599.057280px;}
.y2dc{bottom:599.205600px;}
.y3da{bottom:601.313220px;}
.y236{bottom:603.777600px;}
.y36{bottom:605.137500px;}
.y118{bottom:606.165120px;}
.y402{bottom:606.573000px;}
.y32a{bottom:611.327520px;}
.y182{bottom:612.476640px;}
.yea{bottom:612.505440px;}
.y19b{bottom:612.635040px;}
.ybf{bottom:612.763200px;}
.y2ae{bottom:613.303200px;}
.y385{bottom:613.334880px;}
.y2fd{bottom:613.631520px;}
.y357{bottom:614.000160px;}
.y1c7{bottom:614.437920px;}
.y5b{bottom:615.870000px;}
.y1f3{bottom:617.580000px;}
.y255{bottom:618.477120px;}
.y3d9{bottom:619.315740px;}
.y15b{bottom:619.637760px;}
.y92{bottom:621.491040px;}
.y282{bottom:621.550080px;}
.y2db{bottom:621.698400px;}
.y35{bottom:622.957500px;}
.y235{bottom:626.270400px;}
.y117{bottom:628.309440px;}
.y329{bottom:633.646080px;}
.y5a{bottom:633.690000px;}
.y181{bottom:634.969440px;}
.ye9{bottom:634.998240px;}
.y19a{bottom:635.127840px;}
.ybe{bottom:635.256000px;}
.y384{bottom:635.653440px;}
.y2ad{bottom:635.796000px;}
.y2fc{bottom:636.488640px;}
.y356{bottom:636.683040px;}
.y1c6{bottom:636.756480px;}
.y3d8{bottom:637.318260px;}
.y34{bottom:640.602000px;}
.y254{bottom:640.795680px;}
.y15a{bottom:642.130560px;}
.y91{bottom:643.983840px;}
.y281{bottom:644.042880px;}
.y2da{bottom:644.191200px;}
.y9{bottom:645.510000px;}
.y234{bottom:648.763200px;}
.y116{bottom:650.453760px;}
.y59{bottom:651.334500px;}
.y328{bottom:655.964640px;}
.y1f2{bottom:657.381600px;}
.y180{bottom:657.462240px;}
.ye8{bottom:657.491040px;}
.ybd{bottom:657.748800px;}
.y383{bottom:658.146240px;}
.y33{bottom:658.246500px;}
.y2ac{bottom:658.288800px;}
.y2fb{bottom:659.171520px;}
.y1c5{bottom:659.249280px;}
.y355{bottom:659.365920px;}
.y253{bottom:662.940000px;}
.y3d7{bottom:664.322040px;}
.y159{bottom:664.623360px;}
.y90{bottom:666.476640px;}
.y280{bottom:666.535680px;}
.y199{bottom:666.633600px;}
.y2d9{bottom:666.684000px;}
.y8{bottom:666.771000px;}
.y58{bottom:669.330000px;}
.y115{bottom:672.772320px;}
.y32{bottom:676.066500px;}
.y327{bottom:678.283200px;}
.y1f1{bottom:679.874400px;}
.y17f{bottom:679.955040px;}
.ye7{bottom:679.983840px;}
.ybc{bottom:680.241600px;}
.y233{bottom:680.268960px;}
.y382{bottom:680.639040px;}
.y2ab{bottom:680.781600px;}
.y1c4{bottom:681.567840px;}
.y2fa{bottom:682.028640px;}
.y354{bottom:682.048800px;}
.y3d6{bottom:682.324560px;}
.y3c3{bottom:682.909920px;}
.y252{bottom:685.258560px;}
.y158{bottom:687.116160px;}
.y57{bottom:687.150000px;}
.y8f{bottom:688.969440px;}
.y27f{bottom:689.028480px;}
.y198{bottom:689.126400px;}
.y2d8{bottom:689.176800px;}
.y31{bottom:693.711000px;}
.y114{bottom:694.916640px;}
.y326{bottom:700.601760px;}
.y1f0{bottom:702.367200px;}
.ye6{bottom:702.476640px;}
.ybb{bottom:702.734400px;}
.y232{bottom:702.761760px;}
.y381{bottom:702.957600px;}
.y2aa{bottom:703.274400px;}
.y1c3{bottom:703.886400px;}
.y353{bottom:704.731680px;}
.y56{bottom:704.794500px;}
.y2f9{bottom:704.885760px;}
.y401{bottom:705.393000px;}
.y3af{bottom:705.751200px;}
.y3c2{bottom:705.767040px;}
.y251{bottom:707.577120px;}
.y3d5{bottom:709.328340px;}
.y157{bottom:709.608960px;}
.y30{bottom:711.355500px;}
.y17e{bottom:711.460800px;}
.y8e{bottom:711.462240px;}
.y133{bottom:711.489600px;}
.y27e{bottom:711.521280px;}
.y197{bottom:711.619200px;}
.y2d7{bottom:711.669600px;}
.y113{bottom:717.060960px;}
.y400{bottom:722.673000px;}
.y325{bottom:723.094560px;}
.y1ef{bottom:724.860000px;}
.ye5{bottom:724.969440px;}
.yba{bottom:725.227200px;}
.y231{bottom:725.254560px;}
.y380{bottom:725.450400px;}
.y2a9{bottom:725.767200px;}
.y1c2{bottom:726.204960px;}
.y7{bottom:726.298500px;}
.y3d4{bottom:727.330860px;}
.y352{bottom:727.414560px;}
.y2f8{bottom:727.568640px;}
.y3ae{bottom:728.434080px;}
.y3c1{bottom:728.449920px;}
.y2f{bottom:729.175500px;}
.y55{bottom:729.634500px;}
.y250{bottom:729.895680px;}
.y17d{bottom:733.953600px;}
.y8d{bottom:733.955040px;}
.y132{bottom:733.982400px;}
.y27d{bottom:734.014080px;}
.y196{bottom:734.112000px;}
.y2d6{bottom:734.162400px;}
.y112{bottom:739.379520px;}
.y3ff{bottom:739.953000px;}
.y156{bottom:741.114720px;}
.y324{bottom:745.413120px;}
.y2e{bottom:746.820000px;}
.y54{bottom:747.279000px;}
.ye4{bottom:747.462240px;}
.yb9{bottom:747.720000px;}
.y230{bottom:747.747360px;}
.y37f{bottom:747.768960px;}
.y2a8{bottom:748.260000px;}
.y1c1{bottom:748.523520px;}
.y2f7{bottom:750.425760px;}
.y3ad{bottom:751.291200px;}
.y3c0{bottom:751.307040px;}
.y24f{bottom:752.040000px;}
.y3{bottom:752.599495px;}
.y3d3{bottom:754.334640px;}
.y17c{bottom:756.446400px;}
.y8c{bottom:756.447840px;}
.y131{bottom:756.475200px;}
.y27c{bottom:756.506880px;}
.y195{bottom:756.604800px;}
.y2d5{bottom:756.655200px;}
.y3fe{bottom:757.233000px;}
.y1ee{bottom:757.440000px;}
.y351{bottom:759.094560px;}
.y111{bottom:761.523840px;}
.y155{bottom:763.607520px;}
.y53{bottom:765.099000px;}
.y323{bottom:767.731680px;}
.ye3{bottom:769.955040px;}
.yb8{bottom:770.212800px;}
.y22f{bottom:770.240160px;}
.y37e{bottom:770.261760px;}
.y1c0{bottom:770.842080px;}
.y3d2{bottom:772.337160px;}
.y2f6{bottom:773.282880px;}
.y3ac{bottom:774.148320px;}
.y3bf{bottom:774.164160px;}
.y3fd{bottom:774.337500px;}
.y2d{bottom:775.260000px;}
.y17b{bottom:778.939200px;}
.y8b{bottom:778.940640px;}
.y130{bottom:778.968000px;}
.y27b{bottom:778.999680px;}
.y194{bottom:779.097600px;}
.y2d4{bottom:779.148000px;}
.y2a7{bottom:780.495690px;}
.y350{bottom:781.413120px;}
.y52{bottom:782.743500px;}
.y110{bottom:783.668160px;}
.y24e{bottom:784.078560px;}
.y154{bottom:786.100320px;}
.y322{bottom:790.050240px;}
.y3fc{bottom:791.617500px;}
.ye2{bottom:792.447840px;}
.yb7{bottom:792.705600px;}
.y22e{bottom:792.732960px;}
.y37d{bottom:792.754560px;}
.y1bf{bottom:793.334880px;}
.y2f5{bottom:795.965760px;}
.y3be{bottom:796.847040px;}
.y3d1{bottom:799.340940px;}
.y17a{bottom:801.432000px;}
.y12f{bottom:801.460800px;}
.y27a{bottom:801.492480px;}
.y193{bottom:801.590400px;}
.y2d3{bottom:801.640800px;}
.y1ed{bottom:801.650880px;}
.y2c{bottom:801.900000px;}
.y2a6{bottom:802.987770px;}
.y34f{bottom:803.731680px;}
.y10f{bottom:805.986720px;}
.y3ab{bottom:806.002560px;}
.y24d{bottom:806.580000px;}
.y153{bottom:808.593120px;}
.y8a{bottom:810.446400px;}
.y321{bottom:812.368800px;}
.y214{bottom:814.940640px;}
.y37c{bottom:815.073120px;}
.yb6{bottom:815.198400px;}
.y22d{bottom:815.225760px;}
.y1be{bottom:815.653440px;}
.y3d0{bottom:817.343460px;}
.y2f4{bottom:818.822880px;}
.y3bd{bottom:819.704160px;}
.y179{bottom:823.924800px;}
.ye1{bottom:823.953600px;}
.y279{bottom:823.985280px;}
.y192{bottom:824.083200px;}
.y2d2{bottom:824.133600px;}
.y1ec{bottom:824.143680px;}
.y2b{bottom:824.762700px;}
.y2a5{bottom:825.479850px;}
.y34e{bottom:826.050240px;}
.y10e{bottom:828.131040px;}
.y3aa{bottom:828.146880px;}
.y89{bottom:832.939200px;}
.y320{bottom:834.687360px;}
.y3cf{bottom:835.345980px;}
.y3fb{bottom:835.897500px;}
.y213{bottom:837.433440px;}
.y37b{bottom:837.565920px;}
.y22c{bottom:837.718560px;}
.y1bd{bottom:837.972000px;}
.y152{bottom:840.098880px;}
.y2f3{bottom:841.680000px;}
.y3bc{bottom:842.561280px;}
.y178{bottom:846.417600px;}
.ye0{bottom:846.446400px;}
.y278{bottom:846.478080px;}
.y191{bottom:846.576000px;}
.y2d1{bottom:846.626400px;}
.y1eb{bottom:846.636480px;}
.yb5{bottom:846.704160px;}
.y34d{bottom:848.368800px;}
.y2a{bottom:850.140000px;}
.y10d{bottom:850.275360px;}
.y3a9{bottom:850.291200px;}
.y88{bottom:855.432000px;}
.y31f{bottom:857.180160px;}
.y3fa{bottom:859.117500px;}
.y37a{bottom:859.884480px;}
.y212{bottom:859.926240px;}
.y22b{bottom:860.211360px;}
.y1bc{bottom:860.290560px;}
.y3ce{bottom:862.349760px;}
.y151{bottom:862.591680px;}
.y3bb{bottom:865.244160px;}
.y2a4{bottom:865.274400px;}
.y177{bottom:868.910400px;}
.ydf{bottom:868.939200px;}
.y277{bottom:868.970880px;}
.y190{bottom:869.068800px;}
.y2d0{bottom:869.119200px;}
.y1ea{bottom:869.129280px;}
.yb4{bottom:869.196960px;}
.y34c{bottom:870.687360px;}
.y10c{bottom:872.593920px;}
.y3a8{bottom:872.609760px;}
.y2f2{bottom:874.080000px;}
.y3f9{bottom:876.397500px;}
.y87{bottom:877.924800px;}
.y2{bottom:879.369000px;}
.y31e{bottom:879.498720px;}
.y3cd{bottom:880.352280px;}
.y379{bottom:882.377280px;}
.y211{bottom:882.419040px;}
.y1bb{bottom:882.609120px;}
.y22a{bottom:882.704160px;}
.y150{bottom:885.084480px;}
.y3ba{bottom:888.101280px;}
.y2a3{bottom:888.131520px;}
.y176{bottom:891.403200px;}
.yde{bottom:891.432000px;}
.y276{bottom:891.463680px;}
.y18f{bottom:891.561600px;}
.y2cf{bottom:891.612000px;}
.y1e9{bottom:891.622080px;}
.yb3{bottom:891.689760px;}
.y34b{bottom:893.180160px;}
.y3f8{bottom:894.042000px;}
.y10b{bottom:894.738240px;}
.y3a7{bottom:894.754080px;}
.y86{bottom:900.417600px;}
.y31d{bottom:901.817280px;}
.y378{bottom:904.695840px;}
.y210{bottom:904.911840px;}
.y229{bottom:905.196960px;}
.y3cc{bottom:907.356060px;}
.y14f{bottom:907.577280px;}
.y3b9{bottom:910.958400px;}
.y2a2{bottom:910.988640px;}
.y175{bottom:913.896000px;}
.ydd{bottom:913.924800px;}
.y275{bottom:913.956480px;}
.y18e{bottom:914.054400px;}
.y2ce{bottom:914.104800px;}
.y1e8{bottom:914.114880px;}
.yb2{bottom:914.182560px;}
.y34a{bottom:915.498720px;}
.y10a{bottom:916.882560px;}
.y3a6{bottom:916.898400px;}
.y85{bottom:922.910400px;}
.y31c{bottom:924.135840px;}
.y3cb{bottom:925.358580px;}
.y377{bottom:927.188640px;}
.y20f{bottom:927.404640px;}
.y228{bottom:927.689760px;}
.y3f7{bottom:928.966500px;}
.y14e{bottom:930.070080px;}
.y29{bottom:931.113000px;}
.y3b8{bottom:933.641280px;}
.y2a1{bottom:933.671520px;}
.y174{bottom:936.388800px;}
.ydc{bottom:936.417600px;}
.y274{bottom:936.449280px;}
.y18d{bottom:936.547200px;}
.y2cd{bottom:936.597600px;}
.y1e7{bottom:936.607680px;}
.yb1{bottom:936.675360px;}
.y349{bottom:937.817280px;}
.y109{bottom:939.201120px;}
.y3a5{bottom:939.216960px;}
.y84{bottom:945.403200px;}
.y31b{bottom:946.454400px;}
.y376{bottom:949.681440px;}
.y20e{bottom:949.897440px;}
.y227{bottom:950.182560px;}
.y3f6{bottom:952.186500px;}
.y3ca{bottom:952.362360px;}
.y14d{bottom:952.562880px;}
.y3b7{bottom:956.498400px;}
.y2a0{bottom:956.528640px;}
.y173{bottom:958.881600px;}
.ydb{bottom:958.910400px;}
.y273{bottom:958.942080px;}
.y18c{bottom:959.040000px;}
.y2cc{bottom:959.090400px;}
.y1e6{bottom:959.100480px;}
.yb0{bottom:959.168160px;}
.y348{bottom:960.135840px;}
.y108{bottom:961.345440px;}
.y3a4{bottom:961.361280px;}
.y28{bottom:962.622000px;}
.y1{bottom:966.726000px;}
.y83{bottom:967.896000px;}
.y31a{bottom:968.772960px;}
.y3f5{bottom:969.831000px;}
.y3c9{bottom:970.364880px;}
.y375{bottom:972.000000px;}
.y20d{bottom:972.390240px;}
.y226{bottom:972.675360px;}
.y14c{bottom:975.055680px;}
.y3b6{bottom:979.355520px;}
.y29f{bottom:979.385760px;}
.y172{bottom:981.374400px;}
.yda{bottom:981.403200px;}
.y272{bottom:981.434880px;}
.y18b{bottom:981.532800px;}
.y2cb{bottom:981.583200px;}
.y1e5{bottom:981.593280px;}
.yaf{bottom:981.660960px;}
.y347{bottom:982.454400px;}
.y107{bottom:983.489760px;}
.y3a3{bottom:983.505600px;}
.y3c8{bottom:988.367400px;}
.y82{bottom:990.388800px;}
.y319{bottom:991.265760px;}
.y27{bottom:994.131000px;}
.y374{bottom:994.492800px;}
.y20c{bottom:994.883040px;}
.y225{bottom:995.168160px;}
.y3b5{bottom:1002.038400px;}
.y29e{bottom:1002.068640px;}
.y171{bottom:1003.867200px;}
.yd9{bottom:1003.896000px;}
.y271{bottom:1003.927680px;}
.y18a{bottom:1004.025600px;}
.y2ca{bottom:1004.076000px;}
.y1e4{bottom:1004.086080px;}
.yae{bottom:1004.153760px;}
.y3f4{bottom:1004.755500px;}
.y346{bottom:1004.772960px;}
.y106{bottom:1005.808320px;}
.y3a2{bottom:1005.824160px;}
.y14b{bottom:1006.735680px;}
.y81{bottom:1012.881600px;}
.y318{bottom:1013.584320px;}
.y3c7{bottom:1015.371180px;}
.y373{bottom:1016.811360px;}
.y20b{bottom:1017.375840px;}
.y224{bottom:1017.660960px;}
.y3b4{bottom:1024.895520px;}
.y29d{bottom:1024.925760px;}
.y26{bottom:1025.640000px;}
.y170{bottom:1026.360000px;}
.yd8{bottom:1026.388800px;}
.y270{bottom:1026.420480px;}
.y189{bottom:1026.518400px;}
.y2c9{bottom:1026.568800px;}
.y1e3{bottom:1026.578880px;}
.yad{bottom:1026.646560px;}
.y345{bottom:1027.265760px;}
.y105{bottom:1027.952640px;}
.y3a1{bottom:1027.968480px;}
.y3f3{bottom:1027.975500px;}
.y14a{bottom:1028.689920px;}
.y3c6{bottom:1033.373700px;}
.y80{bottom:1035.374400px;}
.y317{bottom:1035.902880px;}
.y223{bottom:1040.153760px;}
.y3f2{bottom:1045.620000px;}
.y3b3{bottom:1047.752640px;}
.y29c{bottom:1047.782880px;}
.y372{bottom:1048.317120px;}
.yd7{bottom:1048.881600px;}
.y26f{bottom:1048.913280px;}
.y188{bottom:1049.011200px;}
.y2c8{bottom:1049.061600px;}
.y1e2{bottom:1049.071680px;}
.yac{bottom:1049.139360px;}
.y344{bottom:1049.584320px;}
.y104{bottom:1050.096960px;}
.y3a0{bottom:1050.112800px;}
.y149{bottom:1050.834240px;}
.y7f{bottom:1057.867200px;}
.y316{bottom:1058.221440px;}
.y16f{bottom:1058.942160px;}
.y3c5{bottom:1060.377480px;}
.y3b2{bottom:1070.435520px;}
.y29b{bottom:1070.465760px;}
.y371{bottom:1071.000000px;}
.yd6{bottom:1071.374400px;}
.y26e{bottom:1071.406080px;}
.y187{bottom:1071.504000px;}
.y2c7{bottom:1071.554400px;}
.y1e1{bottom:1071.564480px;}
.yab{bottom:1071.632160px;}
.y222{bottom:1071.659520px;}
.y343{bottom:1071.902880px;}
.y103{bottom:1072.415520px;}
.y39f{bottom:1072.431360px;}
.y148{bottom:1072.788480px;}
.y3c4{bottom:1078.380000px;}
.y7a{bottom:1079.280000px;}
.y7e{bottom:1080.360000px;}
.y315{bottom:1080.540000px;}
.y3f1{bottom:1080.544500px;}
.y78{bottom:1083.420000px;}
.y16e{bottom:1085.941080px;}
.y3b1{bottom:1093.292640px;}
.y29a{bottom:1093.322880px;}
.y370{bottom:1093.682880px;}
.yd5{bottom:1093.867200px;}
.y26d{bottom:1093.898880px;}
.y186{bottom:1093.996800px;}
.y2c6{bottom:1094.047200px;}
.y1e0{bottom:1094.057280px;}
.yaa{bottom:1094.124960px;}
.y221{bottom:1094.152320px;}
.y342{bottom:1094.221440px;}
.y102{bottom:1094.559840px;}
.y39e{bottom:1094.575680px;}
.y147{bottom:1094.932800px;}
.y3f0{bottom:1103.764500px;}
.y7d{bottom:1112.940000px;}
.y3b0{bottom:1116.149760px;}
.y36f{bottom:1116.175680px;}
.y299{bottom:1116.180000px;}
.yd4{bottom:1116.360000px;}
.y26c{bottom:1116.391680px;}
.y185{bottom:1116.489600px;}
.y2c5{bottom:1116.540000px;}
.y1df{bottom:1116.550080px;}
.ya9{bottom:1116.617760px;}
.y220{bottom:1116.645120px;}
.y101{bottom:1116.704160px;}
.y39d{bottom:1116.720000px;}
.y146{bottom:1116.887040px;}
.y3ef{bottom:1121.220000px;}
.y3ed{bottom:1184.040000px;}
.y7c{bottom:1185.120000px;}
.y24{bottom:1193.040000px;}
.h7{height:32.130000px;}
.h11{height:37.620000px;}
.h1d{height:39.313477px;}
.h13{height:41.040000px;}
.h1c{height:41.410195px;}
.h19{height:43.956211px;}
.h6{height:45.900000px;}
.h15{height:46.127812px;}
.hf{height:46.432617px;}
.h10{height:47.223633px;}
.h3{height:48.195000px;}
.ha{height:48.909023px;}
.h18{height:51.385430px;}
.h17{height:52.260820px;}
.h9{height:54.480937px;}
.h2{height:55.080000px;}
.h14{height:55.409062px;}
.h1a{height:65.483437px;}
.h16{height:66.275449px;}
.hd{height:68.002031px;}
.hc{height:72.434883px;}
.he{height:73.668867px;}
.h1b{height:73.709187px;}
.h5{height:78.030000px;}
.h12{height:83.743242px;}
.hb{height:94.447266px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:306.000000px;}
.w5{width:306.180000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:15.120000px;}
.xa{left:68.580000px;}
.x6{left:84.960000px;}
.xf{left:93.060000px;}
.x12{left:95.400000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.xc{left:216.000000px;}
.x7{left:321.300000px;}
.xe{left:351.540000px;}
.x10{left:369.540000px;}
.x9{left:446.436000px;}
.xd{left:448.551360px;}
.x3{left:454.959000px;}
.x8{left:463.540500px;}
.x5{left:480.420000px;}
.x11{left:582.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7c{letter-spacing:-1.914880pt;}
.lsa6{letter-spacing:-1.858560pt;}
.lsa7{letter-spacing:-1.745920pt;}
.ls5a{letter-spacing:-1.633280pt;}
.ls4d{letter-spacing:-1.576960pt;}
.ls8b{letter-spacing:-1.464320pt;}
.ls5b{letter-spacing:-1.408000pt;}
.ls24{letter-spacing:-1.392000pt;}
.ls3d{letter-spacing:-1.295360pt;}
.ls22{letter-spacing:-1.248000pt;}
.ls3e{letter-spacing:-1.239040pt;}
.lsbe{letter-spacing:-1.213440pt;}
.ls1b{letter-spacing:-1.152000pt;}
.ls5c{letter-spacing:-1.126400pt;}
.ls1d{letter-spacing:-1.104000pt;}
.ls4b{letter-spacing:-1.070080pt;}
.ls1e{letter-spacing:-1.056000pt;}
.ls4e{letter-spacing:-1.013760pt;}
.lsbf{letter-spacing:-0.960640pt;}
.ls1f{letter-spacing:-0.960000pt;}
.ls6d{letter-spacing:-0.956160pt;}
.ls6c{letter-spacing:-0.903040pt;}
.ls36{letter-spacing:-0.901120pt;}
.ls32{letter-spacing:-0.898560pt;}
.lsc7{letter-spacing:-0.864000pt;}
.ls68{letter-spacing:-0.849920pt;}
.ls39{letter-spacing:-0.844800pt;}
.ls82{letter-spacing:-0.788480pt;}
.ls21{letter-spacing:-0.768000pt;}
.ls6a{letter-spacing:-0.743680pt;}
.ls20{letter-spacing:-0.720000pt;}
.ls67{letter-spacing:-0.690560pt;}
.ls17{letter-spacing:-0.673920pt;}
.ls23{letter-spacing:-0.672000pt;}
.ls19{letter-spacing:-0.624000pt;}
.ls34{letter-spacing:-0.619520pt;}
.lsbb{letter-spacing:-0.606720pt;}
.ls3c{letter-spacing:-0.599040pt;}
.ls25{letter-spacing:-0.595840pt;}
.ls66{letter-spacing:-0.584320pt;}
.ls1a{letter-spacing:-0.528000pt;}
.ls5d{letter-spacing:-0.506880pt;}
.ls35{letter-spacing:-0.450560pt;}
.ls18{letter-spacing:-0.432000pt;}
.ls69{letter-spacing:-0.424960pt;}
.ls33{letter-spacing:-0.337920pt;}
.ls1c{letter-spacing:-0.336000pt;}
.ls6b{letter-spacing:-0.318720pt;}
.ls70{letter-spacing:-0.318080pt;}
.lsbc{letter-spacing:-0.303360pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls38{letter-spacing:-0.281600pt;}
.ls72{letter-spacing:-0.227200pt;}
.lsba{letter-spacing:-0.202240pt;}
.ls71{letter-spacing:-0.181760pt;}
.ls4c{letter-spacing:-0.168960pt;}
.lsbd{letter-spacing:-0.151680pt;}
.ls6e{letter-spacing:-0.106240pt;}
.ls16{letter-spacing:-0.074880pt;}
.ls7d{letter-spacing:-0.069120pt;}
.ls6f{letter-spacing:-0.053120pt;}
.lsc0{letter-spacing:-0.050560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.015936pt;}
.lsb5{letter-spacing:0.020224pt;}
.lsb7{letter-spacing:0.030336pt;}
.lsb3{letter-spacing:0.035392pt;}
.lsad{letter-spacing:0.045504pt;}
.lsac{letter-spacing:0.050560pt;}
.ls2c{letter-spacing:0.056320pt;}
.ls11{letter-spacing:0.067200pt;}
.ls14{letter-spacing:0.096000pt;}
.ls8a{letter-spacing:0.133120pt;}
.ls3b{letter-spacing:0.168960pt;}
.lsc4{letter-spacing:0.192000pt;}
.lsb6{letter-spacing:0.202240pt;}
.ls61{letter-spacing:0.212480pt;}
.ls3a{letter-spacing:0.225280pt;}
.ls65{letter-spacing:0.227200pt;}
.ls64{letter-spacing:0.272640pt;}
.ls54{letter-spacing:0.281600pt;}
.ls7b{letter-spacing:0.303360pt;}
.ls73{letter-spacing:0.337920pt;}
.ls95{letter-spacing:0.394240pt;}
.lsb0{letter-spacing:0.419648pt;}
.ls97{letter-spacing:0.450560pt;}
.ls3f{letter-spacing:0.461824pt;}
.ls9d{letter-spacing:0.523776pt;}
.ls94{letter-spacing:0.535040pt;}
.ls1{letter-spacing:0.599040pt;}
.ls84{letter-spacing:0.653312pt;}
.lsae{letter-spacing:0.657280pt;}
.ls37{letter-spacing:0.675840pt;}
.ls26{letter-spacing:0.707840pt;}
.lsc6{letter-spacing:0.768000pt;}
.lsc2{letter-spacing:0.816000pt;}
.ls31{letter-spacing:0.859520pt;}
.ls83{letter-spacing:0.985600pt;}
.ls9e{letter-spacing:1.019392pt;}
.lsa4{letter-spacing:1.560064pt;}
.ls53{letter-spacing:1.633280pt;}
.ls8f{letter-spacing:1.723392pt;}
.ls91{letter-spacing:1.734656pt;}
.ls46{letter-spacing:1.745920pt;}
.lsc5{letter-spacing:1.987200pt;}
.ls9a{letter-spacing:2.252800pt;}
.lsa8{letter-spacing:2.264064pt;}
.ls42{letter-spacing:2.393600pt;}
.ls44{letter-spacing:2.489344pt;}
.ls7f{letter-spacing:2.511872pt;}
.ls8{letter-spacing:2.640000pt;}
.ls2a{letter-spacing:2.928640pt;}
.ls7a{letter-spacing:3.024384pt;}
.ls75{letter-spacing:3.148288pt;}
.ls2{letter-spacing:3.172800pt;}
.ls4{letter-spacing:3.312000pt;}
.ls96{letter-spacing:3.548160pt;}
.ls30{letter-spacing:3.660800pt;}
.ls77{letter-spacing:3.779072pt;}
.ls3{letter-spacing:3.792000pt;}
.lsb9{letter-spacing:3.842560pt;}
.lsb8{letter-spacing:3.852672pt;}
.lsb4{letter-spacing:4.499840pt;}
.lsaf{letter-spacing:4.530176pt;}
.lsb{letter-spacing:4.574400pt;}
.ls52{letter-spacing:4.843520pt;}
.ls41{letter-spacing:4.995584pt;}
.lsab{letter-spacing:5.157120pt;}
.lsc1{letter-spacing:5.164800pt;}
.lse{letter-spacing:5.232000pt;}
.ls9b{letter-spacing:5.463040pt;}
.ls92{letter-spacing:5.558784pt;}
.ls45{letter-spacing:5.947392pt;}
.ls5e{letter-spacing:6.082560pt;}
.ls59{letter-spacing:6.200832pt;}
.ls49{letter-spacing:6.212096pt;}
.ls79{letter-spacing:6.330368pt;}
.ls76{letter-spacing:6.758400pt;}
.ls4f{letter-spacing:6.814720pt;}
.ls89{letter-spacing:6.927360pt;}
.lsa1{letter-spacing:6.944256pt;}
.lsf{letter-spacing:7.008000pt;}
.ls62{letter-spacing:7.011840pt;}
.ls40{letter-spacing:7.096320pt;}
.ls10{letter-spacing:7.152000pt;}
.ls74{letter-spacing:7.377920pt;}
.ls50{letter-spacing:7.428608pt;}
.ls7e{letter-spacing:7.603200pt;}
.lsb2{letter-spacing:7.680064pt;}
.ls8c{letter-spacing:7.997440pt;}
.lsa2{letter-spacing:8.402944pt;}
.ls43{letter-spacing:8.673280pt;}
.ls80{letter-spacing:8.791552pt;}
.ls28{letter-spacing:8.937984pt;}
.ls13{letter-spacing:8.976000pt;}
.ls78{letter-spacing:9.292800pt;}
.ls87{letter-spacing:9.422336pt;}
.lsa9{letter-spacing:9.636352pt;}
.ls51{letter-spacing:9.946112pt;}
.ls8e{letter-spacing:9.968640pt;}
.ls48{letter-spacing:10.588160pt;}
.ls99{letter-spacing:10.621952pt;}
.lsa5{letter-spacing:10.740224pt;}
.ls86{letter-spacing:11.365376pt;}
.ls57{letter-spacing:11.883520pt;}
.ls58{letter-spacing:12.103168pt;}
.lsb1{letter-spacing:12.184960pt;}
.ls2e{letter-spacing:12.649472pt;}
.lsc3{letter-spacing:13.084800pt;}
.ls2b{letter-spacing:13.122560pt;}
.ls56{letter-spacing:13.798400pt;}
.ls7{letter-spacing:13.982400pt;}
.ls2d{letter-spacing:14.417920pt;}
.ls8d{letter-spacing:14.581248pt;}
.ls60{letter-spacing:14.660096pt;}
.ls9{letter-spacing:14.832000pt;}
.ls4a{letter-spacing:15.088128pt;}
.lsc{letter-spacing:15.384000pt;}
.lsd{letter-spacing:15.403200pt;}
.ls9c{letter-spacing:15.713280pt;}
.ls88{letter-spacing:15.972352pt;}
.ls6{letter-spacing:16.060800pt;}
.ls55{letter-spacing:16.406016pt;}
.ls12{letter-spacing:16.661120pt;}
.ls27{letter-spacing:17.008640pt;}
.ls5f{letter-spacing:17.628160pt;}
.ls90{letter-spacing:17.684480pt;}
.ls98{letter-spacing:18.247680pt;}
.ls81{letter-spacing:18.377216pt;}
.ls5{letter-spacing:19.296000pt;}
.ls2f{letter-spacing:19.734528pt;}
.ls47{letter-spacing:19.790848pt;}
.ls85{letter-spacing:23.530496pt;}
.ls9f{letter-spacing:25.287680pt;}
.lsa0{letter-spacing:26.459136pt;}
.lsa3{letter-spacing:29.117440pt;}
.ls29{letter-spacing:30.412800pt;}
.lsa{letter-spacing:35.952000pt;}
.lsaa{letter-spacing:752.343040pt;}
.ls93{letter-spacing:1205.148160pt;}
.wse{word-spacing:-50.560000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws1{word-spacing:-26.688000pt;}
.wsf{word-spacing:-23.067520pt;}
.ws92{word-spacing:-20.816640pt;}
.ws2{word-spacing:-20.142720pt;}
.ws41{word-spacing:-19.918080pt;}
.wsc9{word-spacing:-19.215360pt;}
.wsc8{word-spacing:-19.146240pt;}
.wsdf{word-spacing:-18.636800pt;}
.ws48{word-spacing:-15.882240pt;}
.ws94{word-spacing:-15.713280pt;}
.ws42{word-spacing:-15.656960pt;}
.wsc7{word-spacing:-15.488000pt;}
.ws91{word-spacing:-15.375360pt;}
.ws43{word-spacing:-15.319040pt;}
.ws45{word-spacing:-15.206400pt;}
.wsfa{word-spacing:-15.150080pt;}
.ws44{word-spacing:-15.037440pt;}
.ws47{word-spacing:-14.812160pt;}
.wsa8{word-spacing:-14.767360pt;}
.ws40{word-spacing:-14.763520pt;}
.ws46{word-spacing:-14.755840pt;}
.wsb0{word-spacing:-14.661120pt;}
.ws7b{word-spacing:-14.643200pt;}
.ws79{word-spacing:-14.586880pt;}
.wsac{word-spacing:-14.448640pt;}
.ws4a{word-spacing:-14.417920pt;}
.ws49{word-spacing:-14.361600pt;}
.ws111{word-spacing:-14.359040pt;}
.wsab{word-spacing:-14.342400pt;}
.ws113{word-spacing:-14.257920pt;}
.ws93{word-spacing:-14.248960pt;}
.wse0{word-spacing:-14.192640pt;}
.wsa7{word-spacing:-14.183040pt;}
.ws12e{word-spacing:-14.112000pt;}
.ws10e{word-spacing:-14.106240pt;}
.ws7a{word-spacing:-14.080000pt;}
.wsa9{word-spacing:-14.076800pt;}
.ws110{word-spacing:-14.055680pt;}
.ws90{word-spacing:-14.023680pt;}
.ws118{word-spacing:-14.005120pt;}
.wsaa{word-spacing:-13.917440pt;}
.ws115{word-spacing:-13.904000pt;}
.wsad{word-spacing:-13.864320pt;}
.ws10f{word-spacing:-13.853440pt;}
.wsaf{word-spacing:-13.811200pt;}
.ws112{word-spacing:-13.752320pt;}
.ws12d{word-spacing:-13.536000pt;}
.ws114{word-spacing:-13.448960pt;}
.ws4{word-spacing:-13.344000pt;}
.ws116{word-spacing:-13.095040pt;}
.ws3{word-spacing:-12.912000pt;}
.ws117{word-spacing:-12.842240pt;}
.ws9{word-spacing:-12.816000pt;}
.wsc{word-spacing:-12.720000pt;}
.wsa{word-spacing:-12.672000pt;}
.wsd{word-spacing:-12.624000pt;}
.ws12f{word-spacing:-12.480000pt;}
.ws5{word-spacing:-12.384000pt;}
.ws6{word-spacing:-12.240000pt;}
.ws7{word-spacing:-12.192000pt;}
.wsb{word-spacing:-11.952000pt;}
.wsd1{word-spacing:-4.167680pt;}
.wsa2{word-spacing:-3.548160pt;}
.ws54{word-spacing:-3.491840pt;}
.ws35{word-spacing:-3.312000pt;}
.ws10a{word-spacing:-2.984960pt;}
.ws9c{word-spacing:-2.928640pt;}
.ws55{word-spacing:-2.872320pt;}
.ws10b{word-spacing:-2.703360pt;}
.wsee{word-spacing:-2.647040pt;}
.ws1c{word-spacing:-2.640000pt;}
.ws125{word-spacing:-2.578560pt;}
.ws73{word-spacing:-2.252800pt;}
.wsa6{word-spacing:-2.196480pt;}
.ws17{word-spacing:-2.016000pt;}
.ws11d{word-spacing:-1.921280pt;}
.ws38{word-spacing:-1.920000pt;}
.wsf1{word-spacing:-1.858560pt;}
.ws7d{word-spacing:-1.633280pt;}
.ws69{word-spacing:-1.576960pt;}
.ws31{word-spacing:-1.392000pt;}
.wsef{word-spacing:-1.351680pt;}
.ws11e{word-spacing:-1.314560pt;}
.ws3b{word-spacing:-1.296000pt;}
.ws103{word-spacing:-1.295360pt;}
.ws8b{word-spacing:-1.182720pt;}
.ws5f{word-spacing:-0.957440pt;}
.ws4b{word-spacing:-0.808960pt;}
.ws3d{word-spacing:-0.720000pt;}
.wsf0{word-spacing:-0.707840pt;}
.wsbe{word-spacing:-0.690560pt;}
.ws5c{word-spacing:-0.675840pt;}
.ws11c{word-spacing:-0.657280pt;}
.wsc0{word-spacing:-0.584320pt;}
.ws9d{word-spacing:-0.450560pt;}
.wsb9{word-spacing:-0.394240pt;}
.ws85{word-spacing:-0.337920pt;}
.ws129{word-spacing:-0.303360pt;}
.ws14{word-spacing:-0.299520pt;}
.ws5a{word-spacing:-0.281600pt;}
.wsbc{word-spacing:-0.265600pt;}
.wscb{word-spacing:-0.252800pt;}
.wsca{word-spacing:-0.202240pt;}
.ws6f{word-spacing:-0.168960pt;}
.wse2{word-spacing:-0.133120pt;}
.ws15{word-spacing:-0.096000pt;}
.wscf{word-spacing:-0.056320pt;}
.wsae{word-spacing:-0.053120pt;}
.ws119{word-spacing:-0.050560pt;}
.ws23{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.053120pt;}
.ws8c{word-spacing:0.056320pt;}
.ws13{word-spacing:0.074880pt;}
.ws137{word-spacing:0.144000pt;}
.wsc2{word-spacing:0.159360pt;}
.ws83{word-spacing:0.168960pt;}
.wsc5{word-spacing:0.181760pt;}
.wsc6{word-spacing:0.227200pt;}
.wsb7{word-spacing:0.281600pt;}
.ws78{word-spacing:0.299520pt;}
.ws128{word-spacing:0.303360pt;}
.wsc4{word-spacing:0.318080pt;}
.ws1d{word-spacing:0.336000pt;}
.ws6b{word-spacing:0.337920pt;}
.ws12{word-spacing:0.374400pt;}
.wsba{word-spacing:0.424960pt;}
.ws16{word-spacing:0.432000pt;}
.wsdd{word-spacing:0.450560pt;}
.ws126{word-spacing:0.455040pt;}
.ws10{word-spacing:0.480000pt;}
.wsc3{word-spacing:0.499840pt;}
.wsf3{word-spacing:0.506880pt;}
.ws1a{word-spacing:0.528000pt;}
.wsf9{word-spacing:0.563200pt;}
.ws22{word-spacing:0.576000pt;}
.wsb1{word-spacing:0.599040pt;}
.ws124{word-spacing:0.606720pt;}
.ws4c{word-spacing:0.619520pt;}
.wsd5{word-spacing:0.622080pt;}
.ws18{word-spacing:0.624000pt;}
.wsd4{word-spacing:0.673920pt;}
.wsbf{word-spacing:0.690560pt;}
.wsbb{word-spacing:0.743680pt;}
.ws2a{word-spacing:0.768000pt;}
.ws100{word-spacing:0.788480pt;}
.ws86{word-spacing:0.844800pt;}
.ws98{word-spacing:0.898560pt;}
.ws52{word-spacing:0.901120pt;}
.wsc1{word-spacing:0.956160pt;}
.ws56{word-spacing:0.957440pt;}
.ws36{word-spacing:0.960000pt;}
.ws8f{word-spacing:1.013760pt;}
.wsdc{word-spacing:1.070080pt;}
.wsf4{word-spacing:1.126400pt;}
.ws11{word-spacing:1.152000pt;}
.ws29{word-spacing:1.200000pt;}
.ws80{word-spacing:1.239040pt;}
.ws2d{word-spacing:1.248000pt;}
.ws11a{word-spacing:1.264000pt;}
.wsb8{word-spacing:1.295360pt;}
.ws130{word-spacing:1.296000pt;}
.wse1{word-spacing:1.351680pt;}
.ws10d{word-spacing:1.408000pt;}
.ws84{word-spacing:1.576960pt;}
.ws51{word-spacing:1.633280pt;}
.wsff{word-spacing:1.745920pt;}
.ws131{word-spacing:1.824000pt;}
.wsce{word-spacing:1.914880pt;}
.ws11b{word-spacing:1.921280pt;}
.wsd6{word-spacing:1.971200pt;}
.ws105{word-spacing:2.140160pt;}
.wse9{word-spacing:2.196480pt;}
.ws74{word-spacing:2.252800pt;}
.ws3e{word-spacing:2.448000pt;}
.ws102{word-spacing:2.478080pt;}
.ws132{word-spacing:2.496000pt;}
.ws39{word-spacing:2.544000pt;}
.wsf6{word-spacing:2.759680pt;}
.ws6e{word-spacing:2.872320pt;}
.ws33{word-spacing:3.120000pt;}
.ws12c{word-spacing:3.185280pt;}
.ws97{word-spacing:3.266560pt;}
.wsa4{word-spacing:3.435520pt;}
.ws88{word-spacing:3.491840pt;}
.ws53{word-spacing:3.548160pt;}
.ws106{word-spacing:3.717120pt;}
.ws37{word-spacing:3.744000pt;}
.ws34{word-spacing:3.840000pt;}
.ws12a{word-spacing:3.842560pt;}
.wsb2{word-spacing:3.886080pt;}
.ws12b{word-spacing:3.943680pt;}
.ws5d{word-spacing:4.111360pt;}
.ws4e{word-spacing:4.167680pt;}
.ws20{word-spacing:4.368000pt;}
.ws21{word-spacing:4.416000pt;}
.ws5e{word-spacing:4.449280pt;}
.wsd8{word-spacing:4.505600pt;}
.ws58{word-spacing:4.787200pt;}
.ws1b{word-spacing:5.040000pt;}
.ws8e{word-spacing:5.406720pt;}
.ws71{word-spacing:5.463040pt;}
.ws1f{word-spacing:5.664000pt;}
.wsde{word-spacing:5.744640pt;}
.ws67{word-spacing:6.082560pt;}
.ws24{word-spacing:6.288000pt;}
.ws25{word-spacing:6.336000pt;}
.ws101{word-spacing:6.645760pt;}
.ws9b{word-spacing:6.702080pt;}
.ws75{word-spacing:6.758400pt;}
.ws2f{word-spacing:6.960000pt;}
.wsec{word-spacing:7.321600pt;}
.ws63{word-spacing:7.377920pt;}
.ws30{word-spacing:7.584000pt;}
.ws123{word-spacing:7.685120pt;}
.ws72{word-spacing:7.997440pt;}
.ws19{word-spacing:8.208000pt;}
.ws95{word-spacing:8.616960pt;}
.ws66{word-spacing:8.673280pt;}
.ws136{word-spacing:8.880000pt;}
.ws107{word-spacing:9.236480pt;}
.ws4f{word-spacing:9.292800pt;}
.ws27{word-spacing:9.504000pt;}
.ws26{word-spacing:9.552000pt;}
.ws3f{word-spacing:9.600000pt;}
.ws28{word-spacing:9.792000pt;}
.ws87{word-spacing:9.912320pt;}
.ws104{word-spacing:10.193920pt;}
.wsf5{word-spacing:10.419200pt;}
.ws109{word-spacing:10.475520pt;}
.wsa1{word-spacing:10.531840pt;}
.ws57{word-spacing:10.588160pt;}
.wsf2{word-spacing:11.095040pt;}
.wsd0{word-spacing:11.151360pt;}
.ws65{word-spacing:11.207680pt;}
.wsdb{word-spacing:11.376640pt;}
.ws133{word-spacing:11.424000pt;}
.ws6c{word-spacing:11.827200pt;}
.ws121{word-spacing:11.881600pt;}
.ws134{word-spacing:12.096000pt;}
.wsb6{word-spacing:12.108800pt;}
.ws120{word-spacing:12.134400pt;}
.wsfb{word-spacing:12.334080pt;}
.wse8{word-spacing:12.446720pt;}
.ws64{word-spacing:12.503040pt;}
.ws1e{word-spacing:12.672000pt;}
.ws135{word-spacing:12.912000pt;}
.wsfe{word-spacing:13.066240pt;}
.ws6d{word-spacing:13.122560pt;}
.ws7c{word-spacing:13.178880pt;}
.wsfd{word-spacing:13.629440pt;}
.ws5b{word-spacing:13.742080pt;}
.ws59{word-spacing:13.798400pt;}
.wsed{word-spacing:14.080000pt;}
.wsda{word-spacing:14.136320pt;}
.wseb{word-spacing:14.361600pt;}
.ws8a{word-spacing:14.417920pt;}
.ws2e{word-spacing:14.640000pt;}
.wse5{word-spacing:14.643200pt;}
.ws6a{word-spacing:15.037440pt;}
.wsa0{word-spacing:15.375360pt;}
.wsd7{word-spacing:15.431680pt;}
.ws108{word-spacing:15.600640pt;}
.ws8d{word-spacing:15.656960pt;}
.ws89{word-spacing:15.713280pt;}
.ws3c{word-spacing:15.888000pt;}
.ws82{word-spacing:16.332800pt;}
.ws2b{word-spacing:16.656000pt;}
.ws10c{word-spacing:16.839680pt;}
.wsd9{word-spacing:16.952320pt;}
.ws9f{word-spacing:17.571840pt;}
.ws4d{word-spacing:17.628160pt;}
.wsfc{word-spacing:18.078720pt;}
.ws9a{word-spacing:18.191360pt;}
.wsb5{word-spacing:18.247680pt;}
.ws9e{word-spacing:18.867200pt;}
.ws60{word-spacing:19.543040pt;}
.ws76{word-spacing:20.162560pt;}
.wsb3{word-spacing:20.782080pt;}
.wsd2{word-spacing:20.838400pt;}
.ws81{word-spacing:21.457920pt;}
.wsb4{word-spacing:22.077440pt;}
.ws68{word-spacing:22.753280pt;}
.wsa5{word-spacing:23.372800pt;}
.ws2c{word-spacing:23.664000pt;}
.wse3{word-spacing:23.992320pt;}
.ws32{word-spacing:24.240000pt;}
.wsf8{word-spacing:24.611840pt;}
.ws61{word-spacing:24.668160pt;}
.ws3a{word-spacing:24.960000pt;}
.ws7e{word-spacing:25.287680pt;}
.ws96{word-spacing:25.907200pt;}
.ws11f{word-spacing:26.240640pt;}
.wscd{word-spacing:26.526720pt;}
.wse4{word-spacing:26.583040pt;}
.wsd3{word-spacing:27.202560pt;}
.wsa3{word-spacing:27.878400pt;}
.ws77{word-spacing:28.497920pt;}
.ws99{word-spacing:29.117440pt;}
.ws7f{word-spacing:30.412800pt;}
.ws50{word-spacing:31.032320pt;}
.ws62{word-spacing:31.708160pt;}
.wsf7{word-spacing:38.072320pt;}
.ws70{word-spacing:39.987200pt;}
.wsea{word-spacing:43.197440pt;}
.wscc{word-spacing:43.873280pt;}
.ws127{word-spacing:52.481280pt;}
.ws122{word-spacing:60.773120pt;}
.wse6{word-spacing:63.641600pt;}
.wse7{word-spacing:64.317440pt;}
._1d{margin-left:-19.497600pt;}
._1e{margin-left:-12.315520pt;}
._1b{margin-left:-9.947520pt;}
._1a{margin-left:-4.906240pt;}
._d{margin-left:-3.744000pt;}
._4{margin-left:-2.688000pt;}
._2{margin-left:-0.960000pt;}
._1{width:0.988800pt;}
._3{width:2.025600pt;}
._c{width:3.216000pt;}
._5{width:4.320000pt;}
._7{width:5.808000pt;}
._a{width:7.008000pt;}
._1c{width:8.168960pt;}
._15{width:9.201280pt;}
._16{width:10.928640pt;}
._6{width:12.336000pt;}
._17{width:13.472000pt;}
._e{width:14.688000pt;}
._8{width:16.051200pt;}
._11{width:17.180160pt;}
._13{width:19.317760pt;}
._14{width:20.331520pt;}
._19{width:21.626880pt;}
._9{width:22.531200pt;}
._b{width:23.520000pt;}
._1f{width:26.157440pt;}
._20{width:28.948480pt;}
._12{width:30.643200pt;}
._f{width:36.192000pt;}
._18{width:42.690560pt;}
._22{width:51.671680pt;}
._23{width:53.059840pt;}
._21{width:112.344320pt;}
._0{width:312.012800pt;}
._24{width:834.720000pt;}
._10{width:1219.861120pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:66.560000pt;}
.fs9{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:13.760000pt;}
.y7b{bottom:16.160000pt;}
.y6{bottom:31.933340pt;}
.y25{bottom:44.320000pt;}
.y3ee{bottom:44.802560pt;}
.y5{bottom:59.133337pt;}
.y417{bottom:71.680000pt;}
.y341{bottom:78.494720pt;}
.y314{bottom:79.388160pt;}
.y1de{bottom:80.006400pt;}
.y20a{bottom:80.454400pt;}
.y100{bottom:80.791040pt;}
.y39c{bottom:81.363200pt;}
.y12e{bottom:81.832960pt;}
.y36e{bottom:82.714880pt;}
.y145{bottom:83.192320pt;}
.y1ba{bottom:83.520000pt;}
.y51{bottom:85.056000pt;}
.y77{bottom:85.120000pt;}
.y4{bottom:86.333337pt;}
.y2f1{bottom:88.403200pt;}
.y2c4{bottom:89.276160pt;}
.y416{bottom:94.876000pt;}
.yd3{bottom:95.111680pt;}
.ya8{bottom:96.554240pt;}
.y21f{bottom:96.578560pt;}
.y24c{bottom:96.832000pt;}
.y26b{bottom:97.141760pt;}
.y340{bottom:98.333440pt;}
.y298{bottom:98.915840pt;}
.y313{bottom:99.550720pt;}
.y1dd{bottom:100.000000pt;}
.y209{bottom:100.448000pt;}
.yff{bottom:100.474880pt;}
.y50{bottom:100.896000pt;}
.y76{bottom:100.960000pt;}
.y39b{bottom:101.047040pt;}
.y12d{bottom:101.826560pt;}
.y144{bottom:102.876160pt;}
.y36d{bottom:102.877440pt;}
.y2f0{bottom:108.396800pt;}
.y2c3{bottom:109.269760pt;}
.y415{bottom:110.236000pt;}
.yd2{bottom:115.105280pt;}
.ya7{bottom:116.547840pt;}
.y21e{bottom:116.572160pt;}
.y4f{bottom:116.580000pt;}
.y24b{bottom:116.825600pt;}
.y75{bottom:116.956000pt;}
.y26a{bottom:117.135360pt;}
.y33f{bottom:118.172160pt;}
.y1b0{bottom:118.880000pt;}
.y297{bottom:119.233280pt;}
.y312{bottom:119.868160pt;}
.y1dc{bottom:119.993600pt;}
.yfe{bottom:120.313600pt;}
.y208{bottom:120.441600pt;}
.y39a{bottom:120.885760pt;}
.y12c{bottom:121.820160pt;}
.y143{bottom:122.391040pt;}
.y36c{bottom:123.040000pt;}
.y23{bottom:123.790666pt;}
.y414{bottom:125.596000pt;}
.y2ef{bottom:128.390400pt;}
.y2c2{bottom:129.263360pt;}
.y4e{bottom:132.576000pt;}
.y74{bottom:132.796000pt;}
.yd1{bottom:135.098880pt;}
.y1af{bottom:136.000000pt;}
.ya6{bottom:136.541440pt;}
.y21d{bottom:136.565760pt;}
.y24a{bottom:136.819200pt;}
.y269{bottom:137.128960pt;}
.y33e{bottom:138.010880pt;}
.y296{bottom:139.550720pt;}
.y1db{bottom:139.987200pt;}
.yfd{bottom:139.997440pt;}
.y311{bottom:140.185600pt;}
.y207{bottom:140.435200pt;}
.y399{bottom:140.569600pt;}
.y413{bottom:140.956000pt;}
.y12b{bottom:141.813760pt;}
.y142{bottom:142.074880pt;}
.y36b{bottom:143.202560pt;}
.y4d{bottom:148.260000pt;}
.y2ee{bottom:148.384000pt;}
.y73{bottom:148.636000pt;}
.y1b9{bottom:153.280000pt;}
.yd0{bottom:155.092480pt;}
.ya5{bottom:156.535040pt;}
.y249{bottom:156.812800pt;}
.y268{bottom:157.122560pt;}
.y2c1{bottom:157.268480pt;}
.y1ae{bottom:157.280000pt;}
.y1b4{bottom:157.440000pt;}
.y33d{bottom:158.004480pt;}
.yfc{bottom:159.681280pt;}
.y295{bottom:159.713280pt;}
.y1da{bottom:159.980800pt;}
.y398{bottom:160.253440pt;}
.y310{bottom:160.348160pt;}
.y206{bottom:160.428800pt;}
.y36a{bottom:163.365120pt;}
.y412{bottom:164.320000pt;}
.y72{bottom:164.476000pt;}
.y21c{bottom:164.570880pt;}
.y2ed{bottom:168.377600pt;}
.y141{bottom:169.601280pt;}
.y12a{bottom:169.973760pt;}
.y4c{bottom:170.496000pt;}
.y1b8{bottom:170.880000pt;}
.y1ad{bottom:174.880000pt;}
.y1a{bottom:175.052000pt;}
.ycf{bottom:175.086080pt;}
.ya4{bottom:176.528640pt;}
.y248{bottom:176.806400pt;}
.y267{bottom:177.116160pt;}
.y2c0{bottom:177.262080pt;}
.y33c{bottom:177.843200pt;}
.yfb{bottom:179.650560pt;}
.y1d9{bottom:179.974400pt;}
.y294{bottom:180.030720pt;}
.y397{bottom:180.092160pt;}
.y205{bottom:180.422400pt;}
.y71{bottom:180.640000pt;}
.y30f{bottom:180.665600pt;}
.y369{bottom:183.358720pt;}
.y21b{bottom:184.564480pt;}
.y4b{bottom:186.180000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y411{bottom:187.684000pt;}
.y2ec{bottom:188.371200pt;}
.y140{bottom:189.285120pt;}
.y3ec{bottom:190.452480pt;}
.y16d{bottom:190.904320pt;}
.y1ac{bottom:192.160000pt;}
.yce{bottom:195.079680pt;}
.y70{bottom:196.480000pt;}
.ya3{bottom:196.522240pt;}
.y247{bottom:196.800000pt;}
.y266{bottom:197.109760pt;}
.y2bf{bottom:197.255680pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y33b{bottom:197.681920pt;}
.yfa{bottom:199.334400pt;}
.y396{bottom:199.776000pt;}
.y1d8{bottom:199.968000pt;}
.y293{bottom:200.348160pt;}
.y204{bottom:200.416000pt;}
.y30e{bottom:200.983040pt;}
.y4a{bottom:202.020000pt;}
.y410{bottom:202.888000pt;}
.y129{bottom:203.258880pt;}
.y368{bottom:203.521280pt;}
.y21a{bottom:204.558080pt;}
.y3eb{bottom:206.454720pt;}
.y2eb{bottom:208.364800pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y13f{bottom:208.800000pt;}
.y1ab{bottom:209.440000pt;}
.y16c{bottom:210.897920pt;}
.y1b3{bottom:213.280000pt;}
.ycd{bottom:215.073280pt;}
.y246{bottom:216.793600pt;}
.y265{bottom:217.103360pt;}
.y2be{bottom:217.249280pt;}
.y33a{bottom:217.520640pt;}
.y49{bottom:217.704000pt;}
.y6f{bottom:218.616000pt;}
.yf9{bottom:219.018240pt;}
.y395{bottom:219.459840pt;}
.y1d7{bottom:219.961600pt;}
.y203{bottom:220.409600pt;}
.y292{bottom:220.510720pt;}
.y30d{bottom:221.145600pt;}
.y40f{bottom:222.244000pt;}
.y3ea{bottom:222.456960pt;}
.y128{bottom:222.942720pt;}
.y367{bottom:223.683840pt;}
.ya2{bottom:224.527360pt;}
.y219{bottom:224.551680pt;}
.y2ea{bottom:228.358400pt;}
.y1aa{bottom:230.720000pt;}
.y1b2{bottom:230.880000pt;}
.y16b{bottom:230.891520pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y48{bottom:233.388000pt;}
.y6e{bottom:234.456000pt;}
.ycc{bottom:235.066880pt;}
.y245{bottom:236.787200pt;}
.y264{bottom:237.096960pt;}
.y2bd{bottom:237.242880pt;}
.y13e{bottom:237.281920pt;}
.y339{bottom:237.359360pt;}
.yf8{bottom:238.856960pt;}
.y394{bottom:239.298560pt;}
.y1d6{bottom:239.955200pt;}
.y202{bottom:240.403200pt;}
.y291{bottom:240.828160pt;}
.y30c{bottom:241.463040pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y127{bottom:242.781440pt;}
.y366{bottom:243.846400pt;}
.ya1{bottom:244.520960pt;}
.y218{bottom:244.545280pt;}
.y40e{bottom:245.608000pt;}
.y3e9{bottom:246.460320pt;}
.y1b7{bottom:248.000000pt;}
.y1a9{bottom:248.160000pt;}
.y2e9{bottom:248.352000pt;}
.y47{bottom:249.072000pt;}
.y6d{bottom:250.452000pt;}
.y16a{bottom:250.885120pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.ycb{bottom:255.060480pt;}
.y244{bottom:256.780800pt;}
.y338{bottom:257.198080pt;}
.y2bc{bottom:257.236480pt;}
.yf7{bottom:258.540800pt;}
.y393{bottom:258.982400pt;}
.y1d5{bottom:259.948800pt;}
.y201{bottom:260.396800pt;}
.y290{bottom:261.145600pt;}
.y13d{bottom:261.280960pt;}
.y40d{bottom:261.604000pt;}
.y30b{bottom:261.780480pt;}
.y126{bottom:262.465280pt;}
.y365{bottom:264.008960pt;}
.ya0{bottom:264.514560pt;}
.y217{bottom:264.538880pt;}
.y46{bottom:264.912000pt;}
.y263{bottom:265.102080pt;}
.y1a8{bottom:265.440000pt;}
.y6c{bottom:266.292000pt;}
.y2e8{bottom:268.345600pt;}
.y1b1{bottom:269.280000pt;}
.y3e8{bottom:270.463680pt;}
.y169{bottom:270.878720pt;}
.yca{bottom:275.054080pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y243{bottom:276.774400pt;}
.y337{bottom:277.191680pt;}
.y2bb{bottom:277.230080pt;}
.y40c{bottom:277.600000pt;}
.yf6{bottom:278.224640pt;}
.y392{bottom:278.666240pt;}
.y200{bottom:280.390400pt;}
.y45{bottom:280.908000pt;}
.y28f{bottom:281.308160pt;}
.y30a{bottom:281.943040pt;}
.y125{bottom:282.149120pt;}
.y6b{bottom:282.456000pt;}
.y1b6{bottom:282.880000pt;}
.y364{bottom:284.171520pt;}
.y9f{bottom:284.508160pt;}
.y216{bottom:284.532480pt;}
.y262{bottom:284.785920pt;}
.y13c{bottom:285.280000pt;}
.y3e7{bottom:286.465920pt;}
.y1a7{bottom:286.720000pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1d4{bottom:287.953920pt;}
.y2e7{bottom:288.339200pt;}
.y168{bottom:290.872320pt;}
.yc9{bottom:295.047680pt;}
.y44{bottom:296.592000pt;}
.y242{bottom:296.768000pt;}
.y2ba{bottom:297.223680pt;}
.y6a{bottom:298.296000pt;}
.y391{bottom:298.504960pt;}
.y1b5{bottom:300.160000pt;}
.y1ff{bottom:300.384000pt;}
.y28e{bottom:301.625600pt;}
.y124{bottom:301.987840pt;}
.y40b{bottom:302.240000pt;}
.y309{bottom:302.260480pt;}
.y1a6{bottom:304.000000pt;}
.y363{bottom:304.165120pt;}
.y9e{bottom:304.501760pt;}
.y215{bottom:304.526080pt;}
.y261{bottom:304.624640pt;}
.y336{bottom:305.027840pt;}
.yf5{bottom:306.060800pt;}
.y1d3{bottom:307.792640pt;}
.y2e6{bottom:308.332800pt;}
.y11{bottom:309.452000pt;}
.y3e6{bottom:310.469280pt;}
.y167{bottom:310.865920pt;}
.yc8{bottom:315.041280pt;}
.y241{bottom:316.761600pt;}
.y2b9{bottom:317.217280pt;}
.y390{bottom:318.188800pt;}
.y43{bottom:318.672000pt;}
.y1fe{bottom:320.377600pt;}
.y69{bottom:320.532000pt;}
.y1a5{bottom:321.280000pt;}
.y123{bottom:321.671680pt;}
.y28d{bottom:321.943040pt;}
.y308{bottom:322.577920pt;}
.y260{bottom:324.308480pt;}
.y362{bottom:324.327680pt;}
.y9d{bottom:324.495360pt;}
.y13b{bottom:324.519680pt;}
.y335{bottom:324.866560pt;}
.y3e5{bottom:326.471520pt;}
.y1d2{bottom:327.631360pt;}
.y2e5{bottom:328.326400pt;}
.y166{bottom:330.859520pt;}
.y40a{bottom:333.736000pt;}
.y42{bottom:334.512000pt;}
.yc7{bottom:335.034880pt;}
.y68{bottom:336.216000pt;}
.y240{bottom:336.755200pt;}
.y2b8{bottom:337.210880pt;}
.y1a4{bottom:338.880000pt;}
.yf4{bottom:339.345920pt;}
.y1fd{bottom:340.371200pt;}
.y122{bottom:341.355520pt;}
.y28c{bottom:342.105600pt;}
.y3e4{bottom:342.473760pt;}
.y307{bottom:342.740480pt;}
.y10{bottom:343.809333pt;}
.y25f{bottom:343.992320pt;}
.y9c{bottom:344.488960pt;}
.y361{bottom:344.490240pt;}
.y13a{bottom:344.513280pt;}
.y334{bottom:344.705280pt;}
.y38f{bottom:345.870080pt;}
.y1d1{bottom:347.624960pt;}
.y2e4{bottom:348.320000pt;}
.y409{bottom:349.732000pt;}
.y41{bottom:350.196000pt;}
.y165{bottom:350.853120pt;}
.y67{bottom:352.056000pt;}
.y1a3{bottom:356.160000pt;}
.y23f{bottom:356.748800pt;}
.y2b7{bottom:357.204480pt;}
.yf3{bottom:359.029760pt;}
.y1fc{bottom:360.364800pt;}
.y121{bottom:361.194240pt;}
.y28b{bottom:362.423040pt;}
.yf{bottom:362.706666pt;}
.yc6{bottom:363.040000pt;}
.y306{bottom:363.057920pt;}
.y25e{bottom:363.831040pt;}
.y9b{bottom:364.482560pt;}
.y139{bottom:364.506880pt;}
.y333{bottom:364.544000pt;}
.y360{bottom:364.652800pt;}
.y408{bottom:365.728000pt;}
.y38e{bottom:365.863680pt;}
.y40{bottom:365.880000pt;}
.y3e3{bottom:366.477120pt;}
.y1d0{bottom:367.463680pt;}
.y66{bottom:367.740000pt;}
.y164{bottom:370.846720pt;}
.y23e{bottom:376.742400pt;}
.y2e3{bottom:376.967040pt;}
.y2b6{bottom:377.198080pt;}
.yf2{bottom:378.544640pt;}
.y1fb{bottom:380.358400pt;}
.y120{bottom:380.878080pt;}
.y3f{bottom:381.720000pt;}
.y1a2{bottom:382.080000pt;}
.y3e2{bottom:382.479360pt;}
.y28a{bottom:382.740480pt;}
.y305{bottom:383.375360pt;}
.y65{bottom:383.424000pt;}
.y25d{bottom:383.514880pt;}
.y332{bottom:384.382720pt;}
.y9a{bottom:384.476160pt;}
.y138{bottom:384.500480pt;}
.y35f{bottom:384.815360pt;}
.y38d{bottom:385.702400pt;}
.y1cf{bottom:387.302400pt;}
.y163{bottom:390.840320pt;}
.y23d{bottom:396.736000pt;}
.y2e2{bottom:396.960000pt;}
.y2b5{bottom:397.191680pt;}
.yc5{bottom:397.281920pt;}
.y3e{bottom:397.404000pt;}
.y407{bottom:397.732000pt;}
.yf1{bottom:398.228480pt;}
.y3e1{bottom:398.481600pt;}
.y64{bottom:399.264000pt;}
.y1a1{bottom:399.520000pt;}
.y1fa{bottom:400.352000pt;}
.y11f{bottom:400.561920pt;}
.y289{bottom:402.903040pt;}
.y25c{bottom:403.198720pt;}
.y304{bottom:403.537920pt;}
.y331{bottom:404.376320pt;}
.y137{bottom:404.494080pt;}
.y35e{bottom:404.977920pt;}
.y38c{bottom:405.696000pt;}
.y1ce{bottom:407.141120pt;}
.y162{bottom:410.833920pt;}
.y99{bottom:412.481280pt;}
.y406{bottom:413.248000pt;}
.y3e0{bottom:414.483840pt;}
.y63{bottom:414.948000pt;}
.y23c{bottom:416.729600pt;}
.y1a0{bottom:416.800000pt;}
.y2b4{bottom:417.185280pt;}
.yf0{bottom:417.743360pt;}
.y3d{bottom:419.808000pt;}
.y1f9{bottom:420.345600pt;}
.y11e{bottom:420.400640pt;}
.yc4{bottom:421.280960pt;}
.y288{bottom:423.220480pt;}
.y303{bottom:423.855360pt;}
.y330{bottom:424.215040pt;}
.y136{bottom:424.487680pt;}
.y35d{bottom:424.971520pt;}
.y38b{bottom:425.534720pt;}
.y1cd{bottom:426.979840pt;}
.y405{bottom:428.452000pt;}
.y62{bottom:430.632000pt;}
.y161{bottom:430.827520pt;}
.y25b{bottom:430.880000pt;}
.ye{bottom:430.990669pt;}
.y98{bottom:432.474880pt;}
.y2e1{bottom:432.659200pt;}
.y3c{bottom:435.492000pt;}
.y23b{bottom:436.723200pt;}
.y2b3{bottom:437.178880pt;}
.yef{bottom:437.427200pt;}
.y3df{bottom:438.487200pt;}
.y11d{bottom:440.084480pt;}
.y1f8{bottom:440.339200pt;}
.y19f{bottom:442.880000pt;}
.y287{bottom:443.537920pt;}
.y404{bottom:443.656000pt;}
.y32f{bottom:444.053760pt;}
.y302{bottom:444.172800pt;}
.y135{bottom:444.481280pt;}
.y35c{bottom:445.134080pt;}
.yc3{bottom:445.280000pt;}
.y38a{bottom:445.528320pt;}
.y61{bottom:446.628000pt;}
.y1cc{bottom:446.818560pt;}
.yd{bottom:446.990669pt;}
.y25a{bottom:450.718720pt;}
.y160{bottom:450.821120pt;}
.y3b{bottom:451.332000pt;}
.y97{bottom:452.468480pt;}
.y2e0{bottom:452.652800pt;}
.y3de{bottom:454.489440pt;}
.y23a{bottom:456.716800pt;}
.yee{bottom:456.942080pt;}
.y2b2{bottom:457.172480pt;}
.y11c{bottom:459.768320pt;}
.y1f7{bottom:460.332800pt;}
.y60{bottom:462.312000pt;}
.yc{bottom:462.990669pt;}
.y286{bottom:463.700480pt;}
.y32e{bottom:463.892480pt;}
.y301{bottom:464.335360pt;}
.y134{bottom:464.474880pt;}
.y35b{bottom:465.296640pt;}
.y389{bottom:465.521920pt;}
.y1cb{bottom:466.812160pt;}
.y3a{bottom:467.016000pt;}
.y259{bottom:470.557440pt;}
.y15f{bottom:470.814720pt;}
.y19e{bottom:472.418560pt;}
.y96{bottom:472.462080pt;}
.y2df{bottom:472.646400pt;}
.y239{bottom:476.710400pt;}
.y5f{bottom:478.152000pt;}
.y3dd{bottom:478.492800pt;}
.yb{bottom:478.990666pt;}
.y11b{bottom:479.607040pt;}
.y1f6{bottom:480.326400pt;}
.y39{bottom:482.700000pt;}
.y32d{bottom:483.731200pt;}
.y285{bottom:484.017920pt;}
.yed{bottom:484.468480pt;}
.y300{bottom:484.652800pt;}
.yc2{bottom:484.697600pt;}
.y2b1{bottom:485.177600pt;}
.y388{bottom:485.360640pt;}
.y35a{bottom:485.459200pt;}
.y1ca{bottom:486.650880pt;}
.y258{bottom:490.396160pt;}
.y15e{bottom:490.808320pt;}
.y95{bottom:492.455680pt;}
.y2de{bottom:492.640000pt;}
.y5e{bottom:493.836000pt;}
.y3dc{bottom:494.495040pt;}
.ya{bottom:494.990666pt;}
.y238{bottom:496.704000pt;}
.y38{bottom:498.540000pt;}
.y11a{bottom:499.290880pt;}
.y1f5{bottom:500.320000pt;}
.y32c{bottom:503.569920pt;}
.y284{bottom:504.335360pt;}
.y184{bottom:504.436480pt;}
.yec{bottom:504.462080pt;}
.y19d{bottom:504.577280pt;}
.yc1{bottom:504.691200pt;}
.y2ff{bottom:504.970240pt;}
.y2b0{bottom:505.171200pt;}
.y387{bottom:505.354240pt;}
.y359{bottom:505.621760pt;}
.y1c9{bottom:506.489600pt;}
.y257{bottom:510.080000pt;}
.y15d{bottom:510.801920pt;}
.y94{bottom:512.449280pt;}
.y2dd{bottom:512.633600pt;}
.y5d{bottom:516.072000pt;}
.y237{bottom:516.697600pt;}
.y3db{bottom:518.498400pt;}
.y119{bottom:518.974720pt;}
.y37{bottom:522.216000pt;}
.y403{bottom:523.180000pt;}
.y32b{bottom:523.563520pt;}
.y183{bottom:524.430080pt;}
.yeb{bottom:524.455680pt;}
.y19c{bottom:524.570880pt;}
.yc0{bottom:524.684800pt;}
.y2fe{bottom:525.132800pt;}
.y2af{bottom:525.164800pt;}
.y386{bottom:525.192960pt;}
.y358{bottom:525.784320pt;}
.y1c8{bottom:526.328320pt;}
.y1f4{bottom:528.967040pt;}
.y256{bottom:529.918720pt;}
.y15c{bottom:530.795520pt;}
.y5c{bottom:531.756000pt;}
.y93{bottom:532.442880pt;}
.y283{bottom:532.495360pt;}
.y2dc{bottom:532.627200pt;}
.y3da{bottom:534.500640pt;}
.y236{bottom:536.691200pt;}
.y36{bottom:537.900000pt;}
.y118{bottom:538.813440pt;}
.y402{bottom:539.176000pt;}
.y32a{bottom:543.402240pt;}
.y182{bottom:544.423680pt;}
.yea{bottom:544.449280pt;}
.y19b{bottom:544.564480pt;}
.ybf{bottom:544.678400pt;}
.y2ae{bottom:545.158400pt;}
.y385{bottom:545.186560pt;}
.y2fd{bottom:545.450240pt;}
.y357{bottom:545.777920pt;}
.y1c7{bottom:546.167040pt;}
.y5b{bottom:547.440000pt;}
.y1f3{bottom:548.960000pt;}
.y255{bottom:549.757440pt;}
.y3d9{bottom:550.502880pt;}
.y15b{bottom:550.789120pt;}
.y92{bottom:552.436480pt;}
.y282{bottom:552.488960pt;}
.y2db{bottom:552.620800pt;}
.y35{bottom:553.740000pt;}
.y235{bottom:556.684800pt;}
.y117{bottom:558.497280pt;}
.y329{bottom:563.240960pt;}
.y5a{bottom:563.280000pt;}
.y181{bottom:564.417280pt;}
.ye9{bottom:564.442880pt;}
.y19a{bottom:564.558080pt;}
.ybe{bottom:564.672000pt;}
.y384{bottom:565.025280pt;}
.y2ad{bottom:565.152000pt;}
.y2fc{bottom:565.767680pt;}
.y356{bottom:565.940480pt;}
.y1c6{bottom:566.005760pt;}
.y3d8{bottom:566.505120pt;}
.y34{bottom:569.424000pt;}
.y254{bottom:569.596160pt;}
.y15a{bottom:570.782720pt;}
.y91{bottom:572.430080pt;}
.y281{bottom:572.482560pt;}
.y2da{bottom:572.614400pt;}
.y9{bottom:573.786667pt;}
.y234{bottom:576.678400pt;}
.y116{bottom:578.181120pt;}
.y59{bottom:578.964000pt;}
.y328{bottom:583.079680pt;}
.y1f2{bottom:584.339200pt;}
.y180{bottom:584.410880pt;}
.ye8{bottom:584.436480pt;}
.ybd{bottom:584.665600pt;}
.y383{bottom:585.018880pt;}
.y33{bottom:585.108000pt;}
.y2ac{bottom:585.145600pt;}
.y2fb{bottom:585.930240pt;}
.y1c5{bottom:585.999360pt;}
.y355{bottom:586.103040pt;}
.y253{bottom:589.280000pt;}
.y3d7{bottom:590.508480pt;}
.y159{bottom:590.776320pt;}
.y90{bottom:592.423680pt;}
.y280{bottom:592.476160pt;}
.y199{bottom:592.563200pt;}
.y2d9{bottom:592.608000pt;}
.y8{bottom:592.685334pt;}
.y58{bottom:594.960000pt;}
.y115{bottom:598.019840pt;}
.y32{bottom:600.948000pt;}
.y327{bottom:602.918400pt;}
.y1f1{bottom:604.332800pt;}
.y17f{bottom:604.404480pt;}
.ye7{bottom:604.430080pt;}
.ybc{bottom:604.659200pt;}
.y233{bottom:604.683520pt;}
.y382{bottom:605.012480pt;}
.y2ab{bottom:605.139200pt;}
.y1c4{bottom:605.838080pt;}
.y2fa{bottom:606.247680pt;}
.y354{bottom:606.265600pt;}
.y3d6{bottom:606.510720pt;}
.y3c3{bottom:607.031040pt;}
.y252{bottom:609.118720pt;}
.y158{bottom:610.769920pt;}
.y57{bottom:610.800000pt;}
.y8f{bottom:612.417280pt;}
.y27f{bottom:612.469760pt;}
.y198{bottom:612.556800pt;}
.y2d8{bottom:612.601600pt;}
.y31{bottom:616.632000pt;}
.y114{bottom:617.703680pt;}
.y326{bottom:622.757120pt;}
.y1f0{bottom:624.326400pt;}
.ye6{bottom:624.423680pt;}
.ybb{bottom:624.652800pt;}
.y232{bottom:624.677120pt;}
.y381{bottom:624.851200pt;}
.y2aa{bottom:625.132800pt;}
.y1c3{bottom:625.676800pt;}
.y353{bottom:626.428160pt;}
.y56{bottom:626.484000pt;}
.y2f9{bottom:626.565120pt;}
.y401{bottom:627.016000pt;}
.y3af{bottom:627.334400pt;}
.y3c2{bottom:627.348480pt;}
.y251{bottom:628.957440pt;}
.y3d5{bottom:630.514080pt;}
.y157{bottom:630.763520pt;}
.y30{bottom:632.316000pt;}
.y17e{bottom:632.409600pt;}
.y8e{bottom:632.410880pt;}
.y133{bottom:632.435200pt;}
.y27e{bottom:632.463360pt;}
.y197{bottom:632.550400pt;}
.y2d7{bottom:632.595200pt;}
.y113{bottom:637.387520pt;}
.y400{bottom:642.376000pt;}
.y325{bottom:642.750720pt;}
.y1ef{bottom:644.320000pt;}
.ye5{bottom:644.417280pt;}
.yba{bottom:644.646400pt;}
.y231{bottom:644.670720pt;}
.y380{bottom:644.844800pt;}
.y2a9{bottom:645.126400pt;}
.y1c2{bottom:645.515520pt;}
.y7{bottom:645.598667pt;}
.y3d4{bottom:646.516320pt;}
.y352{bottom:646.590720pt;}
.y2f8{bottom:646.727680pt;}
.y3ae{bottom:647.496960pt;}
.y3c1{bottom:647.511040pt;}
.y2f{bottom:648.156000pt;}
.y55{bottom:648.564000pt;}
.y250{bottom:648.796160pt;}
.y17d{bottom:652.403200pt;}
.y8d{bottom:652.404480pt;}
.y132{bottom:652.428800pt;}
.y27d{bottom:652.456960pt;}
.y196{bottom:652.544000pt;}
.y2d6{bottom:652.588800pt;}
.y112{bottom:657.226240pt;}
.y3ff{bottom:657.736000pt;}
.y156{bottom:658.768640pt;}
.y324{bottom:662.589440pt;}
.y2e{bottom:663.840000pt;}
.y54{bottom:664.248000pt;}
.ye4{bottom:664.410880pt;}
.yb9{bottom:664.640000pt;}
.y230{bottom:664.664320pt;}
.y37f{bottom:664.683520pt;}
.y2a8{bottom:665.120000pt;}
.y1c1{bottom:665.354240pt;}
.y2f7{bottom:667.045120pt;}
.y3ad{bottom:667.814400pt;}
.y3c0{bottom:667.828480pt;}
.y24f{bottom:668.480000pt;}
.y3{bottom:668.977329pt;}
.y3d3{bottom:670.519680pt;}
.y17c{bottom:672.396800pt;}
.y8c{bottom:672.398080pt;}
.y131{bottom:672.422400pt;}
.y27c{bottom:672.450560pt;}
.y195{bottom:672.537600pt;}
.y2d5{bottom:672.582400pt;}
.y3fe{bottom:673.096000pt;}
.y1ee{bottom:673.280000pt;}
.y351{bottom:674.750720pt;}
.y111{bottom:676.910080pt;}
.y155{bottom:678.762240pt;}
.y53{bottom:680.088000pt;}
.y323{bottom:682.428160pt;}
.ye3{bottom:684.404480pt;}
.yb8{bottom:684.633600pt;}
.y22f{bottom:684.657920pt;}
.y37e{bottom:684.677120pt;}
.y1c0{bottom:685.192960pt;}
.y3d2{bottom:686.521920pt;}
.y2f6{bottom:687.362560pt;}
.y3ac{bottom:688.131840pt;}
.y3bf{bottom:688.145920pt;}
.y3fd{bottom:688.300000pt;}
.y2d{bottom:689.120000pt;}
.y17b{bottom:692.390400pt;}
.y8b{bottom:692.391680pt;}
.y130{bottom:692.416000pt;}
.y27b{bottom:692.444160pt;}
.y194{bottom:692.531200pt;}
.y2d4{bottom:692.576000pt;}
.y2a7{bottom:693.773947pt;}
.y350{bottom:694.589440pt;}
.y52{bottom:695.772000pt;}
.y110{bottom:696.593920pt;}
.y24e{bottom:696.958720pt;}
.y154{bottom:698.755840pt;}
.y322{bottom:702.266880pt;}
.y3fc{bottom:703.660000pt;}
.ye2{bottom:704.398080pt;}
.yb7{bottom:704.627200pt;}
.y22e{bottom:704.651520pt;}
.y37d{bottom:704.670720pt;}
.y1bf{bottom:705.186560pt;}
.y2f5{bottom:707.525120pt;}
.y3be{bottom:708.308480pt;}
.y3d1{bottom:710.525280pt;}
.y17a{bottom:712.384000pt;}
.y12f{bottom:712.409600pt;}
.y27a{bottom:712.437760pt;}
.y193{bottom:712.524800pt;}
.y2d3{bottom:712.569600pt;}
.y1ed{bottom:712.578560pt;}
.y2c{bottom:712.800000pt;}
.y2a6{bottom:713.766907pt;}
.y34f{bottom:714.428160pt;}
.y10f{bottom:716.432640pt;}
.y3ab{bottom:716.446720pt;}
.y24d{bottom:716.960000pt;}
.y153{bottom:718.749440pt;}
.y8a{bottom:720.396800pt;}
.y321{bottom:722.105600pt;}
.y214{bottom:724.391680pt;}
.y37c{bottom:724.509440pt;}
.yb6{bottom:724.620800pt;}
.y22d{bottom:724.645120pt;}
.y1be{bottom:725.025280pt;}
.y3d0{bottom:726.527520pt;}
.y2f4{bottom:727.842560pt;}
.y3bd{bottom:728.625920pt;}
.y179{bottom:732.377600pt;}
.ye1{bottom:732.403200pt;}
.y279{bottom:732.431360pt;}
.y192{bottom:732.518400pt;}
.y2d2{bottom:732.563200pt;}
.y1ec{bottom:732.572160pt;}
.y2b{bottom:733.122400pt;}
.y2a5{bottom:733.759867pt;}
.y34e{bottom:734.266880pt;}
.y10e{bottom:736.116480pt;}
.y3aa{bottom:736.130560pt;}
.y89{bottom:740.390400pt;}
.y320{bottom:741.944320pt;}
.y3cf{bottom:742.529760pt;}
.y3fb{bottom:743.020000pt;}
.y213{bottom:744.385280pt;}
.y37b{bottom:744.503040pt;}
.y22c{bottom:744.638720pt;}
.y1bd{bottom:744.864000pt;}
.y152{bottom:746.754560pt;}
.y2f3{bottom:748.160000pt;}
.y3bc{bottom:748.943360pt;}
.y178{bottom:752.371200pt;}
.ye0{bottom:752.396800pt;}
.y278{bottom:752.424960pt;}
.y191{bottom:752.512000pt;}
.y2d1{bottom:752.556800pt;}
.y1eb{bottom:752.565760pt;}
.yb5{bottom:752.625920pt;}
.y34d{bottom:754.105600pt;}
.y2a{bottom:755.680000pt;}
.y10d{bottom:755.800320pt;}
.y3a9{bottom:755.814400pt;}
.y88{bottom:760.384000pt;}
.y31f{bottom:761.937920pt;}
.y3fa{bottom:763.660000pt;}
.y37a{bottom:764.341760pt;}
.y212{bottom:764.378880pt;}
.y22b{bottom:764.632320pt;}
.y1bc{bottom:764.702720pt;}
.y3ce{bottom:766.533120pt;}
.y151{bottom:766.748160pt;}
.y3bb{bottom:769.105920pt;}
.y2a4{bottom:769.132800pt;}
.y177{bottom:772.364800pt;}
.ydf{bottom:772.390400pt;}
.y277{bottom:772.418560pt;}
.y190{bottom:772.505600pt;}
.y2d0{bottom:772.550400pt;}
.y1ea{bottom:772.559360pt;}
.yb4{bottom:772.619520pt;}
.y34c{bottom:773.944320pt;}
.y10c{bottom:775.639040pt;}
.y3a8{bottom:775.653120pt;}
.y2f2{bottom:776.960000pt;}
.y3f9{bottom:779.020000pt;}
.y87{bottom:780.377600pt;}
.y2{bottom:781.661334pt;}
.y31e{bottom:781.776640pt;}
.y3cd{bottom:782.535360pt;}
.y379{bottom:784.335360pt;}
.y211{bottom:784.372480pt;}
.y1bb{bottom:784.541440pt;}
.y22a{bottom:784.625920pt;}
.y150{bottom:786.741760pt;}
.y3ba{bottom:789.423360pt;}
.y2a3{bottom:789.450240pt;}
.y176{bottom:792.358400pt;}
.yde{bottom:792.384000pt;}
.y276{bottom:792.412160pt;}
.y18f{bottom:792.499200pt;}
.y2cf{bottom:792.544000pt;}
.y1e9{bottom:792.552960pt;}
.yb3{bottom:792.613120pt;}
.y34b{bottom:793.937920pt;}
.y3f8{bottom:794.704000pt;}
.y10b{bottom:795.322880pt;}
.y3a7{bottom:795.336960pt;}
.y86{bottom:800.371200pt;}
.y31d{bottom:801.615360pt;}
.y378{bottom:804.174080pt;}
.y210{bottom:804.366080pt;}
.y229{bottom:804.619520pt;}
.y3cc{bottom:806.538720pt;}
.y14f{bottom:806.735360pt;}
.y3b9{bottom:809.740800pt;}
.y2a2{bottom:809.767680pt;}
.y175{bottom:812.352000pt;}
.ydd{bottom:812.377600pt;}
.y275{bottom:812.405760pt;}
.y18e{bottom:812.492800pt;}
.y2ce{bottom:812.537600pt;}
.y1e8{bottom:812.546560pt;}
.yb2{bottom:812.606720pt;}
.y34a{bottom:813.776640pt;}
.y10a{bottom:815.006720pt;}
.y3a6{bottom:815.020800pt;}
.y85{bottom:820.364800pt;}
.y31c{bottom:821.454080pt;}
.y3cb{bottom:822.540960pt;}
.y377{bottom:824.167680pt;}
.y20f{bottom:824.359680pt;}
.y228{bottom:824.613120pt;}
.y3f7{bottom:825.748000pt;}
.y14e{bottom:826.728960pt;}
.y29{bottom:827.656000pt;}
.y3b8{bottom:829.903360pt;}
.y2a1{bottom:829.930240pt;}
.y174{bottom:832.345600pt;}
.ydc{bottom:832.371200pt;}
.y274{bottom:832.399360pt;}
.y18d{bottom:832.486400pt;}
.y2cd{bottom:832.531200pt;}
.y1e7{bottom:832.540160pt;}
.yb1{bottom:832.600320pt;}
.y349{bottom:833.615360pt;}
.y109{bottom:834.845440pt;}
.y3a5{bottom:834.859520pt;}
.y84{bottom:840.358400pt;}
.y31b{bottom:841.292800pt;}
.y376{bottom:844.161280pt;}
.y20e{bottom:844.353280pt;}
.y227{bottom:844.606720pt;}
.y3f6{bottom:846.388000pt;}
.y3ca{bottom:846.544320pt;}
.y14d{bottom:846.722560pt;}
.y3b7{bottom:850.220800pt;}
.y2a0{bottom:850.247680pt;}
.y173{bottom:852.339200pt;}
.ydb{bottom:852.364800pt;}
.y273{bottom:852.392960pt;}
.y18c{bottom:852.480000pt;}
.y2cc{bottom:852.524800pt;}
.y1e6{bottom:852.533760pt;}
.yb0{bottom:852.593920pt;}
.y348{bottom:853.454080pt;}
.y108{bottom:854.529280pt;}
.y3a4{bottom:854.543360pt;}
.y28{bottom:855.664000pt;}
.y1{bottom:859.312000pt;}
.y83{bottom:860.352000pt;}
.y31a{bottom:861.131520pt;}
.y3f5{bottom:862.072000pt;}
.y3c9{bottom:862.546560pt;}
.y375{bottom:864.000000pt;}
.y20d{bottom:864.346880pt;}
.y226{bottom:864.600320pt;}
.y14c{bottom:866.716160pt;}
.y3b6{bottom:870.538240pt;}
.y29f{bottom:870.565120pt;}
.y172{bottom:872.332800pt;}
.yda{bottom:872.358400pt;}
.y272{bottom:872.386560pt;}
.y18b{bottom:872.473600pt;}
.y2cb{bottom:872.518400pt;}
.y1e5{bottom:872.527360pt;}
.yaf{bottom:872.587520pt;}
.y347{bottom:873.292800pt;}
.y107{bottom:874.213120pt;}
.y3a3{bottom:874.227200pt;}
.y3c8{bottom:878.548800pt;}
.y82{bottom:880.345600pt;}
.y319{bottom:881.125120pt;}
.y27{bottom:883.672000pt;}
.y374{bottom:883.993600pt;}
.y20c{bottom:884.340480pt;}
.y225{bottom:884.593920pt;}
.y3b5{bottom:890.700800pt;}
.y29e{bottom:890.727680pt;}
.y171{bottom:892.326400pt;}
.yd9{bottom:892.352000pt;}
.y271{bottom:892.380160pt;}
.y18a{bottom:892.467200pt;}
.y2ca{bottom:892.512000pt;}
.y1e4{bottom:892.520960pt;}
.yae{bottom:892.581120pt;}
.y3f4{bottom:893.116000pt;}
.y346{bottom:893.131520pt;}
.y106{bottom:894.051840pt;}
.y3a2{bottom:894.065920pt;}
.y14b{bottom:894.876160pt;}
.y81{bottom:900.339200pt;}
.y318{bottom:900.963840pt;}
.y3c7{bottom:902.552160pt;}
.y373{bottom:903.832320pt;}
.y20b{bottom:904.334080pt;}
.y224{bottom:904.587520pt;}
.y3b4{bottom:911.018240pt;}
.y29d{bottom:911.045120pt;}
.y26{bottom:911.680000pt;}
.y170{bottom:912.320000pt;}
.yd8{bottom:912.345600pt;}
.y270{bottom:912.373760pt;}
.y189{bottom:912.460800pt;}
.y2c9{bottom:912.505600pt;}
.y1e3{bottom:912.514560pt;}
.yad{bottom:912.574720pt;}
.y345{bottom:913.125120pt;}
.y105{bottom:913.735680pt;}
.y3a1{bottom:913.749760pt;}
.y3f3{bottom:913.756000pt;}
.y14a{bottom:914.391040pt;}
.y3c6{bottom:918.554400pt;}
.y80{bottom:920.332800pt;}
.y317{bottom:920.802560pt;}
.y223{bottom:924.581120pt;}
.y3f2{bottom:929.440000pt;}
.y3b3{bottom:931.335680pt;}
.y29c{bottom:931.362560pt;}
.y372{bottom:931.837440pt;}
.yd7{bottom:932.339200pt;}
.y26f{bottom:932.367360pt;}
.y188{bottom:932.454400pt;}
.y2c8{bottom:932.499200pt;}
.y1e2{bottom:932.508160pt;}
.yac{bottom:932.568320pt;}
.y344{bottom:932.963840pt;}
.y104{bottom:933.419520pt;}
.y3a0{bottom:933.433600pt;}
.y149{bottom:934.074880pt;}
.y7f{bottom:940.326400pt;}
.y316{bottom:940.641280pt;}
.y16f{bottom:941.281920pt;}
.y3c5{bottom:942.557760pt;}
.y3b2{bottom:951.498240pt;}
.y29b{bottom:951.525120pt;}
.y371{bottom:952.000000pt;}
.yd6{bottom:952.332800pt;}
.y26e{bottom:952.360960pt;}
.y187{bottom:952.448000pt;}
.y2c7{bottom:952.492800pt;}
.y1e1{bottom:952.501760pt;}
.yab{bottom:952.561920pt;}
.y222{bottom:952.586240pt;}
.y343{bottom:952.802560pt;}
.y103{bottom:953.258240pt;}
.y39f{bottom:953.272320pt;}
.y148{bottom:953.589760pt;}
.y3c4{bottom:958.560000pt;}
.y7a{bottom:959.360000pt;}
.y7e{bottom:960.320000pt;}
.y315{bottom:960.480000pt;}
.y3f1{bottom:960.484000pt;}
.y78{bottom:963.040000pt;}
.y16e{bottom:965.280960pt;}
.y3b1{bottom:971.815680pt;}
.y29a{bottom:971.842560pt;}
.y370{bottom:972.162560pt;}
.yd5{bottom:972.326400pt;}
.y26d{bottom:972.354560pt;}
.y186{bottom:972.441600pt;}
.y2c6{bottom:972.486400pt;}
.y1e0{bottom:972.495360pt;}
.yaa{bottom:972.555520pt;}
.y221{bottom:972.579840pt;}
.y342{bottom:972.641280pt;}
.y102{bottom:972.942080pt;}
.y39e{bottom:972.956160pt;}
.y147{bottom:973.273600pt;}
.y3f0{bottom:981.124000pt;}
.y7d{bottom:989.280000pt;}
.y3b0{bottom:992.133120pt;}
.y36f{bottom:992.156160pt;}
.y299{bottom:992.160000pt;}
.yd4{bottom:992.320000pt;}
.y26c{bottom:992.348160pt;}
.y185{bottom:992.435200pt;}
.y2c5{bottom:992.480000pt;}
.y1df{bottom:992.488960pt;}
.ya9{bottom:992.549120pt;}
.y220{bottom:992.573440pt;}
.y101{bottom:992.625920pt;}
.y39d{bottom:992.640000pt;}
.y146{bottom:992.788480pt;}
.y3ef{bottom:996.640000pt;}
.y3ed{bottom:1052.480000pt;}
.y7c{bottom:1053.440000pt;}
.y24{bottom:1060.480000pt;}
.h7{height:28.560000pt;}
.h11{height:33.440000pt;}
.h1d{height:34.945312pt;}
.h13{height:36.480000pt;}
.h1c{height:36.809062pt;}
.h19{height:39.072187pt;}
.h6{height:40.800000pt;}
.h15{height:41.002500pt;}
.hf{height:41.273438pt;}
.h10{height:41.976562pt;}
.h3{height:42.840000pt;}
.ha{height:43.474688pt;}
.h18{height:45.675938pt;}
.h17{height:46.454062pt;}
.h9{height:48.427500pt;}
.h2{height:48.960000pt;}
.h14{height:49.252500pt;}
.h1a{height:58.207500pt;}
.h16{height:58.911510pt;}
.hd{height:60.446250pt;}
.hc{height:64.386562pt;}
.he{height:65.483437pt;}
.h1b{height:65.519278pt;}
.h5{height:69.360000pt;}
.h12{height:74.438437pt;}
.hb{height:83.953125pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:272.000000pt;}
.w5{width:272.160000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:13.440000pt;}
.xa{left:60.960000pt;}
.x6{left:75.520000pt;}
.xf{left:82.720000pt;}
.x12{left:84.800000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.xc{left:192.000000pt;}
.x7{left:285.600000pt;}
.xe{left:312.480000pt;}
.x10{left:328.480000pt;}
.x9{left:396.832000pt;}
.xd{left:398.712320pt;}
.x3{left:404.408000pt;}
.x8{left:412.036000pt;}
.x5{left:427.040000pt;}
.x11{left:517.600000pt;}
}




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