
    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_ae188b749c272630cb700f9b.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_99a028ad7b8fff492fb1084a.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_9847ed2ef1d0ce438948e69f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.209961;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_af21e8fd65004a26fc252787.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.019531;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_68b4a9097a428325b338b6e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.173340;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_b93fe073a492ffb1bbd05d32.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.862305;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_fcd317a889be4d237ba00ac2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7ccc118d2aca0d124667dc2c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cb9178183a1b1dd8d065b55d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m5{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m6{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m3{transform:matrix(0.237340,0.000000,-0.079113,0.237152,0,0);-ms-transform:matrix(0.237340,0.000000,-0.079113,0.237152,0,0);-webkit-transform:matrix(0.237340,0.000000,-0.079113,0.237152,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.181280px;}
.ls5a{letter-spacing:-4.644000px;}
.ls27{letter-spacing:-3.888000px;}
.ls57{letter-spacing:-3.186000px;}
.ls3f{letter-spacing:-2.959884px;}
.ls36{letter-spacing:-2.484000px;}
.ls3c{letter-spacing:-2.444187px;}
.ls40{letter-spacing:-1.728000px;}
.ls3d{letter-spacing:-1.430611px;}
.ls39{letter-spacing:-1.144087px;}
.ls29{letter-spacing:-1.026000px;}
.ls78{letter-spacing:-0.916560px;}
.ls5d{letter-spacing:-0.810000px;}
.ls37{letter-spacing:-0.756000px;}
.ls2f{letter-spacing:-0.728640px;}
.ls3a{letter-spacing:-0.624048px;}
.ls1b{letter-spacing:-0.594000px;}
.ls74{letter-spacing:-0.482400px;}
.ls7b{letter-spacing:-0.457645px;}
.ls70{letter-spacing:-0.434160px;}
.ls16{letter-spacing:-0.432000px;}
.ls6b{letter-spacing:-0.397440px;}
.ls69{letter-spacing:-0.341526px;}
.ls21{letter-spacing:-0.334080px;}
.ls10{letter-spacing:-0.324000px;}
.ls7a{letter-spacing:-0.305097px;}
.ls7d{letter-spacing:-0.298800px;}
.ls1d{letter-spacing:-0.292320px;}
.ls77{letter-spacing:-0.289440px;}
.ls68{letter-spacing:-0.284605px;}
.lsf{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.264960px;}
.ls44{letter-spacing:-0.264113px;}
.ls6d{letter-spacing:-0.254247px;}
.ls8{letter-spacing:-0.250560px;}
.ls6f{letter-spacing:-0.241200px;}
.ls5b{letter-spacing:-0.216000px;}
.ls47{letter-spacing:-0.208800px;}
.ls72{letter-spacing:-0.203398px;}
.ls5e{letter-spacing:-0.198720px;}
.ls6c{letter-spacing:-0.192960px;}
.ls1f{letter-spacing:-0.167040px;}
.ls15{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.125280px;}
.ls13{letter-spacing:-0.108000px;}
.ls71{letter-spacing:-0.096480px;}
.ls7{letter-spacing:-0.083520px;}
.ls1c{letter-spacing:-0.054000px;}
.ls23{letter-spacing:-0.041760px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.041760px;}
.ls2b{letter-spacing:0.043200px;}
.ls75{letter-spacing:0.048240px;}
.ls6e{letter-spacing:0.050849px;}
.ls19{letter-spacing:0.054000px;}
.ls67{letter-spacing:0.059760px;}
.ls1e{letter-spacing:0.083520px;}
.lsb{letter-spacing:0.095760px;}
.ls11{letter-spacing:0.108000px;}
.ls6a{letter-spacing:0.113842px;}
.ls66{letter-spacing:0.119520px;}
.ls63{letter-spacing:0.130248px;}
.ls6{letter-spacing:0.140400px;}
.ls3b{letter-spacing:0.156012px;}
.ls22{letter-spacing:0.167040px;}
.ls79{letter-spacing:0.203398px;}
.ls35{letter-spacing:0.208800px;}
.ls17{letter-spacing:0.216000px;}
.ls62{letter-spacing:0.241200px;}
.ls1{letter-spacing:0.250560px;}
.ls34{letter-spacing:0.264113px;}
.ls28{letter-spacing:0.264960px;}
.ls18{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.287280px;}
.ls64{letter-spacing:0.289440px;}
.ls73{letter-spacing:0.305097px;}
.lsa{letter-spacing:0.334080px;}
.ls58{letter-spacing:0.352151px;}
.ls20{letter-spacing:0.375840px;}
.lse{letter-spacing:0.378000px;}
.ls2a{letter-spacing:0.432000px;}
.ls76{letter-spacing:0.472752px;}
.ls7c{letter-spacing:0.482400px;}
.ls38{letter-spacing:0.540000px;}
.ls60{letter-spacing:0.648000px;}
.ls41{letter-spacing:0.660284px;}
.ls42{letter-spacing:0.668160px;}
.ls24{letter-spacing:0.681120px;}
.ls3e{letter-spacing:0.937297px;}
.ls25{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.134000px;}
.ls2e{letter-spacing:1.836000px;}
.ls4f{letter-spacing:2.538000px;}
.ls2d{letter-spacing:2.592000px;}
.ls2{letter-spacing:3.240000px;}
.ls31{letter-spacing:3.294000px;}
.ls3{letter-spacing:3.996000px;}
.ls59{letter-spacing:4.087800px;}
.ls5c{letter-spacing:4.698000px;}
.ls14{letter-spacing:4.752000px;}
.ls4{letter-spacing:6.156000px;}
.ls1a{letter-spacing:6.912000px;}
.ls5f{letter-spacing:7.614000px;}
.ls43{letter-spacing:12.862080px;}
.ls46{letter-spacing:16.496640px;}
.ls65{letter-spacing:47.082240px;}
.ls5{letter-spacing:55.117800px;}
.ls30{letter-spacing:67.068000px;}
.ls61{letter-spacing:72.987120px;}
.ls2c{letter-spacing:83.456640px;}
.ls33{letter-spacing:83.466720px;}
.ls45{letter-spacing:200.782080px;}
.ls4d{letter-spacing:211.556160px;}
.ls4e{letter-spacing:362.769120px;}
.ls51{letter-spacing:401.063040px;}
.ls4a{letter-spacing:496.693440px;}
.ls48{letter-spacing:518.408640px;}
.ls50{letter-spacing:519.118560px;}
.ls49{letter-spacing:596.165760px;}
.ls4c{letter-spacing:636.380640px;}
.ls55{letter-spacing:682.567200px;}
.ls4b{letter-spacing:749.424960px;}
.ls52{letter-spacing:851.653440px;}
.ls53{letter-spacing:856.706400px;}
.ls32{letter-spacing:858.251520px;}
.ls54{letter-spacing:868.190400px;}
.ls56{letter-spacing:1022.994720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-30.068640px;}
.ws6{word-spacing:-29.972880px;}
.ws33{word-spacing:-19.673280px;}
.ws56{word-spacing:-19.209600px;}
.ws7{word-spacing:-19.143360px;}
.ws5a{word-spacing:-19.010880px;}
.ws59{word-spacing:-17.569440px;}
.wsb{word-spacing:-17.280000px;}
.ws37{word-spacing:-17.172000px;}
.ws2f{word-spacing:-17.118000px;}
.ws9{word-spacing:-17.010000px;}
.ws35{word-spacing:-16.956000px;}
.ws8{word-spacing:-16.902000px;}
.ws36{word-spacing:-16.848000px;}
.ws34{word-spacing:-16.794000px;}
.ws53{word-spacing:-16.686000px;}
.wse{word-spacing:-16.632000px;}
.wsa{word-spacing:-16.578000px;}
.wsd{word-spacing:-16.470000px;}
.ws77{word-spacing:-16.220967px;}
.ws74{word-spacing:-16.119268px;}
.ws76{word-spacing:-15.915870px;}
.ws61{word-spacing:-15.661623px;}
.wsc{word-spacing:-15.660000px;}
.ws75{word-spacing:-15.610773px;}
.ws5b{word-spacing:-15.388560px;}
.ws5d{word-spacing:-15.099120px;}
.ws60{word-spacing:-15.002640px;}
.ws5f{word-spacing:-14.906160px;}
.ws5c{word-spacing:-14.857920px;}
.ws73{word-spacing:-14.809680px;}
.ws5e{word-spacing:-14.664960px;}
.ws4e{word-spacing:-13.513804px;}
.ws4a{word-spacing:-13.404960px;}
.ws3{word-spacing:-13.321440px;}
.ws10{word-spacing:-13.237920px;}
.wsf{word-spacing:-13.154400px;}
.ws2{word-spacing:-13.070880px;}
.ws3d{word-spacing:-13.023490px;}
.ws1{word-spacing:-12.945600px;}
.ws49{word-spacing:-12.903840px;}
.ws4{word-spacing:-12.820320px;}
.ws48{word-spacing:-12.778560px;}
.ws47{word-spacing:-12.736800px;}
.ws46{word-spacing:-12.611520px;}
.ws45{word-spacing:-11.943360px;}
.ws57{word-spacing:-7.614000px;}
.ws20{word-spacing:-6.912000px;}
.ws4d{word-spacing:-6.156000px;}
.ws1b{word-spacing:-4.752000px;}
.ws1f{word-spacing:-3.996000px;}
.ws38{word-spacing:-3.294000px;}
.ws30{word-spacing:-2.592000px;}
.ws31{word-spacing:-1.836000px;}
.ws19{word-spacing:-1.134000px;}
.ws3e{word-spacing:-0.986628px;}
.ws79{word-spacing:-0.964800px;}
.ws81{word-spacing:-0.916560px;}
.ws58{word-spacing:-0.648000px;}
.ws7f{word-spacing:-0.482400px;}
.ws2e{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.378000px;}
.ws27{word-spacing:-0.375840px;}
.ws52{word-spacing:-0.352151px;}
.ws13{word-spacing:-0.334080px;}
.ws6d{word-spacing:-0.305097px;}
.ws6e{word-spacing:-0.289440px;}
.ws14{word-spacing:-0.287280px;}
.ws1d{word-spacing:-0.270000px;}
.ws2c{word-spacing:-0.264960px;}
.ws39{word-spacing:-0.264113px;}
.ws26{word-spacing:-0.250560px;}
.ws6c{word-spacing:-0.241200px;}
.ws1c{word-spacing:-0.216000px;}
.ws3a{word-spacing:-0.208800px;}
.ws7c{word-spacing:-0.192960px;}
.ws42{word-spacing:-0.156012px;}
.ws63{word-spacing:-0.119520px;}
.ws67{word-spacing:-0.113842px;}
.ws18{word-spacing:-0.108000px;}
.ws24{word-spacing:-0.083520px;}
.ws64{word-spacing:-0.059760px;}
.ws1e{word-spacing:-0.054000px;}
.ws6a{word-spacing:-0.050849px;}
.ws71{word-spacing:-0.048240px;}
.ws2a{word-spacing:-0.041760px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.041760px;}
.ws22{word-spacing:0.054000px;}
.ws11{word-spacing:0.083520px;}
.ws72{word-spacing:0.096480px;}
.ws1a{word-spacing:0.108000px;}
.ws4f{word-spacing:0.125280px;}
.ws83{word-spacing:0.162000px;}
.ws25{word-spacing:0.167040px;}
.ws68{word-spacing:0.192960px;}
.ws7b{word-spacing:0.203398px;}
.ws4c{word-spacing:0.208800px;}
.ws6b{word-spacing:0.241200px;}
.ws12{word-spacing:0.250560px;}
.ws69{word-spacing:0.254247px;}
.ws4b{word-spacing:0.264113px;}
.ws16{word-spacing:0.270000px;}
.ws65{word-spacing:0.284605px;}
.ws78{word-spacing:0.289440px;}
.ws23{word-spacing:0.292320px;}
.ws82{word-spacing:0.298800px;}
.ws7d{word-spacing:0.305097px;}
.ws17{word-spacing:0.324000px;}
.ws28{word-spacing:0.334080px;}
.ws66{word-spacing:0.341526px;}
.ws62{word-spacing:0.432000px;}
.ws70{word-spacing:0.434160px;}
.ws7e{word-spacing:0.457645px;}
.ws6f{word-spacing:0.482400px;}
.ws80{word-spacing:0.530640px;}
.ws21{word-spacing:0.594000px;}
.ws41{word-spacing:0.624048px;}
.ws32{word-spacing:0.728640px;}
.ws3c{word-spacing:0.756000px;}
.ws55{word-spacing:0.810000px;}
.ws7a{word-spacing:0.964800px;}
.ws2d{word-spacing:1.026000px;}
.ws40{word-spacing:1.144087px;}
.ws44{word-spacing:1.728000px;}
.ws43{word-spacing:2.444187px;}
.ws3b{word-spacing:2.484000px;}
.ws3f{word-spacing:2.910553px;}
.ws51{word-spacing:3.186000px;}
.ws2b{word-spacing:3.888000px;}
.ws54{word-spacing:4.644000px;}
.ws50{word-spacing:6.264000px;}
._19{margin-left:-10.105920px;}
._1d{margin-left:-8.299800px;}
._b{margin-left:-7.252200px;}
._c{margin-left:-6.086376px;}
._7{margin-left:-5.005800px;}
._6{margin-left:-3.385224px;}
._5{margin-left:-2.244384px;}
._1{margin-left:-1.004976px;}
._0{width:1.119168px;}
._10{width:2.119392px;}
._4{width:3.127176px;}
._2{width:4.195800px;}
._3{width:5.686200px;}
._8{width:6.820776px;}
._a{width:7.976016px;}
._e{width:9.288000px;}
._f{width:10.606968px;}
._12{width:12.096936px;}
._15{width:14.575176px;}
._16{width:15.739560px;}
._13{width:19.613376px;}
._14{width:20.745360px;}
._1c{width:24.640776px;}
._9{width:55.155528px;}
._d{width:71.868960px;}
._18{width:808.457480px;}
._11{width:847.098000px;}
._1b{width:849.554784px;}
._1a{width:879.079104px;}
._17{width:946.884509px;}
.fc4{color:transparent;}
.fc3{color:rgb(86,135,54);}
.fc1{color:rgb(17,119,14);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:44.018905px;}
.fs10{font-size:48.240000px;}
.fse{font-size:49.331400px;}
.fs11{font-size:50.849425px;}
.fsd{font-size:52.003974px;}
.fsa{font-size:54.000000px;}
.fsf{font-size:56.920998px;}
.fsb{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:2.160000px;}
.y24{bottom:2.340000px;}
.y1b8{bottom:3.420000px;}
.y195{bottom:3.600000px;}
.y320{bottom:4.320000px;}
.y31d{bottom:4.500000px;}
.y151{bottom:5.040000px;}
.y142{bottom:5.220000px;}
.y176{bottom:6.273900px;}
.y29{bottom:6.660000px;}
.y27{bottom:11.700000px;}
.ybb{bottom:13.140000px;}
.yb9{bottom:27.720000px;}
.y1cc{bottom:28.980000px;}
.yb8{bottom:42.300000px;}
.y15a{bottom:42.480000px;}
.y2e{bottom:44.460000px;}
.ya9{bottom:46.620000px;}
.y2c{bottom:53.460000px;}
.ya7{bottom:61.200000px;}
.y5{bottom:66.525004px;}
.y1b3{bottom:68.400000px;}
.y199{bottom:68.580000px;}
.y5f{bottom:71.460000px;}
.yb0{bottom:74.700000px;}
.ya5{bottom:75.780000px;}
.yb5{bottom:85.860000px;}
.ya4{bottom:90.360000px;}
.y3a2{bottom:91.440720px;}
.y348{bottom:91.620000px;}
.y5d{bottom:91.750500px;}
.y1ed{bottom:92.340000px;}
.yb2{bottom:92.700000px;}
.yae{bottom:93.780000px;}
.yed{bottom:94.419000px;}
.y175{bottom:95.684850px;}
.y4{bottom:97.125005px;}
.yb3{bottom:100.440000px;}
.y360{bottom:100.622340px;}
.y25f{bottom:101.236500px;}
.ya2{bottom:104.940000px;}
.y2df{bottom:105.196500px;}
.y31a{bottom:105.619500px;}
.ybc{bottom:105.840000px;}
.y3a1{bottom:108.180000px;}
.y347{bottom:108.360000px;}
.y5c{bottom:110.475000px;}
.yac{bottom:112.860000px;}
.yec{bottom:113.143500px;}
.y2cb{bottom:114.952500px;}
.y3e1{bottom:117.181620px;}
.y35f{bottom:117.361620px;}
.ya1{bottom:119.520000px;}
.y114{bottom:119.880000px;}
.y25e{bottom:119.961000px;}
.yba{bottom:120.420000px;}
.y2de{bottom:123.921000px;}
.y319{bottom:124.344000px;}
.y3a0{bottom:124.740000px;}
.y39f{bottom:124.743060px;}
.y346{bottom:124.920000px;}
.y345{bottom:124.920720px;}
.y1ec{bottom:128.340000px;}
.y5b{bottom:129.199500px;}
.y17a{bottom:129.584550px;}
.yeb{bottom:131.868000px;}
.y2f2{bottom:132.637500px;}
.y282{bottom:132.925500px;}
.y2ca{bottom:133.677000px;}
.y3e0{bottom:133.740000px;}
.y3df{bottom:133.743060px;}
.y35e{bottom:133.920000px;}
.y9f{bottom:134.100000px;}
.y25d{bottom:138.685500px;}
.y22{bottom:139.264499px;}
.y22d{bottom:140.940000px;}
.y39e{bottom:141.482340px;}
.y344{bottom:141.660000px;}
.y343{bottom:141.667200px;}
.y2dd{bottom:142.645500px;}
.y113{bottom:143.100000px;}
.y1eb{bottom:144.720000px;}
.yb7{bottom:147.420000px;}
.y5a{bottom:147.924000px;}
.y9d{bottom:148.680000px;}
.y2a0{bottom:148.860000px;}
.y3de{bottom:150.482340px;}
.yea{bottom:150.592500px;}
.y2f1{bottom:151.362000px;}
.y281{bottom:151.650000px;}
.y318{bottom:152.059500px;}
.y2c9{bottom:152.401500px;}
.y25c{bottom:157.410000px;}
.y39d{bottom:158.040720px;}
.y342{bottom:158.225580px;}
.y1ea{bottom:158.764680px;}
.y22c{bottom:159.660000px;}
.y35d{bottom:159.661620px;}
.y9c{bottom:163.260000px;}
.y179{bottom:164.086350px;}
.y59{bottom:166.648500px;}
.y3dd{bottom:167.040720px;}
.y1d0{bottom:167.760000px;}
.y29f{bottom:169.740000px;}
.y2f0{bottom:170.086500px;}
.y2dc{bottom:170.361000px;}
.y280{bottom:170.374500px;}
.y317{bottom:170.784000px;}
.y112{bottom:170.820000px;}
.y2c8{bottom:171.301500px;}
.y1e9{bottom:171.543240px;}
.y193{bottom:173.700000px;}
.y39c{bottom:174.780000px;}
.y25b{bottom:176.134500px;}
.y35c{bottom:176.220000px;}
.y35b{bottom:176.223060px;}
.y9b{bottom:177.840000px;}
.ye9{bottom:178.308000px;}
.y22b{bottom:178.380000px;}
.yb6{bottom:178.560000px;}
.y3dc{bottom:183.780000px;}
.y341{bottom:183.961620px;}
.y58{bottom:185.373000px;}
.y1e8{bottom:185.585040px;}
.y2ef{bottom:188.811000px;}
.y29e{bottom:189.180000px;}
.y2db{bottom:189.261000px;}
.y316{bottom:189.508500px;}
.y2c7{bottom:190.026000px;}
.y99{bottom:192.420000px;}
.y35a{bottom:192.962340px;}
.yb4{bottom:193.140000px;}
.y19{bottom:196.933500px;}
.ye8{bottom:197.032500px;}
.y22a{bottom:197.100000px;}
.y27f{bottom:198.279000px;}
.y111{bottom:198.535500px;}
.y1e7{bottom:199.804320px;}
.y39b{bottom:200.340720px;}
.y340{bottom:200.520000px;}
.y33f{bottom:200.520720px;}
.y192{bottom:201.420000px;}
.y13a{bottom:203.400000px;}
.y25a{bottom:203.850000px;}
.y97{bottom:207.000000px;}
.y2ee{bottom:207.535500px;}
.y2da{bottom:207.985500px;}
.y315{bottom:208.233000px;}
.y29d{bottom:208.620000px;}
.y3db{bottom:209.340720px;}
.y21{bottom:209.518500px;}
.yab{bottom:209.520000px;}
.y359{bottom:209.520720px;}
.y18{bottom:209.533503px;}
.y57{bottom:213.088500px;}
.y1e6{bottom:213.846120px;}
.ye7{bottom:215.757000px;}
.y27e{bottom:217.003500px;}
.y39a{bottom:217.080000px;}
.y399{bottom:217.081620px;}
.y110{bottom:217.260000px;}
.y2c6{bottom:217.741500px;}
.y191{bottom:220.140000px;}
.y96{bottom:221.580000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y259{bottom:222.574500px;}
.y229{bottom:224.820000px;}
.y3da{bottom:226.080000px;}
.y3d9{bottom:226.081620px;}
.y2ed{bottom:226.260000px;}
.y314{bottom:226.957500px;}
.y29c{bottom:228.060000px;}
.y1e5{bottom:228.065400px;}
.y139{bottom:231.120000px;}
.y56{bottom:231.988500px;}
.y1dc{bottom:232.920000px;}
.y398{bottom:233.640000px;}
.y397{bottom:233.642340px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y2d9{bottom:235.701000px;}
.y27d{bottom:235.728000px;}
.y94{bottom:236.160000px;}
.y2c5{bottom:236.466000px;}
.y178{bottom:236.792700px;}
.y190{bottom:238.860000px;}
.y171{bottom:240.088500px;}
.y1e4{bottom:240.843960px;}
.y258{bottom:241.474500px;}
.y3d8{bottom:242.640000px;}
.y3d7{bottom:242.643060px;}
.y33e{bottom:242.820720px;}
.ye6{bottom:243.472500px;}
.y228{bottom:243.540000px;}
.y313{bottom:245.857500px;}
.y138{bottom:249.840000px;}
.y396{bottom:250.381620px;}
.y55{bottom:250.713000px;}
.y92{bottom:250.740000px;}
.y358{bottom:251.820720px;}
.y10f{bottom:252.180000px;}
.y29b{bottom:252.540000px;}
.y2d8{bottom:254.425500px;}
.y27c{bottom:254.452500px;}
.y1e3{bottom:254.885760px;}
.y2c4{bottom:255.190500px;}
.y3d6{bottom:259.382340px;}
.y33d{bottom:259.560000px;}
.y33c{bottom:259.561620px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y2ec{bottom:261.180000px;}
.ye5{bottom:262.197000px;}
.y227{bottom:262.440000px;}
.y312{bottom:264.582000px;}
.y90{bottom:265.320000px;}
.y18f{bottom:266.580000px;}
.y395{bottom:266.940000px;}
.y170{bottom:267.804000px;}
.y1e2{bottom:267.841800px;}
.y137{bottom:268.560000px;}
.y357{bottom:268.564680px;}
.y257{bottom:269.190000px;}
.y54{bottom:269.437500px;}
.y177{bottom:269.956650px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y2d7{bottom:273.150000px;}
.y29a{bottom:273.600000px;}
.y3d5{bottom:275.940720px;}
.y33b{bottom:276.120000px;}
.y33a{bottom:276.122340px;}
.y8e{bottom:279.900000px;}
.ye4{bottom:280.921500px;}
.y1e1{bottom:281.706120px;}
.y27b{bottom:282.168000px;}
.y2c3{bottom:282.906000px;}
.yb1{bottom:284.220000px;}
.y1c{bottom:285.118502px;}
.y356{bottom:285.123060px;}
.y13{bottom:285.133499px;}
.y18e{bottom:285.300000px;}
.y16f{bottom:286.528500px;}
.y136{bottom:287.280000px;}
.y256{bottom:287.914500px;}
.y53{bottom:288.162000px;}
.y226{bottom:290.160000px;}
.y2d6{bottom:291.874500px;}
.y311{bottom:292.297500px;}
.y3d4{bottom:292.680000px;}
.y394{bottom:292.680720px;}
.y339{bottom:292.861620px;}
.y8c{bottom:294.480000px;}
.y1e0{bottom:294.662160px;}
.ye3{bottom:299.821500px;}
.y299{bottom:300.600000px;}
.y10e{bottom:300.865500px;}
.y27a{bottom:300.892500px;}
.y2c2{bottom:301.630500px;}
.y355{bottom:301.862340px;}
.yaf{bottom:303.300000px;}
.y18d{bottom:304.020000px;}
.y135{bottom:306.000000px;}
.y255{bottom:306.639000px;}
.y52{bottom:306.886500px;}
.y1df{bottom:308.526480px;}
.y225{bottom:308.880000px;}
.y8a{bottom:309.060000px;}
.y338{bottom:309.420000px;}
.y393{bottom:309.421620px;}
.y2eb{bottom:309.870000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y310{bottom:311.022000px;}
.y16e{bottom:314.244000px;}
.y354{bottom:318.420720px;}
.y3d3{bottom:318.421620px;}
.y10d{bottom:319.590000px;}
.y279{bottom:319.617000px;}
.y2c1{bottom:320.355000px;}
.y1de{bottom:321.482520px;}
.yad{bottom:322.380000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y88{bottom:323.460000px;}
.y254{bottom:325.363500px;}
.y51{bottom:325.611000px;}
.y392{bottom:325.980000px;}
.y391{bottom:325.980720px;}
.ye2{bottom:327.537000px;}
.y224{bottom:327.600000px;}
.y2ea{bottom:328.594500px;}
.y30f{bottom:329.746500px;}
.y18c{bottom:331.740000px;}
.y16d{bottom:332.968500px;}
.y134{bottom:333.900000px;}
.y1dd{bottom:334.083600px;}
.y3d2{bottom:334.980000px;}
.y353{bottom:335.160000px;}
.y337{bottom:335.160720px;}
.y174{bottom:337.220850px;}
.y61{bottom:337.320000px;}
.y1ca{bottom:337.681440px;}
.y87{bottom:338.040000px;}
.y10c{bottom:338.314500px;}
.y298{bottom:340.348500px;}
.y390{bottom:342.720000px;}
.y50{bottom:344.335500px;}
.ye1{bottom:346.261500px;}
.y1cf{bottom:346.860000px;}
.y2e9{bottom:347.319000px;}
.y278{bottom:347.332500px;}
.y2c0{bottom:348.070500px;}
.y10{bottom:348.133500px;}
.y30e{bottom:348.471000px;}
.y18b{bottom:350.460000px;}
.y3d1{bottom:351.721620px;}
.y336{bottom:351.900000px;}
.y335{bottom:351.903960px;}
.y85{bottom:352.620000px;}
.y253{bottom:353.079000px;}
.y223{bottom:355.320000px;}
.y2d5{bottom:357.039000px;}
.y297{bottom:359.073000px;}
.y16c{bottom:360.873000px;}
.y352{bottom:360.901620px;}
.y4f{bottom:363.060000px;}
.y1db{bottom:363.240000px;}
.ye0{bottom:364.986000px;}
.y10b{bottom:366.030000px;}
.y2e8{bottom:366.043500px;}
.y277{bottom:366.057000px;}
.y2bf{bottom:366.970500px;}
.y83{bottom:367.200000px;}
.y3d0{bottom:368.280000px;}
.y38f{bottom:368.280720px;}
.y334{bottom:368.462340px;}
.y133{bottom:371.340000px;}
.y252{bottom:371.803500px;}
.y222{bottom:374.040000px;}
.y30d{bottom:376.186500px;}
.y1da{bottom:377.280720px;}
.y351{bottom:377.460000px;}
.y350{bottom:377.460720px;}
.y296{bottom:377.797500px;}
.y18a{bottom:378.360000px;}
.y16b{bottom:379.597500px;}
.y82{bottom:381.780000px;}
.ydf{bottom:383.710500px;}
.yaa{bottom:383.940000px;}
.y10a{bottom:384.930000px;}
.y2d4{bottom:384.943500px;}
.y276{bottom:384.957000px;}
.y38e{bottom:385.020000px;}
.y333{bottom:385.201620px;}
.y2be{bottom:385.695000px;}
.yf{bottom:386.785499px;}
.y251{bottom:390.528000px;}
.y1d9{bottom:391.322520px;}
.y221{bottom:392.760000px;}
.y3cf{bottom:394.021620px;}
.y34f{bottom:394.200000px;}
.y34e{bottom:394.203960px;}
.y30c{bottom:394.911000px;}
.y81{bottom:396.360000px;}
.y295{bottom:396.522000px;}
.y189{bottom:397.080000px;}
.y4e{bottom:397.980000px;}
.ya8{bottom:398.520000px;}
.y132{bottom:399.060000px;}
.y38d{bottom:401.582340px;}
.y332{bottom:401.760000px;}
.yde{bottom:402.435000px;}
.y109{bottom:403.654500px;}
.y2d3{bottom:403.668000px;}
.y1d8{bottom:405.541800px;}
.y16a{bottom:407.313000px;}
.ye{bottom:408.044999px;}
.y250{bottom:409.252500px;}
.y3ce{bottom:410.580000px;}
.y3cd{bottom:410.580720px;}
.y34d{bottom:410.762340px;}
.y7f{bottom:410.940000px;}
.y220{bottom:411.480000px;}
.y2e7{bottom:412.659000px;}
.y275{bottom:412.672500px;}
.ya6{bottom:413.100000px;}
.y2bd{bottom:413.410500px;}
.y188{bottom:415.800000px;}
.y131{bottom:417.780000px;}
.y38c{bottom:418.321620px;}
.y1d7{bottom:419.761080px;}
.y173{bottom:421.122750px;}
.ydd{bottom:421.159500px;}
.y108{bottom:422.379000px;}
.y2d2{bottom:422.392500px;}
.y30b{bottom:422.626500px;}
.y294{bottom:424.426500px;}
.y7e{bottom:425.520000px;}
.y169{bottom:426.037500px;}
.y3cc{bottom:427.320000px;}
.y3cb{bottom:427.323960px;}
.y331{bottom:427.501620px;}
.y24f{bottom:427.977000px;}
.y2e6{bottom:431.383500px;}
.y274{bottom:431.397000px;}
.y2bc{bottom:432.135000px;}
.y1ce{bottom:432.540000px;}
.y1d6{bottom:433.980360px;}
.y187{bottom:434.520000px;}
.y38b{bottom:434.880000px;}
.y130{bottom:436.500000px;}
.y21f{bottom:439.200000px;}
.ydc{bottom:439.884000px;}
.y7c{bottom:440.100000px;}
.y107{bottom:441.103500px;}
.y2d1{bottom:441.117000px;}
.y30a{bottom:441.526500px;}
.ya3{bottom:442.260000px;}
.y293{bottom:443.151000px;}
.y3ca{bottom:443.882340px;}
.y330{bottom:444.060000px;}
.y32f{bottom:444.060720px;}
.y168{bottom:444.762000px;}
.y4d{bottom:446.665500px;}
.y1d5{bottom:446.758920px;}
.y24e{bottom:446.877000px;}
.y2e5{bottom:450.108000px;}
.y273{bottom:450.121500px;}
.y2bb{bottom:450.859500px;}
.y7b{bottom:454.680000px;}
.y12f{bottom:455.220000px;}
.y21e{bottom:458.100000px;}
.y309{bottom:460.251000px;}
.y38a{bottom:460.621620px;}
.y32e{bottom:460.800000px;}
.y1d4{bottom:460.800720px;}
.y292{bottom:461.875500px;}
.y186{bottom:462.240000px;}
.ydb{bottom:467.599500px;}
.y106{bottom:468.819000px;}
.y2d0{bottom:468.832500px;}
.y79{bottom:469.260000px;}
.y2ba{bottom:469.584000px;}
.y34c{bottom:469.801620px;}
.ya0{bottom:471.420000px;}
.y167{bottom:472.477500px;}
.y12e{bottom:473.940000px;}
.y24d{bottom:474.592500px;}
.y1d3{bottom:475.020000px;}
.y21d{bottom:476.820000px;}
.y389{bottom:477.180000px;}
.y388{bottom:477.182340px;}
.y272{bottom:477.837000px;}
.y291{bottom:480.600000px;}
.y185{bottom:480.960000px;}
.y4c{bottom:483.385500px;}
.y77{bottom:483.840000px;}
.yd{bottom:484.864502px;}
.y9e{bottom:486.000000px;}
.y32d{bottom:486.360000px;}
.y34b{bottom:486.360720px;}
.yda{bottom:486.499500px;}
.y105{bottom:487.543500px;}
.y2cf{bottom:487.557000px;}
.y308{bottom:487.966500px;}
.y1d2{bottom:489.063960px;}
.y166{bottom:491.202000px;}
.y3fc{bottom:492.232500px;}
.y12d{bottom:492.660000px;}
.y24c{bottom:493.317000px;}
.y387{bottom:493.921620px;}
.y21c{bottom:495.540000px;}
.y2e4{bottom:496.548000px;}
.y271{bottom:496.561500px;}
.y2b9{bottom:497.299500px;}
.y76{bottom:498.420000px;}
.y184{bottom:499.680000px;}
.y1d1{bottom:502.020000px;}
.y4b{bottom:502.110000px;}
.yc{bottom:502.864502px;}
.y3c9{bottom:502.920000px;}
.y34a{bottom:503.100000px;}
.y32c{bottom:503.101620px;}
.y349{bottom:503.103960px;}
.yd9{bottom:505.224000px;}
.y104{bottom:506.268000px;}
.y2ce{bottom:506.281500px;}
.y307{bottom:506.691000px;}
.y165{bottom:509.926500px;}
.y386{bottom:510.480000px;}
.y385{bottom:510.483060px;}
.y24b{bottom:512.041500px;}
.y75{bottom:513.000000px;}
.y2e3{bottom:515.272500px;}
.y270{bottom:515.286000px;}
.y2b8{bottom:516.024000px;}
.y290{bottom:518.040000px;}
.y3c8{bottom:519.480000px;}
.y3c7{bottom:519.480720px;}
.y32b{bottom:519.660000px;}
.y32a{bottom:519.662340px;}
.y12c{bottom:520.560000px;}
.yb{bottom:520.864502px;}
.yd8{bottom:523.948500px;}
.y103{bottom:524.992500px;}
.y2cd{bottom:525.006000px;}
.y384{bottom:527.222340px;}
.y183{bottom:527.400000px;}
.y73{bottom:527.580000px;}
.y21b{bottom:527.760000px;}
.y3fb{bottom:528.952500px;}
.y9a{bottom:529.740000px;}
.y24a{bottom:530.766000px;}
.y2e2{bottom:533.997000px;}
.y306{bottom:534.406500px;}
.y2b7{bottom:534.748500px;}
.y3c6{bottom:536.220000px;}
.y3c5{bottom:536.223060px;}
.y329{bottom:536.401620px;}
.y28f{bottom:537.480000px;}
.y164{bottom:537.642000px;}
.y4a{bottom:538.830000px;}
.ya{bottom:538.864499px;}
.y12b{bottom:539.280000px;}
.y72{bottom:542.160000px;}
.y26f{bottom:543.001500px;}
.y1cb{bottom:543.600000px;}
.y102{bottom:543.717000px;}
.y1cd{bottom:543.780000px;}
.y383{bottom:543.961620px;}
.y21a{bottom:544.140000px;}
.y98{bottom:544.320000px;}
.y182{bottom:546.120000px;}
.y3fa{bottom:547.677000px;}
.yd7{bottom:551.664000px;}
.y2cc{bottom:552.721500px;}
.y328{bottom:552.960000px;}
.y3c4{bottom:552.962340px;}
.y305{bottom:553.131000px;}
.y2b6{bottom:553.648500px;}
.y163{bottom:556.542000px;}
.y70{bottom:556.740000px;}
.y9{bottom:556.864499px;}
.y28e{bottom:556.920000px;}
.y49{bottom:557.554500px;}
.y12a{bottom:558.000000px;}
.y249{bottom:558.481500px;}
.y382{bottom:560.520000px;}
.y219{bottom:561.240000px;}
.y26e{bottom:561.726000px;}
.y181{bottom:565.020000px;}
.y1c9{bottom:569.160000px;}
.y3c3{bottom:569.520720px;}
.yd6{bottom:570.388500px;}
.y6f{bottom:571.320000px;}
.y101{bottom:571.621500px;}
.y304{bottom:571.855500px;}
.y2b5{bottom:572.373000px;}
.y95{bottom:573.480000px;}
.y162{bottom:575.266500px;}
.y28d{bottom:576.360000px;}
.y48{bottom:576.454500px;}
.y129{bottom:576.720000px;}
.y248{bottom:577.206000px;}
.y218{bottom:578.340720px;}
.y26d{bottom:580.626000px;}
.y180{bottom:583.740000px;}
.y3f9{bottom:584.572500px;}
.y1c8{bottom:585.540000px;}
.y6d{bottom:585.900000px;}
.y3c2{bottom:586.260000px;}
.y381{bottom:586.261620px;}
.y327{bottom:586.440000px;}
.y93{bottom:588.060000px;}
.yd5{bottom:589.113000px;}
.y100{bottom:590.346000px;}
.y217{bottom:592.560000px;}
.y161{bottom:593.991000px;}
.y47{bottom:595.179000px;}
.y128{bottom:595.440000px;}
.y28c{bottom:595.620000px;}
.y247{bottom:595.930500px;}
.y26c{bottom:599.350500px;}
.y303{bottom:599.571000px;}
.y2b4{bottom:600.088500px;}
.y6b{bottom:600.480000px;}
.y1c7{bottom:601.920000px;}
.y17f{bottom:602.460000px;}
.y91{bottom:602.640000px;}
.y380{bottom:602.820000px;}
.y37f{bottom:602.822340px;}
.y3f8{bottom:603.297000px;}
.yd4{bottom:607.837500px;}
.yff{bottom:609.070500px;}
.y216{bottom:609.660000px;}
.y3c1{bottom:611.820720px;}
.y160{bottom:612.715500px;}
.y46{bottom:613.903500px;}
.y246{bottom:614.655000px;}
.y69{bottom:615.060000px;}
.y1c3{bottom:615.240000px;}
.y1c6{bottom:615.960360px;}
.y28b{bottom:616.680000px;}
.y8f{bottom:617.220000px;}
.y26b{bottom:618.075000px;}
.y302{bottom:618.295500px;}
.y2b3{bottom:618.813000px;}
.y37e{bottom:619.561620px;}
.y17e{bottom:621.180000px;}
.y3f7{bottom:622.021500px;}
.y215{bottom:626.760720px;}
.y3c0{bottom:628.560000px;}
.y3bf{bottom:628.561620px;}
.y1c5{bottom:628.738920px;}
.y67{bottom:629.640000px;}
.y127{bottom:630.360000px;}
.y15f{bottom:631.440000px;}
.y8d{bottom:631.800000px;}
.y45{bottom:632.628000px;}
.y326{bottom:635.220000px;}
.yd3{bottom:635.553000px;}
.y37d{bottom:636.120000px;}
.yfe{bottom:636.786000px;}
.y26a{bottom:636.799500px;}
.y301{bottom:637.020000px;}
.y2b2{bottom:637.537500px;}
.y17d{bottom:639.900000px;}
.y3f6{bottom:640.746000px;}
.y214{bottom:640.980000px;}
.y1c4{bottom:641.340000px;}
.y245{bottom:642.559500px;}
.y28a{bottom:643.500000px;}
.y66{bottom:644.220000px;}
.y3be{bottom:645.120000px;}
.y3bd{bottom:645.123060px;}
.y8{bottom:645.510000px;}
.y2e1{bottom:645.790500px;}
.y8b{bottom:646.380000px;}
.y15e{bottom:650.164500px;}
.y44{bottom:651.352500px;}
.y1c2{bottom:654.120000px;}
.yd2{bottom:654.277500px;}
.yfd{bottom:655.510500px;}
.y269{bottom:655.524000px;}
.y300{bottom:655.920000px;}
.y213{bottom:658.260000px;}
.y65{bottom:658.800000px;}
.y3f5{bottom:659.470500px;}
.y89{bottom:660.780000px;}
.y244{bottom:661.284000px;}
.y37c{bottom:661.861620px;}
.y3bc{bottom:661.862340px;}
.y325{bottom:662.040000px;}
.y2e0{bottom:664.515000px;}
.y2b1{bottom:665.253000px;}
.y7{bottom:666.771000px;}
.y43{bottom:670.077000px;}
.y1c1{bottom:670.498920px;}
.y1bf{bottom:670.500000px;}
.yd1{bottom:673.002000px;}
.y64{bottom:673.380000px;}
.yfc{bottom:674.235000px;}
.y212{bottom:675.182160px;}
.y15d{bottom:677.880000px;}
.y3f4{bottom:678.195000px;}
.y37b{bottom:678.420000px;}
.y3bb{bottom:678.420720px;}
.y205{bottom:678.606120px;}
.y126{bottom:679.117500px;}
.y17c{bottom:679.500000px;}
.y243{bottom:680.008500px;}
.y1c0{bottom:683.100000px;}
.y289{bottom:683.226000px;}
.y268{bottom:683.239500px;}
.y2b0{bottom:683.977500px;}
.y202{bottom:684.901440px;}
.y63{bottom:687.960000px;}
.y42{bottom:688.801500px;}
.y211{bottom:689.401440px;}
.y86{bottom:689.940000px;}
.y2ff{bottom:690.660000px;}
.y204{bottom:691.384680px;}
.yd0{bottom:691.902000px;}
.yfb{bottom:692.959500px;}
.y3ba{bottom:695.160000px;}
.y37a{bottom:695.162340px;}
.y1be{bottom:695.880000px;}
.y3f3{bottom:696.919500px;}
.y201{bottom:697.680000px;}
.y1af{bottom:697.681440px;}
.y125{bottom:697.842000px;}
.y242{bottom:698.733000px;}
.y172{bottom:699.015000px;}
.y17b{bottom:699.120000px;}
.y324{bottom:700.200000px;}
.y288{bottom:701.950500px;}
.y267{bottom:701.964000px;}
.y210{bottom:702.180000px;}
.y62{bottom:702.540000px;}
.y2af{bottom:702.702000px;}
.y203{bottom:703.985760px;}
.y84{bottom:704.520000px;}
.y41{bottom:707.526000px;}
.y159{bottom:710.100000px;}
.y1ae{bottom:710.460000px;}
.ycf{bottom:710.626500px;}
.yfa{bottom:711.684000px;}
.y379{bottom:711.720720px;}
.y1ba{bottom:712.081440px;}
.y1bd{bottom:712.260360px;}
.y15c{bottom:715.320000px;}
.y3f2{bottom:715.644000px;}
.y124{bottom:716.566500px;}
.y241{bottom:717.457500px;}
.y20f{bottom:719.280720px;}
.y287{bottom:720.675000px;}
.y266{bottom:720.688500px;}
.y3b9{bottom:720.720720px;}
.y1b9{bottom:724.860000px;}
.y1bc{bottom:725.038920px;}
.y40{bottom:726.250500px;}
.y6{bottom:726.298500px;}
.y323{bottom:726.840000px;}
.y378{bottom:728.460000px;}
.yce{bottom:729.351000px;}
.y2ae{bottom:730.417500px;}
.y20e{bottom:733.500000px;}
.y15b{bottom:734.040000px;}
.y3f1{bottom:734.368500px;}
.y157{bottom:735.480000px;}
.y240{bottom:736.182000px;}
.y3b8{bottom:737.460000px;}
.y3b7{bottom:737.462340px;}
.y1bb{bottom:737.640000px;}
.y2fe{bottom:739.386000px;}
.yf9{bottom:739.399500px;}
.y265{bottom:739.413000px;}
.y123{bottom:744.282000px;}
.y3f{bottom:745.150500px;}
.ycd{bottom:748.075500px;}
.y80{bottom:748.260000px;}
.y2ad{bottom:749.142000px;}
.y1b2{bottom:750.420000px;}
.y20d{bottom:750.600720px;}
.y158{bottom:752.580000px;}
.y3{bottom:752.599495px;}
.y3f0{bottom:753.268500px;}
.y377{bottom:754.020720px;}
.y2fd{bottom:758.110500px;}
.yf8{bottom:758.124000px;}
.y122{bottom:763.006500px;}
.y3e{bottom:763.875000px;}
.y23f{bottom:763.897500px;}
.y20c{bottom:764.820000px;}
.y322{bottom:765.000000px;}
.y1b7{bottom:766.798920px;}
.ycc{bottom:766.800000px;}
.y264{bottom:767.128500px;}
.y156{bottom:769.860000px;}
.y376{bottom:770.760000px;}
.y375{bottom:770.760720px;}
.y3ef{bottom:771.993000px;}
.y155{bottom:775.080000px;}
.y2ac{bottom:777.046500px;}
.y7d{bottom:777.420000px;}
.y1b6{bottom:779.400000px;}
.y1b1{bottom:779.938200px;}
.y121{bottom:781.731000px;}
.y20b{bottom:781.921440px;}
.y3d{bottom:782.599500px;}
.y23e{bottom:782.622000px;}
.y2fc{bottom:786.015000px;}
.yf7{bottom:786.028500px;}
.y374{bottom:787.500000px;}
.y373{bottom:787.503960px;}
.y3ee{bottom:790.717500px;}
.y321{bottom:792.000000px;}
.y1b0{bottom:792.716760px;}
.y1b5{bottom:793.441440px;}
.y154{bottom:793.620000px;}
.y20a{bottom:794.700000px;}
.y152{bottom:795.240000px;}
.y2ab{bottom:795.771000px;}
.y3b6{bottom:796.501620px;}
.y3c{bottom:801.324000px;}
.y23d{bottom:801.346500px;}
.ycb{bottom:801.720000px;}
.y372{bottom:804.062340px;}
.y2fb{bottom:804.739500px;}
.yf6{bottom:804.753000px;}
.y1b4{bottom:806.220000px;}
.y7a{bottom:806.580000px;}
.y3ed{bottom:809.442000px;}
.y120{bottom:809.446500px;}
.y209{bottom:811.632600px;}
.y153{bottom:812.340000px;}
.y3b5{bottom:813.060000px;}
.y3b4{bottom:813.060720px;}
.y3b{bottom:820.048500px;}
.y23c{bottom:820.071000px;}
.y371{bottom:820.801620px;}
.y78{bottom:821.160000px;}
.yf5{bottom:823.477500px;}
.y2aa{bottom:823.486500px;}
.y31f{bottom:824.940000px;}
.y208{bottom:825.851880px;}
.y3ec{bottom:828.166500px;}
.y11f{bottom:828.171000px;}
.y150{bottom:829.620000px;}
.y3b3{bottom:829.800000px;}
.y3b2{bottom:829.801620px;}
.y1ad{bottom:831.600000px;}
.y2fa{bottom:832.455000px;}
.y14f{bottom:834.660000px;}
.y370{bottom:837.360000px;}
.y3a{bottom:838.773000px;}
.y207{bottom:838.807920px;}
.y23b{bottom:838.971000px;}
.y31e{bottom:839.520000px;}
.yf4{bottom:842.202000px;}
.y2a9{bottom:842.211000px;}
.y31c{bottom:845.100000px;}
.y3b1{bottom:846.360000px;}
.y3eb{bottom:846.891000px;}
.y11e{bottom:847.071000px;}
.y1ac{bottom:847.981440px;}
.yca{bottom:850.450500px;}
.y2f9{bottom:851.179500px;}
.y263{bottom:851.193000px;}
.y206{bottom:851.409000px;}
.y14e{bottom:853.380000px;}
.y14c{bottom:854.820000px;}
.y39{bottom:857.497500px;}
.y23a{bottom:857.695500px;}
.y1ab{bottom:860.760000px;}
.y2a8{bottom:860.935500px;}
.y36f{bottom:863.101620px;}
.y200{bottom:864.180000px;}
.y74{bottom:864.900000px;}
.y3ea{bottom:865.615500px;}
.y11d{bottom:865.795500px;}
.y1a6{bottom:867.601440px;}
.yc9{bottom:869.175000px;}
.y2f8{bottom:869.904000px;}
.yf3{bottom:869.917500px;}
.y14d{bottom:871.920000px;}
.y3b0{bottom:872.101620px;}
.y1aa{bottom:874.805040px;}
.y38{bottom:876.222000px;}
.y239{bottom:876.420000px;}
.y31b{bottom:878.908500px;}
.y2{bottom:879.369000px;}
.y36e{bottom:879.660000px;}
.y1a5{bottom:880.380000px;}
.y1ff{bottom:880.560000px;}
.y3e9{bottom:884.340000px;}
.y1a9{bottom:887.583600px;}
.yc8{bottom:887.899500px;}
.y2f7{bottom:888.628500px;}
.yf2{bottom:888.642000px;}
.y2a7{bottom:888.651000px;}
.y3af{bottom:888.660000px;}
.y3ae{bottom:888.660720px;}
.y11c{bottom:893.511000px;}
.y71{bottom:894.060000px;}
.y14b{bottom:894.420000px;}
.y1fe{bottom:894.421800px;}
.y37{bottom:894.946500px;}
.y36d{bottom:896.402340px;}
.y262{bottom:897.633000px;}
.y1a8{bottom:900.184680px;}
.y3ad{bottom:905.400000px;}
.y3ac{bottom:905.403960px;}
.yc7{bottom:906.624000px;}
.yf1{bottom:907.366500px;}
.y2a6{bottom:907.375500px;}
.y1fd{bottom:907.377840px;}
.y3e8{bottom:911.343060px;}
.y11b{bottom:912.235500px;}
.y1a7{bottom:912.785760px;}
.y36c{bottom:912.960720px;}
.y14a{bottom:913.140000px;}
.y36{bottom:913.671000px;}
.y238{bottom:913.860000px;}
.y148{bottom:914.580000px;}
.y2f6{bottom:916.344000px;}
.y261{bottom:916.357500px;}
.y1fc{bottom:921.419640px;}
.y3ab{bottom:921.962340px;}
.y6e{bottom:923.220000px;}
.yc6{bottom:925.348500px;}
.y1a4{bottom:925.560000px;}
.yf0{bottom:926.091000px;}
.y2a5{bottom:926.100000px;}
.y36b{bottom:929.700000px;}
.y3e7{bottom:930.780000px;}
.y11a{bottom:930.960000px;}
.y149{bottom:931.680000px;}
.y35{bottom:932.571000px;}
.y237{bottom:933.298920px;}
.y1fb{bottom:934.198200px;}
.y2f5{bottom:935.068500px;}
.y260{bottom:935.082000px;}
.y6c{bottom:937.800000px;}
.y3aa{bottom:938.701620px;}
.y1a3{bottom:941.940000px;}
.yc5{bottom:944.073000px;}
.y236{bottom:945.900000px;}
.y1fa{bottom:948.240000px;}
.y147{bottom:948.960000px;}
.y34{bottom:951.295500px;}
.y6a{bottom:952.380000px;}
.y2f4{bottom:953.793000px;}
.yef{bottom:953.806500px;}
.y2a4{bottom:953.820000px;}
.y146{bottom:954.180000px;}
.y196{bottom:955.260000px;}
.y36a{bottom:955.260720px;}
.y1a2{bottom:955.977120px;}
.y119{bottom:958.675500px;}
.y234{bottom:960.120000px;}
.y1f9{bottom:961.018560px;}
.y19e{bottom:961.740000px;}
.yc4{bottom:962.797500px;}
.y1{bottom:966.726000px;}
.y68{bottom:966.960000px;}
.y1a1{bottom:968.933160px;}
.y33{bottom:970.020000px;}
.y235{bottom:971.640000px;}
.y369{bottom:972.000000px;}
.yee{bottom:972.706500px;}
.y145{bottom:972.720000px;}
.y143{bottom:974.340000px;}
.y1f8{bottom:975.060360px;}
.y118{bottom:977.400000px;}
.y233{bottom:977.940000px;}
.y3a9{bottom:981.001620px;}
.y1a0{bottom:981.534240px;}
.yc3{bottom:981.697500px;}
.y1f7{bottom:987.838920px;}
.y368{bottom:988.560000px;}
.y286{bottom:991.431000px;}
.y144{bottom:991.440000px;}
.y19f{bottom:994.135320px;}
.y3a8{bottom:997.560000px;}
.y3a7{bottom:997.560720px;}
.y232{bottom:999.000000px;}
.yc2{bottom:1000.422000px;}
.y1f6{bottom:1001.880720px;}
.y32{bottom:1004.760000px;}
.y198{bottom:1006.920000px;}
.y13f{bottom:1008.720000px;}
.y285{bottom:1010.155500px;}
.y117{bottom:1012.320000px;}
.y141{bottom:1013.940000px;}
.y367{bottom:1014.300000px;}
.y3a6{bottom:1014.300720px;}
.y1f5{bottom:1014.659280px;}
.yc1{bottom:1019.146500px;}
.y2a3{bottom:1019.160000px;}
.y19d{bottom:1023.300000px;}
.y231{bottom:1025.820000px;}
.y1f4{bottom:1028.701080px;}
.y366{bottom:1031.040000px;}
.y3e6{bottom:1031.041620px;}
.y140{bottom:1032.480000px;}
.y13d{bottom:1034.100000px;}
.y19c{bottom:1037.342880px;}
.yc0{bottom:1037.871000px;}
.y2a2{bottom:1037.880000px;}
.y1f3{bottom:1041.657120px;}
.y197{bottom:1042.924680px;}
.y2f3{bottom:1046.862000px;}
.y3e5{bottom:1047.600000px;}
.y365{bottom:1047.607920px;}
.y19b{bottom:1050.121440px;}
.y5e{bottom:1050.300000px;}
.y13e{bottom:1051.020000px;}
.y31{bottom:1053.337320px;}
.y1f2{bottom:1055.521440px;}
.y284{bottom:1056.595500px;}
.y2a1{bottom:1056.600000px;}
.y3a5{bottom:1056.600720px;}
.y116{bottom:1061.095500px;}
.y19a{bottom:1062.900000px;}
.y364{bottom:1064.347200px;}
.ybf{bottom:1065.586500px;}
.y230{bottom:1065.600000px;}
.y1f1{bottom:1068.477480px;}
.y3a4{bottom:1073.340000px;}
.y3e2{bottom:1073.343960px;}
.y283{bottom:1075.320000px;}
.y115{bottom:1079.820000px;}
.y363{bottom:1080.905580px;}
.y1f0{bottom:1081.078560px;}
.y30{bottom:1082.328660px;}
.y13c{bottom:1083.420000px;}
.ybe{bottom:1084.311000px;}
.y22f{bottom:1084.320000px;}
.y194{bottom:1089.720000px;}
.y3e4{bottom:1089.900000px;}
.y3a3{bottom:1089.902340px;}
.y1ef{bottom:1095.300000px;}
.ybd{bottom:1103.035500px;}
.y22e{bottom:1103.040000px;}
.y3e3{bottom:1106.640000px;}
.y362{bottom:1106.641620px;}
.y2f{bottom:1111.320000px;}
.y13b{bottom:1118.700000px;}
.y60{bottom:1121.760000px;}
.y361{bottom:1123.200000px;}
.y1ee{bottom:1124.820000px;}
.y2b{bottom:1155.600000px;}
.y2a{bottom:1157.760000px;}
.y28{bottom:1159.200000px;}
.y26{bottom:1177.020000px;}
.y25{bottom:1186.200000px;}
.y23{bottom:1199.160000px;}
.he{height:4.713750px;}
.h9{height:12.778500px;}
.h26{height:15.660000px;}
.hd{height:17.098500px;}
.h36{height:18.540000px;}
.h34{height:18.541500px;}
.h35{height:18.720000px;}
.h39{height:19.440000px;}
.h37{height:19.620000px;}
.hf{height:21.600000px;}
.h2f{height:21.780000px;}
.hc{height:22.140000px;}
.h10{height:29.460938px;}
.h32{height:31.320000px;}
.h19{height:31.727812px;}
.h7{height:32.130000px;}
.hb{height:34.174687px;}
.h24{height:37.480302px;}
.h3d{height:39.477656px;}
.h1e{height:39.830273px;}
.h16{height:40.373438px;}
.h2b{height:41.040000px;}
.h3e{height:41.613103px;}
.ha{height:41.780391px;}
.h1c{height:43.185938px;}
.h1b{height:44.040399px;}
.h1a{height:44.191406px;}
.h6{height:45.900000px;}
.h23{height:47.693443px;}
.h3{height:48.195000px;}
.h3b{height:48.263555px;}
.h25{height:49.992188px;}
.h3c{height:50.874254px;}
.h22{height:52.029366px;}
.h2a{height:53.818500px;}
.h13{height:54.026367px;}
.h2{height:55.080000px;}
.h3a{height:56.948791px;}
.h38{height:57.775781px;}
.h1d{height:58.860000px;}
.h20{height:59.040000px;}
.h1f{height:59.041500px;}
.h12{height:64.040625px;}
.h33{height:66.961671px;}
.h2c{height:67.860000px;}
.h5{height:78.030000px;}
.h27{height:80.460000px;}
.h28{height:80.640000px;}
.h14{height:84.960000px;}
.h29{height:93.240000px;}
.h11{height:95.806758px;}
.h18{height:116.820000px;}
.h4{height:119.055004px;}
.h17{height:127.800000px;}
.h2d{height:179.640000px;}
.h2e{height:217.800000px;}
.h30{height:228.960000px;}
.h31{height:335.521500px;}
.h21{height:435.003000px;}
.h15{height:712.980000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:95.040000px;}
.w8{width:103.320000px;}
.w11{width:105.120000px;}
.wd{width:117.000000px;}
.w9{width:191.160000px;}
.w15{width:239.940000px;}
.w18{width:243.721500px;}
.w17{width:244.620000px;}
.wb{width:350.640000px;}
.w16{width:360.180000px;}
.wf{width:360.361500px;}
.w6{width:370.980000px;}
.w5{width:393.120000px;}
.w4{width:393.480000px;}
.wc{width:413.460000px;}
.wa{width:413.820000px;}
.w10{width:421.878000px;}
.w13{width:519.661500px;}
.w2{width:637.794021px;}
.we{width:647.818500px;}
.w7{width:661.500000px;}
.w14{width:721.980000px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x59{left:2.160000px;}
.x40{left:3.960000px;}
.x47{left:5.400000px;}
.x3b{left:11.520000px;}
.x31{left:14.580000px;}
.x34{left:15.794250px;}
.x4a{left:19.080000px;}
.x6{left:21.060000px;}
.x33{left:34.600200px;}
.x48{left:36.540000px;}
.x4d{left:40.680000px;}
.x26{left:45.360000px;}
.x58{left:57.960000px;}
.x5{left:63.720000px;}
.xc{left:64.800000px;}
.xa{left:84.960000px;}
.x2c{left:87.120000px;}
.x1a{left:88.200000px;}
.xf{left:90.540000px;}
.x2f{left:93.600000px;}
.x22{left:94.680000px;}
.x50{left:96.660000px;}
.x52{left:99.540000px;}
.x1{left:102.045000px;}
.x3e{left:104.400000px;}
.x2{left:106.297500px;}
.x51{left:108.540000px;}
.x24{left:110.880000px;}
.x15{left:115.380000px;}
.x2b{left:116.820000px;}
.xe{left:123.840000px;}
.x21{left:130.860000px;}
.x20{left:133.380000px;}
.x1b{left:136.440000px;}
.x4f{left:151.920000px;}
.x84{left:154.620000px;}
.x1e{left:156.780000px;}
.x19{left:163.800000px;}
.x56{left:168.660000px;}
.x14{left:170.460000px;}
.x57{left:171.540000px;}
.x55{left:172.620000px;}
.x11{left:174.960000px;}
.x35{left:177.647100px;}
.x29{left:180.720000px;}
.x12{left:185.940000px;}
.x23{left:187.740000px;}
.x36{left:189.217800px;}
.x80{left:190.440000px;}
.x3a{left:191.700000px;}
.x10{left:193.500000px;}
.x18{left:196.200000px;}
.x17{left:199.080000px;}
.x4{left:203.484001px;}
.x44{left:206.094960px;}
.x3d{left:208.980000px;}
.x16{left:211.500000px;}
.x85{left:212.760000px;}
.x1d{left:216.000000px;}
.x42{left:218.520000px;}
.x13{left:219.780000px;}
.x46{left:220.855680px;}
.x43{left:222.657480px;}
.x45{left:223.916040px;}
.x7f{left:225.000000px;}
.x3f{left:226.621080px;}
.x1f{left:235.260000px;}
.x63{left:238.140000px;}
.x61{left:255.600000px;}
.x1c{left:259.560000px;}
.x7b{left:266.220000px;}
.x64{left:269.280000px;}
.x67{left:274.320000px;}
.x65{left:276.660000px;}
.x7c{left:280.260000px;}
.x86{left:285.480000px;}
.x3c{left:287.460000px;}
.xd{left:290.340000px;}
.x41{left:291.420000px;}
.x49{left:306.537120px;}
.x66{left:309.960000px;}
.x27{left:313.380000px;}
.x5d{left:316.260000px;}
.x2d{left:318.960000px;}
.x7d{left:325.260000px;}
.x4c{left:328.140000px;}
.x7e{left:332.640000px;}
.x5a{left:338.400000px;}
.x81{left:339.660000px;}
.x62{left:345.960000px;}
.x82{left:347.040000px;}
.x5e{left:350.460000px;}
.x83{left:353.700000px;}
.x78{left:357.300000px;}
.x79{left:364.680000px;}
.x9{left:370.980000px;}
.x7a{left:378.000000px;}
.x53{left:381.420000px;}
.x87{left:385.560000px;}
.x5f{left:388.800000px;}
.x5c{left:392.220000px;}
.x60{left:399.240000px;}
.x4e{left:409.860000px;}
.x88{left:411.660000px;}
.x28{left:413.460000px;}
.x25{left:414.720000px;}
.x2e{left:438.660000px;}
.x30{left:446.760000px;}
.x2a{left:449.280000px;}
.x3{left:454.959000px;}
.x8{left:457.200000px;}
.x32{left:486.360000px;}
.x68{left:489.062520px;}
.x99{left:522.540000px;}
.x54{left:525.420000px;}
.x9a{left:529.920000px;}
.x9d{left:540.720000px;}
.x9b{left:543.240000px;}
.x6d{left:545.580000px;}
.x6e{left:552.960000px;}
.xa0{left:558.720000px;}
.x5b{left:563.400000px;}
.x9c{left:564.480000px;}
.x6f{left:566.280000px;}
.x38{left:582.840000px;}
.xa3{left:593.640000px;}
.x8e{left:597.060000px;}
.x4b{left:600.120000px;}
.x8f{left:608.400000px;}
.x94{left:611.640000px;}
.x70{left:639.360000px;}
.x69{left:648.180000px;}
.x90{left:651.060000px;}
.x37{left:657.900000px;}
.x8c{left:659.520000px;}
.x9e{left:664.380000px;}
.x9f{left:668.700000px;}
.x89{left:670.860000px;}
.xa1{left:675.180000px;}
.x8a{left:678.240000px;}
.x74{left:679.500000px;}
.xa2{left:682.560000px;}
.x95{left:687.780000px;}
.x8b{left:691.380000px;}
.x96{left:695.160000px;}
.x6a{left:697.500000px;}
.x39{left:705.600000px;}
.x97{left:708.480000px;}
.x6b{left:711.540000px;}
.x8d{left:717.300000px;}
.x6c{left:720.360000px;}
.xb{left:725.220000px;}
.x98{left:729.360000px;}
.x91{left:731.520000px;}
.x92{left:735.300000px;}
.xa4{left:740.700000px;}
.x93{left:741.960000px;}
.xa5{left:748.080000px;}
.xa6{left:754.740000px;}
.x71{left:763.020000px;}
.x75{left:767.160000px;}
.x72{left:770.400000px;}
.x76{left:774.540000px;}
.x73{left:783.720000px;}
.x77{left:787.680000px;}
.x7{left:808.020000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.383360pt;}
.ls5a{letter-spacing:-4.128000pt;}
.ls27{letter-spacing:-3.456000pt;}
.ls57{letter-spacing:-2.832000pt;}
.ls3f{letter-spacing:-2.631008pt;}
.ls36{letter-spacing:-2.208000pt;}
.ls3c{letter-spacing:-2.172610pt;}
.ls40{letter-spacing:-1.536000pt;}
.ls3d{letter-spacing:-1.271654pt;}
.ls39{letter-spacing:-1.016967pt;}
.ls29{letter-spacing:-0.912000pt;}
.ls78{letter-spacing:-0.814720pt;}
.ls5d{letter-spacing:-0.720000pt;}
.ls37{letter-spacing:-0.672000pt;}
.ls2f{letter-spacing:-0.647680pt;}
.ls3a{letter-spacing:-0.554709pt;}
.ls1b{letter-spacing:-0.528000pt;}
.ls74{letter-spacing:-0.428800pt;}
.ls7b{letter-spacing:-0.406795pt;}
.ls70{letter-spacing:-0.385920pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls6b{letter-spacing:-0.353280pt;}
.ls69{letter-spacing:-0.303579pt;}
.ls21{letter-spacing:-0.296960pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls7a{letter-spacing:-0.271197pt;}
.ls7d{letter-spacing:-0.265600pt;}
.ls1d{letter-spacing:-0.259840pt;}
.ls77{letter-spacing:-0.257280pt;}
.ls68{letter-spacing:-0.252982pt;}
.lsf{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.235520pt;}
.ls44{letter-spacing:-0.234767pt;}
.ls6d{letter-spacing:-0.225997pt;}
.ls8{letter-spacing:-0.222720pt;}
.ls6f{letter-spacing:-0.214400pt;}
.ls5b{letter-spacing:-0.192000pt;}
.ls47{letter-spacing:-0.185600pt;}
.ls72{letter-spacing:-0.180798pt;}
.ls5e{letter-spacing:-0.176640pt;}
.ls6c{letter-spacing:-0.171520pt;}
.ls1f{letter-spacing:-0.148480pt;}
.ls15{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.111360pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls71{letter-spacing:-0.085760pt;}
.ls7{letter-spacing:-0.074240pt;}
.ls1c{letter-spacing:-0.048000pt;}
.ls23{letter-spacing:-0.037120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.037120pt;}
.ls2b{letter-spacing:0.038400pt;}
.ls75{letter-spacing:0.042880pt;}
.ls6e{letter-spacing:0.045199pt;}
.ls19{letter-spacing:0.048000pt;}
.ls67{letter-spacing:0.053120pt;}
.ls1e{letter-spacing:0.074240pt;}
.lsb{letter-spacing:0.085120pt;}
.ls11{letter-spacing:0.096000pt;}
.ls6a{letter-spacing:0.101193pt;}
.ls66{letter-spacing:0.106240pt;}
.ls63{letter-spacing:0.115776pt;}
.ls6{letter-spacing:0.124800pt;}
.ls3b{letter-spacing:0.138677pt;}
.ls22{letter-spacing:0.148480pt;}
.ls79{letter-spacing:0.180798pt;}
.ls35{letter-spacing:0.185600pt;}
.ls17{letter-spacing:0.192000pt;}
.ls62{letter-spacing:0.214400pt;}
.ls1{letter-spacing:0.222720pt;}
.ls34{letter-spacing:0.234767pt;}
.ls28{letter-spacing:0.235520pt;}
.ls18{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.255360pt;}
.ls64{letter-spacing:0.257280pt;}
.ls73{letter-spacing:0.271197pt;}
.lsa{letter-spacing:0.296960pt;}
.ls58{letter-spacing:0.313023pt;}
.ls20{letter-spacing:0.334080pt;}
.lse{letter-spacing:0.336000pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls76{letter-spacing:0.420224pt;}
.ls7c{letter-spacing:0.428800pt;}
.ls38{letter-spacing:0.480000pt;}
.ls60{letter-spacing:0.576000pt;}
.ls41{letter-spacing:0.586919pt;}
.ls42{letter-spacing:0.593920pt;}
.ls24{letter-spacing:0.605440pt;}
.ls3e{letter-spacing:0.833153pt;}
.ls25{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.008000pt;}
.ls2e{letter-spacing:1.632000pt;}
.ls4f{letter-spacing:2.256000pt;}
.ls2d{letter-spacing:2.304000pt;}
.ls2{letter-spacing:2.880000pt;}
.ls31{letter-spacing:2.928000pt;}
.ls3{letter-spacing:3.552000pt;}
.ls59{letter-spacing:3.633600pt;}
.ls5c{letter-spacing:4.176000pt;}
.ls14{letter-spacing:4.224000pt;}
.ls4{letter-spacing:5.472000pt;}
.ls1a{letter-spacing:6.144000pt;}
.ls5f{letter-spacing:6.768000pt;}
.ls43{letter-spacing:11.432960pt;}
.ls46{letter-spacing:14.663680pt;}
.ls65{letter-spacing:41.850880pt;}
.ls5{letter-spacing:48.993600pt;}
.ls30{letter-spacing:59.616000pt;}
.ls61{letter-spacing:64.877440pt;}
.ls2c{letter-spacing:74.183680pt;}
.ls33{letter-spacing:74.192640pt;}
.ls45{letter-spacing:178.472960pt;}
.ls4d{letter-spacing:188.049920pt;}
.ls4e{letter-spacing:322.461440pt;}
.ls51{letter-spacing:356.500480pt;}
.ls4a{letter-spacing:441.505280pt;}
.ls48{letter-spacing:460.807680pt;}
.ls50{letter-spacing:461.438720pt;}
.ls49{letter-spacing:529.925120pt;}
.ls4c{letter-spacing:565.671680pt;}
.ls55{letter-spacing:606.726400pt;}
.ls4b{letter-spacing:666.155520pt;}
.ls52{letter-spacing:757.025280pt;}
.ls53{letter-spacing:761.516800pt;}
.ls32{letter-spacing:762.890240pt;}
.ls54{letter-spacing:771.724800pt;}
.ls56{letter-spacing:909.328640pt;}
.ws5{word-spacing:-26.727680pt;}
.ws6{word-spacing:-26.642560pt;}
.ws33{word-spacing:-17.487360pt;}
.ws56{word-spacing:-17.075200pt;}
.ws7{word-spacing:-17.016320pt;}
.ws5a{word-spacing:-16.898560pt;}
.ws59{word-spacing:-15.617280pt;}
.wsb{word-spacing:-15.360000pt;}
.ws37{word-spacing:-15.264000pt;}
.ws2f{word-spacing:-15.216000pt;}
.ws9{word-spacing:-15.120000pt;}
.ws35{word-spacing:-15.072000pt;}
.ws8{word-spacing:-15.024000pt;}
.ws36{word-spacing:-14.976000pt;}
.ws34{word-spacing:-14.928000pt;}
.ws53{word-spacing:-14.832000pt;}
.wse{word-spacing:-14.784000pt;}
.wsa{word-spacing:-14.736000pt;}
.wsd{word-spacing:-14.640000pt;}
.ws77{word-spacing:-14.418637pt;}
.ws74{word-spacing:-14.328238pt;}
.ws76{word-spacing:-14.147440pt;}
.ws61{word-spacing:-13.921443pt;}
.wsc{word-spacing:-13.920000pt;}
.ws75{word-spacing:-13.876243pt;}
.ws5b{word-spacing:-13.678720pt;}
.ws5d{word-spacing:-13.421440pt;}
.ws60{word-spacing:-13.335680pt;}
.ws5f{word-spacing:-13.249920pt;}
.ws5c{word-spacing:-13.207040pt;}
.ws73{word-spacing:-13.164160pt;}
.ws5e{word-spacing:-13.035520pt;}
.ws4e{word-spacing:-12.012270pt;}
.ws4a{word-spacing:-11.915520pt;}
.ws3{word-spacing:-11.841280pt;}
.ws10{word-spacing:-11.767040pt;}
.wsf{word-spacing:-11.692800pt;}
.ws2{word-spacing:-11.618560pt;}
.ws3d{word-spacing:-11.576435pt;}
.ws1{word-spacing:-11.507200pt;}
.ws49{word-spacing:-11.470080pt;}
.ws4{word-spacing:-11.395840pt;}
.ws48{word-spacing:-11.358720pt;}
.ws47{word-spacing:-11.321600pt;}
.ws46{word-spacing:-11.210240pt;}
.ws45{word-spacing:-10.616320pt;}
.ws57{word-spacing:-6.768000pt;}
.ws20{word-spacing:-6.144000pt;}
.ws4d{word-spacing:-5.472000pt;}
.ws1b{word-spacing:-4.224000pt;}
.ws1f{word-spacing:-3.552000pt;}
.ws38{word-spacing:-2.928000pt;}
.ws30{word-spacing:-2.304000pt;}
.ws31{word-spacing:-1.632000pt;}
.ws19{word-spacing:-1.008000pt;}
.ws3e{word-spacing:-0.877003pt;}
.ws79{word-spacing:-0.857600pt;}
.ws81{word-spacing:-0.814720pt;}
.ws58{word-spacing:-0.576000pt;}
.ws7f{word-spacing:-0.428800pt;}
.ws2e{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.336000pt;}
.ws27{word-spacing:-0.334080pt;}
.ws52{word-spacing:-0.313023pt;}
.ws13{word-spacing:-0.296960pt;}
.ws6d{word-spacing:-0.271197pt;}
.ws6e{word-spacing:-0.257280pt;}
.ws14{word-spacing:-0.255360pt;}
.ws1d{word-spacing:-0.240000pt;}
.ws2c{word-spacing:-0.235520pt;}
.ws39{word-spacing:-0.234767pt;}
.ws26{word-spacing:-0.222720pt;}
.ws6c{word-spacing:-0.214400pt;}
.ws1c{word-spacing:-0.192000pt;}
.ws3a{word-spacing:-0.185600pt;}
.ws7c{word-spacing:-0.171520pt;}
.ws42{word-spacing:-0.138677pt;}
.ws63{word-spacing:-0.106240pt;}
.ws67{word-spacing:-0.101193pt;}
.ws18{word-spacing:-0.096000pt;}
.ws24{word-spacing:-0.074240pt;}
.ws64{word-spacing:-0.053120pt;}
.ws1e{word-spacing:-0.048000pt;}
.ws6a{word-spacing:-0.045199pt;}
.ws71{word-spacing:-0.042880pt;}
.ws2a{word-spacing:-0.037120pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.037120pt;}
.ws22{word-spacing:0.048000pt;}
.ws11{word-spacing:0.074240pt;}
.ws72{word-spacing:0.085760pt;}
.ws1a{word-spacing:0.096000pt;}
.ws4f{word-spacing:0.111360pt;}
.ws83{word-spacing:0.144000pt;}
.ws25{word-spacing:0.148480pt;}
.ws68{word-spacing:0.171520pt;}
.ws7b{word-spacing:0.180798pt;}
.ws4c{word-spacing:0.185600pt;}
.ws6b{word-spacing:0.214400pt;}
.ws12{word-spacing:0.222720pt;}
.ws69{word-spacing:0.225997pt;}
.ws4b{word-spacing:0.234767pt;}
.ws16{word-spacing:0.240000pt;}
.ws65{word-spacing:0.252982pt;}
.ws78{word-spacing:0.257280pt;}
.ws23{word-spacing:0.259840pt;}
.ws82{word-spacing:0.265600pt;}
.ws7d{word-spacing:0.271197pt;}
.ws17{word-spacing:0.288000pt;}
.ws28{word-spacing:0.296960pt;}
.ws66{word-spacing:0.303579pt;}
.ws62{word-spacing:0.384000pt;}
.ws70{word-spacing:0.385920pt;}
.ws7e{word-spacing:0.406795pt;}
.ws6f{word-spacing:0.428800pt;}
.ws80{word-spacing:0.471680pt;}
.ws21{word-spacing:0.528000pt;}
.ws41{word-spacing:0.554709pt;}
.ws32{word-spacing:0.647680pt;}
.ws3c{word-spacing:0.672000pt;}
.ws55{word-spacing:0.720000pt;}
.ws7a{word-spacing:0.857600pt;}
.ws2d{word-spacing:0.912000pt;}
.ws40{word-spacing:1.016967pt;}
.ws44{word-spacing:1.536000pt;}
.ws43{word-spacing:2.172610pt;}
.ws3b{word-spacing:2.208000pt;}
.ws3f{word-spacing:2.587158pt;}
.ws51{word-spacing:2.832000pt;}
.ws2b{word-spacing:3.456000pt;}
.ws54{word-spacing:4.128000pt;}
.ws50{word-spacing:5.568000pt;}
._19{margin-left:-8.983040pt;}
._1d{margin-left:-7.377600pt;}
._b{margin-left:-6.446400pt;}
._c{margin-left:-5.410112pt;}
._7{margin-left:-4.449600pt;}
._6{margin-left:-3.009088pt;}
._5{margin-left:-1.995008pt;}
._1{margin-left:-0.893312pt;}
._0{width:0.994816pt;}
._10{width:1.883904pt;}
._4{width:2.779712pt;}
._2{width:3.729600pt;}
._3{width:5.054400pt;}
._8{width:6.062912pt;}
._a{width:7.089792pt;}
._e{width:8.256000pt;}
._f{width:9.428416pt;}
._12{width:10.752832pt;}
._15{width:12.955712pt;}
._16{width:13.990720pt;}
._13{width:17.434112pt;}
._14{width:18.440320pt;}
._1c{width:21.902912pt;}
._9{width:49.027136pt;}
._d{width:63.883520pt;}
._18{width:718.628871pt;}
._11{width:752.976000pt;}
._1b{width:755.159808pt;}
._1a{width:781.403648pt;}
._17{width:841.675119pt;}
.fs6{font-size:5.120000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:39.127916pt;}
.fs10{font-size:42.880000pt;}
.fse{font-size:43.850133pt;}
.fs11{font-size:45.199489pt;}
.fsd{font-size:46.225754pt;}
.fsa{font-size:48.000000pt;}
.fsf{font-size:50.596443pt;}
.fsb{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:1.920000pt;}
.y24{bottom:2.080000pt;}
.y1b8{bottom:3.040000pt;}
.y195{bottom:3.200000pt;}
.y320{bottom:3.840000pt;}
.y31d{bottom:4.000000pt;}
.y151{bottom:4.480000pt;}
.y142{bottom:4.640000pt;}
.y176{bottom:5.576800pt;}
.y29{bottom:5.920000pt;}
.y27{bottom:10.400000pt;}
.ybb{bottom:11.680000pt;}
.yb9{bottom:24.640000pt;}
.y1cc{bottom:25.760000pt;}
.yb8{bottom:37.600000pt;}
.y15a{bottom:37.760000pt;}
.y2e{bottom:39.520000pt;}
.ya9{bottom:41.440000pt;}
.y2c{bottom:47.520000pt;}
.ya7{bottom:54.400000pt;}
.y5{bottom:59.133337pt;}
.y1b3{bottom:60.800000pt;}
.y199{bottom:60.960000pt;}
.y5f{bottom:63.520000pt;}
.yb0{bottom:66.400000pt;}
.ya5{bottom:67.360000pt;}
.yb5{bottom:76.320000pt;}
.ya4{bottom:80.320000pt;}
.y3a2{bottom:81.280640pt;}
.y348{bottom:81.440000pt;}
.y5d{bottom:81.556000pt;}
.y1ed{bottom:82.080000pt;}
.yb2{bottom:82.400000pt;}
.yae{bottom:83.360000pt;}
.yed{bottom:83.928000pt;}
.y175{bottom:85.053200pt;}
.y4{bottom:86.333337pt;}
.yb3{bottom:89.280000pt;}
.y360{bottom:89.442080pt;}
.y25f{bottom:89.988000pt;}
.ya2{bottom:93.280000pt;}
.y2df{bottom:93.508000pt;}
.y31a{bottom:93.884000pt;}
.ybc{bottom:94.080000pt;}
.y3a1{bottom:96.160000pt;}
.y347{bottom:96.320000pt;}
.y5c{bottom:98.200000pt;}
.yac{bottom:100.320000pt;}
.yec{bottom:100.572000pt;}
.y2cb{bottom:102.180000pt;}
.y3e1{bottom:104.161440pt;}
.y35f{bottom:104.321440pt;}
.ya1{bottom:106.240000pt;}
.y114{bottom:106.560000pt;}
.y25e{bottom:106.632000pt;}
.yba{bottom:107.040000pt;}
.y2de{bottom:110.152000pt;}
.y319{bottom:110.528000pt;}
.y3a0{bottom:110.880000pt;}
.y39f{bottom:110.882720pt;}
.y346{bottom:111.040000pt;}
.y345{bottom:111.040640pt;}
.y1ec{bottom:114.080000pt;}
.y5b{bottom:114.844000pt;}
.y17a{bottom:115.186267pt;}
.yeb{bottom:117.216000pt;}
.y2f2{bottom:117.900000pt;}
.y282{bottom:118.156000pt;}
.y2ca{bottom:118.824000pt;}
.y3e0{bottom:118.880000pt;}
.y3df{bottom:118.882720pt;}
.y35e{bottom:119.040000pt;}
.y9f{bottom:119.200000pt;}
.y25d{bottom:123.276000pt;}
.y22{bottom:123.790666pt;}
.y22d{bottom:125.280000pt;}
.y39e{bottom:125.762080pt;}
.y344{bottom:125.920000pt;}
.y343{bottom:125.926400pt;}
.y2dd{bottom:126.796000pt;}
.y113{bottom:127.200000pt;}
.y1eb{bottom:128.640000pt;}
.yb7{bottom:131.040000pt;}
.y5a{bottom:131.488000pt;}
.y9d{bottom:132.160000pt;}
.y2a0{bottom:132.320000pt;}
.y3de{bottom:133.762080pt;}
.yea{bottom:133.860000pt;}
.y2f1{bottom:134.544000pt;}
.y281{bottom:134.800000pt;}
.y318{bottom:135.164000pt;}
.y2c9{bottom:135.468000pt;}
.y25c{bottom:139.920000pt;}
.y39d{bottom:140.480640pt;}
.y342{bottom:140.644960pt;}
.y1ea{bottom:141.124160pt;}
.y22c{bottom:141.920000pt;}
.y35d{bottom:141.921440pt;}
.y9c{bottom:145.120000pt;}
.y179{bottom:145.854533pt;}
.y59{bottom:148.132000pt;}
.y3dd{bottom:148.480640pt;}
.y1d0{bottom:149.120000pt;}
.y29f{bottom:150.880000pt;}
.y2f0{bottom:151.188000pt;}
.y2dc{bottom:151.432000pt;}
.y280{bottom:151.444000pt;}
.y317{bottom:151.808000pt;}
.y112{bottom:151.840000pt;}
.y2c8{bottom:152.268000pt;}
.y1e9{bottom:152.482880pt;}
.y193{bottom:154.400000pt;}
.y39c{bottom:155.360000pt;}
.y25b{bottom:156.564000pt;}
.y35c{bottom:156.640000pt;}
.y35b{bottom:156.642720pt;}
.y9b{bottom:158.080000pt;}
.ye9{bottom:158.496000pt;}
.y22b{bottom:158.560000pt;}
.yb6{bottom:158.720000pt;}
.y3dc{bottom:163.360000pt;}
.y341{bottom:163.521440pt;}
.y58{bottom:164.776000pt;}
.y1e8{bottom:164.964480pt;}
.y2ef{bottom:167.832000pt;}
.y29e{bottom:168.160000pt;}
.y2db{bottom:168.232000pt;}
.y316{bottom:168.452000pt;}
.y2c7{bottom:168.912000pt;}
.y99{bottom:171.040000pt;}
.y35a{bottom:171.522080pt;}
.yb4{bottom:171.680000pt;}
.y19{bottom:175.052000pt;}
.ye8{bottom:175.140000pt;}
.y22a{bottom:175.200000pt;}
.y27f{bottom:176.248000pt;}
.y111{bottom:176.476000pt;}
.y1e7{bottom:177.603840pt;}
.y39b{bottom:178.080640pt;}
.y340{bottom:178.240000pt;}
.y33f{bottom:178.240640pt;}
.y192{bottom:179.040000pt;}
.y13a{bottom:180.800000pt;}
.y25a{bottom:181.200000pt;}
.y97{bottom:184.000000pt;}
.y2ee{bottom:184.476000pt;}
.y2da{bottom:184.876000pt;}
.y315{bottom:185.096000pt;}
.y29d{bottom:185.440000pt;}
.y3db{bottom:186.080640pt;}
.y21{bottom:186.238666pt;}
.yab{bottom:186.240000pt;}
.y359{bottom:186.240640pt;}
.y18{bottom:186.252002pt;}
.y57{bottom:189.412000pt;}
.y1e6{bottom:190.085440pt;}
.ye7{bottom:191.784000pt;}
.y27e{bottom:192.892000pt;}
.y39a{bottom:192.960000pt;}
.y399{bottom:192.961440pt;}
.y110{bottom:193.120000pt;}
.y2c6{bottom:193.548000pt;}
.y191{bottom:195.680000pt;}
.y96{bottom:196.960000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y259{bottom:197.844000pt;}
.y229{bottom:199.840000pt;}
.y3da{bottom:200.960000pt;}
.y3d9{bottom:200.961440pt;}
.y2ed{bottom:201.120000pt;}
.y314{bottom:201.740000pt;}
.y29c{bottom:202.720000pt;}
.y1e5{bottom:202.724800pt;}
.y139{bottom:205.440000pt;}
.y56{bottom:206.212000pt;}
.y1dc{bottom:207.040000pt;}
.y398{bottom:207.680000pt;}
.y397{bottom:207.682080pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y2d9{bottom:209.512000pt;}
.y27d{bottom:209.536000pt;}
.y94{bottom:209.920000pt;}
.y2c5{bottom:210.192000pt;}
.y178{bottom:210.482400pt;}
.y190{bottom:212.320000pt;}
.y171{bottom:213.412000pt;}
.y1e4{bottom:214.083520pt;}
.y258{bottom:214.644000pt;}
.y3d8{bottom:215.680000pt;}
.y3d7{bottom:215.682720pt;}
.y33e{bottom:215.840640pt;}
.ye6{bottom:216.420000pt;}
.y228{bottom:216.480000pt;}
.y313{bottom:218.540000pt;}
.y138{bottom:222.080000pt;}
.y396{bottom:222.561440pt;}
.y55{bottom:222.856000pt;}
.y92{bottom:222.880000pt;}
.y358{bottom:223.840640pt;}
.y10f{bottom:224.160000pt;}
.y29b{bottom:224.480000pt;}
.y2d8{bottom:226.156000pt;}
.y27c{bottom:226.180000pt;}
.y1e3{bottom:226.565120pt;}
.y2c4{bottom:226.836000pt;}
.y3d6{bottom:230.562080pt;}
.y33d{bottom:230.720000pt;}
.y33c{bottom:230.721440pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y2ec{bottom:232.160000pt;}
.ye5{bottom:233.064000pt;}
.y227{bottom:233.280000pt;}
.y312{bottom:235.184000pt;}
.y90{bottom:235.840000pt;}
.y18f{bottom:236.960000pt;}
.y395{bottom:237.280000pt;}
.y170{bottom:238.048000pt;}
.y1e2{bottom:238.081600pt;}
.y137{bottom:238.720000pt;}
.y357{bottom:238.724160pt;}
.y257{bottom:239.280000pt;}
.y54{bottom:239.500000pt;}
.y177{bottom:239.961467pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y2d7{bottom:242.800000pt;}
.y29a{bottom:243.200000pt;}
.y3d5{bottom:245.280640pt;}
.y33b{bottom:245.440000pt;}
.y33a{bottom:245.442080pt;}
.y8e{bottom:248.800000pt;}
.ye4{bottom:249.708000pt;}
.y1e1{bottom:250.405440pt;}
.y27b{bottom:250.816000pt;}
.y2c3{bottom:251.472000pt;}
.yb1{bottom:252.640000pt;}
.y1c{bottom:253.438668pt;}
.y356{bottom:253.442720pt;}
.y13{bottom:253.451999pt;}
.y18e{bottom:253.600000pt;}
.y16f{bottom:254.692000pt;}
.y136{bottom:255.360000pt;}
.y256{bottom:255.924000pt;}
.y53{bottom:256.144000pt;}
.y226{bottom:257.920000pt;}
.y2d6{bottom:259.444000pt;}
.y311{bottom:259.820000pt;}
.y3d4{bottom:260.160000pt;}
.y394{bottom:260.160640pt;}
.y339{bottom:260.321440pt;}
.y8c{bottom:261.760000pt;}
.y1e0{bottom:261.921920pt;}
.ye3{bottom:266.508000pt;}
.y299{bottom:267.200000pt;}
.y10e{bottom:267.436000pt;}
.y27a{bottom:267.460000pt;}
.y2c2{bottom:268.116000pt;}
.y355{bottom:268.322080pt;}
.yaf{bottom:269.600000pt;}
.y18d{bottom:270.240000pt;}
.y135{bottom:272.000000pt;}
.y255{bottom:272.568000pt;}
.y52{bottom:272.788000pt;}
.y1df{bottom:274.245760pt;}
.y225{bottom:274.560000pt;}
.y8a{bottom:274.720000pt;}
.y338{bottom:275.040000pt;}
.y393{bottom:275.041440pt;}
.y2eb{bottom:275.440000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y310{bottom:276.464000pt;}
.y16e{bottom:279.328000pt;}
.y354{bottom:283.040640pt;}
.y3d3{bottom:283.041440pt;}
.y10d{bottom:284.080000pt;}
.y279{bottom:284.104000pt;}
.y2c1{bottom:284.760000pt;}
.y1de{bottom:285.762240pt;}
.yad{bottom:286.560000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y88{bottom:287.520000pt;}
.y254{bottom:289.212000pt;}
.y51{bottom:289.432000pt;}
.y392{bottom:289.760000pt;}
.y391{bottom:289.760640pt;}
.ye2{bottom:291.144000pt;}
.y224{bottom:291.200000pt;}
.y2ea{bottom:292.084000pt;}
.y30f{bottom:293.108000pt;}
.y18c{bottom:294.880000pt;}
.y16d{bottom:295.972000pt;}
.y134{bottom:296.800000pt;}
.y1dd{bottom:296.963200pt;}
.y3d2{bottom:297.760000pt;}
.y353{bottom:297.920000pt;}
.y337{bottom:297.920640pt;}
.y174{bottom:299.751867pt;}
.y61{bottom:299.840000pt;}
.y1ca{bottom:300.161280pt;}
.y87{bottom:300.480000pt;}
.y10c{bottom:300.724000pt;}
.y298{bottom:302.532000pt;}
.y390{bottom:304.640000pt;}
.y50{bottom:306.076000pt;}
.ye1{bottom:307.788000pt;}
.y1cf{bottom:308.320000pt;}
.y2e9{bottom:308.728000pt;}
.y278{bottom:308.740000pt;}
.y2c0{bottom:309.396000pt;}
.y10{bottom:309.452000pt;}
.y30e{bottom:309.752000pt;}
.y18b{bottom:311.520000pt;}
.y3d1{bottom:312.641440pt;}
.y336{bottom:312.800000pt;}
.y335{bottom:312.803520pt;}
.y85{bottom:313.440000pt;}
.y253{bottom:313.848000pt;}
.y223{bottom:315.840000pt;}
.y2d5{bottom:317.368000pt;}
.y297{bottom:319.176000pt;}
.y16c{bottom:320.776000pt;}
.y352{bottom:320.801440pt;}
.y4f{bottom:322.720000pt;}
.y1db{bottom:322.880000pt;}
.ye0{bottom:324.432000pt;}
.y10b{bottom:325.360000pt;}
.y2e8{bottom:325.372000pt;}
.y277{bottom:325.384000pt;}
.y2bf{bottom:326.196000pt;}
.y83{bottom:326.400000pt;}
.y3d0{bottom:327.360000pt;}
.y38f{bottom:327.360640pt;}
.y334{bottom:327.522080pt;}
.y133{bottom:330.080000pt;}
.y252{bottom:330.492000pt;}
.y222{bottom:332.480000pt;}
.y30d{bottom:334.388000pt;}
.y1da{bottom:335.360640pt;}
.y351{bottom:335.520000pt;}
.y350{bottom:335.520640pt;}
.y296{bottom:335.820000pt;}
.y18a{bottom:336.320000pt;}
.y16b{bottom:337.420000pt;}
.y82{bottom:339.360000pt;}
.ydf{bottom:341.076000pt;}
.yaa{bottom:341.280000pt;}
.y10a{bottom:342.160000pt;}
.y2d4{bottom:342.172000pt;}
.y276{bottom:342.184000pt;}
.y38e{bottom:342.240000pt;}
.y333{bottom:342.401440pt;}
.y2be{bottom:342.840000pt;}
.yf{bottom:343.809333pt;}
.y251{bottom:347.136000pt;}
.y1d9{bottom:347.842240pt;}
.y221{bottom:349.120000pt;}
.y3cf{bottom:350.241440pt;}
.y34f{bottom:350.400000pt;}
.y34e{bottom:350.403520pt;}
.y30c{bottom:351.032000pt;}
.y81{bottom:352.320000pt;}
.y295{bottom:352.464000pt;}
.y189{bottom:352.960000pt;}
.y4e{bottom:353.760000pt;}
.ya8{bottom:354.240000pt;}
.y132{bottom:354.720000pt;}
.y38d{bottom:356.962080pt;}
.y332{bottom:357.120000pt;}
.yde{bottom:357.720000pt;}
.y109{bottom:358.804000pt;}
.y2d3{bottom:358.816000pt;}
.y1d8{bottom:360.481600pt;}
.y16a{bottom:362.056000pt;}
.ye{bottom:362.706666pt;}
.y250{bottom:363.780000pt;}
.y3ce{bottom:364.960000pt;}
.y3cd{bottom:364.960640pt;}
.y34d{bottom:365.122080pt;}
.y7f{bottom:365.280000pt;}
.y220{bottom:365.760000pt;}
.y2e7{bottom:366.808000pt;}
.y275{bottom:366.820000pt;}
.ya6{bottom:367.200000pt;}
.y2bd{bottom:367.476000pt;}
.y188{bottom:369.600000pt;}
.y131{bottom:371.360000pt;}
.y38c{bottom:371.841440pt;}
.y1d7{bottom:373.120960pt;}
.y173{bottom:374.331333pt;}
.ydd{bottom:374.364000pt;}
.y108{bottom:375.448000pt;}
.y2d2{bottom:375.460000pt;}
.y30b{bottom:375.668000pt;}
.y294{bottom:377.268000pt;}
.y7e{bottom:378.240000pt;}
.y169{bottom:378.700000pt;}
.y3cc{bottom:379.840000pt;}
.y3cb{bottom:379.843520pt;}
.y331{bottom:380.001440pt;}
.y24f{bottom:380.424000pt;}
.y2e6{bottom:383.452000pt;}
.y274{bottom:383.464000pt;}
.y2bc{bottom:384.120000pt;}
.y1ce{bottom:384.480000pt;}
.y1d6{bottom:385.760320pt;}
.y187{bottom:386.240000pt;}
.y38b{bottom:386.560000pt;}
.y130{bottom:388.000000pt;}
.y21f{bottom:390.400000pt;}
.ydc{bottom:391.008000pt;}
.y7c{bottom:391.200000pt;}
.y107{bottom:392.092000pt;}
.y2d1{bottom:392.104000pt;}
.y30a{bottom:392.468000pt;}
.ya3{bottom:393.120000pt;}
.y293{bottom:393.912000pt;}
.y3ca{bottom:394.562080pt;}
.y330{bottom:394.720000pt;}
.y32f{bottom:394.720640pt;}
.y168{bottom:395.344000pt;}
.y4d{bottom:397.036000pt;}
.y1d5{bottom:397.119040pt;}
.y24e{bottom:397.224000pt;}
.y2e5{bottom:400.096000pt;}
.y273{bottom:400.108000pt;}
.y2bb{bottom:400.764000pt;}
.y7b{bottom:404.160000pt;}
.y12f{bottom:404.640000pt;}
.y21e{bottom:407.200000pt;}
.y309{bottom:409.112000pt;}
.y38a{bottom:409.441440pt;}
.y32e{bottom:409.600000pt;}
.y1d4{bottom:409.600640pt;}
.y292{bottom:410.556000pt;}
.y186{bottom:410.880000pt;}
.ydb{bottom:415.644000pt;}
.y106{bottom:416.728000pt;}
.y2d0{bottom:416.740000pt;}
.y79{bottom:417.120000pt;}
.y2ba{bottom:417.408000pt;}
.y34c{bottom:417.601440pt;}
.ya0{bottom:419.040000pt;}
.y167{bottom:419.980000pt;}
.y12e{bottom:421.280000pt;}
.y24d{bottom:421.860000pt;}
.y1d3{bottom:422.240000pt;}
.y21d{bottom:423.840000pt;}
.y389{bottom:424.160000pt;}
.y388{bottom:424.162080pt;}
.y272{bottom:424.744000pt;}
.y291{bottom:427.200000pt;}
.y185{bottom:427.520000pt;}
.y4c{bottom:429.676000pt;}
.y77{bottom:430.080000pt;}
.yd{bottom:430.990669pt;}
.y9e{bottom:432.000000pt;}
.y32d{bottom:432.320000pt;}
.y34b{bottom:432.320640pt;}
.yda{bottom:432.444000pt;}
.y105{bottom:433.372000pt;}
.y2cf{bottom:433.384000pt;}
.y308{bottom:433.748000pt;}
.y1d2{bottom:434.723520pt;}
.y166{bottom:436.624000pt;}
.y3fc{bottom:437.540000pt;}
.y12d{bottom:437.920000pt;}
.y24c{bottom:438.504000pt;}
.y387{bottom:439.041440pt;}
.y21c{bottom:440.480000pt;}
.y2e4{bottom:441.376000pt;}
.y271{bottom:441.388000pt;}
.y2b9{bottom:442.044000pt;}
.y76{bottom:443.040000pt;}
.y184{bottom:444.160000pt;}
.y1d1{bottom:446.240000pt;}
.y4b{bottom:446.320000pt;}
.yc{bottom:446.990669pt;}
.y3c9{bottom:447.040000pt;}
.y34a{bottom:447.200000pt;}
.y32c{bottom:447.201440pt;}
.y349{bottom:447.203520pt;}
.yd9{bottom:449.088000pt;}
.y104{bottom:450.016000pt;}
.y2ce{bottom:450.028000pt;}
.y307{bottom:450.392000pt;}
.y165{bottom:453.268000pt;}
.y386{bottom:453.760000pt;}
.y385{bottom:453.762720pt;}
.y24b{bottom:455.148000pt;}
.y75{bottom:456.000000pt;}
.y2e3{bottom:458.020000pt;}
.y270{bottom:458.032000pt;}
.y2b8{bottom:458.688000pt;}
.y290{bottom:460.480000pt;}
.y3c8{bottom:461.760000pt;}
.y3c7{bottom:461.760640pt;}
.y32b{bottom:461.920000pt;}
.y32a{bottom:461.922080pt;}
.y12c{bottom:462.720000pt;}
.yb{bottom:462.990669pt;}
.yd8{bottom:465.732000pt;}
.y103{bottom:466.660000pt;}
.y2cd{bottom:466.672000pt;}
.y384{bottom:468.642080pt;}
.y183{bottom:468.800000pt;}
.y73{bottom:468.960000pt;}
.y21b{bottom:469.120000pt;}
.y3fb{bottom:470.180000pt;}
.y9a{bottom:470.880000pt;}
.y24a{bottom:471.792000pt;}
.y2e2{bottom:474.664000pt;}
.y306{bottom:475.028000pt;}
.y2b7{bottom:475.332000pt;}
.y3c6{bottom:476.640000pt;}
.y3c5{bottom:476.642720pt;}
.y329{bottom:476.801440pt;}
.y28f{bottom:477.760000pt;}
.y164{bottom:477.904000pt;}
.y4a{bottom:478.960000pt;}
.ya{bottom:478.990666pt;}
.y12b{bottom:479.360000pt;}
.y72{bottom:481.920000pt;}
.y26f{bottom:482.668000pt;}
.y1cb{bottom:483.200000pt;}
.y102{bottom:483.304000pt;}
.y1cd{bottom:483.360000pt;}
.y383{bottom:483.521440pt;}
.y21a{bottom:483.680000pt;}
.y98{bottom:483.840000pt;}
.y182{bottom:485.440000pt;}
.y3fa{bottom:486.824000pt;}
.yd7{bottom:490.368000pt;}
.y2cc{bottom:491.308000pt;}
.y328{bottom:491.520000pt;}
.y3c4{bottom:491.522080pt;}
.y305{bottom:491.672000pt;}
.y2b6{bottom:492.132000pt;}
.y163{bottom:494.704000pt;}
.y70{bottom:494.880000pt;}
.y9{bottom:494.990666pt;}
.y28e{bottom:495.040000pt;}
.y49{bottom:495.604000pt;}
.y12a{bottom:496.000000pt;}
.y249{bottom:496.428000pt;}
.y382{bottom:498.240000pt;}
.y219{bottom:498.880000pt;}
.y26e{bottom:499.312000pt;}
.y181{bottom:502.240000pt;}
.y1c9{bottom:505.920000pt;}
.y3c3{bottom:506.240640pt;}
.yd6{bottom:507.012000pt;}
.y6f{bottom:507.840000pt;}
.y101{bottom:508.108000pt;}
.y304{bottom:508.316000pt;}
.y2b5{bottom:508.776000pt;}
.y95{bottom:509.760000pt;}
.y162{bottom:511.348000pt;}
.y28d{bottom:512.320000pt;}
.y48{bottom:512.404000pt;}
.y129{bottom:512.640000pt;}
.y248{bottom:513.072000pt;}
.y218{bottom:514.080640pt;}
.y26d{bottom:516.112000pt;}
.y180{bottom:518.880000pt;}
.y3f9{bottom:519.620000pt;}
.y1c8{bottom:520.480000pt;}
.y6d{bottom:520.800000pt;}
.y3c2{bottom:521.120000pt;}
.y381{bottom:521.121440pt;}
.y327{bottom:521.280000pt;}
.y93{bottom:522.720000pt;}
.yd5{bottom:523.656000pt;}
.y100{bottom:524.752000pt;}
.y217{bottom:526.720000pt;}
.y161{bottom:527.992000pt;}
.y47{bottom:529.048000pt;}
.y128{bottom:529.280000pt;}
.y28c{bottom:529.440000pt;}
.y247{bottom:529.716000pt;}
.y26c{bottom:532.756000pt;}
.y303{bottom:532.952000pt;}
.y2b4{bottom:533.412000pt;}
.y6b{bottom:533.760000pt;}
.y1c7{bottom:535.040000pt;}
.y17f{bottom:535.520000pt;}
.y91{bottom:535.680000pt;}
.y380{bottom:535.840000pt;}
.y37f{bottom:535.842080pt;}
.y3f8{bottom:536.264000pt;}
.yd4{bottom:540.300000pt;}
.yff{bottom:541.396000pt;}
.y216{bottom:541.920000pt;}
.y3c1{bottom:543.840640pt;}
.y160{bottom:544.636000pt;}
.y46{bottom:545.692000pt;}
.y246{bottom:546.360000pt;}
.y69{bottom:546.720000pt;}
.y1c3{bottom:546.880000pt;}
.y1c6{bottom:547.520320pt;}
.y28b{bottom:548.160000pt;}
.y8f{bottom:548.640000pt;}
.y26b{bottom:549.400000pt;}
.y302{bottom:549.596000pt;}
.y2b3{bottom:550.056000pt;}
.y37e{bottom:550.721440pt;}
.y17e{bottom:552.160000pt;}
.y3f7{bottom:552.908000pt;}
.y215{bottom:557.120640pt;}
.y3c0{bottom:558.720000pt;}
.y3bf{bottom:558.721440pt;}
.y1c5{bottom:558.879040pt;}
.y67{bottom:559.680000pt;}
.y127{bottom:560.320000pt;}
.y15f{bottom:561.280000pt;}
.y8d{bottom:561.600000pt;}
.y45{bottom:562.336000pt;}
.y326{bottom:564.640000pt;}
.yd3{bottom:564.936000pt;}
.y37d{bottom:565.440000pt;}
.yfe{bottom:566.032000pt;}
.y26a{bottom:566.044000pt;}
.y301{bottom:566.240000pt;}
.y2b2{bottom:566.700000pt;}
.y17d{bottom:568.800000pt;}
.y3f6{bottom:569.552000pt;}
.y214{bottom:569.760000pt;}
.y1c4{bottom:570.080000pt;}
.y245{bottom:571.164000pt;}
.y28a{bottom:572.000000pt;}
.y66{bottom:572.640000pt;}
.y3be{bottom:573.440000pt;}
.y3bd{bottom:573.442720pt;}
.y8{bottom:573.786667pt;}
.y2e1{bottom:574.036000pt;}
.y8b{bottom:574.560000pt;}
.y15e{bottom:577.924000pt;}
.y44{bottom:578.980000pt;}
.y1c2{bottom:581.440000pt;}
.yd2{bottom:581.580000pt;}
.yfd{bottom:582.676000pt;}
.y269{bottom:582.688000pt;}
.y300{bottom:583.040000pt;}
.y213{bottom:585.120000pt;}
.y65{bottom:585.600000pt;}
.y3f5{bottom:586.196000pt;}
.y89{bottom:587.360000pt;}
.y244{bottom:587.808000pt;}
.y37c{bottom:588.321440pt;}
.y3bc{bottom:588.322080pt;}
.y325{bottom:588.480000pt;}
.y2e0{bottom:590.680000pt;}
.y2b1{bottom:591.336000pt;}
.y7{bottom:592.685334pt;}
.y43{bottom:595.624000pt;}
.y1c1{bottom:595.999040pt;}
.y1bf{bottom:596.000000pt;}
.yd1{bottom:598.224000pt;}
.y64{bottom:598.560000pt;}
.yfc{bottom:599.320000pt;}
.y212{bottom:600.161920pt;}
.y15d{bottom:602.560000pt;}
.y3f4{bottom:602.840000pt;}
.y37b{bottom:603.040000pt;}
.y3bb{bottom:603.040640pt;}
.y205{bottom:603.205440pt;}
.y126{bottom:603.660000pt;}
.y17c{bottom:604.000000pt;}
.y243{bottom:604.452000pt;}
.y1c0{bottom:607.200000pt;}
.y289{bottom:607.312000pt;}
.y268{bottom:607.324000pt;}
.y2b0{bottom:607.980000pt;}
.y202{bottom:608.801280pt;}
.y63{bottom:611.520000pt;}
.y42{bottom:612.268000pt;}
.y211{bottom:612.801280pt;}
.y86{bottom:613.280000pt;}
.y2ff{bottom:613.920000pt;}
.y204{bottom:614.564160pt;}
.yd0{bottom:615.024000pt;}
.yfb{bottom:615.964000pt;}
.y3ba{bottom:617.920000pt;}
.y37a{bottom:617.922080pt;}
.y1be{bottom:618.560000pt;}
.y3f3{bottom:619.484000pt;}
.y201{bottom:620.160000pt;}
.y1af{bottom:620.161280pt;}
.y125{bottom:620.304000pt;}
.y242{bottom:621.096000pt;}
.y172{bottom:621.346667pt;}
.y17b{bottom:621.440000pt;}
.y324{bottom:622.400000pt;}
.y288{bottom:623.956000pt;}
.y267{bottom:623.968000pt;}
.y210{bottom:624.160000pt;}
.y62{bottom:624.480000pt;}
.y2af{bottom:624.624000pt;}
.y203{bottom:625.765120pt;}
.y84{bottom:626.240000pt;}
.y41{bottom:628.912000pt;}
.y159{bottom:631.200000pt;}
.y1ae{bottom:631.520000pt;}
.ycf{bottom:631.668000pt;}
.yfa{bottom:632.608000pt;}
.y379{bottom:632.640640pt;}
.y1ba{bottom:632.961280pt;}
.y1bd{bottom:633.120320pt;}
.y15c{bottom:635.840000pt;}
.y3f2{bottom:636.128000pt;}
.y124{bottom:636.948000pt;}
.y241{bottom:637.740000pt;}
.y20f{bottom:639.360640pt;}
.y287{bottom:640.600000pt;}
.y266{bottom:640.612000pt;}
.y3b9{bottom:640.640640pt;}
.y1b9{bottom:644.320000pt;}
.y1bc{bottom:644.479040pt;}
.y40{bottom:645.556000pt;}
.y6{bottom:645.598667pt;}
.y323{bottom:646.080000pt;}
.y378{bottom:647.520000pt;}
.yce{bottom:648.312000pt;}
.y2ae{bottom:649.260000pt;}
.y20e{bottom:652.000000pt;}
.y15b{bottom:652.480000pt;}
.y3f1{bottom:652.772000pt;}
.y157{bottom:653.760000pt;}
.y240{bottom:654.384000pt;}
.y3b8{bottom:655.520000pt;}
.y3b7{bottom:655.522080pt;}
.y1bb{bottom:655.680000pt;}
.y2fe{bottom:657.232000pt;}
.yf9{bottom:657.244000pt;}
.y265{bottom:657.256000pt;}
.y123{bottom:661.584000pt;}
.y3f{bottom:662.356000pt;}
.ycd{bottom:664.956000pt;}
.y80{bottom:665.120000pt;}
.y2ad{bottom:665.904000pt;}
.y1b2{bottom:667.040000pt;}
.y20d{bottom:667.200640pt;}
.y158{bottom:668.960000pt;}
.y3{bottom:668.977329pt;}
.y3f0{bottom:669.572000pt;}
.y377{bottom:670.240640pt;}
.y2fd{bottom:673.876000pt;}
.yf8{bottom:673.888000pt;}
.y122{bottom:678.228000pt;}
.y3e{bottom:679.000000pt;}
.y23f{bottom:679.020000pt;}
.y20c{bottom:679.840000pt;}
.y322{bottom:680.000000pt;}
.y1b7{bottom:681.599040pt;}
.ycc{bottom:681.600000pt;}
.y264{bottom:681.892000pt;}
.y156{bottom:684.320000pt;}
.y376{bottom:685.120000pt;}
.y375{bottom:685.120640pt;}
.y3ef{bottom:686.216000pt;}
.y155{bottom:688.960000pt;}
.y2ac{bottom:690.708000pt;}
.y7d{bottom:691.040000pt;}
.y1b6{bottom:692.800000pt;}
.y1b1{bottom:693.278400pt;}
.y121{bottom:694.872000pt;}
.y20b{bottom:695.041280pt;}
.y3d{bottom:695.644000pt;}
.y23e{bottom:695.664000pt;}
.y2fc{bottom:698.680000pt;}
.yf7{bottom:698.692000pt;}
.y374{bottom:700.000000pt;}
.y373{bottom:700.003520pt;}
.y3ee{bottom:702.860000pt;}
.y321{bottom:704.000000pt;}
.y1b0{bottom:704.637120pt;}
.y1b5{bottom:705.281280pt;}
.y154{bottom:705.440000pt;}
.y20a{bottom:706.400000pt;}
.y152{bottom:706.880000pt;}
.y2ab{bottom:707.352000pt;}
.y3b6{bottom:708.001440pt;}
.y3c{bottom:712.288000pt;}
.y23d{bottom:712.308000pt;}
.ycb{bottom:712.640000pt;}
.y372{bottom:714.722080pt;}
.y2fb{bottom:715.324000pt;}
.yf6{bottom:715.336000pt;}
.y1b4{bottom:716.640000pt;}
.y7a{bottom:716.960000pt;}
.y3ed{bottom:719.504000pt;}
.y120{bottom:719.508000pt;}
.y209{bottom:721.451200pt;}
.y153{bottom:722.080000pt;}
.y3b5{bottom:722.720000pt;}
.y3b4{bottom:722.720640pt;}
.y3b{bottom:728.932000pt;}
.y23c{bottom:728.952000pt;}
.y371{bottom:729.601440pt;}
.y78{bottom:729.920000pt;}
.yf5{bottom:731.980000pt;}
.y2aa{bottom:731.988000pt;}
.y31f{bottom:733.280000pt;}
.y208{bottom:734.090560pt;}
.y3ec{bottom:736.148000pt;}
.y11f{bottom:736.152000pt;}
.y150{bottom:737.440000pt;}
.y3b3{bottom:737.600000pt;}
.y3b2{bottom:737.601440pt;}
.y1ad{bottom:739.200000pt;}
.y2fa{bottom:739.960000pt;}
.y14f{bottom:741.920000pt;}
.y370{bottom:744.320000pt;}
.y3a{bottom:745.576000pt;}
.y207{bottom:745.607040pt;}
.y23b{bottom:745.752000pt;}
.y31e{bottom:746.240000pt;}
.yf4{bottom:748.624000pt;}
.y2a9{bottom:748.632000pt;}
.y31c{bottom:751.200000pt;}
.y3b1{bottom:752.320000pt;}
.y3eb{bottom:752.792000pt;}
.y11e{bottom:752.952000pt;}
.y1ac{bottom:753.761280pt;}
.yca{bottom:755.956000pt;}
.y2f9{bottom:756.604000pt;}
.y263{bottom:756.616000pt;}
.y206{bottom:756.808000pt;}
.y14e{bottom:758.560000pt;}
.y14c{bottom:759.840000pt;}
.y39{bottom:762.220000pt;}
.y23a{bottom:762.396000pt;}
.y1ab{bottom:765.120000pt;}
.y2a8{bottom:765.276000pt;}
.y36f{bottom:767.201440pt;}
.y200{bottom:768.160000pt;}
.y74{bottom:768.800000pt;}
.y3ea{bottom:769.436000pt;}
.y11d{bottom:769.596000pt;}
.y1a6{bottom:771.201280pt;}
.yc9{bottom:772.600000pt;}
.y2f8{bottom:773.248000pt;}
.yf3{bottom:773.260000pt;}
.y14d{bottom:775.040000pt;}
.y3b0{bottom:775.201440pt;}
.y1aa{bottom:777.604480pt;}
.y38{bottom:778.864000pt;}
.y239{bottom:779.040000pt;}
.y31b{bottom:781.252000pt;}
.y2{bottom:781.661334pt;}
.y36e{bottom:781.920000pt;}
.y1a5{bottom:782.560000pt;}
.y1ff{bottom:782.720000pt;}
.y3e9{bottom:786.080000pt;}
.y1a9{bottom:788.963200pt;}
.yc8{bottom:789.244000pt;}
.y2f7{bottom:789.892000pt;}
.yf2{bottom:789.904000pt;}
.y2a7{bottom:789.912000pt;}
.y3af{bottom:789.920000pt;}
.y3ae{bottom:789.920640pt;}
.y11c{bottom:794.232000pt;}
.y71{bottom:794.720000pt;}
.y14b{bottom:795.040000pt;}
.y1fe{bottom:795.041600pt;}
.y37{bottom:795.508000pt;}
.y36d{bottom:796.802080pt;}
.y262{bottom:797.896000pt;}
.y1a8{bottom:800.164160pt;}
.y3ad{bottom:804.800000pt;}
.y3ac{bottom:804.803520pt;}
.yc7{bottom:805.888000pt;}
.yf1{bottom:806.548000pt;}
.y2a6{bottom:806.556000pt;}
.y1fd{bottom:806.558080pt;}
.y3e8{bottom:810.082720pt;}
.y11b{bottom:810.876000pt;}
.y1a7{bottom:811.365120pt;}
.y36c{bottom:811.520640pt;}
.y14a{bottom:811.680000pt;}
.y36{bottom:812.152000pt;}
.y238{bottom:812.320000pt;}
.y148{bottom:812.960000pt;}
.y2f6{bottom:814.528000pt;}
.y261{bottom:814.540000pt;}
.y1fc{bottom:819.039680pt;}
.y3ab{bottom:819.522080pt;}
.y6e{bottom:820.640000pt;}
.yc6{bottom:822.532000pt;}
.y1a4{bottom:822.720000pt;}
.yf0{bottom:823.192000pt;}
.y2a5{bottom:823.200000pt;}
.y36b{bottom:826.400000pt;}
.y3e7{bottom:827.360000pt;}
.y11a{bottom:827.520000pt;}
.y149{bottom:828.160000pt;}
.y35{bottom:828.952000pt;}
.y237{bottom:829.599040pt;}
.y1fb{bottom:830.398400pt;}
.y2f5{bottom:831.172000pt;}
.y260{bottom:831.184000pt;}
.y6c{bottom:833.600000pt;}
.y3aa{bottom:834.401440pt;}
.y1a3{bottom:837.280000pt;}
.yc5{bottom:839.176000pt;}
.y236{bottom:840.800000pt;}
.y1fa{bottom:842.880000pt;}
.y147{bottom:843.520000pt;}
.y34{bottom:845.596000pt;}
.y6a{bottom:846.560000pt;}
.y2f4{bottom:847.816000pt;}
.yef{bottom:847.828000pt;}
.y2a4{bottom:847.840000pt;}
.y146{bottom:848.160000pt;}
.y196{bottom:849.120000pt;}
.y36a{bottom:849.120640pt;}
.y1a2{bottom:849.757440pt;}
.y119{bottom:852.156000pt;}
.y234{bottom:853.440000pt;}
.y1f9{bottom:854.238720pt;}
.y19e{bottom:854.880000pt;}
.yc4{bottom:855.820000pt;}
.y1{bottom:859.312000pt;}
.y68{bottom:859.520000pt;}
.y1a1{bottom:861.273920pt;}
.y33{bottom:862.240000pt;}
.y235{bottom:863.680000pt;}
.y369{bottom:864.000000pt;}
.yee{bottom:864.628000pt;}
.y145{bottom:864.640000pt;}
.y143{bottom:866.080000pt;}
.y1f8{bottom:866.720320pt;}
.y118{bottom:868.800000pt;}
.y233{bottom:869.280000pt;}
.y3a9{bottom:872.001440pt;}
.y1a0{bottom:872.474880pt;}
.yc3{bottom:872.620000pt;}
.y1f7{bottom:878.079040pt;}
.y368{bottom:878.720000pt;}
.y286{bottom:881.272000pt;}
.y144{bottom:881.280000pt;}
.y19f{bottom:883.675840pt;}
.y3a8{bottom:886.720000pt;}
.y3a7{bottom:886.720640pt;}
.y232{bottom:888.000000pt;}
.yc2{bottom:889.264000pt;}
.y1f6{bottom:890.560640pt;}
.y32{bottom:893.120000pt;}
.y198{bottom:895.040000pt;}
.y13f{bottom:896.640000pt;}
.y285{bottom:897.916000pt;}
.y117{bottom:899.840000pt;}
.y141{bottom:901.280000pt;}
.y367{bottom:901.600000pt;}
.y3a6{bottom:901.600640pt;}
.y1f5{bottom:901.919360pt;}
.yc1{bottom:905.908000pt;}
.y2a3{bottom:905.920000pt;}
.y19d{bottom:909.600000pt;}
.y231{bottom:911.840000pt;}
.y1f4{bottom:914.400960pt;}
.y366{bottom:916.480000pt;}
.y3e6{bottom:916.481440pt;}
.y140{bottom:917.760000pt;}
.y13d{bottom:919.200000pt;}
.y19c{bottom:922.082560pt;}
.yc0{bottom:922.552000pt;}
.y2a2{bottom:922.560000pt;}
.y1f3{bottom:925.917440pt;}
.y197{bottom:927.044160pt;}
.y2f3{bottom:930.544000pt;}
.y3e5{bottom:931.200000pt;}
.y365{bottom:931.207040pt;}
.y19b{bottom:933.441280pt;}
.y5e{bottom:933.600000pt;}
.y13e{bottom:934.240000pt;}
.y31{bottom:936.299840pt;}
.y1f2{bottom:938.241280pt;}
.y284{bottom:939.196000pt;}
.y2a1{bottom:939.200000pt;}
.y3a5{bottom:939.200640pt;}
.y116{bottom:943.196000pt;}
.y19a{bottom:944.800000pt;}
.y364{bottom:946.086400pt;}
.ybf{bottom:947.188000pt;}
.y230{bottom:947.200000pt;}
.y1f1{bottom:949.757760pt;}
.y3a4{bottom:954.080000pt;}
.y3e2{bottom:954.083520pt;}
.y283{bottom:955.840000pt;}
.y115{bottom:959.840000pt;}
.y363{bottom:960.804960pt;}
.y1f0{bottom:960.958720pt;}
.y30{bottom:962.069920pt;}
.y13c{bottom:963.040000pt;}
.ybe{bottom:963.832000pt;}
.y22f{bottom:963.840000pt;}
.y194{bottom:968.640000pt;}
.y3e4{bottom:968.800000pt;}
.y3a3{bottom:968.802080pt;}
.y1ef{bottom:973.600000pt;}
.ybd{bottom:980.476000pt;}
.y22e{bottom:980.480000pt;}
.y3e3{bottom:983.680000pt;}
.y362{bottom:983.681440pt;}
.y2f{bottom:987.840000pt;}
.y13b{bottom:994.400000pt;}
.y60{bottom:997.120000pt;}
.y361{bottom:998.400000pt;}
.y1ee{bottom:999.840000pt;}
.y2b{bottom:1027.200000pt;}
.y2a{bottom:1029.120000pt;}
.y28{bottom:1030.400000pt;}
.y26{bottom:1046.240000pt;}
.y25{bottom:1054.400000pt;}
.y23{bottom:1065.920000pt;}
.he{height:4.190000pt;}
.h9{height:11.358667pt;}
.h26{height:13.920000pt;}
.hd{height:15.198667pt;}
.h36{height:16.480000pt;}
.h34{height:16.481333pt;}
.h35{height:16.640000pt;}
.h39{height:17.280000pt;}
.h37{height:17.440000pt;}
.hf{height:19.200000pt;}
.h2f{height:19.360000pt;}
.hc{height:19.680000pt;}
.h10{height:26.187500pt;}
.h32{height:27.840000pt;}
.h19{height:28.202500pt;}
.h7{height:28.560000pt;}
.hb{height:30.377500pt;}
.h24{height:33.315824pt;}
.h3d{height:35.091250pt;}
.h1e{height:35.404688pt;}
.h16{height:35.887500pt;}
.h2b{height:36.480000pt;}
.h3e{height:36.989425pt;}
.ha{height:37.138125pt;}
.h1c{height:38.387500pt;}
.h1b{height:39.147021pt;}
.h1a{height:39.281250pt;}
.h6{height:40.800000pt;}
.h23{height:42.394172pt;}
.h3{height:42.840000pt;}
.h3b{height:42.900937pt;}
.h25{height:44.437500pt;}
.h3c{height:45.221559pt;}
.h22{height:46.248326pt;}
.h2a{height:47.838667pt;}
.h13{height:48.023438pt;}
.h2{height:48.960000pt;}
.h3a{height:50.621148pt;}
.h38{height:51.356250pt;}
.h1d{height:52.320000pt;}
.h20{height:52.480000pt;}
.h1f{height:52.481333pt;}
.h12{height:56.925000pt;}
.h33{height:59.521485pt;}
.h2c{height:60.320000pt;}
.h5{height:69.360000pt;}
.h27{height:71.520000pt;}
.h28{height:71.680000pt;}
.h14{height:75.520000pt;}
.h29{height:82.880000pt;}
.h11{height:85.161563pt;}
.h18{height:103.840000pt;}
.h4{height:105.826671pt;}
.h17{height:113.600000pt;}
.h2d{height:159.680000pt;}
.h2e{height:193.600000pt;}
.h30{height:203.520000pt;}
.h31{height:298.241333pt;}
.h21{height:386.669333pt;}
.h15{height:633.760000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:84.480000pt;}
.w8{width:91.840000pt;}
.w11{width:93.440000pt;}
.wd{width:104.000000pt;}
.w9{width:169.920000pt;}
.w15{width:213.280000pt;}
.w18{width:216.641333pt;}
.w17{width:217.440000pt;}
.wb{width:311.680000pt;}
.w16{width:320.160000pt;}
.wf{width:320.321333pt;}
.w6{width:329.760000pt;}
.w5{width:349.440000pt;}
.w4{width:349.760000pt;}
.wc{width:367.520000pt;}
.wa{width:367.840000pt;}
.w10{width:375.002667pt;}
.w13{width:461.921333pt;}
.w2{width:566.928019pt;}
.we{width:575.838667pt;}
.w7{width:588.000000pt;}
.w14{width:641.760000pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x59{left:1.920000pt;}
.x40{left:3.520000pt;}
.x47{left:4.800000pt;}
.x3b{left:10.240000pt;}
.x31{left:12.960000pt;}
.x34{left:14.039333pt;}
.x4a{left:16.960000pt;}
.x6{left:18.720000pt;}
.x33{left:30.755733pt;}
.x48{left:32.480000pt;}
.x4d{left:36.160000pt;}
.x26{left:40.320000pt;}
.x58{left:51.520000pt;}
.x5{left:56.640000pt;}
.xc{left:57.600000pt;}
.xa{left:75.520000pt;}
.x2c{left:77.440000pt;}
.x1a{left:78.400000pt;}
.xf{left:80.480000pt;}
.x2f{left:83.200000pt;}
.x22{left:84.160000pt;}
.x50{left:85.920000pt;}
.x52{left:88.480000pt;}
.x1{left:90.706667pt;}
.x3e{left:92.800000pt;}
.x2{left:94.486667pt;}
.x51{left:96.480000pt;}
.x24{left:98.560000pt;}
.x15{left:102.560000pt;}
.x2b{left:103.840000pt;}
.xe{left:110.080000pt;}
.x21{left:116.320000pt;}
.x20{left:118.560000pt;}
.x1b{left:121.280000pt;}
.x4f{left:135.040000pt;}
.x84{left:137.440000pt;}
.x1e{left:139.360000pt;}
.x19{left:145.600000pt;}
.x56{left:149.920000pt;}
.x14{left:151.520000pt;}
.x57{left:152.480000pt;}
.x55{left:153.440000pt;}
.x11{left:155.520000pt;}
.x35{left:157.908533pt;}
.x29{left:160.640000pt;}
.x12{left:165.280000pt;}
.x23{left:166.880000pt;}
.x36{left:168.193600pt;}
.x80{left:169.280000pt;}
.x3a{left:170.400000pt;}
.x10{left:172.000000pt;}
.x18{left:174.400000pt;}
.x17{left:176.960000pt;}
.x4{left:180.874667pt;}
.x44{left:183.195520pt;}
.x3d{left:185.760000pt;}
.x16{left:188.000000pt;}
.x85{left:189.120000pt;}
.x1d{left:192.000000pt;}
.x42{left:194.240000pt;}
.x13{left:195.360000pt;}
.x46{left:196.316160pt;}
.x43{left:197.917760pt;}
.x45{left:199.036480pt;}
.x7f{left:200.000000pt;}
.x3f{left:201.440960pt;}
.x1f{left:209.120000pt;}
.x63{left:211.680000pt;}
.x61{left:227.200000pt;}
.x1c{left:230.720000pt;}
.x7b{left:236.640000pt;}
.x64{left:239.360000pt;}
.x67{left:243.840000pt;}
.x65{left:245.920000pt;}
.x7c{left:249.120000pt;}
.x86{left:253.760000pt;}
.x3c{left:255.520000pt;}
.xd{left:258.080000pt;}
.x41{left:259.040000pt;}
.x49{left:272.477440pt;}
.x66{left:275.520000pt;}
.x27{left:278.560000pt;}
.x5d{left:281.120000pt;}
.x2d{left:283.520000pt;}
.x7d{left:289.120000pt;}
.x4c{left:291.680000pt;}
.x7e{left:295.680000pt;}
.x5a{left:300.800000pt;}
.x81{left:301.920000pt;}
.x62{left:307.520000pt;}
.x82{left:308.480000pt;}
.x5e{left:311.520000pt;}
.x83{left:314.400000pt;}
.x78{left:317.600000pt;}
.x79{left:324.160000pt;}
.x9{left:329.760000pt;}
.x7a{left:336.000000pt;}
.x53{left:339.040000pt;}
.x87{left:342.720000pt;}
.x5f{left:345.600000pt;}
.x5c{left:348.640000pt;}
.x60{left:354.880000pt;}
.x4e{left:364.320000pt;}
.x88{left:365.920000pt;}
.x28{left:367.520000pt;}
.x25{left:368.640000pt;}
.x2e{left:389.920000pt;}
.x30{left:397.120000pt;}
.x2a{left:399.360000pt;}
.x3{left:404.408000pt;}
.x8{left:406.400000pt;}
.x32{left:432.320000pt;}
.x68{left:434.722240pt;}
.x99{left:464.480000pt;}
.x54{left:467.040000pt;}
.x9a{left:471.040000pt;}
.x9d{left:480.640000pt;}
.x9b{left:482.880000pt;}
.x6d{left:484.960000pt;}
.x6e{left:491.520000pt;}
.xa0{left:496.640000pt;}
.x5b{left:500.800000pt;}
.x9c{left:501.760000pt;}
.x6f{left:503.360000pt;}
.x38{left:518.080000pt;}
.xa3{left:527.680000pt;}
.x8e{left:530.720000pt;}
.x4b{left:533.440000pt;}
.x8f{left:540.800000pt;}
.x94{left:543.680000pt;}
.x70{left:568.320000pt;}
.x69{left:576.160000pt;}
.x90{left:578.720000pt;}
.x37{left:584.800000pt;}
.x8c{left:586.240000pt;}
.x9e{left:590.560000pt;}
.x9f{left:594.400000pt;}
.x89{left:596.320000pt;}
.xa1{left:600.160000pt;}
.x8a{left:602.880000pt;}
.x74{left:604.000000pt;}
.xa2{left:606.720000pt;}
.x95{left:611.360000pt;}
.x8b{left:614.560000pt;}
.x96{left:617.920000pt;}
.x6a{left:620.000000pt;}
.x39{left:627.200000pt;}
.x97{left:629.760000pt;}
.x6b{left:632.480000pt;}
.x8d{left:637.600000pt;}
.x6c{left:640.320000pt;}
.xb{left:644.640000pt;}
.x98{left:648.320000pt;}
.x91{left:650.240000pt;}
.x92{left:653.600000pt;}
.xa4{left:658.400000pt;}
.x93{left:659.520000pt;}
.xa5{left:664.960000pt;}
.xa6{left:670.880000pt;}
.x71{left:678.240000pt;}
.x75{left:681.920000pt;}
.x72{left:684.800000pt;}
.x76{left:688.480000pt;}
.x73{left:696.640000pt;}
.x77{left:700.160000pt;}
.x7{left:718.240000pt;}
}




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