
    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_24ef4e5082be71194b5a2f3d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_6c124b3b653814ae4c30e4ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;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_ce99469fc3d6e8c0e0ea978c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_ed50e40ee5167c890cc234ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_af55372c847de043f63e3a77.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_29b507f65d68ba902b0ae453.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.023000;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_7dbcbc58ed5ca0e1b6079f4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.143000;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_d3b0fe40a15e9f65061a11ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934000;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_62312481388fa217710cf032.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.148000;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_433913fdce17a83c215fc4ec.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.va{vertical-align:-41.976000px;}
.v2{vertical-align:-27.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.824000px;}
.v3{vertical-align:24.000000px;}
.v1{vertical-align:27.600000px;}
.v9{vertical-align:41.976000px;}
.v8{vertical-align:62.370000px;}
.v6{vertical-align:67.188000px;}
.v7{vertical-align:68.376000px;}
.v5{vertical-align:72.006000px;}
.ls4f{letter-spacing:-4.824000px;}
.ls4e{letter-spacing:-3.600000px;}
.ls3d{letter-spacing:-2.448000px;}
.ls5a{letter-spacing:-1.800000px;}
.ls36{letter-spacing:-1.584000px;}
.ls6f{letter-spacing:-1.296000px;}
.ls38{letter-spacing:-1.224000px;}
.ls76{letter-spacing:-1.140000px;}
.ls5f{letter-spacing:-1.008000px;}
.ls75{letter-spacing:-0.960000px;}
.ls33{letter-spacing:-0.936000px;}
.ls43{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.576000px;}
.ls48{letter-spacing:-0.556800px;}
.ls70{letter-spacing:-0.540000px;}
.ls4d{letter-spacing:-0.528000px;}
.ls1f{letter-spacing:-0.504000px;}
.ls47{letter-spacing:-0.487200px;}
.lsf{letter-spacing:-0.480000px;}
.ls46{letter-spacing:-0.462000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.420000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls4a{letter-spacing:-0.330000px;}
.ls19{letter-spacing:-0.300000px;}
.ls1e{letter-spacing:-0.288000px;}
.ls7a{letter-spacing:-0.264000px;}
.ls15{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.198000px;}
.ls11{letter-spacing:-0.180000px;}
.ls35{letter-spacing:-0.144000px;}
.ls59{letter-spacing:-0.132000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls58{letter-spacing:-0.066000px;}
.ls72{letter-spacing:-0.060000px;}
.lse{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.060000px;}
.ls57{letter-spacing:0.066000px;}
.ls49{letter-spacing:0.069600px;}
.ls12{letter-spacing:0.084000px;}
.ls41{letter-spacing:0.096000px;}
.ls3e{letter-spacing:0.115200px;}
.lsd{letter-spacing:0.120000px;}
.ls32{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.165600px;}
.ls74{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.198000px;}
.ls21{letter-spacing:0.201600px;}
.ls1d{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.240000px;}
.ls55{letter-spacing:0.264000px;}
.ls13{letter-spacing:0.288000px;}
.ls60{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.388800px;}
.ls54{letter-spacing:0.396000px;}
.ls5{letter-spacing:0.403200px;}
.ls9{letter-spacing:0.410400px;}
.ls5e{letter-spacing:0.417600px;}
.ls17{letter-spacing:0.420000px;}
.ls3f{letter-spacing:0.432000px;}
.ls53{letter-spacing:0.439200px;}
.ls7{letter-spacing:0.453600px;}
.ls79{letter-spacing:0.462000px;}
.ls40{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.482400px;}
.ls6{letter-spacing:0.504000px;}
.ls56{letter-spacing:0.528000px;}
.ls71{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.576000px;}
.ls31{letter-spacing:0.600000px;}
.ls45{letter-spacing:0.648000px;}
.ls64{letter-spacing:0.792000px;}
.ls18{letter-spacing:0.900000px;}
.ls42{letter-spacing:1.008000px;}
.ls26{letter-spacing:1.152000px;}
.ls6e{letter-spacing:1.194000px;}
.ls69{letter-spacing:1.200000px;}
.ls77{letter-spacing:1.260000px;}
.ls61{letter-spacing:1.440000px;}
.ls30{letter-spacing:1.512000px;}
.ls27{letter-spacing:2.376000px;}
.ls63{letter-spacing:3.355200px;}
.ls37{letter-spacing:3.600000px;}
.lsa{letter-spacing:4.752000px;}
.ls6c{letter-spacing:5.580000px;}
.ls3a{letter-spacing:5.803200px;}
.ls2f{letter-spacing:5.976000px;}
.ls6d{letter-spacing:6.780000px;}
.ls2d{letter-spacing:7.200000px;}
.ls34{letter-spacing:8.352000px;}
.ls24{letter-spacing:9.576000px;}
.ls23{letter-spacing:9.604800px;}
.lsb{letter-spacing:10.800000px;}
.lsc{letter-spacing:13.176000px;}
.ls44{letter-spacing:14.400000px;}
.ls2c{letter-spacing:15.552000px;}
.ls2b{letter-spacing:15.732000px;}
.ls78{letter-spacing:16.380000px;}
.ls2a{letter-spacing:16.776000px;}
.ls66{letter-spacing:19.152000px;}
.ls65{letter-spacing:19.202400px;}
.ls29{letter-spacing:21.528000px;}
.ls28{letter-spacing:21.600000px;}
.ls3c{letter-spacing:22.752000px;}
.ls67{letter-spacing:22.920000px;}
.ls3b{letter-spacing:23.976000px;}
.ls6a{letter-spacing:24.780000px;}
.ls68{letter-spacing:27.180000px;}
.ls6b{letter-spacing:55.980000px;}
.ls62{letter-spacing:74.808000px;}
.ls22{letter-spacing:193.176000px;}
.ls39{letter-spacing:420.780000px;}
.ls3{letter-spacing:798.780000px;}
.ls1{letter-spacing:846.780000px;}
.ls2{letter-spacing:1061.580000px;}
.ls5d{letter-spacing:1280.796000px;}
.ls50{letter-spacing:1372.008000px;}
.ls5b{letter-spacing:1376.760000px;}
.ls0{letter-spacing:1397.580000px;}
.ls52{letter-spacing:1921.590000px;}
.ls51{letter-spacing:2009.172000px;}
.ls5c{letter-spacing:2090.748000px;}
.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;}
}
.ws74{word-spacing:-23.976000px;}
.ws5e{word-spacing:-21.600000px;}
.ws6d{word-spacing:-19.800000px;}
.ws4{word-spacing:-19.584000px;}
.ws37{word-spacing:-19.512000px;}
.ws3d{word-spacing:-19.440000px;}
.ws38{word-spacing:-19.368000px;}
.ws5{word-spacing:-19.224000px;}
.wsc{word-spacing:-19.152000px;}
.ws3c{word-spacing:-19.080000px;}
.ws6{word-spacing:-19.008000px;}
.ws36{word-spacing:-18.936000px;}
.ws3a{word-spacing:-18.792000px;}
.wsb{word-spacing:-18.720000px;}
.ws3b{word-spacing:-18.648000px;}
.ws68{word-spacing:-18.583200px;}
.ws6e{word-spacing:-18.360000px;}
.ws39{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.216000px;}
.ws85{word-spacing:-18.150000px;}
.ws83{word-spacing:-18.018000px;}
.ws65{word-spacing:-18.000000px;}
.ws93{word-spacing:-17.952000px;}
.wsd{word-spacing:-17.928000px;}
.ws84{word-spacing:-17.886000px;}
.ws69{word-spacing:-17.856000px;}
.ws86{word-spacing:-17.688000px;}
.wse{word-spacing:-17.640000px;}
.ws87{word-spacing:-17.556000px;}
.ws88{word-spacing:-17.490000px;}
.wsc4{word-spacing:-17.358000px;}
.ws82{word-spacing:-17.292000px;}
.ws67{word-spacing:-17.160000px;}
.wsc3{word-spacing:-17.094000px;}
.ws9{word-spacing:-16.920000px;}
.ws63{word-spacing:-16.776000px;}
.wsa2{word-spacing:-16.560000px;}
.ws6c{word-spacing:-16.500000px;}
.ws8{word-spacing:-16.440000px;}
.wsa8{word-spacing:-16.380000px;}
.ws6a{word-spacing:-16.368000px;}
.wsa3{word-spacing:-16.260000px;}
.ws6b{word-spacing:-16.170000px;}
.ws34{word-spacing:-16.140000px;}
.wsa5{word-spacing:-16.080000px;}
.ws35{word-spacing:-16.020000px;}
.wsa4{word-spacing:-15.960000px;}
.ws1{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.720000px;}
.ws7{word-spacing:-15.600000px;}
.ws73{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.540000px;}
.wsa7{word-spacing:-15.180000px;}
.wsa6{word-spacing:-15.060000px;}
.wsa9{word-spacing:-14.880000px;}
.wsa1{word-spacing:-14.640000px;}
.ws99{word-spacing:-13.176000px;}
.ws3{word-spacing:-12.000000px;}
.ws54{word-spacing:-9.576000px;}
.ws4c{word-spacing:-8.352000px;}
.ws50{word-spacing:-7.200000px;}
.ws80{word-spacing:-5.976000px;}
.ws59{word-spacing:-4.752000px;}
.ws5a{word-spacing:-4.176000px;}
.ws9d{word-spacing:-3.888000px;}
.ws52{word-spacing:-3.600000px;}
.wsb4{word-spacing:-3.540000px;}
.ws5b{word-spacing:-3.528000px;}
.ws9b{word-spacing:-3.168000px;}
.ws26{word-spacing:-3.024000px;}
.wsbf{word-spacing:-2.520000px;}
.ws23{word-spacing:-2.376000px;}
.ws8b{word-spacing:-1.944000px;}
.ws77{word-spacing:-1.879200px;}
.ws2d{word-spacing:-1.872000px;}
.ws40{word-spacing:-1.800000px;}
.wsc8{word-spacing:-1.320000px;}
.wsc2{word-spacing:-1.260000px;}
.ws6f{word-spacing:-1.152000px;}
.wsca{word-spacing:-1.140000px;}
.ws3f{word-spacing:-1.020000px;}
.ws2b{word-spacing:-0.936000px;}
.ws98{word-spacing:-0.924000px;}
.ws15{word-spacing:-0.840000px;}
.ws1f{word-spacing:-0.792000px;}
.ws19{word-spacing:-0.660000px;}
.ws2c{word-spacing:-0.648000px;}
.wsb5{word-spacing:-0.600000px;}
.ws2e{word-spacing:-0.576000px;}
.wsf{word-spacing:-0.540000px;}
.ws94{word-spacing:-0.504000px;}
.ws11{word-spacing:-0.420000px;}
.ws97{word-spacing:-0.396000px;}
.ws17{word-spacing:-0.360000px;}
.ws16{word-spacing:-0.288000px;}
.ws12{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.216000px;}
.ws79{word-spacing:-0.198000px;}
.ws3e{word-spacing:-0.120000px;}
.wsb6{word-spacing:-0.060000px;}
.ws10{word-spacing:0.000000px;}
.ws1c{word-spacing:0.060000px;}
.ws96{word-spacing:0.066000px;}
.ws2f{word-spacing:0.072000px;}
.ws95{word-spacing:0.144000px;}
.wsb9{word-spacing:0.180000px;}
.ws7b{word-spacing:0.198000px;}
.ws46{word-spacing:0.216000px;}
.ws14{word-spacing:0.252000px;}
.ws43{word-spacing:0.288000px;}
.ws1b{word-spacing:0.300000px;}
.ws78{word-spacing:0.330000px;}
.ws1d{word-spacing:0.360000px;}
.ws8c{word-spacing:0.396000px;}
.wsb1{word-spacing:0.420000px;}
.ws30{word-spacing:0.432000px;}
.ws7a{word-spacing:0.462000px;}
.ws1a{word-spacing:0.480000px;}
.ws75{word-spacing:0.487200px;}
.ws42{word-spacing:0.504000px;}
.wscf{word-spacing:0.528000px;}
.wsc9{word-spacing:0.540000px;}
.ws76{word-spacing:0.556800px;}
.ws18{word-spacing:0.576000px;}
.ws9f{word-spacing:0.792000px;}
.wsbc{word-spacing:0.840000px;}
.ws8e{word-spacing:0.864000px;}
.ws7d{word-spacing:0.924000px;}
.ws44{word-spacing:0.936000px;}
.wsbb{word-spacing:0.960000px;}
.ws8d{word-spacing:1.008000px;}
.wsbe{word-spacing:1.200000px;}
.ws56{word-spacing:1.224000px;}
.wsba{word-spacing:1.260000px;}
.ws64{word-spacing:1.296000px;}
.ws24{word-spacing:1.584000px;}
.ws45{word-spacing:1.656000px;}
.ws25{word-spacing:1.728000px;}
.wsc5{word-spacing:1.740000px;}
.ws8a{word-spacing:1.800000px;}
.ws51{word-spacing:2.016000px;}
.wsa0{word-spacing:2.160000px;}
.ws58{word-spacing:2.448000px;}
.ws89{word-spacing:2.736000px;}
.ws92{word-spacing:2.808000px;}
.ws47{word-spacing:2.880000px;}
.ws1e{word-spacing:2.952000px;}
.ws7e{word-spacing:3.024000px;}
.ws66{word-spacing:3.240000px;}
.wsce{word-spacing:3.564000px;}
.ws7f{word-spacing:3.600000px;}
.ws72{word-spacing:3.672000px;}
.wscd{word-spacing:3.960000px;}
.ws62{word-spacing:4.032000px;}
.ws53{word-spacing:4.176000px;}
.wsb7{word-spacing:4.320000px;}
.ws81{word-spacing:4.824000px;}
.wsbd{word-spacing:4.860000px;}
.ws31{word-spacing:5.184000px;}
.ws2a{word-spacing:5.328000px;}
.ws61{word-spacing:5.760000px;}
.ws29{word-spacing:6.552000px;}
.wsc0{word-spacing:7.260000px;}
.ws28{word-spacing:7.272000px;}
.ws27{word-spacing:7.632000px;}
.ws4f{word-spacing:7.776000px;}
.ws8f{word-spacing:8.136000px;}
.ws91{word-spacing:8.856000px;}
.ws48{word-spacing:8.928000px;}
.ws41{word-spacing:9.648000px;}
.ws9e{word-spacing:10.008000px;}
.wsc1{word-spacing:10.860000px;}
.wsab{word-spacing:10.872000px;}
.ws33{word-spacing:11.088000px;}
.wsaa{word-spacing:11.232000px;}
.ws71{word-spacing:11.304000px;}
.ws70{word-spacing:12.384000px;}
.ws9c{word-spacing:12.528000px;}
.ws32{word-spacing:13.248000px;}
.ws90{word-spacing:13.752000px;}
.wsae{word-spacing:14.040000px;}
.wscc{word-spacing:14.322000px;}
.wsad{word-spacing:14.472000px;}
.ws20{word-spacing:14.832000px;}
.wscb{word-spacing:14.850000px;}
.ws21{word-spacing:14.976000px;}
.ws4d{word-spacing:15.624000px;}
.ws4e{word-spacing:15.984000px;}
.ws57{word-spacing:16.848000px;}
.wsc7{word-spacing:18.000000px;}
.ws49{word-spacing:18.576000px;}
.wsac{word-spacing:19.224000px;}
.ws55{word-spacing:19.584000px;}
.ws7c{word-spacing:19.668000px;}
.wsaf{word-spacing:19.728000px;}
.ws4a{word-spacing:21.312000px;}
.ws22{word-spacing:21.672000px;}
.ws4b{word-spacing:22.176000px;}
.ws5f{word-spacing:22.824000px;}
.ws60{word-spacing:23.184000px;}
.ws5c{word-spacing:23.688000px;}
.ws5d{word-spacing:25.632000px;}
.wsb0{word-spacing:27.480000px;}
.ws9a{word-spacing:30.528000px;}
.wsb3{word-spacing:55.620000px;}
.wsb2{word-spacing:55.740000px;}
.wsc6{word-spacing:73.260000px;}
.wsb8{word-spacing:157.260000px;}
._25{margin-left:-24.458400px;}
._26{margin-left:-23.414400px;}
._1d{margin-left:-22.010400px;}
._1e{margin-left:-20.995200px;}
._1f{margin-left:-19.994400px;}
._23{margin-left:-17.899200px;}
._21{margin-left:-16.869600px;}
._22{margin-left:-15.703200px;}
._24{margin-left:-14.464800px;}
._55{margin-left:-13.413600px;}
._56{margin-left:-12.297600px;}
._19{margin-left:-10.209600px;}
._17{margin-left:-9.136800px;}
._18{margin-left:-8.078400px;}
._16{margin-left:-6.379200px;}
._10{margin-left:-4.888800px;}
._c{margin-left:-3.096000px;}
._5{margin-left:-2.052000px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._6{width:2.484000px;}
._a{width:3.556800px;}
._e{width:4.708800px;}
._d{width:5.760000px;}
._9{width:7.034400px;}
._b{width:8.661600px;}
._7{width:10.656000px;}
._8{width:11.872800px;}
._45{width:12.876000px;}
._f{width:13.920000px;}
._1a{width:15.120000px;}
._15{width:16.387200px;}
._13{width:17.445600px;}
._61{width:18.531600px;}
._20{width:21.031200px;}
._14{width:22.068000px;}
._1c{width:23.947200px;}
._27{width:25.603200px;}
._5b{width:27.009600px;}
._5a{width:28.027200px;}
._58{width:29.764800px;}
._57{width:30.772800px;}
._53{width:33.818400px;}
._54{width:35.280000px;}
._28{width:47.916000px;}
._59{width:49.680000px;}
._5c{width:55.944000px;}
._60{width:59.646000px;}
._5d{width:61.576800px;}
._5e{width:62.635200px;}
._5f{width:64.030800px;}
._4c{width:68.838000px;}
._2b{width:72.006000px;}
._2c{width:73.194000px;}
._4b{width:76.896000px;}
._3e{width:78.078000px;}
._36{width:79.266000px;}
._3c{width:82.830000px;}
._3b{width:85.272000px;}
._4e{width:94.056000px;}
._4f{width:112.068000px;}
._39{width:114.048000px;}
._29{width:115.236000px;}
._4d{width:117.612000px;}
._34{width:119.460000px;}
._37{width:121.242000px;}
._31{width:123.288000px;}
._33{width:125.268000px;}
._50{width:132.792000px;}
._2e{width:138.072000px;}
._46{width:155.232000px;}
._2a{width:157.212000px;}
._3d{width:161.238000px;}
._3a{width:164.868000px;}
._2f{width:166.056000px;}
._49{width:168.102000px;}
._38{width:170.280000px;}
._2d{width:171.600000px;}
._48{width:175.956000px;}
._4a{width:181.236000px;}
._52{width:186.054000px;}
._51{width:193.908000px;}
._47{width:204.798000px;}
._30{width:213.048000px;}
._32{width:248.358000px;}
._35{width:251.460000px;}
._1b{width:360.348000px;}
._44{width:520.212000px;}
._42{width:584.760000px;}
._3f{width:612.348000px;}
._40{width:630.366000px;}
._41{width:650.760000px;}
._43{width:655.182000px;}
._3{width:765.900000px;}
._12{width:809.232000px;}
._4{width:821.580000px;}
._11{width:923.580000px;}
._2{width:1005.420000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs8{font-size:69.600000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.ybe{bottom:4.500000px;}
.y109{bottom:4.501500px;}
.yf2{bottom:4.800000px;}
.y7{bottom:5.100000px;}
.ya{bottom:6.000000px;}
.ybf{bottom:8.400000px;}
.ycc{bottom:9.900000px;}
.yd1{bottom:10.200000px;}
.ybb{bottom:15.900000px;}
.yba{bottom:25.200000px;}
.y137{bottom:25.800000px;}
.y13e{bottom:26.100000px;}
.y9a{bottom:28.500000px;}
.ya1{bottom:51.600000px;}
.y4{bottom:67.800000px;}
.yaf{bottom:75.000000px;}
.y94{bottom:93.300000px;}
.y1a3{bottom:96.300000px;}
.y65{bottom:97.290000px;}
.y153{bottom:98.106000px;}
.yea{bottom:99.300000px;}
.ya9{bottom:103.212000px;}
.y103{bottom:105.900000px;}
.y11e{bottom:107.730000px;}
.y91{bottom:112.806000px;}
.y35{bottom:114.024000px;}
.y1a2{bottom:115.800000px;}
.y64{bottom:120.690000px;}
.y152{bottom:121.200000px;}
.ye9{bottom:122.700000px;}
.y102{bottom:123.012000px;}
.ya8{bottom:126.612000px;}
.y176{bottom:128.190000px;}
.y11d{bottom:130.824000px;}
.y1a1{bottom:135.000000px;}
.y90{bottom:135.900000px;}
.y16b{bottom:136.212000px;}
.y34{bottom:137.424000px;}
.y63{bottom:143.784000px;}
.y151{bottom:144.600000px;}
.ye8{bottom:146.100000px;}
.y101{bottom:146.412000px;}
.ya7{bottom:150.012000px;}
.y175{bottom:151.590000px;}
.y11c{bottom:154.224000px;}
.y1a0{bottom:154.500000px;}
.y8f{bottom:159.300000px;}
.y16a{bottom:159.612000px;}
.y33{bottom:160.824000px;}
.ye7{bottom:166.500000px;}
.y62{bottom:167.184000px;}
.y150{bottom:168.000000px;}
.y100{bottom:169.812000px;}
.ya6{bottom:173.106000px;}
.y19f{bottom:174.000000px;}
.y174{bottom:174.990000px;}
.y11b{bottom:177.624000px;}
.ye6{bottom:180.912000px;}
.y8e{bottom:182.700000px;}
.y169{bottom:183.012000px;}
.y32{bottom:183.918000px;}
.y9d{bottom:187.800000px;}
.y14f{bottom:189.300000px;}
.y61{bottom:190.278000px;}
.yff{bottom:192.906000px;}
.y19e{bottom:193.200000px;}
.ya5{bottom:196.506000px;}
.y173{bottom:198.084000px;}
.y11a{bottom:200.718000px;}
.ye5{bottom:204.312000px;}
.y8d{bottom:205.800000px;}
.y168{bottom:206.106000px;}
.y14e{bottom:206.706000px;}
.y31{bottom:207.318000px;}
.y19d{bottom:212.700000px;}
.y60{bottom:213.678000px;}
.yfe{bottom:216.306000px;}
.ya4{bottom:219.600000px;}
.y172{bottom:221.484000px;}
.y119{bottom:224.118000px;}
.ye4{bottom:227.712000px;}
.y8c{bottom:229.200000px;}
.y167{bottom:229.506000px;}
.y14d{bottom:230.106000px;}
.y30{bottom:230.718000px;}
.y19c{bottom:232.200000px;}
.y5f{bottom:237.078000px;}
.yfd{bottom:239.706000px;}
.ya3{bottom:241.200000px;}
.y171{bottom:244.884000px;}
.y118{bottom:247.518000px;}
.ye3{bottom:250.806000px;}
.y19b{bottom:251.700000px;}
.y166{bottom:252.600000px;}
.y8b{bottom:252.612000px;}
.y14c{bottom:253.200000px;}
.ya0{bottom:253.500000px;}
.y2f{bottom:253.812000px;}
.y5e{bottom:260.172000px;}
.yfc{bottom:262.800000px;}
.y170{bottom:267.978000px;}
.y117{bottom:270.612000px;}
.y19a{bottom:270.900000px;}
.ye2{bottom:274.206000px;}
.y8a{bottom:275.706000px;}
.y165{bottom:276.000000px;}
.y14b{bottom:276.600000px;}
.y2e{bottom:277.212000px;}
.ya2{bottom:281.700000px;}
.y5d{bottom:283.572000px;}
.yfb{bottom:284.400000px;}
.y199{bottom:290.400000px;}
.y16f{bottom:291.378000px;}
.y116{bottom:294.012000px;}
.ye1{bottom:297.300000px;}
.y164{bottom:297.600000px;}
.y89{bottom:299.106000px;}
.y14a{bottom:300.000000px;}
.y2d{bottom:300.306000px;}
.yfa{bottom:301.806000px;}
.y5c{bottom:306.972000px;}
.y198{bottom:309.900000px;}
.y16e{bottom:314.778000px;}
.y163{bottom:315.018000px;}
.y115{bottom:317.412000px;}
.y149{bottom:320.400000px;}
.ye0{bottom:320.700000px;}
.y88{bottom:322.200000px;}
.y9c{bottom:323.400000px;}
.y2c{bottom:323.706000px;}
.yf9{bottom:324.900000px;}
.y9f{bottom:328.500000px;}
.y197{bottom:329.100000px;}
.y5b{bottom:330.066000px;}
.y148{bottom:330.600000px;}
.y16d{bottom:337.872000px;}
.y162{bottom:338.112000px;}
.y114{bottom:340.506000px;}
.ydf{bottom:342.300000px;}
.y87{bottom:345.600000px;}
.y9e{bottom:346.500000px;}
.y2b{bottom:347.106000px;}
.yf8{bottom:348.300000px;}
.y196{bottom:348.600000px;}
.y5a{bottom:353.466000px;}
.yde{bottom:355.200000px;}
.y16c{bottom:361.272000px;}
.y161{bottom:361.512000px;}
.ydd{bottom:362.400000px;}
.y113{bottom:363.906000px;}
.y86{bottom:367.200000px;}
.y195{bottom:368.100000px;}
.y2a{bottom:370.200000px;}
.yf7{bottom:371.700000px;}
.y59{bottom:376.866000px;}
.y147{bottom:377.698500px;}
.y85{bottom:384.366000px;}
.y160{bottom:384.606000px;}
.y112{bottom:387.000000px;}
.y194{bottom:387.300000px;}
.ydc{bottom:390.300000px;}
.y29{bottom:391.800000px;}
.yf5{bottom:394.203000px;}
.yf6{bottom:394.500000px;}
.y146{bottom:399.000000px;}
.y58{bottom:399.960000px;}
.y193{bottom:406.800000px;}
.y84{bottom:407.766000px;}
.y15f{bottom:408.006000px;}
.y28{bottom:409.200000px;}
.ydb{bottom:410.400000px;}
.yf4{bottom:411.000000px;}
.y144{bottom:415.800000px;}
.yda{bottom:417.900000px;}
.y57{bottom:423.360000px;}
.y192{bottom:426.300000px;}
.y27{bottom:430.500000px;}
.y145{bottom:431.100000px;}
.y83{bottom:431.166000px;}
.y15e{bottom:431.406000px;}
.y111{bottom:433.800000px;}
.yd9{bottom:438.300000px;}
.yd8{bottom:445.500000px;}
.y191{bottom:445.800000px;}
.y56{bottom:446.760000px;}
.y26{bottom:447.930000px;}
.y82{bottom:454.260000px;}
.y15d{bottom:454.500000px;}
.y110{bottom:455.100000px;}
.y143{bottom:459.300000px;}
.y190{bottom:465.000000px;}
.yd7{bottom:465.900000px;}
.y55{bottom:469.854000px;}
.y25{bottom:471.330000px;}
.y10f{bottom:472.506000px;}
.yd6{bottom:473.100000px;}
.y81{bottom:477.660000px;}
.y15c{bottom:477.900000px;}
.y141{bottom:481.500000px;}
.y18f{bottom:484.500000px;}
.y54{bottom:493.254000px;}
.y24{bottom:494.424000px;}
.y10e{bottom:495.906000px;}
.y142{bottom:496.800000px;}
.y15b{bottom:499.500000px;}
.yd5{bottom:501.000000px;}
.y80{bottom:501.060000px;}
.y18e{bottom:504.000000px;}
.y53{bottom:516.348000px;}
.y15a{bottom:516.606000px;}
.y23{bottom:517.824000px;}
.y10d{bottom:519.000000px;}
.y9b{bottom:520.500000px;}
.y18d{bottom:523.200000px;}
.y7f{bottom:524.154000px;}
.y1c3{bottom:524.400000px;}
.y140{bottom:525.000000px;}
.yf1{bottom:528.300000px;}
.yd4{bottom:528.600000px;}
.y99{bottom:532.800000px;}
.y52{bottom:539.748000px;}
.y159{bottom:540.006000px;}
.y22{bottom:541.224000px;}
.y10c{bottom:542.400000px;}
.y18c{bottom:542.700000px;}
.y1c2{bottom:543.900000px;}
.y13d{bottom:547.200000px;}
.y7e{bottom:547.554000px;}
.yd3{bottom:549.000000px;}
.yf3{bottom:549.900000px;}
.yf0{bottom:549.901500px;}
.y13f{bottom:552.000000px;}
.yd2{bottom:556.200000px;}
.y18b{bottom:562.200000px;}
.y1c1{bottom:563.100000px;}
.y51{bottom:563.148000px;}
.y158{bottom:563.406000px;}
.y21{bottom:564.318000px;}
.y10b{bottom:565.203000px;}
.y7d{bottom:570.954000px;}
.yd0{bottom:576.600000px;}
.y98{bottom:579.300000px;}
.y18a{bottom:581.400000px;}
.y10a{bottom:582.000000px;}
.y1c0{bottom:582.900000px;}
.ycf{bottom:583.800000px;}
.y50{bottom:586.242000px;}
.y157{bottom:586.500000px;}
.y20{bottom:587.718000px;}
.y13b{bottom:590.700000px;}
.y7c{bottom:594.048000px;}
.y13c{bottom:595.500000px;}
.y189{bottom:600.900000px;}
.y97{bottom:602.694000px;}
.y1bf{bottom:604.200000px;}
.y156{bottom:604.800000px;}
.y4f{bottom:609.642000px;}
.y1f{bottom:611.118000px;}
.yce{bottom:611.700000px;}
.y7b{bottom:617.448000px;}
.y13a{bottom:617.706000px;}
.y188{bottom:620.400000px;}
.y1be{bottom:624.300000px;}
.y155{bottom:628.200000px;}
.y4e{bottom:633.042000px;}
.y1e{bottom:634.212000px;}
.y139{bottom:639.007500px;}
.ycd{bottom:639.300000px;}
.y187{bottom:639.900000px;}
.y7a{bottom:640.848000px;}
.y1bd{bottom:641.100000px;}
.y136{bottom:655.800000px;}
.y4d{bottom:656.136000px;}
.y1d{bottom:657.612000px;}
.y186{bottom:659.100000px;}
.ycb{bottom:659.700000px;}
.y1bc{bottom:662.401500px;}
.y79{bottom:663.942000px;}
.yca{bottom:666.900000px;}
.y138{bottom:671.100000px;}
.y185{bottom:678.600000px;}
.y4c{bottom:679.536000px;}
.y1c{bottom:681.012000px;}
.y1bb{bottom:684.000000px;}
.y78{bottom:687.342000px;}
.yc9{bottom:694.500000px;}
.y184{bottom:698.100000px;}
.y134{bottom:698.400000px;}
.y4b{bottom:702.936000px;}
.y1b{bottom:704.106000px;}
.y1ba{bottom:709.800000px;}
.y77{bottom:710.436000px;}
.y135{bottom:713.700000px;}
.yb9{bottom:714.900000px;}
.y183{bottom:717.300000px;}
.y93{bottom:720.000000px;}
.yc3{bottom:723.300000px;}
.y133{bottom:724.200000px;}
.y96{bottom:725.094000px;}
.y4a{bottom:726.030000px;}
.y1a{bottom:727.506000px;}
.y76{bottom:733.836000px;}
.y182{bottom:736.800000px;}
.y131{bottom:741.900000px;}
.y95{bottom:743.400000px;}
.y132{bottom:746.700000px;}
.y49{bottom:749.430000px;}
.y19{bottom:750.600000px;}
.y1b9{bottom:752.698500px;}
.yc0{bottom:756.300000px;}
.yc7{bottom:756.900000px;}
.y75{bottom:757.236000px;}
.yc4{bottom:758.100000px;}
.yc8{bottom:762.300000px;}
.y127{bottom:764.100000px;}
.yc5{bottom:767.400000px;}
.yc2{bottom:769.200000px;}
.y18{bottom:772.200000px;}
.y48{bottom:772.524000px;}
.y1b8{bottom:774.000000px;}
.y181{bottom:775.500000px;}
.yef{bottom:775.506000px;}
.yc1{bottom:779.700000px;}
.y74{bottom:780.330000px;}
.yc6{bottom:781.500000px;}
.y17{bottom:788.700000px;}
.yee{bottom:792.600000px;}
.y1b7{bottom:794.100000px;}
.y180{bottom:795.000000px;}
.y47{bottom:795.924000px;}
.ybd{bottom:800.700000px;}
.y73{bottom:803.730000px;}
.ybc{bottom:806.100000px;}
.y16{bottom:808.200000px;}
.y1b6{bottom:810.600000px;}
.y17f{bottom:814.500000px;}
.y46{bottom:819.324000px;}
.y92{bottom:822.300000px;}
.y15{bottom:826.500000px;}
.y72{bottom:827.130000px;}
.yb8{bottom:828.000000px;}
.y108{bottom:828.298500px;}
.y1b5{bottom:830.100000px;}
.y12a{bottom:834.000000px;}
.y107{bottom:834.010500px;}
.yae{bottom:834.600000px;}
.y126{bottom:837.898500px;}
.y12b{bottom:838.800000px;}
.y45{bottom:842.418000px;}
.y14{bottom:843.000000px;}
.y1b4{bottom:848.400000px;}
.y71{bottom:850.224000px;}
.y106{bottom:851.104500px;}
.yb7{bottom:851.400000px;}
.y17e{bottom:853.200000px;}
.y125{bottom:859.200000px;}
.y12d{bottom:861.600000px;}
.y13{bottom:862.500000px;}
.y12e{bottom:862.800000px;}
.yb1{bottom:863.100000px;}
.y1b3{bottom:864.900000px;}
.y44{bottom:865.818000px;}
.y129{bottom:867.900000px;}
.y12f{bottom:868.800000px;}
.yec{bottom:871.503000px;}
.y17d{bottom:871.800000px;}
.yed{bottom:872.707500px;}
.y70{bottom:873.624000px;}
.yb6{bottom:874.501800px;}
.y12{bottom:882.600000px;}
.y12c{bottom:883.200000px;}
.y1b2{bottom:884.400000px;}
.yb0{bottom:886.500000px;}
.yeb{bottom:888.300000px;}
.y17c{bottom:889.200000px;}
.y43{bottom:889.218000px;}
.y130{bottom:896.700000px;}
.yb5{bottom:897.012000px;}
.y6f{bottom:897.024000px;}
.y128{bottom:900.300000px;}
.y1b1{bottom:903.600000px;}
.y11{bottom:906.000000px;}
.y17b{bottom:910.500000px;}
.y42{bottom:912.312000px;}
.yb4{bottom:920.106000px;}
.y6e{bottom:920.118000px;}
.y1b0{bottom:923.100000px;}
.y154{bottom:926.100000px;}
.y17a{bottom:927.906000px;}
.y10{bottom:929.400000px;}
.yab{bottom:933.000000px;}
.y41{bottom:935.712000px;}
.yad{bottom:939.588000px;}
.y105{bottom:942.003000px;}
.y1af{bottom:942.600000px;}
.yb3{bottom:943.506000px;}
.y6d{bottom:943.518000px;}
.yaa{bottom:951.000000px;}
.y179{bottom:951.306000px;}
.y124{bottom:951.312000px;}
.yf{bottom:952.500000px;}
.yac{bottom:957.894000px;}
.y104{bottom:958.800000px;}
.y40{bottom:959.112000px;}
.y1ae{bottom:962.100000px;}
.yb2{bottom:966.600000px;}
.y6c{bottom:966.612000px;}
.y178{bottom:974.400000px;}
.y123{bottom:974.406000px;}
.ye{bottom:976.494000px;}
.y1ad{bottom:981.300000px;}
.y3f{bottom:982.206000px;}
.y6b{bottom:990.012000px;}
.y177{bottom:996.000000px;}
.y122{bottom:997.806000px;}
.y1ac{bottom:1000.800000px;}
.yd{bottom:1003.794000px;}
.y3e{bottom:1005.606000px;}
.y6a{bottom:1013.412000px;}
.y1ab{bottom:1020.300000px;}
.y121{bottom:1021.206000px;}
.y3d{bottom:1029.006000px;}
.yc{bottom:1030.800000px;}
.y69{bottom:1036.506000px;}
.y1aa{bottom:1039.500000px;}
.y120{bottom:1044.300000px;}
.y3c{bottom:1052.100000px;}
.yb{bottom:1058.100000px;}
.y1a9{bottom:1059.000000px;}
.y68{bottom:1059.906000px;}
.y11f{bottom:1065.900000px;}
.y3b{bottom:1073.700000px;}
.y1a8{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y67{bottom:1083.306000px;}
.y3a{bottom:1091.100000px;}
.y1a7{bottom:1097.700000px;}
.y6{bottom:1103.400000px;}
.y66{bottom:1106.400000px;}
.y39{bottom:1112.400000px;}
.y1a6{bottom:1117.200000px;}
.y5{bottom:1129.200000px;}
.y38{bottom:1129.800000px;}
.y1a5{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y37{bottom:1153.200000px;}
.y1a4{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y36{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h13{height:20.880000px;}
.h1e{height:21.300000px;}
.h2b{height:21.600000px;}
.h5{height:23.401500px;}
.h9{height:23.998500px;}
.h20{height:26.698500px;}
.h22{height:27.000000px;}
.h4{height:31.320000px;}
.hf{height:35.136000px;}
.h10{height:41.760000px;}
.h30{height:42.598500px;}
.h2c{height:42.600000px;}
.h2f{height:42.898500px;}
.h2e{height:42.900000px;}
.h3{height:43.920000px;}
.h15{height:46.500000px;}
.h11{height:46.680000px;}
.h7{height:47.400000px;}
.h34{height:48.312000px;}
.h2{height:48.420000px;}
.he{height:52.200000px;}
.h1a{height:52.704000px;}
.h1d{height:53.262000px;}
.h1c{height:57.420000px;}
.h8{height:58.104000px;}
.h19{height:60.552000px;}
.h33{height:62.578125px;}
.hd{height:62.640000px;}
.h23{height:63.000000px;}
.hb{height:67.788000px;}
.h21{height:68.244000px;}
.h17{height:69.900000px;}
.h6{height:70.664062px;}
.ha{height:73.080000px;}
.hc{height:74.709375px;}
.h32{height:75.093750px;}
.h1f{height:85.200000px;}
.h18{height:93.300000px;}
.h12{height:99.001500px;}
.h2d{height:99.396000px;}
.h1b{height:107.100000px;}
.h29{height:109.200000px;}
.h28{height:119.790000px;}
.h25{height:124.608000px;}
.h27{height:125.796000px;}
.h24{height:129.426000px;}
.h14{height:140.700000px;}
.h2a{height:181.200000px;}
.h16{height:193.798500px;}
.h26{height:242.700000px;}
.h31{height:317.998500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w17{width:42.600000px;}
.w11{width:53.100000px;}
.wc{width:53.398500px;}
.w12{width:53.400000px;}
.w9{width:63.000000px;}
.we{width:63.600000px;}
.wf{width:63.901500px;}
.w13{width:64.800000px;}
.wb{width:73.200000px;}
.w10{width:74.400000px;}
.wd{width:81.601500px;}
.w1b{width:84.598500px;}
.w1a{width:96.301500px;}
.w18{width:106.200000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w1f{width:154.201500px;}
.w19{width:159.600000px;}
.w20{width:165.000000px;}
.w1d{width:180.600000px;}
.w7{width:340.200000px;}
.w14{width:350.100000px;}
.w1e{width:350.698500px;}
.w15{width:360.000000px;}
.w6{width:361.500000px;}
.w16{width:375.000000px;}
.wa{width:436.800000px;}
.w2{width:478.200000px;}
.w1c{width:669.900000px;}
.w5{width:701.700000px;}
.w8{width:702.898500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x7b{left:12.300000px;}
.x29{left:14.100000px;}
.x1a{left:15.300000px;}
.x7a{left:17.400000px;}
.x75{left:18.900000px;}
.x77{left:22.500000px;}
.x22{left:24.900000px;}
.x2e{left:26.700000px;}
.x7c{left:30.900000px;}
.x6b{left:32.400000px;}
.x7d{left:35.400000px;}
.x19{left:36.600000px;}
.x64{left:42.300000px;}
.x33{left:47.100000px;}
.x2f{left:48.600000px;}
.x6d{left:54.300000px;}
.x24{left:62.100000px;}
.x65{left:64.200000px;}
.x34{left:69.000000px;}
.x61{left:70.200000px;}
.x6e{left:75.900000px;}
.x3{left:79.800000px;}
.x66{left:86.100000px;}
.x1{left:91.500000px;}
.x9{left:95.700000px;}
.x79{left:97.195500px;}
.x55{left:99.000000px;}
.x4b{left:100.500000px;}
.x78{left:101.700000px;}
.x23{left:105.600000px;}
.x56{left:108.000000px;}
.x7f{left:111.600000px;}
.x2a{left:113.700000px;}
.x5d{left:119.700000px;}
.x2b{left:121.530000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x48{left:128.400000px;}
.x68{left:129.600000px;}
.x31{left:134.700000px;}
.x30{left:141.000000px;}
.x12{left:144.600000px;}
.x83{left:146.400000px;}
.x5c{left:151.188000px;}
.xe{left:154.800000px;}
.x82{left:159.900000px;}
.x50{left:168.600000px;}
.x1f{left:170.100000px;}
.x84{left:173.100000px;}
.x52{left:175.200000px;}
.x1b{left:180.600000px;}
.x76{left:195.000000px;}
.x3b{left:202.200000px;}
.x73{left:206.700000px;}
.x2d{left:211.500000px;}
.xf{left:219.600000px;}
.x1d{left:222.006000px;}
.xc{left:241.200000px;}
.x3c{left:244.200000px;}
.x57{left:252.588000px;}
.xb{left:255.300000px;}
.x54{left:257.400000px;}
.x5e{left:260.400000px;}
.x5b{left:261.600000px;}
.x3d{left:266.100000px;}
.x4d{left:272.700000px;}
.xd{left:280.800000px;}
.x3e{left:282.900000px;}
.x26{left:285.900000px;}
.x5f{left:287.700000px;}
.x60{left:303.000000px;}
.x3f{left:329.700000px;}
.x18{left:343.500000px;}
.x40{left:346.500000px;}
.x14{left:350.700000px;}
.x49{left:354.600000px;}
.xa{left:363.891000px;}
.x41{left:371.700000px;}
.x62{left:373.200000px;}
.x10{left:374.400000px;}
.x42{left:393.600000px;}
.x53{left:402.600000px;}
.x63{left:409.200000px;}
.x59{left:415.789500px;}
.x43{left:420.900000px;}
.x5a{left:426.600000px;}
.x4f{left:432.288000px;}
.x16{left:439.500000px;}
.x51{left:441.600000px;}
.x1c{left:444.900000px;}
.x2{left:446.400000px;}
.x11{left:449.400000px;}
.x1e{left:453.000000px;}
.x80{left:462.300000px;}
.x13{left:473.100000px;}
.x25{left:486.600000px;}
.x44{left:499.200000px;}
.x67{left:516.900000px;}
.x45{left:527.400000px;}
.x4c{left:535.500000px;}
.x69{left:538.800000px;}
.x46{left:552.600000px;}
.x5{left:558.000000px;}
.x6a{left:568.800000px;}
.x47{left:574.200000px;}
.x32{left:592.200000px;}
.x7e{left:597.000000px;}
.x6c{left:601.200000px;}
.x58{left:607.189500px;}
.x21{left:615.594000px;}
.x4e{left:620.388000px;}
.x17{left:623.100000px;}
.x28{left:637.206000px;}
.x6f{left:644.700000px;}
.x35{left:665.400000px;}
.x7{left:685.800000px;}
.x36{left:712.500000px;}
.x37{left:718.800000px;}
.x20{left:722.100000px;}
.x4a{left:726.900000px;}
.x2c{left:732.600000px;}
.x70{left:735.300000px;}
.x38{left:744.000000px;}
.x71{left:749.700000px;}
.x39{left:765.600000px;}
.x81{left:768.900000px;}
.x15{left:776.100000px;}
.x74{left:781.500000px;}
.x27{left:786.300000px;}
.x3a{left:787.500000px;}
.x72{left:796.800000px;}
@media print{
.va{vertical-align:-37.312000pt;}
.v2{vertical-align:-24.533333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.621333pt;}
.v3{vertical-align:21.333333pt;}
.v1{vertical-align:24.533333pt;}
.v9{vertical-align:37.312000pt;}
.v8{vertical-align:55.440000pt;}
.v6{vertical-align:59.722667pt;}
.v7{vertical-align:60.778667pt;}
.v5{vertical-align:64.005333pt;}
.ls4f{letter-spacing:-4.288000pt;}
.ls4e{letter-spacing:-3.200000pt;}
.ls3d{letter-spacing:-2.176000pt;}
.ls5a{letter-spacing:-1.600000pt;}
.ls36{letter-spacing:-1.408000pt;}
.ls6f{letter-spacing:-1.152000pt;}
.ls38{letter-spacing:-1.088000pt;}
.ls76{letter-spacing:-1.013333pt;}
.ls5f{letter-spacing:-0.896000pt;}
.ls75{letter-spacing:-0.853333pt;}
.ls33{letter-spacing:-0.832000pt;}
.ls43{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls48{letter-spacing:-0.494933pt;}
.ls70{letter-spacing:-0.480000pt;}
.ls4d{letter-spacing:-0.469333pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls47{letter-spacing:-0.433067pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls46{letter-spacing:-0.410667pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls4a{letter-spacing:-0.293333pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls7a{letter-spacing:-0.234667pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.176000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls35{letter-spacing:-0.128000pt;}
.ls59{letter-spacing:-0.117333pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls58{letter-spacing:-0.058667pt;}
.ls72{letter-spacing:-0.053333pt;}
.lse{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.053333pt;}
.ls57{letter-spacing:0.058667pt;}
.ls49{letter-spacing:0.061867pt;}
.ls12{letter-spacing:0.074667pt;}
.ls41{letter-spacing:0.085333pt;}
.ls3e{letter-spacing:0.102400pt;}
.lsd{letter-spacing:0.106667pt;}
.ls32{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.147200pt;}
.ls74{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.176000pt;}
.ls21{letter-spacing:0.179200pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.213333pt;}
.ls55{letter-spacing:0.234667pt;}
.ls13{letter-spacing:0.256000pt;}
.ls60{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.345600pt;}
.ls54{letter-spacing:0.352000pt;}
.ls5{letter-spacing:0.358400pt;}
.ls9{letter-spacing:0.364800pt;}
.ls5e{letter-spacing:0.371200pt;}
.ls17{letter-spacing:0.373333pt;}
.ls3f{letter-spacing:0.384000pt;}
.ls53{letter-spacing:0.390400pt;}
.ls7{letter-spacing:0.403200pt;}
.ls79{letter-spacing:0.410667pt;}
.ls40{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.428800pt;}
.ls6{letter-spacing:0.448000pt;}
.ls56{letter-spacing:0.469333pt;}
.ls71{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.512000pt;}
.ls31{letter-spacing:0.533333pt;}
.ls45{letter-spacing:0.576000pt;}
.ls64{letter-spacing:0.704000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls42{letter-spacing:0.896000pt;}
.ls26{letter-spacing:1.024000pt;}
.ls6e{letter-spacing:1.061333pt;}
.ls69{letter-spacing:1.066667pt;}
.ls77{letter-spacing:1.120000pt;}
.ls61{letter-spacing:1.280000pt;}
.ls30{letter-spacing:1.344000pt;}
.ls27{letter-spacing:2.112000pt;}
.ls63{letter-spacing:2.982400pt;}
.ls37{letter-spacing:3.200000pt;}
.lsa{letter-spacing:4.224000pt;}
.ls6c{letter-spacing:4.960000pt;}
.ls3a{letter-spacing:5.158400pt;}
.ls2f{letter-spacing:5.312000pt;}
.ls6d{letter-spacing:6.026667pt;}
.ls2d{letter-spacing:6.400000pt;}
.ls34{letter-spacing:7.424000pt;}
.ls24{letter-spacing:8.512000pt;}
.ls23{letter-spacing:8.537600pt;}
.lsb{letter-spacing:9.600000pt;}
.lsc{letter-spacing:11.712000pt;}
.ls44{letter-spacing:12.800000pt;}
.ls2c{letter-spacing:13.824000pt;}
.ls2b{letter-spacing:13.984000pt;}
.ls78{letter-spacing:14.560000pt;}
.ls2a{letter-spacing:14.912000pt;}
.ls66{letter-spacing:17.024000pt;}
.ls65{letter-spacing:17.068800pt;}
.ls29{letter-spacing:19.136000pt;}
.ls28{letter-spacing:19.200000pt;}
.ls3c{letter-spacing:20.224000pt;}
.ls67{letter-spacing:20.373333pt;}
.ls3b{letter-spacing:21.312000pt;}
.ls6a{letter-spacing:22.026667pt;}
.ls68{letter-spacing:24.160000pt;}
.ls6b{letter-spacing:49.760000pt;}
.ls62{letter-spacing:66.496000pt;}
.ls22{letter-spacing:171.712000pt;}
.ls39{letter-spacing:374.026667pt;}
.ls3{letter-spacing:710.026667pt;}
.ls1{letter-spacing:752.693333pt;}
.ls2{letter-spacing:943.626667pt;}
.ls5d{letter-spacing:1138.485333pt;}
.ls50{letter-spacing:1219.562667pt;}
.ls5b{letter-spacing:1223.786667pt;}
.ls0{letter-spacing:1242.293333pt;}
.ls52{letter-spacing:1708.080000pt;}
.ls51{letter-spacing:1785.930667pt;}
.ls5c{letter-spacing:1858.442667pt;}
.ws74{word-spacing:-21.312000pt;}
.ws5e{word-spacing:-19.200000pt;}
.ws6d{word-spacing:-17.600000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws37{word-spacing:-17.344000pt;}
.ws3d{word-spacing:-17.280000pt;}
.ws38{word-spacing:-17.216000pt;}
.ws5{word-spacing:-17.088000pt;}
.wsc{word-spacing:-17.024000pt;}
.ws3c{word-spacing:-16.960000pt;}
.ws6{word-spacing:-16.896000pt;}
.ws36{word-spacing:-16.832000pt;}
.ws3a{word-spacing:-16.704000pt;}
.wsb{word-spacing:-16.640000pt;}
.ws3b{word-spacing:-16.576000pt;}
.ws68{word-spacing:-16.518400pt;}
.ws6e{word-spacing:-16.320000pt;}
.ws39{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws85{word-spacing:-16.133333pt;}
.ws83{word-spacing:-16.016000pt;}
.ws65{word-spacing:-16.000000pt;}
.ws93{word-spacing:-15.957333pt;}
.wsd{word-spacing:-15.936000pt;}
.ws84{word-spacing:-15.898667pt;}
.ws69{word-spacing:-15.872000pt;}
.ws86{word-spacing:-15.722667pt;}
.wse{word-spacing:-15.680000pt;}
.ws87{word-spacing:-15.605333pt;}
.ws88{word-spacing:-15.546667pt;}
.wsc4{word-spacing:-15.429333pt;}
.ws82{word-spacing:-15.370667pt;}
.ws67{word-spacing:-15.253333pt;}
.wsc3{word-spacing:-15.194667pt;}
.ws9{word-spacing:-15.040000pt;}
.ws63{word-spacing:-14.912000pt;}
.wsa2{word-spacing:-14.720000pt;}
.ws6c{word-spacing:-14.666667pt;}
.ws8{word-spacing:-14.613333pt;}
.wsa8{word-spacing:-14.560000pt;}
.ws6a{word-spacing:-14.549333pt;}
.wsa3{word-spacing:-14.453333pt;}
.ws6b{word-spacing:-14.373333pt;}
.ws34{word-spacing:-14.346667pt;}
.wsa5{word-spacing:-14.293333pt;}
.ws35{word-spacing:-14.240000pt;}
.wsa4{word-spacing:-14.186667pt;}
.ws1{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.973333pt;}
.ws7{word-spacing:-13.866667pt;}
.ws73{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.813333pt;}
.wsa7{word-spacing:-13.493333pt;}
.wsa6{word-spacing:-13.386667pt;}
.wsa9{word-spacing:-13.226667pt;}
.wsa1{word-spacing:-13.013333pt;}
.ws99{word-spacing:-11.712000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws54{word-spacing:-8.512000pt;}
.ws4c{word-spacing:-7.424000pt;}
.ws50{word-spacing:-6.400000pt;}
.ws80{word-spacing:-5.312000pt;}
.ws59{word-spacing:-4.224000pt;}
.ws5a{word-spacing:-3.712000pt;}
.ws9d{word-spacing:-3.456000pt;}
.ws52{word-spacing:-3.200000pt;}
.wsb4{word-spacing:-3.146667pt;}
.ws5b{word-spacing:-3.136000pt;}
.ws9b{word-spacing:-2.816000pt;}
.ws26{word-spacing:-2.688000pt;}
.wsbf{word-spacing:-2.240000pt;}
.ws23{word-spacing:-2.112000pt;}
.ws8b{word-spacing:-1.728000pt;}
.ws77{word-spacing:-1.670400pt;}
.ws2d{word-spacing:-1.664000pt;}
.ws40{word-spacing:-1.600000pt;}
.wsc8{word-spacing:-1.173333pt;}
.wsc2{word-spacing:-1.120000pt;}
.ws6f{word-spacing:-1.024000pt;}
.wsca{word-spacing:-1.013333pt;}
.ws3f{word-spacing:-0.906667pt;}
.ws2b{word-spacing:-0.832000pt;}
.ws98{word-spacing:-0.821333pt;}
.ws15{word-spacing:-0.746667pt;}
.ws1f{word-spacing:-0.704000pt;}
.ws19{word-spacing:-0.586667pt;}
.ws2c{word-spacing:-0.576000pt;}
.wsb5{word-spacing:-0.533333pt;}
.ws2e{word-spacing:-0.512000pt;}
.wsf{word-spacing:-0.480000pt;}
.ws94{word-spacing:-0.448000pt;}
.ws11{word-spacing:-0.373333pt;}
.ws97{word-spacing:-0.352000pt;}
.ws17{word-spacing:-0.320000pt;}
.ws16{word-spacing:-0.256000pt;}
.ws12{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.192000pt;}
.ws79{word-spacing:-0.176000pt;}
.ws3e{word-spacing:-0.106667pt;}
.wsb6{word-spacing:-0.053333pt;}
.ws10{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.053333pt;}
.ws96{word-spacing:0.058667pt;}
.ws2f{word-spacing:0.064000pt;}
.ws95{word-spacing:0.128000pt;}
.wsb9{word-spacing:0.160000pt;}
.ws7b{word-spacing:0.176000pt;}
.ws46{word-spacing:0.192000pt;}
.ws14{word-spacing:0.224000pt;}
.ws43{word-spacing:0.256000pt;}
.ws1b{word-spacing:0.266667pt;}
.ws78{word-spacing:0.293333pt;}
.ws1d{word-spacing:0.320000pt;}
.ws8c{word-spacing:0.352000pt;}
.wsb1{word-spacing:0.373333pt;}
.ws30{word-spacing:0.384000pt;}
.ws7a{word-spacing:0.410667pt;}
.ws1a{word-spacing:0.426667pt;}
.ws75{word-spacing:0.433067pt;}
.ws42{word-spacing:0.448000pt;}
.wscf{word-spacing:0.469333pt;}
.wsc9{word-spacing:0.480000pt;}
.ws76{word-spacing:0.494933pt;}
.ws18{word-spacing:0.512000pt;}
.ws9f{word-spacing:0.704000pt;}
.wsbc{word-spacing:0.746667pt;}
.ws8e{word-spacing:0.768000pt;}
.ws7d{word-spacing:0.821333pt;}
.ws44{word-spacing:0.832000pt;}
.wsbb{word-spacing:0.853333pt;}
.ws8d{word-spacing:0.896000pt;}
.wsbe{word-spacing:1.066667pt;}
.ws56{word-spacing:1.088000pt;}
.wsba{word-spacing:1.120000pt;}
.ws64{word-spacing:1.152000pt;}
.ws24{word-spacing:1.408000pt;}
.ws45{word-spacing:1.472000pt;}
.ws25{word-spacing:1.536000pt;}
.wsc5{word-spacing:1.546667pt;}
.ws8a{word-spacing:1.600000pt;}
.ws51{word-spacing:1.792000pt;}
.wsa0{word-spacing:1.920000pt;}
.ws58{word-spacing:2.176000pt;}
.ws89{word-spacing:2.432000pt;}
.ws92{word-spacing:2.496000pt;}
.ws47{word-spacing:2.560000pt;}
.ws1e{word-spacing:2.624000pt;}
.ws7e{word-spacing:2.688000pt;}
.ws66{word-spacing:2.880000pt;}
.wsce{word-spacing:3.168000pt;}
.ws7f{word-spacing:3.200000pt;}
.ws72{word-spacing:3.264000pt;}
.wscd{word-spacing:3.520000pt;}
.ws62{word-spacing:3.584000pt;}
.ws53{word-spacing:3.712000pt;}
.wsb7{word-spacing:3.840000pt;}
.ws81{word-spacing:4.288000pt;}
.wsbd{word-spacing:4.320000pt;}
.ws31{word-spacing:4.608000pt;}
.ws2a{word-spacing:4.736000pt;}
.ws61{word-spacing:5.120000pt;}
.ws29{word-spacing:5.824000pt;}
.wsc0{word-spacing:6.453333pt;}
.ws28{word-spacing:6.464000pt;}
.ws27{word-spacing:6.784000pt;}
.ws4f{word-spacing:6.912000pt;}
.ws8f{word-spacing:7.232000pt;}
.ws91{word-spacing:7.872000pt;}
.ws48{word-spacing:7.936000pt;}
.ws41{word-spacing:8.576000pt;}
.ws9e{word-spacing:8.896000pt;}
.wsc1{word-spacing:9.653333pt;}
.wsab{word-spacing:9.664000pt;}
.ws33{word-spacing:9.856000pt;}
.wsaa{word-spacing:9.984000pt;}
.ws71{word-spacing:10.048000pt;}
.ws70{word-spacing:11.008000pt;}
.ws9c{word-spacing:11.136000pt;}
.ws32{word-spacing:11.776000pt;}
.ws90{word-spacing:12.224000pt;}
.wsae{word-spacing:12.480000pt;}
.wscc{word-spacing:12.730667pt;}
.wsad{word-spacing:12.864000pt;}
.ws20{word-spacing:13.184000pt;}
.wscb{word-spacing:13.200000pt;}
.ws21{word-spacing:13.312000pt;}
.ws4d{word-spacing:13.888000pt;}
.ws4e{word-spacing:14.208000pt;}
.ws57{word-spacing:14.976000pt;}
.wsc7{word-spacing:16.000000pt;}
.ws49{word-spacing:16.512000pt;}
.wsac{word-spacing:17.088000pt;}
.ws55{word-spacing:17.408000pt;}
.ws7c{word-spacing:17.482667pt;}
.wsaf{word-spacing:17.536000pt;}
.ws4a{word-spacing:18.944000pt;}
.ws22{word-spacing:19.264000pt;}
.ws4b{word-spacing:19.712000pt;}
.ws5f{word-spacing:20.288000pt;}
.ws60{word-spacing:20.608000pt;}
.ws5c{word-spacing:21.056000pt;}
.ws5d{word-spacing:22.784000pt;}
.wsb0{word-spacing:24.426667pt;}
.ws9a{word-spacing:27.136000pt;}
.wsb3{word-spacing:49.440000pt;}
.wsb2{word-spacing:49.546667pt;}
.wsc6{word-spacing:65.120000pt;}
.wsb8{word-spacing:139.786667pt;}
._25{margin-left:-21.740800pt;}
._26{margin-left:-20.812800pt;}
._1d{margin-left:-19.564800pt;}
._1e{margin-left:-18.662400pt;}
._1f{margin-left:-17.772800pt;}
._23{margin-left:-15.910400pt;}
._21{margin-left:-14.995200pt;}
._22{margin-left:-13.958400pt;}
._24{margin-left:-12.857600pt;}
._55{margin-left:-11.923200pt;}
._56{margin-left:-10.931200pt;}
._19{margin-left:-9.075200pt;}
._17{margin-left:-8.121600pt;}
._18{margin-left:-7.180800pt;}
._16{margin-left:-5.670400pt;}
._10{margin-left:-4.345600pt;}
._c{margin-left:-2.752000pt;}
._5{margin-left:-1.824000pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._6{width:2.208000pt;}
._a{width:3.161600pt;}
._e{width:4.185600pt;}
._d{width:5.120000pt;}
._9{width:6.252800pt;}
._b{width:7.699200pt;}
._7{width:9.472000pt;}
._8{width:10.553600pt;}
._45{width:11.445333pt;}
._f{width:12.373333pt;}
._1a{width:13.440000pt;}
._15{width:14.566400pt;}
._13{width:15.507200pt;}
._61{width:16.472533pt;}
._20{width:18.694400pt;}
._14{width:19.616000pt;}
._1c{width:21.286400pt;}
._27{width:22.758400pt;}
._5b{width:24.008533pt;}
._5a{width:24.913067pt;}
._58{width:26.457600pt;}
._57{width:27.353600pt;}
._53{width:30.060800pt;}
._54{width:31.360000pt;}
._28{width:42.592000pt;}
._59{width:44.160000pt;}
._5c{width:49.728000pt;}
._60{width:53.018667pt;}
._5d{width:54.734933pt;}
._5e{width:55.675733pt;}
._5f{width:56.916267pt;}
._4c{width:61.189333pt;}
._2b{width:64.005333pt;}
._2c{width:65.061333pt;}
._4b{width:68.352000pt;}
._3e{width:69.402667pt;}
._36{width:70.458667pt;}
._3c{width:73.626667pt;}
._3b{width:75.797333pt;}
._4e{width:83.605333pt;}
._4f{width:99.616000pt;}
._39{width:101.376000pt;}
._29{width:102.432000pt;}
._4d{width:104.544000pt;}
._34{width:106.186667pt;}
._37{width:107.770667pt;}
._31{width:109.589333pt;}
._33{width:111.349333pt;}
._50{width:118.037333pt;}
._2e{width:122.730667pt;}
._46{width:137.984000pt;}
._2a{width:139.744000pt;}
._3d{width:143.322667pt;}
._3a{width:146.549333pt;}
._2f{width:147.605333pt;}
._49{width:149.424000pt;}
._38{width:151.360000pt;}
._2d{width:152.533333pt;}
._48{width:156.405333pt;}
._4a{width:161.098667pt;}
._52{width:165.381333pt;}
._51{width:172.362667pt;}
._47{width:182.042667pt;}
._30{width:189.376000pt;}
._32{width:220.762667pt;}
._35{width:223.520000pt;}
._1b{width:320.309333pt;}
._44{width:462.410667pt;}
._42{width:519.786667pt;}
._3f{width:544.309333pt;}
._40{width:560.325333pt;}
._41{width:578.453333pt;}
._43{width:582.384000pt;}
._3{width:680.800000pt;}
._12{width:719.317333pt;}
._4{width:730.293333pt;}
._11{width:820.960000pt;}
._2{width:893.706667pt;}
.fs6{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs8{font-size:61.866667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.ybe{bottom:4.000000pt;}
.y109{bottom:4.001333pt;}
.yf2{bottom:4.266667pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.333333pt;}
.ybf{bottom:7.466667pt;}
.ycc{bottom:8.800000pt;}
.yd1{bottom:9.066667pt;}
.ybb{bottom:14.133333pt;}
.yba{bottom:22.400000pt;}
.y137{bottom:22.933333pt;}
.y13e{bottom:23.200000pt;}
.y9a{bottom:25.333333pt;}
.ya1{bottom:45.866667pt;}
.y4{bottom:60.266667pt;}
.yaf{bottom:66.666667pt;}
.y94{bottom:82.933333pt;}
.y1a3{bottom:85.600000pt;}
.y65{bottom:86.480000pt;}
.y153{bottom:87.205333pt;}
.yea{bottom:88.266667pt;}
.ya9{bottom:91.744000pt;}
.y103{bottom:94.133333pt;}
.y11e{bottom:95.760000pt;}
.y91{bottom:100.272000pt;}
.y35{bottom:101.354667pt;}
.y1a2{bottom:102.933333pt;}
.y64{bottom:107.280000pt;}
.y152{bottom:107.733333pt;}
.ye9{bottom:109.066667pt;}
.y102{bottom:109.344000pt;}
.ya8{bottom:112.544000pt;}
.y176{bottom:113.946667pt;}
.y11d{bottom:116.288000pt;}
.y1a1{bottom:120.000000pt;}
.y90{bottom:120.800000pt;}
.y16b{bottom:121.077333pt;}
.y34{bottom:122.154667pt;}
.y63{bottom:127.808000pt;}
.y151{bottom:128.533333pt;}
.ye8{bottom:129.866667pt;}
.y101{bottom:130.144000pt;}
.ya7{bottom:133.344000pt;}
.y175{bottom:134.746667pt;}
.y11c{bottom:137.088000pt;}
.y1a0{bottom:137.333333pt;}
.y8f{bottom:141.600000pt;}
.y16a{bottom:141.877333pt;}
.y33{bottom:142.954667pt;}
.ye7{bottom:148.000000pt;}
.y62{bottom:148.608000pt;}
.y150{bottom:149.333333pt;}
.y100{bottom:150.944000pt;}
.ya6{bottom:153.872000pt;}
.y19f{bottom:154.666667pt;}
.y174{bottom:155.546667pt;}
.y11b{bottom:157.888000pt;}
.ye6{bottom:160.810667pt;}
.y8e{bottom:162.400000pt;}
.y169{bottom:162.677333pt;}
.y32{bottom:163.482667pt;}
.y9d{bottom:166.933333pt;}
.y14f{bottom:168.266667pt;}
.y61{bottom:169.136000pt;}
.yff{bottom:171.472000pt;}
.y19e{bottom:171.733333pt;}
.ya5{bottom:174.672000pt;}
.y173{bottom:176.074667pt;}
.y11a{bottom:178.416000pt;}
.ye5{bottom:181.610667pt;}
.y8d{bottom:182.933333pt;}
.y168{bottom:183.205333pt;}
.y14e{bottom:183.738667pt;}
.y31{bottom:184.282667pt;}
.y19d{bottom:189.066667pt;}
.y60{bottom:189.936000pt;}
.yfe{bottom:192.272000pt;}
.ya4{bottom:195.200000pt;}
.y172{bottom:196.874667pt;}
.y119{bottom:199.216000pt;}
.ye4{bottom:202.410667pt;}
.y8c{bottom:203.733333pt;}
.y167{bottom:204.005333pt;}
.y14d{bottom:204.538667pt;}
.y30{bottom:205.082667pt;}
.y19c{bottom:206.400000pt;}
.y5f{bottom:210.736000pt;}
.yfd{bottom:213.072000pt;}
.ya3{bottom:214.400000pt;}
.y171{bottom:217.674667pt;}
.y118{bottom:220.016000pt;}
.ye3{bottom:222.938667pt;}
.y19b{bottom:223.733333pt;}
.y166{bottom:224.533333pt;}
.y8b{bottom:224.544000pt;}
.y14c{bottom:225.066667pt;}
.ya0{bottom:225.333333pt;}
.y2f{bottom:225.610667pt;}
.y5e{bottom:231.264000pt;}
.yfc{bottom:233.600000pt;}
.y170{bottom:238.202667pt;}
.y117{bottom:240.544000pt;}
.y19a{bottom:240.800000pt;}
.ye2{bottom:243.738667pt;}
.y8a{bottom:245.072000pt;}
.y165{bottom:245.333333pt;}
.y14b{bottom:245.866667pt;}
.y2e{bottom:246.410667pt;}
.ya2{bottom:250.400000pt;}
.y5d{bottom:252.064000pt;}
.yfb{bottom:252.800000pt;}
.y199{bottom:258.133333pt;}
.y16f{bottom:259.002667pt;}
.y116{bottom:261.344000pt;}
.ye1{bottom:264.266667pt;}
.y164{bottom:264.533333pt;}
.y89{bottom:265.872000pt;}
.y14a{bottom:266.666667pt;}
.y2d{bottom:266.938667pt;}
.yfa{bottom:268.272000pt;}
.y5c{bottom:272.864000pt;}
.y198{bottom:275.466667pt;}
.y16e{bottom:279.802667pt;}
.y163{bottom:280.016000pt;}
.y115{bottom:282.144000pt;}
.y149{bottom:284.800000pt;}
.ye0{bottom:285.066667pt;}
.y88{bottom:286.400000pt;}
.y9c{bottom:287.466667pt;}
.y2c{bottom:287.738667pt;}
.yf9{bottom:288.800000pt;}
.y9f{bottom:292.000000pt;}
.y197{bottom:292.533333pt;}
.y5b{bottom:293.392000pt;}
.y148{bottom:293.866667pt;}
.y16d{bottom:300.330667pt;}
.y162{bottom:300.544000pt;}
.y114{bottom:302.672000pt;}
.ydf{bottom:304.266667pt;}
.y87{bottom:307.200000pt;}
.y9e{bottom:308.000000pt;}
.y2b{bottom:308.538667pt;}
.yf8{bottom:309.600000pt;}
.y196{bottom:309.866667pt;}
.y5a{bottom:314.192000pt;}
.yde{bottom:315.733333pt;}
.y16c{bottom:321.130667pt;}
.y161{bottom:321.344000pt;}
.ydd{bottom:322.133333pt;}
.y113{bottom:323.472000pt;}
.y86{bottom:326.400000pt;}
.y195{bottom:327.200000pt;}
.y2a{bottom:329.066667pt;}
.yf7{bottom:330.400000pt;}
.y59{bottom:334.992000pt;}
.y147{bottom:335.732000pt;}
.y85{bottom:341.658667pt;}
.y160{bottom:341.872000pt;}
.y112{bottom:344.000000pt;}
.y194{bottom:344.266667pt;}
.ydc{bottom:346.933333pt;}
.y29{bottom:348.266667pt;}
.yf5{bottom:350.402667pt;}
.yf6{bottom:350.666667pt;}
.y146{bottom:354.666667pt;}
.y58{bottom:355.520000pt;}
.y193{bottom:361.600000pt;}
.y84{bottom:362.458667pt;}
.y15f{bottom:362.672000pt;}
.y28{bottom:363.733333pt;}
.ydb{bottom:364.800000pt;}
.yf4{bottom:365.333333pt;}
.y144{bottom:369.600000pt;}
.yda{bottom:371.466667pt;}
.y57{bottom:376.320000pt;}
.y192{bottom:378.933333pt;}
.y27{bottom:382.666667pt;}
.y145{bottom:383.200000pt;}
.y83{bottom:383.258667pt;}
.y15e{bottom:383.472000pt;}
.y111{bottom:385.600000pt;}
.yd9{bottom:389.600000pt;}
.yd8{bottom:396.000000pt;}
.y191{bottom:396.266667pt;}
.y56{bottom:397.120000pt;}
.y26{bottom:398.160000pt;}
.y82{bottom:403.786667pt;}
.y15d{bottom:404.000000pt;}
.y110{bottom:404.533333pt;}
.y143{bottom:408.266667pt;}
.y190{bottom:413.333333pt;}
.yd7{bottom:414.133333pt;}
.y55{bottom:417.648000pt;}
.y25{bottom:418.960000pt;}
.y10f{bottom:420.005333pt;}
.yd6{bottom:420.533333pt;}
.y81{bottom:424.586667pt;}
.y15c{bottom:424.800000pt;}
.y141{bottom:428.000000pt;}
.y18f{bottom:430.666667pt;}
.y54{bottom:438.448000pt;}
.y24{bottom:439.488000pt;}
.y10e{bottom:440.805333pt;}
.y142{bottom:441.600000pt;}
.y15b{bottom:444.000000pt;}
.yd5{bottom:445.333333pt;}
.y80{bottom:445.386667pt;}
.y18e{bottom:448.000000pt;}
.y53{bottom:458.976000pt;}
.y15a{bottom:459.205333pt;}
.y23{bottom:460.288000pt;}
.y10d{bottom:461.333333pt;}
.y9b{bottom:462.666667pt;}
.y18d{bottom:465.066667pt;}
.y7f{bottom:465.914667pt;}
.y1c3{bottom:466.133333pt;}
.y140{bottom:466.666667pt;}
.yf1{bottom:469.600000pt;}
.yd4{bottom:469.866667pt;}
.y99{bottom:473.600000pt;}
.y52{bottom:479.776000pt;}
.y159{bottom:480.005333pt;}
.y22{bottom:481.088000pt;}
.y10c{bottom:482.133333pt;}
.y18c{bottom:482.400000pt;}
.y1c2{bottom:483.466667pt;}
.y13d{bottom:486.400000pt;}
.y7e{bottom:486.714667pt;}
.yd3{bottom:488.000000pt;}
.yf3{bottom:488.800000pt;}
.yf0{bottom:488.801333pt;}
.y13f{bottom:490.666667pt;}
.yd2{bottom:494.400000pt;}
.y18b{bottom:499.733333pt;}
.y1c1{bottom:500.533333pt;}
.y51{bottom:500.576000pt;}
.y158{bottom:500.805333pt;}
.y21{bottom:501.616000pt;}
.y10b{bottom:502.402667pt;}
.y7d{bottom:507.514667pt;}
.yd0{bottom:512.533333pt;}
.y98{bottom:514.933333pt;}
.y18a{bottom:516.800000pt;}
.y10a{bottom:517.333333pt;}
.y1c0{bottom:518.133333pt;}
.ycf{bottom:518.933333pt;}
.y50{bottom:521.104000pt;}
.y157{bottom:521.333333pt;}
.y20{bottom:522.416000pt;}
.y13b{bottom:525.066667pt;}
.y7c{bottom:528.042667pt;}
.y13c{bottom:529.333333pt;}
.y189{bottom:534.133333pt;}
.y97{bottom:535.728000pt;}
.y1bf{bottom:537.066667pt;}
.y156{bottom:537.600000pt;}
.y4f{bottom:541.904000pt;}
.y1f{bottom:543.216000pt;}
.yce{bottom:543.733333pt;}
.y7b{bottom:548.842667pt;}
.y13a{bottom:549.072000pt;}
.y188{bottom:551.466667pt;}
.y1be{bottom:554.933333pt;}
.y155{bottom:558.400000pt;}
.y4e{bottom:562.704000pt;}
.y1e{bottom:563.744000pt;}
.y139{bottom:568.006667pt;}
.ycd{bottom:568.266667pt;}
.y187{bottom:568.800000pt;}
.y7a{bottom:569.642667pt;}
.y1bd{bottom:569.866667pt;}
.y136{bottom:582.933333pt;}
.y4d{bottom:583.232000pt;}
.y1d{bottom:584.544000pt;}
.y186{bottom:585.866667pt;}
.ycb{bottom:586.400000pt;}
.y1bc{bottom:588.801333pt;}
.y79{bottom:590.170667pt;}
.yca{bottom:592.800000pt;}
.y138{bottom:596.533333pt;}
.y185{bottom:603.200000pt;}
.y4c{bottom:604.032000pt;}
.y1c{bottom:605.344000pt;}
.y1bb{bottom:608.000000pt;}
.y78{bottom:610.970667pt;}
.yc9{bottom:617.333333pt;}
.y184{bottom:620.533333pt;}
.y134{bottom:620.800000pt;}
.y4b{bottom:624.832000pt;}
.y1b{bottom:625.872000pt;}
.y1ba{bottom:630.933333pt;}
.y77{bottom:631.498667pt;}
.y135{bottom:634.400000pt;}
.yb9{bottom:635.466667pt;}
.y183{bottom:637.600000pt;}
.y93{bottom:640.000000pt;}
.yc3{bottom:642.933333pt;}
.y133{bottom:643.733333pt;}
.y96{bottom:644.528000pt;}
.y4a{bottom:645.360000pt;}
.y1a{bottom:646.672000pt;}
.y76{bottom:652.298667pt;}
.y182{bottom:654.933333pt;}
.y131{bottom:659.466667pt;}
.y95{bottom:660.800000pt;}
.y132{bottom:663.733333pt;}
.y49{bottom:666.160000pt;}
.y19{bottom:667.200000pt;}
.y1b9{bottom:669.065333pt;}
.yc0{bottom:672.266667pt;}
.yc7{bottom:672.800000pt;}
.y75{bottom:673.098667pt;}
.yc4{bottom:673.866667pt;}
.yc8{bottom:677.600000pt;}
.y127{bottom:679.200000pt;}
.yc5{bottom:682.133333pt;}
.yc2{bottom:683.733333pt;}
.y18{bottom:686.400000pt;}
.y48{bottom:686.688000pt;}
.y1b8{bottom:688.000000pt;}
.y181{bottom:689.333333pt;}
.yef{bottom:689.338667pt;}
.yc1{bottom:693.066667pt;}
.y74{bottom:693.626667pt;}
.yc6{bottom:694.666667pt;}
.y17{bottom:701.066667pt;}
.yee{bottom:704.533333pt;}
.y1b7{bottom:705.866667pt;}
.y180{bottom:706.666667pt;}
.y47{bottom:707.488000pt;}
.ybd{bottom:711.733333pt;}
.y73{bottom:714.426667pt;}
.ybc{bottom:716.533333pt;}
.y16{bottom:718.400000pt;}
.y1b6{bottom:720.533333pt;}
.y17f{bottom:724.000000pt;}
.y46{bottom:728.288000pt;}
.y92{bottom:730.933333pt;}
.y15{bottom:734.666667pt;}
.y72{bottom:735.226667pt;}
.yb8{bottom:736.000000pt;}
.y108{bottom:736.265333pt;}
.y1b5{bottom:737.866667pt;}
.y12a{bottom:741.333333pt;}
.y107{bottom:741.342667pt;}
.yae{bottom:741.866667pt;}
.y126{bottom:744.798667pt;}
.y12b{bottom:745.600000pt;}
.y45{bottom:748.816000pt;}
.y14{bottom:749.333333pt;}
.y1b4{bottom:754.133333pt;}
.y71{bottom:755.754667pt;}
.y106{bottom:756.537333pt;}
.yb7{bottom:756.800000pt;}
.y17e{bottom:758.400000pt;}
.y125{bottom:763.733333pt;}
.y12d{bottom:765.866667pt;}
.y13{bottom:766.666667pt;}
.y12e{bottom:766.933333pt;}
.yb1{bottom:767.200000pt;}
.y1b3{bottom:768.800000pt;}
.y44{bottom:769.616000pt;}
.y129{bottom:771.466667pt;}
.y12f{bottom:772.266667pt;}
.yec{bottom:774.669333pt;}
.y17d{bottom:774.933333pt;}
.yed{bottom:775.740000pt;}
.y70{bottom:776.554667pt;}
.yb6{bottom:777.334933pt;}
.y12{bottom:784.533333pt;}
.y12c{bottom:785.066667pt;}
.y1b2{bottom:786.133333pt;}
.yb0{bottom:788.000000pt;}
.yeb{bottom:789.600000pt;}
.y17c{bottom:790.400000pt;}
.y43{bottom:790.416000pt;}
.y130{bottom:797.066667pt;}
.yb5{bottom:797.344000pt;}
.y6f{bottom:797.354667pt;}
.y128{bottom:800.266667pt;}
.y1b1{bottom:803.200000pt;}
.y11{bottom:805.333333pt;}
.y17b{bottom:809.333333pt;}
.y42{bottom:810.944000pt;}
.yb4{bottom:817.872000pt;}
.y6e{bottom:817.882667pt;}
.y1b0{bottom:820.533333pt;}
.y154{bottom:823.200000pt;}
.y17a{bottom:824.805333pt;}
.y10{bottom:826.133333pt;}
.yab{bottom:829.333333pt;}
.y41{bottom:831.744000pt;}
.yad{bottom:835.189333pt;}
.y105{bottom:837.336000pt;}
.y1af{bottom:837.866667pt;}
.yb3{bottom:838.672000pt;}
.y6d{bottom:838.682667pt;}
.yaa{bottom:845.333333pt;}
.y179{bottom:845.605333pt;}
.y124{bottom:845.610667pt;}
.yf{bottom:846.666667pt;}
.yac{bottom:851.461333pt;}
.y104{bottom:852.266667pt;}
.y40{bottom:852.544000pt;}
.y1ae{bottom:855.200000pt;}
.yb2{bottom:859.200000pt;}
.y6c{bottom:859.210667pt;}
.y178{bottom:866.133333pt;}
.y123{bottom:866.138667pt;}
.ye{bottom:867.994667pt;}
.y1ad{bottom:872.266667pt;}
.y3f{bottom:873.072000pt;}
.y6b{bottom:880.010667pt;}
.y177{bottom:885.333333pt;}
.y122{bottom:886.938667pt;}
.y1ac{bottom:889.600000pt;}
.yd{bottom:892.261333pt;}
.y3e{bottom:893.872000pt;}
.y6a{bottom:900.810667pt;}
.y1ab{bottom:906.933333pt;}
.y121{bottom:907.738667pt;}
.y3d{bottom:914.672000pt;}
.yc{bottom:916.266667pt;}
.y69{bottom:921.338667pt;}
.y1aa{bottom:924.000000pt;}
.y120{bottom:928.266667pt;}
.y3c{bottom:935.200000pt;}
.yb{bottom:940.533333pt;}
.y1a9{bottom:941.333333pt;}
.y68{bottom:942.138667pt;}
.y11f{bottom:947.466667pt;}
.y3b{bottom:954.400000pt;}
.y1a8{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y67{bottom:962.938667pt;}
.y3a{bottom:969.866667pt;}
.y1a7{bottom:975.733333pt;}
.y6{bottom:980.800000pt;}
.y66{bottom:983.466667pt;}
.y39{bottom:988.800000pt;}
.y1a6{bottom:993.066667pt;}
.y5{bottom:1003.733333pt;}
.y38{bottom:1004.266667pt;}
.y1a5{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y37{bottom:1025.066667pt;}
.y1a4{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y36{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h13{height:18.560000pt;}
.h1e{height:18.933333pt;}
.h2b{height:19.200000pt;}
.h5{height:20.801333pt;}
.h9{height:21.332000pt;}
.h20{height:23.732000pt;}
.h22{height:24.000000pt;}
.h4{height:27.840000pt;}
.hf{height:31.232000pt;}
.h10{height:37.120000pt;}
.h30{height:37.865333pt;}
.h2c{height:37.866667pt;}
.h2f{height:38.132000pt;}
.h2e{height:38.133333pt;}
.h3{height:39.040000pt;}
.h15{height:41.333333pt;}
.h11{height:41.493333pt;}
.h7{height:42.133333pt;}
.h34{height:42.944000pt;}
.h2{height:43.040000pt;}
.he{height:46.400000pt;}
.h1a{height:46.848000pt;}
.h1d{height:47.344000pt;}
.h1c{height:51.040000pt;}
.h8{height:51.648000pt;}
.h19{height:53.824000pt;}
.h33{height:55.625000pt;}
.hd{height:55.680000pt;}
.h23{height:56.000000pt;}
.hb{height:60.256000pt;}
.h21{height:60.661333pt;}
.h17{height:62.133333pt;}
.h6{height:62.812500pt;}
.ha{height:64.960000pt;}
.hc{height:66.408333pt;}
.h32{height:66.750000pt;}
.h1f{height:75.733333pt;}
.h18{height:82.933333pt;}
.h12{height:88.001333pt;}
.h2d{height:88.352000pt;}
.h1b{height:95.200000pt;}
.h29{height:97.066667pt;}
.h28{height:106.480000pt;}
.h25{height:110.762667pt;}
.h27{height:111.818667pt;}
.h24{height:115.045333pt;}
.h14{height:125.066667pt;}
.h2a{height:161.066667pt;}
.h16{height:172.265333pt;}
.h26{height:215.733333pt;}
.h31{height:282.665333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w17{width:37.866667pt;}
.w11{width:47.200000pt;}
.wc{width:47.465333pt;}
.w12{width:47.466667pt;}
.w9{width:56.000000pt;}
.we{width:56.533333pt;}
.wf{width:56.801333pt;}
.w13{width:57.600000pt;}
.wb{width:65.066667pt;}
.w10{width:66.133333pt;}
.wd{width:72.534667pt;}
.w1b{width:75.198667pt;}
.w1a{width:85.601333pt;}
.w18{width:94.400000pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w1f{width:137.068000pt;}
.w19{width:141.866667pt;}
.w20{width:146.666667pt;}
.w1d{width:160.533333pt;}
.w7{width:302.400000pt;}
.w14{width:311.200000pt;}
.w1e{width:311.732000pt;}
.w15{width:320.000000pt;}
.w6{width:321.333333pt;}
.w16{width:333.333333pt;}
.wa{width:388.266667pt;}
.w2{width:425.066667pt;}
.w1c{width:595.466667pt;}
.w5{width:623.733333pt;}
.w8{width:624.798667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x7b{left:10.933333pt;}
.x29{left:12.533333pt;}
.x1a{left:13.600000pt;}
.x7a{left:15.466667pt;}
.x75{left:16.800000pt;}
.x77{left:20.000000pt;}
.x22{left:22.133333pt;}
.x2e{left:23.733333pt;}
.x7c{left:27.466667pt;}
.x6b{left:28.800000pt;}
.x7d{left:31.466667pt;}
.x19{left:32.533333pt;}
.x64{left:37.600000pt;}
.x33{left:41.866667pt;}
.x2f{left:43.200000pt;}
.x6d{left:48.266667pt;}
.x24{left:55.200000pt;}
.x65{left:57.066667pt;}
.x34{left:61.333333pt;}
.x61{left:62.400000pt;}
.x6e{left:67.466667pt;}
.x3{left:70.933333pt;}
.x66{left:76.533333pt;}
.x1{left:81.333333pt;}
.x9{left:85.066667pt;}
.x79{left:86.396000pt;}
.x55{left:88.000000pt;}
.x4b{left:89.333333pt;}
.x78{left:90.400000pt;}
.x23{left:93.866667pt;}
.x56{left:96.000000pt;}
.x7f{left:99.200000pt;}
.x2a{left:101.066667pt;}
.x5d{left:106.400000pt;}
.x2b{left:108.026667pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x48{left:114.133333pt;}
.x68{left:115.200000pt;}
.x31{left:119.733333pt;}
.x30{left:125.333333pt;}
.x12{left:128.533333pt;}
.x83{left:130.133333pt;}
.x5c{left:134.389333pt;}
.xe{left:137.600000pt;}
.x82{left:142.133333pt;}
.x50{left:149.866667pt;}
.x1f{left:151.200000pt;}
.x84{left:153.866667pt;}
.x52{left:155.733333pt;}
.x1b{left:160.533333pt;}
.x76{left:173.333333pt;}
.x3b{left:179.733333pt;}
.x73{left:183.733333pt;}
.x2d{left:188.000000pt;}
.xf{left:195.200000pt;}
.x1d{left:197.338667pt;}
.xc{left:214.400000pt;}
.x3c{left:217.066667pt;}
.x57{left:224.522667pt;}
.xb{left:226.933333pt;}
.x54{left:228.800000pt;}
.x5e{left:231.466667pt;}
.x5b{left:232.533333pt;}
.x3d{left:236.533333pt;}
.x4d{left:242.400000pt;}
.xd{left:249.600000pt;}
.x3e{left:251.466667pt;}
.x26{left:254.133333pt;}
.x5f{left:255.733333pt;}
.x60{left:269.333333pt;}
.x3f{left:293.066667pt;}
.x18{left:305.333333pt;}
.x40{left:308.000000pt;}
.x14{left:311.733333pt;}
.x49{left:315.200000pt;}
.xa{left:323.458667pt;}
.x41{left:330.400000pt;}
.x62{left:331.733333pt;}
.x10{left:332.800000pt;}
.x42{left:349.866667pt;}
.x53{left:357.866667pt;}
.x63{left:363.733333pt;}
.x59{left:369.590667pt;}
.x43{left:374.133333pt;}
.x5a{left:379.200000pt;}
.x4f{left:384.256000pt;}
.x16{left:390.666667pt;}
.x51{left:392.533333pt;}
.x1c{left:395.466667pt;}
.x2{left:396.800000pt;}
.x11{left:399.466667pt;}
.x1e{left:402.666667pt;}
.x80{left:410.933333pt;}
.x13{left:420.533333pt;}
.x25{left:432.533333pt;}
.x44{left:443.733333pt;}
.x67{left:459.466667pt;}
.x45{left:468.800000pt;}
.x4c{left:476.000000pt;}
.x69{left:478.933333pt;}
.x46{left:491.200000pt;}
.x5{left:496.000000pt;}
.x6a{left:505.600000pt;}
.x47{left:510.400000pt;}
.x32{left:526.400000pt;}
.x7e{left:530.666667pt;}
.x6c{left:534.400000pt;}
.x58{left:539.724000pt;}
.x21{left:547.194667pt;}
.x4e{left:551.456000pt;}
.x17{left:553.866667pt;}
.x28{left:566.405333pt;}
.x6f{left:573.066667pt;}
.x35{left:591.466667pt;}
.x7{left:609.600000pt;}
.x36{left:633.333333pt;}
.x37{left:638.933333pt;}
.x20{left:641.866667pt;}
.x4a{left:646.133333pt;}
.x2c{left:651.200000pt;}
.x70{left:653.600000pt;}
.x38{left:661.333333pt;}
.x71{left:666.400000pt;}
.x39{left:680.533333pt;}
.x81{left:683.466667pt;}
.x15{left:689.866667pt;}
.x74{left:694.666667pt;}
.x27{left:698.933333pt;}
.x3a{left:700.000000pt;}
.x72{left:708.266667pt;}
}




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