
    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_13694f3f33914be5d529566e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115000;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_091bcd9130fe4b13e1fd8948.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_e8e53e2fa35892424d00fda2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.802200px;}
.ls7a{letter-spacing:-2.290200px;}
.lsc9{letter-spacing:-2.040000px;}
.ls47{letter-spacing:-1.683000px;}
.ls5e{letter-spacing:-1.623600px;}
.ls84{letter-spacing:-1.511400px;}
.ls76{letter-spacing:-1.506600px;}
.ls4a{letter-spacing:-1.452000px;}
.ls69{letter-spacing:-1.445400px;}
.ls85{letter-spacing:-1.392600px;}
.ls23{letter-spacing:-1.386000px;}
.ls79{letter-spacing:-1.382400px;}
.ls83{letter-spacing:-1.379400px;}
.ls7b{letter-spacing:-1.326600px;}
.ls73{letter-spacing:-1.267200px;}
.ls39{letter-spacing:-1.207800px;}
.ls98{letter-spacing:-1.152000px;}
.ls72{letter-spacing:-1.148400px;}
.lsa0{letter-spacing:-1.085400px;}
.ls62{letter-spacing:-1.082400px;}
.ls6b{letter-spacing:-1.075800px;}
.ls22{letter-spacing:-1.023000px;}
.ls9f{letter-spacing:-1.016400px;}
.ls3d{letter-spacing:-0.983400px;}
.ls48{letter-spacing:-0.970200px;}
.ls61{letter-spacing:-0.963600px;}
.ls93{letter-spacing:-0.957000px;}
.ls46{letter-spacing:-0.910800px;}
.ls4b{letter-spacing:-0.904200px;}
.lsc6{letter-spacing:-0.864000px;}
.lsc8{letter-spacing:-0.846000px;}
.ls35{letter-spacing:-0.844800px;}
.lsc7{letter-spacing:-0.841500px;}
.ls6a{letter-spacing:-0.805200px;}
.ls3a{letter-spacing:-0.792000px;}
.ls3e{letter-spacing:-0.785400px;}
.lsc1{letter-spacing:-0.729000px;}
.ls70{letter-spacing:-0.726000px;}
.ls28{letter-spacing:-0.723900px;}
.lsc2{letter-spacing:-0.720000px;}
.ls87{letter-spacing:-0.719400px;}
.ls6c{letter-spacing:-0.718200px;}
.lsd0{letter-spacing:-0.714000px;}
.lsc3{letter-spacing:-0.711000px;}
.ls68{letter-spacing:-0.673200px;}
.lsa7{letter-spacing:-0.672000px;}
.ls49{letter-spacing:-0.666600px;}
.ls8a{letter-spacing:-0.666000px;}
.ls6d{letter-spacing:-0.664200px;}
.lsa8{letter-spacing:-0.660000px;}
.ls8d{letter-spacing:-0.612000px;}
.ls5d{letter-spacing:-0.607200px;}
.ls8e{letter-spacing:-0.606000px;}
.ls8f{letter-spacing:-0.604800px;}
.lsa5{letter-spacing:-0.554400px;}
.ls36{letter-spacing:-0.547800px;}
.ls78{letter-spacing:-0.545400px;}
.lsab{letter-spacing:-0.495000px;}
.ls90{letter-spacing:-0.492000px;}
.ls7c{letter-spacing:-0.488400px;}
.lsce{letter-spacing:-0.486000px;}
.ls82{letter-spacing:-0.481800px;}
.ls5f{letter-spacing:-0.435600px;}
.lsd3{letter-spacing:-0.432000px;}
.ls53{letter-spacing:-0.429000px;}
.ls38{letter-spacing:-0.422400px;}
.ls3b{letter-spacing:-0.369600px;}
.ls77{letter-spacing:-0.367200px;}
.lscc{letter-spacing:-0.366000px;}
.lscb{letter-spacing:-0.364500px;}
.ls71{letter-spacing:-0.363000px;}
.lsca{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.310200px;}
.ls25{letter-spacing:-0.307800px;}
.ls37{letter-spacing:-0.303600px;}
.ls74{letter-spacing:-0.302400px;}
.lsac{letter-spacing:-0.297000px;}
.ls88{letter-spacing:-0.250800px;}
.ls27{letter-spacing:-0.245100px;}
.ls54{letter-spacing:-0.244200px;}
.ls92{letter-spacing:-0.237600px;}
.ls86{letter-spacing:-0.198000px;}
.ls7e{letter-spacing:-0.194400px;}
.ls4c{letter-spacing:-0.191400px;}
.lsf{letter-spacing:-0.188100px;}
.ls60{letter-spacing:-0.184800px;}
.ls3f{letter-spacing:-0.132000px;}
.lsa2{letter-spacing:-0.129600px;}
.ls44{letter-spacing:-0.125400px;}
.ls7f{letter-spacing:-0.124200px;}
.ls80{letter-spacing:-0.118800px;}
.lsd1{letter-spacing:-0.090000px;}
.lsc5{letter-spacing:-0.081000px;}
.ls34{letter-spacing:-0.072600px;}
.ls89{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.068400px;}
.ls24{letter-spacing:-0.066000px;}
.lsa1{letter-spacing:-0.064800px;}
.lsd2{letter-spacing:-0.063000px;}
.lscf{letter-spacing:-0.031500px;}
.ls7d{letter-spacing:-0.024000px;}
.lsa6{letter-spacing:-0.019800px;}
.ls13{letter-spacing:-0.019200px;}
.ls8b{letter-spacing:-0.018000px;}
.ls29{letter-spacing:-0.017100px;}
.ls75{letter-spacing:-0.016200px;}
.ls15{letter-spacing:-0.014400px;}
.lsbf{letter-spacing:-0.013500px;}
.ls33{letter-spacing:-0.013200px;}
.ls55{letter-spacing:-0.012000px;}
.ls17{letter-spacing:-0.010800px;}
.ls14{letter-spacing:-0.009600px;}
.lsc0{letter-spacing:-0.009000px;}
.ls21{letter-spacing:-0.006600px;}
.ls56{letter-spacing:-0.006000px;}
.ls10{letter-spacing:-0.005700px;}
.ls16{letter-spacing:-0.005400px;}
.ls12{letter-spacing:-0.004800px;}
.lscd{letter-spacing:-0.004500px;}
.lse{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.006600px;}
.ls2d{letter-spacing:0.013200px;}
.lsb7{letter-spacing:0.045000px;}
.ls5b{letter-spacing:0.046200px;}
.ls9d{letter-spacing:0.048600px;}
.ls18{letter-spacing:0.052800px;}
.ls97{letter-spacing:0.054000px;}
.ls50{letter-spacing:0.059400px;}
.lsb6{letter-spacing:0.060000px;}
.ls99{letter-spacing:0.099000px;}
.ls6e{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.112200px;}
.ls94{letter-spacing:0.113400px;}
.ls0{letter-spacing:0.114000px;}
.ls41{letter-spacing:0.118800px;}
.lsaf{letter-spacing:0.120000px;}
.ls45{letter-spacing:0.165000px;}
.lsae{letter-spacing:0.166500px;}
.lsb8{letter-spacing:0.171000px;}
.ls58{letter-spacing:0.171600px;}
.ls95{letter-spacing:0.172800px;}
.lsb1{letter-spacing:0.174000px;}
.lsb0{letter-spacing:0.175500px;}
.ls57{letter-spacing:0.178200px;}
.lsad{letter-spacing:0.180000px;}
.ls6f{letter-spacing:0.224400px;}
.lsbe{letter-spacing:0.228000px;}
.lsb3{letter-spacing:0.229500px;}
.ls1a{letter-spacing:0.231000px;}
.ls2e{letter-spacing:0.237600px;}
.lsb2{letter-spacing:0.240000px;}
.ls64{letter-spacing:0.264000px;}
.ls19{letter-spacing:0.290400px;}
.lsc{letter-spacing:0.290700px;}
.ls1e{letter-spacing:0.296400px;}
.ls5c{letter-spacing:0.297000px;}
.lsbb{letter-spacing:0.300000px;}
.ls63{letter-spacing:0.303600px;}
.ls65{letter-spacing:0.323400px;}
.lsbc{letter-spacing:0.346500px;}
.ls20{letter-spacing:0.347700px;}
.ls43{letter-spacing:0.349800px;}
.ls4{letter-spacing:0.353400px;}
.lsbd{letter-spacing:0.354000px;}
.ls1c{letter-spacing:0.356400px;}
.ls67{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.409200px;}
.ls96{letter-spacing:0.414000px;}
.ls2b{letter-spacing:0.415800px;}
.ls7{letter-spacing:0.416100px;}
.ls32{letter-spacing:0.464400px;}
.ls1{letter-spacing:0.473100px;}
.ls31{letter-spacing:0.475200px;}
.ls9b{letter-spacing:0.481800px;}
.ls6{letter-spacing:0.513000px;}
.lsaa{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.530100px;}
.ls40{letter-spacing:0.534600px;}
.ls2{letter-spacing:0.535800px;}
.lsa3{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.541500px;}
.lsd{letter-spacing:0.592800px;}
.ls4f{letter-spacing:0.594000px;}
.lsba{letter-spacing:0.600000px;}
.lsb9{letter-spacing:0.607500px;}
.lsb5{letter-spacing:0.648000px;}
.ls4e{letter-spacing:0.653400px;}
.ls9{letter-spacing:0.655500px;}
.lsb4{letter-spacing:0.660000px;}
.lsc4{letter-spacing:0.661500px;}
.ls3{letter-spacing:0.712500px;}
.ls91{letter-spacing:0.712800px;}
.ls5{letter-spacing:0.718200px;}
.ls8c{letter-spacing:0.762000px;}
.ls4d{letter-spacing:0.765600px;}
.ls81{letter-spacing:0.772200px;}
.ls5a{letter-spacing:0.831600px;}
.ls9e{letter-spacing:0.837000px;}
.ls2c{letter-spacing:0.891000px;}
.lsd5{letter-spacing:0.894000px;}
.lsb{letter-spacing:0.894900px;}
.lsd4{letter-spacing:0.900000px;}
.ls59{letter-spacing:0.950400px;}
.lsa4{letter-spacing:0.957000px;}
.ls1f{letter-spacing:1.008900px;}
.ls42{letter-spacing:1.009800px;}
.lsa9{letter-spacing:1.016400px;}
.ls66{letter-spacing:1.135200px;}
.ls52{letter-spacing:1.188000px;}
.lsa{letter-spacing:1.191300px;}
.ls51{letter-spacing:1.432200px;}
.ls9c{letter-spacing:15.720000px;}
.ls2a{letter-spacing:16.500000px;}
.ls1b{letter-spacing:17.040000px;}
.ls9a{letter-spacing:17.880000px;}
.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;}
}
.ws18{word-spacing:-16.823400px;}
.wsbe{word-spacing:-16.816800px;}
.ws92{word-spacing:-16.486800px;}
.ws85{word-spacing:-15.294000px;}
.wsd0{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.763000px;}
.ws0{word-spacing:-14.535000px;}
.ws2{word-spacing:-14.529300px;}
.ws1b{word-spacing:-14.232900px;}
.ws7a{word-spacing:-13.483800px;}
.wsfc{word-spacing:-12.141000px;}
.wsd5{word-spacing:-11.911500px;}
.wsd6{word-spacing:-11.898000px;}
.wse1{word-spacing:-11.857500px;}
.wse3{word-spacing:-11.844000px;}
.wse7{word-spacing:-11.596500px;}
.ws19{word-spacing:-11.550000px;}
.wscd{word-spacing:-11.479500px;}
.wsca{word-spacing:-11.430000px;}
.wscc{word-spacing:-11.425500px;}
.wsda{word-spacing:-11.421000px;}
.wsd7{word-spacing:-11.295000px;}
.wsd4{word-spacing:-11.250000px;}
.wsdf{word-spacing:-11.245500px;}
.wscf{word-spacing:-11.241000px;}
.wsce{word-spacing:-11.236500px;}
.wse4{word-spacing:-11.218500px;}
.wse6{word-spacing:-11.187000px;}
.wsd8{word-spacing:-11.169000px;}
.wsde{word-spacing:-10.885500px;}
.wse0{word-spacing:-10.755000px;}
.wsd3{word-spacing:-10.539000px;}
.wsd2{word-spacing:-10.530000px;}
.wsd1{word-spacing:-10.521000px;}
.wsd9{word-spacing:-10.408500px;}
.ws36{word-spacing:-0.838200px;}
.wsff{word-spacing:-0.810000px;}
.wsc2{word-spacing:-0.785400px;}
.ws1f{word-spacing:-0.778800px;}
.ws33{word-spacing:-0.772200px;}
.ws6{word-spacing:-0.723900px;}
.ws9a{word-spacing:-0.720000px;}
.ws23{word-spacing:-0.719400px;}
.wsf9{word-spacing:-0.714000px;}
.ws4f{word-spacing:-0.712800px;}
.ws10{word-spacing:-0.661200px;}
.ws49{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.658800px;}
.ws5{word-spacing:-0.655500px;}
.ws9b{word-spacing:-0.654000px;}
.ws57{word-spacing:-0.653400px;}
.ws97{word-spacing:-0.646800px;}
.ws3d{word-spacing:-0.620400px;}
.wsa6{word-spacing:-0.607200px;}
.ws6d{word-spacing:-0.600600px;}
.wsb9{word-spacing:-0.599400px;}
.ws99{word-spacing:-0.594000px;}
.ws2d{word-spacing:-0.592800px;}
.wsc8{word-spacing:-0.547800px;}
.wsb{word-spacing:-0.541500px;}
.ws1e{word-spacing:-0.541200px;}
.ws78{word-spacing:-0.540000px;}
.ws4d{word-spacing:-0.534600px;}
.wsb3{word-spacing:-0.528000px;}
.ws77{word-spacing:-0.486000px;}
.ws4e{word-spacing:-0.481800px;}
.ws13{word-spacing:-0.478800px;}
.ws3b{word-spacing:-0.475200px;}
.ws8{word-spacing:-0.473100px;}
.ws90{word-spacing:-0.469800px;}
.ws37{word-spacing:-0.422400px;}
.wsa{word-spacing:-0.421800px;}
.ws8c{word-spacing:-0.420000px;}
.ws12{word-spacing:-0.416100px;}
.ws48{word-spacing:-0.415800px;}
.ws5b{word-spacing:-0.409200px;}
.ws8d{word-spacing:-0.402000px;}
.ws94{word-spacing:-0.363000px;}
.ws7f{word-spacing:-0.361800px;}
.ws28{word-spacing:-0.356400px;}
.wsf4{word-spacing:-0.354000px;}
.wsc5{word-spacing:-0.349800px;}
.ws3{word-spacing:-0.302100px;}
.wsf5{word-spacing:-0.300000px;}
.ws35{word-spacing:-0.297000px;}
.wsfa{word-spacing:-0.294000px;}
.wsb1{word-spacing:-0.290400px;}
.wsf6{word-spacing:-0.288000px;}
.ws4{word-spacing:-0.239400px;}
.ws69{word-spacing:-0.237600px;}
.ws4b{word-spacing:-0.231000px;}
.ws44{word-spacing:-0.224400px;}
.wsa8{word-spacing:-0.178200px;}
.wsd{word-spacing:-0.176700px;}
.ws70{word-spacing:-0.171600px;}
.ws72{word-spacing:-0.165000px;}
.wsa1{word-spacing:-0.120000px;}
.ws6c{word-spacing:-0.118800px;}
.wsa2{word-spacing:-0.064800px;}
.ws9c{word-spacing:-0.060000px;}
.ws98{word-spacing:-0.059400px;}
.wsee{word-spacing:-0.054000px;}
.ws3a{word-spacing:-0.052800px;}
.ws8f{word-spacing:-0.012000px;}
.wsc3{word-spacing:-0.006600px;}
.ws8e{word-spacing:-0.006000px;}
.ws15{word-spacing:-0.005700px;}
.ws65{word-spacing:-0.005400px;}
.wsc{word-spacing:0.000000px;}
.ws17{word-spacing:0.005400px;}
.ws2f{word-spacing:0.005700px;}
.ws64{word-spacing:0.006000px;}
.ws31{word-spacing:0.006600px;}
.ws63{word-spacing:0.012000px;}
.wsa3{word-spacing:0.018000px;}
.wsdc{word-spacing:0.036000px;}
.ws56{word-spacing:0.059400px;}
.wsf2{word-spacing:0.060000px;}
.ws84{word-spacing:0.064800px;}
.ws4c{word-spacing:0.066000px;}
.ws58{word-spacing:0.072600px;}
.wsf1{word-spacing:0.102000px;}
.wsa9{word-spacing:0.112200px;}
.ws41{word-spacing:0.118800px;}
.ws59{word-spacing:0.125400px;}
.wsb8{word-spacing:0.171600px;}
.wseb{word-spacing:0.174000px;}
.ws20{word-spacing:0.178200px;}
.wsed{word-spacing:0.180000px;}
.wsec{word-spacing:0.198000px;}
.ws42{word-spacing:0.231000px;}
.ws6f{word-spacing:0.237600px;}
.ws61{word-spacing:0.244200px;}
.ws73{word-spacing:0.290400px;}
.wsc4{word-spacing:0.297000px;}
.ws7c{word-spacing:0.303600px;}
.ws82{word-spacing:0.307800px;}
.ws24{word-spacing:0.356400px;}
.ws8a{word-spacing:0.363000px;}
.ws2c{word-spacing:0.364800px;}
.wsaf{word-spacing:0.366000px;}
.wsc7{word-spacing:0.415800px;}
.ws29{word-spacing:0.416100px;}
.wsba{word-spacing:0.421200px;}
.ws39{word-spacing:0.422400px;}
.wsfd{word-spacing:0.426000px;}
.ws32{word-spacing:0.481800px;}
.ws89{word-spacing:0.488400px;}
.ws75{word-spacing:0.534600px;}
.ws22{word-spacing:0.541200px;}
.ws96{word-spacing:0.547800px;}
.ws25{word-spacing:0.594000px;}
.wsfe{word-spacing:0.600000px;}
.ws55{word-spacing:0.600600px;}
.wsb4{word-spacing:0.658800px;}
.ws30{word-spacing:0.660000px;}
.ws11{word-spacing:0.661200px;}
.ws7b{word-spacing:0.666600px;}
.wsc1{word-spacing:0.712800px;}
.ws50{word-spacing:0.719400px;}
.wsf3{word-spacing:0.720000px;}
.ws60{word-spacing:0.726000px;}
.wsf8{word-spacing:0.732000px;}
.ws91{word-spacing:0.739200px;}
.ws45{word-spacing:0.772200px;}
.wsbb{word-spacing:0.777600px;}
.ws5f{word-spacing:0.778800px;}
.wse{word-spacing:0.780900px;}
.ws6e{word-spacing:0.838200px;}
.wsf0{word-spacing:0.840000px;}
.ws47{word-spacing:0.842400px;}
.ws16{word-spacing:0.843600px;}
.ws5c{word-spacing:0.844800px;}
.wsef{word-spacing:0.870000px;}
.wsa7{word-spacing:0.897600px;}
.wsf7{word-spacing:0.900000px;}
.ws95{word-spacing:0.904200px;}
.ws8b{word-spacing:0.957000px;}
.wsbc{word-spacing:0.961200px;}
.wsbd{word-spacing:1.015200px;}
.ws5d{word-spacing:1.016400px;}
.ws2b{word-spacing:1.020300px;}
.wsa4{word-spacing:1.023000px;}
.ws2e{word-spacing:1.026000px;}
.wsf{word-spacing:1.077300px;}
.wsae{word-spacing:1.080000px;}
.ws3c{word-spacing:1.082400px;}
.wsfb{word-spacing:1.134000px;}
.ws76{word-spacing:1.135200px;}
.ws83{word-spacing:1.139400px;}
.ws2a{word-spacing:1.140000px;}
.ws52{word-spacing:1.141800px;}
.ws62{word-spacing:1.194600px;}
.ws3e{word-spacing:1.201200px;}
.wsad{word-spacing:1.204200px;}
.wsc6{word-spacing:1.207800px;}
.ws3f{word-spacing:1.254000px;}
.wsac{word-spacing:1.258200px;}
.ws7{word-spacing:1.259700px;}
.ws38{word-spacing:1.260600px;}
.wsb0{word-spacing:1.263600px;}
.wsea{word-spacing:1.266000px;}
.ws67{word-spacing:1.267200px;}
.wse9{word-spacing:1.290000px;}
.ws26{word-spacing:1.313400px;}
.ws9{word-spacing:1.316700px;}
.ws80{word-spacing:1.317600px;}
.ws43{word-spacing:1.320000px;}
.ws81{word-spacing:1.328400px;}
.ws66{word-spacing:1.366200px;}
.ws40{word-spacing:1.372800px;}
.ws1d{word-spacing:1.379400px;}
.ws7e{word-spacing:1.380000px;}
.ws71{word-spacing:1.386000px;}
.wsc9{word-spacing:1.392600px;}
.ws6a{word-spacing:1.432200px;}
.ws14{word-spacing:1.436400px;}
.ws46{word-spacing:1.438800px;}
.ws7d{word-spacing:1.440000px;}
.ws4a{word-spacing:1.445400px;}
.ws53{word-spacing:1.491600px;}
.ws68{word-spacing:1.498200px;}
.ws100{word-spacing:1.500000px;}
.ws6b{word-spacing:1.504800px;}
.wsb2{word-spacing:1.511400px;}
.ws5e{word-spacing:1.551000px;}
.ws34{word-spacing:1.557600px;}
.ws21{word-spacing:1.564200px;}
.wsa5{word-spacing:1.610400px;}
.ws51{word-spacing:1.617000px;}
.ws1c{word-spacing:1.623600px;}
.ws74{word-spacing:1.630200px;}
.wse5{word-spacing:3.150000px;}
.wsdd{word-spacing:3.330000px;}
.wse8{word-spacing:3.834000px;}
.wse2{word-spacing:4.596000px;}
.wsdb{word-spacing:4.935000px;}
.wscb{word-spacing:5.092500px;}
.ws54{word-spacing:5.398800px;}
.ws93{word-spacing:11.616000px;}
.ws9d{word-spacing:22.176000px;}
.ws86{word-spacing:30.732000px;}
.ws1a{word-spacing:35.760000px;}
.wsbf{word-spacing:47.772000px;}
.wsb5{word-spacing:53.232000px;}
.ws9f{word-spacing:89.580000px;}
.ws79{word-spacing:95.004000px;}
.wsc0{word-spacing:108.600000px;}
.wsb7{word-spacing:117.060000px;}
.ws87{word-spacing:130.860000px;}
.ws88{word-spacing:130.872000px;}
.ws9e{word-spacing:133.080000px;}
.wsb6{word-spacing:135.120000px;}
.wsa0{word-spacing:262.200000px;}
.wsaa{word-spacing:305.220000px;}
.wsab{word-spacing:305.232000px;}
.ws5a{word-spacing:499.740000px;}
._77{margin-left:-10.907100px;}
._10{margin-left:-8.692200px;}
._3{margin-left:-7.398600px;}
._a{margin-left:-6.237000px;}
._8{margin-left:-4.771500px;}
._5{margin-left:-3.590400px;}
._2{margin-left:-2.365500px;}
._0{margin-left:-1.214100px;}
._1{width:1.328100px;}
._76{width:7.867200px;}
._86{width:17.409600px;}
._85{width:18.667800px;}
._5f{width:30.967200px;}
._3f{width:35.478000px;}
._42{width:38.100000px;}
._4{width:47.721600px;}
._7{width:49.507200px;}
._11{width:50.760000px;}
._1f{width:65.592000px;}
._1e{width:67.152000px;}
._45{width:68.700000px;}
._3e{width:70.860000px;}
._88{width:78.463500px;}
._47{width:83.766000px;}
._87{width:84.792000px;}
._4f{width:89.640000px;}
._46{width:93.936000px;}
._4a{width:95.460000px;}
._49{width:98.700000px;}
._3a{width:99.918600px;}
._22{width:100.986000px;}
._4e{width:105.540000px;}
._40{width:108.618000px;}
._43{width:113.364000px;}
._79{width:116.737500px;}
._50{width:123.600000px;}
._20{width:126.366000px;}
._21{width:127.458000px;}
._78{width:129.192000px;}
._51{width:133.140000px;}
._4b{width:140.400000px;}
._2c{width:142.386000px;}
._16{width:145.116000px;}
._39{width:146.232600px;}
._52{width:149.040000px;}
._7e{width:150.120000px;}
._7b{width:153.148500px;}
._89{width:156.090600px;}
._41{width:162.498600px;}
._62{width:166.926000px;}
._81{width:167.977500px;}
._7a{width:169.765500px;}
._3c{width:173.760000px;}
._15{width:175.776000px;}
._3b{width:177.960000px;}
._80{width:179.040000px;}
._83{width:180.126000px;}
._7d{width:183.540000px;}
._63{width:184.626000px;}
._13{width:187.452000px;}
._14{width:191.712000px;}
._84{width:199.392000px;}
._25{width:203.760000px;}
._1b{width:205.116000px;}
._24{width:207.960000px;}
._3d{width:212.820000px;}
._82{width:214.146000px;}
._17{width:232.452000px;}
._18{width:236.712000px;}
._26{width:242.820000px;}
._59{width:247.690500px;}
._2d{width:249.660000px;}
._1a{width:250.776000px;}
._1c{width:262.452000px;}
._1d{width:266.712000px;}
._2a{width:272.820000px;}
._2f{width:276.777000px;}
._7c{width:283.080000px;}
._8d{width:290.122500px;}
._5c{width:293.427900px;}
._30{width:296.640000px;}
._55{width:307.206000px;}
._c{width:309.786000px;}
._8b{width:315.900000px;}
._6c{width:320.232000px;}
._8a{width:325.140000px;}
._7f{width:334.020000px;}
._57{width:337.206000px;}
._8c{width:342.745500px;}
._67{width:350.406000px;}
._6b{width:353.346000px;}
._56{width:359.004000px;}
._36{width:360.862500px;}
._23{width:363.720000px;}
._2b{width:366.840000px;}
._75{width:371.598600px;}
._65{width:380.400000px;}
._9{width:384.177600px;}
._2e{width:386.640000px;}
._29{width:395.880000px;}
._35{width:401.460000px;}
._28{width:411.720000px;}
._34{width:413.509500px;}
._74{width:419.911500px;}
._32{width:421.188000px;}
._27{width:427.620000px;}
._33{width:429.865500px;}
._31{width:433.620000px;}
._38{width:436.345500px;}
._37{width:457.680000px;}
._73{width:464.542500px;}
._12{width:465.792000px;}
._64{width:467.400000px;}
._b{width:474.846000px;}
._4c{width:479.652000px;}
._6d{width:490.320000px;}
._44{width:491.580000px;}
._6a{width:500.520000px;}
._60{width:517.686000px;}
._48{width:519.594000px;}
._f{width:523.380000px;}
._70{width:524.886000px;}
._69{width:529.560000px;}
._6f{width:535.140000px;}
._6e{width:537.312000px;}
._19{width:540.792000px;}
._68{width:545.400000px;}
._72{width:547.189500px;}
._e{width:553.380000px;}
._66{width:561.306000px;}
._71{width:563.545500px;}
._53{width:568.128000px;}
._d{width:598.380000px;}
._54{width:649.406100px;}
._61{width:674.778000px;}
._5b{width:679.406100px;}
._4d{width:690.546000px;}
._5a{width:695.161500px;}
._5e{width:739.128600px;}
._5d{width:740.161500px;}
._58{width:909.044100px;}
._6{width:1291.377600px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y232{bottom:37.103250px;}
.y210{bottom:37.109400px;}
.y181{bottom:37.119000px;}
.y267{bottom:37.602000px;}
.y1d0{bottom:37.610250px;}
.yf7{bottom:37.621800px;}
.y11a{bottom:37.664400px;}
.y3a{bottom:37.722600px;}
.y1db{bottom:37.723350px;}
.y140{bottom:37.738200px;}
.y78{bottom:37.738800px;}
.y244{bottom:37.814400px;}
.y14b{bottom:37.897500px;}
.ybf{bottom:37.914750px;}
.y28e{bottom:42.885000px;}
.ya3{bottom:46.228200px;}
.y231{bottom:51.352500px;}
.y20f{bottom:51.360000px;}
.y119{bottom:51.915000px;}
.y39{bottom:51.973200px;}
.y1da{bottom:51.973950px;}
.y13f{bottom:51.988800px;}
.y77{bottom:51.989400px;}
.y243{bottom:52.065000px;}
.y180{bottom:54.369750px;}
.y266{bottom:54.852750px;}
.y1cf{bottom:54.861000px;}
.yf6{bottom:54.872550px;}
.y14a{bottom:55.148250px;}
.ybe{bottom:55.165500px;}
.y28d{bottom:58.635000px;}
.ya2{bottom:63.478950px;}
.y230{bottom:65.601750px;}
.y38{bottom:66.223800px;}
.y1d9{bottom:66.224550px;}
.y13e{bottom:66.239400px;}
.y76{bottom:66.240000px;}
.y17f{bottom:71.620500px;}
.y265{bottom:72.103500px;}
.y1ce{bottom:72.111750px;}
.yf5{bottom:72.123300px;}
.y149{bottom:72.399000px;}
.ybd{bottom:72.416250px;}
.y1e{bottom:73.654650px;}
.y28c{bottom:74.385000px;}
.y242{bottom:74.820000px;}
.y1ab{bottom:75.990750px;}
.y22f{bottom:79.851000px;}
.y37{bottom:80.474400px;}
.y1d8{bottom:80.475150px;}
.y13d{bottom:80.490000px;}
.ya1{bottom:80.729700px;}
.y20e{bottom:86.369250px;}
.y1d{bottom:88.654200px;}
.y17e{bottom:88.871250px;}
.y264{bottom:89.354250px;}
.y118{bottom:89.357550px;}
.y1cd{bottom:89.362500px;}
.yf4{bottom:89.374050px;}
.y148{bottom:89.649750px;}
.ybc{bottom:89.667000px;}
.y28b{bottom:90.135000px;}
.y1aa{bottom:90.240000px;}
.y22e{bottom:94.101600px;}
.y36{bottom:94.725000px;}
.y241{bottom:95.070000px;}
.ya0{bottom:97.980450px;}
.y20d{bottom:103.593750px;}
.y28a{bottom:105.885000px;}
.y17d{bottom:106.122000px;}
.y263{bottom:106.605000px;}
.y117{bottom:106.608300px;}
.y1cc{bottom:106.613250px;}
.y75{bottom:106.620600px;}
.yf3{bottom:106.624800px;}
.y147{bottom:106.900500px;}
.ybb{bottom:106.917750px;}
.y22d{bottom:108.352200px;}
.y1c{bottom:109.654425px;}
.y1a9{bottom:112.995000px;}
.y1d7{bottom:115.047900px;}
.y9f{bottom:115.231200px;}
.y240{bottom:115.320000px;}
.y20c{bottom:120.844500px;}
.y289{bottom:121.635000px;}
.y22c{bottom:122.602800px;}
.y17c{bottom:123.372750px;}
.y262{bottom:123.855750px;}
.y116{bottom:123.859050px;}
.y1cb{bottom:123.864000px;}
.y74{bottom:123.871350px;}
.yf2{bottom:123.875550px;}
.y131{bottom:123.930300px;}
.y146{bottom:124.151250px;}
.yba{bottom:124.168500px;}
.y1b{bottom:124.653975px;}
.y1d6{bottom:132.298650px;}
.y9e{bottom:132.481950px;}
.y1a8{bottom:133.245000px;}
.y35{bottom:133.841250px;}
.y23f{bottom:135.570000px;}
.y22b{bottom:136.853400px;}
.y288{bottom:137.385000px;}
.y20b{bottom:138.095250px;}
.y1a{bottom:139.653525px;}
.y17b{bottom:140.623500px;}
.y261{bottom:141.106500px;}
.y115{bottom:141.109800px;}
.y1ca{bottom:141.114750px;}
.y73{bottom:141.122100px;}
.yf1{bottom:141.126300px;}
.y130{bottom:141.181050px;}
.y145{bottom:141.402000px;}
.yb9{bottom:141.419250px;}
.y1a7{bottom:148.995000px;}
.y1d5{bottom:149.549400px;}
.y9d{bottom:149.732700px;}
.y34{bottom:151.092000px;}
.y22a{bottom:151.104000px;}
.y287{bottom:153.135000px;}
.y19{bottom:154.653075px;}
.y20a{bottom:155.346000px;}
.y23e{bottom:155.820000px;}
.y17a{bottom:157.874250px;}
.y260{bottom:158.357250px;}
.y114{bottom:158.360550px;}
.y1c9{bottom:158.365500px;}
.y72{bottom:158.372850px;}
.yf0{bottom:158.377050px;}
.y12f{bottom:158.431800px;}
.y144{bottom:158.652750px;}
.yb8{bottom:158.670000px;}
.y1a6{bottom:164.745000px;}
.y229{bottom:165.354600px;}
.y1d4{bottom:166.800150px;}
.y9c{bottom:166.983450px;}
.y33{bottom:168.342750px;}
.y286{bottom:168.885000px;}
.y18{bottom:169.652625px;}
.y209{bottom:172.596750px;}
.y179{bottom:175.125000px;}
.y25f{bottom:175.608000px;}
.y113{bottom:175.611300px;}
.y1c8{bottom:175.616250px;}
.y71{bottom:175.623600px;}
.yef{bottom:175.627800px;}
.y12e{bottom:175.682550px;}
.y143{bottom:175.903500px;}
.yb7{bottom:175.920750px;}
.y23d{bottom:176.070000px;}
.y228{bottom:179.605200px;}
.y1a5{bottom:180.495000px;}
.y9b{bottom:184.234200px;}
.y285{bottom:184.635000px;}
.y17{bottom:184.652175px;}
.y32{bottom:185.593500px;}
.y208{bottom:189.847500px;}
.y178{bottom:192.375750px;}
.y25e{bottom:192.858750px;}
.y112{bottom:192.862050px;}
.y1c7{bottom:192.867000px;}
.y70{bottom:192.874350px;}
.yee{bottom:192.878550px;}
.y12d{bottom:192.933300px;}
.y142{bottom:193.154250px;}
.yb6{bottom:193.171500px;}
.y227{bottom:193.855800px;}
.y1a4{bottom:196.245000px;}
.y23c{bottom:196.320000px;}
.y16{bottom:199.651725px;}
.y284{bottom:200.385000px;}
.y1d3{bottom:201.298500px;}
.y9a{bottom:201.484950px;}
.y31{bottom:202.844250px;}
.y207{bottom:207.098250px;}
.y226{bottom:208.106400px;}
.y177{bottom:209.626500px;}
.y25d{bottom:210.109500px;}
.y111{bottom:210.112800px;}
.y6f{bottom:210.125100px;}
.yed{bottom:210.129300px;}
.y141{bottom:210.405000px;}
.yb5{bottom:210.422250px;}
.y1a3{bottom:211.995000px;}
.y15{bottom:214.651275px;}
.y283{bottom:216.135000px;}
.y23b{bottom:216.570000px;}
.y1d2{bottom:218.549250px;}
.y99{bottom:218.735700px;}
.y1c6{bottom:218.742300px;}
.y12c{bottom:218.808600px;}
.y30{bottom:220.093500px;}
.y225{bottom:222.357000px;}
.y176{bottom:226.877250px;}
.y25c{bottom:227.360250px;}
.y110{bottom:227.363550px;}
.y6e{bottom:227.375850px;}
.yec{bottom:227.380050px;}
.yb4{bottom:227.673000px;}
.y1a2{bottom:227.745000px;}
.y14{bottom:229.650825px;}
.y282{bottom:231.885000px;}
.y206{bottom:232.973550px;}
.y1d1{bottom:235.800000px;}
.y98{bottom:235.986450px;}
.y224{bottom:236.607600px;}
.y23a{bottom:236.820000px;}
.y2f{bottom:237.344250px;}
.y175{bottom:244.128000px;}
.y25b{bottom:244.611000px;}
.y10f{bottom:244.614300px;}
.y6d{bottom:244.626600px;}
.yeb{bottom:244.630800px;}
.y13{bottom:244.650375px;}
.yb3{bottom:244.923750px;}
.y281{bottom:247.635000px;}
.y1a1{bottom:247.995000px;}
.y223{bottom:250.858200px;}
.y164{bottom:251.880150px;}
.y97{bottom:253.237200px;}
.y2e{bottom:254.589450px;}
.y12{bottom:259.649925px;}
.y174{bottom:261.378750px;}
.y25a{bottom:261.861750px;}
.y10e{bottom:261.865050px;}
.y1c5{bottom:261.866700px;}
.y6c{bottom:261.877350px;}
.yea{bottom:261.881550px;}
.y12b{bottom:261.933000px;}
.yb2{bottom:262.174500px;}
.y239{bottom:262.320000px;}
.y280{bottom:263.385000px;}
.y1a0{bottom:263.745000px;}
.y222{bottom:265.108800px;}
.y163{bottom:266.130750px;}
.y205{bottom:269.364300px;}
.y96{bottom:270.487950px;}
.y2d{bottom:271.840200px;}
.y1ec{bottom:272.130150px;}
.y11{bottom:274.649475px;}
.y238{bottom:278.070000px;}
.y173{bottom:278.629500px;}
.y259{bottom:279.112500px;}
.y10d{bottom:279.115800px;}
.y1c4{bottom:279.117450px;}
.y6b{bottom:279.128100px;}
.ye9{bottom:279.132300px;}
.y27f{bottom:279.135000px;}
.y12a{bottom:279.183750px;}
.y221{bottom:279.359400px;}
.yb1{bottom:279.425250px;}
.y19f{bottom:279.495000px;}
.y162{bottom:280.380000px;}
.y1eb{bottom:286.380750px;}
.y204{bottom:286.615050px;}
.y95{bottom:287.738700px;}
.y2c{bottom:289.090950px;}
.y220{bottom:293.610000px;}
.y27e{bottom:294.885000px;}
.y19e{bottom:295.245000px;}
.y172{bottom:295.880250px;}
.y258{bottom:296.363250px;}
.y10c{bottom:296.366550px;}
.y1c3{bottom:296.368200px;}
.y6a{bottom:296.378850px;}
.ye8{bottom:296.383050px;}
.y129{bottom:296.434500px;}
.yb0{bottom:296.676000px;}
.y1ea{bottom:300.630000px;}
.y161{bottom:303.135000px;}
.y203{bottom:303.865800px;}
.y10{bottom:304.650000px;}
.y94{bottom:304.989450px;}
.y2b{bottom:306.341700px;}
.y27d{bottom:310.635000px;}
.y19d{bottom:310.995000px;}
.y171{bottom:313.131000px;}
.y257{bottom:313.614000px;}
.y10b{bottom:313.617300px;}
.y1c2{bottom:313.618950px;}
.y69{bottom:313.629600px;}
.ye7{bottom:313.633800px;}
.y128{bottom:313.685250px;}
.yaf{bottom:313.926750px;}
.y160{bottom:318.885000px;}
.y202{bottom:321.116550px;}
.y93{bottom:322.240200px;}
.y1e9{bottom:323.385000px;}
.y2a{bottom:323.592450px;}
.y27c{bottom:326.385000px;}
.y19c{bottom:326.745000px;}
.y170{bottom:330.381750px;}
.y256{bottom:330.864750px;}
.y10a{bottom:330.868050px;}
.y1c1{bottom:330.869700px;}
.y68{bottom:330.880350px;}
.ye6{bottom:330.884550px;}
.y127{bottom:330.936000px;}
.yae{bottom:331.177500px;}
.y201{bottom:338.367300px;}
.y15f{bottom:339.135000px;}
.y92{bottom:339.490950px;}
.yf{bottom:340.654650px;}
.y29{bottom:340.843200px;}
.y27b{bottom:342.135000px;}
.y19b{bottom:342.495000px;}
.y1e8{bottom:343.635000px;}
.y16f{bottom:347.632500px;}
.y255{bottom:348.115500px;}
.y109{bottom:348.118800px;}
.y1c0{bottom:348.120450px;}
.y67{bottom:348.131100px;}
.ye5{bottom:348.135300px;}
.y126{bottom:348.186750px;}
.yad{bottom:348.428250px;}
.y21f{bottom:348.584400px;}
.y200{bottom:355.618050px;}
.ye{bottom:355.654200px;}
.y91{bottom:356.741700px;}
.y27a{bottom:357.885000px;}
.y28{bottom:358.093950px;}
.y15e{bottom:359.385000px;}
.y21e{bottom:362.835000px;}
.y1e7{bottom:363.885000px;}
.y16e{bottom:364.883250px;}
.y254{bottom:365.366250px;}
.y108{bottom:365.369550px;}
.y1bf{bottom:365.371200px;}
.y66{bottom:365.381850px;}
.ye4{bottom:365.386050px;}
.y125{bottom:365.437500px;}
.yac{bottom:365.679000px;}
.y19a{bottom:366.750000px;}
.y1ff{bottom:372.868800px;}
.y279{bottom:373.635000px;}
.y90{bottom:373.992450px;}
.y27{bottom:375.344700px;}
.yd{bottom:376.654425px;}
.y15d{bottom:379.635000px;}
.y16d{bottom:382.134000px;}
.y199{bottom:382.500000px;}
.y253{bottom:382.617000px;}
.y107{bottom:382.620300px;}
.y1be{bottom:382.621950px;}
.y65{bottom:382.632600px;}
.ye3{bottom:382.636800px;}
.y124{bottom:382.688250px;}
.yab{bottom:382.929750px;}
.y1e6{bottom:384.135000px;}
.y21d{bottom:385.590000px;}
.y278{bottom:389.385000px;}
.y1fe{bottom:390.119550px;}
.y8f{bottom:391.243200px;}
.yc{bottom:391.653975px;}
.y16c{bottom:399.384750px;}
.y252{bottom:399.867750px;}
.y106{bottom:399.871050px;}
.y1bd{bottom:399.872700px;}
.y64{bottom:399.883350px;}
.y15c{bottom:399.885000px;}
.ye2{bottom:399.887550px;}
.y123{bottom:399.939000px;}
.yaa{bottom:400.180500px;}
.y26{bottom:401.220000px;}
.y1e5{bottom:404.385000px;}
.y277{bottom:405.135000px;}
.y21c{bottom:405.840000px;}
.yb{bottom:406.653525px;}
.y1fd{bottom:407.370300px;}
.y8e{bottom:408.493950px;}
.y16b{bottom:416.635500px;}
.y251{bottom:417.118500px;}
.y105{bottom:417.121800px;}
.y1bc{bottom:417.123450px;}
.y63{bottom:417.134100px;}
.ye1{bottom:417.138300px;}
.y122{bottom:417.189750px;}
.ya9{bottom:417.431250px;}
.y15b{bottom:420.135000px;}
.y276{bottom:420.885000px;}
.ya{bottom:421.653075px;}
.y1fc{bottom:424.621050px;}
.y1e4{bottom:424.635000px;}
.y8d{bottom:425.744700px;}
.y21b{bottom:426.090000px;}
.y16a{bottom:433.886250px;}
.y250{bottom:434.369250px;}
.y104{bottom:434.372550px;}
.y237{bottom:434.374200px;}
.y62{bottom:434.384850px;}
.ye0{bottom:434.389050px;}
.y121{bottom:434.440500px;}
.ya8{bottom:434.682000px;}
.y275{bottom:436.635000px;}
.y9{bottom:436.652625px;}
.y4d{bottom:439.215225px;}
.y15a{bottom:440.385000px;}
.y1fb{bottom:441.871800px;}
.y8c{bottom:442.995450px;}
.y1bb{bottom:442.998750px;}
.y198{bottom:444.748800px;}
.y1e3{bottom:444.885000px;}
.y21a{bottom:446.340000px;}
.y169{bottom:451.137000px;}
.y24f{bottom:451.620000px;}
.y103{bottom:451.623300px;}
.y236{bottom:451.624950px;}
.y61{bottom:451.635600px;}
.ydf{bottom:451.639800px;}
.y8{bottom:451.652175px;}
.y120{bottom:451.691250px;}
.ya7{bottom:451.932750px;}
.y274{bottom:452.385000px;}
.y197{bottom:458.999400px;}
.y1fa{bottom:459.122550px;}
.y4c{bottom:460.215450px;}
.y8b{bottom:460.246200px;}
.y159{bottom:460.635000px;}
.y1e2{bottom:465.135000px;}
.y219{bottom:466.590000px;}
.y7{bottom:466.651725px;}
.y273{bottom:468.135000px;}
.y168{bottom:468.387750px;}
.y24e{bottom:468.870750px;}
.y102{bottom:468.874050px;}
.y235{bottom:468.875700px;}
.y60{bottom:468.886350px;}
.yde{bottom:468.890550px;}
.y11f{bottom:468.942000px;}
.ya6{bottom:469.183500px;}
.y196{bottom:473.250000px;}
.y4b{bottom:475.215000px;}
.y1f9{bottom:476.373300px;}
.y8a{bottom:477.496950px;}
.y158{bottom:480.885000px;}
.y6{bottom:481.651275px;}
.y272{bottom:483.885000px;}
.y1e1{bottom:485.385000px;}
.y167{bottom:485.638500px;}
.y24d{bottom:486.121500px;}
.y1ba{bottom:486.123150px;}
.y101{bottom:486.124800px;}
.y5f{bottom:486.137100px;}
.ydd{bottom:486.141300px;}
.y11e{bottom:486.192750px;}
.ya5{bottom:486.434250px;}
.y218{bottom:486.840150px;}
.y1f8{bottom:493.624050px;}
.y89{bottom:494.747700px;}
.y234{bottom:494.751000px;}
.y195{bottom:496.005000px;}
.y4a{bottom:496.215225px;}
.y5{bottom:496.650825px;}
.y271{bottom:499.635000px;}
.y157{bottom:501.135000px;}
.y166{bottom:502.889250px;}
.y24c{bottom:503.372250px;}
.y1b9{bottom:503.373900px;}
.y100{bottom:503.375550px;}
.y5e{bottom:503.387850px;}
.ydc{bottom:503.390400px;}
.y11d{bottom:503.443500px;}
.ya4{bottom:503.685000px;}
.y1e0{bottom:505.635000px;}
.y1f7{bottom:510.874800px;}
.y49{bottom:511.214775px;}
.y4{bottom:511.650375px;}
.y88{bottom:511.998450px;}
.y233{bottom:512.001750px;}
.y217{bottom:512.340000px;}
.y270{bottom:515.385000px;}
.y194{bottom:516.255000px;}
.y165{bottom:520.140000px;}
.y24b{bottom:520.623000px;}
.y1b8{bottom:520.624650px;}
.yff{bottom:520.626300px;}
.y5d{bottom:520.638600px;}
.ydb{bottom:520.639500px;}
.y11c{bottom:520.694250px;}
.y156{bottom:521.385000px;}
.y1df{bottom:525.885000px;}
.y3{bottom:526.649925px;}
.y216{bottom:528.090000px;}
.y1f6{bottom:528.125550px;}
.y87{bottom:529.249200px;}
.ycc{bottom:530.130000px;}
.y26f{bottom:531.135000px;}
.y48{bottom:532.215000px;}
.y193{bottom:536.505000px;}
.y24a{bottom:537.873750px;}
.y1b7{bottom:537.875400px;}
.yfe{bottom:537.877050px;}
.yda{bottom:537.888600px;}
.y5c{bottom:537.889350px;}
.y11b{bottom:537.945000px;}
.y155{bottom:541.635000px;}
.y2{bottom:541.649475px;}
.y1f5{bottom:545.376300px;}
.y1de{bottom:546.135000px;}
.y86{bottom:546.499950px;}
.y26e{bottom:546.885150px;}
.ycb{bottom:552.885000px;}
.y249{bottom:555.124500px;}
.y1b6{bottom:555.126150px;}
.yfd{bottom:555.127800px;}
.yd9{bottom:555.137700px;}
.y5b{bottom:555.140100px;}
.y192{bottom:556.755000px;}
.y47{bottom:558.150000px;}
.y154{bottom:561.885000px;}
.y1f4{bottom:562.627050px;}
.y26d{bottom:562.635150px;}
.y85{bottom:563.750700px;}
.y1dd{bottom:566.385000px;}
.y13c{bottom:569.128800px;}
.y187{bottom:569.879400px;}
.y1{bottom:571.650000px;}
.y248{bottom:572.375250px;}
.y1b5{bottom:572.376900px;}
.yfc{bottom:572.378550px;}
.y215{bottom:572.381250px;}
.yd8{bottom:572.386800px;}
.y5a{bottom:572.390850px;}
.yca{bottom:573.135000px;}
.y191{bottom:577.005000px;}
.y26c{bottom:578.385000px;}
.y1f3{bottom:579.877800px;}
.y84{bottom:581.001450px;}
.y153{bottom:582.135000px;}
.y13b{bottom:583.379400px;}
.y186{bottom:584.130000px;}
.y1dc{bottom:586.635000px;}
.y247{bottom:589.626000px;}
.y1b4{bottom:589.627650px;}
.y214{bottom:589.632000px;}
.yd7{bottom:589.635900px;}
.y59{bottom:589.641600px;}
.yc9{bottom:593.385000px;}
.y26b{bottom:594.135150px;}
.y1f2{bottom:597.128550px;}
.y190{bottom:597.255000px;}
.y13a{bottom:597.630000px;}
.y83{bottom:598.252200px;}
.yfb{bottom:598.253850px;}
.y152{bottom:602.385000px;}
.y246{bottom:606.876750px;}
.y1b3{bottom:606.878400px;}
.y213{bottom:606.882750px;}
.yd6{bottom:606.885000px;}
.y58{bottom:606.892350px;}
.y26a{bottom:609.885150px;}
.y46{bottom:610.635000px;}
.yc8{bottom:613.635000px;}
.y1f1{bottom:614.379300px;}
.y82{bottom:615.502950px;}
.y18f{bottom:617.505000px;}
.y139{bottom:620.385000px;}
.y151{bottom:622.635000px;}
.y245{bottom:624.127500px;}
.y1b2{bottom:624.129150px;}
.y212{bottom:624.133500px;}
.yd5{bottom:624.134100px;}
.y57{bottom:624.143100px;}
.y269{bottom:625.635000px;}
.y185{bottom:627.135000px;}
.y1f0{bottom:631.630050px;}
.y45{bottom:631.638525px;}
.y81{bottom:632.753700px;}
.yc7{bottom:633.885000px;}
.y138{bottom:636.135000px;}
.y18e{bottom:637.755000px;}
.yfa{bottom:641.378250px;}
.y1b1{bottom:641.379900px;}
.yd4{bottom:641.383200px;}
.y211{bottom:641.384250px;}
.y56{bottom:641.392200px;}
.y150{bottom:642.885000px;}
.y44{bottom:646.638075px;}
.y184{bottom:647.385000px;}
.y1ef{bottom:648.880800px;}
.y80{bottom:650.004450px;}
.y268{bottom:650.006100px;}
.y137{bottom:651.885000px;}
.yc6{bottom:654.135000px;}
.y18d{bottom:658.005000px;}
.yf9{bottom:658.629000px;}
.y1b0{bottom:658.630650px;}
.yd3{bottom:658.632300px;}
.y55{bottom:658.641300px;}
.y43{bottom:661.637625px;}
.y14f{bottom:663.135000px;}
.y1ee{bottom:666.131550px;}
.y7f{bottom:667.255200px;}
.y25{bottom:667.589550px;}
.y136{bottom:667.635000px;}
.yc5{bottom:674.385000px;}
.yf8{bottom:675.879750px;}
.yd2{bottom:675.881400px;}
.y54{bottom:675.890400px;}
.y42{bottom:676.637175px;}
.y18c{bottom:678.255000px;}
.y24{bottom:681.840150px;}
.y1ed{bottom:683.382300px;}
.y14e{bottom:683.385000px;}
.y7e{bottom:684.505950px;}
.y135{bottom:687.885000px;}
.y41{bottom:691.636725px;}
.yd1{bottom:693.130500px;}
.y1af{bottom:693.132150px;}
.y53{bottom:693.139500px;}
.yc4{bottom:694.635000px;}
.y18b{bottom:698.505000px;}
.y23{bottom:699.840150px;}
.y7d{bottom:701.756700px;}
.y134{bottom:703.635000px;}
.y40{bottom:706.636275px;}
.y183{bottom:708.135000px;}
.yd0{bottom:710.381250px;}
.y1ae{bottom:710.382900px;}
.y52{bottom:710.388600px;}
.yc3{bottom:714.885000px;}
.y293{bottom:717.885300px;}
.y18a{bottom:718.755000px;}
.y7c{bottom:719.007450px;}
.y133{bottom:719.385000px;}
.y3f{bottom:721.635825px;}
.y14d{bottom:723.885000px;}
.ycf{bottom:727.632000px;}
.y1ad{bottom:727.633650px;}
.y51{bottom:727.637700px;}
.y292{bottom:733.635300px;}
.y189{bottom:734.505000px;}
.yc2{bottom:735.135000px;}
.y7b{bottom:736.258200px;}
.y3e{bottom:736.635375px;}
.y14c{bottom:739.635000px;}
.y22{bottom:744.840000px;}
.yce{bottom:744.882750px;}
.y1ac{bottom:744.884400px;}
.y50{bottom:744.886800px;}
.y291{bottom:749.385300px;}
.y3d{bottom:751.634925px;}
.y7a{bottom:753.508950px;}
.yc1{bottom:755.385000px;}
.y188{bottom:756.630000px;}
.ycd{bottom:762.133500px;}
.y4f{bottom:762.135900px;}
.y182{bottom:765.135000px;}
.y290{bottom:765.135150px;}
.y3c{bottom:766.634475px;}
.y21{bottom:768.840000px;}
.y79{bottom:770.759700px;}
.yc0{bottom:771.135000px;}
.y4e{bottom:779.384250px;}
.y132{bottom:780.885000px;}
.y28f{bottom:780.885150px;}
.y20{bottom:792.840000px;}
.y3b{bottom:796.635000px;}
.y1f{bottom:843.840150px;}
.h3{height:40.608000px;}
.h6{height:45.414000px;}
.h2{height:47.937000px;}
.h1{height:48.222000px;}
.hd{height:50.460000px;}
.h11{height:50.460600px;}
.hc{height:50.760000px;}
.h8{height:55.506000px;}
.h7{height:55.836000px;}
.h5{height:60.552000px;}
.hb{height:60.637200px;}
.ha{height:60.640200px;}
.h9{height:60.656400px;}
.h10{height:60.658200px;}
.hf{height:60.739200px;}
.he{height:60.744000px;}
.h4{height:80.736000px;}
.h0{height:889.500000px;}
.w0{width:631.500000px;}
.x0{left:0.000000px;}
.x1{left:76.980000px;}
.x6{left:81.780450px;}
.xa{left:83.698500px;}
.x1e{left:93.179850px;}
.x10{left:97.425000px;}
.x3{left:98.670750px;}
.x8{left:114.629550px;}
.x1d{left:117.375600px;}
.xe{left:125.760000px;}
.xd{left:128.370000px;}
.x9{left:145.874100px;}
.x1c{left:157.410000px;}
.x18{left:178.140000px;}
.x17{left:182.160000px;}
.x1f{left:186.345000px;}
.x12{left:203.415000px;}
.x7{left:205.739775px;}
.x13{left:212.550000px;}
.x19{left:214.380000px;}
.x1b{left:229.335000px;}
.x5{left:233.580000px;}
.x1a{left:250.770000px;}
.x16{left:254.925000px;}
.xc{left:263.400000px;}
.x4{left:295.500000px;}
.xf{left:298.305000px;}
.xb{left:332.653125px;}
.x11{left:360.735000px;}
.x2{left:443.595000px;}
.x14{left:481.005000px;}
.x15{left:482.385000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.379733pt;}
.ls7a{letter-spacing:-2.035733pt;}
.lsc9{letter-spacing:-1.813333pt;}
.ls47{letter-spacing:-1.496000pt;}
.ls5e{letter-spacing:-1.443200pt;}
.ls84{letter-spacing:-1.343467pt;}
.ls76{letter-spacing:-1.339200pt;}
.ls4a{letter-spacing:-1.290667pt;}
.ls69{letter-spacing:-1.284800pt;}
.ls85{letter-spacing:-1.237867pt;}
.ls23{letter-spacing:-1.232000pt;}
.ls79{letter-spacing:-1.228800pt;}
.ls83{letter-spacing:-1.226133pt;}
.ls7b{letter-spacing:-1.179200pt;}
.ls73{letter-spacing:-1.126400pt;}
.ls39{letter-spacing:-1.073600pt;}
.ls98{letter-spacing:-1.024000pt;}
.ls72{letter-spacing:-1.020800pt;}
.lsa0{letter-spacing:-0.964800pt;}
.ls62{letter-spacing:-0.962133pt;}
.ls6b{letter-spacing:-0.956267pt;}
.ls22{letter-spacing:-0.909333pt;}
.ls9f{letter-spacing:-0.903467pt;}
.ls3d{letter-spacing:-0.874133pt;}
.ls48{letter-spacing:-0.862400pt;}
.ls61{letter-spacing:-0.856533pt;}
.ls93{letter-spacing:-0.850667pt;}
.ls46{letter-spacing:-0.809600pt;}
.ls4b{letter-spacing:-0.803733pt;}
.lsc6{letter-spacing:-0.768000pt;}
.lsc8{letter-spacing:-0.752000pt;}
.ls35{letter-spacing:-0.750933pt;}
.lsc7{letter-spacing:-0.748000pt;}
.ls6a{letter-spacing:-0.715733pt;}
.ls3a{letter-spacing:-0.704000pt;}
.ls3e{letter-spacing:-0.698133pt;}
.lsc1{letter-spacing:-0.648000pt;}
.ls70{letter-spacing:-0.645333pt;}
.ls28{letter-spacing:-0.643467pt;}
.lsc2{letter-spacing:-0.640000pt;}
.ls87{letter-spacing:-0.639467pt;}
.ls6c{letter-spacing:-0.638400pt;}
.lsd0{letter-spacing:-0.634667pt;}
.lsc3{letter-spacing:-0.632000pt;}
.ls68{letter-spacing:-0.598400pt;}
.lsa7{letter-spacing:-0.597333pt;}
.ls49{letter-spacing:-0.592533pt;}
.ls8a{letter-spacing:-0.592000pt;}
.ls6d{letter-spacing:-0.590400pt;}
.lsa8{letter-spacing:-0.586667pt;}
.ls8d{letter-spacing:-0.544000pt;}
.ls5d{letter-spacing:-0.539733pt;}
.ls8e{letter-spacing:-0.538667pt;}
.ls8f{letter-spacing:-0.537600pt;}
.lsa5{letter-spacing:-0.492800pt;}
.ls36{letter-spacing:-0.486933pt;}
.ls78{letter-spacing:-0.484800pt;}
.lsab{letter-spacing:-0.440000pt;}
.ls90{letter-spacing:-0.437333pt;}
.ls7c{letter-spacing:-0.434133pt;}
.lsce{letter-spacing:-0.432000pt;}
.ls82{letter-spacing:-0.428267pt;}
.ls5f{letter-spacing:-0.387200pt;}
.lsd3{letter-spacing:-0.384000pt;}
.ls53{letter-spacing:-0.381333pt;}
.ls38{letter-spacing:-0.375467pt;}
.ls3b{letter-spacing:-0.328533pt;}
.ls77{letter-spacing:-0.326400pt;}
.lscc{letter-spacing:-0.325333pt;}
.lscb{letter-spacing:-0.324000pt;}
.ls71{letter-spacing:-0.322667pt;}
.lsca{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.275733pt;}
.ls25{letter-spacing:-0.273600pt;}
.ls37{letter-spacing:-0.269867pt;}
.ls74{letter-spacing:-0.268800pt;}
.lsac{letter-spacing:-0.264000pt;}
.ls88{letter-spacing:-0.222933pt;}
.ls27{letter-spacing:-0.217867pt;}
.ls54{letter-spacing:-0.217067pt;}
.ls92{letter-spacing:-0.211200pt;}
.ls86{letter-spacing:-0.176000pt;}
.ls7e{letter-spacing:-0.172800pt;}
.ls4c{letter-spacing:-0.170133pt;}
.lsf{letter-spacing:-0.167200pt;}
.ls60{letter-spacing:-0.164267pt;}
.ls3f{letter-spacing:-0.117333pt;}
.lsa2{letter-spacing:-0.115200pt;}
.ls44{letter-spacing:-0.111467pt;}
.ls7f{letter-spacing:-0.110400pt;}
.ls80{letter-spacing:-0.105600pt;}
.lsd1{letter-spacing:-0.080000pt;}
.lsc5{letter-spacing:-0.072000pt;}
.ls34{letter-spacing:-0.064533pt;}
.ls89{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.060800pt;}
.ls24{letter-spacing:-0.058667pt;}
.lsa1{letter-spacing:-0.057600pt;}
.lsd2{letter-spacing:-0.056000pt;}
.lscf{letter-spacing:-0.028000pt;}
.ls7d{letter-spacing:-0.021333pt;}
.lsa6{letter-spacing:-0.017600pt;}
.ls13{letter-spacing:-0.017067pt;}
.ls8b{letter-spacing:-0.016000pt;}
.ls29{letter-spacing:-0.015200pt;}
.ls75{letter-spacing:-0.014400pt;}
.ls15{letter-spacing:-0.012800pt;}
.lsbf{letter-spacing:-0.012000pt;}
.ls33{letter-spacing:-0.011733pt;}
.ls55{letter-spacing:-0.010667pt;}
.ls17{letter-spacing:-0.009600pt;}
.ls14{letter-spacing:-0.008533pt;}
.lsc0{letter-spacing:-0.008000pt;}
.ls21{letter-spacing:-0.005867pt;}
.ls56{letter-spacing:-0.005333pt;}
.ls10{letter-spacing:-0.005067pt;}
.ls16{letter-spacing:-0.004800pt;}
.ls12{letter-spacing:-0.004267pt;}
.lscd{letter-spacing:-0.004000pt;}
.lse{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.005867pt;}
.ls2d{letter-spacing:0.011733pt;}
.lsb7{letter-spacing:0.040000pt;}
.ls5b{letter-spacing:0.041067pt;}
.ls9d{letter-spacing:0.043200pt;}
.ls18{letter-spacing:0.046933pt;}
.ls97{letter-spacing:0.048000pt;}
.ls50{letter-spacing:0.052800pt;}
.lsb6{letter-spacing:0.053333pt;}
.ls99{letter-spacing:0.088000pt;}
.ls6e{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.099733pt;}
.ls94{letter-spacing:0.100800pt;}
.ls0{letter-spacing:0.101333pt;}
.ls41{letter-spacing:0.105600pt;}
.lsaf{letter-spacing:0.106667pt;}
.ls45{letter-spacing:0.146667pt;}
.lsae{letter-spacing:0.148000pt;}
.lsb8{letter-spacing:0.152000pt;}
.ls58{letter-spacing:0.152533pt;}
.ls95{letter-spacing:0.153600pt;}
.lsb1{letter-spacing:0.154667pt;}
.lsb0{letter-spacing:0.156000pt;}
.ls57{letter-spacing:0.158400pt;}
.lsad{letter-spacing:0.160000pt;}
.ls6f{letter-spacing:0.199467pt;}
.lsbe{letter-spacing:0.202667pt;}
.lsb3{letter-spacing:0.204000pt;}
.ls1a{letter-spacing:0.205333pt;}
.ls2e{letter-spacing:0.211200pt;}
.lsb2{letter-spacing:0.213333pt;}
.ls64{letter-spacing:0.234667pt;}
.ls19{letter-spacing:0.258133pt;}
.lsc{letter-spacing:0.258400pt;}
.ls1e{letter-spacing:0.263467pt;}
.ls5c{letter-spacing:0.264000pt;}
.lsbb{letter-spacing:0.266667pt;}
.ls63{letter-spacing:0.269867pt;}
.ls65{letter-spacing:0.287467pt;}
.lsbc{letter-spacing:0.308000pt;}
.ls20{letter-spacing:0.309067pt;}
.ls43{letter-spacing:0.310933pt;}
.ls4{letter-spacing:0.314133pt;}
.lsbd{letter-spacing:0.314667pt;}
.ls1c{letter-spacing:0.316800pt;}
.ls67{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.363733pt;}
.ls96{letter-spacing:0.368000pt;}
.ls2b{letter-spacing:0.369600pt;}
.ls7{letter-spacing:0.369867pt;}
.ls32{letter-spacing:0.412800pt;}
.ls1{letter-spacing:0.420533pt;}
.ls31{letter-spacing:0.422400pt;}
.ls9b{letter-spacing:0.428267pt;}
.ls6{letter-spacing:0.456000pt;}
.lsaa{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.471200pt;}
.ls40{letter-spacing:0.475200pt;}
.ls2{letter-spacing:0.476267pt;}
.lsa3{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.481333pt;}
.lsd{letter-spacing:0.526933pt;}
.ls4f{letter-spacing:0.528000pt;}
.lsba{letter-spacing:0.533333pt;}
.lsb9{letter-spacing:0.540000pt;}
.lsb5{letter-spacing:0.576000pt;}
.ls4e{letter-spacing:0.580800pt;}
.ls9{letter-spacing:0.582667pt;}
.lsb4{letter-spacing:0.586667pt;}
.lsc4{letter-spacing:0.588000pt;}
.ls3{letter-spacing:0.633333pt;}
.ls91{letter-spacing:0.633600pt;}
.ls5{letter-spacing:0.638400pt;}
.ls8c{letter-spacing:0.677333pt;}
.ls4d{letter-spacing:0.680533pt;}
.ls81{letter-spacing:0.686400pt;}
.ls5a{letter-spacing:0.739200pt;}
.ls9e{letter-spacing:0.744000pt;}
.ls2c{letter-spacing:0.792000pt;}
.lsd5{letter-spacing:0.794667pt;}
.lsb{letter-spacing:0.795467pt;}
.lsd4{letter-spacing:0.800000pt;}
.ls59{letter-spacing:0.844800pt;}
.lsa4{letter-spacing:0.850667pt;}
.ls1f{letter-spacing:0.896800pt;}
.ls42{letter-spacing:0.897600pt;}
.lsa9{letter-spacing:0.903467pt;}
.ls66{letter-spacing:1.009067pt;}
.ls52{letter-spacing:1.056000pt;}
.lsa{letter-spacing:1.058933pt;}
.ls51{letter-spacing:1.273067pt;}
.ls9c{letter-spacing:13.973333pt;}
.ls2a{letter-spacing:14.666667pt;}
.ls1b{letter-spacing:15.146667pt;}
.ls9a{letter-spacing:15.893333pt;}
.ws18{word-spacing:-14.954133pt;}
.wsbe{word-spacing:-14.948267pt;}
.ws92{word-spacing:-14.654933pt;}
.ws85{word-spacing:-13.594667pt;}
.wsd0{word-spacing:-13.333333pt;}
.ws1{word-spacing:-13.122667pt;}
.ws0{word-spacing:-12.920000pt;}
.ws2{word-spacing:-12.914933pt;}
.ws1b{word-spacing:-12.651467pt;}
.ws7a{word-spacing:-11.985600pt;}
.wsfc{word-spacing:-10.792000pt;}
.wsd5{word-spacing:-10.588000pt;}
.wsd6{word-spacing:-10.576000pt;}
.wse1{word-spacing:-10.540000pt;}
.wse3{word-spacing:-10.528000pt;}
.wse7{word-spacing:-10.308000pt;}
.ws19{word-spacing:-10.266667pt;}
.wscd{word-spacing:-10.204000pt;}
.wsca{word-spacing:-10.160000pt;}
.wscc{word-spacing:-10.156000pt;}
.wsda{word-spacing:-10.152000pt;}
.wsd7{word-spacing:-10.040000pt;}
.wsd4{word-spacing:-10.000000pt;}
.wsdf{word-spacing:-9.996000pt;}
.wscf{word-spacing:-9.992000pt;}
.wsce{word-spacing:-9.988000pt;}
.wse4{word-spacing:-9.972000pt;}
.wse6{word-spacing:-9.944000pt;}
.wsd8{word-spacing:-9.928000pt;}
.wsde{word-spacing:-9.676000pt;}
.wse0{word-spacing:-9.560000pt;}
.wsd3{word-spacing:-9.368000pt;}
.wsd2{word-spacing:-9.360000pt;}
.wsd1{word-spacing:-9.352000pt;}
.wsd9{word-spacing:-9.252000pt;}
.ws36{word-spacing:-0.745067pt;}
.wsff{word-spacing:-0.720000pt;}
.wsc2{word-spacing:-0.698133pt;}
.ws1f{word-spacing:-0.692267pt;}
.ws33{word-spacing:-0.686400pt;}
.ws6{word-spacing:-0.643467pt;}
.ws9a{word-spacing:-0.640000pt;}
.ws23{word-spacing:-0.639467pt;}
.wsf9{word-spacing:-0.634667pt;}
.ws4f{word-spacing:-0.633600pt;}
.ws10{word-spacing:-0.587733pt;}
.ws49{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.585600pt;}
.ws5{word-spacing:-0.582667pt;}
.ws9b{word-spacing:-0.581333pt;}
.ws57{word-spacing:-0.580800pt;}
.ws97{word-spacing:-0.574933pt;}
.ws3d{word-spacing:-0.551467pt;}
.wsa6{word-spacing:-0.539733pt;}
.ws6d{word-spacing:-0.533867pt;}
.wsb9{word-spacing:-0.532800pt;}
.ws99{word-spacing:-0.528000pt;}
.ws2d{word-spacing:-0.526933pt;}
.wsc8{word-spacing:-0.486933pt;}
.wsb{word-spacing:-0.481333pt;}
.ws1e{word-spacing:-0.481067pt;}
.ws78{word-spacing:-0.480000pt;}
.ws4d{word-spacing:-0.475200pt;}
.wsb3{word-spacing:-0.469333pt;}
.ws77{word-spacing:-0.432000pt;}
.ws4e{word-spacing:-0.428267pt;}
.ws13{word-spacing:-0.425600pt;}
.ws3b{word-spacing:-0.422400pt;}
.ws8{word-spacing:-0.420533pt;}
.ws90{word-spacing:-0.417600pt;}
.ws37{word-spacing:-0.375467pt;}
.wsa{word-spacing:-0.374933pt;}
.ws8c{word-spacing:-0.373333pt;}
.ws12{word-spacing:-0.369867pt;}
.ws48{word-spacing:-0.369600pt;}
.ws5b{word-spacing:-0.363733pt;}
.ws8d{word-spacing:-0.357333pt;}
.ws94{word-spacing:-0.322667pt;}
.ws7f{word-spacing:-0.321600pt;}
.ws28{word-spacing:-0.316800pt;}
.wsf4{word-spacing:-0.314667pt;}
.wsc5{word-spacing:-0.310933pt;}
.ws3{word-spacing:-0.268533pt;}
.wsf5{word-spacing:-0.266667pt;}
.ws35{word-spacing:-0.264000pt;}
.wsfa{word-spacing:-0.261333pt;}
.wsb1{word-spacing:-0.258133pt;}
.wsf6{word-spacing:-0.256000pt;}
.ws4{word-spacing:-0.212800pt;}
.ws69{word-spacing:-0.211200pt;}
.ws4b{word-spacing:-0.205333pt;}
.ws44{word-spacing:-0.199467pt;}
.wsa8{word-spacing:-0.158400pt;}
.wsd{word-spacing:-0.157067pt;}
.ws70{word-spacing:-0.152533pt;}
.ws72{word-spacing:-0.146667pt;}
.wsa1{word-spacing:-0.106667pt;}
.ws6c{word-spacing:-0.105600pt;}
.wsa2{word-spacing:-0.057600pt;}
.ws9c{word-spacing:-0.053333pt;}
.ws98{word-spacing:-0.052800pt;}
.wsee{word-spacing:-0.048000pt;}
.ws3a{word-spacing:-0.046933pt;}
.ws8f{word-spacing:-0.010667pt;}
.wsc3{word-spacing:-0.005867pt;}
.ws8e{word-spacing:-0.005333pt;}
.ws15{word-spacing:-0.005067pt;}
.ws65{word-spacing:-0.004800pt;}
.wsc{word-spacing:0.000000pt;}
.ws17{word-spacing:0.004800pt;}
.ws2f{word-spacing:0.005067pt;}
.ws64{word-spacing:0.005333pt;}
.ws31{word-spacing:0.005867pt;}
.ws63{word-spacing:0.010667pt;}
.wsa3{word-spacing:0.016000pt;}
.wsdc{word-spacing:0.032000pt;}
.ws56{word-spacing:0.052800pt;}
.wsf2{word-spacing:0.053333pt;}
.ws84{word-spacing:0.057600pt;}
.ws4c{word-spacing:0.058667pt;}
.ws58{word-spacing:0.064533pt;}
.wsf1{word-spacing:0.090667pt;}
.wsa9{word-spacing:0.099733pt;}
.ws41{word-spacing:0.105600pt;}
.ws59{word-spacing:0.111467pt;}
.wsb8{word-spacing:0.152533pt;}
.wseb{word-spacing:0.154667pt;}
.ws20{word-spacing:0.158400pt;}
.wsed{word-spacing:0.160000pt;}
.wsec{word-spacing:0.176000pt;}
.ws42{word-spacing:0.205333pt;}
.ws6f{word-spacing:0.211200pt;}
.ws61{word-spacing:0.217067pt;}
.ws73{word-spacing:0.258133pt;}
.wsc4{word-spacing:0.264000pt;}
.ws7c{word-spacing:0.269867pt;}
.ws82{word-spacing:0.273600pt;}
.ws24{word-spacing:0.316800pt;}
.ws8a{word-spacing:0.322667pt;}
.ws2c{word-spacing:0.324267pt;}
.wsaf{word-spacing:0.325333pt;}
.wsc7{word-spacing:0.369600pt;}
.ws29{word-spacing:0.369867pt;}
.wsba{word-spacing:0.374400pt;}
.ws39{word-spacing:0.375467pt;}
.wsfd{word-spacing:0.378667pt;}
.ws32{word-spacing:0.428267pt;}
.ws89{word-spacing:0.434133pt;}
.ws75{word-spacing:0.475200pt;}
.ws22{word-spacing:0.481067pt;}
.ws96{word-spacing:0.486933pt;}
.ws25{word-spacing:0.528000pt;}
.wsfe{word-spacing:0.533333pt;}
.ws55{word-spacing:0.533867pt;}
.wsb4{word-spacing:0.585600pt;}
.ws30{word-spacing:0.586667pt;}
.ws11{word-spacing:0.587733pt;}
.ws7b{word-spacing:0.592533pt;}
.wsc1{word-spacing:0.633600pt;}
.ws50{word-spacing:0.639467pt;}
.wsf3{word-spacing:0.640000pt;}
.ws60{word-spacing:0.645333pt;}
.wsf8{word-spacing:0.650667pt;}
.ws91{word-spacing:0.657067pt;}
.ws45{word-spacing:0.686400pt;}
.wsbb{word-spacing:0.691200pt;}
.ws5f{word-spacing:0.692267pt;}
.wse{word-spacing:0.694133pt;}
.ws6e{word-spacing:0.745067pt;}
.wsf0{word-spacing:0.746667pt;}
.ws47{word-spacing:0.748800pt;}
.ws16{word-spacing:0.749867pt;}
.ws5c{word-spacing:0.750933pt;}
.wsef{word-spacing:0.773333pt;}
.wsa7{word-spacing:0.797867pt;}
.wsf7{word-spacing:0.800000pt;}
.ws95{word-spacing:0.803733pt;}
.ws8b{word-spacing:0.850667pt;}
.wsbc{word-spacing:0.854400pt;}
.wsbd{word-spacing:0.902400pt;}
.ws5d{word-spacing:0.903467pt;}
.ws2b{word-spacing:0.906933pt;}
.wsa4{word-spacing:0.909333pt;}
.ws2e{word-spacing:0.912000pt;}
.wsf{word-spacing:0.957600pt;}
.wsae{word-spacing:0.960000pt;}
.ws3c{word-spacing:0.962133pt;}
.wsfb{word-spacing:1.008000pt;}
.ws76{word-spacing:1.009067pt;}
.ws83{word-spacing:1.012800pt;}
.ws2a{word-spacing:1.013333pt;}
.ws52{word-spacing:1.014933pt;}
.ws62{word-spacing:1.061867pt;}
.ws3e{word-spacing:1.067733pt;}
.wsad{word-spacing:1.070400pt;}
.wsc6{word-spacing:1.073600pt;}
.ws3f{word-spacing:1.114667pt;}
.wsac{word-spacing:1.118400pt;}
.ws7{word-spacing:1.119733pt;}
.ws38{word-spacing:1.120533pt;}
.wsb0{word-spacing:1.123200pt;}
.wsea{word-spacing:1.125333pt;}
.ws67{word-spacing:1.126400pt;}
.wse9{word-spacing:1.146667pt;}
.ws26{word-spacing:1.167467pt;}
.ws9{word-spacing:1.170400pt;}
.ws80{word-spacing:1.171200pt;}
.ws43{word-spacing:1.173333pt;}
.ws81{word-spacing:1.180800pt;}
.ws66{word-spacing:1.214400pt;}
.ws40{word-spacing:1.220267pt;}
.ws1d{word-spacing:1.226133pt;}
.ws7e{word-spacing:1.226667pt;}
.ws71{word-spacing:1.232000pt;}
.wsc9{word-spacing:1.237867pt;}
.ws6a{word-spacing:1.273067pt;}
.ws14{word-spacing:1.276800pt;}
.ws46{word-spacing:1.278933pt;}
.ws7d{word-spacing:1.280000pt;}
.ws4a{word-spacing:1.284800pt;}
.ws53{word-spacing:1.325867pt;}
.ws68{word-spacing:1.331733pt;}
.ws100{word-spacing:1.333333pt;}
.ws6b{word-spacing:1.337600pt;}
.wsb2{word-spacing:1.343467pt;}
.ws5e{word-spacing:1.378667pt;}
.ws34{word-spacing:1.384533pt;}
.ws21{word-spacing:1.390400pt;}
.wsa5{word-spacing:1.431467pt;}
.ws51{word-spacing:1.437333pt;}
.ws1c{word-spacing:1.443200pt;}
.ws74{word-spacing:1.449067pt;}
.wse5{word-spacing:2.800000pt;}
.wsdd{word-spacing:2.960000pt;}
.wse8{word-spacing:3.408000pt;}
.wse2{word-spacing:4.085333pt;}
.wsdb{word-spacing:4.386667pt;}
.wscb{word-spacing:4.526667pt;}
.ws54{word-spacing:4.798933pt;}
.ws93{word-spacing:10.325333pt;}
.ws9d{word-spacing:19.712000pt;}
.ws86{word-spacing:27.317333pt;}
.ws1a{word-spacing:31.786667pt;}
.wsbf{word-spacing:42.464000pt;}
.wsb5{word-spacing:47.317333pt;}
.ws9f{word-spacing:79.626667pt;}
.ws79{word-spacing:84.448000pt;}
.wsc0{word-spacing:96.533333pt;}
.wsb7{word-spacing:104.053333pt;}
.ws87{word-spacing:116.320000pt;}
.ws88{word-spacing:116.330667pt;}
.ws9e{word-spacing:118.293333pt;}
.wsb6{word-spacing:120.106667pt;}
.wsa0{word-spacing:233.066667pt;}
.wsaa{word-spacing:271.306667pt;}
.wsab{word-spacing:271.317333pt;}
.ws5a{word-spacing:444.213333pt;}
._77{margin-left:-9.695200pt;}
._10{margin-left:-7.726400pt;}
._3{margin-left:-6.576533pt;}
._a{margin-left:-5.544000pt;}
._8{margin-left:-4.241333pt;}
._5{margin-left:-3.191467pt;}
._2{margin-left:-2.102667pt;}
._0{margin-left:-1.079200pt;}
._1{width:1.180533pt;}
._76{width:6.993067pt;}
._86{width:15.475200pt;}
._85{width:16.593600pt;}
._5f{width:27.526400pt;}
._3f{width:31.536000pt;}
._42{width:33.866667pt;}
._4{width:42.419200pt;}
._7{width:44.006400pt;}
._11{width:45.120000pt;}
._1f{width:58.304000pt;}
._1e{width:59.690667pt;}
._45{width:61.066667pt;}
._3e{width:62.986667pt;}
._88{width:69.745333pt;}
._47{width:74.458667pt;}
._87{width:75.370667pt;}
._4f{width:79.680000pt;}
._46{width:83.498667pt;}
._4a{width:84.853333pt;}
._49{width:87.733333pt;}
._3a{width:88.816533pt;}
._22{width:89.765333pt;}
._4e{width:93.813333pt;}
._40{width:96.549333pt;}
._43{width:100.768000pt;}
._79{width:103.766667pt;}
._50{width:109.866667pt;}
._20{width:112.325333pt;}
._21{width:113.296000pt;}
._78{width:114.837333pt;}
._51{width:118.346667pt;}
._4b{width:124.800000pt;}
._2c{width:126.565333pt;}
._16{width:128.992000pt;}
._39{width:129.984533pt;}
._52{width:132.480000pt;}
._7e{width:133.440000pt;}
._7b{width:136.132000pt;}
._89{width:138.747200pt;}
._41{width:144.443200pt;}
._62{width:148.378667pt;}
._81{width:149.313333pt;}
._7a{width:150.902667pt;}
._3c{width:154.453333pt;}
._15{width:156.245333pt;}
._3b{width:158.186667pt;}
._80{width:159.146667pt;}
._83{width:160.112000pt;}
._7d{width:163.146667pt;}
._63{width:164.112000pt;}
._13{width:166.624000pt;}
._14{width:170.410667pt;}
._84{width:177.237333pt;}
._25{width:181.120000pt;}
._1b{width:182.325333pt;}
._24{width:184.853333pt;}
._3d{width:189.173333pt;}
._82{width:190.352000pt;}
._17{width:206.624000pt;}
._18{width:210.410667pt;}
._26{width:215.840000pt;}
._59{width:220.169333pt;}
._2d{width:221.920000pt;}
._1a{width:222.912000pt;}
._1c{width:233.290667pt;}
._1d{width:237.077333pt;}
._2a{width:242.506667pt;}
._2f{width:246.024000pt;}
._7c{width:251.626667pt;}
._8d{width:257.886667pt;}
._5c{width:260.824800pt;}
._30{width:263.680000pt;}
._55{width:273.072000pt;}
._c{width:275.365333pt;}
._8b{width:280.800000pt;}
._6c{width:284.650667pt;}
._8a{width:289.013333pt;}
._7f{width:296.906667pt;}
._57{width:299.738667pt;}
._8c{width:304.662667pt;}
._67{width:311.472000pt;}
._6b{width:314.085333pt;}
._56{width:319.114667pt;}
._36{width:320.766667pt;}
._23{width:323.306667pt;}
._2b{width:326.080000pt;}
._75{width:330.309867pt;}
._65{width:338.133333pt;}
._9{width:341.491200pt;}
._2e{width:343.680000pt;}
._29{width:351.893333pt;}
._35{width:356.853333pt;}
._28{width:365.973333pt;}
._34{width:367.564000pt;}
._74{width:373.254667pt;}
._32{width:374.389333pt;}
._27{width:380.106667pt;}
._33{width:382.102667pt;}
._31{width:385.440000pt;}
._38{width:387.862667pt;}
._37{width:406.826667pt;}
._73{width:412.926667pt;}
._12{width:414.037333pt;}
._64{width:415.466667pt;}
._b{width:422.085333pt;}
._4c{width:426.357333pt;}
._6d{width:435.840000pt;}
._44{width:436.960000pt;}
._6a{width:444.906667pt;}
._60{width:460.165333pt;}
._48{width:461.861333pt;}
._f{width:465.226667pt;}
._70{width:466.565333pt;}
._69{width:470.720000pt;}
._6f{width:475.680000pt;}
._6e{width:477.610667pt;}
._19{width:480.704000pt;}
._68{width:484.800000pt;}
._72{width:486.390667pt;}
._e{width:491.893333pt;}
._66{width:498.938667pt;}
._71{width:500.929333pt;}
._53{width:505.002667pt;}
._d{width:531.893333pt;}
._54{width:577.249867pt;}
._61{width:599.802667pt;}
._5b{width:603.916533pt;}
._4d{width:613.818667pt;}
._5a{width:617.921333pt;}
._5e{width:657.003200pt;}
._5d{width:657.921333pt;}
._58{width:808.039200pt;}
._6{width:1147.891200pt;}
.fs8{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y232{bottom:32.980667pt;}
.y210{bottom:32.986133pt;}
.y181{bottom:32.994667pt;}
.y267{bottom:33.424000pt;}
.y1d0{bottom:33.431333pt;}
.yf7{bottom:33.441600pt;}
.y11a{bottom:33.479467pt;}
.y3a{bottom:33.531200pt;}
.y1db{bottom:33.531867pt;}
.y140{bottom:33.545067pt;}
.y78{bottom:33.545600pt;}
.y244{bottom:33.612800pt;}
.y14b{bottom:33.686667pt;}
.ybf{bottom:33.702000pt;}
.y28e{bottom:38.120000pt;}
.ya3{bottom:41.091733pt;}
.y231{bottom:45.646667pt;}
.y20f{bottom:45.653333pt;}
.y119{bottom:46.146667pt;}
.y39{bottom:46.198400pt;}
.y1da{bottom:46.199067pt;}
.y13f{bottom:46.212267pt;}
.y77{bottom:46.212800pt;}
.y243{bottom:46.280000pt;}
.y180{bottom:48.328667pt;}
.y266{bottom:48.758000pt;}
.y1cf{bottom:48.765333pt;}
.yf6{bottom:48.775600pt;}
.y14a{bottom:49.020667pt;}
.ybe{bottom:49.036000pt;}
.y28d{bottom:52.120000pt;}
.ya2{bottom:56.425733pt;}
.y230{bottom:58.312667pt;}
.y38{bottom:58.865600pt;}
.y1d9{bottom:58.866267pt;}
.y13e{bottom:58.879467pt;}
.y76{bottom:58.880000pt;}
.y17f{bottom:63.662667pt;}
.y265{bottom:64.092000pt;}
.y1ce{bottom:64.099333pt;}
.yf5{bottom:64.109600pt;}
.y149{bottom:64.354667pt;}
.ybd{bottom:64.370000pt;}
.y1e{bottom:65.470800pt;}
.y28c{bottom:66.120000pt;}
.y242{bottom:66.506667pt;}
.y1ab{bottom:67.547333pt;}
.y22f{bottom:70.978667pt;}
.y37{bottom:71.532800pt;}
.y1d8{bottom:71.533467pt;}
.y13d{bottom:71.546667pt;}
.ya1{bottom:71.759733pt;}
.y20e{bottom:76.772667pt;}
.y1d{bottom:78.803733pt;}
.y17e{bottom:78.996667pt;}
.y264{bottom:79.426000pt;}
.y118{bottom:79.428933pt;}
.y1cd{bottom:79.433333pt;}
.yf4{bottom:79.443600pt;}
.y148{bottom:79.688667pt;}
.ybc{bottom:79.704000pt;}
.y28b{bottom:80.120000pt;}
.y1aa{bottom:80.213333pt;}
.y22e{bottom:83.645867pt;}
.y36{bottom:84.200000pt;}
.y241{bottom:84.506667pt;}
.ya0{bottom:87.093733pt;}
.y20d{bottom:92.083333pt;}
.y28a{bottom:94.120000pt;}
.y17d{bottom:94.330667pt;}
.y263{bottom:94.760000pt;}
.y117{bottom:94.762933pt;}
.y1cc{bottom:94.767333pt;}
.y75{bottom:94.773867pt;}
.yf3{bottom:94.777600pt;}
.y147{bottom:95.022667pt;}
.ybb{bottom:95.038000pt;}
.y22d{bottom:96.313067pt;}
.y1c{bottom:97.470600pt;}
.y1a9{bottom:100.440000pt;}
.y1d7{bottom:102.264800pt;}
.y9f{bottom:102.427733pt;}
.y240{bottom:102.506667pt;}
.y20c{bottom:107.417333pt;}
.y289{bottom:108.120000pt;}
.y22c{bottom:108.980267pt;}
.y17c{bottom:109.664667pt;}
.y262{bottom:110.094000pt;}
.y116{bottom:110.096933pt;}
.y1cb{bottom:110.101333pt;}
.y74{bottom:110.107867pt;}
.yf2{bottom:110.111600pt;}
.y131{bottom:110.160267pt;}
.y146{bottom:110.356667pt;}
.yba{bottom:110.372000pt;}
.y1b{bottom:110.803533pt;}
.y1d6{bottom:117.598800pt;}
.y9e{bottom:117.761733pt;}
.y1a8{bottom:118.440000pt;}
.y35{bottom:118.970000pt;}
.y23f{bottom:120.506667pt;}
.y22b{bottom:121.647467pt;}
.y288{bottom:122.120000pt;}
.y20b{bottom:122.751333pt;}
.y1a{bottom:124.136467pt;}
.y17b{bottom:124.998667pt;}
.y261{bottom:125.428000pt;}
.y115{bottom:125.430933pt;}
.y1ca{bottom:125.435333pt;}
.y73{bottom:125.441867pt;}
.yf1{bottom:125.445600pt;}
.y130{bottom:125.494267pt;}
.y145{bottom:125.690667pt;}
.yb9{bottom:125.706000pt;}
.y1a7{bottom:132.440000pt;}
.y1d5{bottom:132.932800pt;}
.y9d{bottom:133.095733pt;}
.y34{bottom:134.304000pt;}
.y22a{bottom:134.314667pt;}
.y287{bottom:136.120000pt;}
.y19{bottom:137.469400pt;}
.y20a{bottom:138.085333pt;}
.y23e{bottom:138.506667pt;}
.y17a{bottom:140.332667pt;}
.y260{bottom:140.762000pt;}
.y114{bottom:140.764933pt;}
.y1c9{bottom:140.769333pt;}
.y72{bottom:140.775867pt;}
.yf0{bottom:140.779600pt;}
.y12f{bottom:140.828267pt;}
.y144{bottom:141.024667pt;}
.yb8{bottom:141.040000pt;}
.y1a6{bottom:146.440000pt;}
.y229{bottom:146.981867pt;}
.y1d4{bottom:148.266800pt;}
.y9c{bottom:148.429733pt;}
.y33{bottom:149.638000pt;}
.y286{bottom:150.120000pt;}
.y18{bottom:150.802333pt;}
.y209{bottom:153.419333pt;}
.y179{bottom:155.666667pt;}
.y25f{bottom:156.096000pt;}
.y113{bottom:156.098933pt;}
.y1c8{bottom:156.103333pt;}
.y71{bottom:156.109867pt;}
.yef{bottom:156.113600pt;}
.y12e{bottom:156.162267pt;}
.y143{bottom:156.358667pt;}
.yb7{bottom:156.374000pt;}
.y23d{bottom:156.506667pt;}
.y228{bottom:159.649067pt;}
.y1a5{bottom:160.440000pt;}
.y9b{bottom:163.763733pt;}
.y285{bottom:164.120000pt;}
.y17{bottom:164.135267pt;}
.y32{bottom:164.972000pt;}
.y208{bottom:168.753333pt;}
.y178{bottom:171.000667pt;}
.y25e{bottom:171.430000pt;}
.y112{bottom:171.432933pt;}
.y1c7{bottom:171.437333pt;}
.y70{bottom:171.443867pt;}
.yee{bottom:171.447600pt;}
.y12d{bottom:171.496267pt;}
.y142{bottom:171.692667pt;}
.yb6{bottom:171.708000pt;}
.y227{bottom:172.316267pt;}
.y1a4{bottom:174.440000pt;}
.y23c{bottom:174.506667pt;}
.y16{bottom:177.468200pt;}
.y284{bottom:178.120000pt;}
.y1d3{bottom:178.932000pt;}
.y9a{bottom:179.097733pt;}
.y31{bottom:180.306000pt;}
.y207{bottom:184.087333pt;}
.y226{bottom:184.983467pt;}
.y177{bottom:186.334667pt;}
.y25d{bottom:186.764000pt;}
.y111{bottom:186.766933pt;}
.y6f{bottom:186.777867pt;}
.yed{bottom:186.781600pt;}
.y141{bottom:187.026667pt;}
.yb5{bottom:187.042000pt;}
.y1a3{bottom:188.440000pt;}
.y15{bottom:190.801133pt;}
.y283{bottom:192.120000pt;}
.y23b{bottom:192.506667pt;}
.y1d2{bottom:194.266000pt;}
.y99{bottom:194.431733pt;}
.y1c6{bottom:194.437600pt;}
.y12c{bottom:194.496533pt;}
.y30{bottom:195.638667pt;}
.y225{bottom:197.650667pt;}
.y176{bottom:201.668667pt;}
.y25c{bottom:202.098000pt;}
.y110{bottom:202.100933pt;}
.y6e{bottom:202.111867pt;}
.yec{bottom:202.115600pt;}
.yb4{bottom:202.376000pt;}
.y1a2{bottom:202.440000pt;}
.y14{bottom:204.134067pt;}
.y282{bottom:206.120000pt;}
.y206{bottom:207.087600pt;}
.y1d1{bottom:209.600000pt;}
.y98{bottom:209.765733pt;}
.y224{bottom:210.317867pt;}
.y23a{bottom:210.506667pt;}
.y2f{bottom:210.972667pt;}
.y175{bottom:217.002667pt;}
.y25b{bottom:217.432000pt;}
.y10f{bottom:217.434933pt;}
.y6d{bottom:217.445867pt;}
.yeb{bottom:217.449600pt;}
.y13{bottom:217.467000pt;}
.yb3{bottom:217.710000pt;}
.y281{bottom:220.120000pt;}
.y1a1{bottom:220.440000pt;}
.y223{bottom:222.985067pt;}
.y164{bottom:223.893467pt;}
.y97{bottom:225.099733pt;}
.y2e{bottom:226.301733pt;}
.y12{bottom:230.799933pt;}
.y174{bottom:232.336667pt;}
.y25a{bottom:232.766000pt;}
.y10e{bottom:232.768933pt;}
.y1c5{bottom:232.770400pt;}
.y6c{bottom:232.779867pt;}
.yea{bottom:232.783600pt;}
.y12b{bottom:232.829333pt;}
.yb2{bottom:233.044000pt;}
.y239{bottom:233.173333pt;}
.y280{bottom:234.120000pt;}
.y1a0{bottom:234.440000pt;}
.y222{bottom:235.652267pt;}
.y163{bottom:236.560667pt;}
.y205{bottom:239.434933pt;}
.y96{bottom:240.433733pt;}
.y2d{bottom:241.635733pt;}
.y1ec{bottom:241.893467pt;}
.y11{bottom:244.132867pt;}
.y238{bottom:247.173333pt;}
.y173{bottom:247.670667pt;}
.y259{bottom:248.100000pt;}
.y10d{bottom:248.102933pt;}
.y1c4{bottom:248.104400pt;}
.y6b{bottom:248.113867pt;}
.ye9{bottom:248.117600pt;}
.y27f{bottom:248.120000pt;}
.y12a{bottom:248.163333pt;}
.y221{bottom:248.319467pt;}
.yb1{bottom:248.378000pt;}
.y19f{bottom:248.440000pt;}
.y162{bottom:249.226667pt;}
.y1eb{bottom:254.560667pt;}
.y204{bottom:254.768933pt;}
.y95{bottom:255.767733pt;}
.y2c{bottom:256.969733pt;}
.y220{bottom:260.986667pt;}
.y27e{bottom:262.120000pt;}
.y19e{bottom:262.440000pt;}
.y172{bottom:263.004667pt;}
.y258{bottom:263.434000pt;}
.y10c{bottom:263.436933pt;}
.y1c3{bottom:263.438400pt;}
.y6a{bottom:263.447867pt;}
.ye8{bottom:263.451600pt;}
.y129{bottom:263.497333pt;}
.yb0{bottom:263.712000pt;}
.y1ea{bottom:267.226667pt;}
.y161{bottom:269.453333pt;}
.y203{bottom:270.102933pt;}
.y10{bottom:270.800000pt;}
.y94{bottom:271.101733pt;}
.y2b{bottom:272.303733pt;}
.y27d{bottom:276.120000pt;}
.y19d{bottom:276.440000pt;}
.y171{bottom:278.338667pt;}
.y257{bottom:278.768000pt;}
.y10b{bottom:278.770933pt;}
.y1c2{bottom:278.772400pt;}
.y69{bottom:278.781867pt;}
.ye7{bottom:278.785600pt;}
.y128{bottom:278.831333pt;}
.yaf{bottom:279.046000pt;}
.y160{bottom:283.453333pt;}
.y202{bottom:285.436933pt;}
.y93{bottom:286.435733pt;}
.y1e9{bottom:287.453333pt;}
.y2a{bottom:287.637733pt;}
.y27c{bottom:290.120000pt;}
.y19c{bottom:290.440000pt;}
.y170{bottom:293.672667pt;}
.y256{bottom:294.102000pt;}
.y10a{bottom:294.104933pt;}
.y1c1{bottom:294.106400pt;}
.y68{bottom:294.115867pt;}
.ye6{bottom:294.119600pt;}
.y127{bottom:294.165333pt;}
.yae{bottom:294.380000pt;}
.y201{bottom:300.770933pt;}
.y15f{bottom:301.453333pt;}
.y92{bottom:301.769733pt;}
.yf{bottom:302.804133pt;}
.y29{bottom:302.971733pt;}
.y27b{bottom:304.120000pt;}
.y19b{bottom:304.440000pt;}
.y1e8{bottom:305.453333pt;}
.y16f{bottom:309.006667pt;}
.y255{bottom:309.436000pt;}
.y109{bottom:309.438933pt;}
.y1c0{bottom:309.440400pt;}
.y67{bottom:309.449867pt;}
.ye5{bottom:309.453600pt;}
.y126{bottom:309.499333pt;}
.yad{bottom:309.714000pt;}
.y21f{bottom:309.852800pt;}
.y200{bottom:316.104933pt;}
.ye{bottom:316.137067pt;}
.y91{bottom:317.103733pt;}
.y27a{bottom:318.120000pt;}
.y28{bottom:318.305733pt;}
.y15e{bottom:319.453333pt;}
.y21e{bottom:322.520000pt;}
.y1e7{bottom:323.453333pt;}
.y16e{bottom:324.340667pt;}
.y254{bottom:324.770000pt;}
.y108{bottom:324.772933pt;}
.y1bf{bottom:324.774400pt;}
.y66{bottom:324.783867pt;}
.ye4{bottom:324.787600pt;}
.y125{bottom:324.833333pt;}
.yac{bottom:325.048000pt;}
.y19a{bottom:326.000000pt;}
.y1ff{bottom:331.438933pt;}
.y279{bottom:332.120000pt;}
.y90{bottom:332.437733pt;}
.y27{bottom:333.639733pt;}
.yd{bottom:334.803933pt;}
.y15d{bottom:337.453333pt;}
.y16d{bottom:339.674667pt;}
.y199{bottom:340.000000pt;}
.y253{bottom:340.104000pt;}
.y107{bottom:340.106933pt;}
.y1be{bottom:340.108400pt;}
.y65{bottom:340.117867pt;}
.ye3{bottom:340.121600pt;}
.y124{bottom:340.167333pt;}
.yab{bottom:340.382000pt;}
.y1e6{bottom:341.453333pt;}
.y21d{bottom:342.746667pt;}
.y278{bottom:346.120000pt;}
.y1fe{bottom:346.772933pt;}
.y8f{bottom:347.771733pt;}
.yc{bottom:348.136867pt;}
.y16c{bottom:355.008667pt;}
.y252{bottom:355.438000pt;}
.y106{bottom:355.440933pt;}
.y1bd{bottom:355.442400pt;}
.y64{bottom:355.451867pt;}
.y15c{bottom:355.453333pt;}
.ye2{bottom:355.455600pt;}
.y123{bottom:355.501333pt;}
.yaa{bottom:355.716000pt;}
.y26{bottom:356.640000pt;}
.y1e5{bottom:359.453333pt;}
.y277{bottom:360.120000pt;}
.y21c{bottom:360.746667pt;}
.yb{bottom:361.469800pt;}
.y1fd{bottom:362.106933pt;}
.y8e{bottom:363.105733pt;}
.y16b{bottom:370.342667pt;}
.y251{bottom:370.772000pt;}
.y105{bottom:370.774933pt;}
.y1bc{bottom:370.776400pt;}
.y63{bottom:370.785867pt;}
.ye1{bottom:370.789600pt;}
.y122{bottom:370.835333pt;}
.ya9{bottom:371.050000pt;}
.y15b{bottom:373.453333pt;}
.y276{bottom:374.120000pt;}
.ya{bottom:374.802733pt;}
.y1fc{bottom:377.440933pt;}
.y1e4{bottom:377.453333pt;}
.y8d{bottom:378.439733pt;}
.y21b{bottom:378.746667pt;}
.y16a{bottom:385.676667pt;}
.y250{bottom:386.106000pt;}
.y104{bottom:386.108933pt;}
.y237{bottom:386.110400pt;}
.y62{bottom:386.119867pt;}
.ye0{bottom:386.123600pt;}
.y121{bottom:386.169333pt;}
.ya8{bottom:386.384000pt;}
.y275{bottom:388.120000pt;}
.y9{bottom:388.135667pt;}
.y4d{bottom:390.413533pt;}
.y15a{bottom:391.453333pt;}
.y1fb{bottom:392.774933pt;}
.y8c{bottom:393.773733pt;}
.y1bb{bottom:393.776667pt;}
.y198{bottom:395.332267pt;}
.y1e3{bottom:395.453333pt;}
.y21a{bottom:396.746667pt;}
.y169{bottom:401.010667pt;}
.y24f{bottom:401.440000pt;}
.y103{bottom:401.442933pt;}
.y236{bottom:401.444400pt;}
.y61{bottom:401.453867pt;}
.ydf{bottom:401.457600pt;}
.y8{bottom:401.468600pt;}
.y120{bottom:401.503333pt;}
.ya7{bottom:401.718000pt;}
.y274{bottom:402.120000pt;}
.y197{bottom:407.999467pt;}
.y1fa{bottom:408.108933pt;}
.y4c{bottom:409.080400pt;}
.y8b{bottom:409.107733pt;}
.y159{bottom:409.453333pt;}
.y1e2{bottom:413.453333pt;}
.y219{bottom:414.746667pt;}
.y7{bottom:414.801533pt;}
.y273{bottom:416.120000pt;}
.y168{bottom:416.344667pt;}
.y24e{bottom:416.774000pt;}
.y102{bottom:416.776933pt;}
.y235{bottom:416.778400pt;}
.y60{bottom:416.787867pt;}
.yde{bottom:416.791600pt;}
.y11f{bottom:416.837333pt;}
.ya6{bottom:417.052000pt;}
.y196{bottom:420.666667pt;}
.y4b{bottom:422.413333pt;}
.y1f9{bottom:423.442933pt;}
.y8a{bottom:424.441733pt;}
.y158{bottom:427.453333pt;}
.y6{bottom:428.134467pt;}
.y272{bottom:430.120000pt;}
.y1e1{bottom:431.453333pt;}
.y167{bottom:431.678667pt;}
.y24d{bottom:432.108000pt;}
.y1ba{bottom:432.109467pt;}
.y101{bottom:432.110933pt;}
.y5f{bottom:432.121867pt;}
.ydd{bottom:432.125600pt;}
.y11e{bottom:432.171333pt;}
.ya5{bottom:432.386000pt;}
.y218{bottom:432.746800pt;}
.y1f8{bottom:438.776933pt;}
.y89{bottom:439.775733pt;}
.y234{bottom:439.778667pt;}
.y195{bottom:440.893333pt;}
.y4a{bottom:441.080200pt;}
.y5{bottom:441.467400pt;}
.y271{bottom:444.120000pt;}
.y157{bottom:445.453333pt;}
.y166{bottom:447.012667pt;}
.y24c{bottom:447.442000pt;}
.y1b9{bottom:447.443467pt;}
.y100{bottom:447.444933pt;}
.y5e{bottom:447.455867pt;}
.ydc{bottom:447.458133pt;}
.y11d{bottom:447.505333pt;}
.ya4{bottom:447.720000pt;}
.y1e0{bottom:449.453333pt;}
.y1f7{bottom:454.110933pt;}
.y49{bottom:454.413133pt;}
.y4{bottom:454.800333pt;}
.y88{bottom:455.109733pt;}
.y233{bottom:455.112667pt;}
.y217{bottom:455.413333pt;}
.y270{bottom:458.120000pt;}
.y194{bottom:458.893333pt;}
.y165{bottom:462.346667pt;}
.y24b{bottom:462.776000pt;}
.y1b8{bottom:462.777467pt;}
.yff{bottom:462.778933pt;}
.y5d{bottom:462.789867pt;}
.ydb{bottom:462.790667pt;}
.y11c{bottom:462.839333pt;}
.y156{bottom:463.453333pt;}
.y1df{bottom:467.453333pt;}
.y3{bottom:468.133267pt;}
.y216{bottom:469.413333pt;}
.y1f6{bottom:469.444933pt;}
.y87{bottom:470.443733pt;}
.ycc{bottom:471.226667pt;}
.y26f{bottom:472.120000pt;}
.y48{bottom:473.080000pt;}
.y193{bottom:476.893333pt;}
.y24a{bottom:478.110000pt;}
.y1b7{bottom:478.111467pt;}
.yfe{bottom:478.112933pt;}
.yda{bottom:478.123200pt;}
.y5c{bottom:478.123867pt;}
.y11b{bottom:478.173333pt;}
.y155{bottom:481.453333pt;}
.y2{bottom:481.466200pt;}
.y1f5{bottom:484.778933pt;}
.y1de{bottom:485.453333pt;}
.y86{bottom:485.777733pt;}
.y26e{bottom:486.120133pt;}
.ycb{bottom:491.453333pt;}
.y249{bottom:493.444000pt;}
.y1b6{bottom:493.445467pt;}
.yfd{bottom:493.446933pt;}
.yd9{bottom:493.455733pt;}
.y5b{bottom:493.457867pt;}
.y192{bottom:494.893333pt;}
.y47{bottom:496.133333pt;}
.y154{bottom:499.453333pt;}
.y1f4{bottom:500.112933pt;}
.y26d{bottom:500.120133pt;}
.y85{bottom:501.111733pt;}
.y1dd{bottom:503.453333pt;}
.y13c{bottom:505.892267pt;}
.y187{bottom:506.559467pt;}
.y1{bottom:508.133333pt;}
.y248{bottom:508.778000pt;}
.y1b5{bottom:508.779467pt;}
.yfc{bottom:508.780933pt;}
.y215{bottom:508.783333pt;}
.yd8{bottom:508.788267pt;}
.y5a{bottom:508.791867pt;}
.yca{bottom:509.453333pt;}
.y191{bottom:512.893333pt;}
.y26c{bottom:514.120000pt;}
.y1f3{bottom:515.446933pt;}
.y84{bottom:516.445733pt;}
.y153{bottom:517.453333pt;}
.y13b{bottom:518.559467pt;}
.y186{bottom:519.226667pt;}
.y1dc{bottom:521.453333pt;}
.y247{bottom:524.112000pt;}
.y1b4{bottom:524.113467pt;}
.y214{bottom:524.117333pt;}
.yd7{bottom:524.120800pt;}
.y59{bottom:524.125867pt;}
.yc9{bottom:527.453333pt;}
.y26b{bottom:528.120133pt;}
.y1f2{bottom:530.780933pt;}
.y190{bottom:530.893333pt;}
.y13a{bottom:531.226667pt;}
.y83{bottom:531.779733pt;}
.yfb{bottom:531.781200pt;}
.y152{bottom:535.453333pt;}
.y246{bottom:539.446000pt;}
.y1b3{bottom:539.447467pt;}
.y213{bottom:539.451333pt;}
.yd6{bottom:539.453333pt;}
.y58{bottom:539.459867pt;}
.y26a{bottom:542.120133pt;}
.y46{bottom:542.786667pt;}
.yc8{bottom:545.453333pt;}
.y1f1{bottom:546.114933pt;}
.y82{bottom:547.113733pt;}
.y18f{bottom:548.893333pt;}
.y139{bottom:551.453333pt;}
.y151{bottom:553.453333pt;}
.y245{bottom:554.780000pt;}
.y1b2{bottom:554.781467pt;}
.y212{bottom:554.785333pt;}
.yd5{bottom:554.785867pt;}
.y57{bottom:554.793867pt;}
.y269{bottom:556.120000pt;}
.y185{bottom:557.453333pt;}
.y1f0{bottom:561.448933pt;}
.y45{bottom:561.456467pt;}
.y81{bottom:562.447733pt;}
.yc7{bottom:563.453333pt;}
.y138{bottom:565.453333pt;}
.y18e{bottom:566.893333pt;}
.yfa{bottom:570.114000pt;}
.y1b1{bottom:570.115467pt;}
.yd4{bottom:570.118400pt;}
.y211{bottom:570.119333pt;}
.y56{bottom:570.126400pt;}
.y150{bottom:571.453333pt;}
.y44{bottom:574.789400pt;}
.y184{bottom:575.453333pt;}
.y1ef{bottom:576.782933pt;}
.y80{bottom:577.781733pt;}
.y268{bottom:577.783200pt;}
.y137{bottom:579.453333pt;}
.yc6{bottom:581.453333pt;}
.y18d{bottom:584.893333pt;}
.yf9{bottom:585.448000pt;}
.y1b0{bottom:585.449467pt;}
.yd3{bottom:585.450933pt;}
.y55{bottom:585.458933pt;}
.y43{bottom:588.122333pt;}
.y14f{bottom:589.453333pt;}
.y1ee{bottom:592.116933pt;}
.y7f{bottom:593.115733pt;}
.y25{bottom:593.412933pt;}
.y136{bottom:593.453333pt;}
.yc5{bottom:599.453333pt;}
.yf8{bottom:600.782000pt;}
.yd2{bottom:600.783467pt;}
.y54{bottom:600.791467pt;}
.y42{bottom:601.455267pt;}
.y18c{bottom:602.893333pt;}
.y24{bottom:606.080133pt;}
.y1ed{bottom:607.450933pt;}
.y14e{bottom:607.453333pt;}
.y7e{bottom:608.449733pt;}
.y135{bottom:611.453333pt;}
.y41{bottom:614.788200pt;}
.yd1{bottom:616.116000pt;}
.y1af{bottom:616.117467pt;}
.y53{bottom:616.124000pt;}
.yc4{bottom:617.453333pt;}
.y18b{bottom:620.893333pt;}
.y23{bottom:622.080133pt;}
.y7d{bottom:623.783733pt;}
.y134{bottom:625.453333pt;}
.y40{bottom:628.121133pt;}
.y183{bottom:629.453333pt;}
.yd0{bottom:631.450000pt;}
.y1ae{bottom:631.451467pt;}
.y52{bottom:631.456533pt;}
.yc3{bottom:635.453333pt;}
.y293{bottom:638.120267pt;}
.y18a{bottom:638.893333pt;}
.y7c{bottom:639.117733pt;}
.y133{bottom:639.453333pt;}
.y3f{bottom:641.454067pt;}
.y14d{bottom:643.453333pt;}
.ycf{bottom:646.784000pt;}
.y1ad{bottom:646.785467pt;}
.y51{bottom:646.789067pt;}
.y292{bottom:652.120267pt;}
.y189{bottom:652.893333pt;}
.yc2{bottom:653.453333pt;}
.y7b{bottom:654.451733pt;}
.y3e{bottom:654.787000pt;}
.y14c{bottom:657.453333pt;}
.y22{bottom:662.080000pt;}
.yce{bottom:662.118000pt;}
.y1ac{bottom:662.119467pt;}
.y50{bottom:662.121600pt;}
.y291{bottom:666.120267pt;}
.y3d{bottom:668.119933pt;}
.y7a{bottom:669.785733pt;}
.yc1{bottom:671.453333pt;}
.y188{bottom:672.560000pt;}
.ycd{bottom:677.452000pt;}
.y4f{bottom:677.454133pt;}
.y182{bottom:680.120000pt;}
.y290{bottom:680.120133pt;}
.y3c{bottom:681.452867pt;}
.y21{bottom:683.413333pt;}
.y79{bottom:685.119733pt;}
.yc0{bottom:685.453333pt;}
.y4e{bottom:692.786000pt;}
.y132{bottom:694.120000pt;}
.y28f{bottom:694.120133pt;}
.y20{bottom:704.746667pt;}
.y3b{bottom:708.120000pt;}
.y1f{bottom:750.080133pt;}
.h3{height:36.096000pt;}
.h6{height:40.368000pt;}
.h2{height:42.610667pt;}
.h1{height:42.864000pt;}
.hd{height:44.853333pt;}
.h11{height:44.853867pt;}
.hc{height:45.120000pt;}
.h8{height:49.338667pt;}
.h7{height:49.632000pt;}
.h5{height:53.824000pt;}
.hb{height:53.899733pt;}
.ha{height:53.902400pt;}
.h9{height:53.916800pt;}
.h10{height:53.918400pt;}
.hf{height:53.990400pt;}
.he{height:53.994667pt;}
.h4{height:71.765333pt;}
.h0{height:790.666667pt;}
.w0{width:561.333333pt;}
.x0{left:0.000000pt;}
.x1{left:68.426667pt;}
.x6{left:72.693733pt;}
.xa{left:74.398667pt;}
.x1e{left:82.826533pt;}
.x10{left:86.600000pt;}
.x3{left:87.707333pt;}
.x8{left:101.892933pt;}
.x1d{left:104.333867pt;}
.xe{left:111.786667pt;}
.xd{left:114.106667pt;}
.x9{left:129.665867pt;}
.x1c{left:139.920000pt;}
.x18{left:158.346667pt;}
.x17{left:161.920000pt;}
.x1f{left:165.640000pt;}
.x12{left:180.813333pt;}
.x7{left:182.879800pt;}
.x13{left:188.933333pt;}
.x19{left:190.560000pt;}
.x1b{left:203.853333pt;}
.x5{left:207.626667pt;}
.x1a{left:222.906667pt;}
.x16{left:226.600000pt;}
.xc{left:234.133333pt;}
.x4{left:262.666667pt;}
.xf{left:265.160000pt;}
.xb{left:295.691667pt;}
.x11{left:320.653333pt;}
.x2{left:394.306667pt;}
.x14{left:427.560000pt;}
.x15{left:428.786667pt;}
}




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