
    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_470d89fce716d8712dfb9350.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_ddbdf01eda5bc08b43be8948.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_fa0ca22e82b7b8c78a659b9d.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_8f73199832ee162939d43d5b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d47624de31969a3e51b3bdb8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.849000;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_9d12c19d1f3551cddbe91272.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_820cac3d2ad06a90a832bc0d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_23f863f4cfa8f25377403f1f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_b1eb9cf3e81961ca1c6daba0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.826000;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_e602080db216d0752dc24ed3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.947266;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_81a90f6926ad6c4d01331079.woff')format("woff");}.ffb{font-family:ffb;line-height:0.683594;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_d1c792becfbe0f5562fe8182.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_50aab9510ff237ed1afab806.woff')format("woff");}.ffd{font-family:ffd;line-height:0.900000;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);}
.v4{vertical-align:-23.760000px;}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.804200px;}
.v3{vertical-align:23.280000px;}
.v6{vertical-align:24.456000px;}
.v5{vertical-align:37.500000px;}
.ls2d{letter-spacing:-7.200000px;}
.ls39{letter-spacing:-6.912000px;}
.ls10{letter-spacing:-3.960000px;}
.ls32{letter-spacing:-2.880000px;}
.ls34{letter-spacing:-2.808000px;}
.ls36{letter-spacing:-2.304000px;}
.ls49{letter-spacing:-1.872000px;}
.ls1c{letter-spacing:-1.200000px;}
.ls2f{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-1.008000px;}
.ls26{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.864000px;}
.ls4a{letter-spacing:-0.840000px;}
.ls25{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.576000px;}
.ls2e{letter-spacing:-0.504000px;}
.ls47{letter-spacing:-0.480000px;}
.ls33{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.072000px;}
.lse{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.201600px;}
.ls8{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.331200px;}
.ls13{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.576000px;}
.ls30{letter-spacing:0.604800px;}
.ls18{letter-spacing:0.648000px;}
.ls28{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.864000px;}
.ls2a{letter-spacing:0.936000px;}
.ls4{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.080000px;}
.ls43{letter-spacing:1.224000px;}
.ls24{letter-spacing:2.016000px;}
.ls1d{letter-spacing:2.246400px;}
.ls48{letter-spacing:2.928000px;}
.ls37{letter-spacing:3.693600px;}
.ls3a{letter-spacing:4.248000px;}
.ls44{letter-spacing:4.320000px;}
.ls2{letter-spacing:4.560000px;}
.ls46{letter-spacing:4.752000px;}
.ls1e{letter-spacing:7.560000px;}
.ls3b{letter-spacing:7.776000px;}
.ls3c{letter-spacing:7.920000px;}
.ls42{letter-spacing:7.992000px;}
.ls3d{letter-spacing:8.208000px;}
.ls3e{letter-spacing:8.280000px;}
.ls0{letter-spacing:8.436000px;}
.ls3{letter-spacing:8.460000px;}
.ls22{letter-spacing:8.496000px;}
.ls21{letter-spacing:8.640000px;}
.ls38{letter-spacing:8.712000px;}
.ls41{letter-spacing:8.856000px;}
.ls40{letter-spacing:8.928000px;}
.ls3f{letter-spacing:9.000000px;}
.ls2b{letter-spacing:9.072000px;}
.ls2c{letter-spacing:10.440000px;}
.ls1{letter-spacing:10.740000px;}
.ls31{letter-spacing:13.795500px;}
.ls35{letter-spacing:13.796100px;}
.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;}
}
.ws6e{word-spacing:-28.872000px;}
.ws8a{word-spacing:-25.776000px;}
.ws1{word-spacing:-25.320000px;}
.ws26{word-spacing:-20.592000px;}
.ws35{word-spacing:-20.232000px;}
.ws2{word-spacing:-19.872000px;}
.ws4c{word-spacing:-18.648000px;}
.ws78{word-spacing:-18.576000px;}
.ws41{word-spacing:-18.504000px;}
.ws9c{word-spacing:-18.432000px;}
.ws4f{word-spacing:-18.360000px;}
.ws40{word-spacing:-18.288000px;}
.ws9b{word-spacing:-18.216000px;}
.ws25{word-spacing:-18.144000px;}
.ws3b{word-spacing:-18.072000px;}
.ws3c{word-spacing:-18.000000px;}
.ws2e{word-spacing:-17.856000px;}
.ws2d{word-spacing:-17.784000px;}
.ws65{word-spacing:-17.712000px;}
.ws54{word-spacing:-17.640000px;}
.ws79{word-spacing:-17.568000px;}
.ws55{word-spacing:-17.496000px;}
.ws13{word-spacing:-17.424000px;}
.ws59{word-spacing:-17.352000px;}
.ws80{word-spacing:-17.280000px;}
.ws84{word-spacing:-17.208000px;}
.ws3d{word-spacing:-16.992000px;}
.ws66{word-spacing:-16.920000px;}
.ws9d{word-spacing:-16.848000px;}
.ws31{word-spacing:-14.520000px;}
.ws9a{word-spacing:-14.364000px;}
.ws14{word-spacing:-14.162400px;}
.wsa2{word-spacing:-13.488000px;}
.ws42{word-spacing:-12.096000px;}
.ws15{word-spacing:-11.856000px;}
.wsa5{word-spacing:-10.962000px;}
.ws4b{word-spacing:-10.440000px;}
.ws4a{word-spacing:-9.072000px;}
.ws7a{word-spacing:-9.000000px;}
.ws8b{word-spacing:-8.928000px;}
.ws8c{word-spacing:-8.856000px;}
.ws3a{word-spacing:-8.640000px;}
.ws0{word-spacing:-8.496000px;}
.ws4d{word-spacing:-8.460000px;}
.ws75{word-spacing:-8.280000px;}
.ws76{word-spacing:-8.208000px;}
.ws74{word-spacing:-7.920000px;}
.ws68{word-spacing:-7.776000px;}
.ws38{word-spacing:-7.560000px;}
.ws67{word-spacing:-2.376000px;}
.ws60{word-spacing:-2.016000px;}
.ws8f{word-spacing:-1.224000px;}
.ws46{word-spacing:-1.080000px;}
.wsb{word-spacing:-1.008000px;}
.ws45{word-spacing:-0.936000px;}
.ws39{word-spacing:-0.864000px;}
.ws36{word-spacing:-0.792000px;}
.ws47{word-spacing:-0.720000px;}
.ws2b{word-spacing:-0.648000px;}
.ws2c{word-spacing:-0.576000px;}
.ws28{word-spacing:-0.504000px;}
.ws29{word-spacing:-0.432000px;}
.ws27{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.288000px;}
.ws48{word-spacing:-0.252000px;}
.ws49{word-spacing:-0.240000px;}
.wsd{word-spacing:-0.216000px;}
.ws1b{word-spacing:-0.144000px;}
.ws2a{word-spacing:-0.072000px;}
.ws30{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws20{word-spacing:0.072000px;}
.ws22{word-spacing:0.144000px;}
.ws19{word-spacing:0.216000px;}
.ws7{word-spacing:0.288000px;}
.ws16{word-spacing:0.300000px;}
.wsc{word-spacing:0.360000px;}
.ws5b{word-spacing:0.432000px;}
.wsa4{word-spacing:0.480000px;}
.ws52{word-spacing:0.504000px;}
.ws1a{word-spacing:0.576000px;}
.wse{word-spacing:0.648000px;}
.wsf{word-spacing:0.720000px;}
.ws3e{word-spacing:0.792000px;}
.ws2f{word-spacing:0.864000px;}
.ws3f{word-spacing:0.936000px;}
.wsa{word-spacing:1.008000px;}
.ws33{word-spacing:1.080000px;}
.ws87{word-spacing:1.224000px;}
.ws89{word-spacing:1.368000px;}
.wsa3{word-spacing:1.440000px;}
.ws4e{word-spacing:1.728000px;}
.ws6{word-spacing:1.800000px;}
.ws11{word-spacing:1.872000px;}
.ws53{word-spacing:2.016000px;}
.ws6f{word-spacing:2.088000px;}
.ws5e{word-spacing:2.304000px;}
.ws9{word-spacing:2.376000px;}
.ws10{word-spacing:2.400000px;}
.ws8d{word-spacing:2.664000px;}
.ws86{word-spacing:2.736000px;}
.ws24{word-spacing:2.808000px;}
.ws5a{word-spacing:2.880000px;}
.ws83{word-spacing:3.024000px;}
.ws23{word-spacing:3.096000px;}
.ws71{word-spacing:3.168000px;}
.ws9f{word-spacing:3.240000px;}
.ws63{word-spacing:3.312000px;}
.ws21{word-spacing:3.360000px;}
.ws1e{word-spacing:3.528000px;}
.ws94{word-spacing:3.600000px;}
.ws5d{word-spacing:3.888000px;}
.ws1f{word-spacing:3.960000px;}
.ws6d{word-spacing:4.032000px;}
.ws82{word-spacing:4.104000px;}
.ws7e{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws50{word-spacing:4.320000px;}
.ws77{word-spacing:4.464000px;}
.ws72{word-spacing:4.536000px;}
.wsa1{word-spacing:4.608000px;}
.ws43{word-spacing:4.752000px;}
.ws64{word-spacing:4.896000px;}
.ws62{word-spacing:4.968000px;}
.ws32{word-spacing:5.040000px;}
.ws34{word-spacing:5.100000px;}
.ws8e{word-spacing:5.112000px;}
.ws56{word-spacing:5.256000px;}
.ws7f{word-spacing:5.544000px;}
.ws98{word-spacing:5.976000px;}
.ws69{word-spacing:6.048000px;}
.ws7b{word-spacing:6.120000px;}
.ws58{word-spacing:6.192000px;}
.ws81{word-spacing:6.264000px;}
.ws57{word-spacing:6.336000px;}
.ws88{word-spacing:6.696000px;}
.ws99{word-spacing:6.840000px;}
.ws5f{word-spacing:6.912000px;}
.ws6b{word-spacing:6.984000px;}
.ws95{word-spacing:7.128000px;}
.ws51{word-spacing:7.200000px;}
.ws97{word-spacing:7.488000px;}
.ws6c{word-spacing:7.632000px;}
.ws6a{word-spacing:7.704000px;}
.wsa0{word-spacing:7.848000px;}
.ws5c{word-spacing:7.920000px;}
.ws85{word-spacing:8.064000px;}
.ws96{word-spacing:8.136000px;}
.ws93{word-spacing:8.352000px;}
.ws5{word-spacing:8.400000px;}
.ws90{word-spacing:8.568000px;}
.ws92{word-spacing:8.640000px;}
.ws70{word-spacing:8.712000px;}
.ws9e{word-spacing:8.928000px;}
.ws61{word-spacing:9.072000px;}
.ws1d{word-spacing:9.504000px;}
.ws8{word-spacing:9.648000px;}
.ws73{word-spacing:9.792000px;}
.ws91{word-spacing:9.864000px;}
.ws7d{word-spacing:10.008000px;}
.ws44{word-spacing:10.080000px;}
.ws37{word-spacing:10.152000px;}
.ws7c{word-spacing:11.016000px;}
.ws17{word-spacing:11.700000px;}
.ws18{word-spacing:73.140000px;}
.ws12{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._f{margin-left:-68.502000px;}
._15{margin-left:-20.426400px;}
._1e{margin-left:-17.784000px;}
._1f{margin-left:-16.489200px;}
._13{margin-left:-15.456000px;}
._14{margin-left:-14.376000px;}
._1c{margin-left:-12.454800px;}
._20{margin-left:-10.512000px;}
._10{margin-left:-9.262800px;}
._12{margin-left:-7.735200px;}
._1{margin-left:-5.964000px;}
._4{margin-left:-4.320000px;}
._11{margin-left:-3.260400px;}
._7{margin-left:-2.256000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._6{width:3.084000px;}
._8{width:4.406400px;}
._b{width:5.764800px;}
._9{width:6.907200px;}
._5{width:8.544000px;}
._a{width:9.716400px;}
._d{width:11.174400px;}
._1d{width:12.300000px;}
._c{width:13.305600px;}
._1b{width:16.498800px;}
._19{width:18.163200px;}
._16{width:25.014000px;}
._e{width:31.646100px;}
._1a{width:47.209200px;}
._17{width:236.889600px;}
._18{width:365.073600px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y47{bottom:117.000000px;}
.ye9{bottom:117.900000px;}
.y299{bottom:118.368000px;}
.y191{bottom:118.710000px;}
.y1b7{bottom:118.848000px;}
.y2ca{bottom:118.872000px;}
.y20d{bottom:119.136000px;}
.y1f4{bottom:119.508000px;}
.y12e{bottom:119.746050px;}
.y81{bottom:119.883300px;}
.y24f{bottom:120.852000px;}
.y51{bottom:120.933000px;}
.y20{bottom:121.207500px;}
.y46{bottom:132.000000px;}
.y298{bottom:132.912000px;}
.y14d{bottom:136.207500px;}
.y2c9{bottom:137.772000px;}
.y1d0{bottom:139.500000px;}
.ye8{bottom:140.400000px;}
.y1b6{bottom:140.754000px;}
.y20c{bottom:140.880000px;}
.y1f3{bottom:141.414000px;}
.y190{bottom:141.804000px;}
.y12d{bottom:142.246050px;}
.y80{bottom:142.977300px;}
.y50{bottom:143.433000px;}
.y26d{bottom:143.707500px;}
.y24e{bottom:143.946000px;}
.y45{bottom:147.000000px;}
.y297{bottom:147.456000px;}
.ya4{bottom:151.207500px;}
.y16e{bottom:154.500000px;}
.y2c8{bottom:156.672000px;}
.y1f{bottom:159.072600px;}
.y71{bottom:162.000000px;}
.y296{bottom:162.156000px;}
.y20b{bottom:162.624000px;}
.y1b5{bottom:162.660000px;}
.ye7{bottom:162.900000px;}
.y1f2{bottom:163.320000px;}
.y12c{bottom:164.746050px;}
.y18f{bottom:164.898000px;}
.y4f{bottom:165.933000px;}
.y7f{bottom:166.071300px;}
.y44{bottom:166.207500px;}
.y24d{bottom:167.040000px;}
.ya3{bottom:169.500000px;}
.y16d{bottom:173.707500px;}
.y2c7{bottom:175.572000px;}
.y295{bottom:176.856000px;}
.y1bb{bottom:177.300000px;}
.y14c{bottom:177.750000px;}
.y23d{bottom:179.448000px;}
.yc4{bottom:181.207500px;}
.y1e{bottom:181.266600px;}
.y20a{bottom:184.368000px;}
.y43{bottom:184.500000px;}
.y1b4{bottom:184.566000px;}
.y1f1{bottom:185.226000px;}
.ye6{bottom:185.400000px;}
.y12b{bottom:187.246050px;}
.y26c{bottom:187.536000px;}
.y18e{bottom:187.992000px;}
.y4e{bottom:188.433000px;}
.ya2{bottom:188.707500px;}
.y7e{bottom:189.165300px;}
.y24c{bottom:190.134000px;}
.y294{bottom:191.556000px;}
.y22d{bottom:192.150000px;}
.y2c6{bottom:194.472000px;}
.y14b{bottom:199.800000px;}
.y23c{bottom:202.092000px;}
.y1d{bottom:203.460600px;}
.y42{bottom:203.707500px;}
.y8b{bottom:204.183600px;}
.y209{bottom:206.112000px;}
.y293{bottom:206.256000px;}
.y1b3{bottom:206.472000px;}
.y70{bottom:207.000000px;}
.y1f0{bottom:207.132000px;}
.ye5{bottom:207.900000px;}
.y12a{bottom:209.746050px;}
.y26b{bottom:210.036000px;}
.y4d{bottom:210.933000px;}
.y18d{bottom:211.086000px;}
.y7d{bottom:212.259300px;}
.y24b{bottom:213.228000px;}
.y2c5{bottom:213.372000px;}
.y16c{bottom:214.770000px;}
.y22c{bottom:215.100000px;}
.y1cf{bottom:219.780000px;}
.y109{bottom:219.888000px;}
.y292{bottom:220.956000px;}
.y14a{bottom:221.850000px;}
.y23b{bottom:224.736000px;}
.y1c{bottom:225.654600px;}
.y8a{bottom:226.377600px;}
.y208{bottom:227.856000px;}
.y1b2{bottom:228.378000px;}
.y1ef{bottom:229.038000px;}
.y6f{bottom:229.500000px;}
.ye4{bottom:230.400000px;}
.y129{bottom:232.246050px;}
.y2c4{bottom:232.272000px;}
.y26a{bottom:232.392000px;}
.y4c{bottom:233.433000px;}
.y18c{bottom:234.180000px;}
.y7c{bottom:235.353300px;}
.y291{bottom:235.656000px;}
.y24a{bottom:236.322000px;}
.y22b{bottom:238.050000px;}
.y22{bottom:238.351050px;}
.y16b{bottom:238.476000px;}
.yc3{bottom:242.214000px;}
.y1ce{bottom:242.586000px;}
.y108{bottom:242.694000px;}
.y149{bottom:243.900000px;}
.y41{bottom:247.356000px;}
.y23a{bottom:247.380000px;}
.y1b{bottom:247.848600px;}
.y89{bottom:248.571600px;}
.y207{bottom:249.600000px;}
.y1b1{bottom:250.284000px;}
.y290{bottom:250.356000px;}
.y1ee{bottom:250.944000px;}
.y2c3{bottom:251.172000px;}
.y6e{bottom:252.000000px;}
.ye3{bottom:252.900000px;}
.y128{bottom:254.746050px;}
.y269{bottom:254.748000px;}
.y21{bottom:254.851050px;}
.y4b{bottom:255.933000px;}
.y18b{bottom:257.274000px;}
.y7b{bottom:258.447300px;}
.y249{bottom:259.416000px;}
.y22a{bottom:261.000000px;}
.y16a{bottom:262.182000px;}
.yc2{bottom:265.020000px;}
.y28f{bottom:265.056000px;}
.y107{bottom:265.326000px;}
.y1cd{bottom:265.392000px;}
.y148{bottom:265.950000px;}
.y239{bottom:270.024000px;}
.y40{bottom:270.036000px;}
.y1a{bottom:270.042600px;}
.y2c2{bottom:270.072000px;}
.y88{bottom:270.765600px;}
.y206{bottom:271.344000px;}
.y1b0{bottom:272.190000px;}
.y1ed{bottom:272.850000px;}
.y6d{bottom:274.500000px;}
.ye2{bottom:275.400000px;}
.y268{bottom:277.104000px;}
.y127{bottom:277.246050px;}
.y4a{bottom:278.433000px;}
.y28e{bottom:279.756000px;}
.y18a{bottom:280.368000px;}
.y7a{bottom:281.541300px;}
.y248{bottom:282.510000px;}
.y229{bottom:283.950000px;}
.y169{bottom:285.888000px;}
.yc1{bottom:287.826000px;}
.y147{bottom:288.000000px;}
.y106{bottom:288.132000px;}
.y1cc{bottom:288.198000px;}
.y2c1{bottom:288.972000px;}
.y19{bottom:292.236600px;}
.y238{bottom:292.668000px;}
.y3f{bottom:292.680000px;}
.y87{bottom:292.959600px;}
.y205{bottom:293.088000px;}
.y1af{bottom:294.096000px;}
.y28d{bottom:294.456000px;}
.y1ec{bottom:294.756000px;}
.y6c{bottom:297.000000px;}
.ye1{bottom:297.900000px;}
.y267{bottom:299.460000px;}
.y126{bottom:299.746050px;}
.y49{bottom:300.933000px;}
.y189{bottom:303.462000px;}
.y79{bottom:304.635300px;}
.y247{bottom:305.604000px;}
.y228{bottom:306.900000px;}
.y2c0{bottom:307.872000px;}
.y28c{bottom:309.156000px;}
.y168{bottom:309.594000px;}
.y146{bottom:310.050000px;}
.yc0{bottom:310.632000px;}
.y105{bottom:310.938000px;}
.y1cb{bottom:311.004000px;}
.y18{bottom:314.430600px;}
.y204{bottom:314.832000px;}
.y86{bottom:315.177600px;}
.y237{bottom:315.312000px;}
.y3e{bottom:315.324000px;}
.y1ae{bottom:316.002000px;}
.y1eb{bottom:316.662000px;}
.y6b{bottom:319.500000px;}
.ye0{bottom:320.400000px;}
.y266{bottom:321.816000px;}
.y125{bottom:322.246050px;}
.y28b{bottom:323.856000px;}
.y188{bottom:326.556000px;}
.y2bf{bottom:326.772000px;}
.y78{bottom:327.729300px;}
.y246{bottom:328.698000px;}
.y227{bottom:329.850000px;}
.y145{bottom:332.100000px;}
.y167{bottom:333.258000px;}
.ybf{bottom:333.438000px;}
.y104{bottom:333.744000px;}
.y1ca{bottom:333.810000px;}
.y203{bottom:336.576000px;}
.y17{bottom:336.624600px;}
.y85{bottom:337.371600px;}
.y1ad{bottom:337.908000px;}
.y236{bottom:337.956000px;}
.y3d{bottom:337.968000px;}
.y28a{bottom:338.556000px;}
.y1ea{bottom:338.568000px;}
.y6a{bottom:342.000000px;}
.ydf{bottom:342.900000px;}
.y265{bottom:344.172000px;}
.y124{bottom:344.746050px;}
.y2be{bottom:345.672000px;}
.y187{bottom:349.650000px;}
.y77{bottom:350.823300px;}
.y245{bottom:351.792000px;}
.y226{bottom:352.800000px;}
.y289{bottom:353.256000px;}
.y144{bottom:354.150000px;}
.ybe{bottom:356.244000px;}
.y103{bottom:356.550000px;}
.y1c9{bottom:356.616000px;}
.y166{bottom:356.964000px;}
.y202{bottom:358.320000px;}
.y16{bottom:358.818600px;}
.y84{bottom:359.565600px;}
.y1ac{bottom:359.814000px;}
.y1e9{bottom:360.474000px;}
.y3c{bottom:360.612000px;}
.y235{bottom:360.750000px;}
.y69{bottom:364.500000px;}
.yde{bottom:365.400000px;}
.y264{bottom:366.528000px;}
.y123{bottom:367.246050px;}
.y288{bottom:367.956000px;}
.y2bd{bottom:371.130000px;}
.y2d5{bottom:372.000000px;}
.y186{bottom:372.744000px;}
.y76{bottom:373.917300px;}
.y244{bottom:374.886000px;}
.y225{bottom:375.750000px;}
.y1ba{bottom:376.200000px;}
.ybd{bottom:379.026000px;}
.y102{bottom:379.356000px;}
.y1c8{bottom:379.422000px;}
.y165{bottom:380.670000px;}
.y15{bottom:381.012600px;}
.y1ab{bottom:381.720000px;}
.y83{bottom:381.759600px;}
.y287{bottom:382.656000px;}
.y3b{bottom:383.256000px;}
.y234{bottom:383.394000px;}
.y68{bottom:387.000000px;}
.ydd{bottom:387.900000px;}
.y263{bottom:388.884000px;}
.y2bc{bottom:389.274000px;}
.y122{bottom:389.746050px;}
.y2d4{bottom:390.750000px;}
.y185{bottom:395.838000px;}
.y75{bottom:397.011300px;}
.y286{bottom:397.356000px;}
.y243{bottom:397.980000px;}
.y143{bottom:398.250000px;}
.y224{bottom:398.700000px;}
.ybc{bottom:401.832000px;}
.y201{bottom:401.970000px;}
.y101{bottom:402.162000px;}
.y1c7{bottom:402.228000px;}
.y14{bottom:403.206600px;}
.y1aa{bottom:403.626000px;}
.y82{bottom:403.953600px;}
.y1e8{bottom:404.124000px;}
.y164{bottom:404.376000px;}
.y3a{bottom:406.020000px;}
.y233{bottom:406.038000px;}
.y67{bottom:409.500000px;}
.ydc{bottom:410.400000px;}
.y262{bottom:411.240000px;}
.y285{bottom:412.056000px;}
.y121{bottom:412.246050px;}
.y184{bottom:418.932000px;}
.y74{bottom:419.511300px;}
.y142{bottom:420.300000px;}
.y242{bottom:421.074000px;}
.y223{bottom:421.650000px;}
.y200{bottom:423.876000px;}
.ybb{bottom:424.638000px;}
.y100{bottom:424.968000px;}
.y1c6{bottom:425.034000px;}
.y13{bottom:425.400600px;}
.y1a9{bottom:425.532000px;}
.y1e7{bottom:425.868000px;}
.y284{bottom:426.756000px;}
.y163{bottom:428.082000px;}
.y2d3{bottom:428.250000px;}
.y39{bottom:428.664000px;}
.y232{bottom:428.682000px;}
.y66{bottom:432.000000px;}
.ydb{bottom:432.900000px;}
.y261{bottom:433.596000px;}
.y2bb{bottom:434.574000px;}
.y120{bottom:434.746050px;}
.y283{bottom:441.456000px;}
.y183{bottom:442.026000px;}
.y1b9{bottom:442.350000px;}
.y73{bottom:442.605300px;}
.y241{bottom:444.168000px;}
.y222{bottom:444.600000px;}
.y1ff{bottom:445.782000px;}
.y1a8{bottom:447.438000px;}
.yba{bottom:447.444000px;}
.y12{bottom:447.594600px;}
.y1e6{bottom:447.612000px;}
.yff{bottom:447.774000px;}
.y1c5{bottom:447.840000px;}
.y2ba{bottom:449.718000px;}
.y38{bottom:451.308000px;}
.y231{bottom:451.326000px;}
.y162{bottom:451.788000px;}
.y65{bottom:454.500000px;}
.yda{bottom:455.400000px;}
.y260{bottom:455.952000px;}
.y282{bottom:456.156000px;}
.y11f{bottom:457.246050px;}
.y2d2{bottom:458.250000px;}
.ya1{bottom:462.778500px;}
.y1b8{bottom:464.400000px;}
.y2b9{bottom:464.862000px;}
.y182{bottom:465.120000px;}
.y72{bottom:465.699300px;}
.y240{bottom:467.262000px;}
.y221{bottom:467.550000px;}
.y1fe{bottom:467.688000px;}
.y1a7{bottom:469.344000px;}
.y1e5{bottom:469.356000px;}
.y11{bottom:469.788600px;}
.yb9{bottom:470.130000px;}
.yfe{bottom:470.580000px;}
.y1c4{bottom:470.646000px;}
.y37{bottom:473.952000px;}
.y230{bottom:473.970000px;}
.y161{bottom:475.494000px;}
.y64{bottom:477.000000px;}
.y281{bottom:477.228000px;}
.yd9{bottom:477.900000px;}
.y25f{bottom:478.308000px;}
.y11e{bottom:479.746050px;}
.y2b8{bottom:480.006000px;}
.ya0{bottom:481.528500px;}
.y141{bottom:486.450000px;}
.y181{bottom:488.214000px;}
.y1fd{bottom:489.594000px;}
.y23f{bottom:490.356000px;}
.y220{bottom:490.500000px;}
.y1e4{bottom:491.100000px;}
.y1a6{bottom:491.250000px;}
.y10{bottom:491.982600px;}
.yb8{bottom:492.936000px;}
.yfd{bottom:493.386000px;}
.y1c3{bottom:493.452000px;}
.y2b7{bottom:495.150000px;}
.y36{bottom:496.596000px;}
.y22f{bottom:496.614000px;}
.y160{bottom:499.092000px;}
.y63{bottom:499.500000px;}
.y9f{bottom:500.278500px;}
.yd8{bottom:500.400000px;}
.y25e{bottom:500.664000px;}
.y11d{bottom:502.246050px;}
.y140{bottom:508.500000px;}
.y2b6{bottom:510.294000px;}
.y180{bottom:511.308000px;}
.y1fc{bottom:511.500000px;}
.y1e3{bottom:512.844000px;}
.y1a5{bottom:513.156000px;}
.y21f{bottom:513.450000px;}
.yf{bottom:514.176600px;}
.yb7{bottom:515.742000px;}
.yfc{bottom:516.192000px;}
.y1c2{bottom:516.258000px;}
.y2d1{bottom:518.250000px;}
.y9e{bottom:519.028500px;}
.y22e{bottom:519.258000px;}
.y280{bottom:521.628000px;}
.y62{bottom:522.000000px;}
.y15f{bottom:522.798000px;}
.yd7{bottom:522.900000px;}
.y25d{bottom:523.020000px;}
.y11c{bottom:524.746050px;}
.y2b5{bottom:525.438000px;}
.y13f{bottom:530.550000px;}
.y1fb{bottom:533.400000px;}
.y17f{bottom:534.402000px;}
.y1e2{bottom:534.588000px;}
.y1a4{bottom:535.062000px;}
.y27f{bottom:536.328000px;}
.ye{bottom:536.370600px;}
.y23e{bottom:536.400000px;}
.y2d0{bottom:537.000000px;}
.y9d{bottom:537.778500px;}
.yb6{bottom:538.548000px;}
.yfb{bottom:538.998000px;}
.y1c1{bottom:539.064000px;}
.y2b4{bottom:540.582000px;}
.y35{bottom:541.902000px;}
.y61{bottom:544.500000px;}
.y25c{bottom:545.376000px;}
.yd6{bottom:545.400000px;}
.y15e{bottom:546.504000px;}
.y11b{bottom:547.246050px;}
.y27e{bottom:551.028000px;}
.y13e{bottom:552.600000px;}
.y1fa{bottom:555.300000px;}
.y2b3{bottom:555.726000px;}
.y2cf{bottom:555.750000px;}
.y1e1{bottom:556.332000px;}
.y9c{bottom:556.528500px;}
.y1a3{bottom:556.968000px;}
.y17e{bottom:557.496000px;}
.yd{bottom:558.564600px;}
.y21e{bottom:559.350000px;}
.yb5{bottom:561.354000px;}
.yfa{bottom:561.804000px;}
.y1c0{bottom:561.870000px;}
.y34{bottom:564.546000px;}
.y60{bottom:567.000000px;}
.y25b{bottom:567.732000px;}
.yd5{bottom:567.900000px;}
.y11a{bottom:569.746050px;}
.y15d{bottom:570.210000px;}
.y2b2{bottom:570.870000px;}
.y27d{bottom:572.100000px;}
.y2ce{bottom:574.500000px;}
.y13d{bottom:574.650000px;}
.y9b{bottom:575.278500px;}
.y1e0{bottom:578.076000px;}
.y1a2{bottom:578.874000px;}
.y17d{bottom:580.590000px;}
.yc{bottom:580.764600px;}
.y21d{bottom:582.300000px;}
.yb4{bottom:584.160000px;}
.yf9{bottom:584.610000px;}
.y1bf{bottom:584.676000px;}
.y2b1{bottom:586.014000px;}
.y33{bottom:587.190000px;}
.y5f{bottom:589.500000px;}
.y25a{bottom:590.088000px;}
.yd4{bottom:590.400000px;}
.y119{bottom:592.246050px;}
.y2cd{bottom:593.250000px;}
.y15c{bottom:593.916000px;}
.y9a{bottom:594.028500px;}
.y13c{bottom:596.700000px;}
.y1df{bottom:599.820000px;}
.y1a1{bottom:600.780000px;}
.y2b0{bottom:601.158000px;}
.y17c{bottom:603.684000px;}
.y21c{bottom:605.250000px;}
.yb3{bottom:606.966000px;}
.yf8{bottom:607.416000px;}
.y1be{bottom:607.482000px;}
.y32{bottom:609.834000px;}
.y5e{bottom:612.000000px;}
.y259{bottom:612.444000px;}
.y99{bottom:612.778500px;}
.yd3{bottom:612.900000px;}
.y118{bottom:614.746050px;}
.y2af{bottom:616.302000px;}
.y27c{bottom:616.584000px;}
.y15b{bottom:617.622000px;}
.y13b{bottom:618.750000px;}
.y1f9{bottom:620.916000px;}
.y1de{bottom:621.564000px;}
.yb{bottom:621.713550px;}
.y1a0{bottom:622.686000px;}
.y17b{bottom:626.778000px;}
.y21b{bottom:628.200000px;}
.yb2{bottom:629.772000px;}
.yf7{bottom:630.222000px;}
.y1bd{bottom:630.288000px;}
.y2cc{bottom:630.750000px;}
.y2ae{bottom:631.446000px;}
.y98{bottom:631.528500px;}
.y31{bottom:632.478000px;}
.y5d{bottom:634.500000px;}
.y258{bottom:634.764000px;}
.yd2{bottom:635.400000px;}
.y117{bottom:637.246050px;}
.y27b{bottom:638.778000px;}
.y13a{bottom:640.800000px;}
.y15a{bottom:641.328000px;}
.y1f8{bottom:642.822000px;}
.y1dd{bottom:643.308000px;}
.y19f{bottom:644.592000px;}
.y2ad{bottom:646.590000px;}
.ya{bottom:648.968550px;}
.y2cb{bottom:649.500000px;}
.y17a{bottom:649.872000px;}
.y97{bottom:650.278500px;}
.y21a{bottom:651.150000px;}
.yb1{bottom:652.578000px;}
.yf6{bottom:653.028000px;}
.y1bc{bottom:653.094000px;}
.y30{bottom:655.122000px;}
.y5c{bottom:657.000000px;}
.y257{bottom:657.120000px;}
.yd1{bottom:657.900000px;}
.y27a{bottom:660.972000px;}
.y2ac{bottom:661.734000px;}
.y139{bottom:662.850000px;}
.y1f7{bottom:664.728000px;}
.y159{bottom:665.034000px;}
.y1dc{bottom:665.052000px;}
.y19e{bottom:666.498000px;}
.y9{bottom:667.718550px;}
.y116{bottom:668.250000px;}
.y96{bottom:669.028500px;}
.y179{bottom:672.966000px;}
.y219{bottom:674.100000px;}
.yb0{bottom:675.384000px;}
.yf5{bottom:675.834000px;}
.y2ab{bottom:676.878000px;}
.y2f{bottom:677.766000px;}
.y256{bottom:679.476000px;}
.y5b{bottom:679.500000px;}
.yd0{bottom:680.400000px;}
.y279{bottom:683.166000px;}
.y138{bottom:684.900000px;}
.y1f6{bottom:686.634000px;}
.y1db{bottom:686.796000px;}
.y115{bottom:687.000000px;}
.y95{bottom:687.778500px;}
.y19d{bottom:688.404000px;}
.y158{bottom:688.740000px;}
.y2aa{bottom:692.022000px;}
.y178{bottom:696.060000px;}
.y218{bottom:697.050000px;}
.yaf{bottom:698.190000px;}
.yf4{bottom:698.640000px;}
.y2e{bottom:700.410000px;}
.y255{bottom:701.832000px;}
.y5a{bottom:702.000000px;}
.ycf{bottom:702.900000px;}
.y278{bottom:705.360000px;}
.y114{bottom:705.750000px;}
.y94{bottom:706.528500px;}
.y137{bottom:706.950000px;}
.y2a9{bottom:707.166000px;}
.y1f5{bottom:708.540000px;}
.y8{bottom:708.968550px;}
.y19c{bottom:710.310000px;}
.y157{bottom:712.446000px;}
.y177{bottom:719.154000px;}
.y217{bottom:720.000000px;}
.yae{bottom:720.996000px;}
.yf3{bottom:721.446000px;}
.y2a8{bottom:722.310000px;}
.y2d{bottom:723.054000px;}
.y254{bottom:724.188000px;}
.y59{bottom:724.500000px;}
.y93{bottom:725.278500px;}
.yce{bottom:725.400000px;}
.y277{bottom:727.554000px;}
.y7{bottom:727.718550px;}
.y136{bottom:729.000000px;}
.y1da{bottom:730.446000px;}
.y19b{bottom:732.054000px;}
.y156{bottom:736.152000px;}
.y2a7{bottom:737.454000px;}
.y176{bottom:742.248000px;}
.y216{bottom:742.950000px;}
.y113{bottom:743.250000px;}
.yad{bottom:743.802000px;}
.y92{bottom:744.028500px;}
.yf2{bottom:744.252000px;}
.y2c{bottom:745.698000px;}
.y253{bottom:746.544000px;}
.y58{bottom:747.000000px;}
.ycd{bottom:747.900000px;}
.y276{bottom:749.748000px;}
.y135{bottom:751.050000px;}
.y1d9{bottom:752.352000px;}
.y2a6{bottom:752.598000px;}
.y19a{bottom:753.798000px;}
.y155{bottom:759.858000px;}
.y112{bottom:762.000000px;}
.y91{bottom:762.778500px;}
.y175{bottom:765.342000px;}
.y215{bottom:765.900000px;}
.yac{bottom:766.608000px;}
.yf1{bottom:767.058000px;}
.y2a5{bottom:767.742000px;}
.y2b{bottom:768.342000px;}
.y252{bottom:768.900000px;}
.y57{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.ycc{bottom:770.400000px;}
.y275{bottom:771.942000px;}
.y134{bottom:773.100000px;}
.y1d8{bottom:774.258000px;}
.y199{bottom:775.542000px;}
.y111{bottom:780.750000px;}
.y90{bottom:781.528500px;}
.y2a4{bottom:782.886000px;}
.y154{bottom:783.564000px;}
.y174{bottom:788.436000px;}
.y214{bottom:788.850000px;}
.yab{bottom:789.414000px;}
.yf0{bottom:789.864000px;}
.y2a{bottom:790.986000px;}
.y251{bottom:791.256000px;}
.y56{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.ycb{bottom:792.900000px;}
.y274{bottom:794.136000px;}
.y133{bottom:795.150000px;}
.y1d7{bottom:796.164000px;}
.y198{bottom:797.286000px;}
.y2a3{bottom:798.030000px;}
.y110{bottom:799.500000px;}
.y8f{bottom:800.278500px;}
.y153{bottom:807.270000px;}
.y173{bottom:811.530000px;}
.y213{bottom:811.800000px;}
.yaa{bottom:812.220000px;}
.yef{bottom:812.670000px;}
.y2a2{bottom:813.174000px;}
.y250{bottom:813.612000px;}
.y29{bottom:813.630000px;}
.y55{bottom:814.500000px;}
.yca{bottom:815.400000px;}
.y273{bottom:816.330000px;}
.y132{bottom:817.200000px;}
.y1d6{bottom:818.070000px;}
.y10f{bottom:818.250000px;}
.y8e{bottom:819.028500px;}
.y197{bottom:819.030000px;}
.y2a1{bottom:828.330000px;}
.y152{bottom:830.976000px;}
.y172{bottom:834.624000px;}
.y212{bottom:834.750000px;}
.ya9{bottom:835.026000px;}
.yee{bottom:835.476000px;}
.y28{bottom:836.274000px;}
.y54{bottom:837.000000px;}
.yc9{bottom:837.900000px;}
.y272{bottom:838.524000px;}
.y131{bottom:839.250000px;}
.y1d5{bottom:839.976000px;}
.y196{bottom:840.774000px;}
.y2a0{bottom:843.474000px;}
.y8d{bottom:846.013500px;}
.y151{bottom:854.682000px;}
.y8c{bottom:855.388500px;}
.y10e{bottom:855.750000px;}
.y211{bottom:857.700000px;}
.y171{bottom:857.718000px;}
.ya8{bottom:857.832000px;}
.yed{bottom:858.282000px;}
.y29f{bottom:858.618000px;}
.y27{bottom:858.918000px;}
.y4{bottom:859.500000px;}
.yc8{bottom:860.400000px;}
.y271{bottom:860.718000px;}
.y130{bottom:861.300000px;}
.y1d4{bottom:861.882000px;}
.y195{bottom:862.518000px;}
.y29e{bottom:873.762000px;}
.y10d{bottom:874.500000px;}
.y150{bottom:878.388000px;}
.ya7{bottom:880.638000px;}
.y210{bottom:880.650000px;}
.y170{bottom:880.812000px;}
.yec{bottom:881.088000px;}
.y26{bottom:881.562000px;}
.y53{bottom:882.000000px;}
.yc7{bottom:882.900000px;}
.y270{bottom:882.912000px;}
.y12f{bottom:883.350000px;}
.y1d3{bottom:883.788000px;}
.y194{bottom:884.262000px;}
.y29d{bottom:888.906000px;}
.y3{bottom:889.500000px;}
.y10c{bottom:893.250000px;}
.y14f{bottom:902.094000px;}
.ya6{bottom:903.444000px;}
.y20f{bottom:903.600000px;}
.yeb{bottom:903.894000px;}
.y16f{bottom:903.906000px;}
.y29c{bottom:904.062000px;}
.y25{bottom:904.206000px;}
.y52{bottom:904.500000px;}
.y26f{bottom:905.106000px;}
.yc6{bottom:905.400000px;}
.y1d2{bottom:905.694000px;}
.y193{bottom:906.006000px;}
.y10b{bottom:912.000000px;}
.y29b{bottom:919.206000px;}
.y2{bottom:919.500000px;}
.y14e{bottom:925.800000px;}
.ya5{bottom:926.250000px;}
.y20e{bottom:926.550000px;}
.yea{bottom:926.700000px;}
.y24{bottom:926.850000px;}
.y48{bottom:927.000000px;}
.y26e{bottom:927.300000px;}
.yc5{bottom:927.450000px;}
.y1d1{bottom:927.600000px;}
.y192{bottom:927.750000px;}
.y10a{bottom:930.750000px;}
.y29a{bottom:934.350000px;}
.h6{height:30.313623px;}
.h8{height:33.600000px;}
.h19{height:39.072000px;}
.hc{height:40.757812px;}
.h16{height:47.988281px;}
.h7{height:48.840000px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h9{height:51.222656px;}
.h1a{height:55.463086px;}
.h5{height:55.467286px;}
.h4{height:61.136719px;}
.h17{height:65.955703px;}
.ha{height:66.075703px;}
.hb{height:66.411703px;}
.he{height:66.459703px;}
.hd{height:66.555703px;}
.h11{height:66.651703px;}
.h18{height:66.699703px;}
.h14{height:66.723703px;}
.h15{height:66.819703px;}
.h13{height:66.987703px;}
.h10{height:67.035703px;}
.h12{height:67.251703px;}
.hf{height:88.447266px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x8{left:67.500000px;}
.xd{left:76.369950px;}
.xa{left:82.386000px;}
.xf{left:97.254300px;}
.xb{left:104.209950px;}
.x2{left:112.500000px;}
.x6{left:127.381950px;}
.x9{left:135.000000px;}
.xe{left:256.114950px;}
.x3{left:303.557550px;}
.xc{left:306.814950px;}
.x10{left:331.119300px;}
.x4{left:390.572550px;}
.x7{left:435.374400px;}
.x5{left:453.407550px;}
.x1{left:625.781250px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.603733pt;}
.v3{vertical-align:20.693333pt;}
.v6{vertical-align:21.738667pt;}
.v5{vertical-align:33.333333pt;}
.ls2d{letter-spacing:-6.400000pt;}
.ls39{letter-spacing:-6.144000pt;}
.ls10{letter-spacing:-3.520000pt;}
.ls32{letter-spacing:-2.560000pt;}
.ls34{letter-spacing:-2.496000pt;}
.ls36{letter-spacing:-2.048000pt;}
.ls49{letter-spacing:-1.664000pt;}
.ls1c{letter-spacing:-1.066667pt;}
.ls2f{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls26{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.768000pt;}
.ls4a{letter-spacing:-0.746667pt;}
.ls25{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls2e{letter-spacing:-0.448000pt;}
.ls47{letter-spacing:-0.426667pt;}
.ls33{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.179200pt;}
.ls8{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.294400pt;}
.ls13{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.512000pt;}
.ls30{letter-spacing:0.537600pt;}
.ls18{letter-spacing:0.576000pt;}
.ls28{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.768000pt;}
.ls2a{letter-spacing:0.832000pt;}
.ls4{letter-spacing:0.896000pt;}
.ls27{letter-spacing:0.960000pt;}
.ls43{letter-spacing:1.088000pt;}
.ls24{letter-spacing:1.792000pt;}
.ls1d{letter-spacing:1.996800pt;}
.ls48{letter-spacing:2.602667pt;}
.ls37{letter-spacing:3.283200pt;}
.ls3a{letter-spacing:3.776000pt;}
.ls44{letter-spacing:3.840000pt;}
.ls2{letter-spacing:4.053333pt;}
.ls46{letter-spacing:4.224000pt;}
.ls1e{letter-spacing:6.720000pt;}
.ls3b{letter-spacing:6.912000pt;}
.ls3c{letter-spacing:7.040000pt;}
.ls42{letter-spacing:7.104000pt;}
.ls3d{letter-spacing:7.296000pt;}
.ls3e{letter-spacing:7.360000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls3{letter-spacing:7.520000pt;}
.ls22{letter-spacing:7.552000pt;}
.ls21{letter-spacing:7.680000pt;}
.ls38{letter-spacing:7.744000pt;}
.ls41{letter-spacing:7.872000pt;}
.ls40{letter-spacing:7.936000pt;}
.ls3f{letter-spacing:8.000000pt;}
.ls2b{letter-spacing:8.064000pt;}
.ls2c{letter-spacing:9.280000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls31{letter-spacing:12.262667pt;}
.ls35{letter-spacing:12.263200pt;}
.ws6e{word-spacing:-25.664000pt;}
.ws8a{word-spacing:-22.912000pt;}
.ws1{word-spacing:-22.506667pt;}
.ws26{word-spacing:-18.304000pt;}
.ws35{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.664000pt;}
.ws4c{word-spacing:-16.576000pt;}
.ws78{word-spacing:-16.512000pt;}
.ws41{word-spacing:-16.448000pt;}
.ws9c{word-spacing:-16.384000pt;}
.ws4f{word-spacing:-16.320000pt;}
.ws40{word-spacing:-16.256000pt;}
.ws9b{word-spacing:-16.192000pt;}
.ws25{word-spacing:-16.128000pt;}
.ws3b{word-spacing:-16.064000pt;}
.ws3c{word-spacing:-16.000000pt;}
.ws2e{word-spacing:-15.872000pt;}
.ws2d{word-spacing:-15.808000pt;}
.ws65{word-spacing:-15.744000pt;}
.ws54{word-spacing:-15.680000pt;}
.ws79{word-spacing:-15.616000pt;}
.ws55{word-spacing:-15.552000pt;}
.ws13{word-spacing:-15.488000pt;}
.ws59{word-spacing:-15.424000pt;}
.ws80{word-spacing:-15.360000pt;}
.ws84{word-spacing:-15.296000pt;}
.ws3d{word-spacing:-15.104000pt;}
.ws66{word-spacing:-15.040000pt;}
.ws9d{word-spacing:-14.976000pt;}
.ws31{word-spacing:-12.906667pt;}
.ws9a{word-spacing:-12.768000pt;}
.ws14{word-spacing:-12.588800pt;}
.wsa2{word-spacing:-11.989333pt;}
.ws42{word-spacing:-10.752000pt;}
.ws15{word-spacing:-10.538667pt;}
.wsa5{word-spacing:-9.744000pt;}
.ws4b{word-spacing:-9.280000pt;}
.ws4a{word-spacing:-8.064000pt;}
.ws7a{word-spacing:-8.000000pt;}
.ws8b{word-spacing:-7.936000pt;}
.ws8c{word-spacing:-7.872000pt;}
.ws3a{word-spacing:-7.680000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws4d{word-spacing:-7.520000pt;}
.ws75{word-spacing:-7.360000pt;}
.ws76{word-spacing:-7.296000pt;}
.ws74{word-spacing:-7.040000pt;}
.ws68{word-spacing:-6.912000pt;}
.ws38{word-spacing:-6.720000pt;}
.ws67{word-spacing:-2.112000pt;}
.ws60{word-spacing:-1.792000pt;}
.ws8f{word-spacing:-1.088000pt;}
.ws46{word-spacing:-0.960000pt;}
.wsb{word-spacing:-0.896000pt;}
.ws45{word-spacing:-0.832000pt;}
.ws39{word-spacing:-0.768000pt;}
.ws36{word-spacing:-0.704000pt;}
.ws47{word-spacing:-0.640000pt;}
.ws2b{word-spacing:-0.576000pt;}
.ws2c{word-spacing:-0.512000pt;}
.ws28{word-spacing:-0.448000pt;}
.ws29{word-spacing:-0.384000pt;}
.ws27{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws48{word-spacing:-0.224000pt;}
.ws49{word-spacing:-0.213333pt;}
.wsd{word-spacing:-0.192000pt;}
.ws1b{word-spacing:-0.128000pt;}
.ws2a{word-spacing:-0.064000pt;}
.ws30{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws20{word-spacing:0.064000pt;}
.ws22{word-spacing:0.128000pt;}
.ws19{word-spacing:0.192000pt;}
.ws7{word-spacing:0.256000pt;}
.ws16{word-spacing:0.266667pt;}
.wsc{word-spacing:0.320000pt;}
.ws5b{word-spacing:0.384000pt;}
.wsa4{word-spacing:0.426667pt;}
.ws52{word-spacing:0.448000pt;}
.ws1a{word-spacing:0.512000pt;}
.wse{word-spacing:0.576000pt;}
.wsf{word-spacing:0.640000pt;}
.ws3e{word-spacing:0.704000pt;}
.ws2f{word-spacing:0.768000pt;}
.ws3f{word-spacing:0.832000pt;}
.wsa{word-spacing:0.896000pt;}
.ws33{word-spacing:0.960000pt;}
.ws87{word-spacing:1.088000pt;}
.ws89{word-spacing:1.216000pt;}
.wsa3{word-spacing:1.280000pt;}
.ws4e{word-spacing:1.536000pt;}
.ws6{word-spacing:1.600000pt;}
.ws11{word-spacing:1.664000pt;}
.ws53{word-spacing:1.792000pt;}
.ws6f{word-spacing:1.856000pt;}
.ws5e{word-spacing:2.048000pt;}
.ws9{word-spacing:2.112000pt;}
.ws10{word-spacing:2.133333pt;}
.ws8d{word-spacing:2.368000pt;}
.ws86{word-spacing:2.432000pt;}
.ws24{word-spacing:2.496000pt;}
.ws5a{word-spacing:2.560000pt;}
.ws83{word-spacing:2.688000pt;}
.ws23{word-spacing:2.752000pt;}
.ws71{word-spacing:2.816000pt;}
.ws9f{word-spacing:2.880000pt;}
.ws63{word-spacing:2.944000pt;}
.ws21{word-spacing:2.986667pt;}
.ws1e{word-spacing:3.136000pt;}
.ws94{word-spacing:3.200000pt;}
.ws5d{word-spacing:3.456000pt;}
.ws1f{word-spacing:3.520000pt;}
.ws6d{word-spacing:3.584000pt;}
.ws82{word-spacing:3.648000pt;}
.ws7e{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws50{word-spacing:3.840000pt;}
.ws77{word-spacing:3.968000pt;}
.ws72{word-spacing:4.032000pt;}
.wsa1{word-spacing:4.096000pt;}
.ws43{word-spacing:4.224000pt;}
.ws64{word-spacing:4.352000pt;}
.ws62{word-spacing:4.416000pt;}
.ws32{word-spacing:4.480000pt;}
.ws34{word-spacing:4.533333pt;}
.ws8e{word-spacing:4.544000pt;}
.ws56{word-spacing:4.672000pt;}
.ws7f{word-spacing:4.928000pt;}
.ws98{word-spacing:5.312000pt;}
.ws69{word-spacing:5.376000pt;}
.ws7b{word-spacing:5.440000pt;}
.ws58{word-spacing:5.504000pt;}
.ws81{word-spacing:5.568000pt;}
.ws57{word-spacing:5.632000pt;}
.ws88{word-spacing:5.952000pt;}
.ws99{word-spacing:6.080000pt;}
.ws5f{word-spacing:6.144000pt;}
.ws6b{word-spacing:6.208000pt;}
.ws95{word-spacing:6.336000pt;}
.ws51{word-spacing:6.400000pt;}
.ws97{word-spacing:6.656000pt;}
.ws6c{word-spacing:6.784000pt;}
.ws6a{word-spacing:6.848000pt;}
.wsa0{word-spacing:6.976000pt;}
.ws5c{word-spacing:7.040000pt;}
.ws85{word-spacing:7.168000pt;}
.ws96{word-spacing:7.232000pt;}
.ws93{word-spacing:7.424000pt;}
.ws5{word-spacing:7.466667pt;}
.ws90{word-spacing:7.616000pt;}
.ws92{word-spacing:7.680000pt;}
.ws70{word-spacing:7.744000pt;}
.ws9e{word-spacing:7.936000pt;}
.ws61{word-spacing:8.064000pt;}
.ws1d{word-spacing:8.448000pt;}
.ws8{word-spacing:8.576000pt;}
.ws73{word-spacing:8.704000pt;}
.ws91{word-spacing:8.768000pt;}
.ws7d{word-spacing:8.896000pt;}
.ws44{word-spacing:8.960000pt;}
.ws37{word-spacing:9.024000pt;}
.ws7c{word-spacing:9.792000pt;}
.ws17{word-spacing:10.400000pt;}
.ws18{word-spacing:65.013333pt;}
.ws12{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._f{margin-left:-60.890667pt;}
._15{margin-left:-18.156800pt;}
._1e{margin-left:-15.808000pt;}
._1f{margin-left:-14.657067pt;}
._13{margin-left:-13.738667pt;}
._14{margin-left:-12.778667pt;}
._1c{margin-left:-11.070933pt;}
._20{margin-left:-9.344000pt;}
._10{margin-left:-8.233600pt;}
._12{margin-left:-6.875733pt;}
._1{margin-left:-5.301333pt;}
._4{margin-left:-3.840000pt;}
._11{margin-left:-2.898133pt;}
._7{margin-left:-2.005333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._6{width:2.741333pt;}
._8{width:3.916800pt;}
._b{width:5.124267pt;}
._9{width:6.139733pt;}
._5{width:7.594667pt;}
._a{width:8.636800pt;}
._d{width:9.932800pt;}
._1d{width:10.933333pt;}
._c{width:11.827200pt;}
._1b{width:14.665600pt;}
._19{width:16.145067pt;}
._16{width:22.234667pt;}
._e{width:28.129867pt;}
._1a{width:41.963733pt;}
._17{width:210.568533pt;}
._18{width:324.509867pt;}
.fs5{font-size:31.733333pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y47{bottom:104.000000pt;}
.ye9{bottom:104.800000pt;}
.y299{bottom:105.216000pt;}
.y191{bottom:105.520000pt;}
.y1b7{bottom:105.642667pt;}
.y2ca{bottom:105.664000pt;}
.y20d{bottom:105.898667pt;}
.y1f4{bottom:106.229333pt;}
.y12e{bottom:106.440933pt;}
.y81{bottom:106.562933pt;}
.y24f{bottom:107.424000pt;}
.y51{bottom:107.496000pt;}
.y20{bottom:107.740000pt;}
.y46{bottom:117.333333pt;}
.y298{bottom:118.144000pt;}
.y14d{bottom:121.073333pt;}
.y2c9{bottom:122.464000pt;}
.y1d0{bottom:124.000000pt;}
.ye8{bottom:124.800000pt;}
.y1b6{bottom:125.114667pt;}
.y20c{bottom:125.226667pt;}
.y1f3{bottom:125.701333pt;}
.y190{bottom:126.048000pt;}
.y12d{bottom:126.440933pt;}
.y80{bottom:127.090933pt;}
.y50{bottom:127.496000pt;}
.y26d{bottom:127.740000pt;}
.y24e{bottom:127.952000pt;}
.y45{bottom:130.666667pt;}
.y297{bottom:131.072000pt;}
.ya4{bottom:134.406667pt;}
.y16e{bottom:137.333333pt;}
.y2c8{bottom:139.264000pt;}
.y1f{bottom:141.397867pt;}
.y71{bottom:144.000000pt;}
.y296{bottom:144.138667pt;}
.y20b{bottom:144.554667pt;}
.y1b5{bottom:144.586667pt;}
.ye7{bottom:144.800000pt;}
.y1f2{bottom:145.173333pt;}
.y12c{bottom:146.440933pt;}
.y18f{bottom:146.576000pt;}
.y4f{bottom:147.496000pt;}
.y7f{bottom:147.618933pt;}
.y44{bottom:147.740000pt;}
.y24d{bottom:148.480000pt;}
.ya3{bottom:150.666667pt;}
.y16d{bottom:154.406667pt;}
.y2c7{bottom:156.064000pt;}
.y295{bottom:157.205333pt;}
.y1bb{bottom:157.600000pt;}
.y14c{bottom:158.000000pt;}
.y23d{bottom:159.509333pt;}
.yc4{bottom:161.073333pt;}
.y1e{bottom:161.125867pt;}
.y20a{bottom:163.882667pt;}
.y43{bottom:164.000000pt;}
.y1b4{bottom:164.058667pt;}
.y1f1{bottom:164.645333pt;}
.ye6{bottom:164.800000pt;}
.y12b{bottom:166.440933pt;}
.y26c{bottom:166.698667pt;}
.y18e{bottom:167.104000pt;}
.y4e{bottom:167.496000pt;}
.ya2{bottom:167.740000pt;}
.y7e{bottom:168.146933pt;}
.y24c{bottom:169.008000pt;}
.y294{bottom:170.272000pt;}
.y22d{bottom:170.800000pt;}
.y2c6{bottom:172.864000pt;}
.y14b{bottom:177.600000pt;}
.y23c{bottom:179.637333pt;}
.y1d{bottom:180.853867pt;}
.y42{bottom:181.073333pt;}
.y8b{bottom:181.496533pt;}
.y209{bottom:183.210667pt;}
.y293{bottom:183.338667pt;}
.y1b3{bottom:183.530667pt;}
.y70{bottom:184.000000pt;}
.y1f0{bottom:184.117333pt;}
.ye5{bottom:184.800000pt;}
.y12a{bottom:186.440933pt;}
.y26b{bottom:186.698667pt;}
.y4d{bottom:187.496000pt;}
.y18d{bottom:187.632000pt;}
.y7d{bottom:188.674933pt;}
.y24b{bottom:189.536000pt;}
.y2c5{bottom:189.664000pt;}
.y16c{bottom:190.906667pt;}
.y22c{bottom:191.200000pt;}
.y1cf{bottom:195.360000pt;}
.y109{bottom:195.456000pt;}
.y292{bottom:196.405333pt;}
.y14a{bottom:197.200000pt;}
.y23b{bottom:199.765333pt;}
.y1c{bottom:200.581867pt;}
.y8a{bottom:201.224533pt;}
.y208{bottom:202.538667pt;}
.y1b2{bottom:203.002667pt;}
.y1ef{bottom:203.589333pt;}
.y6f{bottom:204.000000pt;}
.ye4{bottom:204.800000pt;}
.y129{bottom:206.440933pt;}
.y2c4{bottom:206.464000pt;}
.y26a{bottom:206.570667pt;}
.y4c{bottom:207.496000pt;}
.y18c{bottom:208.160000pt;}
.y7c{bottom:209.202933pt;}
.y291{bottom:209.472000pt;}
.y24a{bottom:210.064000pt;}
.y22b{bottom:211.600000pt;}
.y22{bottom:211.867600pt;}
.y16b{bottom:211.978667pt;}
.yc3{bottom:215.301333pt;}
.y1ce{bottom:215.632000pt;}
.y108{bottom:215.728000pt;}
.y149{bottom:216.800000pt;}
.y41{bottom:219.872000pt;}
.y23a{bottom:219.893333pt;}
.y1b{bottom:220.309867pt;}
.y89{bottom:220.952533pt;}
.y207{bottom:221.866667pt;}
.y1b1{bottom:222.474667pt;}
.y290{bottom:222.538667pt;}
.y1ee{bottom:223.061333pt;}
.y2c3{bottom:223.264000pt;}
.y6e{bottom:224.000000pt;}
.ye3{bottom:224.800000pt;}
.y128{bottom:226.440933pt;}
.y269{bottom:226.442667pt;}
.y21{bottom:226.534267pt;}
.y4b{bottom:227.496000pt;}
.y18b{bottom:228.688000pt;}
.y7b{bottom:229.730933pt;}
.y249{bottom:230.592000pt;}
.y22a{bottom:232.000000pt;}
.y16a{bottom:233.050667pt;}
.yc2{bottom:235.573333pt;}
.y28f{bottom:235.605333pt;}
.y107{bottom:235.845333pt;}
.y1cd{bottom:235.904000pt;}
.y148{bottom:236.400000pt;}
.y239{bottom:240.021333pt;}
.y40{bottom:240.032000pt;}
.y1a{bottom:240.037867pt;}
.y2c2{bottom:240.064000pt;}
.y88{bottom:240.680533pt;}
.y206{bottom:241.194667pt;}
.y1b0{bottom:241.946667pt;}
.y1ed{bottom:242.533333pt;}
.y6d{bottom:244.000000pt;}
.ye2{bottom:244.800000pt;}
.y268{bottom:246.314667pt;}
.y127{bottom:246.440933pt;}
.y4a{bottom:247.496000pt;}
.y28e{bottom:248.672000pt;}
.y18a{bottom:249.216000pt;}
.y7a{bottom:250.258933pt;}
.y248{bottom:251.120000pt;}
.y229{bottom:252.400000pt;}
.y169{bottom:254.122667pt;}
.yc1{bottom:255.845333pt;}
.y147{bottom:256.000000pt;}
.y106{bottom:256.117333pt;}
.y1cc{bottom:256.176000pt;}
.y2c1{bottom:256.864000pt;}
.y19{bottom:259.765867pt;}
.y238{bottom:260.149333pt;}
.y3f{bottom:260.160000pt;}
.y87{bottom:260.408533pt;}
.y205{bottom:260.522667pt;}
.y1af{bottom:261.418667pt;}
.y28d{bottom:261.738667pt;}
.y1ec{bottom:262.005333pt;}
.y6c{bottom:264.000000pt;}
.ye1{bottom:264.800000pt;}
.y267{bottom:266.186667pt;}
.y126{bottom:266.440933pt;}
.y49{bottom:267.496000pt;}
.y189{bottom:269.744000pt;}
.y79{bottom:270.786933pt;}
.y247{bottom:271.648000pt;}
.y228{bottom:272.800000pt;}
.y2c0{bottom:273.664000pt;}
.y28c{bottom:274.805333pt;}
.y168{bottom:275.194667pt;}
.y146{bottom:275.600000pt;}
.yc0{bottom:276.117333pt;}
.y105{bottom:276.389333pt;}
.y1cb{bottom:276.448000pt;}
.y18{bottom:279.493867pt;}
.y204{bottom:279.850667pt;}
.y86{bottom:280.157867pt;}
.y237{bottom:280.277333pt;}
.y3e{bottom:280.288000pt;}
.y1ae{bottom:280.890667pt;}
.y1eb{bottom:281.477333pt;}
.y6b{bottom:284.000000pt;}
.ye0{bottom:284.800000pt;}
.y266{bottom:286.058667pt;}
.y125{bottom:286.440933pt;}
.y28b{bottom:287.872000pt;}
.y188{bottom:290.272000pt;}
.y2bf{bottom:290.464000pt;}
.y78{bottom:291.314933pt;}
.y246{bottom:292.176000pt;}
.y227{bottom:293.200000pt;}
.y145{bottom:295.200000pt;}
.y167{bottom:296.229333pt;}
.ybf{bottom:296.389333pt;}
.y104{bottom:296.661333pt;}
.y1ca{bottom:296.720000pt;}
.y203{bottom:299.178667pt;}
.y17{bottom:299.221867pt;}
.y85{bottom:299.885867pt;}
.y1ad{bottom:300.362667pt;}
.y236{bottom:300.405333pt;}
.y3d{bottom:300.416000pt;}
.y28a{bottom:300.938667pt;}
.y1ea{bottom:300.949333pt;}
.y6a{bottom:304.000000pt;}
.ydf{bottom:304.800000pt;}
.y265{bottom:305.930667pt;}
.y124{bottom:306.440933pt;}
.y2be{bottom:307.264000pt;}
.y187{bottom:310.800000pt;}
.y77{bottom:311.842933pt;}
.y245{bottom:312.704000pt;}
.y226{bottom:313.600000pt;}
.y289{bottom:314.005333pt;}
.y144{bottom:314.800000pt;}
.ybe{bottom:316.661333pt;}
.y103{bottom:316.933333pt;}
.y1c9{bottom:316.992000pt;}
.y166{bottom:317.301333pt;}
.y202{bottom:318.506667pt;}
.y16{bottom:318.949867pt;}
.y84{bottom:319.613867pt;}
.y1ac{bottom:319.834667pt;}
.y1e9{bottom:320.421333pt;}
.y3c{bottom:320.544000pt;}
.y235{bottom:320.666667pt;}
.y69{bottom:324.000000pt;}
.yde{bottom:324.800000pt;}
.y264{bottom:325.802667pt;}
.y123{bottom:326.440933pt;}
.y288{bottom:327.072000pt;}
.y2bd{bottom:329.893333pt;}
.y2d5{bottom:330.666667pt;}
.y186{bottom:331.328000pt;}
.y76{bottom:332.370933pt;}
.y244{bottom:333.232000pt;}
.y225{bottom:334.000000pt;}
.y1ba{bottom:334.400000pt;}
.ybd{bottom:336.912000pt;}
.y102{bottom:337.205333pt;}
.y1c8{bottom:337.264000pt;}
.y165{bottom:338.373333pt;}
.y15{bottom:338.677867pt;}
.y1ab{bottom:339.306667pt;}
.y83{bottom:339.341867pt;}
.y287{bottom:340.138667pt;}
.y3b{bottom:340.672000pt;}
.y234{bottom:340.794667pt;}
.y68{bottom:344.000000pt;}
.ydd{bottom:344.800000pt;}
.y263{bottom:345.674667pt;}
.y2bc{bottom:346.021333pt;}
.y122{bottom:346.440933pt;}
.y2d4{bottom:347.333333pt;}
.y185{bottom:351.856000pt;}
.y75{bottom:352.898933pt;}
.y286{bottom:353.205333pt;}
.y243{bottom:353.760000pt;}
.y143{bottom:354.000000pt;}
.y224{bottom:354.400000pt;}
.ybc{bottom:357.184000pt;}
.y201{bottom:357.306667pt;}
.y101{bottom:357.477333pt;}
.y1c7{bottom:357.536000pt;}
.y14{bottom:358.405867pt;}
.y1aa{bottom:358.778667pt;}
.y82{bottom:359.069867pt;}
.y1e8{bottom:359.221333pt;}
.y164{bottom:359.445333pt;}
.y3a{bottom:360.906667pt;}
.y233{bottom:360.922667pt;}
.y67{bottom:364.000000pt;}
.ydc{bottom:364.800000pt;}
.y262{bottom:365.546667pt;}
.y285{bottom:366.272000pt;}
.y121{bottom:366.440933pt;}
.y184{bottom:372.384000pt;}
.y74{bottom:372.898933pt;}
.y142{bottom:373.600000pt;}
.y242{bottom:374.288000pt;}
.y223{bottom:374.800000pt;}
.y200{bottom:376.778667pt;}
.ybb{bottom:377.456000pt;}
.y100{bottom:377.749333pt;}
.y1c6{bottom:377.808000pt;}
.y13{bottom:378.133867pt;}
.y1a9{bottom:378.250667pt;}
.y1e7{bottom:378.549333pt;}
.y284{bottom:379.338667pt;}
.y163{bottom:380.517333pt;}
.y2d3{bottom:380.666667pt;}
.y39{bottom:381.034667pt;}
.y232{bottom:381.050667pt;}
.y66{bottom:384.000000pt;}
.ydb{bottom:384.800000pt;}
.y261{bottom:385.418667pt;}
.y2bb{bottom:386.288000pt;}
.y120{bottom:386.440933pt;}
.y283{bottom:392.405333pt;}
.y183{bottom:392.912000pt;}
.y1b9{bottom:393.200000pt;}
.y73{bottom:393.426933pt;}
.y241{bottom:394.816000pt;}
.y222{bottom:395.200000pt;}
.y1ff{bottom:396.250667pt;}
.y1a8{bottom:397.722667pt;}
.yba{bottom:397.728000pt;}
.y12{bottom:397.861867pt;}
.y1e6{bottom:397.877333pt;}
.yff{bottom:398.021333pt;}
.y1c5{bottom:398.080000pt;}
.y2ba{bottom:399.749333pt;}
.y38{bottom:401.162667pt;}
.y231{bottom:401.178667pt;}
.y162{bottom:401.589333pt;}
.y65{bottom:404.000000pt;}
.yda{bottom:404.800000pt;}
.y260{bottom:405.290667pt;}
.y282{bottom:405.472000pt;}
.y11f{bottom:406.440933pt;}
.y2d2{bottom:407.333333pt;}
.ya1{bottom:411.358667pt;}
.y1b8{bottom:412.800000pt;}
.y2b9{bottom:413.210667pt;}
.y182{bottom:413.440000pt;}
.y72{bottom:413.954933pt;}
.y240{bottom:415.344000pt;}
.y221{bottom:415.600000pt;}
.y1fe{bottom:415.722667pt;}
.y1a7{bottom:417.194667pt;}
.y1e5{bottom:417.205333pt;}
.y11{bottom:417.589867pt;}
.yb9{bottom:417.893333pt;}
.yfe{bottom:418.293333pt;}
.y1c4{bottom:418.352000pt;}
.y37{bottom:421.290667pt;}
.y230{bottom:421.306667pt;}
.y161{bottom:422.661333pt;}
.y64{bottom:424.000000pt;}
.y281{bottom:424.202667pt;}
.yd9{bottom:424.800000pt;}
.y25f{bottom:425.162667pt;}
.y11e{bottom:426.440933pt;}
.y2b8{bottom:426.672000pt;}
.ya0{bottom:428.025333pt;}
.y141{bottom:432.400000pt;}
.y181{bottom:433.968000pt;}
.y1fd{bottom:435.194667pt;}
.y23f{bottom:435.872000pt;}
.y220{bottom:436.000000pt;}
.y1e4{bottom:436.533333pt;}
.y1a6{bottom:436.666667pt;}
.y10{bottom:437.317867pt;}
.yb8{bottom:438.165333pt;}
.yfd{bottom:438.565333pt;}
.y1c3{bottom:438.624000pt;}
.y2b7{bottom:440.133333pt;}
.y36{bottom:441.418667pt;}
.y22f{bottom:441.434667pt;}
.y160{bottom:443.637333pt;}
.y63{bottom:444.000000pt;}
.y9f{bottom:444.692000pt;}
.yd8{bottom:444.800000pt;}
.y25e{bottom:445.034667pt;}
.y11d{bottom:446.440933pt;}
.y140{bottom:452.000000pt;}
.y2b6{bottom:453.594667pt;}
.y180{bottom:454.496000pt;}
.y1fc{bottom:454.666667pt;}
.y1e3{bottom:455.861333pt;}
.y1a5{bottom:456.138667pt;}
.y21f{bottom:456.400000pt;}
.yf{bottom:457.045867pt;}
.yb7{bottom:458.437333pt;}
.yfc{bottom:458.837333pt;}
.y1c2{bottom:458.896000pt;}
.y2d1{bottom:460.666667pt;}
.y9e{bottom:461.358667pt;}
.y22e{bottom:461.562667pt;}
.y280{bottom:463.669333pt;}
.y62{bottom:464.000000pt;}
.y15f{bottom:464.709333pt;}
.yd7{bottom:464.800000pt;}
.y25d{bottom:464.906667pt;}
.y11c{bottom:466.440933pt;}
.y2b5{bottom:467.056000pt;}
.y13f{bottom:471.600000pt;}
.y1fb{bottom:474.133333pt;}
.y17f{bottom:475.024000pt;}
.y1e2{bottom:475.189333pt;}
.y1a4{bottom:475.610667pt;}
.y27f{bottom:476.736000pt;}
.ye{bottom:476.773867pt;}
.y23e{bottom:476.800000pt;}
.y2d0{bottom:477.333333pt;}
.y9d{bottom:478.025333pt;}
.yb6{bottom:478.709333pt;}
.yfb{bottom:479.109333pt;}
.y1c1{bottom:479.168000pt;}
.y2b4{bottom:480.517333pt;}
.y35{bottom:481.690667pt;}
.y61{bottom:484.000000pt;}
.y25c{bottom:484.778667pt;}
.yd6{bottom:484.800000pt;}
.y15e{bottom:485.781333pt;}
.y11b{bottom:486.440933pt;}
.y27e{bottom:489.802667pt;}
.y13e{bottom:491.200000pt;}
.y1fa{bottom:493.600000pt;}
.y2b3{bottom:493.978667pt;}
.y2cf{bottom:494.000000pt;}
.y1e1{bottom:494.517333pt;}
.y9c{bottom:494.692000pt;}
.y1a3{bottom:495.082667pt;}
.y17e{bottom:495.552000pt;}
.yd{bottom:496.501867pt;}
.y21e{bottom:497.200000pt;}
.yb5{bottom:498.981333pt;}
.yfa{bottom:499.381333pt;}
.y1c0{bottom:499.440000pt;}
.y34{bottom:501.818667pt;}
.y60{bottom:504.000000pt;}
.y25b{bottom:504.650667pt;}
.yd5{bottom:504.800000pt;}
.y11a{bottom:506.440933pt;}
.y15d{bottom:506.853333pt;}
.y2b2{bottom:507.440000pt;}
.y27d{bottom:508.533333pt;}
.y2ce{bottom:510.666667pt;}
.y13d{bottom:510.800000pt;}
.y9b{bottom:511.358667pt;}
.y1e0{bottom:513.845333pt;}
.y1a2{bottom:514.554667pt;}
.y17d{bottom:516.080000pt;}
.yc{bottom:516.235200pt;}
.y21d{bottom:517.600000pt;}
.yb4{bottom:519.253333pt;}
.yf9{bottom:519.653333pt;}
.y1bf{bottom:519.712000pt;}
.y2b1{bottom:520.901333pt;}
.y33{bottom:521.946667pt;}
.y5f{bottom:524.000000pt;}
.y25a{bottom:524.522667pt;}
.yd4{bottom:524.800000pt;}
.y119{bottom:526.440933pt;}
.y2cd{bottom:527.333333pt;}
.y15c{bottom:527.925333pt;}
.y9a{bottom:528.025333pt;}
.y13c{bottom:530.400000pt;}
.y1df{bottom:533.173333pt;}
.y1a1{bottom:534.026667pt;}
.y2b0{bottom:534.362667pt;}
.y17c{bottom:536.608000pt;}
.y21c{bottom:538.000000pt;}
.yb3{bottom:539.525333pt;}
.yf8{bottom:539.925333pt;}
.y1be{bottom:539.984000pt;}
.y32{bottom:542.074667pt;}
.y5e{bottom:544.000000pt;}
.y259{bottom:544.394667pt;}
.y99{bottom:544.692000pt;}
.yd3{bottom:544.800000pt;}
.y118{bottom:546.440933pt;}
.y2af{bottom:547.824000pt;}
.y27c{bottom:548.074667pt;}
.y15b{bottom:548.997333pt;}
.y13b{bottom:550.000000pt;}
.y1f9{bottom:551.925333pt;}
.y1de{bottom:552.501333pt;}
.yb{bottom:552.634267pt;}
.y1a0{bottom:553.498667pt;}
.y17b{bottom:557.136000pt;}
.y21b{bottom:558.400000pt;}
.yb2{bottom:559.797333pt;}
.yf7{bottom:560.197333pt;}
.y1bd{bottom:560.256000pt;}
.y2cc{bottom:560.666667pt;}
.y2ae{bottom:561.285333pt;}
.y98{bottom:561.358667pt;}
.y31{bottom:562.202667pt;}
.y5d{bottom:564.000000pt;}
.y258{bottom:564.234667pt;}
.yd2{bottom:564.800000pt;}
.y117{bottom:566.440933pt;}
.y27b{bottom:567.802667pt;}
.y13a{bottom:569.600000pt;}
.y15a{bottom:570.069333pt;}
.y1f8{bottom:571.397333pt;}
.y1dd{bottom:571.829333pt;}
.y19f{bottom:572.970667pt;}
.y2ad{bottom:574.746667pt;}
.ya{bottom:576.860933pt;}
.y2cb{bottom:577.333333pt;}
.y17a{bottom:577.664000pt;}
.y97{bottom:578.025333pt;}
.y21a{bottom:578.800000pt;}
.yb1{bottom:580.069333pt;}
.yf6{bottom:580.469333pt;}
.y1bc{bottom:580.528000pt;}
.y30{bottom:582.330667pt;}
.y5c{bottom:584.000000pt;}
.y257{bottom:584.106667pt;}
.yd1{bottom:584.800000pt;}
.y27a{bottom:587.530667pt;}
.y2ac{bottom:588.208000pt;}
.y139{bottom:589.200000pt;}
.y1f7{bottom:590.869333pt;}
.y159{bottom:591.141333pt;}
.y1dc{bottom:591.157333pt;}
.y19e{bottom:592.442667pt;}
.y9{bottom:593.527600pt;}
.y116{bottom:594.000000pt;}
.y96{bottom:594.692000pt;}
.y179{bottom:598.192000pt;}
.y219{bottom:599.200000pt;}
.yb0{bottom:600.341333pt;}
.yf5{bottom:600.741333pt;}
.y2ab{bottom:601.669333pt;}
.y2f{bottom:602.458667pt;}
.y256{bottom:603.978667pt;}
.y5b{bottom:604.000000pt;}
.yd0{bottom:604.800000pt;}
.y279{bottom:607.258667pt;}
.y138{bottom:608.800000pt;}
.y1f6{bottom:610.341333pt;}
.y1db{bottom:610.485333pt;}
.y115{bottom:610.666667pt;}
.y95{bottom:611.358667pt;}
.y19d{bottom:611.914667pt;}
.y158{bottom:612.213333pt;}
.y2aa{bottom:615.130667pt;}
.y178{bottom:618.720000pt;}
.y218{bottom:619.600000pt;}
.yaf{bottom:620.613333pt;}
.yf4{bottom:621.013333pt;}
.y2e{bottom:622.586667pt;}
.y255{bottom:623.850667pt;}
.y5a{bottom:624.000000pt;}
.ycf{bottom:624.800000pt;}
.y278{bottom:626.986667pt;}
.y114{bottom:627.333333pt;}
.y94{bottom:628.025333pt;}
.y137{bottom:628.400000pt;}
.y2a9{bottom:628.592000pt;}
.y1f5{bottom:629.813333pt;}
.y8{bottom:630.194267pt;}
.y19c{bottom:631.386667pt;}
.y157{bottom:633.285333pt;}
.y177{bottom:639.248000pt;}
.y217{bottom:640.000000pt;}
.yae{bottom:640.885333pt;}
.yf3{bottom:641.285333pt;}
.y2a8{bottom:642.053333pt;}
.y2d{bottom:642.714667pt;}
.y254{bottom:643.722667pt;}
.y59{bottom:644.000000pt;}
.y93{bottom:644.692000pt;}
.yce{bottom:644.800000pt;}
.y277{bottom:646.714667pt;}
.y7{bottom:646.860933pt;}
.y136{bottom:648.000000pt;}
.y1da{bottom:649.285333pt;}
.y19b{bottom:650.714667pt;}
.y156{bottom:654.357333pt;}
.y2a7{bottom:655.514667pt;}
.y176{bottom:659.776000pt;}
.y216{bottom:660.400000pt;}
.y113{bottom:660.666667pt;}
.yad{bottom:661.157333pt;}
.y92{bottom:661.358667pt;}
.yf2{bottom:661.557333pt;}
.y2c{bottom:662.842667pt;}
.y253{bottom:663.594667pt;}
.y58{bottom:664.000000pt;}
.ycd{bottom:664.800000pt;}
.y276{bottom:666.442667pt;}
.y135{bottom:667.600000pt;}
.y1d9{bottom:668.757333pt;}
.y2a6{bottom:668.976000pt;}
.y19a{bottom:670.042667pt;}
.y155{bottom:675.429333pt;}
.y112{bottom:677.333333pt;}
.y91{bottom:678.025333pt;}
.y175{bottom:680.304000pt;}
.y215{bottom:680.800000pt;}
.yac{bottom:681.429333pt;}
.yf1{bottom:681.829333pt;}
.y2a5{bottom:682.437333pt;}
.y2b{bottom:682.970667pt;}
.y252{bottom:683.466667pt;}
.y57{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.ycc{bottom:684.800000pt;}
.y275{bottom:686.170667pt;}
.y134{bottom:687.200000pt;}
.y1d8{bottom:688.229333pt;}
.y199{bottom:689.370667pt;}
.y111{bottom:694.000000pt;}
.y90{bottom:694.692000pt;}
.y2a4{bottom:695.898667pt;}
.y154{bottom:696.501333pt;}
.y174{bottom:700.832000pt;}
.y214{bottom:701.200000pt;}
.yab{bottom:701.701333pt;}
.yf0{bottom:702.101333pt;}
.y2a{bottom:703.098667pt;}
.y251{bottom:703.338667pt;}
.y56{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.ycb{bottom:704.800000pt;}
.y274{bottom:705.898667pt;}
.y133{bottom:706.800000pt;}
.y1d7{bottom:707.701333pt;}
.y198{bottom:708.698667pt;}
.y2a3{bottom:709.360000pt;}
.y110{bottom:710.666667pt;}
.y8f{bottom:711.358667pt;}
.y153{bottom:717.573333pt;}
.y173{bottom:721.360000pt;}
.y213{bottom:721.600000pt;}
.yaa{bottom:721.973333pt;}
.yef{bottom:722.373333pt;}
.y2a2{bottom:722.821333pt;}
.y250{bottom:723.210667pt;}
.y29{bottom:723.226667pt;}
.y55{bottom:724.000000pt;}
.yca{bottom:724.800000pt;}
.y273{bottom:725.626667pt;}
.y132{bottom:726.400000pt;}
.y1d6{bottom:727.173333pt;}
.y10f{bottom:727.333333pt;}
.y8e{bottom:728.025333pt;}
.y197{bottom:728.026667pt;}
.y2a1{bottom:736.293333pt;}
.y152{bottom:738.645333pt;}
.y172{bottom:741.888000pt;}
.y212{bottom:742.000000pt;}
.ya9{bottom:742.245333pt;}
.yee{bottom:742.645333pt;}
.y28{bottom:743.354667pt;}
.y54{bottom:744.000000pt;}
.yc9{bottom:744.800000pt;}
.y272{bottom:745.354667pt;}
.y131{bottom:746.000000pt;}
.y1d5{bottom:746.645333pt;}
.y196{bottom:747.354667pt;}
.y2a0{bottom:749.754667pt;}
.y8d{bottom:752.012000pt;}
.y151{bottom:759.717333pt;}
.y8c{bottom:760.345333pt;}
.y10e{bottom:760.666667pt;}
.y211{bottom:762.400000pt;}
.y171{bottom:762.416000pt;}
.ya8{bottom:762.517333pt;}
.yed{bottom:762.917333pt;}
.y29f{bottom:763.216000pt;}
.y27{bottom:763.482667pt;}
.y4{bottom:764.000000pt;}
.yc8{bottom:764.800000pt;}
.y271{bottom:765.082667pt;}
.y130{bottom:765.600000pt;}
.y1d4{bottom:766.117333pt;}
.y195{bottom:766.682667pt;}
.y29e{bottom:776.677333pt;}
.y10d{bottom:777.333333pt;}
.y150{bottom:780.789333pt;}
.ya7{bottom:782.789333pt;}
.y210{bottom:782.800000pt;}
.y170{bottom:782.944000pt;}
.yec{bottom:783.189333pt;}
.y26{bottom:783.610667pt;}
.y53{bottom:784.000000pt;}
.yc7{bottom:784.800000pt;}
.y270{bottom:784.810667pt;}
.y12f{bottom:785.200000pt;}
.y1d3{bottom:785.589333pt;}
.y194{bottom:786.010667pt;}
.y29d{bottom:790.138667pt;}
.y3{bottom:790.666667pt;}
.y10c{bottom:794.000000pt;}
.y14f{bottom:801.861333pt;}
.ya6{bottom:803.061333pt;}
.y20f{bottom:803.200000pt;}
.yeb{bottom:803.461333pt;}
.y16f{bottom:803.472000pt;}
.y29c{bottom:803.610667pt;}
.y25{bottom:803.738667pt;}
.y52{bottom:804.000000pt;}
.y26f{bottom:804.538667pt;}
.yc6{bottom:804.800000pt;}
.y1d2{bottom:805.061333pt;}
.y193{bottom:805.338667pt;}
.y10b{bottom:810.666667pt;}
.y29b{bottom:817.072000pt;}
.y2{bottom:817.333333pt;}
.y14e{bottom:822.933333pt;}
.ya5{bottom:823.333333pt;}
.y20e{bottom:823.600000pt;}
.yea{bottom:823.733333pt;}
.y24{bottom:823.866667pt;}
.y48{bottom:824.000000pt;}
.y26e{bottom:824.266667pt;}
.yc5{bottom:824.400000pt;}
.y1d1{bottom:824.533333pt;}
.y192{bottom:824.666667pt;}
.y10a{bottom:827.333333pt;}
.y29a{bottom:830.533333pt;}
.h6{height:26.945443pt;}
.h8{height:29.866667pt;}
.h19{height:34.730667pt;}
.hc{height:36.229167pt;}
.h16{height:42.656250pt;}
.h7{height:43.413333pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h9{height:45.531250pt;}
.h1a{height:49.300521pt;}
.h5{height:49.304254pt;}
.h4{height:54.343750pt;}
.h17{height:58.627292pt;}
.ha{height:58.733958pt;}
.hb{height:59.032625pt;}
.he{height:59.075292pt;}
.hd{height:59.160625pt;}
.h11{height:59.245958pt;}
.h18{height:59.288625pt;}
.h14{height:59.309958pt;}
.h15{height:59.395292pt;}
.h13{height:59.544625pt;}
.h10{height:59.587292pt;}
.h12{height:59.779292pt;}
.hf{height:78.619792pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x8{left:60.000000pt;}
.xd{left:67.884400pt;}
.xa{left:73.232000pt;}
.xf{left:86.448267pt;}
.xb{left:92.631067pt;}
.x2{left:100.000000pt;}
.x6{left:113.228400pt;}
.x9{left:120.000000pt;}
.xe{left:227.657733pt;}
.x3{left:269.828933pt;}
.xc{left:272.724400pt;}
.x10{left:294.328267pt;}
.x4{left:347.175600pt;}
.x7{left:386.999467pt;}
.x5{left:403.028933pt;}
.x1{left:556.250000pt;}
}




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