
    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_7dac2e2f0ecff04b8eaeee8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.842773;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_0bd53770bb4f5be5387511f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_bc90a706c9e2541d49271155.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a7e1a5dd69753cb740511ba7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_be2aaad5abc8bc8cea0007a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_086b0c3a5a34f4647aaed06d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4ea9f6bc315753964db88159.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.640000px;}
.v4{vertical-align:46.074000px;}
.v3{vertical-align:89.280000px;}
.v2{vertical-align:90.714000px;}
.lsd{letter-spacing:-5.040000px;}
.ls3c{letter-spacing:-3.816000px;}
.ls49{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.296000px;}
.ls24{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.756000px;}
.ls50{letter-spacing:-0.732000px;}
.ls13{letter-spacing:-0.720000px;}
.ls3f{letter-spacing:-0.714000px;}
.ls4d{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.576000px;}
.ls4f{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.288000px;}
.ls4b{letter-spacing:-0.246000px;}
.lse{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.180000px;}
.ls25{letter-spacing:-0.174000px;}
.ls3a{letter-spacing:-0.168000px;}
.ls2f{letter-spacing:-0.162000px;}
.ls39{letter-spacing:-0.150000px;}
.ls14{letter-spacing:-0.144000px;}
.ls48{letter-spacing:-0.138000px;}
.ls2e{letter-spacing:-0.132000px;}
.ls2c{letter-spacing:-0.126000px;}
.ls30{letter-spacing:-0.120000px;}
.ls1e{letter-spacing:-0.114000px;}
.ls19{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.102000px;}
.ls18{letter-spacing:-0.096000px;}
.ls1a{letter-spacing:-0.090000px;}
.ls1b{letter-spacing:-0.084000px;}
.ls17{letter-spacing:-0.078000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.066000px;}
.ls26{letter-spacing:-0.060000px;}
.ls34{letter-spacing:-0.054000px;}
.ls12{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.006000px;}
.ls20{letter-spacing:0.024000px;}
.ls27{letter-spacing:0.030000px;}
.ls3e{letter-spacing:0.034320px;}
.ls21{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.042000px;}
.ls7{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.066000px;}
.ls8{letter-spacing:0.072000px;}
.ls41{letter-spacing:0.078000px;}
.ls1f{letter-spacing:0.084000px;}
.ls44{letter-spacing:0.090000px;}
.ls29{letter-spacing:0.096000px;}
.ls4a{letter-spacing:0.102000px;}
.ls45{letter-spacing:0.114000px;}
.ls47{letter-spacing:0.132000px;}
.ls6{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.150000px;}
.ls43{letter-spacing:0.156000px;}
.ls5{letter-spacing:0.174000px;}
.ls38{letter-spacing:0.246000px;}
.ls52{letter-spacing:0.264000px;}
.ls46{letter-spacing:0.288000px;}
.ls51{letter-spacing:0.300000px;}
.ls36{letter-spacing:0.306000px;}
.ls37{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.408000px;}
.lsb{letter-spacing:0.432000px;}
.ls32{letter-spacing:0.492000px;}
.ls31{letter-spacing:0.498000px;}
.ls9{letter-spacing:0.504000px;}
.ls42{letter-spacing:0.528000px;}
.ls4c{letter-spacing:0.612000px;}
.ls3b{letter-spacing:0.648000px;}
.ls3d{letter-spacing:0.711360px;}
.ls0{letter-spacing:0.720000px;}
.ls2d{letter-spacing:1.152000px;}
.ls4e{letter-spacing:17.418000px;}
.ls2a{letter-spacing:17.430000px;}
.ls23{letter-spacing:17.436000px;}
.ls1{letter-spacing:18.000000px;}
.ls22{letter-spacing:18.858000px;}
.ls28{letter-spacing:18.864000px;}
.ls35{letter-spacing:19.425360px;}
.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;}
}
.ws7{word-spacing:-72.720000px;}
.ws8{word-spacing:-72.144000px;}
.ws9{word-spacing:-72.000000px;}
.wsa{word-spacing:-71.856000px;}
.ws6{word-spacing:-71.424000px;}
.wsbc{word-spacing:-63.864000px;}
.wsb9{word-spacing:-63.360000px;}
.wsbe{word-spacing:-63.216000px;}
.wsbb{word-spacing:-62.424000px;}
.ws0{word-spacing:-56.166000px;}
.ws3{word-spacing:-55.008000px;}
.ws2{word-spacing:-53.142000px;}
.ws5{word-spacing:-50.982000px;}
.ws4{word-spacing:-50.802000px;}
.ws1{word-spacing:-42.984000px;}
.wsec{word-spacing:-27.720000px;}
.ws11{word-spacing:-27.432000px;}
.wsce{word-spacing:-27.324000px;}
.wse7{word-spacing:-26.754000px;}
.wsf1{word-spacing:-26.568000px;}
.ws5e{word-spacing:-19.152000px;}
.ws10{word-spacing:-18.504000px;}
.wsd{word-spacing:-18.174000px;}
.wse{word-spacing:-18.144000px;}
.wse3{word-spacing:-18.102000px;}
.wsd4{word-spacing:-18.090000px;}
.wsf{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.060000px;}
.ws60{word-spacing:-18.054000px;}
.ws61{word-spacing:-18.048000px;}
.ws5c{word-spacing:-18.042000px;}
.ws85{word-spacing:-18.036000px;}
.ws5f{word-spacing:-18.030000px;}
.ws30{word-spacing:-18.024000px;}
.ws31{word-spacing:-18.000000px;}
.wsf2{word-spacing:-17.934000px;}
.ws5d{word-spacing:-17.928000px;}
.ws86{word-spacing:-17.904000px;}
.ws9b{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.712000px;}
.wseb{word-spacing:-17.352000px;}
.wsd5{word-spacing:-17.064000px;}
.ws12{word-spacing:-15.126000px;}
.ws9e{word-spacing:-14.184000px;}
.ws107{word-spacing:-13.306572px;}
.wsb8{word-spacing:-2.382000px;}
.wsbd{word-spacing:-1.734000px;}
.wsba{word-spacing:-1.728000px;}
.wsc1{word-spacing:-1.224000px;}
.wsb1{word-spacing:-1.044000px;}
.wsac{word-spacing:-1.026000px;}
.wsdd{word-spacing:-1.008000px;}
.wsb3{word-spacing:-0.966000px;}
.wsd8{word-spacing:-0.834000px;}
.wsd0{word-spacing:-0.804000px;}
.wsd1{word-spacing:-0.798000px;}
.ws9f{word-spacing:-0.792000px;}
.wsf8{word-spacing:-0.786000px;}
.ws16{word-spacing:-0.780000px;}
.wsa4{word-spacing:-0.774000px;}
.ws3d{word-spacing:-0.768000px;}
.ws15{word-spacing:-0.762000px;}
.ws63{word-spacing:-0.756000px;}
.ws82{word-spacing:-0.744000px;}
.ws2d{word-spacing:-0.726000px;}
.ws2e{word-spacing:-0.720000px;}
.wsef{word-spacing:-0.660000px;}
.ws87{word-spacing:-0.654000px;}
.wsf5{word-spacing:-0.648000px;}
.ws9c{word-spacing:-0.642000px;}
.wsff{word-spacing:-0.636000px;}
.wsea{word-spacing:-0.624000px;}
.ws72{word-spacing:-0.606000px;}
.wsfc{word-spacing:-0.588000px;}
.ws45{word-spacing:-0.576000px;}
.ws99{word-spacing:-0.558000px;}
.ws100{word-spacing:-0.540000px;}
.ws8d{word-spacing:-0.522000px;}
.ws103{word-spacing:-0.510000px;}
.wsc0{word-spacing:-0.504000px;}
.wsed{word-spacing:-0.492000px;}
.ws93{word-spacing:-0.480000px;}
.ws1e{word-spacing:-0.462000px;}
.ws33{word-spacing:-0.444000px;}
.ws74{word-spacing:-0.432000px;}
.wsee{word-spacing:-0.408000px;}
.wsfe{word-spacing:-0.402000px;}
.ws52{word-spacing:-0.396000px;}
.wsf4{word-spacing:-0.390000px;}
.ws2c{word-spacing:-0.366000px;}
.ws18{word-spacing:-0.360000px;}
.ws9a{word-spacing:-0.354000px;}
.wsf3{word-spacing:-0.348000px;}
.ws51{word-spacing:-0.342000px;}
.wsc3{word-spacing:-0.336000px;}
.ws36{word-spacing:-0.324000px;}
.wse1{word-spacing:-0.318000px;}
.wsb2{word-spacing:-0.306000px;}
.ws71{word-spacing:-0.300000px;}
.wscd{word-spacing:-0.294000px;}
.ws44{word-spacing:-0.288000px;}
.wsda{word-spacing:-0.282000px;}
.wsd7{word-spacing:-0.276000px;}
.wsde{word-spacing:-0.270000px;}
.ws7e{word-spacing:-0.264000px;}
.ws4b{word-spacing:-0.258000px;}
.wsdc{word-spacing:-0.252000px;}
.ws70{word-spacing:-0.246000px;}
.ws23{word-spacing:-0.240000px;}
.wsf9{word-spacing:-0.234000px;}
.wsfd{word-spacing:-0.228000px;}
.wsc5{word-spacing:-0.222000px;}
.wsd6{word-spacing:-0.216000px;}
.wsaf{word-spacing:-0.210000px;}
.ws90{word-spacing:-0.204000px;}
.wsae{word-spacing:-0.198000px;}
.ws55{word-spacing:-0.192000px;}
.ws57{word-spacing:-0.186000px;}
.wsb5{word-spacing:-0.180000px;}
.ws91{word-spacing:-0.174000px;}
.ws6a{word-spacing:-0.168000px;}
.wsca{word-spacing:-0.162000px;}
.wsad{word-spacing:-0.156000px;}
.ws68{word-spacing:-0.150000px;}
.ws96{word-spacing:-0.144000px;}
.ws80{word-spacing:-0.138000px;}
.ws94{word-spacing:-0.132000px;}
.ws81{word-spacing:-0.126000px;}
.wscc{word-spacing:-0.120000px;}
.ws20{word-spacing:-0.114000px;}
.ws8a{word-spacing:-0.108000px;}
.wsa7{word-spacing:-0.102000px;}
.ws89{word-spacing:-0.096000px;}
.ws73{word-spacing:-0.090000px;}
.ws76{word-spacing:-0.084000px;}
.ws95{word-spacing:-0.078000px;}
.ws98{word-spacing:-0.072000px;}
.ws25{word-spacing:-0.066000px;}
.ws42{word-spacing:-0.060000px;}
.ws22{word-spacing:-0.054000px;}
.ws17{word-spacing:-0.048000px;}
.ws32{word-spacing:-0.042000px;}
.ws67{word-spacing:-0.036000px;}
.wsc2{word-spacing:-0.030000px;}
.ws1b{word-spacing:-0.024000px;}
.ws27{word-spacing:-0.018000px;}
.ws97{word-spacing:-0.012000px;}
.ws6c{word-spacing:-0.006000px;}
.ws13{word-spacing:0.000000px;}
.ws35{word-spacing:0.006000px;}
.ws84{word-spacing:0.012000px;}
.ws8e{word-spacing:0.018000px;}
.ws77{word-spacing:0.024000px;}
.ws4a{word-spacing:0.030000px;}
.ws1f{word-spacing:0.036000px;}
.ws48{word-spacing:0.042000px;}
.wsb0{word-spacing:0.048000px;}
.ws56{word-spacing:0.054000px;}
.ws40{word-spacing:0.060000px;}
.ws66{word-spacing:0.066000px;}
.ws29{word-spacing:0.072000px;}
.ws3e{word-spacing:0.078000px;}
.ws24{word-spacing:0.084000px;}
.ws41{word-spacing:0.090000px;}
.ws79{word-spacing:0.096000px;}
.ws19{word-spacing:0.102000px;}
.ws88{word-spacing:0.108000px;}
.ws5a{word-spacing:0.114000px;}
.ws4d{word-spacing:0.120000px;}
.wsa2{word-spacing:0.126000px;}
.ws28{word-spacing:0.132000px;}
.ws49{word-spacing:0.138000px;}
.ws1a{word-spacing:0.144000px;}
.ws7f{word-spacing:0.150000px;}
.wsa1{word-spacing:0.156000px;}
.ws50{word-spacing:0.162000px;}
.ws54{word-spacing:0.168000px;}
.wsb4{word-spacing:0.174000px;}
.ws62{word-spacing:0.180000px;}
.ws6e{word-spacing:0.186000px;}
.ws78{word-spacing:0.192000px;}
.ws26{word-spacing:0.198000px;}
.ws8c{word-spacing:0.204000px;}
.wsc6{word-spacing:0.210000px;}
.ws7a{word-spacing:0.216000px;}
.ws64{word-spacing:0.222000px;}
.wsc8{word-spacing:0.228000px;}
.ws5b{word-spacing:0.234000px;}
.ws3b{word-spacing:0.240000px;}
.ws7c{word-spacing:0.246000px;}
.ws102{word-spacing:0.252000px;}
.ws92{word-spacing:0.258000px;}
.ws4e{word-spacing:0.264000px;}
.wsa5{word-spacing:0.270000px;}
.ws37{word-spacing:0.276000px;}
.ws8b{word-spacing:0.282000px;}
.ws75{word-spacing:0.288000px;}
.ws2a{word-spacing:0.294000px;}
.wsdf{word-spacing:0.300000px;}
.ws3f{word-spacing:0.306000px;}
.ws4f{word-spacing:0.312000px;}
.wse5{word-spacing:0.318000px;}
.ws2b{word-spacing:0.324000px;}
.ws69{word-spacing:0.330000px;}
.wse6{word-spacing:0.336000px;}
.wscb{word-spacing:0.342000px;}
.ws58{word-spacing:0.348000px;}
.ws7d{word-spacing:0.354000px;}
.ws7b{word-spacing:0.360000px;}
.ws4c{word-spacing:0.366000px;}
.ws59{word-spacing:0.378000px;}
.ws1d{word-spacing:0.384000px;}
.wsd3{word-spacing:0.390000px;}
.wse9{word-spacing:0.402000px;}
.wsbf{word-spacing:0.408000px;}
.ws34{word-spacing:0.414000px;}
.ws46{word-spacing:0.420000px;}
.wsfb{word-spacing:0.426000px;}
.ws65{word-spacing:0.432000px;}
.wsa8{word-spacing:0.450000px;}
.wsd9{word-spacing:0.456000px;}
.wsc9{word-spacing:0.462000px;}
.wsaa{word-spacing:0.468000px;}
.wsa9{word-spacing:0.474000px;}
.ws6b{word-spacing:0.480000px;}
.wsdb{word-spacing:0.498000px;}
.wsf6{word-spacing:0.510000px;}
.wse8{word-spacing:0.516000px;}
.wsab{word-spacing:0.522000px;}
.ws83{word-spacing:0.552000px;}
.ws21{word-spacing:0.564000px;}
.wsf0{word-spacing:0.576000px;}
.wsf7{word-spacing:0.588000px;}
.ws38{word-spacing:0.636000px;}
.ws3a{word-spacing:0.648000px;}
.wsb6{word-spacing:0.654000px;}
.wsa6{word-spacing:0.660000px;}
.wsa0{word-spacing:0.672000px;}
.ws8f{word-spacing:0.678000px;}
.wse0{word-spacing:0.684000px;}
.ws6f{word-spacing:0.690000px;}
.ws14{word-spacing:0.720000px;}
.ws53{word-spacing:0.780000px;}
.wsd2{word-spacing:0.786000px;}
.ws39{word-spacing:0.792000px;}
.ws43{word-spacing:0.804000px;}
.ws6d{word-spacing:0.816000px;}
.wse4{word-spacing:0.822000px;}
.ws1c{word-spacing:0.828000px;}
.ws101{word-spacing:0.840000px;}
.wsfa{word-spacing:0.846000px;}
.ws3c{word-spacing:0.864000px;}
.wsa3{word-spacing:0.870000px;}
.ws47{word-spacing:0.894000px;}
.wsc4{word-spacing:1.074000px;}
.ws2f{word-spacing:1.866000px;}
.wse2{word-spacing:2.160000px;}
.wsc7{word-spacing:2.514000px;}
.ws105{word-spacing:210.165276px;}
.ws104{word-spacing:211.271082px;}
.ws106{word-spacing:211.516890px;}
.wsb7{word-spacing:958.536000px;}
.ws9d{word-spacing:1032.840000px;}
.wscf{word-spacing:1850.034000px;}
._21{margin-left:-9.720000px;}
._20{margin-left:-8.352000px;}
._a{margin-left:-6.912000px;}
._6{margin-left:-5.472000px;}
._8{margin-left:-3.960000px;}
._5{margin-left:-2.664000px;}
._0{margin-left:-1.584000px;}
._3{width:1.584000px;}
._7{width:3.072000px;}
._1{width:4.392000px;}
._2{width:6.120000px;}
._4{width:16.404000px;}
._b{width:18.546000px;}
._9{width:19.872000px;}
._16{width:21.528000px;}
._11{width:110.688000px;}
._18{width:125.310000px;}
._15{width:212.664000px;}
._1a{width:237.846000px;}
._13{width:310.962000px;}
._1e{width:319.926000px;}
._12{width:357.450000px;}
._14{width:362.970000px;}
._1b{width:706.440000px;}
._e{width:778.626000px;}
._17{width:780.306000px;}
._d{width:795.312000px;}
._f{width:836.856000px;}
._1c{width:839.406000px;}
._c{width:862.812000px;}
._1f{width:899.964000px;}
._10{width:910.824000px;}
._1d{width:1614.504000px;}
._19{width:1638.630000px;}
.fc2{color:rgb(0,0,238);}
.fc1{color:rgb(85,26,139);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:46.074000px;}
.fs6{font-size:59.034000px;}
.fs2{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.514000px;}
.fs4{font-size:89.280000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:1.440000px;}
.y25{bottom:3.598500px;}
.y22{bottom:3.600000px;}
.y23{bottom:5.038500px;}
.y142{bottom:60.480000px;}
.y166{bottom:60.862500px;}
.y11e{bottom:62.280000px;}
.y231{bottom:64.800000px;}
.y260{bottom:66.598500px;}
.y188{bottom:68.431500px;}
.y20{bottom:69.852000px;}
.y20f{bottom:70.560000px;}
.ya5{bottom:70.561500px;}
.yd6{bottom:74.169000px;}
.y1f0{bottom:75.241500px;}
.y7f{bottom:77.040000px;}
.y1a9{bottom:77.422500px;}
.y1cc{bottom:80.308500px;}
.yfa{bottom:82.441500px;}
.y165{bottom:83.541000px;}
.y11d{bottom:84.600000px;}
.y230{bottom:87.480000px;}
.y25f{bottom:89.280000px;}
.y1f{bottom:92.172000px;}
.ya4{bottom:93.240000px;}
.y20e{bottom:93.244500px;}
.yd5{bottom:96.489000px;}
.y1ef{bottom:97.561500px;}
.y52{bottom:99.007500px;}
.y7e{bottom:99.360000px;}
.y1a8{bottom:99.742500px;}
.y1cb{bottom:102.628500px;}
.yf9{bottom:105.120000px;}
.y187{bottom:108.750000px;}
.y22f{bottom:109.800000px;}
.y25e{bottom:111.600000px;}
.ya3{bottom:115.560000px;}
.y20d{bottom:115.564500px;}
.yd4{bottom:119.167500px;}
.y1ee{bottom:120.240000px;}
.y7d{bottom:122.046000px;}
.y1a7{bottom:122.421000px;}
.y11c{bottom:125.280000px;}
.y1ca{bottom:125.307000px;}
.yf8{bottom:127.440000px;}
.y164{bottom:129.981000px;}
.y186{bottom:131.428500px;}
.y22e{bottom:132.478500px;}
.y25d{bottom:134.280000px;}
.ya2{bottom:138.241500px;}
.y1e{bottom:138.612000px;}
.yd3{bottom:141.487500px;}
.y1ed{bottom:142.560000px;}
.y7c{bottom:144.366000px;}
.y1a6{bottom:144.741000px;}
.y11b{bottom:147.600000px;}
.yf7{bottom:150.118500px;}
.y141{bottom:151.560000px;}
.y51{bottom:152.287500px;}
.y185{bottom:153.748500px;}
.y22d{bottom:154.800000px;}
.y25c{bottom:156.600000px;}
.ya1{bottom:160.561500px;}
.y20c{bottom:162.004500px;}
.yd2{bottom:164.166000px;}
.y1ec{bottom:165.240000px;}
.y1c9{bottom:165.625500px;}
.y7b{bottom:167.044500px;}
.y1a5{bottom:167.419500px;}
.y11a{bottom:170.310000px;}
.yf6{bottom:172.440000px;}
.y140{bottom:173.896500px;}
.y50{bottom:174.607500px;}
.y163{bottom:176.421000px;}
.y22c{bottom:177.478500px;}
.y25b{bottom:179.283000px;}
.ya0{bottom:183.240000px;}
.yd1{bottom:186.486000px;}
.y1eb{bottom:187.560000px;}
.y1c8{bottom:188.304000px;}
.y1a4{bottom:189.739500px;}
.y119{bottom:192.630000px;}
.yf5{bottom:195.118500px;}
.y13f{bottom:196.575000px;}
.y4f{bottom:197.286000px;}
.y162{bottom:198.741000px;}
.y22b{bottom:199.798500px;}
.y184{bottom:200.188500px;}
.y25a{bottom:201.603000px;}
.y9f{bottom:205.560000px;}
.y1ea{bottom:210.238500px;}
.y1c7{bottom:210.624000px;}
.y7a{bottom:211.323000px;}
.y1a3{bottom:212.418000px;}
.y20b{bottom:215.284500px;}
.y118{bottom:215.308500px;}
.y13e{bottom:218.895000px;}
.y161{bottom:221.419500px;}
.y22a{bottom:222.480000px;}
.y259{bottom:224.281500px;}
.y9e{bottom:228.241500px;}
.yce{bottom:230.407500px;}
.y1e9{bottom:232.564500px;}
.y1d{bottom:232.572000px;}
.y1c6{bottom:233.302500px;}
.y1a2{bottom:234.738000px;}
.y4e{bottom:237.604500px;}
.y117{bottom:237.628500px;}
.yf4{bottom:241.558500px;}
.y13d{bottom:241.573500px;}
.yd0{bottom:241.926000px;}
.y160{bottom:243.739500px;}
.y229{bottom:244.800000px;}
.y258{bottom:246.601500px;}
.y183{bottom:246.628500px;}
.ycd{bottom:253.086000px;}
.y1c{bottom:254.892000px;}
.y1e8{bottom:255.243000px;}
.y79{bottom:257.763000px;}
.y4d{bottom:260.283000px;}
.y116{bottom:260.307000px;}
.y13c{bottom:263.893500px;}
.ycf{bottom:264.246000px;}
.y15f{bottom:266.418000px;}
.y228{bottom:267.478500px;}
.y9d{bottom:268.560000px;}
.y257{bottom:269.280000px;}
.y182{bottom:269.307000px;}
.y1c5{bottom:273.621000px;}
.ycc{bottom:275.406000px;}
.y1e7{bottom:277.563000px;}
.y1b{bottom:277.570500px;}
.y78{bottom:280.441500px;}
.y1a1{bottom:281.178000px;}
.y4c{bottom:282.603000px;}
.y115{bottom:282.627000px;}
.y13b{bottom:286.572000px;}
.y15e{bottom:288.738000px;}
.y227{bottom:289.798500px;}
.y9c{bottom:291.241500px;}
.y256{bottom:291.600000px;}
.y181{bottom:291.627000px;}
.yf3{bottom:294.480000px;}
.y1c4{bottom:296.299500px;}
.y1a{bottom:299.890500px;}
.y1e6{bottom:300.241500px;}
.ycb{bottom:302.406000px;}
.y77{bottom:302.761500px;}
.y4b{bottom:305.281500px;}
.y114{bottom:305.305500px;}
.y13a{bottom:308.892000px;}
.y15d{bottom:311.416500px;}
.y226{bottom:312.478500px;}
.y9b{bottom:313.561500px;}
.y255{bottom:314.280000px;}
.y180{bottom:314.305500px;}
.yf2{bottom:317.158500px;}
.y1c3{bottom:318.619500px;}
.y1e5{bottom:322.561500px;}
.y19{bottom:322.569000px;}
.yca{bottom:325.084500px;}
.y76{bottom:325.441500px;}
.y4a{bottom:327.601500px;}
.y1a0{bottom:327.618000px;}
.y113{bottom:327.625500px;}
.y139{bottom:331.570500px;}
.y15c{bottom:333.736500px;}
.y225{bottom:334.798500px;}
.y9a{bottom:336.240000px;}
.y254{bottom:336.601500px;}
.yf1{bottom:339.496500px;}
.y1c2{bottom:341.298000px;}
.y18{bottom:344.889000px;}
.y75{bottom:347.761500px;}
.y49{bottom:350.280000px;}
.y19f{bottom:350.296500px;}
.y112{bottom:350.304000px;}
.yc9{bottom:352.084500px;}
.y138{bottom:353.890500px;}
.y17f{bottom:354.624000px;}
.y15b{bottom:356.415000px;}
.y224{bottom:357.478500px;}
.y99{bottom:358.560000px;}
.y253{bottom:359.280000px;}
.yf0{bottom:362.175000px;}
.y1e4{bottom:363.241500px;}
.y17{bottom:367.567500px;}
.y74{bottom:370.440000px;}
.y48{bottom:372.600000px;}
.y20a{bottom:372.603000px;}
.y19e{bottom:372.616500px;}
.yc8{bottom:374.404500px;}
.y137{bottom:376.569000px;}
.y17e{bottom:377.302500px;}
.y15a{bottom:378.735000px;}
.y223{bottom:379.798500px;}
.y98{bottom:381.241500px;}
.y252{bottom:381.601500px;}
.y1c1{bottom:381.616500px;}
.y1e3{bottom:385.561500px;}
.y16{bottom:389.887500px;}
.y111{bottom:390.622500px;}
.y73{bottom:392.760000px;}
.y47{bottom:395.278500px;}
.y209{bottom:395.281500px;}
.y19d{bottom:395.295000px;}
.yc7{bottom:401.404500px;}
.y159{bottom:401.413500px;}
.y222{bottom:402.478500px;}
.yef{bottom:402.493500px;}
.y97{bottom:403.561500px;}
.y251{bottom:404.280000px;}
.y1c0{bottom:404.295000px;}
.y1e2{bottom:408.252000px;}
.y26d{bottom:412.560000px;}
.y15{bottom:412.566000px;}
.y110{bottom:413.301000px;}
.y72{bottom:415.441500px;}
.y208{bottom:417.601500px;}
.y46{bottom:417.609000px;}
.y19c{bottom:417.615000px;}
.y17d{bottom:417.621000px;}
.y136{bottom:420.489000px;}
.yc6{bottom:424.083000px;}
.y221{bottom:424.801500px;}
.yee{bottom:425.172000px;}
.y96{bottom:426.240000px;}
.y250{bottom:426.600000px;}
.y1bf{bottom:426.615000px;}
.y1e1{bottom:430.572000px;}
.y26c{bottom:434.880000px;}
.y14{bottom:434.886000px;}
.y10f{bottom:435.621000px;}
.y71{bottom:437.761500px;}
.y207{bottom:440.280000px;}
.y45{bottom:440.287500px;}
.y19b{bottom:440.293500px;}
.y17c{bottom:440.299500px;}
.y158{bottom:441.732000px;}
.y220{bottom:447.480000px;}
.y135{bottom:447.489000px;}
.yed{bottom:447.492000px;}
.y95{bottom:448.561500px;}
.y24f{bottom:449.278500px;}
.y1be{bottom:449.293500px;}
.yc5{bottom:451.083000px;}
.y1e0{bottom:453.250500px;}
.y26b{bottom:457.560000px;}
.y13{bottom:457.564500px;}
.y10e{bottom:458.299500px;}
.y70{bottom:460.440000px;}
.yc4{bottom:462.243000px;}
.y206{bottom:462.600000px;}
.y19a{bottom:462.613500px;}
.y17b{bottom:462.619500px;}
.y157{bottom:464.410500px;}
.y94{bottom:471.241500px;}
.y24e{bottom:471.600000px;}
.y134{bottom:474.489000px;}
.y26a{bottom:479.880000px;}
.y12{bottom:479.884500px;}
.y44{bottom:480.606000px;}
.y10d{bottom:480.619500px;}
.y6f{bottom:482.760000px;}
.y205{bottom:485.278500px;}
.y1bd{bottom:489.612000px;}
.yec{bottom:491.412000px;}
.y93{bottom:493.561500px;}
.y21f{bottom:493.920000px;}
.y24d{bottom:494.278500px;}
.y1df{bottom:499.329000px;}
.yc0{bottom:500.401500px;}
.yc3{bottom:500.403000px;}
.y133{bottom:501.489000px;}
.y269{bottom:502.560000px;}
.y11{bottom:502.563000px;}
.y43{bottom:503.284500px;}
.y199{bottom:503.293500px;}
.y10c{bottom:503.298000px;}
.y17a{bottom:503.299500px;}
.y6e{bottom:505.443000px;}
.y204{bottom:507.609000px;}
.y156{bottom:509.410500px;}
.y1bc{bottom:512.290500px;}
.ye8{bottom:514.089000px;}
.yeb{bottom:514.090500px;}
.y92{bottom:516.240000px;}
.y24c{bottom:516.600000px;}
.ybf{bottom:523.080000px;}
.yc2{bottom:523.081500px;}
.y10{bottom:524.883000px;}
.y42{bottom:525.604500px;}
.y198{bottom:525.613500px;}
.y10b{bottom:525.618000px;}
.y6d{bottom:527.763000px;}
.y132{bottom:528.489000px;}
.y203{bottom:530.287500px;}
.y155{bottom:531.730500px;}
.y1bb{bottom:534.610500px;}
.ye7{bottom:536.409000px;}
.yea{bottom:536.410500px;}
.y91{bottom:538.563000px;}
.y24b{bottom:539.278500px;}
.y179{bottom:543.618000px;}
.ybe{bottom:545.400000px;}
.yc1{bottom:545.401500px;}
.y21e{bottom:546.844500px;}
.yf{bottom:547.561500px;}
.y41{bottom:548.283000px;}
.y10a{bottom:548.296500px;}
.y202{bottom:552.607500px;}
.y1de{bottom:552.609000px;}
.y131{bottom:555.489000px;}
.ye9{bottom:559.089000px;}
.y24a{bottom:561.600000px;}
.y178{bottom:566.296500px;}
.y6c{bottom:568.443000px;}
.y21d{bottom:569.523000px;}
.ye{bottom:569.881500px;}
.y40{bottom:570.603000px;}
.y197{bottom:570.613500px;}
.y109{bottom:570.616500px;}
.ybd{bottom:572.400000px;}
.y201{bottom:575.286000px;}
.y1dd{bottom:575.287500px;}
.y1ba{bottom:575.290500px;}
.y154{bottom:576.730500px;}
.y130{bottom:582.489000px;}
.y268{bottom:583.200000px;}
.y249{bottom:584.278500px;}
.y90{bottom:585.003000px;}
.ye6{bottom:586.087500px;}
.y177{bottom:588.616500px;}
.y6b{bottom:590.763000px;}
.y21c{bottom:591.843000px;}
.yd{bottom:592.560000px;}
.y3f{bottom:593.281500px;}
.y196{bottom:593.292000px;}
.y108{bottom:593.295000px;}
.ybc{bottom:595.078500px;}
.y200{bottom:597.606000px;}
.y1dc{bottom:597.607500px;}
.y1b9{bottom:597.610500px;}
.y153{bottom:599.409000px;}
.y267{bottom:605.520000px;}
.y248{bottom:606.600000px;}
.ye5{bottom:608.407500px;}
.y12f{bottom:609.489000px;}
.y176{bottom:611.295000px;}
.y6a{bottom:613.441500px;}
.y21b{bottom:614.521500px;}
.yc{bottom:614.880000px;}
.y3e{bottom:615.601500px;}
.y195{bottom:615.612000px;}
.y107{bottom:615.615000px;}
.y1ff{bottom:620.284500px;}
.y1db{bottom:620.286000px;}
.y152{bottom:621.729000px;}
.ybb{bottom:622.078500px;}
.y247{bottom:629.278500px;}
.yba{bottom:633.238500px;}
.y175{bottom:633.615000px;}
.y69{bottom:635.761500px;}
.y12e{bottom:636.489000px;}
.yb{bottom:637.558500px;}
.y3d{bottom:638.280000px;}
.y8f{bottom:638.283000px;}
.y1b8{bottom:638.290500px;}
.y106{bottom:638.293500px;}
.y1da{bottom:642.606000px;}
.y246{bottom:651.601500px;}
.ye4{bottom:658.086000px;}
.y68{bottom:658.440000px;}
.y3c{bottom:660.600000px;}
.y8e{bottom:660.603000px;}
.y1b7{bottom:660.610500px;}
.y194{bottom:660.612000px;}
.y105{bottom:660.613500px;}
.y21a{bottom:660.961500px;}
.y151{bottom:662.409000px;}
.y12d{bottom:663.489000px;}
.y1d9{bottom:665.284500px;}
.yb9{bottom:671.398500px;}
.y245{bottom:674.280000px;}
.y174{bottom:674.295000px;}
.y26e{bottom:676.080000px;}
.ye3{bottom:680.406000px;}
.y67{bottom:680.760000px;}
.y3b{bottom:683.278500px;}
.y8d{bottom:683.281500px;}
.y104{bottom:683.292000px;}
.y150{bottom:684.729000px;}
.y1d8{bottom:687.604500px;}
.y12c{bottom:689.409000px;}
.y244{bottom:696.600000px;}
.y173{bottom:696.615000px;}
.yb8{bottom:697.330500px;}
.y1b6{bottom:701.290500px;}
.y193{bottom:701.292000px;}
.y66{bottom:703.438500px;}
.y3a{bottom:705.600000px;}
.y8c{bottom:705.601500px;}
.y219{bottom:714.241500px;}
.y243{bottom:719.278500px;}
.y172{bottom:719.293500px;}
.y266{bottom:722.164500px;}
.y103{bottom:723.610500px;}
.y192{bottom:723.612000px;}
.ya{bottom:724.318500px;}
.y14f{bottom:725.409000px;}
.y39{bottom:728.278500px;}
.y8b{bottom:728.280000px;}
.y1d7{bottom:728.284500px;}
.ye2{bottom:730.084500px;}
.y242{bottom:741.598500px;}
.y171{bottom:741.613500px;}
.y65{bottom:743.760000px;}
.y102{bottom:746.289000px;}
.y14e{bottom:747.729000px;}
.y38{bottom:750.598500px;}
.y8a{bottom:750.600000px;}
.y1d6{bottom:750.604500px;}
.ye1{bottom:752.404500px;}
.y12b{bottom:752.409000px;}
.y218{bottom:760.320000px;}
.yb7{bottom:760.330500px;}
.y241{bottom:764.280000px;}
.y170{bottom:764.292000px;}
.y64{bottom:766.438500px;}
.y101{bottom:768.609000px;}
.y1b5{bottom:768.610500px;}
.y14d{bottom:770.407500px;}
.y1fe{bottom:773.278500px;}
.y89{bottom:773.281500px;}
.y1d5{bottom:773.283000px;}
.y12a{bottom:774.729000px;}
.yb6{bottom:783.009000px;}
.y240{bottom:786.600000px;}
.y191{bottom:786.612000px;}
.y63{bottom:788.761500px;}
.y37{bottom:791.280000px;}
.y100{bottom:791.287500px;}
.y1b4{bottom:791.289000px;}
.y1d4{bottom:795.603000px;}
.y1fd{bottom:795.607500px;}
.y129{bottom:797.407500px;}
.ye0{bottom:802.083000px;}
.y16f{bottom:804.610500px;}
.yb5{bottom:805.329000px;}
.y23f{bottom:809.278500px;}
.y190{bottom:809.290500px;}
.y14c{bottom:810.726000px;}
.y62{bottom:811.440000px;}
.y36{bottom:813.600000px;}
.yff{bottom:813.607500px;}
.y1d3{bottom:818.281500px;}
.y1fc{bottom:818.286000px;}
.y128{bottom:819.727500px;}
.y265{bottom:821.523000px;}
.y9{bottom:823.680000px;}
.ydf{bottom:824.403000px;}
.yb4{bottom:828.007500px;}
.y23e{bottom:831.600000px;}
.y1b3{bottom:831.607500px;}
.y14b{bottom:833.404500px;}
.y61{bottom:833.767500px;}
.y35{bottom:836.278500px;}
.y217{bottom:836.280000px;}
.yfe{bottom:836.286000px;}
.y1fb{bottom:840.606000px;}
.y127{bottom:842.406000px;}
.y16e{bottom:849.610500px;}
.yb3{bottom:850.327500px;}
.y23d{bottom:854.278500px;}
.y1b2{bottom:854.286000px;}
.y18f{bottom:854.290500px;}
.y14a{bottom:855.724500px;}
.y8{bottom:856.080000px;}
.y60{bottom:856.446000px;}
.y34{bottom:858.600000px;}
.y88{bottom:858.603000px;}
.yfd{bottom:858.606000px;}
.y1d2{bottom:863.281500px;}
.y126{bottom:864.726000px;}
.y16d{bottom:872.289000px;}
.yb2{bottom:873.006000px;}
.yde{bottom:874.083000px;}
.y23c{bottom:876.600000px;}
.y264{bottom:876.601500px;}
.y18e{bottom:876.610500px;}
.y216{bottom:881.278500px;}
.y87{bottom:881.281500px;}
.y33{bottom:881.284500px;}
.y1fa{bottom:881.286000px;}
.y1d1{bottom:885.601500px;}
.y125{bottom:887.404500px;}
.y1b1{bottom:894.604500px;}
.yb1{bottom:895.326000px;}
.ydd{bottom:896.403000px;}
.y149{bottom:896.404500px;}
.y5f{bottom:896.764500px;}
.y23b{bottom:899.278500px;}
.y263{bottom:899.280000px;}
.y18d{bottom:899.289000px;}
.y215{bottom:903.600000px;}
.y86{bottom:903.601500px;}
.y32{bottom:903.604500px;}
.y1f9{bottom:903.606000px;}
.y1d0{bottom:908.280000px;}
.y124{bottom:909.724500px;}
.y16c{bottom:912.607500px;}
.y1b0{bottom:917.283000px;}
.yb0{bottom:918.004500px;}
.y148{bottom:918.724500px;}
.y5e{bottom:919.443000px;}
.y23a{bottom:921.598500px;}
.y262{bottom:921.600000px;}
.ydc{bottom:922.323000px;}
.y214{bottom:926.278500px;}
.y85{bottom:926.280000px;}
.y31{bottom:926.283000px;}
.y1f8{bottom:926.284500px;}
.y7{bottom:928.800000px;}
.y18c{bottom:939.607500px;}
.yaf{bottom:940.324500px;}
.y147{bottom:941.403000px;}
.y5d{bottom:941.763000px;}
.y239{bottom:944.278500px;}
.y213{bottom:948.598500px;}
.y84{bottom:948.600000px;}
.y30{bottom:948.603000px;}
.y1f7{bottom:948.604500px;}
.y6{bottom:951.120000px;}
.y1cf{bottom:953.280000px;}
.y16b{bottom:953.287500px;}
.y123{bottom:954.003000px;}
.y1af{bottom:962.283000px;}
.y18b{bottom:962.286000px;}
.yae{bottom:963.003000px;}
.y146{bottom:963.723000px;}
.y5c{bottom:964.441500px;}
.y238{bottom:966.598500px;}
.y261{bottom:968.040000px;}
.y83{bottom:971.278500px;}
.y2f{bottom:971.281500px;}
.y1f6{bottom:971.283000px;}
.y212{bottom:971.286000px;}
.y5{bottom:973.800000px;}
.y1ce{bottom:975.600000px;}
.y16a{bottom:975.607500px;}
.y1ae{bottom:984.603000px;}
.yad{bottom:985.323000px;}
.y145{bottom:986.401500px;}
.y5b{bottom:986.761500px;}
.y237{bottom:989.280000px;}
.y82{bottom:993.598500px;}
.y2e{bottom:993.601500px;}
.y1f5{bottom:993.603000px;}
.y211{bottom:993.606000px;}
.y4{bottom:996.120000px;}
.y169{bottom:998.286000px;}
.y18a{bottom:1002.604500px;}
.y122{bottom:1003.323000px;}
.yac{bottom:1008.001500px;}
.y144{bottom:1008.721500px;}
.y5a{bottom:1009.440000px;}
.y236{bottom:1011.600000px;}
.y2d{bottom:1016.280000px;}
.y1f4{bottom:1016.281500px;}
.y210{bottom:1016.284500px;}
.y3{bottom:1018.800000px;}
.y1ad{bottom:1025.283000px;}
.yab{bottom:1030.321500px;}
.y59{bottom:1031.760000px;}
.y235{bottom:1034.278500px;}
.y81{bottom:1034.280000px;}
.yfc{bottom:1034.281500px;}
.y1cd{bottom:1038.600000px;}
.y1f3{bottom:1038.601500px;}
.y168{bottom:1038.604500px;}
.y189{bottom:1043.284500px;}
.yaa{bottom:1053.003000px;}
.ydb{bottom:1053.723000px;}
.y58{bottom:1054.441500px;}
.y143{bottom:1055.161500px;}
.y234{bottom:1056.598500px;}
.y2c{bottom:1056.600000px;}
.yfb{bottom:1056.601500px;}
.y121{bottom:1056.603000px;}
.y1f2{bottom:1061.280000px;}
.y167{bottom:1061.283000px;}
.y1ac{bottom:1065.601500px;}
.ya9{bottom:1075.323000px;}
.y57{bottom:1076.761500px;}
.y233{bottom:1079.278500px;}
.y2b{bottom:1079.280000px;}
.y120{bottom:1079.281500px;}
.y2{bottom:1081.800000px;}
.y1f1{bottom:1083.600000px;}
.yda{bottom:1083.603000px;}
.y1ab{bottom:1088.280000px;}
.ya8{bottom:1098.001500px;}
.y56{bottom:1099.440000px;}
.y232{bottom:1101.598500px;}
.y2a{bottom:1101.600000px;}
.y11f{bottom:1101.601500px;}
.yd9{bottom:1106.281500px;}
.y1aa{bottom:1110.600000px;}
.y55{bottom:1121.763000px;}
.y80{bottom:1124.278500px;}
.y29{bottom:1124.280000px;}
.y1{bottom:1126.800000px;}
.yd8{bottom:1128.601500px;}
.ya7{bottom:1138.320000px;}
.y54{bottom:1144.441500px;}
.y28{bottom:1146.600000px;}
.yd7{bottom:1151.280000px;}
.ya6{bottom:1161.718500px;}
.y27{bottom:1169.278500px;}
.y53{bottom:1188.720000px;}
.y26{bottom:1191.598500px;}
.y21{bottom:1245.958500px;}
.h5{height:16.918500px;}
.h7{height:17.278500px;}
.h10{height:48.053742px;}
.h6{height:59.357813px;}
.hf{height:62.989278px;}
.he{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h8{height:84.166453px;}
.h4{height:108.843750px;}
.h9{height:115.304062px;}
.hc{height:116.738063px;}
.hd{height:117.202500px;}
.hb{height:159.944062px;}
.ha{height:161.378062px;}
.h0{height:1262.878500px;}
.h1{height:1263.000000px;}
.w4{width:129.958500px;}
.w3{width:268.918500px;}
.w2{width:429.478500px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:63.000000px;}
.x7{left:66.241500px;}
.x9{left:74.512500px;}
.xb{left:88.192500px;}
.xa{left:98.271000px;}
.x2{left:108.000000px;}
.x15{left:111.238500px;}
.x14{left:113.038500px;}
.xd{left:115.920000px;}
.x6{left:119.160000px;}
.x13{left:128.520000px;}
.x5{left:133.918500px;}
.x10{left:135.718500px;}
.x16{left:142.560000px;}
.x12{left:149.760000px;}
.xe{left:257.038500px;}
.x17{left:288.360000px;}
.x11{left:295.197000px;}
.xc{left:296.631000px;}
.xf{left:361.798500px;}
.x8{left:415.441500px;}
.x3{left:623.520000px;}
.x4{left:762.478500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.680000pt;}
.v4{vertical-align:40.954667pt;}
.v3{vertical-align:79.360000pt;}
.v2{vertical-align:80.634667pt;}
.lsd{letter-spacing:-4.480000pt;}
.ls3c{letter-spacing:-3.392000pt;}
.ls49{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.152000pt;}
.ls24{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.672000pt;}
.ls50{letter-spacing:-0.650667pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls3f{letter-spacing:-0.634667pt;}
.ls4d{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls4f{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls4b{letter-spacing:-0.218667pt;}
.lse{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.160000pt;}
.ls25{letter-spacing:-0.154667pt;}
.ls3a{letter-spacing:-0.149333pt;}
.ls2f{letter-spacing:-0.144000pt;}
.ls39{letter-spacing:-0.133333pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls48{letter-spacing:-0.122667pt;}
.ls2e{letter-spacing:-0.117333pt;}
.ls2c{letter-spacing:-0.112000pt;}
.ls30{letter-spacing:-0.106667pt;}
.ls1e{letter-spacing:-0.101333pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.090667pt;}
.ls18{letter-spacing:-0.085333pt;}
.ls1a{letter-spacing:-0.080000pt;}
.ls1b{letter-spacing:-0.074667pt;}
.ls17{letter-spacing:-0.069333pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls26{letter-spacing:-0.053333pt;}
.ls34{letter-spacing:-0.048000pt;}
.ls12{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.005333pt;}
.ls20{letter-spacing:0.021333pt;}
.ls27{letter-spacing:0.026667pt;}
.ls3e{letter-spacing:0.030507pt;}
.ls21{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.037333pt;}
.ls7{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.058667pt;}
.ls8{letter-spacing:0.064000pt;}
.ls41{letter-spacing:0.069333pt;}
.ls1f{letter-spacing:0.074667pt;}
.ls44{letter-spacing:0.080000pt;}
.ls29{letter-spacing:0.085333pt;}
.ls4a{letter-spacing:0.090667pt;}
.ls45{letter-spacing:0.101333pt;}
.ls47{letter-spacing:0.117333pt;}
.ls6{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.133333pt;}
.ls43{letter-spacing:0.138667pt;}
.ls5{letter-spacing:0.154667pt;}
.ls38{letter-spacing:0.218667pt;}
.ls52{letter-spacing:0.234667pt;}
.ls46{letter-spacing:0.256000pt;}
.ls51{letter-spacing:0.266667pt;}
.ls36{letter-spacing:0.272000pt;}
.ls37{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.362667pt;}
.lsb{letter-spacing:0.384000pt;}
.ls32{letter-spacing:0.437333pt;}
.ls31{letter-spacing:0.442667pt;}
.ls9{letter-spacing:0.448000pt;}
.ls42{letter-spacing:0.469333pt;}
.ls4c{letter-spacing:0.544000pt;}
.ls3b{letter-spacing:0.576000pt;}
.ls3d{letter-spacing:0.632320pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:1.024000pt;}
.ls4e{letter-spacing:15.482667pt;}
.ls2a{letter-spacing:15.493333pt;}
.ls23{letter-spacing:15.498667pt;}
.ls1{letter-spacing:16.000000pt;}
.ls22{letter-spacing:16.762667pt;}
.ls28{letter-spacing:16.768000pt;}
.ls35{letter-spacing:17.266987pt;}
.ws7{word-spacing:-64.640000pt;}
.ws8{word-spacing:-64.128000pt;}
.ws9{word-spacing:-64.000000pt;}
.wsa{word-spacing:-63.872000pt;}
.ws6{word-spacing:-63.488000pt;}
.wsbc{word-spacing:-56.768000pt;}
.wsb9{word-spacing:-56.320000pt;}
.wsbe{word-spacing:-56.192000pt;}
.wsbb{word-spacing:-55.488000pt;}
.ws0{word-spacing:-49.925333pt;}
.ws3{word-spacing:-48.896000pt;}
.ws2{word-spacing:-47.237333pt;}
.ws5{word-spacing:-45.317333pt;}
.ws4{word-spacing:-45.157333pt;}
.ws1{word-spacing:-38.208000pt;}
.wsec{word-spacing:-24.640000pt;}
.ws11{word-spacing:-24.384000pt;}
.wsce{word-spacing:-24.288000pt;}
.wse7{word-spacing:-23.781333pt;}
.wsf1{word-spacing:-23.616000pt;}
.ws5e{word-spacing:-17.024000pt;}
.ws10{word-spacing:-16.448000pt;}
.wsd{word-spacing:-16.154667pt;}
.wse{word-spacing:-16.128000pt;}
.wse3{word-spacing:-16.090667pt;}
.wsd4{word-spacing:-16.080000pt;}
.wsf{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.053333pt;}
.ws60{word-spacing:-16.048000pt;}
.ws61{word-spacing:-16.042667pt;}
.ws5c{word-spacing:-16.037333pt;}
.ws85{word-spacing:-16.032000pt;}
.ws5f{word-spacing:-16.026667pt;}
.ws30{word-spacing:-16.021333pt;}
.ws31{word-spacing:-16.000000pt;}
.wsf2{word-spacing:-15.941333pt;}
.ws5d{word-spacing:-15.936000pt;}
.ws86{word-spacing:-15.914667pt;}
.ws9b{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.744000pt;}
.wseb{word-spacing:-15.424000pt;}
.wsd5{word-spacing:-15.168000pt;}
.ws12{word-spacing:-13.445333pt;}
.ws9e{word-spacing:-12.608000pt;}
.ws107{word-spacing:-11.828064pt;}
.wsb8{word-spacing:-2.117333pt;}
.wsbd{word-spacing:-1.541333pt;}
.wsba{word-spacing:-1.536000pt;}
.wsc1{word-spacing:-1.088000pt;}
.wsb1{word-spacing:-0.928000pt;}
.wsac{word-spacing:-0.912000pt;}
.wsdd{word-spacing:-0.896000pt;}
.wsb3{word-spacing:-0.858667pt;}
.wsd8{word-spacing:-0.741333pt;}
.wsd0{word-spacing:-0.714667pt;}
.wsd1{word-spacing:-0.709333pt;}
.ws9f{word-spacing:-0.704000pt;}
.wsf8{word-spacing:-0.698667pt;}
.ws16{word-spacing:-0.693333pt;}
.wsa4{word-spacing:-0.688000pt;}
.ws3d{word-spacing:-0.682667pt;}
.ws15{word-spacing:-0.677333pt;}
.ws63{word-spacing:-0.672000pt;}
.ws82{word-spacing:-0.661333pt;}
.ws2d{word-spacing:-0.645333pt;}
.ws2e{word-spacing:-0.640000pt;}
.wsef{word-spacing:-0.586667pt;}
.ws87{word-spacing:-0.581333pt;}
.wsf5{word-spacing:-0.576000pt;}
.ws9c{word-spacing:-0.570667pt;}
.wsff{word-spacing:-0.565333pt;}
.wsea{word-spacing:-0.554667pt;}
.ws72{word-spacing:-0.538667pt;}
.wsfc{word-spacing:-0.522667pt;}
.ws45{word-spacing:-0.512000pt;}
.ws99{word-spacing:-0.496000pt;}
.ws100{word-spacing:-0.480000pt;}
.ws8d{word-spacing:-0.464000pt;}
.ws103{word-spacing:-0.453333pt;}
.wsc0{word-spacing:-0.448000pt;}
.wsed{word-spacing:-0.437333pt;}
.ws93{word-spacing:-0.426667pt;}
.ws1e{word-spacing:-0.410667pt;}
.ws33{word-spacing:-0.394667pt;}
.ws74{word-spacing:-0.384000pt;}
.wsee{word-spacing:-0.362667pt;}
.wsfe{word-spacing:-0.357333pt;}
.ws52{word-spacing:-0.352000pt;}
.wsf4{word-spacing:-0.346667pt;}
.ws2c{word-spacing:-0.325333pt;}
.ws18{word-spacing:-0.320000pt;}
.ws9a{word-spacing:-0.314667pt;}
.wsf3{word-spacing:-0.309333pt;}
.ws51{word-spacing:-0.304000pt;}
.wsc3{word-spacing:-0.298667pt;}
.ws36{word-spacing:-0.288000pt;}
.wse1{word-spacing:-0.282667pt;}
.wsb2{word-spacing:-0.272000pt;}
.ws71{word-spacing:-0.266667pt;}
.wscd{word-spacing:-0.261333pt;}
.ws44{word-spacing:-0.256000pt;}
.wsda{word-spacing:-0.250667pt;}
.wsd7{word-spacing:-0.245333pt;}
.wsde{word-spacing:-0.240000pt;}
.ws7e{word-spacing:-0.234667pt;}
.ws4b{word-spacing:-0.229333pt;}
.wsdc{word-spacing:-0.224000pt;}
.ws70{word-spacing:-0.218667pt;}
.ws23{word-spacing:-0.213333pt;}
.wsf9{word-spacing:-0.208000pt;}
.wsfd{word-spacing:-0.202667pt;}
.wsc5{word-spacing:-0.197333pt;}
.wsd6{word-spacing:-0.192000pt;}
.wsaf{word-spacing:-0.186667pt;}
.ws90{word-spacing:-0.181333pt;}
.wsae{word-spacing:-0.176000pt;}
.ws55{word-spacing:-0.170667pt;}
.ws57{word-spacing:-0.165333pt;}
.wsb5{word-spacing:-0.160000pt;}
.ws91{word-spacing:-0.154667pt;}
.ws6a{word-spacing:-0.149333pt;}
.wsca{word-spacing:-0.144000pt;}
.wsad{word-spacing:-0.138667pt;}
.ws68{word-spacing:-0.133333pt;}
.ws96{word-spacing:-0.128000pt;}
.ws80{word-spacing:-0.122667pt;}
.ws94{word-spacing:-0.117333pt;}
.ws81{word-spacing:-0.112000pt;}
.wscc{word-spacing:-0.106667pt;}
.ws20{word-spacing:-0.101333pt;}
.ws8a{word-spacing:-0.096000pt;}
.wsa7{word-spacing:-0.090667pt;}
.ws89{word-spacing:-0.085333pt;}
.ws73{word-spacing:-0.080000pt;}
.ws76{word-spacing:-0.074667pt;}
.ws95{word-spacing:-0.069333pt;}
.ws98{word-spacing:-0.064000pt;}
.ws25{word-spacing:-0.058667pt;}
.ws42{word-spacing:-0.053333pt;}
.ws22{word-spacing:-0.048000pt;}
.ws17{word-spacing:-0.042667pt;}
.ws32{word-spacing:-0.037333pt;}
.ws67{word-spacing:-0.032000pt;}
.wsc2{word-spacing:-0.026667pt;}
.ws1b{word-spacing:-0.021333pt;}
.ws27{word-spacing:-0.016000pt;}
.ws97{word-spacing:-0.010667pt;}
.ws6c{word-spacing:-0.005333pt;}
.ws13{word-spacing:0.000000pt;}
.ws35{word-spacing:0.005333pt;}
.ws84{word-spacing:0.010667pt;}
.ws8e{word-spacing:0.016000pt;}
.ws77{word-spacing:0.021333pt;}
.ws4a{word-spacing:0.026667pt;}
.ws1f{word-spacing:0.032000pt;}
.ws48{word-spacing:0.037333pt;}
.wsb0{word-spacing:0.042667pt;}
.ws56{word-spacing:0.048000pt;}
.ws40{word-spacing:0.053333pt;}
.ws66{word-spacing:0.058667pt;}
.ws29{word-spacing:0.064000pt;}
.ws3e{word-spacing:0.069333pt;}
.ws24{word-spacing:0.074667pt;}
.ws41{word-spacing:0.080000pt;}
.ws79{word-spacing:0.085333pt;}
.ws19{word-spacing:0.090667pt;}
.ws88{word-spacing:0.096000pt;}
.ws5a{word-spacing:0.101333pt;}
.ws4d{word-spacing:0.106667pt;}
.wsa2{word-spacing:0.112000pt;}
.ws28{word-spacing:0.117333pt;}
.ws49{word-spacing:0.122667pt;}
.ws1a{word-spacing:0.128000pt;}
.ws7f{word-spacing:0.133333pt;}
.wsa1{word-spacing:0.138667pt;}
.ws50{word-spacing:0.144000pt;}
.ws54{word-spacing:0.149333pt;}
.wsb4{word-spacing:0.154667pt;}
.ws62{word-spacing:0.160000pt;}
.ws6e{word-spacing:0.165333pt;}
.ws78{word-spacing:0.170667pt;}
.ws26{word-spacing:0.176000pt;}
.ws8c{word-spacing:0.181333pt;}
.wsc6{word-spacing:0.186667pt;}
.ws7a{word-spacing:0.192000pt;}
.ws64{word-spacing:0.197333pt;}
.wsc8{word-spacing:0.202667pt;}
.ws5b{word-spacing:0.208000pt;}
.ws3b{word-spacing:0.213333pt;}
.ws7c{word-spacing:0.218667pt;}
.ws102{word-spacing:0.224000pt;}
.ws92{word-spacing:0.229333pt;}
.ws4e{word-spacing:0.234667pt;}
.wsa5{word-spacing:0.240000pt;}
.ws37{word-spacing:0.245333pt;}
.ws8b{word-spacing:0.250667pt;}
.ws75{word-spacing:0.256000pt;}
.ws2a{word-spacing:0.261333pt;}
.wsdf{word-spacing:0.266667pt;}
.ws3f{word-spacing:0.272000pt;}
.ws4f{word-spacing:0.277333pt;}
.wse5{word-spacing:0.282667pt;}
.ws2b{word-spacing:0.288000pt;}
.ws69{word-spacing:0.293333pt;}
.wse6{word-spacing:0.298667pt;}
.wscb{word-spacing:0.304000pt;}
.ws58{word-spacing:0.309333pt;}
.ws7d{word-spacing:0.314667pt;}
.ws7b{word-spacing:0.320000pt;}
.ws4c{word-spacing:0.325333pt;}
.ws59{word-spacing:0.336000pt;}
.ws1d{word-spacing:0.341333pt;}
.wsd3{word-spacing:0.346667pt;}
.wse9{word-spacing:0.357333pt;}
.wsbf{word-spacing:0.362667pt;}
.ws34{word-spacing:0.368000pt;}
.ws46{word-spacing:0.373333pt;}
.wsfb{word-spacing:0.378667pt;}
.ws65{word-spacing:0.384000pt;}
.wsa8{word-spacing:0.400000pt;}
.wsd9{word-spacing:0.405333pt;}
.wsc9{word-spacing:0.410667pt;}
.wsaa{word-spacing:0.416000pt;}
.wsa9{word-spacing:0.421333pt;}
.ws6b{word-spacing:0.426667pt;}
.wsdb{word-spacing:0.442667pt;}
.wsf6{word-spacing:0.453333pt;}
.wse8{word-spacing:0.458667pt;}
.wsab{word-spacing:0.464000pt;}
.ws83{word-spacing:0.490667pt;}
.ws21{word-spacing:0.501333pt;}
.wsf0{word-spacing:0.512000pt;}
.wsf7{word-spacing:0.522667pt;}
.ws38{word-spacing:0.565333pt;}
.ws3a{word-spacing:0.576000pt;}
.wsb6{word-spacing:0.581333pt;}
.wsa6{word-spacing:0.586667pt;}
.wsa0{word-spacing:0.597333pt;}
.ws8f{word-spacing:0.602667pt;}
.wse0{word-spacing:0.608000pt;}
.ws6f{word-spacing:0.613333pt;}
.ws14{word-spacing:0.640000pt;}
.ws53{word-spacing:0.693333pt;}
.wsd2{word-spacing:0.698667pt;}
.ws39{word-spacing:0.704000pt;}
.ws43{word-spacing:0.714667pt;}
.ws6d{word-spacing:0.725333pt;}
.wse4{word-spacing:0.730667pt;}
.ws1c{word-spacing:0.736000pt;}
.ws101{word-spacing:0.746667pt;}
.wsfa{word-spacing:0.752000pt;}
.ws3c{word-spacing:0.768000pt;}
.wsa3{word-spacing:0.773333pt;}
.ws47{word-spacing:0.794667pt;}
.wsc4{word-spacing:0.954667pt;}
.ws2f{word-spacing:1.658667pt;}
.wse2{word-spacing:1.920000pt;}
.wsc7{word-spacing:2.234667pt;}
.ws105{word-spacing:186.813579pt;}
.ws104{word-spacing:187.796517pt;}
.ws106{word-spacing:188.015013pt;}
.wsb7{word-spacing:852.032000pt;}
.ws9d{word-spacing:918.080000pt;}
.wscf{word-spacing:1644.474667pt;}
._21{margin-left:-8.640000pt;}
._20{margin-left:-7.424000pt;}
._a{margin-left:-6.144000pt;}
._6{margin-left:-4.864000pt;}
._8{margin-left:-3.520000pt;}
._5{margin-left:-2.368000pt;}
._0{margin-left:-1.408000pt;}
._3{width:1.408000pt;}
._7{width:2.730667pt;}
._1{width:3.904000pt;}
._2{width:5.440000pt;}
._4{width:14.581333pt;}
._b{width:16.485333pt;}
._9{width:17.664000pt;}
._16{width:19.136000pt;}
._11{width:98.389333pt;}
._18{width:111.386667pt;}
._15{width:189.034667pt;}
._1a{width:211.418667pt;}
._13{width:276.410667pt;}
._1e{width:284.378667pt;}
._12{width:317.733333pt;}
._14{width:322.640000pt;}
._1b{width:627.946667pt;}
._e{width:692.112000pt;}
._17{width:693.605333pt;}
._d{width:706.944000pt;}
._f{width:743.872000pt;}
._1c{width:746.138667pt;}
._c{width:766.944000pt;}
._1f{width:799.968000pt;}
._10{width:809.621333pt;}
._1d{width:1435.114667pt;}
._19{width:1456.560000pt;}
.fs7{font-size:40.954667pt;}
.fs6{font-size:52.474667pt;}
.fs2{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.234667pt;}
.fs4{font-size:79.360000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:1.280000pt;}
.y25{bottom:3.198667pt;}
.y22{bottom:3.200000pt;}
.y23{bottom:4.478667pt;}
.y142{bottom:53.760000pt;}
.y166{bottom:54.100000pt;}
.y11e{bottom:55.360000pt;}
.y231{bottom:57.600000pt;}
.y260{bottom:59.198667pt;}
.y188{bottom:60.828000pt;}
.y20{bottom:62.090667pt;}
.y20f{bottom:62.720000pt;}
.ya5{bottom:62.721333pt;}
.yd6{bottom:65.928000pt;}
.y1f0{bottom:66.881333pt;}
.y7f{bottom:68.480000pt;}
.y1a9{bottom:68.820000pt;}
.y1cc{bottom:71.385333pt;}
.yfa{bottom:73.281333pt;}
.y165{bottom:74.258667pt;}
.y11d{bottom:75.200000pt;}
.y230{bottom:77.760000pt;}
.y25f{bottom:79.360000pt;}
.y1f{bottom:81.930667pt;}
.ya4{bottom:82.880000pt;}
.y20e{bottom:82.884000pt;}
.yd5{bottom:85.768000pt;}
.y1ef{bottom:86.721333pt;}
.y52{bottom:88.006667pt;}
.y7e{bottom:88.320000pt;}
.y1a8{bottom:88.660000pt;}
.y1cb{bottom:91.225333pt;}
.yf9{bottom:93.440000pt;}
.y187{bottom:96.666667pt;}
.y22f{bottom:97.600000pt;}
.y25e{bottom:99.200000pt;}
.ya3{bottom:102.720000pt;}
.y20d{bottom:102.724000pt;}
.yd4{bottom:105.926667pt;}
.y1ee{bottom:106.880000pt;}
.y7d{bottom:108.485333pt;}
.y1a7{bottom:108.818667pt;}
.y11c{bottom:111.360000pt;}
.y1ca{bottom:111.384000pt;}
.yf8{bottom:113.280000pt;}
.y164{bottom:115.538667pt;}
.y186{bottom:116.825333pt;}
.y22e{bottom:117.758667pt;}
.y25d{bottom:119.360000pt;}
.ya2{bottom:122.881333pt;}
.y1e{bottom:123.210667pt;}
.yd3{bottom:125.766667pt;}
.y1ed{bottom:126.720000pt;}
.y7c{bottom:128.325333pt;}
.y1a6{bottom:128.658667pt;}
.y11b{bottom:131.200000pt;}
.yf7{bottom:133.438667pt;}
.y141{bottom:134.720000pt;}
.y51{bottom:135.366667pt;}
.y185{bottom:136.665333pt;}
.y22d{bottom:137.600000pt;}
.y25c{bottom:139.200000pt;}
.ya1{bottom:142.721333pt;}
.y20c{bottom:144.004000pt;}
.yd2{bottom:145.925333pt;}
.y1ec{bottom:146.880000pt;}
.y1c9{bottom:147.222667pt;}
.y7b{bottom:148.484000pt;}
.y1a5{bottom:148.817333pt;}
.y11a{bottom:151.386667pt;}
.yf6{bottom:153.280000pt;}
.y140{bottom:154.574667pt;}
.y50{bottom:155.206667pt;}
.y163{bottom:156.818667pt;}
.y22c{bottom:157.758667pt;}
.y25b{bottom:159.362667pt;}
.ya0{bottom:162.880000pt;}
.yd1{bottom:165.765333pt;}
.y1eb{bottom:166.720000pt;}
.y1c8{bottom:167.381333pt;}
.y1a4{bottom:168.657333pt;}
.y119{bottom:171.226667pt;}
.yf5{bottom:173.438667pt;}
.y13f{bottom:174.733333pt;}
.y4f{bottom:175.365333pt;}
.y162{bottom:176.658667pt;}
.y22b{bottom:177.598667pt;}
.y184{bottom:177.945333pt;}
.y25a{bottom:179.202667pt;}
.y9f{bottom:182.720000pt;}
.y1ea{bottom:186.878667pt;}
.y1c7{bottom:187.221333pt;}
.y7a{bottom:187.842667pt;}
.y1a3{bottom:188.816000pt;}
.y20b{bottom:191.364000pt;}
.y118{bottom:191.385333pt;}
.y13e{bottom:194.573333pt;}
.y161{bottom:196.817333pt;}
.y22a{bottom:197.760000pt;}
.y259{bottom:199.361333pt;}
.y9e{bottom:202.881333pt;}
.yce{bottom:204.806667pt;}
.y1e9{bottom:206.724000pt;}
.y1d{bottom:206.730667pt;}
.y1c6{bottom:207.380000pt;}
.y1a2{bottom:208.656000pt;}
.y4e{bottom:211.204000pt;}
.y117{bottom:211.225333pt;}
.yf4{bottom:214.718667pt;}
.y13d{bottom:214.732000pt;}
.yd0{bottom:215.045333pt;}
.y160{bottom:216.657333pt;}
.y229{bottom:217.600000pt;}
.y258{bottom:219.201333pt;}
.y183{bottom:219.225333pt;}
.ycd{bottom:224.965333pt;}
.y1c{bottom:226.570667pt;}
.y1e8{bottom:226.882667pt;}
.y79{bottom:229.122667pt;}
.y4d{bottom:231.362667pt;}
.y116{bottom:231.384000pt;}
.y13c{bottom:234.572000pt;}
.ycf{bottom:234.885333pt;}
.y15f{bottom:236.816000pt;}
.y228{bottom:237.758667pt;}
.y9d{bottom:238.720000pt;}
.y257{bottom:239.360000pt;}
.y182{bottom:239.384000pt;}
.y1c5{bottom:243.218667pt;}
.ycc{bottom:244.805333pt;}
.y1e7{bottom:246.722667pt;}
.y1b{bottom:246.729333pt;}
.y78{bottom:249.281333pt;}
.y1a1{bottom:249.936000pt;}
.y4c{bottom:251.202667pt;}
.y115{bottom:251.224000pt;}
.y13b{bottom:254.730667pt;}
.y15e{bottom:256.656000pt;}
.y227{bottom:257.598667pt;}
.y9c{bottom:258.881333pt;}
.y256{bottom:259.200000pt;}
.y181{bottom:259.224000pt;}
.yf3{bottom:261.760000pt;}
.y1c4{bottom:263.377333pt;}
.y1a{bottom:266.569333pt;}
.y1e6{bottom:266.881333pt;}
.ycb{bottom:268.805333pt;}
.y77{bottom:269.121333pt;}
.y4b{bottom:271.361333pt;}
.y114{bottom:271.382667pt;}
.y13a{bottom:274.570667pt;}
.y15d{bottom:276.814667pt;}
.y226{bottom:277.758667pt;}
.y9b{bottom:278.721333pt;}
.y255{bottom:279.360000pt;}
.y180{bottom:279.382667pt;}
.yf2{bottom:281.918667pt;}
.y1c3{bottom:283.217333pt;}
.y1e5{bottom:286.721333pt;}
.y19{bottom:286.728000pt;}
.yca{bottom:288.964000pt;}
.y76{bottom:289.281333pt;}
.y4a{bottom:291.201333pt;}
.y1a0{bottom:291.216000pt;}
.y113{bottom:291.222667pt;}
.y139{bottom:294.729333pt;}
.y15c{bottom:296.654667pt;}
.y225{bottom:297.598667pt;}
.y9a{bottom:298.880000pt;}
.y254{bottom:299.201333pt;}
.yf1{bottom:301.774667pt;}
.y1c2{bottom:303.376000pt;}
.y18{bottom:306.568000pt;}
.y75{bottom:309.121333pt;}
.y49{bottom:311.360000pt;}
.y19f{bottom:311.374667pt;}
.y112{bottom:311.381333pt;}
.yc9{bottom:312.964000pt;}
.y138{bottom:314.569333pt;}
.y17f{bottom:315.221333pt;}
.y15b{bottom:316.813333pt;}
.y224{bottom:317.758667pt;}
.y99{bottom:318.720000pt;}
.y253{bottom:319.360000pt;}
.yf0{bottom:321.933333pt;}
.y1e4{bottom:322.881333pt;}
.y17{bottom:326.726667pt;}
.y74{bottom:329.280000pt;}
.y48{bottom:331.200000pt;}
.y20a{bottom:331.202667pt;}
.y19e{bottom:331.214667pt;}
.yc8{bottom:332.804000pt;}
.y137{bottom:334.728000pt;}
.y17e{bottom:335.380000pt;}
.y15a{bottom:336.653333pt;}
.y223{bottom:337.598667pt;}
.y98{bottom:338.881333pt;}
.y252{bottom:339.201333pt;}
.y1c1{bottom:339.214667pt;}
.y1e3{bottom:342.721333pt;}
.y16{bottom:346.566667pt;}
.y111{bottom:347.220000pt;}
.y73{bottom:349.120000pt;}
.y47{bottom:351.358667pt;}
.y209{bottom:351.361333pt;}
.y19d{bottom:351.373333pt;}
.yc7{bottom:356.804000pt;}
.y159{bottom:356.812000pt;}
.y222{bottom:357.758667pt;}
.yef{bottom:357.772000pt;}
.y97{bottom:358.721333pt;}
.y251{bottom:359.360000pt;}
.y1c0{bottom:359.373333pt;}
.y1e2{bottom:362.890667pt;}
.y26d{bottom:366.720000pt;}
.y15{bottom:366.725333pt;}
.y110{bottom:367.378667pt;}
.y72{bottom:369.281333pt;}
.y208{bottom:371.201333pt;}
.y46{bottom:371.208000pt;}
.y19c{bottom:371.213333pt;}
.y17d{bottom:371.218667pt;}
.y136{bottom:373.768000pt;}
.yc6{bottom:376.962667pt;}
.y221{bottom:377.601333pt;}
.yee{bottom:377.930667pt;}
.y96{bottom:378.880000pt;}
.y250{bottom:379.200000pt;}
.y1bf{bottom:379.213333pt;}
.y1e1{bottom:382.730667pt;}
.y26c{bottom:386.560000pt;}
.y14{bottom:386.565333pt;}
.y10f{bottom:387.218667pt;}
.y71{bottom:389.121333pt;}
.y207{bottom:391.360000pt;}
.y45{bottom:391.366667pt;}
.y19b{bottom:391.372000pt;}
.y17c{bottom:391.377333pt;}
.y158{bottom:392.650667pt;}
.y220{bottom:397.760000pt;}
.y135{bottom:397.768000pt;}
.yed{bottom:397.770667pt;}
.y95{bottom:398.721333pt;}
.y24f{bottom:399.358667pt;}
.y1be{bottom:399.372000pt;}
.yc5{bottom:400.962667pt;}
.y1e0{bottom:402.889333pt;}
.y26b{bottom:406.720000pt;}
.y13{bottom:406.724000pt;}
.y10e{bottom:407.377333pt;}
.y70{bottom:409.280000pt;}
.yc4{bottom:410.882667pt;}
.y206{bottom:411.200000pt;}
.y19a{bottom:411.212000pt;}
.y17b{bottom:411.217333pt;}
.y157{bottom:412.809333pt;}
.y94{bottom:418.881333pt;}
.y24e{bottom:419.200000pt;}
.y134{bottom:421.768000pt;}
.y26a{bottom:426.560000pt;}
.y12{bottom:426.564000pt;}
.y44{bottom:427.205333pt;}
.y10d{bottom:427.217333pt;}
.y6f{bottom:429.120000pt;}
.y205{bottom:431.358667pt;}
.y1bd{bottom:435.210667pt;}
.yec{bottom:436.810667pt;}
.y93{bottom:438.721333pt;}
.y21f{bottom:439.040000pt;}
.y24d{bottom:439.358667pt;}
.y1df{bottom:443.848000pt;}
.yc0{bottom:444.801333pt;}
.yc3{bottom:444.802667pt;}
.y133{bottom:445.768000pt;}
.y269{bottom:446.720000pt;}
.y11{bottom:446.722667pt;}
.y43{bottom:447.364000pt;}
.y199{bottom:447.372000pt;}
.y10c{bottom:447.376000pt;}
.y17a{bottom:447.377333pt;}
.y6e{bottom:449.282667pt;}
.y204{bottom:451.208000pt;}
.y156{bottom:452.809333pt;}
.y1bc{bottom:455.369333pt;}
.ye8{bottom:456.968000pt;}
.yeb{bottom:456.969333pt;}
.y92{bottom:458.880000pt;}
.y24c{bottom:459.200000pt;}
.ybf{bottom:464.960000pt;}
.yc2{bottom:464.961333pt;}
.y10{bottom:466.562667pt;}
.y42{bottom:467.204000pt;}
.y198{bottom:467.212000pt;}
.y10b{bottom:467.216000pt;}
.y6d{bottom:469.122667pt;}
.y132{bottom:469.768000pt;}
.y203{bottom:471.366667pt;}
.y155{bottom:472.649333pt;}
.y1bb{bottom:475.209333pt;}
.ye7{bottom:476.808000pt;}
.yea{bottom:476.809333pt;}
.y91{bottom:478.722667pt;}
.y24b{bottom:479.358667pt;}
.y179{bottom:483.216000pt;}
.ybe{bottom:484.800000pt;}
.yc1{bottom:484.801333pt;}
.y21e{bottom:486.084000pt;}
.yf{bottom:486.721333pt;}
.y41{bottom:487.362667pt;}
.y10a{bottom:487.374667pt;}
.y202{bottom:491.206667pt;}
.y1de{bottom:491.208000pt;}
.y131{bottom:493.768000pt;}
.ye9{bottom:496.968000pt;}
.y24a{bottom:499.200000pt;}
.y178{bottom:503.374667pt;}
.y6c{bottom:505.282667pt;}
.y21d{bottom:506.242667pt;}
.ye{bottom:506.561333pt;}
.y40{bottom:507.202667pt;}
.y197{bottom:507.212000pt;}
.y109{bottom:507.214667pt;}
.ybd{bottom:508.800000pt;}
.y201{bottom:511.365333pt;}
.y1dd{bottom:511.366667pt;}
.y1ba{bottom:511.369333pt;}
.y154{bottom:512.649333pt;}
.y130{bottom:517.768000pt;}
.y268{bottom:518.400000pt;}
.y249{bottom:519.358667pt;}
.y90{bottom:520.002667pt;}
.ye6{bottom:520.966667pt;}
.y177{bottom:523.214667pt;}
.y6b{bottom:525.122667pt;}
.y21c{bottom:526.082667pt;}
.yd{bottom:526.720000pt;}
.y3f{bottom:527.361333pt;}
.y196{bottom:527.370667pt;}
.y108{bottom:527.373333pt;}
.ybc{bottom:528.958667pt;}
.y200{bottom:531.205333pt;}
.y1dc{bottom:531.206667pt;}
.y1b9{bottom:531.209333pt;}
.y153{bottom:532.808000pt;}
.y267{bottom:538.240000pt;}
.y248{bottom:539.200000pt;}
.ye5{bottom:540.806667pt;}
.y12f{bottom:541.768000pt;}
.y176{bottom:543.373333pt;}
.y6a{bottom:545.281333pt;}
.y21b{bottom:546.241333pt;}
.yc{bottom:546.560000pt;}
.y3e{bottom:547.201333pt;}
.y195{bottom:547.210667pt;}
.y107{bottom:547.213333pt;}
.y1ff{bottom:551.364000pt;}
.y1db{bottom:551.365333pt;}
.y152{bottom:552.648000pt;}
.ybb{bottom:552.958667pt;}
.y247{bottom:559.358667pt;}
.yba{bottom:562.878667pt;}
.y175{bottom:563.213333pt;}
.y69{bottom:565.121333pt;}
.y12e{bottom:565.768000pt;}
.yb{bottom:566.718667pt;}
.y3d{bottom:567.360000pt;}
.y8f{bottom:567.362667pt;}
.y1b8{bottom:567.369333pt;}
.y106{bottom:567.372000pt;}
.y1da{bottom:571.205333pt;}
.y246{bottom:579.201333pt;}
.ye4{bottom:584.965333pt;}
.y68{bottom:585.280000pt;}
.y3c{bottom:587.200000pt;}
.y8e{bottom:587.202667pt;}
.y1b7{bottom:587.209333pt;}
.y194{bottom:587.210667pt;}
.y105{bottom:587.212000pt;}
.y21a{bottom:587.521333pt;}
.y151{bottom:588.808000pt;}
.y12d{bottom:589.768000pt;}
.y1d9{bottom:591.364000pt;}
.yb9{bottom:596.798667pt;}
.y245{bottom:599.360000pt;}
.y174{bottom:599.373333pt;}
.y26e{bottom:600.960000pt;}
.ye3{bottom:604.805333pt;}
.y67{bottom:605.120000pt;}
.y3b{bottom:607.358667pt;}
.y8d{bottom:607.361333pt;}
.y104{bottom:607.370667pt;}
.y150{bottom:608.648000pt;}
.y1d8{bottom:611.204000pt;}
.y12c{bottom:612.808000pt;}
.y244{bottom:619.200000pt;}
.y173{bottom:619.213333pt;}
.yb8{bottom:619.849333pt;}
.y1b6{bottom:623.369333pt;}
.y193{bottom:623.370667pt;}
.y66{bottom:625.278667pt;}
.y3a{bottom:627.200000pt;}
.y8c{bottom:627.201333pt;}
.y219{bottom:634.881333pt;}
.y243{bottom:639.358667pt;}
.y172{bottom:639.372000pt;}
.y266{bottom:641.924000pt;}
.y103{bottom:643.209333pt;}
.y192{bottom:643.210667pt;}
.ya{bottom:643.838667pt;}
.y14f{bottom:644.808000pt;}
.y39{bottom:647.358667pt;}
.y8b{bottom:647.360000pt;}
.y1d7{bottom:647.364000pt;}
.ye2{bottom:648.964000pt;}
.y242{bottom:659.198667pt;}
.y171{bottom:659.212000pt;}
.y65{bottom:661.120000pt;}
.y102{bottom:663.368000pt;}
.y14e{bottom:664.648000pt;}
.y38{bottom:667.198667pt;}
.y8a{bottom:667.200000pt;}
.y1d6{bottom:667.204000pt;}
.ye1{bottom:668.804000pt;}
.y12b{bottom:668.808000pt;}
.y218{bottom:675.840000pt;}
.yb7{bottom:675.849333pt;}
.y241{bottom:679.360000pt;}
.y170{bottom:679.370667pt;}
.y64{bottom:681.278667pt;}
.y101{bottom:683.208000pt;}
.y1b5{bottom:683.209333pt;}
.y14d{bottom:684.806667pt;}
.y1fe{bottom:687.358667pt;}
.y89{bottom:687.361333pt;}
.y1d5{bottom:687.362667pt;}
.y12a{bottom:688.648000pt;}
.yb6{bottom:696.008000pt;}
.y240{bottom:699.200000pt;}
.y191{bottom:699.210667pt;}
.y63{bottom:701.121333pt;}
.y37{bottom:703.360000pt;}
.y100{bottom:703.366667pt;}
.y1b4{bottom:703.368000pt;}
.y1d4{bottom:707.202667pt;}
.y1fd{bottom:707.206667pt;}
.y129{bottom:708.806667pt;}
.ye0{bottom:712.962667pt;}
.y16f{bottom:715.209333pt;}
.yb5{bottom:715.848000pt;}
.y23f{bottom:719.358667pt;}
.y190{bottom:719.369333pt;}
.y14c{bottom:720.645333pt;}
.y62{bottom:721.280000pt;}
.y36{bottom:723.200000pt;}
.yff{bottom:723.206667pt;}
.y1d3{bottom:727.361333pt;}
.y1fc{bottom:727.365333pt;}
.y128{bottom:728.646667pt;}
.y265{bottom:730.242667pt;}
.y9{bottom:732.160000pt;}
.ydf{bottom:732.802667pt;}
.yb4{bottom:736.006667pt;}
.y23e{bottom:739.200000pt;}
.y1b3{bottom:739.206667pt;}
.y14b{bottom:740.804000pt;}
.y61{bottom:741.126667pt;}
.y35{bottom:743.358667pt;}
.y217{bottom:743.360000pt;}
.yfe{bottom:743.365333pt;}
.y1fb{bottom:747.205333pt;}
.y127{bottom:748.805333pt;}
.y16e{bottom:755.209333pt;}
.yb3{bottom:755.846667pt;}
.y23d{bottom:759.358667pt;}
.y1b2{bottom:759.365333pt;}
.y18f{bottom:759.369333pt;}
.y14a{bottom:760.644000pt;}
.y8{bottom:760.960000pt;}
.y60{bottom:761.285333pt;}
.y34{bottom:763.200000pt;}
.y88{bottom:763.202667pt;}
.yfd{bottom:763.205333pt;}
.y1d2{bottom:767.361333pt;}
.y126{bottom:768.645333pt;}
.y16d{bottom:775.368000pt;}
.yb2{bottom:776.005333pt;}
.yde{bottom:776.962667pt;}
.y23c{bottom:779.200000pt;}
.y264{bottom:779.201333pt;}
.y18e{bottom:779.209333pt;}
.y216{bottom:783.358667pt;}
.y87{bottom:783.361333pt;}
.y33{bottom:783.364000pt;}
.y1fa{bottom:783.365333pt;}
.y1d1{bottom:787.201333pt;}
.y125{bottom:788.804000pt;}
.y1b1{bottom:795.204000pt;}
.yb1{bottom:795.845333pt;}
.ydd{bottom:796.802667pt;}
.y149{bottom:796.804000pt;}
.y5f{bottom:797.124000pt;}
.y23b{bottom:799.358667pt;}
.y263{bottom:799.360000pt;}
.y18d{bottom:799.368000pt;}
.y215{bottom:803.200000pt;}
.y86{bottom:803.201333pt;}
.y32{bottom:803.204000pt;}
.y1f9{bottom:803.205333pt;}
.y1d0{bottom:807.360000pt;}
.y124{bottom:808.644000pt;}
.y16c{bottom:811.206667pt;}
.y1b0{bottom:815.362667pt;}
.yb0{bottom:816.004000pt;}
.y148{bottom:816.644000pt;}
.y5e{bottom:817.282667pt;}
.y23a{bottom:819.198667pt;}
.y262{bottom:819.200000pt;}
.ydc{bottom:819.842667pt;}
.y214{bottom:823.358667pt;}
.y85{bottom:823.360000pt;}
.y31{bottom:823.362667pt;}
.y1f8{bottom:823.364000pt;}
.y7{bottom:825.600000pt;}
.y18c{bottom:835.206667pt;}
.yaf{bottom:835.844000pt;}
.y147{bottom:836.802667pt;}
.y5d{bottom:837.122667pt;}
.y239{bottom:839.358667pt;}
.y213{bottom:843.198667pt;}
.y84{bottom:843.200000pt;}
.y30{bottom:843.202667pt;}
.y1f7{bottom:843.204000pt;}
.y6{bottom:845.440000pt;}
.y1cf{bottom:847.360000pt;}
.y16b{bottom:847.366667pt;}
.y123{bottom:848.002667pt;}
.y1af{bottom:855.362667pt;}
.y18b{bottom:855.365333pt;}
.yae{bottom:856.002667pt;}
.y146{bottom:856.642667pt;}
.y5c{bottom:857.281333pt;}
.y238{bottom:859.198667pt;}
.y261{bottom:860.480000pt;}
.y83{bottom:863.358667pt;}
.y2f{bottom:863.361333pt;}
.y1f6{bottom:863.362667pt;}
.y212{bottom:863.365333pt;}
.y5{bottom:865.600000pt;}
.y1ce{bottom:867.200000pt;}
.y16a{bottom:867.206667pt;}
.y1ae{bottom:875.202667pt;}
.yad{bottom:875.842667pt;}
.y145{bottom:876.801333pt;}
.y5b{bottom:877.121333pt;}
.y237{bottom:879.360000pt;}
.y82{bottom:883.198667pt;}
.y2e{bottom:883.201333pt;}
.y1f5{bottom:883.202667pt;}
.y211{bottom:883.205333pt;}
.y4{bottom:885.440000pt;}
.y169{bottom:887.365333pt;}
.y18a{bottom:891.204000pt;}
.y122{bottom:891.842667pt;}
.yac{bottom:896.001333pt;}
.y144{bottom:896.641333pt;}
.y5a{bottom:897.280000pt;}
.y236{bottom:899.200000pt;}
.y2d{bottom:903.360000pt;}
.y1f4{bottom:903.361333pt;}
.y210{bottom:903.364000pt;}
.y3{bottom:905.600000pt;}
.y1ad{bottom:911.362667pt;}
.yab{bottom:915.841333pt;}
.y59{bottom:917.120000pt;}
.y235{bottom:919.358667pt;}
.y81{bottom:919.360000pt;}
.yfc{bottom:919.361333pt;}
.y1cd{bottom:923.200000pt;}
.y1f3{bottom:923.201333pt;}
.y168{bottom:923.204000pt;}
.y189{bottom:927.364000pt;}
.yaa{bottom:936.002667pt;}
.ydb{bottom:936.642667pt;}
.y58{bottom:937.281333pt;}
.y143{bottom:937.921333pt;}
.y234{bottom:939.198667pt;}
.y2c{bottom:939.200000pt;}
.yfb{bottom:939.201333pt;}
.y121{bottom:939.202667pt;}
.y1f2{bottom:943.360000pt;}
.y167{bottom:943.362667pt;}
.y1ac{bottom:947.201333pt;}
.ya9{bottom:955.842667pt;}
.y57{bottom:957.121333pt;}
.y233{bottom:959.358667pt;}
.y2b{bottom:959.360000pt;}
.y120{bottom:959.361333pt;}
.y2{bottom:961.600000pt;}
.y1f1{bottom:963.200000pt;}
.yda{bottom:963.202667pt;}
.y1ab{bottom:967.360000pt;}
.ya8{bottom:976.001333pt;}
.y56{bottom:977.280000pt;}
.y232{bottom:979.198667pt;}
.y2a{bottom:979.200000pt;}
.y11f{bottom:979.201333pt;}
.yd9{bottom:983.361333pt;}
.y1aa{bottom:987.200000pt;}
.y55{bottom:997.122667pt;}
.y80{bottom:999.358667pt;}
.y29{bottom:999.360000pt;}
.y1{bottom:1001.600000pt;}
.yd8{bottom:1003.201333pt;}
.ya7{bottom:1011.840000pt;}
.y54{bottom:1017.281333pt;}
.y28{bottom:1019.200000pt;}
.yd7{bottom:1023.360000pt;}
.ya6{bottom:1032.638667pt;}
.y27{bottom:1039.358667pt;}
.y53{bottom:1056.640000pt;}
.y26{bottom:1059.198667pt;}
.y21{bottom:1107.518667pt;}
.h5{height:15.038667pt;}
.h7{height:15.358667pt;}
.h10{height:42.714437pt;}
.h6{height:52.762500pt;}
.hf{height:55.990469pt;}
.he{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h8{height:74.814625pt;}
.h4{height:96.750000pt;}
.h9{height:102.492500pt;}
.hc{height:103.767167pt;}
.hd{height:104.180000pt;}
.hb{height:142.172500pt;}
.ha{height:143.447167pt;}
.h0{height:1122.558667pt;}
.h1{height:1122.666667pt;}
.w4{width:115.518667pt;}
.w3{width:239.038667pt;}
.w2{width:381.758667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:56.000000pt;}
.x7{left:58.881333pt;}
.x9{left:66.233333pt;}
.xb{left:78.393333pt;}
.xa{left:87.352000pt;}
.x2{left:96.000000pt;}
.x15{left:98.878667pt;}
.x14{left:100.478667pt;}
.xd{left:103.040000pt;}
.x6{left:105.920000pt;}
.x13{left:114.240000pt;}
.x5{left:119.038667pt;}
.x10{left:120.638667pt;}
.x16{left:126.720000pt;}
.x12{left:133.120000pt;}
.xe{left:228.478667pt;}
.x17{left:256.320000pt;}
.x11{left:262.397333pt;}
.xc{left:263.672000pt;}
.xf{left:321.598667pt;}
.x8{left:369.281333pt;}
.x3{left:554.240000pt;}
.x4{left:677.758667pt;}
}




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