
    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_1d16247ec2b028384bb9a919.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_67bcd21823bdb50daa00daee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_6cc196838f9a47cac5910a8b.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_e1cda7dd1730246b2453e1e0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c9bc838515ed984902714b27.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_013650b183612d61a1664b3e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bb1d06069ff9cb960b9e89f1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.904297;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_29e60154f1242c6defbf176e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8d5b291d8e729e02c59090f1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_61130b568410ed41e1b844cb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_598307dcece48caf864109c8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3479c0c5be3cf8d14627d3cd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_da4d7c67b1b253110520b4c2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9310f150ad339b47e050b9a3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fc212f5f550def4bc4a66156.woff')format("woff");}.fff{font-family:fff;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_99ddbde6926f98543276019e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2a198ba9f1188fca9f81e336.woff')format("woff");}.ff11{font-family:ff11;line-height:1.037000;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:ff12;src:url('chunks/assets/font_d8205f03fa3badc4560f2700.woff')format("woff");}.ff12{font-family:ff12;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-26.430000px;}
.v7{vertical-align:-23.760000px;}
.v4{vertical-align:-16.830000px;}
.v5{vertical-align:-13.729200px;}
.v8{vertical-align:-10.104000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:187.200000px;}
.lsb{letter-spacing:-12.000000px;}
.ls24{letter-spacing:-7.200000px;}
.ls12{letter-spacing:-4.968000px;}
.ls6f{letter-spacing:-4.800000px;}
.ls4a{letter-spacing:-3.672000px;}
.ls58{letter-spacing:-3.528000px;}
.ls2d{letter-spacing:-3.168000px;}
.ls28{letter-spacing:-2.808000px;}
.ls41{letter-spacing:-2.664000px;}
.ls4c{letter-spacing:-2.592000px;}
.ls25{letter-spacing:-2.160000px;}
.ls27{letter-spacing:-2.016000px;}
.ls1d{letter-spacing:-1.224000px;}
.ls1a{letter-spacing:-1.152000px;}
.ls19{letter-spacing:-1.080000px;}
.ls5f{letter-spacing:-1.008000px;}
.ls2c{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.864000px;}
.ls10{letter-spacing:-0.792000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls65{letter-spacing:-0.655200px;}
.ls18{letter-spacing:-0.648000px;}
.ls49{letter-spacing:-0.604800px;}
.ls78{letter-spacing:-0.600000px;}
.ls4b{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls60{letter-spacing:-0.352800px;}
.ls7a{letter-spacing:-0.300000px;}
.ls26{letter-spacing:-0.288000px;}
.ls4d{letter-spacing:-0.252000px;}
.ls29{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.072000px;}
.ls66{letter-spacing:-0.050400px;}
.lsa{letter-spacing:0.000000px;}
.ls62{letter-spacing:0.025200px;}
.ls14{letter-spacing:0.072000px;}
.ls40{letter-spacing:0.100800px;}
.lse{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls61{letter-spacing:0.240000px;}
.ls30{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.302400px;}
.ls15{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.504000px;}
.ls6a{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.720000px;}
.ls36{letter-spacing:0.741600px;}
.ls20{letter-spacing:0.792000px;}
.ls35{letter-spacing:0.804600px;}
.ls2a{letter-spacing:0.864000px;}
.ls37{letter-spacing:0.936000px;}
.ls4f{letter-spacing:1.008000px;}
.ls34{letter-spacing:1.080000px;}
.ls2f{letter-spacing:1.296000px;}
.ls46{letter-spacing:1.368000px;}
.ls48{letter-spacing:1.440000px;}
.ls47{letter-spacing:1.656000px;}
.ls50{letter-spacing:1.728000px;}
.ls54{letter-spacing:1.800000px;}
.ls53{letter-spacing:1.944000px;}
.ls64{letter-spacing:2.124000px;}
.ls3b{letter-spacing:2.304000px;}
.ls6b{letter-spacing:2.592000px;}
.ls4e{letter-spacing:2.664000px;}
.ls71{letter-spacing:2.913600px;}
.ls72{letter-spacing:2.918400px;}
.ls73{letter-spacing:2.928000px;}
.ls74{letter-spacing:2.932800px;}
.ls70{letter-spacing:2.947200px;}
.ls75{letter-spacing:3.360000px;}
.ls6e{letter-spacing:3.393600px;}
.ls38{letter-spacing:3.403200px;}
.ls79{letter-spacing:4.200000px;}
.ls1c{letter-spacing:4.248000px;}
.ls0{letter-spacing:4.260000px;}
.ls76{letter-spacing:4.416000px;}
.ls2{letter-spacing:4.560000px;}
.ls69{letter-spacing:4.608000px;}
.ls6d{letter-spacing:4.752000px;}
.lsf{letter-spacing:5.472000px;}
.ls77{letter-spacing:7.728000px;}
.ls21{letter-spacing:7.776000px;}
.ls51{letter-spacing:7.920000px;}
.ls33{letter-spacing:8.014200px;}
.ls17{letter-spacing:8.366400px;}
.ls56{letter-spacing:8.436000px;}
.ls2e{letter-spacing:8.460000px;}
.ls6c{letter-spacing:8.496000px;}
.ls42{letter-spacing:8.712000px;}
.ls57{letter-spacing:9.144000px;}
.ls5c{letter-spacing:9.504000px;}
.ls39{letter-spacing:9.600000px;}
.ls67{letter-spacing:10.152000px;}
.ls68{letter-spacing:10.252800px;}
.ls5b{letter-spacing:10.504800px;}
.ls1{letter-spacing:10.740000px;}
.ls3{letter-spacing:10.925859px;}
.ls59{letter-spacing:11.160000px;}
.ls22{letter-spacing:11.232000px;}
.ls43{letter-spacing:11.304000px;}
.ls32{letter-spacing:11.520000px;}
.ls45{letter-spacing:11.592000px;}
.ls63{letter-spacing:11.736000px;}
.ls55{letter-spacing:11.808000px;}
.ls44{letter-spacing:11.880000px;}
.ls16{letter-spacing:11.952000px;}
.ls52{letter-spacing:12.024000px;}
.ls3e{letter-spacing:12.096000px;}
.ls5e{letter-spacing:12.240000px;}
.ls31{letter-spacing:12.312000px;}
.ls5a{letter-spacing:12.384000px;}
.ls5d{letter-spacing:12.744000px;}
.ls3c{letter-spacing:12.888000px;}
.ls3a{letter-spacing:13.795500px;}
.ls3f{letter-spacing:13.796100px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-60.000000px;}
.ws74{word-spacing:-30.168000px;}
.ws1f{word-spacing:-29.736000px;}
.ws63{word-spacing:-29.376000px;}
.ws44{word-spacing:-29.304000px;}
.ws2b{word-spacing:-29.016000px;}
.ws40{word-spacing:-25.320000px;}
.ws96{word-spacing:-20.808000px;}
.ws41{word-spacing:-20.592000px;}
.ws2a{word-spacing:-20.232000px;}
.ws1c{word-spacing:-19.872000px;}
.ws58{word-spacing:-19.224000px;}
.ws45{word-spacing:-18.720000px;}
.ws37{word-spacing:-18.576000px;}
.ws94{word-spacing:-18.432000px;}
.ws95{word-spacing:-18.288000px;}
.ws79{word-spacing:-18.216000px;}
.ws38{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws32{word-spacing:-18.000000px;}
.ws56{word-spacing:-17.928000px;}
.ws1e{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws39{word-spacing:-17.712000px;}
.ws46{word-spacing:-17.640000px;}
.ws6e{word-spacing:-17.568000px;}
.ws90{word-spacing:-17.496000px;}
.ws3a{word-spacing:-17.424000px;}
.ws7a{word-spacing:-17.352000px;}
.ws7b{word-spacing:-17.280000px;}
.ws55{word-spacing:-17.208000px;}
.ws6b{word-spacing:-17.136000px;}
.ws2c{word-spacing:-17.064000px;}
.ws5{word-spacing:-16.992000px;}
.ws2{word-spacing:-16.860000px;}
.ws83{word-spacing:-16.848000px;}
.ws9e{word-spacing:-14.820000px;}
.ws47{word-spacing:-14.464800px;}
.ws6d{word-spacing:-14.414400px;}
.ws4e{word-spacing:-14.263200px;}
.ws9d{word-spacing:-14.220000px;}
.ws1d{word-spacing:-14.162400px;}
.ws89{word-spacing:-14.112000px;}
.ws57{word-spacing:-13.910400px;}
.ws7e{word-spacing:-13.809600px;}
.ws6c{word-spacing:-13.658400px;}
.ws54{word-spacing:-13.557600px;}
.ws88{word-spacing:-13.507200px;}
.ws7f{word-spacing:-13.488000px;}
.ws4c{word-spacing:-12.888000px;}
.ws6{word-spacing:-12.816000px;}
.ws76{word-spacing:-12.744000px;}
.ws99{word-spacing:-12.336000px;}
.ws43{word-spacing:-12.312000px;}
.ws78{word-spacing:-12.240000px;}
.ws51{word-spacing:-12.096000px;}
.ws69{word-spacing:-12.024000px;}
.ws2d{word-spacing:-11.952000px;}
.ws5d{word-spacing:-11.880000px;}
.ws48{word-spacing:-11.856000px;}
.ws68{word-spacing:-11.808000px;}
.ws8b{word-spacing:-11.736000px;}
.ws5f{word-spacing:-11.592000px;}
.ws5a{word-spacing:-11.304000px;}
.ws72{word-spacing:-11.160000px;}
.ws8f{word-spacing:-10.152000px;}
.ws4d{word-spacing:-9.600000px;}
.ws3b{word-spacing:-9.441600px;}
.ws53{word-spacing:-8.712000px;}
.ws73{word-spacing:-8.496000px;}
.ws80{word-spacing:-8.460000px;}
.ws18{word-spacing:-5.472000px;}
.ws92{word-spacing:-4.608000px;}
.ws25{word-spacing:-4.248000px;}
.wsa2{word-spacing:-4.200000px;}
.ws9c{word-spacing:-3.360000px;}
.ws97{word-spacing:-2.592000px;}
.ws4a{word-spacing:-2.304000px;}
.ws5b{word-spacing:-2.160000px;}
.ws65{word-spacing:-1.944000px;}
.ws91{word-spacing:-1.872000px;}
.ws66{word-spacing:-1.800000px;}
.ws67{word-spacing:-1.728000px;}
.ws61{word-spacing:-1.656000px;}
.ws59{word-spacing:-1.368000px;}
.ws42{word-spacing:-1.296000px;}
.ws4b{word-spacing:-1.080000px;}
.ws64{word-spacing:-1.008000px;}
.ws75{word-spacing:-0.936000px;}
.ws3d{word-spacing:-0.864000px;}
.ws2e{word-spacing:-0.792000px;}
.ws13{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.648000px;}
.ws30{word-spacing:-0.576000px;}
.ws15{word-spacing:-0.504000px;}
.ws16{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.360000px;}
.ws17{word-spacing:-0.288000px;}
.ws82{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.072000px;}
.ws8a{word-spacing:-0.050400px;}
.wsa{word-spacing:0.000000px;}
.ws3c{word-spacing:0.072000px;}
.wsf{word-spacing:0.144000px;}
.ws10{word-spacing:0.216000px;}
.ws36{word-spacing:0.240000px;}
.ws33{word-spacing:0.288000px;}
.wsa3{word-spacing:0.300000px;}
.ws1b{word-spacing:0.360000px;}
.ws29{word-spacing:0.432000px;}
.ws27{word-spacing:0.504000px;}
.ws7c{word-spacing:0.576000px;}
.wsa1{word-spacing:0.600000px;}
.ws20{word-spacing:0.648000px;}
.ws24{word-spacing:0.720000px;}
.ws19{word-spacing:0.792000px;}
.ws1a{word-spacing:0.864000px;}
.ws3e{word-spacing:0.936000px;}
.ws81{word-spacing:1.008000px;}
.ws22{word-spacing:1.080000px;}
.ws23{word-spacing:1.152000px;}
.ws26{word-spacing:1.224000px;}
.ws9f{word-spacing:1.248000px;}
.ws6f{word-spacing:1.296000px;}
.wsa0{word-spacing:1.440000px;}
.ws35{word-spacing:1.656000px;}
.ws84{word-spacing:1.728000px;}
.wsd{word-spacing:1.800000px;}
.ws7d{word-spacing:1.872000px;}
.ws34{word-spacing:2.016000px;}
.ws98{word-spacing:2.088000px;}
.ws31{word-spacing:2.160000px;}
.ws8d{word-spacing:2.304000px;}
.ws52{word-spacing:2.376000px;}
.ws50{word-spacing:2.664000px;}
.ws87{word-spacing:2.736000px;}
.ws93{word-spacing:2.808000px;}
.wse{word-spacing:2.928000px;}
.ws60{word-spacing:3.168000px;}
.ws5c{word-spacing:3.240000px;}
.ws3f{word-spacing:3.672000px;}
.ws8{word-spacing:3.720000px;}
.ws4f{word-spacing:4.032000px;}
.ws7{word-spacing:4.200000px;}
.ws8e{word-spacing:4.392000px;}
.ws9b{word-spacing:4.752000px;}
.ws9a{word-spacing:4.800000px;}
.ws5e{word-spacing:5.040000px;}
.ws2f{word-spacing:7.200000px;}
.ws71{word-spacing:7.272000px;}
.ws0{word-spacing:8.376000px;}
.wsb{word-spacing:8.400000px;}
.ws8c{word-spacing:8.496000px;}
.ws70{word-spacing:8.640000px;}
.ws49{word-spacing:8.712000px;}
.ws86{word-spacing:9.216000px;}
.ws62{word-spacing:9.432000px;}
.ws77{word-spacing:9.648000px;}
.ws85{word-spacing:10.080000px;}
.wsc{word-spacing:12.000000px;}
.ws9{word-spacing:75.180000px;}
.ws6a{word-spacing:146.196000px;}
._1f{margin-left:-948.820800px;}
._10{margin-left:-940.386000px;}
._5{margin-left:-71.136000px;}
._19{margin-left:-19.659600px;}
._6{margin-left:-18.480000px;}
._1d{margin-left:-15.291600px;}
._16{margin-left:-14.114400px;}
._14{margin-left:-12.135600px;}
._17{margin-left:-10.951200px;}
._18{margin-left:-9.172800px;}
._f{margin-left:-7.912800px;}
._4{margin-left:-6.042000px;}
._11{margin-left:-4.935600px;}
._12{margin-left:-3.792000px;}
._c{margin-left:-2.610000px;}
._7{margin-left:-1.386000px;}
._3{width:1.386000px;}
._9{width:3.150000px;}
._2{width:4.218000px;}
._e{width:5.924400px;}
._1{width:7.722000px;}
._a{width:8.904000px;}
._b{width:9.954000px;}
._d{width:11.084400px;}
._15{width:12.385200px;}
._1c{width:13.500000px;}
._1a{width:15.012000px;}
._1b{width:16.135200px;}
._1e{width:19.156800px;}
._20{width:21.584400px;}
._8{width:26.220000px;}
._13{width:31.646100px;}
._0{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:437.181000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y67{bottom:116.999850px;}
.y42{bottom:117.000000px;}
.y1de{bottom:117.000150px;}
.y196{bottom:117.078000px;}
.y170{bottom:117.132000px;}
.y28b{bottom:117.672150px;}
.y237{bottom:118.464000px;}
.yae{bottom:121.207200px;}
.yc5{bottom:121.207500px;}
.y108{bottom:121.207800px;}
.y200{bottom:121.914000px;}
.y263{bottom:122.316000px;}
.y1e{bottom:123.968550px;}
.y16f{bottom:131.976000px;}
.y8a{bottom:132.000000px;}
.y1dd{bottom:132.000150px;}
.y236{bottom:133.308000px;}
.y28a{bottom:136.122150px;}
.y66{bottom:136.207350px;}
.y41{bottom:136.207500px;}
.y262{bottom:137.016000px;}
.y195{bottom:138.984000px;}
.y107{bottom:139.500300px;}
.yea{bottom:143.707500px;}
.y1ff{bottom:145.170000px;}
.y16e{bottom:146.820000px;}
.y89{bottom:147.000000px;}
.y1dc{bottom:147.000150px;}
.y1d{bottom:147.368550px;}
.y235{bottom:148.152000px;}
.y261{bottom:151.716000px;}
.y14d{bottom:154.500000px;}
.y1b8{bottom:154.500300px;}
.y289{bottom:154.572150px;}
.ye8{bottom:158.707350px;}
.y40{bottom:158.707500px;}
.y106{bottom:158.707800px;}
.y194{bottom:160.890000px;}
.y16d{bottom:161.664000px;}
.y129{bottom:162.000000px;}
.y1db{bottom:162.000150px;}
.yc4{bottom:162.900000px;}
.y234{bottom:162.996000px;}
.y88{bottom:166.207500px;}
.y260{bottom:166.416000px;}
.y128{bottom:167.057850px;}
.yad{bottom:167.219700px;}
.y1fe{bottom:168.426000px;}
.y1b7{bottom:169.500300px;}
.y1c{bottom:170.768550px;}
.y288{bottom:173.022150px;}
.y14c{bottom:173.707500px;}
.y16c{bottom:176.508000px;}
.ye7{bottom:176.999850px;}
.y1da{bottom:177.000150px;}
.y65{bottom:177.750000px;}
.y233{bottom:177.840000px;}
.y25f{bottom:181.116000px;}
.y193{bottom:182.796000px;}
.ye9{bottom:184.500000px;}
.y1b6{bottom:184.500300px;}
.yc3{bottom:185.400000px;}
.y127{bottom:189.413850px;}
.yac{bottom:189.575700px;}
.y16b{bottom:191.352000px;}
.y1fd{bottom:191.682000px;}
.y232{bottom:192.684000px;}
.y1b{bottom:194.168550px;}
.y25e{bottom:195.816000px;}
.ye6{bottom:196.207350px;}
.y1d9{bottom:196.207650px;}
.y64{bottom:199.800000px;}
.y3f{bottom:202.062000px;}
.y105{bottom:202.128300px;}
.y287{bottom:202.422150px;}
.y1b5{bottom:203.707800px;}
.y192{bottom:204.702000px;}
.y16a{bottom:206.196000px;}
.y87{bottom:207.000000px;}
.y231{bottom:207.528000px;}
.yc2{bottom:207.900000px;}
.y14b{bottom:210.012000px;}
.y25d{bottom:210.516000px;}
.y126{bottom:211.769850px;}
.yab{bottom:211.931700px;}
.ye5{bottom:214.499850px;}
.y1fc{bottom:214.938000px;}
.y1a{bottom:217.568550px;}
.y1d8{bottom:218.707650px;}
.y169{bottom:221.040000px;}
.y63{bottom:221.850000px;}
.y1b4{bottom:222.000300px;}
.y230{bottom:222.384000px;}
.y3e{bottom:224.706000px;}
.y104{bottom:224.772300px;}
.y25c{bottom:225.216000px;}
.y191{bottom:226.608000px;}
.ye4{bottom:229.499850px;}
.y86{bottom:229.500000px;}
.yc1{bottom:230.400000px;}
.y14a{bottom:231.756000px;}
.y125{bottom:234.125850px;}
.yaa{bottom:234.287700px;}
.y168{bottom:235.884000px;}
.y1b3{bottom:237.000300px;}
.y22f{bottom:237.228000px;}
.y1fb{bottom:238.194000px;}
.y25b{bottom:239.916000px;}
.y19{bottom:240.968550px;}
.y286{bottom:243.072150px;}
.y62{bottom:243.900000px;}
.y103{bottom:247.416300px;}
.y3d{bottom:247.530000px;}
.y190{bottom:248.514000px;}
.ye3{bottom:248.707350px;}
.y167{bottom:250.728000px;}
.y85{bottom:252.000000px;}
.y1b2{bottom:252.000300px;}
.y22e{bottom:252.156000px;}
.yc0{bottom:252.900000px;}
.y149{bottom:253.590000px;}
.y25a{bottom:254.616000px;}
.y124{bottom:256.481850px;}
.ya9{bottom:256.643700px;}
.y1d7{bottom:261.132000px;}
.y1fa{bottom:261.450000px;}
.y285{bottom:261.522150px;}
.y18{bottom:264.368550px;}
.y166{bottom:265.572000px;}
.y61{bottom:265.950000px;}
.y22d{bottom:267.000000px;}
.y259{bottom:269.316000px;}
.y102{bottom:270.060300px;}
.y3c{bottom:270.174000px;}
.y18f{bottom:270.420000px;}
.y1b1{bottom:271.207800px;}
.y84{bottom:274.500000px;}
.y148{bottom:275.334000px;}
.ybf{bottom:275.400000px;}
.y123{bottom:278.837850px;}
.ya8{bottom:278.993700px;}
.y284{bottom:279.972150px;}
.y165{bottom:280.416000px;}
.y22c{bottom:281.844000px;}
.y1d6{bottom:283.632000px;}
.y258{bottom:284.016000px;}
.y1f9{bottom:284.400000px;}
.ye2{bottom:287.549850px;}
.y17{bottom:287.768550px;}
.y60{bottom:288.000000px;}
.y18e{bottom:292.326000px;}
.y101{bottom:292.704300px;}
.y3b{bottom:292.818000px;}
.y164{bottom:295.260000px;}
.y22b{bottom:296.688000px;}
.y83{bottom:297.000000px;}
.y147{bottom:297.078000px;}
.ybe{bottom:297.900000px;}
.y283{bottom:298.422150px;}
.y257{bottom:298.716000px;}
.ya7{bottom:301.182000px;}
.y122{bottom:301.193850px;}
.y1d5{bottom:305.826000px;}
.y1f8{bottom:307.350000px;}
.ye1{bottom:309.599850px;}
.y5f{bottom:310.050000px;}
.y163{bottom:310.104000px;}
.y16{bottom:311.168550px;}
.y22a{bottom:311.532000px;}
.y256{bottom:313.416000px;}
.y18d{bottom:314.232000px;}
.y1b0{bottom:314.388300px;}
.y100{bottom:315.348300px;}
.y3a{bottom:315.462000px;}
.y282{bottom:316.872150px;}
.y146{bottom:318.822000px;}
.y82{bottom:319.500000px;}
.ybd{bottom:320.400000px;}
.ya6{bottom:323.538000px;}
.y121{bottom:323.549850px;}
.y162{bottom:324.948000px;}
.y229{bottom:326.376000px;}
.y1d4{bottom:328.020000px;}
.y255{bottom:328.416000px;}
.y1f7{bottom:330.300000px;}
.ye0{bottom:331.649850px;}
.y5e{bottom:332.100000px;}
.y15{bottom:334.568550px;}
.y281{bottom:335.322150px;}
.y18c{bottom:336.138000px;}
.y1af{bottom:336.294300px;}
.yff{bottom:337.992300px;}
.y39{bottom:338.106000px;}
.y161{bottom:339.792000px;}
.y145{bottom:340.566000px;}
.y228{bottom:341.220000px;}
.y81{bottom:342.000000px;}
.ybc{bottom:342.900000px;}
.y254{bottom:343.416000px;}
.ya5{bottom:345.894000px;}
.y120{bottom:345.905850px;}
.y1d3{bottom:350.214000px;}
.y1f6{bottom:353.250000px;}
.ydf{bottom:353.699850px;}
.y280{bottom:353.772150px;}
.y5d{bottom:354.150000px;}
.y160{bottom:354.636000px;}
.y227{bottom:356.064000px;}
.y14{bottom:357.968550px;}
.y18b{bottom:358.044000px;}
.y1ae{bottom:358.104300px;}
.y253{bottom:358.416000px;}
.yfe{bottom:360.636300px;}
.y38{bottom:360.750000px;}
.y144{bottom:362.310000px;}
.y80{bottom:364.500000px;}
.ybb{bottom:365.400000px;}
.ya4{bottom:368.250000px;}
.y11f{bottom:368.261850px;}
.y15f{bottom:369.480000px;}
.y226{bottom:370.908000px;}
.y27f{bottom:372.222150px;}
.y1d2{bottom:372.408000px;}
.y252{bottom:373.416000px;}
.yde{bottom:375.749850px;}
.y5c{bottom:376.200000px;}
.y18a{bottom:379.950000px;}
.y1ad{bottom:380.010300px;}
.y13{bottom:381.368550px;}
.yfd{bottom:383.280300px;}
.y37{bottom:383.394000px;}
.y143{bottom:384.054000px;}
.y15e{bottom:384.324000px;}
.y225{bottom:385.752000px;}
.y7f{bottom:387.000000px;}
.yba{bottom:387.900000px;}
.y251{bottom:388.416000px;}
.ya3{bottom:390.606000px;}
.y11e{bottom:390.617850px;}
.y27e{bottom:390.672150px;}
.y1d1{bottom:394.602000px;}
.ydd{bottom:397.799850px;}
.y5b{bottom:398.250000px;}
.y1f5{bottom:399.150000px;}
.y15d{bottom:399.168000px;}
.y224{bottom:400.596000px;}
.y189{bottom:401.856000px;}
.y1ac{bottom:401.916300px;}
.y250{bottom:403.416000px;}
.y12{bottom:404.768550px;}
.y142{bottom:405.798000px;}
.yfc{bottom:405.924300px;}
.y36{bottom:406.038000px;}
.y27d{bottom:409.122150px;}
.y7e{bottom:409.500000px;}
.yb9{bottom:410.400000px;}
.ya2{bottom:412.962000px;}
.y11d{bottom:412.973850px;}
.y15c{bottom:414.012000px;}
.y223{bottom:415.440000px;}
.y1d0{bottom:416.796000px;}
.y24f{bottom:418.416000px;}
.ydc{bottom:419.849850px;}
.y5a{bottom:420.300000px;}
.y1f4{bottom:422.100000px;}
.y188{bottom:423.762000px;}
.y1ab{bottom:423.822300px;}
.y141{bottom:427.542000px;}
.y27c{bottom:427.572150px;}
.y11{bottom:428.168550px;}
.yfb{bottom:428.568300px;}
.y35{bottom:428.682000px;}
.y15b{bottom:428.856000px;}
.y222{bottom:430.284000px;}
.y7d{bottom:432.000000px;}
.yb8{bottom:432.900000px;}
.y24e{bottom:433.416000px;}
.ya1{bottom:435.318000px;}
.y11c{bottom:435.329850px;}
.y1cf{bottom:438.990000px;}
.ydb{bottom:441.899850px;}
.y59{bottom:442.350000px;}
.y1f3{bottom:445.050000px;}
.y221{bottom:445.128000px;}
.y187{bottom:445.668000px;}
.y1aa{bottom:445.728300px;}
.y27b{bottom:446.022150px;}
.y15a{bottom:447.907350px;}
.y24d{bottom:448.416000px;}
.y140{bottom:449.286000px;}
.yfa{bottom:451.212300px;}
.y34{bottom:451.326000px;}
.y10{bottom:451.568550px;}
.y7c{bottom:454.500000px;}
.yb7{bottom:455.400000px;}
.ya0{bottom:457.674000px;}
.y11b{bottom:457.685850px;}
.y220{bottom:459.984000px;}
.y1ce{bottom:461.184000px;}
.y24c{bottom:463.416000px;}
.yda{bottom:463.949850px;}
.y58{bottom:464.400000px;}
.y27a{bottom:464.472150px;}
.y186{bottom:467.574000px;}
.y1a9{bottom:467.634300px;}
.y1f2{bottom:468.000000px;}
.y13f{bottom:471.030000px;}
.yf9{bottom:473.856300px;}
.y33{bottom:473.970000px;}
.y21f{bottom:474.828000px;}
.yf{bottom:474.968550px;}
.y7b{bottom:477.000000px;}
.yb6{bottom:477.900000px;}
.y24b{bottom:478.416000px;}
.y9f{bottom:480.030000px;}
.y11a{bottom:480.041850px;}
.y279{bottom:482.922150px;}
.y1cd{bottom:483.378000px;}
.y159{bottom:485.405850px;}
.yd9{bottom:485.999850px;}
.y57{bottom:486.450000px;}
.y185{bottom:489.480000px;}
.y1a8{bottom:489.540300px;}
.y21e{bottom:489.684000px;}
.y1f1{bottom:490.950000px;}
.y13e{bottom:492.774000px;}
.y24a{bottom:493.416000px;}
.yf8{bottom:496.578300px;}
.y32{bottom:496.614000px;}
.ye{bottom:498.368550px;}
.y7a{bottom:499.500000px;}
.yb5{bottom:500.400000px;}
.y278{bottom:501.372150px;}
.y9e{bottom:502.386000px;}
.y119{bottom:502.397850px;}
.y21d{bottom:504.528000px;}
.y1cc{bottom:505.572000px;}
.yd8{bottom:508.049850px;}
.y249{bottom:508.416000px;}
.y56{bottom:508.500000px;}
.y184{bottom:511.386000px;}
.y1a7{bottom:511.446300px;}
.y1f0{bottom:513.900000px;}
.y13d{bottom:514.518000px;}
.yf7{bottom:519.222300px;}
.y31{bottom:519.258000px;}
.y21c{bottom:519.378000px;}
.y277{bottom:519.822150px;}
.yd{bottom:521.768550px;}
.y79{bottom:522.000000px;}
.yb4{bottom:522.900000px;}
.y248{bottom:523.416000px;}
.y9d{bottom:524.742000px;}
.y118{bottom:524.753850px;}
.y1cb{bottom:527.766000px;}
.yd7{bottom:530.099850px;}
.y55{bottom:530.550000px;}
.y183{bottom:533.292000px;}
.y1a6{bottom:533.352300px;}
.y21b{bottom:534.234000px;}
.y13c{bottom:536.262000px;}
.y1ef{bottom:536.850000px;}
.y276{bottom:538.272150px;}
.y247{bottom:538.416000px;}
.yf6{bottom:541.866300px;}
.y30{bottom:541.902000px;}
.y78{bottom:544.500000px;}
.yc{bottom:545.168550px;}
.yb3{bottom:545.400000px;}
.y9c{bottom:547.098000px;}
.y117{bottom:547.109850px;}
.y21a{bottom:549.078000px;}
.y1ca{bottom:549.960000px;}
.yd6{bottom:552.149850px;}
.y158{bottom:552.150000px;}
.y54{bottom:552.600000px;}
.y182{bottom:555.198000px;}
.y1a5{bottom:555.258300px;}
.y275{bottom:556.722150px;}
.y13b{bottom:558.006000px;}
.y1ee{bottom:559.800000px;}
.y219{bottom:564.048000px;}
.yf5{bottom:564.510300px;}
.y2f{bottom:564.546000px;}
.y77{bottom:567.000000px;}
.yb2{bottom:567.900000px;}
.yb{bottom:568.568550px;}
.y9b{bottom:569.454000px;}
.y116{bottom:569.465850px;}
.y1c9{bottom:572.154000px;}
.yd5{bottom:574.199850px;}
.y157{bottom:574.200000px;}
.y53{bottom:574.650000px;}
.y274{bottom:575.172150px;}
.y181{bottom:577.104000px;}
.y1a4{bottom:577.164300px;}
.y218{bottom:578.892000px;}
.y13a{bottom:579.846000px;}
.y1ed{bottom:582.750000px;}
.yf4{bottom:587.154300px;}
.y2e{bottom:587.190000px;}
.y76{bottom:589.500000px;}
.yb1{bottom:590.400000px;}
.y9a{bottom:591.810000px;}
.y115{bottom:591.821850px;}
.y9{bottom:591.968550px;}
.y273{bottom:593.622150px;}
.y217{bottom:593.736000px;}
.y1c8{bottom:594.348000px;}
.yd4{bottom:596.249850px;}
.y156{bottom:596.250000px;}
.y52{bottom:596.700000px;}
.y180{bottom:599.010000px;}
.y1a3{bottom:599.070300px;}
.y139{bottom:601.590000px;}
.y246{bottom:604.500000px;}
.y1ec{bottom:605.700000px;}
.y216{bottom:608.580000px;}
.yf3{bottom:609.798300px;}
.y2d{bottom:609.834000px;}
.y75{bottom:612.000000px;}
.y272{bottom:612.072150px;}
.yb0{bottom:612.900000px;}
.y99{bottom:614.166000px;}
.y114{bottom:614.177850px;}
.ya{bottom:615.368550px;}
.y1c7{bottom:616.542000px;}
.yd3{bottom:618.299850px;}
.y155{bottom:618.300000px;}
.y51{bottom:618.750000px;}
.y245{bottom:619.500000px;}
.y17f{bottom:620.916000px;}
.y1a2{bottom:620.976300px;}
.y138{bottom:623.334000px;}
.y215{bottom:623.424000px;}
.y1eb{bottom:628.650000px;}
.y271{bottom:630.522150px;}
.yf2{bottom:632.442300px;}
.y2c{bottom:632.478000px;}
.y74{bottom:634.500000px;}
.yaf{bottom:635.400000px;}
.y98{bottom:636.522000px;}
.y113{bottom:636.533850px;}
.y214{bottom:638.268000px;}
.y1c6{bottom:638.736000px;}
.yd2{bottom:640.349850px;}
.y154{bottom:640.350000px;}
.y50{bottom:640.800000px;}
.y17e{bottom:642.822000px;}
.y1a1{bottom:642.882300px;}
.y137{bottom:645.078000px;}
.y270{bottom:648.972150px;}
.y244{bottom:649.500000px;}
.y1ea{bottom:651.600000px;}
.y213{bottom:653.112000px;}
.yf1{bottom:655.086300px;}
.y2b{bottom:655.122000px;}
.y73{bottom:657.000000px;}
.y97{bottom:658.878000px;}
.y112{bottom:658.889850px;}
.y1c5{bottom:660.930000px;}
.yd1{bottom:662.399850px;}
.y153{bottom:662.400000px;}
.y4f{bottom:662.850000px;}
.y243{bottom:664.500000px;}
.y17d{bottom:664.728000px;}
.y1a0{bottom:664.788300px;}
.y136{bottom:666.822000px;}
.y26f{bottom:667.422150px;}
.y212{bottom:667.956000px;}
.y1e9{bottom:674.550000px;}
.yf0{bottom:677.730300px;}
.y2a{bottom:677.766000px;}
.y72{bottom:679.500000px;}
.y96{bottom:681.234000px;}
.y111{bottom:681.245850px;}
.y211{bottom:682.800000px;}
.y1c4{bottom:683.124000px;}
.yd0{bottom:684.449850px;}
.y152{bottom:684.450000px;}
.y4e{bottom:684.900000px;}
.y26e{bottom:685.872150px;}
.y17c{bottom:686.634000px;}
.y19f{bottom:686.694300px;}
.y135{bottom:688.566000px;}
.y242{bottom:694.500000px;}
.y1e8{bottom:697.500000px;}
.y210{bottom:697.644000px;}
.yef{bottom:700.374300px;}
.y29{bottom:700.410000px;}
.y71{bottom:702.000000px;}
.y95{bottom:703.590000px;}
.y110{bottom:703.601850px;}
.y26d{bottom:704.322150px;}
.y1c3{bottom:705.318000px;}
.ycf{bottom:706.499850px;}
.y151{bottom:706.500000px;}
.y4d{bottom:706.950000px;}
.y17b{bottom:708.540000px;}
.y19e{bottom:708.552150px;}
.y8{bottom:708.968550px;}
.y241{bottom:709.500000px;}
.y134{bottom:710.310000px;}
.y20f{bottom:712.488000px;}
.y1e7{bottom:720.450000px;}
.y26c{bottom:722.772150px;}
.yee{bottom:723.018300px;}
.y28{bottom:723.054000px;}
.y70{bottom:724.500000px;}
.y94{bottom:725.946000px;}
.y10f{bottom:725.957850px;}
.y20e{bottom:727.332000px;}
.y1c2{bottom:727.512000px;}
.y7{bottom:727.718550px;}
.yce{bottom:728.549850px;}
.y150{bottom:728.550000px;}
.y4c{bottom:729.000000px;}
.y17a{bottom:730.446000px;}
.y19d{bottom:730.458150px;}
.y133{bottom:732.054000px;}
.y240{bottom:739.500000px;}
.y26b{bottom:741.222150px;}
.y20d{bottom:742.176000px;}
.y1e6{bottom:743.400000px;}
.yed{bottom:745.662300px;}
.y27{bottom:745.698000px;}
.y6f{bottom:747.000000px;}
.y93{bottom:748.302000px;}
.y10e{bottom:748.313850px;}
.y1c1{bottom:749.706000px;}
.ycd{bottom:750.599850px;}
.y14f{bottom:750.600000px;}
.y4b{bottom:751.050000px;}
.y179{bottom:752.352000px;}
.y19c{bottom:752.364150px;}
.y132{bottom:753.798000px;}
.y23f{bottom:754.500000px;}
.y20c{bottom:757.020000px;}
.y26a{bottom:759.672150px;}
.y1e5{bottom:766.350000px;}
.yec{bottom:768.306300px;}
.y26{bottom:768.342000px;}
.y6e{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.y92{bottom:770.658000px;}
.y10d{bottom:770.669850px;}
.y20b{bottom:771.864000px;}
.y1c0{bottom:771.936000px;}
.ycc{bottom:772.649850px;}
.y14e{bottom:772.650000px;}
.y4a{bottom:773.100000px;}
.y178{bottom:774.258000px;}
.y19b{bottom:774.270150px;}
.y131{bottom:775.542000px;}
.y23e{bottom:784.500000px;}
.y20a{bottom:786.708000px;}
.y1e4{bottom:789.300000px;}
.y25{bottom:790.986000px;}
.y6d{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.y91{bottom:793.014000px;}
.y10c{bottom:793.025850px;}
.y1bf{bottom:794.130000px;}
.ycb{bottom:794.700000px;}
.y49{bottom:795.150000px;}
.y177{bottom:796.164000px;}
.y19a{bottom:796.176150px;}
.yeb{bottom:796.890300px;}
.y130{bottom:797.286000px;}
.y23d{bottom:799.500000px;}
.y209{bottom:801.552000px;}
.y269{bottom:802.200000px;}
.y1e3{bottom:812.250000px;}
.y24{bottom:813.630000px;}
.y6c{bottom:814.500000px;}
.y90{bottom:815.370000px;}
.y10b{bottom:815.381850px;}
.y1be{bottom:816.324000px;}
.y208{bottom:816.396000px;}
.yca{bottom:816.750000px;}
.y48{bottom:817.200000px;}
.y176{bottom:818.070000px;}
.y199{bottom:818.082150px;}
.y12f{bottom:819.030000px;}
.y23c{bottom:829.500000px;}
.y207{bottom:831.240000px;}
.y1e2{bottom:835.200000px;}
.y23{bottom:836.274000px;}
.y6b{bottom:837.000000px;}
.y8f{bottom:837.726000px;}
.y10a{bottom:837.737850px;}
.y1bd{bottom:838.518000px;}
.yc9{bottom:838.800000px;}
.y47{bottom:839.250000px;}
.y175{bottom:839.976000px;}
.y198{bottom:839.988150px;}
.y12e{bottom:840.774000px;}
.y23b{bottom:844.500000px;}
.y206{bottom:846.084000px;}
.y268{bottom:846.600000px;}
.y1e1{bottom:858.150000px;}
.y22{bottom:858.918000px;}
.y4{bottom:859.500000px;}
.y8e{bottom:860.082000px;}
.y109{bottom:860.093850px;}
.y1bc{bottom:860.712000px;}
.yc8{bottom:860.850000px;}
.y205{bottom:860.928000px;}
.y46{bottom:861.300000px;}
.y174{bottom:861.882000px;}
.y197{bottom:861.894150px;}
.y12d{bottom:862.518000px;}
.y23a{bottom:874.500000px;}
.y204{bottom:875.772000px;}
.y267{bottom:876.000000px;}
.y1e0{bottom:881.100000px;}
.y21{bottom:881.562000px;}
.y6a{bottom:882.000000px;}
.y8d{bottom:882.438000px;}
.yc7{bottom:882.900000px;}
.y1bb{bottom:882.906000px;}
.y45{bottom:883.350000px;}
.y173{bottom:883.788000px;}
.y12c{bottom:884.262000px;}
.y3{bottom:889.500000px;}
.y203{bottom:890.628000px;}
.y266{bottom:890.700000px;}
.y1df{bottom:904.050000px;}
.y20{bottom:904.206000px;}
.y69{bottom:904.500000px;}
.y8c{bottom:904.794000px;}
.yc6{bottom:904.950000px;}
.y1ba{bottom:905.106000px;}
.y44{bottom:905.400000px;}
.y202{bottom:905.472000px;}
.y172{bottom:905.694000px;}
.y12b{bottom:906.006000px;}
.y239{bottom:919.500000px;}
.y265{bottom:920.100000px;}
.y201{bottom:926.700000px;}
.y1f{bottom:926.850000px;}
.y68{bottom:927.000000px;}
.y8b{bottom:927.150000px;}
.y1b9{bottom:927.300000px;}
.y43{bottom:927.450000px;}
.y171{bottom:927.600000px;}
.y12a{bottom:927.750000px;}
.y238{bottom:934.500000px;}
.y264{bottom:934.800000px;}
.ha{height:30.313623px;}
.h19{height:39.072000px;}
.h1a{height:39.984000px;}
.h7{height:40.283203px;}
.hb{height:40.757812px;}
.h4{height:42.000000px;}
.hf{height:42.795703px;}
.h1{height:50.947266px;}
.h2{height:52.283203px;}
.h5{height:61.136719px;}
.hd{height:61.807519px;}
.h9{height:65.835703px;}
.h12{height:66.171703px;}
.h13{height:66.195703px;}
.h10{height:66.243703px;}
.h18{height:66.412303px;}
.h17{height:66.531703px;}
.hc{height:66.555103px;}
.h8{height:66.555703px;}
.he{height:66.579703px;}
.h11{height:66.603103px;}
.h14{height:66.604303px;}
.h15{height:66.748303px;}
.h16{height:66.939703px;}
.h3{height:101.894531px;}
.h6{height:306.026700px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x4{left:82.417050px;}
.x3{left:109.705050px;}
.x6{left:112.500000px;}
.x7{left:127.403250px;}
.x2{left:135.000000px;}
.x8{left:380.657850px;}
.x9{left:625.781250px;}
.x5{left:635.390550px;}
@media print{
.v6{vertical-align:-23.493333pt;}
.v7{vertical-align:-21.120000pt;}
.v4{vertical-align:-14.960000pt;}
.v5{vertical-align:-12.203733pt;}
.v8{vertical-align:-8.981333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:166.400000pt;}
.lsb{letter-spacing:-10.666667pt;}
.ls24{letter-spacing:-6.400000pt;}
.ls12{letter-spacing:-4.416000pt;}
.ls6f{letter-spacing:-4.266667pt;}
.ls4a{letter-spacing:-3.264000pt;}
.ls58{letter-spacing:-3.136000pt;}
.ls2d{letter-spacing:-2.816000pt;}
.ls28{letter-spacing:-2.496000pt;}
.ls41{letter-spacing:-2.368000pt;}
.ls4c{letter-spacing:-2.304000pt;}
.ls25{letter-spacing:-1.920000pt;}
.ls27{letter-spacing:-1.792000pt;}
.ls1d{letter-spacing:-1.088000pt;}
.ls1a{letter-spacing:-1.024000pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls5f{letter-spacing:-0.896000pt;}
.ls2c{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls65{letter-spacing:-0.582400pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls49{letter-spacing:-0.537600pt;}
.ls78{letter-spacing:-0.533333pt;}
.ls4b{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls60{letter-spacing:-0.313600pt;}
.ls7a{letter-spacing:-0.266667pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls4d{letter-spacing:-0.224000pt;}
.ls29{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.064000pt;}
.ls66{letter-spacing:-0.044800pt;}
.lsa{letter-spacing:0.000000pt;}
.ls62{letter-spacing:0.022400pt;}
.ls14{letter-spacing:0.064000pt;}
.ls40{letter-spacing:0.089600pt;}
.lse{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls61{letter-spacing:0.213333pt;}
.ls30{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.268800pt;}
.ls15{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls6a{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.659200pt;}
.ls20{letter-spacing:0.704000pt;}
.ls35{letter-spacing:0.715200pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls37{letter-spacing:0.832000pt;}
.ls4f{letter-spacing:0.896000pt;}
.ls34{letter-spacing:0.960000pt;}
.ls2f{letter-spacing:1.152000pt;}
.ls46{letter-spacing:1.216000pt;}
.ls48{letter-spacing:1.280000pt;}
.ls47{letter-spacing:1.472000pt;}
.ls50{letter-spacing:1.536000pt;}
.ls54{letter-spacing:1.600000pt;}
.ls53{letter-spacing:1.728000pt;}
.ls64{letter-spacing:1.888000pt;}
.ls3b{letter-spacing:2.048000pt;}
.ls6b{letter-spacing:2.304000pt;}
.ls4e{letter-spacing:2.368000pt;}
.ls71{letter-spacing:2.589867pt;}
.ls72{letter-spacing:2.594133pt;}
.ls73{letter-spacing:2.602667pt;}
.ls74{letter-spacing:2.606933pt;}
.ls70{letter-spacing:2.619733pt;}
.ls75{letter-spacing:2.986667pt;}
.ls6e{letter-spacing:3.016533pt;}
.ls38{letter-spacing:3.025067pt;}
.ls79{letter-spacing:3.733333pt;}
.ls1c{letter-spacing:3.776000pt;}
.ls0{letter-spacing:3.786667pt;}
.ls76{letter-spacing:3.925333pt;}
.ls2{letter-spacing:4.053333pt;}
.ls69{letter-spacing:4.096000pt;}
.ls6d{letter-spacing:4.224000pt;}
.lsf{letter-spacing:4.864000pt;}
.ls77{letter-spacing:6.869333pt;}
.ls21{letter-spacing:6.912000pt;}
.ls51{letter-spacing:7.040000pt;}
.ls33{letter-spacing:7.123733pt;}
.ls17{letter-spacing:7.436800pt;}
.ls56{letter-spacing:7.498667pt;}
.ls2e{letter-spacing:7.520000pt;}
.ls6c{letter-spacing:7.552000pt;}
.ls42{letter-spacing:7.744000pt;}
.ls57{letter-spacing:8.128000pt;}
.ls5c{letter-spacing:8.448000pt;}
.ls39{letter-spacing:8.533333pt;}
.ls67{letter-spacing:9.024000pt;}
.ls68{letter-spacing:9.113600pt;}
.ls5b{letter-spacing:9.337600pt;}
.ls1{letter-spacing:9.546667pt;}
.ls3{letter-spacing:9.711875pt;}
.ls59{letter-spacing:9.920000pt;}
.ls22{letter-spacing:9.984000pt;}
.ls43{letter-spacing:10.048000pt;}
.ls32{letter-spacing:10.240000pt;}
.ls45{letter-spacing:10.304000pt;}
.ls63{letter-spacing:10.432000pt;}
.ls55{letter-spacing:10.496000pt;}
.ls44{letter-spacing:10.560000pt;}
.ls16{letter-spacing:10.624000pt;}
.ls52{letter-spacing:10.688000pt;}
.ls3e{letter-spacing:10.752000pt;}
.ls5e{letter-spacing:10.880000pt;}
.ls31{letter-spacing:10.944000pt;}
.ls5a{letter-spacing:11.008000pt;}
.ls5d{letter-spacing:11.328000pt;}
.ls3c{letter-spacing:11.456000pt;}
.ls3a{letter-spacing:12.262667pt;}
.ls3f{letter-spacing:12.263200pt;}
.ws1{word-spacing:-53.333333pt;}
.ws74{word-spacing:-26.816000pt;}
.ws1f{word-spacing:-26.432000pt;}
.ws63{word-spacing:-26.112000pt;}
.ws44{word-spacing:-26.048000pt;}
.ws2b{word-spacing:-25.792000pt;}
.ws40{word-spacing:-22.506667pt;}
.ws96{word-spacing:-18.496000pt;}
.ws41{word-spacing:-18.304000pt;}
.ws2a{word-spacing:-17.984000pt;}
.ws1c{word-spacing:-17.664000pt;}
.ws58{word-spacing:-17.088000pt;}
.ws45{word-spacing:-16.640000pt;}
.ws37{word-spacing:-16.512000pt;}
.ws94{word-spacing:-16.384000pt;}
.ws95{word-spacing:-16.256000pt;}
.ws79{word-spacing:-16.192000pt;}
.ws38{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws32{word-spacing:-16.000000pt;}
.ws56{word-spacing:-15.936000pt;}
.ws1e{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws39{word-spacing:-15.744000pt;}
.ws46{word-spacing:-15.680000pt;}
.ws6e{word-spacing:-15.616000pt;}
.ws90{word-spacing:-15.552000pt;}
.ws3a{word-spacing:-15.488000pt;}
.ws7a{word-spacing:-15.424000pt;}
.ws7b{word-spacing:-15.360000pt;}
.ws55{word-spacing:-15.296000pt;}
.ws6b{word-spacing:-15.232000pt;}
.ws2c{word-spacing:-15.168000pt;}
.ws5{word-spacing:-15.104000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws83{word-spacing:-14.976000pt;}
.ws9e{word-spacing:-13.173333pt;}
.ws47{word-spacing:-12.857600pt;}
.ws6d{word-spacing:-12.812800pt;}
.ws4e{word-spacing:-12.678400pt;}
.ws9d{word-spacing:-12.640000pt;}
.ws1d{word-spacing:-12.588800pt;}
.ws89{word-spacing:-12.544000pt;}
.ws57{word-spacing:-12.364800pt;}
.ws7e{word-spacing:-12.275200pt;}
.ws6c{word-spacing:-12.140800pt;}
.ws54{word-spacing:-12.051200pt;}
.ws88{word-spacing:-12.006400pt;}
.ws7f{word-spacing:-11.989333pt;}
.ws4c{word-spacing:-11.456000pt;}
.ws6{word-spacing:-11.392000pt;}
.ws76{word-spacing:-11.328000pt;}
.ws99{word-spacing:-10.965333pt;}
.ws43{word-spacing:-10.944000pt;}
.ws78{word-spacing:-10.880000pt;}
.ws51{word-spacing:-10.752000pt;}
.ws69{word-spacing:-10.688000pt;}
.ws2d{word-spacing:-10.624000pt;}
.ws5d{word-spacing:-10.560000pt;}
.ws48{word-spacing:-10.538667pt;}
.ws68{word-spacing:-10.496000pt;}
.ws8b{word-spacing:-10.432000pt;}
.ws5f{word-spacing:-10.304000pt;}
.ws5a{word-spacing:-10.048000pt;}
.ws72{word-spacing:-9.920000pt;}
.ws8f{word-spacing:-9.024000pt;}
.ws4d{word-spacing:-8.533333pt;}
.ws3b{word-spacing:-8.392533pt;}
.ws53{word-spacing:-7.744000pt;}
.ws73{word-spacing:-7.552000pt;}
.ws80{word-spacing:-7.520000pt;}
.ws18{word-spacing:-4.864000pt;}
.ws92{word-spacing:-4.096000pt;}
.ws25{word-spacing:-3.776000pt;}
.wsa2{word-spacing:-3.733333pt;}
.ws9c{word-spacing:-2.986667pt;}
.ws97{word-spacing:-2.304000pt;}
.ws4a{word-spacing:-2.048000pt;}
.ws5b{word-spacing:-1.920000pt;}
.ws65{word-spacing:-1.728000pt;}
.ws91{word-spacing:-1.664000pt;}
.ws66{word-spacing:-1.600000pt;}
.ws67{word-spacing:-1.536000pt;}
.ws61{word-spacing:-1.472000pt;}
.ws59{word-spacing:-1.216000pt;}
.ws42{word-spacing:-1.152000pt;}
.ws4b{word-spacing:-0.960000pt;}
.ws64{word-spacing:-0.896000pt;}
.ws75{word-spacing:-0.832000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws2e{word-spacing:-0.704000pt;}
.ws13{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.576000pt;}
.ws30{word-spacing:-0.512000pt;}
.ws15{word-spacing:-0.448000pt;}
.ws16{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.320000pt;}
.ws17{word-spacing:-0.256000pt;}
.ws82{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.064000pt;}
.ws8a{word-spacing:-0.044800pt;}
.wsa{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.064000pt;}
.wsf{word-spacing:0.128000pt;}
.ws10{word-spacing:0.192000pt;}
.ws36{word-spacing:0.213333pt;}
.ws33{word-spacing:0.256000pt;}
.wsa3{word-spacing:0.266667pt;}
.ws1b{word-spacing:0.320000pt;}
.ws29{word-spacing:0.384000pt;}
.ws27{word-spacing:0.448000pt;}
.ws7c{word-spacing:0.512000pt;}
.wsa1{word-spacing:0.533333pt;}
.ws20{word-spacing:0.576000pt;}
.ws24{word-spacing:0.640000pt;}
.ws19{word-spacing:0.704000pt;}
.ws1a{word-spacing:0.768000pt;}
.ws3e{word-spacing:0.832000pt;}
.ws81{word-spacing:0.896000pt;}
.ws22{word-spacing:0.960000pt;}
.ws23{word-spacing:1.024000pt;}
.ws26{word-spacing:1.088000pt;}
.ws9f{word-spacing:1.109333pt;}
.ws6f{word-spacing:1.152000pt;}
.wsa0{word-spacing:1.280000pt;}
.ws35{word-spacing:1.472000pt;}
.ws84{word-spacing:1.536000pt;}
.wsd{word-spacing:1.600000pt;}
.ws7d{word-spacing:1.664000pt;}
.ws34{word-spacing:1.792000pt;}
.ws98{word-spacing:1.856000pt;}
.ws31{word-spacing:1.920000pt;}
.ws8d{word-spacing:2.048000pt;}
.ws52{word-spacing:2.112000pt;}
.ws50{word-spacing:2.368000pt;}
.ws87{word-spacing:2.432000pt;}
.ws93{word-spacing:2.496000pt;}
.wse{word-spacing:2.602667pt;}
.ws60{word-spacing:2.816000pt;}
.ws5c{word-spacing:2.880000pt;}
.ws3f{word-spacing:3.264000pt;}
.ws8{word-spacing:3.306667pt;}
.ws4f{word-spacing:3.584000pt;}
.ws7{word-spacing:3.733333pt;}
.ws8e{word-spacing:3.904000pt;}
.ws9b{word-spacing:4.224000pt;}
.ws9a{word-spacing:4.266667pt;}
.ws5e{word-spacing:4.480000pt;}
.ws2f{word-spacing:6.400000pt;}
.ws71{word-spacing:6.464000pt;}
.ws0{word-spacing:7.445333pt;}
.wsb{word-spacing:7.466667pt;}
.ws8c{word-spacing:7.552000pt;}
.ws70{word-spacing:7.680000pt;}
.ws49{word-spacing:7.744000pt;}
.ws86{word-spacing:8.192000pt;}
.ws62{word-spacing:8.384000pt;}
.ws77{word-spacing:8.576000pt;}
.ws85{word-spacing:8.960000pt;}
.wsc{word-spacing:10.666667pt;}
.ws9{word-spacing:66.826667pt;}
.ws6a{word-spacing:129.952000pt;}
._1f{margin-left:-843.396267pt;}
._10{margin-left:-835.898667pt;}
._5{margin-left:-63.232000pt;}
._19{margin-left:-17.475200pt;}
._6{margin-left:-16.426667pt;}
._1d{margin-left:-13.592533pt;}
._16{margin-left:-12.546133pt;}
._14{margin-left:-10.787200pt;}
._17{margin-left:-9.734400pt;}
._18{margin-left:-8.153600pt;}
._f{margin-left:-7.033600pt;}
._4{margin-left:-5.370667pt;}
._11{margin-left:-4.387200pt;}
._12{margin-left:-3.370667pt;}
._c{margin-left:-2.320000pt;}
._7{margin-left:-1.232000pt;}
._3{width:1.232000pt;}
._9{width:2.800000pt;}
._2{width:3.749333pt;}
._e{width:5.266133pt;}
._1{width:6.864000pt;}
._a{width:7.914667pt;}
._b{width:8.848000pt;}
._d{width:9.852800pt;}
._15{width:11.009067pt;}
._1c{width:12.000000pt;}
._1a{width:13.344000pt;}
._1b{width:14.342400pt;}
._1e{width:17.028267pt;}
._20{width:19.186133pt;}
._8{width:23.306667pt;}
._13{width:28.129867pt;}
._0{width:179.168000pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:388.605333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y67{bottom:103.999867pt;}
.y42{bottom:104.000000pt;}
.y1de{bottom:104.000133pt;}
.y196{bottom:104.069333pt;}
.y170{bottom:104.117333pt;}
.y28b{bottom:104.597467pt;}
.y237{bottom:105.301333pt;}
.yae{bottom:107.739733pt;}
.yc5{bottom:107.740000pt;}
.y108{bottom:107.740267pt;}
.y200{bottom:108.368000pt;}
.y263{bottom:108.725333pt;}
.y1e{bottom:110.194267pt;}
.y16f{bottom:117.312000pt;}
.y8a{bottom:117.333333pt;}
.y1dd{bottom:117.333467pt;}
.y236{bottom:118.496000pt;}
.y28a{bottom:120.997467pt;}
.y66{bottom:121.073200pt;}
.y41{bottom:121.073333pt;}
.y262{bottom:121.792000pt;}
.y195{bottom:123.541333pt;}
.y107{bottom:124.000267pt;}
.yea{bottom:127.740000pt;}
.y1ff{bottom:129.040000pt;}
.y16e{bottom:130.506667pt;}
.y89{bottom:130.666667pt;}
.y1dc{bottom:130.666800pt;}
.y1d{bottom:130.994267pt;}
.y235{bottom:131.690667pt;}
.y261{bottom:134.858667pt;}
.y14d{bottom:137.333333pt;}
.y1b8{bottom:137.333600pt;}
.y289{bottom:137.397467pt;}
.ye8{bottom:141.073200pt;}
.y40{bottom:141.073333pt;}
.y106{bottom:141.073600pt;}
.y194{bottom:143.013333pt;}
.y16d{bottom:143.701333pt;}
.y129{bottom:144.000000pt;}
.y1db{bottom:144.000133pt;}
.yc4{bottom:144.800000pt;}
.y234{bottom:144.885333pt;}
.y88{bottom:147.740000pt;}
.y260{bottom:147.925333pt;}
.y128{bottom:148.495867pt;}
.yad{bottom:148.639733pt;}
.y1fe{bottom:149.712000pt;}
.y1b7{bottom:150.666933pt;}
.y1c{bottom:151.794267pt;}
.y288{bottom:153.797467pt;}
.y14c{bottom:154.406667pt;}
.y16c{bottom:156.896000pt;}
.ye7{bottom:157.333200pt;}
.y1da{bottom:157.333467pt;}
.y65{bottom:158.000000pt;}
.y233{bottom:158.080000pt;}
.y25f{bottom:160.992000pt;}
.y193{bottom:162.485333pt;}
.ye9{bottom:164.000000pt;}
.y1b6{bottom:164.000267pt;}
.yc3{bottom:164.800000pt;}
.y127{bottom:168.367867pt;}
.yac{bottom:168.511733pt;}
.y16b{bottom:170.090667pt;}
.y1fd{bottom:170.384000pt;}
.y232{bottom:171.274667pt;}
.y1b{bottom:172.594267pt;}
.y25e{bottom:174.058667pt;}
.ye6{bottom:174.406533pt;}
.y1d9{bottom:174.406800pt;}
.y64{bottom:177.600000pt;}
.y3f{bottom:179.610667pt;}
.y105{bottom:179.669600pt;}
.y287{bottom:179.930800pt;}
.y1b5{bottom:181.073600pt;}
.y192{bottom:181.957333pt;}
.y16a{bottom:183.285333pt;}
.y87{bottom:184.000000pt;}
.y231{bottom:184.469333pt;}
.yc2{bottom:184.800000pt;}
.y14b{bottom:186.677333pt;}
.y25d{bottom:187.125333pt;}
.y126{bottom:188.239867pt;}
.yab{bottom:188.383733pt;}
.ye5{bottom:190.666533pt;}
.y1fc{bottom:191.056000pt;}
.y1a{bottom:193.394267pt;}
.y1d8{bottom:194.406800pt;}
.y169{bottom:196.480000pt;}
.y63{bottom:197.200000pt;}
.y1b4{bottom:197.333600pt;}
.y230{bottom:197.674667pt;}
.y3e{bottom:199.738667pt;}
.y104{bottom:199.797600pt;}
.y25c{bottom:200.192000pt;}
.y191{bottom:201.429333pt;}
.ye4{bottom:203.999867pt;}
.y86{bottom:204.000000pt;}
.yc1{bottom:204.800000pt;}
.y14a{bottom:206.005333pt;}
.y125{bottom:208.111867pt;}
.yaa{bottom:208.255733pt;}
.y168{bottom:209.674667pt;}
.y1b3{bottom:210.666933pt;}
.y22f{bottom:210.869333pt;}
.y1fb{bottom:211.728000pt;}
.y25b{bottom:213.258667pt;}
.y19{bottom:214.194267pt;}
.y286{bottom:216.064133pt;}
.y62{bottom:216.800000pt;}
.y103{bottom:219.925600pt;}
.y3d{bottom:220.026667pt;}
.y190{bottom:220.901333pt;}
.ye3{bottom:221.073200pt;}
.y167{bottom:222.869333pt;}
.y85{bottom:224.000000pt;}
.y1b2{bottom:224.000267pt;}
.y22e{bottom:224.138667pt;}
.yc0{bottom:224.800000pt;}
.y149{bottom:225.413333pt;}
.y25a{bottom:226.325333pt;}
.y124{bottom:227.983867pt;}
.ya9{bottom:228.127733pt;}
.y1d7{bottom:232.117333pt;}
.y1fa{bottom:232.400000pt;}
.y285{bottom:232.464133pt;}
.y18{bottom:234.994267pt;}
.y166{bottom:236.064000pt;}
.y61{bottom:236.400000pt;}
.y22d{bottom:237.333333pt;}
.y259{bottom:239.392000pt;}
.y102{bottom:240.053600pt;}
.y3c{bottom:240.154667pt;}
.y18f{bottom:240.373333pt;}
.y1b1{bottom:241.073600pt;}
.y84{bottom:244.000000pt;}
.y148{bottom:244.741333pt;}
.ybf{bottom:244.800000pt;}
.y123{bottom:247.855867pt;}
.ya8{bottom:247.994400pt;}
.y284{bottom:248.864133pt;}
.y165{bottom:249.258667pt;}
.y22c{bottom:250.528000pt;}
.y1d6{bottom:252.117333pt;}
.y258{bottom:252.458667pt;}
.y1f9{bottom:252.800000pt;}
.ye2{bottom:255.599867pt;}
.y17{bottom:255.794267pt;}
.y60{bottom:256.000000pt;}
.y18e{bottom:259.845333pt;}
.y101{bottom:260.181600pt;}
.y3b{bottom:260.282667pt;}
.y164{bottom:262.453333pt;}
.y22b{bottom:263.722667pt;}
.y83{bottom:264.000000pt;}
.y147{bottom:264.069333pt;}
.ybe{bottom:264.800000pt;}
.y283{bottom:265.264133pt;}
.y257{bottom:265.525333pt;}
.ya7{bottom:267.717333pt;}
.y122{bottom:267.727867pt;}
.y1d5{bottom:271.845333pt;}
.y1f8{bottom:273.200000pt;}
.ye1{bottom:275.199867pt;}
.y5f{bottom:275.600000pt;}
.y163{bottom:275.648000pt;}
.y16{bottom:276.594267pt;}
.y22a{bottom:276.917333pt;}
.y256{bottom:278.592000pt;}
.y18d{bottom:279.317333pt;}
.y1b0{bottom:279.456267pt;}
.y100{bottom:280.309600pt;}
.y3a{bottom:280.410667pt;}
.y282{bottom:281.664133pt;}
.y146{bottom:283.397333pt;}
.y82{bottom:284.000000pt;}
.ybd{bottom:284.800000pt;}
.ya6{bottom:287.589333pt;}
.y121{bottom:287.599867pt;}
.y162{bottom:288.842667pt;}
.y229{bottom:290.112000pt;}
.y1d4{bottom:291.573333pt;}
.y255{bottom:291.925333pt;}
.y1f7{bottom:293.600000pt;}
.ye0{bottom:294.799867pt;}
.y5e{bottom:295.200000pt;}
.y15{bottom:297.394267pt;}
.y281{bottom:298.064133pt;}
.y18c{bottom:298.789333pt;}
.y1af{bottom:298.928267pt;}
.yff{bottom:300.437600pt;}
.y39{bottom:300.538667pt;}
.y161{bottom:302.037333pt;}
.y145{bottom:302.725333pt;}
.y228{bottom:303.306667pt;}
.y81{bottom:304.000000pt;}
.ybc{bottom:304.800000pt;}
.y254{bottom:305.258667pt;}
.ya5{bottom:307.461333pt;}
.y120{bottom:307.471867pt;}
.y1d3{bottom:311.301333pt;}
.y1f6{bottom:314.000000pt;}
.ydf{bottom:314.399867pt;}
.y280{bottom:314.464133pt;}
.y5d{bottom:314.800000pt;}
.y160{bottom:315.232000pt;}
.y227{bottom:316.501333pt;}
.y14{bottom:318.194267pt;}
.y18b{bottom:318.261333pt;}
.y1ae{bottom:318.314933pt;}
.y253{bottom:318.592000pt;}
.yfe{bottom:320.565600pt;}
.y38{bottom:320.666667pt;}
.y144{bottom:322.053333pt;}
.y80{bottom:324.000000pt;}
.ybb{bottom:324.800000pt;}
.ya4{bottom:327.333333pt;}
.y11f{bottom:327.343867pt;}
.y15f{bottom:328.426667pt;}
.y226{bottom:329.696000pt;}
.y27f{bottom:330.864133pt;}
.y1d2{bottom:331.029333pt;}
.y252{bottom:331.925333pt;}
.yde{bottom:333.999867pt;}
.y5c{bottom:334.400000pt;}
.y18a{bottom:337.733333pt;}
.y1ad{bottom:337.786933pt;}
.y13{bottom:338.994267pt;}
.yfd{bottom:340.693600pt;}
.y37{bottom:340.794667pt;}
.y143{bottom:341.381333pt;}
.y15e{bottom:341.621333pt;}
.y225{bottom:342.890667pt;}
.y7f{bottom:344.000000pt;}
.yba{bottom:344.800000pt;}
.y251{bottom:345.258667pt;}
.ya3{bottom:347.205333pt;}
.y11e{bottom:347.215867pt;}
.y27e{bottom:347.264133pt;}
.y1d1{bottom:350.757333pt;}
.ydd{bottom:353.599867pt;}
.y5b{bottom:354.000000pt;}
.y1f5{bottom:354.800000pt;}
.y15d{bottom:354.816000pt;}
.y224{bottom:356.085333pt;}
.y189{bottom:357.205333pt;}
.y1ac{bottom:357.258933pt;}
.y250{bottom:358.592000pt;}
.y12{bottom:359.794267pt;}
.y142{bottom:360.709333pt;}
.yfc{bottom:360.821600pt;}
.y36{bottom:360.922667pt;}
.y27d{bottom:363.664133pt;}
.y7e{bottom:364.000000pt;}
.yb9{bottom:364.800000pt;}
.ya2{bottom:367.077333pt;}
.y11d{bottom:367.087867pt;}
.y15c{bottom:368.010667pt;}
.y223{bottom:369.280000pt;}
.y1d0{bottom:370.485333pt;}
.y24f{bottom:371.925333pt;}
.ydc{bottom:373.199867pt;}
.y5a{bottom:373.600000pt;}
.y1f4{bottom:375.200000pt;}
.y188{bottom:376.677333pt;}
.y1ab{bottom:376.730933pt;}
.y141{bottom:380.037333pt;}
.y27c{bottom:380.064133pt;}
.y11{bottom:380.594267pt;}
.yfb{bottom:380.949600pt;}
.y35{bottom:381.050667pt;}
.y15b{bottom:381.205333pt;}
.y222{bottom:382.474667pt;}
.y7d{bottom:384.000000pt;}
.yb8{bottom:384.800000pt;}
.y24e{bottom:385.258667pt;}
.ya1{bottom:386.949333pt;}
.y11c{bottom:386.959867pt;}
.y1cf{bottom:390.213333pt;}
.ydb{bottom:392.799867pt;}
.y59{bottom:393.200000pt;}
.y1f3{bottom:395.600000pt;}
.y221{bottom:395.669333pt;}
.y187{bottom:396.149333pt;}
.y1aa{bottom:396.202933pt;}
.y27b{bottom:396.464133pt;}
.y15a{bottom:398.139867pt;}
.y24d{bottom:398.592000pt;}
.y140{bottom:399.365333pt;}
.yfa{bottom:401.077600pt;}
.y34{bottom:401.178667pt;}
.y10{bottom:401.394267pt;}
.y7c{bottom:404.000000pt;}
.yb7{bottom:404.800000pt;}
.ya0{bottom:406.821333pt;}
.y11b{bottom:406.831867pt;}
.y220{bottom:408.874667pt;}
.y1ce{bottom:409.941333pt;}
.y24c{bottom:411.925333pt;}
.yda{bottom:412.399867pt;}
.y58{bottom:412.800000pt;}
.y27a{bottom:412.864133pt;}
.y186{bottom:415.621333pt;}
.y1a9{bottom:415.674933pt;}
.y1f2{bottom:416.000000pt;}
.y13f{bottom:418.693333pt;}
.yf9{bottom:421.205600pt;}
.y33{bottom:421.306667pt;}
.y21f{bottom:422.069333pt;}
.yf{bottom:422.194267pt;}
.y7b{bottom:424.000000pt;}
.yb6{bottom:424.800000pt;}
.y24b{bottom:425.258667pt;}
.y9f{bottom:426.693333pt;}
.y11a{bottom:426.703867pt;}
.y279{bottom:429.264133pt;}
.y1cd{bottom:429.669333pt;}
.y159{bottom:431.471867pt;}
.yd9{bottom:431.999867pt;}
.y57{bottom:432.400000pt;}
.y185{bottom:435.093333pt;}
.y1a8{bottom:435.146933pt;}
.y21e{bottom:435.274667pt;}
.y1f1{bottom:436.400000pt;}
.y13e{bottom:438.021333pt;}
.y24a{bottom:438.592000pt;}
.yf8{bottom:441.402933pt;}
.y32{bottom:441.434667pt;}
.ye{bottom:442.994267pt;}
.y7a{bottom:444.000000pt;}
.yb5{bottom:444.800000pt;}
.y278{bottom:445.664133pt;}
.y9e{bottom:446.565333pt;}
.y119{bottom:446.575867pt;}
.y21d{bottom:448.469333pt;}
.y1cc{bottom:449.397333pt;}
.yd8{bottom:451.599867pt;}
.y249{bottom:451.925333pt;}
.y56{bottom:452.000000pt;}
.y184{bottom:454.565333pt;}
.y1a7{bottom:454.618933pt;}
.y1f0{bottom:456.800000pt;}
.y13d{bottom:457.349333pt;}
.yf7{bottom:461.530933pt;}
.y31{bottom:461.562667pt;}
.y21c{bottom:461.669333pt;}
.y277{bottom:462.064133pt;}
.yd{bottom:463.794267pt;}
.y79{bottom:464.000000pt;}
.yb4{bottom:464.800000pt;}
.y248{bottom:465.258667pt;}
.y9d{bottom:466.437333pt;}
.y118{bottom:466.447867pt;}
.y1cb{bottom:469.125333pt;}
.yd7{bottom:471.199867pt;}
.y55{bottom:471.600000pt;}
.y183{bottom:474.037333pt;}
.y1a6{bottom:474.090933pt;}
.y21b{bottom:474.874667pt;}
.y13c{bottom:476.677333pt;}
.y1ef{bottom:477.200000pt;}
.y276{bottom:478.464133pt;}
.y247{bottom:478.592000pt;}
.yf6{bottom:481.658933pt;}
.y30{bottom:481.690667pt;}
.y78{bottom:484.000000pt;}
.yc{bottom:484.594267pt;}
.yb3{bottom:484.800000pt;}
.y9c{bottom:486.309333pt;}
.y117{bottom:486.319867pt;}
.y21a{bottom:488.069333pt;}
.y1ca{bottom:488.853333pt;}
.yd6{bottom:490.799867pt;}
.y158{bottom:490.800000pt;}
.y54{bottom:491.200000pt;}
.y182{bottom:493.509333pt;}
.y1a5{bottom:493.562933pt;}
.y275{bottom:494.864133pt;}
.y13b{bottom:496.005333pt;}
.y1ee{bottom:497.600000pt;}
.y219{bottom:501.376000pt;}
.yf5{bottom:501.786933pt;}
.y2f{bottom:501.818667pt;}
.y77{bottom:504.000000pt;}
.yb2{bottom:504.800000pt;}
.yb{bottom:505.394267pt;}
.y9b{bottom:506.181333pt;}
.y116{bottom:506.191867pt;}
.y1c9{bottom:508.581333pt;}
.yd5{bottom:510.399867pt;}
.y157{bottom:510.400000pt;}
.y53{bottom:510.800000pt;}
.y274{bottom:511.264133pt;}
.y181{bottom:512.981333pt;}
.y1a4{bottom:513.034933pt;}
.y218{bottom:514.570667pt;}
.y13a{bottom:515.418667pt;}
.y1ed{bottom:518.000000pt;}
.yf4{bottom:521.914933pt;}
.y2e{bottom:521.946667pt;}
.y76{bottom:524.000000pt;}
.yb1{bottom:524.800000pt;}
.y9a{bottom:526.053333pt;}
.y115{bottom:526.063867pt;}
.y9{bottom:526.194267pt;}
.y273{bottom:527.664133pt;}
.y217{bottom:527.765333pt;}
.y1c8{bottom:528.309333pt;}
.yd4{bottom:529.999867pt;}
.y156{bottom:530.000000pt;}
.y52{bottom:530.400000pt;}
.y180{bottom:532.453333pt;}
.y1a3{bottom:532.506933pt;}
.y139{bottom:534.746667pt;}
.y246{bottom:537.333333pt;}
.y1ec{bottom:538.400000pt;}
.y216{bottom:540.960000pt;}
.yf3{bottom:542.042933pt;}
.y2d{bottom:542.074667pt;}
.y75{bottom:544.000000pt;}
.y272{bottom:544.064133pt;}
.yb0{bottom:544.800000pt;}
.y99{bottom:545.925333pt;}
.y114{bottom:545.935867pt;}
.ya{bottom:546.994267pt;}
.y1c7{bottom:548.037333pt;}
.yd3{bottom:549.599867pt;}
.y155{bottom:549.600000pt;}
.y51{bottom:550.000000pt;}
.y245{bottom:550.666667pt;}
.y17f{bottom:551.925333pt;}
.y1a2{bottom:551.978933pt;}
.y138{bottom:554.074667pt;}
.y215{bottom:554.154667pt;}
.y1eb{bottom:558.800000pt;}
.y271{bottom:560.464133pt;}
.yf2{bottom:562.170933pt;}
.y2c{bottom:562.202667pt;}
.y74{bottom:564.000000pt;}
.yaf{bottom:564.800000pt;}
.y98{bottom:565.797333pt;}
.y113{bottom:565.807867pt;}
.y214{bottom:567.349333pt;}
.y1c6{bottom:567.765333pt;}
.yd2{bottom:569.199867pt;}
.y154{bottom:569.200000pt;}
.y50{bottom:569.600000pt;}
.y17e{bottom:571.397333pt;}
.y1a1{bottom:571.450933pt;}
.y137{bottom:573.402667pt;}
.y270{bottom:576.864133pt;}
.y244{bottom:577.333333pt;}
.y1ea{bottom:579.200000pt;}
.y213{bottom:580.544000pt;}
.yf1{bottom:582.298933pt;}
.y2b{bottom:582.330667pt;}
.y73{bottom:584.000000pt;}
.y97{bottom:585.669333pt;}
.y112{bottom:585.679867pt;}
.y1c5{bottom:587.493333pt;}
.yd1{bottom:588.799867pt;}
.y153{bottom:588.800000pt;}
.y4f{bottom:589.200000pt;}
.y243{bottom:590.666667pt;}
.y17d{bottom:590.869333pt;}
.y1a0{bottom:590.922933pt;}
.y136{bottom:592.730667pt;}
.y26f{bottom:593.264133pt;}
.y212{bottom:593.738667pt;}
.y1e9{bottom:599.600000pt;}
.yf0{bottom:602.426933pt;}
.y2a{bottom:602.458667pt;}
.y72{bottom:604.000000pt;}
.y96{bottom:605.541333pt;}
.y111{bottom:605.551867pt;}
.y211{bottom:606.933333pt;}
.y1c4{bottom:607.221333pt;}
.yd0{bottom:608.399867pt;}
.y152{bottom:608.400000pt;}
.y4e{bottom:608.800000pt;}
.y26e{bottom:609.664133pt;}
.y17c{bottom:610.341333pt;}
.y19f{bottom:610.394933pt;}
.y135{bottom:612.058667pt;}
.y242{bottom:617.333333pt;}
.y1e8{bottom:620.000000pt;}
.y210{bottom:620.128000pt;}
.yef{bottom:622.554933pt;}
.y29{bottom:622.586667pt;}
.y71{bottom:624.000000pt;}
.y95{bottom:625.413333pt;}
.y110{bottom:625.423867pt;}
.y26d{bottom:626.064133pt;}
.y1c3{bottom:626.949333pt;}
.ycf{bottom:627.999867pt;}
.y151{bottom:628.000000pt;}
.y4d{bottom:628.400000pt;}
.y17b{bottom:629.813333pt;}
.y19e{bottom:629.824133pt;}
.y8{bottom:630.194267pt;}
.y241{bottom:630.666667pt;}
.y134{bottom:631.386667pt;}
.y20f{bottom:633.322667pt;}
.y1e7{bottom:640.400000pt;}
.y26c{bottom:642.464133pt;}
.yee{bottom:642.682933pt;}
.y28{bottom:642.714667pt;}
.y70{bottom:644.000000pt;}
.y94{bottom:645.285333pt;}
.y10f{bottom:645.295867pt;}
.y20e{bottom:646.517333pt;}
.y1c2{bottom:646.677333pt;}
.y7{bottom:646.860933pt;}
.yce{bottom:647.599867pt;}
.y150{bottom:647.600000pt;}
.y4c{bottom:648.000000pt;}
.y17a{bottom:649.285333pt;}
.y19d{bottom:649.296133pt;}
.y133{bottom:650.714667pt;}
.y240{bottom:657.333333pt;}
.y26b{bottom:658.864133pt;}
.y20d{bottom:659.712000pt;}
.y1e6{bottom:660.800000pt;}
.yed{bottom:662.810933pt;}
.y27{bottom:662.842667pt;}
.y6f{bottom:664.000000pt;}
.y93{bottom:665.157333pt;}
.y10e{bottom:665.167867pt;}
.y1c1{bottom:666.405333pt;}
.ycd{bottom:667.199867pt;}
.y14f{bottom:667.200000pt;}
.y4b{bottom:667.600000pt;}
.y179{bottom:668.757333pt;}
.y19c{bottom:668.768133pt;}
.y132{bottom:670.042667pt;}
.y23f{bottom:670.666667pt;}
.y20c{bottom:672.906667pt;}
.y26a{bottom:675.264133pt;}
.y1e5{bottom:681.200000pt;}
.yec{bottom:682.938933pt;}
.y26{bottom:682.970667pt;}
.y6e{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.y92{bottom:685.029333pt;}
.y10d{bottom:685.039867pt;}
.y20b{bottom:686.101333pt;}
.y1c0{bottom:686.165333pt;}
.ycc{bottom:686.799867pt;}
.y14e{bottom:686.800000pt;}
.y4a{bottom:687.200000pt;}
.y178{bottom:688.229333pt;}
.y19b{bottom:688.240133pt;}
.y131{bottom:689.370667pt;}
.y23e{bottom:697.333333pt;}
.y20a{bottom:699.296000pt;}
.y1e4{bottom:701.600000pt;}
.y25{bottom:703.098667pt;}
.y6d{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.y91{bottom:704.901333pt;}
.y10c{bottom:704.911867pt;}
.y1bf{bottom:705.893333pt;}
.ycb{bottom:706.400000pt;}
.y49{bottom:706.800000pt;}
.y177{bottom:707.701333pt;}
.y19a{bottom:707.712133pt;}
.yeb{bottom:708.346933pt;}
.y130{bottom:708.698667pt;}
.y23d{bottom:710.666667pt;}
.y209{bottom:712.490667pt;}
.y269{bottom:713.066667pt;}
.y1e3{bottom:722.000000pt;}
.y24{bottom:723.226667pt;}
.y6c{bottom:724.000000pt;}
.y90{bottom:724.773333pt;}
.y10b{bottom:724.783867pt;}
.y1be{bottom:725.621333pt;}
.y208{bottom:725.685333pt;}
.yca{bottom:726.000000pt;}
.y48{bottom:726.400000pt;}
.y176{bottom:727.173333pt;}
.y199{bottom:727.184133pt;}
.y12f{bottom:728.026667pt;}
.y23c{bottom:737.333333pt;}
.y207{bottom:738.880000pt;}
.y1e2{bottom:742.400000pt;}
.y23{bottom:743.354667pt;}
.y6b{bottom:744.000000pt;}
.y8f{bottom:744.645333pt;}
.y10a{bottom:744.655867pt;}
.y1bd{bottom:745.349333pt;}
.yc9{bottom:745.600000pt;}
.y47{bottom:746.000000pt;}
.y175{bottom:746.645333pt;}
.y198{bottom:746.656133pt;}
.y12e{bottom:747.354667pt;}
.y23b{bottom:750.666667pt;}
.y206{bottom:752.074667pt;}
.y268{bottom:752.533333pt;}
.y1e1{bottom:762.800000pt;}
.y22{bottom:763.482667pt;}
.y4{bottom:764.000000pt;}
.y8e{bottom:764.517333pt;}
.y109{bottom:764.527867pt;}
.y1bc{bottom:765.077333pt;}
.yc8{bottom:765.200000pt;}
.y205{bottom:765.269333pt;}
.y46{bottom:765.600000pt;}
.y174{bottom:766.117333pt;}
.y197{bottom:766.128133pt;}
.y12d{bottom:766.682667pt;}
.y23a{bottom:777.333333pt;}
.y204{bottom:778.464000pt;}
.y267{bottom:778.666667pt;}
.y1e0{bottom:783.200000pt;}
.y21{bottom:783.610667pt;}
.y6a{bottom:784.000000pt;}
.y8d{bottom:784.389333pt;}
.yc7{bottom:784.800000pt;}
.y1bb{bottom:784.805333pt;}
.y45{bottom:785.200000pt;}
.y173{bottom:785.589333pt;}
.y12c{bottom:786.010667pt;}
.y3{bottom:790.666667pt;}
.y203{bottom:791.669333pt;}
.y266{bottom:791.733333pt;}
.y1df{bottom:803.600000pt;}
.y20{bottom:803.738667pt;}
.y69{bottom:804.000000pt;}
.y8c{bottom:804.261333pt;}
.yc6{bottom:804.400000pt;}
.y1ba{bottom:804.538667pt;}
.y44{bottom:804.800000pt;}
.y202{bottom:804.864000pt;}
.y172{bottom:805.061333pt;}
.y12b{bottom:805.338667pt;}
.y239{bottom:817.333333pt;}
.y265{bottom:817.866667pt;}
.y201{bottom:823.733333pt;}
.y1f{bottom:823.866667pt;}
.y68{bottom:824.000000pt;}
.y8b{bottom:824.133333pt;}
.y1b9{bottom:824.266667pt;}
.y43{bottom:824.400000pt;}
.y171{bottom:824.533333pt;}
.y12a{bottom:824.666667pt;}
.y238{bottom:830.666667pt;}
.y264{bottom:830.933333pt;}
.ha{height:26.945443pt;}
.h19{height:34.730667pt;}
.h1a{height:35.541333pt;}
.h7{height:35.807292pt;}
.hb{height:36.229167pt;}
.h4{height:37.333333pt;}
.hf{height:38.040625pt;}
.h1{height:45.286458pt;}
.h2{height:46.473958pt;}
.h5{height:54.343750pt;}
.hd{height:54.940017pt;}
.h9{height:58.520625pt;}
.h12{height:58.819292pt;}
.h13{height:58.840625pt;}
.h10{height:58.883292pt;}
.h18{height:59.033158pt;}
.h17{height:59.139292pt;}
.hc{height:59.160092pt;}
.h8{height:59.160625pt;}
.he{height:59.181958pt;}
.h11{height:59.202758pt;}
.h14{height:59.203825pt;}
.h15{height:59.331825pt;}
.h16{height:59.501958pt;}
.h3{height:90.572917pt;}
.h6{height:272.023733pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x4{left:73.259600pt;}
.x3{left:97.515600pt;}
.x6{left:100.000000pt;}
.x7{left:113.247333pt;}
.x2{left:120.000000pt;}
.x8{left:338.362533pt;}
.x9{left:556.250000pt;}
.x5{left:564.791600pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  