
    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_d78079766297016f29abf741.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_5cd1213ec59a2dff27fb21cb.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fae995ec3bac893b6122eb58.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_a620dd6ddb2c413d36f974fe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9964c35f27ab0adde590a09a.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_64c5de12d4325b327e700da4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c2110c1e69b93e1942a8a39d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_eab5eb28f2aeda834cafe847.woff')format("woff");}.ff8{font-family:ff8;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;}
.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:-26.640000px;}
.v4{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:26.640000px;}
.ls5d{letter-spacing:-1.782000px;}
.ls5c{letter-spacing:-1.650000px;}
.ls60{letter-spacing:-1.188000px;}
.ls5f{letter-spacing:-1.122000px;}
.ls2f{letter-spacing:-0.936000px;}
.ls3e{letter-spacing:-0.864000px;}
.ls66{letter-spacing:-0.858000px;}
.ls19{letter-spacing:-0.792000px;}
.ls4e{letter-spacing:-0.660000px;}
.ls13{letter-spacing:-0.648000px;}
.ls62{letter-spacing:-0.594000px;}
.ls27{letter-spacing:-0.576000px;}
.ls4c{letter-spacing:-0.528000px;}
.ls2c{letter-spacing:-0.504000px;}
.ls5e{letter-spacing:-0.462000px;}
.ls31{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.396000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls3b{letter-spacing:-0.342000px;}
.ls46{letter-spacing:-0.330000px;}
.ls2e{letter-spacing:-0.315000px;}
.ls24{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.264000px;}
.ls28{letter-spacing:-0.252000px;}
.ls11{letter-spacing:-0.216000px;}
.ls49{letter-spacing:-0.198000px;}
.ls2b{letter-spacing:-0.189000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls4d{letter-spacing:-0.132000px;}
.ls10{letter-spacing:-0.072000px;}
.ls4a{letter-spacing:-0.066000px;}
.ls9{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.066000px;}
.ls1a{letter-spacing:0.072000px;}
.ls51{letter-spacing:0.132000px;}
.ls14{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.198000px;}
.lsc{letter-spacing:0.216000px;}
.ls41{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.252000px;}
.ls40{letter-spacing:0.264000px;}
.ls1c{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.315000px;}
.ls52{letter-spacing:0.330000px;}
.lsd{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.396000px;}
.ls26{letter-spacing:0.432000px;}
.ls38{letter-spacing:0.441000px;}
.ls48{letter-spacing:0.462000px;}
.ls2a{letter-spacing:0.504000px;}
.ls42{letter-spacing:0.528000px;}
.ls17{letter-spacing:0.576000px;}
.ls44{letter-spacing:0.594000px;}
.ls30{letter-spacing:0.630000px;}
.ls23{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.720000px;}
.ls43{letter-spacing:0.726000px;}
.ls33{letter-spacing:0.756000px;}
.ls3d{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.858000px;}
.ls22{letter-spacing:0.864000px;}
.ls47{letter-spacing:0.924000px;}
.ls12{letter-spacing:0.936000px;}
.ls5a{letter-spacing:0.990000px;}
.ls32{letter-spacing:1.008000px;}
.ls4f{letter-spacing:1.056000px;}
.ls18{letter-spacing:1.080000px;}
.ls50{letter-spacing:1.188000px;}
.ls37{letter-spacing:1.224000px;}
.ls8{letter-spacing:1.254000px;}
.ls36{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.320000px;}
.ls57{letter-spacing:1.452000px;}
.ls54{letter-spacing:1.518000px;}
.ls58{letter-spacing:1.650000px;}
.ls55{letter-spacing:1.716000px;}
.ls1{letter-spacing:3.408000px;}
.ls34{letter-spacing:3.414600px;}
.ls16{letter-spacing:3.456000px;}
.ls21{letter-spacing:3.600000px;}
.ls0{letter-spacing:4.200000px;}
.lse{letter-spacing:5.112000px;}
.ls64{letter-spacing:5.148000px;}
.ls3c{letter-spacing:5.400000px;}
.ls3f{letter-spacing:5.616000px;}
.ls4{letter-spacing:6.000000px;}
.ls3a{letter-spacing:6.264000px;}
.ls2{letter-spacing:6.600000px;}
.ls5{letter-spacing:7.200000px;}
.ls35{letter-spacing:8.892000px;}
.ls3{letter-spacing:10.200000px;}
.ls25{letter-spacing:10.224000px;}
.ls61{letter-spacing:10.362000px;}
.ls63{letter-spacing:10.758000px;}
.ls2d{letter-spacing:10.814400px;}
.ls56{letter-spacing:10.956000px;}
.ls39{letter-spacing:11.210400px;}
.ls5b{letter-spacing:11.220000px;}
.ls59{letter-spacing:11.946000px;}
.ls1b{letter-spacing:14.327333px;}
.ls65{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;}
}
.ws6f{word-spacing:-38.346000px;}
.ws1{word-spacing:-27.432000px;}
.ws49{word-spacing:-22.860000px;}
.ws29{word-spacing:-20.592000px;}
.ws26{word-spacing:-20.232000px;}
.ws74{word-spacing:-19.800000px;}
.ws4a{word-spacing:-19.008000px;}
.ws59{word-spacing:-18.876000px;}
.ws58{word-spacing:-18.678000px;}
.ws5a{word-spacing:-18.612000px;}
.ws4d{word-spacing:-18.546000px;}
.ws4c{word-spacing:-18.348000px;}
.ws4b{word-spacing:-18.282000px;}
.ws3d{word-spacing:-18.216000px;}
.ws57{word-spacing:-18.150000px;}
.ws15{word-spacing:-17.784000px;}
.ws3c{word-spacing:-17.703000px;}
.ws2b{word-spacing:-17.496000px;}
.ws33{word-spacing:-17.451000px;}
.ws0{word-spacing:-16.860000px;}
.ws5b{word-spacing:-16.500000px;}
.ws6e{word-spacing:-16.302000px;}
.wsd{word-spacing:-16.017000px;}
.wsc{word-spacing:-12.139200px;}
.ws6d{word-spacing:-11.220000px;}
.ws6a{word-spacing:-10.956000px;}
.ws70{word-spacing:-10.758000px;}
.ws66{word-spacing:-10.362000px;}
.ws5{word-spacing:-10.200000px;}
.ws1c{word-spacing:-7.200000px;}
.ws4{word-spacing:-6.600000px;}
.ws6{word-spacing:-6.000000px;}
.ws46{word-spacing:-5.616000px;}
.ws42{word-spacing:-5.400000px;}
.ws2{word-spacing:-4.200000px;}
.ws24{word-spacing:-3.600000px;}
.ws65{word-spacing:-1.716000px;}
.ws6b{word-spacing:-1.650000px;}
.ws64{word-spacing:-1.518000px;}
.ws63{word-spacing:-1.452000px;}
.ws9{word-spacing:-1.320000px;}
.ws3e{word-spacing:-1.296000px;}
.wsa{word-spacing:-1.254000px;}
.ws3f{word-spacing:-1.224000px;}
.ws62{word-spacing:-1.188000px;}
.ws1b{word-spacing:-1.080000px;}
.ws3a{word-spacing:-1.008000px;}
.ws6c{word-spacing:-0.990000px;}
.ws13{word-spacing:-0.936000px;}
.ws25{word-spacing:-0.864000px;}
.ws7{word-spacing:-0.858000px;}
.ws44{word-spacing:-0.792000px;}
.ws3b{word-spacing:-0.756000px;}
.ws52{word-spacing:-0.726000px;}
.ws19{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.660000px;}
.ws28{word-spacing:-0.648000px;}
.ws38{word-spacing:-0.630000px;}
.ws68{word-spacing:-0.594000px;}
.ws1a{word-spacing:-0.576000px;}
.ws69{word-spacing:-0.528000px;}
.ws32{word-spacing:-0.504000px;}
.ws5c{word-spacing:-0.462000px;}
.ws40{word-spacing:-0.441000px;}
.ws2a{word-spacing:-0.432000px;}
.ws51{word-spacing:-0.396000px;}
.ws10{word-spacing:-0.360000px;}
.ws72{word-spacing:-0.330000px;}
.ws23{word-spacing:-0.315000px;}
.ws1e{word-spacing:-0.288000px;}
.ws47{word-spacing:-0.264000px;}
.ws2f{word-spacing:-0.252000px;}
.ws48{word-spacing:-0.240000px;}
.wsf{word-spacing:-0.216000px;}
.ws55{word-spacing:-0.198000px;}
.ws18{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.072000px;}
.ws73{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws50{word-spacing:0.066000px;}
.ws11{word-spacing:0.072000px;}
.ws54{word-spacing:0.132000px;}
.ws1f{word-spacing:0.144000px;}
.ws30{word-spacing:0.189000px;}
.ws4f{word-spacing:0.198000px;}
.ws12{word-spacing:0.216000px;}
.ws2e{word-spacing:0.252000px;}
.wse{word-spacing:0.264000px;}
.ws27{word-spacing:0.288000px;}
.ws36{word-spacing:0.315000px;}
.ws4e{word-spacing:0.330000px;}
.ws41{word-spacing:0.342000px;}
.ws1d{word-spacing:0.360000px;}
.ws21{word-spacing:0.378000px;}
.wsb{word-spacing:0.396000px;}
.ws39{word-spacing:0.432000px;}
.ws5f{word-spacing:0.462000px;}
.ws31{word-spacing:0.504000px;}
.ws53{word-spacing:0.528000px;}
.ws2c{word-spacing:0.576000px;}
.ws67{word-spacing:0.594000px;}
.ws14{word-spacing:0.648000px;}
.ws56{word-spacing:0.660000px;}
.ws16{word-spacing:0.792000px;}
.ws71{word-spacing:0.858000px;}
.ws45{word-spacing:0.864000px;}
.ws37{word-spacing:0.936000px;}
.ws35{word-spacing:1.008000px;}
.ws60{word-spacing:1.122000px;}
.ws61{word-spacing:1.188000px;}
.ws5d{word-spacing:1.650000px;}
.ws5e{word-spacing:1.782000px;}
.ws20{word-spacing:1.890000px;}
.ws34{word-spacing:4.284000px;}
.ws2d{word-spacing:4.410000px;}
.ws43{word-spacing:5.040000px;}
.ws22{word-spacing:8.883000px;}
._13{margin-left:-19.461000px;}
._12{margin-left:-15.113600px;}
._14{margin-left:-11.663200px;}
._d{margin-left:-10.475400px;}
._a{margin-left:-9.418800px;}
._c{margin-left:-8.347800px;}
._7{margin-left:-6.942000px;}
._4{margin-left:-4.963200px;}
._0{margin-left:-3.145800px;}
._3{margin-left:-1.151800px;}
._8{width:1.799800px;}
._2{width:3.345400px;}
._6{width:5.096600px;}
._f{width:6.144600px;}
._1{width:7.165200px;}
._e{width:8.371400px;}
._b{width:10.200000px;}
._5{width:11.253000px;}
._11{width:12.402700px;}
._16{width:14.027900px;}
._17{width:15.887200px;}
._9{width:17.340000px;}
._18{width:20.433600px;}
._10{width:56.923200px;}
._15{width:102.198000px;}
.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;}
.fsb{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:76.339350px;}
.y1{bottom:78.334500px;}
.y1b5{bottom:140.307450px;}
.y237{bottom:140.308950px;}
.y45{bottom:140.311950px;}
.y31f{bottom:141.511800px;}
.y24c{bottom:142.025400px;}
.y2fa{bottom:142.111800px;}
.y2e5{bottom:142.271400px;}
.y12e{bottom:142.449150px;}
.y22{bottom:142.688700px;}
.y2c0{bottom:142.910400px;}
.y1f4{bottom:143.292450px;}
.y190{bottom:143.496600px;}
.y271{bottom:143.612400px;}
.y88{bottom:143.692500px;}
.y14a{bottom:144.072900px;}
.y10c{bottom:144.483150px;}
.y288{bottom:144.483600px;}
.y344{bottom:144.541800px;}
.y16f{bottom:144.564450px;}
.y29c{bottom:144.574350px;}
.ya9{bottom:144.624450px;}
.yca{bottom:144.888300px;}
.y6a{bottom:144.930300px;}
.y216{bottom:146.032500px;}
.y1d5{bottom:146.080500px;}
.yeb{bottom:146.692500px;}
.y25d{bottom:147.112500px;}
.y1b4{bottom:156.808950px;}
.y236{bottom:156.810450px;}
.y44{bottom:156.813450px;}
.y31e{bottom:159.511800px;}
.y2f9{bottom:161.911800px;}
.y2bf{bottom:162.413400px;}
.y2e4{bottom:162.516900px;}
.y21{bottom:162.934200px;}
.y24b{bottom:163.029900px;}
.y215{bottom:164.633250px;}
.y12d{bottom:164.643150px;}
.y270{bottom:164.762400px;}
.y343{bottom:165.084300px;}
.y1f3{bottom:165.198450px;}
.y18f{bottom:165.240600px;}
.y287{bottom:165.483600px;}
.y87{bottom:165.598500px;}
.y149{bottom:165.978900px;}
.y16e{bottom:166.020450px;}
.ya8{bottom:166.368450px;}
.y69{bottom:166.674300px;}
.y29b{bottom:166.768350px;}
.y10b{bottom:166.839150px;}
.y1d4{bottom:167.086500px;}
.yc9{bottom:167.244300px;}
.yea{bottom:168.598500px;}
.y25c{bottom:168.712500px;}
.y1b3{bottom:173.310450px;}
.y235{bottom:173.311950px;}
.y31d{bottom:177.511800px;}
.y43{bottom:178.864950px;}
.y2f8{bottom:181.711800px;}
.y2be{bottom:181.916400px;}
.y2e3{bottom:182.762400px;}
.y20{bottom:183.031200px;}
.y214{bottom:183.234000px;}
.y342{bottom:185.626800px;}
.y26f{bottom:185.912400px;}
.y12c{bottom:186.837150px;}
.y18e{bottom:186.840600px;}
.y1f2{bottom:187.104450px;}
.y16d{bottom:187.476450px;}
.y86{bottom:187.504500px;}
.y1d3{bottom:188.092500px;}
.ya7{bottom:188.112450px;}
.y68{bottom:188.418300px;}
.y29a{bottom:188.962350px;}
.y10a{bottom:189.195150px;}
.yc8{bottom:189.600300px;}
.y1b2{bottom:189.811950px;}
.y234{bottom:189.813450px;}
.y25b{bottom:190.312500px;}
.y31c{bottom:195.511800px;}
.y148{bottom:200.631750px;}
.y2bd{bottom:201.419400px;}
.y2f7{bottom:201.511800px;}
.y213{bottom:201.834750px;}
.y2e2{bottom:203.007900px;}
.ye9{bottom:203.247000px;}
.y341{bottom:206.169300px;}
.y1b1{bottom:206.313450px;}
.y26e{bottom:207.062400px;}
.y18d{bottom:208.440600px;}
.y16c{bottom:208.932450px;}
.y1f1{bottom:209.010450px;}
.y12b{bottom:209.031150px;}
.y1d2{bottom:209.098500px;}
.y85{bottom:209.248500px;}
.ya6{bottom:210.018450px;}
.y67{bottom:210.162300px;}
.y42{bottom:210.720000px;}
.y299{bottom:211.156350px;}
.y109{bottom:211.551150px;}
.y1f{bottom:211.635150px;}
.y233{bottom:211.864950px;}
.y25a{bottom:211.912500px;}
.yc7{bottom:211.956300px;}
.y147{bottom:218.933250px;}
.y2bc{bottom:220.922400px;}
.y2f6{bottom:221.311800px;}
.ye8{bottom:221.548500px;}
.y2e1{bottom:223.253400px;}
.y340{bottom:226.711800px;}
.y26d{bottom:228.212400px;}
.y1b0{bottom:228.364950px;}
.y16b{bottom:230.388450px;}
.y1f0{bottom:230.916450px;}
.y66{bottom:231.906300px;}
.ya5{bottom:231.924450px;}
.y41{bottom:232.464000px;}
.y212{bottom:233.226600px;}
.y298{bottom:233.350350px;}
.y259{bottom:233.512500px;}
.y108{bottom:233.907150px;}
.yc6{bottom:234.312300px;}
.y31b{bottom:235.111800px;}
.y146{bottom:237.234750px;}
.y1d1{bottom:238.602450px;}
.ye7{bottom:239.850000px;}
.y2bb{bottom:240.425400px;}
.y2f5{bottom:241.111800px;}
.y2e0{bottom:243.498900px;}
.y84{bottom:243.778500px;}
.y12a{bottom:243.982500px;}
.y18c{bottom:245.040600px;}
.y33f{bottom:247.254300px;}
.y26c{bottom:249.362400px;}
.y16a{bottom:251.844450px;}
.y1ef{bottom:252.822450px;}
.y65{bottom:253.650300px;}
.ya4{bottom:253.830450px;}
.y40{bottom:254.208000px;}
.y31a{bottom:254.911800px;}
.y258{bottom:255.112500px;}
.y232{bottom:255.414300px;}
.y211{bottom:255.420600px;}
.y297{bottom:255.544350px;}
.y107{bottom:256.263150px;}
.yc5{bottom:256.668300px;}
.ye6{bottom:258.151500px;}
.y2ba{bottom:259.928400px;}
.y2f4{bottom:260.911800px;}
.y83{bottom:261.922500px;}
.y129{bottom:262.583250px;}
.y1e{bottom:263.383950px;}
.y2df{bottom:263.744400px;}
.y33e{bottom:267.796800px;}
.y145{bottom:268.278750px;}
.y26b{bottom:270.512400px;}
.y1af{bottom:272.328750px;}
.y169{bottom:273.300450px;}
.y1ee{bottom:274.728450px;}
.y64{bottom:275.394300px;}
.ya3{bottom:275.736450px;}
.y3f{bottom:275.808000px;}
.ye5{bottom:276.453000px;}
.y257{bottom:276.712500px;}
.y231{bottom:277.014300px;}
.y210{bottom:277.614600px;}
.y296{bottom:277.738350px;}
.y106{bottom:278.619150px;}
.yc4{bottom:279.024300px;}
.y2b9{bottom:279.431400px;}
.y82{bottom:280.066500px;}
.y128{bottom:281.184000px;}
.y1d{bottom:283.480950px;}
.y2de{bottom:283.989900px;}
.y33d{bottom:288.339300px;}
.y144{bottom:290.184750px;}
.y26a{bottom:291.662400px;}
.y1ae{bottom:293.334750px;}
.ye4{bottom:294.754500px;}
.y168{bottom:294.756450px;}
.y319{bottom:296.497800px;}
.y1ed{bottom:296.634450px;}
.y18b{bottom:296.640600px;}
.y63{bottom:297.138300px;}
.y3e{bottom:297.408000px;}
.ya2{bottom:297.642450px;}
.y81{bottom:298.210500px;}
.y256{bottom:298.312500px;}
.y230{bottom:298.614300px;}
.y2b8{bottom:298.934400px;}
.y127{bottom:299.784750px;}
.y20f{bottom:299.808600px;}
.y295{bottom:299.932350px;}
.y105{bottom:300.975150px;}
.yc3{bottom:301.380300px;}
.y1d0{bottom:301.542450px;}
.y2f3{bottom:302.311800px;}
.y1c{bottom:303.577950px;}
.y2dd{bottom:304.235400px;}
.y33c{bottom:308.881800px;}
.y143{bottom:312.090750px;}
.y269{bottom:312.812400px;}
.y1ad{bottom:314.340750px;}
.y167{bottom:316.212450px;}
.y80{bottom:316.354500px;}
.y318{bottom:316.891800px;}
.y18a{bottom:318.240600px;}
.y126{bottom:318.385500px;}
.y2b7{bottom:318.437400px;}
.y1ec{bottom:318.540450px;}
.y62{bottom:318.882300px;}
.y3d{bottom:319.008000px;}
.ya1{bottom:319.548450px;}
.y255{bottom:319.912500px;}
.y22f{bottom:320.214300px;}
.y20e{bottom:322.002600px;}
.y294{bottom:322.126350px;}
.y1cf{bottom:322.548450px;}
.y104{bottom:323.331150px;}
.y1b{bottom:323.674950px;}
.yc2{bottom:323.736300px;}
.y2dc{bottom:324.480900px;}
.ye3{bottom:325.780350px;}
.y33b{bottom:329.424300px;}
.y268{bottom:333.962400px;}
.y1ac{bottom:335.490750px;}
.y125{bottom:336.986250px;}
.y317{bottom:337.285800px;}
.y166{bottom:337.668450px;}
.y2b6{bottom:337.940400px;}
.y189{bottom:339.840600px;}
.y1eb{bottom:340.446450px;}
.y3c{bottom:340.608000px;}
.y61{bottom:340.626300px;}
.ya0{bottom:341.454450px;}
.y254{bottom:341.512500px;}
.y22e{bottom:341.814300px;}
.y1ce{bottom:343.554450px;}
.y2f2{bottom:343.711800px;}
.y1a{bottom:343.771950px;}
.y20d{bottom:344.196600px;}
.y293{bottom:344.320350px;}
.y2db{bottom:344.726400px;}
.yc1{bottom:346.092300px;}
.y7f{bottom:347.152350px;}
.ye2{bottom:347.686350px;}
.y142{bottom:349.290600px;}
.y33a{bottom:349.966800px;}
.y267{bottom:355.112400px;}
.y124{bottom:355.587000px;}
.y2b5{bottom:357.443400px;}
.y316{bottom:357.679800px;}
.y165{bottom:359.124450px;}
.y103{bottom:361.431150px;}
.y188{bottom:361.440600px;}
.y3b{bottom:362.208000px;}
.y1ea{bottom:362.352450px;}
.y60{bottom:362.370300px;}
.y253{bottom:363.112500px;}
.y9f{bottom:363.360450px;}
.y22d{bottom:363.414300px;}
.y19{bottom:363.868950px;}
.y1cd{bottom:364.560450px;}
.y2da{bottom:364.971900px;}
.y2f1{bottom:365.311800px;}
.y20c{bottom:366.390600px;}
.y292{bottom:366.514350px;}
.yc0{bottom:368.448300px;}
.y7e{bottom:369.058350px;}
.y1ab{bottom:369.428100px;}
.ye1{bottom:369.592350px;}
.y339{bottom:370.509300px;}
.y266{bottom:376.262400px;}
.y2b4{bottom:376.946400px;}
.y315{bottom:378.073800px;}
.y164{bottom:380.580450px;}
.y187{bottom:383.040600px;}
.y3a{bottom:383.808000px;}
.y18{bottom:383.965950px;}
.y5f{bottom:384.114300px;}
.y252{bottom:384.712500px;}
.y22c{bottom:385.014300px;}
.y2d9{bottom:385.217400px;}
.y9e{bottom:385.266450px;}
.y1cc{bottom:385.566450px;}
.y2f0{bottom:386.911800px;}
.y1aa{bottom:386.973600px;}
.y123{bottom:387.032850px;}
.y291{bottom:388.708350px;}
.ybf{bottom:390.804300px;}
.y7d{bottom:390.964350px;}
.y338{bottom:391.051800px;}
.ye0{bottom:391.498350px;}
.y2b3{bottom:396.449400px;}
.y1e9{bottom:397.006950px;}
.y265{bottom:397.412400px;}
.y314{bottom:398.467800px;}
.y20b{bottom:401.373600px;}
.y141{bottom:401.766600px;}
.y163{bottom:402.036450px;}
.y17{bottom:404.062950px;}
.y1a9{bottom:404.519100px;}
.y186{bottom:404.640600px;}
.y39{bottom:405.408000px;}
.y2d8{bottom:405.462900px;}
.y5e{bottom:405.858300px;}
.y251{bottom:406.312500px;}
.y1cb{bottom:406.572450px;}
.y22b{bottom:406.614300px;}
.y9d{bottom:407.172450px;}
.y2ef{bottom:408.511800px;}
.y122{bottom:409.226850px;}
.y290{bottom:410.902350px;}
.y337{bottom:411.594300px;}
.y7c{bottom:412.870350px;}
.ybe{bottom:413.160300px;}
.ydf{bottom:413.404350px;}
.y102{bottom:415.233150px;}
.y1e8{bottom:415.308450px;}
.y2b2{bottom:415.952400px;}
.y264{bottom:418.562400px;}
.y313{bottom:418.861800px;}
.y20a{bottom:419.816850px;}
.y1a8{bottom:422.064600px;}
.y162{bottom:423.492450px;}
.y140{bottom:423.672600px;}
.y16{bottom:424.159950px;}
.y2d7{bottom:425.708400px;}
.y185{bottom:426.240600px;}
.y38{bottom:427.008000px;}
.y1ca{bottom:427.578450px;}
.y5d{bottom:427.602300px;}
.y250{bottom:427.912500px;}
.y22a{bottom:428.214300px;}
.y9c{bottom:429.078450px;}
.y121{bottom:431.420850px;}
.y336{bottom:432.136800px;}
.y28f{bottom:433.096350px;}
.y7b{bottom:434.776350px;}
.yde{bottom:435.310350px;}
.y2b1{bottom:435.455400px;}
.ybd{bottom:435.516300px;}
.y101{bottom:437.589150px;}
.y209{bottom:438.260100px;}
.y312{bottom:439.255800px;}
.y1a7{bottom:439.610100px;}
.y263{bottom:439.712400px;}
.y15{bottom:444.256950px;}
.y161{bottom:444.948450px;}
.y13f{bottom:445.578600px;}
.y2d6{bottom:445.953900px;}
.y1e7{bottom:446.460300px;}
.y184{bottom:447.840600px;}
.y1c9{bottom:448.584450px;}
.y37{bottom:448.608000px;}
.y5c{bottom:449.346300px;}
.y24f{bottom:449.512500px;}
.y229{bottom:449.814300px;}
.y9b{bottom:450.984450px;}
.y335{bottom:452.679300px;}
.y120{bottom:453.614850px;}
.y2b0{bottom:454.958400px;}
.y28e{bottom:455.290350px;}
.y7a{bottom:456.682350px;}
.y208{bottom:456.703350px;}
.y1a6{bottom:457.155600px;}
.ybc{bottom:457.872300px;}
.y311{bottom:459.649800px;}
.y100{bottom:459.945150px;}
.y262{bottom:460.862400px;}
.y14{bottom:464.353950px;}
.y286{bottom:464.664300px;}
.y160{bottom:466.404450px;}
.y13e{bottom:467.484600px;}
.y1e6{bottom:468.204300px;}
.y183{bottom:469.440600px;}
.y1c8{bottom:469.590450px;}
.y2ee{bottom:469.711800px;}
.y36{bottom:470.208000px;}
.y5b{bottom:471.090300px;}
.y228{bottom:471.414300px;}
.ydd{bottom:472.510350px;}
.y9a{bottom:472.890450px;}
.y334{bottom:473.221800px;}
.y2af{bottom:474.461400px;}
.y1a5{bottom:474.701100px;}
.y2d5{bottom:474.708000px;}
.y207{bottom:475.146600px;}
.y11f{bottom:475.808850px;}
.y28d{bottom:477.484350px;}
.y79{bottom:478.588350px;}
.y310{bottom:480.043800px;}
.ybb{bottom:480.228300px;}
.y261{bottom:482.012400px;}
.yff{bottom:482.301150px;}
.y13{bottom:484.450950px;}
.y285{bottom:486.714300px;}
.y2ed{bottom:486.811800px;}
.y15f{bottom:487.860450px;}
.y13d{bottom:489.390600px;}
.y1e5{bottom:489.948300px;}
.y1c7{bottom:490.596450px;}
.y182{bottom:491.040600px;}
.y35{bottom:491.808000px;}
.y1a4{bottom:492.246600px;}
.y5a{bottom:492.834300px;}
.y227{bottom:493.014300px;}
.y333{bottom:493.764300px;}
.y2ae{bottom:493.964400px;}
.y99{bottom:494.796450px;}
.y11e{bottom:498.002850px;}
.y28c{bottom:499.678350px;}
.y30f{bottom:500.437800px;}
.y78{bottom:500.494350px;}
.yba{bottom:502.584300px;}
.y260{bottom:503.162400px;}
.y12{bottom:504.547950px;}
.yfe{bottom:504.657150px;}
.y206{bottom:506.352450px;}
.y24e{bottom:507.712500px;}
.y284{bottom:508.764300px;}
.y15e{bottom:509.316450px;}
.y1c6{bottom:511.602450px;}
.y1e4{bottom:511.692300px;}
.y181{bottom:512.640600px;}
.y2ec{bottom:512.911800px;}
.y34{bottom:513.408000px;}
.y2ad{bottom:513.467400px;}
.y332{bottom:514.306800px;}
.y59{bottom:514.578300px;}
.y226{bottom:514.614300px;}
.y98{bottom:516.702450px;}
.y24a{bottom:520.050300px;}
.y11d{bottom:520.196850px;}
.y30e{bottom:520.831800px;}
.y28b{bottom:521.872350px;}
.y77{bottom:522.400350px;}
.y1a3{bottom:522.552450px;}
.y2d4{bottom:523.801800px;}
.y13c{bottom:524.042100px;}
.y25f{bottom:524.312400px;}
.y11{bottom:524.644950px;}
.ydc{bottom:524.908350px;}
.yb9{bottom:524.940300px;}
.yfd{bottom:527.013150px;}
.y205{bottom:528.402450px;}
.y24d{bottom:528.712500px;}
.y15d{bottom:530.772450px;}
.y283{bottom:530.814300px;}
.y2eb{bottom:532.711800px;}
.y2ac{bottom:532.970400px;}
.y1e3{bottom:533.436300px;}
.y331{bottom:534.849300px;}
.y33{bottom:535.008000px;}
.y225{bottom:536.214300px;}
.y58{bottom:536.322300px;}
.y30d{bottom:541.225800px;}
.y249{bottom:541.506300px;}
.y13b{bottom:542.343600px;}
.y11c{bottom:542.390850px;}
.y1a2{bottom:543.702450px;}
.y2d3{bottom:544.047300px;}
.y28a{bottom:544.066350px;}
.y76{bottom:544.306350px;}
.y10{bottom:544.741950px;}
.y1c5{bottom:545.309700px;}
.y25e{bottom:545.462400px;}
.ydb{bottom:546.814350px;}
.y180{bottom:546.992100px;}
.yb8{bottom:547.296300px;}
.yfc{bottom:549.369150px;}
.y204{bottom:550.452450px;}
.y15c{bottom:552.228450px;}
.y2ab{bottom:552.473400px;}
.y2ea{bottom:552.511800px;}
.y282{bottom:552.864300px;}
.y97{bottom:553.896450px;}
.y1e2{bottom:555.180300px;}
.y330{bottom:555.391800px;}
.y32{bottom:556.608000px;}
.y224{bottom:557.814300px;}
.y57{bottom:558.066300px;}
.y13a{bottom:560.645100px;}
.y30c{bottom:561.619800px;}
.y1c4{bottom:562.713450px;}
.y248{bottom:562.962300px;}
.y2d2{bottom:564.292800px;}
.y11b{bottom:564.584850px;}
.yf{bottom:564.838950px;}
.y1a1{bottom:564.852450px;}
.y17f{bottom:564.994350px;}
.y75{bottom:566.212350px;}
.y289{bottom:566.260350px;}
.yda{bottom:568.720350px;}
.yb7{bottom:569.652300px;}
.yfb{bottom:571.725150px;}
.y2aa{bottom:571.976400px;}
.y2e9{bottom:572.311800px;}
.y203{bottom:572.502450px;}
.y15b{bottom:573.684450px;}
.y281{bottom:574.914300px;}
.y96{bottom:575.802450px;}
.y32f{bottom:575.934300px;}
.y1e1{bottom:576.924300px;}
.y139{bottom:578.946600px;}
.y223{bottom:579.414300px;}
.y56{bottom:579.810300px;}
.y1c3{bottom:580.117200px;}
.y30b{bottom:582.013800px;}
.y17e{bottom:582.996600px;}
.y247{bottom:584.418300px;}
.y2d1{bottom:584.538300px;}
.y1a0{bottom:586.002450px;}
.y31{bottom:586.711800px;}
.y11a{bottom:586.778850px;}
.y74{bottom:588.118350px;}
.yd9{bottom:590.626350px;}
.y2a9{bottom:591.479400px;}
.yb6{bottom:592.008300px;}
.y2e8{bottom:592.111800px;}
.ye{bottom:593.442900px;}
.yfa{bottom:594.081150px;}
.y202{bottom:594.552450px;}
.y15a{bottom:595.140450px;}
.y32e{bottom:596.476800px;}
.y280{bottom:596.964300px;}
.y1c2{bottom:597.520950px;}
.y1e0{bottom:598.668300px;}
.y222{bottom:601.014300px;}
.y55{bottom:601.554300px;}
.y30a{bottom:602.407800px;}
.y2d0{bottom:604.783800px;}
.y246{bottom:605.874300px;}
.y273{bottom:606.348450px;}
.y19f{bottom:607.152450px;}
.y119{bottom:608.972850px;}
.y138{bottom:609.990450px;}
.y73{bottom:610.024350px;}
.y2a8{bottom:610.982400px;}
.y2e7{bottom:611.911800px;}
.yd8{bottom:612.532350px;}
.y17d{bottom:613.752450px;}
.yb5{bottom:614.364300px;}
.y1c1{bottom:614.924700px;}
.y159{bottom:616.596450px;}
.y201{bottom:616.602450px;}
.y32d{bottom:617.019300px;}
.y27f{bottom:619.014300px;}
.y1df{bottom:620.412300px;}
.y221{bottom:622.614300px;}
.y309{bottom:622.801800px;}
.y54{bottom:623.298300px;}
.y2cf{bottom:625.029300px;}
.y272{bottom:626.148450px;}
.y245{bottom:627.330300px;}
.y95{bottom:628.272450px;}
.y19e{bottom:628.302450px;}
.yf9{bottom:629.177850px;}
.y2a7{bottom:630.485400px;}
.y118{bottom:631.166850px;}
.y2e6{bottom:631.711800px;}
.y137{bottom:631.896450px;}
.y72{bottom:631.930350px;}
.y1c0{bottom:632.328450px;}
.yd7{bottom:634.438350px;}
.y17c{bottom:635.352450px;}
.y32c{bottom:637.561800px;}
.y158{bottom:638.052450px;}
.y200{bottom:638.652450px;}
.y27e{bottom:641.064300px;}
.y1de{bottom:642.156300px;}
.y308{bottom:643.195800px;}
.yd{bottom:644.142900px;}
.y220{bottom:644.214300px;}
.y53{bottom:645.042300px;}
.y2ce{bottom:645.274800px;}
.yf8{bottom:647.778600px;}
.y244{bottom:648.786300px;}
.y1bf{bottom:649.732200px;}
.y2a6{bottom:649.988400px;}
.y94{bottom:650.178450px;}
.y30{bottom:651.511800px;}
.yb4{bottom:652.314300px;}
.y117{bottom:653.360850px;}
.y136{bottom:653.802450px;}
.y71{bottom:653.836350px;}
.yd6{bottom:656.344350px;}
.y17b{bottom:656.952450px;}
.y32b{bottom:658.104300px;}
.y1ff{bottom:660.702450px;}
.y19d{bottom:662.230950px;}
.y27d{bottom:663.114300px;}
.y307{bottom:663.589800px;}
.y1dd{bottom:663.900300px;}
.yc{bottom:663.942900px;}
.y2cd{bottom:665.520300px;}
.y21f{bottom:665.814300px;}
.y52{bottom:666.786300px;}
.y1be{bottom:667.135950px;}
.y2a5{bottom:669.491400px;}
.y243{bottom:670.242300px;}
.y2f{bottom:671.311800px;}
.y93{bottom:672.084450px;}
.y157{bottom:672.305700px;}
.y116{bottom:675.554850px;}
.y70{bottom:675.742350px;}
.yd5{bottom:678.250350px;}
.y17a{bottom:678.552450px;}
.y32a{bottom:678.646800px;}
.yf7{bottom:679.136850px;}
.y19c{bottom:679.776450px;}
.y1fe{bottom:682.752450px;}
.y306{bottom:683.983800px;}
.y1bd{bottom:684.539700px;}
.y27c{bottom:685.164300px;}
.y1dc{bottom:685.644300px;}
.y2cc{bottom:685.765800px;}
.y21e{bottom:687.414300px;}
.y135{bottom:688.453950px;}
.y51{bottom:688.530300px;}
.y2a4{bottom:688.994400px;}
.y156{bottom:690.150450px;}
.y2e{bottom:691.111800px;}
.y242{bottom:691.698300px;}
.y92{bottom:693.990450px;}
.y349{bottom:694.711800px;}
.y19b{bottom:697.321950px;}
.y6f{bottom:697.648350px;}
.yf6{bottom:697.737600px;}
.y115{bottom:697.748850px;}
.y329{bottom:699.189300px;}
.y179{bottom:700.152450px;}
.yd4{bottom:700.156350px;}
.y1bc{bottom:701.943450px;}
.y305{bottom:704.377800px;}
.y1fd{bottom:704.802450px;}
.yb{bottom:705.342900px;}
.yb3{bottom:705.774300px;}
.y2cb{bottom:706.011300px;}
.y134{bottom:706.755450px;}
.y27b{bottom:707.214300px;}
.y1db{bottom:707.388300px;}
.y155{bottom:707.995200px;}
.y2a3{bottom:708.497400px;}
.y21d{bottom:709.014300px;}
.y50{bottom:710.274300px;}
.y2d{bottom:710.911800px;}
.y348{bottom:712.711800px;}
.y241{bottom:713.154300px;}
.y19a{bottom:714.867450px;}
.y91{bottom:715.896450px;}
.yf5{bottom:716.338350px;}
.y1bb{bottom:719.347200px;}
.y6e{bottom:719.554350px;}
.y328{bottom:719.731800px;}
.y114{bottom:719.942850px;}
.y178{bottom:721.752450px;}
.yd3{bottom:722.062350px;}
.y304{bottom:724.771800px;}
.y133{bottom:725.056950px;}
.y154{bottom:725.839950px;}
.y2ca{bottom:726.256800px;}
.y1fc{bottom:726.852450px;}
.yb2{bottom:727.968300px;}
.y2a2{bottom:728.000400px;}
.y1da{bottom:729.132300px;}
.y27a{bottom:729.264300px;}
.y21c{bottom:730.614300px;}
.y2c{bottom:730.711800px;}
.y4f{bottom:732.018300px;}
.y199{bottom:732.412950px;}
.y240{bottom:734.610300px;}
.ya{bottom:735.942900px;}
.y1ba{bottom:736.750950px;}
.y90{bottom:737.802450px;}
.y327{bottom:740.274300px;}
.y6d{bottom:741.460350px;}
.y177{bottom:743.352450px;}
.y132{bottom:743.358450px;}
.y153{bottom:743.684700px;}
.yd2{bottom:743.968350px;}
.y303{bottom:745.165800px;}
.y2c9{bottom:746.502300px;}
.y2a1{bottom:747.503400px;}
.yf4{bottom:747.696600px;}
.y347{bottom:748.711800px;}
.y198{bottom:749.958450px;}
.yb1{bottom:750.162300px;}
.y2b{bottom:750.511800px;}
.y1d9{bottom:750.876300px;}
.y279{bottom:751.314300px;}
.y21b{bottom:752.214300px;}
.y4e{bottom:753.762300px;}
.y1b9{bottom:754.154700px;}
.y113{bottom:754.889700px;}
.y23f{bottom:756.066300px;}
.y326{bottom:760.816800px;}
.y152{bottom:761.529450px;}
.y1fb{bottom:761.692200px;}
.y302{bottom:765.559800px;}
.yd1{bottom:765.874350px;}
.yf3{bottom:766.297350px;}
.y9{bottom:766.542900px;}
.y2c8{bottom:766.747800px;}
.y2a0{bottom:767.006400px;}
.y2a{bottom:770.311800px;}
.y1b8{bottom:771.558450px;}
.y6c{bottom:771.870300px;}
.yb0{bottom:772.356300px;}
.y8f{bottom:772.455450px;}
.y1d8{bottom:772.620300px;}
.y278{bottom:773.364300px;}
.y112{bottom:773.490450px;}
.y21a{bottom:773.814300px;}
.y131{bottom:774.372300px;}
.y4d{bottom:775.506300px;}
.y23e{bottom:777.522300px;}
.y176{bottom:777.701700px;}
.y151{bottom:779.374200px;}
.y1fa{bottom:780.135450px;}
.y197{bottom:780.240300px;}
.y325{bottom:781.359300px;}
.yf2{bottom:784.898100px;}
.y301{bottom:785.953800px;}
.y2c7{bottom:786.993300px;}
.yd0{bottom:787.780350px;}
.y346{bottom:788.311800px;}
.y29{bottom:790.111800px;}
.y8e{bottom:790.756950px;}
.y111{bottom:792.091200px;}
.y6b{bottom:793.614300px;}
.y1d7{bottom:794.364300px;}
.yaf{bottom:794.550300px;}
.y29f{bottom:795.010350px;}
.y277{bottom:795.414300px;}
.y175{bottom:795.703950px;}
.y130{bottom:796.278300px;}
.y150{bottom:797.218950px;}
.y4c{bottom:797.250300px;}
.y1f9{bottom:798.578700px;}
.y23d{bottom:798.978300px;}
.y196{bottom:801.390300px;}
.y1b7{bottom:801.678300px;}
.yf1{bottom:803.498850px;}
.y300{bottom:806.347800px;}
.y2c6{bottom:807.238800px;}
.y345{bottom:808.111800px;}
.y8d{bottom:809.058450px;}
.ycf{bottom:809.686350px;}
.y28{bottom:809.911800px;}
.y219{bottom:810.414300px;}
.y174{bottom:813.706200px;}
.y14f{bottom:815.063700px;}
.yae{bottom:816.744300px;}
.y1f8{bottom:817.021950px;}
.y276{bottom:817.464300px;}
.y12f{bottom:818.184300px;}
.y4b{bottom:818.994300px;}
.y23c{bottom:820.434300px;}
.y8{bottom:821.806950px;}
.y195{bottom:822.540300px;}
.y1b6{bottom:822.684300px;}
.y110{bottom:823.449450px;}
.y324{bottom:823.509450px;}
.y2ff{bottom:826.741800px;}
.y2c5{bottom:827.484300px;}
.y27{bottom:829.711800px;}
.y1d6{bottom:831.414300px;}
.yce{bottom:831.592350px;}
.y173{bottom:831.708450px;}
.y218{bottom:832.014300px;}
.y14e{bottom:832.908450px;}
.yf0{bottom:834.860700px;}
.y1f7{bottom:835.465200px;}
.yad{bottom:838.938300px;}
.y275{bottom:839.514300px;}
.y7{bottom:839.956950px;}
.y8c{bottom:840.090300px;}
.y4a{bottom:840.738300px;}
.y23b{bottom:841.890300px;}
.y10f{bottom:842.050200px;}
.y29e{bottom:842.538300px;}
.y194{bottom:843.690300px;}
.y2fe{bottom:847.135800px;}
.y2c4{bottom:847.729800px;}
.y26{bottom:849.511800px;}
.ycd{bottom:853.498350px;}
.y1f6{bottom:853.908450px;}
.yef{bottom:857.054700px;}
.y6{bottom:858.106950px;}
.y10e{bottom:860.650950px;}
.yac{bottom:861.132300px;}
.y274{bottom:861.564300px;}
.y8b{bottom:861.996300px;}
.y172{bottom:862.464300px;}
.y49{bottom:862.482300px;}
.y23a{bottom:863.346300px;}
.y14d{bottom:863.508300px;}
.y29d{bottom:863.832300px;}
.y193{bottom:864.696300px;}
.y323{bottom:864.909300px;}
.y2fd{bottom:867.529800px;}
.y2c3{bottom:867.975300px;}
.y25{bottom:869.311800px;}
.ycc{bottom:875.404350px;}
.y5{bottom:876.256950px;}
.y10d{bottom:879.251700px;}
.yab{bottom:883.326300px;}
.y217{bottom:883.614300px;}
.y8a{bottom:883.902300px;}
.y171{bottom:884.064300px;}
.y48{bottom:884.226300px;}
.y239{bottom:884.802300px;}
.y14c{bottom:884.964300px;}
.y1f5{bottom:885.126300px;}
.y192{bottom:885.702300px;}
.y322{bottom:886.509300px;}
.y2fc{bottom:887.923800px;}
.y2c2{bottom:888.220800px;}
.y24{bottom:889.111800px;}
.yee{bottom:892.009200px;}
.ycb{bottom:897.310350px;}
.yaa{bottom:905.520300px;}
.y170{bottom:905.664300px;}
.y89{bottom:905.808300px;}
.y47{bottom:905.970300px;}
.y238{bottom:906.258300px;}
.y14b{bottom:906.420300px;}
.y191{bottom:906.708300px;}
.y321{bottom:908.109300px;}
.y2fb{bottom:908.317800px;}
.y2c1{bottom:908.466300px;}
.y23{bottom:908.911800px;}
.y4{bottom:910.561950px;}
.yed{bottom:910.609950px;}
.y46{bottom:927.714300px;}
.y3{bottom:928.711800px;}
.yec{bottom:929.210700px;}
.y320{bottom:929.709450px;}
.h9{height:30.568359px;}
.h7{height:35.663086px;}
.h2{height:40.757812px;}
.hc{height:41.989746px;}
.hd{height:43.466309px;}
.ha{height:48.399902px;}
.h3{height:50.947266px;}
.hb{height:53.494629px;}
.h4{height:56.041992px;}
.h6{height:61.136719px;}
.h8{height:63.322031px;}
.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.797900px;}
.x1{left:109.020150px;}
.x7{left:119.047350px;}
.x9{left:127.547100px;}
.xb{left:140.323650px;}
.x6{left:143.170350px;}
.xa{left:148.826550px;}
.xe{left:200.509650px;}
.x5{left:239.510100px;}
.xf{left:261.831600px;}
.xd{left:509.980350px;}
.xc{left:518.943600px;}
.x8{left:610.039350px;}
.x2{left:617.539350px;}
@media print{
.v3{vertical-align:-23.680000pt;}
.v4{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:23.680000pt;}
.ls5d{letter-spacing:-1.584000pt;}
.ls5c{letter-spacing:-1.466667pt;}
.ls60{letter-spacing:-1.056000pt;}
.ls5f{letter-spacing:-0.997333pt;}
.ls2f{letter-spacing:-0.832000pt;}
.ls3e{letter-spacing:-0.768000pt;}
.ls66{letter-spacing:-0.762667pt;}
.ls19{letter-spacing:-0.704000pt;}
.ls4e{letter-spacing:-0.586667pt;}
.ls13{letter-spacing:-0.576000pt;}
.ls62{letter-spacing:-0.528000pt;}
.ls27{letter-spacing:-0.512000pt;}
.ls4c{letter-spacing:-0.469333pt;}
.ls2c{letter-spacing:-0.448000pt;}
.ls5e{letter-spacing:-0.410667pt;}
.ls31{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.352000pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls3b{letter-spacing:-0.304000pt;}
.ls46{letter-spacing:-0.293333pt;}
.ls2e{letter-spacing:-0.280000pt;}
.ls24{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.234667pt;}
.ls28{letter-spacing:-0.224000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls49{letter-spacing:-0.176000pt;}
.ls2b{letter-spacing:-0.168000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls4d{letter-spacing:-0.117333pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls4a{letter-spacing:-0.058667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.058667pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls51{letter-spacing:0.117333pt;}
.ls14{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.176000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls41{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.224000pt;}
.ls40{letter-spacing:0.234667pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.280000pt;}
.ls52{letter-spacing:0.293333pt;}
.lsd{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.352000pt;}
.ls26{letter-spacing:0.384000pt;}
.ls38{letter-spacing:0.392000pt;}
.ls48{letter-spacing:0.410667pt;}
.ls2a{letter-spacing:0.448000pt;}
.ls42{letter-spacing:0.469333pt;}
.ls17{letter-spacing:0.512000pt;}
.ls44{letter-spacing:0.528000pt;}
.ls30{letter-spacing:0.560000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.640000pt;}
.ls43{letter-spacing:0.645333pt;}
.ls33{letter-spacing:0.672000pt;}
.ls3d{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.762667pt;}
.ls22{letter-spacing:0.768000pt;}
.ls47{letter-spacing:0.821333pt;}
.ls12{letter-spacing:0.832000pt;}
.ls5a{letter-spacing:0.880000pt;}
.ls32{letter-spacing:0.896000pt;}
.ls4f{letter-spacing:0.938667pt;}
.ls18{letter-spacing:0.960000pt;}
.ls50{letter-spacing:1.056000pt;}
.ls37{letter-spacing:1.088000pt;}
.ls8{letter-spacing:1.114667pt;}
.ls36{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.173333pt;}
.ls57{letter-spacing:1.290667pt;}
.ls54{letter-spacing:1.349333pt;}
.ls58{letter-spacing:1.466667pt;}
.ls55{letter-spacing:1.525333pt;}
.ls1{letter-spacing:3.029333pt;}
.ls34{letter-spacing:3.035200pt;}
.ls16{letter-spacing:3.072000pt;}
.ls21{letter-spacing:3.200000pt;}
.ls0{letter-spacing:3.733333pt;}
.lse{letter-spacing:4.544000pt;}
.ls64{letter-spacing:4.576000pt;}
.ls3c{letter-spacing:4.800000pt;}
.ls3f{letter-spacing:4.992000pt;}
.ls4{letter-spacing:5.333333pt;}
.ls3a{letter-spacing:5.568000pt;}
.ls2{letter-spacing:5.866667pt;}
.ls5{letter-spacing:6.400000pt;}
.ls35{letter-spacing:7.904000pt;}
.ls3{letter-spacing:9.066667pt;}
.ls25{letter-spacing:9.088000pt;}
.ls61{letter-spacing:9.210667pt;}
.ls63{letter-spacing:9.562667pt;}
.ls2d{letter-spacing:9.612800pt;}
.ls56{letter-spacing:9.738667pt;}
.ls39{letter-spacing:9.964800pt;}
.ls5b{letter-spacing:9.973333pt;}
.ls59{letter-spacing:10.618667pt;}
.ls1b{letter-spacing:12.735407pt;}
.ls65{letter-spacing:17.600000pt;}
.ws6f{word-spacing:-34.085333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws49{word-spacing:-20.320000pt;}
.ws29{word-spacing:-18.304000pt;}
.ws26{word-spacing:-17.984000pt;}
.ws74{word-spacing:-17.600000pt;}
.ws4a{word-spacing:-16.896000pt;}
.ws59{word-spacing:-16.778667pt;}
.ws58{word-spacing:-16.602667pt;}
.ws5a{word-spacing:-16.544000pt;}
.ws4d{word-spacing:-16.485333pt;}
.ws4c{word-spacing:-16.309333pt;}
.ws4b{word-spacing:-16.250667pt;}
.ws3d{word-spacing:-16.192000pt;}
.ws57{word-spacing:-16.133333pt;}
.ws15{word-spacing:-15.808000pt;}
.ws3c{word-spacing:-15.736000pt;}
.ws2b{word-spacing:-15.552000pt;}
.ws33{word-spacing:-15.512000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws5b{word-spacing:-14.666667pt;}
.ws6e{word-spacing:-14.490667pt;}
.wsd{word-spacing:-14.237333pt;}
.wsc{word-spacing:-10.790400pt;}
.ws6d{word-spacing:-9.973333pt;}
.ws6a{word-spacing:-9.738667pt;}
.ws70{word-spacing:-9.562667pt;}
.ws66{word-spacing:-9.210667pt;}
.ws5{word-spacing:-9.066667pt;}
.ws1c{word-spacing:-6.400000pt;}
.ws4{word-spacing:-5.866667pt;}
.ws6{word-spacing:-5.333333pt;}
.ws46{word-spacing:-4.992000pt;}
.ws42{word-spacing:-4.800000pt;}
.ws2{word-spacing:-3.733333pt;}
.ws24{word-spacing:-3.200000pt;}
.ws65{word-spacing:-1.525333pt;}
.ws6b{word-spacing:-1.466667pt;}
.ws64{word-spacing:-1.349333pt;}
.ws63{word-spacing:-1.290667pt;}
.ws9{word-spacing:-1.173333pt;}
.ws3e{word-spacing:-1.152000pt;}
.wsa{word-spacing:-1.114667pt;}
.ws3f{word-spacing:-1.088000pt;}
.ws62{word-spacing:-1.056000pt;}
.ws1b{word-spacing:-0.960000pt;}
.ws3a{word-spacing:-0.896000pt;}
.ws6c{word-spacing:-0.880000pt;}
.ws13{word-spacing:-0.832000pt;}
.ws25{word-spacing:-0.768000pt;}
.ws7{word-spacing:-0.762667pt;}
.ws44{word-spacing:-0.704000pt;}
.ws3b{word-spacing:-0.672000pt;}
.ws52{word-spacing:-0.645333pt;}
.ws19{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.586667pt;}
.ws28{word-spacing:-0.576000pt;}
.ws38{word-spacing:-0.560000pt;}
.ws68{word-spacing:-0.528000pt;}
.ws1a{word-spacing:-0.512000pt;}
.ws69{word-spacing:-0.469333pt;}
.ws32{word-spacing:-0.448000pt;}
.ws5c{word-spacing:-0.410667pt;}
.ws40{word-spacing:-0.392000pt;}
.ws2a{word-spacing:-0.384000pt;}
.ws51{word-spacing:-0.352000pt;}
.ws10{word-spacing:-0.320000pt;}
.ws72{word-spacing:-0.293333pt;}
.ws23{word-spacing:-0.280000pt;}
.ws1e{word-spacing:-0.256000pt;}
.ws47{word-spacing:-0.234667pt;}
.ws2f{word-spacing:-0.224000pt;}
.ws48{word-spacing:-0.213333pt;}
.wsf{word-spacing:-0.192000pt;}
.ws55{word-spacing:-0.176000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws73{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws50{word-spacing:0.058667pt;}
.ws11{word-spacing:0.064000pt;}
.ws54{word-spacing:0.117333pt;}
.ws1f{word-spacing:0.128000pt;}
.ws30{word-spacing:0.168000pt;}
.ws4f{word-spacing:0.176000pt;}
.ws12{word-spacing:0.192000pt;}
.ws2e{word-spacing:0.224000pt;}
.wse{word-spacing:0.234667pt;}
.ws27{word-spacing:0.256000pt;}
.ws36{word-spacing:0.280000pt;}
.ws4e{word-spacing:0.293333pt;}
.ws41{word-spacing:0.304000pt;}
.ws1d{word-spacing:0.320000pt;}
.ws21{word-spacing:0.336000pt;}
.wsb{word-spacing:0.352000pt;}
.ws39{word-spacing:0.384000pt;}
.ws5f{word-spacing:0.410667pt;}
.ws31{word-spacing:0.448000pt;}
.ws53{word-spacing:0.469333pt;}
.ws2c{word-spacing:0.512000pt;}
.ws67{word-spacing:0.528000pt;}
.ws14{word-spacing:0.576000pt;}
.ws56{word-spacing:0.586667pt;}
.ws16{word-spacing:0.704000pt;}
.ws71{word-spacing:0.762667pt;}
.ws45{word-spacing:0.768000pt;}
.ws37{word-spacing:0.832000pt;}
.ws35{word-spacing:0.896000pt;}
.ws60{word-spacing:0.997333pt;}
.ws61{word-spacing:1.056000pt;}
.ws5d{word-spacing:1.466667pt;}
.ws5e{word-spacing:1.584000pt;}
.ws20{word-spacing:1.680000pt;}
.ws34{word-spacing:3.808000pt;}
.ws2d{word-spacing:3.920000pt;}
.ws43{word-spacing:4.480000pt;}
.ws22{word-spacing:7.896000pt;}
._13{margin-left:-17.298667pt;}
._12{margin-left:-13.434311pt;}
._14{margin-left:-10.367289pt;}
._d{margin-left:-9.311467pt;}
._a{margin-left:-8.372267pt;}
._c{margin-left:-7.420267pt;}
._7{margin-left:-6.170667pt;}
._4{margin-left:-4.411733pt;}
._0{margin-left:-2.796267pt;}
._3{margin-left:-1.023822pt;}
._8{width:1.599822pt;}
._2{width:2.973689pt;}
._6{width:4.530311pt;}
._f{width:5.461867pt;}
._1{width:6.369067pt;}
._e{width:7.441244pt;}
._b{width:9.066667pt;}
._5{width:10.002667pt;}
._11{width:11.024622pt;}
._16{width:12.469244pt;}
._17{width:14.121956pt;}
._9{width:15.413333pt;}
._18{width:18.163200pt;}
._10{width:50.598400pt;}
._15{width:90.842667pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:67.857200pt;}
.y1{bottom:69.630667pt;}
.y1b5{bottom:124.717733pt;}
.y237{bottom:124.719067pt;}
.y45{bottom:124.721733pt;}
.y31f{bottom:125.788267pt;}
.y24c{bottom:126.244800pt;}
.y2fa{bottom:126.321600pt;}
.y2e5{bottom:126.463467pt;}
.y12e{bottom:126.621467pt;}
.y22{bottom:126.834400pt;}
.y2c0{bottom:127.031467pt;}
.y1f4{bottom:127.371067pt;}
.y190{bottom:127.552533pt;}
.y271{bottom:127.655467pt;}
.y88{bottom:127.726667pt;}
.y14a{bottom:128.064800pt;}
.y10c{bottom:128.429467pt;}
.y288{bottom:128.429867pt;}
.y344{bottom:128.481600pt;}
.y16f{bottom:128.501733pt;}
.y29c{bottom:128.510533pt;}
.ya9{bottom:128.555067pt;}
.yca{bottom:128.789600pt;}
.y6a{bottom:128.826933pt;}
.y216{bottom:129.806667pt;}
.y1d5{bottom:129.849333pt;}
.yeb{bottom:130.393333pt;}
.y25d{bottom:130.766667pt;}
.y1b4{bottom:139.385733pt;}
.y236{bottom:139.387067pt;}
.y44{bottom:139.389733pt;}
.y31e{bottom:141.788267pt;}
.y2f9{bottom:143.921600pt;}
.y2bf{bottom:144.367467pt;}
.y2e4{bottom:144.459467pt;}
.y21{bottom:144.830400pt;}
.y24b{bottom:144.915467pt;}
.y215{bottom:146.340667pt;}
.y12d{bottom:146.349467pt;}
.y270{bottom:146.455467pt;}
.y343{bottom:146.741600pt;}
.y1f3{bottom:146.843067pt;}
.y18f{bottom:146.880533pt;}
.y287{bottom:147.096533pt;}
.y87{bottom:147.198667pt;}
.y149{bottom:147.536800pt;}
.y16e{bottom:147.573733pt;}
.ya8{bottom:147.883067pt;}
.y69{bottom:148.154933pt;}
.y29b{bottom:148.238533pt;}
.y10b{bottom:148.301467pt;}
.y1d4{bottom:148.521333pt;}
.yc9{bottom:148.661600pt;}
.yea{bottom:149.865333pt;}
.y25c{bottom:149.966667pt;}
.y1b3{bottom:154.053733pt;}
.y235{bottom:154.055067pt;}
.y31d{bottom:157.788267pt;}
.y43{bottom:158.991067pt;}
.y2f8{bottom:161.521600pt;}
.y2be{bottom:161.703467pt;}
.y2e3{bottom:162.455467pt;}
.y20{bottom:162.694400pt;}
.y214{bottom:162.874667pt;}
.y342{bottom:165.001600pt;}
.y26f{bottom:165.255467pt;}
.y12c{bottom:166.077467pt;}
.y18e{bottom:166.080533pt;}
.y1f2{bottom:166.315067pt;}
.y16d{bottom:166.645733pt;}
.y86{bottom:166.670667pt;}
.y1d3{bottom:167.193333pt;}
.ya7{bottom:167.211067pt;}
.y68{bottom:167.482933pt;}
.y29a{bottom:167.966533pt;}
.y10a{bottom:168.173467pt;}
.yc8{bottom:168.533600pt;}
.y1b2{bottom:168.721733pt;}
.y234{bottom:168.723067pt;}
.y25b{bottom:169.166667pt;}
.y31c{bottom:173.788267pt;}
.y148{bottom:178.339333pt;}
.y2bd{bottom:179.039467pt;}
.y2f7{bottom:179.121600pt;}
.y213{bottom:179.408667pt;}
.y2e2{bottom:180.451467pt;}
.ye9{bottom:180.664000pt;}
.y341{bottom:183.261600pt;}
.y1b1{bottom:183.389733pt;}
.y26e{bottom:184.055467pt;}
.y18d{bottom:185.280533pt;}
.y16c{bottom:185.717733pt;}
.y1f1{bottom:185.787067pt;}
.y12b{bottom:185.805467pt;}
.y1d2{bottom:185.865333pt;}
.y85{bottom:185.998667pt;}
.ya6{bottom:186.683067pt;}
.y67{bottom:186.810933pt;}
.y42{bottom:187.306667pt;}
.y299{bottom:187.694533pt;}
.y109{bottom:188.045467pt;}
.y1f{bottom:188.120133pt;}
.y233{bottom:188.324400pt;}
.y25a{bottom:188.366667pt;}
.yc7{bottom:188.405600pt;}
.y147{bottom:194.607333pt;}
.y2bc{bottom:196.375467pt;}
.y2f6{bottom:196.721600pt;}
.ye8{bottom:196.932000pt;}
.y2e1{bottom:198.447467pt;}
.y340{bottom:201.521600pt;}
.y26d{bottom:202.855467pt;}
.y1b0{bottom:202.991067pt;}
.y16b{bottom:204.789733pt;}
.y1f0{bottom:205.259067pt;}
.y66{bottom:206.138933pt;}
.ya5{bottom:206.155067pt;}
.y41{bottom:206.634667pt;}
.y212{bottom:207.312533pt;}
.y298{bottom:207.422533pt;}
.y259{bottom:207.566667pt;}
.y108{bottom:207.917467pt;}
.yc6{bottom:208.277600pt;}
.y31b{bottom:208.988267pt;}
.y146{bottom:210.875333pt;}
.y1d1{bottom:212.091067pt;}
.ye7{bottom:213.200000pt;}
.y2bb{bottom:213.711467pt;}
.y2f5{bottom:214.321600pt;}
.y2e0{bottom:216.443467pt;}
.y84{bottom:216.692000pt;}
.y12a{bottom:216.873333pt;}
.y18c{bottom:217.813867pt;}
.y33f{bottom:219.781600pt;}
.y26c{bottom:221.655467pt;}
.y16a{bottom:223.861733pt;}
.y1ef{bottom:224.731067pt;}
.y65{bottom:225.466933pt;}
.ya4{bottom:225.627067pt;}
.y40{bottom:225.962667pt;}
.y31a{bottom:226.588267pt;}
.y258{bottom:226.766667pt;}
.y232{bottom:227.034933pt;}
.y211{bottom:227.040533pt;}
.y297{bottom:227.150533pt;}
.y107{bottom:227.789467pt;}
.yc5{bottom:228.149600pt;}
.ye6{bottom:229.468000pt;}
.y2ba{bottom:231.047467pt;}
.y2f4{bottom:231.921600pt;}
.y83{bottom:232.820000pt;}
.y129{bottom:233.407333pt;}
.y1e{bottom:234.119067pt;}
.y2df{bottom:234.439467pt;}
.y33e{bottom:238.041600pt;}
.y145{bottom:238.470000pt;}
.y26b{bottom:240.455467pt;}
.y1af{bottom:242.070000pt;}
.y169{bottom:242.933733pt;}
.y1ee{bottom:244.203067pt;}
.y64{bottom:244.794933pt;}
.ya3{bottom:245.099067pt;}
.y3f{bottom:245.162667pt;}
.ye5{bottom:245.736000pt;}
.y257{bottom:245.966667pt;}
.y231{bottom:246.234933pt;}
.y210{bottom:246.768533pt;}
.y296{bottom:246.878533pt;}
.y106{bottom:247.661467pt;}
.yc4{bottom:248.021600pt;}
.y2b9{bottom:248.383467pt;}
.y82{bottom:248.948000pt;}
.y128{bottom:249.941333pt;}
.y1d{bottom:251.983067pt;}
.y2de{bottom:252.435467pt;}
.y33d{bottom:256.301600pt;}
.y144{bottom:257.942000pt;}
.y26a{bottom:259.255467pt;}
.y1ae{bottom:260.742000pt;}
.ye4{bottom:262.004000pt;}
.y168{bottom:262.005733pt;}
.y319{bottom:263.553600pt;}
.y1ed{bottom:263.675067pt;}
.y18b{bottom:263.680533pt;}
.y63{bottom:264.122933pt;}
.y3e{bottom:264.362667pt;}
.ya2{bottom:264.571067pt;}
.y81{bottom:265.076000pt;}
.y256{bottom:265.166667pt;}
.y230{bottom:265.434933pt;}
.y2b8{bottom:265.719467pt;}
.y127{bottom:266.475333pt;}
.y20f{bottom:266.496533pt;}
.y295{bottom:266.606533pt;}
.y105{bottom:267.533467pt;}
.yc3{bottom:267.893600pt;}
.y1d0{bottom:268.037733pt;}
.y2f3{bottom:268.721600pt;}
.y1c{bottom:269.847067pt;}
.y2dd{bottom:270.431467pt;}
.y33c{bottom:274.561600pt;}
.y143{bottom:277.414000pt;}
.y269{bottom:278.055467pt;}
.y1ad{bottom:279.414000pt;}
.y167{bottom:281.077733pt;}
.y80{bottom:281.204000pt;}
.y318{bottom:281.681600pt;}
.y18a{bottom:282.880533pt;}
.y126{bottom:283.009333pt;}
.y2b7{bottom:283.055467pt;}
.y1ec{bottom:283.147067pt;}
.y62{bottom:283.450933pt;}
.y3d{bottom:283.562667pt;}
.ya1{bottom:284.043067pt;}
.y255{bottom:284.366667pt;}
.y22f{bottom:284.634933pt;}
.y20e{bottom:286.224533pt;}
.y294{bottom:286.334533pt;}
.y1cf{bottom:286.709733pt;}
.y104{bottom:287.405467pt;}
.y1b{bottom:287.711067pt;}
.yc2{bottom:287.765600pt;}
.y2dc{bottom:288.427467pt;}
.ye3{bottom:289.582533pt;}
.y33b{bottom:292.821600pt;}
.y268{bottom:296.855467pt;}
.y1ac{bottom:298.214000pt;}
.y125{bottom:299.543333pt;}
.y317{bottom:299.809600pt;}
.y166{bottom:300.149733pt;}
.y2b6{bottom:300.391467pt;}
.y189{bottom:302.080533pt;}
.y1eb{bottom:302.619067pt;}
.y3c{bottom:302.762667pt;}
.y61{bottom:302.778933pt;}
.ya0{bottom:303.515067pt;}
.y254{bottom:303.566667pt;}
.y22e{bottom:303.834933pt;}
.y1ce{bottom:305.381733pt;}
.y2f2{bottom:305.521600pt;}
.y1a{bottom:305.575067pt;}
.y20d{bottom:305.952533pt;}
.y293{bottom:306.062533pt;}
.y2db{bottom:306.423467pt;}
.yc1{bottom:307.637600pt;}
.y7f{bottom:308.579867pt;}
.ye2{bottom:309.054533pt;}
.y142{bottom:310.480533pt;}
.y33a{bottom:311.081600pt;}
.y267{bottom:315.655467pt;}
.y124{bottom:316.077333pt;}
.y2b5{bottom:317.727467pt;}
.y316{bottom:317.937600pt;}
.y165{bottom:319.221733pt;}
.y103{bottom:321.272133pt;}
.y188{bottom:321.280533pt;}
.y3b{bottom:321.962667pt;}
.y1ea{bottom:322.091067pt;}
.y60{bottom:322.106933pt;}
.y253{bottom:322.766667pt;}
.y9f{bottom:322.987067pt;}
.y22d{bottom:323.034933pt;}
.y19{bottom:323.439067pt;}
.y1cd{bottom:324.053733pt;}
.y2da{bottom:324.419467pt;}
.y2f1{bottom:324.721600pt;}
.y20c{bottom:325.680533pt;}
.y292{bottom:325.790533pt;}
.yc0{bottom:327.509600pt;}
.y7e{bottom:328.051867pt;}
.y1ab{bottom:328.380533pt;}
.ye1{bottom:328.526533pt;}
.y339{bottom:329.341600pt;}
.y266{bottom:334.455467pt;}
.y2b4{bottom:335.063467pt;}
.y315{bottom:336.065600pt;}
.y164{bottom:338.293733pt;}
.y187{bottom:340.480533pt;}
.y3a{bottom:341.162667pt;}
.y18{bottom:341.303067pt;}
.y5f{bottom:341.434933pt;}
.y252{bottom:341.966667pt;}
.y22c{bottom:342.234933pt;}
.y2d9{bottom:342.415467pt;}
.y9e{bottom:342.459067pt;}
.y1cc{bottom:342.725733pt;}
.y2f0{bottom:343.921600pt;}
.y1aa{bottom:343.976533pt;}
.y123{bottom:344.029200pt;}
.y291{bottom:345.518533pt;}
.ybf{bottom:347.381600pt;}
.y7d{bottom:347.523867pt;}
.y338{bottom:347.601600pt;}
.ye0{bottom:347.998533pt;}
.y2b3{bottom:352.399467pt;}
.y1e9{bottom:352.895067pt;}
.y265{bottom:353.255467pt;}
.y314{bottom:354.193600pt;}
.y20b{bottom:356.776533pt;}
.y141{bottom:357.125867pt;}
.y163{bottom:357.365733pt;}
.y17{bottom:359.167067pt;}
.y1a9{bottom:359.572533pt;}
.y186{bottom:359.680533pt;}
.y39{bottom:360.362667pt;}
.y2d8{bottom:360.411467pt;}
.y5e{bottom:360.762933pt;}
.y251{bottom:361.166667pt;}
.y1cb{bottom:361.397733pt;}
.y22b{bottom:361.434933pt;}
.y9d{bottom:361.931067pt;}
.y2ef{bottom:363.121600pt;}
.y122{bottom:363.757200pt;}
.y290{bottom:365.246533pt;}
.y337{bottom:365.861600pt;}
.y7c{bottom:366.995867pt;}
.ybe{bottom:367.253600pt;}
.ydf{bottom:367.470533pt;}
.y102{bottom:369.096133pt;}
.y1e8{bottom:369.163067pt;}
.y2b2{bottom:369.735467pt;}
.y264{bottom:372.055467pt;}
.y313{bottom:372.321600pt;}
.y20a{bottom:373.170533pt;}
.y1a8{bottom:375.168533pt;}
.y162{bottom:376.437733pt;}
.y140{bottom:376.597867pt;}
.y16{bottom:377.031067pt;}
.y2d7{bottom:378.407467pt;}
.y185{bottom:378.880533pt;}
.y38{bottom:379.562667pt;}
.y1ca{bottom:380.069733pt;}
.y5d{bottom:380.090933pt;}
.y250{bottom:380.366667pt;}
.y22a{bottom:380.634933pt;}
.y9c{bottom:381.403067pt;}
.y121{bottom:383.485200pt;}
.y336{bottom:384.121600pt;}
.y28f{bottom:384.974533pt;}
.y7b{bottom:386.467867pt;}
.yde{bottom:386.942533pt;}
.y2b1{bottom:387.071467pt;}
.ybd{bottom:387.125600pt;}
.y101{bottom:388.968133pt;}
.y209{bottom:389.564533pt;}
.y312{bottom:390.449600pt;}
.y1a7{bottom:390.764533pt;}
.y263{bottom:390.855467pt;}
.y15{bottom:394.895067pt;}
.y161{bottom:395.509733pt;}
.y13f{bottom:396.069867pt;}
.y2d6{bottom:396.403467pt;}
.y1e7{bottom:396.853600pt;}
.y184{bottom:398.080533pt;}
.y1c9{bottom:398.741733pt;}
.y37{bottom:398.762667pt;}
.y5c{bottom:399.418933pt;}
.y24f{bottom:399.566667pt;}
.y229{bottom:399.834933pt;}
.y9b{bottom:400.875067pt;}
.y335{bottom:402.381600pt;}
.y120{bottom:403.213200pt;}
.y2b0{bottom:404.407467pt;}
.y28e{bottom:404.702533pt;}
.y7a{bottom:405.939867pt;}
.y208{bottom:405.958533pt;}
.y1a6{bottom:406.360533pt;}
.ybc{bottom:406.997600pt;}
.y311{bottom:408.577600pt;}
.y100{bottom:408.840133pt;}
.y262{bottom:409.655467pt;}
.y14{bottom:412.759067pt;}
.y286{bottom:413.034933pt;}
.y160{bottom:414.581733pt;}
.y13e{bottom:415.541867pt;}
.y1e6{bottom:416.181600pt;}
.y183{bottom:417.280533pt;}
.y1c8{bottom:417.413733pt;}
.y2ee{bottom:417.521600pt;}
.y36{bottom:417.962667pt;}
.y5b{bottom:418.746933pt;}
.y228{bottom:419.034933pt;}
.ydd{bottom:420.009200pt;}
.y9a{bottom:420.347067pt;}
.y334{bottom:420.641600pt;}
.y2af{bottom:421.743467pt;}
.y1a5{bottom:421.956533pt;}
.y2d5{bottom:421.962667pt;}
.y207{bottom:422.352533pt;}
.y11f{bottom:422.941200pt;}
.y28d{bottom:424.430533pt;}
.y79{bottom:425.411867pt;}
.y310{bottom:426.705600pt;}
.ybb{bottom:426.869600pt;}
.y261{bottom:428.455467pt;}
.yff{bottom:428.712133pt;}
.y13{bottom:430.623067pt;}
.y285{bottom:432.634933pt;}
.y2ed{bottom:432.721600pt;}
.y15f{bottom:433.653733pt;}
.y13d{bottom:435.013867pt;}
.y1e5{bottom:435.509600pt;}
.y1c7{bottom:436.085733pt;}
.y182{bottom:436.480533pt;}
.y35{bottom:437.162667pt;}
.y1a4{bottom:437.552533pt;}
.y5a{bottom:438.074933pt;}
.y227{bottom:438.234933pt;}
.y333{bottom:438.901600pt;}
.y2ae{bottom:439.079467pt;}
.y99{bottom:439.819067pt;}
.y11e{bottom:442.669200pt;}
.y28c{bottom:444.158533pt;}
.y30f{bottom:444.833600pt;}
.y78{bottom:444.883867pt;}
.yba{bottom:446.741600pt;}
.y260{bottom:447.255467pt;}
.y12{bottom:448.487067pt;}
.yfe{bottom:448.584133pt;}
.y206{bottom:450.091067pt;}
.y24e{bottom:451.300000pt;}
.y284{bottom:452.234933pt;}
.y15e{bottom:452.725733pt;}
.y1c6{bottom:454.757733pt;}
.y1e4{bottom:454.837600pt;}
.y181{bottom:455.680533pt;}
.y2ec{bottom:455.921600pt;}
.y34{bottom:456.362667pt;}
.y2ad{bottom:456.415467pt;}
.y332{bottom:457.161600pt;}
.y59{bottom:457.402933pt;}
.y226{bottom:457.434933pt;}
.y98{bottom:459.291067pt;}
.y24a{bottom:462.266933pt;}
.y11d{bottom:462.397200pt;}
.y30e{bottom:462.961600pt;}
.y28b{bottom:463.886533pt;}
.y77{bottom:464.355867pt;}
.y1a3{bottom:464.491067pt;}
.y2d4{bottom:465.601600pt;}
.y13c{bottom:465.815200pt;}
.y25f{bottom:466.055467pt;}
.y11{bottom:466.351067pt;}
.ydc{bottom:466.585200pt;}
.yb9{bottom:466.613600pt;}
.yfd{bottom:468.456133pt;}
.y205{bottom:469.691067pt;}
.y24d{bottom:469.966667pt;}
.y15d{bottom:471.797733pt;}
.y283{bottom:471.834933pt;}
.y2eb{bottom:473.521600pt;}
.y2ac{bottom:473.751467pt;}
.y1e3{bottom:474.165600pt;}
.y331{bottom:475.421600pt;}
.y33{bottom:475.562667pt;}
.y225{bottom:476.634933pt;}
.y58{bottom:476.730933pt;}
.y30d{bottom:481.089600pt;}
.y249{bottom:481.338933pt;}
.y13b{bottom:482.083200pt;}
.y11c{bottom:482.125200pt;}
.y1a2{bottom:483.291067pt;}
.y2d3{bottom:483.597600pt;}
.y28a{bottom:483.614533pt;}
.y76{bottom:483.827867pt;}
.y10{bottom:484.215067pt;}
.y1c5{bottom:484.719733pt;}
.y25e{bottom:484.855467pt;}
.ydb{bottom:486.057200pt;}
.y180{bottom:486.215200pt;}
.yb8{bottom:486.485600pt;}
.yfc{bottom:488.328133pt;}
.y204{bottom:489.291067pt;}
.y15c{bottom:490.869733pt;}
.y2ab{bottom:491.087467pt;}
.y2ea{bottom:491.121600pt;}
.y282{bottom:491.434933pt;}
.y97{bottom:492.352400pt;}
.y1e2{bottom:493.493600pt;}
.y330{bottom:493.681600pt;}
.y32{bottom:494.762667pt;}
.y224{bottom:495.834933pt;}
.y57{bottom:496.058933pt;}
.y13a{bottom:498.351200pt;}
.y30c{bottom:499.217600pt;}
.y1c4{bottom:500.189733pt;}
.y248{bottom:500.410933pt;}
.y2d2{bottom:501.593600pt;}
.y11b{bottom:501.853200pt;}
.yf{bottom:502.079067pt;}
.y1a1{bottom:502.091067pt;}
.y17f{bottom:502.217200pt;}
.y75{bottom:503.299867pt;}
.y289{bottom:503.342533pt;}
.yda{bottom:505.529200pt;}
.yb7{bottom:506.357600pt;}
.yfb{bottom:508.200133pt;}
.y2aa{bottom:508.423467pt;}
.y2e9{bottom:508.721600pt;}
.y203{bottom:508.891067pt;}
.y15b{bottom:509.941733pt;}
.y281{bottom:511.034933pt;}
.y96{bottom:511.824400pt;}
.y32f{bottom:511.941600pt;}
.y1e1{bottom:512.821600pt;}
.y139{bottom:514.619200pt;}
.y223{bottom:515.034933pt;}
.y56{bottom:515.386933pt;}
.y1c3{bottom:515.659733pt;}
.y30b{bottom:517.345600pt;}
.y17e{bottom:518.219200pt;}
.y247{bottom:519.482933pt;}
.y2d1{bottom:519.589600pt;}
.y1a0{bottom:520.891067pt;}
.y31{bottom:521.521600pt;}
.y11a{bottom:521.581200pt;}
.y74{bottom:522.771867pt;}
.yd9{bottom:525.001200pt;}
.y2a9{bottom:525.759467pt;}
.yb6{bottom:526.229600pt;}
.y2e8{bottom:526.321600pt;}
.ye{bottom:527.504800pt;}
.yfa{bottom:528.072133pt;}
.y202{bottom:528.491067pt;}
.y15a{bottom:529.013733pt;}
.y32e{bottom:530.201600pt;}
.y280{bottom:530.634933pt;}
.y1c2{bottom:531.129733pt;}
.y1e0{bottom:532.149600pt;}
.y222{bottom:534.234933pt;}
.y55{bottom:534.714933pt;}
.y30a{bottom:535.473600pt;}
.y2d0{bottom:537.585600pt;}
.y246{bottom:538.554933pt;}
.y273{bottom:538.976400pt;}
.y19f{bottom:539.691067pt;}
.y119{bottom:541.309200pt;}
.y138{bottom:542.213733pt;}
.y73{bottom:542.243867pt;}
.y2a8{bottom:543.095467pt;}
.y2e7{bottom:543.921600pt;}
.yd8{bottom:544.473200pt;}
.y17d{bottom:545.557733pt;}
.yb5{bottom:546.101600pt;}
.y1c1{bottom:546.599733pt;}
.y159{bottom:548.085733pt;}
.y201{bottom:548.091067pt;}
.y32d{bottom:548.461600pt;}
.y27f{bottom:550.234933pt;}
.y1df{bottom:551.477600pt;}
.y221{bottom:553.434933pt;}
.y309{bottom:553.601600pt;}
.y54{bottom:554.042933pt;}
.y2cf{bottom:555.581600pt;}
.y272{bottom:556.576400pt;}
.y245{bottom:557.626933pt;}
.y95{bottom:558.464400pt;}
.y19e{bottom:558.491067pt;}
.yf9{bottom:559.269200pt;}
.y2a7{bottom:560.431467pt;}
.y118{bottom:561.037200pt;}
.y2e6{bottom:561.521600pt;}
.y137{bottom:561.685733pt;}
.y72{bottom:561.715867pt;}
.y1c0{bottom:562.069733pt;}
.yd7{bottom:563.945200pt;}
.y17c{bottom:564.757733pt;}
.y32c{bottom:566.721600pt;}
.y158{bottom:567.157733pt;}
.y200{bottom:567.691067pt;}
.y27e{bottom:569.834933pt;}
.y1de{bottom:570.805600pt;}
.y308{bottom:571.729600pt;}
.yd{bottom:572.571467pt;}
.y220{bottom:572.634933pt;}
.y53{bottom:573.370933pt;}
.y2ce{bottom:573.577600pt;}
.yf8{bottom:575.803200pt;}
.y244{bottom:576.698933pt;}
.y1bf{bottom:577.539733pt;}
.y2a6{bottom:577.767467pt;}
.y94{bottom:577.936400pt;}
.y30{bottom:579.121600pt;}
.yb4{bottom:579.834933pt;}
.y117{bottom:580.765200pt;}
.y136{bottom:581.157733pt;}
.y71{bottom:581.187867pt;}
.yd6{bottom:583.417200pt;}
.y17b{bottom:583.957733pt;}
.y32b{bottom:584.981600pt;}
.y1ff{bottom:587.291067pt;}
.y19d{bottom:588.649733pt;}
.y27d{bottom:589.434933pt;}
.y307{bottom:589.857600pt;}
.y1dd{bottom:590.133600pt;}
.yc{bottom:590.171467pt;}
.y2cd{bottom:591.573600pt;}
.y21f{bottom:591.834933pt;}
.y52{bottom:592.698933pt;}
.y1be{bottom:593.009733pt;}
.y2a5{bottom:595.103467pt;}
.y243{bottom:595.770933pt;}
.y2f{bottom:596.721600pt;}
.y93{bottom:597.408400pt;}
.y157{bottom:597.605067pt;}
.y116{bottom:600.493200pt;}
.y70{bottom:600.659867pt;}
.yd5{bottom:602.889200pt;}
.y17a{bottom:603.157733pt;}
.y32a{bottom:603.241600pt;}
.yf7{bottom:603.677200pt;}
.y19c{bottom:604.245733pt;}
.y1fe{bottom:606.891067pt;}
.y306{bottom:607.985600pt;}
.y1bd{bottom:608.479733pt;}
.y27c{bottom:609.034933pt;}
.y1dc{bottom:609.461600pt;}
.y2cc{bottom:609.569600pt;}
.y21e{bottom:611.034933pt;}
.y135{bottom:611.959067pt;}
.y51{bottom:612.026933pt;}
.y2a4{bottom:612.439467pt;}
.y156{bottom:613.467067pt;}
.y2e{bottom:614.321600pt;}
.y242{bottom:614.842933pt;}
.y92{bottom:616.880400pt;}
.y349{bottom:617.521600pt;}
.y19b{bottom:619.841733pt;}
.y6f{bottom:620.131867pt;}
.yf6{bottom:620.211200pt;}
.y115{bottom:620.221200pt;}
.y329{bottom:621.501600pt;}
.y179{bottom:622.357733pt;}
.yd4{bottom:622.361200pt;}
.y1bc{bottom:623.949733pt;}
.y305{bottom:626.113600pt;}
.y1fd{bottom:626.491067pt;}
.yb{bottom:626.971467pt;}
.yb3{bottom:627.354933pt;}
.y2cb{bottom:627.565600pt;}
.y134{bottom:628.227067pt;}
.y27b{bottom:628.634933pt;}
.y1db{bottom:628.789600pt;}
.y155{bottom:629.329067pt;}
.y2a3{bottom:629.775467pt;}
.y21d{bottom:630.234933pt;}
.y50{bottom:631.354933pt;}
.y2d{bottom:631.921600pt;}
.y348{bottom:633.521600pt;}
.y241{bottom:633.914933pt;}
.y19a{bottom:635.437733pt;}
.y91{bottom:636.352400pt;}
.yf5{bottom:636.745200pt;}
.y1bb{bottom:639.419733pt;}
.y6e{bottom:639.603867pt;}
.y328{bottom:639.761600pt;}
.y114{bottom:639.949200pt;}
.y178{bottom:641.557733pt;}
.yd3{bottom:641.833200pt;}
.y304{bottom:644.241600pt;}
.y133{bottom:644.495067pt;}
.y154{bottom:645.191067pt;}
.y2ca{bottom:645.561600pt;}
.y1fc{bottom:646.091067pt;}
.yb2{bottom:647.082933pt;}
.y2a2{bottom:647.111467pt;}
.y1da{bottom:648.117600pt;}
.y27a{bottom:648.234933pt;}
.y21c{bottom:649.434933pt;}
.y2c{bottom:649.521600pt;}
.y4f{bottom:650.682933pt;}
.y199{bottom:651.033733pt;}
.y240{bottom:652.986933pt;}
.ya{bottom:654.171467pt;}
.y1ba{bottom:654.889733pt;}
.y90{bottom:655.824400pt;}
.y327{bottom:658.021600pt;}
.y6d{bottom:659.075867pt;}
.y177{bottom:660.757733pt;}
.y132{bottom:660.763067pt;}
.y153{bottom:661.053067pt;}
.yd2{bottom:661.305200pt;}
.y303{bottom:662.369600pt;}
.y2c9{bottom:663.557600pt;}
.y2a1{bottom:664.447467pt;}
.yf4{bottom:664.619200pt;}
.y347{bottom:665.521600pt;}
.y198{bottom:666.629733pt;}
.yb1{bottom:666.810933pt;}
.y2b{bottom:667.121600pt;}
.y1d9{bottom:667.445600pt;}
.y279{bottom:667.834933pt;}
.y21b{bottom:668.634933pt;}
.y4e{bottom:670.010933pt;}
.y1b9{bottom:670.359733pt;}
.y113{bottom:671.013067pt;}
.y23f{bottom:672.058933pt;}
.y326{bottom:676.281600pt;}
.y152{bottom:676.915067pt;}
.y1fb{bottom:677.059733pt;}
.y302{bottom:680.497600pt;}
.yd1{bottom:680.777200pt;}
.yf3{bottom:681.153200pt;}
.y9{bottom:681.371467pt;}
.y2c8{bottom:681.553600pt;}
.y2a0{bottom:681.783467pt;}
.y2a{bottom:684.721600pt;}
.y1b8{bottom:685.829733pt;}
.y6c{bottom:686.106933pt;}
.yb0{bottom:686.538933pt;}
.y8f{bottom:686.627067pt;}
.y1d8{bottom:686.773600pt;}
.y278{bottom:687.434933pt;}
.y112{bottom:687.547067pt;}
.y21a{bottom:687.834933pt;}
.y131{bottom:688.330933pt;}
.y4d{bottom:689.338933pt;}
.y23e{bottom:691.130933pt;}
.y176{bottom:691.290400pt;}
.y151{bottom:692.777067pt;}
.y1fa{bottom:693.453733pt;}
.y197{bottom:693.546933pt;}
.y325{bottom:694.541600pt;}
.yf2{bottom:697.687200pt;}
.y301{bottom:698.625600pt;}
.y2c7{bottom:699.549600pt;}
.yd0{bottom:700.249200pt;}
.y346{bottom:700.721600pt;}
.y29{bottom:702.321600pt;}
.y8e{bottom:702.895067pt;}
.y111{bottom:704.081067pt;}
.y6b{bottom:705.434933pt;}
.y1d7{bottom:706.101600pt;}
.yaf{bottom:706.266933pt;}
.y29f{bottom:706.675867pt;}
.y277{bottom:707.034933pt;}
.y175{bottom:707.292400pt;}
.y130{bottom:707.802933pt;}
.y150{bottom:708.639067pt;}
.y4c{bottom:708.666933pt;}
.y1f9{bottom:709.847733pt;}
.y23d{bottom:710.202933pt;}
.y196{bottom:712.346933pt;}
.y1b7{bottom:712.602933pt;}
.yf1{bottom:714.221200pt;}
.y300{bottom:716.753600pt;}
.y2c6{bottom:717.545600pt;}
.y345{bottom:718.321600pt;}
.y8d{bottom:719.163067pt;}
.ycf{bottom:719.721200pt;}
.y28{bottom:719.921600pt;}
.y219{bottom:720.368267pt;}
.y174{bottom:723.294400pt;}
.y14f{bottom:724.501067pt;}
.yae{bottom:725.994933pt;}
.y1f8{bottom:726.241733pt;}
.y276{bottom:726.634933pt;}
.y12f{bottom:727.274933pt;}
.y4b{bottom:727.994933pt;}
.y23c{bottom:729.274933pt;}
.y8{bottom:730.495067pt;}
.y195{bottom:731.146933pt;}
.y1b6{bottom:731.274933pt;}
.y110{bottom:731.955067pt;}
.y324{bottom:732.008400pt;}
.y2ff{bottom:734.881600pt;}
.y2c5{bottom:735.541600pt;}
.y27{bottom:737.521600pt;}
.y1d6{bottom:739.034933pt;}
.yce{bottom:739.193200pt;}
.y173{bottom:739.296400pt;}
.y218{bottom:739.568267pt;}
.y14e{bottom:740.363067pt;}
.yf0{bottom:742.098400pt;}
.y1f7{bottom:742.635733pt;}
.yad{bottom:745.722933pt;}
.y275{bottom:746.234933pt;}
.y7{bottom:746.628400pt;}
.y8c{bottom:746.746933pt;}
.y4a{bottom:747.322933pt;}
.y23b{bottom:748.346933pt;}
.y10f{bottom:748.489067pt;}
.y29e{bottom:748.922933pt;}
.y194{bottom:749.946933pt;}
.y2fe{bottom:753.009600pt;}
.y2c4{bottom:753.537600pt;}
.y26{bottom:755.121600pt;}
.ycd{bottom:758.665200pt;}
.y1f6{bottom:759.029733pt;}
.yef{bottom:761.826400pt;}
.y6{bottom:762.761733pt;}
.y10e{bottom:765.023067pt;}
.yac{bottom:765.450933pt;}
.y274{bottom:765.834933pt;}
.y8b{bottom:766.218933pt;}
.y172{bottom:766.634933pt;}
.y49{bottom:766.650933pt;}
.y23a{bottom:767.418933pt;}
.y14d{bottom:767.562933pt;}
.y29d{bottom:767.850933pt;}
.y193{bottom:768.618933pt;}
.y323{bottom:768.808267pt;}
.y2fd{bottom:771.137600pt;}
.y2c3{bottom:771.533600pt;}
.y25{bottom:772.721600pt;}
.ycc{bottom:778.137200pt;}
.y5{bottom:778.895067pt;}
.y10d{bottom:781.557067pt;}
.yab{bottom:785.178933pt;}
.y217{bottom:785.434933pt;}
.y8a{bottom:785.690933pt;}
.y171{bottom:785.834933pt;}
.y48{bottom:785.978933pt;}
.y239{bottom:786.490933pt;}
.y14c{bottom:786.634933pt;}
.y1f5{bottom:786.778933pt;}
.y192{bottom:787.290933pt;}
.y322{bottom:788.008267pt;}
.y2fc{bottom:789.265600pt;}
.y2c2{bottom:789.529600pt;}
.y24{bottom:790.321600pt;}
.yee{bottom:792.897067pt;}
.ycb{bottom:797.609200pt;}
.yaa{bottom:804.906933pt;}
.y170{bottom:805.034933pt;}
.y89{bottom:805.162933pt;}
.y47{bottom:805.306933pt;}
.y238{bottom:805.562933pt;}
.y14b{bottom:805.706933pt;}
.y191{bottom:805.962933pt;}
.y321{bottom:807.208267pt;}
.y2fb{bottom:807.393600pt;}
.y2c1{bottom:807.525600pt;}
.y23{bottom:807.921600pt;}
.y4{bottom:809.388400pt;}
.yed{bottom:809.431067pt;}
.y46{bottom:824.634933pt;}
.y3{bottom:825.521600pt;}
.yec{bottom:825.965067pt;}
.y320{bottom:826.408400pt;}
.h9{height:27.171875pt;}
.h7{height:31.700521pt;}
.h2{height:36.229167pt;}
.hc{height:37.324219pt;}
.hd{height:38.636719pt;}
.ha{height:43.022135pt;}
.h3{height:45.286458pt;}
.hb{height:47.550781pt;}
.h4{height:49.815104pt;}
.h6{height:54.343750pt;}
.h8{height:56.286250pt;}
.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.931467pt;}
.x1{left:96.906800pt;}
.x7{left:105.819867pt;}
.x9{left:113.375200pt;}
.xb{left:124.732133pt;}
.x6{left:127.262533pt;}
.xa{left:132.290267pt;}
.xe{left:178.230800pt;}
.x5{left:212.897867pt;}
.xf{left:232.739200pt;}
.xd{left:453.315867pt;}
.xc{left:461.283200pt;}
.x8{left:542.257200pt;}
.x2{left:548.923867pt;}
}




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