
    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_580946249fedaf3b64eedc90.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_e0887b2a1447f70ec6e90f95.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c1a12fa1f66ddd078ef3dfc4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f41980bb724aa43ac07b775f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_efa298c50dc2e02088b4faf5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730469;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_d123b764fea3d2dec5524fa6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c1addf6c237ebc902a9be164.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3fceeb1d4d15405fe22b7f48.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c810505f11b67f9ed0c2ed51.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.046387;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_da4147cfb1c7f3e4f2510d1b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b9e4ccd21d5287a2ebd77677.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_834d2711dae2ec915f4dc341.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-11.730000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls6e{letter-spacing:-7.500000px;}
.ls6f{letter-spacing:-7.080000px;}
.ls37{letter-spacing:-6.480000px;}
.ls3b{letter-spacing:-6.192000px;}
.ls59{letter-spacing:-6.060000px;}
.ls64{letter-spacing:-1.287600px;}
.ls63{letter-spacing:-1.110000px;}
.lsb{letter-spacing:-0.780000px;}
.ls75{letter-spacing:-0.300000px;}
.ls39{letter-spacing:-0.240000px;}
.lsa9{letter-spacing:-0.192000px;}
.ls70{letter-spacing:-0.180000px;}
.lsab{letter-spacing:-0.144000px;}
.ls38{letter-spacing:-0.120000px;}
.ls5a{letter-spacing:-0.096000px;}
.ls58{letter-spacing:-0.060000px;}
.ls9a{letter-spacing:-0.048000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls4d{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls52{letter-spacing:0.120000px;}
.ls33{letter-spacing:0.180000px;}
.ls8e{letter-spacing:0.192000px;}
.ls1c{letter-spacing:0.240000px;}
.ls96{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.300000px;}
.ls8d{letter-spacing:0.336000px;}
.ls25{letter-spacing:0.360000px;}
.ls93{letter-spacing:0.384000px;}
.ls16{letter-spacing:0.420000px;}
.ls95{letter-spacing:0.432000px;}
.lse{letter-spacing:0.480000px;}
.ls5d{letter-spacing:0.528000px;}
.ls26{letter-spacing:0.540000px;}
.ls90{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.600000px;}
.ls99{letter-spacing:0.624000px;}
.ls6{letter-spacing:0.660000px;}
.lsa2{letter-spacing:0.672000px;}
.lsf{letter-spacing:0.720000px;}
.ls81{letter-spacing:0.768000px;}
.ls45{letter-spacing:0.780000px;}
.ls7c{letter-spacing:0.816000px;}
.ls1f{letter-spacing:0.840000px;}
.lsd{letter-spacing:0.900000px;}
.ls97{letter-spacing:0.912000px;}
.ls7{letter-spacing:0.960000px;}
.lsa7{letter-spacing:1.008000px;}
.ls1d{letter-spacing:1.020000px;}
.ls20{letter-spacing:1.080000px;}
.ls87{letter-spacing:1.104000px;}
.ls34{letter-spacing:1.140000px;}
.ls7f{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.200000px;}
.ls7a{letter-spacing:1.248000px;}
.ls19{letter-spacing:1.260000px;}
.ls76{letter-spacing:1.296000px;}
.ls24{letter-spacing:1.320000px;}
.ls7b{letter-spacing:1.344000px;}
.ls1b{letter-spacing:1.380000px;}
.ls8f{letter-spacing:1.392000px;}
.ls48{letter-spacing:1.440000px;}
.ls9f{letter-spacing:1.488000px;}
.ls2b{letter-spacing:1.500000px;}
.ls4b{letter-spacing:1.536000px;}
.ls17{letter-spacing:1.560000px;}
.lsa8{letter-spacing:1.584000px;}
.ls22{letter-spacing:1.620000px;}
.ls79{letter-spacing:1.632000px;}
.ls54{letter-spacing:1.680000px;}
.ls8b{letter-spacing:1.728000px;}
.ls42{letter-spacing:1.740000px;}
.ls8a{letter-spacing:1.776000px;}
.ls18{letter-spacing:1.800000px;}
.ls94{letter-spacing:1.824000px;}
.ls9{letter-spacing:1.860000px;}
.ls78{letter-spacing:1.872000px;}
.ls3e{letter-spacing:1.920000px;}
.ls9d{letter-spacing:1.968000px;}
.ls46{letter-spacing:1.980000px;}
.ls13{letter-spacing:2.040000px;}
.lsa0{letter-spacing:2.064000px;}
.ls4f{letter-spacing:2.100000px;}
.ls91{letter-spacing:2.112000px;}
.ls11{letter-spacing:2.160000px;}
.ls36{letter-spacing:2.184600px;}
.ls3d{letter-spacing:2.220000px;}
.ls80{letter-spacing:2.256000px;}
.ls2a{letter-spacing:2.280000px;}
.ls3a{letter-spacing:2.340000px;}
.ls7d{letter-spacing:2.352000px;}
.ls27{letter-spacing:2.400000px;}
.ls8c{letter-spacing:2.448000px;}
.ls49{letter-spacing:2.460000px;}
.ls9c{letter-spacing:2.496000px;}
.ls2f{letter-spacing:2.520000px;}
.ls53{letter-spacing:2.580000px;}
.ls7e{letter-spacing:2.592000px;}
.ls1e{letter-spacing:2.640000px;}
.lsa1{letter-spacing:2.688000px;}
.ls2c{letter-spacing:2.700000px;}
.ls32{letter-spacing:2.760000px;}
.lsaa{letter-spacing:2.784000px;}
.ls12{letter-spacing:2.820000px;}
.ls40{letter-spacing:2.880000px;}
.ls89{letter-spacing:2.928000px;}
.ls5{letter-spacing:2.940000px;}
.ls2e{letter-spacing:3.000000px;}
.ls77{letter-spacing:3.024000px;}
.ls31{letter-spacing:3.060000px;}
.ls9b{letter-spacing:3.072000px;}
.ls56{letter-spacing:3.120000px;}
.ls5e{letter-spacing:3.180000px;}
.lsa3{letter-spacing:3.216000px;}
.ls41{letter-spacing:3.240000px;}
.ls51{letter-spacing:3.300000px;}
.ls9e{letter-spacing:3.312000px;}
.ls3c{letter-spacing:3.360000px;}
.ls44{letter-spacing:3.480000px;}
.ls86{letter-spacing:3.552000px;}
.ls6a{letter-spacing:3.600000px;}
.ls85{letter-spacing:3.696000px;}
.ls35{letter-spacing:3.720000px;}
.ls92{letter-spacing:3.744000px;}
.ls3f{letter-spacing:3.780000px;}
.ls83{letter-spacing:3.792000px;}
.ls4a{letter-spacing:3.840000px;}
.ls74{letter-spacing:3.900000px;}
.ls23{letter-spacing:4.020000px;}
.ls55{letter-spacing:4.080000px;}
.ls6d{letter-spacing:4.140000px;}
.ls47{letter-spacing:4.260000px;}
.ls57{letter-spacing:4.320000px;}
.ls2d{letter-spacing:4.380000px;}
.ls71{letter-spacing:4.440000px;}
.ls82{letter-spacing:4.752000px;}
.ls15{letter-spacing:4.860000px;}
.ls88{letter-spacing:5.040000px;}
.ls6c{letter-spacing:5.160000px;}
.ls28{letter-spacing:5.220000px;}
.ls29{letter-spacing:5.460000px;}
.ls4c{letter-spacing:5.472000px;}
.ls6b{letter-spacing:5.520000px;}
.ls43{letter-spacing:5.580000px;}
.lsa6{letter-spacing:5.856000px;}
.ls4e{letter-spacing:5.940000px;}
.ls5b{letter-spacing:6.060000px;}
.ls5c{letter-spacing:6.120000px;}
.ls4{letter-spacing:6.180000px;}
.ls21{letter-spacing:6.240000px;}
.ls69{letter-spacing:6.540000px;}
.lsa5{letter-spacing:6.576000px;}
.ls50{letter-spacing:6.780000px;}
.lsc{letter-spacing:6.900000px;}
.ls72{letter-spacing:7.320000px;}
.ls73{letter-spacing:7.440000px;}
.ls30{letter-spacing:7.500000px;}
.lsa4{letter-spacing:7.632000px;}
.ls98{letter-spacing:7.728000px;}
.ls84{letter-spacing:7.776000px;}
.ls62{letter-spacing:50.634000px;}
.ls60{letter-spacing:53.040000px;}
.ls2{letter-spacing:59.532876px;}
.ls1{letter-spacing:59.533476px;}
.ls0{letter-spacing:59.537400px;}
.ls61{letter-spacing:101.650800px;}
.ls5f{letter-spacing:104.070000px;}
.ls65{letter-spacing:309.168000px;}
.ls67{letter-spacing:333.168000px;}
.ls66{letter-spacing:1579.728000px;}
.ls68{letter-spacing:1936.896000px;}
.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;}
}
.ws95{word-spacing:-357.168000px;}
.ws97{word-spacing:-345.168000px;}
.ws7b{word-spacing:-111.570000px;}
.ws8a{word-spacing:-110.350800px;}
.wsb4{word-spacing:-18.480000px;}
.ws12{word-spacing:-18.060000px;}
.wsa2{word-spacing:-17.820000px;}
.ws48{word-spacing:-17.640000px;}
.wsb5{word-spacing:-17.460000px;}
.wsa1{word-spacing:-17.400000px;}
.ws11{word-spacing:-17.280000px;}
.wsb6{word-spacing:-17.220000px;}
.ws79{word-spacing:-16.980000px;}
.wsbb{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws99{word-spacing:-16.560000px;}
.wsb8{word-spacing:-16.500000px;}
.ws5d{word-spacing:-16.200000px;}
.wsb7{word-spacing:-16.140000px;}
.ws5e{word-spacing:-16.080000px;}
.ws49{word-spacing:-15.960000px;}
.ws60{word-spacing:-15.900000px;}
.wsb9{word-spacing:-15.840000px;}
.wsa5{word-spacing:-15.720000px;}
.wsf3{word-spacing:-15.696000px;}
.wsa6{word-spacing:-15.660000px;}
.wsba{word-spacing:-15.600000px;}
.ws5f{word-spacing:-15.540000px;}
.wsf{word-spacing:-15.300000px;}
.wsa4{word-spacing:-15.240000px;}
.wsa3{word-spacing:-15.180000px;}
.ws78{word-spacing:-15.120000px;}
.ws47{word-spacing:-15.060000px;}
.ws10{word-spacing:-15.000000px;}
.wsc7{word-spacing:-14.352000px;}
.wsf4{word-spacing:-13.872000px;}
.wscb{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.344000px;}
.wsc4{word-spacing:-13.296000px;}
.wsc5{word-spacing:-13.248000px;}
.wsc6{word-spacing:-13.104000px;}
.wscd{word-spacing:-12.816000px;}
.wsc9{word-spacing:-12.768000px;}
.wscc{word-spacing:-12.576000px;}
.wsc8{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.wsca{word-spacing:-12.048000px;}
.ws44{word-spacing:-12.000000px;}
.wsc3{word-spacing:-11.952000px;}
.wsf2{word-spacing:-11.808000px;}
.ws1{word-spacing:-10.210662px;}
.ws9a{word-spacing:-6.540000px;}
.ws51{word-spacing:-5.580000px;}
.wsb3{word-spacing:-5.160000px;}
.ws1a{word-spacing:-4.860000px;}
.wsbc{word-spacing:-4.440000px;}
.ws37{word-spacing:-4.380000px;}
.wsf1{word-spacing:-4.368000px;}
.ws6a{word-spacing:-4.320000px;}
.ws54{word-spacing:-4.260000px;}
.wsac{word-spacing:-4.200000px;}
.ws68{word-spacing:-4.140000px;}
.ws5b{word-spacing:-4.080000px;}
.ws2d{word-spacing:-4.020000px;}
.ws56{word-spacing:-3.900000px;}
.wsb1{word-spacing:-3.840000px;}
.wse0{word-spacing:-3.792000px;}
.ws4d{word-spacing:-3.780000px;}
.wseb{word-spacing:-3.744000px;}
.ws34{word-spacing:-3.720000px;}
.wse1{word-spacing:-3.696000px;}
.ws9d{word-spacing:-3.600000px;}
.ws52{word-spacing:-3.480000px;}
.ws4a{word-spacing:-3.360000px;}
.wsf6{word-spacing:-3.312000px;}
.ws62{word-spacing:-3.300000px;}
.ws4e{word-spacing:-3.240000px;}
.wsfe{word-spacing:-3.216000px;}
.ws94{word-spacing:-3.180000px;}
.ws69{word-spacing:-3.120000px;}
.wsdb{word-spacing:-3.072000px;}
.ws3a{word-spacing:-3.060000px;}
.wsd1{word-spacing:-3.024000px;}
.ws4f{word-spacing:-3.000000px;}
.wsb2{word-spacing:-2.940000px;}
.ws6{word-spacing:-2.886000px;}
.ws1f{word-spacing:-2.880000px;}
.ws17{word-spacing:-2.820000px;}
.wsff{word-spacing:-2.784000px;}
.ws3b{word-spacing:-2.760000px;}
.ws36{word-spacing:-2.700000px;}
.wsfc{word-spacing:-2.688000px;}
.ws26{word-spacing:-2.640000px;}
.wsdc{word-spacing:-2.592000px;}
.ws63{word-spacing:-2.580000px;}
.ws38{word-spacing:-2.520000px;}
.wse4{word-spacing:-2.496000px;}
.ws55{word-spacing:-2.460000px;}
.wsee{word-spacing:-2.448000px;}
.ws31{word-spacing:-2.400000px;}
.wsda{word-spacing:-2.352000px;}
.ws45{word-spacing:-2.340000px;}
.ws33{word-spacing:-2.280000px;}
.wsde{word-spacing:-2.256000px;}
.ws39{word-spacing:-2.220000px;}
.ws16{word-spacing:-2.160000px;}
.wse9{word-spacing:-2.112000px;}
.ws4b{word-spacing:-2.100000px;}
.wsfb{word-spacing:-2.064000px;}
.ws18{word-spacing:-2.040000px;}
.ws53{word-spacing:-1.980000px;}
.wsf5{word-spacing:-1.968000px;}
.ws4c{word-spacing:-1.920000px;}
.wsd2{word-spacing:-1.872000px;}
.wse{word-spacing:-1.860000px;}
.wsed{word-spacing:-1.824000px;}
.ws1d{word-spacing:-1.800000px;}
.wse8{word-spacing:-1.776000px;}
.ws50{word-spacing:-1.740000px;}
.wse3{word-spacing:-1.728000px;}
.ws64{word-spacing:-1.680000px;}
.wsd3{word-spacing:-1.632000px;}
.ws2c{word-spacing:-1.620000px;}
.ws35{word-spacing:-1.560000px;}
.ws59{word-spacing:-1.536000px;}
.ws42{word-spacing:-1.500000px;}
.wsfa{word-spacing:-1.488000px;}
.ws67{word-spacing:-1.440000px;}
.wse6{word-spacing:-1.392000px;}
.ws21{word-spacing:-1.380000px;}
.wsd6{word-spacing:-1.344000px;}
.ws2e{word-spacing:-1.320000px;}
.wsd0{word-spacing:-1.296000px;}
.ws1e{word-spacing:-1.260000px;}
.wsd4{word-spacing:-1.248000px;}
.ws15{word-spacing:-1.200000px;}
.wsdd{word-spacing:-1.152000px;}
.ws41{word-spacing:-1.140000px;}
.wse2{word-spacing:-1.104000px;}
.ws2a{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.020000px;}
.ws100{word-spacing:-1.008000px;}
.wsc{word-spacing:-0.960000px;}
.wsf0{word-spacing:-0.912000px;}
.ws13{word-spacing:-0.900000px;}
.ws29{word-spacing:-0.840000px;}
.wsd9{word-spacing:-0.816000px;}
.ws22{word-spacing:-0.780000px;}
.wsdf{word-spacing:-0.768000px;}
.ws14{word-spacing:-0.720000px;}
.wsfd{word-spacing:-0.672000px;}
.wsa{word-spacing:-0.660000px;}
.wsd5{word-spacing:-0.624000px;}
.ws3e{word-spacing:-0.600000px;}
.wse7{word-spacing:-0.576000px;}
.ws30{word-spacing:-0.540000px;}
.ws77{word-spacing:-0.528000px;}
.ws32{word-spacing:-0.480000px;}
.ws1b{word-spacing:-0.420000px;}
.wsec{word-spacing:-0.384000px;}
.ws2f{word-spacing:-0.360000px;}
.wsd7{word-spacing:-0.336000px;}
.ws19{word-spacing:-0.300000px;}
.wsef{word-spacing:-0.288000px;}
.ws24{word-spacing:-0.240000px;}
.wse5{word-spacing:-0.192000px;}
.ws40{word-spacing:-0.180000px;}
.ws0{word-spacing:-0.126600px;}
.wsd{word-spacing:-0.120000px;}
.ws28{word-spacing:-0.060000px;}
.ws5a{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsd8{word-spacing:0.048000px;}
.ws7{word-spacing:0.060000px;}
.ws6f{word-spacing:0.096000px;}
.ws3d{word-spacing:0.120000px;}
.wsb0{word-spacing:0.180000px;}
.wsf9{word-spacing:0.192000px;}
.ws43{word-spacing:0.240000px;}
.wsbd{word-spacing:0.300000px;}
.wsea{word-spacing:0.432000px;}
.wsa8{word-spacing:0.480000px;}
.ws74{word-spacing:0.576000px;}
.wsae{word-spacing:0.600000px;}
.ws71{word-spacing:0.660000px;}
.wsa0{word-spacing:0.816000px;}
.ws57{word-spacing:0.960000px;}
.ws72{word-spacing:1.080000px;}
.ws75{word-spacing:1.260000px;}
.ws9b{word-spacing:1.320000px;}
.ws70{word-spacing:1.380000px;}
.ws1c{word-spacing:1.560000px;}
.ws3c{word-spacing:1.680000px;}
.ws66{word-spacing:1.800000px;}
.wsaa{word-spacing:1.860000px;}
.wsa9{word-spacing:2.040000px;}
.ws6c{word-spacing:2.280000px;}
.ws9c{word-spacing:2.400000px;}
.ws6d{word-spacing:2.520000px;}
.ws5c{word-spacing:2.580000px;}
.ws61{word-spacing:2.700000px;}
.ws102{word-spacing:2.820000px;}
.wsf7{word-spacing:2.832000px;}
.ws6e{word-spacing:2.880000px;}
.wsb{word-spacing:3.060000px;}
.wsf8{word-spacing:3.072000px;}
.wsc1{word-spacing:3.180000px;}
.ws6b{word-spacing:3.420000px;}
.ws73{word-spacing:3.480000px;}
.ws9e{word-spacing:3.600000px;}
.wsa7{word-spacing:3.720000px;}
.ws20{word-spacing:3.840000px;}
.ws58{word-spacing:3.936000px;}
.wsbe{word-spacing:3.960000px;}
.ws76{word-spacing:3.984000px;}
.wsaf{word-spacing:4.020000px;}
.ws101{word-spacing:4.080000px;}
.ws27{word-spacing:4.200000px;}
.ws3f{word-spacing:4.320000px;}
.wsc0{word-spacing:4.380000px;}
.ws9f{word-spacing:4.680000px;}
.wsce{word-spacing:4.740000px;}
.ws9{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws103{word-spacing:5.220000px;}
.wscf{word-spacing:5.460000px;}
.wsc2{word-spacing:5.520000px;}
.ws65{word-spacing:6.060000px;}
.ws46{word-spacing:6.192000px;}
.ws2b{word-spacing:6.240000px;}
.ws23{word-spacing:6.480000px;}
.wsad{word-spacing:7.080000px;}
.wsbf{word-spacing:7.500000px;}
.ws81{word-spacing:12.452400px;}
.wsab{word-spacing:12.660000px;}
.ws86{word-spacing:12.660600px;}
.ws88{word-spacing:12.778800px;}
.ws7e{word-spacing:14.070000px;}
.ws84{word-spacing:14.610000px;}
.ws8d{word-spacing:14.650800px;}
.ws93{word-spacing:15.007800px;}
.ws8f{word-spacing:15.120600px;}
.ws92{word-spacing:15.312000px;}
.ws85{word-spacing:15.720000px;}
.ws90{word-spacing:24.534000px;}
.ws91{word-spacing:28.396800px;}
.ws82{word-spacing:30.540000px;}
.ws83{word-spacing:33.870000px;}
.ws8c{word-spacing:75.550800px;}
.ws8b{word-spacing:78.787200px;}
.ws7d{word-spacing:81.570000px;}
.ws7c{word-spacing:84.330000px;}
.ws80{word-spacing:92.430000px;}
.ws89{word-spacing:92.950800px;}
.ws7a{word-spacing:96.570000px;}
.ws7f{word-spacing:133.110000px;}
.ws8e{word-spacing:133.701600px;}
.ws87{word-spacing:134.220000px;}
.ws96{word-spacing:297.168000px;}
.ws98{word-spacing:2639.232000px;}
._f{margin-left:-2898.096000px;}
._10{margin-left:-2874.288000px;}
._42{margin-left:-333.168000px;}
._3e{margin-left:-309.168000px;}
._13{margin-left:-104.010000px;}
._28{margin-left:-100.982400px;}
._29{margin-left:-16.738800px;}
._14{margin-left:-14.460000px;}
._2{margin-left:-9.368400px;}
._5{margin-left:-7.560000px;}
._c{margin-left:-6.540000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.140000px;}
._a{width:1.020000px;}
._b{width:2.220000px;}
._6{width:3.480000px;}
._8{width:4.560000px;}
._7{width:5.580000px;}
._9{width:6.660000px;}
._d{width:7.740000px;}
._e{width:9.300000px;}
._11{width:10.500000px;}
._43{width:11.520000px;}
._1b{width:21.570000px;}
._1c{width:22.650000px;}
._2f{width:24.051600px;}
._3a{width:29.371200px;}
._35{width:30.476400px;}
._30{width:38.976000px;}
._36{width:60.238800px;}
._2d{width:61.378800px;}
._37{width:75.655200px;}
._2e{width:77.604000px;}
._31{width:80.658000px;}
._38{width:84.042000px;}
._21{width:88.170000px;}
._34{width:95.073600px;}
._18{width:97.320000px;}
._39{width:98.936400px;}
._2a{width:100.006800px;}
._2c{width:101.990400px;}
._32{width:111.664800px;}
._25{width:116.190000px;}
._26{width:129.480000px;}
._20{width:131.160000px;}
._24{width:132.840000px;}
._17{width:140.610000px;}
._2b{width:142.401600px;}
._23{width:146.190000px;}
._1a{width:149.340000px;}
._1e{width:151.050000px;}
._16{width:156.570000px;}
._33{width:158.827200px;}
._1f{width:159.900000px;}
._22{width:165.660000px;}
._19{width:198.210000px;}
._1d{width:200.670000px;}
._15{width:227.250000px;}
._41{width:321.168000px;}
._40{width:333.168000px;}
._3b{width:348.624000px;}
._3d{width:353.232000px;}
._27{width:480.274800px;}
._3c{width:495.084000px;}
._12{width:496.140000px;}
._3f{width:865.440000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:30.000000px;}
.fsc{font-size:34.800000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2c{bottom:47.777250px;}
.y1cc{bottom:80.263500px;}
.y15c{bottom:83.635350px;}
.y62{bottom:83.770350px;}
.yb8{bottom:83.772600px;}
.y7f{bottom:83.912100px;}
.y130{bottom:83.920350px;}
.yef{bottom:83.991750px;}
.yea{bottom:84.062100px;}
.y82{bottom:84.098100px;}
.yd5{bottom:87.053850px;}
.y21{bottom:87.483300px;}
.y107{bottom:91.327800px;}
.y18b{bottom:92.121900px;}
.y1cb{bottom:95.263500px;}
.yee{bottom:99.735750px;}
.y81{bottom:99.842100px;}
.y15b{bottom:101.230350px;}
.y61{bottom:101.770350px;}
.yb7{bottom:101.772600px;}
.y7e{bottom:101.912100px;}
.y12f{bottom:101.920350px;}
.ye9{bottom:102.062100px;}
.y20{bottom:102.479550px;}
.y106{bottom:103.080300px;}
.yd4{bottom:105.053850px;}
.y18a{bottom:107.121900px;}
.y1ca{bottom:110.263500px;}
.y105{bottom:114.832800px;}
.y1f{bottom:117.479550px;}
.y60{bottom:119.770350px;}
.yb6{bottom:119.772600px;}
.y7d{bottom:119.912100px;}
.y12e{bottom:119.920350px;}
.y189{bottom:122.121900px;}
.yd3{bottom:123.053850px;}
.y1c9{bottom:125.263500px;}
.y104{bottom:126.585300px;}
.y188{bottom:137.121900px;}
.y15a{bottom:137.635350px;}
.ye8{bottom:137.657100px;}
.y5f{bottom:137.770350px;}
.yb5{bottom:137.772600px;}
.y7c{bottom:137.912100px;}
.y12d{bottom:137.920350px;}
.y103{bottom:138.337800px;}
.y1c8{bottom:140.263500px;}
.yd2{bottom:141.053850px;}
.y102{bottom:150.090300px;}
.yed{bottom:151.692750px;}
.y127{bottom:152.040600px;}
.y187{bottom:152.121900px;}
.y159{bottom:155.230350px;}
.y1c7{bottom:155.263500px;}
.ye7{bottom:155.657100px;}
.y5e{bottom:155.770350px;}
.yb4{bottom:155.772600px;}
.y7b{bottom:155.912100px;}
.y12c{bottom:155.920350px;}
.yd1{bottom:159.053850px;}
.y101{bottom:161.842800px;}
.y186{bottom:167.121900px;}
.yec{bottom:167.436750px;}
.y126{bottom:168.288600px;}
.y1c6{bottom:170.263500px;}
.y100{bottom:173.592150px;}
.ye6{bottom:173.657100px;}
.y5d{bottom:173.770350px;}
.yb3{bottom:173.772600px;}
.y7a{bottom:173.912100px;}
.y12b{bottom:173.920350px;}
.yd0{bottom:177.053850px;}
.y185{bottom:182.121900px;}
.y27{bottom:182.808000px;}
.yeb{bottom:183.180750px;}
.y125{bottom:184.536600px;}
.y1c5{bottom:185.263500px;}
.yff{bottom:185.344650px;}
.y158{bottom:191.635350px;}
.y5c{bottom:191.770350px;}
.yb2{bottom:191.772600px;}
.y79{bottom:191.920350px;}
.ycf{bottom:195.053850px;}
.yfe{bottom:197.097150px;}
.y184{bottom:197.121900px;}
.y1c4{bottom:200.263500px;}
.y124{bottom:200.784600px;}
.y26{bottom:200.808000px;}
.yfd{bottom:208.849650px;}
.y157{bottom:209.635350px;}
.y5b{bottom:209.770350px;}
.yb1{bottom:209.772600px;}
.ye5{bottom:209.912100px;}
.y78{bottom:209.920350px;}
.y183{bottom:212.121900px;}
.yce{bottom:213.053850px;}
.y1c3{bottom:215.263500px;}
.y25{bottom:218.808000px;}
.yfc{bottom:220.602150px;}
.y182{bottom:227.121900px;}
.y156{bottom:227.635350px;}
.y5a{bottom:227.770350px;}
.yb0{bottom:227.772600px;}
.ye4{bottom:227.912100px;}
.y77{bottom:227.920350px;}
.y123{bottom:229.200600px;}
.y1c2{bottom:230.263500px;}
.ycd{bottom:231.053850px;}
.yfb{bottom:232.354650px;}
.y24{bottom:236.808000px;}
.y181{bottom:242.121900px;}
.yfa{bottom:244.102350px;}
.y1c1{bottom:245.263500px;}
.y155{bottom:245.635350px;}
.y59{bottom:245.770350px;}
.yaf{bottom:245.772600px;}
.ye3{bottom:245.912100px;}
.y76{bottom:245.920350px;}
.y23{bottom:254.808000px;}
.yf9{bottom:255.854850px;}
.y180{bottom:257.121900px;}
.y122{bottom:258.792600px;}
.y1c0{bottom:260.263500px;}
.y154{bottom:263.230350px;}
.y58{bottom:263.770350px;}
.yae{bottom:263.772600px;}
.ye2{bottom:263.912100px;}
.y75{bottom:263.920350px;}
.ycc{bottom:266.547000px;}
.yf8{bottom:267.607350px;}
.y17f{bottom:272.121900px;}
.y29{bottom:272.808000px;}
.y1bf{bottom:275.263500px;}
.yf7{bottom:279.359850px;}
.y12a{bottom:281.515350px;}
.ycb{bottom:281.547000px;}
.y57{bottom:281.770350px;}
.yad{bottom:281.772600px;}
.ye1{bottom:281.912100px;}
.y74{bottom:281.920350px;}
.y17e{bottom:287.121900px;}
.y1be{bottom:290.263500px;}
.y22{bottom:290.403000px;}
.y28{bottom:290.808000px;}
.yf6{bottom:291.112350px;}
.y121{bottom:291.183750px;}
.yca{bottom:296.547000px;}
.y153{bottom:299.635350px;}
.y56{bottom:299.770350px;}
.yac{bottom:299.772600px;}
.ye0{bottom:299.912100px;}
.y73{bottom:299.920350px;}
.y17d{bottom:302.121900px;}
.yf5{bottom:302.864850px;}
.y1bd{bottom:305.263500px;}
.y120{bottom:310.683750px;}
.yc9{bottom:311.547000px;}
.y17c{bottom:317.121900px;}
.y152{bottom:317.635350px;}
.y55{bottom:317.770350px;}
.yab{bottom:317.772600px;}
.ydf{bottom:317.912100px;}
.y72{bottom:317.920350px;}
.y1bc{bottom:320.263500px;}
.yc8{bottom:326.547000px;}
.yf4{bottom:327.374850px;}
.y17b{bottom:332.121900px;}
.y1bb{bottom:335.263500px;}
.y151{bottom:335.635350px;}
.y54{bottom:335.770350px;}
.yaa{bottom:335.772600px;}
.yde{bottom:335.912100px;}
.y71{bottom:335.920350px;}
.y17a{bottom:347.121900px;}
.y1ba{bottom:350.263500px;}
.y150{bottom:353.635350px;}
.y53{bottom:353.770350px;}
.ya9{bottom:353.772600px;}
.ydd{bottom:353.912100px;}
.y70{bottom:353.920350px;}
.yf3{bottom:356.020350px;}
.y11f{bottom:358.775250px;}
.yc7{bottom:359.650950px;}
.y179{bottom:362.121900px;}
.y1b9{bottom:365.263500px;}
.y1e{bottom:367.114200px;}
.y14f{bottom:371.635350px;}
.y52{bottom:371.770350px;}
.ya8{bottom:371.772600px;}
.ydc{bottom:371.912100px;}
.y6f{bottom:371.920350px;}
.y11e{bottom:374.519250px;}
.yf2{bottom:375.520350px;}
.y178{bottom:377.121900px;}
.yc6{bottom:377.650950px;}
.y1b8{bottom:380.263500px;}
.y134{bottom:389.515350px;}
.y14e{bottom:389.635350px;}
.y51{bottom:389.770350px;}
.ya7{bottom:389.772600px;}
.ydb{bottom:389.912100px;}
.y6e{bottom:389.920350px;}
.y177{bottom:392.121900px;}
.y1d{bottom:394.459200px;}
.y1b7{bottom:395.263500px;}
.yc5{bottom:395.650950px;}
.y176{bottom:407.121900px;}
.y14d{bottom:407.635350px;}
.y50{bottom:407.770350px;}
.ya6{bottom:407.772600px;}
.yda{bottom:407.912100px;}
.y6d{bottom:407.920350px;}
.y1b6{bottom:410.263500px;}
.y1c{bottom:412.459200px;}
.yc4{bottom:413.650950px;}
.y175{bottom:422.121900px;}
.y14c{bottom:425.230350px;}
.y1b5{bottom:425.263500px;}
.y4f{bottom:425.770350px;}
.ya5{bottom:425.772600px;}
.y6c{bottom:425.920350px;}
.y11d{bottom:425.959050px;}
.y1b{bottom:430.459200px;}
.y174{bottom:437.121900px;}
.y11c{bottom:438.913350px;}
.y1b4{bottom:440.263500px;}
.y4e{bottom:443.770350px;}
.ya4{bottom:443.772600px;}
.y6b{bottom:443.920350px;}
.y1a{bottom:448.459200px;}
.yc3{bottom:449.405250px;}
.y11b{bottom:451.867650px;}
.y173{bottom:452.121900px;}
.y1b3{bottom:455.263500px;}
.y14b{bottom:461.635350px;}
.y4d{bottom:461.770350px;}
.ya3{bottom:461.772600px;}
.y6a{bottom:461.920350px;}
.yc2{bottom:464.405250px;}
.y11a{bottom:464.821950px;}
.y19{bottom:466.459200px;}
.y172{bottom:467.121900px;}
.y1b2{bottom:470.263500px;}
.y119{bottom:477.776250px;}
.y14a{bottom:479.635350px;}
.y4c{bottom:479.770350px;}
.ya2{bottom:479.772600px;}
.y69{bottom:479.920350px;}
.y171{bottom:482.121900px;}
.y18{bottom:484.459200px;}
.y1b1{bottom:485.263500px;}
.y118{bottom:490.730550px;}
.y170{bottom:497.121900px;}
.yc1{bottom:497.502600px;}
.y149{bottom:497.635350px;}
.y4b{bottom:497.770350px;}
.ya1{bottom:497.772600px;}
.y68{bottom:497.920350px;}
.y1b0{bottom:500.263500px;}
.y17{bottom:502.459200px;}
.y117{bottom:503.684850px;}
.y16f{bottom:512.121900px;}
.y1af{bottom:515.263500px;}
.yc0{bottom:515.502600px;}
.y135{bottom:515.515350px;}
.y148{bottom:515.635350px;}
.y4a{bottom:515.770350px;}
.ya0{bottom:515.772600px;}
.y67{bottom:515.920350px;}
.y116{bottom:516.625050px;}
.y16{bottom:520.459200px;}
.y16e{bottom:527.121900px;}
.y115{bottom:529.579350px;}
.y1ae{bottom:530.263500px;}
.ybf{bottom:533.502600px;}
.y147{bottom:533.635350px;}
.y49{bottom:533.770350px;}
.y9f{bottom:533.772600px;}
.y66{bottom:533.920350px;}
.y15{bottom:538.459200px;}
.y16d{bottom:542.121900px;}
.y114{bottom:542.533650px;}
.y1ad{bottom:545.263500px;}
.ybe{bottom:551.502600px;}
.y146{bottom:551.635350px;}
.y48{bottom:551.770350px;}
.y9e{bottom:551.772600px;}
.yd9{bottom:551.920350px;}
.y113{bottom:555.487950px;}
.y14{bottom:556.459200px;}
.y16c{bottom:557.121900px;}
.y1ac{bottom:560.263500px;}
.y112{bottom:568.442250px;}
.y65{bottom:569.515350px;}
.y145{bottom:569.635350px;}
.y47{bottom:569.770350px;}
.y9d{bottom:569.772600px;}
.yd8{bottom:569.920350px;}
.y16b{bottom:572.121900px;}
.y13{bottom:574.459200px;}
.y1ab{bottom:575.263500px;}
.y111{bottom:581.396550px;}
.y16a{bottom:587.121900px;}
.ybd{bottom:587.367600px;}
.y144{bottom:587.635350px;}
.y46{bottom:587.770350px;}
.y9c{bottom:587.772600px;}
.y1aa{bottom:590.263500px;}
.y12{bottom:592.459200px;}
.y110{bottom:594.338550px;}
.y169{bottom:602.121900px;}
.y1a9{bottom:605.263500px;}
.ybc{bottom:605.367600px;}
.yd7{bottom:605.515350px;}
.y143{bottom:605.635350px;}
.y45{bottom:605.770350px;}
.y9b{bottom:605.772600px;}
.y10f{bottom:607.292850px;}
.y11{bottom:610.459200px;}
.y168{bottom:617.121900px;}
.y10e{bottom:620.247150px;}
.y1a8{bottom:620.263500px;}
.yd6{bottom:623.515350px;}
.y142{bottom:623.635350px;}
.y44{bottom:623.770350px;}
.y9a{bottom:623.772600px;}
.y10{bottom:628.459200px;}
.y167{bottom:632.121900px;}
.y10d{bottom:633.201450px;}
.y1a7{bottom:635.263500px;}
.ybb{bottom:641.232600px;}
.y141{bottom:641.635350px;}
.y43{bottom:641.770350px;}
.y99{bottom:641.772600px;}
.y10c{bottom:646.155750px;}
.yf{bottom:646.459200px;}
.y166{bottom:647.121900px;}
.y1a6{bottom:650.263500px;}
.y10b{bottom:659.110050px;}
.y140{bottom:659.635350px;}
.y42{bottom:659.770350px;}
.y98{bottom:659.772600px;}
.y165{bottom:662.121900px;}
.ye{bottom:664.459200px;}
.y1a5{bottom:665.263500px;}
.y164{bottom:677.121900px;}
.y41{bottom:677.770350px;}
.y97{bottom:677.772600px;}
.y1a4{bottom:680.263500px;}
.y10a{bottom:684.818550px;}
.y163{bottom:692.121900px;}
.y13f{bottom:695.230350px;}
.y1a3{bottom:695.263500px;}
.y40{bottom:695.770350px;}
.y96{bottom:695.772600px;}
.y162{bottom:707.121900px;}
.yd{bottom:709.617300px;}
.y1a2{bottom:710.263500px;}
.y3f{bottom:713.770350px;}
.y95{bottom:713.772600px;}
.y109{bottom:714.467250px;}
.yc{bottom:722.068050px;}
.y161{bottom:722.121900px;}
.y1a1{bottom:725.263500px;}
.y3e{bottom:731.770350px;}
.y94{bottom:731.772600px;}
.y108{bottom:733.967250px;}
.y160{bottom:737.121900px;}
.y1a0{bottom:740.263500px;}
.y3d{bottom:749.770350px;}
.y93{bottom:749.772600px;}
.y15f{bottom:752.121900px;}
.yb{bottom:753.783600px;}
.y19f{bottom:755.263500px;}
.ya{bottom:767.283600px;}
.y3c{bottom:767.770350px;}
.y92{bottom:767.772600px;}
.y19e{bottom:770.263500px;}
.y15e{bottom:785.230350px;}
.y1df{bottom:785.263500px;}
.y19d{bottom:785.265900px;}
.y3b{bottom:785.770350px;}
.y91{bottom:785.772600px;}
.y9{bottom:786.208950px;}
.y1de{bottom:800.263500px;}
.y19c{bottom:800.265900px;}
.y3a{bottom:803.770350px;}
.y90{bottom:803.772600px;}
.y8{bottom:814.930800px;}
.y1dd{bottom:815.263500px;}
.y19b{bottom:815.265900px;}
.y64{bottom:821.365350px;}
.y39{bottom:821.770350px;}
.y8f{bottom:821.772600px;}
.y1dc{bottom:830.263500px;}
.y19a{bottom:830.265900px;}
.y38{bottom:839.770350px;}
.y8e{bottom:839.772600px;}
.y13e{bottom:839.785350px;}
.y1db{bottom:845.263500px;}
.y199{bottom:845.265900px;}
.y63{bottom:857.230350px;}
.y37{bottom:857.770350px;}
.y8d{bottom:857.772600px;}
.y13d{bottom:857.785350px;}
.y1da{bottom:860.263500px;}
.y198{bottom:860.265900px;}
.y7{bottom:861.082800px;}
.y1d9{bottom:875.263500px;}
.y197{bottom:875.265900px;}
.y36{bottom:875.770350px;}
.y8c{bottom:875.772600px;}
.y13c{bottom:875.785350px;}
.y1d8{bottom:890.263500px;}
.y196{bottom:890.265900px;}
.yf1{bottom:893.365350px;}
.y35{bottom:893.770350px;}
.y8b{bottom:893.772600px;}
.y13b{bottom:893.785350px;}
.y6{bottom:897.543600px;}
.y1d7{bottom:905.263500px;}
.y195{bottom:905.265900px;}
.y34{bottom:911.770350px;}
.y8a{bottom:911.772600px;}
.y13a{bottom:911.785350px;}
.y1d6{bottom:920.263500px;}
.y194{bottom:920.265900px;}
.yf0{bottom:929.230350px;}
.y33{bottom:929.770350px;}
.y89{bottom:929.772600px;}
.y139{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y1d5{bottom:935.263500px;}
.y193{bottom:935.265900px;}
.y15d{bottom:947.365350px;}
.y32{bottom:947.770350px;}
.y88{bottom:947.772600px;}
.y138{bottom:947.785350px;}
.y1d4{bottom:950.263500px;}
.y192{bottom:950.265900px;}
.y1d3{bottom:965.263500px;}
.y191{bottom:965.265900px;}
.y31{bottom:965.770350px;}
.y87{bottom:965.772600px;}
.y137{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y1d2{bottom:980.263500px;}
.y190{bottom:980.265900px;}
.y30{bottom:983.770350px;}
.y86{bottom:983.772600px;}
.y136{bottom:983.785350px;}
.y1d1{bottom:995.263500px;}
.y18f{bottom:995.265900px;}
.y2f{bottom:1001.770350px;}
.y85{bottom:1001.772600px;}
.y133{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1d0{bottom:1010.263500px;}
.y18e{bottom:1010.265900px;}
.y2e{bottom:1019.770350px;}
.yba{bottom:1019.772600px;}
.y132{bottom:1019.785350px;}
.y1cf{bottom:1025.263500px;}
.y18d{bottom:1025.265900px;}
.y84{bottom:1037.367600px;}
.y2d{bottom:1037.770350px;}
.yb9{bottom:1037.772600px;}
.y131{bottom:1037.785350px;}
.y1ce{bottom:1040.263500px;}
.y18c{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y80{bottom:1132.418700px;}
.y129{bottom:1132.419750px;}
.y1cd{bottom:1132.423500px;}
.y83{bottom:1132.430100px;}
.y128{bottom:1132.440600px;}
.y2b{bottom:1136.092500px;}
.y2a{bottom:1150.492500px;}
.h6{height:18.856406px;}
.h15{height:24.916992px;}
.h17{height:24.931992px;}
.h16{height:24.936192px;}
.h8{height:28.412109px;}
.h18{height:28.903711px;}
.h19{height:28.960111px;}
.h1a{height:28.969111px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h14{height:33.328125px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h1b{height:37.632000px;}
.h1d{height:39.857588px;}
.h13{height:39.867188px;}
.he{height:41.660156px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.hc{height:43.717434px;}
.h9{height:43.740234px;}
.h12{height:49.800984px;}
.hf{height:49.833984px;}
.h1c{height:51.453984px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x1d{left:78.726750px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x1f{left:99.921300px;}
.x25{left:102.047250px;}
.x4{left:106.299150px;}
.xb{left:110.551200px;}
.x24{left:123.307200px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.x1c{left:198.875400px;}
.x5{left:212.876400px;}
.x23{left:215.545350px;}
.x20{left:319.269300px;}
.x9{left:455.041500px;}
.xc{left:457.141200px;}
.x14{left:460.640400px;}
.x19{left:462.279000px;}
.x17{left:468.954000px;}
.x11{left:478.345350px;}
.x7{left:480.476400px;}
.x1a{left:482.598600px;}
.xd{left:491.146200px;}
.x16{left:504.410400px;}
.x1b{left:512.410350px;}
.xe{left:525.316200px;}
.x15{left:553.595400px;}
.x18{left:564.414000px;}
.x22{left:570.681600px;}
.x13{left:591.665400px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x1e{left:721.717650px;}
.xf{left:728.391600px;}
.x21{left:743.877300px;}
.x12{left:749.647350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.426667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls6e{letter-spacing:-6.666667pt;}
.ls6f{letter-spacing:-6.293333pt;}
.ls37{letter-spacing:-5.760000pt;}
.ls3b{letter-spacing:-5.504000pt;}
.ls59{letter-spacing:-5.386667pt;}
.ls64{letter-spacing:-1.144533pt;}
.ls63{letter-spacing:-0.986667pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls75{letter-spacing:-0.266667pt;}
.ls39{letter-spacing:-0.213333pt;}
.lsa9{letter-spacing:-0.170667pt;}
.ls70{letter-spacing:-0.160000pt;}
.lsab{letter-spacing:-0.128000pt;}
.ls38{letter-spacing:-0.106667pt;}
.ls5a{letter-spacing:-0.085333pt;}
.ls58{letter-spacing:-0.053333pt;}
.ls9a{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls4d{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls52{letter-spacing:0.106667pt;}
.ls33{letter-spacing:0.160000pt;}
.ls8e{letter-spacing:0.170667pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls96{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.266667pt;}
.ls8d{letter-spacing:0.298667pt;}
.ls25{letter-spacing:0.320000pt;}
.ls93{letter-spacing:0.341333pt;}
.ls16{letter-spacing:0.373333pt;}
.ls95{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.426667pt;}
.ls5d{letter-spacing:0.469333pt;}
.ls26{letter-spacing:0.480000pt;}
.ls90{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls99{letter-spacing:0.554667pt;}
.ls6{letter-spacing:0.586667pt;}
.lsa2{letter-spacing:0.597333pt;}
.lsf{letter-spacing:0.640000pt;}
.ls81{letter-spacing:0.682667pt;}
.ls45{letter-spacing:0.693333pt;}
.ls7c{letter-spacing:0.725333pt;}
.ls1f{letter-spacing:0.746667pt;}
.lsd{letter-spacing:0.800000pt;}
.ls97{letter-spacing:0.810667pt;}
.ls7{letter-spacing:0.853333pt;}
.lsa7{letter-spacing:0.896000pt;}
.ls1d{letter-spacing:0.906667pt;}
.ls20{letter-spacing:0.960000pt;}
.ls87{letter-spacing:0.981333pt;}
.ls34{letter-spacing:1.013333pt;}
.ls7f{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls7a{letter-spacing:1.109333pt;}
.ls19{letter-spacing:1.120000pt;}
.ls76{letter-spacing:1.152000pt;}
.ls24{letter-spacing:1.173333pt;}
.ls7b{letter-spacing:1.194667pt;}
.ls1b{letter-spacing:1.226667pt;}
.ls8f{letter-spacing:1.237333pt;}
.ls48{letter-spacing:1.280000pt;}
.ls9f{letter-spacing:1.322667pt;}
.ls2b{letter-spacing:1.333333pt;}
.ls4b{letter-spacing:1.365333pt;}
.ls17{letter-spacing:1.386667pt;}
.lsa8{letter-spacing:1.408000pt;}
.ls22{letter-spacing:1.440000pt;}
.ls79{letter-spacing:1.450667pt;}
.ls54{letter-spacing:1.493333pt;}
.ls8b{letter-spacing:1.536000pt;}
.ls42{letter-spacing:1.546667pt;}
.ls8a{letter-spacing:1.578667pt;}
.ls18{letter-spacing:1.600000pt;}
.ls94{letter-spacing:1.621333pt;}
.ls9{letter-spacing:1.653333pt;}
.ls78{letter-spacing:1.664000pt;}
.ls3e{letter-spacing:1.706667pt;}
.ls9d{letter-spacing:1.749333pt;}
.ls46{letter-spacing:1.760000pt;}
.ls13{letter-spacing:1.813333pt;}
.lsa0{letter-spacing:1.834667pt;}
.ls4f{letter-spacing:1.866667pt;}
.ls91{letter-spacing:1.877333pt;}
.ls11{letter-spacing:1.920000pt;}
.ls36{letter-spacing:1.941867pt;}
.ls3d{letter-spacing:1.973333pt;}
.ls80{letter-spacing:2.005333pt;}
.ls2a{letter-spacing:2.026667pt;}
.ls3a{letter-spacing:2.080000pt;}
.ls7d{letter-spacing:2.090667pt;}
.ls27{letter-spacing:2.133333pt;}
.ls8c{letter-spacing:2.176000pt;}
.ls49{letter-spacing:2.186667pt;}
.ls9c{letter-spacing:2.218667pt;}
.ls2f{letter-spacing:2.240000pt;}
.ls53{letter-spacing:2.293333pt;}
.ls7e{letter-spacing:2.304000pt;}
.ls1e{letter-spacing:2.346667pt;}
.lsa1{letter-spacing:2.389333pt;}
.ls2c{letter-spacing:2.400000pt;}
.ls32{letter-spacing:2.453333pt;}
.lsaa{letter-spacing:2.474667pt;}
.ls12{letter-spacing:2.506667pt;}
.ls40{letter-spacing:2.560000pt;}
.ls89{letter-spacing:2.602667pt;}
.ls5{letter-spacing:2.613333pt;}
.ls2e{letter-spacing:2.666667pt;}
.ls77{letter-spacing:2.688000pt;}
.ls31{letter-spacing:2.720000pt;}
.ls9b{letter-spacing:2.730667pt;}
.ls56{letter-spacing:2.773333pt;}
.ls5e{letter-spacing:2.826667pt;}
.lsa3{letter-spacing:2.858667pt;}
.ls41{letter-spacing:2.880000pt;}
.ls51{letter-spacing:2.933333pt;}
.ls9e{letter-spacing:2.944000pt;}
.ls3c{letter-spacing:2.986667pt;}
.ls44{letter-spacing:3.093333pt;}
.ls86{letter-spacing:3.157333pt;}
.ls6a{letter-spacing:3.200000pt;}
.ls85{letter-spacing:3.285333pt;}
.ls35{letter-spacing:3.306667pt;}
.ls92{letter-spacing:3.328000pt;}
.ls3f{letter-spacing:3.360000pt;}
.ls83{letter-spacing:3.370667pt;}
.ls4a{letter-spacing:3.413333pt;}
.ls74{letter-spacing:3.466667pt;}
.ls23{letter-spacing:3.573333pt;}
.ls55{letter-spacing:3.626667pt;}
.ls6d{letter-spacing:3.680000pt;}
.ls47{letter-spacing:3.786667pt;}
.ls57{letter-spacing:3.840000pt;}
.ls2d{letter-spacing:3.893333pt;}
.ls71{letter-spacing:3.946667pt;}
.ls82{letter-spacing:4.224000pt;}
.ls15{letter-spacing:4.320000pt;}
.ls88{letter-spacing:4.480000pt;}
.ls6c{letter-spacing:4.586667pt;}
.ls28{letter-spacing:4.640000pt;}
.ls29{letter-spacing:4.853333pt;}
.ls4c{letter-spacing:4.864000pt;}
.ls6b{letter-spacing:4.906667pt;}
.ls43{letter-spacing:4.960000pt;}
.lsa6{letter-spacing:5.205333pt;}
.ls4e{letter-spacing:5.280000pt;}
.ls5b{letter-spacing:5.386667pt;}
.ls5c{letter-spacing:5.440000pt;}
.ls4{letter-spacing:5.493333pt;}
.ls21{letter-spacing:5.546667pt;}
.ls69{letter-spacing:5.813333pt;}
.lsa5{letter-spacing:5.845333pt;}
.ls50{letter-spacing:6.026667pt;}
.lsc{letter-spacing:6.133333pt;}
.ls72{letter-spacing:6.506667pt;}
.ls73{letter-spacing:6.613333pt;}
.ls30{letter-spacing:6.666667pt;}
.lsa4{letter-spacing:6.784000pt;}
.ls98{letter-spacing:6.869333pt;}
.ls84{letter-spacing:6.912000pt;}
.ls62{letter-spacing:45.008000pt;}
.ls60{letter-spacing:47.146667pt;}
.ls2{letter-spacing:52.918112pt;}
.ls1{letter-spacing:52.918645pt;}
.ls0{letter-spacing:52.922133pt;}
.ls61{letter-spacing:90.356267pt;}
.ls5f{letter-spacing:92.506667pt;}
.ls65{letter-spacing:274.816000pt;}
.ls67{letter-spacing:296.149333pt;}
.ls66{letter-spacing:1404.202667pt;}
.ls68{letter-spacing:1721.685333pt;}
.ws95{word-spacing:-317.482667pt;}
.ws97{word-spacing:-306.816000pt;}
.ws7b{word-spacing:-99.173333pt;}
.ws8a{word-spacing:-98.089600pt;}
.wsb4{word-spacing:-16.426667pt;}
.ws12{word-spacing:-16.053333pt;}
.wsa2{word-spacing:-15.840000pt;}
.ws48{word-spacing:-15.680000pt;}
.wsb5{word-spacing:-15.520000pt;}
.wsa1{word-spacing:-15.466667pt;}
.ws11{word-spacing:-15.360000pt;}
.wsb6{word-spacing:-15.306667pt;}
.ws79{word-spacing:-15.093333pt;}
.wsbb{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws99{word-spacing:-14.720000pt;}
.wsb8{word-spacing:-14.666667pt;}
.ws5d{word-spacing:-14.400000pt;}
.wsb7{word-spacing:-14.346667pt;}
.ws5e{word-spacing:-14.293333pt;}
.ws49{word-spacing:-14.186667pt;}
.ws60{word-spacing:-14.133333pt;}
.wsb9{word-spacing:-14.080000pt;}
.wsa5{word-spacing:-13.973333pt;}
.wsf3{word-spacing:-13.952000pt;}
.wsa6{word-spacing:-13.920000pt;}
.wsba{word-spacing:-13.866667pt;}
.ws5f{word-spacing:-13.813333pt;}
.wsf{word-spacing:-13.600000pt;}
.wsa4{word-spacing:-13.546667pt;}
.wsa3{word-spacing:-13.493333pt;}
.ws78{word-spacing:-13.440000pt;}
.ws47{word-spacing:-13.386667pt;}
.ws10{word-spacing:-13.333333pt;}
.wsc7{word-spacing:-12.757333pt;}
.wsf4{word-spacing:-12.330667pt;}
.wscb{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.861333pt;}
.wsc4{word-spacing:-11.818667pt;}
.wsc5{word-spacing:-11.776000pt;}
.wsc6{word-spacing:-11.648000pt;}
.wscd{word-spacing:-11.392000pt;}
.wsc9{word-spacing:-11.349333pt;}
.wscc{word-spacing:-11.178667pt;}
.wsc8{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.wsca{word-spacing:-10.709333pt;}
.ws44{word-spacing:-10.666667pt;}
.wsc3{word-spacing:-10.624000pt;}
.wsf2{word-spacing:-10.496000pt;}
.ws1{word-spacing:-9.076144pt;}
.ws9a{word-spacing:-5.813333pt;}
.ws51{word-spacing:-4.960000pt;}
.wsb3{word-spacing:-4.586667pt;}
.ws1a{word-spacing:-4.320000pt;}
.wsbc{word-spacing:-3.946667pt;}
.ws37{word-spacing:-3.893333pt;}
.wsf1{word-spacing:-3.882667pt;}
.ws6a{word-spacing:-3.840000pt;}
.ws54{word-spacing:-3.786667pt;}
.wsac{word-spacing:-3.733333pt;}
.ws68{word-spacing:-3.680000pt;}
.ws5b{word-spacing:-3.626667pt;}
.ws2d{word-spacing:-3.573333pt;}
.ws56{word-spacing:-3.466667pt;}
.wsb1{word-spacing:-3.413333pt;}
.wse0{word-spacing:-3.370667pt;}
.ws4d{word-spacing:-3.360000pt;}
.wseb{word-spacing:-3.328000pt;}
.ws34{word-spacing:-3.306667pt;}
.wse1{word-spacing:-3.285333pt;}
.ws9d{word-spacing:-3.200000pt;}
.ws52{word-spacing:-3.093333pt;}
.ws4a{word-spacing:-2.986667pt;}
.wsf6{word-spacing:-2.944000pt;}
.ws62{word-spacing:-2.933333pt;}
.ws4e{word-spacing:-2.880000pt;}
.wsfe{word-spacing:-2.858667pt;}
.ws94{word-spacing:-2.826667pt;}
.ws69{word-spacing:-2.773333pt;}
.wsdb{word-spacing:-2.730667pt;}
.ws3a{word-spacing:-2.720000pt;}
.wsd1{word-spacing:-2.688000pt;}
.ws4f{word-spacing:-2.666667pt;}
.wsb2{word-spacing:-2.613333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws1f{word-spacing:-2.560000pt;}
.ws17{word-spacing:-2.506667pt;}
.wsff{word-spacing:-2.474667pt;}
.ws3b{word-spacing:-2.453333pt;}
.ws36{word-spacing:-2.400000pt;}
.wsfc{word-spacing:-2.389333pt;}
.ws26{word-spacing:-2.346667pt;}
.wsdc{word-spacing:-2.304000pt;}
.ws63{word-spacing:-2.293333pt;}
.ws38{word-spacing:-2.240000pt;}
.wse4{word-spacing:-2.218667pt;}
.ws55{word-spacing:-2.186667pt;}
.wsee{word-spacing:-2.176000pt;}
.ws31{word-spacing:-2.133333pt;}
.wsda{word-spacing:-2.090667pt;}
.ws45{word-spacing:-2.080000pt;}
.ws33{word-spacing:-2.026667pt;}
.wsde{word-spacing:-2.005333pt;}
.ws39{word-spacing:-1.973333pt;}
.ws16{word-spacing:-1.920000pt;}
.wse9{word-spacing:-1.877333pt;}
.ws4b{word-spacing:-1.866667pt;}
.wsfb{word-spacing:-1.834667pt;}
.ws18{word-spacing:-1.813333pt;}
.ws53{word-spacing:-1.760000pt;}
.wsf5{word-spacing:-1.749333pt;}
.ws4c{word-spacing:-1.706667pt;}
.wsd2{word-spacing:-1.664000pt;}
.wse{word-spacing:-1.653333pt;}
.wsed{word-spacing:-1.621333pt;}
.ws1d{word-spacing:-1.600000pt;}
.wse8{word-spacing:-1.578667pt;}
.ws50{word-spacing:-1.546667pt;}
.wse3{word-spacing:-1.536000pt;}
.ws64{word-spacing:-1.493333pt;}
.wsd3{word-spacing:-1.450667pt;}
.ws2c{word-spacing:-1.440000pt;}
.ws35{word-spacing:-1.386667pt;}
.ws59{word-spacing:-1.365333pt;}
.ws42{word-spacing:-1.333333pt;}
.wsfa{word-spacing:-1.322667pt;}
.ws67{word-spacing:-1.280000pt;}
.wse6{word-spacing:-1.237333pt;}
.ws21{word-spacing:-1.226667pt;}
.wsd6{word-spacing:-1.194667pt;}
.ws2e{word-spacing:-1.173333pt;}
.wsd0{word-spacing:-1.152000pt;}
.ws1e{word-spacing:-1.120000pt;}
.wsd4{word-spacing:-1.109333pt;}
.ws15{word-spacing:-1.066667pt;}
.wsdd{word-spacing:-1.024000pt;}
.ws41{word-spacing:-1.013333pt;}
.wse2{word-spacing:-0.981333pt;}
.ws2a{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.906667pt;}
.ws100{word-spacing:-0.896000pt;}
.wsc{word-spacing:-0.853333pt;}
.wsf0{word-spacing:-0.810667pt;}
.ws13{word-spacing:-0.800000pt;}
.ws29{word-spacing:-0.746667pt;}
.wsd9{word-spacing:-0.725333pt;}
.ws22{word-spacing:-0.693333pt;}
.wsdf{word-spacing:-0.682667pt;}
.ws14{word-spacing:-0.640000pt;}
.wsfd{word-spacing:-0.597333pt;}
.wsa{word-spacing:-0.586667pt;}
.wsd5{word-spacing:-0.554667pt;}
.ws3e{word-spacing:-0.533333pt;}
.wse7{word-spacing:-0.512000pt;}
.ws30{word-spacing:-0.480000pt;}
.ws77{word-spacing:-0.469333pt;}
.ws32{word-spacing:-0.426667pt;}
.ws1b{word-spacing:-0.373333pt;}
.wsec{word-spacing:-0.341333pt;}
.ws2f{word-spacing:-0.320000pt;}
.wsd7{word-spacing:-0.298667pt;}
.ws19{word-spacing:-0.266667pt;}
.wsef{word-spacing:-0.256000pt;}
.ws24{word-spacing:-0.213333pt;}
.wse5{word-spacing:-0.170667pt;}
.ws40{word-spacing:-0.160000pt;}
.ws0{word-spacing:-0.112533pt;}
.wsd{word-spacing:-0.106667pt;}
.ws28{word-spacing:-0.053333pt;}
.ws5a{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsd8{word-spacing:0.042667pt;}
.ws7{word-spacing:0.053333pt;}
.ws6f{word-spacing:0.085333pt;}
.ws3d{word-spacing:0.106667pt;}
.wsb0{word-spacing:0.160000pt;}
.wsf9{word-spacing:0.170667pt;}
.ws43{word-spacing:0.213333pt;}
.wsbd{word-spacing:0.266667pt;}
.wsea{word-spacing:0.384000pt;}
.wsa8{word-spacing:0.426667pt;}
.ws74{word-spacing:0.512000pt;}
.wsae{word-spacing:0.533333pt;}
.ws71{word-spacing:0.586667pt;}
.wsa0{word-spacing:0.725333pt;}
.ws57{word-spacing:0.853333pt;}
.ws72{word-spacing:0.960000pt;}
.ws75{word-spacing:1.120000pt;}
.ws9b{word-spacing:1.173333pt;}
.ws70{word-spacing:1.226667pt;}
.ws1c{word-spacing:1.386667pt;}
.ws3c{word-spacing:1.493333pt;}
.ws66{word-spacing:1.600000pt;}
.wsaa{word-spacing:1.653333pt;}
.wsa9{word-spacing:1.813333pt;}
.ws6c{word-spacing:2.026667pt;}
.ws9c{word-spacing:2.133333pt;}
.ws6d{word-spacing:2.240000pt;}
.ws5c{word-spacing:2.293333pt;}
.ws61{word-spacing:2.400000pt;}
.ws102{word-spacing:2.506667pt;}
.wsf7{word-spacing:2.517333pt;}
.ws6e{word-spacing:2.560000pt;}
.wsb{word-spacing:2.720000pt;}
.wsf8{word-spacing:2.730667pt;}
.wsc1{word-spacing:2.826667pt;}
.ws6b{word-spacing:3.040000pt;}
.ws73{word-spacing:3.093333pt;}
.ws9e{word-spacing:3.200000pt;}
.wsa7{word-spacing:3.306667pt;}
.ws20{word-spacing:3.413333pt;}
.ws58{word-spacing:3.498667pt;}
.wsbe{word-spacing:3.520000pt;}
.ws76{word-spacing:3.541333pt;}
.wsaf{word-spacing:3.573333pt;}
.ws101{word-spacing:3.626667pt;}
.ws27{word-spacing:3.733333pt;}
.ws3f{word-spacing:3.840000pt;}
.wsc0{word-spacing:3.893333pt;}
.ws9f{word-spacing:4.160000pt;}
.wsce{word-spacing:4.213333pt;}
.ws9{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws103{word-spacing:4.640000pt;}
.wscf{word-spacing:4.853333pt;}
.wsc2{word-spacing:4.906667pt;}
.ws65{word-spacing:5.386667pt;}
.ws46{word-spacing:5.504000pt;}
.ws2b{word-spacing:5.546667pt;}
.ws23{word-spacing:5.760000pt;}
.wsad{word-spacing:6.293333pt;}
.wsbf{word-spacing:6.666667pt;}
.ws81{word-spacing:11.068800pt;}
.wsab{word-spacing:11.253333pt;}
.ws86{word-spacing:11.253867pt;}
.ws88{word-spacing:11.358933pt;}
.ws7e{word-spacing:12.506667pt;}
.ws84{word-spacing:12.986667pt;}
.ws8d{word-spacing:13.022933pt;}
.ws93{word-spacing:13.340267pt;}
.ws8f{word-spacing:13.440533pt;}
.ws92{word-spacing:13.610667pt;}
.ws85{word-spacing:13.973333pt;}
.ws90{word-spacing:21.808000pt;}
.ws91{word-spacing:25.241600pt;}
.ws82{word-spacing:27.146667pt;}
.ws83{word-spacing:30.106667pt;}
.ws8c{word-spacing:67.156267pt;}
.ws8b{word-spacing:70.033067pt;}
.ws7d{word-spacing:72.506667pt;}
.ws7c{word-spacing:74.960000pt;}
.ws80{word-spacing:82.160000pt;}
.ws89{word-spacing:82.622933pt;}
.ws7a{word-spacing:85.840000pt;}
.ws7f{word-spacing:118.320000pt;}
.ws8e{word-spacing:118.845867pt;}
.ws87{word-spacing:119.306667pt;}
.ws96{word-spacing:264.149333pt;}
.ws98{word-spacing:2345.984000pt;}
._f{margin-left:-2576.085333pt;}
._10{margin-left:-2554.922667pt;}
._42{margin-left:-296.149333pt;}
._3e{margin-left:-274.816000pt;}
._13{margin-left:-92.453333pt;}
._28{margin-left:-89.762133pt;}
._29{margin-left:-14.878933pt;}
._14{margin-left:-12.853333pt;}
._2{margin-left:-8.327467pt;}
._5{margin-left:-6.720000pt;}
._c{margin-left:-5.813333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.013333pt;}
._a{width:0.906667pt;}
._b{width:1.973333pt;}
._6{width:3.093333pt;}
._8{width:4.053333pt;}
._7{width:4.960000pt;}
._9{width:5.920000pt;}
._d{width:6.880000pt;}
._e{width:8.266667pt;}
._11{width:9.333333pt;}
._43{width:10.240000pt;}
._1b{width:19.173333pt;}
._1c{width:20.133333pt;}
._2f{width:21.379200pt;}
._3a{width:26.107733pt;}
._35{width:27.090133pt;}
._30{width:34.645333pt;}
._36{width:53.545600pt;}
._2d{width:54.558933pt;}
._37{width:67.249067pt;}
._2e{width:68.981333pt;}
._31{width:71.696000pt;}
._38{width:74.704000pt;}
._21{width:78.373333pt;}
._34{width:84.509867pt;}
._18{width:86.506667pt;}
._39{width:87.943467pt;}
._2a{width:88.894933pt;}
._2c{width:90.658133pt;}
._32{width:99.257600pt;}
._25{width:103.280000pt;}
._26{width:115.093333pt;}
._20{width:116.586667pt;}
._24{width:118.080000pt;}
._17{width:124.986667pt;}
._2b{width:126.579200pt;}
._23{width:129.946667pt;}
._1a{width:132.746667pt;}
._1e{width:134.266667pt;}
._16{width:139.173333pt;}
._33{width:141.179733pt;}
._1f{width:142.133333pt;}
._22{width:147.253333pt;}
._19{width:176.186667pt;}
._1d{width:178.373333pt;}
._15{width:202.000000pt;}
._41{width:285.482667pt;}
._40{width:296.149333pt;}
._3b{width:309.888000pt;}
._3d{width:313.984000pt;}
._27{width:426.910933pt;}
._3c{width:440.074667pt;}
._12{width:441.013333pt;}
._3f{width:769.280000pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:26.666667pt;}
.fsc{font-size:30.933333pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2c{bottom:42.468667pt;}
.y1cc{bottom:71.345333pt;}
.y15c{bottom:74.342533pt;}
.y62{bottom:74.462533pt;}
.yb8{bottom:74.464533pt;}
.y7f{bottom:74.588533pt;}
.y130{bottom:74.595867pt;}
.yef{bottom:74.659333pt;}
.yea{bottom:74.721867pt;}
.y82{bottom:74.753867pt;}
.yd5{bottom:77.381200pt;}
.y21{bottom:77.762933pt;}
.y107{bottom:81.180267pt;}
.y18b{bottom:81.886133pt;}
.y1cb{bottom:84.678667pt;}
.yee{bottom:88.654000pt;}
.y81{bottom:88.748533pt;}
.y15b{bottom:89.982533pt;}
.y61{bottom:90.462533pt;}
.yb7{bottom:90.464533pt;}
.y7e{bottom:90.588533pt;}
.y12f{bottom:90.595867pt;}
.ye9{bottom:90.721867pt;}
.y20{bottom:91.092933pt;}
.y106{bottom:91.626933pt;}
.yd4{bottom:93.381200pt;}
.y18a{bottom:95.219467pt;}
.y1ca{bottom:98.012000pt;}
.y105{bottom:102.073600pt;}
.y1f{bottom:104.426267pt;}
.y60{bottom:106.462533pt;}
.yb6{bottom:106.464533pt;}
.y7d{bottom:106.588533pt;}
.y12e{bottom:106.595867pt;}
.y189{bottom:108.552800pt;}
.yd3{bottom:109.381200pt;}
.y1c9{bottom:111.345333pt;}
.y104{bottom:112.520267pt;}
.y188{bottom:121.886133pt;}
.y15a{bottom:122.342533pt;}
.ye8{bottom:122.361867pt;}
.y5f{bottom:122.462533pt;}
.yb5{bottom:122.464533pt;}
.y7c{bottom:122.588533pt;}
.y12d{bottom:122.595867pt;}
.y103{bottom:122.966933pt;}
.y1c8{bottom:124.678667pt;}
.yd2{bottom:125.381200pt;}
.y102{bottom:133.413600pt;}
.yed{bottom:134.838000pt;}
.y127{bottom:135.147200pt;}
.y187{bottom:135.219467pt;}
.y159{bottom:137.982533pt;}
.y1c7{bottom:138.012000pt;}
.ye7{bottom:138.361867pt;}
.y5e{bottom:138.462533pt;}
.yb4{bottom:138.464533pt;}
.y7b{bottom:138.588533pt;}
.y12c{bottom:138.595867pt;}
.yd1{bottom:141.381200pt;}
.y101{bottom:143.860267pt;}
.y186{bottom:148.552800pt;}
.yec{bottom:148.832667pt;}
.y126{bottom:149.589867pt;}
.y1c6{bottom:151.345333pt;}
.y100{bottom:154.304133pt;}
.ye6{bottom:154.361867pt;}
.y5d{bottom:154.462533pt;}
.yb3{bottom:154.464533pt;}
.y7a{bottom:154.588533pt;}
.y12b{bottom:154.595867pt;}
.yd0{bottom:157.381200pt;}
.y185{bottom:161.886133pt;}
.y27{bottom:162.496000pt;}
.yeb{bottom:162.827333pt;}
.y125{bottom:164.032533pt;}
.y1c5{bottom:164.678667pt;}
.yff{bottom:164.750800pt;}
.y158{bottom:170.342533pt;}
.y5c{bottom:170.462533pt;}
.yb2{bottom:170.464533pt;}
.y79{bottom:170.595867pt;}
.ycf{bottom:173.381200pt;}
.yfe{bottom:175.197467pt;}
.y184{bottom:175.219467pt;}
.y1c4{bottom:178.012000pt;}
.y124{bottom:178.475200pt;}
.y26{bottom:178.496000pt;}
.yfd{bottom:185.644133pt;}
.y157{bottom:186.342533pt;}
.y5b{bottom:186.462533pt;}
.yb1{bottom:186.464533pt;}
.ye5{bottom:186.588533pt;}
.y78{bottom:186.595867pt;}
.y183{bottom:188.552800pt;}
.yce{bottom:189.381200pt;}
.y1c3{bottom:191.345333pt;}
.y25{bottom:194.496000pt;}
.yfc{bottom:196.090800pt;}
.y182{bottom:201.886133pt;}
.y156{bottom:202.342533pt;}
.y5a{bottom:202.462533pt;}
.yb0{bottom:202.464533pt;}
.ye4{bottom:202.588533pt;}
.y77{bottom:202.595867pt;}
.y123{bottom:203.733867pt;}
.y1c2{bottom:204.678667pt;}
.ycd{bottom:205.381200pt;}
.yfb{bottom:206.537467pt;}
.y24{bottom:210.496000pt;}
.y181{bottom:215.219467pt;}
.yfa{bottom:216.979867pt;}
.y1c1{bottom:218.012000pt;}
.y155{bottom:218.342533pt;}
.y59{bottom:218.462533pt;}
.yaf{bottom:218.464533pt;}
.ye3{bottom:218.588533pt;}
.y76{bottom:218.595867pt;}
.y23{bottom:226.496000pt;}
.yf9{bottom:227.426533pt;}
.y180{bottom:228.552800pt;}
.y122{bottom:230.037867pt;}
.y1c0{bottom:231.345333pt;}
.y154{bottom:233.982533pt;}
.y58{bottom:234.462533pt;}
.yae{bottom:234.464533pt;}
.ye2{bottom:234.588533pt;}
.y75{bottom:234.595867pt;}
.ycc{bottom:236.930667pt;}
.yf8{bottom:237.873200pt;}
.y17f{bottom:241.886133pt;}
.y29{bottom:242.496000pt;}
.y1bf{bottom:244.678667pt;}
.yf7{bottom:248.319867pt;}
.y12a{bottom:250.235867pt;}
.ycb{bottom:250.264000pt;}
.y57{bottom:250.462533pt;}
.yad{bottom:250.464533pt;}
.ye1{bottom:250.588533pt;}
.y74{bottom:250.595867pt;}
.y17e{bottom:255.219467pt;}
.y1be{bottom:258.012000pt;}
.y22{bottom:258.136000pt;}
.y28{bottom:258.496000pt;}
.yf6{bottom:258.766533pt;}
.y121{bottom:258.830000pt;}
.yca{bottom:263.597333pt;}
.y153{bottom:266.342533pt;}
.y56{bottom:266.462533pt;}
.yac{bottom:266.464533pt;}
.ye0{bottom:266.588533pt;}
.y73{bottom:266.595867pt;}
.y17d{bottom:268.552800pt;}
.yf5{bottom:269.213200pt;}
.y1bd{bottom:271.345333pt;}
.y120{bottom:276.163333pt;}
.yc9{bottom:276.930667pt;}
.y17c{bottom:281.886133pt;}
.y152{bottom:282.342533pt;}
.y55{bottom:282.462533pt;}
.yab{bottom:282.464533pt;}
.ydf{bottom:282.588533pt;}
.y72{bottom:282.595867pt;}
.y1bc{bottom:284.678667pt;}
.yc8{bottom:290.264000pt;}
.yf4{bottom:290.999867pt;}
.y17b{bottom:295.219467pt;}
.y1bb{bottom:298.012000pt;}
.y151{bottom:298.342533pt;}
.y54{bottom:298.462533pt;}
.yaa{bottom:298.464533pt;}
.yde{bottom:298.588533pt;}
.y71{bottom:298.595867pt;}
.y17a{bottom:308.552800pt;}
.y1ba{bottom:311.345333pt;}
.y150{bottom:314.342533pt;}
.y53{bottom:314.462533pt;}
.ya9{bottom:314.464533pt;}
.ydd{bottom:314.588533pt;}
.y70{bottom:314.595867pt;}
.yf3{bottom:316.462533pt;}
.y11f{bottom:318.911333pt;}
.yc7{bottom:319.689733pt;}
.y179{bottom:321.886133pt;}
.y1b9{bottom:324.678667pt;}
.y1e{bottom:326.323733pt;}
.y14f{bottom:330.342533pt;}
.y52{bottom:330.462533pt;}
.ya8{bottom:330.464533pt;}
.ydc{bottom:330.588533pt;}
.y6f{bottom:330.595867pt;}
.y11e{bottom:332.906000pt;}
.yf2{bottom:333.795867pt;}
.y178{bottom:335.219467pt;}
.yc6{bottom:335.689733pt;}
.y1b8{bottom:338.012000pt;}
.y134{bottom:346.235867pt;}
.y14e{bottom:346.342533pt;}
.y51{bottom:346.462533pt;}
.ya7{bottom:346.464533pt;}
.ydb{bottom:346.588533pt;}
.y6e{bottom:346.595867pt;}
.y177{bottom:348.552800pt;}
.y1d{bottom:350.630400pt;}
.y1b7{bottom:351.345333pt;}
.yc5{bottom:351.689733pt;}
.y176{bottom:361.886133pt;}
.y14d{bottom:362.342533pt;}
.y50{bottom:362.462533pt;}
.ya6{bottom:362.464533pt;}
.yda{bottom:362.588533pt;}
.y6d{bottom:362.595867pt;}
.y1b6{bottom:364.678667pt;}
.y1c{bottom:366.630400pt;}
.yc4{bottom:367.689733pt;}
.y175{bottom:375.219467pt;}
.y14c{bottom:377.982533pt;}
.y1b5{bottom:378.012000pt;}
.y4f{bottom:378.462533pt;}
.ya5{bottom:378.464533pt;}
.y6c{bottom:378.595867pt;}
.y11d{bottom:378.630267pt;}
.y1b{bottom:382.630400pt;}
.y174{bottom:388.552800pt;}
.y11c{bottom:390.145200pt;}
.y1b4{bottom:391.345333pt;}
.y4e{bottom:394.462533pt;}
.ya4{bottom:394.464533pt;}
.y6b{bottom:394.595867pt;}
.y1a{bottom:398.630400pt;}
.yc3{bottom:399.471333pt;}
.y11b{bottom:401.660133pt;}
.y173{bottom:401.886133pt;}
.y1b3{bottom:404.678667pt;}
.y14b{bottom:410.342533pt;}
.y4d{bottom:410.462533pt;}
.ya3{bottom:410.464533pt;}
.y6a{bottom:410.595867pt;}
.yc2{bottom:412.804667pt;}
.y11a{bottom:413.175067pt;}
.y19{bottom:414.630400pt;}
.y172{bottom:415.219467pt;}
.y1b2{bottom:418.012000pt;}
.y119{bottom:424.690000pt;}
.y14a{bottom:426.342533pt;}
.y4c{bottom:426.462533pt;}
.ya2{bottom:426.464533pt;}
.y69{bottom:426.595867pt;}
.y171{bottom:428.552800pt;}
.y18{bottom:430.630400pt;}
.y1b1{bottom:431.345333pt;}
.y118{bottom:436.204933pt;}
.y170{bottom:441.886133pt;}
.yc1{bottom:442.224533pt;}
.y149{bottom:442.342533pt;}
.y4b{bottom:442.462533pt;}
.ya1{bottom:442.464533pt;}
.y68{bottom:442.595867pt;}
.y1b0{bottom:444.678667pt;}
.y17{bottom:446.630400pt;}
.y117{bottom:447.719867pt;}
.y16f{bottom:455.219467pt;}
.y1af{bottom:458.012000pt;}
.yc0{bottom:458.224533pt;}
.y135{bottom:458.235867pt;}
.y148{bottom:458.342533pt;}
.y4a{bottom:458.462533pt;}
.ya0{bottom:458.464533pt;}
.y67{bottom:458.595867pt;}
.y116{bottom:459.222267pt;}
.y16{bottom:462.630400pt;}
.y16e{bottom:468.552800pt;}
.y115{bottom:470.737200pt;}
.y1ae{bottom:471.345333pt;}
.ybf{bottom:474.224533pt;}
.y147{bottom:474.342533pt;}
.y49{bottom:474.462533pt;}
.y9f{bottom:474.464533pt;}
.y66{bottom:474.595867pt;}
.y15{bottom:478.630400pt;}
.y16d{bottom:481.886133pt;}
.y114{bottom:482.252133pt;}
.y1ad{bottom:484.678667pt;}
.ybe{bottom:490.224533pt;}
.y146{bottom:490.342533pt;}
.y48{bottom:490.462533pt;}
.y9e{bottom:490.464533pt;}
.yd9{bottom:490.595867pt;}
.y113{bottom:493.767067pt;}
.y14{bottom:494.630400pt;}
.y16c{bottom:495.219467pt;}
.y1ac{bottom:498.012000pt;}
.y112{bottom:505.282000pt;}
.y65{bottom:506.235867pt;}
.y145{bottom:506.342533pt;}
.y47{bottom:506.462533pt;}
.y9d{bottom:506.464533pt;}
.yd8{bottom:506.595867pt;}
.y16b{bottom:508.552800pt;}
.y13{bottom:510.630400pt;}
.y1ab{bottom:511.345333pt;}
.y111{bottom:516.796933pt;}
.y16a{bottom:521.886133pt;}
.ybd{bottom:522.104533pt;}
.y144{bottom:522.342533pt;}
.y46{bottom:522.462533pt;}
.y9c{bottom:522.464533pt;}
.y1aa{bottom:524.678667pt;}
.y12{bottom:526.630400pt;}
.y110{bottom:528.300933pt;}
.y169{bottom:535.219467pt;}
.y1a9{bottom:538.012000pt;}
.ybc{bottom:538.104533pt;}
.yd7{bottom:538.235867pt;}
.y143{bottom:538.342533pt;}
.y45{bottom:538.462533pt;}
.y9b{bottom:538.464533pt;}
.y10f{bottom:539.815867pt;}
.y11{bottom:542.630400pt;}
.y168{bottom:548.552800pt;}
.y10e{bottom:551.330800pt;}
.y1a8{bottom:551.345333pt;}
.yd6{bottom:554.235867pt;}
.y142{bottom:554.342533pt;}
.y44{bottom:554.462533pt;}
.y9a{bottom:554.464533pt;}
.y10{bottom:558.630400pt;}
.y167{bottom:561.886133pt;}
.y10d{bottom:562.845733pt;}
.y1a7{bottom:564.678667pt;}
.ybb{bottom:569.984533pt;}
.y141{bottom:570.342533pt;}
.y43{bottom:570.462533pt;}
.y99{bottom:570.464533pt;}
.y10c{bottom:574.360667pt;}
.yf{bottom:574.630400pt;}
.y166{bottom:575.219467pt;}
.y1a6{bottom:578.012000pt;}
.y10b{bottom:585.875600pt;}
.y140{bottom:586.342533pt;}
.y42{bottom:586.462533pt;}
.y98{bottom:586.464533pt;}
.y165{bottom:588.552800pt;}
.ye{bottom:590.630400pt;}
.y1a5{bottom:591.345333pt;}
.y164{bottom:601.886133pt;}
.y41{bottom:602.462533pt;}
.y97{bottom:602.464533pt;}
.y1a4{bottom:604.678667pt;}
.y10a{bottom:608.727600pt;}
.y163{bottom:615.219467pt;}
.y13f{bottom:617.982533pt;}
.y1a3{bottom:618.012000pt;}
.y40{bottom:618.462533pt;}
.y96{bottom:618.464533pt;}
.y162{bottom:628.552800pt;}
.yd{bottom:630.770933pt;}
.y1a2{bottom:631.345333pt;}
.y3f{bottom:634.462533pt;}
.y95{bottom:634.464533pt;}
.y109{bottom:635.082000pt;}
.yc{bottom:641.838267pt;}
.y161{bottom:641.886133pt;}
.y1a1{bottom:644.678667pt;}
.y3e{bottom:650.462533pt;}
.y94{bottom:650.464533pt;}
.y108{bottom:652.415333pt;}
.y160{bottom:655.219467pt;}
.y1a0{bottom:658.012000pt;}
.y3d{bottom:666.462533pt;}
.y93{bottom:666.464533pt;}
.y15f{bottom:668.552800pt;}
.yb{bottom:670.029867pt;}
.y19f{bottom:671.345333pt;}
.ya{bottom:682.029867pt;}
.y3c{bottom:682.462533pt;}
.y92{bottom:682.464533pt;}
.y19e{bottom:684.678667pt;}
.y15e{bottom:697.982533pt;}
.y1df{bottom:698.012000pt;}
.y19d{bottom:698.014133pt;}
.y3b{bottom:698.462533pt;}
.y91{bottom:698.464533pt;}
.y9{bottom:698.852400pt;}
.y1de{bottom:711.345333pt;}
.y19c{bottom:711.347467pt;}
.y3a{bottom:714.462533pt;}
.y90{bottom:714.464533pt;}
.y8{bottom:724.382933pt;}
.y1dd{bottom:724.678667pt;}
.y19b{bottom:724.680800pt;}
.y64{bottom:730.102533pt;}
.y39{bottom:730.462533pt;}
.y8f{bottom:730.464533pt;}
.y1dc{bottom:738.012000pt;}
.y19a{bottom:738.014133pt;}
.y38{bottom:746.462533pt;}
.y8e{bottom:746.464533pt;}
.y13e{bottom:746.475867pt;}
.y1db{bottom:751.345333pt;}
.y199{bottom:751.347467pt;}
.y63{bottom:761.982533pt;}
.y37{bottom:762.462533pt;}
.y8d{bottom:762.464533pt;}
.y13d{bottom:762.475867pt;}
.y1da{bottom:764.678667pt;}
.y198{bottom:764.680800pt;}
.y7{bottom:765.406933pt;}
.y1d9{bottom:778.012000pt;}
.y197{bottom:778.014133pt;}
.y36{bottom:778.462533pt;}
.y8c{bottom:778.464533pt;}
.y13c{bottom:778.475867pt;}
.y1d8{bottom:791.345333pt;}
.y196{bottom:791.347467pt;}
.yf1{bottom:794.102533pt;}
.y35{bottom:794.462533pt;}
.y8b{bottom:794.464533pt;}
.y13b{bottom:794.475867pt;}
.y6{bottom:797.816533pt;}
.y1d7{bottom:804.678667pt;}
.y195{bottom:804.680800pt;}
.y34{bottom:810.462533pt;}
.y8a{bottom:810.464533pt;}
.y13a{bottom:810.475867pt;}
.y1d6{bottom:818.012000pt;}
.y194{bottom:818.014133pt;}
.yf0{bottom:825.982533pt;}
.y33{bottom:826.462533pt;}
.y89{bottom:826.464533pt;}
.y139{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y1d5{bottom:831.345333pt;}
.y193{bottom:831.347467pt;}
.y15d{bottom:842.102533pt;}
.y32{bottom:842.462533pt;}
.y88{bottom:842.464533pt;}
.y138{bottom:842.475867pt;}
.y1d4{bottom:844.678667pt;}
.y192{bottom:844.680800pt;}
.y1d3{bottom:858.012000pt;}
.y191{bottom:858.014133pt;}
.y31{bottom:858.462533pt;}
.y87{bottom:858.464533pt;}
.y137{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y1d2{bottom:871.345333pt;}
.y190{bottom:871.347467pt;}
.y30{bottom:874.462533pt;}
.y86{bottom:874.464533pt;}
.y136{bottom:874.475867pt;}
.y1d1{bottom:884.678667pt;}
.y18f{bottom:884.680800pt;}
.y2f{bottom:890.462533pt;}
.y85{bottom:890.464533pt;}
.y133{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1d0{bottom:898.012000pt;}
.y18e{bottom:898.014133pt;}
.y2e{bottom:906.462533pt;}
.yba{bottom:906.464533pt;}
.y132{bottom:906.475867pt;}
.y1cf{bottom:911.345333pt;}
.y18d{bottom:911.347467pt;}
.y84{bottom:922.104533pt;}
.y2d{bottom:922.462533pt;}
.yb9{bottom:922.464533pt;}
.y131{bottom:922.475867pt;}
.y1ce{bottom:924.678667pt;}
.y18c{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y80{bottom:1006.594400pt;}
.y129{bottom:1006.595333pt;}
.y1cd{bottom:1006.598667pt;}
.y83{bottom:1006.604533pt;}
.y128{bottom:1006.613867pt;}
.y2b{bottom:1009.860000pt;}
.y2a{bottom:1022.660000pt;}
.h6{height:16.761250pt;}
.h15{height:22.148438pt;}
.h17{height:22.161771pt;}
.h16{height:22.165504pt;}
.h8{height:25.255208pt;}
.h18{height:25.692187pt;}
.h19{height:25.742321pt;}
.h1a{height:25.750321pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h14{height:29.625000pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h1b{height:33.450667pt;}
.h1d{height:35.428967pt;}
.h13{height:35.437500pt;}
.he{height:37.031250pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.hc{height:38.859942pt;}
.h9{height:38.880208pt;}
.h12{height:44.267542pt;}
.hf{height:44.296875pt;}
.h1c{height:45.736875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x1d{left:69.979333pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1f{left:88.818933pt;}
.x25{left:90.708667pt;}
.x4{left:94.488133pt;}
.xb{left:98.267733pt;}
.x24{left:109.606400pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.x1c{left:176.778133pt;}
.x5{left:189.223467pt;}
.x23{left:191.595867pt;}
.x20{left:283.794933pt;}
.x9{left:404.481333pt;}
.xc{left:406.347733pt;}
.x14{left:409.458133pt;}
.x19{left:410.914667pt;}
.x17{left:416.848000pt;}
.x11{left:425.195867pt;}
.x7{left:427.090133pt;}
.x1a{left:428.976533pt;}
.xd{left:436.574400pt;}
.x16{left:448.364800pt;}
.x1b{left:455.475867pt;}
.xe{left:466.947733pt;}
.x15{left:492.084800pt;}
.x18{left:501.701333pt;}
.x22{left:507.272533pt;}
.x13{left:525.924800pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1e{left:641.526800pt;}
.xf{left:647.459200pt;}
.x21{left:661.224267pt;}
.x12{left:666.353200pt;}
}




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