
    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_dfe4147a59c2e3970088c662.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_145ef58c97b77e29d1f00df0.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_8c68dc74499e1356a1c1b942.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_51e2e8e05166e62e1f6befd8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_ea97b6c432481e4aba55a721.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_94c4aecaa487382c8f378ee2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_82875f6cdb6b1fcce24c06cf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_32b57d672aaa2b1ad30b02ef.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_93d68cef29488b15ac6ccbba.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_7fd04c8b0d7158c08fe8342c.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_841b5737e2199cd0fb181606.woff')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-22.200000px;}
.v3{vertical-align:-14.400000px;}
.v6{vertical-align:-13.218000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v4{vertical-align:26.640000px;}
.ls2e{letter-spacing:-14.472000px;}
.ls3a{letter-spacing:-7.560000px;}
.ls39{letter-spacing:-7.200000px;}
.ls67{letter-spacing:-4.356000px;}
.ls54{letter-spacing:-2.808000px;}
.ls65{letter-spacing:-2.574000px;}
.ls18{letter-spacing:-1.224000px;}
.ls19{letter-spacing:-1.008000px;}
.ls1e{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.924000px;}
.ls5b{letter-spacing:-0.819000px;}
.lsd{letter-spacing:-0.792000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls61{letter-spacing:-0.693000px;}
.ls72{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.648000px;}
.ls3f{letter-spacing:-0.576000px;}
.ls32{letter-spacing:-0.504000px;}
.ls66{letter-spacing:-0.462000px;}
.ls51{letter-spacing:-0.441000px;}
.ls15{letter-spacing:-0.432000px;}
.ls75{letter-spacing:-0.396000px;}
.ls60{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.360000px;}
.ls68{letter-spacing:-0.330000px;}
.ls41{letter-spacing:-0.315000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls6a{letter-spacing:-0.264000px;}
.ls40{letter-spacing:-0.252000px;}
.ls29{letter-spacing:-0.216000px;}
.ls74{letter-spacing:-0.198000px;}
.ls52{letter-spacing:-0.189000px;}
.ls1a{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.132000px;}
.ls31{letter-spacing:-0.129600px;}
.ls49{letter-spacing:-0.126000px;}
.ls17{letter-spacing:-0.072000px;}
.ls4a{letter-spacing:-0.063000px;}
.lsa{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.001200px;}
.ls63{letter-spacing:0.010200px;}
.ls2d{letter-spacing:0.011400px;}
.ls58{letter-spacing:0.063000px;}
.ls42{letter-spacing:0.063600px;}
.ls7a{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.072000px;}
.ls4e{letter-spacing:0.084600px;}
.ls57{letter-spacing:0.126000px;}
.ls6e{letter-spacing:0.132000px;}
.ls1f{letter-spacing:0.144000px;}
.ls5d{letter-spacing:0.189000px;}
.ls79{letter-spacing:0.198000px;}
.ls20{letter-spacing:0.216000px;}
.ls5e{letter-spacing:0.220500px;}
.ls47{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.264000px;}
.ls1b{letter-spacing:0.288000px;}
.ls4c{letter-spacing:0.315000px;}
.ls69{letter-spacing:0.330000px;}
.ls23{letter-spacing:0.360000px;}
.ls56{letter-spacing:0.378000px;}
.ls7b{letter-spacing:0.396000px;}
.ls1c{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.440400px;}
.ls4b{letter-spacing:0.441000px;}
.ls2b{letter-spacing:0.504000px;}
.ls73{letter-spacing:0.528000px;}
.ls2{letter-spacing:0.540000px;}
.ls55{letter-spacing:0.567000px;}
.ls21{letter-spacing:0.576000px;}
.ls70{letter-spacing:0.594000px;}
.ls46{letter-spacing:0.630000px;}
.ls2a{letter-spacing:0.648000px;}
.ls6f{letter-spacing:0.660000px;}
.ls45{letter-spacing:0.693000px;}
.ls14{letter-spacing:0.720000px;}
.ls3e{letter-spacing:0.756000px;}
.lse{letter-spacing:0.792000px;}
.ls3d{letter-spacing:0.819000px;}
.ls13{letter-spacing:0.864000px;}
.ls4d{letter-spacing:0.882000px;}
.ls7{letter-spacing:0.924000px;}
.ls64{letter-spacing:0.936000px;}
.ls53{letter-spacing:0.945000px;}
.ls77{letter-spacing:0.990000px;}
.ls28{letter-spacing:1.008000px;}
.ls6{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.080000px;}
.ls7c{letter-spacing:1.188000px;}
.ls26{letter-spacing:1.224000px;}
.ls5c{letter-spacing:1.296000px;}
.ls8{letter-spacing:1.452000px;}
.ls24{letter-spacing:1.656000px;}
.ls59{letter-spacing:1.764000px;}
.ls34{letter-spacing:1.872000px;}
.ls5a{letter-spacing:2.016000px;}
.ls38{letter-spacing:2.088000px;}
.ls25{letter-spacing:2.232000px;}
.ls43{letter-spacing:2.646000px;}
.ls44{letter-spacing:3.024000px;}
.ls3c{letter-spacing:3.600000px;}
.ls48{letter-spacing:3.906000px;}
.ls0{letter-spacing:4.200000px;}
.ls11{letter-spacing:5.824800px;}
.lsf{letter-spacing:5.832000px;}
.ls4{letter-spacing:5.880000px;}
.ls10{letter-spacing:5.904000px;}
.ls62{letter-spacing:6.000000px;}
.ls35{letter-spacing:6.408000px;}
.ls1{letter-spacing:6.600000px;}
.ls37{letter-spacing:7.128000px;}
.ls5{letter-spacing:7.200000px;}
.ls36{letter-spacing:8.496000px;}
.ls7d{letter-spacing:9.174000px;}
.ls3{letter-spacing:10.200000px;}
.ls4f{letter-spacing:10.296000px;}
.ls6b{letter-spacing:10.626000px;}
.ls3b{letter-spacing:10.944000px;}
.ls6d{letter-spacing:10.956000px;}
.ls71{letter-spacing:11.022000px;}
.ls6c{letter-spacing:11.484000px;}
.ls2c{letter-spacing:11.592000px;}
.ls76{letter-spacing:11.946000px;}
.ls33{letter-spacing:12.247200px;}
.ls5f{letter-spacing:13.419000px;}
.ls78{letter-spacing:19.800000px;}
.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;}
}
.ws6c{word-spacing:-62.685000px;}
.wsab{word-spacing:-38.346000px;}
.ws1{word-spacing:-35.394000px;}
.ws2{word-spacing:-27.432000px;}
.ws42{word-spacing:-24.984000px;}
.ws92{word-spacing:-22.860000px;}
.ws51{word-spacing:-21.024000px;}
.ws3d{word-spacing:-20.952000px;}
.ws60{word-spacing:-20.727000px;}
.ws35{word-spacing:-20.376000px;}
.ws45{word-spacing:-20.304000px;}
.ws3f{word-spacing:-20.232000px;}
.ws44{word-spacing:-20.160000px;}
.ws46{word-spacing:-20.016000px;}
.ws50{word-spacing:-19.872000px;}
.wsb0{word-spacing:-19.800000px;}
.ws9d{word-spacing:-18.678000px;}
.ws6e{word-spacing:-18.648000px;}
.ws78{word-spacing:-18.576000px;}
.ws93{word-spacing:-18.546000px;}
.ws58{word-spacing:-18.522000px;}
.ws89{word-spacing:-18.459000px;}
.ws36{word-spacing:-18.432000px;}
.ws63{word-spacing:-18.396000px;}
.ws90{word-spacing:-18.288000px;}
.ws79{word-spacing:-18.270000px;}
.ws38{word-spacing:-18.216000px;}
.ws57{word-spacing:-18.144000px;}
.ws95{word-spacing:-18.084000px;}
.ws6d{word-spacing:-18.018000px;}
.ws37{word-spacing:-18.000000px;}
.ws64{word-spacing:-17.955000px;}
.ws88{word-spacing:-17.829000px;}
.ws16{word-spacing:-17.784000px;}
.ws84{word-spacing:-17.766000px;}
.ws17{word-spacing:-17.712000px;}
.ws5a{word-spacing:-17.703000px;}
.ws2f{word-spacing:-17.640000px;}
.ws62{word-spacing:-17.577000px;}
.ws83{word-spacing:-17.514000px;}
.ws43{word-spacing:-17.496000px;}
.ws56{word-spacing:-17.352000px;}
.ws3{word-spacing:-17.226000px;}
.ws61{word-spacing:-17.199000px;}
.ws8a{word-spacing:-17.010000px;}
.ws7a{word-spacing:-16.884000px;}
.ws0{word-spacing:-16.860000px;}
.ws4{word-spacing:-16.566000px;}
.ws5{word-spacing:-16.302000px;}
.ws7b{word-spacing:-15.624000px;}
.ws6b{word-spacing:-15.372000px;}
.ws59{word-spacing:-15.246000px;}
.ws18{word-spacing:-12.139200px;}
.ws3e{word-spacing:-12.009600px;}
.wsa9{word-spacing:-11.946000px;}
.wsa0{word-spacing:-11.484000px;}
.ws94{word-spacing:-11.127600px;}
.wsa7{word-spacing:-11.022000px;}
.wsa2{word-spacing:-10.956000px;}
.ws55{word-spacing:-10.944000px;}
.ws9e{word-spacing:-10.626000px;}
.wsb{word-spacing:-10.200000px;}
.ws4d{word-spacing:-8.496000px;}
.ws3c{word-spacing:-7.200000px;}
.ws4b{word-spacing:-6.408000px;}
.wsaf{word-spacing:-6.000000px;}
.wsc{word-spacing:-5.880000px;}
.ws7{word-spacing:-4.200000px;}
.ws5c{word-spacing:-3.600000px;}
.ws66{word-spacing:-2.646000px;}
.ws30{word-spacing:-2.232000px;}
.ws82{word-spacing:-2.016000px;}
.ws81{word-spacing:-1.764000px;}
.ws2d{word-spacing:-1.656000px;}
.ws12{word-spacing:-1.452000px;}
.ws87{word-spacing:-1.296000px;}
.ws32{word-spacing:-1.224000px;}
.wsb1{word-spacing:-1.188000px;}
.ws33{word-spacing:-1.080000px;}
.ws11{word-spacing:-1.056000px;}
.ws31{word-spacing:-1.008000px;}
.wsaa{word-spacing:-0.990000px;}
.ws96{word-spacing:-0.936000px;}
.ws75{word-spacing:-0.882000px;}
.ws21{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.792000px;}
.ws5d{word-spacing:-0.756000px;}
.ws26{word-spacing:-0.720000px;}
.ws73{word-spacing:-0.693000px;}
.wsa5{word-spacing:-0.660000px;}
.ws77{word-spacing:-0.648000px;}
.ws69{word-spacing:-0.630000px;}
.wsa6{word-spacing:-0.594000px;}
.ws29{word-spacing:-0.576000px;}
.wsa{word-spacing:-0.540000px;}
.wsa1{word-spacing:-0.528000px;}
.ws3a{word-spacing:-0.504000px;}
.ws80{word-spacing:-0.441000px;}
.ws23{word-spacing:-0.432000px;}
.wsae{word-spacing:-0.396000px;}
.ws7d{word-spacing:-0.378000px;}
.ws2c{word-spacing:-0.360000px;}
.ws9b{word-spacing:-0.330000px;}
.ws74{word-spacing:-0.315000px;}
.ws22{word-spacing:-0.288000px;}
.ws13{word-spacing:-0.264000px;}
.ws8b{word-spacing:-0.252000px;}
.ws2a{word-spacing:-0.216000px;}
.wsac{word-spacing:-0.198000px;}
.ws8c{word-spacing:-0.189000px;}
.ws28{word-spacing:-0.144000px;}
.ws7e{word-spacing:-0.126000px;}
.ws25{word-spacing:-0.072000px;}
.wsad{word-spacing:-0.066000px;}
.ws7f{word-spacing:-0.063000px;}
.ws15{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws68{word-spacing:0.063000px;}
.ws1c{word-spacing:0.072000px;}
.ws67{word-spacing:0.126000px;}
.wsd{word-spacing:0.132000px;}
.ws20{word-spacing:0.144000px;}
.ws71{word-spacing:0.189000px;}
.wsa4{word-spacing:0.198000px;}
.ws34{word-spacing:0.216000px;}
.ws5e{word-spacing:0.252000px;}
.ws9c{word-spacing:0.264000px;}
.ws24{word-spacing:0.288000px;}
.ws5f{word-spacing:0.315000px;}
.ws9a{word-spacing:0.330000px;}
.ws2e{word-spacing:0.360000px;}
.ws8d{word-spacing:0.378000px;}
.wsa8{word-spacing:0.396000px;}
.ws1b{word-spacing:0.432000px;}
.ws70{word-spacing:0.441000px;}
.ws99{word-spacing:0.462000px;}
.ws41{word-spacing:0.504000px;}
.ws85{word-spacing:0.567000px;}
.ws5b{word-spacing:0.576000px;}
.ws2b{word-spacing:0.648000px;}
.ws9f{word-spacing:0.660000px;}
.ws8e{word-spacing:0.693000px;}
.ws3b{word-spacing:0.720000px;}
.ws10{word-spacing:0.792000px;}
.wsf{word-spacing:0.924000px;}
.ws27{word-spacing:0.936000px;}
.ws1f{word-spacing:1.008000px;}
.ws1e{word-spacing:1.224000px;}
.ws4f{word-spacing:1.440000px;}
.ws7c{word-spacing:1.944000px;}
.ws14{word-spacing:2.310000px;}
.ws6f{word-spacing:2.394000px;}
.ws72{word-spacing:2.520000px;}
.ws97{word-spacing:2.574000px;}
.ws76{word-spacing:2.808000px;}
.ws19{word-spacing:2.940000px;}
.wse{word-spacing:3.168000px;}
.ws91{word-spacing:3.528000px;}
.wsb2{word-spacing:3.564000px;}
.wsa3{word-spacing:4.092000px;}
.ws4a{word-spacing:4.104000px;}
.ws9{word-spacing:4.200000px;}
.ws54{word-spacing:4.248000px;}
.ws98{word-spacing:4.356000px;}
.ws1d{word-spacing:4.464000px;}
.ws8{word-spacing:4.620000px;}
.wsb3{word-spacing:4.752000px;}
.ws6a{word-spacing:5.040000px;}
.ws53{word-spacing:5.256000px;}
.ws47{word-spacing:5.544000px;}
.ws4c{word-spacing:5.616000px;}
.ws48{word-spacing:6.120000px;}
.ws4e{word-spacing:7.200000px;}
.ws52{word-spacing:7.560000px;}
.ws49{word-spacing:7.632000px;}
.ws86{word-spacing:7.749000px;}
.ws8f{word-spacing:7.812000px;}
.ws40{word-spacing:8.856000px;}
.ws65{word-spacing:10.152000px;}
.ws39{word-spacing:14.472000px;}
._16{margin-left:-17.703000px;}
._10{margin-left:-15.494400px;}
._12{margin-left:-14.055600px;}
._17{margin-left:-12.643800px;}
._18{margin-left:-11.436000px;}
._9{margin-left:-10.189800px;}
._1a{margin-left:-8.567400px;}
._5{margin-left:-7.512000px;}
._3{margin-left:-6.018000px;}
._c{margin-left:-4.571400px;}
._2{margin-left:-3.444000px;}
._1{margin-left:-1.999800px;}
._6{width:1.374000px;}
._7{width:2.695800px;}
._0{width:4.200000px;}
._b{width:5.916000px;}
._f{width:7.550400px;}
._4{width:8.946000px;}
._a{width:10.200000px;}
._d{width:11.778000px;}
._e{width:13.490400px;}
._11{width:14.752800px;}
._8{width:16.744800px;}
._14{width:19.404000px;}
._15{width:20.487600px;}
._19{width:21.706200px;}
._13{width:56.923800px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(5,5,5);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsa{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y70{bottom:140.313450px;}
.y1a7{bottom:141.610350px;}
.y20{bottom:142.375200px;}
.y175{bottom:142.584450px;}
.y233{bottom:142.783800px;}
.y158{bottom:143.982450px;}
.y1f0{bottom:144.256050px;}
.yb2{bottom:144.760350px;}
.y19a{bottom:144.843000px;}
.y69{bottom:144.930300px;}
.yf1{bottom:145.012500px;}
.y1cb{bottom:145.113900px;}
.y93{bottom:145.452300px;}
.y139{bottom:145.628700px;}
.y212{bottom:145.717800px;}
.y114{bottom:146.076450px;}
.yd0{bottom:146.370300px;}
.y45{bottom:150.114300px;}
.y174{bottom:160.586700px;}
.y6f{bottom:162.364950px;}
.y232{bottom:163.177800px;}
.y1a6{bottom:163.210350px;}
.y1f{bottom:163.381200px;}
.y1ca{bottom:164.913900px;}
.y1ef{bottom:164.963550px;}
.y157{bottom:165.726450px;}
.yb1{bottom:166.360350px;}
.y211{bottom:166.573800px;}
.y68{bottom:166.674300px;}
.yf0{bottom:166.918500px;}
.y199{bottom:167.343000px;}
.y113{bottom:167.370450px;}
.y138{bottom:167.372700px;}
.y92{bottom:167.808300px;}
.ycf{bottom:167.970300px;}
.y44{bottom:171.714300px;}
.y173{bottom:178.588950px;}
.y231{bottom:183.571800px;}
.y1a5{bottom:184.810350px;}
.y1c9{bottom:184.862400px;}
.y1ee{bottom:185.209050px;}
.y210{bottom:187.429800px;}
.y156{bottom:187.470450px;}
.yb0{bottom:187.960350px;}
.y67{bottom:188.418300px;}
.y112{bottom:188.664450px;}
.yef{bottom:188.824500px;}
.y137{bottom:189.116700px;}
.yce{bottom:189.570300px;}
.y198{bottom:189.843000px;}
.y91{bottom:190.140300px;}
.y1e{bottom:192.885150px;}
.y43{bottom:193.314300px;}
.y172{bottom:196.591200px;}
.y230{bottom:203.965800px;}
.y1c8{bottom:204.810900px;}
.y1ed{bottom:205.454550px;}
.y6e{bottom:206.410350px;}
.y20f{bottom:208.285800px;}
.y155{bottom:209.214450px;}
.yaf{bottom:209.560350px;}
.y111{bottom:209.958450px;}
.y66{bottom:210.162300px;}
.yee{bottom:210.730500px;}
.y136{bottom:210.860700px;}
.ycd{bottom:211.170300px;}
.y197{bottom:212.343000px;}
.y90{bottom:212.496300px;}
.y171{bottom:214.593450px;}
.y42{bottom:214.914300px;}
.y22f{bottom:224.359800px;}
.y1c7{bottom:224.759400px;}
.y1ec{bottom:225.403050px;}
.y6d{bottom:228.010350px;}
.y20e{bottom:229.141800px;}
.y154{bottom:230.958450px;}
.yae{bottom:231.160350px;}
.y65{bottom:231.906300px;}
.y170{bottom:232.595700px;}
.y135{bottom:232.628700px;}
.yed{bottom:232.636500px;}
.ycc{bottom:232.770300px;}
.y196{bottom:234.843000px;}
.y8f{bottom:234.852300px;}
.y41{bottom:236.514300px;}
.y1c6{bottom:244.707900px;}
.y22e{bottom:244.753800px;}
.y1eb{bottom:245.648550px;}
.y110{bottom:245.958450px;}
.y6c{bottom:249.610350px;}
.y20d{bottom:249.997800px;}
.y16f{bottom:250.597950px;}
.yad{bottom:252.640350px;}
.y153{bottom:252.702450px;}
.y64{bottom:253.650300px;}
.y134{bottom:254.372700px;}
.ycb{bottom:254.514300px;}
.yec{bottom:254.542500px;}
.y1d{bottom:255.849000px;}
.y8e{bottom:257.208300px;}
.y195{bottom:257.343000px;}
.y40{bottom:258.114300px;}
.y1c5{bottom:264.668400px;}
.y22d{bottom:265.147800px;}
.y1ea{bottom:265.597050px;}
.y16e{bottom:268.600200px;}
.y20c{bottom:270.853800px;}
.y6b{bottom:271.210350px;}
.yac{bottom:274.240350px;}
.y1c{bottom:275.055000px;}
.y63{bottom:275.394300px;}
.y133{bottom:276.116700px;}
.yca{bottom:276.258300px;}
.yeb{bottom:276.448500px;}
.y8d{bottom:279.546300px;}
.y3f{bottom:279.714300px;}
.y194{bottom:279.843000px;}
.y1c4{bottom:284.616900px;}
.y22c{bottom:285.541800px;}
.y1e9{bottom:285.842550px;}
.y16d{bottom:286.602450px;}
.y152{bottom:287.352450px;}
.y20b{bottom:291.709800px;}
.y6a{bottom:292.810350px;}
.y1b{bottom:294.261000px;}
.yab{bottom:295.840350px;}
.y10f{bottom:296.607450px;}
.y62{bottom:297.138300px;}
.y132{bottom:297.860700px;}
.yc9{bottom:298.002300px;}
.y3e{bottom:301.314300px;}
.y8c{bottom:301.902300px;}
.y193{bottom:302.343000px;}
.y1c3{bottom:304.565400px;}
.y151{bottom:305.496450px;}
.y22b{bottom:305.935800px;}
.y1e8{bottom:306.088050px;}
.yea{bottom:311.098500px;}
.y20a{bottom:312.565800px;}
.y1a{bottom:313.467000px;}
.y10e{bottom:314.310450px;}
.y1a4{bottom:314.410350px;}
.y16c{bottom:317.358300px;}
.yaa{bottom:317.440350px;}
.y61{bottom:318.882300px;}
.y131{bottom:319.604700px;}
.yc8{bottom:319.746300px;}
.y3d{bottom:322.914300px;}
.y150{bottom:323.640450px;}
.y8b{bottom:324.258300px;}
.y1c2{bottom:324.513900px;}
.y192{bottom:324.843000px;}
.y22a{bottom:326.329800px;}
.y1e7{bottom:326.333550px;}
.ye9{bottom:329.400000px;}
.y10d{bottom:332.013450px;}
.y19{bottom:332.673000px;}
.y209{bottom:333.421800px;}
.y1a3{bottom:336.010350px;}
.y16b{bottom:338.958300px;}
.ya9{bottom:339.040350px;}
.y60{bottom:340.626300px;}
.yc7{bottom:341.490300px;}
.y14f{bottom:341.784450px;}
.y1c1{bottom:344.462400px;}
.y3c{bottom:344.514300px;}
.y1e6{bottom:346.282050px;}
.y8a{bottom:346.578300px;}
.y229{bottom:346.723800px;}
.ye8{bottom:347.701500px;}
.y10c{bottom:349.716450px;}
.y18{bottom:351.879000px;}
.y208{bottom:354.277800px;}
.y130{bottom:356.504700px;}
.y1a2{bottom:357.610350px;}
.y14e{bottom:359.928450px;}
.y191{bottom:360.098850px;}
.y16a{bottom:360.558300px;}
.ya8{bottom:360.640350px;}
.y5f{bottom:362.370300px;}
.yc6{bottom:363.234300px;}
.y1c0{bottom:364.410900px;}
.ye7{bottom:366.003000px;}
.y3b{bottom:366.114300px;}
.y1e5{bottom:366.527550px;}
.y228{bottom:367.117800px;}
.y10b{bottom:367.419450px;}
.y89{bottom:368.934300px;}
.y17{bottom:371.085000px;}
.y207{bottom:375.133800px;}
.y14d{bottom:378.072450px;}
.y190{bottom:378.998850px;}
.y1a1{bottom:379.210350px;}
.ya7{bottom:382.096350px;}
.y169{bottom:382.158300px;}
.y5e{bottom:384.114300px;}
.ye6{bottom:384.304500px;}
.y1bf{bottom:384.359400px;}
.yc5{bottom:384.978300px;}
.y10a{bottom:385.122450px;}
.y1e4{bottom:386.773050px;}
.y227{bottom:387.511800px;}
.y3a{bottom:387.714300px;}
.y88{bottom:391.290300px;}
.y206{bottom:395.989800px;}
.y14c{bottom:396.216450px;}
.y16{bottom:398.788950px;}
.y24c{bottom:399.511800px;}
.y1a0{bottom:400.810350px;}
.y109{bottom:402.825450px;}
.ya6{bottom:403.552350px;}
.y1be{bottom:404.307900px;}
.y5d{bottom:405.858300px;}
.yc4{bottom:406.722300px;}
.y1e3{bottom:407.018550px;}
.y12f{bottom:408.578700px;}
.y39{bottom:409.314300px;}
.y18f{bottom:410.654700px;}
.y87{bottom:413.646300px;}
.y14b{bottom:414.360450px;}
.ye5{bottom:415.348350px;}
.y205{bottom:416.845800px;}
.y24b{bottom:417.511800px;}
.y168{bottom:418.758450px;}
.y108{bottom:420.528450px;}
.y19f{bottom:422.410350px;}
.y1bd{bottom:424.260900px;}
.ya5{bottom:425.008350px;}
.y1e2{bottom:427.264050px;}
.y5c{bottom:427.602300px;}
.yc3{bottom:428.466300px;}
.y226{bottom:430.111800px;}
.y12e{bottom:430.322700px;}
.y38{bottom:430.914300px;}
.y14a{bottom:432.504450px;}
.y18e{bottom:433.154700px;}
.y24a{bottom:435.511800px;}
.y86{bottom:436.002300px;}
.ye4{bottom:437.254350px;}
.y204{bottom:437.701800px;}
.y107{bottom:438.231450px;}
.y15{bottom:440.753100px;}
.y19e{bottom:444.010350px;}
.y1bc{bottom:444.209400px;}
.ya4{bottom:446.464350px;}
.y1e1{bottom:447.509550px;}
.y5b{bottom:449.346300px;}
.yc2{bottom:450.210300px;}
.y149{bottom:450.648450px;}
.y12d{bottom:452.066700px;}
.y37{bottom:452.514300px;}
.y249{bottom:453.511800px;}
.y18d{bottom:455.654700px;}
.y106{bottom:455.934450px;}
.y85{bottom:458.358300px;}
.y203{bottom:458.557800px;}
.ye3{bottom:459.160350px;}
.y14{bottom:459.959100px;}
.y1bb{bottom:464.157900px;}
.y19d{bottom:465.610350px;}
.y1e0{bottom:467.755050px;}
.ya3{bottom:467.920350px;}
.y148{bottom:468.792450px;}
.y167{bottom:470.340450px;}
.y5a{bottom:471.090300px;}
.y248{bottom:471.511800px;}
.yc1{bottom:471.954300px;}
.y225{bottom:472.717800px;}
.y105{bottom:473.637450px;}
.y12c{bottom:473.810700px;}
.y36{bottom:474.114300px;}
.y18c{bottom:478.154700px;}
.y13{bottom:479.165100px;}
.y202{bottom:479.413800px;}
.y84{bottom:480.654300px;}
.y1ba{bottom:484.110900px;}
.y147{bottom:486.936450px;}
.y19c{bottom:487.210350px;}
.y1df{bottom:488.000550px;}
.y166{bottom:488.342700px;}
.ya2{bottom:489.376350px;}
.y104{bottom:491.340450px;}
.y59{bottom:492.834300px;}
.yc0{bottom:493.698300px;}
.y224{bottom:494.911800px;}
.y12b{bottom:495.566700px;}
.y35{bottom:495.714300px;}
.ye2{bottom:496.360350px;}
.y12{bottom:498.371100px;}
.y201{bottom:500.269800px;}
.y83{bottom:503.010300px;}
.y1b9{bottom:504.059400px;}
.y146{bottom:505.080450px;}
.y165{bottom:506.344950px;}
.y1de{bottom:508.246050px;}
.y19b{bottom:508.810350px;}
.y103{bottom:509.043450px;}
.ya1{bottom:510.832350px;}
.y247{bottom:511.111800px;}
.y18b{bottom:513.410700px;}
.y58{bottom:514.578300px;}
.ybf{bottom:515.442300px;}
.y223{bottom:517.111800px;}
.y12a{bottom:517.310700px;}
.y34{bottom:517.314300px;}
.y11{bottom:517.577100px;}
.y200{bottom:521.125800px;}
.y145{bottom:523.224450px;}
.y1b8{bottom:524.007900px;}
.y164{bottom:524.347200px;}
.y82{bottom:525.366300px;}
.y102{bottom:526.746450px;}
.y1dd{bottom:528.491550px;}
.y246{bottom:530.911800px;}
.ya0{bottom:532.288350px;}
.y18a{bottom:532.310700px;}
.y57{bottom:536.322300px;}
.y10{bottom:536.783100px;}
.ybe{bottom:537.186300px;}
.y33{bottom:538.914300px;}
.y129{bottom:539.072700px;}
.y144{bottom:541.368450px;}
.y1ff{bottom:541.981800px;}
.y163{bottom:542.349450px;}
.y1b7{bottom:543.956400px;}
.y101{bottom:544.449450px;}
.y81{bottom:547.722300px;}
.y1dc{bottom:548.737050px;}
.ye1{bottom:548.908350px;}
.y189{bottom:551.210700px;}
.y9f{bottom:553.744350px;}
.yf{bottom:555.989100px;}
.y56{bottom:558.066300px;}
.ybd{bottom:558.930300px;}
.y143{bottom:559.512450px;}
.y162{bottom:560.351700px;}
.y32{bottom:560.514300px;}
.y128{bottom:560.816700px;}
.y100{bottom:562.152450px;}
.y1fe{bottom:562.837800px;}
.y222{bottom:566.911800px;}
.y1db{bottom:568.982550px;}
.y80{bottom:570.078300px;}
.y188{bottom:570.110700px;}
.ye0{bottom:570.814350px;}
.y245{bottom:572.311800px;}
.y1b6{bottom:572.410350px;}
.y9e{bottom:575.200350px;}
.y142{bottom:577.656450px;}
.y161{bottom:578.353950px;}
.y55{bottom:579.810300px;}
.yff{bottom:579.855450px;}
.ybc{bottom:580.674300px;}
.y31{bottom:582.114300px;}
.y127{bottom:582.560700px;}
.ye{bottom:583.692900px;}
.y1fd{bottom:583.693800px;}
.y221{bottom:585.511800px;}
.y187{bottom:589.010700px;}
.y1da{bottom:589.228050px;}
.y244{bottom:592.111800px;}
.y7f{bottom:592.434300px;}
.ydf{bottom:592.720350px;}
.y141{bottom:595.800450px;}
.y160{bottom:596.356200px;}
.y9d{bottom:596.656350px;}
.yfe{bottom:597.558450px;}
.y54{bottom:601.554300px;}
.ybb{bottom:602.418300px;}
.y30{bottom:603.714300px;}
.y220{bottom:604.111800px;}
.y126{bottom:604.304700px;}
.y1fc{bottom:604.549800px;}
.y186{bottom:607.910700px;}
.y1d9{bottom:609.325050px;}
.y243{bottom:611.911800px;}
.y140{bottom:613.944450px;}
.y15f{bottom:614.358450px;}
.yde{bottom:614.626350px;}
.y7e{bottom:614.790300px;}
.y9c{bottom:618.112350px;}
.y1b5{bottom:621.030300px;}
.y21f{bottom:622.711800px;}
.y53{bottom:623.298300px;}
.yba{bottom:624.162300px;}
.y2f{bottom:625.314300px;}
.y1fb{bottom:625.405800px;}
.y185{bottom:626.810700px;}
.yfd{bottom:628.038300px;}
.y1d8{bottom:629.422050px;}
.y242{bottom:631.711800px;}
.y13f{bottom:632.088450px;}
.ydd{bottom:636.532350px;}
.y7d{bottom:637.146300px;}
.y125{bottom:638.906700px;}
.y9b{bottom:639.568350px;}
.y21e{bottom:641.311800px;}
.y1b4{bottom:642.936300px;}
.y52{bottom:645.042300px;}
.y15e{bottom:645.114300px;}
.y184{bottom:645.710700px;}
.yb9{bottom:645.906300px;}
.y1fa{bottom:646.261800px;}
.yd{bottom:646.686900px;}
.y2e{bottom:646.914300px;}
.yfc{bottom:649.332300px;}
.y1d7{bottom:649.519050px;}
.y13e{bottom:650.232450px;}
.y241{bottom:651.511800px;}
.y124{bottom:657.050700px;}
.ydc{bottom:658.276350px;}
.y7c{bottom:659.502300px;}
.y9a{bottom:661.024350px;}
.y183{bottom:664.610700px;}
.y1b3{bottom:664.842300px;}
.yc{bottom:665.892900px;}
.y15d{bottom:666.714300px;}
.y51{bottom:666.786300px;}
.yb8{bottom:667.650300px;}
.y13d{bottom:668.376450px;}
.y2d{bottom:668.514300px;}
.y1d6{bottom:669.616050px;}
.yfb{bottom:670.626300px;}
.y240{bottom:671.311800px;}
.y123{bottom:675.194700px;}
.ydb{bottom:680.020350px;}
.y7b{bottom:681.858300px;}
.y21d{bottom:682.117800px;}
.y99{bottom:682.480350px;}
.y182{bottom:683.510700px;}
.y13c{bottom:686.520450px;}
.y1b2{bottom:686.748300px;}
.y15c{bottom:688.314300px;}
.y50{bottom:688.530300px;}
.yb7{bottom:689.394300px;}
.y1f9{bottom:689.611800px;}
.y1d5{bottom:689.713050px;}
.y2c{bottom:690.114300px;}
.y23f{bottom:691.111800px;}
.yfa{bottom:691.920300px;}
.y122{bottom:693.338700px;}
.yda{bottom:701.764350px;}
.y181{bottom:702.410700px;}
.y21c{bottom:702.511800px;}
.y98{bottom:703.936350px;}
.y7a{bottom:704.160300px;}
.y13b{bottom:704.664450px;}
.yb{bottom:706.104900px;}
.y1b1{bottom:708.654300px;}
.y1d4{bottom:709.810050px;}
.y15b{bottom:709.914300px;}
.y4f{bottom:710.274300px;}
.y23e{bottom:710.911800px;}
.yb6{bottom:711.138300px;}
.y121{bottom:711.482700px;}
.y2b{bottom:711.714300px;}
.yf9{bottom:713.214300px;}
.y180{bottom:721.310700px;}
.y13a{bottom:722.808450px;}
.yd9{bottom:723.508350px;}
.y97{bottom:725.392350px;}
.y79{bottom:726.516300px;}
.y120{bottom:729.626700px;}
.y1d3{bottom:729.907050px;}
.y1b0{bottom:730.560300px;}
.y23d{bottom:730.711800px;}
.y15a{bottom:731.514300px;}
.y4e{bottom:732.018300px;}
.y1f8{bottom:732.811800px;}
.yb5{bottom:732.882300px;}
.y2a{bottom:733.314300px;}
.ya{bottom:736.092900px;}
.y17f{bottom:740.210700px;}
.y21b{bottom:745.165800px;}
.yd8{bottom:745.252350px;}
.y96{bottom:746.848350px;}
.y11f{bottom:747.770700px;}
.y78{bottom:748.872300px;}
.yf8{bottom:749.214300px;}
.y1d2{bottom:750.004050px;}
.y23c{bottom:750.511800px;}
.y1af{bottom:752.466300px;}
.y4d{bottom:753.762300px;}
.yb4{bottom:754.626300px;}
.y29{bottom:754.914300px;}
.y1f7{bottom:755.311800px;}
.y17e{bottom:759.110700px;}
.y21a{bottom:765.559800px;}
.y11e{bottom:765.914700px;}
.yd7{bottom:766.996350px;}
.y159{bottom:768.114300px;}
.y95{bottom:768.304350px;}
.y23b{bottom:770.311800px;}
.y77{bottom:771.228300px;}
.y1ae{bottom:774.372300px;}
.y4c{bottom:775.506300px;}
.yb3{bottom:776.370300px;}
.y28{bottom:776.514300px;}
.y1f6{bottom:777.811950px;}
.y17d{bottom:778.010700px;}
.y1d1{bottom:778.608000px;}
.y11d{bottom:784.058700px;}
.y219{bottom:785.953800px;}
.yd6{bottom:788.740350px;}
.y94{bottom:789.760350px;}
.y23a{bottom:790.111800px;}
.y9{bottom:790.756950px;}
.y76{bottom:793.584300px;}
.y1ad{bottom:796.278300px;}
.y17c{bottom:796.910700px;}
.y4b{bottom:797.250300px;}
.y27{bottom:798.114300px;}
.yf7{bottom:799.938300px;}
.y11c{bottom:802.202700px;}
.y218{bottom:806.347800px;}
.y8{bottom:808.156950px;}
.y239{bottom:809.911800px;}
.yd5{bottom:810.484350px;}
.y17b{bottom:815.810700px;}
.y75{bottom:815.940300px;}
.y1ac{bottom:818.184300px;}
.y4a{bottom:818.994300px;}
.y1f5{bottom:819.214050px;}
.y26{bottom:819.714300px;}
.y11b{bottom:820.346700px;}
.yf6{bottom:821.232300px;}
.y7{bottom:825.556950px;}
.y217{bottom:826.741800px;}
.y1d0{bottom:827.484300px;}
.y238{bottom:829.711800px;}
.yd4{bottom:832.228350px;}
.y17a{bottom:834.710700px;}
.y1f4{bottom:837.211800px;}
.y74{bottom:838.296300px;}
.y11a{bottom:838.490700px;}
.y1ab{bottom:840.090300px;}
.y49{bottom:840.738300px;}
.y25{bottom:841.314300px;}
.yf5{bottom:842.526300px;}
.y6{bottom:842.956950px;}
.y216{bottom:847.135800px;}
.y1cf{bottom:847.729800px;}
.y237{bottom:849.511800px;}
.y179{bottom:853.610700px;}
.yd3{bottom:853.972350px;}
.y119{bottom:856.634700px;}
.y73{bottom:860.652300px;}
.y1aa{bottom:861.996300px;}
.y48{bottom:862.482300px;}
.y24{bottom:862.914300px;}
.yf4{bottom:863.820300px;}
.y1f3{bottom:866.589300px;}
.y215{bottom:867.529800px;}
.y1ce{bottom:867.975300px;}
.y236{bottom:869.311800px;}
.y178{bottom:872.510700px;}
.y118{bottom:874.778700px;}
.yd2{bottom:875.716350px;}
.y5{bottom:876.511950px;}
.y72{bottom:883.008300px;}
.y1a9{bottom:883.902300px;}
.y47{bottom:884.226300px;}
.y23{bottom:884.514300px;}
.yf3{bottom:885.126300px;}
.y1f2{bottom:887.296800px;}
.y214{bottom:887.923800px;}
.y1cd{bottom:888.220800px;}
.y235{bottom:889.111800px;}
.y177{bottom:891.410700px;}
.y117{bottom:892.922700px;}
.y4{bottom:893.911950px;}
.yd1{bottom:897.460350px;}
.y71{bottom:905.358300px;}
.y1a8{bottom:905.808300px;}
.y46{bottom:905.970300px;}
.y22{bottom:906.114300px;}
.yf2{bottom:906.420300px;}
.y1f1{bottom:908.004300px;}
.y213{bottom:908.317800px;}
.y1cc{bottom:908.466300px;}
.y234{bottom:908.911800px;}
.y176{bottom:910.310700px;}
.y116{bottom:911.066700px;}
.y3{bottom:911.311950px;}
.y21{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.y115{bottom:929.210700px;}
.hb{height:26.199902px;}
.h9{height:28.977539px;}
.h3{height:35.663086px;}
.h18{height:39.990234px;}
.ha{height:40.757812px;}
.h2{height:41.396484px;}
.h15{height:43.466309px;}
.h4{height:43.989258px;}
.h16{height:47.988281px;}
.hc{height:48.399902px;}
.h17{height:49.675781px;}
.h5{height:50.947266px;}
.h14{height:53.494629px;}
.h7{height:56.041992px;}
.h8{height:61.136719px;}
.hd{height:61.160719px;}
.h11{height:61.208719px;}
.h12{height:61.232719px;}
.h10{height:61.280719px;}
.he{height:61.352719px;}
.hf{height:61.376719px;}
.h13{height:61.616719px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:76.535400px;}
.xe{left:85.039350px;}
.xa{left:91.417350px;}
.x1{left:97.795350px;}
.xd{left:106.299150px;}
.xb{left:112.677150px;}
.x3{left:119.057850px;}
.xc{left:140.318400px;}
.x2{left:143.170350px;}
.x11{left:199.925250px;}
.x12{left:237.390600px;}
.x5{left:243.728700px;}
.x4{left:258.650550px;}
.x6{left:346.774200px;}
.x7{left:352.047600px;}
.x10{left:508.755750px;}
.xf{left:517.719000px;}
.x8{left:610.039350px;}
@media print{
.v5{vertical-align:-19.733333pt;}
.v3{vertical-align:-12.800000pt;}
.v6{vertical-align:-11.749333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v4{vertical-align:23.680000pt;}
.ls2e{letter-spacing:-12.864000pt;}
.ls3a{letter-spacing:-6.720000pt;}
.ls39{letter-spacing:-6.400000pt;}
.ls67{letter-spacing:-3.872000pt;}
.ls54{letter-spacing:-2.496000pt;}
.ls65{letter-spacing:-2.288000pt;}
.ls18{letter-spacing:-1.088000pt;}
.ls19{letter-spacing:-0.896000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.821333pt;}
.ls5b{letter-spacing:-0.728000pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls61{letter-spacing:-0.616000pt;}
.ls72{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls3f{letter-spacing:-0.512000pt;}
.ls32{letter-spacing:-0.448000pt;}
.ls66{letter-spacing:-0.410667pt;}
.ls51{letter-spacing:-0.392000pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls75{letter-spacing:-0.352000pt;}
.ls60{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls68{letter-spacing:-0.293333pt;}
.ls41{letter-spacing:-0.280000pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls6a{letter-spacing:-0.234667pt;}
.ls40{letter-spacing:-0.224000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls74{letter-spacing:-0.176000pt;}
.ls52{letter-spacing:-0.168000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.117333pt;}
.ls31{letter-spacing:-0.115200pt;}
.ls49{letter-spacing:-0.112000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls4a{letter-spacing:-0.056000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.001067pt;}
.ls63{letter-spacing:0.009067pt;}
.ls2d{letter-spacing:0.010133pt;}
.ls58{letter-spacing:0.056000pt;}
.ls42{letter-spacing:0.056533pt;}
.ls7a{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.064000pt;}
.ls4e{letter-spacing:0.075200pt;}
.ls57{letter-spacing:0.112000pt;}
.ls6e{letter-spacing:0.117333pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls5d{letter-spacing:0.168000pt;}
.ls79{letter-spacing:0.176000pt;}
.ls20{letter-spacing:0.192000pt;}
.ls5e{letter-spacing:0.196000pt;}
.ls47{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.234667pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls4c{letter-spacing:0.280000pt;}
.ls69{letter-spacing:0.293333pt;}
.ls23{letter-spacing:0.320000pt;}
.ls56{letter-spacing:0.336000pt;}
.ls7b{letter-spacing:0.352000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.391467pt;}
.ls4b{letter-spacing:0.392000pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls73{letter-spacing:0.469333pt;}
.ls2{letter-spacing:0.480000pt;}
.ls55{letter-spacing:0.504000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls70{letter-spacing:0.528000pt;}
.ls46{letter-spacing:0.560000pt;}
.ls2a{letter-spacing:0.576000pt;}
.ls6f{letter-spacing:0.586667pt;}
.ls45{letter-spacing:0.616000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls3e{letter-spacing:0.672000pt;}
.lse{letter-spacing:0.704000pt;}
.ls3d{letter-spacing:0.728000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls4d{letter-spacing:0.784000pt;}
.ls7{letter-spacing:0.821333pt;}
.ls64{letter-spacing:0.832000pt;}
.ls53{letter-spacing:0.840000pt;}
.ls77{letter-spacing:0.880000pt;}
.ls28{letter-spacing:0.896000pt;}
.ls6{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls7c{letter-spacing:1.056000pt;}
.ls26{letter-spacing:1.088000pt;}
.ls5c{letter-spacing:1.152000pt;}
.ls8{letter-spacing:1.290667pt;}
.ls24{letter-spacing:1.472000pt;}
.ls59{letter-spacing:1.568000pt;}
.ls34{letter-spacing:1.664000pt;}
.ls5a{letter-spacing:1.792000pt;}
.ls38{letter-spacing:1.856000pt;}
.ls25{letter-spacing:1.984000pt;}
.ls43{letter-spacing:2.352000pt;}
.ls44{letter-spacing:2.688000pt;}
.ls3c{letter-spacing:3.200000pt;}
.ls48{letter-spacing:3.472000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls11{letter-spacing:5.177600pt;}
.lsf{letter-spacing:5.184000pt;}
.ls4{letter-spacing:5.226667pt;}
.ls10{letter-spacing:5.248000pt;}
.ls62{letter-spacing:5.333333pt;}
.ls35{letter-spacing:5.696000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls37{letter-spacing:6.336000pt;}
.ls5{letter-spacing:6.400000pt;}
.ls36{letter-spacing:7.552000pt;}
.ls7d{letter-spacing:8.154667pt;}
.ls3{letter-spacing:9.066667pt;}
.ls4f{letter-spacing:9.152000pt;}
.ls6b{letter-spacing:9.445333pt;}
.ls3b{letter-spacing:9.728000pt;}
.ls6d{letter-spacing:9.738667pt;}
.ls71{letter-spacing:9.797333pt;}
.ls6c{letter-spacing:10.208000pt;}
.ls2c{letter-spacing:10.304000pt;}
.ls76{letter-spacing:10.618667pt;}
.ls33{letter-spacing:10.886400pt;}
.ls5f{letter-spacing:11.928000pt;}
.ls78{letter-spacing:17.600000pt;}
.ws6c{word-spacing:-55.720000pt;}
.wsab{word-spacing:-34.085333pt;}
.ws1{word-spacing:-31.461333pt;}
.ws2{word-spacing:-24.384000pt;}
.ws42{word-spacing:-22.208000pt;}
.ws92{word-spacing:-20.320000pt;}
.ws51{word-spacing:-18.688000pt;}
.ws3d{word-spacing:-18.624000pt;}
.ws60{word-spacing:-18.424000pt;}
.ws35{word-spacing:-18.112000pt;}
.ws45{word-spacing:-18.048000pt;}
.ws3f{word-spacing:-17.984000pt;}
.ws44{word-spacing:-17.920000pt;}
.ws46{word-spacing:-17.792000pt;}
.ws50{word-spacing:-17.664000pt;}
.wsb0{word-spacing:-17.600000pt;}
.ws9d{word-spacing:-16.602667pt;}
.ws6e{word-spacing:-16.576000pt;}
.ws78{word-spacing:-16.512000pt;}
.ws93{word-spacing:-16.485333pt;}
.ws58{word-spacing:-16.464000pt;}
.ws89{word-spacing:-16.408000pt;}
.ws36{word-spacing:-16.384000pt;}
.ws63{word-spacing:-16.352000pt;}
.ws90{word-spacing:-16.256000pt;}
.ws79{word-spacing:-16.240000pt;}
.ws38{word-spacing:-16.192000pt;}
.ws57{word-spacing:-16.128000pt;}
.ws95{word-spacing:-16.074667pt;}
.ws6d{word-spacing:-16.016000pt;}
.ws37{word-spacing:-16.000000pt;}
.ws64{word-spacing:-15.960000pt;}
.ws88{word-spacing:-15.848000pt;}
.ws16{word-spacing:-15.808000pt;}
.ws84{word-spacing:-15.792000pt;}
.ws17{word-spacing:-15.744000pt;}
.ws5a{word-spacing:-15.736000pt;}
.ws2f{word-spacing:-15.680000pt;}
.ws62{word-spacing:-15.624000pt;}
.ws83{word-spacing:-15.568000pt;}
.ws43{word-spacing:-15.552000pt;}
.ws56{word-spacing:-15.424000pt;}
.ws3{word-spacing:-15.312000pt;}
.ws61{word-spacing:-15.288000pt;}
.ws8a{word-spacing:-15.120000pt;}
.ws7a{word-spacing:-15.008000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws4{word-spacing:-14.725333pt;}
.ws5{word-spacing:-14.490667pt;}
.ws7b{word-spacing:-13.888000pt;}
.ws6b{word-spacing:-13.664000pt;}
.ws59{word-spacing:-13.552000pt;}
.ws18{word-spacing:-10.790400pt;}
.ws3e{word-spacing:-10.675200pt;}
.wsa9{word-spacing:-10.618667pt;}
.wsa0{word-spacing:-10.208000pt;}
.ws94{word-spacing:-9.891200pt;}
.wsa7{word-spacing:-9.797333pt;}
.wsa2{word-spacing:-9.738667pt;}
.ws55{word-spacing:-9.728000pt;}
.ws9e{word-spacing:-9.445333pt;}
.wsb{word-spacing:-9.066667pt;}
.ws4d{word-spacing:-7.552000pt;}
.ws3c{word-spacing:-6.400000pt;}
.ws4b{word-spacing:-5.696000pt;}
.wsaf{word-spacing:-5.333333pt;}
.wsc{word-spacing:-5.226667pt;}
.ws7{word-spacing:-3.733333pt;}
.ws5c{word-spacing:-3.200000pt;}
.ws66{word-spacing:-2.352000pt;}
.ws30{word-spacing:-1.984000pt;}
.ws82{word-spacing:-1.792000pt;}
.ws81{word-spacing:-1.568000pt;}
.ws2d{word-spacing:-1.472000pt;}
.ws12{word-spacing:-1.290667pt;}
.ws87{word-spacing:-1.152000pt;}
.ws32{word-spacing:-1.088000pt;}
.wsb1{word-spacing:-1.056000pt;}
.ws33{word-spacing:-0.960000pt;}
.ws11{word-spacing:-0.938667pt;}
.ws31{word-spacing:-0.896000pt;}
.wsaa{word-spacing:-0.880000pt;}
.ws96{word-spacing:-0.832000pt;}
.ws75{word-spacing:-0.784000pt;}
.ws21{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.704000pt;}
.ws5d{word-spacing:-0.672000pt;}
.ws26{word-spacing:-0.640000pt;}
.ws73{word-spacing:-0.616000pt;}
.wsa5{word-spacing:-0.586667pt;}
.ws77{word-spacing:-0.576000pt;}
.ws69{word-spacing:-0.560000pt;}
.wsa6{word-spacing:-0.528000pt;}
.ws29{word-spacing:-0.512000pt;}
.wsa{word-spacing:-0.480000pt;}
.wsa1{word-spacing:-0.469333pt;}
.ws3a{word-spacing:-0.448000pt;}
.ws80{word-spacing:-0.392000pt;}
.ws23{word-spacing:-0.384000pt;}
.wsae{word-spacing:-0.352000pt;}
.ws7d{word-spacing:-0.336000pt;}
.ws2c{word-spacing:-0.320000pt;}
.ws9b{word-spacing:-0.293333pt;}
.ws74{word-spacing:-0.280000pt;}
.ws22{word-spacing:-0.256000pt;}
.ws13{word-spacing:-0.234667pt;}
.ws8b{word-spacing:-0.224000pt;}
.ws2a{word-spacing:-0.192000pt;}
.wsac{word-spacing:-0.176000pt;}
.ws8c{word-spacing:-0.168000pt;}
.ws28{word-spacing:-0.128000pt;}
.ws7e{word-spacing:-0.112000pt;}
.ws25{word-spacing:-0.064000pt;}
.wsad{word-spacing:-0.058667pt;}
.ws7f{word-spacing:-0.056000pt;}
.ws15{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws68{word-spacing:0.056000pt;}
.ws1c{word-spacing:0.064000pt;}
.ws67{word-spacing:0.112000pt;}
.wsd{word-spacing:0.117333pt;}
.ws20{word-spacing:0.128000pt;}
.ws71{word-spacing:0.168000pt;}
.wsa4{word-spacing:0.176000pt;}
.ws34{word-spacing:0.192000pt;}
.ws5e{word-spacing:0.224000pt;}
.ws9c{word-spacing:0.234667pt;}
.ws24{word-spacing:0.256000pt;}
.ws5f{word-spacing:0.280000pt;}
.ws9a{word-spacing:0.293333pt;}
.ws2e{word-spacing:0.320000pt;}
.ws8d{word-spacing:0.336000pt;}
.wsa8{word-spacing:0.352000pt;}
.ws1b{word-spacing:0.384000pt;}
.ws70{word-spacing:0.392000pt;}
.ws99{word-spacing:0.410667pt;}
.ws41{word-spacing:0.448000pt;}
.ws85{word-spacing:0.504000pt;}
.ws5b{word-spacing:0.512000pt;}
.ws2b{word-spacing:0.576000pt;}
.ws9f{word-spacing:0.586667pt;}
.ws8e{word-spacing:0.616000pt;}
.ws3b{word-spacing:0.640000pt;}
.ws10{word-spacing:0.704000pt;}
.wsf{word-spacing:0.821333pt;}
.ws27{word-spacing:0.832000pt;}
.ws1f{word-spacing:0.896000pt;}
.ws1e{word-spacing:1.088000pt;}
.ws4f{word-spacing:1.280000pt;}
.ws7c{word-spacing:1.728000pt;}
.ws14{word-spacing:2.053333pt;}
.ws6f{word-spacing:2.128000pt;}
.ws72{word-spacing:2.240000pt;}
.ws97{word-spacing:2.288000pt;}
.ws76{word-spacing:2.496000pt;}
.ws19{word-spacing:2.613333pt;}
.wse{word-spacing:2.816000pt;}
.ws91{word-spacing:3.136000pt;}
.wsb2{word-spacing:3.168000pt;}
.wsa3{word-spacing:3.637333pt;}
.ws4a{word-spacing:3.648000pt;}
.ws9{word-spacing:3.733333pt;}
.ws54{word-spacing:3.776000pt;}
.ws98{word-spacing:3.872000pt;}
.ws1d{word-spacing:3.968000pt;}
.ws8{word-spacing:4.106667pt;}
.wsb3{word-spacing:4.224000pt;}
.ws6a{word-spacing:4.480000pt;}
.ws53{word-spacing:4.672000pt;}
.ws47{word-spacing:4.928000pt;}
.ws4c{word-spacing:4.992000pt;}
.ws48{word-spacing:5.440000pt;}
.ws4e{word-spacing:6.400000pt;}
.ws52{word-spacing:6.720000pt;}
.ws49{word-spacing:6.784000pt;}
.ws86{word-spacing:6.888000pt;}
.ws8f{word-spacing:6.944000pt;}
.ws40{word-spacing:7.872000pt;}
.ws65{word-spacing:9.024000pt;}
.ws39{word-spacing:12.864000pt;}
._16{margin-left:-15.736000pt;}
._10{margin-left:-13.772800pt;}
._12{margin-left:-12.493867pt;}
._17{margin-left:-11.238933pt;}
._18{margin-left:-10.165333pt;}
._9{margin-left:-9.057600pt;}
._1a{margin-left:-7.615467pt;}
._5{margin-left:-6.677333pt;}
._3{margin-left:-5.349333pt;}
._c{margin-left:-4.063467pt;}
._2{margin-left:-3.061333pt;}
._1{margin-left:-1.777600pt;}
._6{width:1.221333pt;}
._7{width:2.396267pt;}
._0{width:3.733333pt;}
._b{width:5.258667pt;}
._f{width:6.711467pt;}
._4{width:7.952000pt;}
._a{width:9.066667pt;}
._d{width:10.469333pt;}
._e{width:11.991467pt;}
._11{width:13.113600pt;}
._8{width:14.884267pt;}
._14{width:17.248000pt;}
._15{width:18.211200pt;}
._19{width:19.294400pt;}
._13{width:50.598933pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y70{bottom:124.723067pt;}
.y1a7{bottom:125.875867pt;}
.y20{bottom:126.555733pt;}
.y175{bottom:126.741733pt;}
.y233{bottom:126.918933pt;}
.y158{bottom:127.984400pt;}
.y1f0{bottom:128.227600pt;}
.yb2{bottom:128.675867pt;}
.y19a{bottom:128.749333pt;}
.y69{bottom:128.826933pt;}
.yf1{bottom:128.900000pt;}
.y1cb{bottom:128.990133pt;}
.y93{bottom:129.290933pt;}
.y139{bottom:129.447733pt;}
.y212{bottom:129.526933pt;}
.y114{bottom:129.845733pt;}
.yd0{bottom:130.106933pt;}
.y45{bottom:133.434933pt;}
.y174{bottom:142.743733pt;}
.y6f{bottom:144.324400pt;}
.y232{bottom:145.046933pt;}
.y1a6{bottom:145.075867pt;}
.y1f{bottom:145.227733pt;}
.y1ca{bottom:146.590133pt;}
.y1ef{bottom:146.634267pt;}
.y157{bottom:147.312400pt;}
.yb1{bottom:147.875867pt;}
.y211{bottom:148.065600pt;}
.y68{bottom:148.154933pt;}
.yf0{bottom:148.372000pt;}
.y199{bottom:148.749333pt;}
.y113{bottom:148.773733pt;}
.y138{bottom:148.775733pt;}
.y92{bottom:149.162933pt;}
.ycf{bottom:149.306933pt;}
.y44{bottom:152.634933pt;}
.y173{bottom:158.745733pt;}
.y231{bottom:163.174933pt;}
.y1a5{bottom:164.275867pt;}
.y1c9{bottom:164.322133pt;}
.y1ee{bottom:164.630267pt;}
.y210{bottom:166.604267pt;}
.y156{bottom:166.640400pt;}
.yb0{bottom:167.075867pt;}
.y67{bottom:167.482933pt;}
.y112{bottom:167.701733pt;}
.yef{bottom:167.844000pt;}
.y137{bottom:168.103733pt;}
.yce{bottom:168.506933pt;}
.y198{bottom:168.749333pt;}
.y91{bottom:169.013600pt;}
.y1e{bottom:171.453467pt;}
.y43{bottom:171.834933pt;}
.y172{bottom:174.747733pt;}
.y230{bottom:181.302933pt;}
.y1c8{bottom:182.054133pt;}
.y1ed{bottom:182.626267pt;}
.y6e{bottom:183.475867pt;}
.y20f{bottom:185.142933pt;}
.y155{bottom:185.968400pt;}
.yaf{bottom:186.275867pt;}
.y111{bottom:186.629733pt;}
.y66{bottom:186.810933pt;}
.yee{bottom:187.316000pt;}
.y136{bottom:187.431733pt;}
.ycd{bottom:187.706933pt;}
.y197{bottom:188.749333pt;}
.y90{bottom:188.885600pt;}
.y171{bottom:190.749733pt;}
.y42{bottom:191.034933pt;}
.y22f{bottom:199.430933pt;}
.y1c7{bottom:199.786133pt;}
.y1ec{bottom:200.358267pt;}
.y6d{bottom:202.675867pt;}
.y20e{bottom:203.681600pt;}
.y154{bottom:205.296400pt;}
.yae{bottom:205.475867pt;}
.y65{bottom:206.138933pt;}
.y170{bottom:206.751733pt;}
.y135{bottom:206.781067pt;}
.yed{bottom:206.788000pt;}
.ycc{bottom:206.906933pt;}
.y196{bottom:208.749333pt;}
.y8f{bottom:208.757600pt;}
.y41{bottom:210.234933pt;}
.y1c6{bottom:217.518133pt;}
.y22e{bottom:217.558933pt;}
.y1eb{bottom:218.354267pt;}
.y110{bottom:218.629733pt;}
.y6c{bottom:221.875867pt;}
.y20d{bottom:222.220267pt;}
.y16f{bottom:222.753733pt;}
.yad{bottom:224.569200pt;}
.y153{bottom:224.624400pt;}
.y64{bottom:225.466933pt;}
.y134{bottom:226.109067pt;}
.ycb{bottom:226.234933pt;}
.yec{bottom:226.260000pt;}
.y1d{bottom:227.421333pt;}
.y8e{bottom:228.629600pt;}
.y195{bottom:228.749333pt;}
.y40{bottom:229.434933pt;}
.y1c5{bottom:235.260800pt;}
.y22d{bottom:235.686933pt;}
.y1ea{bottom:236.086267pt;}
.y16e{bottom:238.755733pt;}
.y20c{bottom:240.758933pt;}
.y6b{bottom:241.075867pt;}
.yac{bottom:243.769200pt;}
.y1c{bottom:244.493333pt;}
.y63{bottom:244.794933pt;}
.y133{bottom:245.437067pt;}
.yca{bottom:245.562933pt;}
.yeb{bottom:245.732000pt;}
.y8d{bottom:248.485600pt;}
.y3f{bottom:248.634933pt;}
.y194{bottom:248.749333pt;}
.y1c4{bottom:252.992800pt;}
.y22c{bottom:253.814933pt;}
.y1e9{bottom:254.082267pt;}
.y16d{bottom:254.757733pt;}
.y152{bottom:255.424400pt;}
.y20b{bottom:259.297600pt;}
.y6a{bottom:260.275867pt;}
.y1b{bottom:261.565333pt;}
.yab{bottom:262.969200pt;}
.y10f{bottom:263.651067pt;}
.y62{bottom:264.122933pt;}
.y132{bottom:264.765067pt;}
.yc9{bottom:264.890933pt;}
.y3e{bottom:267.834933pt;}
.y8c{bottom:268.357600pt;}
.y193{bottom:268.749333pt;}
.y1c3{bottom:270.724800pt;}
.y151{bottom:271.552400pt;}
.y22b{bottom:271.942933pt;}
.y1e8{bottom:272.078267pt;}
.yea{bottom:276.532000pt;}
.y20a{bottom:277.836267pt;}
.y1a{bottom:278.637333pt;}
.y10e{bottom:279.387067pt;}
.y1a4{bottom:279.475867pt;}
.y16c{bottom:282.096267pt;}
.yaa{bottom:282.169200pt;}
.y61{bottom:283.450933pt;}
.y131{bottom:284.093067pt;}
.yc8{bottom:284.218933pt;}
.y3d{bottom:287.034933pt;}
.y150{bottom:287.680400pt;}
.y8b{bottom:288.229600pt;}
.y1c2{bottom:288.456800pt;}
.y192{bottom:288.749333pt;}
.y22a{bottom:290.070933pt;}
.y1e7{bottom:290.074267pt;}
.ye9{bottom:292.800000pt;}
.y10d{bottom:295.123067pt;}
.y19{bottom:295.709333pt;}
.y209{bottom:296.374933pt;}
.y1a3{bottom:298.675867pt;}
.y16b{bottom:301.296267pt;}
.ya9{bottom:301.369200pt;}
.y60{bottom:302.778933pt;}
.yc7{bottom:303.546933pt;}
.y14f{bottom:303.808400pt;}
.y1c1{bottom:306.188800pt;}
.y3c{bottom:306.234933pt;}
.y1e6{bottom:307.806267pt;}
.y8a{bottom:308.069600pt;}
.y229{bottom:308.198933pt;}
.ye8{bottom:309.068000pt;}
.y10c{bottom:310.859067pt;}
.y18{bottom:312.781333pt;}
.y208{bottom:314.913600pt;}
.y130{bottom:316.893067pt;}
.y1a2{bottom:317.875867pt;}
.y14e{bottom:319.936400pt;}
.y191{bottom:320.087867pt;}
.y16a{bottom:320.496267pt;}
.ya8{bottom:320.569200pt;}
.y5f{bottom:322.106933pt;}
.yc6{bottom:322.874933pt;}
.y1c0{bottom:323.920800pt;}
.ye7{bottom:325.336000pt;}
.y3b{bottom:325.434933pt;}
.y1e5{bottom:325.802267pt;}
.y228{bottom:326.326933pt;}
.y10b{bottom:326.595067pt;}
.y89{bottom:327.941600pt;}
.y17{bottom:329.853333pt;}
.y207{bottom:333.452267pt;}
.y14d{bottom:336.064400pt;}
.y190{bottom:336.887867pt;}
.y1a1{bottom:337.075867pt;}
.ya7{bottom:339.641200pt;}
.y169{bottom:339.696267pt;}
.y5e{bottom:341.434933pt;}
.ye6{bottom:341.604000pt;}
.y1bf{bottom:341.652800pt;}
.yc5{bottom:342.202933pt;}
.y10a{bottom:342.331067pt;}
.y1e4{bottom:343.798267pt;}
.y227{bottom:344.454933pt;}
.y3a{bottom:344.634933pt;}
.y88{bottom:347.813600pt;}
.y206{bottom:351.990933pt;}
.y14c{bottom:352.192400pt;}
.y16{bottom:354.479067pt;}
.y24c{bottom:355.121600pt;}
.y1a0{bottom:356.275867pt;}
.y109{bottom:358.067067pt;}
.ya6{bottom:358.713200pt;}
.y1be{bottom:359.384800pt;}
.y5d{bottom:360.762933pt;}
.yc4{bottom:361.530933pt;}
.y1e3{bottom:361.794267pt;}
.y12f{bottom:363.181067pt;}
.y39{bottom:363.834933pt;}
.y18f{bottom:365.026400pt;}
.y87{bottom:367.685600pt;}
.y14b{bottom:368.320400pt;}
.ye5{bottom:369.198533pt;}
.y205{bottom:370.529600pt;}
.y24b{bottom:371.121600pt;}
.y168{bottom:372.229733pt;}
.y108{bottom:373.803067pt;}
.y19f{bottom:375.475867pt;}
.y1bd{bottom:377.120800pt;}
.ya5{bottom:377.785200pt;}
.y1e2{bottom:379.790267pt;}
.y5c{bottom:380.090933pt;}
.yc3{bottom:380.858933pt;}
.y226{bottom:382.321600pt;}
.y12e{bottom:382.509067pt;}
.y38{bottom:383.034933pt;}
.y14a{bottom:384.448400pt;}
.y18e{bottom:385.026400pt;}
.y24a{bottom:387.121600pt;}
.y86{bottom:387.557600pt;}
.ye4{bottom:388.670533pt;}
.y204{bottom:389.068267pt;}
.y107{bottom:389.539067pt;}
.y15{bottom:391.780533pt;}
.y19e{bottom:394.675867pt;}
.y1bc{bottom:394.852800pt;}
.ya4{bottom:396.857200pt;}
.y1e1{bottom:397.786267pt;}
.y5b{bottom:399.418933pt;}
.yc2{bottom:400.186933pt;}
.y149{bottom:400.576400pt;}
.y12d{bottom:401.837067pt;}
.y37{bottom:402.234933pt;}
.y249{bottom:403.121600pt;}
.y18d{bottom:405.026400pt;}
.y106{bottom:405.275067pt;}
.y85{bottom:407.429600pt;}
.y203{bottom:407.606933pt;}
.ye3{bottom:408.142533pt;}
.y14{bottom:408.852533pt;}
.y1bb{bottom:412.584800pt;}
.y19d{bottom:413.875867pt;}
.y1e0{bottom:415.782267pt;}
.ya3{bottom:415.929200pt;}
.y148{bottom:416.704400pt;}
.y167{bottom:418.080400pt;}
.y5a{bottom:418.746933pt;}
.y248{bottom:419.121600pt;}
.yc1{bottom:419.514933pt;}
.y225{bottom:420.193600pt;}
.y105{bottom:421.011067pt;}
.y12c{bottom:421.165067pt;}
.y36{bottom:421.434933pt;}
.y18c{bottom:425.026400pt;}
.y13{bottom:425.924533pt;}
.y202{bottom:426.145600pt;}
.y84{bottom:427.248267pt;}
.y1ba{bottom:430.320800pt;}
.y147{bottom:432.832400pt;}
.y19c{bottom:433.075867pt;}
.y1df{bottom:433.778267pt;}
.y166{bottom:434.082400pt;}
.ya2{bottom:435.001200pt;}
.y104{bottom:436.747067pt;}
.y59{bottom:438.074933pt;}
.yc0{bottom:438.842933pt;}
.y224{bottom:439.921600pt;}
.y12b{bottom:440.503733pt;}
.y35{bottom:440.634933pt;}
.ye2{bottom:441.209200pt;}
.y12{bottom:442.996533pt;}
.y201{bottom:444.684267pt;}
.y83{bottom:447.120267pt;}
.y1b9{bottom:448.052800pt;}
.y146{bottom:448.960400pt;}
.y165{bottom:450.084400pt;}
.y1de{bottom:451.774267pt;}
.y19b{bottom:452.275867pt;}
.y103{bottom:452.483067pt;}
.ya1{bottom:454.073200pt;}
.y247{bottom:454.321600pt;}
.y18b{bottom:456.365067pt;}
.y58{bottom:457.402933pt;}
.ybf{bottom:458.170933pt;}
.y223{bottom:459.654933pt;}
.y12a{bottom:459.831733pt;}
.y34{bottom:459.834933pt;}
.y11{bottom:460.068533pt;}
.y200{bottom:463.222933pt;}
.y145{bottom:465.088400pt;}
.y1b8{bottom:465.784800pt;}
.y164{bottom:466.086400pt;}
.y82{bottom:466.992267pt;}
.y102{bottom:468.219067pt;}
.y1dd{bottom:469.770267pt;}
.y246{bottom:471.921600pt;}
.ya0{bottom:473.145200pt;}
.y18a{bottom:473.165067pt;}
.y57{bottom:476.730933pt;}
.y10{bottom:477.140533pt;}
.ybe{bottom:477.498933pt;}
.y33{bottom:479.034933pt;}
.y129{bottom:479.175733pt;}
.y144{bottom:481.216400pt;}
.y1ff{bottom:481.761600pt;}
.y163{bottom:482.088400pt;}
.y1b7{bottom:483.516800pt;}
.y101{bottom:483.955067pt;}
.y81{bottom:486.864267pt;}
.y1dc{bottom:487.766267pt;}
.ye1{bottom:487.918533pt;}
.y189{bottom:489.965067pt;}
.y9f{bottom:492.217200pt;}
.yf{bottom:494.212533pt;}
.y56{bottom:496.058933pt;}
.ybd{bottom:496.826933pt;}
.y143{bottom:497.344400pt;}
.y162{bottom:498.090400pt;}
.y32{bottom:498.234933pt;}
.y128{bottom:498.503733pt;}
.y100{bottom:499.691067pt;}
.y1fe{bottom:500.300267pt;}
.y222{bottom:503.921600pt;}
.y1db{bottom:505.762267pt;}
.y80{bottom:506.736267pt;}
.y188{bottom:506.765067pt;}
.ye0{bottom:507.390533pt;}
.y245{bottom:508.721600pt;}
.y1b6{bottom:508.809200pt;}
.y9e{bottom:511.289200pt;}
.y142{bottom:513.472400pt;}
.y161{bottom:514.092400pt;}
.y55{bottom:515.386933pt;}
.yff{bottom:515.427067pt;}
.ybc{bottom:516.154933pt;}
.y31{bottom:517.434933pt;}
.y127{bottom:517.831733pt;}
.ye{bottom:518.838133pt;}
.y1fd{bottom:518.838933pt;}
.y221{bottom:520.454933pt;}
.y187{bottom:523.565067pt;}
.y1da{bottom:523.758267pt;}
.y244{bottom:526.321600pt;}
.y7f{bottom:526.608267pt;}
.ydf{bottom:526.862533pt;}
.y141{bottom:529.600400pt;}
.y160{bottom:530.094400pt;}
.y9d{bottom:530.361200pt;}
.yfe{bottom:531.163067pt;}
.y54{bottom:534.714933pt;}
.ybb{bottom:535.482933pt;}
.y30{bottom:536.634933pt;}
.y220{bottom:536.988267pt;}
.y126{bottom:537.159733pt;}
.y1fc{bottom:537.377600pt;}
.y186{bottom:540.365067pt;}
.y1d9{bottom:541.622267pt;}
.y243{bottom:543.921600pt;}
.y140{bottom:545.728400pt;}
.y15f{bottom:546.096400pt;}
.yde{bottom:546.334533pt;}
.y7e{bottom:546.480267pt;}
.y9c{bottom:549.433200pt;}
.y1b5{bottom:552.026933pt;}
.y21f{bottom:553.521600pt;}
.y53{bottom:554.042933pt;}
.yba{bottom:554.810933pt;}
.y2f{bottom:555.834933pt;}
.y1fb{bottom:555.916267pt;}
.y185{bottom:557.165067pt;}
.yfd{bottom:558.256267pt;}
.y1d8{bottom:559.486267pt;}
.y242{bottom:561.521600pt;}
.y13f{bottom:561.856400pt;}
.ydd{bottom:565.806533pt;}
.y7d{bottom:566.352267pt;}
.y125{bottom:567.917067pt;}
.y9b{bottom:568.505200pt;}
.y21e{bottom:570.054933pt;}
.y1b4{bottom:571.498933pt;}
.y52{bottom:573.370933pt;}
.y15e{bottom:573.434933pt;}
.y184{bottom:573.965067pt;}
.yb9{bottom:574.138933pt;}
.y1fa{bottom:574.454933pt;}
.yd{bottom:574.832800pt;}
.y2e{bottom:575.034933pt;}
.yfc{bottom:577.184267pt;}
.y1d7{bottom:577.350267pt;}
.y13e{bottom:577.984400pt;}
.y241{bottom:579.121600pt;}
.y124{bottom:584.045067pt;}
.ydc{bottom:585.134533pt;}
.y7c{bottom:586.224267pt;}
.y9a{bottom:587.577200pt;}
.y183{bottom:590.765067pt;}
.y1b3{bottom:590.970933pt;}
.yc{bottom:591.904800pt;}
.y15d{bottom:592.634933pt;}
.y51{bottom:592.698933pt;}
.yb8{bottom:593.466933pt;}
.y13d{bottom:594.112400pt;}
.y2d{bottom:594.234933pt;}
.y1d6{bottom:595.214267pt;}
.yfb{bottom:596.112267pt;}
.y240{bottom:596.721600pt;}
.y123{bottom:600.173067pt;}
.ydb{bottom:604.462533pt;}
.y7b{bottom:606.096267pt;}
.y21d{bottom:606.326933pt;}
.y99{bottom:606.649200pt;}
.y182{bottom:607.565067pt;}
.y13c{bottom:610.240400pt;}
.y1b2{bottom:610.442933pt;}
.y15c{bottom:611.834933pt;}
.y50{bottom:612.026933pt;}
.yb7{bottom:612.794933pt;}
.y1f9{bottom:612.988267pt;}
.y1d5{bottom:613.078267pt;}
.y2c{bottom:613.434933pt;}
.y23f{bottom:614.321600pt;}
.yfa{bottom:615.040267pt;}
.y122{bottom:616.301067pt;}
.yda{bottom:623.790533pt;}
.y181{bottom:624.365067pt;}
.y21c{bottom:624.454933pt;}
.y98{bottom:625.721200pt;}
.y7a{bottom:625.920267pt;}
.y13b{bottom:626.368400pt;}
.yb{bottom:627.648800pt;}
.y1b1{bottom:629.914933pt;}
.y1d4{bottom:630.942267pt;}
.y15b{bottom:631.034933pt;}
.y4f{bottom:631.354933pt;}
.y23e{bottom:631.921600pt;}
.yb6{bottom:632.122933pt;}
.y121{bottom:632.429067pt;}
.y2b{bottom:632.634933pt;}
.yf9{bottom:633.968267pt;}
.y180{bottom:641.165067pt;}
.y13a{bottom:642.496400pt;}
.yd9{bottom:643.118533pt;}
.y97{bottom:644.793200pt;}
.y79{bottom:645.792267pt;}
.y120{bottom:648.557067pt;}
.y1d3{bottom:648.806267pt;}
.y1b0{bottom:649.386933pt;}
.y23d{bottom:649.521600pt;}
.y15a{bottom:650.234933pt;}
.y4e{bottom:650.682933pt;}
.y1f8{bottom:651.388267pt;}
.yb5{bottom:651.450933pt;}
.y2a{bottom:651.834933pt;}
.ya{bottom:654.304800pt;}
.y17f{bottom:657.965067pt;}
.y21b{bottom:662.369600pt;}
.yd8{bottom:662.446533pt;}
.y96{bottom:663.865200pt;}
.y11f{bottom:664.685067pt;}
.y78{bottom:665.664267pt;}
.yf8{bottom:665.968267pt;}
.y1d2{bottom:666.670267pt;}
.y23c{bottom:667.121600pt;}
.y1af{bottom:668.858933pt;}
.y4d{bottom:670.010933pt;}
.yb4{bottom:670.778933pt;}
.y29{bottom:671.034933pt;}
.y1f7{bottom:671.388267pt;}
.y17e{bottom:674.765067pt;}
.y21a{bottom:680.497600pt;}
.y11e{bottom:680.813067pt;}
.yd7{bottom:681.774533pt;}
.y159{bottom:682.768267pt;}
.y95{bottom:682.937200pt;}
.y23b{bottom:684.721600pt;}
.y77{bottom:685.536267pt;}
.y1ae{bottom:688.330933pt;}
.y4c{bottom:689.338933pt;}
.yb3{bottom:690.106933pt;}
.y28{bottom:690.234933pt;}
.y1f6{bottom:691.388400pt;}
.y17d{bottom:691.565067pt;}
.y1d1{bottom:692.096000pt;}
.y11d{bottom:696.941067pt;}
.y219{bottom:698.625600pt;}
.yd6{bottom:701.102533pt;}
.y94{bottom:702.009200pt;}
.y23a{bottom:702.321600pt;}
.y9{bottom:702.895067pt;}
.y76{bottom:705.408267pt;}
.y1ad{bottom:707.802933pt;}
.y17c{bottom:708.365067pt;}
.y4b{bottom:708.666933pt;}
.y27{bottom:709.434933pt;}
.yf7{bottom:711.056267pt;}
.y11c{bottom:713.069067pt;}
.y218{bottom:716.753600pt;}
.y8{bottom:718.361733pt;}
.y239{bottom:719.921600pt;}
.yd5{bottom:720.430533pt;}
.y17b{bottom:725.165067pt;}
.y75{bottom:725.280267pt;}
.y1ac{bottom:727.274933pt;}
.y4a{bottom:727.994933pt;}
.y1f5{bottom:728.190267pt;}
.y26{bottom:728.634933pt;}
.y11b{bottom:729.197067pt;}
.yf6{bottom:729.984267pt;}
.y7{bottom:733.828400pt;}
.y217{bottom:734.881600pt;}
.y1d0{bottom:735.541600pt;}
.y238{bottom:737.521600pt;}
.yd4{bottom:739.758533pt;}
.y17a{bottom:741.965067pt;}
.y1f4{bottom:744.188267pt;}
.y74{bottom:745.152267pt;}
.y11a{bottom:745.325067pt;}
.y1ab{bottom:746.746933pt;}
.y49{bottom:747.322933pt;}
.y25{bottom:747.834933pt;}
.yf5{bottom:748.912267pt;}
.y6{bottom:749.295067pt;}
.y216{bottom:753.009600pt;}
.y1cf{bottom:753.537600pt;}
.y237{bottom:755.121600pt;}
.y179{bottom:758.765067pt;}
.yd3{bottom:759.086533pt;}
.y119{bottom:761.453067pt;}
.y73{bottom:765.024267pt;}
.y1aa{bottom:766.218933pt;}
.y48{bottom:766.650933pt;}
.y24{bottom:767.034933pt;}
.yf4{bottom:767.840267pt;}
.y1f3{bottom:770.301600pt;}
.y215{bottom:771.137600pt;}
.y1ce{bottom:771.533600pt;}
.y236{bottom:772.721600pt;}
.y178{bottom:775.565067pt;}
.y118{bottom:777.581067pt;}
.yd2{bottom:778.414533pt;}
.y5{bottom:779.121733pt;}
.y72{bottom:784.896267pt;}
.y1a9{bottom:785.690933pt;}
.y47{bottom:785.978933pt;}
.y23{bottom:786.234933pt;}
.yf3{bottom:786.778933pt;}
.y1f2{bottom:788.708267pt;}
.y214{bottom:789.265600pt;}
.y1cd{bottom:789.529600pt;}
.y235{bottom:790.321600pt;}
.y177{bottom:792.365067pt;}
.y117{bottom:793.709067pt;}
.y4{bottom:794.588400pt;}
.yd1{bottom:797.742533pt;}
.y71{bottom:804.762933pt;}
.y1a8{bottom:805.162933pt;}
.y46{bottom:805.306933pt;}
.y22{bottom:805.434933pt;}
.yf2{bottom:805.706933pt;}
.y1f1{bottom:807.114933pt;}
.y213{bottom:807.393600pt;}
.y1cc{bottom:807.525600pt;}
.y234{bottom:807.921600pt;}
.y176{bottom:809.165067pt;}
.y116{bottom:809.837067pt;}
.y3{bottom:810.055067pt;}
.y21{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.y115{bottom:825.965067pt;}
.hb{height:23.288802pt;}
.h9{height:25.757812pt;}
.h3{height:31.700521pt;}
.h18{height:35.546875pt;}
.ha{height:36.229167pt;}
.h2{height:36.796875pt;}
.h15{height:38.636719pt;}
.h4{height:39.101562pt;}
.h16{height:42.656250pt;}
.hc{height:43.022135pt;}
.h17{height:44.156250pt;}
.h5{height:45.286458pt;}
.h14{height:47.550781pt;}
.h7{height:49.815104pt;}
.h8{height:54.343750pt;}
.hd{height:54.365083pt;}
.h11{height:54.407750pt;}
.h12{height:54.429083pt;}
.h10{height:54.471750pt;}
.he{height:54.535750pt;}
.hf{height:54.557083pt;}
.h13{height:54.770417pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:68.031467pt;}
.xe{left:75.590533pt;}
.xa{left:81.259867pt;}
.x1{left:86.929200pt;}
.xd{left:94.488133pt;}
.xb{left:100.157467pt;}
.x3{left:105.829200pt;}
.xc{left:124.727467pt;}
.x2{left:127.262533pt;}
.x11{left:177.711333pt;}
.x12{left:211.013867pt;}
.x5{left:216.647733pt;}
.x4{left:229.911600pt;}
.x6{left:308.243733pt;}
.x7{left:312.931200pt;}
.x10{left:452.227333pt;}
.xf{left:460.194667pt;}
.x8{left:542.257200pt;}
}




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