
    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_26c21630afbb6fbb94dfc94f.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_fdffac429ca88a1f13ba1156.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_d2417caf67c5b4680f9975ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_1a0a5ad8a3150d4d898daf6d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_23263668224d7f398e5d01ea.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f36a590820e5369c18df202c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912109;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_0207ea8db6ebdb1ebf451282.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_02c29c3a805de9f4f8c12549.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a4d30c0dca713b3c466bebd8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3c7a8a6de9de09bdc6f36235.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925293;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_5b990b1e361eadce126c9db5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5adf5b95eb82a48c8c26f6db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.913574;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:-18.811800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls48{letter-spacing:-7.440000px;}
.ls46{letter-spacing:-7.260000px;}
.ls49{letter-spacing:-6.420000px;}
.ls47{letter-spacing:-6.120000px;}
.ls4a{letter-spacing:-5.580000px;}
.ls38{letter-spacing:-4.416000px;}
.ls13{letter-spacing:-0.780000px;}
.ls33{letter-spacing:-0.600000px;}
.ls32{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.300000px;}
.ls3f{letter-spacing:-0.288000px;}
.ls45{letter-spacing:-0.240000px;}
.ls58{letter-spacing:-0.192000px;}
.ls2f{letter-spacing:-0.180000px;}
.ls59{letter-spacing:-0.144000px;}
.ls61{letter-spacing:-0.120000px;}
.ls55{letter-spacing:-0.106908px;}
.ls31{letter-spacing:-0.060000px;}
.ls12{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003228px;}
.ls0{letter-spacing:0.004140px;}
.ls54{letter-spacing:0.045720px;}
.ls69{letter-spacing:0.048000px;}
.ls42{letter-spacing:0.060000px;}
.ls4d{letter-spacing:0.060808px;}
.ls53{letter-spacing:0.091440px;}
.ls7b{letter-spacing:0.096000px;}
.ls26{letter-spacing:0.120000px;}
.ls56{letter-spacing:0.121615px;}
.ls57{letter-spacing:0.137160px;}
.ls6b{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.192000px;}
.ls29{letter-spacing:0.240000px;}
.ls68{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.300000px;}
.ls6f{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.ls77{letter-spacing:0.384000px;}
.ls1b{letter-spacing:0.420000px;}
.ls7e{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.540000px;}
.ls67{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.600000px;}
.ls74{letter-spacing:0.624000px;}
.ls22{letter-spacing:0.660000px;}
.ls64{letter-spacing:0.672000px;}
.ls17{letter-spacing:0.720000px;}
.ls73{letter-spacing:0.768000px;}
.ls11{letter-spacing:0.780000px;}
.ls6d{letter-spacing:0.816000px;}
.ls2b{letter-spacing:0.840000px;}
.ls62{letter-spacing:0.864000px;}
.ls3{letter-spacing:0.900000px;}
.ls78{letter-spacing:0.912000px;}
.ls1e{letter-spacing:0.960000px;}
.ls25{letter-spacing:1.020000px;}
.ls63{letter-spacing:1.056000px;}
.ls2c{letter-spacing:1.080000px;}
.ls65{letter-spacing:1.104000px;}
.lsb{letter-spacing:1.140000px;}
.ls3b{letter-spacing:1.200000px;}
.ls6c{letter-spacing:1.248000px;}
.ls21{letter-spacing:1.260000px;}
.ls84{letter-spacing:1.296000px;}
.lse{letter-spacing:1.320000px;}
.ls75{letter-spacing:1.344000px;}
.ls1d{letter-spacing:1.380000px;}
.ls76{letter-spacing:1.392000px;}
.lsc{letter-spacing:1.440000px;}
.ls71{letter-spacing:1.488000px;}
.ls1f{letter-spacing:1.500000px;}
.ls4{letter-spacing:1.560000px;}
.ls7{letter-spacing:1.620000px;}
.ls79{letter-spacing:1.632000px;}
.ls15{letter-spacing:1.680000px;}
.ls35{letter-spacing:1.740000px;}
.ls7a{letter-spacing:1.776000px;}
.ls6{letter-spacing:1.800000px;}
.ls6a{letter-spacing:1.824000px;}
.ls2e{letter-spacing:1.860000px;}
.ls7f{letter-spacing:1.872000px;}
.ls30{letter-spacing:1.920000px;}
.ls9{letter-spacing:1.980000px;}
.ls83{letter-spacing:2.016000px;}
.ls60{letter-spacing:2.040000px;}
.ls80{letter-spacing:2.064000px;}
.ls14{letter-spacing:2.100000px;}
.ls81{letter-spacing:2.112000px;}
.ls5{letter-spacing:2.160000px;}
.ls23{letter-spacing:2.220000px;}
.ls3d{letter-spacing:2.280000px;}
.lsd{letter-spacing:2.340000px;}
.ls43{letter-spacing:2.400000px;}
.ls8{letter-spacing:2.460000px;}
.ls66{letter-spacing:2.496000px;}
.ls5b{letter-spacing:2.520000px;}
.ls4c{letter-spacing:2.580000px;}
.ls4b{letter-spacing:2.640000px;}
.lsa{letter-spacing:2.700000px;}
.ls6e{letter-spacing:2.736000px;}
.ls44{letter-spacing:2.760000px;}
.ls82{letter-spacing:2.784000px;}
.ls24{letter-spacing:2.820000px;}
.ls72{letter-spacing:2.832000px;}
.ls27{letter-spacing:2.880000px;}
.ls85{letter-spacing:2.928000px;}
.ls3c{letter-spacing:2.940000px;}
.ls86{letter-spacing:2.976000px;}
.ls7d{letter-spacing:3.072000px;}
.ls88{letter-spacing:3.120000px;}
.ls20{letter-spacing:3.180000px;}
.ls2a{letter-spacing:3.300000px;}
.ls70{letter-spacing:3.312000px;}
.ls40{letter-spacing:3.360000px;}
.ls10{letter-spacing:3.420000px;}
.ls16{letter-spacing:3.540000px;}
.ls1c{letter-spacing:3.660000px;}
.ls7c{letter-spacing:3.744000px;}
.ls41{letter-spacing:3.780000px;}
.ls5f{letter-spacing:3.900000px;}
.ls5a{letter-spacing:3.960000px;}
.ls87{letter-spacing:3.984000px;}
.ls28{letter-spacing:4.080000px;}
.ls5d{letter-spacing:4.200000px;}
.ls39{letter-spacing:4.560000px;}
.lsf{letter-spacing:4.740000px;}
.ls5e{letter-spacing:5.760000px;}
.ls5c{letter-spacing:6.600000px;}
.ls34{letter-spacing:7.200000px;}
.ls3a{letter-spacing:9.540000px;}
.ls50{letter-spacing:12.539881px;}
.ls4e{letter-spacing:12.543282px;}
.ls51{letter-spacing:12.560084px;}
.ls52{letter-spacing:12.561398px;}
.ls4f{letter-spacing:12.656696px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws96{word-spacing:-22.440000px;}
.ws8e{word-spacing:-21.600000px;}
.ws32{word-spacing:-19.560000px;}
.ws97{word-spacing:-18.900000px;}
.ws60{word-spacing:-18.540000px;}
.ws44{word-spacing:-17.820000px;}
.ws40{word-spacing:-17.700000px;}
.ws5d{word-spacing:-17.640000px;}
.ws5f{word-spacing:-17.580000px;}
.ws8d{word-spacing:-17.520000px;}
.ws43{word-spacing:-17.460000px;}
.ws45{word-spacing:-17.280000px;}
.ws61{word-spacing:-17.100000px;}
.ws93{word-spacing:-16.920000px;}
.ws92{word-spacing:-16.860000px;}
.ws41{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.680000px;}
.ws12{word-spacing:-16.560000px;}
.ws8f{word-spacing:-16.500000px;}
.ws91{word-spacing:-16.440000px;}
.ws5{word-spacing:-16.140000px;}
.ws14{word-spacing:-16.080000px;}
.wsd1{word-spacing:-15.984000px;}
.ws5e{word-spacing:-15.900000px;}
.ws8c{word-spacing:-15.840000px;}
.ws42{word-spacing:-15.540000px;}
.ws90{word-spacing:-15.480000px;}
.ws4{word-spacing:-15.360000px;}
.ws46{word-spacing:-15.300000px;}
.ws94{word-spacing:-15.180000px;}
.ws13{word-spacing:-15.000000px;}
.wsb0{word-spacing:-14.928000px;}
.wsae{word-spacing:-14.784000px;}
.ws95{word-spacing:-14.700000px;}
.wsb2{word-spacing:-13.872000px;}
.wsab{word-spacing:-13.776000px;}
.wsa9{word-spacing:-13.632000px;}
.ws25{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.344000px;}
.wsb1{word-spacing:-13.104000px;}
.wsa6{word-spacing:-13.056000px;}
.wsa8{word-spacing:-12.960000px;}
.wsd2{word-spacing:-12.912000px;}
.wsd3{word-spacing:-12.864000px;}
.wsd0{word-spacing:-12.816000px;}
.wsaf{word-spacing:-12.672000px;}
.wsa7{word-spacing:-12.624000px;}
.ws6{word-spacing:-12.510000px;}
.wsac{word-spacing:-12.432000px;}
.wsaa{word-spacing:-12.336000px;}
.ws62{word-spacing:-12.240000px;}
.wsad{word-spacing:-12.048000px;}
.ws3e{word-spacing:-12.000000px;}
.ws2{word-spacing:-10.210662px;}
.ws9b{word-spacing:-6.600000px;}
.wsd6{word-spacing:-3.984000px;}
.ws11{word-spacing:-3.420000px;}
.ws9{word-spacing:-2.886000px;}
.wsbc{word-spacing:-2.832000px;}
.ws7a{word-spacing:-2.700000px;}
.ws7e{word-spacing:-2.580000px;}
.ws9a{word-spacing:-2.520000px;}
.ws48{word-spacing:-2.400000px;}
.ws17{word-spacing:-2.220000px;}
.wsc4{word-spacing:-2.112000px;}
.ws7f{word-spacing:-2.100000px;}
.ws5a{word-spacing:-1.920000px;}
.wscf{word-spacing:-1.872000px;}
.ws7b{word-spacing:-1.800000px;}
.ws31{word-spacing:-1.776000px;}
.ws3a{word-spacing:-1.740000px;}
.wsc1{word-spacing:-1.728000px;}
.ws1d{word-spacing:-1.620000px;}
.ws52{word-spacing:-1.560000px;}
.ws33{word-spacing:-1.440000px;}
.ws51{word-spacing:-1.320000px;}
.ws98{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.140000px;}
.wsa{word-spacing:-1.080000px;}
.wsb4{word-spacing:-1.056000px;}
.wsc0{word-spacing:-0.960000px;}
.wsbf{word-spacing:-0.912000px;}
.ws30{word-spacing:-0.864000px;}
.ws99{word-spacing:-0.840000px;}
.ws4b{word-spacing:-0.720000px;}
.wsbd{word-spacing:-0.624000px;}
.wsb5{word-spacing:-0.576000px;}
.ws7c{word-spacing:-0.540000px;}
.ws9d{word-spacing:-0.480000px;}
.wsc3{word-spacing:-0.432000px;}
.wsc2{word-spacing:-0.384000px;}
.ws7d{word-spacing:-0.360000px;}
.wsb9{word-spacing:-0.336000px;}
.ws50{word-spacing:-0.300000px;}
.ws80{word-spacing:-0.240000px;}
.ws9e{word-spacing:-0.180000px;}
.ws84{word-spacing:-0.137160px;}
.ws83{word-spacing:-0.121615px;}
.ws1c{word-spacing:-0.120000px;}
.ws66{word-spacing:-0.060808px;}
.ws65{word-spacing:-0.053454px;}
.ws63{word-spacing:-0.045720px;}
.ws8{word-spacing:0.000000px;}
.wsb7{word-spacing:0.048000px;}
.ws47{word-spacing:0.060000px;}
.ws82{word-spacing:0.106908px;}
.ws9f{word-spacing:0.120000px;}
.ws8b{word-spacing:0.192000px;}
.wsd5{word-spacing:0.288000px;}
.wsc8{word-spacing:0.432000px;}
.ws81{word-spacing:0.480000px;}
.ws24{word-spacing:0.600000px;}
.ws5c{word-spacing:0.624000px;}
.ws49{word-spacing:0.660000px;}
.ws37{word-spacing:0.720000px;}
.ws2d{word-spacing:0.780000px;}
.wsa2{word-spacing:0.840000px;}
.wscc{word-spacing:0.864000px;}
.ws57{word-spacing:0.900000px;}
.wsb6{word-spacing:0.912000px;}
.ws1b{word-spacing:0.960000px;}
.wsbb{word-spacing:1.008000px;}
.ws23{word-spacing:1.080000px;}
.wscb{word-spacing:1.104000px;}
.wsa5{word-spacing:1.140000px;}
.ws2e{word-spacing:1.200000px;}
.wsc6{word-spacing:1.296000px;}
.wsba{word-spacing:1.344000px;}
.wsca{word-spacing:1.392000px;}
.ws2f{word-spacing:1.440000px;}
.wsd8{word-spacing:1.536000px;}
.wse{word-spacing:1.560000px;}
.ws58{word-spacing:1.740000px;}
.ws89{word-spacing:1.800000px;}
.ws3d{word-spacing:1.824000px;}
.wsa0{word-spacing:1.860000px;}
.wsd7{word-spacing:1.872000px;}
.wsbe{word-spacing:1.920000px;}
.ws5b{word-spacing:1.968000px;}
.ws56{word-spacing:1.980000px;}
.wsb8{word-spacing:2.064000px;}
.ws35{word-spacing:2.160000px;}
.ws9c{word-spacing:2.280000px;}
.ws3f{word-spacing:2.304000px;}
.wsf{word-spacing:2.460000px;}
.wsc7{word-spacing:2.496000px;}
.ws4c{word-spacing:2.520000px;}
.ws22{word-spacing:2.700000px;}
.ws1e{word-spacing:2.760000px;}
.wsce{word-spacing:2.784000px;}
.ws38{word-spacing:2.820000px;}
.ws39{word-spacing:2.880000px;}
.ws15{word-spacing:2.940000px;}
.ws4e{word-spacing:3.060000px;}
.wsc5{word-spacing:3.072000px;}
.ws87{word-spacing:3.120000px;}
.ws8a{word-spacing:3.180000px;}
.ws4f{word-spacing:3.240000px;}
.wsc9{word-spacing:3.264000px;}
.wscd{word-spacing:3.408000px;}
.ws2b{word-spacing:3.480000px;}
.wsd4{word-spacing:3.552000px;}
.ws2a{word-spacing:3.600000px;}
.ws36{word-spacing:3.720000px;}
.ws2c{word-spacing:3.780000px;}
.wsc{word-spacing:3.840000px;}
.ws19{word-spacing:3.900000px;}
.ws3b{word-spacing:3.936000px;}
.wsb3{word-spacing:3.984000px;}
.ws1a{word-spacing:4.020000px;}
.ws3c{word-spacing:4.128000px;}
.ws18{word-spacing:4.140000px;}
.ws16{word-spacing:4.200000px;}
.ws88{word-spacing:4.260000px;}
.ws1f{word-spacing:4.380000px;}
.ws20{word-spacing:4.440000px;}
.ws4d{word-spacing:4.620000px;}
.ws34{word-spacing:4.680000px;}
.ws21{word-spacing:4.860000px;}
.wsb{word-spacing:4.920000px;}
.wsd{word-spacing:4.980000px;}
.wsa3{word-spacing:5.460000px;}
.wsa4{word-spacing:5.520000px;}
.ws59{word-spacing:5.580000px;}
.wsa1{word-spacing:5.820000px;}
.ws53{word-spacing:6.120000px;}
.ws55{word-spacing:6.420000px;}
.ws4a{word-spacing:7.260000px;}
.ws54{word-spacing:7.440000px;}
.ws68{word-spacing:11.973696px;}
.ws6d{word-spacing:12.240966px;}
.ws76{word-spacing:12.294420px;}
.ws6c{word-spacing:12.316963px;}
.ws70{word-spacing:12.347874px;}
.ws6a{word-spacing:12.401328px;}
.ws75{word-spacing:12.446218px;}
.ws71{word-spacing:12.452590px;}
.ws74{word-spacing:12.453190px;}
.ws73{word-spacing:12.454782px;}
.ws72{word-spacing:12.518450px;}
.ws6f{word-spacing:12.526990px;}
.ws69{word-spacing:12.527590px;}
.ws67{word-spacing:12.534738px;}
.ws64{word-spacing:12.536281px;}
.ws79{word-spacing:13.438480px;}
.ws6b{word-spacing:13.742518px;}
.ws6e{word-spacing:13.803325px;}
.ws77{word-spacing:20.574000px;}
.ws78{word-spacing:21.031200px;}
.ws1{word-spacing:49.322028px;}
.ws27{word-spacing:122.256000px;}
.ws28{word-spacing:214.416000px;}
.ws29{word-spacing:215.328000px;}
.ws26{word-spacing:240.912000px;}
.ws86{word-spacing:396.336000px;}
.ws85{word-spacing:932.784000px;}
._c{margin-left:-2898.096000px;}
._39{margin-left:-2874.288000px;}
._3b{margin-left:-8.608200px;}
._2{margin-left:-6.931800px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.609000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.179000px;}
._6{width:1.020000px;}
._a{width:2.520000px;}
._9{width:3.840000px;}
._b{width:5.040000px;}
._7{width:6.060000px;}
._3a{width:7.110000px;}
._8{width:8.340000px;}
._3c{width:26.023538px;}
._1e{width:32.985000px;}
._18{width:50.640000px;}
._4{width:60.188628px;}
._1f{width:61.986000px;}
._10{width:73.824000px;}
._1c{width:79.689000px;}
._12{width:87.984000px;}
._2e{width:97.440000px;}
._34{width:102.297000px;}
._11{width:107.904000px;}
._30{width:123.648000px;}
._36{width:125.424000px;}
._21{width:136.962000px;}
._27{width:138.246000px;}
._20{width:147.543000px;}
._3d{width:150.384000px;}
._13{width:153.894000px;}
._33{width:166.800000px;}
._37{width:174.249000px;}
._38{width:178.752000px;}
._2f{width:188.064000px;}
._25{width:189.408000px;}
._43{width:199.248000px;}
._19{width:208.998000px;}
._22{width:219.705000px;}
._3e{width:231.955800px;}
._15{width:236.640000px;}
._1a{width:238.416000px;}
._26{width:240.054000px;}
._32{width:243.024000px;}
._29{width:244.077000px;}
._1b{width:247.152000px;}
._1d{width:250.704000px;}
._40{width:263.280000px;}
._14{width:274.662000px;}
._49{width:277.497000px;}
._f{width:298.368000px;}
._2a{width:306.768000px;}
._2c{width:318.768000px;}
._16{width:319.926000px;}
._31{width:322.656000px;}
._48{width:332.544000px;}
._3f{width:346.291800px;}
._17{width:358.944000px;}
._42{width:383.635800px;}
._24{width:393.360000px;}
._2d{width:404.352000px;}
._d{width:414.624000px;}
._28{width:426.960000px;}
._45{width:432.766800px;}
._2b{width:444.096000px;}
._46{width:531.139800px;}
._e{width:537.360000px;}
._35{width:566.544000px;}
._47{width:574.723800px;}
._23{width:580.032000px;}
._44{width:622.464000px;}
._41{width:682.464000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.737000px;}
.fs5{font-size:26.235000px;}
.fs4{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsc{font-size:45.720000px;}
.fsa{font-size:48.000000px;}
.fse{font-size:53.454000px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fsd{font-size:60.807600px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fsf{font-size:91.440000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.yfa{bottom:83.023350px;}
.yca{bottom:83.353950px;}
.y151{bottom:83.365350px;}
.y8b{bottom:83.500350px;}
.y62{bottom:83.635350px;}
.yc4{bottom:83.673000px;}
.yd4{bottom:83.770350px;}
.yf3{bottom:83.912100px;}
.yc8{bottom:84.074700px;}
.y2c{bottom:88.026750px;}
.yc1{bottom:91.859850px;}
.y18d{bottom:92.121900px;}
.y12d{bottom:93.662550px;}
.y1cd{bottom:95.263500px;}
.yf9{bottom:98.767350px;}
.yc9{bottom:99.097950px;}
.yc3{bottom:99.417000px;}
.yc7{bottom:99.818700px;}
.y8a{bottom:101.500350px;}
.y61{bottom:101.635350px;}
.yd3{bottom:101.770350px;}
.yf2{bottom:101.912100px;}
.y2b{bottom:103.023000px;}
.y18c{bottom:107.121900px;}
.yc0{bottom:108.107850px;}
.y12c{bottom:109.910550px;}
.y1cc{bottom:110.263500px;}
.yf7{bottom:110.543250px;}
.yf8{bottom:114.511350px;}
.yc6{bottom:115.562700px;}
.y89{bottom:119.500350px;}
.y60{bottom:119.635350px;}
.yd2{bottom:119.770350px;}
.yf1{bottom:119.912100px;}
.y18b{bottom:122.121900px;}
.ybf{bottom:124.355850px;}
.y1cb{bottom:125.263500px;}
.y12b{bottom:126.158550px;}
.yf6{bottom:126.287250px;}
.yc5{bottom:131.306700px;}
.y18a{bottom:137.121900px;}
.y88{bottom:137.500350px;}
.y5f{bottom:137.635350px;}
.yd1{bottom:137.770350px;}
.yf0{bottom:137.912100px;}
.y1ca{bottom:140.263500px;}
.ybe{bottom:140.603850px;}
.y108{bottom:141.501150px;}
.yf5{bottom:142.031250px;}
.y189{bottom:152.121900px;}
.y12a{bottom:155.162550px;}
.y1c9{bottom:155.263500px;}
.y150{bottom:155.365350px;}
.y5e{bottom:155.635350px;}
.yd0{bottom:155.770350px;}
.yef{bottom:155.912100px;}
.ybd{bottom:156.851850px;}
.y28{bottom:157.116900px;}
.yf4{bottom:157.775250px;}
.y111{bottom:160.818150px;}
.y188{bottom:167.121900px;}
.y1c8{bottom:170.263500px;}
.ybc{bottom:173.099850px;}
.y87{bottom:173.365350px;}
.y5d{bottom:173.635350px;}
.ycf{bottom:173.770350px;}
.yee{bottom:173.912100px;}
.y27{bottom:175.116900px;}
.y101{bottom:179.777364px;}
.y187{bottom:182.121900px;}
.y118{bottom:182.525550px;}
.y1c7{bottom:185.263500px;}
.y129{bottom:186.674550px;}
.ybb{bottom:189.347850px;}
.y5c{bottom:191.635350px;}
.yce{bottom:191.770350px;}
.yed{bottom:191.912100px;}
.y26{bottom:193.116900px;}
.y186{bottom:197.121900px;}
.y107{bottom:199.452150px;}
.y1c6{bottom:200.263500px;}
.yba{bottom:205.595850px;}
.y86{bottom:209.230350px;}
.y14f{bottom:209.365350px;}
.y5b{bottom:209.635350px;}
.ycd{bottom:209.770350px;}
.yec{bottom:209.912100px;}
.y25{bottom:211.116900px;}
.y185{bottom:212.121900px;}
.y1c5{bottom:215.263500px;}
.yfc{bottom:218.653650px;}
.y121{bottom:218.658558px;}
.y128{bottom:221.575350px;}
.yb9{bottom:221.843850px;}
.y184{bottom:227.121900px;}
.y5a{bottom:227.635350px;}
.ycc{bottom:227.770350px;}
.yeb{bottom:227.912100px;}
.y116{bottom:229.045650px;}
.y24{bottom:229.116900px;}
.y1c4{bottom:230.263500px;}
.y120{bottom:236.931242px;}
.yb8{bottom:238.091850px;}
.y113{bottom:238.197379px;}
.y127{bottom:241.075350px;}
.y183{bottom:242.121900px;}
.y1c3{bottom:245.263500px;}
.y59{bottom:245.635350px;}
.ycb{bottom:245.770350px;}
.yea{bottom:245.912100px;}
.y23{bottom:247.116900px;}
.yb7{bottom:254.339850px;}
.y182{bottom:257.121900px;}
.y106{bottom:257.516400px;}
.y1c2{bottom:260.263500px;}
.y126{bottom:260.575350px;}
.y58{bottom:263.635350px;}
.y85{bottom:263.770350px;}
.y22{bottom:265.116900px;}
.yb6{bottom:270.587850px;}
.y181{bottom:272.121900px;}
.y1c1{bottom:275.263500px;}
.y104{bottom:276.932777px;}
.y125{bottom:280.075350px;}
.ye9{bottom:281.507100px;}
.y57{bottom:281.635350px;}
.y84{bottom:281.770350px;}
.y21{bottom:283.116900px;}
.yb5{bottom:286.835850px;}
.y180{bottom:287.121900px;}
.y1c0{bottom:290.263500px;}
.y119{bottom:290.653350px;}
.y100{bottom:296.482350px;}
.y56{bottom:299.635350px;}
.y83{bottom:299.770350px;}
.y20{bottom:301.116900px;}
.y17f{bottom:302.121900px;}
.yb4{bottom:303.178950px;}
.y1bf{bottom:305.263500px;}
.y10f{bottom:315.808650px;}
.y117{bottom:316.370850px;}
.y17e{bottom:317.121900px;}
.ye8{bottom:317.372100px;}
.y55{bottom:317.635350px;}
.y82{bottom:317.770350px;}
.y1f{bottom:319.116900px;}
.yb3{bottom:319.426950px;}
.y1be{bottom:320.263500px;}
.y123{bottom:325.400700px;}
.y17d{bottom:332.121900px;}
.y14b{bottom:334.855500px;}
.y103{bottom:335.125650px;}
.y1bd{bottom:335.263500px;}
.y54{bottom:335.635350px;}
.yb2{bottom:335.674950px;}
.y81{bottom:335.770350px;}
.y2a{bottom:337.116900px;}
.y122{bottom:344.955943px;}
.y17c{bottom:347.121900px;}
.y1bc{bottom:350.263500px;}
.y14a{bottom:351.355500px;}
.yb1{bottom:351.922950px;}
.y53{bottom:353.635350px;}
.y80{bottom:353.770350px;}
.yfd{bottom:354.213750px;}
.y1e{bottom:354.714000px;}
.y29{bottom:355.116900px;}
.y17b{bottom:362.121900px;}
.y1bb{bottom:365.263500px;}
.y149{bottom:367.855500px;}
.yb0{bottom:368.170950px;}
.y14e{bottom:371.365350px;}
.y52{bottom:371.635350px;}
.y7f{bottom:371.770350px;}
.ye7{bottom:371.912100px;}
.y114{bottom:373.873050px;}
.y17a{bottom:377.121900px;}
.y1ba{bottom:380.263500px;}
.y148{bottom:384.103500px;}
.yaf{bottom:384.418950px;}
.y51{bottom:389.635350px;}
.y7e{bottom:389.770350px;}
.ye6{bottom:389.912100px;}
.y179{bottom:392.121900px;}
.y112{bottom:393.180750px;}
.y1b9{bottom:395.263500px;}
.y147{bottom:400.603500px;}
.yae{bottom:400.666950px;}
.y11a{bottom:403.936080px;}
.y178{bottom:407.121900px;}
.y50{bottom:407.635350px;}
.y7d{bottom:407.770350px;}
.ye5{bottom:407.912100px;}
.y1b8{bottom:410.263500px;}
.y10c{bottom:412.620900px;}
.yad{bottom:416.914950px;}
.y146{bottom:417.103500px;}
.y177{bottom:422.121900px;}
.y1b7{bottom:425.263500px;}
.y4f{bottom:425.635350px;}
.y7c{bottom:425.770350px;}
.ye4{bottom:425.912100px;}
.y1d{bottom:427.858500px;}
.yfe{bottom:431.713036px;}
.yac{bottom:433.162950px;}
.y145{bottom:433.603500px;}
.y176{bottom:437.121900px;}
.y1b6{bottom:440.263500px;}
.y4e{bottom:443.635350px;}
.y7b{bottom:443.770350px;}
.ye3{bottom:443.912100px;}
.y1c{bottom:445.864200px;}
.yab{bottom:449.410950px;}
.y144{bottom:450.103500px;}
.y10b{bottom:451.130700px;}
.y175{bottom:452.121900px;}
.y1b5{bottom:455.263500px;}
.y4d{bottom:461.635350px;}
.y7a{bottom:461.770350px;}
.ye2{bottom:461.912100px;}
.yaa{bottom:465.658950px;}
.y143{bottom:466.603500px;}
.y174{bottom:467.121900px;}
.y1b4{bottom:470.263500px;}
.yff{bottom:470.456850px;}
.y1b{bottom:473.209200px;}
.y4c{bottom:479.635350px;}
.y79{bottom:479.770350px;}
.ye1{bottom:479.912100px;}
.ya9{bottom:481.906950px;}
.y173{bottom:482.121900px;}
.y142{bottom:483.103500px;}
.y1b3{bottom:485.263500px;}
.y10a{bottom:489.878550px;}
.y1a{bottom:491.209200px;}
.y11b{bottom:494.335950px;}
.y172{bottom:497.121900px;}
.y4b{bottom:497.635350px;}
.y78{bottom:497.770350px;}
.ye0{bottom:497.912100px;}
.ya8{bottom:498.154950px;}
.y141{bottom:499.603500px;}
.y1b2{bottom:500.263500px;}
.y115{bottom:509.200364px;}
.y19{bottom:509.209200px;}
.y171{bottom:512.121900px;}
.ya7{bottom:514.402950px;}
.y1b1{bottom:515.263500px;}
.y4a{bottom:515.635350px;}
.y77{bottom:515.770350px;}
.ydf{bottom:515.912100px;}
.y140{bottom:516.103500px;}
.y11f{bottom:518.348814px;}
.yfb{bottom:521.663100px;}
.y170{bottom:527.121900px;}
.y18{bottom:527.209200px;}
.y105{bottom:528.509020px;}
.y1b0{bottom:530.263500px;}
.ya6{bottom:530.650950px;}
.y13f{bottom:532.603500px;}
.y49{bottom:533.635350px;}
.y76{bottom:533.770350px;}
.yde{bottom:533.912100px;}
.y11e{bottom:536.636700px;}
.y16f{bottom:542.121900px;}
.y17{bottom:545.209200px;}
.y1af{bottom:545.263500px;}
.ya5{bottom:546.898950px;}
.y10e{bottom:547.942950px;}
.y13e{bottom:549.103500px;}
.y48{bottom:551.635350px;}
.y75{bottom:551.770350px;}
.ydd{bottom:551.912100px;}
.y16e{bottom:557.121900px;}
.y1ae{bottom:560.263500px;}
.ya4{bottom:563.146950px;}
.y16{bottom:563.209200px;}
.y13d{bottom:565.603500px;}
.y110{bottom:567.263278px;}
.y11d{bottom:568.069350px;}
.y47{bottom:569.635350px;}
.y74{bottom:569.770350px;}
.ydc{bottom:569.920350px;}
.y16d{bottom:572.121900px;}
.y1ad{bottom:575.263500px;}
.ya3{bottom:579.394950px;}
.y15{bottom:581.209200px;}
.y13c{bottom:581.851500px;}
.y109{bottom:586.690350px;}
.y16c{bottom:587.121900px;}
.y46{bottom:587.635350px;}
.y73{bottom:587.770350px;}
.ydb{bottom:587.920350px;}
.y1ac{bottom:590.263500px;}
.y11c{bottom:595.387050px;}
.ya2{bottom:595.642950px;}
.y13b{bottom:598.351500px;}
.y14{bottom:599.209200px;}
.y16b{bottom:602.121900px;}
.y1ab{bottom:605.263500px;}
.y45{bottom:605.635350px;}
.y72{bottom:605.770350px;}
.y10d{bottom:605.897857px;}
.yda{bottom:605.920350px;}
.ya1{bottom:611.890950px;}
.y13a{bottom:614.851500px;}
.y16a{bottom:617.121900px;}
.y13{bottom:617.209200px;}
.y1aa{bottom:620.263500px;}
.y44{bottom:623.635350px;}
.y71{bottom:623.770350px;}
.yd9{bottom:623.920350px;}
.y102{bottom:625.333500px;}
.ya0{bottom:628.138950px;}
.y139{bottom:631.351500px;}
.y169{bottom:632.121900px;}
.y12{bottom:635.209200px;}
.y1a9{bottom:635.263500px;}
.y43{bottom:641.635350px;}
.y70{bottom:641.770350px;}
.yd8{bottom:641.920350px;}
.y9f{bottom:644.386950px;}
.y168{bottom:647.121900px;}
.y138{bottom:647.851500px;}
.y1a8{bottom:650.263500px;}
.y42{bottom:659.635350px;}
.y6f{bottom:659.770350px;}
.yd7{bottom:659.920350px;}
.y9e{bottom:660.634950px;}
.y167{bottom:662.121900px;}
.y137{bottom:664.099500px;}
.y1a7{bottom:665.263500px;}
.y9d{bottom:676.882950px;}
.y166{bottom:677.121900px;}
.y41{bottom:677.635350px;}
.y6e{bottom:677.770350px;}
.yd6{bottom:677.920350px;}
.y1a6{bottom:680.263500px;}
.y11{bottom:680.367300px;}
.y136{bottom:680.599500px;}
.y165{bottom:692.121900px;}
.y10{bottom:692.818050px;}
.y9c{bottom:693.130950px;}
.y1a5{bottom:695.263500px;}
.y40{bottom:695.635350px;}
.y6d{bottom:695.770350px;}
.y135{bottom:697.099500px;}
.y164{bottom:707.121900px;}
.yf{bottom:709.221000px;}
.y1a4{bottom:710.263500px;}
.yd5{bottom:713.515350px;}
.y134{bottom:713.599500px;}
.y3f{bottom:713.635350px;}
.y6c{bottom:713.770350px;}
.y163{bottom:722.121900px;}
.y9b{bottom:724.642950px;}
.y1a3{bottom:725.263500px;}
.y133{bottom:730.099500px;}
.y3e{bottom:731.635350px;}
.y6b{bottom:731.770350px;}
.y162{bottom:737.121900px;}
.y1a2{bottom:740.263500px;}
.ye{bottom:741.658800px;}
.y132{bottom:746.599500px;}
.y3d{bottom:749.635350px;}
.yd{bottom:749.733600px;}
.y6a{bottom:749.770350px;}
.y161{bottom:752.121900px;}
.y1a1{bottom:755.263500px;}
.y9a{bottom:759.535350px;}
.y131{bottom:763.099500px;}
.y160{bottom:767.121900px;}
.y14d{bottom:767.365350px;}
.y3c{bottom:767.635350px;}
.y69{bottom:767.770350px;}
.yc{bottom:768.658950px;}
.y1a0{bottom:770.265900px;}
.yb{bottom:776.733600px;}
.y99{bottom:779.035350px;}
.y130{bottom:779.599500px;}
.y15f{bottom:782.121900px;}
.y19f{bottom:785.265900px;}
.y3b{bottom:785.635350px;}
.y68{bottom:785.770350px;}
.ya{bottom:795.658950px;}
.y15e{bottom:797.121900px;}
.y19e{bottom:800.265900px;}
.y3a{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y67{bottom:803.770350px;}
.y12f{bottom:811.111500px;}
.y15d{bottom:812.121900px;}
.y19d{bottom:815.265900px;}
.y66{bottom:821.770350px;}
.y8{bottom:822.658950px;}
.y15c{bottom:827.121900px;}
.y98{bottom:828.970350px;}
.y1dd{bottom:830.263500px;}
.y19c{bottom:830.265900px;}
.y39{bottom:839.230350px;}
.y65{bottom:839.770350px;}
.y15b{bottom:842.121900px;}
.y1dc{bottom:845.263500px;}
.y19b{bottom:845.265900px;}
.y12e{bottom:846.006600px;}
.y97{bottom:846.970350px;}
.y7{bottom:851.380950px;}
.y15a{bottom:857.121900px;}
.y64{bottom:857.770350px;}
.y1db{bottom:860.263500px;}
.y19a{bottom:860.265900px;}
.y96{bottom:864.970350px;}
.y159{bottom:872.121900px;}
.y1da{bottom:875.263500px;}
.y199{bottom:875.265900px;}
.y63{bottom:875.770350px;}
.y95{bottom:882.970350px;}
.y158{bottom:887.121900px;}
.y1d9{bottom:890.263500px;}
.y198{bottom:890.265900px;}
.y38{bottom:893.770350px;}
.y6{bottom:897.543600px;}
.y94{bottom:900.970350px;}
.y157{bottom:902.121900px;}
.y1d8{bottom:905.263500px;}
.y197{bottom:905.265900px;}
.y37{bottom:911.770350px;}
.y156{bottom:917.121900px;}
.y93{bottom:918.970350px;}
.y1d7{bottom:920.263500px;}
.y196{bottom:920.265900px;}
.y36{bottom:929.770350px;}
.y155{bottom:932.121900px;}
.y5{bottom:934.004400px;}
.y1d6{bottom:935.263500px;}
.y195{bottom:935.265900px;}
.y92{bottom:936.970350px;}
.y35{bottom:947.770350px;}
.y1d5{bottom:950.263500px;}
.y194{bottom:950.265900px;}
.y91{bottom:954.970350px;}
.y154{bottom:965.232600px;}
.y1d4{bottom:965.263500px;}
.y193{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.y4{bottom:970.465200px;}
.y1d3{bottom:980.263500px;}
.y192{bottom:980.265900px;}
.y33{bottom:983.770350px;}
.y90{bottom:989.811000px;}
.y1d2{bottom:995.263500px;}
.y191{bottom:995.265900px;}
.y32{bottom:1001.770350px;}
.y8f{bottom:1005.417000px;}
.y3{bottom:1006.926000px;}
.y1d1{bottom:1010.263500px;}
.y190{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.y153{bottom:1019.772600px;}
.y8e{bottom:1019.776200px;}
.y1d0{bottom:1025.263500px;}
.y18f{bottom:1025.265900px;}
.y124{bottom:1037.365350px;}
.y152{bottom:1037.367600px;}
.y8d{bottom:1037.371200px;}
.y30{bottom:1037.770350px;}
.y1cf{bottom:1040.263500px;}
.y18e{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y8c{bottom:1132.418700px;}
.y1ce{bottom:1132.423500px;}
.y14c{bottom:1132.435500px;}
.yc2{bottom:1132.475850px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h8{height:16.564260px;}
.h6{height:19.125417px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.hf{height:32.783203px;}
.h7{height:32.805176px;}
.h15{height:33.285410px;}
.h1b{height:33.351562px;}
.h14{height:33.421875px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h13{height:37.599609px;}
.h1a{height:38.942074px;}
.h12{height:41.689453px;}
.he{height:41.777344px;}
.h17{height:43.527315px;}
.hd{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.717434px;}
.ha{height:43.740234px;}
.h19{height:44.269596px;}
.h16{height:44.299287px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h18{height:66.570820px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x40{left:78.651300px;}
.x41{left:85.039350px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x1d{left:99.921300px;}
.x4a{left:102.047400px;}
.x4{left:106.299150px;}
.xe{left:110.555400px;}
.x1a{left:112.635450px;}
.x4b{left:123.307050px;}
.x3{left:125.427900px;}
.x7{left:131.811000px;}
.x3a{left:143.587650px;}
.xd{left:144.725400px;}
.x18{left:158.024400px;}
.x42{left:182.839350px;}
.x36{left:186.791520px;}
.x5{left:191.330550px;}
.x49{left:194.285400px;}
.x22{left:203.480850px;}
.x6{left:212.876400px;}
.x3f{left:215.967300px;}
.x1b{left:221.053950px;}
.x19{left:226.394400px;}
.x1e{left:240.249300px;}
.x3e{left:297.747300px;}
.x35{left:329.552220px;}
.x38{left:351.257790px;}
.x43{left:374.179350px;}
.x37{left:383.273220px;}
.x39{left:388.633890px;}
.x44{left:395.443350px;}
.x34{left:427.290150px;}
.x27{left:441.796650px;}
.x2b{left:446.253586px;}
.xb{left:455.041500px;}
.xf{left:457.085400px;}
.x25{left:460.311313px;}
.x32{left:461.580150px;}
.x24{left:465.008700px;}
.x14{left:466.055400px;}
.x2a{left:467.171400px;}
.x2f{left:470.485650px;}
.x26{left:475.400550px;}
.x1c{left:478.356000px;}
.x13{left:479.375400px;}
.x8{left:480.471000px;}
.x31{left:482.039250px;}
.x29{left:486.030600px;}
.x10{left:491.105400px;}
.x30{left:497.241150px;}
.x2e{left:498.946050px;}
.x2c{left:502.044559px;}
.x4c{left:503.887050px;}
.x2d{left:507.300150px;}
.x20{left:512.365350px;}
.x9{left:514.491000px;}
.x23{left:520.787550px;}
.x33{left:545.018700px;}
.x3d{left:557.349106px;}
.x28{left:565.251280px;}
.x12{left:583.460400px;}
.x11{left:591.650400px;}
.x21{left:600.738750px;}
.x15{left:609.410400px;}
.x45{left:612.295350px;}
.x46{left:633.559350px;}
.x17{left:663.492300px;}
.x3b{left:676.912050px;}
.x2{left:693.365400px;}
.x3c{left:714.749579px;}
.x47{left:721.771350px;}
.x16{left:728.391600px;}
.x48{left:743.868150px;}
.x1f{left:749.660550px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-16.721600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls48{letter-spacing:-6.613333pt;}
.ls46{letter-spacing:-6.453333pt;}
.ls49{letter-spacing:-5.706667pt;}
.ls47{letter-spacing:-5.440000pt;}
.ls4a{letter-spacing:-4.960000pt;}
.ls38{letter-spacing:-3.925333pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls33{letter-spacing:-0.533333pt;}
.ls32{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.266667pt;}
.ls3f{letter-spacing:-0.256000pt;}
.ls45{letter-spacing:-0.213333pt;}
.ls58{letter-spacing:-0.170667pt;}
.ls2f{letter-spacing:-0.160000pt;}
.ls59{letter-spacing:-0.128000pt;}
.ls61{letter-spacing:-0.106667pt;}
.ls55{letter-spacing:-0.095029pt;}
.ls31{letter-spacing:-0.053333pt;}
.ls12{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002869pt;}
.ls0{letter-spacing:0.003680pt;}
.ls54{letter-spacing:0.040640pt;}
.ls69{letter-spacing:0.042667pt;}
.ls42{letter-spacing:0.053333pt;}
.ls4d{letter-spacing:0.054051pt;}
.ls53{letter-spacing:0.081280pt;}
.ls7b{letter-spacing:0.085333pt;}
.ls26{letter-spacing:0.106667pt;}
.ls56{letter-spacing:0.108102pt;}
.ls57{letter-spacing:0.121920pt;}
.ls6b{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.170667pt;}
.ls29{letter-spacing:0.213333pt;}
.ls68{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.266667pt;}
.ls6f{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls77{letter-spacing:0.341333pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls7e{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.480000pt;}
.ls67{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls74{letter-spacing:0.554667pt;}
.ls22{letter-spacing:0.586667pt;}
.ls64{letter-spacing:0.597333pt;}
.ls17{letter-spacing:0.640000pt;}
.ls73{letter-spacing:0.682667pt;}
.ls11{letter-spacing:0.693333pt;}
.ls6d{letter-spacing:0.725333pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls62{letter-spacing:0.768000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls78{letter-spacing:0.810667pt;}
.ls1e{letter-spacing:0.853333pt;}
.ls25{letter-spacing:0.906667pt;}
.ls63{letter-spacing:0.938667pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls65{letter-spacing:0.981333pt;}
.lsb{letter-spacing:1.013333pt;}
.ls3b{letter-spacing:1.066667pt;}
.ls6c{letter-spacing:1.109333pt;}
.ls21{letter-spacing:1.120000pt;}
.ls84{letter-spacing:1.152000pt;}
.lse{letter-spacing:1.173333pt;}
.ls75{letter-spacing:1.194667pt;}
.ls1d{letter-spacing:1.226667pt;}
.ls76{letter-spacing:1.237333pt;}
.lsc{letter-spacing:1.280000pt;}
.ls71{letter-spacing:1.322667pt;}
.ls1f{letter-spacing:1.333333pt;}
.ls4{letter-spacing:1.386667pt;}
.ls7{letter-spacing:1.440000pt;}
.ls79{letter-spacing:1.450667pt;}
.ls15{letter-spacing:1.493333pt;}
.ls35{letter-spacing:1.546667pt;}
.ls7a{letter-spacing:1.578667pt;}
.ls6{letter-spacing:1.600000pt;}
.ls6a{letter-spacing:1.621333pt;}
.ls2e{letter-spacing:1.653333pt;}
.ls7f{letter-spacing:1.664000pt;}
.ls30{letter-spacing:1.706667pt;}
.ls9{letter-spacing:1.760000pt;}
.ls83{letter-spacing:1.792000pt;}
.ls60{letter-spacing:1.813333pt;}
.ls80{letter-spacing:1.834667pt;}
.ls14{letter-spacing:1.866667pt;}
.ls81{letter-spacing:1.877333pt;}
.ls5{letter-spacing:1.920000pt;}
.ls23{letter-spacing:1.973333pt;}
.ls3d{letter-spacing:2.026667pt;}
.lsd{letter-spacing:2.080000pt;}
.ls43{letter-spacing:2.133333pt;}
.ls8{letter-spacing:2.186667pt;}
.ls66{letter-spacing:2.218667pt;}
.ls5b{letter-spacing:2.240000pt;}
.ls4c{letter-spacing:2.293333pt;}
.ls4b{letter-spacing:2.346667pt;}
.lsa{letter-spacing:2.400000pt;}
.ls6e{letter-spacing:2.432000pt;}
.ls44{letter-spacing:2.453333pt;}
.ls82{letter-spacing:2.474667pt;}
.ls24{letter-spacing:2.506667pt;}
.ls72{letter-spacing:2.517333pt;}
.ls27{letter-spacing:2.560000pt;}
.ls85{letter-spacing:2.602667pt;}
.ls3c{letter-spacing:2.613333pt;}
.ls86{letter-spacing:2.645333pt;}
.ls7d{letter-spacing:2.730667pt;}
.ls88{letter-spacing:2.773333pt;}
.ls20{letter-spacing:2.826667pt;}
.ls2a{letter-spacing:2.933333pt;}
.ls70{letter-spacing:2.944000pt;}
.ls40{letter-spacing:2.986667pt;}
.ls10{letter-spacing:3.040000pt;}
.ls16{letter-spacing:3.146667pt;}
.ls1c{letter-spacing:3.253333pt;}
.ls7c{letter-spacing:3.328000pt;}
.ls41{letter-spacing:3.360000pt;}
.ls5f{letter-spacing:3.466667pt;}
.ls5a{letter-spacing:3.520000pt;}
.ls87{letter-spacing:3.541333pt;}
.ls28{letter-spacing:3.626667pt;}
.ls5d{letter-spacing:3.733333pt;}
.ls39{letter-spacing:4.053333pt;}
.lsf{letter-spacing:4.213333pt;}
.ls5e{letter-spacing:5.120000pt;}
.ls5c{letter-spacing:5.866667pt;}
.ls34{letter-spacing:6.400000pt;}
.ls3a{letter-spacing:8.480000pt;}
.ls50{letter-spacing:11.146561pt;}
.ls4e{letter-spacing:11.149584pt;}
.ls51{letter-spacing:11.164519pt;}
.ls52{letter-spacing:11.165687pt;}
.ls4f{letter-spacing:11.250397pt;}
.ws0{word-spacing:-31.284267pt;}
.ws96{word-spacing:-19.946667pt;}
.ws8e{word-spacing:-19.200000pt;}
.ws32{word-spacing:-17.386667pt;}
.ws97{word-spacing:-16.800000pt;}
.ws60{word-spacing:-16.480000pt;}
.ws44{word-spacing:-15.840000pt;}
.ws40{word-spacing:-15.733333pt;}
.ws5d{word-spacing:-15.680000pt;}
.ws5f{word-spacing:-15.626667pt;}
.ws8d{word-spacing:-15.573333pt;}
.ws43{word-spacing:-15.520000pt;}
.ws45{word-spacing:-15.360000pt;}
.ws61{word-spacing:-15.200000pt;}
.ws93{word-spacing:-15.040000pt;}
.ws92{word-spacing:-14.986667pt;}
.ws41{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws12{word-spacing:-14.720000pt;}
.ws8f{word-spacing:-14.666667pt;}
.ws91{word-spacing:-14.613333pt;}
.ws5{word-spacing:-14.346667pt;}
.ws14{word-spacing:-14.293333pt;}
.wsd1{word-spacing:-14.208000pt;}
.ws5e{word-spacing:-14.133333pt;}
.ws8c{word-spacing:-14.080000pt;}
.ws42{word-spacing:-13.813333pt;}
.ws90{word-spacing:-13.760000pt;}
.ws4{word-spacing:-13.653333pt;}
.ws46{word-spacing:-13.600000pt;}
.ws94{word-spacing:-13.493333pt;}
.ws13{word-spacing:-13.333333pt;}
.wsb0{word-spacing:-13.269333pt;}
.wsae{word-spacing:-13.141333pt;}
.ws95{word-spacing:-13.066667pt;}
.wsb2{word-spacing:-12.330667pt;}
.wsab{word-spacing:-12.245333pt;}
.wsa9{word-spacing:-12.117333pt;}
.ws25{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.861333pt;}
.wsb1{word-spacing:-11.648000pt;}
.wsa6{word-spacing:-11.605333pt;}
.wsa8{word-spacing:-11.520000pt;}
.wsd2{word-spacing:-11.477333pt;}
.wsd3{word-spacing:-11.434667pt;}
.wsd0{word-spacing:-11.392000pt;}
.wsaf{word-spacing:-11.264000pt;}
.wsa7{word-spacing:-11.221333pt;}
.ws6{word-spacing:-11.120000pt;}
.wsac{word-spacing:-11.050667pt;}
.wsaa{word-spacing:-10.965333pt;}
.ws62{word-spacing:-10.880000pt;}
.wsad{word-spacing:-10.709333pt;}
.ws3e{word-spacing:-10.666667pt;}
.ws2{word-spacing:-9.076144pt;}
.ws9b{word-spacing:-5.866667pt;}
.wsd6{word-spacing:-3.541333pt;}
.ws11{word-spacing:-3.040000pt;}
.ws9{word-spacing:-2.565333pt;}
.wsbc{word-spacing:-2.517333pt;}
.ws7a{word-spacing:-2.400000pt;}
.ws7e{word-spacing:-2.293333pt;}
.ws9a{word-spacing:-2.240000pt;}
.ws48{word-spacing:-2.133333pt;}
.ws17{word-spacing:-1.973333pt;}
.wsc4{word-spacing:-1.877333pt;}
.ws7f{word-spacing:-1.866667pt;}
.ws5a{word-spacing:-1.706667pt;}
.wscf{word-spacing:-1.664000pt;}
.ws7b{word-spacing:-1.600000pt;}
.ws31{word-spacing:-1.578667pt;}
.ws3a{word-spacing:-1.546667pt;}
.wsc1{word-spacing:-1.536000pt;}
.ws1d{word-spacing:-1.440000pt;}
.ws52{word-spacing:-1.386667pt;}
.ws33{word-spacing:-1.280000pt;}
.ws51{word-spacing:-1.173333pt;}
.ws98{word-spacing:-1.120000pt;}
.ws10{word-spacing:-1.013333pt;}
.wsa{word-spacing:-0.960000pt;}
.wsb4{word-spacing:-0.938667pt;}
.wsc0{word-spacing:-0.853333pt;}
.wsbf{word-spacing:-0.810667pt;}
.ws30{word-spacing:-0.768000pt;}
.ws99{word-spacing:-0.746667pt;}
.ws4b{word-spacing:-0.640000pt;}
.wsbd{word-spacing:-0.554667pt;}
.wsb5{word-spacing:-0.512000pt;}
.ws7c{word-spacing:-0.480000pt;}
.ws9d{word-spacing:-0.426667pt;}
.wsc3{word-spacing:-0.384000pt;}
.wsc2{word-spacing:-0.341333pt;}
.ws7d{word-spacing:-0.320000pt;}
.wsb9{word-spacing:-0.298667pt;}
.ws50{word-spacing:-0.266667pt;}
.ws80{word-spacing:-0.213333pt;}
.ws9e{word-spacing:-0.160000pt;}
.ws84{word-spacing:-0.121920pt;}
.ws83{word-spacing:-0.108102pt;}
.ws1c{word-spacing:-0.106667pt;}
.ws66{word-spacing:-0.054051pt;}
.ws65{word-spacing:-0.047515pt;}
.ws63{word-spacing:-0.040640pt;}
.ws8{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.042667pt;}
.ws47{word-spacing:0.053333pt;}
.ws82{word-spacing:0.095029pt;}
.ws9f{word-spacing:0.106667pt;}
.ws8b{word-spacing:0.170667pt;}
.wsd5{word-spacing:0.256000pt;}
.wsc8{word-spacing:0.384000pt;}
.ws81{word-spacing:0.426667pt;}
.ws24{word-spacing:0.533333pt;}
.ws5c{word-spacing:0.554667pt;}
.ws49{word-spacing:0.586667pt;}
.ws37{word-spacing:0.640000pt;}
.ws2d{word-spacing:0.693333pt;}
.wsa2{word-spacing:0.746667pt;}
.wscc{word-spacing:0.768000pt;}
.ws57{word-spacing:0.800000pt;}
.wsb6{word-spacing:0.810667pt;}
.ws1b{word-spacing:0.853333pt;}
.wsbb{word-spacing:0.896000pt;}
.ws23{word-spacing:0.960000pt;}
.wscb{word-spacing:0.981333pt;}
.wsa5{word-spacing:1.013333pt;}
.ws2e{word-spacing:1.066667pt;}
.wsc6{word-spacing:1.152000pt;}
.wsba{word-spacing:1.194667pt;}
.wsca{word-spacing:1.237333pt;}
.ws2f{word-spacing:1.280000pt;}
.wsd8{word-spacing:1.365333pt;}
.wse{word-spacing:1.386667pt;}
.ws58{word-spacing:1.546667pt;}
.ws89{word-spacing:1.600000pt;}
.ws3d{word-spacing:1.621333pt;}
.wsa0{word-spacing:1.653333pt;}
.wsd7{word-spacing:1.664000pt;}
.wsbe{word-spacing:1.706667pt;}
.ws5b{word-spacing:1.749333pt;}
.ws56{word-spacing:1.760000pt;}
.wsb8{word-spacing:1.834667pt;}
.ws35{word-spacing:1.920000pt;}
.ws9c{word-spacing:2.026667pt;}
.ws3f{word-spacing:2.048000pt;}
.wsf{word-spacing:2.186667pt;}
.wsc7{word-spacing:2.218667pt;}
.ws4c{word-spacing:2.240000pt;}
.ws22{word-spacing:2.400000pt;}
.ws1e{word-spacing:2.453333pt;}
.wsce{word-spacing:2.474667pt;}
.ws38{word-spacing:2.506667pt;}
.ws39{word-spacing:2.560000pt;}
.ws15{word-spacing:2.613333pt;}
.ws4e{word-spacing:2.720000pt;}
.wsc5{word-spacing:2.730667pt;}
.ws87{word-spacing:2.773333pt;}
.ws8a{word-spacing:2.826667pt;}
.ws4f{word-spacing:2.880000pt;}
.wsc9{word-spacing:2.901333pt;}
.wscd{word-spacing:3.029333pt;}
.ws2b{word-spacing:3.093333pt;}
.wsd4{word-spacing:3.157333pt;}
.ws2a{word-spacing:3.200000pt;}
.ws36{word-spacing:3.306667pt;}
.ws2c{word-spacing:3.360000pt;}
.wsc{word-spacing:3.413333pt;}
.ws19{word-spacing:3.466667pt;}
.ws3b{word-spacing:3.498667pt;}
.wsb3{word-spacing:3.541333pt;}
.ws1a{word-spacing:3.573333pt;}
.ws3c{word-spacing:3.669333pt;}
.ws18{word-spacing:3.680000pt;}
.ws16{word-spacing:3.733333pt;}
.ws88{word-spacing:3.786667pt;}
.ws1f{word-spacing:3.893333pt;}
.ws20{word-spacing:3.946667pt;}
.ws4d{word-spacing:4.106667pt;}
.ws34{word-spacing:4.160000pt;}
.ws21{word-spacing:4.320000pt;}
.wsb{word-spacing:4.373333pt;}
.wsd{word-spacing:4.426667pt;}
.wsa3{word-spacing:4.853333pt;}
.wsa4{word-spacing:4.906667pt;}
.ws59{word-spacing:4.960000pt;}
.wsa1{word-spacing:5.173333pt;}
.ws53{word-spacing:5.440000pt;}
.ws55{word-spacing:5.706667pt;}
.ws4a{word-spacing:6.453333pt;}
.ws54{word-spacing:6.613333pt;}
.ws68{word-spacing:10.643285pt;}
.ws6d{word-spacing:10.880859pt;}
.ws76{word-spacing:10.928373pt;}
.ws6c{word-spacing:10.948412pt;}
.ws70{word-spacing:10.975888pt;}
.ws6a{word-spacing:11.023403pt;}
.ws75{word-spacing:11.063305pt;}
.ws71{word-spacing:11.068969pt;}
.ws74{word-spacing:11.069502pt;}
.ws73{word-spacing:11.070917pt;}
.ws72{word-spacing:11.127511pt;}
.ws6f{word-spacing:11.135102pt;}
.ws69{word-spacing:11.135635pt;}
.ws67{word-spacing:11.141989pt;}
.ws64{word-spacing:11.143361pt;}
.ws79{word-spacing:11.945315pt;}
.ws6b{word-spacing:12.215571pt;}
.ws6e{word-spacing:12.269622pt;}
.ws77{word-spacing:18.288000pt;}
.ws78{word-spacing:18.694400pt;}
.ws1{word-spacing:43.841803pt;}
.ws27{word-spacing:108.672000pt;}
.ws28{word-spacing:190.592000pt;}
.ws29{word-spacing:191.402667pt;}
.ws26{word-spacing:214.144000pt;}
.ws86{word-spacing:352.298667pt;}
.ws85{word-spacing:829.141333pt;}
._c{margin-left:-2576.085333pt;}
._39{margin-left:-2554.922667pt;}
._3b{margin-left:-7.651733pt;}
._2{margin-left:-6.161600pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.208000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.048000pt;}
._6{width:0.906667pt;}
._a{width:2.240000pt;}
._9{width:3.413333pt;}
._b{width:4.480000pt;}
._7{width:5.386667pt;}
._3a{width:6.320000pt;}
._8{width:7.413333pt;}
._3c{width:23.132034pt;}
._1e{width:29.320000pt;}
._18{width:45.013333pt;}
._4{width:53.501003pt;}
._1f{width:55.098667pt;}
._10{width:65.621333pt;}
._1c{width:70.834667pt;}
._12{width:78.208000pt;}
._2e{width:86.613333pt;}
._34{width:90.930667pt;}
._11{width:95.914667pt;}
._30{width:109.909333pt;}
._36{width:111.488000pt;}
._21{width:121.744000pt;}
._27{width:122.885333pt;}
._20{width:131.149333pt;}
._3d{width:133.674667pt;}
._13{width:136.794667pt;}
._33{width:148.266667pt;}
._37{width:154.888000pt;}
._38{width:158.890667pt;}
._2f{width:167.168000pt;}
._25{width:168.362667pt;}
._43{width:177.109333pt;}
._19{width:185.776000pt;}
._22{width:195.293333pt;}
._3e{width:206.182933pt;}
._15{width:210.346667pt;}
._1a{width:211.925333pt;}
._26{width:213.381333pt;}
._32{width:216.021333pt;}
._29{width:216.957333pt;}
._1b{width:219.690667pt;}
._1d{width:222.848000pt;}
._40{width:234.026667pt;}
._14{width:244.144000pt;}
._49{width:246.664000pt;}
._f{width:265.216000pt;}
._2a{width:272.682667pt;}
._2c{width:283.349333pt;}
._16{width:284.378667pt;}
._31{width:286.805333pt;}
._48{width:295.594667pt;}
._3f{width:307.814933pt;}
._17{width:319.061333pt;}
._42{width:341.009600pt;}
._24{width:349.653333pt;}
._2d{width:359.424000pt;}
._d{width:368.554667pt;}
._28{width:379.520000pt;}
._45{width:384.681600pt;}
._2b{width:394.752000pt;}
._46{width:472.124267pt;}
._e{width:477.653333pt;}
._35{width:503.594667pt;}
._47{width:510.865600pt;}
._23{width:515.584000pt;}
._44{width:553.301333pt;}
._41{width:606.634667pt;}
.fs7{font-size:20.210667pt;}
.fs5{font-size:23.320000pt;}
.fs4{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsc{font-size:40.640000pt;}
.fsa{font-size:42.666667pt;}
.fse{font-size:47.514667pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fsd{font-size:54.051200pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fsf{font-size:81.280000pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.yfa{bottom:73.798533pt;}
.yca{bottom:74.092400pt;}
.y151{bottom:74.102533pt;}
.y8b{bottom:74.222533pt;}
.y62{bottom:74.342533pt;}
.yc4{bottom:74.376000pt;}
.yd4{bottom:74.462533pt;}
.yf3{bottom:74.588533pt;}
.yc8{bottom:74.733067pt;}
.y2c{bottom:78.246000pt;}
.yc1{bottom:81.653200pt;}
.y18d{bottom:81.886133pt;}
.y12d{bottom:83.255600pt;}
.y1cd{bottom:84.678667pt;}
.yf9{bottom:87.793200pt;}
.yc9{bottom:88.087067pt;}
.yc3{bottom:88.370667pt;}
.yc7{bottom:88.727733pt;}
.y8a{bottom:90.222533pt;}
.y61{bottom:90.342533pt;}
.yd3{bottom:90.462533pt;}
.yf2{bottom:90.588533pt;}
.y2b{bottom:91.576000pt;}
.y18c{bottom:95.219467pt;}
.yc0{bottom:96.095867pt;}
.y12c{bottom:97.698267pt;}
.y1cc{bottom:98.012000pt;}
.yf7{bottom:98.260667pt;}
.yf8{bottom:101.787867pt;}
.yc6{bottom:102.722400pt;}
.y89{bottom:106.222533pt;}
.y60{bottom:106.342533pt;}
.yd2{bottom:106.462533pt;}
.yf1{bottom:106.588533pt;}
.y18b{bottom:108.552800pt;}
.ybf{bottom:110.538533pt;}
.y1cb{bottom:111.345333pt;}
.y12b{bottom:112.140933pt;}
.yf6{bottom:112.255333pt;}
.yc5{bottom:116.717067pt;}
.y18a{bottom:121.886133pt;}
.y88{bottom:122.222533pt;}
.y5f{bottom:122.342533pt;}
.yd1{bottom:122.462533pt;}
.yf0{bottom:122.588533pt;}
.y1ca{bottom:124.678667pt;}
.ybe{bottom:124.981200pt;}
.y108{bottom:125.778800pt;}
.yf5{bottom:126.250000pt;}
.y189{bottom:135.219467pt;}
.y12a{bottom:137.922267pt;}
.y1c9{bottom:138.012000pt;}
.y150{bottom:138.102533pt;}
.y5e{bottom:138.342533pt;}
.yd0{bottom:138.462533pt;}
.yef{bottom:138.588533pt;}
.ybd{bottom:139.423867pt;}
.y28{bottom:139.659467pt;}
.yf4{bottom:140.244667pt;}
.y111{bottom:142.949467pt;}
.y188{bottom:148.552800pt;}
.y1c8{bottom:151.345333pt;}
.ybc{bottom:153.866533pt;}
.y87{bottom:154.102533pt;}
.y5d{bottom:154.342533pt;}
.ycf{bottom:154.462533pt;}
.yee{bottom:154.588533pt;}
.y27{bottom:155.659467pt;}
.y101{bottom:159.802101pt;}
.y187{bottom:161.886133pt;}
.y118{bottom:162.244933pt;}
.y1c7{bottom:164.678667pt;}
.y129{bottom:165.932933pt;}
.ybb{bottom:168.309200pt;}
.y5c{bottom:170.342533pt;}
.yce{bottom:170.462533pt;}
.yed{bottom:170.588533pt;}
.y26{bottom:171.659467pt;}
.y186{bottom:175.219467pt;}
.y107{bottom:177.290800pt;}
.y1c6{bottom:178.012000pt;}
.yba{bottom:182.751867pt;}
.y86{bottom:185.982533pt;}
.y14f{bottom:186.102533pt;}
.y5b{bottom:186.342533pt;}
.ycd{bottom:186.462533pt;}
.yec{bottom:186.588533pt;}
.y25{bottom:187.659467pt;}
.y185{bottom:188.552800pt;}
.y1c5{bottom:191.345333pt;}
.yfc{bottom:194.358800pt;}
.y121{bottom:194.363162pt;}
.y128{bottom:196.955867pt;}
.yb9{bottom:197.194533pt;}
.y184{bottom:201.886133pt;}
.y5a{bottom:202.342533pt;}
.ycc{bottom:202.462533pt;}
.yeb{bottom:202.588533pt;}
.y116{bottom:203.596133pt;}
.y24{bottom:203.659467pt;}
.y1c4{bottom:204.678667pt;}
.y120{bottom:210.605548pt;}
.yb8{bottom:211.637200pt;}
.y113{bottom:211.731004pt;}
.y127{bottom:214.289200pt;}
.y183{bottom:215.219467pt;}
.y1c3{bottom:218.012000pt;}
.y59{bottom:218.342533pt;}
.ycb{bottom:218.462533pt;}
.yea{bottom:218.588533pt;}
.y23{bottom:219.659467pt;}
.yb7{bottom:226.079867pt;}
.y182{bottom:228.552800pt;}
.y106{bottom:228.903467pt;}
.y1c2{bottom:231.345333pt;}
.y126{bottom:231.622533pt;}
.y58{bottom:234.342533pt;}
.y85{bottom:234.462533pt;}
.y22{bottom:235.659467pt;}
.yb6{bottom:240.522533pt;}
.y181{bottom:241.886133pt;}
.y1c1{bottom:244.678667pt;}
.y104{bottom:246.162468pt;}
.y125{bottom:248.955867pt;}
.ye9{bottom:250.228533pt;}
.y57{bottom:250.342533pt;}
.y84{bottom:250.462533pt;}
.y21{bottom:251.659467pt;}
.yb5{bottom:254.965200pt;}
.y180{bottom:255.219467pt;}
.y1c0{bottom:258.012000pt;}
.y119{bottom:258.358533pt;}
.y100{bottom:263.539867pt;}
.y56{bottom:266.342533pt;}
.y83{bottom:266.462533pt;}
.y20{bottom:267.659467pt;}
.y17f{bottom:268.552800pt;}
.yb4{bottom:269.492400pt;}
.y1bf{bottom:271.345333pt;}
.y10f{bottom:280.718800pt;}
.y117{bottom:281.218533pt;}
.y17e{bottom:281.886133pt;}
.ye8{bottom:282.108533pt;}
.y55{bottom:282.342533pt;}
.y82{bottom:282.462533pt;}
.y1f{bottom:283.659467pt;}
.yb3{bottom:283.935067pt;}
.y1be{bottom:284.678667pt;}
.y123{bottom:289.245067pt;}
.y17d{bottom:295.219467pt;}
.y14b{bottom:297.649333pt;}
.y103{bottom:297.889467pt;}
.y1bd{bottom:298.012000pt;}
.y54{bottom:298.342533pt;}
.yb2{bottom:298.377733pt;}
.y81{bottom:298.462533pt;}
.y2a{bottom:299.659467pt;}
.y122{bottom:306.627505pt;}
.y17c{bottom:308.552800pt;}
.y1bc{bottom:311.345333pt;}
.y14a{bottom:312.316000pt;}
.yb1{bottom:312.820400pt;}
.y53{bottom:314.342533pt;}
.y80{bottom:314.462533pt;}
.yfd{bottom:314.856667pt;}
.y1e{bottom:315.301333pt;}
.y29{bottom:315.659467pt;}
.y17b{bottom:321.886133pt;}
.y1bb{bottom:324.678667pt;}
.y149{bottom:326.982667pt;}
.yb0{bottom:327.263067pt;}
.y14e{bottom:330.102533pt;}
.y52{bottom:330.342533pt;}
.y7f{bottom:330.462533pt;}
.ye7{bottom:330.588533pt;}
.y114{bottom:332.331600pt;}
.y17a{bottom:335.219467pt;}
.y1ba{bottom:338.012000pt;}
.y148{bottom:341.425333pt;}
.yaf{bottom:341.705733pt;}
.y51{bottom:346.342533pt;}
.y7e{bottom:346.462533pt;}
.ye6{bottom:346.588533pt;}
.y179{bottom:348.552800pt;}
.y112{bottom:349.494000pt;}
.y1b9{bottom:351.345333pt;}
.y147{bottom:356.092000pt;}
.yae{bottom:356.148400pt;}
.y11a{bottom:359.054293pt;}
.y178{bottom:361.886133pt;}
.y50{bottom:362.342533pt;}
.y7d{bottom:362.462533pt;}
.ye5{bottom:362.588533pt;}
.y1b8{bottom:364.678667pt;}
.y10c{bottom:366.774133pt;}
.yad{bottom:370.591067pt;}
.y146{bottom:370.758667pt;}
.y177{bottom:375.219467pt;}
.y1b7{bottom:378.012000pt;}
.y4f{bottom:378.342533pt;}
.y7c{bottom:378.462533pt;}
.ye4{bottom:378.588533pt;}
.y1d{bottom:380.318667pt;}
.yfe{bottom:383.744921pt;}
.yac{bottom:385.033733pt;}
.y145{bottom:385.425333pt;}
.y176{bottom:388.552800pt;}
.y1b6{bottom:391.345333pt;}
.y4e{bottom:394.342533pt;}
.y7b{bottom:394.462533pt;}
.ye3{bottom:394.588533pt;}
.y1c{bottom:396.323733pt;}
.yab{bottom:399.476400pt;}
.y144{bottom:400.092000pt;}
.y10b{bottom:401.005067pt;}
.y175{bottom:401.886133pt;}
.y1b5{bottom:404.678667pt;}
.y4d{bottom:410.342533pt;}
.y7a{bottom:410.462533pt;}
.ye2{bottom:410.588533pt;}
.yaa{bottom:413.919067pt;}
.y143{bottom:414.758667pt;}
.y174{bottom:415.219467pt;}
.y1b4{bottom:418.012000pt;}
.yff{bottom:418.183867pt;}
.y1b{bottom:420.630400pt;}
.y4c{bottom:426.342533pt;}
.y79{bottom:426.462533pt;}
.ye1{bottom:426.588533pt;}
.ya9{bottom:428.361733pt;}
.y173{bottom:428.552800pt;}
.y142{bottom:429.425333pt;}
.y1b3{bottom:431.345333pt;}
.y10a{bottom:435.447600pt;}
.y1a{bottom:436.630400pt;}
.y11b{bottom:439.409733pt;}
.y172{bottom:441.886133pt;}
.y4b{bottom:442.342533pt;}
.y78{bottom:442.462533pt;}
.ye0{bottom:442.588533pt;}
.ya8{bottom:442.804400pt;}
.y141{bottom:444.092000pt;}
.y1b2{bottom:444.678667pt;}
.y115{bottom:452.622546pt;}
.y19{bottom:452.630400pt;}
.y171{bottom:455.219467pt;}
.ya7{bottom:457.247067pt;}
.y1b1{bottom:458.012000pt;}
.y4a{bottom:458.342533pt;}
.y77{bottom:458.462533pt;}
.ydf{bottom:458.588533pt;}
.y140{bottom:458.758667pt;}
.y11f{bottom:460.754502pt;}
.yfb{bottom:463.700533pt;}
.y170{bottom:468.552800pt;}
.y18{bottom:468.630400pt;}
.y105{bottom:469.785795pt;}
.y1b0{bottom:471.345333pt;}
.ya6{bottom:471.689733pt;}
.y13f{bottom:473.425333pt;}
.y49{bottom:474.342533pt;}
.y76{bottom:474.462533pt;}
.yde{bottom:474.588533pt;}
.y11e{bottom:477.010400pt;}
.y16f{bottom:481.886133pt;}
.y17{bottom:484.630400pt;}
.y1af{bottom:484.678667pt;}
.ya5{bottom:486.132400pt;}
.y10e{bottom:487.060400pt;}
.y13e{bottom:488.092000pt;}
.y48{bottom:490.342533pt;}
.y75{bottom:490.462533pt;}
.ydd{bottom:490.588533pt;}
.y16e{bottom:495.219467pt;}
.y1ae{bottom:498.012000pt;}
.ya4{bottom:500.575067pt;}
.y16{bottom:500.630400pt;}
.y13d{bottom:502.758667pt;}
.y110{bottom:504.234025pt;}
.y11d{bottom:504.950533pt;}
.y47{bottom:506.342533pt;}
.y74{bottom:506.462533pt;}
.ydc{bottom:506.595867pt;}
.y16d{bottom:508.552800pt;}
.y1ad{bottom:511.345333pt;}
.ya3{bottom:515.017733pt;}
.y15{bottom:516.630400pt;}
.y13c{bottom:517.201333pt;}
.y109{bottom:521.502533pt;}
.y16c{bottom:521.886133pt;}
.y46{bottom:522.342533pt;}
.y73{bottom:522.462533pt;}
.ydb{bottom:522.595867pt;}
.y1ac{bottom:524.678667pt;}
.y11c{bottom:529.232933pt;}
.ya2{bottom:529.460400pt;}
.y13b{bottom:531.868000pt;}
.y14{bottom:532.630400pt;}
.y16b{bottom:535.219467pt;}
.y1ab{bottom:538.012000pt;}
.y45{bottom:538.342533pt;}
.y72{bottom:538.462533pt;}
.y10d{bottom:538.575873pt;}
.yda{bottom:538.595867pt;}
.ya1{bottom:543.903067pt;}
.y13a{bottom:546.534667pt;}
.y16a{bottom:548.552800pt;}
.y13{bottom:548.630400pt;}
.y1aa{bottom:551.345333pt;}
.y44{bottom:554.342533pt;}
.y71{bottom:554.462533pt;}
.yd9{bottom:554.595867pt;}
.y102{bottom:555.852000pt;}
.ya0{bottom:558.345733pt;}
.y139{bottom:561.201333pt;}
.y169{bottom:561.886133pt;}
.y12{bottom:564.630400pt;}
.y1a9{bottom:564.678667pt;}
.y43{bottom:570.342533pt;}
.y70{bottom:570.462533pt;}
.yd8{bottom:570.595867pt;}
.y9f{bottom:572.788400pt;}
.y168{bottom:575.219467pt;}
.y138{bottom:575.868000pt;}
.y1a8{bottom:578.012000pt;}
.y42{bottom:586.342533pt;}
.y6f{bottom:586.462533pt;}
.yd7{bottom:586.595867pt;}
.y9e{bottom:587.231067pt;}
.y167{bottom:588.552800pt;}
.y137{bottom:590.310667pt;}
.y1a7{bottom:591.345333pt;}
.y9d{bottom:601.673733pt;}
.y166{bottom:601.886133pt;}
.y41{bottom:602.342533pt;}
.y6e{bottom:602.462533pt;}
.yd6{bottom:602.595867pt;}
.y1a6{bottom:604.678667pt;}
.y11{bottom:604.770933pt;}
.y136{bottom:604.977333pt;}
.y165{bottom:615.219467pt;}
.y10{bottom:615.838267pt;}
.y9c{bottom:616.116400pt;}
.y1a5{bottom:618.012000pt;}
.y40{bottom:618.342533pt;}
.y6d{bottom:618.462533pt;}
.y135{bottom:619.644000pt;}
.y164{bottom:628.552800pt;}
.yf{bottom:630.418667pt;}
.y1a4{bottom:631.345333pt;}
.yd5{bottom:634.235867pt;}
.y134{bottom:634.310667pt;}
.y3f{bottom:634.342533pt;}
.y6c{bottom:634.462533pt;}
.y163{bottom:641.886133pt;}
.y9b{bottom:644.127067pt;}
.y1a3{bottom:644.678667pt;}
.y133{bottom:648.977333pt;}
.y3e{bottom:650.342533pt;}
.y6b{bottom:650.462533pt;}
.y162{bottom:655.219467pt;}
.y1a2{bottom:658.012000pt;}
.ye{bottom:659.252267pt;}
.y132{bottom:663.644000pt;}
.y3d{bottom:666.342533pt;}
.yd{bottom:666.429867pt;}
.y6a{bottom:666.462533pt;}
.y161{bottom:668.552800pt;}
.y1a1{bottom:671.345333pt;}
.y9a{bottom:675.142533pt;}
.y131{bottom:678.310667pt;}
.y160{bottom:681.886133pt;}
.y14d{bottom:682.102533pt;}
.y3c{bottom:682.342533pt;}
.y69{bottom:682.462533pt;}
.yc{bottom:683.252400pt;}
.y1a0{bottom:684.680800pt;}
.yb{bottom:690.429867pt;}
.y99{bottom:692.475867pt;}
.y130{bottom:692.977333pt;}
.y15f{bottom:695.219467pt;}
.y19f{bottom:698.014133pt;}
.y3b{bottom:698.342533pt;}
.y68{bottom:698.462533pt;}
.ya{bottom:707.252400pt;}
.y15e{bottom:708.552800pt;}
.y19e{bottom:711.347467pt;}
.y3a{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y67{bottom:714.462533pt;}
.y12f{bottom:720.988000pt;}
.y15d{bottom:721.886133pt;}
.y19d{bottom:724.680800pt;}
.y66{bottom:730.462533pt;}
.y8{bottom:731.252400pt;}
.y15c{bottom:735.219467pt;}
.y98{bottom:736.862533pt;}
.y1dd{bottom:738.012000pt;}
.y19c{bottom:738.014133pt;}
.y39{bottom:745.982533pt;}
.y65{bottom:746.462533pt;}
.y15b{bottom:748.552800pt;}
.y1dc{bottom:751.345333pt;}
.y19b{bottom:751.347467pt;}
.y12e{bottom:752.005867pt;}
.y97{bottom:752.862533pt;}
.y7{bottom:756.783067pt;}
.y15a{bottom:761.886133pt;}
.y64{bottom:762.462533pt;}
.y1db{bottom:764.678667pt;}
.y19a{bottom:764.680800pt;}
.y96{bottom:768.862533pt;}
.y159{bottom:775.219467pt;}
.y1da{bottom:778.012000pt;}
.y199{bottom:778.014133pt;}
.y63{bottom:778.462533pt;}
.y95{bottom:784.862533pt;}
.y158{bottom:788.552800pt;}
.y1d9{bottom:791.345333pt;}
.y198{bottom:791.347467pt;}
.y38{bottom:794.462533pt;}
.y6{bottom:797.816533pt;}
.y94{bottom:800.862533pt;}
.y157{bottom:801.886133pt;}
.y1d8{bottom:804.678667pt;}
.y197{bottom:804.680800pt;}
.y37{bottom:810.462533pt;}
.y156{bottom:815.219467pt;}
.y93{bottom:816.862533pt;}
.y1d7{bottom:818.012000pt;}
.y196{bottom:818.014133pt;}
.y36{bottom:826.462533pt;}
.y155{bottom:828.552800pt;}
.y5{bottom:830.226133pt;}
.y1d6{bottom:831.345333pt;}
.y195{bottom:831.347467pt;}
.y92{bottom:832.862533pt;}
.y35{bottom:842.462533pt;}
.y1d5{bottom:844.678667pt;}
.y194{bottom:844.680800pt;}
.y91{bottom:848.862533pt;}
.y154{bottom:857.984533pt;}
.y1d4{bottom:858.012000pt;}
.y193{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.y4{bottom:862.635733pt;}
.y1d3{bottom:871.345333pt;}
.y192{bottom:871.347467pt;}
.y33{bottom:874.462533pt;}
.y90{bottom:879.832000pt;}
.y1d2{bottom:884.678667pt;}
.y191{bottom:884.680800pt;}
.y32{bottom:890.462533pt;}
.y8f{bottom:893.704000pt;}
.y3{bottom:895.045333pt;}
.y1d1{bottom:898.012000pt;}
.y190{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.y153{bottom:906.464533pt;}
.y8e{bottom:906.467733pt;}
.y1d0{bottom:911.345333pt;}
.y18f{bottom:911.347467pt;}
.y124{bottom:922.102533pt;}
.y152{bottom:922.104533pt;}
.y8d{bottom:922.107733pt;}
.y30{bottom:922.462533pt;}
.y1cf{bottom:924.678667pt;}
.y18e{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y8c{bottom:1006.594400pt;}
.y1ce{bottom:1006.598667pt;}
.y14c{bottom:1006.609333pt;}
.yc2{bottom:1006.645200pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h8{height:14.723786pt;}
.h6{height:17.000371pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.hf{height:29.140625pt;}
.h7{height:29.160156pt;}
.h15{height:29.587031pt;}
.h1b{height:29.645833pt;}
.h14{height:29.708333pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h13{height:33.421875pt;}
.h1a{height:34.615177pt;}
.h12{height:37.057292pt;}
.he{height:37.135417pt;}
.h17{height:38.690947pt;}
.hd{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.859942pt;}
.ha{height:38.880208pt;}
.h19{height:39.350752pt;}
.h16{height:39.377144pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h18{height:59.174062pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x40{left:69.912267pt;}
.x41{left:75.590533pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1d{left:88.818933pt;}
.x4a{left:90.708800pt;}
.x4{left:94.488133pt;}
.xe{left:98.271467pt;}
.x1a{left:100.120400pt;}
.x4b{left:109.606267pt;}
.x3{left:111.491467pt;}
.x7{left:117.165333pt;}
.x3a{left:127.633467pt;}
.xd{left:128.644800pt;}
.x18{left:140.466133pt;}
.x42{left:162.523867pt;}
.x36{left:166.036907pt;}
.x5{left:170.071600pt;}
.x49{left:172.698133pt;}
.x22{left:180.871867pt;}
.x6{left:189.223467pt;}
.x3f{left:191.970933pt;}
.x1b{left:196.492400pt;}
.x19{left:201.239467pt;}
.x1e{left:213.554933pt;}
.x3e{left:264.664267pt;}
.x35{left:292.935307pt;}
.x38{left:312.229147pt;}
.x43{left:332.603867pt;}
.x37{left:340.687307pt;}
.x39{left:345.452347pt;}
.x44{left:351.505200pt;}
.x34{left:379.813467pt;}
.x27{left:392.708133pt;}
.x2b{left:396.669854pt;}
.xb{left:404.481333pt;}
.xf{left:406.298133pt;}
.x25{left:409.165611pt;}
.x32{left:410.293467pt;}
.x24{left:413.341067pt;}
.x14{left:414.271467pt;}
.x2a{left:415.263467pt;}
.x2f{left:418.209467pt;}
.x26{left:422.578267pt;}
.x1c{left:425.205333pt;}
.x13{left:426.111467pt;}
.x8{left:427.085333pt;}
.x31{left:428.479333pt;}
.x29{left:432.027200pt;}
.x10{left:436.538133pt;}
.x30{left:441.992133pt;}
.x2e{left:443.507600pt;}
.x2c{left:446.261830pt;}
.x4c{left:447.899600pt;}
.x2d{left:450.933467pt;}
.x20{left:455.435867pt;}
.x9{left:457.325333pt;}
.x23{left:462.922267pt;}
.x33{left:484.461067pt;}
.x3d{left:495.421428pt;}
.x28{left:502.445582pt;}
.x12{left:518.631467pt;}
.x11{left:525.911467pt;}
.x21{left:533.990000pt;}
.x15{left:541.698133pt;}
.x45{left:544.262533pt;}
.x46{left:563.163867pt;}
.x17{left:589.770933pt;}
.x3b{left:601.699600pt;}
.x2{left:616.324800pt;}
.x3c{left:635.332959pt;}
.x47{left:641.574533pt;}
.x16{left:647.459200pt;}
.x48{left:661.216133pt;}
.x1f{left:666.364933pt;}
}




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