
    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_16166e3c293b5002f720b48d.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_b4d0b4569b8872ad8b042632.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_f0994daaf3a17327a4c7d2f6.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;}
.v2{vertical-align:21.820800px;}
.v1{vertical-align:27.720000px;}
.lsd1{letter-spacing:-1.867800px;}
.ls66{letter-spacing:-1.749000px;}
.ls70{letter-spacing:-1.630200px;}
.lsc6{letter-spacing:-1.570800px;}
.ls52{letter-spacing:-1.452000px;}
.ls56{letter-spacing:-1.446000px;}
.ls40{letter-spacing:-1.445400px;}
.ls3f{letter-spacing:-1.438800px;}
.lsae{letter-spacing:-1.327500px;}
.ls89{letter-spacing:-1.326600px;}
.lsaf{letter-spacing:-1.326000px;}
.lsca{letter-spacing:-1.313400px;}
.ls72{letter-spacing:-1.267200px;}
.ls2c{letter-spacing:-1.260000px;}
.lsc1{letter-spacing:-1.207800px;}
.ls27{letter-spacing:-1.206000px;}
.ls87{letter-spacing:-1.146000px;}
.lscf{letter-spacing:-1.141800px;}
.ls65{letter-spacing:-1.089000px;}
.ls53{letter-spacing:-1.086000px;}
.ls6f{letter-spacing:-1.082400px;}
.lsd3{letter-spacing:-1.075800px;}
.ls3e{letter-spacing:-1.036200px;}
.lsc9{letter-spacing:-1.029600px;}
.ls39{letter-spacing:-1.016400px;}
.ls8f{letter-spacing:-0.972000px;}
.ls73{letter-spacing:-0.970200px;}
.ls93{letter-spacing:-0.966000px;}
.lsc8{letter-spacing:-0.963600px;}
.lscd{letter-spacing:-0.957000px;}
.lsd2{letter-spacing:-0.910800px;}
.ls3b{letter-spacing:-0.906000px;}
.ls59{letter-spacing:-0.904200px;}
.lscb{letter-spacing:-0.851400px;}
.ls28{letter-spacing:-0.846000px;}
.ls21{letter-spacing:-0.844800px;}
.ls58{letter-spacing:-0.792000px;}
.ls3d{letter-spacing:-0.785400px;}
.ls85{letter-spacing:-0.778800px;}
.ls6e{letter-spacing:-0.732600px;}
.ls6c{letter-spacing:-0.732000px;}
.lsa9{letter-spacing:-0.729000px;}
.ls2f{letter-spacing:-0.726000px;}
.lsc7{letter-spacing:-0.673200px;}
.ls29{letter-spacing:-0.672000px;}
.ls61{letter-spacing:-0.668250px;}
.ls60{letter-spacing:-0.666600px;}
.ls2d{letter-spacing:-0.666000px;}
.ls13{letter-spacing:-0.664200px;}
.lsac{letter-spacing:-0.661500px;}
.ls79{letter-spacing:-0.660000px;}
.ls7a{letter-spacing:-0.620400px;}
.ls8e{letter-spacing:-0.613800px;}
.ls90{letter-spacing:-0.612000px;}
.ls91{letter-spacing:-0.607200px;}
.ls2a{letter-spacing:-0.606000px;}
.lsce{letter-spacing:-0.600600px;}
.ls71{letter-spacing:-0.558000px;}
.lscc{letter-spacing:-0.554400px;}
.ls94{letter-spacing:-0.552000px;}
.lsb4{letter-spacing:-0.549000px;}
.ls51{letter-spacing:-0.547800px;}
.ls57{letter-spacing:-0.546000px;}
.lsb1{letter-spacing:-0.544500px;}
.lsad{letter-spacing:-0.540000px;}
.lsbc{letter-spacing:-0.495000px;}
.ls41{letter-spacing:-0.488400px;}
.ls3c{letter-spacing:-0.486000px;}
.ls63{letter-spacing:-0.481800px;}
.lsa{letter-spacing:-0.429000px;}
.ls55{letter-spacing:-0.426000px;}
.ls62{letter-spacing:-0.422400px;}
.lsc2{letter-spacing:-0.389400px;}
.lsc4{letter-spacing:-0.376200px;}
.ls1f{letter-spacing:-0.369600px;}
.ls64{letter-spacing:-0.366000px;}
.ls9{letter-spacing:-0.363000px;}
.lsc3{letter-spacing:-0.356400px;}
.ls2b{letter-spacing:-0.312000px;}
.lsc{letter-spacing:-0.310200px;}
.ls92{letter-spacing:-0.306000px;}
.ls78{letter-spacing:-0.303600px;}
.lsbb{letter-spacing:-0.264000px;}
.ls3a{letter-spacing:-0.252000px;}
.ls7b{letter-spacing:-0.250800px;}
.ls5a{letter-spacing:-0.244200px;}
.lsc5{letter-spacing:-0.198000px;}
.ls74{letter-spacing:-0.191400px;}
.ls25{letter-spacing:-0.186000px;}
.ls8{letter-spacing:-0.184800px;}
.lsb6{letter-spacing:-0.184500px;}
.lsb5{letter-spacing:-0.180000px;}
.lsb2{letter-spacing:-0.135000px;}
.ls5b{letter-spacing:-0.132000px;}
.ls4f{letter-spacing:-0.126000px;}
.ls20{letter-spacing:-0.125400px;}
.ls22{letter-spacing:-0.072600px;}
.lsb3{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.066000px;}
.ls5c{letter-spacing:-0.064800px;}
.ls5d{letter-spacing:-0.059400px;}
.lsaa{letter-spacing:-0.030000px;}
.ls30{letter-spacing:-0.028800px;}
.lsba{letter-spacing:-0.019800px;}
.lse{letter-spacing:-0.019200px;}
.lsab{letter-spacing:-0.018000px;}
.lsb8{letter-spacing:-0.013500px;}
.ls24{letter-spacing:-0.013200px;}
.ls5e{letter-spacing:-0.012150px;}
.ls84{letter-spacing:-0.012000px;}
.ls43{letter-spacing:-0.010800px;}
.lsf{letter-spacing:-0.009600px;}
.lsa8{letter-spacing:-0.009000px;}
.ls10{letter-spacing:-0.008400px;}
.ls12{letter-spacing:-0.007200px;}
.ls7{letter-spacing:-0.006600px;}
.ls26{letter-spacing:-0.006000px;}
.ls14{letter-spacing:-0.005700px;}
.ls5{letter-spacing:-0.005400px;}
.lsd{letter-spacing:-0.004800px;}
.lsb0{letter-spacing:-0.004500px;}
.ls42{letter-spacing:-0.004050px;}
.ls11{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.005400px;}
.ls80{letter-spacing:0.006600px;}
.lsb9{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.009000px;}
.ls6{letter-spacing:0.029904px;}
.ls81{letter-spacing:0.046200px;}
.ls34{letter-spacing:0.052800px;}
.ls76{letter-spacing:0.054000px;}
.ls83{letter-spacing:0.059400px;}
.ls6d{letter-spacing:0.092400px;}
.ls67{letter-spacing:0.105600px;}
.ls8b{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.112200px;}
.ls6b{letter-spacing:0.114000px;}
.lsa5{letter-spacing:0.120000px;}
.ls9f{letter-spacing:0.168000px;}
.ls1a{letter-spacing:0.171600px;}
.ls4a{letter-spacing:0.174000px;}
.ls46{letter-spacing:0.180000px;}
.lsa0{letter-spacing:0.228000px;}
.ls17{letter-spacing:0.231000px;}
.ls0{letter-spacing:0.232200px;}
.ls4b{letter-spacing:0.234000px;}
.lsa1{letter-spacing:0.240000px;}
.ls7c{letter-spacing:0.283800px;}
.ls31{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.290400px;}
.ls6a{letter-spacing:0.294000px;}
.ls4d{letter-spacing:0.297000px;}
.ls2{letter-spacing:0.349800px;}
.lsa3{letter-spacing:0.351000px;}
.lsa4{letter-spacing:0.354000px;}
.ls19{letter-spacing:0.356400px;}
.lsa2{letter-spacing:0.360000px;}
.ls49{letter-spacing:0.414000px;}
.ls2e{letter-spacing:0.415800px;}
.lsbd{letter-spacing:0.468600px;}
.ls54{letter-spacing:0.474000px;}
.ls75{letter-spacing:0.475200px;}
.ls1e{letter-spacing:0.528000px;}
.ls50{letter-spacing:0.534000px;}
.ls37{letter-spacing:0.534600px;}
.lsb7{letter-spacing:0.535500px;}
.lsa6{letter-spacing:0.540000px;}
.ls7e{letter-spacing:0.541200px;}
.ls1c{letter-spacing:0.588000px;}
.ls44{letter-spacing:0.594000px;}
.ls23{letter-spacing:0.640200px;}
.ls8a{letter-spacing:0.646800px;}
.ls1b{letter-spacing:0.653400px;}
.ls32{letter-spacing:0.654000px;}
.lsbe{letter-spacing:0.706200px;}
.ls4{letter-spacing:0.712800px;}
.ls4c{letter-spacing:0.765600px;}
.ls16{letter-spacing:0.772200px;}
.ls86{letter-spacing:0.774000px;}
.ls7f{letter-spacing:0.778800px;}
.ls97{letter-spacing:0.816000px;}
.ls48{letter-spacing:0.818400px;}
.ls98{letter-spacing:0.828000px;}
.lsbf{letter-spacing:0.831600px;}
.ls96{letter-spacing:0.841500px;}
.lsa7{letter-spacing:0.891000px;}
.ls8d{letter-spacing:0.894000px;}
.ls95{letter-spacing:0.900000px;}
.ls9c{letter-spacing:0.948000px;}
.ls45{letter-spacing:0.950400px;}
.ls9b{letter-spacing:0.954000px;}
.ls36{letter-spacing:0.957000px;}
.ls9a{letter-spacing:0.958500px;}
.ls99{letter-spacing:0.960000px;}
.ls1d{letter-spacing:1.014000px;}
.ls82{letter-spacing:1.016400px;}
.ls77{letter-spacing:1.074000px;}
.ls7d{letter-spacing:1.128000px;}
.ls15{letter-spacing:1.135200px;}
.ls5f{letter-spacing:1.194600px;}
.ls4e{letter-spacing:1.254000px;}
.ls69{letter-spacing:1.313400px;}
.ls88{letter-spacing:1.434000px;}
.lsd0{letter-spacing:1.438800px;}
.ls68{letter-spacing:1.491600px;}
.ls9e{letter-spacing:1.494000px;}
.ls9d{letter-spacing:1.500000px;}
.ls8c{letter-spacing:1.608000px;}
.ls33{letter-spacing:1.669800px;}
.ls35{letter-spacing:1.676400px;}
.lsc0{letter-spacing:1.973400px;}
.ls47{letter-spacing:14.579400px;}
.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;}
}
.wsd4{word-spacing:-16.486800px;}
.wsc3{word-spacing:-16.480200px;}
.wscb{word-spacing:-16.255800px;}
.wsc9{word-spacing:-16.123800px;}
.wsca{word-spacing:-15.774000px;}
.wsa7{word-spacing:-15.228000px;}
.ws42{word-spacing:-15.048000px;}
.ws9d{word-spacing:-15.000000px;}
.wsa1{word-spacing:-14.988000px;}
.ws0{word-spacing:-14.529300px;}
.wsf{word-spacing:-13.740000px;}
.wsa4{word-spacing:-12.744000px;}
.wsa2{word-spacing:-12.208500px;}
.wsa0{word-spacing:-12.091500px;}
.wsb2{word-spacing:-11.790000px;}
.wsb3{word-spacing:-11.785500px;}
.wsaa{word-spacing:-11.601000px;}
.ws2c{word-spacing:-11.550000px;}
.wsa5{word-spacing:-11.430000px;}
.wsad{word-spacing:-11.358000px;}
.wsa8{word-spacing:-11.250000px;}
.wsa9{word-spacing:-11.245500px;}
.ws9e{word-spacing:-11.241000px;}
.wsb4{word-spacing:-11.236500px;}
.wsae{word-spacing:-11.178000px;}
.wsac{word-spacing:-11.115000px;}
.wsb0{word-spacing:-11.070000px;}
.wsb1{word-spacing:-11.065500px;}
.wsab{word-spacing:-10.705500px;}
.wsaf{word-spacing:-10.701000px;}
.wsa3{word-spacing:-10.588500px;}
.ws9f{word-spacing:-10.521000px;}
.ws2d{word-spacing:-10.120950px;}
.ws44{word-spacing:-10.112850px;}
.ws43{word-spacing:-10.060200px;}
.wsa6{word-spacing:-9.922500px;}
.ws5a{word-spacing:-0.838200px;}
.ws8{word-spacing:-0.778800px;}
.ws6b{word-spacing:-0.772200px;}
.ws20{word-spacing:-0.720000px;}
.ws64{word-spacing:-0.719400px;}
.ws22{word-spacing:-0.714000px;}
.ws58{word-spacing:-0.712800px;}
.ws4{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.654000px;}
.ws16{word-spacing:-0.653400px;}
.ws5c{word-spacing:-0.604800px;}
.ws7{word-spacing:-0.600600px;}
.ws46{word-spacing:-0.600000px;}
.ws54{word-spacing:-0.594000px;}
.ws8a{word-spacing:-0.547800px;}
.ws59{word-spacing:-0.541200px;}
.ws1b{word-spacing:-0.540000px;}
.ws62{word-spacing:-0.534600px;}
.ws7f{word-spacing:-0.534000px;}
.wscf{word-spacing:-0.488400px;}
.ws17{word-spacing:-0.481800px;}
.ws97{word-spacing:-0.480000px;}
.wsb{word-spacing:-0.475200px;}
.ws88{word-spacing:-0.422400px;}
.ws5d{word-spacing:-0.421200px;}
.ws68{word-spacing:-0.420000px;}
.ws9{word-spacing:-0.415800px;}
.ws24{word-spacing:-0.408000px;}
.ws67{word-spacing:-0.363000px;}
.ws51{word-spacing:-0.360000px;}
.ws70{word-spacing:-0.356400px;}
.wsc1{word-spacing:-0.354000px;}
.wsc5{word-spacing:-0.349800px;}
.wsc2{word-spacing:-0.342000px;}
.ws13{word-spacing:-0.297000px;}
.ws31{word-spacing:-0.294000px;}
.wsda{word-spacing:-0.290400px;}
.wsdc{word-spacing:-0.244200px;}
.ws8e{word-spacing:-0.237600px;}
.ws30{word-spacing:-0.234000px;}
.wsdb{word-spacing:-0.231000px;}
.ws7e{word-spacing:-0.224400px;}
.ws7b{word-spacing:-0.184800px;}
.wsbe{word-spacing:-0.180000px;}
.ws19{word-spacing:-0.178200px;}
.ws75{word-spacing:-0.174000px;}
.ws93{word-spacing:-0.171600px;}
.ws74{word-spacing:-0.168000px;}
.ws3f{word-spacing:-0.118800px;}
.ws38{word-spacing:-0.112200px;}
.ws66{word-spacing:-0.066000px;}
.ws35{word-spacing:-0.059400px;}
.ws27{word-spacing:-0.054000px;}
.ws29{word-spacing:-0.052800px;}
.wsc6{word-spacing:-0.007200px;}
.ws48{word-spacing:-0.006000px;}
.wsd2{word-spacing:-0.004800px;}
.ws2{word-spacing:0.000000px;}
.ws5e{word-spacing:0.005400px;}
.wse{word-spacing:0.005700px;}
.ws6d{word-spacing:0.006000px;}
.wsa{word-spacing:0.006600px;}
.ws81{word-spacing:0.012000px;}
.ws6c{word-spacing:0.013200px;}
.wsb8{word-spacing:0.018000px;}
.wsb5{word-spacing:0.024000px;}
.ws12{word-spacing:0.059400px;}
.ws33{word-spacing:0.060000px;}
.ws8c{word-spacing:0.066000px;}
.ws41{word-spacing:0.118800px;}
.ws98{word-spacing:0.120000px;}
.wsd7{word-spacing:0.125400px;}
.ws56{word-spacing:0.171600px;}
.wsd8{word-spacing:0.178200px;}
.ws79{word-spacing:0.184800px;}
.ws87{word-spacing:0.224400px;}
.ws2e{word-spacing:0.231000px;}
.ws4d{word-spacing:0.237600px;}
.ws7c{word-spacing:0.244200px;}
.wsdd{word-spacing:0.290400px;}
.ws94{word-spacing:0.297000px;}
.ws78{word-spacing:0.303600px;}
.ws90{word-spacing:0.310200px;}
.ws2f{word-spacing:0.356400px;}
.ws82{word-spacing:0.360000px;}
.ws3{word-spacing:0.363000px;}
.ws4f{word-spacing:0.366000px;}
.ws61{word-spacing:0.415800px;}
.ws21{word-spacing:0.420000px;}
.ws71{word-spacing:0.422400px;}
.ws9b{word-spacing:0.474000px;}
.ws1e{word-spacing:0.480000px;}
.ws63{word-spacing:0.481800px;}
.ws26{word-spacing:0.486000px;}
.ws1d{word-spacing:0.540000px;}
.ws73{word-spacing:0.541200px;}
.ws3b{word-spacing:0.594000px;}
.ws9c{word-spacing:0.600000px;}
.ws3c{word-spacing:0.600600px;}
.ws4b{word-spacing:0.607200px;}
.ws25{word-spacing:0.660000px;}
.wsb7{word-spacing:0.666000px;}
.wsd3{word-spacing:0.666600px;}
.wsb6{word-spacing:0.678000px;}
.ws3d{word-spacing:0.712800px;}
.ws49{word-spacing:0.719400px;}
.ws52{word-spacing:0.720000px;}
.wsd1{word-spacing:0.726000px;}
.ws69{word-spacing:0.778800px;}
.ws6f{word-spacing:0.785400px;}
.ws95{word-spacing:0.786000px;}
.ws60{word-spacing:0.838200px;}
.ws99{word-spacing:0.840000px;}
.ws55{word-spacing:0.844800px;}
.wsbf{word-spacing:0.882000px;}
.ws6a{word-spacing:0.897600px;}
.ws45{word-spacing:0.900000px;}
.ws7d{word-spacing:0.904200px;}
.ws1c{word-spacing:0.906000px;}
.wsc0{word-spacing:0.930000px;}
.wsd{word-spacing:0.957000px;}
.ws47{word-spacing:0.960000px;}
.ws84{word-spacing:0.963600px;}
.ws1f{word-spacing:0.966000px;}
.ws5b{word-spacing:1.015200px;}
.ws37{word-spacing:1.016400px;}
.ws50{word-spacing:1.020000px;}
.ws86{word-spacing:1.069200px;}
.ws4e{word-spacing:1.074000px;}
.ws7a{word-spacing:1.075800px;}
.ws9a{word-spacing:1.080000px;}
.ws2a{word-spacing:1.082400px;}
.wsc4{word-spacing:1.089000px;}
.ws92{word-spacing:1.135200px;}
.ws1{word-spacing:1.139400px;}
.ws32{word-spacing:1.140000px;}
.ws40{word-spacing:1.141800px;}
.wsbd{word-spacing:1.146000px;}
.wscd{word-spacing:1.148400px;}
.ws28{word-spacing:1.194600px;}
.ws76{word-spacing:1.200000px;}
.ws8b{word-spacing:1.201200px;}
.wsc8{word-spacing:1.247400px;}
.ws39{word-spacing:1.254000px;}
.ws53{word-spacing:1.260000px;}
.ws8f{word-spacing:1.260600px;}
.wscc{word-spacing:1.313400px;}
.ws5{word-spacing:1.320000px;}
.ws85{word-spacing:1.326600px;}
.wsd9{word-spacing:1.333200px;}
.ws77{word-spacing:1.374000px;}
.ws4a{word-spacing:1.379400px;}
.ws91{word-spacing:1.380000px;}
.ws14{word-spacing:1.386000px;}
.wsc7{word-spacing:1.405800px;}
.wsde{word-spacing:1.432200px;}
.wsbc{word-spacing:1.434000px;}
.ws15{word-spacing:1.438800px;}
.ws80{word-spacing:1.440000px;}
.ws18{word-spacing:1.445400px;}
.wsbb{word-spacing:1.446000px;}
.ws4c{word-spacing:1.452000px;}
.ws11{word-spacing:1.498200px;}
.ws6e{word-spacing:1.504800px;}
.wsd5{word-spacing:1.544400px;}
.ws89{word-spacing:1.551000px;}
.wsc{word-spacing:1.557600px;}
.ws6{word-spacing:1.564200px;}
.wsd6{word-spacing:1.590600px;}
.ws72{word-spacing:1.610400px;}
.ws2b{word-spacing:1.617000px;}
.ws3a{word-spacing:1.623600px;}
.ws8d{word-spacing:1.630200px;}
.ws36{word-spacing:1.676400px;}
.ws1a{word-spacing:1.683000px;}
.ws57{word-spacing:1.801800px;}
.ws34{word-spacing:2.640000px;}
.ws5f{word-spacing:3.978750px;}
.wsd0{word-spacing:5.398800px;}
.ws83{word-spacing:5.874000px;}
.wsce{word-spacing:6.844200px;}
.ws65{word-spacing:9.365400px;}
.ws96{word-spacing:10.206000px;}
.ws3e{word-spacing:12.295800px;}
.wsba{word-spacing:15.000000px;}
.wsb9{word-spacing:15.006000px;}
.ws10{word-spacing:35.812800px;}
._f{margin-left:-15.366000px;}
._10{margin-left:-11.193600px;}
._b{margin-left:-9.292800px;}
._a{margin-left:-7.913400px;}
._7{margin-left:-6.177600px;}
._1{margin-left:-4.316400px;}
._4{margin-left:-2.878200px;}
._0{margin-left:-1.495800px;}
._5{width:1.328400px;}
._3{width:3.393600px;}
._e{width:11.709600px;}
._8{width:14.280000px;}
._11{width:15.465000px;}
._d{width:34.095600px;}
._6{width:36.666000px;}
._2{width:47.750400px;}
._c{width:855.422400px;}
._12{width:905.630400px;}
._13{width:1116.652800px;}
._9{width:1184.942400px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:40.500000px;}
.fs2{font-size:42.720000px;}
.fsd{font-size:45.000000px;}
.fsa{font-size:46.200000px;}
.fs4{font-size:48.000000px;}
.fsc{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs7{font-size:58.800000px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y148{bottom:48.556500px;}
.y72{bottom:48.704400px;}
.y1c5{bottom:48.852000px;}
.y4c{bottom:48.864750px;}
.y1e8{bottom:48.870150px;}
.y19{bottom:48.974400px;}
.y93{bottom:49.019400px;}
.ye1{bottom:49.119450px;}
.y12d{bottom:49.314300px;}
.y109{bottom:49.315500px;}
.yb8{bottom:49.566000px;}
.y1a9{bottom:58.597500px;}
.y71{bottom:62.955000px;}
.y18{bottom:63.225000px;}
.y92{bottom:63.269550px;}
.y147{bottom:65.807250px;}
.y1c4{bottom:66.102750px;}
.y4b{bottom:66.115500px;}
.y1e7{bottom:66.120900px;}
.y165{bottom:66.135000px;}
.ye0{bottom:66.370200px;}
.y12c{bottom:66.565050px;}
.y108{bottom:66.566250px;}
.yb7{bottom:66.816750px;}
.y1a8{bottom:75.848250px;}
.y91{bottom:77.519400px;}
.y164{bottom:81.885000px;}
.y146{bottom:83.058000px;}
.y1c3{bottom:83.353500px;}
.y4a{bottom:83.366250px;}
.y1e6{bottom:83.371650px;}
.ydf{bottom:83.620950px;}
.y12b{bottom:83.815800px;}
.y107{bottom:83.817000px;}
.yb6{bottom:84.067500px;}
.y90{bottom:91.770000px;}
.y1a7{bottom:93.099000px;}
.y163{bottom:97.635000px;}
.y145{bottom:100.308750px;}
.y1c2{bottom:100.604250px;}
.y49{bottom:100.617000px;}
.y1e5{bottom:100.622400px;}
.yde{bottom:100.871700px;}
.y12a{bottom:101.066550px;}
.y106{bottom:101.067750px;}
.yb5{bottom:101.318250px;}
.y18a{bottom:105.885000px;}
.y70{bottom:108.126000px;}
.y1a6{bottom:110.349750px;}
.yf{bottom:112.551750px;}
.y162{bottom:113.385000px;}
.y144{bottom:117.559500px;}
.y1c1{bottom:117.855000px;}
.y48{bottom:117.867750px;}
.y1e4{bottom:117.873150px;}
.ydd{bottom:118.122450px;}
.y129{bottom:118.317300px;}
.y105{bottom:118.318500px;}
.yb4{bottom:118.569000px;}
.y189{bottom:121.635000px;}
.y6f{bottom:125.376750px;}
.y1a5{bottom:127.600500px;}
.y161{bottom:129.135000px;}
.ye{bottom:129.802500px;}
.y143{bottom:134.810250px;}
.y1c0{bottom:135.105750px;}
.y47{bottom:135.118500px;}
.y1e3{bottom:135.123900px;}
.ydc{bottom:135.373200px;}
.y128{bottom:135.568050px;}
.y104{bottom:135.569250px;}
.yb3{bottom:135.819750px;}
.y188{bottom:137.385000px;}
.y8f{bottom:140.379000px;}
.y6e{bottom:142.627500px;}
.y1a4{bottom:144.851250px;}
.yd{bottom:147.053250px;}
.y142{bottom:152.061000px;}
.y1bf{bottom:152.356500px;}
.y46{bottom:152.369250px;}
.y1e2{bottom:152.374650px;}
.ydb{bottom:152.623950px;}
.y127{bottom:152.818800px;}
.y103{bottom:152.820000px;}
.yb2{bottom:153.070500px;}
.y187{bottom:153.135000px;}
.y8e{bottom:157.629750px;}
.y6d{bottom:159.878250px;}
.y1a3{bottom:162.102000px;}
.y160{bottom:162.133500px;}
.yc{bottom:164.304000px;}
.y186{bottom:168.885150px;}
.y141{bottom:169.311750px;}
.y1be{bottom:169.607250px;}
.y45{bottom:169.620000px;}
.y1e1{bottom:169.625400px;}
.yda{bottom:169.874700px;}
.y126{bottom:170.069550px;}
.yb1{bottom:170.321250px;}
.y8d{bottom:174.880500px;}
.y6c{bottom:177.129000px;}
.y1a2{bottom:179.352750px;}
.y15f{bottom:179.384250px;}
.yb{bottom:181.554750px;}
.y185{bottom:184.635150px;}
.y102{bottom:185.085000px;}
.y140{bottom:186.562500px;}
.y1bd{bottom:186.858000px;}
.y1e0{bottom:186.876150px;}
.y125{bottom:187.320300px;}
.yb0{bottom:187.572000px;}
.y8c{bottom:192.131250px;}
.y6b{bottom:194.379750px;}
.yd9{bottom:195.750000px;}
.y1a1{bottom:196.603500px;}
.y15e{bottom:196.635000px;}
.ya{bottom:198.805500px;}
.y184{bottom:200.385150px;}
.y101{bottom:200.835000px;}
.y13f{bottom:203.813250px;}
.y1bc{bottom:204.108750px;}
.y44{bottom:204.120000px;}
.y1df{bottom:204.126900px;}
.y124{bottom:204.571050px;}
.yaf{bottom:204.822750px;}
.y8b{bottom:209.382000px;}
.y6a{bottom:211.630500px;}
.y1a0{bottom:213.854250px;}
.y9{bottom:216.056250px;}
.y183{bottom:216.135150px;}
.y100{bottom:216.585000px;}
.y43{bottom:219.870000px;}
.y13e{bottom:221.064000px;}
.y1bb{bottom:221.359500px;}
.y1de{bottom:221.377650px;}
.y123{bottom:221.821800px;}
.yae{bottom:222.073500px;}
.y8a{bottom:226.632750px;}
.y69{bottom:228.881250px;}
.y19f{bottom:231.105000px;}
.y15d{bottom:231.135000px;}
.y182{bottom:231.885150px;}
.yff{bottom:232.335000px;}
.y8{bottom:233.307000px;}
.y42{bottom:235.620000px;}
.yd8{bottom:236.385000px;}
.y13d{bottom:238.314750px;}
.y1ba{bottom:238.610250px;}
.y1dd{bottom:238.628400px;}
.y122{bottom:239.072550px;}
.yad{bottom:239.324250px;}
.y89{bottom:243.883500px;}
.y68{bottom:246.132000px;}
.y15c{bottom:246.885000px;}
.y181{bottom:247.635000px;}
.yfe{bottom:248.085000px;}
.y19e{bottom:248.355750px;}
.y7{bottom:250.557750px;}
.y41{bottom:251.370000px;}
.yd7{bottom:252.135000px;}
.y13c{bottom:255.565500px;}
.y1b9{bottom:255.861000px;}
.y1dc{bottom:255.879150px;}
.y121{bottom:256.323300px;}
.yac{bottom:256.575000px;}
.y88{bottom:261.134250px;}
.y15b{bottom:262.635000px;}
.y67{bottom:263.382750px;}
.y180{bottom:263.385000px;}
.yfd{bottom:263.835000px;}
.y19d{bottom:265.606500px;}
.y40{bottom:267.120000px;}
.y6{bottom:267.808500px;}
.yd6{bottom:267.885000px;}
.y13b{bottom:272.816250px;}
.y1b8{bottom:273.111750px;}
.y1db{bottom:273.129900px;}
.y120{bottom:273.574050px;}
.y87{bottom:278.385000px;}
.y17f{bottom:279.135150px;}
.yfc{bottom:279.585000px;}
.y66{bottom:280.633500px;}
.y19c{bottom:282.857250px;}
.y3f{bottom:282.870000px;}
.yd5{bottom:283.635000px;}
.y5{bottom:285.059250px;}
.y13a{bottom:290.067000px;}
.y1b7{bottom:290.362500px;}
.y1da{bottom:290.379000px;}
.y11f{bottom:290.824800px;}
.y15a{bottom:294.135000px;}
.yab{bottom:294.480000px;}
.y17e{bottom:294.885000px;}
.yfb{bottom:295.335000px;}
.y65{bottom:297.884250px;}
.y3e{bottom:298.620000px;}
.yd4{bottom:299.385000px;}
.y19b{bottom:300.108000px;}
.y4{bottom:302.310000px;}
.y139{bottom:307.317750px;}
.y1b6{bottom:307.613250px;}
.y1d9{bottom:307.628100px;}
.y11e{bottom:308.075550px;}
.y159{bottom:309.885000px;}
.yaa{bottom:310.230000px;}
.y17d{bottom:310.635000px;}
.yfa{bottom:311.085000px;}
.y86{bottom:312.885000px;}
.y3d{bottom:314.370000px;}
.y64{bottom:315.124800px;}
.yd3{bottom:315.135000px;}
.y19a{bottom:317.358750px;}
.y138{bottom:324.568500px;}
.y1b5{bottom:324.864000px;}
.y1d8{bottom:324.877200px;}
.y11d{bottom:325.326300px;}
.y158{bottom:325.635000px;}
.ya9{bottom:325.980000px;}
.y17c{bottom:326.385000px;}
.y85{bottom:328.635000px;}
.y3c{bottom:330.120000px;}
.yd2{bottom:330.885000px;}
.y63{bottom:332.375550px;}
.y199{bottom:334.609500px;}
.y157{bottom:341.385000px;}
.ya8{bottom:341.730000px;}
.y137{bottom:341.819250px;}
.y1b4{bottom:342.114750px;}
.yf9{bottom:342.116400px;}
.y1d7{bottom:342.126300px;}
.y17b{bottom:342.135000px;}
.y84{bottom:344.385000px;}
.y3b{bottom:345.870000px;}
.yd1{bottom:346.635000px;}
.y62{bottom:349.626300px;}
.y11c{bottom:351.201600px;}
.y198{bottom:351.860250px;}
.y3{bottom:354.060000px;}
.y156{bottom:357.135000px;}
.ya7{bottom:357.480000px;}
.y17a{bottom:357.885000px;}
.y136{bottom:359.070000px;}
.y1b3{bottom:359.365500px;}
.yf8{bottom:359.367150px;}
.y1d6{bottom:359.375400px;}
.y83{bottom:360.135000px;}
.y3a{bottom:361.620000px;}
.y61{bottom:366.877050px;}
.y197{bottom:369.111000px;}
.y179{bottom:373.635000px;}
.y82{bottom:375.885000px;}
.y1b2{bottom:376.616250px;}
.yf7{bottom:376.617900px;}
.y1d5{bottom:376.624500px;}
.y39{bottom:377.370000px;}
.y2{bottom:379.049400px;}
.yd0{bottom:379.619250px;}
.y60{bottom:384.127800px;}
.y196{bottom:386.361750px;}
.y178{bottom:389.385000px;}
.y11b{bottom:389.706000px;}
.y155{bottom:390.132750px;}
.y135{bottom:390.360000px;}
.y81{bottom:391.635000px;}
.y38{bottom:393.120000px;}
.y1{bottom:393.300000px;}
.y1b1{bottom:393.867000px;}
.yf6{bottom:393.868650px;}
.ya6{bottom:393.872400px;}
.y1d4{bottom:393.873600px;}
.ycf{bottom:396.870000px;}
.y5f{bottom:401.378550px;}
.y195{bottom:403.612500px;}
.y177{bottom:405.135000px;}
.y134{bottom:406.110000px;}
.y11a{bottom:406.956750px;}
.y154{bottom:407.383500px;}
.y80{bottom:407.385000px;}
.y37{bottom:408.870000px;}
.y1b0{bottom:411.117750px;}
.yf5{bottom:411.119400px;}
.y1d3{bottom:411.122700px;}
.ya5{bottom:411.123150px;}
.yce{bottom:414.120750px;}
.y5e{bottom:418.629300px;}
.y194{bottom:420.863250px;}
.y176{bottom:420.885000px;}
.y133{bottom:421.860000px;}
.y7f{bottom:423.135000px;}
.y119{bottom:424.207500px;}
.y153{bottom:424.634250px;}
.y1af{bottom:428.368500px;}
.yf4{bottom:428.370150px;}
.y1d2{bottom:428.371800px;}
.ya4{bottom:428.372250px;}
.ycd{bottom:431.371500px;}
.y5d{bottom:435.880050px;}
.y175{bottom:436.635000px;}
.y132{bottom:437.610000px;}
.y193{bottom:438.114000px;}
.y7e{bottom:438.885000px;}
.y118{bottom:441.458250px;}
.y36{bottom:441.857250px;}
.y152{bottom:441.885000px;}
.y1ae{bottom:445.619250px;}
.yf3{bottom:445.620900px;}
.y1d1{bottom:445.622550px;}
.ya3{bottom:445.623000px;}
.ycc{bottom:448.622250px;}
.y174{bottom:452.385000px;}
.y131{bottom:453.360000px;}
.y7d{bottom:454.635000px;}
.y192{bottom:455.364750px;}
.y117{bottom:458.709000px;}
.y35{bottom:459.108000px;}
.y5c{bottom:461.755350px;}
.y1ad{bottom:462.870000px;}
.yf2{bottom:462.871650px;}
.y1d0{bottom:462.873300px;}
.ya2{bottom:462.873750px;}
.ycb{bottom:465.873000px;}
.y173{bottom:468.135000px;}
.y130{bottom:469.110000px;}
.y7c{bottom:470.385000px;}
.y191{bottom:472.615500px;}
.y116{bottom:475.959750px;}
.y151{bottom:476.385000px;}
.y5b{bottom:479.006100px;}
.y1ac{bottom:480.120750px;}
.yf1{bottom:480.122400px;}
.y1cf{bottom:480.124050px;}
.ya1{bottom:480.124500px;}
.yca{bottom:483.123750px;}
.y172{bottom:483.885000px;}
.y12f{bottom:484.860000px;}
.y1f{bottom:486.631125px;}
.y34{bottom:486.978150px;}
.y190{bottom:489.866250px;}
.y150{bottom:492.135000px;}
.y115{bottom:493.210500px;}
.y1ab{bottom:497.371500px;}
.yf0{bottom:497.373150px;}
.y1ce{bottom:497.374800px;}
.ya0{bottom:497.375250px;}
.y171{bottom:499.635000px;}
.yc9{bottom:500.374500px;}
.y1e{bottom:501.630675px;}
.y7b{bottom:503.382000px;}
.y18f{bottom:507.117000px;}
.y14f{bottom:507.885000px;}
.y114{bottom:510.461250px;}
.y12e{bottom:514.622250px;}
.yef{bottom:514.623900px;}
.y1cd{bottom:514.625550px;}
.y9f{bottom:514.626000px;}
.y170{bottom:515.385000px;}
.y1d{bottom:516.630225px;}
.y22{bottom:516.631650px;}
.yc8{bottom:517.625250px;}
.y7a{bottom:520.632750px;}
.y5a{bottom:522.130500px;}
.y14e{bottom:523.635000px;}
.y18e{bottom:524.367750px;}
.y113{bottom:527.712000px;}
.y16f{bottom:531.135000px;}
.y21{bottom:531.631200px;}
.y33{bottom:531.873000px;}
.yee{bottom:531.874650px;}
.y1cc{bottom:531.876300px;}
.y9e{bottom:531.876750px;}
.yc7{bottom:534.876000px;}
.y1c{bottom:537.630450px;}
.y79{bottom:537.883500px;}
.y59{bottom:539.381250px;}
.y14d{bottom:539.385000px;}
.y18d{bottom:541.618500px;}
.y112{bottom:544.962750px;}
.y16e{bottom:546.885000px;}
.y32{bottom:549.123750px;}
.yed{bottom:549.125400px;}
.y1cb{bottom:549.127050px;}
.y9d{bottom:549.127500px;}
.yc6{bottom:552.126750px;}
.y1b{bottom:552.630000px;}
.y20{bottom:552.631425px;}
.y78{bottom:555.134250px;}
.y14c{bottom:555.135000px;}
.y58{bottom:556.632000px;}
.y18c{bottom:558.869250px;}
.y111{bottom:562.213500px;}
.y16d{bottom:562.635000px;}
.y31{bottom:566.374500px;}
.yec{bottom:566.376150px;}
.y1ca{bottom:566.377800px;}
.y9c{bottom:566.378250px;}
.yc5{bottom:569.377500px;}
.y14b{bottom:570.885000px;}
.y77{bottom:572.388600px;}
.y57{bottom:573.882750px;}
.y18b{bottom:576.120000px;}
.y1a{bottom:577.740000px;}
.y16c{bottom:578.385000px;}
.y110{bottom:579.464250px;}
.y30{bottom:583.625250px;}
.yeb{bottom:583.626900px;}
.y1c9{bottom:583.628550px;}
.y9b{bottom:583.629000px;}
.yc4{bottom:586.628250px;}
.y14a{bottom:586.635000px;}
.y76{bottom:589.637700px;}
.y56{bottom:591.133500px;}
.y16b{bottom:594.135000px;}
.y10f{bottom:596.715000px;}
.y2f{bottom:600.876000px;}
.yea{bottom:600.877650px;}
.y1c8{bottom:600.879300px;}
.y9a{bottom:600.879750px;}
.y149{bottom:602.385000px;}
.yc3{bottom:603.879000px;}
.y75{bottom:606.886800px;}
.y55{bottom:608.384250px;}
.y16a{bottom:609.885000px;}
.y2e{bottom:618.126750px;}
.ye9{bottom:618.128400px;}
.y1c7{bottom:618.130050px;}
.y99{bottom:618.130500px;}
.yc2{bottom:621.129750px;}
.y74{bottom:624.135900px;}
.y54{bottom:625.635000px;}
.y10e{bottom:628.005000px;}
.y2d{bottom:635.377500px;}
.ye8{bottom:635.379150px;}
.y1c6{bottom:635.380800px;}
.y98{bottom:635.381250px;}
.yc1{bottom:638.380500px;}
.y73{bottom:641.385000px;}
.y10d{bottom:643.755000px;}
.y2c{bottom:652.628250px;}
.ye7{bottom:652.629900px;}
.y97{bottom:652.632000px;}
.yc0{bottom:655.631250px;}
.y169{bottom:657.135000px;}
.y10c{bottom:659.505000px;}
.y53{bottom:660.135000px;}
.y17{bottom:667.003800px;}
.y2b{bottom:669.879000px;}
.ye6{bottom:669.880650px;}
.y96{bottom:669.882750px;}
.ybf{bottom:672.882000px;}
.y168{bottom:672.885000px;}
.y10b{bottom:675.255000px;}
.y52{bottom:675.885000px;}
.y16{bottom:681.254400px;}
.y2a{bottom:687.129750px;}
.ye5{bottom:687.131400px;}
.y95{bottom:687.133500px;}
.y167{bottom:688.635000px;}
.ybe{bottom:690.132750px;}
.y10a{bottom:691.005000px;}
.y51{bottom:691.635000px;}
.y15{bottom:695.505000px;}
.y29{bottom:704.380500px;}
.ye4{bottom:704.382150px;}
.y94{bottom:704.384250px;}
.ybd{bottom:707.383500px;}
.y50{bottom:707.385000px;}
.y166{bottom:713.008350px;}
.y14{bottom:713.505000px;}
.y28{bottom:721.631250px;}
.ye3{bottom:721.632900px;}
.y4f{bottom:723.135000px;}
.ybc{bottom:724.634250px;}
.y27{bottom:738.882000px;}
.ye2{bottom:738.883650px;}
.ybb{bottom:741.885000px;}
.y26{bottom:756.132750px;}
.y4e{bottom:756.134400px;}
.y1aa{bottom:758.355000px;}
.y13{bottom:759.255000px;}
.y25{bottom:773.383500px;}
.y4d{bottom:773.385150px;}
.yba{bottom:776.385000px;}
.y12{bottom:780.255000px;}
.y24{bottom:790.634250px;}
.yb9{bottom:792.135000px;}
.y11{bottom:804.105000px;}
.y23{bottom:807.885000px;}
.y10{bottom:855.105150px;}
.h5{height:51.216000px;}
.h2{height:57.618000px;}
.hd{height:58.536000px;}
.h11{height:58.537800px;}
.h10{height:58.539000px;}
.h3{height:60.819000px;}
.ha{height:64.020000px;}
.h15{height:64.020600px;}
.h14{height:65.039400px;}
.hb{height:65.040000px;}
.h13{height:65.040600px;}
.h4{height:70.422000px;}
.h12{height:70.437000px;}
.he{height:71.061000px;}
.hc{height:71.116200px;}
.hf{height:71.544000px;}
.h9{height:76.824000px;}
.h7{height:89.628000px;}
.h8{height:90.459600px;}
.h6{height:102.432000px;}
.h1{height:888.000000px;}
.h0{height:898.500000px;}
.w0{width:574.500000px;}
.x0{left:0.000000px;}
.x3{left:41.700000px;}
.x9{left:43.095675px;}
.xd{left:59.146050px;}
.x4{left:64.199400px;}
.xc{left:86.415000px;}
.xe{left:108.915000px;}
.x7{left:112.620000px;}
.x8{left:139.005300px;}
.xa{left:161.356425px;}
.x6{left:261.030000px;}
.xb{left:298.202025px;}
.x1{left:301.080000px;}
.x5{left:379.695000px;}
.x2{left:478.215000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.396267pt;}
.v1{vertical-align:24.640000pt;}
.lsd1{letter-spacing:-1.660267pt;}
.ls66{letter-spacing:-1.554667pt;}
.ls70{letter-spacing:-1.449067pt;}
.lsc6{letter-spacing:-1.396267pt;}
.ls52{letter-spacing:-1.290667pt;}
.ls56{letter-spacing:-1.285333pt;}
.ls40{letter-spacing:-1.284800pt;}
.ls3f{letter-spacing:-1.278933pt;}
.lsae{letter-spacing:-1.180000pt;}
.ls89{letter-spacing:-1.179200pt;}
.lsaf{letter-spacing:-1.178667pt;}
.lsca{letter-spacing:-1.167467pt;}
.ls72{letter-spacing:-1.126400pt;}
.ls2c{letter-spacing:-1.120000pt;}
.lsc1{letter-spacing:-1.073600pt;}
.ls27{letter-spacing:-1.072000pt;}
.ls87{letter-spacing:-1.018667pt;}
.lscf{letter-spacing:-1.014933pt;}
.ls65{letter-spacing:-0.968000pt;}
.ls53{letter-spacing:-0.965333pt;}
.ls6f{letter-spacing:-0.962133pt;}
.lsd3{letter-spacing:-0.956267pt;}
.ls3e{letter-spacing:-0.921067pt;}
.lsc9{letter-spacing:-0.915200pt;}
.ls39{letter-spacing:-0.903467pt;}
.ls8f{letter-spacing:-0.864000pt;}
.ls73{letter-spacing:-0.862400pt;}
.ls93{letter-spacing:-0.858667pt;}
.lsc8{letter-spacing:-0.856533pt;}
.lscd{letter-spacing:-0.850667pt;}
.lsd2{letter-spacing:-0.809600pt;}
.ls3b{letter-spacing:-0.805333pt;}
.ls59{letter-spacing:-0.803733pt;}
.lscb{letter-spacing:-0.756800pt;}
.ls28{letter-spacing:-0.752000pt;}
.ls21{letter-spacing:-0.750933pt;}
.ls58{letter-spacing:-0.704000pt;}
.ls3d{letter-spacing:-0.698133pt;}
.ls85{letter-spacing:-0.692267pt;}
.ls6e{letter-spacing:-0.651200pt;}
.ls6c{letter-spacing:-0.650667pt;}
.lsa9{letter-spacing:-0.648000pt;}
.ls2f{letter-spacing:-0.645333pt;}
.lsc7{letter-spacing:-0.598400pt;}
.ls29{letter-spacing:-0.597333pt;}
.ls61{letter-spacing:-0.594000pt;}
.ls60{letter-spacing:-0.592533pt;}
.ls2d{letter-spacing:-0.592000pt;}
.ls13{letter-spacing:-0.590400pt;}
.lsac{letter-spacing:-0.588000pt;}
.ls79{letter-spacing:-0.586667pt;}
.ls7a{letter-spacing:-0.551467pt;}
.ls8e{letter-spacing:-0.545600pt;}
.ls90{letter-spacing:-0.544000pt;}
.ls91{letter-spacing:-0.539733pt;}
.ls2a{letter-spacing:-0.538667pt;}
.lsce{letter-spacing:-0.533867pt;}
.ls71{letter-spacing:-0.496000pt;}
.lscc{letter-spacing:-0.492800pt;}
.ls94{letter-spacing:-0.490667pt;}
.lsb4{letter-spacing:-0.488000pt;}
.ls51{letter-spacing:-0.486933pt;}
.ls57{letter-spacing:-0.485333pt;}
.lsb1{letter-spacing:-0.484000pt;}
.lsad{letter-spacing:-0.480000pt;}
.lsbc{letter-spacing:-0.440000pt;}
.ls41{letter-spacing:-0.434133pt;}
.ls3c{letter-spacing:-0.432000pt;}
.ls63{letter-spacing:-0.428267pt;}
.lsa{letter-spacing:-0.381333pt;}
.ls55{letter-spacing:-0.378667pt;}
.ls62{letter-spacing:-0.375467pt;}
.lsc2{letter-spacing:-0.346133pt;}
.lsc4{letter-spacing:-0.334400pt;}
.ls1f{letter-spacing:-0.328533pt;}
.ls64{letter-spacing:-0.325333pt;}
.ls9{letter-spacing:-0.322667pt;}
.lsc3{letter-spacing:-0.316800pt;}
.ls2b{letter-spacing:-0.277333pt;}
.lsc{letter-spacing:-0.275733pt;}
.ls92{letter-spacing:-0.272000pt;}
.ls78{letter-spacing:-0.269867pt;}
.lsbb{letter-spacing:-0.234667pt;}
.ls3a{letter-spacing:-0.224000pt;}
.ls7b{letter-spacing:-0.222933pt;}
.ls5a{letter-spacing:-0.217067pt;}
.lsc5{letter-spacing:-0.176000pt;}
.ls74{letter-spacing:-0.170133pt;}
.ls25{letter-spacing:-0.165333pt;}
.ls8{letter-spacing:-0.164267pt;}
.lsb6{letter-spacing:-0.164000pt;}
.lsb5{letter-spacing:-0.160000pt;}
.lsb2{letter-spacing:-0.120000pt;}
.ls5b{letter-spacing:-0.117333pt;}
.ls4f{letter-spacing:-0.112000pt;}
.ls20{letter-spacing:-0.111467pt;}
.ls22{letter-spacing:-0.064533pt;}
.lsb3{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.058667pt;}
.ls5c{letter-spacing:-0.057600pt;}
.ls5d{letter-spacing:-0.052800pt;}
.lsaa{letter-spacing:-0.026667pt;}
.ls30{letter-spacing:-0.025600pt;}
.lsba{letter-spacing:-0.017600pt;}
.lse{letter-spacing:-0.017067pt;}
.lsab{letter-spacing:-0.016000pt;}
.lsb8{letter-spacing:-0.012000pt;}
.ls24{letter-spacing:-0.011733pt;}
.ls5e{letter-spacing:-0.010800pt;}
.ls84{letter-spacing:-0.010667pt;}
.ls43{letter-spacing:-0.009600pt;}
.lsf{letter-spacing:-0.008533pt;}
.lsa8{letter-spacing:-0.008000pt;}
.ls10{letter-spacing:-0.007467pt;}
.ls12{letter-spacing:-0.006400pt;}
.ls7{letter-spacing:-0.005867pt;}
.ls26{letter-spacing:-0.005333pt;}
.ls14{letter-spacing:-0.005067pt;}
.ls5{letter-spacing:-0.004800pt;}
.lsd{letter-spacing:-0.004267pt;}
.lsb0{letter-spacing:-0.004000pt;}
.ls42{letter-spacing:-0.003600pt;}
.ls11{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.004800pt;}
.ls80{letter-spacing:0.005867pt;}
.lsb9{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.008000pt;}
.ls6{letter-spacing:0.026581pt;}
.ls81{letter-spacing:0.041067pt;}
.ls34{letter-spacing:0.046933pt;}
.ls76{letter-spacing:0.048000pt;}
.ls83{letter-spacing:0.052800pt;}
.ls6d{letter-spacing:0.082133pt;}
.ls67{letter-spacing:0.093867pt;}
.ls8b{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.099733pt;}
.ls6b{letter-spacing:0.101333pt;}
.lsa5{letter-spacing:0.106667pt;}
.ls9f{letter-spacing:0.149333pt;}
.ls1a{letter-spacing:0.152533pt;}
.ls4a{letter-spacing:0.154667pt;}
.ls46{letter-spacing:0.160000pt;}
.lsa0{letter-spacing:0.202667pt;}
.ls17{letter-spacing:0.205333pt;}
.ls0{letter-spacing:0.206400pt;}
.ls4b{letter-spacing:0.208000pt;}
.lsa1{letter-spacing:0.213333pt;}
.ls7c{letter-spacing:0.252267pt;}
.ls31{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.258133pt;}
.ls6a{letter-spacing:0.261333pt;}
.ls4d{letter-spacing:0.264000pt;}
.ls2{letter-spacing:0.310933pt;}
.lsa3{letter-spacing:0.312000pt;}
.lsa4{letter-spacing:0.314667pt;}
.ls19{letter-spacing:0.316800pt;}
.lsa2{letter-spacing:0.320000pt;}
.ls49{letter-spacing:0.368000pt;}
.ls2e{letter-spacing:0.369600pt;}
.lsbd{letter-spacing:0.416533pt;}
.ls54{letter-spacing:0.421333pt;}
.ls75{letter-spacing:0.422400pt;}
.ls1e{letter-spacing:0.469333pt;}
.ls50{letter-spacing:0.474667pt;}
.ls37{letter-spacing:0.475200pt;}
.lsb7{letter-spacing:0.476000pt;}
.lsa6{letter-spacing:0.480000pt;}
.ls7e{letter-spacing:0.481067pt;}
.ls1c{letter-spacing:0.522667pt;}
.ls44{letter-spacing:0.528000pt;}
.ls23{letter-spacing:0.569067pt;}
.ls8a{letter-spacing:0.574933pt;}
.ls1b{letter-spacing:0.580800pt;}
.ls32{letter-spacing:0.581333pt;}
.lsbe{letter-spacing:0.627733pt;}
.ls4{letter-spacing:0.633600pt;}
.ls4c{letter-spacing:0.680533pt;}
.ls16{letter-spacing:0.686400pt;}
.ls86{letter-spacing:0.688000pt;}
.ls7f{letter-spacing:0.692267pt;}
.ls97{letter-spacing:0.725333pt;}
.ls48{letter-spacing:0.727467pt;}
.ls98{letter-spacing:0.736000pt;}
.lsbf{letter-spacing:0.739200pt;}
.ls96{letter-spacing:0.748000pt;}
.lsa7{letter-spacing:0.792000pt;}
.ls8d{letter-spacing:0.794667pt;}
.ls95{letter-spacing:0.800000pt;}
.ls9c{letter-spacing:0.842667pt;}
.ls45{letter-spacing:0.844800pt;}
.ls9b{letter-spacing:0.848000pt;}
.ls36{letter-spacing:0.850667pt;}
.ls9a{letter-spacing:0.852000pt;}
.ls99{letter-spacing:0.853333pt;}
.ls1d{letter-spacing:0.901333pt;}
.ls82{letter-spacing:0.903467pt;}
.ls77{letter-spacing:0.954667pt;}
.ls7d{letter-spacing:1.002667pt;}
.ls15{letter-spacing:1.009067pt;}
.ls5f{letter-spacing:1.061867pt;}
.ls4e{letter-spacing:1.114667pt;}
.ls69{letter-spacing:1.167467pt;}
.ls88{letter-spacing:1.274667pt;}
.lsd0{letter-spacing:1.278933pt;}
.ls68{letter-spacing:1.325867pt;}
.ls9e{letter-spacing:1.328000pt;}
.ls9d{letter-spacing:1.333333pt;}
.ls8c{letter-spacing:1.429333pt;}
.ls33{letter-spacing:1.484267pt;}
.ls35{letter-spacing:1.490133pt;}
.lsc0{letter-spacing:1.754133pt;}
.ls47{letter-spacing:12.959467pt;}
.wsd4{word-spacing:-14.654933pt;}
.wsc3{word-spacing:-14.649067pt;}
.wscb{word-spacing:-14.449600pt;}
.wsc9{word-spacing:-14.332267pt;}
.wsca{word-spacing:-14.021333pt;}
.wsa7{word-spacing:-13.536000pt;}
.ws42{word-spacing:-13.376000pt;}
.ws9d{word-spacing:-13.333333pt;}
.wsa1{word-spacing:-13.322667pt;}
.ws0{word-spacing:-12.914933pt;}
.wsf{word-spacing:-12.213333pt;}
.wsa4{word-spacing:-11.328000pt;}
.wsa2{word-spacing:-10.852000pt;}
.wsa0{word-spacing:-10.748000pt;}
.wsb2{word-spacing:-10.480000pt;}
.wsb3{word-spacing:-10.476000pt;}
.wsaa{word-spacing:-10.312000pt;}
.ws2c{word-spacing:-10.266667pt;}
.wsa5{word-spacing:-10.160000pt;}
.wsad{word-spacing:-10.096000pt;}
.wsa8{word-spacing:-10.000000pt;}
.wsa9{word-spacing:-9.996000pt;}
.ws9e{word-spacing:-9.992000pt;}
.wsb4{word-spacing:-9.988000pt;}
.wsae{word-spacing:-9.936000pt;}
.wsac{word-spacing:-9.880000pt;}
.wsb0{word-spacing:-9.840000pt;}
.wsb1{word-spacing:-9.836000pt;}
.wsab{word-spacing:-9.516000pt;}
.wsaf{word-spacing:-9.512000pt;}
.wsa3{word-spacing:-9.412000pt;}
.ws9f{word-spacing:-9.352000pt;}
.ws2d{word-spacing:-8.996400pt;}
.ws44{word-spacing:-8.989200pt;}
.ws43{word-spacing:-8.942400pt;}
.wsa6{word-spacing:-8.820000pt;}
.ws5a{word-spacing:-0.745067pt;}
.ws8{word-spacing:-0.692267pt;}
.ws6b{word-spacing:-0.686400pt;}
.ws20{word-spacing:-0.640000pt;}
.ws64{word-spacing:-0.639467pt;}
.ws22{word-spacing:-0.634667pt;}
.ws58{word-spacing:-0.633600pt;}
.ws4{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.581333pt;}
.ws16{word-spacing:-0.580800pt;}
.ws5c{word-spacing:-0.537600pt;}
.ws7{word-spacing:-0.533867pt;}
.ws46{word-spacing:-0.533333pt;}
.ws54{word-spacing:-0.528000pt;}
.ws8a{word-spacing:-0.486933pt;}
.ws59{word-spacing:-0.481067pt;}
.ws1b{word-spacing:-0.480000pt;}
.ws62{word-spacing:-0.475200pt;}
.ws7f{word-spacing:-0.474667pt;}
.wscf{word-spacing:-0.434133pt;}
.ws17{word-spacing:-0.428267pt;}
.ws97{word-spacing:-0.426667pt;}
.wsb{word-spacing:-0.422400pt;}
.ws88{word-spacing:-0.375467pt;}
.ws5d{word-spacing:-0.374400pt;}
.ws68{word-spacing:-0.373333pt;}
.ws9{word-spacing:-0.369600pt;}
.ws24{word-spacing:-0.362667pt;}
.ws67{word-spacing:-0.322667pt;}
.ws51{word-spacing:-0.320000pt;}
.ws70{word-spacing:-0.316800pt;}
.wsc1{word-spacing:-0.314667pt;}
.wsc5{word-spacing:-0.310933pt;}
.wsc2{word-spacing:-0.304000pt;}
.ws13{word-spacing:-0.264000pt;}
.ws31{word-spacing:-0.261333pt;}
.wsda{word-spacing:-0.258133pt;}
.wsdc{word-spacing:-0.217067pt;}
.ws8e{word-spacing:-0.211200pt;}
.ws30{word-spacing:-0.208000pt;}
.wsdb{word-spacing:-0.205333pt;}
.ws7e{word-spacing:-0.199467pt;}
.ws7b{word-spacing:-0.164267pt;}
.wsbe{word-spacing:-0.160000pt;}
.ws19{word-spacing:-0.158400pt;}
.ws75{word-spacing:-0.154667pt;}
.ws93{word-spacing:-0.152533pt;}
.ws74{word-spacing:-0.149333pt;}
.ws3f{word-spacing:-0.105600pt;}
.ws38{word-spacing:-0.099733pt;}
.ws66{word-spacing:-0.058667pt;}
.ws35{word-spacing:-0.052800pt;}
.ws27{word-spacing:-0.048000pt;}
.ws29{word-spacing:-0.046933pt;}
.wsc6{word-spacing:-0.006400pt;}
.ws48{word-spacing:-0.005333pt;}
.wsd2{word-spacing:-0.004267pt;}
.ws2{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.004800pt;}
.wse{word-spacing:0.005067pt;}
.ws6d{word-spacing:0.005333pt;}
.wsa{word-spacing:0.005867pt;}
.ws81{word-spacing:0.010667pt;}
.ws6c{word-spacing:0.011733pt;}
.wsb8{word-spacing:0.016000pt;}
.wsb5{word-spacing:0.021333pt;}
.ws12{word-spacing:0.052800pt;}
.ws33{word-spacing:0.053333pt;}
.ws8c{word-spacing:0.058667pt;}
.ws41{word-spacing:0.105600pt;}
.ws98{word-spacing:0.106667pt;}
.wsd7{word-spacing:0.111467pt;}
.ws56{word-spacing:0.152533pt;}
.wsd8{word-spacing:0.158400pt;}
.ws79{word-spacing:0.164267pt;}
.ws87{word-spacing:0.199467pt;}
.ws2e{word-spacing:0.205333pt;}
.ws4d{word-spacing:0.211200pt;}
.ws7c{word-spacing:0.217067pt;}
.wsdd{word-spacing:0.258133pt;}
.ws94{word-spacing:0.264000pt;}
.ws78{word-spacing:0.269867pt;}
.ws90{word-spacing:0.275733pt;}
.ws2f{word-spacing:0.316800pt;}
.ws82{word-spacing:0.320000pt;}
.ws3{word-spacing:0.322667pt;}
.ws4f{word-spacing:0.325333pt;}
.ws61{word-spacing:0.369600pt;}
.ws21{word-spacing:0.373333pt;}
.ws71{word-spacing:0.375467pt;}
.ws9b{word-spacing:0.421333pt;}
.ws1e{word-spacing:0.426667pt;}
.ws63{word-spacing:0.428267pt;}
.ws26{word-spacing:0.432000pt;}
.ws1d{word-spacing:0.480000pt;}
.ws73{word-spacing:0.481067pt;}
.ws3b{word-spacing:0.528000pt;}
.ws9c{word-spacing:0.533333pt;}
.ws3c{word-spacing:0.533867pt;}
.ws4b{word-spacing:0.539733pt;}
.ws25{word-spacing:0.586667pt;}
.wsb7{word-spacing:0.592000pt;}
.wsd3{word-spacing:0.592533pt;}
.wsb6{word-spacing:0.602667pt;}
.ws3d{word-spacing:0.633600pt;}
.ws49{word-spacing:0.639467pt;}
.ws52{word-spacing:0.640000pt;}
.wsd1{word-spacing:0.645333pt;}
.ws69{word-spacing:0.692267pt;}
.ws6f{word-spacing:0.698133pt;}
.ws95{word-spacing:0.698667pt;}
.ws60{word-spacing:0.745067pt;}
.ws99{word-spacing:0.746667pt;}
.ws55{word-spacing:0.750933pt;}
.wsbf{word-spacing:0.784000pt;}
.ws6a{word-spacing:0.797867pt;}
.ws45{word-spacing:0.800000pt;}
.ws7d{word-spacing:0.803733pt;}
.ws1c{word-spacing:0.805333pt;}
.wsc0{word-spacing:0.826667pt;}
.wsd{word-spacing:0.850667pt;}
.ws47{word-spacing:0.853333pt;}
.ws84{word-spacing:0.856533pt;}
.ws1f{word-spacing:0.858667pt;}
.ws5b{word-spacing:0.902400pt;}
.ws37{word-spacing:0.903467pt;}
.ws50{word-spacing:0.906667pt;}
.ws86{word-spacing:0.950400pt;}
.ws4e{word-spacing:0.954667pt;}
.ws7a{word-spacing:0.956267pt;}
.ws9a{word-spacing:0.960000pt;}
.ws2a{word-spacing:0.962133pt;}
.wsc4{word-spacing:0.968000pt;}
.ws92{word-spacing:1.009067pt;}
.ws1{word-spacing:1.012800pt;}
.ws32{word-spacing:1.013333pt;}
.ws40{word-spacing:1.014933pt;}
.wsbd{word-spacing:1.018667pt;}
.wscd{word-spacing:1.020800pt;}
.ws28{word-spacing:1.061867pt;}
.ws76{word-spacing:1.066667pt;}
.ws8b{word-spacing:1.067733pt;}
.wsc8{word-spacing:1.108800pt;}
.ws39{word-spacing:1.114667pt;}
.ws53{word-spacing:1.120000pt;}
.ws8f{word-spacing:1.120533pt;}
.wscc{word-spacing:1.167467pt;}
.ws5{word-spacing:1.173333pt;}
.ws85{word-spacing:1.179200pt;}
.wsd9{word-spacing:1.185067pt;}
.ws77{word-spacing:1.221333pt;}
.ws4a{word-spacing:1.226133pt;}
.ws91{word-spacing:1.226667pt;}
.ws14{word-spacing:1.232000pt;}
.wsc7{word-spacing:1.249600pt;}
.wsde{word-spacing:1.273067pt;}
.wsbc{word-spacing:1.274667pt;}
.ws15{word-spacing:1.278933pt;}
.ws80{word-spacing:1.280000pt;}
.ws18{word-spacing:1.284800pt;}
.wsbb{word-spacing:1.285333pt;}
.ws4c{word-spacing:1.290667pt;}
.ws11{word-spacing:1.331733pt;}
.ws6e{word-spacing:1.337600pt;}
.wsd5{word-spacing:1.372800pt;}
.ws89{word-spacing:1.378667pt;}
.wsc{word-spacing:1.384533pt;}
.ws6{word-spacing:1.390400pt;}
.wsd6{word-spacing:1.413867pt;}
.ws72{word-spacing:1.431467pt;}
.ws2b{word-spacing:1.437333pt;}
.ws3a{word-spacing:1.443200pt;}
.ws8d{word-spacing:1.449067pt;}
.ws36{word-spacing:1.490133pt;}
.ws1a{word-spacing:1.496000pt;}
.ws57{word-spacing:1.601600pt;}
.ws34{word-spacing:2.346667pt;}
.ws5f{word-spacing:3.536667pt;}
.wsd0{word-spacing:4.798933pt;}
.ws83{word-spacing:5.221333pt;}
.wsce{word-spacing:6.083733pt;}
.ws65{word-spacing:8.324800pt;}
.ws96{word-spacing:9.072000pt;}
.ws3e{word-spacing:10.929600pt;}
.wsba{word-spacing:13.333333pt;}
.wsb9{word-spacing:13.338667pt;}
.ws10{word-spacing:31.833600pt;}
._f{margin-left:-13.658667pt;}
._10{margin-left:-9.949867pt;}
._b{margin-left:-8.260267pt;}
._a{margin-left:-7.034133pt;}
._7{margin-left:-5.491200pt;}
._1{margin-left:-3.836800pt;}
._4{margin-left:-2.558400pt;}
._0{margin-left:-1.329600pt;}
._5{width:1.180800pt;}
._3{width:3.016533pt;}
._e{width:10.408533pt;}
._8{width:12.693333pt;}
._11{width:13.746667pt;}
._d{width:30.307200pt;}
._6{width:32.592000pt;}
._2{width:42.444800pt;}
._c{width:760.375467pt;}
._12{width:805.004800pt;}
._13{width:992.580267pt;}
._9{width:1053.282133pt;}
.fsb{font-size:36.000000pt;}
.fs2{font-size:37.973333pt;}
.fsd{font-size:40.000000pt;}
.fsa{font-size:41.066667pt;}
.fs4{font-size:42.666667pt;}
.fsc{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs7{font-size:52.266667pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y148{bottom:43.161333pt;}
.y72{bottom:43.292800pt;}
.y1c5{bottom:43.424000pt;}
.y4c{bottom:43.435333pt;}
.y1e8{bottom:43.440133pt;}
.y19{bottom:43.532800pt;}
.y93{bottom:43.572800pt;}
.ye1{bottom:43.661733pt;}
.y12d{bottom:43.834933pt;}
.y109{bottom:43.836000pt;}
.yb8{bottom:44.058667pt;}
.y1a9{bottom:52.086667pt;}
.y71{bottom:55.960000pt;}
.y18{bottom:56.200000pt;}
.y92{bottom:56.239600pt;}
.y147{bottom:58.495333pt;}
.y1c4{bottom:58.758000pt;}
.y4b{bottom:58.769333pt;}
.y1e7{bottom:58.774133pt;}
.y165{bottom:58.786667pt;}
.ye0{bottom:58.995733pt;}
.y12c{bottom:59.168933pt;}
.y108{bottom:59.170000pt;}
.yb7{bottom:59.392667pt;}
.y1a8{bottom:67.420667pt;}
.y91{bottom:68.906133pt;}
.y164{bottom:72.786667pt;}
.y146{bottom:73.829333pt;}
.y1c3{bottom:74.092000pt;}
.y4a{bottom:74.103333pt;}
.y1e6{bottom:74.108133pt;}
.ydf{bottom:74.329733pt;}
.y12b{bottom:74.502933pt;}
.y107{bottom:74.504000pt;}
.yb6{bottom:74.726667pt;}
.y90{bottom:81.573333pt;}
.y1a7{bottom:82.754667pt;}
.y163{bottom:86.786667pt;}
.y145{bottom:89.163333pt;}
.y1c2{bottom:89.426000pt;}
.y49{bottom:89.437333pt;}
.y1e5{bottom:89.442133pt;}
.yde{bottom:89.663733pt;}
.y12a{bottom:89.836933pt;}
.y106{bottom:89.838000pt;}
.yb5{bottom:90.060667pt;}
.y18a{bottom:94.120000pt;}
.y70{bottom:96.112000pt;}
.y1a6{bottom:98.088667pt;}
.yf{bottom:100.046000pt;}
.y162{bottom:100.786667pt;}
.y144{bottom:104.497333pt;}
.y1c1{bottom:104.760000pt;}
.y48{bottom:104.771333pt;}
.y1e4{bottom:104.776133pt;}
.ydd{bottom:104.997733pt;}
.y129{bottom:105.170933pt;}
.y105{bottom:105.172000pt;}
.yb4{bottom:105.394667pt;}
.y189{bottom:108.120000pt;}
.y6f{bottom:111.446000pt;}
.y1a5{bottom:113.422667pt;}
.y161{bottom:114.786667pt;}
.ye{bottom:115.380000pt;}
.y143{bottom:119.831333pt;}
.y1c0{bottom:120.094000pt;}
.y47{bottom:120.105333pt;}
.y1e3{bottom:120.110133pt;}
.ydc{bottom:120.331733pt;}
.y128{bottom:120.504933pt;}
.y104{bottom:120.506000pt;}
.yb3{bottom:120.728667pt;}
.y188{bottom:122.120000pt;}
.y8f{bottom:124.781333pt;}
.y6e{bottom:126.780000pt;}
.y1a4{bottom:128.756667pt;}
.yd{bottom:130.714000pt;}
.y142{bottom:135.165333pt;}
.y1bf{bottom:135.428000pt;}
.y46{bottom:135.439333pt;}
.y1e2{bottom:135.444133pt;}
.ydb{bottom:135.665733pt;}
.y127{bottom:135.838933pt;}
.y103{bottom:135.840000pt;}
.yb2{bottom:136.062667pt;}
.y187{bottom:136.120000pt;}
.y8e{bottom:140.115333pt;}
.y6d{bottom:142.114000pt;}
.y1a3{bottom:144.090667pt;}
.y160{bottom:144.118667pt;}
.yc{bottom:146.048000pt;}
.y186{bottom:150.120133pt;}
.y141{bottom:150.499333pt;}
.y1be{bottom:150.762000pt;}
.y45{bottom:150.773333pt;}
.y1e1{bottom:150.778133pt;}
.yda{bottom:150.999733pt;}
.y126{bottom:151.172933pt;}
.yb1{bottom:151.396667pt;}
.y8d{bottom:155.449333pt;}
.y6c{bottom:157.448000pt;}
.y1a2{bottom:159.424667pt;}
.y15f{bottom:159.452667pt;}
.yb{bottom:161.382000pt;}
.y185{bottom:164.120133pt;}
.y102{bottom:164.520000pt;}
.y140{bottom:165.833333pt;}
.y1bd{bottom:166.096000pt;}
.y1e0{bottom:166.112133pt;}
.y125{bottom:166.506933pt;}
.yb0{bottom:166.730667pt;}
.y8c{bottom:170.783333pt;}
.y6b{bottom:172.782000pt;}
.yd9{bottom:174.000000pt;}
.y1a1{bottom:174.758667pt;}
.y15e{bottom:174.786667pt;}
.ya{bottom:176.716000pt;}
.y184{bottom:178.120133pt;}
.y101{bottom:178.520000pt;}
.y13f{bottom:181.167333pt;}
.y1bc{bottom:181.430000pt;}
.y44{bottom:181.440000pt;}
.y1df{bottom:181.446133pt;}
.y124{bottom:181.840933pt;}
.yaf{bottom:182.064667pt;}
.y8b{bottom:186.117333pt;}
.y6a{bottom:188.116000pt;}
.y1a0{bottom:190.092667pt;}
.y9{bottom:192.050000pt;}
.y183{bottom:192.120133pt;}
.y100{bottom:192.520000pt;}
.y43{bottom:195.440000pt;}
.y13e{bottom:196.501333pt;}
.y1bb{bottom:196.764000pt;}
.y1de{bottom:196.780133pt;}
.y123{bottom:197.174933pt;}
.yae{bottom:197.398667pt;}
.y8a{bottom:201.451333pt;}
.y69{bottom:203.450000pt;}
.y19f{bottom:205.426667pt;}
.y15d{bottom:205.453333pt;}
.y182{bottom:206.120133pt;}
.yff{bottom:206.520000pt;}
.y8{bottom:207.384000pt;}
.y42{bottom:209.440000pt;}
.yd8{bottom:210.120000pt;}
.y13d{bottom:211.835333pt;}
.y1ba{bottom:212.098000pt;}
.y1dd{bottom:212.114133pt;}
.y122{bottom:212.508933pt;}
.yad{bottom:212.732667pt;}
.y89{bottom:216.785333pt;}
.y68{bottom:218.784000pt;}
.y15c{bottom:219.453333pt;}
.y181{bottom:220.120000pt;}
.yfe{bottom:220.520000pt;}
.y19e{bottom:220.760667pt;}
.y7{bottom:222.718000pt;}
.y41{bottom:223.440000pt;}
.yd7{bottom:224.120000pt;}
.y13c{bottom:227.169333pt;}
.y1b9{bottom:227.432000pt;}
.y1dc{bottom:227.448133pt;}
.y121{bottom:227.842933pt;}
.yac{bottom:228.066667pt;}
.y88{bottom:232.119333pt;}
.y15b{bottom:233.453333pt;}
.y67{bottom:234.118000pt;}
.y180{bottom:234.120000pt;}
.yfd{bottom:234.520000pt;}
.y19d{bottom:236.094667pt;}
.y40{bottom:237.440000pt;}
.y6{bottom:238.052000pt;}
.yd6{bottom:238.120000pt;}
.y13b{bottom:242.503333pt;}
.y1b8{bottom:242.766000pt;}
.y1db{bottom:242.782133pt;}
.y120{bottom:243.176933pt;}
.y87{bottom:247.453333pt;}
.y17f{bottom:248.120133pt;}
.yfc{bottom:248.520000pt;}
.y66{bottom:249.452000pt;}
.y19c{bottom:251.428667pt;}
.y3f{bottom:251.440000pt;}
.yd5{bottom:252.120000pt;}
.y5{bottom:253.386000pt;}
.y13a{bottom:257.837333pt;}
.y1b7{bottom:258.100000pt;}
.y1da{bottom:258.114667pt;}
.y11f{bottom:258.510933pt;}
.y15a{bottom:261.453333pt;}
.yab{bottom:261.760000pt;}
.y17e{bottom:262.120000pt;}
.yfb{bottom:262.520000pt;}
.y65{bottom:264.786000pt;}
.y3e{bottom:265.440000pt;}
.yd4{bottom:266.120000pt;}
.y19b{bottom:266.762667pt;}
.y4{bottom:268.720000pt;}
.y139{bottom:273.171333pt;}
.y1b6{bottom:273.434000pt;}
.y1d9{bottom:273.447200pt;}
.y11e{bottom:273.844933pt;}
.y159{bottom:275.453333pt;}
.yaa{bottom:275.760000pt;}
.y17d{bottom:276.120000pt;}
.yfa{bottom:276.520000pt;}
.y86{bottom:278.120000pt;}
.y3d{bottom:279.440000pt;}
.y64{bottom:280.110933pt;}
.yd3{bottom:280.120000pt;}
.y19a{bottom:282.096667pt;}
.y138{bottom:288.505333pt;}
.y1b5{bottom:288.768000pt;}
.y1d8{bottom:288.779733pt;}
.y11d{bottom:289.178933pt;}
.y158{bottom:289.453333pt;}
.ya9{bottom:289.760000pt;}
.y17c{bottom:290.120000pt;}
.y85{bottom:292.120000pt;}
.y3c{bottom:293.440000pt;}
.yd2{bottom:294.120000pt;}
.y63{bottom:295.444933pt;}
.y199{bottom:297.430667pt;}
.y157{bottom:303.453333pt;}
.ya8{bottom:303.760000pt;}
.y137{bottom:303.839333pt;}
.y1b4{bottom:304.102000pt;}
.yf9{bottom:304.103467pt;}
.y1d7{bottom:304.112267pt;}
.y17b{bottom:304.120000pt;}
.y84{bottom:306.120000pt;}
.y3b{bottom:307.440000pt;}
.yd1{bottom:308.120000pt;}
.y62{bottom:310.778933pt;}
.y11c{bottom:312.179200pt;}
.y198{bottom:312.764667pt;}
.y3{bottom:314.720000pt;}
.y156{bottom:317.453333pt;}
.ya7{bottom:317.760000pt;}
.y17a{bottom:318.120000pt;}
.y136{bottom:319.173333pt;}
.y1b3{bottom:319.436000pt;}
.yf8{bottom:319.437467pt;}
.y1d6{bottom:319.444800pt;}
.y83{bottom:320.120000pt;}
.y3a{bottom:321.440000pt;}
.y61{bottom:326.112933pt;}
.y197{bottom:328.098667pt;}
.y179{bottom:332.120000pt;}
.y82{bottom:334.120000pt;}
.y1b2{bottom:334.770000pt;}
.yf7{bottom:334.771467pt;}
.y1d5{bottom:334.777333pt;}
.y39{bottom:335.440000pt;}
.y2{bottom:336.932800pt;}
.yd0{bottom:337.439333pt;}
.y60{bottom:341.446933pt;}
.y196{bottom:343.432667pt;}
.y178{bottom:346.120000pt;}
.y11b{bottom:346.405333pt;}
.y155{bottom:346.784667pt;}
.y135{bottom:346.986667pt;}
.y81{bottom:348.120000pt;}
.y38{bottom:349.440000pt;}
.y1{bottom:349.600000pt;}
.y1b1{bottom:350.104000pt;}
.yf6{bottom:350.105467pt;}
.ya6{bottom:350.108800pt;}
.y1d4{bottom:350.109867pt;}
.ycf{bottom:352.773333pt;}
.y5f{bottom:356.780933pt;}
.y195{bottom:358.766667pt;}
.y177{bottom:360.120000pt;}
.y134{bottom:360.986667pt;}
.y11a{bottom:361.739333pt;}
.y154{bottom:362.118667pt;}
.y80{bottom:362.120000pt;}
.y37{bottom:363.440000pt;}
.y1b0{bottom:365.438000pt;}
.yf5{bottom:365.439467pt;}
.y1d3{bottom:365.442400pt;}
.ya5{bottom:365.442800pt;}
.yce{bottom:368.107333pt;}
.y5e{bottom:372.114933pt;}
.y194{bottom:374.100667pt;}
.y176{bottom:374.120000pt;}
.y133{bottom:374.986667pt;}
.y7f{bottom:376.120000pt;}
.y119{bottom:377.073333pt;}
.y153{bottom:377.452667pt;}
.y1af{bottom:380.772000pt;}
.yf4{bottom:380.773467pt;}
.y1d2{bottom:380.774933pt;}
.ya4{bottom:380.775333pt;}
.ycd{bottom:383.441333pt;}
.y5d{bottom:387.448933pt;}
.y175{bottom:388.120000pt;}
.y132{bottom:388.986667pt;}
.y193{bottom:389.434667pt;}
.y7e{bottom:390.120000pt;}
.y118{bottom:392.407333pt;}
.y36{bottom:392.762000pt;}
.y152{bottom:392.786667pt;}
.y1ae{bottom:396.106000pt;}
.yf3{bottom:396.107467pt;}
.y1d1{bottom:396.108933pt;}
.ya3{bottom:396.109333pt;}
.ycc{bottom:398.775333pt;}
.y174{bottom:402.120000pt;}
.y131{bottom:402.986667pt;}
.y7d{bottom:404.120000pt;}
.y192{bottom:404.768667pt;}
.y117{bottom:407.741333pt;}
.y35{bottom:408.096000pt;}
.y5c{bottom:410.449200pt;}
.y1ad{bottom:411.440000pt;}
.yf2{bottom:411.441467pt;}
.y1d0{bottom:411.442933pt;}
.ya2{bottom:411.443333pt;}
.ycb{bottom:414.109333pt;}
.y173{bottom:416.120000pt;}
.y130{bottom:416.986667pt;}
.y7c{bottom:418.120000pt;}
.y191{bottom:420.102667pt;}
.y116{bottom:423.075333pt;}
.y151{bottom:423.453333pt;}
.y5b{bottom:425.783200pt;}
.y1ac{bottom:426.774000pt;}
.yf1{bottom:426.775467pt;}
.y1cf{bottom:426.776933pt;}
.ya1{bottom:426.777333pt;}
.yca{bottom:429.443333pt;}
.y172{bottom:430.120000pt;}
.y12f{bottom:430.986667pt;}
.y1f{bottom:432.561000pt;}
.y34{bottom:432.869467pt;}
.y190{bottom:435.436667pt;}
.y150{bottom:437.453333pt;}
.y115{bottom:438.409333pt;}
.y1ab{bottom:442.108000pt;}
.yf0{bottom:442.109467pt;}
.y1ce{bottom:442.110933pt;}
.ya0{bottom:442.111333pt;}
.y171{bottom:444.120000pt;}
.yc9{bottom:444.777333pt;}
.y1e{bottom:445.893933pt;}
.y7b{bottom:447.450667pt;}
.y18f{bottom:450.770667pt;}
.y14f{bottom:451.453333pt;}
.y114{bottom:453.743333pt;}
.y12e{bottom:457.442000pt;}
.yef{bottom:457.443467pt;}
.y1cd{bottom:457.444933pt;}
.y9f{bottom:457.445333pt;}
.y170{bottom:458.120000pt;}
.y1d{bottom:459.226867pt;}
.y22{bottom:459.228133pt;}
.yc8{bottom:460.111333pt;}
.y7a{bottom:462.784667pt;}
.y5a{bottom:464.116000pt;}
.y14e{bottom:465.453333pt;}
.y18e{bottom:466.104667pt;}
.y113{bottom:469.077333pt;}
.y16f{bottom:472.120000pt;}
.y21{bottom:472.561067pt;}
.y33{bottom:472.776000pt;}
.yee{bottom:472.777467pt;}
.y1cc{bottom:472.778933pt;}
.y9e{bottom:472.779333pt;}
.yc7{bottom:475.445333pt;}
.y1c{bottom:477.893733pt;}
.y79{bottom:478.118667pt;}
.y59{bottom:479.450000pt;}
.y14d{bottom:479.453333pt;}
.y18d{bottom:481.438667pt;}
.y112{bottom:484.411333pt;}
.y16e{bottom:486.120000pt;}
.y32{bottom:488.110000pt;}
.yed{bottom:488.111467pt;}
.y1cb{bottom:488.112933pt;}
.y9d{bottom:488.113333pt;}
.yc6{bottom:490.779333pt;}
.y1b{bottom:491.226667pt;}
.y20{bottom:491.227933pt;}
.y78{bottom:493.452667pt;}
.y14c{bottom:493.453333pt;}
.y58{bottom:494.784000pt;}
.y18c{bottom:496.772667pt;}
.y111{bottom:499.745333pt;}
.y16d{bottom:500.120000pt;}
.y31{bottom:503.444000pt;}
.yec{bottom:503.445467pt;}
.y1ca{bottom:503.446933pt;}
.y9c{bottom:503.447333pt;}
.yc5{bottom:506.113333pt;}
.y14b{bottom:507.453333pt;}
.y77{bottom:508.789867pt;}
.y57{bottom:510.118000pt;}
.y18b{bottom:512.106667pt;}
.y1a{bottom:513.546667pt;}
.y16c{bottom:514.120000pt;}
.y110{bottom:515.079333pt;}
.y30{bottom:518.778000pt;}
.yeb{bottom:518.779467pt;}
.y1c9{bottom:518.780933pt;}
.y9b{bottom:518.781333pt;}
.yc4{bottom:521.447333pt;}
.y14a{bottom:521.453333pt;}
.y76{bottom:524.122400pt;}
.y56{bottom:525.452000pt;}
.y16b{bottom:528.120000pt;}
.y10f{bottom:530.413333pt;}
.y2f{bottom:534.112000pt;}
.yea{bottom:534.113467pt;}
.y1c8{bottom:534.114933pt;}
.y9a{bottom:534.115333pt;}
.y149{bottom:535.453333pt;}
.yc3{bottom:536.781333pt;}
.y75{bottom:539.454933pt;}
.y55{bottom:540.786000pt;}
.y16a{bottom:542.120000pt;}
.y2e{bottom:549.446000pt;}
.ye9{bottom:549.447467pt;}
.y1c7{bottom:549.448933pt;}
.y99{bottom:549.449333pt;}
.yc2{bottom:552.115333pt;}
.y74{bottom:554.787467pt;}
.y54{bottom:556.120000pt;}
.y10e{bottom:558.226667pt;}
.y2d{bottom:564.780000pt;}
.ye8{bottom:564.781467pt;}
.y1c6{bottom:564.782933pt;}
.y98{bottom:564.783333pt;}
.yc1{bottom:567.449333pt;}
.y73{bottom:570.120000pt;}
.y10d{bottom:572.226667pt;}
.y2c{bottom:580.114000pt;}
.ye7{bottom:580.115467pt;}
.y97{bottom:580.117333pt;}
.yc0{bottom:582.783333pt;}
.y169{bottom:584.120000pt;}
.y10c{bottom:586.226667pt;}
.y53{bottom:586.786667pt;}
.y17{bottom:592.892267pt;}
.y2b{bottom:595.448000pt;}
.ye6{bottom:595.449467pt;}
.y96{bottom:595.451333pt;}
.ybf{bottom:598.117333pt;}
.y168{bottom:598.120000pt;}
.y10b{bottom:600.226667pt;}
.y52{bottom:600.786667pt;}
.y16{bottom:605.559467pt;}
.y2a{bottom:610.782000pt;}
.ye5{bottom:610.783467pt;}
.y95{bottom:610.785333pt;}
.y167{bottom:612.120000pt;}
.ybe{bottom:613.451333pt;}
.y10a{bottom:614.226667pt;}
.y51{bottom:614.786667pt;}
.y15{bottom:618.226667pt;}
.y29{bottom:626.116000pt;}
.ye4{bottom:626.117467pt;}
.y94{bottom:626.119333pt;}
.ybd{bottom:628.785333pt;}
.y50{bottom:628.786667pt;}
.y166{bottom:633.785200pt;}
.y14{bottom:634.226667pt;}
.y28{bottom:641.450000pt;}
.ye3{bottom:641.451467pt;}
.y4f{bottom:642.786667pt;}
.ybc{bottom:644.119333pt;}
.y27{bottom:656.784000pt;}
.ye2{bottom:656.785467pt;}
.ybb{bottom:659.453333pt;}
.y26{bottom:672.118000pt;}
.y4e{bottom:672.119467pt;}
.y1aa{bottom:674.093333pt;}
.y13{bottom:674.893333pt;}
.y25{bottom:687.452000pt;}
.y4d{bottom:687.453467pt;}
.yba{bottom:690.120000pt;}
.y12{bottom:693.560000pt;}
.y24{bottom:702.786000pt;}
.yb9{bottom:704.120000pt;}
.y11{bottom:714.760000pt;}
.y23{bottom:718.120000pt;}
.y10{bottom:760.093467pt;}
.h5{height:45.525333pt;}
.h2{height:51.216000pt;}
.hd{height:52.032000pt;}
.h11{height:52.033600pt;}
.h10{height:52.034667pt;}
.h3{height:54.061333pt;}
.ha{height:56.906667pt;}
.h15{height:56.907200pt;}
.h14{height:57.812800pt;}
.hb{height:57.813333pt;}
.h13{height:57.813867pt;}
.h4{height:62.597333pt;}
.h12{height:62.610667pt;}
.he{height:63.165333pt;}
.hc{height:63.214400pt;}
.hf{height:63.594667pt;}
.h9{height:68.288000pt;}
.h7{height:79.669333pt;}
.h8{height:80.408533pt;}
.h6{height:91.050667pt;}
.h1{height:789.333333pt;}
.h0{height:798.666667pt;}
.w0{width:510.666667pt;}
.x0{left:0.000000pt;}
.x3{left:37.066667pt;}
.x9{left:38.307267pt;}
.xd{left:52.574267pt;}
.x4{left:57.066133pt;}
.xc{left:76.813333pt;}
.xe{left:96.813333pt;}
.x7{left:100.106667pt;}
.x8{left:123.560267pt;}
.xa{left:143.427933pt;}
.x6{left:232.026667pt;}
.xb{left:265.068467pt;}
.x1{left:267.626667pt;}
.x5{left:337.506667pt;}
.x2{left:425.080000pt;}
}




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