
    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_bd861e9afbde3aab57d014cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_78e35488a6a28176a282308b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_998ecf22d572e4a1fb373d71.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b268ee96d25233107f783a80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_05c886be96f0efafa0a10078.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f42837965af91f3c6ef0d8ce.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:-27.018720px;}
.v5{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.v6{vertical-align:27.000000px;}
.v3{vertical-align:45.029880px;}
.ls2a{letter-spacing:-1.440000px;}
.ls29{letter-spacing:-1.368000px;}
.ls2d{letter-spacing:-1.296000px;}
.ls2e{letter-spacing:-1.224000px;}
.ls2c{letter-spacing:-1.080000px;}
.ls78{letter-spacing:-1.008000px;}
.ls2b{letter-spacing:-0.936000px;}
.ls64{letter-spacing:-0.792000px;}
.ls4c{letter-spacing:-0.720000px;}
.ls4b{letter-spacing:-0.648000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls79{letter-spacing:-0.504000px;}
.ls30{letter-spacing:-0.432000px;}
.ls42{letter-spacing:-0.420840px;}
.lsc{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls38{letter-spacing:-0.240480px;}
.ls8{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.180360px;}
.ls1b{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.120240px;}
.lsb{letter-spacing:-0.072000px;}
.ls4e{letter-spacing:-0.065880px;}
.ls3b{letter-spacing:-0.060120px;}
.ls7{letter-spacing:0.000000px;}
.ls74{letter-spacing:0.021960px;}
.ls43{letter-spacing:0.060120px;}
.ls4d{letter-spacing:0.065880px;}
.ls0{letter-spacing:0.072000px;}
.ls41{letter-spacing:0.082080px;}
.ls40{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.120240px;}
.ls6d{letter-spacing:0.140040px;}
.ls4{letter-spacing:0.144000px;}
.ls49{letter-spacing:0.150300px;}
.ls68{letter-spacing:0.151200px;}
.ls3{letter-spacing:0.164160px;}
.ls1{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.180360px;}
.lsa{letter-spacing:0.191520px;}
.ls48{letter-spacing:0.197640px;}
.ls33{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.720000px;}
.ls73{letter-spacing:0.727200px;}
.ls19{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.440000px;}
.ls69{letter-spacing:1.447200px;}
.ls12{letter-spacing:1.800000px;}
.ls44{letter-spacing:2.160000px;}
.lse{letter-spacing:2.520000px;}
.ls22{letter-spacing:2.880000px;}
.ls31{letter-spacing:3.240000px;}
.ls35{letter-spacing:3.600000px;}
.ls4f{letter-spacing:3.960000px;}
.ls1d{letter-spacing:4.320000px;}
.ls17{letter-spacing:4.680000px;}
.ls14{letter-spacing:5.032800px;}
.ls6a{letter-spacing:5.040000px;}
.ls6{letter-spacing:5.400000px;}
.ls6e{letter-spacing:5.407200px;}
.ls47{letter-spacing:5.760000px;}
.ls76{letter-spacing:5.767200px;}
.ls10{letter-spacing:6.120000px;}
.ls25{letter-spacing:6.127200px;}
.ls26{letter-spacing:6.480000px;}
.ls3e{letter-spacing:6.840000px;}
.ls6b{letter-spacing:7.200000px;}
.ls1a{letter-spacing:7.560000px;}
.lsf{letter-spacing:7.920000px;}
.ls72{letter-spacing:8.280000px;}
.ls32{letter-spacing:8.640000px;}
.ls34{letter-spacing:8.654400px;}
.ls18{letter-spacing:9.000000px;}
.ls6f{letter-spacing:9.720000px;}
.ls67{letter-spacing:10.080000px;}
.ls70{letter-spacing:10.087200px;}
.ls20{letter-spacing:10.800000px;}
.ls16{letter-spacing:11.160000px;}
.ls1f{letter-spacing:11.520000px;}
.ls77{letter-spacing:11.880000px;}
.ls45{letter-spacing:12.240000px;}
.ls24{letter-spacing:12.600000px;}
.ls21{letter-spacing:13.320000px;}
.ls5{letter-spacing:14.400000px;}
.ls46{letter-spacing:14.760000px;}
.ls75{letter-spacing:15.480000px;}
.ls4a{letter-spacing:15.840000px;}
.ls71{letter-spacing:16.200000px;}
.ls65{letter-spacing:16.560000px;}
.ls66{letter-spacing:16.567200px;}
.ls13{letter-spacing:17.280000px;}
.ls7c{letter-spacing:18.360000px;}
.ls23{letter-spacing:22.680000px;}
.ls28{letter-spacing:23.400000px;}
.ls27{letter-spacing:23.760000px;}
.ls7b{letter-spacing:26.064000px;}
.ls7d{letter-spacing:31.680000px;}
.ls51{letter-spacing:34.989840px;}
.ls60{letter-spacing:35.350560px;}
.ls7a{letter-spacing:62.064000px;}
.ls53{letter-spacing:107.374320px;}
.ls50{letter-spacing:117.474480px;}
.ls3f{letter-spacing:133.286040px;}
.ls58{letter-spacing:152.344080px;}
.ls5f{letter-spacing:152.704800px;}
.ls54{letter-spacing:173.957220px;}
.ls5d{letter-spacing:174.317940px;}
.ls5a{letter-spacing:182.584440px;}
.ls56{letter-spacing:183.666600px;}
.ls62{letter-spacing:189.438120px;}
.ls61{letter-spacing:212.464080px;}
.ls55{letter-spacing:221.482080px;}
.ls52{letter-spacing:236.632320px;}
.ls5c{letter-spacing:242.343720px;}
.ls36{letter-spacing:250.640280px;}
.ls5e{letter-spacing:257.493960px;}
.ls57{letter-spacing:266.511960px;}
.ls59{letter-spacing:311.481720px;}
.ls63{letter-spacing:356.511600px;}
.ls5b{letter-spacing:371.601720px;}
.ls6c{letter-spacing:431.000280px;}
.ls3d{letter-spacing:483.545160px;}
.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;}
}
.ws2{word-spacing:-53.784000px;}
.ws8d{word-spacing:-18.504000px;}
.ws62{word-spacing:-18.360000px;}
.ws8c{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws24{word-spacing:-17.928000px;}
.ws23{word-spacing:-17.856000px;}
.ws26{word-spacing:-17.784000px;}
.ws25{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.640000px;}
.ws61{word-spacing:-17.424000px;}
.wscc{word-spacing:-17.280000px;}
.wsd2{word-spacing:-17.064000px;}
.ws5e{word-spacing:-16.920000px;}
.wsd3{word-spacing:-16.704000px;}
.wsb7{word-spacing:-16.667640px;}
.ws5f{word-spacing:-16.632000px;}
.ws60{word-spacing:-16.560000px;}
.wsb8{word-spacing:-16.535880px;}
.wsfc{word-spacing:-16.404120px;}
.wscd{word-spacing:-15.210360px;}
.ws90{word-spacing:-15.150240px;}
.wsa9{word-spacing:-15.090120px;}
.wsaa{word-spacing:-15.030000px;}
.wscf{word-spacing:-14.969880px;}
.ws8f{word-spacing:-14.909760px;}
.wsce{word-spacing:-14.849640px;}
.ws8e{word-spacing:-14.789520px;}
.wsa8{word-spacing:-14.609160px;}
.ws4{word-spacing:-12.161520px;}
.wsab{word-spacing:-9.720000px;}
.ws111{word-spacing:-4.680000px;}
.ws59{word-spacing:-4.464000px;}
.wsed{word-spacing:-4.392000px;}
.ws110{word-spacing:-4.320000px;}
.wsec{word-spacing:-4.104000px;}
.wse2{word-spacing:-4.032000px;}
.wse3{word-spacing:-3.960000px;}
.ws70{word-spacing:-3.744000px;}
.ws11{word-spacing:-3.672000px;}
.ws6f{word-spacing:-3.600000px;}
.ws12{word-spacing:-3.528000px;}
.wsbb{word-spacing:-3.384000px;}
.wsfb{word-spacing:-3.312000px;}
.wsbc{word-spacing:-3.240000px;}
.wsfa{word-spacing:-3.168000px;}
.ws75{word-spacing:-3.024000px;}
.wsba{word-spacing:-2.952000px;}
.ws73{word-spacing:-2.880000px;}
.ws74{word-spacing:-2.736000px;}
.ws66{word-spacing:-2.664000px;}
.ws28{word-spacing:-2.592000px;}
.ws27{word-spacing:-2.520000px;}
.ws1c{word-spacing:-2.304000px;}
.ws9c{word-spacing:-2.232000px;}
.ws1b{word-spacing:-2.160000px;}
.ws67{word-spacing:-1.944000px;}
.ws3f{word-spacing:-1.872000px;}
.wsb1{word-spacing:-1.800000px;}
.ws9b{word-spacing:-1.728000px;}
.ws40{word-spacing:-1.584000px;}
.ws3e{word-spacing:-1.512000px;}
.ws3d{word-spacing:-1.440000px;}
.ws47{word-spacing:-1.224000px;}
.wsaf{word-spacing:-1.152000px;}
.wsd6{word-spacing:-1.142280px;}
.ws46{word-spacing:-1.080000px;}
.wsd0{word-spacing:-1.008000px;}
.wse1{word-spacing:-0.864000px;}
.ws97{word-spacing:-0.792000px;}
.wsd7{word-spacing:-0.781560px;}
.ws41{word-spacing:-0.720000px;}
.ws2b{word-spacing:-0.504000px;}
.ws2c{word-spacing:-0.432000px;}
.wsb2{word-spacing:-0.420840px;}
.ws22{word-spacing:-0.360720px;}
.wsb{word-spacing:-0.360000px;}
.wsb6{word-spacing:-0.300600px;}
.ws101{word-spacing:-0.197640px;}
.wsa7{word-spacing:-0.180360px;}
.ws8{word-spacing:-0.144000px;}
.wsc4{word-spacing:-0.131760px;}
.wsa4{word-spacing:-0.120240px;}
.ws7{word-spacing:-0.108000px;}
.wsa{word-spacing:-0.072000px;}
.wsa2{word-spacing:-0.060120px;}
.ws6{word-spacing:0.000000px;}
.wsb3{word-spacing:0.060120px;}
.ws9{word-spacing:0.072000px;}
.wsb4{word-spacing:0.120240px;}
.wsc3{word-spacing:0.131760px;}
.ws65{word-spacing:0.144000px;}
.wsa5{word-spacing:0.180360px;}
.ws20{word-spacing:0.216000px;}
.wsa3{word-spacing:0.240480px;}
.ws100{word-spacing:0.263520px;}
.ws32{word-spacing:0.288000px;}
.wsa6{word-spacing:0.300600px;}
.ws34{word-spacing:0.360000px;}
.ws76{word-spacing:0.432000px;}
.ws109{word-spacing:0.504000px;}
.wsd5{word-spacing:0.541080px;}
.ws71{word-spacing:0.576000px;}
.wsf6{word-spacing:0.601200px;}
.ws48{word-spacing:0.648000px;}
.wsd4{word-spacing:0.661320px;}
.ws49{word-spacing:0.720000px;}
.wsbd{word-spacing:0.792000px;}
.wsff{word-spacing:0.864000px;}
.wsf7{word-spacing:0.936000px;}
.ws9e{word-spacing:1.008000px;}
.wse{word-spacing:1.080000px;}
.ws68{word-spacing:1.224000px;}
.ws5b{word-spacing:1.296000px;}
.ws4b{word-spacing:1.368000px;}
.ws4a{word-spacing:1.440000px;}
.ws8b{word-spacing:1.656000px;}
.ws3a{word-spacing:1.728000px;}
.ws3b{word-spacing:1.800000px;}
.ws9f{word-spacing:1.872000px;}
.wsc7{word-spacing:2.016000px;}
.ws91{word-spacing:2.088000px;}
.ws1e{word-spacing:2.160000px;}
.wsb9{word-spacing:2.376000px;}
.wsc{word-spacing:2.448000px;}
.ws1d{word-spacing:2.520000px;}
.ws84{word-spacing:2.736000px;}
.ws14{word-spacing:2.808000px;}
.ws83{word-spacing:2.880000px;}
.ws104{word-spacing:3.024000px;}
.ws92{word-spacing:3.096000px;}
.ws17{word-spacing:3.168000px;}
.ws13{word-spacing:3.240000px;}
.wse9{word-spacing:3.384000px;}
.wsa0{word-spacing:3.456000px;}
.ws102{word-spacing:3.486960px;}
.ws16{word-spacing:3.528000px;}
.wsa1{word-spacing:3.600000px;}
.ws108{word-spacing:3.816000px;}
.wsf3{word-spacing:3.888000px;}
.ws15{word-spacing:3.960000px;}
.ws6c{word-spacing:4.176000px;}
.ws6b{word-spacing:4.248000px;}
.ws55{word-spacing:4.320000px;}
.wsac{word-spacing:4.536000px;}
.ws54{word-spacing:4.608000px;}
.ws56{word-spacing:4.680000px;}
.wsd1{word-spacing:4.752000px;}
.ws18{word-spacing:4.896000px;}
.ws7e{word-spacing:4.968000px;}
.ws19{word-spacing:5.040000px;}
.ws9a{word-spacing:5.112000px;}
.ws6e{word-spacing:5.256000px;}
.ws6d{word-spacing:5.328000px;}
.ws45{word-spacing:5.400000px;}
.ws106{word-spacing:5.616000px;}
.ws105{word-spacing:5.688000px;}
.ws31{word-spacing:5.760000px;}
.ws88{word-spacing:5.976000px;}
.ws2f{word-spacing:6.048000px;}
.ws30{word-spacing:6.120000px;}
.wsb5{word-spacing:6.336000px;}
.ws9d{word-spacing:6.408000px;}
.ws89{word-spacing:6.480000px;}
.wseb{word-spacing:6.696000px;}
.wsb0{word-spacing:6.768000px;}
.ws95{word-spacing:6.840000px;}
.wsc2{word-spacing:7.056000px;}
.ws94{word-spacing:7.128000px;}
.ws96{word-spacing:7.200000px;}
.wse6{word-spacing:7.416000px;}
.ws5c{word-spacing:7.488000px;}
.ws5d{word-spacing:7.560000px;}
.ws115{word-spacing:7.704000px;}
.ws38{word-spacing:7.776000px;}
.ws2e{word-spacing:7.848000px;}
.ws2d{word-spacing:7.920000px;}
.wsf4{word-spacing:8.136000px;}
.ws39{word-spacing:8.208000px;}
.wsf5{word-spacing:8.280000px;}
.ws3c{word-spacing:8.496000px;}
.ws58{word-spacing:8.568000px;}
.ws6a{word-spacing:8.640000px;}
.wsc1{word-spacing:8.856000px;}
.ws57{word-spacing:8.928000px;}
.wsd{word-spacing:9.000000px;}
.wsca{word-spacing:9.216000px;}
.ws72{word-spacing:9.360000px;}
.wscb{word-spacing:9.432000px;}
.wsde{word-spacing:9.720000px;}
.wsdd{word-spacing:10.008000px;}
.wsdc{word-spacing:10.080000px;}
.ws64{word-spacing:10.368000px;}
.ws33{word-spacing:10.440000px;}
.ws7d{word-spacing:10.656000px;}
.ws63{word-spacing:10.728000px;}
.ws4d{word-spacing:10.800000px;}
.ws4c{word-spacing:11.016000px;}
.wsea{word-spacing:11.088000px;}
.ws4e{word-spacing:11.160000px;}
.wsae{word-spacing:11.376000px;}
.wsad{word-spacing:11.448000px;}
.ws4f{word-spacing:11.520000px;}
.ws107{word-spacing:11.736000px;}
.ws7a{word-spacing:11.808000px;}
.ws7b{word-spacing:11.880000px;}
.ws79{word-spacing:11.952000px;}
.ws87{word-spacing:12.096000px;}
.wsc5{word-spacing:12.168000px;}
.ws93{word-spacing:12.240000px;}
.ws7c{word-spacing:12.456000px;}
.wsfd{word-spacing:12.960000px;}
.ws7f{word-spacing:13.176000px;}
.ws80{word-spacing:13.248000px;}
.wsfe{word-spacing:13.320000px;}
.wsf0{word-spacing:13.536000px;}
.wsef{word-spacing:13.608000px;}
.wsc0{word-spacing:13.680000px;}
.wse4{word-spacing:13.896000px;}
.wse5{word-spacing:13.968000px;}
.ws78{word-spacing:14.040000px;}
.ws10{word-spacing:14.256000px;}
.ws77{word-spacing:14.328000px;}
.wsf8{word-spacing:14.400000px;}
.wsf9{word-spacing:14.472000px;}
.wse8{word-spacing:14.688000px;}
.wsf{word-spacing:14.760000px;}
.wsf2{word-spacing:14.976000px;}
.wsbe{word-spacing:15.048000px;}
.wsbf{word-spacing:15.120000px;}
.ws11c{word-spacing:15.336000px;}
.ws103{word-spacing:15.480000px;}
.wsd9{word-spacing:15.691320px;}
.wsd8{word-spacing:15.751440px;}
.wsf1{word-spacing:15.768000px;}
.wsc6{word-spacing:15.840000px;}
.wsc9{word-spacing:16.056000px;}
.ws98{word-spacing:16.200000px;}
.wsc8{word-spacing:16.272000px;}
.wsda{word-spacing:16.416000px;}
.wsdb{word-spacing:16.488000px;}
.ws5a{word-spacing:16.560000px;}
.ws43{word-spacing:16.776000px;}
.ws42{word-spacing:16.920000px;}
.ws44{word-spacing:17.208000px;}
.wse7{word-spacing:17.280000px;}
.ws69{word-spacing:17.640000px;}
.ws21{word-spacing:17.856000px;}
.ws1f{word-spacing:18.000000px;}
.ws82{word-spacing:18.288000px;}
.ws81{word-spacing:18.360000px;}
.ws99{word-spacing:18.720000px;}
.wsdf{word-spacing:19.080000px;}
.wse0{word-spacing:19.440000px;}
.ws114{word-spacing:20.160000px;}
.ws10d{word-spacing:20.520000px;}
.ws2a{word-spacing:20.736000px;}
.ws29{word-spacing:20.880000px;}
.ws116{word-spacing:21.600000px;}
.ws85{word-spacing:22.536000px;}
.ws86{word-spacing:22.680000px;}
.ws35{word-spacing:23.256000px;}
.ws37{word-spacing:23.616000px;}
.ws8a{word-spacing:23.688000px;}
.ws36{word-spacing:23.760000px;}
.ws10f{word-spacing:24.336000px;}
.ws10e{word-spacing:24.480000px;}
.ws51{word-spacing:25.560000px;}
.ws53{word-spacing:25.848000px;}
.ws52{word-spacing:25.920000px;}
.ws50{word-spacing:26.280000px;}
.wsee{word-spacing:28.800000px;}
.ws117{word-spacing:29.160000px;}
.ws11e{word-spacing:31.536000px;}
.ws1a{word-spacing:32.256000px;}
.ws11f{word-spacing:32.328000px;}
.ws119{word-spacing:32.400000px;}
.ws10c{word-spacing:34.920000px;}
.ws113{word-spacing:40.248000px;}
.ws112{word-spacing:40.680000px;}
.ws10b{word-spacing:54.216000px;}
.ws10a{word-spacing:57.240000px;}
.ws11a{word-spacing:62.280000px;}
.ws11d{word-spacing:64.440000px;}
.ws11b{word-spacing:65.520000px;}
.ws118{word-spacing:75.096000px;}
.ws120{word-spacing:81.720000px;}
._16{margin-left:-24.343200px;}
._29{margin-left:-22.320000px;}
._2b{margin-left:-18.648000px;}
._21{margin-left:-15.048000px;}
._14{margin-left:-12.974400px;}
._2a{margin-left:-11.736000px;}
._19{margin-left:-10.080000px;}
._11{margin-left:-4.543200px;}
._8{margin-left:-2.664000px;}
._1{margin-left:-1.152000px;}
._0{width:1.231200px;}
._5{width:2.304000px;}
._17{width:3.744000px;}
._6{width:4.752000px;}
._b{width:6.336000px;}
._a{width:8.064000px;}
._d{width:9.792000px;}
._c{width:10.872000px;}
._13{width:12.016800px;}
._12{width:13.608000px;}
._18{width:15.048000px;}
._f{width:16.992000px;}
._20{width:19.000800px;}
._1f{width:20.001600px;}
._9{width:21.024000px;}
._15{width:22.248000px;}
._e{width:23.544000px;}
._10{width:25.560000px;}
._22{width:28.800000px;}
._4{width:31.320000px;}
._2{width:43.200000px;}
._3{width:49.410000px;}
._28{width:66.492720px;}
._1a{width:76.953600px;}
._2c{width:82.224000px;}
._27{width:94.929480px;}
._25{width:105.029640px;}
._26{width:113.326200px;}
._1c{width:257.313600px;}
._1e{width:272.403720px;}
._24{width:312.744240px;}
._1b{width:371.962440px;}
._1d{width:386.391240px;}
._23{width:846.000000px;}
._7{width:2366.136000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(41,79,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs3{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.330000px;}
.yba{bottom:3.870000px;}
.yb2{bottom:3.960000px;}
.y91{bottom:4.500000px;}
.y108{bottom:7.200000px;}
.yfe{bottom:9.810000px;}
.yfa{bottom:10.440000px;}
.y104{bottom:13.050000px;}
.ye8{bottom:15.750000px;}
.yb1{bottom:23.400000px;}
.yf0{bottom:27.000000px;}
.yb9{bottom:28.620000px;}
.yb6{bottom:28.710000px;}
.y4e{bottom:80.100000px;}
.ye4{bottom:80.820000px;}
.y13e{bottom:81.270000px;}
.y97{bottom:81.990000px;}
.y25{bottom:85.050000px;}
.y121{bottom:88.020000px;}
.y18d{bottom:92.880000px;}
.y171{bottom:93.690000px;}
.y1aa{bottom:95.130000px;}
.y72{bottom:103.320000px;}
.y120{bottom:103.770000px;}
.y1c2{bottom:104.682060px;}
.y4d{bottom:105.570000px;}
.ye3{bottom:106.380000px;}
.y95{bottom:108.990000px;}
.y122{bottom:110.520000px;}
.y24{bottom:110.610000px;}
.y1e3{bottom:115.380000px;}
.y170{bottom:117.270000px;}
.y18c{bottom:118.350000px;}
.y1a9{bottom:120.600000px;}
.y1d0{bottom:121.320000px;}
.y1c1{bottom:124.206030px;}
.yc3{bottom:126.540000px;}
.y13d{bottom:126.990000px;}
.y71{bottom:128.880000px;}
.y4c{bottom:131.130000px;}
.y96{bottom:131.489910px;}
.ye2{bottom:131.850000px;}
.y11e{bottom:133.740000px;}
.y23{bottom:136.080000px;}
.y16f{bottom:140.490000px;}
.y1e2{bottom:140.850000px;}
.y13c{bottom:143.100000px;}
.y1c0{bottom:143.730000px;}
.y18b{bottom:143.820000px;}
.y1a8{bottom:146.070000px;}
.y1cf{bottom:146.880000px;}
.y11d{bottom:149.490000px;}
.y94{bottom:150.300000px;}
.y70{bottom:154.350000px;}
.y11f{bottom:156.240000px;}
.y4b{bottom:156.600000px;}
.ye1{bottom:157.320000px;}
.y1bf{bottom:160.740000px;}
.y22{bottom:161.550000px;}
.y16e{bottom:162.990000px;}
.y1ed{bottom:164.880000px;}
.y93{bottom:166.050000px;}
.y1e1{bottom:166.320000px;}
.y16c{bottom:167.490000px;}
.y18a{bottom:169.380000px;}
.yc2{bottom:169.920000px;}
.y1a7{bottom:171.630000px;}
.y1ce{bottom:172.350000px;}
.y11b{bottom:179.550000px;}
.y6f{bottom:179.820000px;}
.y1be{bottom:180.270000px;}
.y4a{bottom:182.070000px;}
.ye0{bottom:182.880000px;}
.y1bc{bottom:184.230000px;}
.y16d{bottom:185.490000px;}
.y21{bottom:187.110000px;}
.y13b{bottom:187.380000px;}
.y1ec{bottom:190.350000px;}
.y1e0{bottom:191.880000px;}
.y189{bottom:194.850000px;}
.y11a{bottom:195.300000px;}
.y92{bottom:196.020000px;}
.y1a6{bottom:197.100000px;}
.y1cd{bottom:197.820000px;}
.y1bd{bottom:199.800000px;}
.y11c{bottom:202.050000px;}
.y6e{bottom:205.380000px;}
.y49{bottom:207.630000px;}
.ydf{bottom:208.350000px;}
.y16b{bottom:208.800000px;}
.y20{bottom:212.580000px;}
.yc1{bottom:213.570000px;}
.y1eb{bottom:215.820000px;}
.y1df{bottom:217.350000px;}
.y90{bottom:219.240000px;}
.y1bb{bottom:220.050000px;}
.y188{bottom:220.320000px;}
.y1a5{bottom:222.570000px;}
.y1cc{bottom:223.380000px;}
.y118{bottom:225.270000px;}
.y6d{bottom:230.850000px;}
.y16a{bottom:231.300000px;}
.y48{bottom:233.100000px;}
.yde{bottom:233.820000px;}
.y1f{bottom:238.050000px;}
.yc0{bottom:239.130000px;}
.y1ba{bottom:239.490000px;}
.y117{bottom:241.020000px;}
.y1de{bottom:242.820000px;}
.y187{bottom:245.880000px;}
.y119{bottom:247.770000px;}
.y1a4{bottom:248.130000px;}
.y1cb{bottom:248.850000px;}
.y1b7{bottom:253.170000px;}
.y169{bottom:253.800000px;}
.y6c{bottom:256.320000px;}
.y165{bottom:258.300090px;}
.y47{bottom:258.570000px;}
.y1b9{bottom:259.020000px;}
.ydd{bottom:259.380000px;}
.y1e{bottom:263.610000px;}
.y1dd{bottom:268.380000px;}
.y115{bottom:270.990000px;}
.y186{bottom:271.350000px;}
.y1a3{bottom:273.600000px;}
.y1ca{bottom:274.320000px;}
.y168{bottom:276.300000px;}
.y1b8{bottom:278.550000px;}
.ybf{bottom:279.990000px;}
.y164{bottom:280.800000px;}
.y6b{bottom:281.880000px;}
.y46{bottom:284.130000px;}
.ydc{bottom:284.850000px;}
.y114{bottom:286.740000px;}
.y1d{bottom:289.080000px;}
.y116{bottom:293.490000px;}
.ybe{bottom:293.670000px;}
.y1dc{bottom:293.850000px;}
.y185{bottom:296.820000px;}
.y167{bottom:298.800000px;}
.y1a2{bottom:299.070000px;}
.y8f{bottom:299.880000px;}
.y6a{bottom:307.350000px;}
.ydb{bottom:310.320000px;}
.y1c{bottom:314.550000px;}
.y112{bottom:316.800000px;}
.y1b6{bottom:318.240000px;}
.ybd{bottom:319.770000px;}
.y166{bottom:321.300000px;}
.y1b4{bottom:322.200000px;}
.y184{bottom:322.380000px;}
.y1a1{bottom:324.630000px;}
.y8e{bottom:325.350000px;}
.y45{bottom:327.510000px;}
.y111{bottom:332.550000px;}
.y69{bottom:332.820000px;}
.ybb{bottom:333.450000px;}
.y1ea{bottom:335.880000px;}
.y1db{bottom:337.140000px;}
.y1b5{bottom:337.770000px;}
.y113{bottom:339.300000px;}
.y1b{bottom:340.110000px;}
.y163{bottom:344.520000px;}
.y183{bottom:347.850000px;}
.ybc{bottom:348.390000px;}
.y1a0{bottom:350.100000px;}
.y8d{bottom:350.820000px;}
.yda{bottom:354.240000px;}
.y1b3{bottom:358.020000px;}
.y68{bottom:358.380000px;}
.yb8{bottom:359.550000px;}
.y1e9{bottom:361.350000px;}
.y10f{bottom:362.520000px;}
.y1a{bottom:365.580000px;}
.y162{bottom:367.020000px;}
.y44{bottom:371.070000px;}
.yb7{bottom:373.230000px;}
.y182{bottom:373.320000px;}
.yd9{bottom:373.770000px;}
.y8c{bottom:376.380000px;}
.y1b2{bottom:377.550000px;}
.y10e{bottom:378.270000px;}
.y1da{bottom:380.880000px;}
.y67{bottom:383.850000px;}
.y110{bottom:385.020000px;}
.y1e8{bottom:386.820000px;}
.y161{bottom:389.520000px;}
.y19{bottom:391.050000px;}
.y1af{bottom:391.230000px;}
.yd7{bottom:396.270000px;}
.y43{bottom:396.630000px;}
.y1b1{bottom:396.990000px;}
.y181{bottom:398.880000px;}
.yb5{bottom:399.240000px;}
.y8b{bottom:401.850000px;}
.y1d9{bottom:406.350000px;}
.y19e{bottom:406.800000px;}
.yd8{bottom:407.520000px;}
.y10b{bottom:408.240000px;}
.y66{bottom:409.320000px;}
.y160{bottom:412.020000px;}
.y1e7{bottom:412.380000px;}
.yb4{bottom:412.920000px;}
.y19f{bottom:413.550000px;}
.y1b0{bottom:416.520000px;}
.y18{bottom:416.610000px;}
.yd5{bottom:418.770000px;}
.y42{bottom:422.100000px;}
.y10c{bottom:423.990000px;}
.y10a{bottom:423.990630px;}
.y180{bottom:424.350000px;}
.y8a{bottom:427.320000px;}
.y15b{bottom:427.770000px;}
.yd6{bottom:430.020000px;}
.y10d{bottom:430.740000px;}
.y15f{bottom:434.520000px;}
.y65{bottom:434.880000px;}
.y19c{bottom:436.770000px;}
.y1e6{bottom:437.850000px;}
.yb0{bottom:439.020000px;}
.yd3{bottom:441.270000px;}
.y17{bottom:442.080000px;}
.y41{bottom:447.570000px;}
.y1d8{bottom:449.640000px;}
.yd4{bottom:452.520000px;}
.yb3{bottom:452.700000px;}
.y89{bottom:452.880000px;}
.y101{bottom:454.050000px;}
.y15e{bottom:457.020000px;}
.y19d{bottom:459.270000px;}
.y64{bottom:460.350000px;}
.y109{bottom:461.250000px;}
.y1e5{bottom:463.320000px;}
.yd1{bottom:463.770000px;}
.y16{bottom:467.550000px;}
.y17f{bottom:467.730000px;}
.y1ae{bottom:470.880000px;}
.y40{bottom:473.130000px;}
.yd2{bottom:475.020000px;}
.y88{bottom:478.350000px;}
.y15d{bottom:479.520000px;}
.y102{bottom:481.050000px;}
.y106{bottom:481.052160px;}
.y100{bottom:481.053150px;}
.y103{bottom:481.950000px;}
.y19a{bottom:482.490000px;}
.y63{bottom:485.820000px;}
.yd0{bottom:486.990000px;}
.y1e4{bottom:488.880000px;}
.yaf{bottom:492.570000px;}
.y1d7{bottom:493.380000px;}
.y105{bottom:495.000000px;}
.y199{bottom:498.240000px;}
.y3f{bottom:498.600000px;}
.y15c{bottom:502.020000px;}
.yce{bottom:503.100000px;}
.y107{bottom:503.552070px;}
.y87{bottom:503.820000px;}
.y19b{bottom:504.990000px;}
.ycf{bottom:510.300000px;}
.y13a{bottom:511.380000px;}
.y15{bottom:513.270000px;}
.y1ad{bottom:514.350000px;}
.y1d6{bottom:518.850000px;}
.yf8{bottom:522.270000px;}
.y3e{bottom:524.070000px;}
.y15a{bottom:525.240000px;}
.y197{bottom:528.300000px;}
.y62{bottom:529.290000px;}
.y86{bottom:529.380000px;}
.yff{bottom:532.080000px;}
.yae{bottom:536.130000px;}
.y139{bottom:536.850000px;}
.y14{bottom:538.740000px;}
.y1ac{bottom:539.820000px;}
.y157{bottom:540.990090px;}
.y196{bottom:544.050000px;}
.y1d5{bottom:544.320000px;}
.ycd{bottom:547.380000px;}
.y159{bottom:547.740000px;}
.yfc{bottom:549.266940px;}
.yf7{bottom:549.270000px;}
.y3d{bottom:549.630000px;}
.y198{bottom:550.800000px;}
.y85{bottom:554.850000px;}
.yf9{bottom:555.390000px;}
.yad{bottom:561.600000px;}
.y17e{bottom:562.320000px;}
.y156{bottom:563.490000px;}
.y1ab{bottom:565.380000px;}
.yfb{bottom:565.830000px;}
.y158{bottom:570.240000px;}
.yfd{bottom:571.766850px;}
.y61{bottom:572.850000px;}
.y195{bottom:574.020000px;}
.y3c{bottom:575.100000px;}
.y84{bottom:580.320000px;}
.y138{bottom:580.770000px;}
.y13{bottom:582.300000px;}
.yac{bottom:587.070000px;}
.y1d4{bottom:587.700000px;}
.y17d{bottom:587.880000px;}
.y193{bottom:589.770000px;}
.yf5{bottom:590.490000px;}
.ycc{bottom:590.850000px;}
.y155{bottom:593.550000px;}
.y194{bottom:596.520000px;}
.y60{bottom:598.320000px;}
.y137{bottom:600.300000px;}
.y3b{bottom:600.570000px;}
.y83{bottom:605.880000px;}
.yf4{bottom:606.240000px;}
.yf6{bottom:612.990000px;}
.y17c{bottom:613.350000px;}
.y154{bottom:616.050000px;}
.ycb{bottom:616.320000px;}
.y192{bottom:619.740000px;}
.y152{bottom:620.550000px;}
.y136{bottom:622.800000px;}
.y5f{bottom:623.880000px;}
.y12{bottom:625.860000px;}
.y3a{bottom:626.130000px;}
.yab{bottom:628.020000px;}
.y82{bottom:631.350000px;}
.yf2{bottom:636.300000px;}
.y153{bottom:638.550000px;}
.y17b{bottom:638.820000px;}
.yca{bottom:641.880000px;}
.y135{bottom:645.300000px;}
.y5e{bottom:649.350000px;}
.yaa{bottom:651.240000px;}
.y11{bottom:651.330000px;}
.y39{bottom:651.600000px;}
.yf1{bottom:652.050000px;}
.y81{bottom:656.820000px;}
.yf3{bottom:658.800000px;}
.y151{bottom:661.770000px;}
.y17a{bottom:664.380000px;}
.yc9{bottom:667.350000px;}
.y134{bottom:667.800000px;}
.ya9{bottom:674.550000px;}
.y5d{bottom:674.820000px;}
.y38{bottom:677.070000px;}
.y14f{bottom:677.520000px;}
.yee{bottom:682.020000px;}
.y80{bottom:682.380000px;}
.y150{bottom:684.270000px;}
.y179{bottom:689.850000px;}
.y133{bottom:690.300000px;}
.yc8{bottom:692.820000px;}
.ya8{bottom:697.770000px;}
.y5c{bottom:700.380000px;}
.y10{bottom:701.550000px;}
.y37{bottom:702.630000px;}
.yef{bottom:704.520000px;}
.y7f{bottom:707.850000px;}
.ya7{bottom:713.520000px;}
.y178{bottom:715.320000px;}
.yc7{bottom:718.380000px;}
.yf{bottom:720.360000px;}
.y14e{bottom:721.350000px;}
.y5b{bottom:725.850000px;}
.yec{bottom:727.740000px;}
.y36{bottom:728.100000px;}
.y131{bottom:729.630000px;}
.y7e{bottom:733.320000px;}
.y132{bottom:736.740000px;}
.y177{bottom:740.880000px;}
.ya6{bottom:743.490000px;}
.yc6{bottom:743.850000px;}
.ye{bottom:745.830000px;}
.yed{bottom:750.240000px;}
.y5a{bottom:751.320000px;}
.y35{bottom:753.570000px;}
.y1c9{bottom:758.880000px;}
.y14d{bottom:764.820000px;}
.y176{bottom:766.350000px;}
.yc5{bottom:769.320000px;}
.yea{bottom:773.550000px;}
.y130{bottom:773.820000px;}
.y7d{bottom:776.700000px;}
.y59{bottom:776.880000px;}
.yd{bottom:778.050000px;}
.y34{bottom:779.130000px;}
.ya5{bottom:780.570000px;}
.y1c8{bottom:784.350000px;}
.ye9{bottom:789.300000px;}
.y14c{bottom:790.380000px;}
.y175{bottom:791.820000px;}
.yc4{bottom:794.880000px;}
.yeb{bottom:796.050000px;}
.yc{bottom:796.860000px;}
.y58{bottom:802.350000px;}
.y33{bottom:804.600000px;}
.y1c7{bottom:809.820000px;}
.y12f{bottom:814.320000px;}
.y14b{bottom:815.850000px;}
.y174{bottom:817.380000px;}
.ye6{bottom:819.270000px;}
.y7c{bottom:820.350000px;}
.ya4{bottom:824.130000px;}
.y57{bottom:827.820000px;}
.yb{bottom:829.084680px;}
.y32{bottom:830.070000px;}
.ye5{bottom:835.020000px;}
.y1c6{bottom:835.380000px;}
.y12e{bottom:839.880000px;}
.y14a{bottom:841.320000px;}
.y173{bottom:842.850000px;}
.y7b{bottom:845.820000px;}
.ye7{bottom:846.270000px;}
.ya3{bottom:849.600000px;}
.y56{bottom:853.380000px;}
.y31{bottom:855.630000px;}
.y1c5{bottom:860.850000px;}
.y12d{bottom:865.350000px;}
.ya{bottom:865.620000px;}
.y149{bottom:866.880000px;}
.y7a{bottom:871.380000px;}
.ya2{bottom:875.070000px;}
.y55{bottom:878.850000px;}
.y172{bottom:886.230000px;}
.y1c4{bottom:886.320000px;}
.y12c{bottom:890.820000px;}
.y148{bottom:892.350000px;}
.y79{bottom:896.850000px;}
.y30{bottom:899.010000px;}
.ya1{bottom:900.630000px;}
.y54{bottom:904.320000px;}
.y9{bottom:911.160000px;}
.y1d3{bottom:911.880000px;}
.y12b{bottom:916.380000px;}
.y147{bottom:917.820000px;}
.y78{bottom:922.320000px;}
.ya0{bottom:926.100000px;}
.y1c3{bottom:929.700000px;}
.y53{bottom:929.880000px;}
.y1d2{bottom:937.350000px;}
.y12a{bottom:941.850000px;}
.y8{bottom:942.210000px;}
.y2f{bottom:942.390000px;}
.y146{bottom:943.380000px;}
.y77{bottom:947.880000px;}
.y9f{bottom:951.570000px;}
.y52{bottom:955.350000px;}
.y129{bottom:967.320000px;}
.y145{bottom:968.850000px;}
.y7{bottom:973.260000px;}
.y76{bottom:973.350000px;}
.y9e{bottom:977.130000px;}
.y18e{bottom:978.210000px;}
.y1d1{bottom:980.640000px;}
.y51{bottom:980.820000px;}
.y128{bottom:992.880000px;}
.y144{bottom:994.320000px;}
.y75{bottom:998.820000px;}
.y9d{bottom:1002.600000px;}
.y2e{bottom:1006.290000px;}
.y50{bottom:1006.380000px;}
.y127{bottom:1018.350000px;}
.y6{bottom:1020.330000px;}
.y74{bottom:1024.380000px;}
.y9c{bottom:1028.070000px;}
.y2d{bottom:1031.850000px;}
.y143{bottom:1038.240000px;}
.y5{bottom:1045.980000px;}
.y4f{bottom:1049.760000px;}
.y73{bottom:1049.850000px;}
.y9b{bottom:1053.630000px;}
.y191{bottom:1057.320000px;}
.y142{bottom:1057.770000px;}
.y126{bottom:1062.270270px;}
.y4{bottom:1066.500000px;}
.y2c{bottom:1075.320000px;}
.y9a{bottom:1079.100000px;}
.y141{bottom:1080.270000px;}
.y190{bottom:1082.880000px;}
.y125{bottom:1084.770180px;}
.y3{bottom:1095.030000px;}
.y2b{bottom:1100.880000px;}
.y99{bottom:1102.050000px;}
.y140{bottom:1102.770000px;}
.y124{bottom:1107.270090px;}
.y98{bottom:1117.800000px;}
.y13f{bottom:1125.270000px;}
.y18f{bottom:1126.170000px;}
.y2a{bottom:1126.350000px;}
.y123{bottom:1129.770000px;}
.y26{bottom:1145.340000px;}
.y2{bottom:1145.430000px;}
.y29{bottom:1151.640000px;}
.y1{bottom:1166.670000px;}
.y28{bottom:1177.380000px;}
.h9{height:17.280000px;}
.h23{height:19.440000px;}
.h22{height:19.528500px;}
.h21{height:19.530000px;}
.h11{height:22.498500px;}
.hb{height:22.500000px;}
.h15{height:27.014766px;}
.h20{height:27.900000px;}
.h1b{height:29.265996px;}
.h1e{height:33.120000px;}
.h8{height:33.268184px;}
.h1d{height:34.380000px;}
.h16{height:38.968500px;}
.h12{height:38.970000px;}
.h17{height:39.060000px;}
.h14{height:39.061500px;}
.h1f{height:39.600000px;}
.ha{height:40.745391px;}
.h24{height:41.743477px;}
.hc{height:41.772832px;}
.h19{height:44.649141px;}
.h10{height:45.000000px;}
.he{height:45.001500px;}
.h1a{height:45.775020px;}
.h13{height:47.894766px;}
.h5{height:48.796875px;}
.h3{height:49.992188px;}
.h2{height:50.027344px;}
.h7{height:56.569922px;}
.h18{height:60.268184px;}
.hf{height:67.500000px;}
.h6{height:73.195312px;}
.h1c{height:85.775271px;}
.hd{height:86.802712px;}
.h4{height:146.285156px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w28{width:31.140000px;}
.w1c{width:42.478500px;}
.w20{width:42.480000px;}
.w21{width:42.570000px;}
.we{width:42.571500px;}
.w1d{width:45.180000px;}
.wf{width:46.170000px;}
.w10{width:49.498500px;}
.w24{width:49.500000px;}
.w25{width:50.580000px;}
.wd{width:53.190000px;}
.w11{width:55.801500px;}
.w17{width:69.840000px;}
.w1a{width:84.960000px;}
.w19{width:85.050000px;}
.w1b{width:87.660000px;}
.w1f{width:87.661500px;}
.w14{width:95.670000px;}
.wa{width:95.761500px;}
.wb{width:99.360000px;}
.w2c{width:101.520000px;}
.wc{width:105.300000px;}
.w16{width:106.290000px;}
.w9{width:106.380000px;}
.w18{width:112.860000px;}
.w15{width:117.000000px;}
.w2{width:118.888500px;}
.w2f{width:141.210000px;}
.w13{width:142.740000px;}
.w2a{width:154.170000px;}
.w7{width:161.730000px;}
.w2b{width:169.200000px;}
.w3{width:206.730000px;}
.w12{width:212.940000px;}
.w22{width:239.400000px;}
.w23{width:245.611500px;}
.w5{width:254.158500px;}
.w2d{width:267.750000px;}
.w2e{width:274.501500px;}
.w1e{width:284.580000px;}
.w29{width:288.630000px;}
.w26{width:336.600000px;}
.w6{width:460.890000px;}
.w27{width:484.830000px;}
.w4{width:517.680000px;}
.w8{width:550.441500px;}
.w1{width:893.250000px;}
.w0{width:893.430000px;}
.x0{left:0.000000px;}
.x48{left:1.980000px;}
.x9{left:7.200000px;}
.x4b{left:8.640000px;}
.x29{left:10.080000px;}
.x3b{left:12.600000px;}
.x15{left:13.680000px;}
.x20{left:15.660000px;}
.x62{left:17.010000px;}
.x37{left:18.360000px;}
.x3d{left:19.620000px;}
.x63{left:21.060000px;}
.xe{left:22.410000px;}
.x43{left:23.850000px;}
.x25{left:25.020000px;}
.x52{left:27.630000px;}
.x2d{left:28.980000px;}
.x31{left:31.320000px;}
.x34{left:33.120000px;}
.x22{left:35.910000px;}
.x81{left:36.990000px;}
.x40{left:40.320000px;}
.x83{left:43.920000px;}
.x80{left:45.810000px;}
.x7d{left:46.890000px;}
.x73{left:49.770000px;}
.x2c{left:51.750000px;}
.x86{left:53.730000px;}
.x74{left:55.260000px;}
.x87{left:59.130000px;}
.x92{left:64.170000px;}
.x50{left:65.790000px;}
.x1e{left:67.590000px;}
.x1f{left:70.560000px;}
.x21{left:73.080000px;}
.x1{left:74.430000px;}
.xd{left:76.680000px;}
.x1d{left:80.100000px;}
.x88{left:81.540000px;}
.x18{left:83.250000px;}
.xa{left:84.780000px;}
.x46{left:87.210000px;}
.x17{left:89.190000px;}
.x24{left:90.630000px;}
.x7b{left:92.160000px;}
.x2e{left:94.410000px;}
.x6{left:95.760000px;}
.x3e{left:97.650000px;}
.x8d{left:99.270000px;}
.x13{left:101.430000px;}
.x1b{left:104.400000px;}
.x7f{left:106.285410px;}
.x94{left:107.460000px;}
.xf{left:108.720000px;}
.x2a{left:111.330000px;}
.x72{left:113.130000px;}
.x91{left:115.830000px;}
.x7{left:117.000000px;}
.x85{left:118.800000px;}
.x82{left:123.480000px;}
.x64{left:124.830000px;}
.x1c{left:126.720000px;}
.x7e{left:130.950000px;}
.x84{left:140.940000px;}
.x42{left:153.540000px;}
.x41{left:162.270000px;}
.x27{left:163.440000px;}
.x8e{left:166.320000px;}
.x14{left:167.850000px;}
.x67{left:172.350000px;}
.x8b{left:176.760000px;}
.x47{left:178.470000px;}
.x95{left:179.550000px;}
.x23{left:183.780000px;}
.x93{left:187.290000px;}
.x59{left:189.000000px;}
.x1a{left:190.080000px;}
.x3f{left:193.770000px;}
.x10{left:197.010000px;}
.x16{left:204.570000px;}
.x58{left:207.360000px;}
.x44{left:210.330000px;}
.xc{left:213.480000px;}
.x66{left:216.540000px;}
.x57{left:217.710000px;}
.x45{left:221.310000px;}
.x89{left:223.650000px;}
.x7c{left:229.770000px;}
.x28{left:252.360000px;}
.x65{left:259.110000px;}
.x2b{left:270.900000px;}
.x8a{left:275.760000px;}
.xb{left:291.240000px;}
.x2f{left:296.640000px;}
.x12{left:305.729820px;}
.x75{left:315.720000px;}
.x4a{left:321.210000px;}
.x11{left:326.426130px;}
.x19{left:343.350000px;}
.x36{left:349.830000px;}
.x68{left:352.530000px;}
.x49{left:354.420000px;}
.x8f{left:372.780000px;}
.x5a{left:375.120000px;}
.x6d{left:395.010000px;}
.x30{left:403.020000px;}
.x54{left:404.910000px;}
.x4c{left:416.880000px;}
.x69{left:437.580000px;}
.x38{left:445.590000px;}
.x5b{left:460.170000px;}
.x53{left:464.130000px;}
.x51{left:467.820000px;}
.x6e{left:480.060000px;}
.x26{left:488.340000px;}
.x32{left:498.780000px;}
.x5f{left:502.650000px;}
.x6a{left:522.630000px;}
.x4e{left:533.880000px;}
.x5c{left:545.220000px;}
.x4d{left:547.560000px;}
.x39{left:551.970000px;}
.x6f{left:565.110000px;}
.x76{left:566.370000px;}
.x60{left:587.700000px;}
.x5{left:594.180000px;}
.x33{left:605.160000px;}
.x6b{left:607.680000px;}
.x77{left:612.540000px;}
.x5d{left:630.270000px;}
.x4f{left:644.580000px;}
.x90{left:647.280000px;}
.x70{left:650.160000px;}
.x3a{left:658.350000px;}
.x78{left:662.040000px;}
.x3{left:672.030000px;}
.x6c{left:692.730000px;}
.x4{left:696.600000px;}
.x8{left:699.930000px;}
.x35{left:704.520000px;}
.x79{left:708.210000px;}
.x5e{left:715.320000px;}
.x56{left:717.834600px;}
.x55{left:723.320550px;}
.x8c{left:732.060000px;}
.x71{left:735.210000px;}
.x3c{left:754.020000px;}
.x61{left:757.800000px;}
.x7a{left:761.400000px;}
.x2{left:819.090000px;}
@media print{
.v2{vertical-align:-24.016640pt;}
.v5{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.v6{vertical-align:24.000000pt;}
.v3{vertical-align:40.026560pt;}
.ls2a{letter-spacing:-1.280000pt;}
.ls29{letter-spacing:-1.216000pt;}
.ls2d{letter-spacing:-1.152000pt;}
.ls2e{letter-spacing:-1.088000pt;}
.ls2c{letter-spacing:-0.960000pt;}
.ls78{letter-spacing:-0.896000pt;}
.ls2b{letter-spacing:-0.832000pt;}
.ls64{letter-spacing:-0.704000pt;}
.ls4c{letter-spacing:-0.640000pt;}
.ls4b{letter-spacing:-0.576000pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls79{letter-spacing:-0.448000pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls42{letter-spacing:-0.374080pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls38{letter-spacing:-0.213760pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.160320pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.106880pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls4e{letter-spacing:-0.058560pt;}
.ls3b{letter-spacing:-0.053440pt;}
.ls7{letter-spacing:0.000000pt;}
.ls74{letter-spacing:0.019520pt;}
.ls43{letter-spacing:0.053440pt;}
.ls4d{letter-spacing:0.058560pt;}
.ls0{letter-spacing:0.064000pt;}
.ls41{letter-spacing:0.072960pt;}
.ls40{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.106880pt;}
.ls6d{letter-spacing:0.124480pt;}
.ls4{letter-spacing:0.128000pt;}
.ls49{letter-spacing:0.133600pt;}
.ls68{letter-spacing:0.134400pt;}
.ls3{letter-spacing:0.145920pt;}
.ls1{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.160320pt;}
.lsa{letter-spacing:0.170240pt;}
.ls48{letter-spacing:0.175680pt;}
.ls33{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls73{letter-spacing:0.646400pt;}
.ls19{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.280000pt;}
.ls69{letter-spacing:1.286400pt;}
.ls12{letter-spacing:1.600000pt;}
.ls44{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.240000pt;}
.ls22{letter-spacing:2.560000pt;}
.ls31{letter-spacing:2.880000pt;}
.ls35{letter-spacing:3.200000pt;}
.ls4f{letter-spacing:3.520000pt;}
.ls1d{letter-spacing:3.840000pt;}
.ls17{letter-spacing:4.160000pt;}
.ls14{letter-spacing:4.473600pt;}
.ls6a{letter-spacing:4.480000pt;}
.ls6{letter-spacing:4.800000pt;}
.ls6e{letter-spacing:4.806400pt;}
.ls47{letter-spacing:5.120000pt;}
.ls76{letter-spacing:5.126400pt;}
.ls10{letter-spacing:5.440000pt;}
.ls25{letter-spacing:5.446400pt;}
.ls26{letter-spacing:5.760000pt;}
.ls3e{letter-spacing:6.080000pt;}
.ls6b{letter-spacing:6.400000pt;}
.ls1a{letter-spacing:6.720000pt;}
.lsf{letter-spacing:7.040000pt;}
.ls72{letter-spacing:7.360000pt;}
.ls32{letter-spacing:7.680000pt;}
.ls34{letter-spacing:7.692800pt;}
.ls18{letter-spacing:8.000000pt;}
.ls6f{letter-spacing:8.640000pt;}
.ls67{letter-spacing:8.960000pt;}
.ls70{letter-spacing:8.966400pt;}
.ls20{letter-spacing:9.600000pt;}
.ls16{letter-spacing:9.920000pt;}
.ls1f{letter-spacing:10.240000pt;}
.ls77{letter-spacing:10.560000pt;}
.ls45{letter-spacing:10.880000pt;}
.ls24{letter-spacing:11.200000pt;}
.ls21{letter-spacing:11.840000pt;}
.ls5{letter-spacing:12.800000pt;}
.ls46{letter-spacing:13.120000pt;}
.ls75{letter-spacing:13.760000pt;}
.ls4a{letter-spacing:14.080000pt;}
.ls71{letter-spacing:14.400000pt;}
.ls65{letter-spacing:14.720000pt;}
.ls66{letter-spacing:14.726400pt;}
.ls13{letter-spacing:15.360000pt;}
.ls7c{letter-spacing:16.320000pt;}
.ls23{letter-spacing:20.160000pt;}
.ls28{letter-spacing:20.800000pt;}
.ls27{letter-spacing:21.120000pt;}
.ls7b{letter-spacing:23.168000pt;}
.ls7d{letter-spacing:28.160000pt;}
.ls51{letter-spacing:31.102080pt;}
.ls60{letter-spacing:31.422720pt;}
.ls7a{letter-spacing:55.168000pt;}
.ls53{letter-spacing:95.443840pt;}
.ls50{letter-spacing:104.421760pt;}
.ls3f{letter-spacing:118.476480pt;}
.ls58{letter-spacing:135.416960pt;}
.ls5f{letter-spacing:135.737600pt;}
.ls54{letter-spacing:154.628640pt;}
.ls5d{letter-spacing:154.949280pt;}
.ls5a{letter-spacing:162.297280pt;}
.ls56{letter-spacing:163.259200pt;}
.ls62{letter-spacing:168.389440pt;}
.ls61{letter-spacing:188.856960pt;}
.ls55{letter-spacing:196.872960pt;}
.ls52{letter-spacing:210.339840pt;}
.ls5c{letter-spacing:215.416640pt;}
.ls36{letter-spacing:222.791360pt;}
.ls5e{letter-spacing:228.883520pt;}
.ls57{letter-spacing:236.899520pt;}
.ls59{letter-spacing:276.872640pt;}
.ls63{letter-spacing:316.899200pt;}
.ls5b{letter-spacing:330.312640pt;}
.ls6c{letter-spacing:383.111360pt;}
.ls3d{letter-spacing:429.817920pt;}
.ws2{word-spacing:-47.808000pt;}
.ws8d{word-spacing:-16.448000pt;}
.ws62{word-spacing:-16.320000pt;}
.ws8c{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws24{word-spacing:-15.936000pt;}
.ws23{word-spacing:-15.872000pt;}
.ws26{word-spacing:-15.808000pt;}
.ws25{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.680000pt;}
.ws61{word-spacing:-15.488000pt;}
.wscc{word-spacing:-15.360000pt;}
.wsd2{word-spacing:-15.168000pt;}
.ws5e{word-spacing:-15.040000pt;}
.wsd3{word-spacing:-14.848000pt;}
.wsb7{word-spacing:-14.815680pt;}
.ws5f{word-spacing:-14.784000pt;}
.ws60{word-spacing:-14.720000pt;}
.wsb8{word-spacing:-14.698560pt;}
.wsfc{word-spacing:-14.581440pt;}
.wscd{word-spacing:-13.520320pt;}
.ws90{word-spacing:-13.466880pt;}
.wsa9{word-spacing:-13.413440pt;}
.wsaa{word-spacing:-13.360000pt;}
.wscf{word-spacing:-13.306560pt;}
.ws8f{word-spacing:-13.253120pt;}
.wsce{word-spacing:-13.199680pt;}
.ws8e{word-spacing:-13.146240pt;}
.wsa8{word-spacing:-12.985920pt;}
.ws4{word-spacing:-10.810240pt;}
.wsab{word-spacing:-8.640000pt;}
.ws111{word-spacing:-4.160000pt;}
.ws59{word-spacing:-3.968000pt;}
.wsed{word-spacing:-3.904000pt;}
.ws110{word-spacing:-3.840000pt;}
.wsec{word-spacing:-3.648000pt;}
.wse2{word-spacing:-3.584000pt;}
.wse3{word-spacing:-3.520000pt;}
.ws70{word-spacing:-3.328000pt;}
.ws11{word-spacing:-3.264000pt;}
.ws6f{word-spacing:-3.200000pt;}
.ws12{word-spacing:-3.136000pt;}
.wsbb{word-spacing:-3.008000pt;}
.wsfb{word-spacing:-2.944000pt;}
.wsbc{word-spacing:-2.880000pt;}
.wsfa{word-spacing:-2.816000pt;}
.ws75{word-spacing:-2.688000pt;}
.wsba{word-spacing:-2.624000pt;}
.ws73{word-spacing:-2.560000pt;}
.ws74{word-spacing:-2.432000pt;}
.ws66{word-spacing:-2.368000pt;}
.ws28{word-spacing:-2.304000pt;}
.ws27{word-spacing:-2.240000pt;}
.ws1c{word-spacing:-2.048000pt;}
.ws9c{word-spacing:-1.984000pt;}
.ws1b{word-spacing:-1.920000pt;}
.ws67{word-spacing:-1.728000pt;}
.ws3f{word-spacing:-1.664000pt;}
.wsb1{word-spacing:-1.600000pt;}
.ws9b{word-spacing:-1.536000pt;}
.ws40{word-spacing:-1.408000pt;}
.ws3e{word-spacing:-1.344000pt;}
.ws3d{word-spacing:-1.280000pt;}
.ws47{word-spacing:-1.088000pt;}
.wsaf{word-spacing:-1.024000pt;}
.wsd6{word-spacing:-1.015360pt;}
.ws46{word-spacing:-0.960000pt;}
.wsd0{word-spacing:-0.896000pt;}
.wse1{word-spacing:-0.768000pt;}
.ws97{word-spacing:-0.704000pt;}
.wsd7{word-spacing:-0.694720pt;}
.ws41{word-spacing:-0.640000pt;}
.ws2b{word-spacing:-0.448000pt;}
.ws2c{word-spacing:-0.384000pt;}
.wsb2{word-spacing:-0.374080pt;}
.ws22{word-spacing:-0.320640pt;}
.wsb{word-spacing:-0.320000pt;}
.wsb6{word-spacing:-0.267200pt;}
.ws101{word-spacing:-0.175680pt;}
.wsa7{word-spacing:-0.160320pt;}
.ws8{word-spacing:-0.128000pt;}
.wsc4{word-spacing:-0.117120pt;}
.wsa4{word-spacing:-0.106880pt;}
.ws7{word-spacing:-0.096000pt;}
.wsa{word-spacing:-0.064000pt;}
.wsa2{word-spacing:-0.053440pt;}
.ws6{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.053440pt;}
.ws9{word-spacing:0.064000pt;}
.wsb4{word-spacing:0.106880pt;}
.wsc3{word-spacing:0.117120pt;}
.ws65{word-spacing:0.128000pt;}
.wsa5{word-spacing:0.160320pt;}
.ws20{word-spacing:0.192000pt;}
.wsa3{word-spacing:0.213760pt;}
.ws100{word-spacing:0.234240pt;}
.ws32{word-spacing:0.256000pt;}
.wsa6{word-spacing:0.267200pt;}
.ws34{word-spacing:0.320000pt;}
.ws76{word-spacing:0.384000pt;}
.ws109{word-spacing:0.448000pt;}
.wsd5{word-spacing:0.480960pt;}
.ws71{word-spacing:0.512000pt;}
.wsf6{word-spacing:0.534400pt;}
.ws48{word-spacing:0.576000pt;}
.wsd4{word-spacing:0.587840pt;}
.ws49{word-spacing:0.640000pt;}
.wsbd{word-spacing:0.704000pt;}
.wsff{word-spacing:0.768000pt;}
.wsf7{word-spacing:0.832000pt;}
.ws9e{word-spacing:0.896000pt;}
.wse{word-spacing:0.960000pt;}
.ws68{word-spacing:1.088000pt;}
.ws5b{word-spacing:1.152000pt;}
.ws4b{word-spacing:1.216000pt;}
.ws4a{word-spacing:1.280000pt;}
.ws8b{word-spacing:1.472000pt;}
.ws3a{word-spacing:1.536000pt;}
.ws3b{word-spacing:1.600000pt;}
.ws9f{word-spacing:1.664000pt;}
.wsc7{word-spacing:1.792000pt;}
.ws91{word-spacing:1.856000pt;}
.ws1e{word-spacing:1.920000pt;}
.wsb9{word-spacing:2.112000pt;}
.wsc{word-spacing:2.176000pt;}
.ws1d{word-spacing:2.240000pt;}
.ws84{word-spacing:2.432000pt;}
.ws14{word-spacing:2.496000pt;}
.ws83{word-spacing:2.560000pt;}
.ws104{word-spacing:2.688000pt;}
.ws92{word-spacing:2.752000pt;}
.ws17{word-spacing:2.816000pt;}
.ws13{word-spacing:2.880000pt;}
.wse9{word-spacing:3.008000pt;}
.wsa0{word-spacing:3.072000pt;}
.ws102{word-spacing:3.099520pt;}
.ws16{word-spacing:3.136000pt;}
.wsa1{word-spacing:3.200000pt;}
.ws108{word-spacing:3.392000pt;}
.wsf3{word-spacing:3.456000pt;}
.ws15{word-spacing:3.520000pt;}
.ws6c{word-spacing:3.712000pt;}
.ws6b{word-spacing:3.776000pt;}
.ws55{word-spacing:3.840000pt;}
.wsac{word-spacing:4.032000pt;}
.ws54{word-spacing:4.096000pt;}
.ws56{word-spacing:4.160000pt;}
.wsd1{word-spacing:4.224000pt;}
.ws18{word-spacing:4.352000pt;}
.ws7e{word-spacing:4.416000pt;}
.ws19{word-spacing:4.480000pt;}
.ws9a{word-spacing:4.544000pt;}
.ws6e{word-spacing:4.672000pt;}
.ws6d{word-spacing:4.736000pt;}
.ws45{word-spacing:4.800000pt;}
.ws106{word-spacing:4.992000pt;}
.ws105{word-spacing:5.056000pt;}
.ws31{word-spacing:5.120000pt;}
.ws88{word-spacing:5.312000pt;}
.ws2f{word-spacing:5.376000pt;}
.ws30{word-spacing:5.440000pt;}
.wsb5{word-spacing:5.632000pt;}
.ws9d{word-spacing:5.696000pt;}
.ws89{word-spacing:5.760000pt;}
.wseb{word-spacing:5.952000pt;}
.wsb0{word-spacing:6.016000pt;}
.ws95{word-spacing:6.080000pt;}
.wsc2{word-spacing:6.272000pt;}
.ws94{word-spacing:6.336000pt;}
.ws96{word-spacing:6.400000pt;}
.wse6{word-spacing:6.592000pt;}
.ws5c{word-spacing:6.656000pt;}
.ws5d{word-spacing:6.720000pt;}
.ws115{word-spacing:6.848000pt;}
.ws38{word-spacing:6.912000pt;}
.ws2e{word-spacing:6.976000pt;}
.ws2d{word-spacing:7.040000pt;}
.wsf4{word-spacing:7.232000pt;}
.ws39{word-spacing:7.296000pt;}
.wsf5{word-spacing:7.360000pt;}
.ws3c{word-spacing:7.552000pt;}
.ws58{word-spacing:7.616000pt;}
.ws6a{word-spacing:7.680000pt;}
.wsc1{word-spacing:7.872000pt;}
.ws57{word-spacing:7.936000pt;}
.wsd{word-spacing:8.000000pt;}
.wsca{word-spacing:8.192000pt;}
.ws72{word-spacing:8.320000pt;}
.wscb{word-spacing:8.384000pt;}
.wsde{word-spacing:8.640000pt;}
.wsdd{word-spacing:8.896000pt;}
.wsdc{word-spacing:8.960000pt;}
.ws64{word-spacing:9.216000pt;}
.ws33{word-spacing:9.280000pt;}
.ws7d{word-spacing:9.472000pt;}
.ws63{word-spacing:9.536000pt;}
.ws4d{word-spacing:9.600000pt;}
.ws4c{word-spacing:9.792000pt;}
.wsea{word-spacing:9.856000pt;}
.ws4e{word-spacing:9.920000pt;}
.wsae{word-spacing:10.112000pt;}
.wsad{word-spacing:10.176000pt;}
.ws4f{word-spacing:10.240000pt;}
.ws107{word-spacing:10.432000pt;}
.ws7a{word-spacing:10.496000pt;}
.ws7b{word-spacing:10.560000pt;}
.ws79{word-spacing:10.624000pt;}
.ws87{word-spacing:10.752000pt;}
.wsc5{word-spacing:10.816000pt;}
.ws93{word-spacing:10.880000pt;}
.ws7c{word-spacing:11.072000pt;}
.wsfd{word-spacing:11.520000pt;}
.ws7f{word-spacing:11.712000pt;}
.ws80{word-spacing:11.776000pt;}
.wsfe{word-spacing:11.840000pt;}
.wsf0{word-spacing:12.032000pt;}
.wsef{word-spacing:12.096000pt;}
.wsc0{word-spacing:12.160000pt;}
.wse4{word-spacing:12.352000pt;}
.wse5{word-spacing:12.416000pt;}
.ws78{word-spacing:12.480000pt;}
.ws10{word-spacing:12.672000pt;}
.ws77{word-spacing:12.736000pt;}
.wsf8{word-spacing:12.800000pt;}
.wsf9{word-spacing:12.864000pt;}
.wse8{word-spacing:13.056000pt;}
.wsf{word-spacing:13.120000pt;}
.wsf2{word-spacing:13.312000pt;}
.wsbe{word-spacing:13.376000pt;}
.wsbf{word-spacing:13.440000pt;}
.ws11c{word-spacing:13.632000pt;}
.ws103{word-spacing:13.760000pt;}
.wsd9{word-spacing:13.947840pt;}
.wsd8{word-spacing:14.001280pt;}
.wsf1{word-spacing:14.016000pt;}
.wsc6{word-spacing:14.080000pt;}
.wsc9{word-spacing:14.272000pt;}
.ws98{word-spacing:14.400000pt;}
.wsc8{word-spacing:14.464000pt;}
.wsda{word-spacing:14.592000pt;}
.wsdb{word-spacing:14.656000pt;}
.ws5a{word-spacing:14.720000pt;}
.ws43{word-spacing:14.912000pt;}
.ws42{word-spacing:15.040000pt;}
.ws44{word-spacing:15.296000pt;}
.wse7{word-spacing:15.360000pt;}
.ws69{word-spacing:15.680000pt;}
.ws21{word-spacing:15.872000pt;}
.ws1f{word-spacing:16.000000pt;}
.ws82{word-spacing:16.256000pt;}
.ws81{word-spacing:16.320000pt;}
.ws99{word-spacing:16.640000pt;}
.wsdf{word-spacing:16.960000pt;}
.wse0{word-spacing:17.280000pt;}
.ws114{word-spacing:17.920000pt;}
.ws10d{word-spacing:18.240000pt;}
.ws2a{word-spacing:18.432000pt;}
.ws29{word-spacing:18.560000pt;}
.ws116{word-spacing:19.200000pt;}
.ws85{word-spacing:20.032000pt;}
.ws86{word-spacing:20.160000pt;}
.ws35{word-spacing:20.672000pt;}
.ws37{word-spacing:20.992000pt;}
.ws8a{word-spacing:21.056000pt;}
.ws36{word-spacing:21.120000pt;}
.ws10f{word-spacing:21.632000pt;}
.ws10e{word-spacing:21.760000pt;}
.ws51{word-spacing:22.720000pt;}
.ws53{word-spacing:22.976000pt;}
.ws52{word-spacing:23.040000pt;}
.ws50{word-spacing:23.360000pt;}
.wsee{word-spacing:25.600000pt;}
.ws117{word-spacing:25.920000pt;}
.ws11e{word-spacing:28.032000pt;}
.ws1a{word-spacing:28.672000pt;}
.ws11f{word-spacing:28.736000pt;}
.ws119{word-spacing:28.800000pt;}
.ws10c{word-spacing:31.040000pt;}
.ws113{word-spacing:35.776000pt;}
.ws112{word-spacing:36.160000pt;}
.ws10b{word-spacing:48.192000pt;}
.ws10a{word-spacing:50.880000pt;}
.ws11a{word-spacing:55.360000pt;}
.ws11d{word-spacing:57.280000pt;}
.ws11b{word-spacing:58.240000pt;}
.ws118{word-spacing:66.752000pt;}
.ws120{word-spacing:72.640000pt;}
._16{margin-left:-21.638400pt;}
._29{margin-left:-19.840000pt;}
._2b{margin-left:-16.576000pt;}
._21{margin-left:-13.376000pt;}
._14{margin-left:-11.532800pt;}
._2a{margin-left:-10.432000pt;}
._19{margin-left:-8.960000pt;}
._11{margin-left:-4.038400pt;}
._8{margin-left:-2.368000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.094400pt;}
._5{width:2.048000pt;}
._17{width:3.328000pt;}
._6{width:4.224000pt;}
._b{width:5.632000pt;}
._a{width:7.168000pt;}
._d{width:8.704000pt;}
._c{width:9.664000pt;}
._13{width:10.681600pt;}
._12{width:12.096000pt;}
._18{width:13.376000pt;}
._f{width:15.104000pt;}
._20{width:16.889600pt;}
._1f{width:17.779200pt;}
._9{width:18.688000pt;}
._15{width:19.776000pt;}
._e{width:20.928000pt;}
._10{width:22.720000pt;}
._22{width:25.600000pt;}
._4{width:27.840000pt;}
._2{width:38.400000pt;}
._3{width:43.920000pt;}
._28{width:59.104640pt;}
._1a{width:68.403200pt;}
._2c{width:73.088000pt;}
._27{width:84.381760pt;}
._25{width:93.359680pt;}
._26{width:100.734400pt;}
._1c{width:228.723200pt;}
._1e{width:242.136640pt;}
._24{width:277.994880pt;}
._1b{width:330.633280pt;}
._1d{width:343.458880pt;}
._23{width:752.000000pt;}
._7{width:2103.232000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:2.960000pt;}
.yba{bottom:3.440000pt;}
.yb2{bottom:3.520000pt;}
.y91{bottom:4.000000pt;}
.y108{bottom:6.400000pt;}
.yfe{bottom:8.720000pt;}
.yfa{bottom:9.280000pt;}
.y104{bottom:11.600000pt;}
.ye8{bottom:14.000000pt;}
.yb1{bottom:20.800000pt;}
.yf0{bottom:24.000000pt;}
.yb9{bottom:25.440000pt;}
.yb6{bottom:25.520000pt;}
.y4e{bottom:71.200000pt;}
.ye4{bottom:71.840000pt;}
.y13e{bottom:72.240000pt;}
.y97{bottom:72.880000pt;}
.y25{bottom:75.600000pt;}
.y121{bottom:78.240000pt;}
.y18d{bottom:82.560000pt;}
.y171{bottom:83.280000pt;}
.y1aa{bottom:84.560000pt;}
.y72{bottom:91.840000pt;}
.y120{bottom:92.240000pt;}
.y1c2{bottom:93.050720pt;}
.y4d{bottom:93.840000pt;}
.ye3{bottom:94.560000pt;}
.y95{bottom:96.880000pt;}
.y122{bottom:98.240000pt;}
.y24{bottom:98.320000pt;}
.y1e3{bottom:102.560000pt;}
.y170{bottom:104.240000pt;}
.y18c{bottom:105.200000pt;}
.y1a9{bottom:107.200000pt;}
.y1d0{bottom:107.840000pt;}
.y1c1{bottom:110.405360pt;}
.yc3{bottom:112.480000pt;}
.y13d{bottom:112.880000pt;}
.y71{bottom:114.560000pt;}
.y4c{bottom:116.560000pt;}
.y96{bottom:116.879920pt;}
.ye2{bottom:117.200000pt;}
.y11e{bottom:118.880000pt;}
.y23{bottom:120.960000pt;}
.y16f{bottom:124.880000pt;}
.y1e2{bottom:125.200000pt;}
.y13c{bottom:127.200000pt;}
.y1c0{bottom:127.760000pt;}
.y18b{bottom:127.840000pt;}
.y1a8{bottom:129.840000pt;}
.y1cf{bottom:130.560000pt;}
.y11d{bottom:132.880000pt;}
.y94{bottom:133.600000pt;}
.y70{bottom:137.200000pt;}
.y11f{bottom:138.880000pt;}
.y4b{bottom:139.200000pt;}
.ye1{bottom:139.840000pt;}
.y1bf{bottom:142.880000pt;}
.y22{bottom:143.600000pt;}
.y16e{bottom:144.880000pt;}
.y1ed{bottom:146.560000pt;}
.y93{bottom:147.600000pt;}
.y1e1{bottom:147.840000pt;}
.y16c{bottom:148.880000pt;}
.y18a{bottom:150.560000pt;}
.yc2{bottom:151.040000pt;}
.y1a7{bottom:152.560000pt;}
.y1ce{bottom:153.200000pt;}
.y11b{bottom:159.600000pt;}
.y6f{bottom:159.840000pt;}
.y1be{bottom:160.240000pt;}
.y4a{bottom:161.840000pt;}
.ye0{bottom:162.560000pt;}
.y1bc{bottom:163.760000pt;}
.y16d{bottom:164.880000pt;}
.y21{bottom:166.320000pt;}
.y13b{bottom:166.560000pt;}
.y1ec{bottom:169.200000pt;}
.y1e0{bottom:170.560000pt;}
.y189{bottom:173.200000pt;}
.y11a{bottom:173.600000pt;}
.y92{bottom:174.240000pt;}
.y1a6{bottom:175.200000pt;}
.y1cd{bottom:175.840000pt;}
.y1bd{bottom:177.600000pt;}
.y11c{bottom:179.600000pt;}
.y6e{bottom:182.560000pt;}
.y49{bottom:184.560000pt;}
.ydf{bottom:185.200000pt;}
.y16b{bottom:185.600000pt;}
.y20{bottom:188.960000pt;}
.yc1{bottom:189.840000pt;}
.y1eb{bottom:191.840000pt;}
.y1df{bottom:193.200000pt;}
.y90{bottom:194.880000pt;}
.y1bb{bottom:195.600000pt;}
.y188{bottom:195.840000pt;}
.y1a5{bottom:197.840000pt;}
.y1cc{bottom:198.560000pt;}
.y118{bottom:200.240000pt;}
.y6d{bottom:205.200000pt;}
.y16a{bottom:205.600000pt;}
.y48{bottom:207.200000pt;}
.yde{bottom:207.840000pt;}
.y1f{bottom:211.600000pt;}
.yc0{bottom:212.560000pt;}
.y1ba{bottom:212.880000pt;}
.y117{bottom:214.240000pt;}
.y1de{bottom:215.840000pt;}
.y187{bottom:218.560000pt;}
.y119{bottom:220.240000pt;}
.y1a4{bottom:220.560000pt;}
.y1cb{bottom:221.200000pt;}
.y1b7{bottom:225.040000pt;}
.y169{bottom:225.600000pt;}
.y6c{bottom:227.840000pt;}
.y165{bottom:229.600080pt;}
.y47{bottom:229.840000pt;}
.y1b9{bottom:230.240000pt;}
.ydd{bottom:230.560000pt;}
.y1e{bottom:234.320000pt;}
.y1dd{bottom:238.560000pt;}
.y115{bottom:240.880000pt;}
.y186{bottom:241.200000pt;}
.y1a3{bottom:243.200000pt;}
.y1ca{bottom:243.840000pt;}
.y168{bottom:245.600000pt;}
.y1b8{bottom:247.600000pt;}
.ybf{bottom:248.880000pt;}
.y164{bottom:249.600000pt;}
.y6b{bottom:250.560000pt;}
.y46{bottom:252.560000pt;}
.ydc{bottom:253.200000pt;}
.y114{bottom:254.880000pt;}
.y1d{bottom:256.960000pt;}
.y116{bottom:260.880000pt;}
.ybe{bottom:261.040000pt;}
.y1dc{bottom:261.200000pt;}
.y185{bottom:263.840000pt;}
.y167{bottom:265.600000pt;}
.y1a2{bottom:265.840000pt;}
.y8f{bottom:266.560000pt;}
.y6a{bottom:273.200000pt;}
.ydb{bottom:275.840000pt;}
.y1c{bottom:279.600000pt;}
.y112{bottom:281.600000pt;}
.y1b6{bottom:282.880000pt;}
.ybd{bottom:284.240000pt;}
.y166{bottom:285.600000pt;}
.y1b4{bottom:286.400000pt;}
.y184{bottom:286.560000pt;}
.y1a1{bottom:288.560000pt;}
.y8e{bottom:289.200000pt;}
.y45{bottom:291.120000pt;}
.y111{bottom:295.600000pt;}
.y69{bottom:295.840000pt;}
.ybb{bottom:296.400000pt;}
.y1ea{bottom:298.560000pt;}
.y1db{bottom:299.680000pt;}
.y1b5{bottom:300.240000pt;}
.y113{bottom:301.600000pt;}
.y1b{bottom:302.320000pt;}
.y163{bottom:306.240000pt;}
.y183{bottom:309.200000pt;}
.ybc{bottom:309.680000pt;}
.y1a0{bottom:311.200000pt;}
.y8d{bottom:311.840000pt;}
.yda{bottom:314.880000pt;}
.y1b3{bottom:318.240000pt;}
.y68{bottom:318.560000pt;}
.yb8{bottom:319.600000pt;}
.y1e9{bottom:321.200000pt;}
.y10f{bottom:322.240000pt;}
.y1a{bottom:324.960000pt;}
.y162{bottom:326.240000pt;}
.y44{bottom:329.840000pt;}
.yb7{bottom:331.760000pt;}
.y182{bottom:331.840000pt;}
.yd9{bottom:332.240000pt;}
.y8c{bottom:334.560000pt;}
.y1b2{bottom:335.600000pt;}
.y10e{bottom:336.240000pt;}
.y1da{bottom:338.560000pt;}
.y67{bottom:341.200000pt;}
.y110{bottom:342.240000pt;}
.y1e8{bottom:343.840000pt;}
.y161{bottom:346.240000pt;}
.y19{bottom:347.600000pt;}
.y1af{bottom:347.760000pt;}
.yd7{bottom:352.240000pt;}
.y43{bottom:352.560000pt;}
.y1b1{bottom:352.880000pt;}
.y181{bottom:354.560000pt;}
.yb5{bottom:354.880000pt;}
.y8b{bottom:357.200000pt;}
.y1d9{bottom:361.200000pt;}
.y19e{bottom:361.600000pt;}
.yd8{bottom:362.240000pt;}
.y10b{bottom:362.880000pt;}
.y66{bottom:363.840000pt;}
.y160{bottom:366.240000pt;}
.y1e7{bottom:366.560000pt;}
.yb4{bottom:367.040000pt;}
.y19f{bottom:367.600000pt;}
.y1b0{bottom:370.240000pt;}
.y18{bottom:370.320000pt;}
.yd5{bottom:372.240000pt;}
.y42{bottom:375.200000pt;}
.y10c{bottom:376.880000pt;}
.y10a{bottom:376.880560pt;}
.y180{bottom:377.200000pt;}
.y8a{bottom:379.840000pt;}
.y15b{bottom:380.240000pt;}
.yd6{bottom:382.240000pt;}
.y10d{bottom:382.880000pt;}
.y15f{bottom:386.240000pt;}
.y65{bottom:386.560000pt;}
.y19c{bottom:388.240000pt;}
.y1e6{bottom:389.200000pt;}
.yb0{bottom:390.240000pt;}
.yd3{bottom:392.240000pt;}
.y17{bottom:392.960000pt;}
.y41{bottom:397.840000pt;}
.y1d8{bottom:399.680000pt;}
.yd4{bottom:402.240000pt;}
.yb3{bottom:402.400000pt;}
.y89{bottom:402.560000pt;}
.y101{bottom:403.600000pt;}
.y15e{bottom:406.240000pt;}
.y19d{bottom:408.240000pt;}
.y64{bottom:409.200000pt;}
.y109{bottom:410.000000pt;}
.y1e5{bottom:411.840000pt;}
.yd1{bottom:412.240000pt;}
.y16{bottom:415.600000pt;}
.y17f{bottom:415.760000pt;}
.y1ae{bottom:418.560000pt;}
.y40{bottom:420.560000pt;}
.yd2{bottom:422.240000pt;}
.y88{bottom:425.200000pt;}
.y15d{bottom:426.240000pt;}
.y102{bottom:427.600000pt;}
.y106{bottom:427.601920pt;}
.y100{bottom:427.602800pt;}
.y103{bottom:428.400000pt;}
.y19a{bottom:428.880000pt;}
.y63{bottom:431.840000pt;}
.yd0{bottom:432.880000pt;}
.y1e4{bottom:434.560000pt;}
.yaf{bottom:437.840000pt;}
.y1d7{bottom:438.560000pt;}
.y105{bottom:440.000000pt;}
.y199{bottom:442.880000pt;}
.y3f{bottom:443.200000pt;}
.y15c{bottom:446.240000pt;}
.yce{bottom:447.200000pt;}
.y107{bottom:447.601840pt;}
.y87{bottom:447.840000pt;}
.y19b{bottom:448.880000pt;}
.ycf{bottom:453.600000pt;}
.y13a{bottom:454.560000pt;}
.y15{bottom:456.240000pt;}
.y1ad{bottom:457.200000pt;}
.y1d6{bottom:461.200000pt;}
.yf8{bottom:464.240000pt;}
.y3e{bottom:465.840000pt;}
.y15a{bottom:466.880000pt;}
.y197{bottom:469.600000pt;}
.y62{bottom:470.480000pt;}
.y86{bottom:470.560000pt;}
.yff{bottom:472.960000pt;}
.yae{bottom:476.560000pt;}
.y139{bottom:477.200000pt;}
.y14{bottom:478.880000pt;}
.y1ac{bottom:479.840000pt;}
.y157{bottom:480.880080pt;}
.y196{bottom:483.600000pt;}
.y1d5{bottom:483.840000pt;}
.ycd{bottom:486.560000pt;}
.y159{bottom:486.880000pt;}
.yfc{bottom:488.237280pt;}
.yf7{bottom:488.240000pt;}
.y3d{bottom:488.560000pt;}
.y198{bottom:489.600000pt;}
.y85{bottom:493.200000pt;}
.yf9{bottom:493.680000pt;}
.yad{bottom:499.200000pt;}
.y17e{bottom:499.840000pt;}
.y156{bottom:500.880000pt;}
.y1ab{bottom:502.560000pt;}
.yfb{bottom:502.960000pt;}
.y158{bottom:506.880000pt;}
.yfd{bottom:508.237200pt;}
.y61{bottom:509.200000pt;}
.y195{bottom:510.240000pt;}
.y3c{bottom:511.200000pt;}
.y84{bottom:515.840000pt;}
.y138{bottom:516.240000pt;}
.y13{bottom:517.600000pt;}
.yac{bottom:521.840000pt;}
.y1d4{bottom:522.400000pt;}
.y17d{bottom:522.560000pt;}
.y193{bottom:524.240000pt;}
.yf5{bottom:524.880000pt;}
.ycc{bottom:525.200000pt;}
.y155{bottom:527.600000pt;}
.y194{bottom:530.240000pt;}
.y60{bottom:531.840000pt;}
.y137{bottom:533.600000pt;}
.y3b{bottom:533.840000pt;}
.y83{bottom:538.560000pt;}
.yf4{bottom:538.880000pt;}
.yf6{bottom:544.880000pt;}
.y17c{bottom:545.200000pt;}
.y154{bottom:547.600000pt;}
.ycb{bottom:547.840000pt;}
.y192{bottom:550.880000pt;}
.y152{bottom:551.600000pt;}
.y136{bottom:553.600000pt;}
.y5f{bottom:554.560000pt;}
.y12{bottom:556.320000pt;}
.y3a{bottom:556.560000pt;}
.yab{bottom:558.240000pt;}
.y82{bottom:561.200000pt;}
.yf2{bottom:565.600000pt;}
.y153{bottom:567.600000pt;}
.y17b{bottom:567.840000pt;}
.yca{bottom:570.560000pt;}
.y135{bottom:573.600000pt;}
.y5e{bottom:577.200000pt;}
.yaa{bottom:578.880000pt;}
.y11{bottom:578.960000pt;}
.y39{bottom:579.200000pt;}
.yf1{bottom:579.600000pt;}
.y81{bottom:583.840000pt;}
.yf3{bottom:585.600000pt;}
.y151{bottom:588.240000pt;}
.y17a{bottom:590.560000pt;}
.yc9{bottom:593.200000pt;}
.y134{bottom:593.600000pt;}
.ya9{bottom:599.600000pt;}
.y5d{bottom:599.840000pt;}
.y38{bottom:601.840000pt;}
.y14f{bottom:602.240000pt;}
.yee{bottom:606.240000pt;}
.y80{bottom:606.560000pt;}
.y150{bottom:608.240000pt;}
.y179{bottom:613.200000pt;}
.y133{bottom:613.600000pt;}
.yc8{bottom:615.840000pt;}
.ya8{bottom:620.240000pt;}
.y5c{bottom:622.560000pt;}
.y10{bottom:623.600000pt;}
.y37{bottom:624.560000pt;}
.yef{bottom:626.240000pt;}
.y7f{bottom:629.200000pt;}
.ya7{bottom:634.240000pt;}
.y178{bottom:635.840000pt;}
.yc7{bottom:638.560000pt;}
.yf{bottom:640.320000pt;}
.y14e{bottom:641.200000pt;}
.y5b{bottom:645.200000pt;}
.yec{bottom:646.880000pt;}
.y36{bottom:647.200000pt;}
.y131{bottom:648.560000pt;}
.y7e{bottom:651.840000pt;}
.y132{bottom:654.880000pt;}
.y177{bottom:658.560000pt;}
.ya6{bottom:660.880000pt;}
.yc6{bottom:661.200000pt;}
.ye{bottom:662.960000pt;}
.yed{bottom:666.880000pt;}
.y5a{bottom:667.840000pt;}
.y35{bottom:669.840000pt;}
.y1c9{bottom:674.560000pt;}
.y14d{bottom:679.840000pt;}
.y176{bottom:681.200000pt;}
.yc5{bottom:683.840000pt;}
.yea{bottom:687.600000pt;}
.y130{bottom:687.840000pt;}
.y7d{bottom:690.400000pt;}
.y59{bottom:690.560000pt;}
.yd{bottom:691.600000pt;}
.y34{bottom:692.560000pt;}
.ya5{bottom:693.840000pt;}
.y1c8{bottom:697.200000pt;}
.ye9{bottom:701.600000pt;}
.y14c{bottom:702.560000pt;}
.y175{bottom:703.840000pt;}
.yc4{bottom:706.560000pt;}
.yeb{bottom:707.600000pt;}
.yc{bottom:708.320000pt;}
.y58{bottom:713.200000pt;}
.y33{bottom:715.200000pt;}
.y1c7{bottom:719.840000pt;}
.y12f{bottom:723.840000pt;}
.y14b{bottom:725.200000pt;}
.y174{bottom:726.560000pt;}
.ye6{bottom:728.240000pt;}
.y7c{bottom:729.200000pt;}
.ya4{bottom:732.560000pt;}
.y57{bottom:735.840000pt;}
.yb{bottom:736.964160pt;}
.y32{bottom:737.840000pt;}
.ye5{bottom:742.240000pt;}
.y1c6{bottom:742.560000pt;}
.y12e{bottom:746.560000pt;}
.y14a{bottom:747.840000pt;}
.y173{bottom:749.200000pt;}
.y7b{bottom:751.840000pt;}
.ye7{bottom:752.240000pt;}
.ya3{bottom:755.200000pt;}
.y56{bottom:758.560000pt;}
.y31{bottom:760.560000pt;}
.y1c5{bottom:765.200000pt;}
.y12d{bottom:769.200000pt;}
.ya{bottom:769.440000pt;}
.y149{bottom:770.560000pt;}
.y7a{bottom:774.560000pt;}
.ya2{bottom:777.840000pt;}
.y55{bottom:781.200000pt;}
.y172{bottom:787.760000pt;}
.y1c4{bottom:787.840000pt;}
.y12c{bottom:791.840000pt;}
.y148{bottom:793.200000pt;}
.y79{bottom:797.200000pt;}
.y30{bottom:799.120000pt;}
.ya1{bottom:800.560000pt;}
.y54{bottom:803.840000pt;}
.y9{bottom:809.920000pt;}
.y1d3{bottom:810.560000pt;}
.y12b{bottom:814.560000pt;}
.y147{bottom:815.840000pt;}
.y78{bottom:819.840000pt;}
.ya0{bottom:823.200000pt;}
.y1c3{bottom:826.400000pt;}
.y53{bottom:826.560000pt;}
.y1d2{bottom:833.200000pt;}
.y12a{bottom:837.200000pt;}
.y8{bottom:837.520000pt;}
.y2f{bottom:837.680000pt;}
.y146{bottom:838.560000pt;}
.y77{bottom:842.560000pt;}
.y9f{bottom:845.840000pt;}
.y52{bottom:849.200000pt;}
.y129{bottom:859.840000pt;}
.y145{bottom:861.200000pt;}
.y7{bottom:865.120000pt;}
.y76{bottom:865.200000pt;}
.y9e{bottom:868.560000pt;}
.y18e{bottom:869.520000pt;}
.y1d1{bottom:871.680000pt;}
.y51{bottom:871.840000pt;}
.y128{bottom:882.560000pt;}
.y144{bottom:883.840000pt;}
.y75{bottom:887.840000pt;}
.y9d{bottom:891.200000pt;}
.y2e{bottom:894.480000pt;}
.y50{bottom:894.560000pt;}
.y127{bottom:905.200000pt;}
.y6{bottom:906.960000pt;}
.y74{bottom:910.560000pt;}
.y9c{bottom:913.840000pt;}
.y2d{bottom:917.200000pt;}
.y143{bottom:922.880000pt;}
.y5{bottom:929.760000pt;}
.y4f{bottom:933.120000pt;}
.y73{bottom:933.200000pt;}
.y9b{bottom:936.560000pt;}
.y191{bottom:939.840000pt;}
.y142{bottom:940.240000pt;}
.y126{bottom:944.240240pt;}
.y4{bottom:948.000000pt;}
.y2c{bottom:955.840000pt;}
.y9a{bottom:959.200000pt;}
.y141{bottom:960.240000pt;}
.y190{bottom:962.560000pt;}
.y125{bottom:964.240160pt;}
.y3{bottom:973.360000pt;}
.y2b{bottom:978.560000pt;}
.y99{bottom:979.600000pt;}
.y140{bottom:980.240000pt;}
.y124{bottom:984.240080pt;}
.y98{bottom:993.600000pt;}
.y13f{bottom:1000.240000pt;}
.y18f{bottom:1001.040000pt;}
.y2a{bottom:1001.200000pt;}
.y123{bottom:1004.240000pt;}
.y26{bottom:1018.080000pt;}
.y2{bottom:1018.160000pt;}
.y29{bottom:1023.680000pt;}
.y1{bottom:1037.040000pt;}
.y28{bottom:1046.560000pt;}
.h9{height:15.360000pt;}
.h23{height:17.280000pt;}
.h22{height:17.358667pt;}
.h21{height:17.360000pt;}
.h11{height:19.998667pt;}
.hb{height:20.000000pt;}
.h15{height:24.013125pt;}
.h20{height:24.800000pt;}
.h1b{height:26.014219pt;}
.h1e{height:29.440000pt;}
.h8{height:29.571719pt;}
.h1d{height:30.560000pt;}
.h16{height:34.638667pt;}
.h12{height:34.640000pt;}
.h17{height:34.720000pt;}
.h14{height:34.721333pt;}
.h1f{height:35.200000pt;}
.ha{height:36.218125pt;}
.h24{height:37.105312pt;}
.hc{height:37.131406pt;}
.h19{height:39.688125pt;}
.h10{height:40.000000pt;}
.he{height:40.001333pt;}
.h1a{height:40.688906pt;}
.h13{height:42.573125pt;}
.h5{height:43.375000pt;}
.h3{height:44.437500pt;}
.h2{height:44.468750pt;}
.h7{height:50.284375pt;}
.h18{height:53.571719pt;}
.hf{height:60.000000pt;}
.h6{height:65.062500pt;}
.h1c{height:76.244685pt;}
.hd{height:77.157966pt;}
.h4{height:130.031250pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w28{width:27.680000pt;}
.w1c{width:37.758667pt;}
.w20{width:37.760000pt;}
.w21{width:37.840000pt;}
.we{width:37.841333pt;}
.w1d{width:40.160000pt;}
.wf{width:41.040000pt;}
.w10{width:43.998667pt;}
.w24{width:44.000000pt;}
.w25{width:44.960000pt;}
.wd{width:47.280000pt;}
.w11{width:49.601333pt;}
.w17{width:62.080000pt;}
.w1a{width:75.520000pt;}
.w19{width:75.600000pt;}
.w1b{width:77.920000pt;}
.w1f{width:77.921333pt;}
.w14{width:85.040000pt;}
.wa{width:85.121333pt;}
.wb{width:88.320000pt;}
.w2c{width:90.240000pt;}
.wc{width:93.600000pt;}
.w16{width:94.480000pt;}
.w9{width:94.560000pt;}
.w18{width:100.320000pt;}
.w15{width:104.000000pt;}
.w2{width:105.678667pt;}
.w2f{width:125.520000pt;}
.w13{width:126.880000pt;}
.w2a{width:137.040000pt;}
.w7{width:143.760000pt;}
.w2b{width:150.400000pt;}
.w3{width:183.760000pt;}
.w12{width:189.280000pt;}
.w22{width:212.800000pt;}
.w23{width:218.321333pt;}
.w5{width:225.918667pt;}
.w2d{width:238.000000pt;}
.w2e{width:244.001333pt;}
.w1e{width:252.960000pt;}
.w29{width:256.560000pt;}
.w26{width:299.200000pt;}
.w6{width:409.680000pt;}
.w27{width:430.960000pt;}
.w4{width:460.160000pt;}
.w8{width:489.281333pt;}
.w1{width:794.000000pt;}
.w0{width:794.160000pt;}
.x0{left:0.000000pt;}
.x48{left:1.760000pt;}
.x9{left:6.400000pt;}
.x4b{left:7.680000pt;}
.x29{left:8.960000pt;}
.x3b{left:11.200000pt;}
.x15{left:12.160000pt;}
.x20{left:13.920000pt;}
.x62{left:15.120000pt;}
.x37{left:16.320000pt;}
.x3d{left:17.440000pt;}
.x63{left:18.720000pt;}
.xe{left:19.920000pt;}
.x43{left:21.200000pt;}
.x25{left:22.240000pt;}
.x52{left:24.560000pt;}
.x2d{left:25.760000pt;}
.x31{left:27.840000pt;}
.x34{left:29.440000pt;}
.x22{left:31.920000pt;}
.x81{left:32.880000pt;}
.x40{left:35.840000pt;}
.x83{left:39.040000pt;}
.x80{left:40.720000pt;}
.x7d{left:41.680000pt;}
.x73{left:44.240000pt;}
.x2c{left:46.000000pt;}
.x86{left:47.760000pt;}
.x74{left:49.120000pt;}
.x87{left:52.560000pt;}
.x92{left:57.040000pt;}
.x50{left:58.480000pt;}
.x1e{left:60.080000pt;}
.x1f{left:62.720000pt;}
.x21{left:64.960000pt;}
.x1{left:66.160000pt;}
.xd{left:68.160000pt;}
.x1d{left:71.200000pt;}
.x88{left:72.480000pt;}
.x18{left:74.000000pt;}
.xa{left:75.360000pt;}
.x46{left:77.520000pt;}
.x17{left:79.280000pt;}
.x24{left:80.560000pt;}
.x7b{left:81.920000pt;}
.x2e{left:83.920000pt;}
.x6{left:85.120000pt;}
.x3e{left:86.800000pt;}
.x8d{left:88.240000pt;}
.x13{left:90.160000pt;}
.x1b{left:92.800000pt;}
.x7f{left:94.475920pt;}
.x94{left:95.520000pt;}
.xf{left:96.640000pt;}
.x2a{left:98.960000pt;}
.x72{left:100.560000pt;}
.x91{left:102.960000pt;}
.x7{left:104.000000pt;}
.x85{left:105.600000pt;}
.x82{left:109.760000pt;}
.x64{left:110.960000pt;}
.x1c{left:112.640000pt;}
.x7e{left:116.400000pt;}
.x84{left:125.280000pt;}
.x42{left:136.480000pt;}
.x41{left:144.240000pt;}
.x27{left:145.280000pt;}
.x8e{left:147.840000pt;}
.x14{left:149.200000pt;}
.x67{left:153.200000pt;}
.x8b{left:157.120000pt;}
.x47{left:158.640000pt;}
.x95{left:159.600000pt;}
.x23{left:163.360000pt;}
.x93{left:166.480000pt;}
.x59{left:168.000000pt;}
.x1a{left:168.960000pt;}
.x3f{left:172.240000pt;}
.x10{left:175.120000pt;}
.x16{left:181.840000pt;}
.x58{left:184.320000pt;}
.x44{left:186.960000pt;}
.xc{left:189.760000pt;}
.x66{left:192.480000pt;}
.x57{left:193.520000pt;}
.x45{left:196.720000pt;}
.x89{left:198.800000pt;}
.x7c{left:204.240000pt;}
.x28{left:224.320000pt;}
.x65{left:230.320000pt;}
.x2b{left:240.800000pt;}
.x8a{left:245.120000pt;}
.xb{left:258.880000pt;}
.x2f{left:263.680000pt;}
.x12{left:271.759840pt;}
.x75{left:280.640000pt;}
.x4a{left:285.520000pt;}
.x11{left:290.156560pt;}
.x19{left:305.200000pt;}
.x36{left:310.960000pt;}
.x68{left:313.360000pt;}
.x49{left:315.040000pt;}
.x8f{left:331.360000pt;}
.x5a{left:333.440000pt;}
.x6d{left:351.120000pt;}
.x30{left:358.240000pt;}
.x54{left:359.920000pt;}
.x4c{left:370.560000pt;}
.x69{left:388.960000pt;}
.x38{left:396.080000pt;}
.x5b{left:409.040000pt;}
.x53{left:412.560000pt;}
.x51{left:415.840000pt;}
.x6e{left:426.720000pt;}
.x26{left:434.080000pt;}
.x32{left:443.360000pt;}
.x5f{left:446.800000pt;}
.x6a{left:464.560000pt;}
.x4e{left:474.560000pt;}
.x5c{left:484.640000pt;}
.x4d{left:486.720000pt;}
.x39{left:490.640000pt;}
.x6f{left:502.320000pt;}
.x76{left:503.440000pt;}
.x60{left:522.400000pt;}
.x5{left:528.160000pt;}
.x33{left:537.920000pt;}
.x6b{left:540.160000pt;}
.x77{left:544.480000pt;}
.x5d{left:560.240000pt;}
.x4f{left:572.960000pt;}
.x90{left:575.360000pt;}
.x70{left:577.920000pt;}
.x3a{left:585.200000pt;}
.x78{left:588.480000pt;}
.x3{left:597.360000pt;}
.x6c{left:615.760000pt;}
.x4{left:619.200000pt;}
.x8{left:622.160000pt;}
.x35{left:626.240000pt;}
.x79{left:629.520000pt;}
.x5e{left:635.840000pt;}
.x56{left:638.075200pt;}
.x55{left:642.951600pt;}
.x8c{left:650.720000pt;}
.x71{left:653.520000pt;}
.x3c{left:670.240000pt;}
.x61{left:673.600000pt;}
.x7a{left:676.800000pt;}
.x2{left:728.080000pt;}
}




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