
    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_1c8ef7ff01b13665348f23e9.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_c3b844466b940240cfda737c.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_f27f86e0d9d3e27e9ec7ad2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740723;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_5802f57f3481988d503b83cc.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_4e0dc1edfd7f676a43f494c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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_77574b31de4d766e9a80e54f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.678223;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_6518921b6c6fdd1dff526564.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.213379;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_1b8b4c7aab8548f8320dcd1d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_6a0e52cab34c7f2e3029bb26.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682129;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_29175f280e384afcc3ba86d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_ac7f970222f0df8f48a761d6.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m2{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-20.595600px;}
.vb{vertical-align:-5.886000px;}
.v3{vertical-align:-3.395400px;}
.v9{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.620000px;}
.v7{vertical-align:16.878000px;}
.v8{vertical-align:18.808800px;}
.v2{vertical-align:20.535600px;}
.v5{vertical-align:34.384800px;}
.v4{vertical-align:39.732600px;}
.v6{vertical-align:77.490600px;}
.ls6d{letter-spacing:-3.552000px;}
.lsa8{letter-spacing:-2.640000px;}
.ls6b{letter-spacing:-2.220000px;}
.ls6c{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.600000px;}
.ls46{letter-spacing:-0.540000px;}
.ls81{letter-spacing:-0.240000px;}
.ls78{letter-spacing:-0.192000px;}
.ls61{letter-spacing:-0.180000px;}
.ls45{letter-spacing:-0.120000px;}
.ls9a{letter-spacing:-0.096000px;}
.ls64{letter-spacing:-0.060000px;}
.ls1e{letter-spacing:-0.048000px;}
.ls1c{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.000600px;}
.ls57{letter-spacing:0.001200px;}
.ls30{letter-spacing:0.005400px;}
.ls5c{letter-spacing:0.006000px;}
.ls4b{letter-spacing:0.009600px;}
.ls5d{letter-spacing:0.037800px;}
.ls70{letter-spacing:0.048000px;}
.ls76{letter-spacing:0.060000px;}
.ls55{letter-spacing:0.090600px;}
.ls16{letter-spacing:0.120000px;}
.ls91{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.ls73{letter-spacing:0.192000px;}
.lse{letter-spacing:0.240000px;}
.ls8b{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.360000px;}
.ls85{letter-spacing:0.384000px;}
.ls77{letter-spacing:0.420000px;}
.ls8d{letter-spacing:0.432000px;}
.ls60{letter-spacing:0.468000px;}
.ls2f{letter-spacing:0.474600px;}
.ls21{letter-spacing:0.480000px;}
.ls48{letter-spacing:0.507000px;}
.ls2{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.540000px;}
.ls72{letter-spacing:0.576000px;}
.ls34{letter-spacing:0.600000px;}
.ls63{letter-spacing:0.612000px;}
.ls8a{letter-spacing:0.624000px;}
.ls37{letter-spacing:0.660000px;}
.ls9f{letter-spacing:0.672000px;}
.ls75{letter-spacing:0.720000px;}
.ls84{letter-spacing:0.768000px;}
.ls19{letter-spacing:0.780000px;}
.ls96{letter-spacing:0.816000px;}
.ls28{letter-spacing:0.840000px;}
.ls92{letter-spacing:0.864000px;}
.ls47{letter-spacing:0.883800px;}
.ls6a{letter-spacing:0.900000px;}
.ls83{letter-spacing:0.912000px;}
.lsb{letter-spacing:0.960000px;}
.ls99{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.020000px;}
.ls79{letter-spacing:1.056000px;}
.ls22{letter-spacing:1.080000px;}
.lsa9{letter-spacing:1.104000px;}
.ls6{letter-spacing:1.140000px;}
.ls9d{letter-spacing:1.152000px;}
.ls6e{letter-spacing:1.194600px;}
.ls3{letter-spacing:1.200000px;}
.ls8f{letter-spacing:1.248000px;}
.ls5{letter-spacing:1.260000px;}
.ls27{letter-spacing:1.320000px;}
.ls18{letter-spacing:1.380000px;}
.ls1{letter-spacing:1.440000px;}
.ls38{letter-spacing:1.481400px;}
.ls95{letter-spacing:1.488000px;}
.ls8{letter-spacing:1.500000px;}
.ls15{letter-spacing:1.560000px;}
.ls97{letter-spacing:1.584000px;}
.ls7f{letter-spacing:1.620000px;}
.ls0{letter-spacing:1.632000px;}
.ls4e{letter-spacing:1.680000px;}
.ls3d{letter-spacing:1.721400px;}
.ls3f{letter-spacing:1.722000px;}
.ls40{letter-spacing:1.728000px;}
.ls36{letter-spacing:1.740000px;}
.ls88{letter-spacing:1.776000px;}
.ls24{letter-spacing:1.800000px;}
.ls56{letter-spacing:1.860000px;}
.ls2b{letter-spacing:1.920000px;}
.ls89{letter-spacing:1.968000px;}
.ls4{letter-spacing:1.980000px;}
.ls39{letter-spacing:2.040000px;}
.lsa5{letter-spacing:2.064000px;}
.ls2a{letter-spacing:2.100000px;}
.ls8e{letter-spacing:2.112000px;}
.ls3a{letter-spacing:2.220000px;}
.ls98{letter-spacing:2.256000px;}
.ls4a{letter-spacing:2.278800px;}
.ls71{letter-spacing:2.304000px;}
.ls20{letter-spacing:2.340000px;}
.lsc{letter-spacing:2.400000px;}
.lsa3{letter-spacing:2.448000px;}
.ls7{letter-spacing:2.460000px;}
.lsa4{letter-spacing:2.496000px;}
.lsd{letter-spacing:2.520000px;}
.ls8c{letter-spacing:2.544000px;}
.ls23{letter-spacing:2.580000px;}
.ls93{letter-spacing:2.592000px;}
.lsa{letter-spacing:2.640000px;}
.ls94{letter-spacing:2.688000px;}
.ls7b{letter-spacing:2.700000px;}
.ls9b{letter-spacing:2.736000px;}
.ls6f{letter-spacing:2.760000px;}
.ls86{letter-spacing:2.784000px;}
.ls62{letter-spacing:2.820000px;}
.ls3c{letter-spacing:2.880000px;}
.ls41{letter-spacing:2.901000px;}
.ls3e{letter-spacing:2.901600px;}
.lsa0{letter-spacing:2.928000px;}
.ls29{letter-spacing:2.940000px;}
.ls35{letter-spacing:3.000000px;}
.ls5e{letter-spacing:3.060000px;}
.lsa6{letter-spacing:3.120000px;}
.ls11{letter-spacing:3.180000px;}
.lsa1{letter-spacing:3.216000px;}
.ls7d{letter-spacing:3.240000px;}
.ls7a{letter-spacing:3.300000px;}
.ls31{letter-spacing:3.360000px;}
.ls54{letter-spacing:3.420000px;}
.ls14{letter-spacing:3.480000px;}
.ls13{letter-spacing:3.540000px;}
.lsa2{letter-spacing:3.552000px;}
.ls2c{letter-spacing:3.600000px;}
.ls5f{letter-spacing:3.660000px;}
.lsa7{letter-spacing:3.696000px;}
.ls25{letter-spacing:3.720000px;}
.ls32{letter-spacing:3.780000px;}
.ls87{letter-spacing:3.792000px;}
.ls44{letter-spacing:3.840000px;}
.ls90{letter-spacing:3.888000px;}
.ls26{letter-spacing:3.900000px;}
.ls7c{letter-spacing:3.960000px;}
.ls12{letter-spacing:4.080000px;}
.ls65{letter-spacing:4.200000px;}
.ls82{letter-spacing:4.320000px;}
.ls4f{letter-spacing:4.380000px;}
.ls9c{letter-spacing:4.416000px;}
.ls68{letter-spacing:4.440000px;}
.ls67{letter-spacing:4.500000px;}
.ls2d{letter-spacing:4.560000px;}
.ls33{letter-spacing:4.620000px;}
.ls66{letter-spacing:4.860000px;}
.ls80{letter-spacing:4.920000px;}
.ls7e{letter-spacing:5.040000px;}
.ls9e{letter-spacing:5.088000px;}
.ls1a{letter-spacing:5.100000px;}
.ls58{letter-spacing:5.520000px;}
.ls5a{letter-spacing:5.880000px;}
.ls59{letter-spacing:6.000000px;}
.ls42{letter-spacing:6.180000px;}
.ls4c{letter-spacing:6.260400px;}
.ls9{letter-spacing:6.300000px;}
.ls74{letter-spacing:6.960000px;}
.ls69{letter-spacing:9.540000px;}
.ls53{letter-spacing:9.900000px;}
.ls49{letter-spacing:22.630800px;}
.ls50{letter-spacing:162.138000px;}
.ls51{letter-spacing:335.550000px;}
.ls52{letter-spacing:350.550000px;}
.ls4d{letter-spacing:363.906600px;}
.ls5b{letter-spacing:410.851800px;}
.ls43{letter-spacing:585.174000px;}
.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;}
}
.ws3a{word-spacing:-72.000000px;}
.ws34{word-spacing:-60.000000px;}
.ws36{word-spacing:-22.200000px;}
.ws16{word-spacing:-19.560000px;}
.ws6c{word-spacing:-19.440000px;}
.ws70{word-spacing:-19.380000px;}
.ws35{word-spacing:-16.800000px;}
.ws14{word-spacing:-16.680000px;}
.ws37{word-spacing:-16.500000px;}
.wsa8{word-spacing:-15.792000px;}
.ws84{word-spacing:-15.120000px;}
.ws88{word-spacing:-14.352000px;}
.ws18{word-spacing:-14.178000px;}
.wsa5{word-spacing:-14.112000px;}
.wsa4{word-spacing:-14.064000px;}
.ws85{word-spacing:-13.632000px;}
.ws87{word-spacing:-13.584000px;}
.wsa6{word-spacing:-13.536000px;}
.ws86{word-spacing:-13.392000px;}
.ws83{word-spacing:-13.344000px;}
.ws39{word-spacing:-13.068000px;}
.ws17{word-spacing:-11.736000px;}
.wsa7{word-spacing:-10.704000px;}
.ws38{word-spacing:-10.620000px;}
.ws32{word-spacing:-10.476000px;}
.ws15{word-spacing:-10.008000px;}
.ws66{word-spacing:-6.960000px;}
.wsb{word-spacing:-6.300000px;}
.ws2f{word-spacing:-6.180000px;}
.ws13{word-spacing:-5.100000px;}
.ws33{word-spacing:-4.933200px;}
.ws89{word-spacing:-4.320000px;}
.ws54{word-spacing:-4.200000px;}
.ws76{word-spacing:-3.960000px;}
.ws4b{word-spacing:-3.900000px;}
.ws20{word-spacing:-3.840000px;}
.ws2b{word-spacing:-3.780000px;}
.ws1e{word-spacing:-3.720000px;}
.wsb3{word-spacing:-3.696000px;}
.ws7a{word-spacing:-3.240000px;}
.ws82{word-spacing:-3.000000px;}
.ws21{word-spacing:-2.940000px;}
.wsaa{word-spacing:-2.928000px;}
.ws2e{word-spacing:-2.880000px;}
.ws3c{word-spacing:-2.820000px;}
.ws1{word-spacing:-2.664000px;}
.ws51{word-spacing:-2.640000px;}
.ws68{word-spacing:-2.580000px;}
.ws26{word-spacing:-2.520000px;}
.wsb0{word-spacing:-2.496000px;}
.ws8a{word-spacing:-2.460000px;}
.wsad{word-spacing:-2.448000px;}
.ws27{word-spacing:-2.340000px;}
.ws63{word-spacing:-2.304000px;}
.ws9e{word-spacing:-2.256000px;}
.ws1f{word-spacing:-2.220000px;}
.ws98{word-spacing:-2.112000px;}
.wsb2{word-spacing:-2.064000px;}
.ws55{word-spacing:-2.040000px;}
.ws79{word-spacing:-1.980000px;}
.ws94{word-spacing:-1.968000px;}
.ws25{word-spacing:-1.920000px;}
.ws4d{word-spacing:-1.800000px;}
.ws3b{word-spacing:-1.740000px;}
.wsa1{word-spacing:-1.680000px;}
.ws7f{word-spacing:-1.560000px;}
.ws12{word-spacing:-1.380000px;}
.ws77{word-spacing:-1.200000px;}
.ws48{word-spacing:-1.140000px;}
.wsae{word-spacing:-1.104000px;}
.ws3f{word-spacing:-1.080000px;}
.ws6d{word-spacing:-1.056000px;}
.ws23{word-spacing:-1.020000px;}
.wsb5{word-spacing:-1.008000px;}
.ws81{word-spacing:-0.960000px;}
.ws5e{word-spacing:-0.900000px;}
.ws9a{word-spacing:-0.864000px;}
.ws3e{word-spacing:-0.840000px;}
.ws22{word-spacing:-0.780000px;}
.wsa2{word-spacing:-0.768000px;}
.wsa9{word-spacing:-0.672000px;}
.wsaf{word-spacing:-0.624000px;}
.ws50{word-spacing:-0.600000px;}
.ws64{word-spacing:-0.576000px;}
.ws53{word-spacing:-0.540000px;}
.ws93{word-spacing:-0.528000px;}
.ws65{word-spacing:-0.480000px;}
.ws97{word-spacing:-0.432000px;}
.ws72{word-spacing:-0.420000px;}
.ws8d{word-spacing:-0.384000px;}
.ws1a{word-spacing:-0.360000px;}
.ws61{word-spacing:-0.300000px;}
.ws95{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.240000px;}
.ws6e{word-spacing:-0.192000px;}
.ws10{word-spacing:-0.180000px;}
.ws99{word-spacing:-0.144000px;}
.ws5f{word-spacing:-0.120000px;}
.ws6a{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws4a{word-spacing:0.060000px;}
.wsb1{word-spacing:0.096000px;}
.ws42{word-spacing:0.120000px;}
.ws9d{word-spacing:0.144000px;}
.ws58{word-spacing:0.180000px;}
.ws47{word-spacing:0.240000px;}
.ws9f{word-spacing:0.288000px;}
.ws30{word-spacing:0.300000px;}
.ws4c{word-spacing:0.360000px;}
.ws8c{word-spacing:0.432000px;}
.ws24{word-spacing:0.480000px;}
.wsd{word-spacing:0.660000px;}
.ws90{word-spacing:0.672000px;}
.ws7c{word-spacing:0.720000px;}
.ws69{word-spacing:0.780000px;}
.ws60{word-spacing:0.864000px;}
.ws5c{word-spacing:0.960000px;}
.ws62{word-spacing:1.056000px;}
.ws56{word-spacing:1.140000px;}
.ws8e{word-spacing:1.152000px;}
.ws1d{word-spacing:1.260000px;}
.wsf{word-spacing:1.320000px;}
.ws7{word-spacing:1.344000px;}
.wsa0{word-spacing:1.584000px;}
.ws73{word-spacing:1.620000px;}
.wsa3{word-spacing:1.824000px;}
.ws67{word-spacing:1.860000px;}
.ws80{word-spacing:1.920000px;}
.ws57{word-spacing:2.160000px;}
.ws2c{word-spacing:2.220000px;}
.ws5b{word-spacing:2.280000px;}
.ws6f{word-spacing:2.400000px;}
.ws7e{word-spacing:2.460000px;}
.ws92{word-spacing:2.496000px;}
.ws71{word-spacing:2.580000px;}
.ws19{word-spacing:2.640000px;}
.ws6b{word-spacing:2.700000px;}
.wsac{word-spacing:2.784000px;}
.ws75{word-spacing:2.940000px;}
.ws7d{word-spacing:3.000000px;}
.ws28{word-spacing:3.060000px;}
.wsb4{word-spacing:3.120000px;}
.ws96{word-spacing:3.216000px;}
.ws91{word-spacing:3.456000px;}
.ws40{word-spacing:3.480000px;}
.ws3{word-spacing:3.552000px;}
.ws46{word-spacing:3.600000px;}
.ws9c{word-spacing:3.648000px;}
.ws52{word-spacing:3.780000px;}
.wsab{word-spacing:3.888000px;}
.ws8{word-spacing:3.936000px;}
.wse{word-spacing:3.960000px;}
.ws9b{word-spacing:4.032000px;}
.ws5a{word-spacing:4.080000px;}
.ws1b{word-spacing:4.140000px;}
.ws8f{word-spacing:4.272000px;}
.ws6{word-spacing:4.368000px;}
.ws2{word-spacing:4.416000px;}
.ws11{word-spacing:4.440000px;}
.ws8b{word-spacing:4.500000px;}
.ws5{word-spacing:4.560000px;}
.ws74{word-spacing:4.620000px;}
.ws59{word-spacing:4.740000px;}
.ws5d{word-spacing:4.980000px;}
.ws4{word-spacing:5.010000px;}
.ws29{word-spacing:5.160000px;}
.ws3d{word-spacing:5.220000px;}
.ws2a{word-spacing:5.280000px;}
.ws7b{word-spacing:5.340000px;}
.ws78{word-spacing:5.400000px;}
.wsa{word-spacing:5.460000px;}
.ws9{word-spacing:5.520000px;}
.ws1c{word-spacing:8.160000px;}
.ws45{word-spacing:24.180000px;}
.ws2d{word-spacing:283.200000px;}
.ws49{word-spacing:337.560000px;}
.ws43{word-spacing:402.240000px;}
.ws44{word-spacing:417.240000px;}
.ws41{word-spacing:430.560000px;}
.ws31{word-spacing:511.860000px;}
.ws4e{word-spacing:569.088000px;}
.ws4f{word-spacing:931.248000px;}
._f{margin-left:-2898.126000px;}
._12{margin-left:-2874.309000px;}
._10{margin-left:-10.140000px;}
._7{margin-left:-6.570000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.504000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.134000px;}
._4{width:1.392000px;}
._a{width:2.640000px;}
._5{width:3.744000px;}
._9{width:5.100000px;}
._8{width:6.300000px;}
._b{width:7.554000px;}
._d{width:9.240000px;}
._c{width:10.620000px;}
._6{width:11.754000px;}
._1a{width:13.020000px;}
._11{width:96.651600px;}
._e{width:216.456000px;}
._13{width:357.456000px;}
._17{width:586.896000px;}
._15{width:619.824000px;}
._14{width:718.944000px;}
._18{width:762.960000px;}
._16{width:801.216000px;}
._19{width:956.736000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:60.925628px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y197{bottom:82.796700px;}
.y178{bottom:83.228850px;}
.y15b{bottom:83.363850px;}
.y2a{bottom:83.493900px;}
.y5b{bottom:83.513850px;}
.y13f{bottom:84.506850px;}
.y145{bottom:84.530850px;}
.y14c{bottom:84.600600px;}
.y130{bottom:92.703600px;}
.y1d7{bottom:94.938300px;}
.y196{bottom:97.796700px;}
.ycd{bottom:98.303400px;}
.y13e{bottom:100.250850px;}
.y144{bottom:100.274850px;}
.y14b{bottom:100.344600px;}
.y177{bottom:101.228850px;}
.y15a{bottom:101.363850px;}
.y5a{bottom:101.513850px;}
.y88{bottom:103.773450px;}
.y12f{bottom:108.951600px;}
.y1d6{bottom:109.938300px;}
.y195{bottom:112.796700px;}
.y13d{bottom:115.994850px;}
.y143{bottom:116.018850px;}
.ycc{bottom:116.303400px;}
.y176{bottom:119.228850px;}
.y159{bottom:119.363850px;}
.y59{bottom:119.513850px;}
.y14{bottom:121.513200px;}
.y1d5{bottom:124.938300px;}
.y12e{bottom:125.199600px;}
.y194{bottom:127.796700px;}
.y87{bottom:130.277250px;}
.y13c{bottom:131.738850px;}
.y142{bottom:131.762850px;}
.ycb{bottom:134.303400px;}
.y175{bottom:137.228850px;}
.y158{bottom:137.363850px;}
.y58{bottom:137.513850px;}
.y1d4{bottom:139.938300px;}
.y12d{bottom:141.447600px;}
.y193{bottom:142.796700px;}
.y13b{bottom:147.482850px;}
.y141{bottom:147.506850px;}
.y86{bottom:148.277250px;}
.yca{bottom:152.303400px;}
.yfa{bottom:154.881900px;}
.y1d3{bottom:154.938300px;}
.y174{bottom:155.228850px;}
.y157{bottom:155.363850px;}
.y57{bottom:155.513850px;}
.y12c{bottom:157.695600px;}
.y192{bottom:157.796700px;}
.y13a{bottom:163.226850px;}
.y140{bottom:163.250850px;}
.y85{bottom:166.277250px;}
.y1d2{bottom:169.938300px;}
.yc9{bottom:170.303400px;}
.y191{bottom:172.796700px;}
.yf9{bottom:172.881900px;}
.y173{bottom:173.228850px;}
.y156{bottom:173.363850px;}
.y56{bottom:173.513850px;}
.y26{bottom:183.678600px;}
.y84{bottom:184.283250px;}
.y1d1{bottom:184.938300px;}
.y190{bottom:187.796700px;}
.yc8{bottom:188.303400px;}
.y12b{bottom:189.207600px;}
.yf8{bottom:190.881900px;}
.y155{bottom:191.363850px;}
.y55{bottom:191.513850px;}
.y1d0{bottom:199.938300px;}
.y25{bottom:201.678600px;}
.y18f{bottom:202.796700px;}
.yf7{bottom:208.881900px;}
.y172{bottom:209.228850px;}
.y154{bottom:209.363850px;}
.y54{bottom:209.513850px;}
.y1cf{bottom:214.938300px;}
.y83{bottom:215.033250px;}
.y82{bottom:215.036850px;}
.y18e{bottom:217.796700px;}
.y24{bottom:219.678600px;}
.y12a{bottom:224.037600px;}
.yc7{bottom:224.303400px;}
.yf6{bottom:226.881900px;}
.y171{bottom:227.228850px;}
.y153{bottom:227.363850px;}
.y53{bottom:227.513850px;}
.y1ce{bottom:229.938300px;}
.y18d{bottom:232.796700px;}
.y23{bottom:237.678600px;}
.y129{bottom:243.537600px;}
.yf5{bottom:244.881900px;}
.y1cd{bottom:244.938300px;}
.y170{bottom:245.228850px;}
.y152{bottom:245.363850px;}
.y81{bottom:245.789100px;}
.y18c{bottom:247.796700px;}
.y22{bottom:255.678600px;}
.y1cc{bottom:259.938300px;}
.y18b{bottom:262.796700px;}
.yf4{bottom:262.881900px;}
.y16f{bottom:263.228850px;}
.y151{bottom:263.363850px;}
.y52{bottom:263.513850px;}
.y80{bottom:263.789100px;}
.yc4{bottom:269.521200px;}
.yc3{bottom:270.588000px;}
.yc5{bottom:270.592050px;}
.y21{bottom:273.678600px;}
.y1cb{bottom:274.938300px;}
.y18a{bottom:277.796700px;}
.ybf{bottom:278.260650px;}
.yc0{bottom:278.588400px;}
.ybe{bottom:278.592150px;}
.yf3{bottom:280.882050px;}
.y16e{bottom:281.228850px;}
.y150{bottom:281.363850px;}
.y7f{bottom:281.789100px;}
.yc6{bottom:283.737300px;}
.yc2{bottom:288.525150px;}
.yc1{bottom:289.596000px;}
.y1ca{bottom:289.938300px;}
.y20{bottom:291.678600px;}
.y132{bottom:291.927600px;}
.y189{bottom:292.796700px;}
.yf2{bottom:298.882050px;}
.y16d{bottom:299.228850px;}
.y51{bottom:299.363850px;}
.y7e{bottom:299.789100px;}
.y1c9{bottom:304.938300px;}
.y131{bottom:307.671600px;}
.y188{bottom:307.796700px;}
.y1f{bottom:309.678600px;}
.y16c{bottom:317.228850px;}
.y50{bottom:317.363850px;}
.y7d{bottom:317.789100px;}
.y1c8{bottom:319.938300px;}
.y187{bottom:322.796700px;}
.ybb{bottom:324.395100px;}
.yba{bottom:325.461900px;}
.ybc{bottom:325.465950px;}
.yf1{bottom:327.485850px;}
.y1e{bottom:327.678600px;}
.yb6{bottom:333.134700px;}
.yb7{bottom:333.462450px;}
.yb5{bottom:333.466050px;}
.y1c7{bottom:334.938300px;}
.y16b{bottom:335.228850px;}
.y4f{bottom:335.363850px;}
.y7c{bottom:335.813850px;}
.y186{bottom:337.796700px;}
.ybd{bottom:338.611350px;}
.yb9{bottom:343.399050px;}
.yb8{bottom:344.469900px;}
.y1d{bottom:345.678600px;}
.y1c6{bottom:349.938300px;}
.y185{bottom:352.796700px;}
.y16a{bottom:353.228850px;}
.y4e{bottom:353.363850px;}
.yf0{bottom:355.489950px;}
.y1c{bottom:363.678600px;}
.y1c5{bottom:364.938300px;}
.y184{bottom:367.796700px;}
.yb4{bottom:369.901350px;}
.y169{bottom:371.228850px;}
.y4d{bottom:371.363850px;}
.y7b{bottom:371.813850px;}
.yef{bottom:373.489950px;}
.y1c4{bottom:379.938300px;}
.y1b{bottom:381.678600px;}
.y183{bottom:382.796700px;}
.y168{bottom:389.228850px;}
.y4c{bottom:389.363850px;}
.yee{bottom:391.489950px;}
.y1c3{bottom:394.938300px;}
.yb2{bottom:396.937800px;}
.y182{bottom:397.796700px;}
.y1a{bottom:399.678600px;}
.yb0{bottom:406.008600px;}
.yb1{bottom:406.336350px;}
.yaf{bottom:406.340100px;}
.y167{bottom:407.228850px;}
.y4b{bottom:407.363850px;}
.y7a{bottom:407.663850px;}
.yed{bottom:409.489950px;}
.y1c2{bottom:409.938300px;}
.yb3{bottom:411.485250px;}
.y181{bottom:412.796700px;}
.y19{bottom:417.678600px;}
.y1c1{bottom:424.938300px;}
.y166{bottom:425.228850px;}
.y4a{bottom:425.363850px;}
.y79{bottom:425.663850px;}
.yec{bottom:427.489950px;}
.y180{bottom:427.796700px;}
.y18{bottom:435.678600px;}
.y1c0{bottom:439.938300px;}
.yae{bottom:442.783650px;}
.y17f{bottom:442.796700px;}
.y165{bottom:443.228850px;}
.y49{bottom:443.363850px;}
.y78{bottom:443.663850px;}
.yeb{bottom:445.489950px;}
.y17{bottom:453.678600px;}
.y1bf{bottom:454.938300px;}
.y17e{bottom:457.796700px;}
.yad{bottom:460.783650px;}
.y164{bottom:461.228850px;}
.y48{bottom:461.363850px;}
.y77{bottom:461.663850px;}
.yea{bottom:463.489950px;}
.y1be{bottom:469.938300px;}
.y16{bottom:471.678600px;}
.y17d{bottom:472.796700px;}
.yac{bottom:478.783650px;}
.y139{bottom:479.018850px;}
.y163{bottom:479.228850px;}
.y47{bottom:479.363850px;}
.y76{bottom:479.663850px;}
.ye9{bottom:481.489950px;}
.y1bd{bottom:484.938300px;}
.y17c{bottom:487.796700px;}
.y27{bottom:489.678600px;}
.y138{bottom:494.762850px;}
.yab{bottom:496.783650px;}
.y162{bottom:497.228850px;}
.y14a{bottom:497.363850px;}
.y75{bottom:497.663850px;}
.ye8{bottom:499.489950px;}
.y1bc{bottom:499.938300px;}
.y17b{bottom:502.796700px;}
.y15{bottom:507.678600px;}
.y137{bottom:510.506850px;}
.y1bb{bottom:514.938300px;}
.y161{bottom:515.228850px;}
.y46{bottom:515.363850px;}
.y74{bottom:515.663850px;}
.ye7{bottom:517.489950px;}
.y17a{bottom:517.796700px;}
.y136{bottom:526.250850px;}
.y1ba{bottom:529.938300px;}
.yaa{bottom:532.783650px;}
.y160{bottom:533.228850px;}
.y149{bottom:533.363850px;}
.y73{bottom:533.663850px;}
.ye6{bottom:535.489950px;}
.y135{bottom:541.994850px;}
.y1b9{bottom:544.938300px;}
.y133{bottom:550.111650px;}
.y45{bottom:551.228850px;}
.y148{bottom:551.363850px;}
.y72{bottom:551.663850px;}
.ye5{bottom:553.489950px;}
.y134{bottom:557.738850px;}
.y1b8{bottom:559.938300px;}
.y14f{bottom:567.024600px;}
.ya9{bottom:568.633650px;}
.y15f{bottom:569.228850px;}
.y147{bottom:569.363850px;}
.y71{bottom:569.663850px;}
.ye4{bottom:571.489950px;}
.y1b7{bottom:574.938300px;}
.y14e{bottom:582.768600px;}
.y13{bottom:583.838550px;}
.ya8{bottom:586.633650px;}
.y15e{bottom:587.228850px;}
.y146{bottom:587.363850px;}
.y70{bottom:587.663850px;}
.ye3{bottom:589.489950px;}
.y1b6{bottom:589.938300px;}
.y14d{bottom:598.512600px;}
.ya7{bottom:604.633650px;}
.y1f5{bottom:604.938300px;}
.y1b5{bottom:604.940700px;}
.y15d{bottom:605.228850px;}
.y44{bottom:605.363850px;}
.y110{bottom:605.517600px;}
.y6f{bottom:605.663850px;}
.ye2{bottom:607.489950px;}
.y12{bottom:616.694550px;}
.y1f4{bottom:619.938300px;}
.y1b4{bottom:619.940700px;}
.ya6{bottom:622.633650px;}
.y43{bottom:623.363850px;}
.y128{bottom:623.382600px;}
.y10f{bottom:623.517600px;}
.y6e{bottom:623.663850px;}
.ye1{bottom:625.489950px;}
.y11{bottom:631.694550px;}
.y1f3{bottom:634.938300px;}
.y1b3{bottom:634.940700px;}
.y15c{bottom:641.228850px;}
.y42{bottom:641.363850px;}
.y127{bottom:641.382600px;}
.y10e{bottom:641.517600px;}
.ye0{bottom:643.489950px;}
.y10{bottom:646.694550px;}
.y1f2{bottom:649.938300px;}
.y1b2{bottom:649.940700px;}
.ya4{bottom:649.996800px;}
.ya5{bottom:654.366450px;}
.ya3{bottom:659.068650px;}
.ya2{bottom:659.072400px;}
.y41{bottom:659.363850px;}
.y126{bottom:659.382600px;}
.y10d{bottom:659.517600px;}
.y6d{bottom:659.663850px;}
.ydf{bottom:661.489950px;}
.yf{bottom:661.694550px;}
.y1f1{bottom:664.938300px;}
.y1b1{bottom:664.940700px;}
.ye{bottom:676.694550px;}
.y40{bottom:677.363850px;}
.y125{bottom:677.382600px;}
.y10c{bottom:677.517600px;}
.yde{bottom:679.489950px;}
.y1f0{bottom:679.938300px;}
.y1b0{bottom:679.940700px;}
.yd{bottom:691.694550px;}
.y1ef{bottom:694.938300px;}
.y1af{bottom:694.940700px;}
.y3f{bottom:695.363850px;}
.y124{bottom:695.382600px;}
.ya1{bottom:695.505750px;}
.y6c{bottom:695.513850px;}
.y10b{bottom:695.517600px;}
.ydd{bottom:697.489950px;}
.yc{bottom:706.694550px;}
.y1ee{bottom:709.938300px;}
.y1ae{bottom:709.940700px;}
.y3e{bottom:713.363850px;}
.y123{bottom:713.382600px;}
.ya0{bottom:713.505750px;}
.y6b{bottom:713.513850px;}
.y10a{bottom:713.517600px;}
.ydc{bottom:715.489950px;}
.yb{bottom:721.694550px;}
.y1ed{bottom:724.938300px;}
.y1ad{bottom:724.940700px;}
.y3d{bottom:731.363850px;}
.y122{bottom:731.382600px;}
.y9f{bottom:731.505750px;}
.y6a{bottom:731.513850px;}
.y109{bottom:731.517600px;}
.ydb{bottom:733.489950px;}
.ya{bottom:736.694550px;}
.y1ec{bottom:739.938300px;}
.y1ac{bottom:739.940700px;}
.y3c{bottom:749.363850px;}
.y121{bottom:749.382600px;}
.y9c{bottom:749.505750px;}
.y9e{bottom:749.509350px;}
.y69{bottom:749.513850px;}
.y108{bottom:749.517600px;}
.y9d{bottom:750.580200px;}
.yda{bottom:751.489950px;}
.y1eb{bottom:754.938300px;}
.y1ab{bottom:754.940700px;}
.y3b{bottom:767.363850px;}
.y120{bottom:767.382600px;}
.y9b{bottom:767.505750px;}
.y68{bottom:767.513850px;}
.y107{bottom:767.517600px;}
.yd9{bottom:769.493550px;}
.y1ea{bottom:769.938300px;}
.y1aa{bottom:769.940700px;}
.y1e9{bottom:784.938300px;}
.y1a9{bottom:784.940700px;}
.y3a{bottom:785.363850px;}
.y11f{bottom:785.382600px;}
.y9{bottom:785.438550px;}
.y9a{bottom:785.505750px;}
.y98{bottom:785.509350px;}
.y67{bottom:785.513850px;}
.y106{bottom:785.517600px;}
.y99{bottom:786.580200px;}
.yd8{bottom:787.493550px;}
.y8{bottom:799.803000px;}
.y1e8{bottom:799.938300px;}
.y1a8{bottom:799.940700px;}
.y39{bottom:803.363850px;}
.y11e{bottom:803.382600px;}
.y97{bottom:803.509350px;}
.y66{bottom:803.513850px;}
.y95{bottom:803.514000px;}
.y96{bottom:804.580200px;}
.yd7{bottom:805.493550px;}
.y1e7{bottom:814.938300px;}
.y1a7{bottom:814.940700px;}
.y38{bottom:821.363850px;}
.y11d{bottom:821.382600px;}
.y65{bottom:821.513850px;}
.y94{bottom:821.514000px;}
.y105{bottom:821.517600px;}
.yd6{bottom:823.493550px;}
.y7{bottom:826.994550px;}
.y1e6{bottom:829.938300px;}
.y1a6{bottom:829.940700px;}
.y37{bottom:839.363850px;}
.y11c{bottom:839.382600px;}
.y64{bottom:839.513850px;}
.y93{bottom:839.514000px;}
.yd5{bottom:841.493550px;}
.y1e5{bottom:844.938300px;}
.y1a5{bottom:844.940700px;}
.y36{bottom:857.363850px;}
.y104{bottom:857.367600px;}
.y11b{bottom:857.382600px;}
.y63{bottom:857.513850px;}
.y92{bottom:857.514000px;}
.yd4{bottom:859.493550px;}
.y1e4{bottom:859.938300px;}
.y1a4{bottom:859.940700px;}
.y6{bottom:861.494550px;}
.y1e3{bottom:874.938300px;}
.y1a3{bottom:874.940700px;}
.y35{bottom:875.363850px;}
.y103{bottom:875.367600px;}
.y11a{bottom:875.382600px;}
.y62{bottom:875.513850px;}
.y5{bottom:880.879800px;}
.y1e2{bottom:889.938300px;}
.y1a2{bottom:889.940700px;}
.y34{bottom:893.363850px;}
.y102{bottom:893.367600px;}
.y119{bottom:893.382600px;}
.y61{bottom:893.513850px;}
.y91{bottom:893.514000px;}
.yd3{bottom:895.493550px;}
.y1e1{bottom:904.938300px;}
.y1a1{bottom:904.940700px;}
.y4{bottom:908.269200px;}
.y33{bottom:911.363850px;}
.y101{bottom:911.367600px;}
.y118{bottom:911.382600px;}
.y60{bottom:911.513850px;}
.y1e0{bottom:919.938300px;}
.y1a0{bottom:919.940700px;}
.y32{bottom:929.363850px;}
.y90{bottom:929.364000px;}
.y100{bottom:929.367600px;}
.y117{bottom:929.382600px;}
.y1df{bottom:934.938300px;}
.y19f{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.yd2{bottom:939.852150px;}
.y31{bottom:947.363850px;}
.y8f{bottom:947.364000px;}
.yff{bottom:947.367600px;}
.y116{bottom:947.382600px;}
.y5f{bottom:947.513850px;}
.y1de{bottom:949.938300px;}
.y19e{bottom:949.940700px;}
.y1dd{bottom:964.938300px;}
.y19d{bottom:964.940700px;}
.y30{bottom:965.363850px;}
.y8e{bottom:965.364000px;}
.yfe{bottom:965.367600px;}
.y115{bottom:965.382600px;}
.yd1{bottom:974.863050px;}
.y1dc{bottom:979.938300px;}
.y19c{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y2f{bottom:983.363850px;}
.y8d{bottom:983.364000px;}
.yfd{bottom:983.367600px;}
.y114{bottom:983.382600px;}
.y1db{bottom:994.938300px;}
.y19b{bottom:994.940700px;}
.y2e{bottom:1001.363850px;}
.y8c{bottom:1001.364000px;}
.yfc{bottom:1001.367600px;}
.yd0{bottom:1001.368050px;}
.y5e{bottom:1001.378850px;}
.y113{bottom:1001.382600px;}
.y1da{bottom:1009.938300px;}
.y19a{bottom:1009.940700px;}
.y2d{bottom:1019.363850px;}
.y8b{bottom:1019.364000px;}
.ycf{bottom:1019.368050px;}
.y5d{bottom:1019.378850px;}
.y112{bottom:1019.382600px;}
.y1d9{bottom:1024.938300px;}
.y199{bottom:1024.940700px;}
.y2c{bottom:1037.363850px;}
.y8a{bottom:1037.364000px;}
.yfb{bottom:1037.367600px;}
.yce{bottom:1037.368050px;}
.y5c{bottom:1037.378850px;}
.y111{bottom:1037.382600px;}
.y1d8{bottom:1039.938300px;}
.y198{bottom:1039.940700px;}
.y29{bottom:1070.769450px;}
.y89{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.y179{bottom:1086.069600px;}
.h14{height:26.226562px;}
.h2{height:30.597656px;}
.h6{height:34.945312px;}
.h7{height:34.968750px;}
.hc{height:37.154297px;}
.h13{height:40.607169px;}
.h9{height:43.681641px;}
.h8{height:43.687500px;}
.h16{height:43.695937px;}
.h15{height:43.696538px;}
.ha{height:43.710938px;}
.hf{height:43.725338px;}
.h1a{height:43.725938px;}
.he{height:46.723162px;}
.h17{height:46.781362px;}
.h19{height:46.807762px;}
.h18{height:46.810162px;}
.hd{height:46.822163px;}
.h5{height:48.082031px;}
.h3{height:52.417969px;}
.hb{height:54.609375px;}
.h4{height:61.154297px;}
.h12{height:65.630963px;}
.h10{height:83.443538px;}
.h11{height:103.699584px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:67.234200px;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x3f{left:106.295400px;}
.xb{left:110.555400px;}
.x16{left:112.274850px;}
.x17{left:122.990850px;}
.x41{left:127.559100px;}
.x5{left:131.816400px;}
.x14{left:136.067700px;}
.xc{left:144.725400px;}
.x15{left:146.963100px;}
.x1d{left:158.159100px;}
.x3{left:161.563200px;}
.x1e{left:168.627000px;}
.x38{left:180.715350px;}
.x3a{left:182.826000px;}
.x18{left:185.457750px;}
.x3e{left:194.285400px;}
.x19{left:196.173750px;}
.x37{left:211.105350px;}
.x4{left:212.876400px;}
.x2e{left:235.269450px;}
.x25{left:239.019450px;}
.x2f{left:245.737350px;}
.x26{left:249.487350px;}
.x1a{left:257.938800px;}
.x1f{left:268.095600px;}
.x29{left:272.583450px;}
.x1b{left:274.779000px;}
.x20{left:278.563650px;}
.x2a{left:283.213650px;}
.x27{left:285.293700px;}
.x30{left:286.963650px;}
.x2b{left:290.713650px;}
.x1c{left:300.842400px;}
.x31{left:308.218500px;}
.x2c{left:311.968500px;}
.x32{left:315.718500px;}
.x28{left:317.388450px;}
.x2d{left:319.468500px;}
.x21{left:320.895900px;}
.x33{left:327.354750px;}
.x22{left:331.363950px;}
.x23{left:354.454500px;}
.x24{left:374.457750px;}
.x12{left:395.832750px;}
.x39{left:402.150000px;}
.x13{left:406.669050px;}
.x9{left:455.041500px;}
.xd{left:457.100400px;}
.x34{left:478.348650px;}
.x6{left:480.476400px;}
.x40{left:486.803400px;}
.xe{left:491.103600px;}
.x42{left:508.055100px;}
.x35{left:512.366400px;}
.x7{left:514.481400px;}
.xf{left:544.570650px;}
.x3c{left:579.428700px;}
.x3d{left:596.965350px;}
.x11{left:663.492300px;}
.x2{left:704.338650px;}
.x10{left:731.312100px;}
.x36{left:752.571900px;}
@media print{
.va{vertical-align:-18.307200pt;}
.vb{vertical-align:-5.232000pt;}
.v3{vertical-align:-3.018133pt;}
.v9{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.440000pt;}
.v7{vertical-align:15.002667pt;}
.v8{vertical-align:16.718933pt;}
.v2{vertical-align:18.253867pt;}
.v5{vertical-align:30.564267pt;}
.v4{vertical-align:35.317867pt;}
.v6{vertical-align:68.880533pt;}
.ls6d{letter-spacing:-3.157333pt;}
.lsa8{letter-spacing:-2.346667pt;}
.ls6b{letter-spacing:-1.973333pt;}
.ls6c{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.533333pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls81{letter-spacing:-0.213333pt;}
.ls78{letter-spacing:-0.170667pt;}
.ls61{letter-spacing:-0.160000pt;}
.ls45{letter-spacing:-0.106667pt;}
.ls9a{letter-spacing:-0.085333pt;}
.ls64{letter-spacing:-0.053333pt;}
.ls1e{letter-spacing:-0.042667pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.000533pt;}
.ls57{letter-spacing:0.001067pt;}
.ls30{letter-spacing:0.004800pt;}
.ls5c{letter-spacing:0.005333pt;}
.ls4b{letter-spacing:0.008533pt;}
.ls5d{letter-spacing:0.033600pt;}
.ls70{letter-spacing:0.042667pt;}
.ls76{letter-spacing:0.053333pt;}
.ls55{letter-spacing:0.080533pt;}
.ls16{letter-spacing:0.106667pt;}
.ls91{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls73{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.213333pt;}
.ls8b{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls85{letter-spacing:0.341333pt;}
.ls77{letter-spacing:0.373333pt;}
.ls8d{letter-spacing:0.384000pt;}
.ls60{letter-spacing:0.416000pt;}
.ls2f{letter-spacing:0.421867pt;}
.ls21{letter-spacing:0.426667pt;}
.ls48{letter-spacing:0.450667pt;}
.ls2{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls72{letter-spacing:0.512000pt;}
.ls34{letter-spacing:0.533333pt;}
.ls63{letter-spacing:0.544000pt;}
.ls8a{letter-spacing:0.554667pt;}
.ls37{letter-spacing:0.586667pt;}
.ls9f{letter-spacing:0.597333pt;}
.ls75{letter-spacing:0.640000pt;}
.ls84{letter-spacing:0.682667pt;}
.ls19{letter-spacing:0.693333pt;}
.ls96{letter-spacing:0.725333pt;}
.ls28{letter-spacing:0.746667pt;}
.ls92{letter-spacing:0.768000pt;}
.ls47{letter-spacing:0.785600pt;}
.ls6a{letter-spacing:0.800000pt;}
.ls83{letter-spacing:0.810667pt;}
.lsb{letter-spacing:0.853333pt;}
.ls99{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:0.906667pt;}
.ls79{letter-spacing:0.938667pt;}
.ls22{letter-spacing:0.960000pt;}
.lsa9{letter-spacing:0.981333pt;}
.ls6{letter-spacing:1.013333pt;}
.ls9d{letter-spacing:1.024000pt;}
.ls6e{letter-spacing:1.061867pt;}
.ls3{letter-spacing:1.066667pt;}
.ls8f{letter-spacing:1.109333pt;}
.ls5{letter-spacing:1.120000pt;}
.ls27{letter-spacing:1.173333pt;}
.ls18{letter-spacing:1.226667pt;}
.ls1{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.316800pt;}
.ls95{letter-spacing:1.322667pt;}
.ls8{letter-spacing:1.333333pt;}
.ls15{letter-spacing:1.386667pt;}
.ls97{letter-spacing:1.408000pt;}
.ls7f{letter-spacing:1.440000pt;}
.ls0{letter-spacing:1.450667pt;}
.ls4e{letter-spacing:1.493333pt;}
.ls3d{letter-spacing:1.530133pt;}
.ls3f{letter-spacing:1.530667pt;}
.ls40{letter-spacing:1.536000pt;}
.ls36{letter-spacing:1.546667pt;}
.ls88{letter-spacing:1.578667pt;}
.ls24{letter-spacing:1.600000pt;}
.ls56{letter-spacing:1.653333pt;}
.ls2b{letter-spacing:1.706667pt;}
.ls89{letter-spacing:1.749333pt;}
.ls4{letter-spacing:1.760000pt;}
.ls39{letter-spacing:1.813333pt;}
.lsa5{letter-spacing:1.834667pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls8e{letter-spacing:1.877333pt;}
.ls3a{letter-spacing:1.973333pt;}
.ls98{letter-spacing:2.005333pt;}
.ls4a{letter-spacing:2.025600pt;}
.ls71{letter-spacing:2.048000pt;}
.ls20{letter-spacing:2.080000pt;}
.lsc{letter-spacing:2.133333pt;}
.lsa3{letter-spacing:2.176000pt;}
.ls7{letter-spacing:2.186667pt;}
.lsa4{letter-spacing:2.218667pt;}
.lsd{letter-spacing:2.240000pt;}
.ls8c{letter-spacing:2.261333pt;}
.ls23{letter-spacing:2.293333pt;}
.ls93{letter-spacing:2.304000pt;}
.lsa{letter-spacing:2.346667pt;}
.ls94{letter-spacing:2.389333pt;}
.ls7b{letter-spacing:2.400000pt;}
.ls9b{letter-spacing:2.432000pt;}
.ls6f{letter-spacing:2.453333pt;}
.ls86{letter-spacing:2.474667pt;}
.ls62{letter-spacing:2.506667pt;}
.ls3c{letter-spacing:2.560000pt;}
.ls41{letter-spacing:2.578667pt;}
.ls3e{letter-spacing:2.579200pt;}
.lsa0{letter-spacing:2.602667pt;}
.ls29{letter-spacing:2.613333pt;}
.ls35{letter-spacing:2.666667pt;}
.ls5e{letter-spacing:2.720000pt;}
.lsa6{letter-spacing:2.773333pt;}
.ls11{letter-spacing:2.826667pt;}
.lsa1{letter-spacing:2.858667pt;}
.ls7d{letter-spacing:2.880000pt;}
.ls7a{letter-spacing:2.933333pt;}
.ls31{letter-spacing:2.986667pt;}
.ls54{letter-spacing:3.040000pt;}
.ls14{letter-spacing:3.093333pt;}
.ls13{letter-spacing:3.146667pt;}
.lsa2{letter-spacing:3.157333pt;}
.ls2c{letter-spacing:3.200000pt;}
.ls5f{letter-spacing:3.253333pt;}
.lsa7{letter-spacing:3.285333pt;}
.ls25{letter-spacing:3.306667pt;}
.ls32{letter-spacing:3.360000pt;}
.ls87{letter-spacing:3.370667pt;}
.ls44{letter-spacing:3.413333pt;}
.ls90{letter-spacing:3.456000pt;}
.ls26{letter-spacing:3.466667pt;}
.ls7c{letter-spacing:3.520000pt;}
.ls12{letter-spacing:3.626667pt;}
.ls65{letter-spacing:3.733333pt;}
.ls82{letter-spacing:3.840000pt;}
.ls4f{letter-spacing:3.893333pt;}
.ls9c{letter-spacing:3.925333pt;}
.ls68{letter-spacing:3.946667pt;}
.ls67{letter-spacing:4.000000pt;}
.ls2d{letter-spacing:4.053333pt;}
.ls33{letter-spacing:4.106667pt;}
.ls66{letter-spacing:4.320000pt;}
.ls80{letter-spacing:4.373333pt;}
.ls7e{letter-spacing:4.480000pt;}
.ls9e{letter-spacing:4.522667pt;}
.ls1a{letter-spacing:4.533333pt;}
.ls58{letter-spacing:4.906667pt;}
.ls5a{letter-spacing:5.226667pt;}
.ls59{letter-spacing:5.333333pt;}
.ls42{letter-spacing:5.493333pt;}
.ls4c{letter-spacing:5.564800pt;}
.ls9{letter-spacing:5.600000pt;}
.ls74{letter-spacing:6.186667pt;}
.ls69{letter-spacing:8.480000pt;}
.ls53{letter-spacing:8.800000pt;}
.ls49{letter-spacing:20.116267pt;}
.ls50{letter-spacing:144.122667pt;}
.ls51{letter-spacing:298.266667pt;}
.ls52{letter-spacing:311.600000pt;}
.ls4d{letter-spacing:323.472533pt;}
.ls5b{letter-spacing:365.201600pt;}
.ls43{letter-spacing:520.154667pt;}
.ws3a{word-spacing:-64.000000pt;}
.ws34{word-spacing:-53.333333pt;}
.ws36{word-spacing:-19.733333pt;}
.ws16{word-spacing:-17.386667pt;}
.ws6c{word-spacing:-17.280000pt;}
.ws70{word-spacing:-17.226667pt;}
.ws35{word-spacing:-14.933333pt;}
.ws14{word-spacing:-14.826667pt;}
.ws37{word-spacing:-14.666667pt;}
.wsa8{word-spacing:-14.037333pt;}
.ws84{word-spacing:-13.440000pt;}
.ws88{word-spacing:-12.757333pt;}
.ws18{word-spacing:-12.602667pt;}
.wsa5{word-spacing:-12.544000pt;}
.wsa4{word-spacing:-12.501333pt;}
.ws85{word-spacing:-12.117333pt;}
.ws87{word-spacing:-12.074667pt;}
.wsa6{word-spacing:-12.032000pt;}
.ws86{word-spacing:-11.904000pt;}
.ws83{word-spacing:-11.861333pt;}
.ws39{word-spacing:-11.616000pt;}
.ws17{word-spacing:-10.432000pt;}
.wsa7{word-spacing:-9.514667pt;}
.ws38{word-spacing:-9.440000pt;}
.ws32{word-spacing:-9.312000pt;}
.ws15{word-spacing:-8.896000pt;}
.ws66{word-spacing:-6.186667pt;}
.wsb{word-spacing:-5.600000pt;}
.ws2f{word-spacing:-5.493333pt;}
.ws13{word-spacing:-4.533333pt;}
.ws33{word-spacing:-4.385067pt;}
.ws89{word-spacing:-3.840000pt;}
.ws54{word-spacing:-3.733333pt;}
.ws76{word-spacing:-3.520000pt;}
.ws4b{word-spacing:-3.466667pt;}
.ws20{word-spacing:-3.413333pt;}
.ws2b{word-spacing:-3.360000pt;}
.ws1e{word-spacing:-3.306667pt;}
.wsb3{word-spacing:-3.285333pt;}
.ws7a{word-spacing:-2.880000pt;}
.ws82{word-spacing:-2.666667pt;}
.ws21{word-spacing:-2.613333pt;}
.wsaa{word-spacing:-2.602667pt;}
.ws2e{word-spacing:-2.560000pt;}
.ws3c{word-spacing:-2.506667pt;}
.ws1{word-spacing:-2.368000pt;}
.ws51{word-spacing:-2.346667pt;}
.ws68{word-spacing:-2.293333pt;}
.ws26{word-spacing:-2.240000pt;}
.wsb0{word-spacing:-2.218667pt;}
.ws8a{word-spacing:-2.186667pt;}
.wsad{word-spacing:-2.176000pt;}
.ws27{word-spacing:-2.080000pt;}
.ws63{word-spacing:-2.048000pt;}
.ws9e{word-spacing:-2.005333pt;}
.ws1f{word-spacing:-1.973333pt;}
.ws98{word-spacing:-1.877333pt;}
.wsb2{word-spacing:-1.834667pt;}
.ws55{word-spacing:-1.813333pt;}
.ws79{word-spacing:-1.760000pt;}
.ws94{word-spacing:-1.749333pt;}
.ws25{word-spacing:-1.706667pt;}
.ws4d{word-spacing:-1.600000pt;}
.ws3b{word-spacing:-1.546667pt;}
.wsa1{word-spacing:-1.493333pt;}
.ws7f{word-spacing:-1.386667pt;}
.ws12{word-spacing:-1.226667pt;}
.ws77{word-spacing:-1.066667pt;}
.ws48{word-spacing:-1.013333pt;}
.wsae{word-spacing:-0.981333pt;}
.ws3f{word-spacing:-0.960000pt;}
.ws6d{word-spacing:-0.938667pt;}
.ws23{word-spacing:-0.906667pt;}
.wsb5{word-spacing:-0.896000pt;}
.ws81{word-spacing:-0.853333pt;}
.ws5e{word-spacing:-0.800000pt;}
.ws9a{word-spacing:-0.768000pt;}
.ws3e{word-spacing:-0.746667pt;}
.ws22{word-spacing:-0.693333pt;}
.wsa2{word-spacing:-0.682667pt;}
.wsa9{word-spacing:-0.597333pt;}
.wsaf{word-spacing:-0.554667pt;}
.ws50{word-spacing:-0.533333pt;}
.ws64{word-spacing:-0.512000pt;}
.ws53{word-spacing:-0.480000pt;}
.ws93{word-spacing:-0.469333pt;}
.ws65{word-spacing:-0.426667pt;}
.ws97{word-spacing:-0.384000pt;}
.ws72{word-spacing:-0.373333pt;}
.ws8d{word-spacing:-0.341333pt;}
.ws1a{word-spacing:-0.320000pt;}
.ws61{word-spacing:-0.266667pt;}
.ws95{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.213333pt;}
.ws6e{word-spacing:-0.170667pt;}
.ws10{word-spacing:-0.160000pt;}
.ws99{word-spacing:-0.128000pt;}
.ws5f{word-spacing:-0.106667pt;}
.ws6a{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.053333pt;}
.wsb1{word-spacing:0.085333pt;}
.ws42{word-spacing:0.106667pt;}
.ws9d{word-spacing:0.128000pt;}
.ws58{word-spacing:0.160000pt;}
.ws47{word-spacing:0.213333pt;}
.ws9f{word-spacing:0.256000pt;}
.ws30{word-spacing:0.266667pt;}
.ws4c{word-spacing:0.320000pt;}
.ws8c{word-spacing:0.384000pt;}
.ws24{word-spacing:0.426667pt;}
.wsd{word-spacing:0.586667pt;}
.ws90{word-spacing:0.597333pt;}
.ws7c{word-spacing:0.640000pt;}
.ws69{word-spacing:0.693333pt;}
.ws60{word-spacing:0.768000pt;}
.ws5c{word-spacing:0.853333pt;}
.ws62{word-spacing:0.938667pt;}
.ws56{word-spacing:1.013333pt;}
.ws8e{word-spacing:1.024000pt;}
.ws1d{word-spacing:1.120000pt;}
.wsf{word-spacing:1.173333pt;}
.ws7{word-spacing:1.194667pt;}
.wsa0{word-spacing:1.408000pt;}
.ws73{word-spacing:1.440000pt;}
.wsa3{word-spacing:1.621333pt;}
.ws67{word-spacing:1.653333pt;}
.ws80{word-spacing:1.706667pt;}
.ws57{word-spacing:1.920000pt;}
.ws2c{word-spacing:1.973333pt;}
.ws5b{word-spacing:2.026667pt;}
.ws6f{word-spacing:2.133333pt;}
.ws7e{word-spacing:2.186667pt;}
.ws92{word-spacing:2.218667pt;}
.ws71{word-spacing:2.293333pt;}
.ws19{word-spacing:2.346667pt;}
.ws6b{word-spacing:2.400000pt;}
.wsac{word-spacing:2.474667pt;}
.ws75{word-spacing:2.613333pt;}
.ws7d{word-spacing:2.666667pt;}
.ws28{word-spacing:2.720000pt;}
.wsb4{word-spacing:2.773333pt;}
.ws96{word-spacing:2.858667pt;}
.ws91{word-spacing:3.072000pt;}
.ws40{word-spacing:3.093333pt;}
.ws3{word-spacing:3.157333pt;}
.ws46{word-spacing:3.200000pt;}
.ws9c{word-spacing:3.242667pt;}
.ws52{word-spacing:3.360000pt;}
.wsab{word-spacing:3.456000pt;}
.ws8{word-spacing:3.498667pt;}
.wse{word-spacing:3.520000pt;}
.ws9b{word-spacing:3.584000pt;}
.ws5a{word-spacing:3.626667pt;}
.ws1b{word-spacing:3.680000pt;}
.ws8f{word-spacing:3.797333pt;}
.ws6{word-spacing:3.882667pt;}
.ws2{word-spacing:3.925333pt;}
.ws11{word-spacing:3.946667pt;}
.ws8b{word-spacing:4.000000pt;}
.ws5{word-spacing:4.053333pt;}
.ws74{word-spacing:4.106667pt;}
.ws59{word-spacing:4.213333pt;}
.ws5d{word-spacing:4.426667pt;}
.ws4{word-spacing:4.453333pt;}
.ws29{word-spacing:4.586667pt;}
.ws3d{word-spacing:4.640000pt;}
.ws2a{word-spacing:4.693333pt;}
.ws7b{word-spacing:4.746667pt;}
.ws78{word-spacing:4.800000pt;}
.wsa{word-spacing:4.853333pt;}
.ws9{word-spacing:4.906667pt;}
.ws1c{word-spacing:7.253333pt;}
.ws45{word-spacing:21.493333pt;}
.ws2d{word-spacing:251.733333pt;}
.ws49{word-spacing:300.053333pt;}
.ws43{word-spacing:357.546667pt;}
.ws44{word-spacing:370.880000pt;}
.ws41{word-spacing:382.720000pt;}
.ws31{word-spacing:454.986667pt;}
.ws4e{word-spacing:505.856000pt;}
.ws4f{word-spacing:827.776000pt;}
._f{margin-left:-2576.112000pt;}
._12{margin-left:-2554.941333pt;}
._10{margin-left:-9.013333pt;}
._7{margin-left:-5.840000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.114667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.008000pt;}
._4{width:1.237333pt;}
._a{width:2.346667pt;}
._5{width:3.328000pt;}
._9{width:4.533333pt;}
._8{width:5.600000pt;}
._b{width:6.714667pt;}
._d{width:8.213333pt;}
._c{width:9.440000pt;}
._6{width:10.448000pt;}
._1a{width:11.573333pt;}
._11{width:85.912533pt;}
._e{width:192.405333pt;}
._13{width:317.738667pt;}
._17{width:521.685333pt;}
._15{width:550.954667pt;}
._14{width:639.061333pt;}
._18{width:678.186667pt;}
._16{width:712.192000pt;}
._19{width:850.432000pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:54.156114pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y197{bottom:73.597067pt;}
.y178{bottom:73.981200pt;}
.y15b{bottom:74.101200pt;}
.y2a{bottom:74.216800pt;}
.y5b{bottom:74.234533pt;}
.y13f{bottom:75.117200pt;}
.y145{bottom:75.138533pt;}
.y14c{bottom:75.200533pt;}
.y130{bottom:82.403200pt;}
.y1d7{bottom:84.389600pt;}
.y196{bottom:86.930400pt;}
.ycd{bottom:87.380800pt;}
.y13e{bottom:89.111867pt;}
.y144{bottom:89.133200pt;}
.y14b{bottom:89.195200pt;}
.y177{bottom:89.981200pt;}
.y15a{bottom:90.101200pt;}
.y5a{bottom:90.234533pt;}
.y88{bottom:92.243067pt;}
.y12f{bottom:96.845867pt;}
.y1d6{bottom:97.722933pt;}
.y195{bottom:100.263733pt;}
.y13d{bottom:103.106533pt;}
.y143{bottom:103.127867pt;}
.ycc{bottom:103.380800pt;}
.y176{bottom:105.981200pt;}
.y159{bottom:106.101200pt;}
.y59{bottom:106.234533pt;}
.y14{bottom:108.011733pt;}
.y1d5{bottom:111.056267pt;}
.y12e{bottom:111.288533pt;}
.y194{bottom:113.597067pt;}
.y87{bottom:115.802000pt;}
.y13c{bottom:117.101200pt;}
.y142{bottom:117.122533pt;}
.ycb{bottom:119.380800pt;}
.y175{bottom:121.981200pt;}
.y158{bottom:122.101200pt;}
.y58{bottom:122.234533pt;}
.y1d4{bottom:124.389600pt;}
.y12d{bottom:125.731200pt;}
.y193{bottom:126.930400pt;}
.y13b{bottom:131.095867pt;}
.y141{bottom:131.117200pt;}
.y86{bottom:131.802000pt;}
.yca{bottom:135.380800pt;}
.yfa{bottom:137.672800pt;}
.y1d3{bottom:137.722933pt;}
.y174{bottom:137.981200pt;}
.y157{bottom:138.101200pt;}
.y57{bottom:138.234533pt;}
.y12c{bottom:140.173867pt;}
.y192{bottom:140.263733pt;}
.y13a{bottom:145.090533pt;}
.y140{bottom:145.111867pt;}
.y85{bottom:147.802000pt;}
.y1d2{bottom:151.056267pt;}
.yc9{bottom:151.380800pt;}
.y191{bottom:153.597067pt;}
.yf9{bottom:153.672800pt;}
.y173{bottom:153.981200pt;}
.y156{bottom:154.101200pt;}
.y56{bottom:154.234533pt;}
.y26{bottom:163.269867pt;}
.y84{bottom:163.807333pt;}
.y1d1{bottom:164.389600pt;}
.y190{bottom:166.930400pt;}
.yc8{bottom:167.380800pt;}
.y12b{bottom:168.184533pt;}
.yf8{bottom:169.672800pt;}
.y155{bottom:170.101200pt;}
.y55{bottom:170.234533pt;}
.y1d0{bottom:177.722933pt;}
.y25{bottom:179.269867pt;}
.y18f{bottom:180.263733pt;}
.yf7{bottom:185.672800pt;}
.y172{bottom:185.981200pt;}
.y154{bottom:186.101200pt;}
.y54{bottom:186.234533pt;}
.y1cf{bottom:191.056267pt;}
.y83{bottom:191.140667pt;}
.y82{bottom:191.143867pt;}
.y18e{bottom:193.597067pt;}
.y24{bottom:195.269867pt;}
.y12a{bottom:199.144533pt;}
.yc7{bottom:199.380800pt;}
.yf6{bottom:201.672800pt;}
.y171{bottom:201.981200pt;}
.y153{bottom:202.101200pt;}
.y53{bottom:202.234533pt;}
.y1ce{bottom:204.389600pt;}
.y18d{bottom:206.930400pt;}
.y23{bottom:211.269867pt;}
.y129{bottom:216.477867pt;}
.yf5{bottom:217.672800pt;}
.y1cd{bottom:217.722933pt;}
.y170{bottom:217.981200pt;}
.y152{bottom:218.101200pt;}
.y81{bottom:218.479200pt;}
.y18c{bottom:220.263733pt;}
.y22{bottom:227.269867pt;}
.y1cc{bottom:231.056267pt;}
.y18b{bottom:233.597067pt;}
.yf4{bottom:233.672800pt;}
.y16f{bottom:233.981200pt;}
.y151{bottom:234.101200pt;}
.y52{bottom:234.234533pt;}
.y80{bottom:234.479200pt;}
.yc4{bottom:239.574400pt;}
.yc3{bottom:240.522667pt;}
.yc5{bottom:240.526267pt;}
.y21{bottom:243.269867pt;}
.y1cb{bottom:244.389600pt;}
.y18a{bottom:246.930400pt;}
.ybf{bottom:247.342800pt;}
.yc0{bottom:247.634133pt;}
.ybe{bottom:247.637467pt;}
.yf3{bottom:249.672933pt;}
.y16e{bottom:249.981200pt;}
.y150{bottom:250.101200pt;}
.y7f{bottom:250.479200pt;}
.yc6{bottom:252.210933pt;}
.yc2{bottom:256.466800pt;}
.yc1{bottom:257.418667pt;}
.y1ca{bottom:257.722933pt;}
.y20{bottom:259.269867pt;}
.y132{bottom:259.491200pt;}
.y189{bottom:260.263733pt;}
.yf2{bottom:265.672933pt;}
.y16d{bottom:265.981200pt;}
.y51{bottom:266.101200pt;}
.y7e{bottom:266.479200pt;}
.y1c9{bottom:271.056267pt;}
.y131{bottom:273.485867pt;}
.y188{bottom:273.597067pt;}
.y1f{bottom:275.269867pt;}
.y16c{bottom:281.981200pt;}
.y50{bottom:282.101200pt;}
.y7d{bottom:282.479200pt;}
.y1c8{bottom:284.389600pt;}
.y187{bottom:286.930400pt;}
.ybb{bottom:288.351200pt;}
.yba{bottom:289.299467pt;}
.ybc{bottom:289.303067pt;}
.yf1{bottom:291.098533pt;}
.y1e{bottom:291.269867pt;}
.yb6{bottom:296.119733pt;}
.yb7{bottom:296.411067pt;}
.yb5{bottom:296.414267pt;}
.y1c7{bottom:297.722933pt;}
.y16b{bottom:297.981200pt;}
.y4f{bottom:298.101200pt;}
.y7c{bottom:298.501200pt;}
.y186{bottom:300.263733pt;}
.ybd{bottom:300.987867pt;}
.yb9{bottom:305.243600pt;}
.yb8{bottom:306.195467pt;}
.y1d{bottom:307.269867pt;}
.y1c6{bottom:311.056267pt;}
.y185{bottom:313.597067pt;}
.y16a{bottom:313.981200pt;}
.y4e{bottom:314.101200pt;}
.yf0{bottom:315.991067pt;}
.y1c{bottom:323.269867pt;}
.y1c5{bottom:324.389600pt;}
.y184{bottom:326.930400pt;}
.yb4{bottom:328.801200pt;}
.y169{bottom:329.981200pt;}
.y4d{bottom:330.101200pt;}
.y7b{bottom:330.501200pt;}
.yef{bottom:331.991067pt;}
.y1c4{bottom:337.722933pt;}
.y1b{bottom:339.269867pt;}
.y183{bottom:340.263733pt;}
.y168{bottom:345.981200pt;}
.y4c{bottom:346.101200pt;}
.yee{bottom:347.991067pt;}
.y1c3{bottom:351.056267pt;}
.yb2{bottom:352.833600pt;}
.y182{bottom:353.597067pt;}
.y1a{bottom:355.269867pt;}
.yb0{bottom:360.896533pt;}
.yb1{bottom:361.187867pt;}
.yaf{bottom:361.191200pt;}
.y167{bottom:361.981200pt;}
.y4b{bottom:362.101200pt;}
.y7a{bottom:362.367867pt;}
.yed{bottom:363.991067pt;}
.y1c2{bottom:364.389600pt;}
.yb3{bottom:365.764667pt;}
.y181{bottom:366.930400pt;}
.y19{bottom:371.269867pt;}
.y1c1{bottom:377.722933pt;}
.y166{bottom:377.981200pt;}
.y4a{bottom:378.101200pt;}
.y79{bottom:378.367867pt;}
.yec{bottom:379.991067pt;}
.y180{bottom:380.263733pt;}
.y18{bottom:387.269867pt;}
.y1c0{bottom:391.056267pt;}
.yae{bottom:393.585467pt;}
.y17f{bottom:393.597067pt;}
.y165{bottom:393.981200pt;}
.y49{bottom:394.101200pt;}
.y78{bottom:394.367867pt;}
.yeb{bottom:395.991067pt;}
.y17{bottom:403.269867pt;}
.y1bf{bottom:404.389600pt;}
.y17e{bottom:406.930400pt;}
.yad{bottom:409.585467pt;}
.y164{bottom:409.981200pt;}
.y48{bottom:410.101200pt;}
.y77{bottom:410.367867pt;}
.yea{bottom:411.991067pt;}
.y1be{bottom:417.722933pt;}
.y16{bottom:419.269867pt;}
.y17d{bottom:420.263733pt;}
.yac{bottom:425.585467pt;}
.y139{bottom:425.794533pt;}
.y163{bottom:425.981200pt;}
.y47{bottom:426.101200pt;}
.y76{bottom:426.367867pt;}
.ye9{bottom:427.991067pt;}
.y1bd{bottom:431.056267pt;}
.y17c{bottom:433.597067pt;}
.y27{bottom:435.269867pt;}
.y138{bottom:439.789200pt;}
.yab{bottom:441.585467pt;}
.y162{bottom:441.981200pt;}
.y14a{bottom:442.101200pt;}
.y75{bottom:442.367867pt;}
.ye8{bottom:443.991067pt;}
.y1bc{bottom:444.389600pt;}
.y17b{bottom:446.930400pt;}
.y15{bottom:451.269867pt;}
.y137{bottom:453.783867pt;}
.y1bb{bottom:457.722933pt;}
.y161{bottom:457.981200pt;}
.y46{bottom:458.101200pt;}
.y74{bottom:458.367867pt;}
.ye7{bottom:459.991067pt;}
.y17a{bottom:460.263733pt;}
.y136{bottom:467.778533pt;}
.y1ba{bottom:471.056267pt;}
.yaa{bottom:473.585467pt;}
.y160{bottom:473.981200pt;}
.y149{bottom:474.101200pt;}
.y73{bottom:474.367867pt;}
.ye6{bottom:475.991067pt;}
.y135{bottom:481.773200pt;}
.y1b9{bottom:484.389600pt;}
.y133{bottom:488.988133pt;}
.y45{bottom:489.981200pt;}
.y148{bottom:490.101200pt;}
.y72{bottom:490.367867pt;}
.ye5{bottom:491.991067pt;}
.y134{bottom:495.767867pt;}
.y1b8{bottom:497.722933pt;}
.y14f{bottom:504.021867pt;}
.ya9{bottom:505.452133pt;}
.y15f{bottom:505.981200pt;}
.y147{bottom:506.101200pt;}
.y71{bottom:506.367867pt;}
.ye4{bottom:507.991067pt;}
.y1b7{bottom:511.056267pt;}
.y14e{bottom:518.016533pt;}
.y13{bottom:518.967600pt;}
.ya8{bottom:521.452133pt;}
.y15e{bottom:521.981200pt;}
.y146{bottom:522.101200pt;}
.y70{bottom:522.367867pt;}
.ye3{bottom:523.991067pt;}
.y1b6{bottom:524.389600pt;}
.y14d{bottom:532.011200pt;}
.ya7{bottom:537.452133pt;}
.y1f5{bottom:537.722933pt;}
.y1b5{bottom:537.725067pt;}
.y15d{bottom:537.981200pt;}
.y44{bottom:538.101200pt;}
.y110{bottom:538.237867pt;}
.y6f{bottom:538.367867pt;}
.ye2{bottom:539.991067pt;}
.y12{bottom:548.172933pt;}
.y1f4{bottom:551.056267pt;}
.y1b4{bottom:551.058400pt;}
.ya6{bottom:553.452133pt;}
.y43{bottom:554.101200pt;}
.y128{bottom:554.117867pt;}
.y10f{bottom:554.237867pt;}
.y6e{bottom:554.367867pt;}
.ye1{bottom:555.991067pt;}
.y11{bottom:561.506267pt;}
.y1f3{bottom:564.389600pt;}
.y1b3{bottom:564.391733pt;}
.y15c{bottom:569.981200pt;}
.y42{bottom:570.101200pt;}
.y127{bottom:570.117867pt;}
.y10e{bottom:570.237867pt;}
.ye0{bottom:571.991067pt;}
.y10{bottom:574.839600pt;}
.y1f2{bottom:577.722933pt;}
.y1b2{bottom:577.725067pt;}
.ya4{bottom:577.774933pt;}
.ya5{bottom:581.659067pt;}
.ya3{bottom:585.838800pt;}
.ya2{bottom:585.842133pt;}
.y41{bottom:586.101200pt;}
.y126{bottom:586.117867pt;}
.y10d{bottom:586.237867pt;}
.y6d{bottom:586.367867pt;}
.ydf{bottom:587.991067pt;}
.yf{bottom:588.172933pt;}
.y1f1{bottom:591.056267pt;}
.y1b1{bottom:591.058400pt;}
.ye{bottom:601.506267pt;}
.y40{bottom:602.101200pt;}
.y125{bottom:602.117867pt;}
.y10c{bottom:602.237867pt;}
.yde{bottom:603.991067pt;}
.y1f0{bottom:604.389600pt;}
.y1b0{bottom:604.391733pt;}
.yd{bottom:614.839600pt;}
.y1ef{bottom:617.722933pt;}
.y1af{bottom:617.725067pt;}
.y3f{bottom:618.101200pt;}
.y124{bottom:618.117867pt;}
.ya1{bottom:618.227333pt;}
.y6c{bottom:618.234533pt;}
.y10b{bottom:618.237867pt;}
.ydd{bottom:619.991067pt;}
.yc{bottom:628.172933pt;}
.y1ee{bottom:631.056267pt;}
.y1ae{bottom:631.058400pt;}
.y3e{bottom:634.101200pt;}
.y123{bottom:634.117867pt;}
.ya0{bottom:634.227333pt;}
.y6b{bottom:634.234533pt;}
.y10a{bottom:634.237867pt;}
.ydc{bottom:635.991067pt;}
.yb{bottom:641.506267pt;}
.y1ed{bottom:644.389600pt;}
.y1ad{bottom:644.391733pt;}
.y3d{bottom:650.101200pt;}
.y122{bottom:650.117867pt;}
.y9f{bottom:650.227333pt;}
.y6a{bottom:650.234533pt;}
.y109{bottom:650.237867pt;}
.ydb{bottom:651.991067pt;}
.ya{bottom:654.839600pt;}
.y1ec{bottom:657.722933pt;}
.y1ac{bottom:657.725067pt;}
.y3c{bottom:666.101200pt;}
.y121{bottom:666.117867pt;}
.y9c{bottom:666.227333pt;}
.y9e{bottom:666.230533pt;}
.y69{bottom:666.234533pt;}
.y108{bottom:666.237867pt;}
.y9d{bottom:667.182400pt;}
.yda{bottom:667.991067pt;}
.y1eb{bottom:671.056267pt;}
.y1ab{bottom:671.058400pt;}
.y3b{bottom:682.101200pt;}
.y120{bottom:682.117867pt;}
.y9b{bottom:682.227333pt;}
.y68{bottom:682.234533pt;}
.y107{bottom:682.237867pt;}
.yd9{bottom:683.994267pt;}
.y1ea{bottom:684.389600pt;}
.y1aa{bottom:684.391733pt;}
.y1e9{bottom:697.722933pt;}
.y1a9{bottom:697.725067pt;}
.y3a{bottom:698.101200pt;}
.y11f{bottom:698.117867pt;}
.y9{bottom:698.167600pt;}
.y9a{bottom:698.227333pt;}
.y98{bottom:698.230533pt;}
.y67{bottom:698.234533pt;}
.y106{bottom:698.237867pt;}
.y99{bottom:699.182400pt;}
.yd8{bottom:699.994267pt;}
.y8{bottom:710.936000pt;}
.y1e8{bottom:711.056267pt;}
.y1a8{bottom:711.058400pt;}
.y39{bottom:714.101200pt;}
.y11e{bottom:714.117867pt;}
.y97{bottom:714.230533pt;}
.y66{bottom:714.234533pt;}
.y95{bottom:714.234667pt;}
.y96{bottom:715.182400pt;}
.yd7{bottom:715.994267pt;}
.y1e7{bottom:724.389600pt;}
.y1a7{bottom:724.391733pt;}
.y38{bottom:730.101200pt;}
.y11d{bottom:730.117867pt;}
.y65{bottom:730.234533pt;}
.y94{bottom:730.234667pt;}
.y105{bottom:730.237867pt;}
.yd6{bottom:731.994267pt;}
.y7{bottom:735.106267pt;}
.y1e6{bottom:737.722933pt;}
.y1a6{bottom:737.725067pt;}
.y37{bottom:746.101200pt;}
.y11c{bottom:746.117867pt;}
.y64{bottom:746.234533pt;}
.y93{bottom:746.234667pt;}
.yd5{bottom:747.994267pt;}
.y1e5{bottom:751.056267pt;}
.y1a5{bottom:751.058400pt;}
.y36{bottom:762.101200pt;}
.y104{bottom:762.104533pt;}
.y11b{bottom:762.117867pt;}
.y63{bottom:762.234533pt;}
.y92{bottom:762.234667pt;}
.yd4{bottom:763.994267pt;}
.y1e4{bottom:764.389600pt;}
.y1a4{bottom:764.391733pt;}
.y6{bottom:765.772933pt;}
.y1e3{bottom:777.722933pt;}
.y1a3{bottom:777.725067pt;}
.y35{bottom:778.101200pt;}
.y103{bottom:778.104533pt;}
.y11a{bottom:778.117867pt;}
.y62{bottom:778.234533pt;}
.y5{bottom:783.004267pt;}
.y1e2{bottom:791.056267pt;}
.y1a2{bottom:791.058400pt;}
.y34{bottom:794.101200pt;}
.y102{bottom:794.104533pt;}
.y119{bottom:794.117867pt;}
.y61{bottom:794.234533pt;}
.y91{bottom:794.234667pt;}
.yd3{bottom:795.994267pt;}
.y1e1{bottom:804.389600pt;}
.y1a1{bottom:804.391733pt;}
.y4{bottom:807.350400pt;}
.y33{bottom:810.101200pt;}
.y101{bottom:810.104533pt;}
.y118{bottom:810.117867pt;}
.y60{bottom:810.234533pt;}
.y1e0{bottom:817.722933pt;}
.y1a0{bottom:817.725067pt;}
.y32{bottom:826.101200pt;}
.y90{bottom:826.101333pt;}
.y100{bottom:826.104533pt;}
.y117{bottom:826.117867pt;}
.y1df{bottom:831.056267pt;}
.y19f{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.yd2{bottom:835.424133pt;}
.y31{bottom:842.101200pt;}
.y8f{bottom:842.101333pt;}
.yff{bottom:842.104533pt;}
.y116{bottom:842.117867pt;}
.y5f{bottom:842.234533pt;}
.y1de{bottom:844.389600pt;}
.y19e{bottom:844.391733pt;}
.y1dd{bottom:857.722933pt;}
.y19d{bottom:857.725067pt;}
.y30{bottom:858.101200pt;}
.y8e{bottom:858.101333pt;}
.yfe{bottom:858.104533pt;}
.y115{bottom:858.117867pt;}
.yd1{bottom:866.544933pt;}
.y1dc{bottom:871.056267pt;}
.y19c{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y2f{bottom:874.101200pt;}
.y8d{bottom:874.101333pt;}
.yfd{bottom:874.104533pt;}
.y114{bottom:874.117867pt;}
.y1db{bottom:884.389600pt;}
.y19b{bottom:884.391733pt;}
.y2e{bottom:890.101200pt;}
.y8c{bottom:890.101333pt;}
.yfc{bottom:890.104533pt;}
.yd0{bottom:890.104933pt;}
.y5e{bottom:890.114533pt;}
.y113{bottom:890.117867pt;}
.y1da{bottom:897.722933pt;}
.y19a{bottom:897.725067pt;}
.y2d{bottom:906.101200pt;}
.y8b{bottom:906.101333pt;}
.ycf{bottom:906.104933pt;}
.y5d{bottom:906.114533pt;}
.y112{bottom:906.117867pt;}
.y1d9{bottom:911.056267pt;}
.y199{bottom:911.058400pt;}
.y2c{bottom:922.101200pt;}
.y8a{bottom:922.101333pt;}
.yfb{bottom:922.104533pt;}
.yce{bottom:922.104933pt;}
.y5c{bottom:922.114533pt;}
.y111{bottom:922.117867pt;}
.y1d8{bottom:924.389600pt;}
.y198{bottom:924.391733pt;}
.y29{bottom:951.795067pt;}
.y89{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.y179{bottom:965.395200pt;}
.h14{height:23.312500pt;}
.h2{height:27.197917pt;}
.h6{height:31.062500pt;}
.h7{height:31.083333pt;}
.hc{height:33.026042pt;}
.h13{height:36.095261pt;}
.h9{height:38.828125pt;}
.h8{height:38.833333pt;}
.h16{height:38.840833pt;}
.h15{height:38.841367pt;}
.ha{height:38.854167pt;}
.hf{height:38.866967pt;}
.h1a{height:38.867500pt;}
.he{height:41.531700pt;}
.h17{height:41.583433pt;}
.h19{height:41.606900pt;}
.h18{height:41.609033pt;}
.hd{height:41.619700pt;}
.h5{height:42.739583pt;}
.h3{height:46.593750pt;}
.hb{height:48.541667pt;}
.h4{height:54.359375pt;}
.h12{height:58.338633pt;}
.h10{height:74.172033pt;}
.h11{height:92.177408pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:59.763733pt;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x3f{left:94.484800pt;}
.xb{left:98.271467pt;}
.x16{left:99.799867pt;}
.x17{left:109.325200pt;}
.x41{left:113.385867pt;}
.x5{left:117.170133pt;}
.x14{left:120.949067pt;}
.xc{left:128.644800pt;}
.x15{left:130.633867pt;}
.x1d{left:140.585867pt;}
.x3{left:143.611733pt;}
.x1e{left:149.890667pt;}
.x38{left:160.635867pt;}
.x3a{left:162.512000pt;}
.x18{left:164.851333pt;}
.x3e{left:172.698133pt;}
.x19{left:174.376667pt;}
.x37{left:187.649200pt;}
.x4{left:189.223467pt;}
.x2e{left:209.128400pt;}
.x25{left:212.461733pt;}
.x2f{left:218.433200pt;}
.x26{left:221.766533pt;}
.x1a{left:229.278933pt;}
.x1f{left:238.307200pt;}
.x29{left:242.296400pt;}
.x1b{left:244.248000pt;}
.x20{left:247.612133pt;}
.x2a{left:251.745467pt;}
.x27{left:253.594400pt;}
.x30{left:255.078800pt;}
.x2b{left:258.412133pt;}
.x1c{left:267.415467pt;}
.x31{left:273.972000pt;}
.x2c{left:277.305333pt;}
.x32{left:280.638667pt;}
.x28{left:282.123067pt;}
.x2d{left:283.972000pt;}
.x21{left:285.240800pt;}
.x33{left:290.982000pt;}
.x22{left:294.545733pt;}
.x23{left:315.070667pt;}
.x24{left:332.851333pt;}
.x12{left:351.851333pt;}
.x39{left:357.466667pt;}
.x13{left:361.483600pt;}
.x9{left:404.481333pt;}
.xd{left:406.311467pt;}
.x34{left:425.198800pt;}
.x6{left:427.090133pt;}
.x40{left:432.714133pt;}
.xe{left:436.536533pt;}
.x42{left:451.604533pt;}
.x35{left:455.436800pt;}
.x7{left:457.316800pt;}
.xf{left:484.062800pt;}
.x3c{left:515.047733pt;}
.x3d{left:530.635867pt;}
.x11{left:589.770933pt;}
.x2{left:626.078800pt;}
.x10{left:650.055200pt;}
.x36{left:668.952800pt;}
}




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