
    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_b8db43d46403d832b13f0e08.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_47cdf5757dacfaa179f4ea3e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_075067aea126e4e727cb12a0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_42dad19da929d66710ceefcb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e703f7aef76556523c596e41.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a18bd2f82a943d480cc10f92.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2ed6345ac4fd4fa619b9c187.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_f27e7f7261ca356a89ae0583.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082520;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.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);}
.m1{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);}
.v3{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:25.872000px;}
.v4{vertical-align:26.904000px;}
.ls6e{letter-spacing:-4.536000px;}
.ls6a{letter-spacing:-3.168000px;}
.ls7a{letter-spacing:-2.880000px;}
.ls3d{letter-spacing:-2.808000px;}
.ls84{letter-spacing:-1.056000px;}
.ls33{letter-spacing:-0.969000px;}
.ls2d{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.924000px;}
.ls38{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.858000px;}
.ls27{letter-spacing:-0.792000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.660000px;}
.ls28{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.576000px;}
.ls89{letter-spacing:-0.528000px;}
.ls2b{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.432000px;}
.ls90{letter-spacing:-0.396000px;}
.ls23{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.342000px;}
.ls8{letter-spacing:-0.330000px;}
.ls19{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.285000px;}
.ls86{letter-spacing:-0.264000px;}
.ls16{letter-spacing:-0.216000px;}
.ls82{letter-spacing:-0.198000px;}
.ls2e{letter-spacing:-0.144000px;}
.ls81{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.120000px;}
.ls29{letter-spacing:-0.114000px;}
.ls1a{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.066000px;}
.ls6{letter-spacing:0.000000px;}
.ls68{letter-spacing:0.043200px;}
.ls5{letter-spacing:0.066000px;}
.ls22{letter-spacing:0.072000px;}
.ls7f{letter-spacing:0.132000px;}
.ls12{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.149400px;}
.ls15{letter-spacing:0.159600px;}
.ls1d{letter-spacing:0.180000px;}
.ls78{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.216000px;}
.ls58{letter-spacing:0.223200px;}
.ls8d{letter-spacing:0.264000px;}
.ls31{letter-spacing:0.284400px;}
.ls1c{letter-spacing:0.288000px;}
.ls51{letter-spacing:0.302400px;}
.ls47{letter-spacing:0.309600px;}
.ls80{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.360000px;}
.ls60{letter-spacing:0.396000px;}
.ls8e{letter-spacing:0.422400px;}
.lse{letter-spacing:0.432000px;}
.ls6c{letter-spacing:0.460800px;}
.ls8a{letter-spacing:0.462000px;}
.ls11{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.528000px;}
.ls48{letter-spacing:0.547200px;}
.ls21{letter-spacing:0.576000px;}
.ls20{letter-spacing:0.583200px;}
.ls1b{letter-spacing:0.648000px;}
.ls7b{letter-spacing:0.660000px;}
.ls17{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.734400px;}
.ls69{letter-spacing:0.784800px;}
.ls34{letter-spacing:0.792000px;}
.ls32{letter-spacing:0.864000px;}
.ls3c{letter-spacing:0.936000px;}
.ls3a{letter-spacing:1.008000px;}
.ls39{letter-spacing:1.080000px;}
.ls3e{letter-spacing:1.152000px;}
.ls13{letter-spacing:1.224000px;}
.ls5e{letter-spacing:1.267200px;}
.ls6b{letter-spacing:1.296000px;}
.ls66{letter-spacing:1.346400px;}
.lsf{letter-spacing:1.368000px;}
.ls5a{letter-spacing:1.375200px;}
.ls7d{letter-spacing:1.650000px;}
.ls2f{letter-spacing:1.728000px;}
.ls57{letter-spacing:2.232000px;}
.ls3b{letter-spacing:2.332800px;}
.ls74{letter-spacing:2.728800px;}
.ls5f{letter-spacing:2.764800px;}
.ls73{letter-spacing:2.952000px;}
.ls67{letter-spacing:3.153600px;}
.ls56{letter-spacing:3.333600px;}
.ls41{letter-spacing:3.528000px;}
.ls46{letter-spacing:3.585600px;}
.ls4f{letter-spacing:3.600000px;}
.ls64{letter-spacing:3.664800px;}
.ls52{letter-spacing:4.003200px;}
.ls2a{letter-spacing:4.032000px;}
.ls4c{letter-spacing:4.059000px;}
.ls0{letter-spacing:4.200000px;}
.ls49{letter-spacing:4.392000px;}
.ls4a{letter-spacing:4.420800px;}
.ls44{letter-spacing:5.040000px;}
.ls45{letter-spacing:5.112000px;}
.ls72{letter-spacing:5.385600px;}
.ls4d{letter-spacing:5.400000px;}
.ls4b{letter-spacing:5.544000px;}
.ls3{letter-spacing:6.000000px;}
.ls42{letter-spacing:6.408000px;}
.ls1{letter-spacing:6.600000px;}
.ls55{letter-spacing:6.616800px;}
.ls43{letter-spacing:6.645600px;}
.ls53{letter-spacing:6.912000px;}
.ls54{letter-spacing:6.948000px;}
.ls26{letter-spacing:7.128000px;}
.ls4e{letter-spacing:7.171200px;}
.ls4{letter-spacing:7.200000px;}
.ls71{letter-spacing:7.560000px;}
.ls6f{letter-spacing:7.632000px;}
.ls65{letter-spacing:7.862400px;}
.ls6d{letter-spacing:7.920000px;}
.ls5c{letter-spacing:8.107200px;}
.ls36{letter-spacing:8.208000px;}
.ls63{letter-spacing:8.229600px;}
.ls8f{letter-spacing:8.250000px;}
.ls70{letter-spacing:8.323200px;}
.ls5b{letter-spacing:8.424000px;}
.ls62{letter-spacing:8.848800px;}
.ls61{letter-spacing:8.884800px;}
.ls59{letter-spacing:8.949600px;}
.ls1f{letter-spacing:9.072000px;}
.ls5d{letter-spacing:9.273600px;}
.ls50{letter-spacing:9.288000px;}
.ls37{letter-spacing:9.352800px;}
.ls40{letter-spacing:9.432000px;}
.ls30{letter-spacing:9.561600px;}
.ls75{letter-spacing:9.590400px;}
.ls8b{letter-spacing:9.702000px;}
.ls8c{letter-spacing:9.768000px;}
.ls7e{letter-spacing:9.900000px;}
.ls2{letter-spacing:10.200000px;}
.ls79{letter-spacing:10.494000px;}
.ls87{letter-spacing:10.626000px;}
.ls7c{letter-spacing:10.758000px;}
.ls76{letter-spacing:10.956000px;}
.ls77{letter-spacing:11.154000px;}
.ls85{letter-spacing:11.616000px;}
.ls83{letter-spacing:12.606000px;}
.ls88{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;}
}
.ws49{word-spacing:-52.344000px;}
.ws8d{word-spacing:-38.346000px;}
.ws79{word-spacing:-29.502000px;}
.ws0{word-spacing:-27.432000px;}
.ws78{word-spacing:-22.860000px;}
.ws51{word-spacing:-20.808000px;}
.ws66{word-spacing:-20.520000px;}
.ws20{word-spacing:-20.448000px;}
.ws27{word-spacing:-20.232000px;}
.ws65{word-spacing:-20.088000px;}
.ws54{word-spacing:-19.944000px;}
.ws5c{word-spacing:-19.872000px;}
.ws95{word-spacing:-19.800000px;}
.ws75{word-spacing:-19.368000px;}
.ws82{word-spacing:-19.206000px;}
.ws3e{word-spacing:-18.792000px;}
.ws46{word-spacing:-18.648000px;}
.ws80{word-spacing:-18.546000px;}
.ws39{word-spacing:-18.432000px;}
.ws33{word-spacing:-18.360000px;}
.ws52{word-spacing:-18.288000px;}
.ws48{word-spacing:-18.216000px;}
.ws45{word-spacing:-18.144000px;}
.ws1e{word-spacing:-18.072000px;}
.wsf{word-spacing:-18.000000px;}
.ws40{word-spacing:-17.928000px;}
.ws1f{word-spacing:-17.784000px;}
.ws58{word-spacing:-17.712000px;}
.ws2a{word-spacing:-17.703000px;}
.ws5e{word-spacing:-17.640000px;}
.ws70{word-spacing:-17.568000px;}
.ws4a{word-spacing:-17.496000px;}
.ws55{word-spacing:-17.424000px;}
.ws5b{word-spacing:-17.352000px;}
.ws74{word-spacing:-17.280000px;}
.ws56{word-spacing:-17.208000px;}
.ws28{word-spacing:-17.136000px;}
.ws2e{word-spacing:-17.064000px;}
.ws77{word-spacing:-16.992000px;}
.ws5d{word-spacing:-16.920000px;}
.wse{word-spacing:-16.860000px;}
.ws91{word-spacing:-16.632000px;}
.ws81{word-spacing:-16.302000px;}
.ws90{word-spacing:-16.236000px;}
.ws2b{word-spacing:-16.017000px;}
.ws34{word-spacing:-14.079000px;}
.ws86{word-spacing:-12.606000px;}
.ws53{word-spacing:-12.441600px;}
.ws21{word-spacing:-12.139200px;}
.ws57{word-spacing:-11.923200px;}
.ws8b{word-spacing:-11.616000px;}
.ws7c{word-spacing:-11.154000px;}
.ws7b{word-spacing:-10.956000px;}
.ws84{word-spacing:-10.758000px;}
.ws8e{word-spacing:-10.626000px;}
.ws7e{word-spacing:-10.494000px;}
.ws5{word-spacing:-10.200000px;}
.ws88{word-spacing:-9.900000px;}
.ws36{word-spacing:-7.200000px;}
.ws3{word-spacing:-6.600000px;}
.ws6{word-spacing:-6.000000px;}
.ws4d{word-spacing:-5.400000px;}
.ws47{word-spacing:-5.040000px;}
.ws1{word-spacing:-4.200000px;}
.ws4e{word-spacing:-3.600000px;}
.ws5f{word-spacing:-1.800000px;}
.ws35{word-spacing:-1.728000px;}
.ws15{word-spacing:-1.368000px;}
.ws6e{word-spacing:-1.296000px;}
.ws1a{word-spacing:-1.224000px;}
.ws42{word-spacing:-1.152000px;}
.ws3f{word-spacing:-1.080000px;}
.ws43{word-spacing:-1.008000px;}
.ws44{word-spacing:-0.936000px;}
.ws37{word-spacing:-0.864000px;}
.ws3a{word-spacing:-0.792000px;}
.ws11{word-spacing:-0.720000px;}
.ws7f{word-spacing:-0.660000px;}
.ws1b{word-spacing:-0.648000px;}
.ws24{word-spacing:-0.576000px;}
.wsb{word-spacing:-0.528000px;}
.ws18{word-spacing:-0.504000px;}
.ws92{word-spacing:-0.462000px;}
.ws14{word-spacing:-0.432000px;}
.ws87{word-spacing:-0.396000px;}
.ws17{word-spacing:-0.360000px;}
.ws8a{word-spacing:-0.330000px;}
.ws1c{word-spacing:-0.288000px;}
.ws94{word-spacing:-0.264000px;}
.ws1d{word-spacing:-0.216000px;}
.ws7d{word-spacing:-0.198000px;}
.ws19{word-spacing:-0.144000px;}
.ws93{word-spacing:-0.132000px;}
.ws22{word-spacing:-0.072000px;}
.wsd{word-spacing:-0.066000px;}
.ws29{word-spacing:-0.043200px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:0.066000px;}
.ws16{word-spacing:0.072000px;}
.ws2d{word-spacing:0.114000px;}
.ws4{word-spacing:0.120000px;}
.ws83{word-spacing:0.132000px;}
.ws32{word-spacing:0.144000px;}
.ws85{word-spacing:0.198000px;}
.ws10{word-spacing:0.216000px;}
.ws8c{word-spacing:0.264000px;}
.ws26{word-spacing:0.285000px;}
.ws13{word-spacing:0.288000px;}
.ws7{word-spacing:0.330000px;}
.ws25{word-spacing:0.342000px;}
.ws23{word-spacing:0.360000px;}
.ws96{word-spacing:0.396000px;}
.ws12{word-spacing:0.432000px;}
.ws2f{word-spacing:0.504000px;}
.ws8f{word-spacing:0.528000px;}
.ws3b{word-spacing:0.576000px;}
.ws3d{word-spacing:0.648000px;}
.ws8{word-spacing:0.660000px;}
.ws30{word-spacing:0.720000px;}
.ws2c{word-spacing:0.792000px;}
.wsa{word-spacing:0.858000px;}
.ws3c{word-spacing:0.864000px;}
.ws9{word-spacing:0.924000px;}
.ws31{word-spacing:0.936000px;}
.ws38{word-spacing:0.969000px;}
.ws89{word-spacing:1.056000px;}
.ws60{word-spacing:1.224000px;}
.ws6d{word-spacing:1.944000px;}
.ws67{word-spacing:2.016000px;}
.ws4f{word-spacing:2.736000px;}
.ws41{word-spacing:2.808000px;}
.ws7a{word-spacing:2.880000px;}
.ws61{word-spacing:2.952000px;}
.ws6b{word-spacing:3.168000px;}
.ws69{word-spacing:3.960000px;}
.ws59{word-spacing:4.032000px;}
.ws64{word-spacing:4.104000px;}
.ws73{word-spacing:4.176000px;}
.ws4c{word-spacing:4.392000px;}
.ws71{word-spacing:4.536000px;}
.ws72{word-spacing:4.824000px;}
.ws6f{word-spacing:5.328000px;}
.ws4b{word-spacing:5.976000px;}
.ws62{word-spacing:6.624000px;}
.ws68{word-spacing:6.840000px;}
.ws50{word-spacing:7.200000px;}
.ws63{word-spacing:7.704000px;}
.ws6a{word-spacing:8.208000px;}
.ws6c{word-spacing:8.712000px;}
.ws76{word-spacing:8.784000px;}
.ws5a{word-spacing:8.856000px;}
._1a{margin-left:-21.090200px;}
._1c{margin-left:-19.764000px;}
._18{margin-left:-14.438800px;}
._17{margin-left:-12.331200px;}
._7{margin-left:-9.918000px;}
._1b{margin-left:-8.824800px;}
._4{margin-left:-7.740000px;}
._3{margin-left:-6.018000px;}
._10{margin-left:-4.628800px;}
._e{margin-left:-3.423800px;}
._5{margin-left:-2.016000px;}
._b{margin-left:-1.002000px;}
._1{width:1.949200px;}
._c{width:3.165600px;}
._0{width:4.200000px;}
._d{width:5.317000px;}
._9{width:6.486000px;}
._a{width:7.867200px;}
._f{width:9.138600px;}
._8{width:10.200000px;}
._2{width:11.259600px;}
._12{width:12.330400px;}
._11{width:13.449600px;}
._16{width:15.480000px;}
._6{width:17.442000px;}
._1d{width:20.394000px;}
._1e{width:21.816000px;}
._19{width:38.923200px;}
._13{width:56.923200px;}
._14{width:73.521000px;}
._15{width:112.014000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs2{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;}
.y1f4{bottom:140.307450px;}
.yce{bottom:140.308950px;}
.y8b{bottom:140.310450px;}
.y1da{bottom:140.311950px;}
.y69{bottom:140.313450px;}
.y165{bottom:141.160350px;}
.y266{bottom:141.610350px;}
.y20c{bottom:141.714300px;}
.y2cd{bottom:142.411800px;}
.yff{bottom:144.490350px;}
.y2db{bottom:144.511800px;}
.y23e{bottom:144.564300px;}
.y23{bottom:144.690150px;}
.y196{bottom:144.870600px;}
.y2aa{bottom:144.928800px;}
.y146{bottom:144.930300px;}
.ye9{bottom:145.164300px;}
.y1b9{bottom:145.216350px;}
.y25d{bottom:145.518300px;}
.y185{bottom:145.740300px;}
.y46{bottom:145.864950px;}
.y122{bottom:146.064300px;}
.y222{bottom:146.634300px;}
.y283{bottom:146.657400px;}
.y1f3{bottom:156.808950px;}
.ycd{bottom:156.810450px;}
.y8a{bottom:156.811950px;}
.y1d9{bottom:156.813450px;}
.y2cc{bottom:162.211800px;}
.y68{bottom:162.364950px;}
.y164{bottom:162.760350px;}
.y265{bottom:163.210350px;}
.y20b{bottom:163.314300px;}
.y22{bottom:164.044650px;}
.y2da{bottom:164.311800px;}
.y2a9{bottom:165.025800px;}
.yfe{bottom:165.946350px;}
.y23d{bottom:166.308300px;}
.ye8{bottom:166.314300px;}
.y1b8{bottom:166.672350px;}
.y145{bottom:166.674300px;}
.y25c{bottom:166.974300px;}
.y282{bottom:167.051400px;}
.y195{bottom:167.370600px;}
.y184{bottom:168.096300px;}
.y221{bottom:168.378300px;}
.y121{bottom:168.420300px;}
.y1f2{bottom:173.310450px;}
.ycc{bottom:173.311950px;}
.y67{bottom:173.313450px;}
.y1d8{bottom:178.864950px;}
.y2cb{bottom:182.011800px;}
.y21{bottom:183.399150px;}
.y2d9{bottom:184.111800px;}
.y163{bottom:184.360350px;}
.y264{bottom:184.810350px;}
.y20a{bottom:184.914300px;}
.y2a8{bottom:185.122800px;}
.y45{bottom:186.802350px;}
.yfd{bottom:187.402350px;}
.y281{bottom:187.445400px;}
.ye7{bottom:187.464300px;}
.y23c{bottom:188.052300px;}
.y1b7{bottom:188.128350px;}
.y144{bottom:188.418300px;}
.y25b{bottom:188.430300px;}
.y1f1{bottom:189.811950px;}
.ycb{bottom:189.813450px;}
.y194{bottom:189.870600px;}
.y220{bottom:190.122300px;}
.y183{bottom:190.452300px;}
.y120{bottom:190.776300px;}
.yae{bottom:190.896450px;}
.y66{bottom:195.364950px;}
.y2ca{bottom:201.811800px;}
.y20{bottom:202.753650px;}
.y2d8{bottom:203.911800px;}
.y2a7{bottom:205.219800px;}
.y162{bottom:205.960350px;}
.y89{bottom:206.313450px;}
.y263{bottom:206.410350px;}
.y209{bottom:206.514300px;}
.y280{bottom:207.839400px;}
.ye6{bottom:208.614300px;}
.yfc{bottom:208.858350px;}
.y44{bottom:208.996350px;}
.y1b6{bottom:209.584350px;}
.y23b{bottom:209.796300px;}
.y25a{bottom:209.886300px;}
.y143{bottom:210.162300px;}
.y65{bottom:211.864950px;}
.y21f{bottom:211.866300px;}
.yad{bottom:211.902450px;}
.y193{bottom:212.370600px;}
.y182{bottom:212.808300px;}
.y11f{bottom:213.132300px;}
.y2c9{bottom:221.611800px;}
.y1f{bottom:222.108150px;}
.y1d7{bottom:224.802300px;}
.y2a6{bottom:225.316800px;}
.y161{bottom:227.560350px;}
.y262{bottom:228.010350px;}
.y208{bottom:228.114300px;}
.y27f{bottom:228.233400px;}
.y88{bottom:228.364950px;}
.ye5{bottom:229.764300px;}
.yfb{bottom:230.314350px;}
.y1b5{bottom:231.040350px;}
.y43{bottom:231.190350px;}
.y259{bottom:231.342300px;}
.y23a{bottom:231.540300px;}
.y142{bottom:231.906300px;}
.yac{bottom:233.052450px;}
.y21e{bottom:233.610300px;}
.y192{bottom:234.870600px;}
.y181{bottom:235.164300px;}
.y11e{bottom:235.488300px;}
.y1f0{bottom:236.514300px;}
.y2c8{bottom:241.411800px;}
.y1e{bottom:241.462650px;}
.y2d7{bottom:245.311800px;}
.y2a5{bottom:245.413800px;}
.y1d6{bottom:246.708300px;}
.y27e{bottom:248.627400px;}
.y160{bottom:249.160350px;}
.y261{bottom:249.610350px;}
.y207{bottom:249.714300px;}
.ye4{bottom:250.914300px;}
.yfa{bottom:251.770350px;}
.y1b4{bottom:252.496350px;}
.y258{bottom:252.798300px;}
.y239{bottom:253.284300px;}
.y42{bottom:253.384350px;}
.y141{bottom:253.650300px;}
.yab{bottom:254.202450px;}
.y64{bottom:254.616300px;}
.y21d{bottom:255.354300px;}
.y191{bottom:257.370600px;}
.y180{bottom:257.520300px;}
.y11d{bottom:257.844300px;}
.y1ef{bottom:258.114300px;}
.y1d{bottom:260.817150px;}
.y2c7{bottom:261.211800px;}
.y2a4{bottom:265.510800px;}
.y1d5{bottom:268.548300px;}
.y27d{bottom:268.724400px;}
.y15f{bottom:270.760350px;}
.y260{bottom:271.210350px;}
.y206{bottom:271.314300px;}
.ye3{bottom:272.064300px;}
.yca{bottom:272.110350px;}
.yf9{bottom:273.226350px;}
.y87{bottom:273.699450px;}
.y1b3{bottom:273.952350px;}
.y257{bottom:274.254300px;}
.y238{bottom:275.028300px;}
.yaa{bottom:275.352450px;}
.y140{bottom:275.394300px;}
.y41{bottom:275.578350px;}
.y63{bottom:276.972300px;}
.y21c{bottom:277.098300px;}
.y1ee{bottom:279.714300px;}
.y190{bottom:279.870600px;}
.y17f{bottom:279.876300px;}
.y1c{bottom:280.171650px;}
.y11c{bottom:280.200300px;}
.y2c6{bottom:281.011800px;}
.y2a3{bottom:285.607800px;}
.y2d6{bottom:286.711800px;}
.y27c{bottom:289.118400px;}
.y1d4{bottom:290.454300px;}
.y86{bottom:291.701700px;}
.y15e{bottom:292.360350px;}
.y25f{bottom:292.810350px;}
.y205{bottom:292.914300px;}
.ye2{bottom:293.214300px;}
.yc9{bottom:293.260350px;}
.yf8{bottom:294.682350px;}
.y1b2{bottom:295.408350px;}
.y256{bottom:295.710300px;}
.ya9{bottom:296.502450px;}
.y237{bottom:296.772300px;}
.y13f{bottom:297.138300px;}
.y40{bottom:297.772350px;}
.y21b{bottom:298.842300px;}
.y62{bottom:299.328300px;}
.y1b{bottom:299.526150px;}
.y1ed{bottom:301.314300px;}
.y17e{bottom:302.232300px;}
.y18f{bottom:302.370600px;}
.y11b{bottom:302.556300px;}
.y2a2{bottom:305.704800px;}
.y2d5{bottom:308.311800px;}
.y27b{bottom:309.512400px;}
.y85{bottom:309.703950px;}
.y1d3{bottom:312.360300px;}
.y15d{bottom:313.960350px;}
.ye1{bottom:314.364300px;}
.yc8{bottom:314.410350px;}
.y204{bottom:314.514300px;}
.yf7{bottom:316.138350px;}
.y1b1{bottom:316.864350px;}
.y255{bottom:317.166300px;}
.ya8{bottom:317.652450px;}
.y236{bottom:318.516300px;}
.y1a{bottom:318.880650px;}
.y13e{bottom:318.882300px;}
.y3f{bottom:319.966350px;}
.y21a{bottom:320.586300px;}
.y61{bottom:321.684300px;}
.y2c5{bottom:322.411800px;}
.y1ec{bottom:322.914300px;}
.y17d{bottom:324.588300px;}
.y18e{bottom:324.870600px;}
.y11a{bottom:324.912300px;}
.y2a1{bottom:325.801800px;}
.y84{bottom:327.706200px;}
.y27a{bottom:329.906400px;}
.y2d4{bottom:329.911800px;}
.y1d2{bottom:334.266300px;}
.ye0{bottom:335.514300px;}
.y15c{bottom:335.560350px;}
.yc7{bottom:336.010350px;}
.y203{bottom:336.114300px;}
.yf6{bottom:337.594350px;}
.y19{bottom:338.235150px;}
.y1b0{bottom:338.320350px;}
.y254{bottom:338.622300px;}
.ya7{bottom:338.802450px;}
.y235{bottom:340.260300px;}
.y13d{bottom:340.626300px;}
.y3e{bottom:342.160350px;}
.y219{bottom:342.330300px;}
.y60{bottom:344.040300px;}
.y1eb{bottom:344.514300px;}
.y83{bottom:345.708450px;}
.y2a0{bottom:345.898800px;}
.y17c{bottom:346.944300px;}
.y119{bottom:347.268300px;}
.y18d{bottom:347.370600px;}
.y1d1{bottom:356.172300px;}
.ydf{bottom:356.664300px;}
.y15b{bottom:357.160350px;}
.yc6{bottom:357.610350px;}
.y202{bottom:357.714300px;}
.y279{bottom:358.810350px;}
.yf5{bottom:359.050350px;}
.y1af{bottom:359.776350px;}
.ya6{bottom:359.952450px;}
.y253{bottom:360.078300px;}
.y234{bottom:362.004300px;}
.y13c{bottom:362.370300px;}
.y2c4{bottom:363.811800px;}
.y218{bottom:364.074300px;}
.y3d{bottom:364.354350px;}
.y29f{bottom:365.995800px;}
.y18{bottom:366.089100px;}
.y1ea{bottom:366.114300px;}
.y5f{bottom:366.396300px;}
.y17b{bottom:369.300300px;}
.y118{bottom:369.624300px;}
.y18c{bottom:369.870600px;}
.y82{bottom:376.464300px;}
.yde{bottom:377.814300px;}
.y2d3{bottom:377.911800px;}
.y1d0{bottom:378.078300px;}
.yc5{bottom:379.210350px;}
.y201{bottom:379.314300px;}
.yf4{bottom:380.506350px;}
.ya5{bottom:381.102450px;}
.y1ae{bottom:381.232350px;}
.y252{bottom:381.534300px;}
.y233{bottom:383.748300px;}
.y13b{bottom:384.114300px;}
.y2c3{bottom:385.411800px;}
.y217{bottom:385.818300px;}
.y29e{bottom:386.092800px;}
.y3c{bottom:386.548350px;}
.y15a{bottom:387.264300px;}
.y1e9{bottom:387.714300px;}
.y5e{bottom:388.752300px;}
.y17a{bottom:391.656300px;}
.y117{bottom:391.980300px;}
.y18b{bottom:392.370600px;}
.y2d2{bottom:395.911800px;}
.y81{bottom:398.514300px;}
.ydd{bottom:398.964300px;}
.y1cf{bottom:399.984300px;}
.yc4{bottom:400.810350px;}
.y200{bottom:400.914300px;}
.yf3{bottom:401.962350px;}
.ya4{bottom:402.252450px;}
.y1ad{bottom:402.688350px;}
.y251{bottom:402.990300px;}
.y232{bottom:405.492300px;}
.y13a{bottom:405.858300px;}
.y29d{bottom:406.189800px;}
.y2c2{bottom:407.011800px;}
.y216{bottom:407.562300px;}
.y17{bottom:408.343950px;}
.y3b{bottom:408.742350px;}
.y159{bottom:408.864300px;}
.y1e8{bottom:409.314300px;}
.y5d{bottom:411.108300px;}
.y2d1{bottom:413.911800px;}
.y179{bottom:414.012300px;}
.y116{bottom:414.336300px;}
.y18a{bottom:414.870600px;}
.y278{bottom:417.252300px;}
.ydc{bottom:420.114300px;}
.y80{bottom:420.564300px;}
.y1ce{bottom:421.890300px;}
.yc3{bottom:422.410350px;}
.y1ff{bottom:422.514300px;}
.ya3{bottom:423.402450px;}
.yf2{bottom:423.418350px;}
.y1ac{bottom:424.144350px;}
.y250{bottom:424.446300px;}
.y29c{bottom:426.286800px;}
.y231{bottom:427.236300px;}
.y139{bottom:427.602300px;}
.y16{bottom:427.698450px;}
.y215{bottom:429.306300px;}
.y1e7{bottom:430.914300px;}
.y3a{bottom:430.936350px;}
.y2d0{bottom:431.911800px;}
.y5c{bottom:433.434300px;}
.y178{bottom:436.368300px;}
.y115{bottom:436.692300px;}
.y2e0{bottom:437.311800px;}
.y189{bottom:437.370600px;}
.y277{bottom:439.446300px;}
.ydb{bottom:441.264300px;}
.y7f{bottom:442.614300px;}
.y1cd{bottom:443.796300px;}
.yc2{bottom:444.010350px;}
.ya2{bottom:444.552450px;}
.yf1{bottom:444.874350px;}
.y1ab{bottom:445.600350px;}
.y24f{bottom:445.902300px;}
.y29b{bottom:446.383800px;}
.y15{bottom:447.052950px;}
.y230{bottom:448.980300px;}
.y138{bottom:449.346300px;}
.y214{bottom:451.050300px;}
.y1e6{bottom:452.514300px;}
.y39{bottom:453.130350px;}
.y2df{bottom:455.311800px;}
.y5b{bottom:455.790300px;}
.y177{bottom:458.724300px;}
.y114{bottom:459.048300px;}
.y188{bottom:459.870600px;}
.y276{bottom:461.640300px;}
.yda{bottom:462.414300px;}
.y7e{bottom:464.664300px;}
.yc1{bottom:465.610350px;}
.y1cc{bottom:465.702300px;}
.ya1{bottom:465.702450px;}
.yf0{bottom:466.330350px;}
.y14{bottom:466.407450px;}
.y29a{bottom:466.480800px;}
.y1aa{bottom:467.056350px;}
.y24e{bottom:467.358300px;}
.y2c1{bottom:468.211800px;}
.y22f{bottom:470.724300px;}
.y137{bottom:471.090300px;}
.y2cf{bottom:471.511800px;}
.y1fe{bottom:472.314300px;}
.y213{bottom:472.794300px;}
.y2de{bottom:473.311800px;}
.y158{bottom:473.682300px;}
.y1e5{bottom:474.114300px;}
.y38{bottom:475.324350px;}
.y5a{bottom:478.146300px;}
.y176{bottom:481.080300px;}
.y113{bottom:481.404300px;}
.y187{bottom:482.370600px;}
.yd9{bottom:483.564300px;}
.y275{bottom:483.834300px;}
.y2c0{bottom:485.311800px;}
.y13{bottom:485.761950px;}
.y299{bottom:486.577800px;}
.y7d{bottom:486.714300px;}
.ya0{bottom:486.852450px;}
.yc0{bottom:487.210350px;}
.y1cb{bottom:487.608300px;}
.yef{bottom:487.786350px;}
.y1a9{bottom:488.512350px;}
.y24d{bottom:488.814300px;}
.y2ce{bottom:491.311800px;}
.y22e{bottom:492.468300px;}
.y136{bottom:492.834300px;}
.y1fd{bottom:493.914300px;}
.y212{bottom:494.538300px;}
.y157{bottom:495.282300px;}
.y1e4{bottom:495.714300px;}
.y37{bottom:497.518350px;}
.y59{bottom:500.502300px;}
.y175{bottom:503.436300px;}
.y112{bottom:503.760300px;}
.yd8{bottom:504.714300px;}
.y186{bottom:504.870600px;}
.y12{bottom:505.116450px;}
.y274{bottom:506.028300px;}
.y298{bottom:506.674800px;}
.y9f{bottom:508.002450px;}
.y7c{bottom:508.764300px;}
.ybf{bottom:508.810350px;}
.yee{bottom:509.242350px;}
.y1ca{bottom:509.514300px;}
.y1a8{bottom:509.968350px;}
.y2bf{bottom:512.911800px;}
.y22d{bottom:514.212300px;}
.y135{bottom:514.578300px;}
.y1fc{bottom:515.514300px;}
.y211{bottom:516.282300px;}
.y156{bottom:516.882300px;}
.y1e3{bottom:517.314300px;}
.y36{bottom:519.712350px;}
.y58{bottom:522.858300px;}
.y11{bottom:524.470950px;}
.y24c{bottom:525.114300px;}
.y174{bottom:525.792300px;}
.yd7{bottom:525.864300px;}
.y111{bottom:526.116300px;}
.y297{bottom:526.771800px;}
.y273{bottom:528.222300px;}
.y9e{bottom:529.152450px;}
.ybe{bottom:530.410350px;}
.yed{bottom:530.698350px;}
.y7b{bottom:530.814300px;}
.y2dd{bottom:530.911800px;}
.y1a7{bottom:531.424350px;}
.y2be{bottom:532.711800px;}
.y22c{bottom:535.956300px;}
.y134{bottom:536.322300px;}
.y1fb{bottom:537.114300px;}
.y210{bottom:538.026300px;}
.y155{bottom:538.482300px;}
.y1e2{bottom:538.914300px;}
.y35{bottom:541.906350px;}
.y10{bottom:543.825450px;}
.y57{bottom:545.214300px;}
.y1c9{bottom:546.708300px;}
.y296{bottom:546.868800px;}
.yd6{bottom:547.014300px;}
.y173{bottom:548.148300px;}
.y110{bottom:548.472300px;}
.y272{bottom:550.416300px;}
.y2dc{bottom:550.711800px;}
.ybd{bottom:552.010350px;}
.yec{bottom:552.154350px;}
.y2bd{bottom:552.511800px;}
.y7a{bottom:552.864300px;}
.y1a6{bottom:552.880350px;}
.y197{bottom:555.406200px;}
.y22b{bottom:557.700300px;}
.y133{bottom:558.066300px;}
.y1fa{bottom:558.714300px;}
.y20f{bottom:559.770300px;}
.y154{bottom:560.082300px;}
.y1e1{bottom:560.514300px;}
.y9d{bottom:563.089950px;}
.yf{bottom:563.179950px;}
.y34{bottom:564.100350px;}
.y295{bottom:566.965800px;}
.y56{bottom:567.714300px;}
.yd5{bottom:568.164300px;}
.y1c8{bottom:568.614300px;}
.y172{bottom:570.504300px;}
.y10f{bottom:570.828300px;}
.y2bc{bottom:572.311800px;}
.y271{bottom:572.610300px;}
.ybc{bottom:573.610350px;}
.y1a5{bottom:574.336350px;}
.y79{bottom:574.914300px;}
.y24b{bottom:576.216300px;}
.y22a{bottom:579.444300px;}
.y132{bottom:579.810300px;}
.y1f9{bottom:580.314300px;}
.y9c{bottom:580.635450px;}
.y20e{bottom:581.514300px;}
.y153{bottom:581.682300px;}
.y1e0{bottom:582.114300px;}
.ye{bottom:582.534450px;}
.y33{bottom:586.294350px;}
.y294{bottom:587.062800px;}
.yd4{bottom:589.314300px;}
.y55{bottom:590.214300px;}
.y2bb{bottom:592.111800px;}
.y171{bottom:592.860300px;}
.y10e{bottom:593.184300px;}
.y270{bottom:594.804300px;}
.ybb{bottom:595.210350px;}
.y1a4{bottom:595.792350px;}
.y78{bottom:596.964300px;}
.y24a{bottom:597.672300px;}
.y9b{bottom:598.180950px;}
.y229{bottom:601.188300px;}
.y131{bottom:601.554300px;}
.yd{bottom:601.888950px;}
.y1f8{bottom:601.914300px;}
.y20d{bottom:603.264300px;}
.y152{bottom:603.282300px;}
.y1df{bottom:603.714300px;}
.y293{bottom:607.159800px;}
.y32{bottom:608.488350px;}
.yd3{bottom:610.464300px;}
.y2ba{bottom:611.911800px;}
.y54{bottom:612.714300px;}
.y170{bottom:615.216300px;}
.y10d{bottom:615.540300px;}
.y9a{bottom:615.726450px;}
.yba{bottom:616.810350px;}
.y26f{bottom:616.998300px;}
.y1a3{bottom:617.248350px;}
.y77{bottom:619.014300px;}
.y249{bottom:619.128300px;}
.y1c7{bottom:621.030300px;}
.y228{bottom:622.932300px;}
.y130{bottom:623.298300px;}
.y1f7{bottom:623.514300px;}
.y151{bottom:624.882300px;}
.y1de{bottom:625.314300px;}
.y292{bottom:627.256800px;}
.yc{bottom:629.742900px;}
.y31{bottom:630.682350px;}
.yd2{bottom:631.614300px;}
.y2b9{bottom:631.711800px;}
.y99{bottom:633.271950px;}
.y53{bottom:635.214300px;}
.y16f{bottom:637.572300px;}
.y10c{bottom:637.896300px;}
.yb9{bottom:638.410350px;}
.y1a2{bottom:638.704350px;}
.y26e{bottom:639.192300px;}
.y248{bottom:640.584300px;}
.y76{bottom:641.064300px;}
.y1c6{bottom:642.936300px;}
.y227{bottom:644.676300px;}
.y12f{bottom:645.042300px;}
.y1f6{bottom:645.114300px;}
.y150{bottom:646.482300px;}
.y1dd{bottom:646.914300px;}
.y291{bottom:647.353800px;}
.y98{bottom:650.817450px;}
.y2b8{bottom:651.511800px;}
.yd1{bottom:652.764300px;}
.y30{bottom:652.876350px;}
.y52{bottom:657.714300px;}
.y16e{bottom:659.928300px;}
.yb8{bottom:660.010350px;}
.y1a1{bottom:660.160350px;}
.y10b{bottom:660.252300px;}
.y26d{bottom:661.386300px;}
.y247{bottom:662.040300px;}
.y75{bottom:663.114300px;}
.y1c5{bottom:664.842300px;}
.y226{bottom:666.420300px;}
.y12e{bottom:666.786300px;}
.y290{bottom:667.450800px;}
.y14f{bottom:668.082300px;}
.y97{bottom:668.362950px;}
.y1dc{bottom:668.514300px;}
.y2b7{bottom:671.311800px;}
.yd0{bottom:673.914300px;}
.y2f{bottom:675.070350px;}
.yb{bottom:679.988400px;}
.y51{bottom:680.214300px;}
.yeb{bottom:681.610350px;}
.y1f5{bottom:681.714300px;}
.y16d{bottom:682.284300px;}
.y10a{bottom:682.608300px;}
.y246{bottom:683.496300px;}
.y26c{bottom:683.580300px;}
.y74{bottom:685.164300px;}
.y96{bottom:685.908450px;}
.y1c4{bottom:686.748300px;}
.y28f{bottom:687.547800px;}
.y225{bottom:688.164300px;}
.y12d{bottom:688.530300px;}
.y14e{bottom:689.682300px;}
.yb7{bottom:690.114300px;}
.y2b6{bottom:691.111800px;}
.ycf{bottom:695.064300px;}
.y1a0{bottom:696.454350px;}
.y2e{bottom:697.264350px;}
.ya{bottom:699.342900px;}
.y50{bottom:702.714300px;}
.y25e{bottom:703.210350px;}
.y16c{bottom:704.640300px;}
.y245{bottom:704.952300px;}
.y109{bottom:704.964300px;}
.y26b{bottom:705.774300px;}
.y73{bottom:707.214300px;}
.y28e{bottom:707.644800px;}
.y1c3{bottom:708.654300px;}
.y12c{bottom:710.274300px;}
.y2b5{bottom:710.911800px;}
.y14d{bottom:711.282300px;}
.yb6{bottom:711.714300px;}
.y95{bottom:716.214300px;}
.y19f{bottom:717.910350px;}
.y2d{bottom:719.458350px;}
.y224{bottom:724.914300px;}
.y4f{bottom:725.214300px;}
.y244{bottom:726.408300px;}
.y16b{bottom:726.996300px;}
.y108{bottom:727.320300px;}
.y28d{bottom:727.741800px;}
.y26a{bottom:727.968300px;}
.y72{bottom:729.264300px;}
.y1c2{bottom:730.560300px;}
.y2b4{bottom:730.711800px;}
.y12b{bottom:732.018300px;}
.y14c{bottom:732.882300px;}
.yea{bottom:733.314300px;}
.y94{bottom:737.364300px;}
.y9{bottom:739.851900px;}
.y2c{bottom:741.652350px;}
.y223{bottom:746.514300px;}
.y4e{bottom:747.714300px;}
.y28c{bottom:747.838800px;}
.y243{bottom:747.864300px;}
.y16a{bottom:749.352300px;}
.y107{bottom:749.676300px;}
.y269{bottom:750.162300px;}
.y2b3{bottom:750.511800px;}
.y71{bottom:751.314300px;}
.y1c1{bottom:752.466300px;}
.y12a{bottom:753.762300px;}
.y14b{bottom:754.482300px;}
.y1db{bottom:754.914300px;}
.y93{bottom:758.514300px;}
.y2b{bottom:763.846350px;}
.y28b{bottom:767.935800px;}
.y19e{bottom:769.030350px;}
.y8{bottom:769.992900px;}
.y4d{bottom:770.214300px;}
.y2b2{bottom:770.311800px;}
.y169{bottom:771.708300px;}
.y106{bottom:772.032300px;}
.y268{bottom:772.356300px;}
.y70{bottom:773.364300px;}
.y1c0{bottom:774.372300px;}
.y129{bottom:775.506300px;}
.y14a{bottom:776.082300px;}
.yb5{bottom:776.514300px;}
.y92{bottom:779.664300px;}
.y2a{bottom:786.040350px;}
.y28a{bottom:788.032800px;}
.y2b1{bottom:790.111800px;}
.y19d{bottom:790.486350px;}
.y242{bottom:790.758300px;}
.y4c{bottom:792.714300px;}
.y168{bottom:794.064300px;}
.y105{bottom:794.388300px;}
.y267{bottom:794.550300px;}
.y6f{bottom:795.414300px;}
.y1bf{bottom:796.278300px;}
.y128{bottom:797.250300px;}
.y149{bottom:797.682300px;}
.yb4{bottom:798.114300px;}
.y91{bottom:800.814300px;}
.y289{bottom:808.129800px;}
.y29{bottom:808.234350px;}
.y2b0{bottom:809.911800px;}
.y19c{bottom:811.942350px;}
.y241{bottom:812.214300px;}
.y4b{bottom:815.214300px;}
.y167{bottom:816.420300px;}
.y104{bottom:816.744300px;}
.y6e{bottom:817.464300px;}
.y1be{bottom:818.184300px;}
.y127{bottom:818.994300px;}
.y148{bottom:819.282300px;}
.yb3{bottom:819.714300px;}
.y90{bottom:821.964300px;}
.y7{bottom:824.806800px;}
.y288{bottom:828.226800px;}
.y2af{bottom:829.711800px;}
.y28{bottom:830.428350px;}
.y19b{bottom:833.398350px;}
.y4a{bottom:837.714300px;}
.y166{bottom:838.776300px;}
.y103{bottom:838.938300px;}
.y6d{bottom:839.514300px;}
.y1bd{bottom:840.090300px;}
.y126{bottom:840.738300px;}
.y147{bottom:840.882300px;}
.yb2{bottom:841.314300px;}
.y6{bottom:842.356800px;}
.y8f{bottom:843.114300px;}
.y287{bottom:848.323800px;}
.y2ae{bottom:849.511800px;}
.y27{bottom:852.622350px;}
.y19a{bottom:854.854350px;}
.y5{bottom:859.906800px;}
.y49{bottom:860.214300px;}
.y102{bottom:861.132300px;}
.y6c{bottom:861.564300px;}
.y1bc{bottom:861.996300px;}
.y125{bottom:862.482300px;}
.yb1{bottom:862.914300px;}
.y240{bottom:863.346300px;}
.y8e{bottom:864.264300px;}
.y286{bottom:868.420800px;}
.y2ad{bottom:869.311800px;}
.y26{bottom:874.816350px;}
.y199{bottom:876.310350px;}
.y4{bottom:877.456800px;}
.y48{bottom:882.714300px;}
.y101{bottom:883.326300px;}
.y6b{bottom:883.614300px;}
.y1bb{bottom:883.902300px;}
.y124{bottom:884.226300px;}
.yb0{bottom:884.514300px;}
.y23f{bottom:884.802300px;}
.y8d{bottom:885.414300px;}
.y285{bottom:888.517800px;}
.y2ac{bottom:889.111800px;}
.y25{bottom:897.010350px;}
.y47{bottom:905.214300px;}
.y100{bottom:905.520300px;}
.y6a{bottom:905.664300px;}
.y1ba{bottom:905.808300px;}
.y123{bottom:905.970300px;}
.yaf{bottom:906.114300px;}
.y198{bottom:906.258300px;}
.y8c{bottom:906.564300px;}
.y284{bottom:908.614800px;}
.y2ab{bottom:908.911800px;}
.y3{bottom:911.161800px;}
.y24{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.h9{height:30.568359px;}
.h7{height:35.663086px;}
.h2{height:40.757812px;}
.he{height:41.989746px;}
.hc{height:48.399902px;}
.h3{height:50.947266px;}
.hd{height:53.494629px;}
.h4{height:56.041992px;}
.h6{height:61.136719px;}
.h8{height:62.554031px;}
.ha{height:63.322031px;}
.hb{height:63.442031px;}
.hf{height:63.586031px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.811400px;}
.x7{left:119.053350px;}
.x8{left:140.307150px;}
.x6{left:150.670350px;}
.xb{left:200.183550px;}
.x1{left:216.948600px;}
.x5{left:239.925750px;}
.xa{left:509.978850px;}
.x9{left:516.334350px;}
.x2{left:572.164350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:22.997333pt;}
.v4{vertical-align:23.914667pt;}
.ls6e{letter-spacing:-4.032000pt;}
.ls6a{letter-spacing:-2.816000pt;}
.ls7a{letter-spacing:-2.560000pt;}
.ls3d{letter-spacing:-2.496000pt;}
.ls84{letter-spacing:-0.938667pt;}
.ls33{letter-spacing:-0.861333pt;}
.ls2d{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.821333pt;}
.ls38{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.762667pt;}
.ls27{letter-spacing:-0.704000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.512000pt;}
.ls89{letter-spacing:-0.469333pt;}
.ls2b{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls90{letter-spacing:-0.352000pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.304000pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.253333pt;}
.ls86{letter-spacing:-0.234667pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls82{letter-spacing:-0.176000pt;}
.ls2e{letter-spacing:-0.128000pt;}
.ls81{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls29{letter-spacing:-0.101333pt;}
.ls1a{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls68{letter-spacing:0.038400pt;}
.ls5{letter-spacing:0.058667pt;}
.ls22{letter-spacing:0.064000pt;}
.ls7f{letter-spacing:0.117333pt;}
.ls12{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.132800pt;}
.ls15{letter-spacing:0.141867pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls78{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls58{letter-spacing:0.198400pt;}
.ls8d{letter-spacing:0.234667pt;}
.ls31{letter-spacing:0.252800pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls51{letter-spacing:0.268800pt;}
.ls47{letter-spacing:0.275200pt;}
.ls80{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.320000pt;}
.ls60{letter-spacing:0.352000pt;}
.ls8e{letter-spacing:0.375467pt;}
.lse{letter-spacing:0.384000pt;}
.ls6c{letter-spacing:0.409600pt;}
.ls8a{letter-spacing:0.410667pt;}
.ls11{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.469333pt;}
.ls48{letter-spacing:0.486400pt;}
.ls21{letter-spacing:0.512000pt;}
.ls20{letter-spacing:0.518400pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls7b{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.652800pt;}
.ls69{letter-spacing:0.697600pt;}
.ls34{letter-spacing:0.704000pt;}
.ls32{letter-spacing:0.768000pt;}
.ls3c{letter-spacing:0.832000pt;}
.ls3a{letter-spacing:0.896000pt;}
.ls39{letter-spacing:0.960000pt;}
.ls3e{letter-spacing:1.024000pt;}
.ls13{letter-spacing:1.088000pt;}
.ls5e{letter-spacing:1.126400pt;}
.ls6b{letter-spacing:1.152000pt;}
.ls66{letter-spacing:1.196800pt;}
.lsf{letter-spacing:1.216000pt;}
.ls5a{letter-spacing:1.222400pt;}
.ls7d{letter-spacing:1.466667pt;}
.ls2f{letter-spacing:1.536000pt;}
.ls57{letter-spacing:1.984000pt;}
.ls3b{letter-spacing:2.073600pt;}
.ls74{letter-spacing:2.425600pt;}
.ls5f{letter-spacing:2.457600pt;}
.ls73{letter-spacing:2.624000pt;}
.ls67{letter-spacing:2.803200pt;}
.ls56{letter-spacing:2.963200pt;}
.ls41{letter-spacing:3.136000pt;}
.ls46{letter-spacing:3.187200pt;}
.ls4f{letter-spacing:3.200000pt;}
.ls64{letter-spacing:3.257600pt;}
.ls52{letter-spacing:3.558400pt;}
.ls2a{letter-spacing:3.584000pt;}
.ls4c{letter-spacing:3.608000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls49{letter-spacing:3.904000pt;}
.ls4a{letter-spacing:3.929600pt;}
.ls44{letter-spacing:4.480000pt;}
.ls45{letter-spacing:4.544000pt;}
.ls72{letter-spacing:4.787200pt;}
.ls4d{letter-spacing:4.800000pt;}
.ls4b{letter-spacing:4.928000pt;}
.ls3{letter-spacing:5.333333pt;}
.ls42{letter-spacing:5.696000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls55{letter-spacing:5.881600pt;}
.ls43{letter-spacing:5.907200pt;}
.ls53{letter-spacing:6.144000pt;}
.ls54{letter-spacing:6.176000pt;}
.ls26{letter-spacing:6.336000pt;}
.ls4e{letter-spacing:6.374400pt;}
.ls4{letter-spacing:6.400000pt;}
.ls71{letter-spacing:6.720000pt;}
.ls6f{letter-spacing:6.784000pt;}
.ls65{letter-spacing:6.988800pt;}
.ls6d{letter-spacing:7.040000pt;}
.ls5c{letter-spacing:7.206400pt;}
.ls36{letter-spacing:7.296000pt;}
.ls63{letter-spacing:7.315200pt;}
.ls8f{letter-spacing:7.333333pt;}
.ls70{letter-spacing:7.398400pt;}
.ls5b{letter-spacing:7.488000pt;}
.ls62{letter-spacing:7.865600pt;}
.ls61{letter-spacing:7.897600pt;}
.ls59{letter-spacing:7.955200pt;}
.ls1f{letter-spacing:8.064000pt;}
.ls5d{letter-spacing:8.243200pt;}
.ls50{letter-spacing:8.256000pt;}
.ls37{letter-spacing:8.313600pt;}
.ls40{letter-spacing:8.384000pt;}
.ls30{letter-spacing:8.499200pt;}
.ls75{letter-spacing:8.524800pt;}
.ls8b{letter-spacing:8.624000pt;}
.ls8c{letter-spacing:8.682667pt;}
.ls7e{letter-spacing:8.800000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls79{letter-spacing:9.328000pt;}
.ls87{letter-spacing:9.445333pt;}
.ls7c{letter-spacing:9.562667pt;}
.ls76{letter-spacing:9.738667pt;}
.ls77{letter-spacing:9.914667pt;}
.ls85{letter-spacing:10.325333pt;}
.ls83{letter-spacing:11.205333pt;}
.ls88{letter-spacing:17.600000pt;}
.ws49{word-spacing:-46.528000pt;}
.ws8d{word-spacing:-34.085333pt;}
.ws79{word-spacing:-26.224000pt;}
.ws0{word-spacing:-24.384000pt;}
.ws78{word-spacing:-20.320000pt;}
.ws51{word-spacing:-18.496000pt;}
.ws66{word-spacing:-18.240000pt;}
.ws20{word-spacing:-18.176000pt;}
.ws27{word-spacing:-17.984000pt;}
.ws65{word-spacing:-17.856000pt;}
.ws54{word-spacing:-17.728000pt;}
.ws5c{word-spacing:-17.664000pt;}
.ws95{word-spacing:-17.600000pt;}
.ws75{word-spacing:-17.216000pt;}
.ws82{word-spacing:-17.072000pt;}
.ws3e{word-spacing:-16.704000pt;}
.ws46{word-spacing:-16.576000pt;}
.ws80{word-spacing:-16.485333pt;}
.ws39{word-spacing:-16.384000pt;}
.ws33{word-spacing:-16.320000pt;}
.ws52{word-spacing:-16.256000pt;}
.ws48{word-spacing:-16.192000pt;}
.ws45{word-spacing:-16.128000pt;}
.ws1e{word-spacing:-16.064000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws40{word-spacing:-15.936000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws58{word-spacing:-15.744000pt;}
.ws2a{word-spacing:-15.736000pt;}
.ws5e{word-spacing:-15.680000pt;}
.ws70{word-spacing:-15.616000pt;}
.ws4a{word-spacing:-15.552000pt;}
.ws55{word-spacing:-15.488000pt;}
.ws5b{word-spacing:-15.424000pt;}
.ws74{word-spacing:-15.360000pt;}
.ws56{word-spacing:-15.296000pt;}
.ws28{word-spacing:-15.232000pt;}
.ws2e{word-spacing:-15.168000pt;}
.ws77{word-spacing:-15.104000pt;}
.ws5d{word-spacing:-15.040000pt;}
.wse{word-spacing:-14.986667pt;}
.ws91{word-spacing:-14.784000pt;}
.ws81{word-spacing:-14.490667pt;}
.ws90{word-spacing:-14.432000pt;}
.ws2b{word-spacing:-14.237333pt;}
.ws34{word-spacing:-12.514667pt;}
.ws86{word-spacing:-11.205333pt;}
.ws53{word-spacing:-11.059200pt;}
.ws21{word-spacing:-10.790400pt;}
.ws57{word-spacing:-10.598400pt;}
.ws8b{word-spacing:-10.325333pt;}
.ws7c{word-spacing:-9.914667pt;}
.ws7b{word-spacing:-9.738667pt;}
.ws84{word-spacing:-9.562667pt;}
.ws8e{word-spacing:-9.445333pt;}
.ws7e{word-spacing:-9.328000pt;}
.ws5{word-spacing:-9.066667pt;}
.ws88{word-spacing:-8.800000pt;}
.ws36{word-spacing:-6.400000pt;}
.ws3{word-spacing:-5.866667pt;}
.ws6{word-spacing:-5.333333pt;}
.ws4d{word-spacing:-4.800000pt;}
.ws47{word-spacing:-4.480000pt;}
.ws1{word-spacing:-3.733333pt;}
.ws4e{word-spacing:-3.200000pt;}
.ws5f{word-spacing:-1.600000pt;}
.ws35{word-spacing:-1.536000pt;}
.ws15{word-spacing:-1.216000pt;}
.ws6e{word-spacing:-1.152000pt;}
.ws1a{word-spacing:-1.088000pt;}
.ws42{word-spacing:-1.024000pt;}
.ws3f{word-spacing:-0.960000pt;}
.ws43{word-spacing:-0.896000pt;}
.ws44{word-spacing:-0.832000pt;}
.ws37{word-spacing:-0.768000pt;}
.ws3a{word-spacing:-0.704000pt;}
.ws11{word-spacing:-0.640000pt;}
.ws7f{word-spacing:-0.586667pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws24{word-spacing:-0.512000pt;}
.wsb{word-spacing:-0.469333pt;}
.ws18{word-spacing:-0.448000pt;}
.ws92{word-spacing:-0.410667pt;}
.ws14{word-spacing:-0.384000pt;}
.ws87{word-spacing:-0.352000pt;}
.ws17{word-spacing:-0.320000pt;}
.ws8a{word-spacing:-0.293333pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws94{word-spacing:-0.234667pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws7d{word-spacing:-0.176000pt;}
.ws19{word-spacing:-0.128000pt;}
.ws93{word-spacing:-0.117333pt;}
.ws22{word-spacing:-0.064000pt;}
.wsd{word-spacing:-0.058667pt;}
.ws29{word-spacing:-0.038400pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:0.058667pt;}
.ws16{word-spacing:0.064000pt;}
.ws2d{word-spacing:0.101333pt;}
.ws4{word-spacing:0.106667pt;}
.ws83{word-spacing:0.117333pt;}
.ws32{word-spacing:0.128000pt;}
.ws85{word-spacing:0.176000pt;}
.ws10{word-spacing:0.192000pt;}
.ws8c{word-spacing:0.234667pt;}
.ws26{word-spacing:0.253333pt;}
.ws13{word-spacing:0.256000pt;}
.ws7{word-spacing:0.293333pt;}
.ws25{word-spacing:0.304000pt;}
.ws23{word-spacing:0.320000pt;}
.ws96{word-spacing:0.352000pt;}
.ws12{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.448000pt;}
.ws8f{word-spacing:0.469333pt;}
.ws3b{word-spacing:0.512000pt;}
.ws3d{word-spacing:0.576000pt;}
.ws8{word-spacing:0.586667pt;}
.ws30{word-spacing:0.640000pt;}
.ws2c{word-spacing:0.704000pt;}
.wsa{word-spacing:0.762667pt;}
.ws3c{word-spacing:0.768000pt;}
.ws9{word-spacing:0.821333pt;}
.ws31{word-spacing:0.832000pt;}
.ws38{word-spacing:0.861333pt;}
.ws89{word-spacing:0.938667pt;}
.ws60{word-spacing:1.088000pt;}
.ws6d{word-spacing:1.728000pt;}
.ws67{word-spacing:1.792000pt;}
.ws4f{word-spacing:2.432000pt;}
.ws41{word-spacing:2.496000pt;}
.ws7a{word-spacing:2.560000pt;}
.ws61{word-spacing:2.624000pt;}
.ws6b{word-spacing:2.816000pt;}
.ws69{word-spacing:3.520000pt;}
.ws59{word-spacing:3.584000pt;}
.ws64{word-spacing:3.648000pt;}
.ws73{word-spacing:3.712000pt;}
.ws4c{word-spacing:3.904000pt;}
.ws71{word-spacing:4.032000pt;}
.ws72{word-spacing:4.288000pt;}
.ws6f{word-spacing:4.736000pt;}
.ws4b{word-spacing:5.312000pt;}
.ws62{word-spacing:5.888000pt;}
.ws68{word-spacing:6.080000pt;}
.ws50{word-spacing:6.400000pt;}
.ws63{word-spacing:6.848000pt;}
.ws6a{word-spacing:7.296000pt;}
.ws6c{word-spacing:7.744000pt;}
.ws76{word-spacing:7.808000pt;}
.ws5a{word-spacing:7.872000pt;}
._1a{margin-left:-18.746844pt;}
._1c{margin-left:-17.568000pt;}
._18{margin-left:-12.834489pt;}
._17{margin-left:-10.961067pt;}
._7{margin-left:-8.816000pt;}
._1b{margin-left:-7.844267pt;}
._4{margin-left:-6.880000pt;}
._3{margin-left:-5.349333pt;}
._10{margin-left:-4.114489pt;}
._e{margin-left:-3.043378pt;}
._5{margin-left:-1.792000pt;}
._b{margin-left:-0.890667pt;}
._1{width:1.732622pt;}
._c{width:2.813867pt;}
._0{width:3.733333pt;}
._d{width:4.726222pt;}
._9{width:5.765333pt;}
._a{width:6.993067pt;}
._f{width:8.123200pt;}
._8{width:9.066667pt;}
._2{width:10.008533pt;}
._12{width:10.960356pt;}
._11{width:11.955200pt;}
._16{width:13.760000pt;}
._6{width:15.504000pt;}
._1d{width:18.128000pt;}
._1e{width:19.392000pt;}
._19{width:34.598400pt;}
._13{width:50.598400pt;}
._14{width:65.352000pt;}
._15{width:99.568000pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs2{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;}
.y1f4{bottom:124.717733pt;}
.yce{bottom:124.719067pt;}
.y8b{bottom:124.720400pt;}
.y1da{bottom:124.721733pt;}
.y69{bottom:124.723067pt;}
.y165{bottom:125.475867pt;}
.y266{bottom:125.875867pt;}
.y20c{bottom:125.968267pt;}
.y2cd{bottom:126.588267pt;}
.yff{bottom:128.435867pt;}
.y2db{bottom:128.454933pt;}
.y23e{bottom:128.501600pt;}
.y23{bottom:128.613467pt;}
.y196{bottom:128.773867pt;}
.y2aa{bottom:128.825600pt;}
.y146{bottom:128.826933pt;}
.ye9{bottom:129.034933pt;}
.y1b9{bottom:129.081200pt;}
.y25d{bottom:129.349600pt;}
.y185{bottom:129.546933pt;}
.y46{bottom:129.657733pt;}
.y122{bottom:129.834933pt;}
.y222{bottom:130.341600pt;}
.y283{bottom:130.362133pt;}
.y1f3{bottom:139.385733pt;}
.ycd{bottom:139.387067pt;}
.y8a{bottom:139.388400pt;}
.y1d9{bottom:139.389733pt;}
.y2cc{bottom:144.188267pt;}
.y68{bottom:144.324400pt;}
.y164{bottom:144.675867pt;}
.y265{bottom:145.075867pt;}
.y20b{bottom:145.168267pt;}
.y22{bottom:145.817467pt;}
.y2da{bottom:146.054933pt;}
.y2a9{bottom:146.689600pt;}
.yfe{bottom:147.507867pt;}
.y23d{bottom:147.829600pt;}
.ye8{bottom:147.834933pt;}
.y1b8{bottom:148.153200pt;}
.y145{bottom:148.154933pt;}
.y25c{bottom:148.421600pt;}
.y282{bottom:148.490133pt;}
.y195{bottom:148.773867pt;}
.y184{bottom:149.418933pt;}
.y221{bottom:149.669600pt;}
.y121{bottom:149.706933pt;}
.y1f2{bottom:154.053733pt;}
.ycc{bottom:154.055067pt;}
.y67{bottom:154.056400pt;}
.y1d8{bottom:158.991067pt;}
.y2cb{bottom:161.788267pt;}
.y21{bottom:163.021467pt;}
.y2d9{bottom:163.654933pt;}
.y163{bottom:163.875867pt;}
.y264{bottom:164.275867pt;}
.y20a{bottom:164.368267pt;}
.y2a8{bottom:164.553600pt;}
.y45{bottom:166.046533pt;}
.yfd{bottom:166.579867pt;}
.y281{bottom:166.618133pt;}
.ye7{bottom:166.634933pt;}
.y23c{bottom:167.157600pt;}
.y1b7{bottom:167.225200pt;}
.y144{bottom:167.482933pt;}
.y25b{bottom:167.493600pt;}
.y1f1{bottom:168.721733pt;}
.ycb{bottom:168.723067pt;}
.y194{bottom:168.773867pt;}
.y220{bottom:168.997600pt;}
.y183{bottom:169.290933pt;}
.y120{bottom:169.578933pt;}
.yae{bottom:169.685733pt;}
.y66{bottom:173.657733pt;}
.y2ca{bottom:179.388267pt;}
.y20{bottom:180.225467pt;}
.y2d8{bottom:181.254933pt;}
.y2a7{bottom:182.417600pt;}
.y162{bottom:183.075867pt;}
.y89{bottom:183.389733pt;}
.y263{bottom:183.475867pt;}
.y209{bottom:183.568267pt;}
.y280{bottom:184.746133pt;}
.ye6{bottom:185.434933pt;}
.yfc{bottom:185.651867pt;}
.y44{bottom:185.774533pt;}
.y1b6{bottom:186.297200pt;}
.y23b{bottom:186.485600pt;}
.y25a{bottom:186.565600pt;}
.y143{bottom:186.810933pt;}
.y65{bottom:188.324400pt;}
.y21f{bottom:188.325600pt;}
.yad{bottom:188.357733pt;}
.y193{bottom:188.773867pt;}
.y182{bottom:189.162933pt;}
.y11f{bottom:189.450933pt;}
.y2c9{bottom:196.988267pt;}
.y1f{bottom:197.429467pt;}
.y1d7{bottom:199.824267pt;}
.y2a6{bottom:200.281600pt;}
.y161{bottom:202.275867pt;}
.y262{bottom:202.675867pt;}
.y208{bottom:202.768267pt;}
.y27f{bottom:202.874133pt;}
.y88{bottom:202.991067pt;}
.ye5{bottom:204.234933pt;}
.yfb{bottom:204.723867pt;}
.y1b5{bottom:205.369200pt;}
.y43{bottom:205.502533pt;}
.y259{bottom:205.637600pt;}
.y23a{bottom:205.813600pt;}
.y142{bottom:206.138933pt;}
.yac{bottom:207.157733pt;}
.y21e{bottom:207.653600pt;}
.y192{bottom:208.773867pt;}
.y181{bottom:209.034933pt;}
.y11e{bottom:209.322933pt;}
.y1f0{bottom:210.234933pt;}
.y2c8{bottom:214.588267pt;}
.y1e{bottom:214.633467pt;}
.y2d7{bottom:218.054933pt;}
.y2a5{bottom:218.145600pt;}
.y1d6{bottom:219.296267pt;}
.y27e{bottom:221.002133pt;}
.y160{bottom:221.475867pt;}
.y261{bottom:221.875867pt;}
.y207{bottom:221.968267pt;}
.ye4{bottom:223.034933pt;}
.yfa{bottom:223.795867pt;}
.y1b4{bottom:224.441200pt;}
.y258{bottom:224.709600pt;}
.y239{bottom:225.141600pt;}
.y42{bottom:225.230533pt;}
.y141{bottom:225.466933pt;}
.yab{bottom:225.957733pt;}
.y64{bottom:226.325600pt;}
.y21d{bottom:226.981600pt;}
.y191{bottom:228.773867pt;}
.y180{bottom:228.906933pt;}
.y11d{bottom:229.194933pt;}
.y1ef{bottom:229.434933pt;}
.y1d{bottom:231.837467pt;}
.y2c7{bottom:232.188267pt;}
.y2a4{bottom:236.009600pt;}
.y1d5{bottom:238.709600pt;}
.y27d{bottom:238.866133pt;}
.y15f{bottom:240.675867pt;}
.y260{bottom:241.075867pt;}
.y206{bottom:241.168267pt;}
.ye3{bottom:241.834933pt;}
.yca{bottom:241.875867pt;}
.yf9{bottom:242.867867pt;}
.y87{bottom:243.288400pt;}
.y1b3{bottom:243.513200pt;}
.y257{bottom:243.781600pt;}
.y238{bottom:244.469600pt;}
.yaa{bottom:244.757733pt;}
.y140{bottom:244.794933pt;}
.y41{bottom:244.958533pt;}
.y63{bottom:246.197600pt;}
.y21c{bottom:246.309600pt;}
.y1ee{bottom:248.634933pt;}
.y190{bottom:248.773867pt;}
.y17f{bottom:248.778933pt;}
.y1c{bottom:249.041467pt;}
.y11c{bottom:249.066933pt;}
.y2c6{bottom:249.788267pt;}
.y2a3{bottom:253.873600pt;}
.y2d6{bottom:254.854933pt;}
.y27c{bottom:256.994133pt;}
.y1d4{bottom:258.181600pt;}
.y86{bottom:259.290400pt;}
.y15e{bottom:259.875867pt;}
.y25f{bottom:260.275867pt;}
.y205{bottom:260.368267pt;}
.ye2{bottom:260.634933pt;}
.yc9{bottom:260.675867pt;}
.yf8{bottom:261.939867pt;}
.y1b2{bottom:262.585200pt;}
.y256{bottom:262.853600pt;}
.ya9{bottom:263.557733pt;}
.y237{bottom:263.797600pt;}
.y13f{bottom:264.122933pt;}
.y40{bottom:264.686533pt;}
.y21b{bottom:265.637600pt;}
.y62{bottom:266.069600pt;}
.y1b{bottom:266.245467pt;}
.y1ed{bottom:267.834933pt;}
.y17e{bottom:268.650933pt;}
.y18f{bottom:268.773867pt;}
.y11b{bottom:268.938933pt;}
.y2a2{bottom:271.737600pt;}
.y2d5{bottom:274.054933pt;}
.y27b{bottom:275.122133pt;}
.y85{bottom:275.292400pt;}
.y1d3{bottom:277.653600pt;}
.y15d{bottom:279.075867pt;}
.ye1{bottom:279.434933pt;}
.yc8{bottom:279.475867pt;}
.y204{bottom:279.568267pt;}
.yf7{bottom:281.011867pt;}
.y1b1{bottom:281.657200pt;}
.y255{bottom:281.925600pt;}
.ya8{bottom:282.357733pt;}
.y236{bottom:283.125600pt;}
.y1a{bottom:283.449467pt;}
.y13e{bottom:283.450933pt;}
.y3f{bottom:284.414533pt;}
.y21a{bottom:284.965600pt;}
.y61{bottom:285.941600pt;}
.y2c5{bottom:286.588267pt;}
.y1ec{bottom:287.034933pt;}
.y17d{bottom:288.522933pt;}
.y18e{bottom:288.773867pt;}
.y11a{bottom:288.810933pt;}
.y2a1{bottom:289.601600pt;}
.y84{bottom:291.294400pt;}
.y27a{bottom:293.250133pt;}
.y2d4{bottom:293.254933pt;}
.y1d2{bottom:297.125600pt;}
.ye0{bottom:298.234933pt;}
.y15c{bottom:298.275867pt;}
.yc7{bottom:298.675867pt;}
.y203{bottom:298.768267pt;}
.yf6{bottom:300.083867pt;}
.y19{bottom:300.653467pt;}
.y1b0{bottom:300.729200pt;}
.y254{bottom:300.997600pt;}
.ya7{bottom:301.157733pt;}
.y235{bottom:302.453600pt;}
.y13d{bottom:302.778933pt;}
.y3e{bottom:304.142533pt;}
.y219{bottom:304.293600pt;}
.y60{bottom:305.813600pt;}
.y1eb{bottom:306.234933pt;}
.y83{bottom:307.296400pt;}
.y2a0{bottom:307.465600pt;}
.y17c{bottom:308.394933pt;}
.y119{bottom:308.682933pt;}
.y18d{bottom:308.773867pt;}
.y1d1{bottom:316.597600pt;}
.ydf{bottom:317.034933pt;}
.y15b{bottom:317.475867pt;}
.yc6{bottom:317.875867pt;}
.y202{bottom:317.968267pt;}
.y279{bottom:318.942533pt;}
.yf5{bottom:319.155867pt;}
.y1af{bottom:319.801200pt;}
.ya6{bottom:319.957733pt;}
.y253{bottom:320.069600pt;}
.y234{bottom:321.781600pt;}
.y13c{bottom:322.106933pt;}
.y2c4{bottom:323.388267pt;}
.y218{bottom:323.621600pt;}
.y3d{bottom:323.870533pt;}
.y29f{bottom:325.329600pt;}
.y18{bottom:325.412533pt;}
.y1ea{bottom:325.434933pt;}
.y5f{bottom:325.685600pt;}
.y17b{bottom:328.266933pt;}
.y118{bottom:328.554933pt;}
.y18c{bottom:328.773867pt;}
.y82{bottom:334.634933pt;}
.yde{bottom:335.834933pt;}
.y2d3{bottom:335.921600pt;}
.y1d0{bottom:336.069600pt;}
.yc5{bottom:337.075867pt;}
.y201{bottom:337.168267pt;}
.yf4{bottom:338.227867pt;}
.ya5{bottom:338.757733pt;}
.y1ae{bottom:338.873200pt;}
.y252{bottom:339.141600pt;}
.y233{bottom:341.109600pt;}
.y13b{bottom:341.434933pt;}
.y2c3{bottom:342.588267pt;}
.y217{bottom:342.949600pt;}
.y29e{bottom:343.193600pt;}
.y3c{bottom:343.598533pt;}
.y15a{bottom:344.234933pt;}
.y1e9{bottom:344.634933pt;}
.y5e{bottom:345.557600pt;}
.y17a{bottom:348.138933pt;}
.y117{bottom:348.426933pt;}
.y18b{bottom:348.773867pt;}
.y2d2{bottom:351.921600pt;}
.y81{bottom:354.234933pt;}
.ydd{bottom:354.634933pt;}
.y1cf{bottom:355.541600pt;}
.yc4{bottom:356.275867pt;}
.y200{bottom:356.368267pt;}
.yf3{bottom:357.299867pt;}
.ya4{bottom:357.557733pt;}
.y1ad{bottom:357.945200pt;}
.y251{bottom:358.213600pt;}
.y232{bottom:360.437600pt;}
.y13a{bottom:360.762933pt;}
.y29d{bottom:361.057600pt;}
.y2c2{bottom:361.788267pt;}
.y216{bottom:362.277600pt;}
.y17{bottom:362.972400pt;}
.y3b{bottom:363.326533pt;}
.y159{bottom:363.434933pt;}
.y1e8{bottom:363.834933pt;}
.y5d{bottom:365.429600pt;}
.y2d1{bottom:367.921600pt;}
.y179{bottom:368.010933pt;}
.y116{bottom:368.298933pt;}
.y18a{bottom:368.773867pt;}
.y278{bottom:370.890933pt;}
.ydc{bottom:373.434933pt;}
.y80{bottom:373.834933pt;}
.y1ce{bottom:375.013600pt;}
.yc3{bottom:375.475867pt;}
.y1ff{bottom:375.568267pt;}
.ya3{bottom:376.357733pt;}
.yf2{bottom:376.371867pt;}
.y1ac{bottom:377.017200pt;}
.y250{bottom:377.285600pt;}
.y29c{bottom:378.921600pt;}
.y231{bottom:379.765600pt;}
.y139{bottom:380.090933pt;}
.y16{bottom:380.176400pt;}
.y215{bottom:381.605600pt;}
.y1e7{bottom:383.034933pt;}
.y3a{bottom:383.054533pt;}
.y2d0{bottom:383.921600pt;}
.y5c{bottom:385.274933pt;}
.y178{bottom:387.882933pt;}
.y115{bottom:388.170933pt;}
.y2e0{bottom:388.721600pt;}
.y189{bottom:388.773867pt;}
.y277{bottom:390.618933pt;}
.ydb{bottom:392.234933pt;}
.y7f{bottom:393.434933pt;}
.y1cd{bottom:394.485600pt;}
.yc2{bottom:394.675867pt;}
.ya2{bottom:395.157733pt;}
.yf1{bottom:395.443867pt;}
.y1ab{bottom:396.089200pt;}
.y24f{bottom:396.357600pt;}
.y29b{bottom:396.785600pt;}
.y15{bottom:397.380400pt;}
.y230{bottom:399.093600pt;}
.y138{bottom:399.418933pt;}
.y214{bottom:400.933600pt;}
.y1e6{bottom:402.234933pt;}
.y39{bottom:402.782533pt;}
.y2df{bottom:404.721600pt;}
.y5b{bottom:405.146933pt;}
.y177{bottom:407.754933pt;}
.y114{bottom:408.042933pt;}
.y188{bottom:408.773867pt;}
.y276{bottom:410.346933pt;}
.yda{bottom:411.034933pt;}
.y7e{bottom:413.034933pt;}
.yc1{bottom:413.875867pt;}
.y1cc{bottom:413.957600pt;}
.ya1{bottom:413.957733pt;}
.yf0{bottom:414.515867pt;}
.y14{bottom:414.584400pt;}
.y29a{bottom:414.649600pt;}
.y1aa{bottom:415.161200pt;}
.y24e{bottom:415.429600pt;}
.y2c1{bottom:416.188267pt;}
.y22f{bottom:418.421600pt;}
.y137{bottom:418.746933pt;}
.y2cf{bottom:419.121600pt;}
.y1fe{bottom:419.834933pt;}
.y213{bottom:420.261600pt;}
.y2de{bottom:420.721600pt;}
.y158{bottom:421.050933pt;}
.y1e5{bottom:421.434933pt;}
.y38{bottom:422.510533pt;}
.y5a{bottom:425.018933pt;}
.y176{bottom:427.626933pt;}
.y113{bottom:427.914933pt;}
.y187{bottom:428.773867pt;}
.yd9{bottom:429.834933pt;}
.y275{bottom:430.074933pt;}
.y2c0{bottom:431.388267pt;}
.y13{bottom:431.788400pt;}
.y299{bottom:432.513600pt;}
.y7d{bottom:432.634933pt;}
.ya0{bottom:432.757733pt;}
.yc0{bottom:433.075867pt;}
.y1cb{bottom:433.429600pt;}
.yef{bottom:433.587867pt;}
.y1a9{bottom:434.233200pt;}
.y24d{bottom:434.501600pt;}
.y2ce{bottom:436.721600pt;}
.y22e{bottom:437.749600pt;}
.y136{bottom:438.074933pt;}
.y1fd{bottom:439.034933pt;}
.y212{bottom:439.589600pt;}
.y157{bottom:440.250933pt;}
.y1e4{bottom:440.634933pt;}
.y37{bottom:442.238533pt;}
.y59{bottom:444.890933pt;}
.y175{bottom:447.498933pt;}
.y112{bottom:447.786933pt;}
.yd8{bottom:448.634933pt;}
.y186{bottom:448.773867pt;}
.y12{bottom:448.992400pt;}
.y274{bottom:449.802933pt;}
.y298{bottom:450.377600pt;}
.y9f{bottom:451.557733pt;}
.y7c{bottom:452.234933pt;}
.ybf{bottom:452.275867pt;}
.yee{bottom:452.659867pt;}
.y1ca{bottom:452.901600pt;}
.y1a8{bottom:453.305200pt;}
.y2bf{bottom:455.921600pt;}
.y22d{bottom:457.077600pt;}
.y135{bottom:457.402933pt;}
.y1fc{bottom:458.234933pt;}
.y211{bottom:458.917600pt;}
.y156{bottom:459.450933pt;}
.y1e3{bottom:459.834933pt;}
.y36{bottom:461.966533pt;}
.y58{bottom:464.762933pt;}
.y11{bottom:466.196400pt;}
.y24c{bottom:466.768267pt;}
.y174{bottom:467.370933pt;}
.yd7{bottom:467.434933pt;}
.y111{bottom:467.658933pt;}
.y297{bottom:468.241600pt;}
.y273{bottom:469.530933pt;}
.y9e{bottom:470.357733pt;}
.ybe{bottom:471.475867pt;}
.yed{bottom:471.731867pt;}
.y7b{bottom:471.834933pt;}
.y2dd{bottom:471.921600pt;}
.y1a7{bottom:472.377200pt;}
.y2be{bottom:473.521600pt;}
.y22c{bottom:476.405600pt;}
.y134{bottom:476.730933pt;}
.y1fb{bottom:477.434933pt;}
.y210{bottom:478.245600pt;}
.y155{bottom:478.650933pt;}
.y1e2{bottom:479.034933pt;}
.y35{bottom:481.694533pt;}
.y10{bottom:483.400400pt;}
.y57{bottom:484.634933pt;}
.y1c9{bottom:485.962933pt;}
.y296{bottom:486.105600pt;}
.yd6{bottom:486.234933pt;}
.y173{bottom:487.242933pt;}
.y110{bottom:487.530933pt;}
.y272{bottom:489.258933pt;}
.y2dc{bottom:489.521600pt;}
.ybd{bottom:490.675867pt;}
.yec{bottom:490.803867pt;}
.y2bd{bottom:491.121600pt;}
.y7a{bottom:491.434933pt;}
.y1a6{bottom:491.449200pt;}
.y197{bottom:493.694400pt;}
.y22b{bottom:495.733600pt;}
.y133{bottom:496.058933pt;}
.y1fa{bottom:496.634933pt;}
.y20f{bottom:497.573600pt;}
.y154{bottom:497.850933pt;}
.y1e1{bottom:498.234933pt;}
.y9d{bottom:500.524400pt;}
.yf{bottom:500.604400pt;}
.y34{bottom:501.422533pt;}
.y295{bottom:503.969600pt;}
.y56{bottom:504.634933pt;}
.yd5{bottom:505.034933pt;}
.y1c8{bottom:505.434933pt;}
.y172{bottom:507.114933pt;}
.y10f{bottom:507.402933pt;}
.y2bc{bottom:508.721600pt;}
.y271{bottom:508.986933pt;}
.ybc{bottom:509.875867pt;}
.y1a5{bottom:510.521200pt;}
.y79{bottom:511.034933pt;}
.y24b{bottom:512.192267pt;}
.y22a{bottom:515.061600pt;}
.y132{bottom:515.386933pt;}
.y1f9{bottom:515.834933pt;}
.y9c{bottom:516.120400pt;}
.y20e{bottom:516.901600pt;}
.y153{bottom:517.050933pt;}
.y1e0{bottom:517.434933pt;}
.ye{bottom:517.808400pt;}
.y33{bottom:521.150533pt;}
.y294{bottom:521.833600pt;}
.yd4{bottom:523.834933pt;}
.y55{bottom:524.634933pt;}
.y2bb{bottom:526.321600pt;}
.y171{bottom:526.986933pt;}
.y10e{bottom:527.274933pt;}
.y270{bottom:528.714933pt;}
.ybb{bottom:529.075867pt;}
.y1a4{bottom:529.593200pt;}
.y78{bottom:530.634933pt;}
.y24a{bottom:531.264267pt;}
.y9b{bottom:531.716400pt;}
.y229{bottom:534.389600pt;}
.y131{bottom:534.714933pt;}
.yd{bottom:535.012400pt;}
.y1f8{bottom:535.034933pt;}
.y20d{bottom:536.234933pt;}
.y152{bottom:536.250933pt;}
.y1df{bottom:536.634933pt;}
.y293{bottom:539.697600pt;}
.y32{bottom:540.878533pt;}
.yd3{bottom:542.634933pt;}
.y2ba{bottom:543.921600pt;}
.y54{bottom:544.634933pt;}
.y170{bottom:546.858933pt;}
.y10d{bottom:547.146933pt;}
.y9a{bottom:547.312400pt;}
.yba{bottom:548.275867pt;}
.y26f{bottom:548.442933pt;}
.y1a3{bottom:548.665200pt;}
.y77{bottom:550.234933pt;}
.y249{bottom:550.336267pt;}
.y1c7{bottom:552.026933pt;}
.y228{bottom:553.717600pt;}
.y130{bottom:554.042933pt;}
.y1f7{bottom:554.234933pt;}
.y151{bottom:555.450933pt;}
.y1de{bottom:555.834933pt;}
.y292{bottom:557.561600pt;}
.yc{bottom:559.771467pt;}
.y31{bottom:560.606533pt;}
.yd2{bottom:561.434933pt;}
.y2b9{bottom:561.521600pt;}
.y99{bottom:562.908400pt;}
.y53{bottom:564.634933pt;}
.y16f{bottom:566.730933pt;}
.y10c{bottom:567.018933pt;}
.yb9{bottom:567.475867pt;}
.y1a2{bottom:567.737200pt;}
.y26e{bottom:568.170933pt;}
.y248{bottom:569.408267pt;}
.y76{bottom:569.834933pt;}
.y1c6{bottom:571.498933pt;}
.y227{bottom:573.045600pt;}
.y12f{bottom:573.370933pt;}
.y1f6{bottom:573.434933pt;}
.y150{bottom:574.650933pt;}
.y1dd{bottom:575.034933pt;}
.y291{bottom:575.425600pt;}
.y98{bottom:578.504400pt;}
.y2b8{bottom:579.121600pt;}
.yd1{bottom:580.234933pt;}
.y30{bottom:580.334533pt;}
.y52{bottom:584.634933pt;}
.y16e{bottom:586.602933pt;}
.yb8{bottom:586.675867pt;}
.y1a1{bottom:586.809200pt;}
.y10b{bottom:586.890933pt;}
.y26d{bottom:587.898933pt;}
.y247{bottom:588.480267pt;}
.y75{bottom:589.434933pt;}
.y1c5{bottom:590.970933pt;}
.y226{bottom:592.373600pt;}
.y12e{bottom:592.698933pt;}
.y290{bottom:593.289600pt;}
.y14f{bottom:593.850933pt;}
.y97{bottom:594.100400pt;}
.y1dc{bottom:594.234933pt;}
.y2b7{bottom:596.721600pt;}
.yd0{bottom:599.034933pt;}
.y2f{bottom:600.062533pt;}
.yb{bottom:604.434133pt;}
.y51{bottom:604.634933pt;}
.yeb{bottom:605.875867pt;}
.y1f5{bottom:605.968267pt;}
.y16d{bottom:606.474933pt;}
.y10a{bottom:606.762933pt;}
.y246{bottom:607.552267pt;}
.y26c{bottom:607.626933pt;}
.y74{bottom:609.034933pt;}
.y96{bottom:609.696400pt;}
.y1c4{bottom:610.442933pt;}
.y28f{bottom:611.153600pt;}
.y225{bottom:611.701600pt;}
.y12d{bottom:612.026933pt;}
.y14e{bottom:613.050933pt;}
.yb7{bottom:613.434933pt;}
.y2b6{bottom:614.321600pt;}
.ycf{bottom:617.834933pt;}
.y1a0{bottom:619.070533pt;}
.y2e{bottom:619.790533pt;}
.ya{bottom:621.638133pt;}
.y50{bottom:624.634933pt;}
.y25e{bottom:625.075867pt;}
.y16c{bottom:626.346933pt;}
.y245{bottom:626.624267pt;}
.y109{bottom:626.634933pt;}
.y26b{bottom:627.354933pt;}
.y73{bottom:628.634933pt;}
.y28e{bottom:629.017600pt;}
.y1c3{bottom:629.914933pt;}
.y12c{bottom:631.354933pt;}
.y2b5{bottom:631.921600pt;}
.y14d{bottom:632.250933pt;}
.yb6{bottom:632.634933pt;}
.y95{bottom:636.634933pt;}
.y19f{bottom:638.142533pt;}
.y2d{bottom:639.518533pt;}
.y224{bottom:644.368267pt;}
.y4f{bottom:644.634933pt;}
.y244{bottom:645.696267pt;}
.y16b{bottom:646.218933pt;}
.y108{bottom:646.506933pt;}
.y28d{bottom:646.881600pt;}
.y26a{bottom:647.082933pt;}
.y72{bottom:648.234933pt;}
.y1c2{bottom:649.386933pt;}
.y2b4{bottom:649.521600pt;}
.y12b{bottom:650.682933pt;}
.y14c{bottom:651.450933pt;}
.yea{bottom:651.834933pt;}
.y94{bottom:655.434933pt;}
.y9{bottom:657.646133pt;}
.y2c{bottom:659.246533pt;}
.y223{bottom:663.568267pt;}
.y4e{bottom:664.634933pt;}
.y28c{bottom:664.745600pt;}
.y243{bottom:664.768267pt;}
.y16a{bottom:666.090933pt;}
.y107{bottom:666.378933pt;}
.y269{bottom:666.810933pt;}
.y2b3{bottom:667.121600pt;}
.y71{bottom:667.834933pt;}
.y1c1{bottom:668.858933pt;}
.y12a{bottom:670.010933pt;}
.y14b{bottom:670.650933pt;}
.y1db{bottom:671.034933pt;}
.y93{bottom:674.234933pt;}
.y2b{bottom:678.974533pt;}
.y28b{bottom:682.609600pt;}
.y19e{bottom:683.582533pt;}
.y8{bottom:684.438133pt;}
.y4d{bottom:684.634933pt;}
.y2b2{bottom:684.721600pt;}
.y169{bottom:685.962933pt;}
.y106{bottom:686.250933pt;}
.y268{bottom:686.538933pt;}
.y70{bottom:687.434933pt;}
.y1c0{bottom:688.330933pt;}
.y129{bottom:689.338933pt;}
.y14a{bottom:689.850933pt;}
.yb5{bottom:690.234933pt;}
.y92{bottom:693.034933pt;}
.y2a{bottom:698.702533pt;}
.y28a{bottom:700.473600pt;}
.y2b1{bottom:702.321600pt;}
.y19d{bottom:702.654533pt;}
.y242{bottom:702.896267pt;}
.y4c{bottom:704.634933pt;}
.y168{bottom:705.834933pt;}
.y105{bottom:706.122933pt;}
.y267{bottom:706.266933pt;}
.y6f{bottom:707.034933pt;}
.y1bf{bottom:707.802933pt;}
.y128{bottom:708.666933pt;}
.y149{bottom:709.050933pt;}
.yb4{bottom:709.434933pt;}
.y91{bottom:711.834933pt;}
.y289{bottom:718.337600pt;}
.y29{bottom:718.430533pt;}
.y2b0{bottom:719.921600pt;}
.y19c{bottom:721.726533pt;}
.y241{bottom:721.968267pt;}
.y4b{bottom:724.634933pt;}
.y167{bottom:725.706933pt;}
.y104{bottom:725.994933pt;}
.y6e{bottom:726.634933pt;}
.y1be{bottom:727.274933pt;}
.y127{bottom:727.994933pt;}
.y148{bottom:728.250933pt;}
.yb3{bottom:728.634933pt;}
.y90{bottom:730.634933pt;}
.y7{bottom:733.161600pt;}
.y288{bottom:736.201600pt;}
.y2af{bottom:737.521600pt;}
.y28{bottom:738.158533pt;}
.y19b{bottom:740.798533pt;}
.y4a{bottom:744.634933pt;}
.y166{bottom:745.578933pt;}
.y103{bottom:745.722933pt;}
.y6d{bottom:746.234933pt;}
.y1bd{bottom:746.746933pt;}
.y126{bottom:747.322933pt;}
.y147{bottom:747.450933pt;}
.yb2{bottom:747.834933pt;}
.y6{bottom:748.761600pt;}
.y8f{bottom:749.434933pt;}
.y287{bottom:754.065600pt;}
.y2ae{bottom:755.121600pt;}
.y27{bottom:757.886533pt;}
.y19a{bottom:759.870533pt;}
.y5{bottom:764.361600pt;}
.y49{bottom:764.634933pt;}
.y102{bottom:765.450933pt;}
.y6c{bottom:765.834933pt;}
.y1bc{bottom:766.218933pt;}
.y125{bottom:766.650933pt;}
.yb1{bottom:767.034933pt;}
.y240{bottom:767.418933pt;}
.y8e{bottom:768.234933pt;}
.y286{bottom:771.929600pt;}
.y2ad{bottom:772.721600pt;}
.y26{bottom:777.614533pt;}
.y199{bottom:778.942533pt;}
.y4{bottom:779.961600pt;}
.y48{bottom:784.634933pt;}
.y101{bottom:785.178933pt;}
.y6b{bottom:785.434933pt;}
.y1bb{bottom:785.690933pt;}
.y124{bottom:785.978933pt;}
.yb0{bottom:786.234933pt;}
.y23f{bottom:786.490933pt;}
.y8d{bottom:787.034933pt;}
.y285{bottom:789.793600pt;}
.y2ac{bottom:790.321600pt;}
.y25{bottom:797.342533pt;}
.y47{bottom:804.634933pt;}
.y100{bottom:804.906933pt;}
.y6a{bottom:805.034933pt;}
.y1ba{bottom:805.162933pt;}
.y123{bottom:805.306933pt;}
.yaf{bottom:805.434933pt;}
.y198{bottom:805.562933pt;}
.y8c{bottom:805.834933pt;}
.y284{bottom:807.657600pt;}
.y2ab{bottom:807.921600pt;}
.y3{bottom:809.921600pt;}
.y24{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.h9{height:27.171875pt;}
.h7{height:31.700521pt;}
.h2{height:36.229167pt;}
.he{height:37.324219pt;}
.hc{height:43.022135pt;}
.h3{height:45.286458pt;}
.hd{height:47.550781pt;}
.h4{height:49.815104pt;}
.h6{height:54.343750pt;}
.h8{height:55.603583pt;}
.ha{height:56.286250pt;}
.hb{height:56.392917pt;}
.hf{height:56.520917pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.943467pt;}
.x7{left:105.825200pt;}
.x8{left:124.717467pt;}
.x6{left:133.929200pt;}
.xb{left:177.940933pt;}
.x1{left:192.843200pt;}
.x5{left:213.267333pt;}
.xa{left:453.314533pt;}
.x9{left:458.963867pt;}
.x2{left:508.590533pt;}
}




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