
    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_a67d9f0e640185b467e8c76e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_c28393f988e2effcc3ef0435.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_3764ed6552f8a8998d017e65.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.575600px;}
.lsc8{letter-spacing:-3.628350px;}
.lsc5{letter-spacing:-3.450150px;}
.lsc9{letter-spacing:-3.390750px;}
.ls97{letter-spacing:-3.148200px;}
.ls8f{letter-spacing:-2.791800px;}
.ls9f{letter-spacing:-2.489850px;}
.lsb6{letter-spacing:-1.927200px;}
.lsb5{letter-spacing:-1.867800px;}
.lsb1{letter-spacing:-1.788600px;}
.lsc3{letter-spacing:-1.636800px;}
.ls22{letter-spacing:-1.623600px;}
.ls77{letter-spacing:-1.570800px;}
.lsa1{letter-spacing:-1.564200px;}
.lsa3{letter-spacing:-1.557600px;}
.ls93{letter-spacing:-1.511400px;}
.ls9c{letter-spacing:-1.504800px;}
.ls8b{letter-spacing:-1.445400px;}
.ls92{letter-spacing:-1.386000px;}
.ls38{letter-spacing:-1.326600px;}
.ls9d{letter-spacing:-1.267200px;}
.ls56{letter-spacing:-1.207800px;}
.ls85{letter-spacing:-1.204200px;}
.lsec{letter-spacing:-1.152000px;}
.ls28{letter-spacing:-1.148400px;}
.lseb{letter-spacing:-1.146000px;}
.ls6a{letter-spacing:-1.144800px;}
.lsea{letter-spacing:-1.143000px;}
.lsa2{letter-spacing:-1.138500px;}
.lsbe{letter-spacing:-1.122000px;}
.ls35{letter-spacing:-1.095600px;}
.ls9a{letter-spacing:-1.089000px;}
.ls99{letter-spacing:-1.082400px;}
.ls91{letter-spacing:-1.036200px;}
.lsed{letter-spacing:-1.035000px;}
.ls29{letter-spacing:-1.029600px;}
.lse{letter-spacing:-1.026000px;}
.ls55{letter-spacing:-1.023000px;}
.ls7e{letter-spacing:-0.970200px;}
.lsba{letter-spacing:-0.966600px;}
.lsd5{letter-spacing:-0.966000px;}
.ls6e{letter-spacing:-0.963600px;}
.lsd4{letter-spacing:-0.958500px;}
.lsae{letter-spacing:-0.957000px;}
.lsbb{letter-spacing:-0.917400px;}
.ls5f{letter-spacing:-0.910800px;}
.ls37{letter-spacing:-0.904200px;}
.lsbf{letter-spacing:-0.897600px;}
.ls5e{letter-spacing:-0.844800px;}
.ls7d{letter-spacing:-0.792000px;}
.ls36{letter-spacing:-0.785400px;}
.ls4b{letter-spacing:-0.783000px;}
.ls82{letter-spacing:-0.739200px;}
.ls95{letter-spacing:-0.732600px;}
.ls53{letter-spacing:-0.726000px;}
.lsb0{letter-spacing:-0.719400px;}
.ls78{letter-spacing:-0.673200px;}
.ls24{letter-spacing:-0.666600px;}
.lsa6{letter-spacing:-0.664200px;}
.lsb{letter-spacing:-0.638400px;}
.ls70{letter-spacing:-0.613800px;}
.lse5{letter-spacing:-0.612000px;}
.lsb9{letter-spacing:-0.610200px;}
.lse6{letter-spacing:-0.607500px;}
.ls6f{letter-spacing:-0.607200px;}
.lse7{letter-spacing:-0.606000px;}
.ls9e{letter-spacing:-0.600600px;}
.ls79{letter-spacing:-0.554400px;}
.ls20{letter-spacing:-0.547800px;}
.ls86{letter-spacing:-0.545400px;}
.ls8a{letter-spacing:-0.501600px;}
.ls90{letter-spacing:-0.495000px;}
.ls34{letter-spacing:-0.488400px;}
.ls61{letter-spacing:-0.486000px;}
.ls71{letter-spacing:-0.435600px;}
.ls33{letter-spacing:-0.429000px;}
.ls60{letter-spacing:-0.426600px;}
.ls7f{letter-spacing:-0.422400px;}
.lsb7{letter-spacing:-0.376200px;}
.ls49{letter-spacing:-0.369600px;}
.ls6b{letter-spacing:-0.367200px;}
.ls81{letter-spacing:-0.366300px;}
.ls67{letter-spacing:-0.363000px;}
.ls52{letter-spacing:-0.316800px;}
.ls47{letter-spacing:-0.310200px;}
.lsa{letter-spacing:-0.307800px;}
.ls46{letter-spacing:-0.303600px;}
.lsa4{letter-spacing:-0.302400px;}
.ls83{letter-spacing:-0.301950px;}
.lsca{letter-spacing:-0.297000px;}
.lsaa{letter-spacing:-0.257400px;}
.lsd6{letter-spacing:-0.252000px;}
.ls57{letter-spacing:-0.250800px;}
.lsa5{letter-spacing:-0.248400px;}
.lse8{letter-spacing:-0.247500px;}
.lsd7{letter-spacing:-0.246000px;}
.ls1e{letter-spacing:-0.244200px;}
.lsde{letter-spacing:-0.240000px;}
.lsdd{letter-spacing:-0.238500px;}
.lsc4{letter-spacing:-0.237600px;}
.lsdf{letter-spacing:-0.234000px;}
.ls94{letter-spacing:-0.198000px;}
.ls5d{letter-spacing:-0.191400px;}
.ls88{letter-spacing:-0.189000px;}
.lse4{letter-spacing:-0.186000px;}
.ls32{letter-spacing:-0.184800px;}
.ls62{letter-spacing:-0.183600px;}
.lse3{letter-spacing:-0.180000px;}
.lsb2{letter-spacing:-0.178200px;}
.lse2{letter-spacing:-0.175500px;}
.ls98{letter-spacing:-0.172800px;}
.ls45{letter-spacing:-0.132000px;}
.ls87{letter-spacing:-0.129600px;}
.ls26{letter-spacing:-0.125400px;}
.ls39{letter-spacing:-0.124200px;}
.lsb8{letter-spacing:-0.118800px;}
.lsab{letter-spacing:-0.079200px;}
.ls5c{letter-spacing:-0.072600px;}
.ls3b{letter-spacing:-0.070200px;}
.ls27{letter-spacing:-0.066000px;}
.ls4a{letter-spacing:-0.064800px;}
.lsaf{letter-spacing:-0.059400px;}
.ls7c{letter-spacing:-0.019800px;}
.ls8{letter-spacing:-0.016740px;}
.lsd{letter-spacing:-0.014880px;}
.lsdc{letter-spacing:-0.013500px;}
.ls25{letter-spacing:-0.013200px;}
.lsda{letter-spacing:-0.012000px;}
.ls10{letter-spacing:-0.011400px;}
.lsf{letter-spacing:-0.010800px;}
.ls4{letter-spacing:-0.010560px;}
.lse1{letter-spacing:-0.009000px;}
.ls6{letter-spacing:-0.007920px;}
.ls1d{letter-spacing:-0.006600px;}
.ls9{letter-spacing:-0.006270px;}
.lsd8{letter-spacing:-0.006000px;}
.ls7{letter-spacing:-0.005940px;}
.ls3a{letter-spacing:-0.005400px;}
.lsc{letter-spacing:-0.005280px;}
.ls2a{letter-spacing:-0.004800px;}
.lsd9{letter-spacing:-0.004500px;}
.ls5{letter-spacing:0.000000px;}
.lsd3{letter-spacing:0.004500px;}
.lse9{letter-spacing:0.009000px;}
.ls84{letter-spacing:0.016200px;}
.ls2f{letter-spacing:0.030000px;}
.ls66{letter-spacing:0.046200px;}
.lsb4{letter-spacing:0.048600px;}
.ls2b{letter-spacing:0.052800px;}
.ls43{letter-spacing:0.054000px;}
.ls89{letter-spacing:0.059400px;}
.lsa7{letter-spacing:0.105600px;}
.lsc1{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.112200px;}
.ls44{letter-spacing:0.113400px;}
.ls50{letter-spacing:0.118800px;}
.lsd2{letter-spacing:0.162000px;}
.ls3c{letter-spacing:0.165000px;}
.lsd1{letter-spacing:0.166500px;}
.ls19{letter-spacing:0.171600px;}
.lsc2{letter-spacing:0.172800px;}
.ls74{letter-spacing:0.178200px;}
.lsd0{letter-spacing:0.180000px;}
.ls65{letter-spacing:0.210000px;}
.lsbd{letter-spacing:0.224400px;}
.ls18{letter-spacing:0.231000px;}
.ls6d{letter-spacing:0.232200px;}
.ls6c{letter-spacing:0.237600px;}
.ls2{letter-spacing:0.274170px;}
.ls80{letter-spacing:0.277200px;}
.ls48{letter-spacing:0.283800px;}
.ls42{letter-spacing:0.290400px;}
.lsc6{letter-spacing:0.291600px;}
.ls5b{letter-spacing:0.297000px;}
.ls4e{letter-spacing:0.330000px;}
.lsc7{letter-spacing:0.343200px;}
.ls31{letter-spacing:0.345600px;}
.ls2d{letter-spacing:0.349800px;}
.ls1f{letter-spacing:0.356400px;}
.ls3{letter-spacing:0.356940px;}
.ls16{letter-spacing:0.363000px;}
.lsdb{letter-spacing:0.373500px;}
.ls41{letter-spacing:0.402600px;}
.ls14{letter-spacing:0.409200px;}
.ls0{letter-spacing:0.415530px;}
.ls3d{letter-spacing:0.415800px;}
.ls12{letter-spacing:0.468600px;}
.ls11{letter-spacing:0.475200px;}
.ls8c{letter-spacing:0.528000px;}
.ls40{letter-spacing:0.534600px;}
.ls72{letter-spacing:0.570000px;}
.ls96{letter-spacing:0.580800px;}
.ls76{letter-spacing:0.587400px;}
.ls13{letter-spacing:0.594000px;}
.ls73{letter-spacing:0.646800px;}
.ls30{letter-spacing:0.653400px;}
.lsa9{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.706200px;}
.ls3e{letter-spacing:0.712800px;}
.ls69{letter-spacing:0.765600px;}
.ls4f{letter-spacing:0.772200px;}
.ls7a{letter-spacing:0.825000px;}
.ls51{letter-spacing:0.831600px;}
.ls1a{letter-spacing:0.891000px;}
.ls17{letter-spacing:0.897600px;}
.ls8d{letter-spacing:0.950400px;}
.ls1{letter-spacing:0.951330px;}
.ls8e{letter-spacing:0.957000px;}
.ls58{letter-spacing:1.003200px;}
.ls23{letter-spacing:1.009800px;}
.lsce{letter-spacing:1.014000px;}
.ls75{letter-spacing:1.016400px;}
.lse0{letter-spacing:1.020000px;}
.lsa8{letter-spacing:1.023000px;}
.ls1b{letter-spacing:1.069200px;}
.ls4d{letter-spacing:1.075800px;}
.ls54{letter-spacing:1.082400px;}
.ls5a{letter-spacing:1.135200px;}
.ls64{letter-spacing:1.181400px;}
.lsc0{letter-spacing:1.188000px;}
.lsac{letter-spacing:1.193400px;}
.lscf{letter-spacing:1.194000px;}
.ls21{letter-spacing:1.194600px;}
.ls3f{letter-spacing:1.247400px;}
.ls2e{letter-spacing:1.254000px;}
.ls9b{letter-spacing:1.300200px;}
.lsa0{letter-spacing:1.306800px;}
.ls7b{letter-spacing:1.313400px;}
.ls4c{letter-spacing:1.372800px;}
.lsbc{letter-spacing:1.432200px;}
.lscb{letter-spacing:1.440000px;}
.lsb3{letter-spacing:1.491600px;}
.lscd{letter-spacing:1.494000px;}
.lscc{letter-spacing:1.500000px;}
.ls1c{letter-spacing:1.617000px;}
.ls68{letter-spacing:1.669800px;}
.ls63{letter-spacing:1.676400px;}
.lsad{letter-spacing:1.733400px;}
.ls59{letter-spacing:15.150000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc7{word-spacing:-16.849800px;}
.wsd5{word-spacing:-16.816800px;}
.wsba{word-spacing:-16.790400px;}
.ws70{word-spacing:-16.731000px;}
.ws7e{word-spacing:-16.493400px;}
.wsc4{word-spacing:-16.486800px;}
.wsd6{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.665530px;}
.ws0{word-spacing:-14.528730px;}
.ws2{word-spacing:-14.524170px;}
.ws4{word-spacing:-14.238600px;}
.ws3{word-spacing:-13.896600px;}
.ws5c{word-spacing:-13.489200px;}
.ws92{word-spacing:-12.493800px;}
.ws34{word-spacing:-12.375000px;}
.ws94{word-spacing:-12.295800px;}
.wsc0{word-spacing:-12.256200px;}
.ws93{word-spacing:-12.073050px;}
.ws91{word-spacing:-12.008700px;}
.wse1{word-spacing:-11.416500px;}
.wseb{word-spacing:-11.259000px;}
.wse3{word-spacing:-11.250000px;}
.wsd9{word-spacing:-11.245500px;}
.wse0{word-spacing:-11.241000px;}
.wsac{word-spacing:-11.236500px;}
.wse5{word-spacing:-11.070000px;}
.wse6{word-spacing:-11.061000px;}
.wsdc{word-spacing:-11.011500px;}
.wsea{word-spacing:-11.002500px;}
.wsd8{word-spacing:-10.998000px;}
.wse7{word-spacing:-10.642500px;}
.wsd7{word-spacing:-10.291500px;}
.wsfe{word-spacing:-10.215000px;}
.wsec{word-spacing:-10.107000px;}
.wsab{word-spacing:-9.885150px;}
.ws9e{word-spacing:-9.583200px;}
.wsa6{word-spacing:-9.226800px;}
.wsd3{word-spacing:-8.984250px;}
.wsd0{word-spacing:-8.924850px;}
.wsd2{word-spacing:-8.746650px;}
.ws17{word-spacing:-0.838200px;}
.ws81{word-spacing:-0.831600px;}
.wsbb{word-spacing:-0.785400px;}
.ws2d{word-spacing:-0.778800px;}
.ws1c{word-spacing:-0.772200px;}
.wsb8{word-spacing:-0.765600px;}
.ws15{word-spacing:-0.719400px;}
.wsfa{word-spacing:-0.714000px;}
.ws48{word-spacing:-0.712800px;}
.ws90{word-spacing:-0.706200px;}
.ws25{word-spacing:-0.660000px;}
.ws6f{word-spacing:-0.658800px;}
.ws6b{word-spacing:-0.653400px;}
.ws49{word-spacing:-0.600600px;}
.wsf8{word-spacing:-0.600000px;}
.ws59{word-spacing:-0.599400px;}
.ws46{word-spacing:-0.594000px;}
.wsb5{word-spacing:-0.587400px;}
.wsf7{word-spacing:-0.570000px;}
.wsd4{word-spacing:-0.547800px;}
.ws4a{word-spacing:-0.541200px;}
.ws43{word-spacing:-0.540000px;}
.ws69{word-spacing:-0.534600px;}
.ws4d{word-spacing:-0.528000px;}
.wsa7{word-spacing:-0.486000px;}
.ws5e{word-spacing:-0.481800px;}
.ws87{word-spacing:-0.480600px;}
.ws51{word-spacing:-0.475200px;}
.wsee{word-spacing:-0.474000px;}
.ws9b{word-spacing:-0.469800px;}
.ws68{word-spacing:-0.468600px;}
.wsf1{word-spacing:-0.450000px;}
.wscc{word-spacing:-0.426600px;}
.ws2c{word-spacing:-0.422400px;}
.wsbe{word-spacing:-0.421200px;}
.ws50{word-spacing:-0.415800px;}
.ws7c{word-spacing:-0.409200px;}
.ws16{word-spacing:-0.363000px;}
.ws9a{word-spacing:-0.361800px;}
.ws3b{word-spacing:-0.356400px;}
.wsb4{word-spacing:-0.349800px;}
.ws9d{word-spacing:-0.343200px;}
.wscb{word-spacing:-0.303600px;}
.wsd{word-spacing:-0.302400px;}
.ws3c{word-spacing:-0.297000px;}
.ws6a{word-spacing:-0.290400px;}
.ws97{word-spacing:-0.283800px;}
.wsca{word-spacing:-0.244200px;}
.ws6e{word-spacing:-0.237600px;}
.ws8b{word-spacing:-0.231000px;}
.wsb9{word-spacing:-0.224400px;}
.ws96{word-spacing:-0.184800px;}
.ws26{word-spacing:-0.178200px;}
.ws61{word-spacing:-0.171600px;}
.ws8a{word-spacing:-0.165000px;}
.ws9{word-spacing:-0.120270px;}
.wsf9{word-spacing:-0.120000px;}
.ws6d{word-spacing:-0.118800px;}
.wsc1{word-spacing:-0.113400px;}
.wsa3{word-spacing:-0.112200px;}
.wsff{word-spacing:-0.060000px;}
.ws14{word-spacing:-0.059400px;}
.ws29{word-spacing:-0.052800px;}
.wsa9{word-spacing:-0.046200px;}
.wsa0{word-spacing:-0.006600px;}
.wsfc{word-spacing:-0.006000px;}
.ws5{word-spacing:0.000000px;}
.ws33{word-spacing:0.004800px;}
.ws98{word-spacing:0.005400px;}
.wsf{word-spacing:0.005940px;}
.wsef{word-spacing:0.006000px;}
.wsb{word-spacing:0.006270px;}
.ws63{word-spacing:0.006600px;}
.ws6{word-spacing:0.007920px;}
.ws7{word-spacing:0.010800px;}
.ws11{word-spacing:0.011400px;}
.wsde{word-spacing:0.012000px;}
.ws95{word-spacing:0.013200px;}
.wsf5{word-spacing:0.030000px;}
.ws32{word-spacing:0.052800px;}
.ws1f{word-spacing:0.059400px;}
.wsf6{word-spacing:0.060000px;}
.ws6c{word-spacing:0.066000px;}
.wse{word-spacing:0.113940px;}
.ws5a{word-spacing:0.118800px;}
.ws66{word-spacing:0.125400px;}
.ws88{word-spacing:0.171600px;}
.ws52{word-spacing:0.178200px;}
.wsed{word-spacing:0.180000px;}
.ws31{word-spacing:0.184800px;}
.wsc5{word-spacing:0.231000px;}
.ws5d{word-spacing:0.237600px;}
.ws100{word-spacing:0.240000px;}
.ws18{word-spacing:0.244200px;}
.ws3f{word-spacing:0.250800px;}
.wsc6{word-spacing:0.277200px;}
.ws37{word-spacing:0.297000px;}
.wsf3{word-spacing:0.300000px;}
.wsc2{word-spacing:0.302400px;}
.ws35{word-spacing:0.303600px;}
.wsae{word-spacing:0.310200px;}
.ws7f{word-spacing:0.356400px;}
.wsfb{word-spacing:0.360000px;}
.wsc{word-spacing:0.361800px;}
.ws30{word-spacing:0.363000px;}
.wsad{word-spacing:0.409200px;}
.ws39{word-spacing:0.415800px;}
.ws85{word-spacing:0.422400px;}
.wsaa{word-spacing:0.468600px;}
.ws71{word-spacing:0.475200px;}
.wsf2{word-spacing:0.480000px;}
.ws79{word-spacing:0.480600px;}
.ws42{word-spacing:0.481800px;}
.wsa5{word-spacing:0.488400px;}
.ws60{word-spacing:0.528000px;}
.ws53{word-spacing:0.534600px;}
.ws99{word-spacing:0.540000px;}
.ws1a{word-spacing:0.541200px;}
.wsa4{word-spacing:0.547800px;}
.wsb3{word-spacing:0.587400px;}
.ws5f{word-spacing:0.594000px;}
.wsbd{word-spacing:0.599400px;}
.ws24{word-spacing:0.600600px;}
.ws67{word-spacing:0.607200px;}
.wsbf{word-spacing:0.646800px;}
.ws89{word-spacing:0.653400px;}
.wsb0{word-spacing:0.658800px;}
.ws3d{word-spacing:0.660000px;}
.wsc8{word-spacing:0.666600px;}
.ws44{word-spacing:0.718200px;}
.ws2f{word-spacing:0.719400px;}
.ws75{word-spacing:0.726000px;}
.ws28{word-spacing:0.772200px;}
.ws65{word-spacing:0.777600px;}
.ws21{word-spacing:0.778800px;}
.ws56{word-spacing:0.785400px;}
.wsc9{word-spacing:0.792000px;}
.wsa2{word-spacing:0.831600px;}
.wsb2{word-spacing:0.837000px;}
.ws4b{word-spacing:0.838200px;}
.wsa1{word-spacing:0.844800px;}
.ws8{word-spacing:0.894900px;}
.ws7a{word-spacing:0.896400px;}
.ws1e{word-spacing:0.897600px;}
.ws55{word-spacing:0.904200px;}
.wsb6{word-spacing:0.950400px;}
.ws10{word-spacing:0.955800px;}
.ws19{word-spacing:0.957000px;}
.ws2e{word-spacing:0.963600px;}
.ws45{word-spacing:0.966600px;}
.ws57{word-spacing:0.970200px;}
.ws8d{word-spacing:1.009800px;}
.ws23{word-spacing:1.016400px;}
.wscd{word-spacing:1.020600px;}
.ws76{word-spacing:1.023000px;}
.ws38{word-spacing:1.075800px;}
.ws7d{word-spacing:1.080000px;}
.ws64{word-spacing:1.082400px;}
.ws74{word-spacing:1.089000px;}
.ws2b{word-spacing:1.135200px;}
.ws84{word-spacing:1.141800px;}
.ws8f{word-spacing:1.148400px;}
.ws22{word-spacing:1.194600px;}
.wsd1{word-spacing:1.198800px;}
.ws82{word-spacing:1.201200px;}
.wscf{word-spacing:1.204200px;}
.ws78{word-spacing:1.207800px;}
.ws20{word-spacing:1.247400px;}
.wsaf{word-spacing:1.252800px;}
.ws72{word-spacing:1.254000px;}
.ws58{word-spacing:1.258200px;}
.ws27{word-spacing:1.260600px;}
.wsce{word-spacing:1.263600px;}
.ws4c{word-spacing:1.267200px;}
.ws54{word-spacing:1.313400px;}
.ws5b{word-spacing:1.317600px;}
.ws77{word-spacing:1.320000px;}
.ws9c{word-spacing:1.323000px;}
.ws4f{word-spacing:1.326600px;}
.wsf4{word-spacing:1.332000px;}
.ws9f{word-spacing:1.372800px;}
.wsa{word-spacing:1.379400px;}
.ws1d{word-spacing:1.386000px;}
.ws86{word-spacing:1.432200px;}
.ws2a{word-spacing:1.438800px;}
.wsfd{word-spacing:1.440000px;}
.ws4e{word-spacing:1.445400px;}
.ws1b{word-spacing:1.491600px;}
.ws47{word-spacing:1.498200px;}
.wse9{word-spacing:1.500000px;}
.ws62{word-spacing:1.504800px;}
.ws40{word-spacing:1.551000px;}
.ws3e{word-spacing:1.557600px;}
.ws83{word-spacing:1.564200px;}
.ws7b{word-spacing:1.610400px;}
.ws36{word-spacing:1.617000px;}
.ws41{word-spacing:1.623600px;}
.wsc3{word-spacing:1.656600px;}
.wsbc{word-spacing:1.663200px;}
.wsa8{word-spacing:1.669800px;}
.ws13{word-spacing:1.676400px;}
.ws3a{word-spacing:1.683000px;}
.ws8c{word-spacing:1.689600px;}
.wsf0{word-spacing:1.800000px;}
.ws80{word-spacing:1.973400px;}
.wsb7{word-spacing:2.105400px;}
.wse4{word-spacing:3.201000px;}
.wsdd{word-spacing:3.253500px;}
.wse2{word-spacing:3.801000px;}
.wsdf{word-spacing:4.425000px;}
.ws8e{word-spacing:4.679400px;}
.wsb1{word-spacing:4.983000px;}
.wse8{word-spacing:5.275500px;}
.wsdb{word-spacing:5.502000px;}
.wsda{word-spacing:7.803000px;}
.ws73{word-spacing:9.543600px;}
.ws12{word-spacing:35.702400px;}
._13{margin-left:-10.797000px;}
._f{margin-left:-8.698800px;}
._7{margin-left:-7.432800px;}
._5{margin-left:-5.481000px;}
._6{margin-left:-3.569400px;}
._2{margin-left:-2.230200px;}
._0{margin-left:-1.132800px;}
._1{width:1.747200px;}
._e{width:3.661200px;}
._11{width:6.426000px;}
._c{width:12.852000px;}
._10{width:21.151800px;}
._b{width:22.507200px;}
._d{width:23.522400px;}
._12{width:28.806000px;}
._14{width:29.946000px;}
._4{width:39.749400px;}
._3{width:48.279000px;}
._a{width:49.626000px;}
._9{width:831.465600px;}
._8{width:959.350200px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:32.552400px;}
.y2d5{bottom:33.625800px;}
.y22f{bottom:33.720900px;}
.y2a4{bottom:33.969000px;}
.y257{bottom:33.972000px;}
.y14a{bottom:33.973200px;}
.y1ba{bottom:33.974400px;}
.yd9{bottom:34.466400px;}
.y71{bottom:34.467000px;}
.y197{bottom:34.467750px;}
.yb2{bottom:34.468200px;}
.y13d{bottom:34.468800px;}
.y20e{bottom:34.469400px;}
.y2f6{bottom:34.470000px;}
.yf6{bottom:34.470300px;}
.y112{bottom:34.473000px;}
.y90{bottom:35.125800px;}
.y1fe{bottom:35.217150px;}
.y319{bottom:35.850000px;}
.y237{bottom:37.242000px;}
.y49{bottom:37.243650px;}
.y1d0{bottom:37.245300px;}
.y16e{bottom:37.246950px;}
.y2c0{bottom:37.258500px;}
.y1b8{bottom:37.265100px;}
.y27c{bottom:37.266750px;}
.y15{bottom:46.801650px;}
.y2d4{bottom:47.876400px;}
.y2a3{bottom:48.219600px;}
.y256{bottom:48.222600px;}
.y149{bottom:48.223800px;}
.y1b9{bottom:48.225000px;}
.yd8{bottom:48.717000px;}
.y70{bottom:48.717600px;}
.yb1{bottom:48.718800px;}
.y13c{bottom:48.719400px;}
.y20d{bottom:48.720000px;}
.yf5{bottom:48.720900px;}
.y111{bottom:48.722250px;}
.y8f{bottom:49.376400px;}
.y1fd{bottom:49.467750px;}
.y22e{bottom:50.971650px;}
.y318{bottom:51.600000px;}
.y236{bottom:54.492750px;}
.y48{bottom:54.494400px;}
.y1cf{bottom:54.496050px;}
.y16d{bottom:54.497700px;}
.y2bf{bottom:54.509250px;}
.y1b7{bottom:54.515850px;}
.y14{bottom:61.052250px;}
.y2d3{bottom:62.127000px;}
.y2a2{bottom:62.470200px;}
.y255{bottom:62.473200px;}
.y148{bottom:62.474400px;}
.y196{bottom:62.966250px;}
.yd7{bottom:62.967600px;}
.y6f{bottom:62.968200px;}
.yb0{bottom:62.969400px;}
.y13b{bottom:62.970000px;}
.yf4{bottom:62.971500px;}
.y8e{bottom:63.627000px;}
.y1fc{bottom:63.718350px;}
.y317{bottom:68.625000px;}
.y235{bottom:71.743500px;}
.y47{bottom:71.745150px;}
.y1ce{bottom:71.746800px;}
.y16c{bottom:71.748450px;}
.y2f5{bottom:71.754000px;}
.y2be{bottom:71.760000px;}
.y27b{bottom:71.764950px;}
.y1b6{bottom:71.766600px;}
.y13{bottom:75.301500px;}
.y2d2{bottom:76.377600px;}
.y2a1{bottom:76.720800px;}
.y254{bottom:76.723800px;}
.y147{bottom:76.725000px;}
.y195{bottom:77.215500px;}
.yd6{bottom:77.218200px;}
.y6e{bottom:77.218800px;}
.yaf{bottom:77.220000px;}
.yf3{bottom:77.220750px;}
.y8d{bottom:77.877600px;}
.y1fb{bottom:77.967600px;}
.y22d{bottom:78.841800px;}
.y316{bottom:84.375000px;}
.y234{bottom:88.994250px;}
.y46{bottom:88.995900px;}
.y1cd{bottom:88.997550px;}
.y16b{bottom:88.999200px;}
.y2f4{bottom:89.004750px;}
.y2bd{bottom:89.010750px;}
.y27a{bottom:89.014050px;}
.y1b5{bottom:89.017350px;}
.y12{bottom:89.550750px;}
.y2d1{bottom:90.628200px;}
.y2a0{bottom:90.971400px;}
.y253{bottom:90.974400px;}
.y194{bottom:91.464750px;}
.yd5{bottom:91.468800px;}
.y6d{bottom:91.469400px;}
.yf2{bottom:91.470000px;}
.y8c{bottom:92.128200px;}
.y1fa{bottom:92.218200px;}
.y20c{bottom:96.094200px;}
.y13a{bottom:97.623750px;}
.y315{bottom:101.400000px;}
.y11{bottom:103.800000px;}
.y2d0{bottom:104.878800px;}
.y29f{bottom:105.222000px;}
.y252{bottom:105.225000px;}
.y193{bottom:105.715350px;}
.yd4{bottom:105.719400px;}
.y6c{bottom:105.720000px;}
.y233{bottom:106.245000px;}
.y45{bottom:106.246650px;}
.y1cc{bottom:106.248300px;}
.y16a{bottom:106.249950px;}
.y2f3{bottom:106.255500px;}
.y2bc{bottom:106.261500px;}
.y279{bottom:106.264800px;}
.y1b4{bottom:106.268100px;}
.y2c2{bottom:106.273500px;}
.y8b{bottom:106.378800px;}
.y1f9{bottom:106.468800px;}
.y22c{bottom:113.102400px;}
.y20b{bottom:113.344950px;}
.y139{bottom:114.874500px;}
.y314{bottom:117.150000px;}
.y2cf{bottom:119.129400px;}
.y29e{bottom:119.472600px;}
.y192{bottom:119.965950px;}
.yd3{bottom:119.970000px;}
.y8a{bottom:120.629400px;}
.y1f8{bottom:120.719400px;}
.y232{bottom:123.495750px;}
.y44{bottom:123.497400px;}
.y1cb{bottom:123.499050px;}
.y169{bottom:123.500700px;}
.yae{bottom:123.502500px;}
.y2f2{bottom:123.506250px;}
.y2bb{bottom:123.512250px;}
.y278{bottom:123.515550px;}
.y146{bottom:123.518250px;}
.y2c1{bottom:123.524250px;}
.y22b{bottom:130.353150px;}
.y20a{bottom:130.595700px;}
.y138{bottom:132.125250px;}
.y2ce{bottom:133.380000px;}
.y29d{bottom:133.723200px;}
.y313{bottom:134.175000px;}
.y191{bottom:134.216550px;}
.y89{bottom:134.880000px;}
.y1f7{bottom:134.970000px;}
.y231{bottom:140.746500px;}
.y1f5{bottom:140.747250px;}
.y43{bottom:140.748150px;}
.y1ca{bottom:140.749800px;}
.y168{bottom:140.751450px;}
.yad{bottom:140.753250px;}
.y110{bottom:140.755500px;}
.y2f1{bottom:140.757000px;}
.y2ba{bottom:140.763000px;}
.y277{bottom:140.766300px;}
.yf1{bottom:140.767500px;}
.y1b3{bottom:140.767950px;}
.y145{bottom:140.769000px;}
.y6b{bottom:140.774250px;}
.y251{bottom:145.373250px;}
.y22a{bottom:147.603900px;}
.y209{bottom:147.846450px;}
.y29c{bottom:147.973800px;}
.y190{bottom:148.467150px;}
.y137{bottom:149.376000px;}
.y312{bottom:149.925000px;}
.y230{bottom:157.997250px;}
.y1f4{bottom:157.998000px;}
.y42{bottom:157.998900px;}
.y1c9{bottom:158.000550px;}
.y167{bottom:158.002200px;}
.yac{bottom:158.004000px;}
.y10f{bottom:158.006250px;}
.y2f0{bottom:158.007750px;}
.y2b9{bottom:158.013750px;}
.y276{bottom:158.017050px;}
.yf0{bottom:158.018250px;}
.y1b2{bottom:158.018700px;}
.y144{bottom:158.019750px;}
.y6a{bottom:158.022750px;}
.y2d7{bottom:158.023500px;}
.y2e5{bottom:160.494000px;}
.y29b{bottom:162.224400px;}
.yd2{bottom:162.619500px;}
.y250{bottom:162.624000px;}
.y18f{bottom:162.717750px;}
.y229{bottom:164.854650px;}
.y208{bottom:165.097200px;}
.y136{bottom:166.626750px;}
.y311{bottom:166.950000px;}
.y88{bottom:175.248000px;}
.y1f3{bottom:175.248750px;}
.y41{bottom:175.249650px;}
.y1c8{bottom:175.251300px;}
.y166{bottom:175.252950px;}
.yab{bottom:175.254750px;}
.y10e{bottom:175.257000px;}
.y2ef{bottom:175.258500px;}
.y2b8{bottom:175.264500px;}
.y2cd{bottom:175.267500px;}
.y275{bottom:175.267800px;}
.yef{bottom:175.269000px;}
.y1b1{bottom:175.269450px;}
.y143{bottom:175.270500px;}
.y69{bottom:175.273500px;}
.y2d6{bottom:175.274250px;}
.y29a{bottom:176.475000px;}
.y18e{bottom:176.968350px;}
.y2e4{bottom:177.744750px;}
.yd1{bottom:179.870250px;}
.y24f{bottom:179.874750px;}
.y228{bottom:182.105400px;}
.y207{bottom:182.347950px;}
.y310{bottom:182.700000px;}
.y135{bottom:183.877500px;}
.y18d{bottom:191.218950px;}
.y87{bottom:192.498750px;}
.y1f2{bottom:192.499500px;}
.y40{bottom:192.500400px;}
.y1c7{bottom:192.502050px;}
.y165{bottom:192.503700px;}
.yaa{bottom:192.505500px;}
.y10d{bottom:192.507750px;}
.y2ee{bottom:192.509250px;}
.y2b7{bottom:192.515250px;}
.y2cc{bottom:192.518250px;}
.y274{bottom:192.518550px;}
.yee{bottom:192.519750px;}
.y1b0{bottom:192.520200px;}
.y142{bottom:192.521250px;}
.y68{bottom:192.524250px;}
.y2e3{bottom:194.995500px;}
.yd0{bottom:197.121000px;}
.y24e{bottom:197.125500px;}
.y1c{bottom:199.215000px;}
.y227{bottom:199.356150px;}
.y206{bottom:199.598700px;}
.y30f{bottom:199.725000px;}
.y134{bottom:201.128250px;}
.y18c{bottom:205.469550px;}
.y86{bottom:209.749500px;}
.y1f1{bottom:209.750250px;}
.y3f{bottom:209.751150px;}
.y1c6{bottom:209.752800px;}
.y164{bottom:209.754450px;}
.y67{bottom:209.756100px;}
.ya9{bottom:209.756250px;}
.y10c{bottom:209.758500px;}
.y2ed{bottom:209.760000px;}
.y2b6{bottom:209.766000px;}
.y2cb{bottom:209.769000px;}
.y273{bottom:209.769300px;}
.yed{bottom:209.770500px;}
.y1af{bottom:209.770950px;}
.y141{bottom:209.772000px;}
.y2e2{bottom:212.246250px;}
.y19{bottom:214.214550px;}
.ycf{bottom:214.371750px;}
.y24d{bottom:214.376250px;}
.y30e{bottom:215.475000px;}
.y226{bottom:216.606900px;}
.y205{bottom:216.849450px;}
.y133{bottom:218.379000px;}
.y299{bottom:218.616600px;}
.y18b{bottom:219.718800px;}
.y1b{bottom:220.215225px;}
.y85{bottom:227.000250px;}
.y1f0{bottom:227.001000px;}
.y3e{bottom:227.001900px;}
.y1c5{bottom:227.003550px;}
.y163{bottom:227.005200px;}
.y66{bottom:227.006850px;}
.ya8{bottom:227.007000px;}
.y10b{bottom:227.009250px;}
.y2ec{bottom:227.010750px;}
.y2b5{bottom:227.016750px;}
.y2ca{bottom:227.019750px;}
.y272{bottom:227.020050px;}
.yec{bottom:227.021250px;}
.y1ae{bottom:227.021700px;}
.y140{bottom:227.022750px;}
.y2e1{bottom:229.497000px;}
.y30d{bottom:231.225150px;}
.yce{bottom:231.622500px;}
.y24c{bottom:231.627000px;}
.y225{bottom:233.857650px;}
.y18a{bottom:233.969400px;}
.y204{bottom:234.100200px;}
.y18{bottom:235.214775px;}
.y132{bottom:235.629750px;}
.y298{bottom:235.867350px;}
.y1a{bottom:241.215450px;}
.y84{bottom:244.251000px;}
.y1ef{bottom:244.251750px;}
.y3d{bottom:244.252650px;}
.y1c4{bottom:244.254300px;}
.y162{bottom:244.255950px;}
.y65{bottom:244.257600px;}
.ya7{bottom:244.257750px;}
.y10a{bottom:244.260000px;}
.y2eb{bottom:244.261500px;}
.y2c9{bottom:244.270500px;}
.y271{bottom:244.270800px;}
.yeb{bottom:244.272000px;}
.y1ad{bottom:244.272450px;}
.y13f{bottom:244.273500px;}
.y2e0{bottom:246.747750px;}
.y189{bottom:248.220000px;}
.y30c{bottom:248.250150px;}
.ycd{bottom:248.873250px;}
.y24b{bottom:248.877750px;}
.y224{bottom:251.108400px;}
.y203{bottom:251.350950px;}
.y131{bottom:252.880500px;}
.y2b4{bottom:252.892050px;}
.y297{bottom:253.118100px;}
.y17{bottom:256.215000px;}
.y83{bottom:261.501750px;}
.y1ee{bottom:261.502500px;}
.y3c{bottom:261.503400px;}
.y1c3{bottom:261.505050px;}
.y161{bottom:261.506700px;}
.y64{bottom:261.508350px;}
.ya6{bottom:261.508500px;}
.y109{bottom:261.510750px;}
.y2ea{bottom:261.512250px;}
.y2c8{bottom:261.521250px;}
.y270{bottom:261.521550px;}
.yea{bottom:261.522750px;}
.y1ac{bottom:261.523200px;}
.y13e{bottom:261.524250px;}
.y2df{bottom:263.998500px;}
.y30b{bottom:264.000000px;}
.ycc{bottom:266.124000px;}
.y24a{bottom:266.128500px;}
.y223{bottom:268.359150px;}
.y202{bottom:268.601700px;}
.y130{bottom:270.131250px;}
.y2b3{bottom:270.142800px;}
.y296{bottom:270.368850px;}
.y82{bottom:278.752500px;}
.y1ed{bottom:278.753250px;}
.y3b{bottom:278.754150px;}
.y1c2{bottom:278.755800px;}
.y160{bottom:278.757450px;}
.y63{bottom:278.759100px;}
.ya5{bottom:278.759250px;}
.y108{bottom:278.761500px;}
.y2e9{bottom:278.763000px;}
.y2c7{bottom:278.772000px;}
.y26f{bottom:278.772300px;}
.ye9{bottom:278.773500px;}
.y1ab{bottom:278.773950px;}
.y1d{bottom:280.215000px;}
.y30a{bottom:281.025000px;}
.y2de{bottom:281.249250px;}
.ycb{bottom:283.374750px;}
.y249{bottom:283.379250px;}
.y222{bottom:285.609900px;}
.y201{bottom:285.852450px;}
.y12f{bottom:287.382000px;}
.y295{bottom:287.619600px;}
.y81{bottom:296.003250px;}
.y1ec{bottom:296.004000px;}
.y3a{bottom:296.004900px;}
.y1c1{bottom:296.006550px;}
.y15f{bottom:296.008200px;}
.ya4{bottom:296.010000px;}
.y107{bottom:296.012250px;}
.y2e8{bottom:296.013750px;}
.y188{bottom:296.022000px;}
.y2c6{bottom:296.022750px;}
.y26e{bottom:296.023050px;}
.ye8{bottom:296.024250px;}
.y1aa{bottom:296.024700px;}
.y309{bottom:296.775000px;}
.y2dd{bottom:298.481550px;}
.y248{bottom:300.611700px;}
.yca{bottom:300.625500px;}
.y221{bottom:302.860650px;}
.y12e{bottom:304.632750px;}
.y62{bottom:304.634400px;}
.y294{bottom:304.870350px;}
.y200{bottom:311.607300px;}
.y80{bottom:313.254000px;}
.y1eb{bottom:313.254750px;}
.y39{bottom:313.255650px;}
.y1c0{bottom:313.257300px;}
.y15e{bottom:313.258950px;}
.ya3{bottom:313.260750px;}
.y106{bottom:313.263000px;}
.ye7{bottom:313.264500px;}
.y2b2{bottom:313.267200px;}
.y187{bottom:313.272750px;}
.y2c5{bottom:313.273500px;}
.y26d{bottom:313.273800px;}
.y1a9{bottom:313.275450px;}
.y308{bottom:313.800000px;}
.y2dc{bottom:315.732300px;}
.y247{bottom:317.862450px;}
.yc9{bottom:317.876250px;}
.y220{bottom:320.111400px;}
.y12d{bottom:321.883500px;}
.y293{bottom:322.121100px;}
.y7f{bottom:330.504750px;}
.y1ea{bottom:330.505500px;}
.y38{bottom:330.506400px;}
.y1bf{bottom:330.508050px;}
.y15d{bottom:330.509700px;}
.ya2{bottom:330.511500px;}
.y105{bottom:330.513750px;}
.ye6{bottom:330.515250px;}
.y2b1{bottom:330.517950px;}
.y186{bottom:330.523500px;}
.y2c4{bottom:330.524250px;}
.y26c{bottom:330.524550px;}
.y1a8{bottom:330.526200px;}
.y307{bottom:330.825000px;}
.y2db{bottom:332.983050px;}
.y246{bottom:335.113200px;}
.yc8{bottom:335.127000px;}
.y21f{bottom:337.362150px;}
.y12c{bottom:339.134250px;}
.y292{bottom:339.371850px;}
.y1ff{bottom:343.737750px;}
.y7e{bottom:347.755500px;}
.y1e9{bottom:347.756250px;}
.y37{bottom:347.757150px;}
.y61{bottom:347.758800px;}
.y15c{bottom:347.760450px;}
.ya1{bottom:347.762250px;}
.y104{bottom:347.764500px;}
.ye5{bottom:347.766000px;}
.y2b0{bottom:347.768700px;}
.y185{bottom:347.774250px;}
.y26b{bottom:347.775300px;}
.y1a7{bottom:347.776950px;}
.y306{bottom:347.850000px;}
.y2da{bottom:350.233800px;}
.y245{bottom:352.363950px;}
.yc7{bottom:352.377750px;}
.y21e{bottom:354.612900px;}
.y12b{bottom:356.385000px;}
.y291{bottom:356.622600px;}
.yf{bottom:360.240000px;}
.y305{bottom:363.600000px;}
.y7d{bottom:365.006250px;}
.y1e8{bottom:365.007000px;}
.y36{bottom:365.007900px;}
.y60{bottom:365.009550px;}
.y15b{bottom:365.011200px;}
.ya0{bottom:365.013000px;}
.y184{bottom:365.013750px;}
.y103{bottom:365.015250px;}
.ye4{bottom:365.016750px;}
.y2af{bottom:365.019450px;}
.y26a{bottom:365.026050px;}
.y1a6{bottom:365.027700px;}
.y2d9{bottom:367.484550px;}
.y244{bottom:369.614700px;}
.yc6{bottom:369.628500px;}
.y21d{bottom:371.863650px;}
.y12a{bottom:373.635750px;}
.y290{bottom:373.873350px;}
.y304{bottom:380.625000px;}
.y7c{bottom:382.257000px;}
.y1e7{bottom:382.257750px;}
.y35{bottom:382.258650px;}
.y5f{bottom:382.260300px;}
.y15a{bottom:382.261950px;}
.y9f{bottom:382.263750px;}
.y183{bottom:382.264500px;}
.y102{bottom:382.266000px;}
.ye3{bottom:382.267500px;}
.y2ae{bottom:382.270200px;}
.y269{bottom:382.276800px;}
.y1a5{bottom:382.278450px;}
.ye{bottom:382.739925px;}
.y243{bottom:386.865450px;}
.yc5{bottom:386.879250px;}
.y21c{bottom:389.114400px;}
.y129{bottom:390.886500px;}
.y28f{bottom:391.124100px;}
.y2d8{bottom:393.359850px;}
.y303{bottom:396.375000px;}
.yd{bottom:397.739475px;}
.y7b{bottom:399.507750px;}
.y1e6{bottom:399.508500px;}
.y34{bottom:399.509400px;}
.y5e{bottom:399.511050px;}
.y159{bottom:399.512700px;}
.y9e{bottom:399.514500px;}
.y182{bottom:399.515250px;}
.y101{bottom:399.516750px;}
.ye2{bottom:399.518250px;}
.y2ad{bottom:399.520950px;}
.y268{bottom:399.527550px;}
.y1a4{bottom:399.529200px;}
.yc4{bottom:404.116200px;}
.y21b{bottom:406.365150px;}
.y128{bottom:408.137250px;}
.y28e{bottom:408.374850px;}
.y302{bottom:412.125000px;}
.y7a{bottom:416.758500px;}
.y1e5{bottom:416.759250px;}
.y33{bottom:416.760150px;}
.y5d{bottom:416.761800px;}
.y158{bottom:416.763450px;}
.y9d{bottom:416.765250px;}
.y181{bottom:416.766000px;}
.y100{bottom:416.767500px;}
.ye1{bottom:416.769000px;}
.y2ac{bottom:416.771700px;}
.y267{bottom:416.778300px;}
.y1a3{bottom:416.779950px;}
.yc3{bottom:421.366950px;}
.y21a{bottom:423.615900px;}
.y127{bottom:425.388000px;}
.y28d{bottom:425.625600px;}
.yc{bottom:427.740000px;}
.y301{bottom:427.875000px;}
.y79{bottom:434.009250px;}
.y1e4{bottom:434.010000px;}
.y32{bottom:434.010900px;}
.y5c{bottom:434.012550px;}
.y157{bottom:434.014200px;}
.y9c{bottom:434.016000px;}
.y180{bottom:434.016750px;}
.yff{bottom:434.018250px;}
.ye0{bottom:434.019750px;}
.y2ab{bottom:434.022450px;}
.y266{bottom:434.029050px;}
.y1a2{bottom:434.030700px;}
.yc2{bottom:438.617700px;}
.y219{bottom:440.866650px;}
.y126{bottom:442.638750px;}
.y28c{bottom:442.876350px;}
.y300{bottom:443.625150px;}
.y78{bottom:451.260000px;}
.y1e3{bottom:451.260750px;}
.y31{bottom:451.261650px;}
.y5b{bottom:451.263300px;}
.y156{bottom:451.264950px;}
.y9b{bottom:451.266750px;}
.y17f{bottom:451.267500px;}
.yfe{bottom:451.269000px;}
.ydf{bottom:451.270500px;}
.y2aa{bottom:451.273200px;}
.y265{bottom:451.279800px;}
.yc1{bottom:455.868450px;}
.y218{bottom:458.117400px;}
.y125{bottom:459.889500px;}
.y1a1{bottom:459.906000px;}
.y28b{bottom:460.127100px;}
.y2ff{bottom:461.085150px;}
.yb{bottom:463.741500px;}
.y77{bottom:468.510750px;}
.y1e2{bottom:468.511500px;}
.y30{bottom:468.512400px;}
.y5a{bottom:468.514050px;}
.y155{bottom:468.515700px;}
.y9a{bottom:468.517500px;}
.y17e{bottom:468.518250px;}
.yfd{bottom:468.519750px;}
.yde{bottom:468.521250px;}
.y2a9{bottom:468.523950px;}
.y264{bottom:468.530550px;}
.yc0{bottom:473.119200px;}
.y217{bottom:475.368150px;}
.y2fe{bottom:476.835150px;}
.y124{bottom:477.140250px;}
.y28a{bottom:477.377850px;}
.ya{bottom:478.741050px;}
.y76{bottom:485.761500px;}
.y1e1{bottom:485.762250px;}
.y2f{bottom:485.763150px;}
.y59{bottom:485.764800px;}
.y154{bottom:485.766450px;}
.y99{bottom:485.768250px;}
.y17d{bottom:485.769000px;}
.yfc{bottom:485.770500px;}
.ydd{bottom:485.772000px;}
.y2a8{bottom:485.774700px;}
.y263{bottom:485.781300px;}
.ybf{bottom:490.369950px;}
.y216{bottom:492.618900px;}
.y2fd{bottom:494.280150px;}
.y123{bottom:494.391000px;}
.y289{bottom:494.628600px;}
.y242{bottom:498.994500px;}
.y9{bottom:501.240375px;}
.y75{bottom:503.012250px;}
.y1e0{bottom:503.013000px;}
.y2e{bottom:503.013900px;}
.y58{bottom:503.015550px;}
.y153{bottom:503.017200px;}
.y98{bottom:503.019000px;}
.y17c{bottom:503.019750px;}
.yfb{bottom:503.021250px;}
.ydc{bottom:503.022750px;}
.y2a7{bottom:503.025450px;}
.y1a0{bottom:503.030400px;}
.y262{bottom:503.032050px;}
.ybe{bottom:507.620700px;}
.y215{bottom:509.869650px;}
.y2fc{bottom:510.030000px;}
.y1f6{bottom:511.640100px;}
.y122{bottom:511.641750px;}
.y288{bottom:511.879350px;}
.y8{bottom:516.239925px;}
.y241{bottom:516.245250px;}
.y74{bottom:520.263000px;}
.y1df{bottom:520.263750px;}
.y2d{bottom:520.264650px;}
.y1be{bottom:520.266300px;}
.y152{bottom:520.267950px;}
.y97{bottom:520.269750px;}
.y17b{bottom:520.270500px;}
.yfa{bottom:520.272000px;}
.ydb{bottom:520.273500px;}
.y2a6{bottom:520.276200px;}
.y19f{bottom:520.279500px;}
.y261{bottom:520.282800px;}
.ybd{bottom:524.871450px;}
.y214{bottom:527.120400px;}
.y2fb{bottom:527.475000px;}
.y57{bottom:528.890850px;}
.y121{bottom:528.892500px;}
.y287{bottom:529.130100px;}
.y7{bottom:531.239475px;}
.y73{bottom:537.513750px;}
.y1de{bottom:537.514500px;}
.y2c{bottom:537.515400px;}
.y1bd{bottom:537.517050px;}
.y151{bottom:537.518700px;}
.y96{bottom:537.520500px;}
.y17a{bottom:537.521250px;}
.yf9{bottom:537.522750px;}
.yda{bottom:537.524250px;}
.y19e{bottom:537.528600px;}
.y260{bottom:537.531900px;}
.ybc{bottom:542.122200px;}
.y213{bottom:544.371150px;}
.y2fa{bottom:544.935000px;}
.y120{bottom:546.143250px;}
.y2a5{bottom:546.151500px;}
.y286{bottom:546.380850px;}
.y72{bottom:554.764500px;}
.y1dd{bottom:554.765250px;}
.y2b{bottom:554.766150px;}
.y1bc{bottom:554.767800px;}
.y150{bottom:554.769450px;}
.y95{bottom:554.771250px;}
.y179{bottom:554.772000px;}
.yf8{bottom:554.773500px;}
.y2e7{bottom:554.774400px;}
.y19d{bottom:554.777700px;}
.y25f{bottom:554.781000px;}
.ybb{bottom:559.372950px;}
.y2f9{bottom:560.685000px;}
.y6{bottom:561.240000px;}
.y212{bottom:561.621900px;}
.y11f{bottom:563.394000px;}
.y285{bottom:563.631600px;}
.y56{bottom:572.015250px;}
.y1dc{bottom:572.016000px;}
.y2a{bottom:572.016900px;}
.y240{bottom:572.018550px;}
.y14f{bottom:572.020200px;}
.y94{bottom:572.022000px;}
.y178{bottom:572.022750px;}
.yf7{bottom:572.024250px;}
.y2e6{bottom:572.025150px;}
.y19c{bottom:572.026800px;}
.y25e{bottom:572.030100px;}
.yba{bottom:576.623700px;}
.y2f8{bottom:578.130000px;}
.y211{bottom:578.872650px;}
.y1bb{bottom:580.643100px;}
.y11e{bottom:580.644750px;}
.y284{bottom:580.882350px;}
.y55{bottom:589.266000px;}
.y1db{bottom:589.266750px;}
.y29{bottom:589.267650px;}
.y23f{bottom:589.269300px;}
.y14e{bottom:589.270950px;}
.y93{bottom:589.272750px;}
.y177{bottom:589.273500px;}
.y19b{bottom:589.275900px;}
.y25d{bottom:589.279200px;}
.yb9{bottom:593.874450px;}
.y210{bottom:596.123400px;}
.y11d{bottom:597.895500px;}
.y283{bottom:598.133100px;}
.y2f7{bottom:602.499000px;}
.y54{bottom:606.516750px;}
.y1da{bottom:606.517500px;}
.y28{bottom:606.518400px;}
.y23e{bottom:606.520050px;}
.y14d{bottom:606.521700px;}
.y92{bottom:606.523500px;}
.y176{bottom:606.524250px;}
.y19a{bottom:606.525000px;}
.y25c{bottom:606.528300px;}
.yb8{bottom:611.125200px;}
.y11c{bottom:615.146250px;}
.y282{bottom:615.383850px;}
.y53{bottom:623.767500px;}
.y1d9{bottom:623.768250px;}
.y27{bottom:623.769150px;}
.y175{bottom:623.769750px;}
.y23d{bottom:623.770800px;}
.y14c{bottom:623.772450px;}
.y199{bottom:623.774100px;}
.y91{bottom:623.774250px;}
.y25b{bottom:623.777400px;}
.y20f{bottom:624.008400px;}
.yb7{bottom:628.375950px;}
.y11b{bottom:632.397000px;}
.y281{bottom:632.634600px;}
.y52{bottom:641.018250px;}
.y1d8{bottom:641.019000px;}
.y26{bottom:641.019900px;}
.y174{bottom:641.020500px;}
.y23c{bottom:641.021550px;}
.y14b{bottom:641.023200px;}
.y25a{bottom:641.026500px;}
.yb6{bottom:645.626700px;}
.y11a{bottom:649.647750px;}
.y280{bottom:649.885350px;}
.y51{bottom:658.269000px;}
.y1d7{bottom:658.269750px;}
.y25{bottom:658.270650px;}
.y173{bottom:658.271250px;}
.y198{bottom:658.272300px;}
.y259{bottom:658.275600px;}
.yb5{bottom:662.877450px;}
.y2c3{bottom:666.896850px;}
.y119{bottom:666.898500px;}
.y27f{bottom:667.136100px;}
.y50{bottom:675.519750px;}
.y1d6{bottom:675.520500px;}
.y24{bottom:675.521400px;}
.y172{bottom:675.522000px;}
.y23b{bottom:675.523050px;}
.y258{bottom:675.524700px;}
.yb4{bottom:680.128200px;}
.y118{bottom:684.149250px;}
.y27e{bottom:684.386850px;}
.y5{bottom:692.205150px;}
.y4f{bottom:692.770500px;}
.y1d5{bottom:692.771250px;}
.y23{bottom:692.772150px;}
.y171{bottom:692.772750px;}
.y23a{bottom:692.773800px;}
.y31f{bottom:696.660150px;}
.y117{bottom:701.396700px;}
.yb3{bottom:706.003500px;}
.y4{bottom:707.205000px;}
.y4e{bottom:710.021250px;}
.y1d4{bottom:710.022000px;}
.y22{bottom:710.022900px;}
.y170{bottom:710.023500px;}
.y239{bottom:710.024550px;}
.y27d{bottom:710.262150px;}
.y31e{bottom:713.685150px;}
.y116{bottom:718.647450px;}
.y3{bottom:725.955000px;}
.y4d{bottom:727.272000px;}
.y1d3{bottom:727.272750px;}
.y21{bottom:727.273650px;}
.y16f{bottom:727.274250px;}
.y31d{bottom:729.435000px;}
.y115{bottom:735.898200px;}
.y238{bottom:735.899850px;}
.y2{bottom:743.955000px;}
.y4c{bottom:744.522750px;}
.y1d2{bottom:744.523500px;}
.y20{bottom:744.524400px;}
.y31c{bottom:746.460150px;}
.y114{bottom:753.148950px;}
.y4b{bottom:761.773500px;}
.y1d1{bottom:761.774250px;}
.y1f{bottom:761.775150px;}
.y31b{bottom:763.485000px;}
.y113{bottom:770.399700px;}
.y4a{bottom:779.024250px;}
.y31a{bottom:780.525000px;}
.y1{bottom:788.955000px;}
.y1e{bottom:796.275000px;}
.y10{bottom:843.105000px;}
.h5{height:51.216000px;}
.h3{height:57.618000px;}
.h13{height:58.536000px;}
.h4{height:60.819000px;}
.h20{height:64.020000px;}
.h22{height:64.020600px;}
.h23{height:65.039400px;}
.h1f{height:65.040000px;}
.h21{height:65.040600px;}
.h6{height:70.422000px;}
.h1e{height:70.424400px;}
.h15{height:70.425000px;}
.h17{height:70.428000px;}
.h9{height:70.431000px;}
.hf{height:70.435200px;}
.h11{height:70.443000px;}
.ha{height:70.449000px;}
.hc{height:70.457400px;}
.he{height:70.458000px;}
.hd{height:70.464000px;}
.h12{height:70.467000px;}
.hb{height:70.477200px;}
.h1b{height:70.480200px;}
.h18{height:70.495200px;}
.h1d{height:70.495800px;}
.h8{height:70.497600px;}
.h10{height:70.512000px;}
.h1c{height:70.513800px;}
.h19{height:70.515600px;}
.h16{height:70.524000px;}
.h1a{height:70.536000px;}
.h14{height:70.538400px;}
.h7{height:71.544000px;}
.h2{height:76.824000px;}
.h1{height:102.432000px;}
.h0{height:874.500000px;}
.w0{width:564.000000px;}
.x0{left:0.000000px;}
.x1{left:43.200000px;}
.x6{left:53.955450px;}
.x3{left:58.199850px;}
.xa{left:65.414400px;}
.xb{left:72.164550px;}
.x4{left:73.199700px;}
.x7{left:116.910525px;}
.x5{left:186.375000px;}
.x9{left:262.530000px;}
.x8{left:299.700975px;}
.x2{left:414.255000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.733867pt;}
.lsc8{letter-spacing:-3.225200pt;}
.lsc5{letter-spacing:-3.066800pt;}
.lsc9{letter-spacing:-3.014000pt;}
.ls97{letter-spacing:-2.798400pt;}
.ls8f{letter-spacing:-2.481600pt;}
.ls9f{letter-spacing:-2.213200pt;}
.lsb6{letter-spacing:-1.713067pt;}
.lsb5{letter-spacing:-1.660267pt;}
.lsb1{letter-spacing:-1.589867pt;}
.lsc3{letter-spacing:-1.454933pt;}
.ls22{letter-spacing:-1.443200pt;}
.ls77{letter-spacing:-1.396267pt;}
.lsa1{letter-spacing:-1.390400pt;}
.lsa3{letter-spacing:-1.384533pt;}
.ls93{letter-spacing:-1.343467pt;}
.ls9c{letter-spacing:-1.337600pt;}
.ls8b{letter-spacing:-1.284800pt;}
.ls92{letter-spacing:-1.232000pt;}
.ls38{letter-spacing:-1.179200pt;}
.ls9d{letter-spacing:-1.126400pt;}
.ls56{letter-spacing:-1.073600pt;}
.ls85{letter-spacing:-1.070400pt;}
.lsec{letter-spacing:-1.024000pt;}
.ls28{letter-spacing:-1.020800pt;}
.lseb{letter-spacing:-1.018667pt;}
.ls6a{letter-spacing:-1.017600pt;}
.lsea{letter-spacing:-1.016000pt;}
.lsa2{letter-spacing:-1.012000pt;}
.lsbe{letter-spacing:-0.997333pt;}
.ls35{letter-spacing:-0.973867pt;}
.ls9a{letter-spacing:-0.968000pt;}
.ls99{letter-spacing:-0.962133pt;}
.ls91{letter-spacing:-0.921067pt;}
.lsed{letter-spacing:-0.920000pt;}
.ls29{letter-spacing:-0.915200pt;}
.lse{letter-spacing:-0.912000pt;}
.ls55{letter-spacing:-0.909333pt;}
.ls7e{letter-spacing:-0.862400pt;}
.lsba{letter-spacing:-0.859200pt;}
.lsd5{letter-spacing:-0.858667pt;}
.ls6e{letter-spacing:-0.856533pt;}
.lsd4{letter-spacing:-0.852000pt;}
.lsae{letter-spacing:-0.850667pt;}
.lsbb{letter-spacing:-0.815467pt;}
.ls5f{letter-spacing:-0.809600pt;}
.ls37{letter-spacing:-0.803733pt;}
.lsbf{letter-spacing:-0.797867pt;}
.ls5e{letter-spacing:-0.750933pt;}
.ls7d{letter-spacing:-0.704000pt;}
.ls36{letter-spacing:-0.698133pt;}
.ls4b{letter-spacing:-0.696000pt;}
.ls82{letter-spacing:-0.657067pt;}
.ls95{letter-spacing:-0.651200pt;}
.ls53{letter-spacing:-0.645333pt;}
.lsb0{letter-spacing:-0.639467pt;}
.ls78{letter-spacing:-0.598400pt;}
.ls24{letter-spacing:-0.592533pt;}
.lsa6{letter-spacing:-0.590400pt;}
.lsb{letter-spacing:-0.567467pt;}
.ls70{letter-spacing:-0.545600pt;}
.lse5{letter-spacing:-0.544000pt;}
.lsb9{letter-spacing:-0.542400pt;}
.lse6{letter-spacing:-0.540000pt;}
.ls6f{letter-spacing:-0.539733pt;}
.lse7{letter-spacing:-0.538667pt;}
.ls9e{letter-spacing:-0.533867pt;}
.ls79{letter-spacing:-0.492800pt;}
.ls20{letter-spacing:-0.486933pt;}
.ls86{letter-spacing:-0.484800pt;}
.ls8a{letter-spacing:-0.445867pt;}
.ls90{letter-spacing:-0.440000pt;}
.ls34{letter-spacing:-0.434133pt;}
.ls61{letter-spacing:-0.432000pt;}
.ls71{letter-spacing:-0.387200pt;}
.ls33{letter-spacing:-0.381333pt;}
.ls60{letter-spacing:-0.379200pt;}
.ls7f{letter-spacing:-0.375467pt;}
.lsb7{letter-spacing:-0.334400pt;}
.ls49{letter-spacing:-0.328533pt;}
.ls6b{letter-spacing:-0.326400pt;}
.ls81{letter-spacing:-0.325600pt;}
.ls67{letter-spacing:-0.322667pt;}
.ls52{letter-spacing:-0.281600pt;}
.ls47{letter-spacing:-0.275733pt;}
.lsa{letter-spacing:-0.273600pt;}
.ls46{letter-spacing:-0.269867pt;}
.lsa4{letter-spacing:-0.268800pt;}
.ls83{letter-spacing:-0.268400pt;}
.lsca{letter-spacing:-0.264000pt;}
.lsaa{letter-spacing:-0.228800pt;}
.lsd6{letter-spacing:-0.224000pt;}
.ls57{letter-spacing:-0.222933pt;}
.lsa5{letter-spacing:-0.220800pt;}
.lse8{letter-spacing:-0.220000pt;}
.lsd7{letter-spacing:-0.218667pt;}
.ls1e{letter-spacing:-0.217067pt;}
.lsde{letter-spacing:-0.213333pt;}
.lsdd{letter-spacing:-0.212000pt;}
.lsc4{letter-spacing:-0.211200pt;}
.lsdf{letter-spacing:-0.208000pt;}
.ls94{letter-spacing:-0.176000pt;}
.ls5d{letter-spacing:-0.170133pt;}
.ls88{letter-spacing:-0.168000pt;}
.lse4{letter-spacing:-0.165333pt;}
.ls32{letter-spacing:-0.164267pt;}
.ls62{letter-spacing:-0.163200pt;}
.lse3{letter-spacing:-0.160000pt;}
.lsb2{letter-spacing:-0.158400pt;}
.lse2{letter-spacing:-0.156000pt;}
.ls98{letter-spacing:-0.153600pt;}
.ls45{letter-spacing:-0.117333pt;}
.ls87{letter-spacing:-0.115200pt;}
.ls26{letter-spacing:-0.111467pt;}
.ls39{letter-spacing:-0.110400pt;}
.lsb8{letter-spacing:-0.105600pt;}
.lsab{letter-spacing:-0.070400pt;}
.ls5c{letter-spacing:-0.064533pt;}
.ls3b{letter-spacing:-0.062400pt;}
.ls27{letter-spacing:-0.058667pt;}
.ls4a{letter-spacing:-0.057600pt;}
.lsaf{letter-spacing:-0.052800pt;}
.ls7c{letter-spacing:-0.017600pt;}
.ls8{letter-spacing:-0.014880pt;}
.lsd{letter-spacing:-0.013227pt;}
.lsdc{letter-spacing:-0.012000pt;}
.ls25{letter-spacing:-0.011733pt;}
.lsda{letter-spacing:-0.010667pt;}
.ls10{letter-spacing:-0.010133pt;}
.lsf{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:-0.009387pt;}
.lse1{letter-spacing:-0.008000pt;}
.ls6{letter-spacing:-0.007040pt;}
.ls1d{letter-spacing:-0.005867pt;}
.ls9{letter-spacing:-0.005573pt;}
.lsd8{letter-spacing:-0.005333pt;}
.ls7{letter-spacing:-0.005280pt;}
.ls3a{letter-spacing:-0.004800pt;}
.lsc{letter-spacing:-0.004693pt;}
.ls2a{letter-spacing:-0.004267pt;}
.lsd9{letter-spacing:-0.004000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd3{letter-spacing:0.004000pt;}
.lse9{letter-spacing:0.008000pt;}
.ls84{letter-spacing:0.014400pt;}
.ls2f{letter-spacing:0.026667pt;}
.ls66{letter-spacing:0.041067pt;}
.lsb4{letter-spacing:0.043200pt;}
.ls2b{letter-spacing:0.046933pt;}
.ls43{letter-spacing:0.048000pt;}
.ls89{letter-spacing:0.052800pt;}
.lsa7{letter-spacing:0.093867pt;}
.lsc1{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.099733pt;}
.ls44{letter-spacing:0.100800pt;}
.ls50{letter-spacing:0.105600pt;}
.lsd2{letter-spacing:0.144000pt;}
.ls3c{letter-spacing:0.146667pt;}
.lsd1{letter-spacing:0.148000pt;}
.ls19{letter-spacing:0.152533pt;}
.lsc2{letter-spacing:0.153600pt;}
.ls74{letter-spacing:0.158400pt;}
.lsd0{letter-spacing:0.160000pt;}
.ls65{letter-spacing:0.186667pt;}
.lsbd{letter-spacing:0.199467pt;}
.ls18{letter-spacing:0.205333pt;}
.ls6d{letter-spacing:0.206400pt;}
.ls6c{letter-spacing:0.211200pt;}
.ls2{letter-spacing:0.243707pt;}
.ls80{letter-spacing:0.246400pt;}
.ls48{letter-spacing:0.252267pt;}
.ls42{letter-spacing:0.258133pt;}
.lsc6{letter-spacing:0.259200pt;}
.ls5b{letter-spacing:0.264000pt;}
.ls4e{letter-spacing:0.293333pt;}
.lsc7{letter-spacing:0.305067pt;}
.ls31{letter-spacing:0.307200pt;}
.ls2d{letter-spacing:0.310933pt;}
.ls1f{letter-spacing:0.316800pt;}
.ls3{letter-spacing:0.317280pt;}
.ls16{letter-spacing:0.322667pt;}
.lsdb{letter-spacing:0.332000pt;}
.ls41{letter-spacing:0.357867pt;}
.ls14{letter-spacing:0.363733pt;}
.ls0{letter-spacing:0.369360pt;}
.ls3d{letter-spacing:0.369600pt;}
.ls12{letter-spacing:0.416533pt;}
.ls11{letter-spacing:0.422400pt;}
.ls8c{letter-spacing:0.469333pt;}
.ls40{letter-spacing:0.475200pt;}
.ls72{letter-spacing:0.506667pt;}
.ls96{letter-spacing:0.516267pt;}
.ls76{letter-spacing:0.522133pt;}
.ls13{letter-spacing:0.528000pt;}
.ls73{letter-spacing:0.574933pt;}
.ls30{letter-spacing:0.580800pt;}
.lsa9{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.627733pt;}
.ls3e{letter-spacing:0.633600pt;}
.ls69{letter-spacing:0.680533pt;}
.ls4f{letter-spacing:0.686400pt;}
.ls7a{letter-spacing:0.733333pt;}
.ls51{letter-spacing:0.739200pt;}
.ls1a{letter-spacing:0.792000pt;}
.ls17{letter-spacing:0.797867pt;}
.ls8d{letter-spacing:0.844800pt;}
.ls1{letter-spacing:0.845627pt;}
.ls8e{letter-spacing:0.850667pt;}
.ls58{letter-spacing:0.891733pt;}
.ls23{letter-spacing:0.897600pt;}
.lsce{letter-spacing:0.901333pt;}
.ls75{letter-spacing:0.903467pt;}
.lse0{letter-spacing:0.906667pt;}
.lsa8{letter-spacing:0.909333pt;}
.ls1b{letter-spacing:0.950400pt;}
.ls4d{letter-spacing:0.956267pt;}
.ls54{letter-spacing:0.962133pt;}
.ls5a{letter-spacing:1.009067pt;}
.ls64{letter-spacing:1.050133pt;}
.lsc0{letter-spacing:1.056000pt;}
.lsac{letter-spacing:1.060800pt;}
.lscf{letter-spacing:1.061333pt;}
.ls21{letter-spacing:1.061867pt;}
.ls3f{letter-spacing:1.108800pt;}
.ls2e{letter-spacing:1.114667pt;}
.ls9b{letter-spacing:1.155733pt;}
.lsa0{letter-spacing:1.161600pt;}
.ls7b{letter-spacing:1.167467pt;}
.ls4c{letter-spacing:1.220267pt;}
.lsbc{letter-spacing:1.273067pt;}
.lscb{letter-spacing:1.280000pt;}
.lsb3{letter-spacing:1.325867pt;}
.lscd{letter-spacing:1.328000pt;}
.lscc{letter-spacing:1.333333pt;}
.ls1c{letter-spacing:1.437333pt;}
.ls68{letter-spacing:1.484267pt;}
.ls63{letter-spacing:1.490133pt;}
.lsad{letter-spacing:1.540800pt;}
.ls59{letter-spacing:13.466667pt;}
.wsc7{word-spacing:-14.977600pt;}
.wsd5{word-spacing:-14.948267pt;}
.wsba{word-spacing:-14.924800pt;}
.ws70{word-spacing:-14.872000pt;}
.ws7e{word-spacing:-14.660800pt;}
.wsc4{word-spacing:-14.654933pt;}
.wsd6{word-spacing:-13.333333pt;}
.ws1{word-spacing:-13.036027pt;}
.ws0{word-spacing:-12.914427pt;}
.ws2{word-spacing:-12.910373pt;}
.ws4{word-spacing:-12.656533pt;}
.ws3{word-spacing:-12.352533pt;}
.ws5c{word-spacing:-11.990400pt;}
.ws92{word-spacing:-11.105600pt;}
.ws34{word-spacing:-11.000000pt;}
.ws94{word-spacing:-10.929600pt;}
.wsc0{word-spacing:-10.894400pt;}
.ws93{word-spacing:-10.731600pt;}
.ws91{word-spacing:-10.674400pt;}
.wse1{word-spacing:-10.148000pt;}
.wseb{word-spacing:-10.008000pt;}
.wse3{word-spacing:-10.000000pt;}
.wsd9{word-spacing:-9.996000pt;}
.wse0{word-spacing:-9.992000pt;}
.wsac{word-spacing:-9.988000pt;}
.wse5{word-spacing:-9.840000pt;}
.wse6{word-spacing:-9.832000pt;}
.wsdc{word-spacing:-9.788000pt;}
.wsea{word-spacing:-9.780000pt;}
.wsd8{word-spacing:-9.776000pt;}
.wse7{word-spacing:-9.460000pt;}
.wsd7{word-spacing:-9.148000pt;}
.wsfe{word-spacing:-9.080000pt;}
.wsec{word-spacing:-8.984000pt;}
.wsab{word-spacing:-8.786800pt;}
.ws9e{word-spacing:-8.518400pt;}
.wsa6{word-spacing:-8.201600pt;}
.wsd3{word-spacing:-7.986000pt;}
.wsd0{word-spacing:-7.933200pt;}
.wsd2{word-spacing:-7.774800pt;}
.ws17{word-spacing:-0.745067pt;}
.ws81{word-spacing:-0.739200pt;}
.wsbb{word-spacing:-0.698133pt;}
.ws2d{word-spacing:-0.692267pt;}
.ws1c{word-spacing:-0.686400pt;}
.wsb8{word-spacing:-0.680533pt;}
.ws15{word-spacing:-0.639467pt;}
.wsfa{word-spacing:-0.634667pt;}
.ws48{word-spacing:-0.633600pt;}
.ws90{word-spacing:-0.627733pt;}
.ws25{word-spacing:-0.586667pt;}
.ws6f{word-spacing:-0.585600pt;}
.ws6b{word-spacing:-0.580800pt;}
.ws49{word-spacing:-0.533867pt;}
.wsf8{word-spacing:-0.533333pt;}
.ws59{word-spacing:-0.532800pt;}
.ws46{word-spacing:-0.528000pt;}
.wsb5{word-spacing:-0.522133pt;}
.wsf7{word-spacing:-0.506667pt;}
.wsd4{word-spacing:-0.486933pt;}
.ws4a{word-spacing:-0.481067pt;}
.ws43{word-spacing:-0.480000pt;}
.ws69{word-spacing:-0.475200pt;}
.ws4d{word-spacing:-0.469333pt;}
.wsa7{word-spacing:-0.432000pt;}
.ws5e{word-spacing:-0.428267pt;}
.ws87{word-spacing:-0.427200pt;}
.ws51{word-spacing:-0.422400pt;}
.wsee{word-spacing:-0.421333pt;}
.ws9b{word-spacing:-0.417600pt;}
.ws68{word-spacing:-0.416533pt;}
.wsf1{word-spacing:-0.400000pt;}
.wscc{word-spacing:-0.379200pt;}
.ws2c{word-spacing:-0.375467pt;}
.wsbe{word-spacing:-0.374400pt;}
.ws50{word-spacing:-0.369600pt;}
.ws7c{word-spacing:-0.363733pt;}
.ws16{word-spacing:-0.322667pt;}
.ws9a{word-spacing:-0.321600pt;}
.ws3b{word-spacing:-0.316800pt;}
.wsb4{word-spacing:-0.310933pt;}
.ws9d{word-spacing:-0.305067pt;}
.wscb{word-spacing:-0.269867pt;}
.wsd{word-spacing:-0.268800pt;}
.ws3c{word-spacing:-0.264000pt;}
.ws6a{word-spacing:-0.258133pt;}
.ws97{word-spacing:-0.252267pt;}
.wsca{word-spacing:-0.217067pt;}
.ws6e{word-spacing:-0.211200pt;}
.ws8b{word-spacing:-0.205333pt;}
.wsb9{word-spacing:-0.199467pt;}
.ws96{word-spacing:-0.164267pt;}
.ws26{word-spacing:-0.158400pt;}
.ws61{word-spacing:-0.152533pt;}
.ws8a{word-spacing:-0.146667pt;}
.ws9{word-spacing:-0.106907pt;}
.wsf9{word-spacing:-0.106667pt;}
.ws6d{word-spacing:-0.105600pt;}
.wsc1{word-spacing:-0.100800pt;}
.wsa3{word-spacing:-0.099733pt;}
.wsff{word-spacing:-0.053333pt;}
.ws14{word-spacing:-0.052800pt;}
.ws29{word-spacing:-0.046933pt;}
.wsa9{word-spacing:-0.041067pt;}
.wsa0{word-spacing:-0.005867pt;}
.wsfc{word-spacing:-0.005333pt;}
.ws5{word-spacing:0.000000pt;}
.ws33{word-spacing:0.004267pt;}
.ws98{word-spacing:0.004800pt;}
.wsf{word-spacing:0.005280pt;}
.wsef{word-spacing:0.005333pt;}
.wsb{word-spacing:0.005573pt;}
.ws63{word-spacing:0.005867pt;}
.ws6{word-spacing:0.007040pt;}
.ws7{word-spacing:0.009600pt;}
.ws11{word-spacing:0.010133pt;}
.wsde{word-spacing:0.010667pt;}
.ws95{word-spacing:0.011733pt;}
.wsf5{word-spacing:0.026667pt;}
.ws32{word-spacing:0.046933pt;}
.ws1f{word-spacing:0.052800pt;}
.wsf6{word-spacing:0.053333pt;}
.ws6c{word-spacing:0.058667pt;}
.wse{word-spacing:0.101280pt;}
.ws5a{word-spacing:0.105600pt;}
.ws66{word-spacing:0.111467pt;}
.ws88{word-spacing:0.152533pt;}
.ws52{word-spacing:0.158400pt;}
.wsed{word-spacing:0.160000pt;}
.ws31{word-spacing:0.164267pt;}
.wsc5{word-spacing:0.205333pt;}
.ws5d{word-spacing:0.211200pt;}
.ws100{word-spacing:0.213333pt;}
.ws18{word-spacing:0.217067pt;}
.ws3f{word-spacing:0.222933pt;}
.wsc6{word-spacing:0.246400pt;}
.ws37{word-spacing:0.264000pt;}
.wsf3{word-spacing:0.266667pt;}
.wsc2{word-spacing:0.268800pt;}
.ws35{word-spacing:0.269867pt;}
.wsae{word-spacing:0.275733pt;}
.ws7f{word-spacing:0.316800pt;}
.wsfb{word-spacing:0.320000pt;}
.wsc{word-spacing:0.321600pt;}
.ws30{word-spacing:0.322667pt;}
.wsad{word-spacing:0.363733pt;}
.ws39{word-spacing:0.369600pt;}
.ws85{word-spacing:0.375467pt;}
.wsaa{word-spacing:0.416533pt;}
.ws71{word-spacing:0.422400pt;}
.wsf2{word-spacing:0.426667pt;}
.ws79{word-spacing:0.427200pt;}
.ws42{word-spacing:0.428267pt;}
.wsa5{word-spacing:0.434133pt;}
.ws60{word-spacing:0.469333pt;}
.ws53{word-spacing:0.475200pt;}
.ws99{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.481067pt;}
.wsa4{word-spacing:0.486933pt;}
.wsb3{word-spacing:0.522133pt;}
.ws5f{word-spacing:0.528000pt;}
.wsbd{word-spacing:0.532800pt;}
.ws24{word-spacing:0.533867pt;}
.ws67{word-spacing:0.539733pt;}
.wsbf{word-spacing:0.574933pt;}
.ws89{word-spacing:0.580800pt;}
.wsb0{word-spacing:0.585600pt;}
.ws3d{word-spacing:0.586667pt;}
.wsc8{word-spacing:0.592533pt;}
.ws44{word-spacing:0.638400pt;}
.ws2f{word-spacing:0.639467pt;}
.ws75{word-spacing:0.645333pt;}
.ws28{word-spacing:0.686400pt;}
.ws65{word-spacing:0.691200pt;}
.ws21{word-spacing:0.692267pt;}
.ws56{word-spacing:0.698133pt;}
.wsc9{word-spacing:0.704000pt;}
.wsa2{word-spacing:0.739200pt;}
.wsb2{word-spacing:0.744000pt;}
.ws4b{word-spacing:0.745067pt;}
.wsa1{word-spacing:0.750933pt;}
.ws8{word-spacing:0.795467pt;}
.ws7a{word-spacing:0.796800pt;}
.ws1e{word-spacing:0.797867pt;}
.ws55{word-spacing:0.803733pt;}
.wsb6{word-spacing:0.844800pt;}
.ws10{word-spacing:0.849600pt;}
.ws19{word-spacing:0.850667pt;}
.ws2e{word-spacing:0.856533pt;}
.ws45{word-spacing:0.859200pt;}
.ws57{word-spacing:0.862400pt;}
.ws8d{word-spacing:0.897600pt;}
.ws23{word-spacing:0.903467pt;}
.wscd{word-spacing:0.907200pt;}
.ws76{word-spacing:0.909333pt;}
.ws38{word-spacing:0.956267pt;}
.ws7d{word-spacing:0.960000pt;}
.ws64{word-spacing:0.962133pt;}
.ws74{word-spacing:0.968000pt;}
.ws2b{word-spacing:1.009067pt;}
.ws84{word-spacing:1.014933pt;}
.ws8f{word-spacing:1.020800pt;}
.ws22{word-spacing:1.061867pt;}
.wsd1{word-spacing:1.065600pt;}
.ws82{word-spacing:1.067733pt;}
.wscf{word-spacing:1.070400pt;}
.ws78{word-spacing:1.073600pt;}
.ws20{word-spacing:1.108800pt;}
.wsaf{word-spacing:1.113600pt;}
.ws72{word-spacing:1.114667pt;}
.ws58{word-spacing:1.118400pt;}
.ws27{word-spacing:1.120533pt;}
.wsce{word-spacing:1.123200pt;}
.ws4c{word-spacing:1.126400pt;}
.ws54{word-spacing:1.167467pt;}
.ws5b{word-spacing:1.171200pt;}
.ws77{word-spacing:1.173333pt;}
.ws9c{word-spacing:1.176000pt;}
.ws4f{word-spacing:1.179200pt;}
.wsf4{word-spacing:1.184000pt;}
.ws9f{word-spacing:1.220267pt;}
.wsa{word-spacing:1.226133pt;}
.ws1d{word-spacing:1.232000pt;}
.ws86{word-spacing:1.273067pt;}
.ws2a{word-spacing:1.278933pt;}
.wsfd{word-spacing:1.280000pt;}
.ws4e{word-spacing:1.284800pt;}
.ws1b{word-spacing:1.325867pt;}
.ws47{word-spacing:1.331733pt;}
.wse9{word-spacing:1.333333pt;}
.ws62{word-spacing:1.337600pt;}
.ws40{word-spacing:1.378667pt;}
.ws3e{word-spacing:1.384533pt;}
.ws83{word-spacing:1.390400pt;}
.ws7b{word-spacing:1.431467pt;}
.ws36{word-spacing:1.437333pt;}
.ws41{word-spacing:1.443200pt;}
.wsc3{word-spacing:1.472533pt;}
.wsbc{word-spacing:1.478400pt;}
.wsa8{word-spacing:1.484267pt;}
.ws13{word-spacing:1.490133pt;}
.ws3a{word-spacing:1.496000pt;}
.ws8c{word-spacing:1.501867pt;}
.wsf0{word-spacing:1.600000pt;}
.ws80{word-spacing:1.754133pt;}
.wsb7{word-spacing:1.871467pt;}
.wse4{word-spacing:2.845333pt;}
.wsdd{word-spacing:2.892000pt;}
.wse2{word-spacing:3.378667pt;}
.wsdf{word-spacing:3.933333pt;}
.ws8e{word-spacing:4.159467pt;}
.wsb1{word-spacing:4.429333pt;}
.wse8{word-spacing:4.689333pt;}
.wsdb{word-spacing:4.890667pt;}
.wsda{word-spacing:6.936000pt;}
.ws73{word-spacing:8.483200pt;}
.ws12{word-spacing:31.735467pt;}
._13{margin-left:-9.597333pt;}
._f{margin-left:-7.732267pt;}
._7{margin-left:-6.606933pt;}
._5{margin-left:-4.872000pt;}
._6{margin-left:-3.172800pt;}
._2{margin-left:-1.982400pt;}
._0{margin-left:-1.006933pt;}
._1{width:1.553067pt;}
._e{width:3.254400pt;}
._11{width:5.712000pt;}
._c{width:11.424000pt;}
._10{width:18.801600pt;}
._b{width:20.006400pt;}
._d{width:20.908800pt;}
._12{width:25.605333pt;}
._14{width:26.618667pt;}
._4{width:35.332800pt;}
._3{width:42.914667pt;}
._a{width:44.112000pt;}
._9{width:739.080533pt;}
._8{width:852.755733pt;}
.fs9{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:28.935467pt;}
.y2d5{bottom:29.889600pt;}
.y22f{bottom:29.974133pt;}
.y2a4{bottom:30.194667pt;}
.y257{bottom:30.197333pt;}
.y14a{bottom:30.198400pt;}
.y1ba{bottom:30.199467pt;}
.yd9{bottom:30.636800pt;}
.y71{bottom:30.637333pt;}
.y197{bottom:30.638000pt;}
.yb2{bottom:30.638400pt;}
.y13d{bottom:30.638933pt;}
.y20e{bottom:30.639467pt;}
.y2f6{bottom:30.640000pt;}
.yf6{bottom:30.640267pt;}
.y112{bottom:30.642667pt;}
.y90{bottom:31.222933pt;}
.y1fe{bottom:31.304133pt;}
.y319{bottom:31.866667pt;}
.y237{bottom:33.104000pt;}
.y49{bottom:33.105467pt;}
.y1d0{bottom:33.106933pt;}
.y16e{bottom:33.108400pt;}
.y2c0{bottom:33.118667pt;}
.y1b8{bottom:33.124533pt;}
.y27c{bottom:33.126000pt;}
.y15{bottom:41.601467pt;}
.y2d4{bottom:42.556800pt;}
.y2a3{bottom:42.861867pt;}
.y256{bottom:42.864533pt;}
.y149{bottom:42.865600pt;}
.y1b9{bottom:42.866667pt;}
.yd8{bottom:43.304000pt;}
.y70{bottom:43.304533pt;}
.yb1{bottom:43.305600pt;}
.y13c{bottom:43.306133pt;}
.y20d{bottom:43.306667pt;}
.yf5{bottom:43.307467pt;}
.y111{bottom:43.308667pt;}
.y8f{bottom:43.890133pt;}
.y1fd{bottom:43.971333pt;}
.y22e{bottom:45.308133pt;}
.y318{bottom:45.866667pt;}
.y236{bottom:48.438000pt;}
.y48{bottom:48.439467pt;}
.y1cf{bottom:48.440933pt;}
.y16d{bottom:48.442400pt;}
.y2bf{bottom:48.452667pt;}
.y1b7{bottom:48.458533pt;}
.y14{bottom:54.268667pt;}
.y2d3{bottom:55.224000pt;}
.y2a2{bottom:55.529067pt;}
.y255{bottom:55.531733pt;}
.y148{bottom:55.532800pt;}
.y196{bottom:55.970000pt;}
.yd7{bottom:55.971200pt;}
.y6f{bottom:55.971733pt;}
.yb0{bottom:55.972800pt;}
.y13b{bottom:55.973333pt;}
.yf4{bottom:55.974667pt;}
.y8e{bottom:56.557333pt;}
.y1fc{bottom:56.638533pt;}
.y317{bottom:61.000000pt;}
.y235{bottom:63.772000pt;}
.y47{bottom:63.773467pt;}
.y1ce{bottom:63.774933pt;}
.y16c{bottom:63.776400pt;}
.y2f5{bottom:63.781333pt;}
.y2be{bottom:63.786667pt;}
.y27b{bottom:63.791067pt;}
.y1b6{bottom:63.792533pt;}
.y13{bottom:66.934667pt;}
.y2d2{bottom:67.891200pt;}
.y2a1{bottom:68.196267pt;}
.y254{bottom:68.198933pt;}
.y147{bottom:68.200000pt;}
.y195{bottom:68.636000pt;}
.yd6{bottom:68.638400pt;}
.y6e{bottom:68.638933pt;}
.yaf{bottom:68.640000pt;}
.yf3{bottom:68.640667pt;}
.y8d{bottom:69.224533pt;}
.y1fb{bottom:69.304533pt;}
.y22d{bottom:70.081600pt;}
.y316{bottom:75.000000pt;}
.y234{bottom:79.106000pt;}
.y46{bottom:79.107467pt;}
.y1cd{bottom:79.108933pt;}
.y16b{bottom:79.110400pt;}
.y2f4{bottom:79.115333pt;}
.y2bd{bottom:79.120667pt;}
.y27a{bottom:79.123600pt;}
.y1b5{bottom:79.126533pt;}
.y12{bottom:79.600667pt;}
.y2d1{bottom:80.558400pt;}
.y2a0{bottom:80.863467pt;}
.y253{bottom:80.866133pt;}
.y194{bottom:81.302000pt;}
.yd5{bottom:81.305600pt;}
.y6d{bottom:81.306133pt;}
.yf2{bottom:81.306667pt;}
.y8c{bottom:81.891733pt;}
.y1fa{bottom:81.971733pt;}
.y20c{bottom:85.417067pt;}
.y13a{bottom:86.776667pt;}
.y315{bottom:90.133333pt;}
.y11{bottom:92.266667pt;}
.y2d0{bottom:93.225600pt;}
.y29f{bottom:93.530667pt;}
.y252{bottom:93.533333pt;}
.y193{bottom:93.969200pt;}
.yd4{bottom:93.972800pt;}
.y6c{bottom:93.973333pt;}
.y233{bottom:94.440000pt;}
.y45{bottom:94.441467pt;}
.y1cc{bottom:94.442933pt;}
.y16a{bottom:94.444400pt;}
.y2f3{bottom:94.449333pt;}
.y2bc{bottom:94.454667pt;}
.y279{bottom:94.457600pt;}
.y1b4{bottom:94.460533pt;}
.y2c2{bottom:94.465333pt;}
.y8b{bottom:94.558933pt;}
.y1f9{bottom:94.638933pt;}
.y22c{bottom:100.535467pt;}
.y20b{bottom:100.751067pt;}
.y139{bottom:102.110667pt;}
.y314{bottom:104.133333pt;}
.y2cf{bottom:105.892800pt;}
.y29e{bottom:106.197867pt;}
.y192{bottom:106.636400pt;}
.yd3{bottom:106.640000pt;}
.y8a{bottom:107.226133pt;}
.y1f8{bottom:107.306133pt;}
.y232{bottom:109.774000pt;}
.y44{bottom:109.775467pt;}
.y1cb{bottom:109.776933pt;}
.y169{bottom:109.778400pt;}
.yae{bottom:109.780000pt;}
.y2f2{bottom:109.783333pt;}
.y2bb{bottom:109.788667pt;}
.y278{bottom:109.791600pt;}
.y146{bottom:109.794000pt;}
.y2c1{bottom:109.799333pt;}
.y22b{bottom:115.869467pt;}
.y20a{bottom:116.085067pt;}
.y138{bottom:117.444667pt;}
.y2ce{bottom:118.560000pt;}
.y29d{bottom:118.865067pt;}
.y313{bottom:119.266667pt;}
.y191{bottom:119.303600pt;}
.y89{bottom:119.893333pt;}
.y1f7{bottom:119.973333pt;}
.y231{bottom:125.108000pt;}
.y1f5{bottom:125.108667pt;}
.y43{bottom:125.109467pt;}
.y1ca{bottom:125.110933pt;}
.y168{bottom:125.112400pt;}
.yad{bottom:125.114000pt;}
.y110{bottom:125.116000pt;}
.y2f1{bottom:125.117333pt;}
.y2ba{bottom:125.122667pt;}
.y277{bottom:125.125600pt;}
.yf1{bottom:125.126667pt;}
.y1b3{bottom:125.127067pt;}
.y145{bottom:125.128000pt;}
.y6b{bottom:125.132667pt;}
.y251{bottom:129.220667pt;}
.y22a{bottom:131.203467pt;}
.y209{bottom:131.419067pt;}
.y29c{bottom:131.532267pt;}
.y190{bottom:131.970800pt;}
.y137{bottom:132.778667pt;}
.y312{bottom:133.266667pt;}
.y230{bottom:140.442000pt;}
.y1f4{bottom:140.442667pt;}
.y42{bottom:140.443467pt;}
.y1c9{bottom:140.444933pt;}
.y167{bottom:140.446400pt;}
.yac{bottom:140.448000pt;}
.y10f{bottom:140.450000pt;}
.y2f0{bottom:140.451333pt;}
.y2b9{bottom:140.456667pt;}
.y276{bottom:140.459600pt;}
.yf0{bottom:140.460667pt;}
.y1b2{bottom:140.461067pt;}
.y144{bottom:140.462000pt;}
.y6a{bottom:140.464667pt;}
.y2d7{bottom:140.465333pt;}
.y2e5{bottom:142.661333pt;}
.y29b{bottom:144.199467pt;}
.yd2{bottom:144.550667pt;}
.y250{bottom:144.554667pt;}
.y18f{bottom:144.638000pt;}
.y229{bottom:146.537467pt;}
.y208{bottom:146.753067pt;}
.y136{bottom:148.112667pt;}
.y311{bottom:148.400000pt;}
.y88{bottom:155.776000pt;}
.y1f3{bottom:155.776667pt;}
.y41{bottom:155.777467pt;}
.y1c8{bottom:155.778933pt;}
.y166{bottom:155.780400pt;}
.yab{bottom:155.782000pt;}
.y10e{bottom:155.784000pt;}
.y2ef{bottom:155.785333pt;}
.y2b8{bottom:155.790667pt;}
.y2cd{bottom:155.793333pt;}
.y275{bottom:155.793600pt;}
.yef{bottom:155.794667pt;}
.y1b1{bottom:155.795067pt;}
.y143{bottom:155.796000pt;}
.y69{bottom:155.798667pt;}
.y2d6{bottom:155.799333pt;}
.y29a{bottom:156.866667pt;}
.y18e{bottom:157.305200pt;}
.y2e4{bottom:157.995333pt;}
.yd1{bottom:159.884667pt;}
.y24f{bottom:159.888667pt;}
.y228{bottom:161.871467pt;}
.y207{bottom:162.087067pt;}
.y310{bottom:162.400000pt;}
.y135{bottom:163.446667pt;}
.y18d{bottom:169.972400pt;}
.y87{bottom:171.110000pt;}
.y1f2{bottom:171.110667pt;}
.y40{bottom:171.111467pt;}
.y1c7{bottom:171.112933pt;}
.y165{bottom:171.114400pt;}
.yaa{bottom:171.116000pt;}
.y10d{bottom:171.118000pt;}
.y2ee{bottom:171.119333pt;}
.y2b7{bottom:171.124667pt;}
.y2cc{bottom:171.127333pt;}
.y274{bottom:171.127600pt;}
.yee{bottom:171.128667pt;}
.y1b0{bottom:171.129067pt;}
.y142{bottom:171.130000pt;}
.y68{bottom:171.132667pt;}
.y2e3{bottom:173.329333pt;}
.yd0{bottom:175.218667pt;}
.y24e{bottom:175.222667pt;}
.y1c{bottom:177.080000pt;}
.y227{bottom:177.205467pt;}
.y206{bottom:177.421067pt;}
.y30f{bottom:177.533333pt;}
.y134{bottom:178.780667pt;}
.y18c{bottom:182.639600pt;}
.y86{bottom:186.444000pt;}
.y1f1{bottom:186.444667pt;}
.y3f{bottom:186.445467pt;}
.y1c6{bottom:186.446933pt;}
.y164{bottom:186.448400pt;}
.y67{bottom:186.449867pt;}
.ya9{bottom:186.450000pt;}
.y10c{bottom:186.452000pt;}
.y2ed{bottom:186.453333pt;}
.y2b6{bottom:186.458667pt;}
.y2cb{bottom:186.461333pt;}
.y273{bottom:186.461600pt;}
.yed{bottom:186.462667pt;}
.y1af{bottom:186.463067pt;}
.y141{bottom:186.464000pt;}
.y2e2{bottom:188.663333pt;}
.y19{bottom:190.412933pt;}
.ycf{bottom:190.552667pt;}
.y24d{bottom:190.556667pt;}
.y30e{bottom:191.533333pt;}
.y226{bottom:192.539467pt;}
.y205{bottom:192.755067pt;}
.y133{bottom:194.114667pt;}
.y299{bottom:194.325867pt;}
.y18b{bottom:195.305600pt;}
.y1b{bottom:195.746867pt;}
.y85{bottom:201.778000pt;}
.y1f0{bottom:201.778667pt;}
.y3e{bottom:201.779467pt;}
.y1c5{bottom:201.780933pt;}
.y163{bottom:201.782400pt;}
.y66{bottom:201.783867pt;}
.ya8{bottom:201.784000pt;}
.y10b{bottom:201.786000pt;}
.y2ec{bottom:201.787333pt;}
.y2b5{bottom:201.792667pt;}
.y2ca{bottom:201.795333pt;}
.y272{bottom:201.795600pt;}
.yec{bottom:201.796667pt;}
.y1ae{bottom:201.797067pt;}
.y140{bottom:201.798000pt;}
.y2e1{bottom:203.997333pt;}
.y30d{bottom:205.533467pt;}
.yce{bottom:205.886667pt;}
.y24c{bottom:205.890667pt;}
.y225{bottom:207.873467pt;}
.y18a{bottom:207.972800pt;}
.y204{bottom:208.089067pt;}
.y18{bottom:209.079800pt;}
.y132{bottom:209.448667pt;}
.y298{bottom:209.659867pt;}
.y1a{bottom:214.413733pt;}
.y84{bottom:217.112000pt;}
.y1ef{bottom:217.112667pt;}
.y3d{bottom:217.113467pt;}
.y1c4{bottom:217.114933pt;}
.y162{bottom:217.116400pt;}
.y65{bottom:217.117867pt;}
.ya7{bottom:217.118000pt;}
.y10a{bottom:217.120000pt;}
.y2eb{bottom:217.121333pt;}
.y2c9{bottom:217.129333pt;}
.y271{bottom:217.129600pt;}
.yeb{bottom:217.130667pt;}
.y1ad{bottom:217.131067pt;}
.y13f{bottom:217.132000pt;}
.y2e0{bottom:219.331333pt;}
.y189{bottom:220.640000pt;}
.y30c{bottom:220.666800pt;}
.ycd{bottom:221.220667pt;}
.y24b{bottom:221.224667pt;}
.y224{bottom:223.207467pt;}
.y203{bottom:223.423067pt;}
.y131{bottom:224.782667pt;}
.y2b4{bottom:224.792933pt;}
.y297{bottom:224.993867pt;}
.y17{bottom:227.746667pt;}
.y83{bottom:232.446000pt;}
.y1ee{bottom:232.446667pt;}
.y3c{bottom:232.447467pt;}
.y1c3{bottom:232.448933pt;}
.y161{bottom:232.450400pt;}
.y64{bottom:232.451867pt;}
.ya6{bottom:232.452000pt;}
.y109{bottom:232.454000pt;}
.y2ea{bottom:232.455333pt;}
.y2c8{bottom:232.463333pt;}
.y270{bottom:232.463600pt;}
.yea{bottom:232.464667pt;}
.y1ac{bottom:232.465067pt;}
.y13e{bottom:232.466000pt;}
.y2df{bottom:234.665333pt;}
.y30b{bottom:234.666667pt;}
.ycc{bottom:236.554667pt;}
.y24a{bottom:236.558667pt;}
.y223{bottom:238.541467pt;}
.y202{bottom:238.757067pt;}
.y130{bottom:240.116667pt;}
.y2b3{bottom:240.126933pt;}
.y296{bottom:240.327867pt;}
.y82{bottom:247.780000pt;}
.y1ed{bottom:247.780667pt;}
.y3b{bottom:247.781467pt;}
.y1c2{bottom:247.782933pt;}
.y160{bottom:247.784400pt;}
.y63{bottom:247.785867pt;}
.ya5{bottom:247.786000pt;}
.y108{bottom:247.788000pt;}
.y2e9{bottom:247.789333pt;}
.y2c7{bottom:247.797333pt;}
.y26f{bottom:247.797600pt;}
.ye9{bottom:247.798667pt;}
.y1ab{bottom:247.799067pt;}
.y1d{bottom:249.080000pt;}
.y30a{bottom:249.800000pt;}
.y2de{bottom:249.999333pt;}
.ycb{bottom:251.888667pt;}
.y249{bottom:251.892667pt;}
.y222{bottom:253.875467pt;}
.y201{bottom:254.091067pt;}
.y12f{bottom:255.450667pt;}
.y295{bottom:255.661867pt;}
.y81{bottom:263.114000pt;}
.y1ec{bottom:263.114667pt;}
.y3a{bottom:263.115467pt;}
.y1c1{bottom:263.116933pt;}
.y15f{bottom:263.118400pt;}
.ya4{bottom:263.120000pt;}
.y107{bottom:263.122000pt;}
.y2e8{bottom:263.123333pt;}
.y188{bottom:263.130667pt;}
.y2c6{bottom:263.131333pt;}
.y26e{bottom:263.131600pt;}
.ye8{bottom:263.132667pt;}
.y1aa{bottom:263.133067pt;}
.y309{bottom:263.800000pt;}
.y2dd{bottom:265.316933pt;}
.y248{bottom:267.210400pt;}
.yca{bottom:267.222667pt;}
.y221{bottom:269.209467pt;}
.y12e{bottom:270.784667pt;}
.y62{bottom:270.786133pt;}
.y294{bottom:270.995867pt;}
.y200{bottom:276.984267pt;}
.y80{bottom:278.448000pt;}
.y1eb{bottom:278.448667pt;}
.y39{bottom:278.449467pt;}
.y1c0{bottom:278.450933pt;}
.y15e{bottom:278.452400pt;}
.ya3{bottom:278.454000pt;}
.y106{bottom:278.456000pt;}
.ye7{bottom:278.457333pt;}
.y2b2{bottom:278.459733pt;}
.y187{bottom:278.464667pt;}
.y2c5{bottom:278.465333pt;}
.y26d{bottom:278.465600pt;}
.y1a9{bottom:278.467067pt;}
.y308{bottom:278.933333pt;}
.y2dc{bottom:280.650933pt;}
.y247{bottom:282.544400pt;}
.yc9{bottom:282.556667pt;}
.y220{bottom:284.543467pt;}
.y12d{bottom:286.118667pt;}
.y293{bottom:286.329867pt;}
.y7f{bottom:293.782000pt;}
.y1ea{bottom:293.782667pt;}
.y38{bottom:293.783467pt;}
.y1bf{bottom:293.784933pt;}
.y15d{bottom:293.786400pt;}
.ya2{bottom:293.788000pt;}
.y105{bottom:293.790000pt;}
.ye6{bottom:293.791333pt;}
.y2b1{bottom:293.793733pt;}
.y186{bottom:293.798667pt;}
.y2c4{bottom:293.799333pt;}
.y26c{bottom:293.799600pt;}
.y1a8{bottom:293.801067pt;}
.y307{bottom:294.066667pt;}
.y2db{bottom:295.984933pt;}
.y246{bottom:297.878400pt;}
.yc8{bottom:297.890667pt;}
.y21f{bottom:299.877467pt;}
.y12c{bottom:301.452667pt;}
.y292{bottom:301.663867pt;}
.y1ff{bottom:305.544667pt;}
.y7e{bottom:309.116000pt;}
.y1e9{bottom:309.116667pt;}
.y37{bottom:309.117467pt;}
.y61{bottom:309.118933pt;}
.y15c{bottom:309.120400pt;}
.ya1{bottom:309.122000pt;}
.y104{bottom:309.124000pt;}
.ye5{bottom:309.125333pt;}
.y2b0{bottom:309.127733pt;}
.y185{bottom:309.132667pt;}
.y26b{bottom:309.133600pt;}
.y1a7{bottom:309.135067pt;}
.y306{bottom:309.200000pt;}
.y2da{bottom:311.318933pt;}
.y245{bottom:313.212400pt;}
.yc7{bottom:313.224667pt;}
.y21e{bottom:315.211467pt;}
.y12b{bottom:316.786667pt;}
.y291{bottom:316.997867pt;}
.yf{bottom:320.213333pt;}
.y305{bottom:323.200000pt;}
.y7d{bottom:324.450000pt;}
.y1e8{bottom:324.450667pt;}
.y36{bottom:324.451467pt;}
.y60{bottom:324.452933pt;}
.y15b{bottom:324.454400pt;}
.ya0{bottom:324.456000pt;}
.y184{bottom:324.456667pt;}
.y103{bottom:324.458000pt;}
.ye4{bottom:324.459333pt;}
.y2af{bottom:324.461733pt;}
.y26a{bottom:324.467600pt;}
.y1a6{bottom:324.469067pt;}
.y2d9{bottom:326.652933pt;}
.y244{bottom:328.546400pt;}
.yc6{bottom:328.558667pt;}
.y21d{bottom:330.545467pt;}
.y12a{bottom:332.120667pt;}
.y290{bottom:332.331867pt;}
.y304{bottom:338.333333pt;}
.y7c{bottom:339.784000pt;}
.y1e7{bottom:339.784667pt;}
.y35{bottom:339.785467pt;}
.y5f{bottom:339.786933pt;}
.y15a{bottom:339.788400pt;}
.y9f{bottom:339.790000pt;}
.y183{bottom:339.790667pt;}
.y102{bottom:339.792000pt;}
.ye3{bottom:339.793333pt;}
.y2ae{bottom:339.795733pt;}
.y269{bottom:339.801600pt;}
.y1a5{bottom:339.803067pt;}
.ye{bottom:340.213267pt;}
.y243{bottom:343.880400pt;}
.yc5{bottom:343.892667pt;}
.y21c{bottom:345.879467pt;}
.y129{bottom:347.454667pt;}
.y28f{bottom:347.665867pt;}
.y2d8{bottom:349.653200pt;}
.y303{bottom:352.333333pt;}
.yd{bottom:353.546200pt;}
.y7b{bottom:355.118000pt;}
.y1e6{bottom:355.118667pt;}
.y34{bottom:355.119467pt;}
.y5e{bottom:355.120933pt;}
.y159{bottom:355.122400pt;}
.y9e{bottom:355.124000pt;}
.y182{bottom:355.124667pt;}
.y101{bottom:355.126000pt;}
.ye2{bottom:355.127333pt;}
.y2ad{bottom:355.129733pt;}
.y268{bottom:355.135600pt;}
.y1a4{bottom:355.137067pt;}
.yc4{bottom:359.214400pt;}
.y21b{bottom:361.213467pt;}
.y128{bottom:362.788667pt;}
.y28e{bottom:362.999867pt;}
.y302{bottom:366.333333pt;}
.y7a{bottom:370.452000pt;}
.y1e5{bottom:370.452667pt;}
.y33{bottom:370.453467pt;}
.y5d{bottom:370.454933pt;}
.y158{bottom:370.456400pt;}
.y9d{bottom:370.458000pt;}
.y181{bottom:370.458667pt;}
.y100{bottom:370.460000pt;}
.ye1{bottom:370.461333pt;}
.y2ac{bottom:370.463733pt;}
.y267{bottom:370.469600pt;}
.y1a3{bottom:370.471067pt;}
.yc3{bottom:374.548400pt;}
.y21a{bottom:376.547467pt;}
.y127{bottom:378.122667pt;}
.y28d{bottom:378.333867pt;}
.yc{bottom:380.213333pt;}
.y301{bottom:380.333333pt;}
.y79{bottom:385.786000pt;}
.y1e4{bottom:385.786667pt;}
.y32{bottom:385.787467pt;}
.y5c{bottom:385.788933pt;}
.y157{bottom:385.790400pt;}
.y9c{bottom:385.792000pt;}
.y180{bottom:385.792667pt;}
.yff{bottom:385.794000pt;}
.ye0{bottom:385.795333pt;}
.y2ab{bottom:385.797733pt;}
.y266{bottom:385.803600pt;}
.y1a2{bottom:385.805067pt;}
.yc2{bottom:389.882400pt;}
.y219{bottom:391.881467pt;}
.y126{bottom:393.456667pt;}
.y28c{bottom:393.667867pt;}
.y300{bottom:394.333467pt;}
.y78{bottom:401.120000pt;}
.y1e3{bottom:401.120667pt;}
.y31{bottom:401.121467pt;}
.y5b{bottom:401.122933pt;}
.y156{bottom:401.124400pt;}
.y9b{bottom:401.126000pt;}
.y17f{bottom:401.126667pt;}
.yfe{bottom:401.128000pt;}
.ydf{bottom:401.129333pt;}
.y2aa{bottom:401.131733pt;}
.y265{bottom:401.137600pt;}
.yc1{bottom:405.216400pt;}
.y218{bottom:407.215467pt;}
.y125{bottom:408.790667pt;}
.y1a1{bottom:408.805333pt;}
.y28b{bottom:409.001867pt;}
.y2ff{bottom:409.853467pt;}
.yb{bottom:412.214667pt;}
.y77{bottom:416.454000pt;}
.y1e2{bottom:416.454667pt;}
.y30{bottom:416.455467pt;}
.y5a{bottom:416.456933pt;}
.y155{bottom:416.458400pt;}
.y9a{bottom:416.460000pt;}
.y17e{bottom:416.460667pt;}
.yfd{bottom:416.462000pt;}
.yde{bottom:416.463333pt;}
.y2a9{bottom:416.465733pt;}
.y264{bottom:416.471600pt;}
.yc0{bottom:420.550400pt;}
.y217{bottom:422.549467pt;}
.y2fe{bottom:423.853467pt;}
.y124{bottom:424.124667pt;}
.y28a{bottom:424.335867pt;}
.ya{bottom:425.547600pt;}
.y76{bottom:431.788000pt;}
.y1e1{bottom:431.788667pt;}
.y2f{bottom:431.789467pt;}
.y59{bottom:431.790933pt;}
.y154{bottom:431.792400pt;}
.y99{bottom:431.794000pt;}
.y17d{bottom:431.794667pt;}
.yfc{bottom:431.796000pt;}
.ydd{bottom:431.797333pt;}
.y2a8{bottom:431.799733pt;}
.y263{bottom:431.805600pt;}
.ybf{bottom:435.884400pt;}
.y216{bottom:437.883467pt;}
.y2fd{bottom:439.360133pt;}
.y123{bottom:439.458667pt;}
.y289{bottom:439.669867pt;}
.y242{bottom:443.550667pt;}
.y9{bottom:445.547000pt;}
.y75{bottom:447.122000pt;}
.y1e0{bottom:447.122667pt;}
.y2e{bottom:447.123467pt;}
.y58{bottom:447.124933pt;}
.y153{bottom:447.126400pt;}
.y98{bottom:447.128000pt;}
.y17c{bottom:447.128667pt;}
.yfb{bottom:447.130000pt;}
.ydc{bottom:447.131333pt;}
.y2a7{bottom:447.133733pt;}
.y1a0{bottom:447.138133pt;}
.y262{bottom:447.139600pt;}
.ybe{bottom:451.218400pt;}
.y215{bottom:453.217467pt;}
.y2fc{bottom:453.360000pt;}
.y1f6{bottom:454.791200pt;}
.y122{bottom:454.792667pt;}
.y288{bottom:455.003867pt;}
.y8{bottom:458.879933pt;}
.y241{bottom:458.884667pt;}
.y74{bottom:462.456000pt;}
.y1df{bottom:462.456667pt;}
.y2d{bottom:462.457467pt;}
.y1be{bottom:462.458933pt;}
.y152{bottom:462.460400pt;}
.y97{bottom:462.462000pt;}
.y17b{bottom:462.462667pt;}
.yfa{bottom:462.464000pt;}
.ydb{bottom:462.465333pt;}
.y2a6{bottom:462.467733pt;}
.y19f{bottom:462.470667pt;}
.y261{bottom:462.473600pt;}
.ybd{bottom:466.552400pt;}
.y214{bottom:468.551467pt;}
.y2fb{bottom:468.866667pt;}
.y57{bottom:470.125200pt;}
.y121{bottom:470.126667pt;}
.y287{bottom:470.337867pt;}
.y7{bottom:472.212867pt;}
.y73{bottom:477.790000pt;}
.y1de{bottom:477.790667pt;}
.y2c{bottom:477.791467pt;}
.y1bd{bottom:477.792933pt;}
.y151{bottom:477.794400pt;}
.y96{bottom:477.796000pt;}
.y17a{bottom:477.796667pt;}
.yf9{bottom:477.798000pt;}
.yda{bottom:477.799333pt;}
.y19e{bottom:477.803200pt;}
.y260{bottom:477.806133pt;}
.ybc{bottom:481.886400pt;}
.y213{bottom:483.885467pt;}
.y2fa{bottom:484.386667pt;}
.y120{bottom:485.460667pt;}
.y2a5{bottom:485.468000pt;}
.y286{bottom:485.671867pt;}
.y72{bottom:493.124000pt;}
.y1dd{bottom:493.124667pt;}
.y2b{bottom:493.125467pt;}
.y1bc{bottom:493.126933pt;}
.y150{bottom:493.128400pt;}
.y95{bottom:493.130000pt;}
.y179{bottom:493.130667pt;}
.yf8{bottom:493.132000pt;}
.y2e7{bottom:493.132800pt;}
.y19d{bottom:493.135733pt;}
.y25f{bottom:493.138667pt;}
.ybb{bottom:497.220400pt;}
.y2f9{bottom:498.386667pt;}
.y6{bottom:498.880000pt;}
.y212{bottom:499.219467pt;}
.y11f{bottom:500.794667pt;}
.y285{bottom:501.005867pt;}
.y56{bottom:508.458000pt;}
.y1dc{bottom:508.458667pt;}
.y2a{bottom:508.459467pt;}
.y240{bottom:508.460933pt;}
.y14f{bottom:508.462400pt;}
.y94{bottom:508.464000pt;}
.y178{bottom:508.464667pt;}
.yf7{bottom:508.466000pt;}
.y2e6{bottom:508.466800pt;}
.y19c{bottom:508.468267pt;}
.y25e{bottom:508.471200pt;}
.yba{bottom:512.554400pt;}
.y2f8{bottom:513.893333pt;}
.y211{bottom:514.553467pt;}
.y1bb{bottom:516.127200pt;}
.y11e{bottom:516.128667pt;}
.y284{bottom:516.339867pt;}
.y55{bottom:523.792000pt;}
.y1db{bottom:523.792667pt;}
.y29{bottom:523.793467pt;}
.y23f{bottom:523.794933pt;}
.y14e{bottom:523.796400pt;}
.y93{bottom:523.798000pt;}
.y177{bottom:523.798667pt;}
.y19b{bottom:523.800800pt;}
.y25d{bottom:523.803733pt;}
.yb9{bottom:527.888400pt;}
.y210{bottom:529.887467pt;}
.y11d{bottom:531.462667pt;}
.y283{bottom:531.673867pt;}
.y2f7{bottom:535.554667pt;}
.y54{bottom:539.126000pt;}
.y1da{bottom:539.126667pt;}
.y28{bottom:539.127467pt;}
.y23e{bottom:539.128933pt;}
.y14d{bottom:539.130400pt;}
.y92{bottom:539.132000pt;}
.y176{bottom:539.132667pt;}
.y19a{bottom:539.133333pt;}
.y25c{bottom:539.136267pt;}
.yb8{bottom:543.222400pt;}
.y11c{bottom:546.796667pt;}
.y282{bottom:547.007867pt;}
.y53{bottom:554.460000pt;}
.y1d9{bottom:554.460667pt;}
.y27{bottom:554.461467pt;}
.y175{bottom:554.462000pt;}
.y23d{bottom:554.462933pt;}
.y14c{bottom:554.464400pt;}
.y199{bottom:554.465867pt;}
.y91{bottom:554.466000pt;}
.y25b{bottom:554.468800pt;}
.y20f{bottom:554.674133pt;}
.yb7{bottom:558.556400pt;}
.y11b{bottom:562.130667pt;}
.y281{bottom:562.341867pt;}
.y52{bottom:569.794000pt;}
.y1d8{bottom:569.794667pt;}
.y26{bottom:569.795467pt;}
.y174{bottom:569.796000pt;}
.y23c{bottom:569.796933pt;}
.y14b{bottom:569.798400pt;}
.y25a{bottom:569.801333pt;}
.yb6{bottom:573.890400pt;}
.y11a{bottom:577.464667pt;}
.y280{bottom:577.675867pt;}
.y51{bottom:585.128000pt;}
.y1d7{bottom:585.128667pt;}
.y25{bottom:585.129467pt;}
.y173{bottom:585.130000pt;}
.y198{bottom:585.130933pt;}
.y259{bottom:585.133867pt;}
.yb5{bottom:589.224400pt;}
.y2c3{bottom:592.797200pt;}
.y119{bottom:592.798667pt;}
.y27f{bottom:593.009867pt;}
.y50{bottom:600.462000pt;}
.y1d6{bottom:600.462667pt;}
.y24{bottom:600.463467pt;}
.y172{bottom:600.464000pt;}
.y23b{bottom:600.464933pt;}
.y258{bottom:600.466400pt;}
.yb4{bottom:604.558400pt;}
.y118{bottom:608.132667pt;}
.y27e{bottom:608.343867pt;}
.y5{bottom:615.293467pt;}
.y4f{bottom:615.796000pt;}
.y1d5{bottom:615.796667pt;}
.y23{bottom:615.797467pt;}
.y171{bottom:615.798000pt;}
.y23a{bottom:615.798933pt;}
.y31f{bottom:619.253467pt;}
.y117{bottom:623.463733pt;}
.yb3{bottom:627.558667pt;}
.y4{bottom:628.626667pt;}
.y4e{bottom:631.130000pt;}
.y1d4{bottom:631.130667pt;}
.y22{bottom:631.131467pt;}
.y170{bottom:631.132000pt;}
.y239{bottom:631.132933pt;}
.y27d{bottom:631.344133pt;}
.y31e{bottom:634.386800pt;}
.y116{bottom:638.797733pt;}
.y3{bottom:645.293333pt;}
.y4d{bottom:646.464000pt;}
.y1d3{bottom:646.464667pt;}
.y21{bottom:646.465467pt;}
.y16f{bottom:646.466000pt;}
.y31d{bottom:648.386667pt;}
.y115{bottom:654.131733pt;}
.y238{bottom:654.133200pt;}
.y2{bottom:661.293333pt;}
.y4c{bottom:661.798000pt;}
.y1d2{bottom:661.798667pt;}
.y20{bottom:661.799467pt;}
.y31c{bottom:663.520133pt;}
.y114{bottom:669.465733pt;}
.y4b{bottom:677.132000pt;}
.y1d1{bottom:677.132667pt;}
.y1f{bottom:677.133467pt;}
.y31b{bottom:678.653333pt;}
.y113{bottom:684.799733pt;}
.y4a{bottom:692.466000pt;}
.y31a{bottom:693.800000pt;}
.y1{bottom:701.293333pt;}
.y1e{bottom:707.800000pt;}
.y10{bottom:749.426667pt;}
.h5{height:45.525333pt;}
.h3{height:51.216000pt;}
.h13{height:52.032000pt;}
.h4{height:54.061333pt;}
.h20{height:56.906667pt;}
.h22{height:56.907200pt;}
.h23{height:57.812800pt;}
.h1f{height:57.813333pt;}
.h21{height:57.813867pt;}
.h6{height:62.597333pt;}
.h1e{height:62.599467pt;}
.h15{height:62.600000pt;}
.h17{height:62.602667pt;}
.h9{height:62.605333pt;}
.hf{height:62.609067pt;}
.h11{height:62.616000pt;}
.ha{height:62.621333pt;}
.hc{height:62.628800pt;}
.he{height:62.629333pt;}
.hd{height:62.634667pt;}
.h12{height:62.637333pt;}
.hb{height:62.646400pt;}
.h1b{height:62.649067pt;}
.h18{height:62.662400pt;}
.h1d{height:62.662933pt;}
.h8{height:62.664533pt;}
.h10{height:62.677333pt;}
.h1c{height:62.678933pt;}
.h19{height:62.680533pt;}
.h16{height:62.688000pt;}
.h1a{height:62.698667pt;}
.h14{height:62.700800pt;}
.h7{height:63.594667pt;}
.h2{height:68.288000pt;}
.h1{height:91.050667pt;}
.h0{height:777.333333pt;}
.w0{width:501.333333pt;}
.x0{left:0.000000pt;}
.x1{left:38.400000pt;}
.x6{left:47.960400pt;}
.x3{left:51.733200pt;}
.xa{left:58.146133pt;}
.xb{left:64.146267pt;}
.x4{left:65.066400pt;}
.x7{left:103.920467pt;}
.x5{left:165.666667pt;}
.x9{left:233.360000pt;}
.x8{left:266.400867pt;}
.x2{left:368.226667pt;}
}




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