
    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_4025d58ff426f69cbd81f50c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7246d9b99e85c278fa51d938.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_37bb7143754ac35a129aa87b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_9cbc446248e312703eeea1b1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_50f55919e70060d58d4d7e04.woff')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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_691d128ce993d260b0dabaae.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_d92c22c2f803894f4cb98d66.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7b3b102a0a9668bb00988d67.woff')format("woff");}.ff8{font-family:ff8;line-height:0.925781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fa01437ec464633358d90ebe.woff')format("woff");}.ff9{font-family:ff9;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9f2a218150f5f383abc38d37.woff')format("woff");}.ffa{font-family:ffa;line-height:0.881836;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:ffb;src:url('chunks/assets/font_2ef63a3223055aed44700b93.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666992;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:ffc;src:url('chunks/assets/font_bd23db472a9f4b880fddd743.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_14646ddeb409d6cbec80ac9a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_02c7d63c1fb33fb72428de75.woff')format("woff");}.ffe{font-family:ffe;line-height:0.899414;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.816000px;}
.v1{vertical-align:23.160000px;}
.ls40{letter-spacing:-4.800000px;}
.ls30{letter-spacing:-1.800000px;}
.ls31{letter-spacing:-1.656000px;}
.ls2f{letter-spacing:-1.368000px;}
.ls1e{letter-spacing:-1.224000px;}
.ls11{letter-spacing:-1.152000px;}
.ls38{letter-spacing:-1.080000px;}
.ls2e{letter-spacing:-0.936000px;}
.ls27{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.660000px;}
.ls24{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.594000px;}
.ls12{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.504000px;}
.ls3e{letter-spacing:-0.480000px;}
.ls23{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.330000px;}
.ls5{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.264000px;}
.ls3d{letter-spacing:-0.240000px;}
.ls28{letter-spacing:-0.216000px;}
.ls35{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.132000px;}
.ls26{letter-spacing:-0.072000px;}
.ls2c{letter-spacing:-0.066000px;}
.ls3{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.132000px;}
.lsb{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.198000px;}
.ls2b{letter-spacing:0.216000px;}
.ls3a{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.330000px;}
.lsa{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.396000px;}
.lse{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.504000px;}
.ls33{letter-spacing:0.576000px;}
.ls20{letter-spacing:0.648000px;}
.ls22{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.936000px;}
.ls36{letter-spacing:1.008000px;}
.ls1f{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.850000px;}
.ls39{letter-spacing:2.928000px;}
.ls3b{letter-spacing:2.956800px;}
.ls3f{letter-spacing:3.379200px;}
.ls41{letter-spacing:3.408000px;}
.ls7{letter-spacing:3.648000px;}
.ls8{letter-spacing:3.660000px;}
.ls9{letter-spacing:4.560000px;}
.ls3c{letter-spacing:4.752000px;}
.ls6{letter-spacing:4.800000px;}
.ls37{letter-spacing:6.696000px;}
.ls42{letter-spacing:8.100000px;}
.ls4{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.ls25{letter-spacing:16.776000px;}
.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;}
}
.ws77{word-spacing:-72.000000px;}
.ws2{word-spacing:-25.320000px;}
.wsac{word-spacing:-20.232000px;}
.ws79{word-spacing:-19.944000px;}
.ws1{word-spacing:-18.867000px;}
.wsc0{word-spacing:-18.648000px;}
.ws8b{word-spacing:-18.576000px;}
.ws65{word-spacing:-17.784000px;}
.ws94{word-spacing:-17.712000px;}
.wsa6{word-spacing:-17.352000px;}
.ws80{word-spacing:-17.136000px;}
.wsb{word-spacing:-16.860000px;}
.wsb8{word-spacing:-16.704000px;}
.ws6f{word-spacing:-16.302000px;}
.ws78{word-spacing:-16.128000px;}
.ws8a{word-spacing:-16.038000px;}
.wse{word-spacing:-15.180000px;}
.ws81{word-spacing:-15.174000px;}
.wscd{word-spacing:-14.820000px;}
.wsc{word-spacing:-14.162400px;}
.wsd{word-spacing:-13.488000px;}
.wscc{word-spacing:-12.336000px;}
.wsc3{word-spacing:-11.856000px;}
.wsca{word-spacing:-9.441600px;}
.ws26{word-spacing:-8.460000px;}
.wsce{word-spacing:-8.100000px;}
.ws9{word-spacing:-4.800000px;}
.wsc4{word-spacing:-4.752000px;}
.ws46{word-spacing:-2.088000px;}
.ws1c{word-spacing:-2.016000px;}
.ws45{word-spacing:-1.944000px;}
.ws47{word-spacing:-1.800000px;}
.ws1f{word-spacing:-1.656000px;}
.ws15{word-spacing:-1.512000px;}
.ws40{word-spacing:-1.440000px;}
.ws7a{word-spacing:-1.296000px;}
.ws18{word-spacing:-1.152000px;}
.ws53{word-spacing:-1.080000px;}
.wsa7{word-spacing:-1.008000px;}
.ws11{word-spacing:-0.936000px;}
.ws7e{word-spacing:-0.864000px;}
.ws54{word-spacing:-0.792000px;}
.wsbe{word-spacing:-0.720000px;}
.ws92{word-spacing:-0.648000px;}
.ws91{word-spacing:-0.576000px;}
.ws5b{word-spacing:-0.504000px;}
.ws16{word-spacing:-0.360000px;}
.ws3c{word-spacing:-0.288000px;}
.wsc9{word-spacing:-0.240000px;}
.ws20{word-spacing:-0.216000px;}
.ws38{word-spacing:-0.144000px;}
.wsb9{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws51{word-spacing:0.072000px;}
.ws44{word-spacing:0.144000px;}
.ws97{word-spacing:0.216000px;}
.wsc5{word-spacing:0.240000px;}
.ws7f{word-spacing:0.288000px;}
.ws2c{word-spacing:0.330000px;}
.ws1b{word-spacing:0.360000px;}
.ws4b{word-spacing:0.432000px;}
.ws2e{word-spacing:0.462000px;}
.wsc6{word-spacing:0.480000px;}
.ws1a{word-spacing:0.504000px;}
.ws21{word-spacing:0.576000px;}
.ws5c{word-spacing:0.648000px;}
.ws2b{word-spacing:0.660000px;}
.ws57{word-spacing:0.720000px;}
.ws31{word-spacing:0.726000px;}
.ws17{word-spacing:0.792000px;}
.ws56{word-spacing:0.864000px;}
.ws8d{word-spacing:0.936000px;}
.ws60{word-spacing:1.008000px;}
.wsb4{word-spacing:1.080000px;}
.ws41{word-spacing:1.152000px;}
.ws6b{word-spacing:1.188000px;}
.wsba{word-spacing:1.224000px;}
.ws99{word-spacing:1.296000px;}
.wsaa{word-spacing:1.368000px;}
.ws6d{word-spacing:1.386000px;}
.wsab{word-spacing:1.440000px;}
.ws67{word-spacing:1.512000px;}
.ws98{word-spacing:1.584000px;}
.ws7b{word-spacing:1.656000px;}
.ws3f{word-spacing:1.728000px;}
.ws5{word-spacing:1.800000px;}
.wsb6{word-spacing:2.016000px;}
.ws4c{word-spacing:2.160000px;}
.ws58{word-spacing:2.232000px;}
.ws49{word-spacing:2.304000px;}
.wsa8{word-spacing:2.376000px;}
.ws42{word-spacing:2.400000px;}
.ws8c{word-spacing:2.448000px;}
.ws74{word-spacing:2.508000px;}
.ws76{word-spacing:2.520000px;}
.wsf{word-spacing:2.544000px;}
.wsbf{word-spacing:2.592000px;}
.ws59{word-spacing:2.736000px;}
.ws64{word-spacing:2.808000px;}
.ws88{word-spacing:2.880000px;}
.ws75{word-spacing:2.904000px;}
.ws43{word-spacing:2.952000px;}
.wsc7{word-spacing:2.976000px;}
.ws1e{word-spacing:3.024000px;}
.wsc1{word-spacing:3.096000px;}
.ws35{word-spacing:3.168000px;}
.ws2f{word-spacing:3.234000px;}
.ws68{word-spacing:3.240000px;}
.ws29{word-spacing:3.300000px;}
.wsc8{word-spacing:3.360000px;}
.ws87{word-spacing:3.384000px;}
.ws1d{word-spacing:3.456000px;}
.wsb3{word-spacing:3.528000px;}
.ws62{word-spacing:3.600000px;}
.ws6a{word-spacing:3.672000px;}
.ws8{word-spacing:3.720000px;}
.wsa1{word-spacing:3.744000px;}
.ws82{word-spacing:3.816000px;}
.wsbb{word-spacing:3.888000px;}
.wsb7{word-spacing:3.960000px;}
.ws2a{word-spacing:4.026000px;}
.ws7c{word-spacing:4.032000px;}
.ws28{word-spacing:4.092000px;}
.wsae{word-spacing:4.104000px;}
.ws52{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws4a{word-spacing:4.248000px;}
.ws66{word-spacing:4.320000px;}
.ws9d{word-spacing:4.392000px;}
.ws6{word-spacing:4.464000px;}
.ws34{word-spacing:4.536000px;}
.ws6e{word-spacing:4.620000px;}
.ws4f{word-spacing:4.680000px;}
.ws70{word-spacing:4.686000px;}
.ws2d{word-spacing:4.752000px;}
.ws3d{word-spacing:4.824000px;}
.ws55{word-spacing:4.896000px;}
.ws9c{word-spacing:4.968000px;}
.ws14{word-spacing:5.040000px;}
.ws37{word-spacing:5.112000px;}
.wsa0{word-spacing:5.184000px;}
.ws5f{word-spacing:5.256000px;}
.ws7d{word-spacing:5.328000px;}
.ws5d{word-spacing:5.400000px;}
.ws19{word-spacing:5.472000px;}
.ws4d{word-spacing:5.544000px;}
.ws8f{word-spacing:5.616000px;}
.wsb2{word-spacing:5.760000px;}
.ws86{word-spacing:5.832000px;}
.ws5e{word-spacing:5.904000px;}
.ws9a{word-spacing:5.976000px;}
.ws73{word-spacing:6.006000px;}
.wsa5{word-spacing:6.048000px;}
.wsad{word-spacing:6.120000px;}
.ws50{word-spacing:6.264000px;}
.ws96{word-spacing:6.336000px;}
.ws9b{word-spacing:6.408000px;}
.ws9f{word-spacing:6.480000px;}
.ws71{word-spacing:6.600000px;}
.ws85{word-spacing:6.624000px;}
.ws84{word-spacing:6.696000px;}
.ws72{word-spacing:6.732000px;}
.wsb0{word-spacing:6.768000px;}
.wsa3{word-spacing:6.840000px;}
.ws3a{word-spacing:6.912000px;}
.ws61{word-spacing:6.984000px;}
.ws93{word-spacing:7.056000px;}
.wsbd{word-spacing:7.128000px;}
.wsb5{word-spacing:7.200000px;}
.wsa4{word-spacing:7.272000px;}
.wsa2{word-spacing:7.344000px;}
.wsa9{word-spacing:7.560000px;}
.ws63{word-spacing:7.632000px;}
.ws24{word-spacing:7.704000px;}
.ws90{word-spacing:7.776000px;}
.ws3e{word-spacing:7.848000px;}
.ws8e{word-spacing:7.920000px;}
.ws5a{word-spacing:8.064000px;}
.wsc2{word-spacing:8.136000px;}
.wscb{word-spacing:8.160000px;}
.wsb1{word-spacing:8.280000px;}
.ws0{word-spacing:8.376000px;}
.ws4{word-spacing:8.400000px;}
.ws95{word-spacing:8.424000px;}
.wsa{word-spacing:8.460000px;}
.wsaf{word-spacing:8.496000px;}
.ws39{word-spacing:8.568000px;}
.ws6c{word-spacing:8.580000px;}
.ws10{word-spacing:8.640000px;}
.ws23{word-spacing:8.784000px;}
.ws9e{word-spacing:8.856000px;}
.ws22{word-spacing:8.928000px;}
.ws33{word-spacing:9.000000px;}
.ws13{word-spacing:9.072000px;}
.ws30{word-spacing:9.108000px;}
.ws3b{word-spacing:9.144000px;}
.ws83{word-spacing:9.216000px;}
.ws27{word-spacing:9.240000px;}
.ws69{word-spacing:9.288000px;}
.ws32{word-spacing:9.306000px;}
.ws4e{word-spacing:9.360000px;}
.ws36{word-spacing:9.504000px;}
.ws89{word-spacing:9.648000px;}
.wsbc{word-spacing:10.008000px;}
.ws12{word-spacing:10.080000px;}
.ws25{word-spacing:10.152000px;}
.ws48{word-spacing:10.512000px;}
._0{margin-left:-940.386000px;}
._14{margin-left:-18.360000px;}
._15{margin-left:-15.278400px;}
._16{margin-left:-13.772400px;}
._19{margin-left:-12.450000px;}
._6{margin-left:-11.406000px;}
._13{margin-left:-8.486400px;}
._8{margin-left:-7.300800px;}
._1{margin-left:-5.964000px;}
._7{margin-left:-4.132800px;}
._9{margin-left:-2.490000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._4{width:3.756000px;}
._5{width:4.908000px;}
._d{width:6.272400px;}
._e{width:7.615200px;}
._f{width:9.181200px;}
._10{width:10.944000px;}
._12{width:12.630000px;}
._17{width:15.268800px;}
._11{width:31.646100px;}
._18{width:35.311200px;}
._c{width:40.320000px;}
._b{width:63.408000px;}
._a{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y1f8{bottom:117.349200px;}
.y6b{bottom:117.540000px;}
.y2bd{bottom:117.908250px;}
.y1a3{bottom:118.860000px;}
.y227{bottom:119.304000px;}
.y190{bottom:119.364000px;}
.y1d8{bottom:119.472000px;}
.ya6{bottom:119.556000px;}
.y12c{bottom:119.604300px;}
.y1c8{bottom:119.658000px;}
.y171{bottom:119.706000px;}
.y25c{bottom:119.904000px;}
.y1ee{bottom:120.843300px;}
.y100{bottom:121.009350px;}
.y214{bottom:121.084650px;}
.y46{bottom:121.207500px;}
.y80{bottom:121.235550px;}
.y11a{bottom:121.518600px;}
.y22{bottom:121.569750px;}
.y152{bottom:122.229150px;}
.y25b{bottom:134.904000px;}
.y291{bottom:135.162000px;}
.y2bc{bottom:136.658250px;}
.y1f7{bottom:139.093200px;}
.y6a{bottom:139.140000px;}
.y21{bottom:139.719750px;}
.y1a2{bottom:140.766000px;}
.y1d7{bottom:141.216000px;}
.y18f{bottom:141.270000px;}
.y170{bottom:141.450000px;}
.y1c7{bottom:141.564000px;}
.y226{bottom:141.660000px;}
.y12b{bottom:142.104300px;}
.ya5{bottom:142.506000px;}
.y1ed{bottom:142.893300px;}
.yff{bottom:143.515350px;}
.y213{bottom:143.584650px;}
.y45{bottom:143.707500px;}
.y7f{bottom:143.735550px;}
.y119{bottom:144.324600px;}
.y151{bottom:144.423150px;}
.y25a{bottom:149.904000px;}
.y290{bottom:150.618000px;}
.y2bb{bottom:155.408250px;}
.y20{bottom:157.869750px;}
.yf3{bottom:160.758000px;}
.y1f6{bottom:160.837200px;}
.y69{bottom:161.046000px;}
.y1a1{bottom:162.672000px;}
.y1d6{bottom:162.960000px;}
.y18e{bottom:163.176000px;}
.y16f{bottom:163.194000px;}
.y1c6{bottom:163.470000px;}
.y225{bottom:164.016000px;}
.y12a{bottom:164.604300px;}
.y259{bottom:164.904000px;}
.y1ec{bottom:164.943300px;}
.ya4{bottom:165.456000px;}
.y212{bottom:165.778650px;}
.yfe{bottom:166.021350px;}
.y28f{bottom:166.074000px;}
.ye8{bottom:166.207500px;}
.y7e{bottom:166.235550px;}
.y150{bottom:166.617150px;}
.y118{bottom:167.130600px;}
.y2ba{bottom:174.158250px;}
.y1f{bottom:176.019750px;}
.y258{bottom:179.904000px;}
.y28e{bottom:181.530000px;}
.y1f5{bottom:182.581200px;}
.yf2{bottom:182.808000px;}
.y68{bottom:182.952000px;}
.y1a0{bottom:184.578000px;}
.y1d5{bottom:184.704000px;}
.y16e{bottom:184.938000px;}
.y18d{bottom:185.082000px;}
.y1c5{bottom:185.376000px;}
.y224{bottom:186.372000px;}
.y1eb{bottom:186.993300px;}
.y129{bottom:187.104300px;}
.y44{bottom:187.252050px;}
.yc7{bottom:187.800000px;}
.ya3{bottom:187.812000px;}
.y211{bottom:187.972650px;}
.y7d{bottom:188.429550px;}
.yfd{bottom:188.527350px;}
.y14f{bottom:188.811150px;}
.y117{bottom:189.936600px;}
.y2b9{bottom:192.908250px;}
.y1e{bottom:194.169750px;}
.y257{bottom:194.904000px;}
.y28d{bottom:196.986000px;}
.y1f4{bottom:204.325200px;}
.y67{bottom:204.858000px;}
.y1d4{bottom:206.448000px;}
.y19f{bottom:206.484000px;}
.y16d{bottom:206.682000px;}
.y1c4{bottom:207.282000px;}
.y223{bottom:208.728000px;}
.y1ea{bottom:209.043300px;}
.y128{bottom:209.604300px;}
.y256{bottom:209.904000px;}
.yc6{bottom:209.994000px;}
.y43{bottom:210.046050px;}
.y210{bottom:210.166650px;}
.ya2{bottom:210.168000px;}
.y7c{bottom:210.623550px;}
.y14e{bottom:211.005150px;}
.yfc{bottom:211.033350px;}
.y2b8{bottom:211.658250px;}
.ye7{bottom:212.122050px;}
.y1d{bottom:212.319750px;}
.y28c{bottom:212.442000px;}
.y116{bottom:212.742600px;}
.y255{bottom:224.904000px;}
.y1f3{bottom:226.069200px;}
.y66{bottom:226.764000px;}
.yf1{bottom:226.908000px;}
.y28b{bottom:227.898000px;}
.y1d3{bottom:228.192000px;}
.y19e{bottom:228.390000px;}
.y16c{bottom:228.426000px;}
.y18c{bottom:228.876000px;}
.y1c3{bottom:229.188000px;}
.y2b7{bottom:230.408250px;}
.y1c{bottom:230.469750px;}
.y222{bottom:231.084000px;}
.y1e9{bottom:231.093300px;}
.yc5{bottom:231.594000px;}
.y127{bottom:232.104300px;}
.y20f{bottom:232.360650px;}
.ya1{bottom:232.524000px;}
.y42{bottom:232.690050px;}
.y7b{bottom:232.817550px;}
.y14d{bottom:233.199150px;}
.yfb{bottom:233.539350px;}
.ye6{bottom:234.478050px;}
.y115{bottom:235.542600px;}
.y135{bottom:239.232300px;}
.y254{bottom:239.904000px;}
.y28a{bottom:243.354000px;}
.y1f2{bottom:247.813200px;}
.y1b{bottom:248.619750px;}
.y65{bottom:248.670000px;}
.yf0{bottom:248.958000px;}
.y2b6{bottom:249.158250px;}
.y1d2{bottom:249.936000px;}
.y16b{bottom:250.170000px;}
.y19d{bottom:250.296000px;}
.y18b{bottom:250.620000px;}
.y1c2{bottom:251.094000px;}
.y1e8{bottom:253.143300px;}
.y221{bottom:253.440000px;}
.yc4{bottom:253.500000px;}
.y20e{bottom:254.554650px;}
.y126{bottom:254.604300px;}
.ya0{bottom:254.880000px;}
.y253{bottom:254.904000px;}
.y7a{bottom:255.011550px;}
.y41{bottom:255.334050px;}
.y14c{bottom:255.393150px;}
.ye5{bottom:256.834050px;}
.y289{bottom:258.810000px;}
.y2b5{bottom:267.758250px;}
.y1f1{bottom:269.557200px;}
.y252{bottom:269.904000px;}
.y64{bottom:270.576000px;}
.y1d1{bottom:271.680000px;}
.y16a{bottom:271.914000px;}
.y19c{bottom:272.040000px;}
.y18a{bottom:272.364000px;}
.y1c1{bottom:273.000000px;}
.y288{bottom:274.266000px;}
.y1e7{bottom:275.193300px;}
.y1a{bottom:275.274750px;}
.y220{bottom:275.796000px;}
.yc3{bottom:276.000000px;}
.y20d{bottom:276.748650px;}
.y125{bottom:277.104300px;}
.y79{bottom:277.205550px;}
.y9f{bottom:277.236000px;}
.y14b{bottom:277.587150px;}
.y40{bottom:277.978050px;}
.ye4{bottom:279.190050px;}
.yef{bottom:279.504000px;}
.y134{bottom:284.232300px;}
.y251{bottom:284.904000px;}
.y2b4{bottom:286.358250px;}
.y287{bottom:289.722000px;}
.y1f0{bottom:291.301200px;}
.y63{bottom:292.482000px;}
.y1d0{bottom:293.424000px;}
.y169{bottom:293.658000px;}
.y19b{bottom:293.784000px;}
.y189{bottom:294.108000px;}
.y1c0{bottom:294.906000px;}
.y1e6{bottom:297.243300px;}
.y21f{bottom:298.152000px;}
.yc2{bottom:298.500000px;}
.y20c{bottom:298.942650px;}
.y78{bottom:299.399550px;}
.y9e{bottom:299.592000px;}
.y124{bottom:299.604300px;}
.y14a{bottom:299.781150px;}
.y250{bottom:299.904000px;}
.y3f{bottom:300.622050px;}
.ye3{bottom:301.546050px;}
.yee{bottom:301.554000px;}
.y2b3{bottom:304.958250px;}
.y286{bottom:305.178000px;}
.y133{bottom:306.732300px;}
.y62{bottom:314.388000px;}
.y24f{bottom:314.904000px;}
.y1cf{bottom:315.168000px;}
.y168{bottom:315.402000px;}
.y19a{bottom:315.528000px;}
.y188{bottom:315.852000px;}
.y1bf{bottom:316.812000px;}
.y19{bottom:319.074750px;}
.y1e5{bottom:319.293300px;}
.y21e{bottom:320.508000px;}
.y285{bottom:320.634000px;}
.yc1{bottom:321.000000px;}
.y20b{bottom:321.136650px;}
.y77{bottom:321.593550px;}
.y9d{bottom:321.948000px;}
.y149{bottom:321.975150px;}
.y123{bottom:322.104300px;}
.y3e{bottom:323.266050px;}
.y2b2{bottom:323.558250px;}
.ye2{bottom:323.596050px;}
.yed{bottom:323.604000px;}
.y132{bottom:329.232300px;}
.y24e{bottom:329.904000px;}
.y2d7{bottom:334.500000px;}
.y284{bottom:336.090000px;}
.y61{bottom:336.294000px;}
.y1ce{bottom:336.912000px;}
.y167{bottom:337.146000px;}
.y18{bottom:337.224750px;}
.y199{bottom:337.272000px;}
.y187{bottom:337.596000px;}
.y1be{bottom:338.718000px;}
.y1e4{bottom:341.343300px;}
.y2b1{bottom:342.158250px;}
.y21d{bottom:342.864000px;}
.y20a{bottom:343.330650px;}
.yc0{bottom:343.500000px;}
.y76{bottom:343.787550px;}
.y148{bottom:344.169150px;}
.y9c{bottom:344.304000px;}
.y122{bottom:344.604300px;}
.y24d{bottom:345.048000px;}
.ye1{bottom:345.646050px;}
.yec{bottom:345.654000px;}
.y3d{bottom:345.910050px;}
.y114{bottom:346.589700px;}
.y283{bottom:351.546000px;}
.y131{bottom:351.732300px;}
.y2d6{bottom:353.250000px;}
.y60{bottom:358.200000px;}
.y1cd{bottom:358.656000px;}
.y166{bottom:358.890000px;}
.y198{bottom:359.016000px;}
.y186{bottom:359.340000px;}
.y24c{bottom:360.192000px;}
.y1bd{bottom:360.624000px;}
.y2b0{bottom:360.758250px;}
.y1e3{bottom:363.393300px;}
.y17{bottom:363.877650px;}
.y21c{bottom:365.220000px;}
.y209{bottom:365.524650px;}
.y75{bottom:365.981550px;}
.ybf{bottom:366.000000px;}
.y147{bottom:366.363150px;}
.y9b{bottom:366.660000px;}
.y282{bottom:367.002000px;}
.y121{bottom:367.104300px;}
.ye0{bottom:367.696050px;}
.yeb{bottom:367.704000px;}
.y3c{bottom:368.554050px;}
.y2d5{bottom:372.000000px;}
.y24b{bottom:375.348000px;}
.y5f{bottom:380.176500px;}
.y1cc{bottom:380.400000px;}
.y165{bottom:380.634000px;}
.y197{bottom:380.760000px;}
.y185{bottom:381.084000px;}
.y16{bottom:382.027650px;}
.y281{bottom:382.458000px;}
.y1bc{bottom:382.530000px;}
.y1e2{bottom:385.443300px;}
.y21b{bottom:387.576000px;}
.y208{bottom:387.718650px;}
.y74{bottom:388.175550px;}
.ybe{bottom:388.500000px;}
.y146{bottom:388.557150px;}
.y9a{bottom:389.016000px;}
.y120{bottom:389.604300px;}
.yea{bottom:389.754000px;}
.y24a{bottom:390.492000px;}
.y2d4{bottom:390.750000px;}
.y3b{bottom:391.198050px;}
.y2af{bottom:392.114250px;}
.y113{bottom:392.150700px;}
.y280{bottom:397.914000px;}
.y15{bottom:400.177650px;}
.y5e{bottom:402.072000px;}
.y1cb{bottom:402.150000px;}
.y164{bottom:402.378000px;}
.y196{bottom:402.504000px;}
.y184{bottom:402.828000px;}
.y1bb{bottom:404.436000px;}
.y249{bottom:405.636000px;}
.y1e1{bottom:407.493300px;}
.y2d3{bottom:409.500000px;}
.y207{bottom:409.912650px;}
.y21a{bottom:409.932000px;}
.y73{bottom:410.369550px;}
.y145{bottom:410.751150px;}
.ybd{bottom:411.000000px;}
.y99{bottom:411.372000px;}
.ydf{bottom:411.804000px;}
.y11f{bottom:412.104300px;}
.y27f{bottom:413.370000px;}
.y3a{bottom:413.842050px;}
.y112{bottom:414.953700px;}
.y14{bottom:418.327650px;}
.y248{bottom:420.780000px;}
.y2ae{bottom:422.726100px;}
.y5d{bottom:423.967500px;}
.y163{bottom:424.122000px;}
.y195{bottom:424.248000px;}
.y183{bottom:424.572000px;}
.y1ba{bottom:426.342000px;}
.y27e{bottom:428.826000px;}
.y1e0{bottom:429.543300px;}
.y206{bottom:432.106650px;}
.y219{bottom:432.288000px;}
.y72{bottom:432.563550px;}
.y144{bottom:432.945150px;}
.ybc{bottom:433.500000px;}
.y98{bottom:433.728000px;}
.yde{bottom:433.854000px;}
.y11e{bottom:434.604300px;}
.y247{bottom:435.924000px;}
.y13{bottom:436.477650px;}
.y39{bottom:436.486050px;}
.y111{bottom:437.756700px;}
.y130{bottom:438.614250px;}
.y2ad{bottom:440.570100px;}
.y27d{bottom:444.282000px;}
.y1ca{bottom:445.668000px;}
.y5c{bottom:445.863000px;}
.y162{bottom:445.866000px;}
.y194{bottom:445.992000px;}
.y182{bottom:446.316000px;}
.y2d2{bottom:447.000000px;}
.y1b9{bottom:448.248000px;}
.y246{bottom:451.080000px;}
.y1df{bottom:451.593300px;}
.y205{bottom:454.300650px;}
.y12{bottom:454.627650px;}
.y218{bottom:454.644000px;}
.y71{bottom:454.757550px;}
.y143{bottom:455.139150px;}
.ydd{bottom:455.904000px;}
.ybb{bottom:456.000000px;}
.y97{bottom:456.084000px;}
.y11d{bottom:457.104300px;}
.y38{bottom:459.130050px;}
.y27c{bottom:459.738000px;}
.y110{bottom:460.559700px;}
.y2d1{bottom:465.750000px;}
.y245{bottom:466.224000px;}
.y1c9{bottom:467.574000px;}
.y161{bottom:467.610000px;}
.y193{bottom:467.736000px;}
.y5b{bottom:467.758500px;}
.y181{bottom:468.060000px;}
.y1b8{bottom:470.154000px;}
.y11{bottom:472.777650px;}
.y1de{bottom:473.643300px;}
.y27b{bottom:475.194000px;}
.y204{bottom:476.494650px;}
.y70{bottom:476.957550px;}
.y217{bottom:477.000000px;}
.y142{bottom:477.333150px;}
.ydc{bottom:477.954000px;}
.y96{bottom:478.440000px;}
.y11c{bottom:479.604300px;}
.y244{bottom:481.368000px;}
.y37{bottom:481.774050px;}
.y10f{bottom:483.362700px;}
.y12f{bottom:483.614250px;}
.y2d0{bottom:484.500000px;}
.y192{bottom:489.480000px;}
.y2ac{bottom:489.522000px;}
.y5a{bottom:489.654000px;}
.y180{bottom:489.804000px;}
.y27a{bottom:490.650000px;}
.y10{bottom:490.927650px;}
.y1b7{bottom:492.060000px;}
.y1dd{bottom:495.693300px;}
.y243{bottom:496.512000px;}
.y203{bottom:498.688650px;}
.y216{bottom:499.500000px;}
.y141{bottom:499.527150px;}
.ydb{bottom:500.004000px;}
.y95{bottom:500.796000px;}
.yba{bottom:500.946000px;}
.y11b{bottom:502.104300px;}
.y2cf{bottom:503.250000px;}
.y36{bottom:504.418050px;}
.y279{bottom:505.950000px;}
.y12e{bottom:506.114250px;}
.y10e{bottom:506.165700px;}
.y2ab{bottom:508.122000px;}
.yf{bottom:509.077650px;}
.y191{bottom:511.386000px;}
.y160{bottom:511.404000px;}
.y17f{bottom:511.548000px;}
.y59{bottom:511.549500px;}
.y242{bottom:511.656000px;}
.y1b6{bottom:513.966000px;}
.y1dc{bottom:517.743300px;}
.y202{bottom:520.882650px;}
.y278{bottom:521.250000px;}
.y6f{bottom:521.375550px;}
.y140{bottom:521.721150px;}
.yfa{bottom:522.000000px;}
.yda{bottom:522.054000px;}
.y94{bottom:523.152000px;}
.yb9{bottom:523.446000px;}
.y2aa{bottom:526.722000px;}
.y241{bottom:526.812000px;}
.y35{bottom:527.062050px;}
.ye{bottom:527.227650px;}
.y12d{bottom:528.614250px;}
.y10d{bottom:528.968700px;}
.y17e{bottom:533.292000px;}
.y15f{bottom:533.310000px;}
.y58{bottom:533.445000px;}
.y1b5{bottom:535.872000px;}
.y277{bottom:536.550000px;}
.y1db{bottom:539.793300px;}
.y240{bottom:541.956000px;}
.y201{bottom:543.082650px;}
.y6e{bottom:543.569550px;}
.yd9{bottom:544.104000px;}
.y215{bottom:544.500000px;}
.y2a9{bottom:545.322000px;}
.yd{bottom:545.377650px;}
.y93{bottom:545.508000px;}
.yb8{bottom:545.946000px;}
.y34{bottom:549.706050px;}
.y10c{bottom:551.771700px;}
.y276{bottom:551.850000px;}
.y2ce{bottom:552.000000px;}
.y17d{bottom:555.198000px;}
.y15e{bottom:555.216000px;}
.y57{bottom:555.340500px;}
.y23f{bottom:557.100000px;}
.y1b4{bottom:557.778000px;}
.y13f{bottom:558.621150px;}
.y1da{bottom:561.843300px;}
.y2a8{bottom:563.922000px;}
.y6d{bottom:565.763550px;}
.yd8{bottom:566.154000px;}
.yf9{bottom:567.000000px;}
.y275{bottom:567.150000px;}
.y92{bottom:567.864000px;}
.yb7{bottom:568.446000px;}
.yc{bottom:572.032650px;}
.y23e{bottom:572.244000px;}
.y33{bottom:572.350050px;}
.y10b{bottom:574.574700px;}
.y17c{bottom:577.104000px;}
.y15d{bottom:577.122000px;}
.y56{bottom:577.236000px;}
.y1b3{bottom:579.684000px;}
.y274{bottom:582.450000px;}
.y2a7{bottom:582.522000px;}
.y1d9{bottom:583.893300px;}
.y23d{bottom:587.388000px;}
.y6c{bottom:587.957550px;}
.yd7{bottom:588.204000px;}
.yf8{bottom:589.500000px;}
.y91{bottom:590.220000px;}
.yb6{bottom:590.946000px;}
.y2cd{bottom:593.250000px;}
.y32{bottom:594.994050px;}
.y10a{bottom:597.377700px;}
.y273{bottom:597.750000px;}
.y17b{bottom:599.010000px;}
.y15c{bottom:599.028000px;}
.y55{bottom:599.131500px;}
.y23c{bottom:602.532000px;}
.y2a6{bottom:607.608000px;}
.y13e{bottom:610.251300px;}
.yd6{bottom:610.254000px;}
.yf7{bottom:612.000000px;}
.y90{bottom:612.576000px;}
.y272{bottom:613.050000px;}
.yb5{bottom:613.446000px;}
.yb{bottom:617.312550px;}
.y31{bottom:617.638050px;}
.y23b{bottom:617.688000px;}
.y109{bottom:620.180700px;}
.y17a{bottom:620.916000px;}
.y15b{bottom:620.934000px;}
.y54{bottom:621.027000px;}
.y1b2{bottom:623.334000px;}
.y271{bottom:628.350000px;}
.y2cc{bottom:630.750000px;}
.yd5{bottom:632.304000px;}
.y13d{bottom:632.445300px;}
.y23a{bottom:632.832000px;}
.yf6{bottom:634.500000px;}
.y8f{bottom:634.932000px;}
.yb4{bottom:635.946000px;}
.y1ff{bottom:637.185900px;}
.ya{bottom:639.218550px;}
.y30{bottom:640.282050px;}
.y179{bottom:642.822000px;}
.y15a{bottom:642.840000px;}
.y53{bottom:642.922500px;}
.y108{bottom:642.983700px;}
.y270{bottom:643.650000px;}
.y1ef{bottom:645.000000px;}
.y1b1{bottom:645.078000px;}
.y239{bottom:647.976000px;}
.y2cb{bottom:649.500000px;}
.y2a5{bottom:652.308000px;}
.yd4{bottom:654.354000px;}
.y13c{bottom:654.639300px;}
.yf5{bottom:657.000000px;}
.y8e{bottom:657.288000px;}
.yb3{bottom:658.446000px;}
.y26f{bottom:658.950000px;}
.y9{bottom:661.118550px;}
.ye9{bottom:662.850000px;}
.y2f{bottom:662.926050px;}
.y238{bottom:663.120000px;}
.y178{bottom:664.728000px;}
.y159{bottom:664.746000px;}
.y52{bottom:664.818000px;}
.y107{bottom:665.786700px;}
.y1b0{bottom:666.822000px;}
.y2a4{bottom:667.152000px;}
.y2ca{bottom:668.250000px;}
.y26e{bottom:674.250000px;}
.y13b{bottom:676.833300px;}
.y237{bottom:678.264000px;}
.yf4{bottom:679.500000px;}
.y8d{bottom:679.644000px;}
.yb2{bottom:680.946000px;}
.y2a3{bottom:681.996000px;}
.y1fe{bottom:682.155900px;}
.yd3{bottom:684.900000px;}
.y2e{bottom:685.570050px;}
.y177{bottom:686.634000px;}
.y158{bottom:686.652000px;}
.y51{bottom:686.713500px;}
.y2c9{bottom:687.000000px;}
.y1af{bottom:688.566000px;}
.y106{bottom:688.589700px;}
.y26d{bottom:689.550000px;}
.y236{bottom:693.420000px;}
.y2a2{bottom:696.840000px;}
.y13a{bottom:699.027300px;}
.y8c{bottom:702.000000px;}
.yb1{bottom:703.446000px;}
.y1fd{bottom:703.611900px;}
.y26c{bottom:704.850000px;}
.y2c8{bottom:705.750000px;}
.y8{bottom:706.398300px;}
.yd2{bottom:706.950000px;}
.y2d{bottom:708.214050px;}
.y176{bottom:708.540000px;}
.y157{bottom:708.558000px;}
.y235{bottom:708.564000px;}
.y50{bottom:708.609000px;}
.y1ae{bottom:710.310000px;}
.y2a1{bottom:711.684000px;}
.y26b{bottom:720.150000px;}
.y139{bottom:721.221300px;}
.y234{bottom:723.708000px;}
.y8b{bottom:724.500000px;}
.y1fc{bottom:725.067900px;}
.yb0{bottom:725.946000px;}
.y2a0{bottom:726.528000px;}
.y7{bottom:728.304300px;}
.yd1{bottom:729.000000px;}
.y175{bottom:730.446000px;}
.y156{bottom:730.464000px;}
.y4f{bottom:730.504500px;}
.y2c{bottom:730.858050px;}
.y1ad{bottom:732.054000px;}
.y26a{bottom:735.456000px;}
.y233{bottom:738.852000px;}
.y29f{bottom:741.372000px;}
.y2c7{bottom:743.250000px;}
.y1fb{bottom:746.523900px;}
.y8a{bottom:747.000000px;}
.yaf{bottom:748.302000px;}
.y6{bottom:750.204300px;}
.y269{bottom:750.756000px;}
.yd0{bottom:751.050000px;}
.y174{bottom:752.352000px;}
.y155{bottom:752.370000px;}
.y4e{bottom:752.400000px;}
.y2b{bottom:753.502050px;}
.y1ac{bottom:753.798000px;}
.y232{bottom:753.996000px;}
.y29e{bottom:756.216000px;}
.y2c6{bottom:762.000000px;}
.y268{bottom:766.056000px;}
.y1fa{bottom:767.979900px;}
.y231{bottom:769.152000px;}
.y89{bottom:769.500000px;}
.yae{bottom:770.658000px;}
.y29d{bottom:771.060000px;}
.ycf{bottom:773.100000px;}
.y173{bottom:774.258000px;}
.y154{bottom:774.276000px;}
.y4d{bottom:774.300000px;}
.y1ab{bottom:775.542000px;}
.y2a{bottom:776.146050px;}
.y2c5{bottom:780.750000px;}
.y267{bottom:781.356000px;}
.y230{bottom:784.296000px;}
.y29c{bottom:785.904000px;}
.y1f9{bottom:789.435900px;}
.y88{bottom:792.000000px;}
.yad{bottom:793.014000px;}
.yce{bottom:795.150000px;}
.y172{bottom:796.164000px;}
.y153{bottom:796.182000px;}
.y266{bottom:796.656000px;}
.y1aa{bottom:797.286000px;}
.y29{bottom:798.796050px;}
.y22f{bottom:799.440000px;}
.y2c4{bottom:799.500000px;}
.y29b{bottom:800.748000px;}
.y265{bottom:811.956000px;}
.y105{bottom:812.700000px;}
.y87{bottom:814.500000px;}
.y22e{bottom:814.584000px;}
.yac{bottom:815.370000px;}
.y29a{bottom:815.592000px;}
.y5{bottom:816.750000px;}
.ycd{bottom:817.200000px;}
.y4c{bottom:818.070000px;}
.y2c3{bottom:818.250000px;}
.y1a9{bottom:819.030000px;}
.y264{bottom:827.256000px;}
.y22d{bottom:829.728000px;}
.y299{bottom:830.436000px;}
.y86{bottom:837.000000px;}
.yab{bottom:837.726000px;}
.ycc{bottom:839.250000px;}
.y4b{bottom:839.976000px;}
.y1a8{bottom:840.774000px;}
.y263{bottom:842.556000px;}
.y28{bottom:844.396050px;}
.y22c{bottom:844.884000px;}
.y298{bottom:845.280000px;}
.y4{bottom:846.150000px;}
.y2c2{bottom:855.750000px;}
.y262{bottom:857.856000px;}
.y104{bottom:858.291000px;}
.y138{bottom:859.482000px;}
.y85{bottom:859.500000px;}
.y22b{bottom:860.028000px;}
.yaa{bottom:860.082000px;}
.y297{bottom:860.124000px;}
.ycb{bottom:861.300000px;}
.y4a{bottom:861.882000px;}
.y1a7{bottom:862.518000px;}
.y27{bottom:863.446050px;}
.y261{bottom:873.156000px;}
.y2c1{bottom:874.500000px;}
.y296{bottom:874.968000px;}
.y22a{bottom:875.184000px;}
.y3{bottom:875.550000px;}
.y103{bottom:881.094000px;}
.y137{bottom:881.988000px;}
.y84{bottom:882.000000px;}
.ya9{bottom:882.438000px;}
.yca{bottom:883.350000px;}
.y49{bottom:883.788000px;}
.y1a6{bottom:884.262000px;}
.y260{bottom:888.456000px;}
.y295{bottom:889.812000px;}
.y229{bottom:890.328000px;}
.y26{bottom:891.000000px;}
.y2c0{bottom:893.250000px;}
.y25f{bottom:903.756000px;}
.y102{bottom:903.897000px;}
.y136{bottom:904.494000px;}
.y83{bottom:904.500000px;}
.y294{bottom:904.656000px;}
.ya8{bottom:904.794000px;}
.yc9{bottom:905.400000px;}
.y228{bottom:905.472000px;}
.y48{bottom:905.694000px;}
.y1a5{bottom:906.006000px;}
.y25{bottom:910.500000px;}
.y2bf{bottom:912.000000px;}
.y25e{bottom:918.900000px;}
.y293{bottom:919.500000px;}
.y81{bottom:926.574900px;}
.y101{bottom:926.700000px;}
.y2{bottom:926.850000px;}
.y200{bottom:926.999850px;}
.y82{bottom:927.000000px;}
.ya7{bottom:927.150000px;}
.yc8{bottom:927.450000px;}
.y47{bottom:927.600000px;}
.y1a4{bottom:927.750000px;}
.y24{bottom:930.000000px;}
.y2be{bottom:930.750000px;}
.y25d{bottom:934.200000px;}
.y292{bottom:934.500000px;}
.h9{height:30.313623px;}
.h11{height:39.888000px;}
.h12{height:40.757812px;}
.h4{height:42.000000px;}
.h13{height:44.346469px;}
.h14{height:45.852539px;}
.h10{height:47.988281px;}
.h2{height:48.399902px;}
.h5{height:49.675781px;}
.hb{height:49.860000px;}
.h1{height:50.947266px;}
.ha{height:56.041992px;}
.h6{height:61.136719px;}
.hf{height:61.292719px;}
.h7{height:65.955703px;}
.he{height:66.492103px;}
.h8{height:66.531703px;}
.hd{height:66.555703px;}
.hc{height:66.579703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x7{left:82.381950px;}
.x6{left:97.260000px;}
.x9{left:99.391950px;}
.x2{left:112.500000px;}
.x8{left:127.381950px;}
.x5{left:135.000000px;}
.x3{left:142.263750px;}
.xa{left:144.389700px;}
.xb{left:161.399700px;}
.xc{left:180.510000px;}
.x1{left:635.390550px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.058667pt;}
.v1{vertical-align:20.586667pt;}
.ls40{letter-spacing:-4.266667pt;}
.ls30{letter-spacing:-1.600000pt;}
.ls31{letter-spacing:-1.472000pt;}
.ls2f{letter-spacing:-1.216000pt;}
.ls1e{letter-spacing:-1.088000pt;}
.ls11{letter-spacing:-1.024000pt;}
.ls38{letter-spacing:-0.960000pt;}
.ls2e{letter-spacing:-0.832000pt;}
.ls27{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.586667pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.528000pt;}
.ls12{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls3e{letter-spacing:-0.426667pt;}
.ls23{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls5{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.234667pt;}
.ls3d{letter-spacing:-0.213333pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls35{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.117333pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls2c{letter-spacing:-0.058667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.117333pt;}
.lsb{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.176000pt;}
.ls2b{letter-spacing:0.192000pt;}
.ls3a{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.293333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.352000pt;}
.lse{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.448000pt;}
.ls33{letter-spacing:0.512000pt;}
.ls20{letter-spacing:0.576000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.832000pt;}
.ls36{letter-spacing:0.896000pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.533333pt;}
.ls39{letter-spacing:2.602667pt;}
.ls3b{letter-spacing:2.628267pt;}
.ls3f{letter-spacing:3.003733pt;}
.ls41{letter-spacing:3.029333pt;}
.ls7{letter-spacing:3.242667pt;}
.ls8{letter-spacing:3.253333pt;}
.ls9{letter-spacing:4.053333pt;}
.ls3c{letter-spacing:4.224000pt;}
.ls6{letter-spacing:4.266667pt;}
.ls37{letter-spacing:5.952000pt;}
.ls42{letter-spacing:7.200000pt;}
.ls4{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls25{letter-spacing:14.912000pt;}
.ws77{word-spacing:-64.000000pt;}
.ws2{word-spacing:-22.506667pt;}
.wsac{word-spacing:-17.984000pt;}
.ws79{word-spacing:-17.728000pt;}
.ws1{word-spacing:-16.770667pt;}
.wsc0{word-spacing:-16.576000pt;}
.ws8b{word-spacing:-16.512000pt;}
.ws65{word-spacing:-15.808000pt;}
.ws94{word-spacing:-15.744000pt;}
.wsa6{word-spacing:-15.424000pt;}
.ws80{word-spacing:-15.232000pt;}
.wsb{word-spacing:-14.986667pt;}
.wsb8{word-spacing:-14.848000pt;}
.ws6f{word-spacing:-14.490667pt;}
.ws78{word-spacing:-14.336000pt;}
.ws8a{word-spacing:-14.256000pt;}
.wse{word-spacing:-13.493333pt;}
.ws81{word-spacing:-13.488000pt;}
.wscd{word-spacing:-13.173333pt;}
.wsc{word-spacing:-12.588800pt;}
.wsd{word-spacing:-11.989333pt;}
.wscc{word-spacing:-10.965333pt;}
.wsc3{word-spacing:-10.538667pt;}
.wsca{word-spacing:-8.392533pt;}
.ws26{word-spacing:-7.520000pt;}
.wsce{word-spacing:-7.200000pt;}
.ws9{word-spacing:-4.266667pt;}
.wsc4{word-spacing:-4.224000pt;}
.ws46{word-spacing:-1.856000pt;}
.ws1c{word-spacing:-1.792000pt;}
.ws45{word-spacing:-1.728000pt;}
.ws47{word-spacing:-1.600000pt;}
.ws1f{word-spacing:-1.472000pt;}
.ws15{word-spacing:-1.344000pt;}
.ws40{word-spacing:-1.280000pt;}
.ws7a{word-spacing:-1.152000pt;}
.ws18{word-spacing:-1.024000pt;}
.ws53{word-spacing:-0.960000pt;}
.wsa7{word-spacing:-0.896000pt;}
.ws11{word-spacing:-0.832000pt;}
.ws7e{word-spacing:-0.768000pt;}
.ws54{word-spacing:-0.704000pt;}
.wsbe{word-spacing:-0.640000pt;}
.ws92{word-spacing:-0.576000pt;}
.ws91{word-spacing:-0.512000pt;}
.ws5b{word-spacing:-0.448000pt;}
.ws16{word-spacing:-0.320000pt;}
.ws3c{word-spacing:-0.256000pt;}
.wsc9{word-spacing:-0.213333pt;}
.ws20{word-spacing:-0.192000pt;}
.ws38{word-spacing:-0.128000pt;}
.wsb9{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws51{word-spacing:0.064000pt;}
.ws44{word-spacing:0.128000pt;}
.ws97{word-spacing:0.192000pt;}
.wsc5{word-spacing:0.213333pt;}
.ws7f{word-spacing:0.256000pt;}
.ws2c{word-spacing:0.293333pt;}
.ws1b{word-spacing:0.320000pt;}
.ws4b{word-spacing:0.384000pt;}
.ws2e{word-spacing:0.410667pt;}
.wsc6{word-spacing:0.426667pt;}
.ws1a{word-spacing:0.448000pt;}
.ws21{word-spacing:0.512000pt;}
.ws5c{word-spacing:0.576000pt;}
.ws2b{word-spacing:0.586667pt;}
.ws57{word-spacing:0.640000pt;}
.ws31{word-spacing:0.645333pt;}
.ws17{word-spacing:0.704000pt;}
.ws56{word-spacing:0.768000pt;}
.ws8d{word-spacing:0.832000pt;}
.ws60{word-spacing:0.896000pt;}
.wsb4{word-spacing:0.960000pt;}
.ws41{word-spacing:1.024000pt;}
.ws6b{word-spacing:1.056000pt;}
.wsba{word-spacing:1.088000pt;}
.ws99{word-spacing:1.152000pt;}
.wsaa{word-spacing:1.216000pt;}
.ws6d{word-spacing:1.232000pt;}
.wsab{word-spacing:1.280000pt;}
.ws67{word-spacing:1.344000pt;}
.ws98{word-spacing:1.408000pt;}
.ws7b{word-spacing:1.472000pt;}
.ws3f{word-spacing:1.536000pt;}
.ws5{word-spacing:1.600000pt;}
.wsb6{word-spacing:1.792000pt;}
.ws4c{word-spacing:1.920000pt;}
.ws58{word-spacing:1.984000pt;}
.ws49{word-spacing:2.048000pt;}
.wsa8{word-spacing:2.112000pt;}
.ws42{word-spacing:2.133333pt;}
.ws8c{word-spacing:2.176000pt;}
.ws74{word-spacing:2.229333pt;}
.ws76{word-spacing:2.240000pt;}
.wsf{word-spacing:2.261333pt;}
.wsbf{word-spacing:2.304000pt;}
.ws59{word-spacing:2.432000pt;}
.ws64{word-spacing:2.496000pt;}
.ws88{word-spacing:2.560000pt;}
.ws75{word-spacing:2.581333pt;}
.ws43{word-spacing:2.624000pt;}
.wsc7{word-spacing:2.645333pt;}
.ws1e{word-spacing:2.688000pt;}
.wsc1{word-spacing:2.752000pt;}
.ws35{word-spacing:2.816000pt;}
.ws2f{word-spacing:2.874667pt;}
.ws68{word-spacing:2.880000pt;}
.ws29{word-spacing:2.933333pt;}
.wsc8{word-spacing:2.986667pt;}
.ws87{word-spacing:3.008000pt;}
.ws1d{word-spacing:3.072000pt;}
.wsb3{word-spacing:3.136000pt;}
.ws62{word-spacing:3.200000pt;}
.ws6a{word-spacing:3.264000pt;}
.ws8{word-spacing:3.306667pt;}
.wsa1{word-spacing:3.328000pt;}
.ws82{word-spacing:3.392000pt;}
.wsbb{word-spacing:3.456000pt;}
.wsb7{word-spacing:3.520000pt;}
.ws2a{word-spacing:3.578667pt;}
.ws7c{word-spacing:3.584000pt;}
.ws28{word-spacing:3.637333pt;}
.wsae{word-spacing:3.648000pt;}
.ws52{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws4a{word-spacing:3.776000pt;}
.ws66{word-spacing:3.840000pt;}
.ws9d{word-spacing:3.904000pt;}
.ws6{word-spacing:3.968000pt;}
.ws34{word-spacing:4.032000pt;}
.ws6e{word-spacing:4.106667pt;}
.ws4f{word-spacing:4.160000pt;}
.ws70{word-spacing:4.165333pt;}
.ws2d{word-spacing:4.224000pt;}
.ws3d{word-spacing:4.288000pt;}
.ws55{word-spacing:4.352000pt;}
.ws9c{word-spacing:4.416000pt;}
.ws14{word-spacing:4.480000pt;}
.ws37{word-spacing:4.544000pt;}
.wsa0{word-spacing:4.608000pt;}
.ws5f{word-spacing:4.672000pt;}
.ws7d{word-spacing:4.736000pt;}
.ws5d{word-spacing:4.800000pt;}
.ws19{word-spacing:4.864000pt;}
.ws4d{word-spacing:4.928000pt;}
.ws8f{word-spacing:4.992000pt;}
.wsb2{word-spacing:5.120000pt;}
.ws86{word-spacing:5.184000pt;}
.ws5e{word-spacing:5.248000pt;}
.ws9a{word-spacing:5.312000pt;}
.ws73{word-spacing:5.338667pt;}
.wsa5{word-spacing:5.376000pt;}
.wsad{word-spacing:5.440000pt;}
.ws50{word-spacing:5.568000pt;}
.ws96{word-spacing:5.632000pt;}
.ws9b{word-spacing:5.696000pt;}
.ws9f{word-spacing:5.760000pt;}
.ws71{word-spacing:5.866667pt;}
.ws85{word-spacing:5.888000pt;}
.ws84{word-spacing:5.952000pt;}
.ws72{word-spacing:5.984000pt;}
.wsb0{word-spacing:6.016000pt;}
.wsa3{word-spacing:6.080000pt;}
.ws3a{word-spacing:6.144000pt;}
.ws61{word-spacing:6.208000pt;}
.ws93{word-spacing:6.272000pt;}
.wsbd{word-spacing:6.336000pt;}
.wsb5{word-spacing:6.400000pt;}
.wsa4{word-spacing:6.464000pt;}
.wsa2{word-spacing:6.528000pt;}
.wsa9{word-spacing:6.720000pt;}
.ws63{word-spacing:6.784000pt;}
.ws24{word-spacing:6.848000pt;}
.ws90{word-spacing:6.912000pt;}
.ws3e{word-spacing:6.976000pt;}
.ws8e{word-spacing:7.040000pt;}
.ws5a{word-spacing:7.168000pt;}
.wsc2{word-spacing:7.232000pt;}
.wscb{word-spacing:7.253333pt;}
.wsb1{word-spacing:7.360000pt;}
.ws0{word-spacing:7.445333pt;}
.ws4{word-spacing:7.466667pt;}
.ws95{word-spacing:7.488000pt;}
.wsa{word-spacing:7.520000pt;}
.wsaf{word-spacing:7.552000pt;}
.ws39{word-spacing:7.616000pt;}
.ws6c{word-spacing:7.626667pt;}
.ws10{word-spacing:7.680000pt;}
.ws23{word-spacing:7.808000pt;}
.ws9e{word-spacing:7.872000pt;}
.ws22{word-spacing:7.936000pt;}
.ws33{word-spacing:8.000000pt;}
.ws13{word-spacing:8.064000pt;}
.ws30{word-spacing:8.096000pt;}
.ws3b{word-spacing:8.128000pt;}
.ws83{word-spacing:8.192000pt;}
.ws27{word-spacing:8.213333pt;}
.ws69{word-spacing:8.256000pt;}
.ws32{word-spacing:8.272000pt;}
.ws4e{word-spacing:8.320000pt;}
.ws36{word-spacing:8.448000pt;}
.ws89{word-spacing:8.576000pt;}
.wsbc{word-spacing:8.896000pt;}
.ws12{word-spacing:8.960000pt;}
.ws25{word-spacing:9.024000pt;}
.ws48{word-spacing:9.344000pt;}
._0{margin-left:-835.898667pt;}
._14{margin-left:-16.320000pt;}
._15{margin-left:-13.580800pt;}
._16{margin-left:-12.242133pt;}
._19{margin-left:-11.066667pt;}
._6{margin-left:-10.138667pt;}
._13{margin-left:-7.543467pt;}
._8{margin-left:-6.489600pt;}
._1{margin-left:-5.301333pt;}
._7{margin-left:-3.673600pt;}
._9{margin-left:-2.213333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._4{width:3.338667pt;}
._5{width:4.362667pt;}
._d{width:5.575467pt;}
._e{width:6.769067pt;}
._f{width:8.161067pt;}
._10{width:9.728000pt;}
._12{width:11.226667pt;}
._17{width:13.572267pt;}
._11{width:28.129867pt;}
._18{width:31.387733pt;}
._c{width:35.840000pt;}
._b{width:56.362667pt;}
._a{width:179.168000pt;}
.fs9{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y1f8{bottom:104.310400pt;}
.y6b{bottom:104.480000pt;}
.y2bd{bottom:104.807333pt;}
.y1a3{bottom:105.653333pt;}
.y227{bottom:106.048000pt;}
.y190{bottom:106.101333pt;}
.y1d8{bottom:106.197333pt;}
.ya6{bottom:106.272000pt;}
.y12c{bottom:106.314933pt;}
.y1c8{bottom:106.362667pt;}
.y171{bottom:106.405333pt;}
.y25c{bottom:106.581333pt;}
.y1ee{bottom:107.416267pt;}
.y100{bottom:107.563867pt;}
.y214{bottom:107.630800pt;}
.y46{bottom:107.740000pt;}
.y80{bottom:107.764933pt;}
.y11a{bottom:108.016533pt;}
.y22{bottom:108.062000pt;}
.y152{bottom:108.648133pt;}
.y25b{bottom:119.914667pt;}
.y291{bottom:120.144000pt;}
.y2bc{bottom:121.474000pt;}
.y1f7{bottom:123.638400pt;}
.y6a{bottom:123.680000pt;}
.y21{bottom:124.195333pt;}
.y1a2{bottom:125.125333pt;}
.y1d7{bottom:125.525333pt;}
.y18f{bottom:125.573333pt;}
.y170{bottom:125.733333pt;}
.y1c7{bottom:125.834667pt;}
.y226{bottom:125.920000pt;}
.y12b{bottom:126.314933pt;}
.ya5{bottom:126.672000pt;}
.y1ed{bottom:127.016267pt;}
.yff{bottom:127.569200pt;}
.y213{bottom:127.630800pt;}
.y45{bottom:127.740000pt;}
.y7f{bottom:127.764933pt;}
.y119{bottom:128.288533pt;}
.y151{bottom:128.376133pt;}
.y25a{bottom:133.248000pt;}
.y290{bottom:133.882667pt;}
.y2bb{bottom:138.140667pt;}
.y20{bottom:140.328667pt;}
.yf3{bottom:142.896000pt;}
.y1f6{bottom:142.966400pt;}
.y69{bottom:143.152000pt;}
.y1a1{bottom:144.597333pt;}
.y1d6{bottom:144.853333pt;}
.y18e{bottom:145.045333pt;}
.y16f{bottom:145.061333pt;}
.y1c6{bottom:145.306667pt;}
.y225{bottom:145.792000pt;}
.y12a{bottom:146.314933pt;}
.y259{bottom:146.581333pt;}
.y1ec{bottom:146.616267pt;}
.ya4{bottom:147.072000pt;}
.y212{bottom:147.358800pt;}
.yfe{bottom:147.574533pt;}
.y28f{bottom:147.621333pt;}
.ye8{bottom:147.740000pt;}
.y7e{bottom:147.764933pt;}
.y150{bottom:148.104133pt;}
.y118{bottom:148.560533pt;}
.y2ba{bottom:154.807333pt;}
.y1f{bottom:156.462000pt;}
.y258{bottom:159.914667pt;}
.y28e{bottom:161.360000pt;}
.y1f5{bottom:162.294400pt;}
.yf2{bottom:162.496000pt;}
.y68{bottom:162.624000pt;}
.y1a0{bottom:164.069333pt;}
.y1d5{bottom:164.181333pt;}
.y16e{bottom:164.389333pt;}
.y18d{bottom:164.517333pt;}
.y1c5{bottom:164.778667pt;}
.y224{bottom:165.664000pt;}
.y1eb{bottom:166.216267pt;}
.y129{bottom:166.314933pt;}
.y44{bottom:166.446267pt;}
.yc7{bottom:166.933333pt;}
.ya3{bottom:166.944000pt;}
.y211{bottom:167.086800pt;}
.y7d{bottom:167.492933pt;}
.yfd{bottom:167.579867pt;}
.y14f{bottom:167.832133pt;}
.y117{bottom:168.832533pt;}
.y2b9{bottom:171.474000pt;}
.y1e{bottom:172.595333pt;}
.y257{bottom:173.248000pt;}
.y28d{bottom:175.098667pt;}
.y1f4{bottom:181.622400pt;}
.y67{bottom:182.096000pt;}
.y1d4{bottom:183.509333pt;}
.y19f{bottom:183.541333pt;}
.y16d{bottom:183.717333pt;}
.y1c4{bottom:184.250667pt;}
.y223{bottom:185.536000pt;}
.y1ea{bottom:185.816267pt;}
.y128{bottom:186.314933pt;}
.y256{bottom:186.581333pt;}
.yc6{bottom:186.661333pt;}
.y43{bottom:186.707600pt;}
.y210{bottom:186.814800pt;}
.ya2{bottom:186.816000pt;}
.y7c{bottom:187.220933pt;}
.y14e{bottom:187.560133pt;}
.yfc{bottom:187.585200pt;}
.y2b8{bottom:188.140667pt;}
.ye7{bottom:188.552933pt;}
.y1d{bottom:188.728667pt;}
.y28c{bottom:188.837333pt;}
.y116{bottom:189.104533pt;}
.y255{bottom:199.914667pt;}
.y1f3{bottom:200.950400pt;}
.y66{bottom:201.568000pt;}
.yf1{bottom:201.696000pt;}
.y28b{bottom:202.576000pt;}
.y1d3{bottom:202.837333pt;}
.y19e{bottom:203.013333pt;}
.y16c{bottom:203.045333pt;}
.y18c{bottom:203.445333pt;}
.y1c3{bottom:203.722667pt;}
.y2b7{bottom:204.807333pt;}
.y1c{bottom:204.862000pt;}
.y222{bottom:205.408000pt;}
.y1e9{bottom:205.416267pt;}
.yc5{bottom:205.861333pt;}
.y127{bottom:206.314933pt;}
.y20f{bottom:206.542800pt;}
.ya1{bottom:206.688000pt;}
.y42{bottom:206.835600pt;}
.y7b{bottom:206.948933pt;}
.y14d{bottom:207.288133pt;}
.yfb{bottom:207.590533pt;}
.ye6{bottom:208.424933pt;}
.y115{bottom:209.371200pt;}
.y135{bottom:212.650933pt;}
.y254{bottom:213.248000pt;}
.y28a{bottom:216.314667pt;}
.y1f2{bottom:220.278400pt;}
.y1b{bottom:220.995333pt;}
.y65{bottom:221.040000pt;}
.yf0{bottom:221.296000pt;}
.y2b6{bottom:221.474000pt;}
.y1d2{bottom:222.165333pt;}
.y16b{bottom:222.373333pt;}
.y19d{bottom:222.485333pt;}
.y18b{bottom:222.773333pt;}
.y1c2{bottom:223.194667pt;}
.y1e8{bottom:225.016267pt;}
.y221{bottom:225.280000pt;}
.yc4{bottom:225.333333pt;}
.y20e{bottom:226.270800pt;}
.y126{bottom:226.314933pt;}
.ya0{bottom:226.560000pt;}
.y253{bottom:226.581333pt;}
.y7a{bottom:226.676933pt;}
.y41{bottom:226.963600pt;}
.y14c{bottom:227.016133pt;}
.ye5{bottom:228.296933pt;}
.y289{bottom:230.053333pt;}
.y2b5{bottom:238.007333pt;}
.y1f1{bottom:239.606400pt;}
.y252{bottom:239.914667pt;}
.y64{bottom:240.512000pt;}
.y1d1{bottom:241.493333pt;}
.y16a{bottom:241.701333pt;}
.y19c{bottom:241.813333pt;}
.y18a{bottom:242.101333pt;}
.y1c1{bottom:242.666667pt;}
.y288{bottom:243.792000pt;}
.y1e7{bottom:244.616267pt;}
.y1a{bottom:244.688667pt;}
.y220{bottom:245.152000pt;}
.yc3{bottom:245.333333pt;}
.y20d{bottom:245.998800pt;}
.y125{bottom:246.314933pt;}
.y79{bottom:246.404933pt;}
.y9f{bottom:246.432000pt;}
.y14b{bottom:246.744133pt;}
.y40{bottom:247.091600pt;}
.ye4{bottom:248.168933pt;}
.yef{bottom:248.448000pt;}
.y134{bottom:252.650933pt;}
.y251{bottom:253.248000pt;}
.y2b4{bottom:254.540667pt;}
.y287{bottom:257.530667pt;}
.y1f0{bottom:258.934400pt;}
.y63{bottom:259.984000pt;}
.y1d0{bottom:260.821333pt;}
.y169{bottom:261.029333pt;}
.y19b{bottom:261.141333pt;}
.y189{bottom:261.429333pt;}
.y1c0{bottom:262.138667pt;}
.y1e6{bottom:264.216267pt;}
.y21f{bottom:265.024000pt;}
.yc2{bottom:265.333333pt;}
.y20c{bottom:265.726800pt;}
.y78{bottom:266.132933pt;}
.y9e{bottom:266.304000pt;}
.y124{bottom:266.314933pt;}
.y14a{bottom:266.472133pt;}
.y250{bottom:266.581333pt;}
.y3f{bottom:267.219600pt;}
.ye3{bottom:268.040933pt;}
.yee{bottom:268.048000pt;}
.y2b3{bottom:271.074000pt;}
.y286{bottom:271.269333pt;}
.y133{bottom:272.650933pt;}
.y62{bottom:279.456000pt;}
.y24f{bottom:279.914667pt;}
.y1cf{bottom:280.149333pt;}
.y168{bottom:280.357333pt;}
.y19a{bottom:280.469333pt;}
.y188{bottom:280.757333pt;}
.y1bf{bottom:281.610667pt;}
.y19{bottom:283.622000pt;}
.y1e5{bottom:283.816267pt;}
.y21e{bottom:284.896000pt;}
.y285{bottom:285.008000pt;}
.yc1{bottom:285.333333pt;}
.y20b{bottom:285.454800pt;}
.y77{bottom:285.860933pt;}
.y9d{bottom:286.176000pt;}
.y149{bottom:286.200133pt;}
.y123{bottom:286.314933pt;}
.y3e{bottom:287.347600pt;}
.y2b2{bottom:287.607333pt;}
.ye2{bottom:287.640933pt;}
.yed{bottom:287.648000pt;}
.y132{bottom:292.650933pt;}
.y24e{bottom:293.248000pt;}
.y2d7{bottom:297.333333pt;}
.y284{bottom:298.746667pt;}
.y61{bottom:298.928000pt;}
.y1ce{bottom:299.477333pt;}
.y167{bottom:299.685333pt;}
.y18{bottom:299.755333pt;}
.y199{bottom:299.797333pt;}
.y187{bottom:300.085333pt;}
.y1be{bottom:301.082667pt;}
.y1e4{bottom:303.416267pt;}
.y2b1{bottom:304.140667pt;}
.y21d{bottom:304.768000pt;}
.y20a{bottom:305.182800pt;}
.yc0{bottom:305.333333pt;}
.y76{bottom:305.588933pt;}
.y148{bottom:305.928133pt;}
.y9c{bottom:306.048000pt;}
.y122{bottom:306.314933pt;}
.y24d{bottom:306.709333pt;}
.ye1{bottom:307.240933pt;}
.yec{bottom:307.248000pt;}
.y3d{bottom:307.475600pt;}
.y114{bottom:308.079733pt;}
.y283{bottom:312.485333pt;}
.y131{bottom:312.650933pt;}
.y2d6{bottom:314.000000pt;}
.y60{bottom:318.400000pt;}
.y1cd{bottom:318.805333pt;}
.y166{bottom:319.013333pt;}
.y198{bottom:319.125333pt;}
.y186{bottom:319.413333pt;}
.y24c{bottom:320.170667pt;}
.y1bd{bottom:320.554667pt;}
.y2b0{bottom:320.674000pt;}
.y1e3{bottom:323.016267pt;}
.y17{bottom:323.446800pt;}
.y21c{bottom:324.640000pt;}
.y209{bottom:324.910800pt;}
.y75{bottom:325.316933pt;}
.ybf{bottom:325.333333pt;}
.y147{bottom:325.656133pt;}
.y9b{bottom:325.920000pt;}
.y282{bottom:326.224000pt;}
.y121{bottom:326.314933pt;}
.ye0{bottom:326.840933pt;}
.yeb{bottom:326.848000pt;}
.y3c{bottom:327.603600pt;}
.y2d5{bottom:330.666667pt;}
.y24b{bottom:333.642667pt;}
.y5f{bottom:337.934667pt;}
.y1cc{bottom:338.133333pt;}
.y165{bottom:338.341333pt;}
.y197{bottom:338.453333pt;}
.y185{bottom:338.741333pt;}
.y16{bottom:339.580133pt;}
.y281{bottom:339.962667pt;}
.y1bc{bottom:340.026667pt;}
.y1e2{bottom:342.616267pt;}
.y21b{bottom:344.512000pt;}
.y208{bottom:344.638800pt;}
.y74{bottom:345.044933pt;}
.ybe{bottom:345.333333pt;}
.y146{bottom:345.384133pt;}
.y9a{bottom:345.792000pt;}
.y120{bottom:346.314933pt;}
.yea{bottom:346.448000pt;}
.y24a{bottom:347.104000pt;}
.y2d4{bottom:347.333333pt;}
.y3b{bottom:347.731600pt;}
.y2af{bottom:348.546000pt;}
.y113{bottom:348.578400pt;}
.y280{bottom:353.701333pt;}
.y15{bottom:355.713467pt;}
.y5e{bottom:357.397333pt;}
.y1cb{bottom:357.466667pt;}
.y164{bottom:357.669333pt;}
.y196{bottom:357.781333pt;}
.y184{bottom:358.069333pt;}
.y1bb{bottom:359.498667pt;}
.y249{bottom:360.565333pt;}
.y1e1{bottom:362.216267pt;}
.y2d3{bottom:364.000000pt;}
.y207{bottom:364.366800pt;}
.y21a{bottom:364.384000pt;}
.y73{bottom:364.772933pt;}
.y145{bottom:365.112133pt;}
.ybd{bottom:365.333333pt;}
.y99{bottom:365.664000pt;}
.ydf{bottom:366.048000pt;}
.y11f{bottom:366.314933pt;}
.y27f{bottom:367.440000pt;}
.y3a{bottom:367.859600pt;}
.y112{bottom:368.847733pt;}
.y14{bottom:371.846800pt;}
.y248{bottom:374.026667pt;}
.y2ae{bottom:375.756533pt;}
.y5d{bottom:376.860000pt;}
.y163{bottom:376.997333pt;}
.y195{bottom:377.109333pt;}
.y183{bottom:377.397333pt;}
.y1ba{bottom:378.970667pt;}
.y27e{bottom:381.178667pt;}
.y1e0{bottom:381.816267pt;}
.y206{bottom:384.094800pt;}
.y219{bottom:384.256000pt;}
.y72{bottom:384.500933pt;}
.y144{bottom:384.840133pt;}
.ybc{bottom:385.333333pt;}
.y98{bottom:385.536000pt;}
.yde{bottom:385.648000pt;}
.y11e{bottom:386.314933pt;}
.y247{bottom:387.488000pt;}
.y13{bottom:387.980133pt;}
.y39{bottom:387.987600pt;}
.y111{bottom:389.117067pt;}
.y130{bottom:389.879333pt;}
.y2ad{bottom:391.617867pt;}
.y27d{bottom:394.917333pt;}
.y1ca{bottom:396.149333pt;}
.y5c{bottom:396.322667pt;}
.y162{bottom:396.325333pt;}
.y194{bottom:396.437333pt;}
.y182{bottom:396.725333pt;}
.y2d2{bottom:397.333333pt;}
.y1b9{bottom:398.442667pt;}
.y246{bottom:400.960000pt;}
.y1df{bottom:401.416267pt;}
.y205{bottom:403.822800pt;}
.y12{bottom:404.113467pt;}
.y218{bottom:404.128000pt;}
.y71{bottom:404.228933pt;}
.y143{bottom:404.568133pt;}
.ydd{bottom:405.248000pt;}
.ybb{bottom:405.333333pt;}
.y97{bottom:405.408000pt;}
.y11d{bottom:406.314933pt;}
.y38{bottom:408.115600pt;}
.y27c{bottom:408.656000pt;}
.y110{bottom:409.386400pt;}
.y2d1{bottom:414.000000pt;}
.y245{bottom:414.421333pt;}
.y1c9{bottom:415.621333pt;}
.y161{bottom:415.653333pt;}
.y193{bottom:415.765333pt;}
.y5b{bottom:415.785333pt;}
.y181{bottom:416.053333pt;}
.y1b8{bottom:417.914667pt;}
.y11{bottom:420.246800pt;}
.y1de{bottom:421.016267pt;}
.y27b{bottom:422.394667pt;}
.y204{bottom:423.550800pt;}
.y70{bottom:423.962267pt;}
.y217{bottom:424.000000pt;}
.y142{bottom:424.296133pt;}
.ydc{bottom:424.848000pt;}
.y96{bottom:425.280000pt;}
.y11c{bottom:426.314933pt;}
.y244{bottom:427.882667pt;}
.y37{bottom:428.243600pt;}
.y10f{bottom:429.655733pt;}
.y12f{bottom:429.879333pt;}
.y2d0{bottom:430.666667pt;}
.y192{bottom:435.093333pt;}
.y2ac{bottom:435.130667pt;}
.y5a{bottom:435.248000pt;}
.y180{bottom:435.381333pt;}
.y27a{bottom:436.133333pt;}
.y10{bottom:436.380133pt;}
.y1b7{bottom:437.386667pt;}
.y1dd{bottom:440.616267pt;}
.y243{bottom:441.344000pt;}
.y203{bottom:443.278800pt;}
.y216{bottom:444.000000pt;}
.y141{bottom:444.024133pt;}
.ydb{bottom:444.448000pt;}
.y95{bottom:445.152000pt;}
.yba{bottom:445.285333pt;}
.y11b{bottom:446.314933pt;}
.y2cf{bottom:447.333333pt;}
.y36{bottom:448.371600pt;}
.y279{bottom:449.733333pt;}
.y12e{bottom:449.879333pt;}
.y10e{bottom:449.925067pt;}
.y2ab{bottom:451.664000pt;}
.yf{bottom:452.513467pt;}
.y191{bottom:454.565333pt;}
.y160{bottom:454.581333pt;}
.y17f{bottom:454.709333pt;}
.y59{bottom:454.710667pt;}
.y242{bottom:454.805333pt;}
.y1b6{bottom:456.858667pt;}
.y1dc{bottom:460.216267pt;}
.y202{bottom:463.006800pt;}
.y278{bottom:463.333333pt;}
.y6f{bottom:463.444933pt;}
.y140{bottom:463.752133pt;}
.yfa{bottom:464.000000pt;}
.yda{bottom:464.048000pt;}
.y94{bottom:465.024000pt;}
.yb9{bottom:465.285333pt;}
.y2aa{bottom:468.197333pt;}
.y241{bottom:468.277333pt;}
.y35{bottom:468.499600pt;}
.ye{bottom:468.646800pt;}
.y12d{bottom:469.879333pt;}
.y10d{bottom:470.194400pt;}
.y17e{bottom:474.037333pt;}
.y15f{bottom:474.053333pt;}
.y58{bottom:474.173333pt;}
.y1b5{bottom:476.330667pt;}
.y277{bottom:476.933333pt;}
.y1db{bottom:479.816267pt;}
.y240{bottom:481.738667pt;}
.y201{bottom:482.740133pt;}
.y6e{bottom:483.172933pt;}
.yd9{bottom:483.648000pt;}
.y215{bottom:484.000000pt;}
.y2a9{bottom:484.730667pt;}
.yd{bottom:484.780133pt;}
.y93{bottom:484.896000pt;}
.yb8{bottom:485.285333pt;}
.y34{bottom:488.627600pt;}
.y10c{bottom:490.463733pt;}
.y276{bottom:490.533333pt;}
.y2ce{bottom:490.666667pt;}
.y17d{bottom:493.509333pt;}
.y15e{bottom:493.525333pt;}
.y57{bottom:493.636000pt;}
.y23f{bottom:495.200000pt;}
.y1b4{bottom:495.802667pt;}
.y13f{bottom:496.552133pt;}
.y1da{bottom:499.416267pt;}
.y2a8{bottom:501.264000pt;}
.y6d{bottom:502.900933pt;}
.yd8{bottom:503.248000pt;}
.yf9{bottom:504.000000pt;}
.y275{bottom:504.133333pt;}
.y92{bottom:504.768000pt;}
.yb7{bottom:505.285333pt;}
.yc{bottom:508.473467pt;}
.y23e{bottom:508.661333pt;}
.y33{bottom:508.755600pt;}
.y10b{bottom:510.733067pt;}
.y17c{bottom:512.981333pt;}
.y15d{bottom:512.997333pt;}
.y56{bottom:513.098667pt;}
.y1b3{bottom:515.274667pt;}
.y274{bottom:517.733333pt;}
.y2a7{bottom:517.797333pt;}
.y1d9{bottom:519.016267pt;}
.y23d{bottom:522.122667pt;}
.y6c{bottom:522.628933pt;}
.yd7{bottom:522.848000pt;}
.yf8{bottom:524.000000pt;}
.y91{bottom:524.640000pt;}
.yb6{bottom:525.285333pt;}
.y2cd{bottom:527.333333pt;}
.y32{bottom:528.883600pt;}
.y10a{bottom:531.002400pt;}
.y273{bottom:531.333333pt;}
.y17b{bottom:532.453333pt;}
.y15c{bottom:532.469333pt;}
.y55{bottom:532.561333pt;}
.y23c{bottom:535.584000pt;}
.y2a6{bottom:540.096000pt;}
.y13e{bottom:542.445600pt;}
.yd6{bottom:542.448000pt;}
.yf7{bottom:544.000000pt;}
.y90{bottom:544.512000pt;}
.y272{bottom:544.933333pt;}
.yb5{bottom:545.285333pt;}
.yb{bottom:548.722267pt;}
.y31{bottom:549.011600pt;}
.y23b{bottom:549.056000pt;}
.y109{bottom:551.271733pt;}
.y17a{bottom:551.925333pt;}
.y15b{bottom:551.941333pt;}
.y54{bottom:552.024000pt;}
.y1b2{bottom:554.074667pt;}
.y271{bottom:558.533333pt;}
.y2cc{bottom:560.666667pt;}
.yd5{bottom:562.048000pt;}
.y13d{bottom:562.173600pt;}
.y23a{bottom:562.517333pt;}
.yf6{bottom:564.000000pt;}
.y8f{bottom:564.384000pt;}
.yb4{bottom:565.285333pt;}
.y1ff{bottom:566.387467pt;}
.ya{bottom:568.194267pt;}
.y30{bottom:569.139600pt;}
.y179{bottom:571.397333pt;}
.y15a{bottom:571.413333pt;}
.y53{bottom:571.486667pt;}
.y108{bottom:571.541067pt;}
.y270{bottom:572.133333pt;}
.y1ef{bottom:573.333333pt;}
.y1b1{bottom:573.402667pt;}
.y239{bottom:575.978667pt;}
.y2cb{bottom:577.333333pt;}
.y2a5{bottom:579.829333pt;}
.yd4{bottom:581.648000pt;}
.y13c{bottom:581.901600pt;}
.yf5{bottom:584.000000pt;}
.y8e{bottom:584.256000pt;}
.yb3{bottom:585.285333pt;}
.y26f{bottom:585.733333pt;}
.y9{bottom:587.660933pt;}
.ye9{bottom:589.200000pt;}
.y2f{bottom:589.267600pt;}
.y238{bottom:589.440000pt;}
.y178{bottom:590.869333pt;}
.y159{bottom:590.885333pt;}
.y52{bottom:590.949333pt;}
.y107{bottom:591.810400pt;}
.y1b0{bottom:592.730667pt;}
.y2a4{bottom:593.024000pt;}
.y2ca{bottom:594.000000pt;}
.y26e{bottom:599.333333pt;}
.y13b{bottom:601.629600pt;}
.y237{bottom:602.901333pt;}
.yf4{bottom:604.000000pt;}
.y8d{bottom:604.128000pt;}
.yb2{bottom:605.285333pt;}
.y2a3{bottom:606.218667pt;}
.y1fe{bottom:606.360800pt;}
.yd3{bottom:608.800000pt;}
.y2e{bottom:609.395600pt;}
.y177{bottom:610.341333pt;}
.y158{bottom:610.357333pt;}
.y51{bottom:610.412000pt;}
.y2c9{bottom:610.666667pt;}
.y1af{bottom:612.058667pt;}
.y106{bottom:612.079733pt;}
.y26d{bottom:612.933333pt;}
.y236{bottom:616.373333pt;}
.y2a2{bottom:619.413333pt;}
.y13a{bottom:621.357600pt;}
.y8c{bottom:624.000000pt;}
.yb1{bottom:625.285333pt;}
.y1fd{bottom:625.432800pt;}
.y26c{bottom:626.533333pt;}
.y2c8{bottom:627.333333pt;}
.y8{bottom:627.909600pt;}
.yd2{bottom:628.400000pt;}
.y2d{bottom:629.523600pt;}
.y176{bottom:629.813333pt;}
.y157{bottom:629.829333pt;}
.y235{bottom:629.834667pt;}
.y50{bottom:629.874667pt;}
.y1ae{bottom:631.386667pt;}
.y2a1{bottom:632.608000pt;}
.y26b{bottom:640.133333pt;}
.y139{bottom:641.085600pt;}
.y234{bottom:643.296000pt;}
.y8b{bottom:644.000000pt;}
.y1fc{bottom:644.504800pt;}
.yb0{bottom:645.285333pt;}
.y2a0{bottom:645.802667pt;}
.y7{bottom:647.381600pt;}
.yd1{bottom:648.000000pt;}
.y175{bottom:649.285333pt;}
.y156{bottom:649.301333pt;}
.y4f{bottom:649.337333pt;}
.y2c{bottom:649.651600pt;}
.y1ad{bottom:650.714667pt;}
.y26a{bottom:653.738667pt;}
.y233{bottom:656.757333pt;}
.y29f{bottom:658.997333pt;}
.y2c7{bottom:660.666667pt;}
.y1fb{bottom:663.576800pt;}
.y8a{bottom:664.000000pt;}
.yaf{bottom:665.157333pt;}
.y6{bottom:666.848267pt;}
.y269{bottom:667.338667pt;}
.yd0{bottom:667.600000pt;}
.y174{bottom:668.757333pt;}
.y155{bottom:668.773333pt;}
.y4e{bottom:668.800000pt;}
.y2b{bottom:669.779600pt;}
.y1ac{bottom:670.042667pt;}
.y232{bottom:670.218667pt;}
.y29e{bottom:672.192000pt;}
.y2c6{bottom:677.333333pt;}
.y268{bottom:680.938667pt;}
.y1fa{bottom:682.648800pt;}
.y231{bottom:683.690667pt;}
.y89{bottom:684.000000pt;}
.yae{bottom:685.029333pt;}
.y29d{bottom:685.386667pt;}
.ycf{bottom:687.200000pt;}
.y173{bottom:688.229333pt;}
.y154{bottom:688.245333pt;}
.y4d{bottom:688.266667pt;}
.y1ab{bottom:689.370667pt;}
.y2a{bottom:689.907600pt;}
.y2c5{bottom:694.000000pt;}
.y267{bottom:694.538667pt;}
.y230{bottom:697.152000pt;}
.y29c{bottom:698.581333pt;}
.y1f9{bottom:701.720800pt;}
.y88{bottom:704.000000pt;}
.yad{bottom:704.901333pt;}
.yce{bottom:706.800000pt;}
.y172{bottom:707.701333pt;}
.y153{bottom:707.717333pt;}
.y266{bottom:708.138667pt;}
.y1aa{bottom:708.698667pt;}
.y29{bottom:710.040933pt;}
.y22f{bottom:710.613333pt;}
.y2c4{bottom:710.666667pt;}
.y29b{bottom:711.776000pt;}
.y265{bottom:721.738667pt;}
.y105{bottom:722.400000pt;}
.y87{bottom:724.000000pt;}
.y22e{bottom:724.074667pt;}
.yac{bottom:724.773333pt;}
.y29a{bottom:724.970667pt;}
.y5{bottom:726.000000pt;}
.ycd{bottom:726.400000pt;}
.y4c{bottom:727.173333pt;}
.y2c3{bottom:727.333333pt;}
.y1a9{bottom:728.026667pt;}
.y264{bottom:735.338667pt;}
.y22d{bottom:737.536000pt;}
.y299{bottom:738.165333pt;}
.y86{bottom:744.000000pt;}
.yab{bottom:744.645333pt;}
.ycc{bottom:746.000000pt;}
.y4b{bottom:746.645333pt;}
.y1a8{bottom:747.354667pt;}
.y263{bottom:748.938667pt;}
.y28{bottom:750.574267pt;}
.y22c{bottom:751.008000pt;}
.y298{bottom:751.360000pt;}
.y4{bottom:752.133333pt;}
.y2c2{bottom:760.666667pt;}
.y262{bottom:762.538667pt;}
.y104{bottom:762.925333pt;}
.y138{bottom:763.984000pt;}
.y85{bottom:764.000000pt;}
.y22b{bottom:764.469333pt;}
.yaa{bottom:764.517333pt;}
.y297{bottom:764.554667pt;}
.ycb{bottom:765.600000pt;}
.y4a{bottom:766.117333pt;}
.y1a7{bottom:766.682667pt;}
.y27{bottom:767.507600pt;}
.y261{bottom:776.138667pt;}
.y2c1{bottom:777.333333pt;}
.y296{bottom:777.749333pt;}
.y22a{bottom:777.941333pt;}
.y3{bottom:778.266667pt;}
.y103{bottom:783.194667pt;}
.y137{bottom:783.989333pt;}
.y84{bottom:784.000000pt;}
.ya9{bottom:784.389333pt;}
.yca{bottom:785.200000pt;}
.y49{bottom:785.589333pt;}
.y1a6{bottom:786.010667pt;}
.y260{bottom:789.738667pt;}
.y295{bottom:790.944000pt;}
.y229{bottom:791.402667pt;}
.y26{bottom:792.000000pt;}
.y2c0{bottom:794.000000pt;}
.y25f{bottom:803.338667pt;}
.y102{bottom:803.464000pt;}
.y136{bottom:803.994667pt;}
.y83{bottom:804.000000pt;}
.y294{bottom:804.138667pt;}
.ya8{bottom:804.261333pt;}
.yc9{bottom:804.800000pt;}
.y228{bottom:804.864000pt;}
.y48{bottom:805.061333pt;}
.y1a5{bottom:805.338667pt;}
.y25{bottom:809.333333pt;}
.y2bf{bottom:810.666667pt;}
.y25e{bottom:816.800000pt;}
.y293{bottom:817.333333pt;}
.y81{bottom:823.622133pt;}
.y101{bottom:823.733333pt;}
.y2{bottom:823.866667pt;}
.y200{bottom:823.999867pt;}
.y82{bottom:824.000000pt;}
.ya7{bottom:824.133333pt;}
.yc8{bottom:824.400000pt;}
.y47{bottom:824.533333pt;}
.y1a4{bottom:824.666667pt;}
.y24{bottom:826.666667pt;}
.y2be{bottom:827.333333pt;}
.y25d{bottom:830.400000pt;}
.y292{bottom:830.666667pt;}
.h9{height:26.945443pt;}
.h11{height:35.456000pt;}
.h12{height:36.229167pt;}
.h4{height:37.333333pt;}
.h13{height:39.419083pt;}
.h14{height:40.757812pt;}
.h10{height:42.656250pt;}
.h2{height:43.022135pt;}
.h5{height:44.156250pt;}
.hb{height:44.320000pt;}
.h1{height:45.286458pt;}
.ha{height:49.815104pt;}
.h6{height:54.343750pt;}
.hf{height:54.482417pt;}
.h7{height:58.627292pt;}
.he{height:59.104092pt;}
.h8{height:59.139292pt;}
.hd{height:59.160625pt;}
.hc{height:59.181958pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x7{left:73.228400pt;}
.x6{left:86.453333pt;}
.x9{left:88.348400pt;}
.x2{left:100.000000pt;}
.x8{left:113.228400pt;}
.x5{left:120.000000pt;}
.x3{left:126.456667pt;}
.xa{left:128.346400pt;}
.xb{left:143.466400pt;}
.xc{left:160.453333pt;}
.x1{left:564.791600pt;}
}




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