
    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_e4d5d0d2fda7dc3b1d94a9c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_03fb711137e4569619e1034d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_1257b4fb589d171266a11e80.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_9a8fe17a63ab7a0f080e7191.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_bd24de1b2836a7288a7325ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_30d295af4e0267e2ba7c630b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_df07423f8a7ddcd17f9e942c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_51e6ed74229ccbf28a4b1243.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-11.757000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v4{vertical-align:22.611000px;}
.v5{vertical-align:28.236000px;}
.v1{vertical-align:30.381600px;}
.lsad{letter-spacing:-0.816000px;}
.ls10{letter-spacing:-0.780000px;}
.lsb5{letter-spacing:-0.432000px;}
.ls6b{letter-spacing:-0.360000px;}
.ls6c{letter-spacing:-0.300000px;}
.lsb1{letter-spacing:-0.288000px;}
.ls9c{letter-spacing:-0.240000px;}
.ls3e{letter-spacing:-0.180000px;}
.ls9f{letter-spacing:-0.144000px;}
.ls63{letter-spacing:-0.120000px;}
.ls9e{letter-spacing:-0.096000px;}
.ls4a{letter-spacing:-0.060000px;}
.ls9d{letter-spacing:-0.048000px;}
.lsf{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004140px;}
.ls2{letter-spacing:0.005076px;}
.ls1{letter-spacing:0.005676px;}
.ls8c{letter-spacing:0.048000px;}
.ls62{letter-spacing:0.049800px;}
.lsd{letter-spacing:0.060000px;}
.ls61{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.120000px;}
.lsa8{letter-spacing:0.144000px;}
.ls65{letter-spacing:0.164400px;}
.ls1c{letter-spacing:0.180000px;}
.ls94{letter-spacing:0.192000px;}
.lse{letter-spacing:0.240000px;}
.ls6d{letter-spacing:0.248400px;}
.ls95{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.300000px;}
.ls66{letter-spacing:0.309000px;}
.ls8e{letter-spacing:0.336000px;}
.lsb4{letter-spacing:0.342600px;}
.ls47{letter-spacing:0.360000px;}
.lsa0{letter-spacing:0.384000px;}
.ls36{letter-spacing:0.420000px;}
.ls49{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.480000px;}
.ls81{letter-spacing:0.528000px;}
.ls2a{letter-spacing:0.540000px;}
.ls84{letter-spacing:0.576000px;}
.ls30{letter-spacing:0.600000px;}
.ls8b{letter-spacing:0.624000px;}
.ls2f{letter-spacing:0.660000px;}
.ls85{letter-spacing:0.672000px;}
.ls24{letter-spacing:0.720000px;}
.ls96{letter-spacing:0.768000px;}
.lsa{letter-spacing:0.780000px;}
.ls7a{letter-spacing:0.816000px;}
.ls38{letter-spacing:0.840000px;}
.ls7f{letter-spacing:0.864000px;}
.ls2d{letter-spacing:0.900000px;}
.ls88{letter-spacing:0.912000px;}
.ls17{letter-spacing:0.960000px;}
.ls9a{letter-spacing:1.008000px;}
.ls7{letter-spacing:1.020000px;}
.ls92{letter-spacing:1.056000px;}
.ls35{letter-spacing:1.080000px;}
.ls87{letter-spacing:1.104000px;}
.ls9{letter-spacing:1.140000px;}
.ls97{letter-spacing:1.152000px;}
.ls68{letter-spacing:1.200000px;}
.lsa7{letter-spacing:1.248000px;}
.ls11{letter-spacing:1.260000px;}
.ls7c{letter-spacing:1.296000px;}
.ls26{letter-spacing:1.320000px;}
.lsb0{letter-spacing:1.344000px;}
.ls6{letter-spacing:1.380000px;}
.ls7e{letter-spacing:1.392000px;}
.ls3b{letter-spacing:1.440000px;}
.lsac{letter-spacing:1.488000px;}
.ls28{letter-spacing:1.500000px;}
.ls89{letter-spacing:1.536000px;}
.ls22{letter-spacing:1.560000px;}
.ls83{letter-spacing:1.584000px;}
.ls64{letter-spacing:1.620000px;}
.ls99{letter-spacing:1.632000px;}
.ls3c{letter-spacing:1.680000px;}
.ls98{letter-spacing:1.728000px;}
.ls16{letter-spacing:1.740000px;}
.ls8d{letter-spacing:1.776000px;}
.ls15{letter-spacing:1.800000px;}
.ls8a{letter-spacing:1.824000px;}
.ls13{letter-spacing:1.860000px;}
.lsa3{letter-spacing:1.872000px;}
.ls31{letter-spacing:1.920000px;}
.lsaf{letter-spacing:1.968000px;}
.ls18{letter-spacing:1.980000px;}
.ls7d{letter-spacing:2.016000px;}
.ls19{letter-spacing:2.040000px;}
.lsae{letter-spacing:2.064000px;}
.ls27{letter-spacing:2.100000px;}
.ls7b{letter-spacing:2.112000px;}
.ls25{letter-spacing:2.160000px;}
.ls86{letter-spacing:2.208000px;}
.lsc{letter-spacing:2.220000px;}
.lsa1{letter-spacing:2.256000px;}
.ls8{letter-spacing:2.280000px;}
.lsa4{letter-spacing:2.304000px;}
.ls1d{letter-spacing:2.340000px;}
.lsab{letter-spacing:2.352000px;}
.lsb{letter-spacing:2.400000px;}
.ls4d{letter-spacing:2.460000px;}
.lsa5{letter-spacing:2.496000px;}
.ls33{letter-spacing:2.520000px;}
.ls82{letter-spacing:2.544000px;}
.ls32{letter-spacing:2.580000px;}
.ls90{letter-spacing:2.592000px;}
.ls3d{letter-spacing:2.640000px;}
.ls4c{letter-spacing:2.700000px;}
.ls93{letter-spacing:2.736000px;}
.ls23{letter-spacing:2.760000px;}
.ls91{letter-spacing:2.784000px;}
.ls2c{letter-spacing:2.820000px;}
.ls14{letter-spacing:2.880000px;}
.ls4b{letter-spacing:2.940000px;}
.ls9b{letter-spacing:2.976000px;}
.ls12{letter-spacing:3.000000px;}
.ls4e{letter-spacing:3.060000px;}
.ls21{letter-spacing:3.120000px;}
.ls20{letter-spacing:3.180000px;}
.ls34{letter-spacing:3.240000px;}
.ls39{letter-spacing:3.300000px;}
.ls73{letter-spacing:3.360000px;}
.lsa9{letter-spacing:3.408000px;}
.ls2b{letter-spacing:3.420000px;}
.ls3a{letter-spacing:3.480000px;}
.ls50{letter-spacing:3.540000px;}
.ls45{letter-spacing:3.600000px;}
.ls46{letter-spacing:3.660000px;}
.ls6a{letter-spacing:3.720000px;}
.ls69{letter-spacing:3.780000px;}
.ls8f{letter-spacing:3.792000px;}
.ls74{letter-spacing:3.840000px;}
.ls42{letter-spacing:3.900000px;}
.ls80{letter-spacing:3.984000px;}
.ls70{letter-spacing:4.020000px;}
.ls6f{letter-spacing:4.080000px;}
.lsa6{letter-spacing:4.320000px;}
.ls75{letter-spacing:4.380000px;}
.ls6e{letter-spacing:4.440000px;}
.lsaa{letter-spacing:4.560000px;}
.ls71{letter-spacing:4.620000px;}
.ls37{letter-spacing:4.680000px;}
.ls78{letter-spacing:4.800000px;}
.ls5{letter-spacing:4.920000px;}
.lsa2{letter-spacing:4.944000px;}
.lsb2{letter-spacing:4.980000px;}
.ls4f{letter-spacing:5.160000px;}
.ls1f{letter-spacing:5.220000px;}
.ls40{letter-spacing:5.280000px;}
.ls48{letter-spacing:5.340000px;}
.ls2e{letter-spacing:5.460000px;}
.lsb3{letter-spacing:5.580000px;}
.ls72{letter-spacing:5.760000px;}
.ls3f{letter-spacing:5.820000px;}
.ls67{letter-spacing:5.940000px;}
.ls79{letter-spacing:6.120000px;}
.ls29{letter-spacing:6.420000px;}
.ls44{letter-spacing:6.720000px;}
.ls77{letter-spacing:7.020000px;}
.ls76{letter-spacing:7.980000px;}
.ls43{letter-spacing:8.880000px;}
.ls41{letter-spacing:10.260000px;}
.ls0{letter-spacing:59.532876px;}
.ls3{letter-spacing:59.533476px;}
.ls52{letter-spacing:672.258000px;}
.ls53{letter-spacing:689.566800px;}
.ls60{letter-spacing:706.804800px;}
.ls54{letter-spacing:764.953800px;}
.ls5c{letter-spacing:773.168400px;}
.ls5f{letter-spacing:777.446400px;}
.ls58{letter-spacing:779.508000px;}
.ls56{letter-spacing:799.453200px;}
.ls57{letter-spacing:814.113600px;}
.ls55{letter-spacing:814.933800px;}
.ls5b{letter-spacing:817.160400px;}
.ls5a{letter-spacing:899.145000px;}
.ls59{letter-spacing:943.113600px;}
.ls51{letter-spacing:948.528000px;}
.ls5e{letter-spacing:1047.762000px;}
.ls5d{letter-spacing:1052.425800px;}
.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;}
}
.ws28{word-spacing:-20.280000px;}
.ws89{word-spacing:-19.620000px;}
.ws7e{word-spacing:-19.440000px;}
.ws29{word-spacing:-18.900000px;}
.wsa{word-spacing:-17.880000px;}
.wsb{word-spacing:-17.820000px;}
.wsd{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.wsc8{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.500000px;}
.ws2a{word-spacing:-16.140000px;}
.wse{word-spacing:-16.080000px;}
.wsc{word-spacing:-16.020000px;}
.ws7d{word-spacing:-15.420000px;}
.ws6a{word-spacing:-15.180000px;}
.ws6b{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.000000px;}
.wsa0{word-spacing:-14.976000px;}
.ws99{word-spacing:-14.784000px;}
.wsdb{word-spacing:-14.544000px;}
.ws98{word-spacing:-14.208000px;}
.wsc2{word-spacing:-14.016000px;}
.ws9e{word-spacing:-13.824000px;}
.wsde{word-spacing:-13.680000px;}
.ws9f{word-spacing:-13.632000px;}
.ws8b{word-spacing:-13.440000px;}
.wsc0{word-spacing:-13.392000px;}
.ws3{word-spacing:-13.344000px;}
.ws8a{word-spacing:-13.296000px;}
.wsdf{word-spacing:-13.200000px;}
.wsdd{word-spacing:-13.152000px;}
.wsc3{word-spacing:-13.104000px;}
.ws9b{word-spacing:-12.912000px;}
.wsc4{word-spacing:-12.768000px;}
.wsd8{word-spacing:-12.672000px;}
.wsdc{word-spacing:-12.624000px;}
.wsc7{word-spacing:-12.576000px;}
.ws2{word-spacing:-12.510000px;}
.wsd9{word-spacing:-12.480000px;}
.ws9a{word-spacing:-12.288000px;}
.wsda{word-spacing:-12.240000px;}
.ws9d{word-spacing:-12.192000px;}
.wsc6{word-spacing:-12.096000px;}
.wsc5{word-spacing:-12.048000px;}
.ws4d{word-spacing:-12.000000px;}
.ws9c{word-spacing:-11.856000px;}
.wsc1{word-spacing:-11.184000px;}
.ws0{word-spacing:-10.210662px;}
.ws4a{word-spacing:-8.745000px;}
.ws8c{word-spacing:-7.020000px;}
.ws4c{word-spacing:-6.996000px;}
.ws2c{word-spacing:-5.280000px;}
.ws19{word-spacing:-5.220000px;}
.wsd5{word-spacing:-4.560000px;}
.ws86{word-spacing:-4.440000px;}
.wsd1{word-spacing:-4.320000px;}
.ws88{word-spacing:-4.080000px;}
.ws2d{word-spacing:-3.900000px;}
.wse4{word-spacing:-3.600000px;}
.wsd2{word-spacing:-3.168000px;}
.ws6d{word-spacing:-3.120000px;}
.ws45{word-spacing:-3.000000px;}
.ws5{word-spacing:-2.886000px;}
.ws1d{word-spacing:-2.880000px;}
.ws62{word-spacing:-2.820000px;}
.wsac{word-spacing:-2.784000px;}
.wsaf{word-spacing:-2.736000px;}
.ws85{word-spacing:-2.640000px;}
.wse5{word-spacing:-2.544000px;}
.wscf{word-spacing:-2.496000px;}
.ws3a{word-spacing:-2.460000px;}
.ws63{word-spacing:-2.400000px;}
.ws16{word-spacing:-2.340000px;}
.wsce{word-spacing:-2.304000px;}
.wse2{word-spacing:-2.256000px;}
.ws2b{word-spacing:-2.220000px;}
.ws90{word-spacing:-2.112000px;}
.ws65{word-spacing:-2.100000px;}
.wse6{word-spacing:-2.064000px;}
.wsee{word-spacing:-2.040000px;}
.ws92{word-spacing:-2.016000px;}
.ws57{word-spacing:-1.980000px;}
.wscc{word-spacing:-1.920000px;}
.wsca{word-spacing:-1.872000px;}
.wsa7{word-spacing:-1.824000px;}
.ws3d{word-spacing:-1.800000px;}
.wsd0{word-spacing:-1.776000px;}
.ws2f{word-spacing:-1.740000px;}
.ws93{word-spacing:-1.728000px;}
.ws44{word-spacing:-1.680000px;}
.wseb{word-spacing:-1.632000px;}
.ws60{word-spacing:-1.620000px;}
.ws33{word-spacing:-1.560000px;}
.wsbc{word-spacing:-1.536000px;}
.ws1c{word-spacing:-1.500000px;}
.ws39{word-spacing:-1.440000px;}
.ws94{word-spacing:-1.392000px;}
.ws13{word-spacing:-1.380000px;}
.wsec{word-spacing:-1.344000px;}
.ws3e{word-spacing:-1.320000px;}
.wscd{word-spacing:-1.296000px;}
.ws5e{word-spacing:-1.260000px;}
.wsea{word-spacing:-1.248000px;}
.ws6f{word-spacing:-1.200000px;}
.wsbb{word-spacing:-1.152000px;}
.ws52{word-spacing:-1.140000px;}
.wscb{word-spacing:-1.104000px;}
.ws23{word-spacing:-1.080000px;}
.wsae{word-spacing:-1.056000px;}
.wsbd{word-spacing:-1.008000px;}
.ws14{word-spacing:-0.960000px;}
.wsb2{word-spacing:-0.912000px;}
.ws58{word-spacing:-0.900000px;}
.ws96{word-spacing:-0.864000px;}
.ws7a{word-spacing:-0.840000px;}
.ws71{word-spacing:-0.780000px;}
.wsb6{word-spacing:-0.768000px;}
.ws34{word-spacing:-0.720000px;}
.wsa2{word-spacing:-0.672000px;}
.ws20{word-spacing:-0.660000px;}
.wsba{word-spacing:-0.624000px;}
.ws21{word-spacing:-0.600000px;}
.wsd4{word-spacing:-0.576000px;}
.ws56{word-spacing:-0.540000px;}
.ws97{word-spacing:-0.528000px;}
.ws1e{word-spacing:-0.480000px;}
.ws37{word-spacing:-0.432000px;}
.ws3c{word-spacing:-0.420000px;}
.wsc9{word-spacing:-0.384000px;}
.ws43{word-spacing:-0.360000px;}
.wsd3{word-spacing:-0.336000px;}
.ws5f{word-spacing:-0.300000px;}
.wsb1{word-spacing:-0.288000px;}
.ws8{word-spacing:-0.240000px;}
.wsb3{word-spacing:-0.192000px;}
.ws3b{word-spacing:-0.180000px;}
.ws18{word-spacing:-0.120000px;}
.ws59{word-spacing:-0.096000px;}
.ws1f{word-spacing:-0.060000px;}
.wsa9{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.wsa6{word-spacing:0.048000px;}
.ws1a{word-spacing:0.060000px;}
.wsb0{word-spacing:0.096000px;}
.ws55{word-spacing:0.120000px;}
.wsb5{word-spacing:0.144000px;}
.wsa4{word-spacing:0.240000px;}
.ws77{word-spacing:0.300000px;}
.wse0{word-spacing:0.336000px;}
.ws83{word-spacing:0.360000px;}
.wse9{word-spacing:0.384000px;}
.ws22{word-spacing:0.420000px;}
.ws7c{word-spacing:0.480000px;}
.wsbe{word-spacing:0.528000px;}
.wsa8{word-spacing:0.576000px;}
.ws5c{word-spacing:0.660000px;}
.wsed{word-spacing:0.672000px;}
.ws48{word-spacing:0.720000px;}
.ws11{word-spacing:0.840000px;}
.ws38{word-spacing:0.864000px;}
.ws53{word-spacing:0.900000px;}
.ws82{word-spacing:0.960000px;}
.ws84{word-spacing:1.020000px;}
.ws74{word-spacing:1.080000px;}
.wsaa{word-spacing:1.200000px;}
.ws1b{word-spacing:1.260000px;}
.wsab{word-spacing:1.296000px;}
.ws3f{word-spacing:1.320000px;}
.wsb4{word-spacing:1.344000px;}
.ws17{word-spacing:1.380000px;}
.ws64{word-spacing:1.392000px;}
.wse3{word-spacing:1.488000px;}
.wsd6{word-spacing:1.536000px;}
.ws40{word-spacing:1.560000px;}
.ws5d{word-spacing:1.620000px;}
.wsa5{word-spacing:1.680000px;}
.ws81{word-spacing:1.740000px;}
.ws35{word-spacing:1.800000px;}
.wse8{word-spacing:1.824000px;}
.ws42{word-spacing:1.860000px;}
.wse7{word-spacing:1.872000px;}
.wse1{word-spacing:1.968000px;}
.wsf0{word-spacing:1.980000px;}
.ws36{word-spacing:2.016000px;}
.ws68{word-spacing:2.100000px;}
.wsa1{word-spacing:2.160000px;}
.ws70{word-spacing:2.220000px;}
.ws25{word-spacing:2.280000px;}
.ws67{word-spacing:2.340000px;}
.wsb9{word-spacing:2.352000px;}
.ws72{word-spacing:2.400000px;}
.wsbf{word-spacing:2.448000px;}
.ws7b{word-spacing:2.460000px;}
.wsb7{word-spacing:2.496000px;}
.ws79{word-spacing:2.520000px;}
.ws10{word-spacing:2.580000px;}
.ws30{word-spacing:2.700000px;}
.wsef{word-spacing:2.760000px;}
.ws49{word-spacing:2.820000px;}
.wsa3{word-spacing:2.832000px;}
.ws76{word-spacing:2.880000px;}
.ws6e{word-spacing:3.000000px;}
.ws41{word-spacing:3.060000px;}
.wsd7{word-spacing:3.120000px;}
.ws15{word-spacing:3.240000px;}
.ws69{word-spacing:3.264000px;}
.ws2e{word-spacing:3.300000px;}
.ws95{word-spacing:3.408000px;}
.ws75{word-spacing:3.420000px;}
.wsad{word-spacing:3.456000px;}
.ws12{word-spacing:3.480000px;}
.ws27{word-spacing:3.540000px;}
.ws78{word-spacing:3.660000px;}
.ws32{word-spacing:3.720000px;}
.ws31{word-spacing:3.840000px;}
.wsb8{word-spacing:3.888000px;}
.ws24{word-spacing:3.900000px;}
.ws91{word-spacing:3.936000px;}
.ws47{word-spacing:3.960000px;}
.ws8f{word-spacing:3.984000px;}
.ws73{word-spacing:4.020000px;}
.ws46{word-spacing:4.080000px;}
.ws80{word-spacing:4.260000px;}
.ws6c{word-spacing:4.380000px;}
.ws61{word-spacing:4.500000px;}
.ws7f{word-spacing:4.620000px;}
.ws66{word-spacing:4.740000px;}
.ws54{word-spacing:4.800000px;}
.ws26{word-spacing:4.860000px;}
.ws7{word-spacing:4.920000px;}
.ws6{word-spacing:4.980000px;}
.ws8d{word-spacing:5.460000px;}
.ws8e{word-spacing:5.520000px;}
.ws87{word-spacing:9.420000px;}
.ws4b{word-spacing:216.240000px;}
.ws4f{word-spacing:255.552000px;}
.ws4e{word-spacing:496.752000px;}
.ws51{word-spacing:500.016000px;}
.ws50{word-spacing:716.640000px;}
.ws5b{word-spacing:907.108320px;}
.ws5a{word-spacing:1342.037400px;}
._c{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._f{margin-left:-9.960000px;}
._7{margin-left:-6.600000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.215000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._4{width:1.056000px;}
._9{width:2.370000px;}
._b{width:4.140000px;}
._6{width:5.220000px;}
._8{width:6.360000px;}
._a{width:8.160000px;}
._22{width:9.420000px;}
._d{width:10.560000px;}
._23{width:12.000000px;}
._2{width:59.309628px;}
._1f{width:258.192000px;}
._12{width:267.504000px;}
._14{width:366.096000px;}
._15{width:383.376000px;}
._1d{width:449.376000px;}
._16{width:458.784000px;}
._19{width:485.040000px;}
._1c{width:494.790000px;}
._17{width:505.008000px;}
._18{width:519.648000px;}
._1b{width:575.376000px;}
._20{width:576.624000px;}
._1a{width:631.344000px;}
._13{width:642.336000px;}
._1e{width:723.984000px;}
._10{width:753.783000px;}
._21{width:918.670320px;}
._11{width:1040.784000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fsc{font-size:32.640000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y22b{bottom:80.263500px;}
.y10e{bottom:82.861050px;}
.y92{bottom:83.224350px;}
.y12d{bottom:83.470650px;}
.y13b{bottom:83.472000px;}
.y14a{bottom:83.673000px;}
.y65{bottom:83.770350px;}
.ye1{bottom:83.785350px;}
.y155{bottom:83.912100px;}
.y18b{bottom:83.920350px;}
.y186{bottom:83.927100px;}
.yab{bottom:84.070350px;}
.y2c{bottom:88.026750px;}
.y1e9{bottom:92.121900px;}
.y229{bottom:95.263500px;}
.y91{bottom:98.968350px;}
.y10d{bottom:99.361050px;}
.y149{bottom:99.417000px;}
.y1b6{bottom:101.628600px;}
.y64{bottom:101.770350px;}
.ye0{bottom:101.785350px;}
.y154{bottom:101.912100px;}
.y18a{bottom:101.920350px;}
.y185{bottom:101.927100px;}
.yaa{bottom:102.070350px;}
.y2b{bottom:103.023000px;}
.y1e8{bottom:107.121900px;}
.y228{bottom:110.263500px;}
.y90{bottom:114.712350px;}
.y1b5{bottom:119.628600px;}
.y63{bottom:119.770350px;}
.ydf{bottom:119.785350px;}
.y153{bottom:119.912100px;}
.y189{bottom:119.920350px;}
.y184{bottom:119.927100px;}
.ya9{bottom:120.070350px;}
.y1e7{bottom:122.121900px;}
.y10c{bottom:124.867350px;}
.y227{bottom:125.263500px;}
.y8f{bottom:130.456350px;}
.y1e6{bottom:137.121900px;}
.y1b4{bottom:137.628600px;}
.y62{bottom:137.770350px;}
.yde{bottom:137.785350px;}
.y152{bottom:137.912100px;}
.y188{bottom:137.920350px;}
.y183{bottom:137.927100px;}
.ya8{bottom:138.070350px;}
.y226{bottom:140.263500px;}
.y10b{bottom:141.123300px;}
.y1e5{bottom:152.121900px;}
.y225{bottom:155.263500px;}
.y1b3{bottom:155.628600px;}
.y61{bottom:155.770350px;}
.ydd{bottom:155.785350px;}
.y151{bottom:155.920350px;}
.y182{bottom:155.927100px;}
.y10a{bottom:157.375350px;}
.y1e4{bottom:167.121900px;}
.y224{bottom:170.263500px;}
.y28{bottom:171.644400px;}
.y109{bottom:173.627250px;}
.y1b2{bottom:173.628600px;}
.ya7{bottom:173.665350px;}
.y60{bottom:173.770350px;}
.ydc{bottom:173.785350px;}
.y150{bottom:173.920350px;}
.y181{bottom:173.927100px;}
.y1e3{bottom:182.121900px;}
.y223{bottom:185.263500px;}
.y27{bottom:189.644400px;}
.y108{bottom:189.879300px;}
.y1b1{bottom:191.223600px;}
.y5f{bottom:191.770350px;}
.ydb{bottom:191.785350px;}
.y14f{bottom:191.920350px;}
.y180{bottom:191.927100px;}
.y1e2{bottom:197.121900px;}
.y222{bottom:200.263500px;}
.y107{bottom:206.131200px;}
.y26{bottom:207.644400px;}
.y5e{bottom:209.770350px;}
.yda{bottom:209.785350px;}
.ya6{bottom:209.920350px;}
.y17f{bottom:209.927100px;}
.y1e1{bottom:212.121900px;}
.y221{bottom:215.263500px;}
.y106{bottom:222.383250px;}
.y25{bottom:225.644400px;}
.y1e0{bottom:227.121900px;}
.y1b0{bottom:227.628600px;}
.y5d{bottom:227.770350px;}
.yd9{bottom:227.785350px;}
.ya5{bottom:227.920350px;}
.y17e{bottom:227.927100px;}
.y220{bottom:230.263500px;}
.y105{bottom:238.635150px;}
.y1df{bottom:242.121900px;}
.y24{bottom:243.644400px;}
.y21f{bottom:245.263500px;}
.y1af{bottom:245.628600px;}
.y5c{bottom:245.770350px;}
.y23e{bottom:245.772600px;}
.yd8{bottom:245.785350px;}
.ya4{bottom:245.920350px;}
.y17d{bottom:245.927100px;}
.y104{bottom:254.887050px;}
.y1de{bottom:257.121900px;}
.y21e{bottom:260.263500px;}
.y2a{bottom:261.644400px;}
.y1ae{bottom:263.628600px;}
.y5b{bottom:263.770350px;}
.yd7{bottom:263.785350px;}
.ya3{bottom:263.920350px;}
.y17c{bottom:263.927100px;}
.y12f{bottom:267.045300px;}
.y103{bottom:271.139100px;}
.y1dd{bottom:272.121900px;}
.y21d{bottom:275.263500px;}
.y23{bottom:279.241650px;}
.y29{bottom:279.644400px;}
.y1ad{bottom:281.628600px;}
.y5a{bottom:281.770350px;}
.y23d{bottom:281.772600px;}
.yd6{bottom:281.785350px;}
.ya2{bottom:281.920350px;}
.y17b{bottom:281.927100px;}
.y1dc{bottom:287.121900px;}
.y102{bottom:287.391000px;}
.y21c{bottom:290.263500px;}
.y1ac{bottom:299.628600px;}
.y59{bottom:299.770350px;}
.y23c{bottom:299.772600px;}
.yd5{bottom:299.785350px;}
.ya1{bottom:299.920350px;}
.y17a{bottom:299.927100px;}
.y1db{bottom:302.121900px;}
.y101{bottom:303.643050px;}
.y21b{bottom:305.263500px;}
.y1da{bottom:317.121900px;}
.y1ab{bottom:317.628600px;}
.y58{bottom:317.770350px;}
.yd4{bottom:317.785350px;}
.ya0{bottom:317.920350px;}
.y179{bottom:317.927100px;}
.y100{bottom:319.894950px;}
.y21a{bottom:320.263500px;}
.y12c{bottom:330.898650px;}
.y1d9{bottom:332.121900px;}
.y219{bottom:335.263500px;}
.y1aa{bottom:335.628600px;}
.y57{bottom:335.770350px;}
.y23b{bottom:335.772600px;}
.yd3{bottom:335.785350px;}
.y9f{bottom:335.920350px;}
.y178{bottom:335.927100px;}
.yff{bottom:336.147000px;}
.y1d8{bottom:347.121900px;}
.y218{bottom:350.263500px;}
.yfe{bottom:352.398900px;}
.y22{bottom:353.004900px;}
.y1a9{bottom:353.628600px;}
.y56{bottom:353.770350px;}
.y23a{bottom:353.772600px;}
.yd2{bottom:353.785350px;}
.y9e{bottom:353.920350px;}
.y177{bottom:353.927100px;}
.y1d7{bottom:362.121900px;}
.y217{bottom:365.263500px;}
.yfd{bottom:368.646750px;}
.y21{bottom:371.014200px;}
.y1a8{bottom:371.628600px;}
.y55{bottom:371.770350px;}
.yd1{bottom:371.785350px;}
.y9d{bottom:371.920350px;}
.y176{bottom:371.927100px;}
.y1d6{bottom:377.121900px;}
.y216{bottom:380.263500px;}
.y1a7{bottom:389.628600px;}
.y54{bottom:389.770350px;}
.y239{bottom:389.772600px;}
.yd0{bottom:389.785350px;}
.y9c{bottom:389.920350px;}
.y175{bottom:389.927100px;}
.y1d5{bottom:392.121900px;}
.y215{bottom:395.263500px;}
.y20{bottom:398.359200px;}
.yfc{bottom:400.158750px;}
.y1d4{bottom:407.121900px;}
.y1a6{bottom:407.628600px;}
.y53{bottom:407.770350px;}
.y238{bottom:407.772600px;}
.ycf{bottom:407.785350px;}
.y9b{bottom:407.920350px;}
.y174{bottom:407.927100px;}
.y214{bottom:410.263500px;}
.y1f{bottom:416.359200px;}
.y1d3{bottom:422.121900px;}
.y213{bottom:425.263500px;}
.y1a5{bottom:425.628600px;}
.y52{bottom:425.770350px;}
.y237{bottom:425.772600px;}
.yce{bottom:425.785350px;}
.y9a{bottom:425.920350px;}
.y173{bottom:425.927100px;}
.y1e{bottom:434.359200px;}
.yfb{bottom:435.055350px;}
.y1d2{bottom:437.121900px;}
.y212{bottom:440.263500px;}
.y1a4{bottom:443.628600px;}
.y51{bottom:443.770350px;}
.ycd{bottom:443.785350px;}
.y99{bottom:443.920350px;}
.y172{bottom:443.927100px;}
.y1d1{bottom:452.121900px;}
.y1d{bottom:452.359200px;}
.y211{bottom:455.263500px;}
.y1a3{bottom:461.628600px;}
.y50{bottom:461.770350px;}
.y236{bottom:461.772600px;}
.ycc{bottom:461.785350px;}
.y98{bottom:461.920350px;}
.y171{bottom:461.927100px;}
.y1d0{bottom:467.121900px;}
.y210{bottom:470.263500px;}
.y1c{bottom:470.359200px;}
.y1a2{bottom:479.628600px;}
.y4f{bottom:479.770350px;}
.y235{bottom:479.772600px;}
.ycb{bottom:479.785350px;}
.y97{bottom:479.920350px;}
.y170{bottom:479.927100px;}
.yf5{bottom:480.070350px;}
.y1cf{bottom:482.121900px;}
.y20f{bottom:485.263500px;}
.y1b{bottom:488.359200px;}
.y1a1{bottom:497.628600px;}
.y4e{bottom:497.770350px;}
.yca{bottom:497.785350px;}
.y96{bottom:497.920350px;}
.y16f{bottom:497.927100px;}
.yf4{bottom:498.070350px;}
.y20e{bottom:500.263500px;}
.y1a{bottom:506.359200px;}
.y1ce{bottom:515.238600px;}
.y20d{bottom:515.263500px;}
.y1a0{bottom:515.628600px;}
.y4d{bottom:515.770350px;}
.y234{bottom:515.772600px;}
.yc9{bottom:515.785350px;}
.y95{bottom:515.920350px;}
.y16e{bottom:515.927100px;}
.yf3{bottom:516.070350px;}
.y19{bottom:524.359200px;}
.y20c{bottom:530.263500px;}
.y19f{bottom:533.628600px;}
.y4c{bottom:533.770350px;}
.y233{bottom:533.772600px;}
.yc8{bottom:533.785350px;}
.y94{bottom:533.920350px;}
.y16d{bottom:533.927100px;}
.y18{bottom:542.359200px;}
.y20b{bottom:545.263500px;}
.y19e{bottom:551.628600px;}
.yf2{bottom:551.665350px;}
.y4b{bottom:551.770350px;}
.y232{bottom:551.772600px;}
.yc7{bottom:551.785350px;}
.yfa{bottom:551.920350px;}
.y16c{bottom:551.927100px;}
.y20a{bottom:560.263500px;}
.y17{bottom:560.359200px;}
.y93{bottom:569.515350px;}
.y19d{bottom:569.628600px;}
.y4a{bottom:569.770350px;}
.y231{bottom:569.772600px;}
.y1cd{bottom:569.778600px;}
.yc6{bottom:569.785350px;}
.yf9{bottom:569.920350px;}
.y16b{bottom:569.927100px;}
.y209{bottom:575.263500px;}
.y16{bottom:578.359200px;}
.y1cc{bottom:587.373600px;}
.yf1{bottom:587.530350px;}
.y19c{bottom:587.628600px;}
.y49{bottom:587.770350px;}
.y230{bottom:587.772600px;}
.yc5{bottom:587.785350px;}
.yf8{bottom:587.920350px;}
.y16a{bottom:587.927100px;}
.y208{bottom:590.263500px;}
.y12e{bottom:592.318650px;}
.y15{bottom:596.359200px;}
.y207{bottom:605.263500px;}
.y19b{bottom:605.628600px;}
.y48{bottom:605.770350px;}
.y22f{bottom:605.772600px;}
.yc4{bottom:605.785350px;}
.yf7{bottom:605.920350px;}
.y169{bottom:605.927100px;}
.y14{bottom:614.359200px;}
.y206{bottom:620.263500px;}
.y1cb{bottom:623.373600px;}
.y187{bottom:623.515350px;}
.y19a{bottom:623.628600px;}
.y47{bottom:623.770350px;}
.y22e{bottom:623.772600px;}
.yc3{bottom:623.785350px;}
.y14e{bottom:623.920350px;}
.y168{bottom:623.927100px;}
.y205{bottom:635.263500px;}
.yf6{bottom:641.515350px;}
.y199{bottom:641.628600px;}
.y46{bottom:641.770350px;}
.y22d{bottom:641.772600px;}
.yc2{bottom:641.785350px;}
.y14d{bottom:641.920350px;}
.y167{bottom:641.927100px;}
.yf0{bottom:642.070350px;}
.y204{bottom:650.263500px;}
.y13{bottom:659.517300px;}
.y198{bottom:659.628600px;}
.y45{bottom:659.770350px;}
.y22c{bottom:659.772600px;}
.y1ca{bottom:659.778600px;}
.yc1{bottom:659.785350px;}
.y13a{bottom:659.920350px;}
.y166{bottom:659.927100px;}
.yef{bottom:660.070350px;}
.y203{bottom:665.263500px;}
.y13d{bottom:667.042950px;}
.y12{bottom:671.968050px;}
.y197{bottom:677.628600px;}
.y44{bottom:677.770350px;}
.y8e{bottom:677.772600px;}
.y1c9{bottom:677.778600px;}
.yc0{bottom:677.785350px;}
.y79{bottom:677.907600px;}
.y119{bottom:677.912100px;}
.y139{bottom:677.920350px;}
.y165{bottom:677.927100px;}
.yee{bottom:678.070350px;}
.y202{bottom:680.263500px;}
.y13c{bottom:682.786950px;}
.y201{bottom:695.263500px;}
.y196{bottom:695.628600px;}
.y43{bottom:695.770350px;}
.y8d{bottom:695.772600px;}
.y1c8{bottom:695.778600px;}
.ybf{bottom:695.785350px;}
.y78{bottom:695.907600px;}
.y118{bottom:695.912100px;}
.y138{bottom:695.920350px;}
.y164{bottom:695.927100px;}
.yed{bottom:696.070350px;}
.y14b{bottom:707.121900px;}
.y11{bottom:709.108950px;}
.y200{bottom:710.263500px;}
.y195{bottom:713.628600px;}
.y42{bottom:713.770350px;}
.y8c{bottom:713.772600px;}
.y1c7{bottom:713.778600px;}
.ybe{bottom:713.785350px;}
.y77{bottom:713.907600px;}
.y117{bottom:713.912100px;}
.y137{bottom:713.920350px;}
.y163{bottom:713.927100px;}
.yec{bottom:714.070350px;}
.y10{bottom:722.608950px;}
.y1ff{bottom:725.263500px;}
.y194{bottom:731.635350px;}
.y41{bottom:731.770350px;}
.y8b{bottom:731.772600px;}
.y12b{bottom:731.777100px;}
.y1c6{bottom:731.778600px;}
.ybd{bottom:731.785350px;}
.y76{bottom:731.907600px;}
.y116{bottom:731.912100px;}
.y136{bottom:731.920350px;}
.y162{bottom:731.927100px;}
.yeb{bottom:732.070350px;}
.yf{bottom:736.108950px;}
.y1fe{bottom:740.263500px;}
.ye{bottom:749.608950px;}
.y193{bottom:749.635350px;}
.y148{bottom:749.637600px;}
.y40{bottom:749.770350px;}
.y8a{bottom:749.772600px;}
.y12a{bottom:749.777100px;}
.y1c5{bottom:749.778600px;}
.ybc{bottom:749.785350px;}
.y75{bottom:749.907600px;}
.y115{bottom:749.912100px;}
.y135{bottom:749.920350px;}
.y161{bottom:749.927100px;}
.yea{bottom:750.070350px;}
.y1fd{bottom:755.263500px;}
.yd{bottom:757.683600px;}
.y192{bottom:767.635350px;}
.y147{bottom:767.637600px;}
.y3f{bottom:767.770350px;}
.y89{bottom:767.772600px;}
.y129{bottom:767.777100px;}
.y1c4{bottom:767.778600px;}
.ybb{bottom:767.785350px;}
.y74{bottom:767.907600px;}
.y114{bottom:767.912100px;}
.y134{bottom:767.920350px;}
.y160{bottom:767.927100px;}
.ye9{bottom:768.070350px;}
.y1fc{bottom:770.263500px;}
.yc{bottom:771.183600px;}
.yb{bottom:784.683600px;}
.y1fb{bottom:785.263500px;}
.y191{bottom:785.635350px;}
.y146{bottom:785.637600px;}
.y3e{bottom:785.770350px;}
.y88{bottom:785.772600px;}
.y128{bottom:785.777100px;}
.y1c3{bottom:785.778600px;}
.yba{bottom:785.785350px;}
.y73{bottom:785.907600px;}
.y113{bottom:785.912100px;}
.y133{bottom:785.920350px;}
.y15f{bottom:785.927100px;}
.ya{bottom:798.183600px;}
.y1fa{bottom:800.263500px;}
.y190{bottom:803.635350px;}
.y145{bottom:803.637600px;}
.ye8{bottom:803.665350px;}
.y3d{bottom:803.770350px;}
.y87{bottom:803.772600px;}
.y127{bottom:803.777100px;}
.y1c2{bottom:803.778600px;}
.yb9{bottom:803.785350px;}
.y72{bottom:803.907600px;}
.y112{bottom:803.920350px;}
.y15e{bottom:803.927100px;}
.y1f9{bottom:815.263500px;}
.y9{bottom:817.108950px;}
.y1c1{bottom:821.373600px;}
.y18f{bottom:821.635350px;}
.y144{bottom:821.637600px;}
.y3c{bottom:821.770350px;}
.y86{bottom:821.772600px;}
.y126{bottom:821.777100px;}
.yb8{bottom:821.785350px;}
.y71{bottom:821.907600px;}
.y111{bottom:821.920350px;}
.y15d{bottom:821.927100px;}
.y1f8{bottom:830.263500px;}
.y18e{bottom:839.635350px;}
.y143{bottom:839.637600px;}
.y3b{bottom:839.770350px;}
.y85{bottom:839.772600px;}
.y125{bottom:839.777100px;}
.yb7{bottom:839.785350px;}
.y70{bottom:839.907600px;}
.ye7{bottom:839.920350px;}
.y15c{bottom:839.927100px;}
.y1f7{bottom:845.263500px;}
.y8{bottom:845.836200px;}
.y18d{bottom:857.635350px;}
.y142{bottom:857.637600px;}
.y3a{bottom:857.770350px;}
.y84{bottom:857.772600px;}
.y124{bottom:857.777100px;}
.y1c0{bottom:857.778600px;}
.yb6{bottom:857.785350px;}
.y6f{bottom:857.907600px;}
.ye6{bottom:857.920350px;}
.y15b{bottom:857.927100px;}
.y1f6{bottom:860.263500px;}
.y7{bottom:866.836200px;}
.y1f5{bottom:875.263500px;}
.y1bf{bottom:875.373600px;}
.y110{bottom:875.515350px;}
.y141{bottom:875.637600px;}
.y39{bottom:875.770350px;}
.y83{bottom:875.772600px;}
.y123{bottom:875.777100px;}
.yb5{bottom:875.785350px;}
.y6e{bottom:875.907600px;}
.ye5{bottom:875.920350px;}
.y15a{bottom:875.927100px;}
.y6{bottom:887.830950px;}
.y1f4{bottom:890.263500px;}
.y18c{bottom:893.230350px;}
.y140{bottom:893.637600px;}
.y38{bottom:893.770350px;}
.y82{bottom:893.772600px;}
.y122{bottom:893.777100px;}
.yb4{bottom:893.785350px;}
.y6d{bottom:893.907600px;}
.ye4{bottom:893.920350px;}
.y159{bottom:893.927100px;}
.y1f3{bottom:905.263500px;}
.y37{bottom:911.770350px;}
.y81{bottom:911.772600px;}
.y121{bottom:911.777100px;}
.y1be{bottom:911.778600px;}
.yb3{bottom:911.785350px;}
.y6c{bottom:911.907600px;}
.ye3{bottom:911.920350px;}
.y158{bottom:911.927100px;}
.y1f2{bottom:920.263500px;}
.y13f{bottom:929.232600px;}
.y36{bottom:929.770350px;}
.y80{bottom:929.772600px;}
.y120{bottom:929.777100px;}
.y1bd{bottom:929.778600px;}
.yb2{bottom:929.785350px;}
.y6b{bottom:929.907600px;}
.y132{bottom:929.920350px;}
.y157{bottom:929.927100px;}
.y5{bottom:934.004400px;}
.y1f1{bottom:935.263500px;}
.ye2{bottom:947.515350px;}
.y35{bottom:947.770350px;}
.y7f{bottom:947.772600px;}
.y11f{bottom:947.777100px;}
.y1bc{bottom:947.778600px;}
.yb1{bottom:947.785350px;}
.y6a{bottom:947.907600px;}
.y131{bottom:947.920350px;}
.y1f0{bottom:950.263500px;}
.y1ef{bottom:965.263500px;}
.y156{bottom:965.522100px;}
.y34{bottom:965.770350px;}
.y7e{bottom:965.772600px;}
.y11e{bottom:965.777100px;}
.y1bb{bottom:965.778600px;}
.yb0{bottom:965.785350px;}
.y69{bottom:965.907600px;}
.y4{bottom:970.465200px;}
.y1ee{bottom:980.263500px;}
.y130{bottom:983.515350px;}
.y33{bottom:983.770350px;}
.y7d{bottom:983.772600px;}
.y11d{bottom:983.777100px;}
.y1ba{bottom:983.778600px;}
.yaf{bottom:983.785350px;}
.y1ed{bottom:995.263500px;}
.y68{bottom:1001.502600px;}
.y32{bottom:1001.770350px;}
.y7c{bottom:1001.772600px;}
.y11c{bottom:1001.777100px;}
.y1b9{bottom:1001.778600px;}
.yae{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1ec{bottom:1010.263500px;}
.y31{bottom:1019.770350px;}
.y7b{bottom:1019.772600px;}
.y11b{bottom:1019.777100px;}
.y1b8{bottom:1019.778600px;}
.yad{bottom:1019.785350px;}
.y1eb{bottom:1025.263500px;}
.y67{bottom:1037.367600px;}
.y1b7{bottom:1037.373600px;}
.y30{bottom:1037.770350px;}
.y7a{bottom:1037.772600px;}
.y11a{bottom:1037.777100px;}
.yac{bottom:1037.785350px;}
.y1ea{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y14c{bottom:1132.413900px;}
.y10f{bottom:1132.417050px;}
.y66{bottom:1132.418700px;}
.y22a{bottom:1132.423500px;}
.y13e{bottom:1132.426950px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h17{height:22.679063px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.hd{height:32.761230px;}
.h8{height:32.805176px;}
.h10{height:33.351562px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.hc{height:41.689453px;}
.h13{height:42.038161px;}
.h12{height:42.038761px;}
.h14{height:42.054361px;}
.h11{height:42.054961px;}
.ha{height:43.681641px;}
.hb{height:43.740234px;}
.h18{height:52.534951px;}
.h15{height:52.540951px;}
.h19{height:52.558951px;}
.h16{height:52.567951px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x22{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x24{left:123.307350px;}
.x3{left:125.427900px;}
.x7{left:131.811000px;}
.x11{left:165.982200px;}
.x18{left:179.806650px;}
.x17{left:182.807400px;}
.x5{left:191.338650px;}
.x1e{left:211.390350px;}
.x6{left:212.876400px;}
.x15{left:232.360350px;}
.x1a{left:296.113950px;}
.x19{left:406.923300px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x13{left:478.357200px;}
.x8{left:480.471000px;}
.x23{left:482.603400px;}
.xe{left:491.120400px;}
.x20{left:503.858400px;}
.x12{left:512.377200px;}
.x1c{left:574.238400px;}
.x1b{left:579.425400px;}
.x1f{left:596.091150px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x1d{left:721.717650px;}
.xf{left:728.391600px;}
.x21{left:743.870400px;}
.x14{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.450667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v4{vertical-align:20.098667pt;}
.v5{vertical-align:25.098667pt;}
.v1{vertical-align:27.005867pt;}
.lsad{letter-spacing:-0.725333pt;}
.ls10{letter-spacing:-0.693333pt;}
.lsb5{letter-spacing:-0.384000pt;}
.ls6b{letter-spacing:-0.320000pt;}
.ls6c{letter-spacing:-0.266667pt;}
.lsb1{letter-spacing:-0.256000pt;}
.ls9c{letter-spacing:-0.213333pt;}
.ls3e{letter-spacing:-0.160000pt;}
.ls9f{letter-spacing:-0.128000pt;}
.ls63{letter-spacing:-0.106667pt;}
.ls9e{letter-spacing:-0.085333pt;}
.ls4a{letter-spacing:-0.053333pt;}
.ls9d{letter-spacing:-0.042667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.003680pt;}
.ls2{letter-spacing:0.004512pt;}
.ls1{letter-spacing:0.005045pt;}
.ls8c{letter-spacing:0.042667pt;}
.ls62{letter-spacing:0.044267pt;}
.lsd{letter-spacing:0.053333pt;}
.ls61{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.106667pt;}
.lsa8{letter-spacing:0.128000pt;}
.ls65{letter-spacing:0.146133pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls94{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.213333pt;}
.ls6d{letter-spacing:0.220800pt;}
.ls95{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.266667pt;}
.ls66{letter-spacing:0.274667pt;}
.ls8e{letter-spacing:0.298667pt;}
.lsb4{letter-spacing:0.304533pt;}
.ls47{letter-spacing:0.320000pt;}
.lsa0{letter-spacing:0.341333pt;}
.ls36{letter-spacing:0.373333pt;}
.ls49{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls81{letter-spacing:0.469333pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls84{letter-spacing:0.512000pt;}
.ls30{letter-spacing:0.533333pt;}
.ls8b{letter-spacing:0.554667pt;}
.ls2f{letter-spacing:0.586667pt;}
.ls85{letter-spacing:0.597333pt;}
.ls24{letter-spacing:0.640000pt;}
.ls96{letter-spacing:0.682667pt;}
.lsa{letter-spacing:0.693333pt;}
.ls7a{letter-spacing:0.725333pt;}
.ls38{letter-spacing:0.746667pt;}
.ls7f{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:0.800000pt;}
.ls88{letter-spacing:0.810667pt;}
.ls17{letter-spacing:0.853333pt;}
.ls9a{letter-spacing:0.896000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls92{letter-spacing:0.938667pt;}
.ls35{letter-spacing:0.960000pt;}
.ls87{letter-spacing:0.981333pt;}
.ls9{letter-spacing:1.013333pt;}
.ls97{letter-spacing:1.024000pt;}
.ls68{letter-spacing:1.066667pt;}
.lsa7{letter-spacing:1.109333pt;}
.ls11{letter-spacing:1.120000pt;}
.ls7c{letter-spacing:1.152000pt;}
.ls26{letter-spacing:1.173333pt;}
.lsb0{letter-spacing:1.194667pt;}
.ls6{letter-spacing:1.226667pt;}
.ls7e{letter-spacing:1.237333pt;}
.ls3b{letter-spacing:1.280000pt;}
.lsac{letter-spacing:1.322667pt;}
.ls28{letter-spacing:1.333333pt;}
.ls89{letter-spacing:1.365333pt;}
.ls22{letter-spacing:1.386667pt;}
.ls83{letter-spacing:1.408000pt;}
.ls64{letter-spacing:1.440000pt;}
.ls99{letter-spacing:1.450667pt;}
.ls3c{letter-spacing:1.493333pt;}
.ls98{letter-spacing:1.536000pt;}
.ls16{letter-spacing:1.546667pt;}
.ls8d{letter-spacing:1.578667pt;}
.ls15{letter-spacing:1.600000pt;}
.ls8a{letter-spacing:1.621333pt;}
.ls13{letter-spacing:1.653333pt;}
.lsa3{letter-spacing:1.664000pt;}
.ls31{letter-spacing:1.706667pt;}
.lsaf{letter-spacing:1.749333pt;}
.ls18{letter-spacing:1.760000pt;}
.ls7d{letter-spacing:1.792000pt;}
.ls19{letter-spacing:1.813333pt;}
.lsae{letter-spacing:1.834667pt;}
.ls27{letter-spacing:1.866667pt;}
.ls7b{letter-spacing:1.877333pt;}
.ls25{letter-spacing:1.920000pt;}
.ls86{letter-spacing:1.962667pt;}
.lsc{letter-spacing:1.973333pt;}
.lsa1{letter-spacing:2.005333pt;}
.ls8{letter-spacing:2.026667pt;}
.lsa4{letter-spacing:2.048000pt;}
.ls1d{letter-spacing:2.080000pt;}
.lsab{letter-spacing:2.090667pt;}
.lsb{letter-spacing:2.133333pt;}
.ls4d{letter-spacing:2.186667pt;}
.lsa5{letter-spacing:2.218667pt;}
.ls33{letter-spacing:2.240000pt;}
.ls82{letter-spacing:2.261333pt;}
.ls32{letter-spacing:2.293333pt;}
.ls90{letter-spacing:2.304000pt;}
.ls3d{letter-spacing:2.346667pt;}
.ls4c{letter-spacing:2.400000pt;}
.ls93{letter-spacing:2.432000pt;}
.ls23{letter-spacing:2.453333pt;}
.ls91{letter-spacing:2.474667pt;}
.ls2c{letter-spacing:2.506667pt;}
.ls14{letter-spacing:2.560000pt;}
.ls4b{letter-spacing:2.613333pt;}
.ls9b{letter-spacing:2.645333pt;}
.ls12{letter-spacing:2.666667pt;}
.ls4e{letter-spacing:2.720000pt;}
.ls21{letter-spacing:2.773333pt;}
.ls20{letter-spacing:2.826667pt;}
.ls34{letter-spacing:2.880000pt;}
.ls39{letter-spacing:2.933333pt;}
.ls73{letter-spacing:2.986667pt;}
.lsa9{letter-spacing:3.029333pt;}
.ls2b{letter-spacing:3.040000pt;}
.ls3a{letter-spacing:3.093333pt;}
.ls50{letter-spacing:3.146667pt;}
.ls45{letter-spacing:3.200000pt;}
.ls46{letter-spacing:3.253333pt;}
.ls6a{letter-spacing:3.306667pt;}
.ls69{letter-spacing:3.360000pt;}
.ls8f{letter-spacing:3.370667pt;}
.ls74{letter-spacing:3.413333pt;}
.ls42{letter-spacing:3.466667pt;}
.ls80{letter-spacing:3.541333pt;}
.ls70{letter-spacing:3.573333pt;}
.ls6f{letter-spacing:3.626667pt;}
.lsa6{letter-spacing:3.840000pt;}
.ls75{letter-spacing:3.893333pt;}
.ls6e{letter-spacing:3.946667pt;}
.lsaa{letter-spacing:4.053333pt;}
.ls71{letter-spacing:4.106667pt;}
.ls37{letter-spacing:4.160000pt;}
.ls78{letter-spacing:4.266667pt;}
.ls5{letter-spacing:4.373333pt;}
.lsa2{letter-spacing:4.394667pt;}
.lsb2{letter-spacing:4.426667pt;}
.ls4f{letter-spacing:4.586667pt;}
.ls1f{letter-spacing:4.640000pt;}
.ls40{letter-spacing:4.693333pt;}
.ls48{letter-spacing:4.746667pt;}
.ls2e{letter-spacing:4.853333pt;}
.lsb3{letter-spacing:4.960000pt;}
.ls72{letter-spacing:5.120000pt;}
.ls3f{letter-spacing:5.173333pt;}
.ls67{letter-spacing:5.280000pt;}
.ls79{letter-spacing:5.440000pt;}
.ls29{letter-spacing:5.706667pt;}
.ls44{letter-spacing:5.973333pt;}
.ls77{letter-spacing:6.240000pt;}
.ls76{letter-spacing:7.093333pt;}
.ls43{letter-spacing:7.893333pt;}
.ls41{letter-spacing:9.120000pt;}
.ls0{letter-spacing:52.918112pt;}
.ls3{letter-spacing:52.918645pt;}
.ls52{letter-spacing:597.562667pt;}
.ls53{letter-spacing:612.948267pt;}
.ls60{letter-spacing:628.270933pt;}
.ls54{letter-spacing:679.958933pt;}
.ls5c{letter-spacing:687.260800pt;}
.ls5f{letter-spacing:691.063467pt;}
.ls58{letter-spacing:692.896000pt;}
.ls56{letter-spacing:710.625067pt;}
.ls57{letter-spacing:723.656533pt;}
.ls55{letter-spacing:724.385600pt;}
.ls5b{letter-spacing:726.364800pt;}
.ls5a{letter-spacing:799.240000pt;}
.ls59{letter-spacing:838.323200pt;}
.ls51{letter-spacing:843.136000pt;}
.ls5e{letter-spacing:931.344000pt;}
.ls5d{letter-spacing:935.489600pt;}
.ws28{word-spacing:-18.026667pt;}
.ws89{word-spacing:-17.440000pt;}
.ws7e{word-spacing:-17.280000pt;}
.ws29{word-spacing:-16.800000pt;}
.wsa{word-spacing:-15.893333pt;}
.wsb{word-spacing:-15.840000pt;}
.wsd{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.wsc8{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.666667pt;}
.ws2a{word-spacing:-14.346667pt;}
.wse{word-spacing:-14.293333pt;}
.wsc{word-spacing:-14.240000pt;}
.ws7d{word-spacing:-13.706667pt;}
.ws6a{word-spacing:-13.493333pt;}
.ws6b{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.333333pt;}
.wsa0{word-spacing:-13.312000pt;}
.ws99{word-spacing:-13.141333pt;}
.wsdb{word-spacing:-12.928000pt;}
.ws98{word-spacing:-12.629333pt;}
.wsc2{word-spacing:-12.458667pt;}
.ws9e{word-spacing:-12.288000pt;}
.wsde{word-spacing:-12.160000pt;}
.ws9f{word-spacing:-12.117333pt;}
.ws8b{word-spacing:-11.946667pt;}
.wsc0{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws8a{word-spacing:-11.818667pt;}
.wsdf{word-spacing:-11.733333pt;}
.wsdd{word-spacing:-11.690667pt;}
.wsc3{word-spacing:-11.648000pt;}
.ws9b{word-spacing:-11.477333pt;}
.wsc4{word-spacing:-11.349333pt;}
.wsd8{word-spacing:-11.264000pt;}
.wsdc{word-spacing:-11.221333pt;}
.wsc7{word-spacing:-11.178667pt;}
.ws2{word-spacing:-11.120000pt;}
.wsd9{word-spacing:-11.093333pt;}
.ws9a{word-spacing:-10.922667pt;}
.wsda{word-spacing:-10.880000pt;}
.ws9d{word-spacing:-10.837333pt;}
.wsc6{word-spacing:-10.752000pt;}
.wsc5{word-spacing:-10.709333pt;}
.ws4d{word-spacing:-10.666667pt;}
.ws9c{word-spacing:-10.538667pt;}
.wsc1{word-spacing:-9.941333pt;}
.ws0{word-spacing:-9.076144pt;}
.ws4a{word-spacing:-7.773333pt;}
.ws8c{word-spacing:-6.240000pt;}
.ws4c{word-spacing:-6.218667pt;}
.ws2c{word-spacing:-4.693333pt;}
.ws19{word-spacing:-4.640000pt;}
.wsd5{word-spacing:-4.053333pt;}
.ws86{word-spacing:-3.946667pt;}
.wsd1{word-spacing:-3.840000pt;}
.ws88{word-spacing:-3.626667pt;}
.ws2d{word-spacing:-3.466667pt;}
.wse4{word-spacing:-3.200000pt;}
.wsd2{word-spacing:-2.816000pt;}
.ws6d{word-spacing:-2.773333pt;}
.ws45{word-spacing:-2.666667pt;}
.ws5{word-spacing:-2.565333pt;}
.ws1d{word-spacing:-2.560000pt;}
.ws62{word-spacing:-2.506667pt;}
.wsac{word-spacing:-2.474667pt;}
.wsaf{word-spacing:-2.432000pt;}
.ws85{word-spacing:-2.346667pt;}
.wse5{word-spacing:-2.261333pt;}
.wscf{word-spacing:-2.218667pt;}
.ws3a{word-spacing:-2.186667pt;}
.ws63{word-spacing:-2.133333pt;}
.ws16{word-spacing:-2.080000pt;}
.wsce{word-spacing:-2.048000pt;}
.wse2{word-spacing:-2.005333pt;}
.ws2b{word-spacing:-1.973333pt;}
.ws90{word-spacing:-1.877333pt;}
.ws65{word-spacing:-1.866667pt;}
.wse6{word-spacing:-1.834667pt;}
.wsee{word-spacing:-1.813333pt;}
.ws92{word-spacing:-1.792000pt;}
.ws57{word-spacing:-1.760000pt;}
.wscc{word-spacing:-1.706667pt;}
.wsca{word-spacing:-1.664000pt;}
.wsa7{word-spacing:-1.621333pt;}
.ws3d{word-spacing:-1.600000pt;}
.wsd0{word-spacing:-1.578667pt;}
.ws2f{word-spacing:-1.546667pt;}
.ws93{word-spacing:-1.536000pt;}
.ws44{word-spacing:-1.493333pt;}
.wseb{word-spacing:-1.450667pt;}
.ws60{word-spacing:-1.440000pt;}
.ws33{word-spacing:-1.386667pt;}
.wsbc{word-spacing:-1.365333pt;}
.ws1c{word-spacing:-1.333333pt;}
.ws39{word-spacing:-1.280000pt;}
.ws94{word-spacing:-1.237333pt;}
.ws13{word-spacing:-1.226667pt;}
.wsec{word-spacing:-1.194667pt;}
.ws3e{word-spacing:-1.173333pt;}
.wscd{word-spacing:-1.152000pt;}
.ws5e{word-spacing:-1.120000pt;}
.wsea{word-spacing:-1.109333pt;}
.ws6f{word-spacing:-1.066667pt;}
.wsbb{word-spacing:-1.024000pt;}
.ws52{word-spacing:-1.013333pt;}
.wscb{word-spacing:-0.981333pt;}
.ws23{word-spacing:-0.960000pt;}
.wsae{word-spacing:-0.938667pt;}
.wsbd{word-spacing:-0.896000pt;}
.ws14{word-spacing:-0.853333pt;}
.wsb2{word-spacing:-0.810667pt;}
.ws58{word-spacing:-0.800000pt;}
.ws96{word-spacing:-0.768000pt;}
.ws7a{word-spacing:-0.746667pt;}
.ws71{word-spacing:-0.693333pt;}
.wsb6{word-spacing:-0.682667pt;}
.ws34{word-spacing:-0.640000pt;}
.wsa2{word-spacing:-0.597333pt;}
.ws20{word-spacing:-0.586667pt;}
.wsba{word-spacing:-0.554667pt;}
.ws21{word-spacing:-0.533333pt;}
.wsd4{word-spacing:-0.512000pt;}
.ws56{word-spacing:-0.480000pt;}
.ws97{word-spacing:-0.469333pt;}
.ws1e{word-spacing:-0.426667pt;}
.ws37{word-spacing:-0.384000pt;}
.ws3c{word-spacing:-0.373333pt;}
.wsc9{word-spacing:-0.341333pt;}
.ws43{word-spacing:-0.320000pt;}
.wsd3{word-spacing:-0.298667pt;}
.ws5f{word-spacing:-0.266667pt;}
.wsb1{word-spacing:-0.256000pt;}
.ws8{word-spacing:-0.213333pt;}
.wsb3{word-spacing:-0.170667pt;}
.ws3b{word-spacing:-0.160000pt;}
.ws18{word-spacing:-0.106667pt;}
.ws59{word-spacing:-0.085333pt;}
.ws1f{word-spacing:-0.053333pt;}
.wsa9{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.042667pt;}
.ws1a{word-spacing:0.053333pt;}
.wsb0{word-spacing:0.085333pt;}
.ws55{word-spacing:0.106667pt;}
.wsb5{word-spacing:0.128000pt;}
.wsa4{word-spacing:0.213333pt;}
.ws77{word-spacing:0.266667pt;}
.wse0{word-spacing:0.298667pt;}
.ws83{word-spacing:0.320000pt;}
.wse9{word-spacing:0.341333pt;}
.ws22{word-spacing:0.373333pt;}
.ws7c{word-spacing:0.426667pt;}
.wsbe{word-spacing:0.469333pt;}
.wsa8{word-spacing:0.512000pt;}
.ws5c{word-spacing:0.586667pt;}
.wsed{word-spacing:0.597333pt;}
.ws48{word-spacing:0.640000pt;}
.ws11{word-spacing:0.746667pt;}
.ws38{word-spacing:0.768000pt;}
.ws53{word-spacing:0.800000pt;}
.ws82{word-spacing:0.853333pt;}
.ws84{word-spacing:0.906667pt;}
.ws74{word-spacing:0.960000pt;}
.wsaa{word-spacing:1.066667pt;}
.ws1b{word-spacing:1.120000pt;}
.wsab{word-spacing:1.152000pt;}
.ws3f{word-spacing:1.173333pt;}
.wsb4{word-spacing:1.194667pt;}
.ws17{word-spacing:1.226667pt;}
.ws64{word-spacing:1.237333pt;}
.wse3{word-spacing:1.322667pt;}
.wsd6{word-spacing:1.365333pt;}
.ws40{word-spacing:1.386667pt;}
.ws5d{word-spacing:1.440000pt;}
.wsa5{word-spacing:1.493333pt;}
.ws81{word-spacing:1.546667pt;}
.ws35{word-spacing:1.600000pt;}
.wse8{word-spacing:1.621333pt;}
.ws42{word-spacing:1.653333pt;}
.wse7{word-spacing:1.664000pt;}
.wse1{word-spacing:1.749333pt;}
.wsf0{word-spacing:1.760000pt;}
.ws36{word-spacing:1.792000pt;}
.ws68{word-spacing:1.866667pt;}
.wsa1{word-spacing:1.920000pt;}
.ws70{word-spacing:1.973333pt;}
.ws25{word-spacing:2.026667pt;}
.ws67{word-spacing:2.080000pt;}
.wsb9{word-spacing:2.090667pt;}
.ws72{word-spacing:2.133333pt;}
.wsbf{word-spacing:2.176000pt;}
.ws7b{word-spacing:2.186667pt;}
.wsb7{word-spacing:2.218667pt;}
.ws79{word-spacing:2.240000pt;}
.ws10{word-spacing:2.293333pt;}
.ws30{word-spacing:2.400000pt;}
.wsef{word-spacing:2.453333pt;}
.ws49{word-spacing:2.506667pt;}
.wsa3{word-spacing:2.517333pt;}
.ws76{word-spacing:2.560000pt;}
.ws6e{word-spacing:2.666667pt;}
.ws41{word-spacing:2.720000pt;}
.wsd7{word-spacing:2.773333pt;}
.ws15{word-spacing:2.880000pt;}
.ws69{word-spacing:2.901333pt;}
.ws2e{word-spacing:2.933333pt;}
.ws95{word-spacing:3.029333pt;}
.ws75{word-spacing:3.040000pt;}
.wsad{word-spacing:3.072000pt;}
.ws12{word-spacing:3.093333pt;}
.ws27{word-spacing:3.146667pt;}
.ws78{word-spacing:3.253333pt;}
.ws32{word-spacing:3.306667pt;}
.ws31{word-spacing:3.413333pt;}
.wsb8{word-spacing:3.456000pt;}
.ws24{word-spacing:3.466667pt;}
.ws91{word-spacing:3.498667pt;}
.ws47{word-spacing:3.520000pt;}
.ws8f{word-spacing:3.541333pt;}
.ws73{word-spacing:3.573333pt;}
.ws46{word-spacing:3.626667pt;}
.ws80{word-spacing:3.786667pt;}
.ws6c{word-spacing:3.893333pt;}
.ws61{word-spacing:4.000000pt;}
.ws7f{word-spacing:4.106667pt;}
.ws66{word-spacing:4.213333pt;}
.ws54{word-spacing:4.266667pt;}
.ws26{word-spacing:4.320000pt;}
.ws7{word-spacing:4.373333pt;}
.ws6{word-spacing:4.426667pt;}
.ws8d{word-spacing:4.853333pt;}
.ws8e{word-spacing:4.906667pt;}
.ws87{word-spacing:8.373333pt;}
.ws4b{word-spacing:192.213333pt;}
.ws4f{word-spacing:227.157333pt;}
.ws4e{word-spacing:441.557333pt;}
.ws51{word-spacing:444.458667pt;}
.ws50{word-spacing:637.013333pt;}
.ws5b{word-spacing:806.318507pt;}
.ws5a{word-spacing:1192.922133pt;}
._c{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._f{margin-left:-8.853333pt;}
._7{margin-left:-5.866667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.746667pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._4{width:0.938667pt;}
._9{width:2.106667pt;}
._b{width:3.680000pt;}
._6{width:4.640000pt;}
._8{width:5.653333pt;}
._a{width:7.253333pt;}
._22{width:8.373333pt;}
._d{width:9.386667pt;}
._23{width:10.666667pt;}
._2{width:52.719669pt;}
._1f{width:229.504000pt;}
._12{width:237.781333pt;}
._14{width:325.418667pt;}
._15{width:340.778667pt;}
._1d{width:399.445333pt;}
._16{width:407.808000pt;}
._19{width:431.146667pt;}
._1c{width:439.813333pt;}
._17{width:448.896000pt;}
._18{width:461.909333pt;}
._1b{width:511.445333pt;}
._20{width:512.554667pt;}
._1a{width:561.194667pt;}
._13{width:570.965333pt;}
._1e{width:643.541333pt;}
._10{width:670.029333pt;}
._21{width:816.595840pt;}
._11{width:925.141333pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fsc{font-size:29.013333pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y22b{bottom:71.345333pt;}
.y10e{bottom:73.654267pt;}
.y92{bottom:73.977200pt;}
.y12d{bottom:74.196133pt;}
.y13b{bottom:74.197333pt;}
.y14a{bottom:74.376000pt;}
.y65{bottom:74.462533pt;}
.ye1{bottom:74.475867pt;}
.y155{bottom:74.588533pt;}
.y18b{bottom:74.595867pt;}
.y186{bottom:74.601867pt;}
.yab{bottom:74.729200pt;}
.y2c{bottom:78.246000pt;}
.y1e9{bottom:81.886133pt;}
.y229{bottom:84.678667pt;}
.y91{bottom:87.971867pt;}
.y10d{bottom:88.320933pt;}
.y149{bottom:88.370667pt;}
.y1b6{bottom:90.336533pt;}
.y64{bottom:90.462533pt;}
.ye0{bottom:90.475867pt;}
.y154{bottom:90.588533pt;}
.y18a{bottom:90.595867pt;}
.y185{bottom:90.601867pt;}
.yaa{bottom:90.729200pt;}
.y2b{bottom:91.576000pt;}
.y1e8{bottom:95.219467pt;}
.y228{bottom:98.012000pt;}
.y90{bottom:101.966533pt;}
.y1b5{bottom:106.336533pt;}
.y63{bottom:106.462533pt;}
.ydf{bottom:106.475867pt;}
.y153{bottom:106.588533pt;}
.y189{bottom:106.595867pt;}
.y184{bottom:106.601867pt;}
.ya9{bottom:106.729200pt;}
.y1e7{bottom:108.552800pt;}
.y10c{bottom:110.993200pt;}
.y227{bottom:111.345333pt;}
.y8f{bottom:115.961200pt;}
.y1e6{bottom:121.886133pt;}
.y1b4{bottom:122.336533pt;}
.y62{bottom:122.462533pt;}
.yde{bottom:122.475867pt;}
.y152{bottom:122.588533pt;}
.y188{bottom:122.595867pt;}
.y183{bottom:122.601867pt;}
.ya8{bottom:122.729200pt;}
.y226{bottom:124.678667pt;}
.y10b{bottom:125.442933pt;}
.y1e5{bottom:135.219467pt;}
.y225{bottom:138.012000pt;}
.y1b3{bottom:138.336533pt;}
.y61{bottom:138.462533pt;}
.ydd{bottom:138.475867pt;}
.y151{bottom:138.595867pt;}
.y182{bottom:138.601867pt;}
.y10a{bottom:139.889200pt;}
.y1e4{bottom:148.552800pt;}
.y224{bottom:151.345333pt;}
.y28{bottom:152.572800pt;}
.y109{bottom:154.335333pt;}
.y1b2{bottom:154.336533pt;}
.ya7{bottom:154.369200pt;}
.y60{bottom:154.462533pt;}
.ydc{bottom:154.475867pt;}
.y150{bottom:154.595867pt;}
.y181{bottom:154.601867pt;}
.y1e3{bottom:161.886133pt;}
.y223{bottom:164.678667pt;}
.y27{bottom:168.572800pt;}
.y108{bottom:168.781600pt;}
.y1b1{bottom:169.976533pt;}
.y5f{bottom:170.462533pt;}
.ydb{bottom:170.475867pt;}
.y14f{bottom:170.595867pt;}
.y180{bottom:170.601867pt;}
.y1e2{bottom:175.219467pt;}
.y222{bottom:178.012000pt;}
.y107{bottom:183.227733pt;}
.y26{bottom:184.572800pt;}
.y5e{bottom:186.462533pt;}
.yda{bottom:186.475867pt;}
.ya6{bottom:186.595867pt;}
.y17f{bottom:186.601867pt;}
.y1e1{bottom:188.552800pt;}
.y221{bottom:191.345333pt;}
.y106{bottom:197.674000pt;}
.y25{bottom:200.572800pt;}
.y1e0{bottom:201.886133pt;}
.y1b0{bottom:202.336533pt;}
.y5d{bottom:202.462533pt;}
.yd9{bottom:202.475867pt;}
.ya5{bottom:202.595867pt;}
.y17e{bottom:202.601867pt;}
.y220{bottom:204.678667pt;}
.y105{bottom:212.120133pt;}
.y1df{bottom:215.219467pt;}
.y24{bottom:216.572800pt;}
.y21f{bottom:218.012000pt;}
.y1af{bottom:218.336533pt;}
.y5c{bottom:218.462533pt;}
.y23e{bottom:218.464533pt;}
.yd8{bottom:218.475867pt;}
.ya4{bottom:218.595867pt;}
.y17d{bottom:218.601867pt;}
.y104{bottom:226.566267pt;}
.y1de{bottom:228.552800pt;}
.y21e{bottom:231.345333pt;}
.y2a{bottom:232.572800pt;}
.y1ae{bottom:234.336533pt;}
.y5b{bottom:234.462533pt;}
.yd7{bottom:234.475867pt;}
.ya3{bottom:234.595867pt;}
.y17c{bottom:234.601867pt;}
.y12f{bottom:237.373600pt;}
.y103{bottom:241.012533pt;}
.y1dd{bottom:241.886133pt;}
.y21d{bottom:244.678667pt;}
.y23{bottom:248.214800pt;}
.y29{bottom:248.572800pt;}
.y1ad{bottom:250.336533pt;}
.y5a{bottom:250.462533pt;}
.y23d{bottom:250.464533pt;}
.yd6{bottom:250.475867pt;}
.ya2{bottom:250.595867pt;}
.y17b{bottom:250.601867pt;}
.y1dc{bottom:255.219467pt;}
.y102{bottom:255.458667pt;}
.y21c{bottom:258.012000pt;}
.y1ac{bottom:266.336533pt;}
.y59{bottom:266.462533pt;}
.y23c{bottom:266.464533pt;}
.yd5{bottom:266.475867pt;}
.ya1{bottom:266.595867pt;}
.y17a{bottom:266.601867pt;}
.y1db{bottom:268.552800pt;}
.y101{bottom:269.904933pt;}
.y21b{bottom:271.345333pt;}
.y1da{bottom:281.886133pt;}
.y1ab{bottom:282.336533pt;}
.y58{bottom:282.462533pt;}
.yd4{bottom:282.475867pt;}
.ya0{bottom:282.595867pt;}
.y179{bottom:282.601867pt;}
.y100{bottom:284.351067pt;}
.y21a{bottom:284.678667pt;}
.y12c{bottom:294.132133pt;}
.y1d9{bottom:295.219467pt;}
.y219{bottom:298.012000pt;}
.y1aa{bottom:298.336533pt;}
.y57{bottom:298.462533pt;}
.y23b{bottom:298.464533pt;}
.yd3{bottom:298.475867pt;}
.y9f{bottom:298.595867pt;}
.y178{bottom:298.601867pt;}
.yff{bottom:298.797333pt;}
.y1d8{bottom:308.552800pt;}
.y218{bottom:311.345333pt;}
.yfe{bottom:313.243467pt;}
.y22{bottom:313.782133pt;}
.y1a9{bottom:314.336533pt;}
.y56{bottom:314.462533pt;}
.y23a{bottom:314.464533pt;}
.yd2{bottom:314.475867pt;}
.y9e{bottom:314.595867pt;}
.y177{bottom:314.601867pt;}
.y1d7{bottom:321.886133pt;}
.y217{bottom:324.678667pt;}
.yfd{bottom:327.686000pt;}
.y21{bottom:329.790400pt;}
.y1a8{bottom:330.336533pt;}
.y55{bottom:330.462533pt;}
.yd1{bottom:330.475867pt;}
.y9d{bottom:330.595867pt;}
.y176{bottom:330.601867pt;}
.y1d6{bottom:335.219467pt;}
.y216{bottom:338.012000pt;}
.y1a7{bottom:346.336533pt;}
.y54{bottom:346.462533pt;}
.y239{bottom:346.464533pt;}
.yd0{bottom:346.475867pt;}
.y9c{bottom:346.595867pt;}
.y175{bottom:346.601867pt;}
.y1d5{bottom:348.552800pt;}
.y215{bottom:351.345333pt;}
.y20{bottom:354.097067pt;}
.yfc{bottom:355.696667pt;}
.y1d4{bottom:361.886133pt;}
.y1a6{bottom:362.336533pt;}
.y53{bottom:362.462533pt;}
.y238{bottom:362.464533pt;}
.ycf{bottom:362.475867pt;}
.y9b{bottom:362.595867pt;}
.y174{bottom:362.601867pt;}
.y214{bottom:364.678667pt;}
.y1f{bottom:370.097067pt;}
.y1d3{bottom:375.219467pt;}
.y213{bottom:378.012000pt;}
.y1a5{bottom:378.336533pt;}
.y52{bottom:378.462533pt;}
.y237{bottom:378.464533pt;}
.yce{bottom:378.475867pt;}
.y9a{bottom:378.595867pt;}
.y173{bottom:378.601867pt;}
.y1e{bottom:386.097067pt;}
.yfb{bottom:386.715867pt;}
.y1d2{bottom:388.552800pt;}
.y212{bottom:391.345333pt;}
.y1a4{bottom:394.336533pt;}
.y51{bottom:394.462533pt;}
.ycd{bottom:394.475867pt;}
.y99{bottom:394.595867pt;}
.y172{bottom:394.601867pt;}
.y1d1{bottom:401.886133pt;}
.y1d{bottom:402.097067pt;}
.y211{bottom:404.678667pt;}
.y1a3{bottom:410.336533pt;}
.y50{bottom:410.462533pt;}
.y236{bottom:410.464533pt;}
.ycc{bottom:410.475867pt;}
.y98{bottom:410.595867pt;}
.y171{bottom:410.601867pt;}
.y1d0{bottom:415.219467pt;}
.y210{bottom:418.012000pt;}
.y1c{bottom:418.097067pt;}
.y1a2{bottom:426.336533pt;}
.y4f{bottom:426.462533pt;}
.y235{bottom:426.464533pt;}
.ycb{bottom:426.475867pt;}
.y97{bottom:426.595867pt;}
.y170{bottom:426.601867pt;}
.yf5{bottom:426.729200pt;}
.y1cf{bottom:428.552800pt;}
.y20f{bottom:431.345333pt;}
.y1b{bottom:434.097067pt;}
.y1a1{bottom:442.336533pt;}
.y4e{bottom:442.462533pt;}
.yca{bottom:442.475867pt;}
.y96{bottom:442.595867pt;}
.y16f{bottom:442.601867pt;}
.yf4{bottom:442.729200pt;}
.y20e{bottom:444.678667pt;}
.y1a{bottom:450.097067pt;}
.y1ce{bottom:457.989867pt;}
.y20d{bottom:458.012000pt;}
.y1a0{bottom:458.336533pt;}
.y4d{bottom:458.462533pt;}
.y234{bottom:458.464533pt;}
.yc9{bottom:458.475867pt;}
.y95{bottom:458.595867pt;}
.y16e{bottom:458.601867pt;}
.yf3{bottom:458.729200pt;}
.y19{bottom:466.097067pt;}
.y20c{bottom:471.345333pt;}
.y19f{bottom:474.336533pt;}
.y4c{bottom:474.462533pt;}
.y233{bottom:474.464533pt;}
.yc8{bottom:474.475867pt;}
.y94{bottom:474.595867pt;}
.y16d{bottom:474.601867pt;}
.y18{bottom:482.097067pt;}
.y20b{bottom:484.678667pt;}
.y19e{bottom:490.336533pt;}
.yf2{bottom:490.369200pt;}
.y4b{bottom:490.462533pt;}
.y232{bottom:490.464533pt;}
.yc7{bottom:490.475867pt;}
.yfa{bottom:490.595867pt;}
.y16c{bottom:490.601867pt;}
.y20a{bottom:498.012000pt;}
.y17{bottom:498.097067pt;}
.y93{bottom:506.235867pt;}
.y19d{bottom:506.336533pt;}
.y4a{bottom:506.462533pt;}
.y231{bottom:506.464533pt;}
.y1cd{bottom:506.469867pt;}
.yc6{bottom:506.475867pt;}
.yf9{bottom:506.595867pt;}
.y16b{bottom:506.601867pt;}
.y209{bottom:511.345333pt;}
.y16{bottom:514.097067pt;}
.y1cc{bottom:522.109867pt;}
.yf1{bottom:522.249200pt;}
.y19c{bottom:522.336533pt;}
.y49{bottom:522.462533pt;}
.y230{bottom:522.464533pt;}
.yc5{bottom:522.475867pt;}
.yf8{bottom:522.595867pt;}
.y16a{bottom:522.601867pt;}
.y208{bottom:524.678667pt;}
.y12e{bottom:526.505467pt;}
.y15{bottom:530.097067pt;}
.y207{bottom:538.012000pt;}
.y19b{bottom:538.336533pt;}
.y48{bottom:538.462533pt;}
.y22f{bottom:538.464533pt;}
.yc4{bottom:538.475867pt;}
.yf7{bottom:538.595867pt;}
.y169{bottom:538.601867pt;}
.y14{bottom:546.097067pt;}
.y206{bottom:551.345333pt;}
.y1cb{bottom:554.109867pt;}
.y187{bottom:554.235867pt;}
.y19a{bottom:554.336533pt;}
.y47{bottom:554.462533pt;}
.y22e{bottom:554.464533pt;}
.yc3{bottom:554.475867pt;}
.y14e{bottom:554.595867pt;}
.y168{bottom:554.601867pt;}
.y205{bottom:564.678667pt;}
.yf6{bottom:570.235867pt;}
.y199{bottom:570.336533pt;}
.y46{bottom:570.462533pt;}
.y22d{bottom:570.464533pt;}
.yc2{bottom:570.475867pt;}
.y14d{bottom:570.595867pt;}
.y167{bottom:570.601867pt;}
.yf0{bottom:570.729200pt;}
.y204{bottom:578.012000pt;}
.y13{bottom:586.237600pt;}
.y198{bottom:586.336533pt;}
.y45{bottom:586.462533pt;}
.y22c{bottom:586.464533pt;}
.y1ca{bottom:586.469867pt;}
.yc1{bottom:586.475867pt;}
.y13a{bottom:586.595867pt;}
.y166{bottom:586.601867pt;}
.yef{bottom:586.729200pt;}
.y203{bottom:591.345333pt;}
.y13d{bottom:592.927067pt;}
.y12{bottom:597.304933pt;}
.y197{bottom:602.336533pt;}
.y44{bottom:602.462533pt;}
.y8e{bottom:602.464533pt;}
.y1c9{bottom:602.469867pt;}
.yc0{bottom:602.475867pt;}
.y79{bottom:602.584533pt;}
.y119{bottom:602.588533pt;}
.y139{bottom:602.595867pt;}
.y165{bottom:602.601867pt;}
.yee{bottom:602.729200pt;}
.y202{bottom:604.678667pt;}
.y13c{bottom:606.921733pt;}
.y201{bottom:618.012000pt;}
.y196{bottom:618.336533pt;}
.y43{bottom:618.462533pt;}
.y8d{bottom:618.464533pt;}
.y1c8{bottom:618.469867pt;}
.ybf{bottom:618.475867pt;}
.y78{bottom:618.584533pt;}
.y118{bottom:618.588533pt;}
.y138{bottom:618.595867pt;}
.y164{bottom:618.601867pt;}
.yed{bottom:618.729200pt;}
.y14b{bottom:628.552800pt;}
.y11{bottom:630.319067pt;}
.y200{bottom:631.345333pt;}
.y195{bottom:634.336533pt;}
.y42{bottom:634.462533pt;}
.y8c{bottom:634.464533pt;}
.y1c7{bottom:634.469867pt;}
.ybe{bottom:634.475867pt;}
.y77{bottom:634.584533pt;}
.y117{bottom:634.588533pt;}
.y137{bottom:634.595867pt;}
.y163{bottom:634.601867pt;}
.yec{bottom:634.729200pt;}
.y10{bottom:642.319067pt;}
.y1ff{bottom:644.678667pt;}
.y194{bottom:650.342533pt;}
.y41{bottom:650.462533pt;}
.y8b{bottom:650.464533pt;}
.y12b{bottom:650.468533pt;}
.y1c6{bottom:650.469867pt;}
.ybd{bottom:650.475867pt;}
.y76{bottom:650.584533pt;}
.y116{bottom:650.588533pt;}
.y136{bottom:650.595867pt;}
.y162{bottom:650.601867pt;}
.yeb{bottom:650.729200pt;}
.yf{bottom:654.319067pt;}
.y1fe{bottom:658.012000pt;}
.ye{bottom:666.319067pt;}
.y193{bottom:666.342533pt;}
.y148{bottom:666.344533pt;}
.y40{bottom:666.462533pt;}
.y8a{bottom:666.464533pt;}
.y12a{bottom:666.468533pt;}
.y1c5{bottom:666.469867pt;}
.ybc{bottom:666.475867pt;}
.y75{bottom:666.584533pt;}
.y115{bottom:666.588533pt;}
.y135{bottom:666.595867pt;}
.y161{bottom:666.601867pt;}
.yea{bottom:666.729200pt;}
.y1fd{bottom:671.345333pt;}
.yd{bottom:673.496533pt;}
.y192{bottom:682.342533pt;}
.y147{bottom:682.344533pt;}
.y3f{bottom:682.462533pt;}
.y89{bottom:682.464533pt;}
.y129{bottom:682.468533pt;}
.y1c4{bottom:682.469867pt;}
.ybb{bottom:682.475867pt;}
.y74{bottom:682.584533pt;}
.y114{bottom:682.588533pt;}
.y134{bottom:682.595867pt;}
.y160{bottom:682.601867pt;}
.ye9{bottom:682.729200pt;}
.y1fc{bottom:684.678667pt;}
.yc{bottom:685.496533pt;}
.yb{bottom:697.496533pt;}
.y1fb{bottom:698.012000pt;}
.y191{bottom:698.342533pt;}
.y146{bottom:698.344533pt;}
.y3e{bottom:698.462533pt;}
.y88{bottom:698.464533pt;}
.y128{bottom:698.468533pt;}
.y1c3{bottom:698.469867pt;}
.yba{bottom:698.475867pt;}
.y73{bottom:698.584533pt;}
.y113{bottom:698.588533pt;}
.y133{bottom:698.595867pt;}
.y15f{bottom:698.601867pt;}
.ya{bottom:709.496533pt;}
.y1fa{bottom:711.345333pt;}
.y190{bottom:714.342533pt;}
.y145{bottom:714.344533pt;}
.ye8{bottom:714.369200pt;}
.y3d{bottom:714.462533pt;}
.y87{bottom:714.464533pt;}
.y127{bottom:714.468533pt;}
.y1c2{bottom:714.469867pt;}
.yb9{bottom:714.475867pt;}
.y72{bottom:714.584533pt;}
.y112{bottom:714.595867pt;}
.y15e{bottom:714.601867pt;}
.y1f9{bottom:724.678667pt;}
.y9{bottom:726.319067pt;}
.y1c1{bottom:730.109867pt;}
.y18f{bottom:730.342533pt;}
.y144{bottom:730.344533pt;}
.y3c{bottom:730.462533pt;}
.y86{bottom:730.464533pt;}
.y126{bottom:730.468533pt;}
.yb8{bottom:730.475867pt;}
.y71{bottom:730.584533pt;}
.y111{bottom:730.595867pt;}
.y15d{bottom:730.601867pt;}
.y1f8{bottom:738.012000pt;}
.y18e{bottom:746.342533pt;}
.y143{bottom:746.344533pt;}
.y3b{bottom:746.462533pt;}
.y85{bottom:746.464533pt;}
.y125{bottom:746.468533pt;}
.yb7{bottom:746.475867pt;}
.y70{bottom:746.584533pt;}
.ye7{bottom:746.595867pt;}
.y15c{bottom:746.601867pt;}
.y1f7{bottom:751.345333pt;}
.y8{bottom:751.854400pt;}
.y18d{bottom:762.342533pt;}
.y142{bottom:762.344533pt;}
.y3a{bottom:762.462533pt;}
.y84{bottom:762.464533pt;}
.y124{bottom:762.468533pt;}
.y1c0{bottom:762.469867pt;}
.yb6{bottom:762.475867pt;}
.y6f{bottom:762.584533pt;}
.ye6{bottom:762.595867pt;}
.y15b{bottom:762.601867pt;}
.y1f6{bottom:764.678667pt;}
.y7{bottom:770.521067pt;}
.y1f5{bottom:778.012000pt;}
.y1bf{bottom:778.109867pt;}
.y110{bottom:778.235867pt;}
.y141{bottom:778.344533pt;}
.y39{bottom:778.462533pt;}
.y83{bottom:778.464533pt;}
.y123{bottom:778.468533pt;}
.yb5{bottom:778.475867pt;}
.y6e{bottom:778.584533pt;}
.ye5{bottom:778.595867pt;}
.y15a{bottom:778.601867pt;}
.y6{bottom:789.183067pt;}
.y1f4{bottom:791.345333pt;}
.y18c{bottom:793.982533pt;}
.y140{bottom:794.344533pt;}
.y38{bottom:794.462533pt;}
.y82{bottom:794.464533pt;}
.y122{bottom:794.468533pt;}
.yb4{bottom:794.475867pt;}
.y6d{bottom:794.584533pt;}
.ye4{bottom:794.595867pt;}
.y159{bottom:794.601867pt;}
.y1f3{bottom:804.678667pt;}
.y37{bottom:810.462533pt;}
.y81{bottom:810.464533pt;}
.y121{bottom:810.468533pt;}
.y1be{bottom:810.469867pt;}
.yb3{bottom:810.475867pt;}
.y6c{bottom:810.584533pt;}
.ye3{bottom:810.595867pt;}
.y158{bottom:810.601867pt;}
.y1f2{bottom:818.012000pt;}
.y13f{bottom:825.984533pt;}
.y36{bottom:826.462533pt;}
.y80{bottom:826.464533pt;}
.y120{bottom:826.468533pt;}
.y1bd{bottom:826.469867pt;}
.yb2{bottom:826.475867pt;}
.y6b{bottom:826.584533pt;}
.y132{bottom:826.595867pt;}
.y157{bottom:826.601867pt;}
.y5{bottom:830.226133pt;}
.y1f1{bottom:831.345333pt;}
.ye2{bottom:842.235867pt;}
.y35{bottom:842.462533pt;}
.y7f{bottom:842.464533pt;}
.y11f{bottom:842.468533pt;}
.y1bc{bottom:842.469867pt;}
.yb1{bottom:842.475867pt;}
.y6a{bottom:842.584533pt;}
.y131{bottom:842.595867pt;}
.y1f0{bottom:844.678667pt;}
.y1ef{bottom:858.012000pt;}
.y156{bottom:858.241867pt;}
.y34{bottom:858.462533pt;}
.y7e{bottom:858.464533pt;}
.y11e{bottom:858.468533pt;}
.y1bb{bottom:858.469867pt;}
.yb0{bottom:858.475867pt;}
.y69{bottom:858.584533pt;}
.y4{bottom:862.635733pt;}
.y1ee{bottom:871.345333pt;}
.y130{bottom:874.235867pt;}
.y33{bottom:874.462533pt;}
.y7d{bottom:874.464533pt;}
.y11d{bottom:874.468533pt;}
.y1ba{bottom:874.469867pt;}
.yaf{bottom:874.475867pt;}
.y1ed{bottom:884.678667pt;}
.y68{bottom:890.224533pt;}
.y32{bottom:890.462533pt;}
.y7c{bottom:890.464533pt;}
.y11c{bottom:890.468533pt;}
.y1b9{bottom:890.469867pt;}
.yae{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1ec{bottom:898.012000pt;}
.y31{bottom:906.462533pt;}
.y7b{bottom:906.464533pt;}
.y11b{bottom:906.468533pt;}
.y1b8{bottom:906.469867pt;}
.yad{bottom:906.475867pt;}
.y1eb{bottom:911.345333pt;}
.y67{bottom:922.104533pt;}
.y1b7{bottom:922.109867pt;}
.y30{bottom:922.462533pt;}
.y7a{bottom:922.464533pt;}
.y11a{bottom:922.468533pt;}
.yac{bottom:922.475867pt;}
.y1ea{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y14c{bottom:1006.590133pt;}
.y10f{bottom:1006.592933pt;}
.y66{bottom:1006.594400pt;}
.y22a{bottom:1006.598667pt;}
.y13e{bottom:1006.601733pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h17{height:20.159167pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.hd{height:29.121094pt;}
.h8{height:29.160156pt;}
.h10{height:29.645833pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.hc{height:37.057292pt;}
.h13{height:37.367254pt;}
.h12{height:37.367788pt;}
.h14{height:37.381654pt;}
.h11{height:37.382188pt;}
.ha{height:38.828125pt;}
.hb{height:38.880208pt;}
.h18{height:46.697734pt;}
.h15{height:46.703068pt;}
.h19{height:46.719068pt;}
.h16{height:46.727068pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x22{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x24{left:109.606533pt;}
.x3{left:111.491467pt;}
.x7{left:117.165333pt;}
.x11{left:147.539733pt;}
.x18{left:159.828133pt;}
.x17{left:162.495467pt;}
.x5{left:170.078800pt;}
.x1e{left:187.902533pt;}
.x6{left:189.223467pt;}
.x15{left:206.542533pt;}
.x1a{left:263.212400pt;}
.x19{left:361.709600pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x13{left:425.206400pt;}
.x8{left:427.085333pt;}
.x23{left:428.980800pt;}
.xe{left:436.551467pt;}
.x20{left:447.874133pt;}
.x12{left:455.446400pt;}
.x1c{left:510.434133pt;}
.x1b{left:515.044800pt;}
.x1f{left:529.858800pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1d{left:641.526800pt;}
.xf{left:647.459200pt;}
.x21{left:661.218133pt;}
.x14{left:666.356800pt;}
}




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