
    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_1f239c9045279d61c8a3db16.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_b8888a3cb84f88d95c74de80.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9b6debb56ca43e2a04c39eec.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cfbbe097672ef3529d644e06.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_40f677404a075d629f818837.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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_f5499cf08f3c628cf169434e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.715820;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_f89e571e6fb69c3e4747b493.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.702148;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e917c16ac66dd7c42d00344f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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:-6.072000px;}
.v3{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.976000px;}
.v1{vertical-align:46.800000px;}
.ls30{letter-spacing:-7.272000px;}
.ls2f{letter-spacing:-3.600000px;}
.ls66{letter-spacing:-2.820000px;}
.ls34{letter-spacing:-2.448000px;}
.ls32{letter-spacing:-1.800000px;}
.ls52{letter-spacing:-1.512000px;}
.ls4b{letter-spacing:-1.440000px;}
.ls33{letter-spacing:-1.224000px;}
.ls3d{letter-spacing:-1.008000px;}
.ls48{letter-spacing:-0.936000px;}
.ls3e{letter-spacing:-0.864000px;}
.ls65{letter-spacing:-0.660000px;}
.ls6b{letter-spacing:-0.594000px;}
.ls11{letter-spacing:-0.576000px;}
.ls60{letter-spacing:-0.540000px;}
.ls6d{letter-spacing:-0.528000px;}
.ls23{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.360000px;}
.ls68{letter-spacing:-0.330000px;}
.ls14{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.168000px;}
.ls3c{letter-spacing:-0.144000px;}
.ls6c{letter-spacing:-0.132000px;}
.lsb{letter-spacing:-0.120000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls6e{letter-spacing:-0.066000px;}
.ls64{letter-spacing:-0.060000px;}
.lsd{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.060000px;}
.ls49{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.084000px;}
.lse{letter-spacing:0.120000px;}
.ls31{letter-spacing:0.144000px;}
.ls3f{letter-spacing:0.165600px;}
.ls8{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.240000px;}
.ls1d{letter-spacing:0.288000px;}
.ls6a{letter-spacing:0.330000px;}
.ls6{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.396000px;}
.ls42{letter-spacing:0.410400px;}
.ls1b{letter-spacing:0.432000px;}
.ls69{letter-spacing:0.462000px;}
.ls41{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.482400px;}
.ls4{letter-spacing:0.496800px;}
.ls5{letter-spacing:0.504000px;}
.ls45{letter-spacing:0.525600px;}
.ls5f{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.576000px;}
.ls55{letter-spacing:0.597600px;}
.ls53{letter-spacing:0.648000px;}
.ls5d{letter-spacing:0.762000px;}
.ls5c{letter-spacing:0.780000px;}
.ls2e{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.900000px;}
.ls4f{letter-spacing:1.036800px;}
.ls43{letter-spacing:1.152000px;}
.ls61{letter-spacing:1.200000px;}
.ls57{letter-spacing:1.368000px;}
.ls2b{letter-spacing:1.440000px;}
.lsa{letter-spacing:2.376000px;}
.ls67{letter-spacing:3.180000px;}
.ls1f{letter-spacing:3.600000px;}
.ls63{letter-spacing:4.092000px;}
.ls5b{letter-spacing:4.380000px;}
.ls3b{letter-spacing:4.752000px;}
.ls4a{letter-spacing:5.976000px;}
.ls38{letter-spacing:7.200000px;}
.ls47{letter-spacing:8.352000px;}
.ls21{letter-spacing:9.576000px;}
.ls5a{letter-spacing:10.380000px;}
.ls22{letter-spacing:10.800000px;}
.ls50{letter-spacing:11.952000px;}
.ls4e{letter-spacing:11.995200px;}
.ls20{letter-spacing:13.176000px;}
.ls3a{letter-spacing:14.400000px;}
.ls62{letter-spacing:14.784000px;}
.ls39{letter-spacing:15.552000px;}
.ls40{letter-spacing:18.000000px;}
.ls4d{letter-spacing:19.152000px;}
.ls44{letter-spacing:20.376000px;}
.ls59{letter-spacing:22.920000px;}
.ls51{letter-spacing:23.976000px;}
.ls4c{letter-spacing:25.200000px;}
.ls9{letter-spacing:26.352000px;}
.ls36{letter-spacing:27.576000px;}
.ls54{letter-spacing:28.800000px;}
.ls58{letter-spacing:34.776000px;}
.ls35{letter-spacing:63.720000px;}
.ls26{letter-spacing:113.976000px;}
.ls2c{letter-spacing:178.560000px;}
.ls29{letter-spacing:182.376000px;}
.ls56{letter-spacing:193.176000px;}
.ls27{letter-spacing:195.552000px;}
.ls2d{letter-spacing:295.200000px;}
.ls24{letter-spacing:351.000000px;}
.ls25{letter-spacing:351.576000px;}
.ls2a{letter-spacing:357.552000px;}
.ls28{letter-spacing:358.797600px;}
.ls3{letter-spacing:474.780000px;}
.ls2{letter-spacing:569.580000px;}
.ls1e{letter-spacing:795.180000px;}
.ls1{letter-spacing:889.980000px;}
.ls0{letter-spacing:1156.380000px;}
.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;}
}
.ws57{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.252000px;}
.ws83{word-spacing:-20.376000px;}
.wsb2{word-spacing:-19.800000px;}
.wsb{word-spacing:-19.656000px;}
.ws2{word-spacing:-19.584000px;}
.ws8{word-spacing:-19.512000px;}
.ws6{word-spacing:-19.440000px;}
.ws6d{word-spacing:-19.368000px;}
.ws8e{word-spacing:-19.296000px;}
.ws9{word-spacing:-19.224000px;}
.ws56{word-spacing:-19.152000px;}
.wsc0{word-spacing:-19.080000px;}
.ws7{word-spacing:-19.008000px;}
.ws31{word-spacing:-18.936000px;}
.wsa1{word-spacing:-18.864000px;}
.ws6b{word-spacing:-18.792000px;}
.ws33{word-spacing:-18.720000px;}
.ws54{word-spacing:-18.648000px;}
.ws9d{word-spacing:-18.360000px;}
.ws6e{word-spacing:-18.216000px;}
.wse4{word-spacing:-18.018000px;}
.ws53{word-spacing:-18.000000px;}
.ws32{word-spacing:-17.856000px;}
.ws9e{word-spacing:-17.784000px;}
.ws51{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.640000px;}
.ws55{word-spacing:-17.424000px;}
.wse3{word-spacing:-17.094000px;}
.wse1{word-spacing:-17.028000px;}
.ws4{word-spacing:-16.920000px;}
.wsde{word-spacing:-16.380000px;}
.wse2{word-spacing:-16.368000px;}
.ws30{word-spacing:-16.140000px;}
.wsdf{word-spacing:-16.080000px;}
.ws50{word-spacing:-16.020000px;}
.ws3{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.720000px;}
.wsc2{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.wsc3{word-spacing:-15.480000px;}
.wsc1{word-spacing:-14.700000px;}
.wse0{word-spacing:-14.640000px;}
.ws7b{word-spacing:-14.400000px;}
.ws6c{word-spacing:-11.214000px;}
.ws52{word-spacing:-10.944000px;}
.ws78{word-spacing:-10.800000px;}
.ws96{word-spacing:-8.352000px;}
.ws6f{word-spacing:-4.752000px;}
.ws2f{word-spacing:-4.392000px;}
.ws5f{word-spacing:-4.248000px;}
.wsce{word-spacing:-4.176000px;}
.ws39{word-spacing:-3.888000px;}
.ws9c{word-spacing:-3.600000px;}
.ws4f{word-spacing:-3.528000px;}
.wscd{word-spacing:-3.384000px;}
.wsa8{word-spacing:-3.312000px;}
.wsee{word-spacing:-3.180000px;}
.ws3f{word-spacing:-3.168000px;}
.ws25{word-spacing:-3.024000px;}
.wsec{word-spacing:-2.880000px;}
.ws42{word-spacing:-2.664000px;}
.ws63{word-spacing:-2.592000px;}
.wseb{word-spacing:-2.400000px;}
.ws43{word-spacing:-2.376000px;}
.wsed{word-spacing:-2.340000px;}
.wsc4{word-spacing:-2.160000px;}
.ws66{word-spacing:-2.016000px;}
.ws7d{word-spacing:-1.944000px;}
.ws65{word-spacing:-1.872000px;}
.wsd9{word-spacing:-1.740000px;}
.ws67{word-spacing:-1.584000px;}
.ws94{word-spacing:-1.368000px;}
.ws8a{word-spacing:-1.152000px;}
.wse5{word-spacing:-1.140000px;}
.wsbb{word-spacing:-1.008000px;}
.wsd1{word-spacing:-0.960000px;}
.ws2e{word-spacing:-0.792000px;}
.ws17{word-spacing:-0.660000px;}
.ws37{word-spacing:-0.648000px;}
.ws61{word-spacing:-0.576000px;}
.ws10{word-spacing:-0.540000px;}
.ws60{word-spacing:-0.504000px;}
.ws24{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.420000px;}
.ws15{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.300000px;}
.ws2c{word-spacing:-0.288000px;}
.wscf{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.216000px;}
.ws73{word-spacing:-0.144000px;}
.wsda{word-spacing:-0.120000px;}
.ws8c{word-spacing:-0.072000px;}
.wsd0{word-spacing:-0.060000px;}
.wsd{word-spacing:0.000000px;}
.wse{word-spacing:0.060000px;}
.wsf6{word-spacing:0.066000px;}
.ws2d{word-spacing:0.072000px;}
.ws6a{word-spacing:0.144000px;}
.wsf1{word-spacing:0.180000px;}
.ws62{word-spacing:0.216000px;}
.ws12{word-spacing:0.252000px;}
.ws2b{word-spacing:0.288000px;}
.ws18{word-spacing:0.300000px;}
.ws1a{word-spacing:0.360000px;}
.wsfa{word-spacing:0.396000px;}
.ws16{word-spacing:0.420000px;}
.ws1d{word-spacing:0.432000px;}
.wsf9{word-spacing:0.462000px;}
.ws19{word-spacing:0.480000px;}
.ws13{word-spacing:0.504000px;}
.wsf8{word-spacing:0.528000px;}
.wsd4{word-spacing:0.540000px;}
.ws14{word-spacing:0.576000px;}
.wsd6{word-spacing:0.660000px;}
.ws95{word-spacing:0.792000px;}
.ws7f{word-spacing:0.864000px;}
.ws88{word-spacing:0.936000px;}
.ws81{word-spacing:1.008000px;}
.ws64{word-spacing:1.224000px;}
.wsd5{word-spacing:1.260000px;}
.ws69{word-spacing:1.368000px;}
.ws20{word-spacing:1.440000px;}
.wsaf{word-spacing:1.512000px;}
.ws21{word-spacing:1.584000px;}
.ws1f{word-spacing:1.728000px;}
.wsb3{word-spacing:1.800000px;}
.wsaa{word-spacing:2.088000px;}
.ws8f{word-spacing:2.160000px;}
.ws68{word-spacing:2.448000px;}
.ws8b{word-spacing:2.808000px;}
.wsea{word-spacing:2.820000px;}
.wse6{word-spacing:2.940000px;}
.ws5a{word-spacing:2.952000px;}
.wsef{word-spacing:3.060000px;}
.wsd3{word-spacing:3.120000px;}
.ws92{word-spacing:3.168000px;}
.wsb1{word-spacing:3.312000px;}
.ws35{word-spacing:3.384000px;}
.wsf7{word-spacing:3.564000px;}
.ws58{word-spacing:3.600000px;}
.ws36{word-spacing:3.672000px;}
.ws80{word-spacing:3.816000px;}
.ws91{word-spacing:3.888000px;}
.ws79{word-spacing:4.032000px;}
.ws47{word-spacing:4.176000px;}
.ws93{word-spacing:4.464000px;}
.ws3c{word-spacing:4.536000px;}
.ws27{word-spacing:4.824000px;}
.wsd2{word-spacing:4.860000px;}
.wsbe{word-spacing:4.968000px;}
.wsa7{word-spacing:5.184000px;}
.ws70{word-spacing:5.328000px;}
.wsa0{word-spacing:5.400000px;}
.wsd8{word-spacing:5.520000px;}
.wsb9{word-spacing:5.544000px;}
.wsa3{word-spacing:5.688000px;}
.wsd7{word-spacing:6.000000px;}
.ws40{word-spacing:6.048000px;}
.ws41{word-spacing:6.192000px;}
.wsc6{word-spacing:6.264000px;}
.wsbc{word-spacing:6.408000px;}
.ws9f{word-spacing:6.552000px;}
.wsdc{word-spacing:6.720000px;}
.wsdb{word-spacing:7.080000px;}
.wsdd{word-spacing:7.260000px;}
.ws77{word-spacing:7.272000px;}
.ws1b{word-spacing:7.488000px;}
.ws76{word-spacing:7.776000px;}
.ws99{word-spacing:7.920000px;}
.ws7c{word-spacing:7.992000px;}
.ws97{word-spacing:8.064000px;}
.ws98{word-spacing:8.136000px;}
.ws7e{word-spacing:8.424000px;}
.wsa6{word-spacing:8.496000px;}
.wsa5{word-spacing:8.568000px;}
.wsc5{word-spacing:8.784000px;}
.ws7a{word-spacing:8.928000px;}
.wsa4{word-spacing:9.288000px;}
.wsa9{word-spacing:9.648000px;}
.ws28{word-spacing:10.008000px;}
.wsf2{word-spacing:10.140000px;}
.ws2a{word-spacing:10.152000px;}
.wsca{word-spacing:10.368000px;}
.wscc{word-spacing:10.440000px;}
.ws72{word-spacing:10.512000px;}
.ws4c{word-spacing:10.584000px;}
.wsf3{word-spacing:10.860000px;}
.wscb{word-spacing:11.016000px;}
.wsc7{word-spacing:11.232000px;}
.wsc9{word-spacing:11.304000px;}
.ws29{word-spacing:11.376000px;}
.wsb0{word-spacing:11.808000px;}
.ws82{word-spacing:12.024000px;}
.ws71{word-spacing:12.168000px;}
.ws90{word-spacing:12.384000px;}
.ws34{word-spacing:12.528000px;}
.ws48{word-spacing:13.248000px;}
.wsf0{word-spacing:13.260000px;}
.ws49{word-spacing:13.464000px;}
.ws4a{word-spacing:13.608000px;}
.ws46{word-spacing:13.752000px;}
.wse9{word-spacing:13.860000px;}
.wsae{word-spacing:13.968000px;}
.wsad{word-spacing:14.184000px;}
.wsf5{word-spacing:14.322000px;}
.wsbd{word-spacing:14.832000px;}
.wsf4{word-spacing:14.850000px;}
.ws26{word-spacing:14.976000px;}
.ws89{word-spacing:15.624000px;}
.ws38{word-spacing:15.984000px;}
.ws3d{word-spacing:16.128000px;}
.ws3a{word-spacing:16.560000px;}
.ws3b{word-spacing:16.848000px;}
.wsbf{word-spacing:17.208000px;}
.ws87{word-spacing:18.144000px;}
.ws4b{word-spacing:18.288000px;}
.ws86{word-spacing:18.576000px;}
.ws4d{word-spacing:19.224000px;}
.ws4e{word-spacing:19.368000px;}
.wsb8{word-spacing:19.728000px;}
.ws84{word-spacing:20.160000px;}
.ws85{word-spacing:20.952000px;}
.ws23{word-spacing:21.888000px;}
.ws5b{word-spacing:22.032000px;}
.ws3e{word-spacing:22.176000px;}
.ws8d{word-spacing:23.184000px;}
.ws59{word-spacing:24.048000px;}
.ws1c{word-spacing:24.552000px;}
.ws22{word-spacing:25.272000px;}
.ws9b{word-spacing:25.776000px;}
.wsba{word-spacing:26.064000px;}
.ws9a{word-spacing:26.568000px;}
.ws5d{word-spacing:26.640000px;}
.wsa2{word-spacing:26.784000px;}
.ws5e{word-spacing:26.856000px;}
.ws5c{word-spacing:26.928000px;}
.ws75{word-spacing:27.000000px;}
.wsb5{word-spacing:27.144000px;}
.ws45{word-spacing:28.008000px;}
.ws74{word-spacing:28.152000px;}
.wsb6{word-spacing:28.656000px;}
.wsb4{word-spacing:28.872000px;}
.ws1e{word-spacing:29.232000px;}
.wsb7{word-spacing:29.376000px;}
.wsc8{word-spacing:33.984000px;}
.wse7{word-spacing:40.140000px;}
.wse8{word-spacing:40.860000px;}
.wsab{word-spacing:41.256000px;}
.wsac{word-spacing:41.328000px;}
.ws44{word-spacing:43.272000px;}
._25{margin-left:-20.858400px;}
._26{margin-left:-19.044000px;}
._24{margin-left:-14.904000px;}
._23{margin-left:-13.845600px;}
._20{margin-left:-11.942400px;}
._1f{margin-left:-10.922400px;}
._21{margin-left:-9.132000px;}
._1e{margin-left:-7.504800px;}
._e{margin-left:-5.613600px;}
._d{margin-left:-4.584000px;}
._7{margin-left:-3.060000px;}
._2{margin-left:-1.200000px;}
._0{width:1.140000px;}
._5{width:2.166000px;}
._19{width:3.300000px;}
._16{width:4.885200px;}
._10{width:5.904000px;}
._f{width:7.636800px;}
._18{width:9.012000px;}
._22{width:10.072800px;}
._1b{width:11.424000px;}
._17{width:12.459600px;}
._9{width:14.294400px;}
._8{width:15.314400px;}
._a{width:16.843200px;}
._c{width:17.871600px;}
._11{width:20.673600px;}
._12{width:22.154400px;}
._1a{width:23.347200px;}
._6{width:24.645600px;}
._1d{width:26.546400px;}
._b{width:27.770400px;}
._13{width:29.100000px;}
._14{width:30.596400px;}
._27{width:34.392000px;}
._28{width:35.635200px;}
._2a{width:40.368000px;}
._29{width:41.586000px;}
._3{width:643.860000px;}
._4{width:775.980000px;}
._1c{width:788.100000px;}
._15{width:820.320000px;}
._1{width:880.620000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:24.000000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:81.600000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y135{bottom:0.001500px;}
.y9{bottom:3.300000px;}
.y7{bottom:5.100000px;}
.ya{bottom:5.700000px;}
.yc6{bottom:28.500000px;}
.y7a{bottom:51.600000px;}
.y4{bottom:67.800000px;}
.ye6{bottom:75.000000px;}
.y93{bottom:97.206000px;}
.yff{bottom:98.400000px;}
.y37{bottom:102.324000px;}
.y112{bottom:102.606000px;}
.ybb{bottom:105.024000px;}
.yfc{bottom:106.842000px;}
.ye0{bottom:107.112000px;}
.y133{bottom:112.812000px;}
.y67{bottom:112.836000px;}
.y157{bottom:113.166000px;}
.y17b{bottom:115.800000px;}
.y92{bottom:120.300000px;}
.ye4{bottom:121.500000px;}
.y111{bottom:125.700000px;}
.y36{bottom:125.724000px;}
.yba{bottom:128.118000px;}
.yfb{bottom:129.936000px;}
.ydf{bottom:130.206000px;}
.y17a{bottom:135.000000px;}
.y132{bottom:135.906000px;}
.y66{bottom:135.930000px;}
.y156{bottom:136.260000px;}
.y91{bottom:143.700000px;}
.y110{bottom:144.000000px;}
.y35{bottom:149.124000px;}
.yb9{bottom:151.518000px;}
.yfa{bottom:153.336000px;}
.yde{bottom:153.606000px;}
.y179{bottom:154.500000px;}
.y131{bottom:159.306000px;}
.y65{bottom:159.330000px;}
.y155{bottom:159.660000px;}
.y90{bottom:167.100000px;}
.y34{bottom:172.218000px;}
.y178{bottom:174.000000px;}
.yb8{bottom:174.918000px;}
.ydd{bottom:176.700000px;}
.yf9{bottom:176.736000px;}
.y130{bottom:182.706000px;}
.y64{bottom:182.730000px;}
.y154{bottom:183.060000px;}
.y8f{bottom:188.400000px;}
.y177{bottom:193.200000px;}
.y33{bottom:195.618000px;}
.ydc{bottom:196.800000px;}
.yb7{bottom:198.012000px;}
.yf8{bottom:199.830000px;}
.y12f{bottom:205.800000px;}
.y8e{bottom:205.806000px;}
.y63{bottom:205.824000px;}
.y153{bottom:206.154000px;}
.ydb{bottom:207.906000px;}
.y176{bottom:212.700000px;}
.y32{bottom:219.018000px;}
.yb6{bottom:221.412000px;}
.yf7{bottom:223.230000px;}
.y12e{bottom:229.200000px;}
.y8d{bottom:229.206000px;}
.y62{bottom:229.224000px;}
.y152{bottom:229.554000px;}
.yda{bottom:231.306000px;}
.y175{bottom:232.200000px;}
.y31{bottom:242.112000px;}
.yb5{bottom:244.812000px;}
.yf6{bottom:246.324000px;}
.y12d{bottom:250.800000px;}
.y174{bottom:251.700000px;}
.y8c{bottom:252.300000px;}
.y61{bottom:252.624000px;}
.y151{bottom:252.954000px;}
.yd9{bottom:254.400000px;}
.y30{bottom:265.512000px;}
.yb4{bottom:267.906000px;}
.y12c{bottom:267.924000px;}
.yf5{bottom:269.724000px;}
.y173{bottom:270.900000px;}
.yd8{bottom:274.500000px;}
.y8b{bottom:275.700000px;}
.y60{bottom:275.718000px;}
.y150{bottom:276.048000px;}
.yd5{bottom:280.500000px;}
.yd7{bottom:285.600000px;}
.y2f{bottom:288.912000px;}
.y172{bottom:290.400000px;}
.yb3{bottom:291.306000px;}
.y12b{bottom:291.324000px;}
.yf4{bottom:293.124000px;}
.y8a{bottom:299.100000px;}
.y5f{bottom:299.118000px;}
.y14f{bottom:299.448000px;}
.yd6{bottom:308.700000px;}
.y171{bottom:309.900000px;}
.y1a4{bottom:310.200000px;}
.y2e{bottom:312.006000px;}
.yb2{bottom:314.706000px;}
.y12a{bottom:314.724000px;}
.yf3{bottom:316.218000px;}
.y89{bottom:320.400000px;}
.y5e{bottom:322.212000px;}
.y14e{bottom:322.848000px;}
.y170{bottom:329.100000px;}
.y1a3{bottom:330.000000px;}
.y2d{bottom:335.406000px;}
.yb1{bottom:337.800000px;}
.y88{bottom:337.812000px;}
.y129{bottom:337.818000px;}
.yf2{bottom:339.618000px;}
.y5d{bottom:345.612000px;}
.y14d{bottom:345.942000px;}
.y16f{bottom:348.600000px;}
.y1a2{bottom:350.100000px;}
.yd4{bottom:350.400000px;}
.y2c{bottom:358.806000px;}
.yb0{bottom:361.200000px;}
.y87{bottom:361.212000px;}
.y128{bottom:361.218000px;}
.yf1{bottom:363.018000px;}
.y1a1{bottom:366.892500px;}
.y16e{bottom:368.100000px;}
.y5c{bottom:369.012000px;}
.y14c{bottom:369.342000px;}
.y2b{bottom:381.900000px;}
.yaf{bottom:382.500000px;}
.y86{bottom:384.306000px;}
.y127{bottom:384.312000px;}
.yf0{bottom:386.112000px;}
.y16d{bottom:387.300000px;}
.y1a0{bottom:388.194000px;}
.y5b{bottom:392.106000px;}
.y14b{bottom:392.436000px;}
.yae{bottom:399.900000px;}
.y2a{bottom:402.000000px;}
.y16c{bottom:406.800000px;}
.y85{bottom:407.706000px;}
.y126{bottom:407.712000px;}
.y19f{bottom:409.495500px;}
.yef{bottom:409.512000px;}
.y29{bottom:413.100000px;}
.y5a{bottom:415.506000px;}
.y14a{bottom:415.836000px;}
.yad{bottom:423.300000px;}
.y16b{bottom:426.300000px;}
.y84{bottom:431.106000px;}
.y125{bottom:431.112000px;}
.y28{bottom:432.900000px;}
.yee{bottom:432.912000px;}
.y19e{bottom:435.598500px;}
.y59{bottom:438.906000px;}
.y149{bottom:439.236000px;}
.y27{bottom:444.036000px;}
.y16a{bottom:445.800000px;}
.yac{bottom:446.706000px;}
.y83{bottom:454.200000px;}
.y124{bottom:454.206000px;}
.yed{bottom:456.006000px;}
.y58{bottom:462.000000px;}
.y148{bottom:462.330000px;}
.y169{bottom:465.000000px;}
.y26{bottom:467.436000px;}
.yab{bottom:469.800000px;}
.yd3{bottom:475.800000px;}
.y82{bottom:477.600000px;}
.y123{bottom:477.606000px;}
.y19d{bottom:478.498500px;}
.yec{bottom:479.406000px;}
.y168{bottom:484.500000px;}
.y57{bottom:485.400000px;}
.y147{bottom:485.730000px;}
.yd2{bottom:486.918000px;}
.y25{bottom:490.836000px;}
.yaa{bottom:493.200000px;}
.y10f{bottom:493.224000px;}
.y19c{bottom:499.800000px;}
.y81{bottom:501.000000px;}
.y122{bottom:501.006000px;}
.yeb{bottom:502.500000px;}
.y167{bottom:504.000000px;}
.y56{bottom:508.800000px;}
.y146{bottom:509.130000px;}
.yd1{bottom:510.318000px;}
.y24{bottom:513.930000px;}
.ya9{bottom:514.500000px;}
.y10e{bottom:516.318000px;}
.y19b{bottom:519.900000px;}
.y80{bottom:522.300000px;}
.yea{bottom:524.100000px;}
.y55{bottom:531.900000px;}
.ya8{bottom:531.906000px;}
.y145{bottom:532.224000px;}
.yd0{bottom:533.412000px;}
.y7e{bottom:535.500000px;}
.ye3{bottom:536.400000px;}
.y23{bottom:537.330000px;}
.y166{bottom:539.700000px;}
.y10d{bottom:539.718000px;}
.ye9{bottom:541.506000px;}
.y121{bottom:547.530000px;}
.y7d{bottom:552.000000px;}
.y54{bottom:555.300000px;}
.ya7{bottom:555.306000px;}
.y144{bottom:555.624000px;}
.y19a{bottom:555.900000px;}
.ycf{bottom:556.812000px;}
.y22{bottom:560.424000px;}
.y165{bottom:561.300000px;}
.y10c{bottom:563.118000px;}
.y7f{bottom:563.700000px;}
.ye8{bottom:564.906000px;}
.y120{bottom:570.930000px;}
.y199{bottom:574.200000px;}
.y7c{bottom:575.400000px;}
.y53{bottom:578.400000px;}
.ya6{bottom:578.418000px;}
.y143{bottom:579.024000px;}
.yce{bottom:580.212000px;}
.y21{bottom:583.824000px;}
.y10b{bottom:586.212000px;}
.ye7{bottom:588.000000px;}
.y198{bottom:593.100000px;}
.y11f{bottom:594.024000px;}
.y52{bottom:601.800000px;}
.ya5{bottom:601.818000px;}
.y142{bottom:602.118000px;}
.ycd{bottom:603.306000px;}
.y79{bottom:606.000000px;}
.y20{bottom:607.224000px;}
.y10a{bottom:609.612000px;}
.ye5{bottom:611.400000px;}
.y197{bottom:612.600000px;}
.y11e{bottom:617.424000px;}
.y78{bottom:622.806000px;}
.y51{bottom:625.200000px;}
.ya4{bottom:625.218000px;}
.y141{bottom:625.518000px;}
.ycc{bottom:626.706000px;}
.y1f{bottom:630.318000px;}
.y196{bottom:632.100000px;}
.y109{bottom:633.012000px;}
.y7b{bottom:634.500000px;}
.y11d{bottom:640.824000px;}
.y77{bottom:645.900000px;}
.y164{bottom:646.500000px;}
.y50{bottom:648.300000px;}
.ya3{bottom:648.312000px;}
.y140{bottom:648.612000px;}
.ycb{bottom:650.106000px;}
.y195{bottom:651.300000px;}
.y1e{bottom:653.718000px;}
.y108{bottom:656.106000px;}
.y11c{bottom:663.918000px;}
.y163{bottom:663.942000px;}
.y194{bottom:670.800000px;}
.y4f{bottom:671.700000px;}
.ya2{bottom:671.712000px;}
.y13f{bottom:672.012000px;}
.yca{bottom:673.200000px;}
.ye2{bottom:676.200000px;}
.y1d{bottom:677.118000px;}
.y107{bottom:679.506000px;}
.y76{bottom:683.700000px;}
.y11b{bottom:687.318000px;}
.y162{bottom:687.342000px;}
.y193{bottom:690.300000px;}
.y4e{bottom:695.100000px;}
.ya1{bottom:695.112000px;}
.y13e{bottom:695.412000px;}
.yc9{bottom:696.600000px;}
.y1c{bottom:700.212000px;}
.y106{bottom:702.600000px;}
.y75{bottom:707.100000px;}
.y192{bottom:709.500000px;}
.y11a{bottom:710.412000px;}
.y161{bottom:710.436000px;}
.yc8{bottom:716.700000px;}
.y4d{bottom:718.200000px;}
.ya0{bottom:718.206000px;}
.y13d{bottom:718.506000px;}
.yc5{bottom:722.400000px;}
.y1b{bottom:723.612000px;}
.y105{bottom:726.000000px;}
.yc7{bottom:727.500000px;}
.y191{bottom:729.000000px;}
.y119{bottom:733.812000px;}
.y160{bottom:733.836000px;}
.y74{bottom:737.118000px;}
.y4c{bottom:741.600000px;}
.y9f{bottom:741.606000px;}
.y13c{bottom:741.906000px;}
.y1a{bottom:747.012000px;}
.y190{bottom:748.500000px;}
.y104{bottom:749.400000px;}
.y118{bottom:757.212000px;}
.y15f{bottom:757.236000px;}
.y4b{bottom:765.000000px;}
.y9e{bottom:765.006000px;}
.y73{bottom:765.018000px;}
.y13b{bottom:765.306000px;}
.y18f{bottom:768.000000px;}
.yc4{bottom:769.200000px;}
.y19{bottom:770.106000px;}
.yfe{bottom:775.200000px;}
.y103{bottom:780.300000px;}
.y117{bottom:780.306000px;}
.y15e{bottom:780.330000px;}
.y18e{bottom:787.200000px;}
.y4a{bottom:788.100000px;}
.y72{bottom:788.112000px;}
.y13a{bottom:788.400000px;}
.y18{bottom:793.506000px;}
.y102{bottom:803.700000px;}
.y116{bottom:803.706000px;}
.y15d{bottom:803.730000px;}
.y18d{bottom:806.700000px;}
.y49{bottom:811.500000px;}
.y71{bottom:811.512000px;}
.y139{bottom:811.800000px;}
.y17{bottom:816.600000px;}
.y18c{bottom:826.200000px;}
.y101{bottom:827.100000px;}
.y115{bottom:827.106000px;}
.y15c{bottom:827.130000px;}
.y138{bottom:833.400000px;}
.y48{bottom:834.900000px;}
.y70{bottom:834.912000px;}
.y16{bottom:836.700000px;}
.y136{bottom:845.400000px;}
.y15{bottom:846.900000px;}
.y100{bottom:850.200000px;}
.y15b{bottom:850.224000px;}
.y137{bottom:850.500000px;}
.yc3{bottom:854.700000px;}
.y9d{bottom:856.200000px;}
.y47{bottom:858.000000px;}
.y6f{bottom:858.006000px;}
.y18b{bottom:864.900000px;}
.yc2{bottom:865.812000px;}
.y14{bottom:866.400000px;}
.y134{bottom:868.798500px;}
.y114{bottom:873.600000px;}
.y9c{bottom:873.606000px;}
.y15a{bottom:873.624000px;}
.y46{bottom:881.400000px;}
.y6e{bottom:881.406000px;}
.y13{bottom:883.200000px;}
.y18a{bottom:884.400000px;}
.yc1{bottom:889.212000px;}
.yfd{bottom:891.600000px;}
.y12{bottom:893.400000px;}
.y113{bottom:897.000000px;}
.y9b{bottom:897.006000px;}
.y159{bottom:897.024000px;}
.y189{bottom:903.600000px;}
.y45{bottom:904.500000px;}
.yc0{bottom:912.306000px;}
.y11{bottom:912.900000px;}
.y9a{bottom:920.100000px;}
.y158{bottom:920.118000px;}
.y188{bottom:923.100000px;}
.y6d{bottom:926.100000px;}
.y44{bottom:927.900000px;}
.y10{bottom:933.306000px;}
.ybf{bottom:935.706000px;}
.y187{bottom:942.600000px;}
.y99{bottom:943.500000px;}
.y6c{bottom:943.518000px;}
.ye1{bottom:949.500000px;}
.y43{bottom:951.300000px;}
.yf{bottom:956.400000px;}
.ybe{bottom:959.106000px;}
.y186{bottom:962.100000px;}
.y98{bottom:966.600000px;}
.y6b{bottom:966.612000px;}
.y42{bottom:974.400000px;}
.ye{bottom:980.394000px;}
.y185{bottom:981.300000px;}
.ybd{bottom:982.200000px;}
.y97{bottom:990.000000px;}
.y6a{bottom:990.012000px;}
.y41{bottom:997.800000px;}
.y184{bottom:1000.800000px;}
.ybc{bottom:1002.300000px;}
.yd{bottom:1007.694000px;}
.y96{bottom:1013.406000px;}
.y69{bottom:1013.412000px;}
.y40{bottom:1017.900000px;}
.y183{bottom:1020.300000px;}
.y3f{bottom:1029.000000px;}
.yc{bottom:1034.700000px;}
.y95{bottom:1036.500000px;}
.y68{bottom:1036.506000px;}
.y182{bottom:1039.500000px;}
.y3e{bottom:1048.800000px;}
.y181{bottom:1059.000000px;}
.y94{bottom:1059.900000px;}
.y3d{bottom:1059.906000px;}
.yb{bottom:1062.000000px;}
.y180{bottom:1078.500000px;}
.y8{bottom:1083.300000px;}
.y3c{bottom:1083.306000px;}
.y17f{bottom:1097.700000px;}
.y3b{bottom:1106.400000px;}
.y6{bottom:1107.300000px;}
.y17e{bottom:1117.200000px;}
.y3a{bottom:1129.800000px;}
.y5{bottom:1132.500000px;}
.y17d{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y39{bottom:1153.200000px;}
.y17c{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y38{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.hd{height:17.136000px;}
.h4{height:20.880000px;}
.h20{height:23.400000px;}
.h5{height:23.401500px;}
.h8{height:24.000000px;}
.h21{height:34.272000px;}
.h10{height:41.760000px;}
.h22{height:42.840000px;}
.h2{height:46.680000px;}
.h16{height:46.800000px;}
.h7{height:47.401500px;}
.h17{height:49.218750px;}
.h6{height:51.408000px;}
.hc{height:52.200000px;}
.he{height:56.016000px;}
.h24{height:57.420000px;}
.hf{height:58.857422px;}
.ha{height:59.976000px;}
.h23{height:62.578125px;}
.hb{height:62.640000px;}
.h14{height:69.598500px;}
.h13{height:69.900000px;}
.h3{height:70.664062px;}
.h1e{height:70.992000px;}
.h9{height:73.080000px;}
.h15{height:83.700000px;}
.h12{height:109.440000px;}
.h1c{height:116.400000px;}
.h18{height:123.598500px;}
.h1a{height:139.800000px;}
.h11{height:156.240000px;}
.h19{height:270.000000px;}
.h1b{height:279.601500px;}
.h1f{height:302.401500px;}
.h1d{height:328.500000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w5{width:170.100000px;}
.w2{width:478.200000px;}
.w6{width:709.200000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x27{left:12.000000px;}
.x36{left:16.500000px;}
.x1b{left:21.600000px;}
.x22{left:23.100000px;}
.x2e{left:24.600000px;}
.x3{left:79.800000px;}
.x1{left:91.500000px;}
.x9{left:100.509000px;}
.x28{left:101.700000px;}
.x2a{left:111.300000px;}
.x38{left:112.800000px;}
.x31{left:114.306000px;}
.x19{left:118.500000px;}
.x30{left:120.300000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x23{left:132.000000px;}
.x10{left:144.600000px;}
.x2f{left:149.100000px;}
.x13{left:158.694000px;}
.x1d{left:173.100000px;}
.x24{left:174.900000px;}
.x37{left:180.300000px;}
.x2b{left:186.018000px;}
.x1c{left:187.800000px;}
.x1f{left:203.700000px;}
.xc{left:206.100000px;}
.xd{left:209.100000px;}
.xb{left:248.400000px;}
.x2c{left:266.424000px;}
.x1e{left:279.000000px;}
.x14{left:286.188000px;}
.x17{left:304.206000px;}
.x15{left:324.600000px;}
.x34{left:330.000000px;}
.xa{left:342.597000px;}
.x12{left:353.094000px;}
.xe{left:374.100000px;}
.x32{left:409.218000px;}
.x39{left:442.200000px;}
.x2{left:446.400000px;}
.xf{left:473.100000px;}
.x20{left:493.200000px;}
.x5{left:558.000000px;}
.x1a{left:564.000000px;}
.x21{left:572.400000px;}
.x18{left:612.300000px;}
.x16{left:620.412000px;}
.x25{left:625.800000px;}
.x2d{left:628.200000px;}
.x35{left:660.600000px;}
.x33{left:677.400000px;}
.x7{left:685.800000px;}
.x26{left:688.800000px;}
.x29{left:704.100000px;}
.x11{left:746.700000px;}
@media print{
.v2{vertical-align:-5.397333pt;}
.v3{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.312000pt;}
.v1{vertical-align:41.600000pt;}
.ls30{letter-spacing:-6.464000pt;}
.ls2f{letter-spacing:-3.200000pt;}
.ls66{letter-spacing:-2.506667pt;}
.ls34{letter-spacing:-2.176000pt;}
.ls32{letter-spacing:-1.600000pt;}
.ls52{letter-spacing:-1.344000pt;}
.ls4b{letter-spacing:-1.280000pt;}
.ls33{letter-spacing:-1.088000pt;}
.ls3d{letter-spacing:-0.896000pt;}
.ls48{letter-spacing:-0.832000pt;}
.ls3e{letter-spacing:-0.768000pt;}
.ls65{letter-spacing:-0.586667pt;}
.ls6b{letter-spacing:-0.528000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls60{letter-spacing:-0.480000pt;}
.ls6d{letter-spacing:-0.469333pt;}
.ls23{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls68{letter-spacing:-0.293333pt;}
.ls14{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.149333pt;}
.ls3c{letter-spacing:-0.128000pt;}
.ls6c{letter-spacing:-0.117333pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls6e{letter-spacing:-0.058667pt;}
.ls64{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.053333pt;}
.ls49{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.074667pt;}
.lse{letter-spacing:0.106667pt;}
.ls31{letter-spacing:0.128000pt;}
.ls3f{letter-spacing:0.147200pt;}
.ls8{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.213333pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls6a{letter-spacing:0.293333pt;}
.ls6{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.352000pt;}
.ls42{letter-spacing:0.364800pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls69{letter-spacing:0.410667pt;}
.ls41{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.428800pt;}
.ls4{letter-spacing:0.441600pt;}
.ls5{letter-spacing:0.448000pt;}
.ls45{letter-spacing:0.467200pt;}
.ls5f{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.512000pt;}
.ls55{letter-spacing:0.531200pt;}
.ls53{letter-spacing:0.576000pt;}
.ls5d{letter-spacing:0.677333pt;}
.ls5c{letter-spacing:0.693333pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls4f{letter-spacing:0.921600pt;}
.ls43{letter-spacing:1.024000pt;}
.ls61{letter-spacing:1.066667pt;}
.ls57{letter-spacing:1.216000pt;}
.ls2b{letter-spacing:1.280000pt;}
.lsa{letter-spacing:2.112000pt;}
.ls67{letter-spacing:2.826667pt;}
.ls1f{letter-spacing:3.200000pt;}
.ls63{letter-spacing:3.637333pt;}
.ls5b{letter-spacing:3.893333pt;}
.ls3b{letter-spacing:4.224000pt;}
.ls4a{letter-spacing:5.312000pt;}
.ls38{letter-spacing:6.400000pt;}
.ls47{letter-spacing:7.424000pt;}
.ls21{letter-spacing:8.512000pt;}
.ls5a{letter-spacing:9.226667pt;}
.ls22{letter-spacing:9.600000pt;}
.ls50{letter-spacing:10.624000pt;}
.ls4e{letter-spacing:10.662400pt;}
.ls20{letter-spacing:11.712000pt;}
.ls3a{letter-spacing:12.800000pt;}
.ls62{letter-spacing:13.141333pt;}
.ls39{letter-spacing:13.824000pt;}
.ls40{letter-spacing:16.000000pt;}
.ls4d{letter-spacing:17.024000pt;}
.ls44{letter-spacing:18.112000pt;}
.ls59{letter-spacing:20.373333pt;}
.ls51{letter-spacing:21.312000pt;}
.ls4c{letter-spacing:22.400000pt;}
.ls9{letter-spacing:23.424000pt;}
.ls36{letter-spacing:24.512000pt;}
.ls54{letter-spacing:25.600000pt;}
.ls58{letter-spacing:30.912000pt;}
.ls35{letter-spacing:56.640000pt;}
.ls26{letter-spacing:101.312000pt;}
.ls2c{letter-spacing:158.720000pt;}
.ls29{letter-spacing:162.112000pt;}
.ls56{letter-spacing:171.712000pt;}
.ls27{letter-spacing:173.824000pt;}
.ls2d{letter-spacing:262.400000pt;}
.ls24{letter-spacing:312.000000pt;}
.ls25{letter-spacing:312.512000pt;}
.ls2a{letter-spacing:317.824000pt;}
.ls28{letter-spacing:318.931200pt;}
.ls3{letter-spacing:422.026667pt;}
.ls2{letter-spacing:506.293333pt;}
.ls1e{letter-spacing:706.826667pt;}
.ls1{letter-spacing:791.093333pt;}
.ls0{letter-spacing:1027.893333pt;}
.ws57{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.890667pt;}
.ws83{word-spacing:-18.112000pt;}
.wsb2{word-spacing:-17.600000pt;}
.wsb{word-spacing:-17.472000pt;}
.ws2{word-spacing:-17.408000pt;}
.ws8{word-spacing:-17.344000pt;}
.ws6{word-spacing:-17.280000pt;}
.ws6d{word-spacing:-17.216000pt;}
.ws8e{word-spacing:-17.152000pt;}
.ws9{word-spacing:-17.088000pt;}
.ws56{word-spacing:-17.024000pt;}
.wsc0{word-spacing:-16.960000pt;}
.ws7{word-spacing:-16.896000pt;}
.ws31{word-spacing:-16.832000pt;}
.wsa1{word-spacing:-16.768000pt;}
.ws6b{word-spacing:-16.704000pt;}
.ws33{word-spacing:-16.640000pt;}
.ws54{word-spacing:-16.576000pt;}
.ws9d{word-spacing:-16.320000pt;}
.ws6e{word-spacing:-16.192000pt;}
.wse4{word-spacing:-16.016000pt;}
.ws53{word-spacing:-16.000000pt;}
.ws32{word-spacing:-15.872000pt;}
.ws9e{word-spacing:-15.808000pt;}
.ws51{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.680000pt;}
.ws55{word-spacing:-15.488000pt;}
.wse3{word-spacing:-15.194667pt;}
.wse1{word-spacing:-15.136000pt;}
.ws4{word-spacing:-15.040000pt;}
.wsde{word-spacing:-14.560000pt;}
.wse2{word-spacing:-14.549333pt;}
.ws30{word-spacing:-14.346667pt;}
.wsdf{word-spacing:-14.293333pt;}
.ws50{word-spacing:-14.240000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.973333pt;}
.wsc2{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.wsc3{word-spacing:-13.760000pt;}
.wsc1{word-spacing:-13.066667pt;}
.wse0{word-spacing:-13.013333pt;}
.ws7b{word-spacing:-12.800000pt;}
.ws6c{word-spacing:-9.968000pt;}
.ws52{word-spacing:-9.728000pt;}
.ws78{word-spacing:-9.600000pt;}
.ws96{word-spacing:-7.424000pt;}
.ws6f{word-spacing:-4.224000pt;}
.ws2f{word-spacing:-3.904000pt;}
.ws5f{word-spacing:-3.776000pt;}
.wsce{word-spacing:-3.712000pt;}
.ws39{word-spacing:-3.456000pt;}
.ws9c{word-spacing:-3.200000pt;}
.ws4f{word-spacing:-3.136000pt;}
.wscd{word-spacing:-3.008000pt;}
.wsa8{word-spacing:-2.944000pt;}
.wsee{word-spacing:-2.826667pt;}
.ws3f{word-spacing:-2.816000pt;}
.ws25{word-spacing:-2.688000pt;}
.wsec{word-spacing:-2.560000pt;}
.ws42{word-spacing:-2.368000pt;}
.ws63{word-spacing:-2.304000pt;}
.wseb{word-spacing:-2.133333pt;}
.ws43{word-spacing:-2.112000pt;}
.wsed{word-spacing:-2.080000pt;}
.wsc4{word-spacing:-1.920000pt;}
.ws66{word-spacing:-1.792000pt;}
.ws7d{word-spacing:-1.728000pt;}
.ws65{word-spacing:-1.664000pt;}
.wsd9{word-spacing:-1.546667pt;}
.ws67{word-spacing:-1.408000pt;}
.ws94{word-spacing:-1.216000pt;}
.ws8a{word-spacing:-1.024000pt;}
.wse5{word-spacing:-1.013333pt;}
.wsbb{word-spacing:-0.896000pt;}
.wsd1{word-spacing:-0.853333pt;}
.ws2e{word-spacing:-0.704000pt;}
.ws17{word-spacing:-0.586667pt;}
.ws37{word-spacing:-0.576000pt;}
.ws61{word-spacing:-0.512000pt;}
.ws10{word-spacing:-0.480000pt;}
.ws60{word-spacing:-0.448000pt;}
.ws24{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.373333pt;}
.ws15{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.266667pt;}
.ws2c{word-spacing:-0.256000pt;}
.wscf{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.192000pt;}
.ws73{word-spacing:-0.128000pt;}
.wsda{word-spacing:-0.106667pt;}
.ws8c{word-spacing:-0.064000pt;}
.wsd0{word-spacing:-0.053333pt;}
.wsd{word-spacing:0.000000pt;}
.wse{word-spacing:0.053333pt;}
.wsf6{word-spacing:0.058667pt;}
.ws2d{word-spacing:0.064000pt;}
.ws6a{word-spacing:0.128000pt;}
.wsf1{word-spacing:0.160000pt;}
.ws62{word-spacing:0.192000pt;}
.ws12{word-spacing:0.224000pt;}
.ws2b{word-spacing:0.256000pt;}
.ws18{word-spacing:0.266667pt;}
.ws1a{word-spacing:0.320000pt;}
.wsfa{word-spacing:0.352000pt;}
.ws16{word-spacing:0.373333pt;}
.ws1d{word-spacing:0.384000pt;}
.wsf9{word-spacing:0.410667pt;}
.ws19{word-spacing:0.426667pt;}
.ws13{word-spacing:0.448000pt;}
.wsf8{word-spacing:0.469333pt;}
.wsd4{word-spacing:0.480000pt;}
.ws14{word-spacing:0.512000pt;}
.wsd6{word-spacing:0.586667pt;}
.ws95{word-spacing:0.704000pt;}
.ws7f{word-spacing:0.768000pt;}
.ws88{word-spacing:0.832000pt;}
.ws81{word-spacing:0.896000pt;}
.ws64{word-spacing:1.088000pt;}
.wsd5{word-spacing:1.120000pt;}
.ws69{word-spacing:1.216000pt;}
.ws20{word-spacing:1.280000pt;}
.wsaf{word-spacing:1.344000pt;}
.ws21{word-spacing:1.408000pt;}
.ws1f{word-spacing:1.536000pt;}
.wsb3{word-spacing:1.600000pt;}
.wsaa{word-spacing:1.856000pt;}
.ws8f{word-spacing:1.920000pt;}
.ws68{word-spacing:2.176000pt;}
.ws8b{word-spacing:2.496000pt;}
.wsea{word-spacing:2.506667pt;}
.wse6{word-spacing:2.613333pt;}
.ws5a{word-spacing:2.624000pt;}
.wsef{word-spacing:2.720000pt;}
.wsd3{word-spacing:2.773333pt;}
.ws92{word-spacing:2.816000pt;}
.wsb1{word-spacing:2.944000pt;}
.ws35{word-spacing:3.008000pt;}
.wsf7{word-spacing:3.168000pt;}
.ws58{word-spacing:3.200000pt;}
.ws36{word-spacing:3.264000pt;}
.ws80{word-spacing:3.392000pt;}
.ws91{word-spacing:3.456000pt;}
.ws79{word-spacing:3.584000pt;}
.ws47{word-spacing:3.712000pt;}
.ws93{word-spacing:3.968000pt;}
.ws3c{word-spacing:4.032000pt;}
.ws27{word-spacing:4.288000pt;}
.wsd2{word-spacing:4.320000pt;}
.wsbe{word-spacing:4.416000pt;}
.wsa7{word-spacing:4.608000pt;}
.ws70{word-spacing:4.736000pt;}
.wsa0{word-spacing:4.800000pt;}
.wsd8{word-spacing:4.906667pt;}
.wsb9{word-spacing:4.928000pt;}
.wsa3{word-spacing:5.056000pt;}
.wsd7{word-spacing:5.333333pt;}
.ws40{word-spacing:5.376000pt;}
.ws41{word-spacing:5.504000pt;}
.wsc6{word-spacing:5.568000pt;}
.wsbc{word-spacing:5.696000pt;}
.ws9f{word-spacing:5.824000pt;}
.wsdc{word-spacing:5.973333pt;}
.wsdb{word-spacing:6.293333pt;}
.wsdd{word-spacing:6.453333pt;}
.ws77{word-spacing:6.464000pt;}
.ws1b{word-spacing:6.656000pt;}
.ws76{word-spacing:6.912000pt;}
.ws99{word-spacing:7.040000pt;}
.ws7c{word-spacing:7.104000pt;}
.ws97{word-spacing:7.168000pt;}
.ws98{word-spacing:7.232000pt;}
.ws7e{word-spacing:7.488000pt;}
.wsa6{word-spacing:7.552000pt;}
.wsa5{word-spacing:7.616000pt;}
.wsc5{word-spacing:7.808000pt;}
.ws7a{word-spacing:7.936000pt;}
.wsa4{word-spacing:8.256000pt;}
.wsa9{word-spacing:8.576000pt;}
.ws28{word-spacing:8.896000pt;}
.wsf2{word-spacing:9.013333pt;}
.ws2a{word-spacing:9.024000pt;}
.wsca{word-spacing:9.216000pt;}
.wscc{word-spacing:9.280000pt;}
.ws72{word-spacing:9.344000pt;}
.ws4c{word-spacing:9.408000pt;}
.wsf3{word-spacing:9.653333pt;}
.wscb{word-spacing:9.792000pt;}
.wsc7{word-spacing:9.984000pt;}
.wsc9{word-spacing:10.048000pt;}
.ws29{word-spacing:10.112000pt;}
.wsb0{word-spacing:10.496000pt;}
.ws82{word-spacing:10.688000pt;}
.ws71{word-spacing:10.816000pt;}
.ws90{word-spacing:11.008000pt;}
.ws34{word-spacing:11.136000pt;}
.ws48{word-spacing:11.776000pt;}
.wsf0{word-spacing:11.786667pt;}
.ws49{word-spacing:11.968000pt;}
.ws4a{word-spacing:12.096000pt;}
.ws46{word-spacing:12.224000pt;}
.wse9{word-spacing:12.320000pt;}
.wsae{word-spacing:12.416000pt;}
.wsad{word-spacing:12.608000pt;}
.wsf5{word-spacing:12.730667pt;}
.wsbd{word-spacing:13.184000pt;}
.wsf4{word-spacing:13.200000pt;}
.ws26{word-spacing:13.312000pt;}
.ws89{word-spacing:13.888000pt;}
.ws38{word-spacing:14.208000pt;}
.ws3d{word-spacing:14.336000pt;}
.ws3a{word-spacing:14.720000pt;}
.ws3b{word-spacing:14.976000pt;}
.wsbf{word-spacing:15.296000pt;}
.ws87{word-spacing:16.128000pt;}
.ws4b{word-spacing:16.256000pt;}
.ws86{word-spacing:16.512000pt;}
.ws4d{word-spacing:17.088000pt;}
.ws4e{word-spacing:17.216000pt;}
.wsb8{word-spacing:17.536000pt;}
.ws84{word-spacing:17.920000pt;}
.ws85{word-spacing:18.624000pt;}
.ws23{word-spacing:19.456000pt;}
.ws5b{word-spacing:19.584000pt;}
.ws3e{word-spacing:19.712000pt;}
.ws8d{word-spacing:20.608000pt;}
.ws59{word-spacing:21.376000pt;}
.ws1c{word-spacing:21.824000pt;}
.ws22{word-spacing:22.464000pt;}
.ws9b{word-spacing:22.912000pt;}
.wsba{word-spacing:23.168000pt;}
.ws9a{word-spacing:23.616000pt;}
.ws5d{word-spacing:23.680000pt;}
.wsa2{word-spacing:23.808000pt;}
.ws5e{word-spacing:23.872000pt;}
.ws5c{word-spacing:23.936000pt;}
.ws75{word-spacing:24.000000pt;}
.wsb5{word-spacing:24.128000pt;}
.ws45{word-spacing:24.896000pt;}
.ws74{word-spacing:25.024000pt;}
.wsb6{word-spacing:25.472000pt;}
.wsb4{word-spacing:25.664000pt;}
.ws1e{word-spacing:25.984000pt;}
.wsb7{word-spacing:26.112000pt;}
.wsc8{word-spacing:30.208000pt;}
.wse7{word-spacing:35.680000pt;}
.wse8{word-spacing:36.320000pt;}
.wsab{word-spacing:36.672000pt;}
.wsac{word-spacing:36.736000pt;}
.ws44{word-spacing:38.464000pt;}
._25{margin-left:-18.540800pt;}
._26{margin-left:-16.928000pt;}
._24{margin-left:-13.248000pt;}
._23{margin-left:-12.307200pt;}
._20{margin-left:-10.615467pt;}
._1f{margin-left:-9.708800pt;}
._21{margin-left:-8.117333pt;}
._1e{margin-left:-6.670933pt;}
._e{margin-left:-4.989867pt;}
._d{margin-left:-4.074667pt;}
._7{margin-left:-2.720000pt;}
._2{margin-left:-1.066667pt;}
._0{width:1.013333pt;}
._5{width:1.925333pt;}
._19{width:2.933333pt;}
._16{width:4.342400pt;}
._10{width:5.248000pt;}
._f{width:6.788267pt;}
._18{width:8.010667pt;}
._22{width:8.953600pt;}
._1b{width:10.154667pt;}
._17{width:11.075200pt;}
._9{width:12.706133pt;}
._8{width:13.612800pt;}
._a{width:14.971733pt;}
._c{width:15.885867pt;}
._11{width:18.376533pt;}
._12{width:19.692800pt;}
._1a{width:20.753067pt;}
._6{width:21.907200pt;}
._1d{width:23.596800pt;}
._b{width:24.684800pt;}
._13{width:25.866667pt;}
._14{width:27.196800pt;}
._27{width:30.570667pt;}
._28{width:31.675733pt;}
._2a{width:35.882667pt;}
._29{width:36.965333pt;}
._3{width:572.320000pt;}
._4{width:689.760000pt;}
._1c{width:700.533333pt;}
._15{width:729.173333pt;}
._1{width:782.773333pt;}
.fs2{font-size:21.333333pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:72.533333pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y135{bottom:0.001333pt;}
.y9{bottom:2.933333pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.066667pt;}
.yc6{bottom:25.333333pt;}
.y7a{bottom:45.866667pt;}
.y4{bottom:60.266667pt;}
.ye6{bottom:66.666667pt;}
.y93{bottom:86.405333pt;}
.yff{bottom:87.466667pt;}
.y37{bottom:90.954667pt;}
.y112{bottom:91.205333pt;}
.ybb{bottom:93.354667pt;}
.yfc{bottom:94.970667pt;}
.ye0{bottom:95.210667pt;}
.y133{bottom:100.277333pt;}
.y67{bottom:100.298667pt;}
.y157{bottom:100.592000pt;}
.y17b{bottom:102.933333pt;}
.y92{bottom:106.933333pt;}
.ye4{bottom:108.000000pt;}
.y111{bottom:111.733333pt;}
.y36{bottom:111.754667pt;}
.yba{bottom:113.882667pt;}
.yfb{bottom:115.498667pt;}
.ydf{bottom:115.738667pt;}
.y17a{bottom:120.000000pt;}
.y132{bottom:120.805333pt;}
.y66{bottom:120.826667pt;}
.y156{bottom:121.120000pt;}
.y91{bottom:127.733333pt;}
.y110{bottom:128.000000pt;}
.y35{bottom:132.554667pt;}
.yb9{bottom:134.682667pt;}
.yfa{bottom:136.298667pt;}
.yde{bottom:136.538667pt;}
.y179{bottom:137.333333pt;}
.y131{bottom:141.605333pt;}
.y65{bottom:141.626667pt;}
.y155{bottom:141.920000pt;}
.y90{bottom:148.533333pt;}
.y34{bottom:153.082667pt;}
.y178{bottom:154.666667pt;}
.yb8{bottom:155.482667pt;}
.ydd{bottom:157.066667pt;}
.yf9{bottom:157.098667pt;}
.y130{bottom:162.405333pt;}
.y64{bottom:162.426667pt;}
.y154{bottom:162.720000pt;}
.y8f{bottom:167.466667pt;}
.y177{bottom:171.733333pt;}
.y33{bottom:173.882667pt;}
.ydc{bottom:174.933333pt;}
.yb7{bottom:176.010667pt;}
.yf8{bottom:177.626667pt;}
.y12f{bottom:182.933333pt;}
.y8e{bottom:182.938667pt;}
.y63{bottom:182.954667pt;}
.y153{bottom:183.248000pt;}
.ydb{bottom:184.805333pt;}
.y176{bottom:189.066667pt;}
.y32{bottom:194.682667pt;}
.yb6{bottom:196.810667pt;}
.yf7{bottom:198.426667pt;}
.y12e{bottom:203.733333pt;}
.y8d{bottom:203.738667pt;}
.y62{bottom:203.754667pt;}
.y152{bottom:204.048000pt;}
.yda{bottom:205.605333pt;}
.y175{bottom:206.400000pt;}
.y31{bottom:215.210667pt;}
.yb5{bottom:217.610667pt;}
.yf6{bottom:218.954667pt;}
.y12d{bottom:222.933333pt;}
.y174{bottom:223.733333pt;}
.y8c{bottom:224.266667pt;}
.y61{bottom:224.554667pt;}
.y151{bottom:224.848000pt;}
.yd9{bottom:226.133333pt;}
.y30{bottom:236.010667pt;}
.yb4{bottom:238.138667pt;}
.y12c{bottom:238.154667pt;}
.yf5{bottom:239.754667pt;}
.y173{bottom:240.800000pt;}
.yd8{bottom:244.000000pt;}
.y8b{bottom:245.066667pt;}
.y60{bottom:245.082667pt;}
.y150{bottom:245.376000pt;}
.yd5{bottom:249.333333pt;}
.yd7{bottom:253.866667pt;}
.y2f{bottom:256.810667pt;}
.y172{bottom:258.133333pt;}
.yb3{bottom:258.938667pt;}
.y12b{bottom:258.954667pt;}
.yf4{bottom:260.554667pt;}
.y8a{bottom:265.866667pt;}
.y5f{bottom:265.882667pt;}
.y14f{bottom:266.176000pt;}
.yd6{bottom:274.400000pt;}
.y171{bottom:275.466667pt;}
.y1a4{bottom:275.733333pt;}
.y2e{bottom:277.338667pt;}
.yb2{bottom:279.738667pt;}
.y12a{bottom:279.754667pt;}
.yf3{bottom:281.082667pt;}
.y89{bottom:284.800000pt;}
.y5e{bottom:286.410667pt;}
.y14e{bottom:286.976000pt;}
.y170{bottom:292.533333pt;}
.y1a3{bottom:293.333333pt;}
.y2d{bottom:298.138667pt;}
.yb1{bottom:300.266667pt;}
.y88{bottom:300.277333pt;}
.y129{bottom:300.282667pt;}
.yf2{bottom:301.882667pt;}
.y5d{bottom:307.210667pt;}
.y14d{bottom:307.504000pt;}
.y16f{bottom:309.866667pt;}
.y1a2{bottom:311.200000pt;}
.yd4{bottom:311.466667pt;}
.y2c{bottom:318.938667pt;}
.yb0{bottom:321.066667pt;}
.y87{bottom:321.077333pt;}
.y128{bottom:321.082667pt;}
.yf1{bottom:322.682667pt;}
.y1a1{bottom:326.126667pt;}
.y16e{bottom:327.200000pt;}
.y5c{bottom:328.010667pt;}
.y14c{bottom:328.304000pt;}
.y2b{bottom:339.466667pt;}
.yaf{bottom:340.000000pt;}
.y86{bottom:341.605333pt;}
.y127{bottom:341.610667pt;}
.yf0{bottom:343.210667pt;}
.y16d{bottom:344.266667pt;}
.y1a0{bottom:345.061333pt;}
.y5b{bottom:348.538667pt;}
.y14b{bottom:348.832000pt;}
.yae{bottom:355.466667pt;}
.y2a{bottom:357.333333pt;}
.y16c{bottom:361.600000pt;}
.y85{bottom:362.405333pt;}
.y126{bottom:362.410667pt;}
.y19f{bottom:363.996000pt;}
.yef{bottom:364.010667pt;}
.y29{bottom:367.200000pt;}
.y5a{bottom:369.338667pt;}
.y14a{bottom:369.632000pt;}
.yad{bottom:376.266667pt;}
.y16b{bottom:378.933333pt;}
.y84{bottom:383.205333pt;}
.y125{bottom:383.210667pt;}
.y28{bottom:384.800000pt;}
.yee{bottom:384.810667pt;}
.y19e{bottom:387.198667pt;}
.y59{bottom:390.138667pt;}
.y149{bottom:390.432000pt;}
.y27{bottom:394.698667pt;}
.y16a{bottom:396.266667pt;}
.yac{bottom:397.072000pt;}
.y83{bottom:403.733333pt;}
.y124{bottom:403.738667pt;}
.yed{bottom:405.338667pt;}
.y58{bottom:410.666667pt;}
.y148{bottom:410.960000pt;}
.y169{bottom:413.333333pt;}
.y26{bottom:415.498667pt;}
.yab{bottom:417.600000pt;}
.yd3{bottom:422.933333pt;}
.y82{bottom:424.533333pt;}
.y123{bottom:424.538667pt;}
.y19d{bottom:425.332000pt;}
.yec{bottom:426.138667pt;}
.y168{bottom:430.666667pt;}
.y57{bottom:431.466667pt;}
.y147{bottom:431.760000pt;}
.yd2{bottom:432.816000pt;}
.y25{bottom:436.298667pt;}
.yaa{bottom:438.400000pt;}
.y10f{bottom:438.421333pt;}
.y19c{bottom:444.266667pt;}
.y81{bottom:445.333333pt;}
.y122{bottom:445.338667pt;}
.yeb{bottom:446.666667pt;}
.y167{bottom:448.000000pt;}
.y56{bottom:452.266667pt;}
.y146{bottom:452.560000pt;}
.yd1{bottom:453.616000pt;}
.y24{bottom:456.826667pt;}
.ya9{bottom:457.333333pt;}
.y10e{bottom:458.949333pt;}
.y19b{bottom:462.133333pt;}
.y80{bottom:464.266667pt;}
.yea{bottom:465.866667pt;}
.y55{bottom:472.800000pt;}
.ya8{bottom:472.805333pt;}
.y145{bottom:473.088000pt;}
.yd0{bottom:474.144000pt;}
.y7e{bottom:476.000000pt;}
.ye3{bottom:476.800000pt;}
.y23{bottom:477.626667pt;}
.y166{bottom:479.733333pt;}
.y10d{bottom:479.749333pt;}
.ye9{bottom:481.338667pt;}
.y121{bottom:486.693333pt;}
.y7d{bottom:490.666667pt;}
.y54{bottom:493.600000pt;}
.ya7{bottom:493.605333pt;}
.y144{bottom:493.888000pt;}
.y19a{bottom:494.133333pt;}
.ycf{bottom:494.944000pt;}
.y22{bottom:498.154667pt;}
.y165{bottom:498.933333pt;}
.y10c{bottom:500.549333pt;}
.y7f{bottom:501.066667pt;}
.ye8{bottom:502.138667pt;}
.y120{bottom:507.493333pt;}
.y199{bottom:510.400000pt;}
.y7c{bottom:511.466667pt;}
.y53{bottom:514.133333pt;}
.ya6{bottom:514.149333pt;}
.y143{bottom:514.688000pt;}
.yce{bottom:515.744000pt;}
.y21{bottom:518.954667pt;}
.y10b{bottom:521.077333pt;}
.ye7{bottom:522.666667pt;}
.y198{bottom:527.200000pt;}
.y11f{bottom:528.021333pt;}
.y52{bottom:534.933333pt;}
.ya5{bottom:534.949333pt;}
.y142{bottom:535.216000pt;}
.ycd{bottom:536.272000pt;}
.y79{bottom:538.666667pt;}
.y20{bottom:539.754667pt;}
.y10a{bottom:541.877333pt;}
.ye5{bottom:543.466667pt;}
.y197{bottom:544.533333pt;}
.y11e{bottom:548.821333pt;}
.y78{bottom:553.605333pt;}
.y51{bottom:555.733333pt;}
.ya4{bottom:555.749333pt;}
.y141{bottom:556.016000pt;}
.ycc{bottom:557.072000pt;}
.y1f{bottom:560.282667pt;}
.y196{bottom:561.866667pt;}
.y109{bottom:562.677333pt;}
.y7b{bottom:564.000000pt;}
.y11d{bottom:569.621333pt;}
.y77{bottom:574.133333pt;}
.y164{bottom:574.666667pt;}
.y50{bottom:576.266667pt;}
.ya3{bottom:576.277333pt;}
.y140{bottom:576.544000pt;}
.ycb{bottom:577.872000pt;}
.y195{bottom:578.933333pt;}
.y1e{bottom:581.082667pt;}
.y108{bottom:583.205333pt;}
.y11c{bottom:590.149333pt;}
.y163{bottom:590.170667pt;}
.y194{bottom:596.266667pt;}
.y4f{bottom:597.066667pt;}
.ya2{bottom:597.077333pt;}
.y13f{bottom:597.344000pt;}
.yca{bottom:598.400000pt;}
.ye2{bottom:601.066667pt;}
.y1d{bottom:601.882667pt;}
.y107{bottom:604.005333pt;}
.y76{bottom:607.733333pt;}
.y11b{bottom:610.949333pt;}
.y162{bottom:610.970667pt;}
.y193{bottom:613.600000pt;}
.y4e{bottom:617.866667pt;}
.ya1{bottom:617.877333pt;}
.y13e{bottom:618.144000pt;}
.yc9{bottom:619.200000pt;}
.y1c{bottom:622.410667pt;}
.y106{bottom:624.533333pt;}
.y75{bottom:628.533333pt;}
.y192{bottom:630.666667pt;}
.y11a{bottom:631.477333pt;}
.y161{bottom:631.498667pt;}
.yc8{bottom:637.066667pt;}
.y4d{bottom:638.400000pt;}
.ya0{bottom:638.405333pt;}
.y13d{bottom:638.672000pt;}
.yc5{bottom:642.133333pt;}
.y1b{bottom:643.210667pt;}
.y105{bottom:645.333333pt;}
.yc7{bottom:646.666667pt;}
.y191{bottom:648.000000pt;}
.y119{bottom:652.277333pt;}
.y160{bottom:652.298667pt;}
.y74{bottom:655.216000pt;}
.y4c{bottom:659.200000pt;}
.y9f{bottom:659.205333pt;}
.y13c{bottom:659.472000pt;}
.y1a{bottom:664.010667pt;}
.y190{bottom:665.333333pt;}
.y104{bottom:666.133333pt;}
.y118{bottom:673.077333pt;}
.y15f{bottom:673.098667pt;}
.y4b{bottom:680.000000pt;}
.y9e{bottom:680.005333pt;}
.y73{bottom:680.016000pt;}
.y13b{bottom:680.272000pt;}
.y18f{bottom:682.666667pt;}
.yc4{bottom:683.733333pt;}
.y19{bottom:684.538667pt;}
.yfe{bottom:689.066667pt;}
.y103{bottom:693.600000pt;}
.y117{bottom:693.605333pt;}
.y15e{bottom:693.626667pt;}
.y18e{bottom:699.733333pt;}
.y4a{bottom:700.533333pt;}
.y72{bottom:700.544000pt;}
.y13a{bottom:700.800000pt;}
.y18{bottom:705.338667pt;}
.y102{bottom:714.400000pt;}
.y116{bottom:714.405333pt;}
.y15d{bottom:714.426667pt;}
.y18d{bottom:717.066667pt;}
.y49{bottom:721.333333pt;}
.y71{bottom:721.344000pt;}
.y139{bottom:721.600000pt;}
.y17{bottom:725.866667pt;}
.y18c{bottom:734.400000pt;}
.y101{bottom:735.200000pt;}
.y115{bottom:735.205333pt;}
.y15c{bottom:735.226667pt;}
.y138{bottom:740.800000pt;}
.y48{bottom:742.133333pt;}
.y70{bottom:742.144000pt;}
.y16{bottom:743.733333pt;}
.y136{bottom:751.466667pt;}
.y15{bottom:752.800000pt;}
.y100{bottom:755.733333pt;}
.y15b{bottom:755.754667pt;}
.y137{bottom:756.000000pt;}
.yc3{bottom:759.733333pt;}
.y9d{bottom:761.066667pt;}
.y47{bottom:762.666667pt;}
.y6f{bottom:762.672000pt;}
.y18b{bottom:768.800000pt;}
.yc2{bottom:769.610667pt;}
.y14{bottom:770.133333pt;}
.y134{bottom:772.265333pt;}
.y114{bottom:776.533333pt;}
.y9c{bottom:776.538667pt;}
.y15a{bottom:776.554667pt;}
.y46{bottom:783.466667pt;}
.y6e{bottom:783.472000pt;}
.y13{bottom:785.066667pt;}
.y18a{bottom:786.133333pt;}
.yc1{bottom:790.410667pt;}
.yfd{bottom:792.533333pt;}
.y12{bottom:794.133333pt;}
.y113{bottom:797.333333pt;}
.y9b{bottom:797.338667pt;}
.y159{bottom:797.354667pt;}
.y189{bottom:803.200000pt;}
.y45{bottom:804.000000pt;}
.yc0{bottom:810.938667pt;}
.y11{bottom:811.466667pt;}
.y9a{bottom:817.866667pt;}
.y158{bottom:817.882667pt;}
.y188{bottom:820.533333pt;}
.y6d{bottom:823.200000pt;}
.y44{bottom:824.800000pt;}
.y10{bottom:829.605333pt;}
.ybf{bottom:831.738667pt;}
.y187{bottom:837.866667pt;}
.y99{bottom:838.666667pt;}
.y6c{bottom:838.682667pt;}
.ye1{bottom:844.000000pt;}
.y43{bottom:845.600000pt;}
.yf{bottom:850.133333pt;}
.ybe{bottom:852.538667pt;}
.y186{bottom:855.200000pt;}
.y98{bottom:859.200000pt;}
.y6b{bottom:859.210667pt;}
.y42{bottom:866.133333pt;}
.ye{bottom:871.461333pt;}
.y185{bottom:872.266667pt;}
.ybd{bottom:873.066667pt;}
.y97{bottom:880.000000pt;}
.y6a{bottom:880.010667pt;}
.y41{bottom:886.933333pt;}
.y184{bottom:889.600000pt;}
.ybc{bottom:890.933333pt;}
.yd{bottom:895.728000pt;}
.y96{bottom:900.805333pt;}
.y69{bottom:900.810667pt;}
.y40{bottom:904.800000pt;}
.y183{bottom:906.933333pt;}
.y3f{bottom:914.666667pt;}
.yc{bottom:919.733333pt;}
.y95{bottom:921.333333pt;}
.y68{bottom:921.338667pt;}
.y182{bottom:924.000000pt;}
.y3e{bottom:932.266667pt;}
.y181{bottom:941.333333pt;}
.y94{bottom:942.133333pt;}
.y3d{bottom:942.138667pt;}
.yb{bottom:944.000000pt;}
.y180{bottom:958.666667pt;}
.y8{bottom:962.933333pt;}
.y3c{bottom:962.938667pt;}
.y17f{bottom:975.733333pt;}
.y3b{bottom:983.466667pt;}
.y6{bottom:984.266667pt;}
.y17e{bottom:993.066667pt;}
.y3a{bottom:1004.266667pt;}
.y5{bottom:1006.666667pt;}
.y17d{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y39{bottom:1025.066667pt;}
.y17c{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y38{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.hd{height:15.232000pt;}
.h4{height:18.560000pt;}
.h20{height:20.800000pt;}
.h5{height:20.801333pt;}
.h8{height:21.333333pt;}
.h21{height:30.464000pt;}
.h10{height:37.120000pt;}
.h22{height:38.080000pt;}
.h2{height:41.493333pt;}
.h16{height:41.600000pt;}
.h7{height:42.134667pt;}
.h17{height:43.750000pt;}
.h6{height:45.696000pt;}
.hc{height:46.400000pt;}
.he{height:49.792000pt;}
.h24{height:51.040000pt;}
.hf{height:52.317708pt;}
.ha{height:53.312000pt;}
.h23{height:55.625000pt;}
.hb{height:55.680000pt;}
.h14{height:61.865333pt;}
.h13{height:62.133333pt;}
.h3{height:62.812500pt;}
.h1e{height:63.104000pt;}
.h9{height:64.960000pt;}
.h15{height:74.400000pt;}
.h12{height:97.280000pt;}
.h1c{height:103.466667pt;}
.h18{height:109.865333pt;}
.h1a{height:124.266667pt;}
.h11{height:138.880000pt;}
.h19{height:240.000000pt;}
.h1b{height:248.534667pt;}
.h1f{height:268.801333pt;}
.h1d{height:292.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w5{width:151.200000pt;}
.w2{width:425.066667pt;}
.w6{width:630.400000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x27{left:10.666667pt;}
.x36{left:14.666667pt;}
.x1b{left:19.200000pt;}
.x22{left:20.533333pt;}
.x2e{left:21.866667pt;}
.x3{left:70.933333pt;}
.x1{left:81.333333pt;}
.x9{left:89.341333pt;}
.x28{left:90.400000pt;}
.x2a{left:98.933333pt;}
.x38{left:100.266667pt;}
.x31{left:101.605333pt;}
.x19{left:105.333333pt;}
.x30{left:106.933333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x23{left:117.333333pt;}
.x10{left:128.533333pt;}
.x2f{left:132.533333pt;}
.x13{left:141.061333pt;}
.x1d{left:153.866667pt;}
.x24{left:155.466667pt;}
.x37{left:160.266667pt;}
.x2b{left:165.349333pt;}
.x1c{left:166.933333pt;}
.x1f{left:181.066667pt;}
.xc{left:183.200000pt;}
.xd{left:185.866667pt;}
.xb{left:220.800000pt;}
.x2c{left:236.821333pt;}
.x1e{left:248.000000pt;}
.x14{left:254.389333pt;}
.x17{left:270.405333pt;}
.x15{left:288.533333pt;}
.x34{left:293.333333pt;}
.xa{left:304.530667pt;}
.x12{left:313.861333pt;}
.xe{left:332.533333pt;}
.x32{left:363.749333pt;}
.x39{left:393.066667pt;}
.x2{left:396.800000pt;}
.xf{left:420.533333pt;}
.x20{left:438.400000pt;}
.x5{left:496.000000pt;}
.x1a{left:501.333333pt;}
.x21{left:508.800000pt;}
.x18{left:544.266667pt;}
.x16{left:551.477333pt;}
.x25{left:556.266667pt;}
.x2d{left:558.400000pt;}
.x35{left:587.200000pt;}
.x33{left:602.133333pt;}
.x7{left:609.600000pt;}
.x26{left:612.266667pt;}
.x29{left:625.866667pt;}
.x11{left:663.733333pt;}
}




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