
    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_0402874bc9b57b60b919c6ad.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_e7919c28c96e98fbb16d0e99.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_45cc4d7719b29db2d715e8e5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6f92cd9860d9e061c347e0b7.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_90990e974d29f77ac02b0447.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f8bc3def8f68117803d059b1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_90963623998795b5eae6f8a0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cabe49dddc5739f49ad7facd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_36b5ee7b98228cf24ec59f80.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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:-15.442200px;}
.v6{vertical-align:-4.054800px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.620000px;}
.v4{vertical-align:14.033400px;}
.v5{vertical-align:15.956400px;}
.v1{vertical-align:21.619200px;}
.v3{vertical-align:29.988000px;}
.ls83{letter-spacing:-2.640000px;}
.ls44{letter-spacing:-1.776000px;}
.lsb{letter-spacing:-0.780000px;}
.ls4c{letter-spacing:-0.480000px;}
.ls98{letter-spacing:-0.432000px;}
.ls5a{letter-spacing:-0.420000px;}
.ls36{letter-spacing:-0.360000px;}
.ls54{letter-spacing:-0.336000px;}
.ls4d{letter-spacing:-0.300000px;}
.ls53{letter-spacing:-0.240000px;}
.ls81{letter-spacing:-0.192000px;}
.ls39{letter-spacing:-0.180000px;}
.ls82{letter-spacing:-0.144000px;}
.ls41{letter-spacing:-0.126000px;}
.ls4b{letter-spacing:-0.120000px;}
.ls57{letter-spacing:-0.096000px;}
.ls40{letter-spacing:-0.084000px;}
.ls4a{letter-spacing:-0.060000px;}
.ls80{letter-spacing:-0.048000px;}
.lsa{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005400px;}
.ls85{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.060000px;}
.ls34{letter-spacing:0.096000px;}
.ls8{letter-spacing:0.120000px;}
.ls6a{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls68{letter-spacing:0.192000px;}
.ls29{letter-spacing:0.240000px;}
.ls48{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.300000px;}
.ls72{letter-spacing:0.336000px;}
.ls13{letter-spacing:0.360000px;}
.ls79{letter-spacing:0.384000px;}
.ls12{letter-spacing:0.420000px;}
.ls74{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.480000px;}
.ls35{letter-spacing:0.528000px;}
.ls33{letter-spacing:0.540000px;}
.ls76{letter-spacing:0.576000px;}
.ls2a{letter-spacing:0.600000px;}
.ls8a{letter-spacing:0.624000px;}
.ls3a{letter-spacing:0.660000px;}
.ls75{letter-spacing:0.672000px;}
.ls9{letter-spacing:0.720000px;}
.ls88{letter-spacing:0.768000px;}
.ls16{letter-spacing:0.780000px;}
.ls71{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.840000px;}
.ls6e{letter-spacing:0.864000px;}
.ls1e{letter-spacing:0.900000px;}
.ls67{letter-spacing:0.912000px;}
.lse{letter-spacing:0.960000px;}
.ls69{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.020000px;}
.ls7b{letter-spacing:1.056000px;}
.ls20{letter-spacing:1.080000px;}
.ls8d{letter-spacing:1.104000px;}
.ls1b{letter-spacing:1.140000px;}
.ls6f{letter-spacing:1.152000px;}
.ls18{letter-spacing:1.200000px;}
.ls6c{letter-spacing:1.248000px;}
.ls30{letter-spacing:1.260000px;}
.ls6b{letter-spacing:1.296000px;}
.ls1f{letter-spacing:1.320000px;}
.ls9b{letter-spacing:1.344000px;}
.ls15{letter-spacing:1.380000px;}
.ls70{letter-spacing:1.392000px;}
.lsc{letter-spacing:1.440000px;}
.ls89{letter-spacing:1.488000px;}
.ls7{letter-spacing:1.500000px;}
.ls93{letter-spacing:1.536000px;}
.ls2f{letter-spacing:1.560000px;}
.ls65{letter-spacing:1.584000px;}
.ls47{letter-spacing:1.620000px;}
.ls86{letter-spacing:1.632000px;}
.ls26{letter-spacing:1.680000px;}
.ls73{letter-spacing:1.728000px;}
.ls23{letter-spacing:1.740000px;}
.ls99{letter-spacing:1.776000px;}
.ls22{letter-spacing:1.800000px;}
.ls97{letter-spacing:1.824000px;}
.ls28{letter-spacing:1.860000px;}
.ls24{letter-spacing:1.920000px;}
.ls7e{letter-spacing:1.968000px;}
.ls21{letter-spacing:1.980000px;}
.ls90{letter-spacing:2.016000px;}
.ls25{letter-spacing:2.040000px;}
.ls95{letter-spacing:2.064000px;}
.ls45{letter-spacing:2.100000px;}
.ls7a{letter-spacing:2.112000px;}
.ls3{letter-spacing:2.160000px;}
.ls8f{letter-spacing:2.208000px;}
.ls31{letter-spacing:2.220000px;}
.ls92{letter-spacing:2.256000px;}
.ls2c{letter-spacing:2.280000px;}
.ls9d{letter-spacing:2.304000px;}
.ls10{letter-spacing:2.340000px;}
.ls8c{letter-spacing:2.352000px;}
.ls2b{letter-spacing:2.400000px;}
.ls78{letter-spacing:2.448000px;}
.ls19{letter-spacing:2.460000px;}
.ls17{letter-spacing:2.520000px;}
.ls91{letter-spacing:2.544000px;}
.ls3c{letter-spacing:2.580000px;}
.ls50{letter-spacing:2.640000px;}
.ls77{letter-spacing:2.688000px;}
.ls1c{letter-spacing:2.700000px;}
.ls9c{letter-spacing:2.736000px;}
.ls55{letter-spacing:2.760000px;}
.ls84{letter-spacing:2.784000px;}
.ls46{letter-spacing:2.820000px;}
.ls27{letter-spacing:2.880000px;}
.ls1a{letter-spacing:2.940000px;}
.ls7c{letter-spacing:2.976000px;}
.ls1d{letter-spacing:3.000000px;}
.ls7f{letter-spacing:3.024000px;}
.ls38{letter-spacing:3.060000px;}
.ls5b{letter-spacing:3.120000px;}
.ls52{letter-spacing:3.180000px;}
.ls5e{letter-spacing:3.240000px;}
.ls6{letter-spacing:3.300000px;}
.ls5d{letter-spacing:3.360000px;}
.ls2e{letter-spacing:3.420000px;}
.ls3b{letter-spacing:3.480000px;}
.ls32{letter-spacing:3.540000px;}
.ls7d{letter-spacing:3.552000px;}
.ls37{letter-spacing:3.600000px;}
.lsd{letter-spacing:3.660000px;}
.ls9a{letter-spacing:3.696000px;}
.ls49{letter-spacing:3.720000px;}
.ls56{letter-spacing:3.840000px;}
.ls62{letter-spacing:3.900000px;}
.ls5c{letter-spacing:4.020000px;}
.ls87{letter-spacing:4.032000px;}
.ls8b{letter-spacing:4.080000px;}
.ls58{letter-spacing:4.140000px;}
.ls64{letter-spacing:4.260000px;}
.ls4f{letter-spacing:4.380000px;}
.ls60{letter-spacing:4.440000px;}
.ls63{letter-spacing:4.620000px;}
.ls8e{letter-spacing:4.704000px;}
.ls2d{letter-spacing:4.740000px;}
.ls59{letter-spacing:4.860000px;}
.ls5f{letter-spacing:5.040000px;}
.ls96{letter-spacing:5.088000px;}
.ls6d{letter-spacing:5.280000px;}
.ls66{letter-spacing:5.520000px;}
.ls51{letter-spacing:5.640000px;}
.ls4e{letter-spacing:5.700000px;}
.ls94{letter-spacing:5.712000px;}
.ls61{letter-spacing:6.540000px;}
.ls3e{letter-spacing:396.109800px;}
.ls3f{letter-spacing:432.100800px;}
.ls42{letter-spacing:451.522200px;}
.ls3d{letter-spacing:455.008200px;}
.ls43{letter-spacing:481.852800px;}
.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;}
}
.ws9b{word-spacing:-20.940000px;}
.ws6e{word-spacing:-17.940000px;}
.ws4a{word-spacing:-17.580000px;}
.ws10{word-spacing:-17.040000px;}
.ws49{word-spacing:-16.680000px;}
.wsf{word-spacing:-15.960000px;}
.ws88{word-spacing:-15.780000px;}
.ws6f{word-spacing:-15.720000px;}
.wse3{word-spacing:-15.696000px;}
.ws7b{word-spacing:-15.660000px;}
.ws64{word-spacing:-15.600000px;}
.ws2c{word-spacing:-15.480000px;}
.ws89{word-spacing:-15.360000px;}
.ws91{word-spacing:-15.060000px;}
.ws63{word-spacing:-15.000000px;}
.ws7c{word-spacing:-14.880000px;}
.wscb{word-spacing:-14.784000px;}
.wsa3{word-spacing:-14.448000px;}
.wsd0{word-spacing:-14.352000px;}
.wse6{word-spacing:-14.160000px;}
.wse2{word-spacing:-14.064000px;}
.wse4{word-spacing:-13.776000px;}
.wsce{word-spacing:-13.728000px;}
.ws9c{word-spacing:-13.680000px;}
.wsa0{word-spacing:-13.392000px;}
.ws2{word-spacing:-13.344000px;}
.ws9e{word-spacing:-13.248000px;}
.wse5{word-spacing:-13.200000px;}
.wscc{word-spacing:-13.152000px;}
.ws9f{word-spacing:-12.864000px;}
.wsa5{word-spacing:-12.816000px;}
.ws1{word-spacing:-12.510000px;}
.wsa4{word-spacing:-12.336000px;}
.wsa2{word-spacing:-12.144000px;}
.wscd{word-spacing:-12.096000px;}
.ws5a{word-spacing:-12.000000px;}
.wscf{word-spacing:-11.952000px;}
.ws9d{word-spacing:-11.808000px;}
.ws0{word-spacing:-10.508400px;}
.ws4b{word-spacing:-10.500000px;}
.wsa1{word-spacing:-9.360000px;}
.ws7d{word-spacing:-9.000000px;}
.ws62{word-spacing:-7.200000px;}
.ws96{word-spacing:-6.540000px;}
.ws78{word-spacing:-5.700000px;}
.ws7e{word-spacing:-5.640000px;}
.wsac{word-spacing:-5.520000px;}
.wsb3{word-spacing:-5.280000px;}
.wse0{word-spacing:-5.088000px;}
.ws97{word-spacing:-5.040000px;}
.ws8e{word-spacing:-4.860000px;}
.ws3b{word-spacing:-4.740000px;}
.wsd9{word-spacing:-4.704000px;}
.ws99{word-spacing:-4.620000px;}
.ws93{word-spacing:-4.440000px;}
.ws7f{word-spacing:-4.380000px;}
.wsa6{word-spacing:-4.260000px;}
.ws8d{word-spacing:-4.140000px;}
.wsd4{word-spacing:-4.032000px;}
.ws92{word-spacing:-4.020000px;}
.ws98{word-spacing:-3.960000px;}
.ws8c{word-spacing:-3.900000px;}
.ws65{word-spacing:-3.720000px;}
.wse7{word-spacing:-3.696000px;}
.ws13{word-spacing:-3.660000px;}
.ws36{word-spacing:-3.600000px;}
.wsc7{word-spacing:-3.552000px;}
.ws42{word-spacing:-3.540000px;}
.ws4e{word-spacing:-3.480000px;}
.ws3c{word-spacing:-3.420000px;}
.ws94{word-spacing:-3.360000px;}
.wsb{word-spacing:-3.300000px;}
.ws95{word-spacing:-3.240000px;}
.ws82{word-spacing:-3.180000px;}
.ws84{word-spacing:-3.120000px;}
.ws3e{word-spacing:-3.060000px;}
.wsca{word-spacing:-3.024000px;}
.ws25{word-spacing:-3.000000px;}
.wsc6{word-spacing:-2.976000px;}
.ws22{word-spacing:-2.940000px;}
.ws4{word-spacing:-2.886000px;}
.ws33{word-spacing:-2.880000px;}
.ws83{word-spacing:-2.820000px;}
.wsd1{word-spacing:-2.784000px;}
.ws8a{word-spacing:-2.760000px;}
.wse8{word-spacing:-2.736000px;}
.ws24{word-spacing:-2.700000px;}
.wsbf{word-spacing:-2.688000px;}
.ws81{word-spacing:-2.640000px;}
.ws4f{word-spacing:-2.580000px;}
.wsdb{word-spacing:-2.544000px;}
.ws1c{word-spacing:-2.520000px;}
.ws20{word-spacing:-2.460000px;}
.wsc1{word-spacing:-2.448000px;}
.ws38{word-spacing:-2.400000px;}
.wse1{word-spacing:-2.352000px;}
.ws16{word-spacing:-2.340000px;}
.ws5{word-spacing:-2.331000px;}
.wse9{word-spacing:-2.304000px;}
.ws39{word-spacing:-2.280000px;}
.wsdc{word-spacing:-2.256000px;}
.ws3a{word-spacing:-2.220000px;}
.wsda{word-spacing:-2.208000px;}
.ws7{word-spacing:-2.160000px;}
.wsc3{word-spacing:-2.112000px;}
.ws44{word-spacing:-2.100000px;}
.wsdf{word-spacing:-2.064000px;}
.ws1e{word-spacing:-2.040000px;}
.wsc9{word-spacing:-2.016000px;}
.ws29{word-spacing:-1.980000px;}
.wsc8{word-spacing:-1.968000px;}
.ws12{word-spacing:-1.920000px;}
.ws35{word-spacing:-1.860000px;}
.wsd3{word-spacing:-1.824000px;}
.ws2a{word-spacing:-1.800000px;}
.wsde{word-spacing:-1.776000px;}
.ws2b{word-spacing:-1.740000px;}
.wsbc{word-spacing:-1.728000px;}
.ws21{word-spacing:-1.680000px;}
.wsc0{word-spacing:-1.632000px;}
.ws6b{word-spacing:-1.620000px;}
.wsab{word-spacing:-1.584000px;}
.ws3d{word-spacing:-1.560000px;}
.wsdd{word-spacing:-1.536000px;}
.wsc{word-spacing:-1.500000px;}
.wsd6{word-spacing:-1.488000px;}
.ws11{word-spacing:-1.440000px;}
.wsb9{word-spacing:-1.392000px;}
.ws1a{word-spacing:-1.380000px;}
.wsc4{word-spacing:-1.344000px;}
.ws27{word-spacing:-1.320000px;}
.wsb1{word-spacing:-1.296000px;}
.ws41{word-spacing:-1.260000px;}
.wsb2{word-spacing:-1.248000px;}
.ws1f{word-spacing:-1.200000px;}
.wsb8{word-spacing:-1.152000px;}
.ws23{word-spacing:-1.140000px;}
.wsd8{word-spacing:-1.104000px;}
.ws28{word-spacing:-1.080000px;}
.wsc5{word-spacing:-1.056000px;}
.ws8{word-spacing:-1.020000px;}
.wsa9{word-spacing:-1.008000px;}
.ws14{word-spacing:-0.960000px;}
.wsae{word-spacing:-0.912000px;}
.ws26{word-spacing:-0.900000px;}
.wsb4{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.840000px;}
.wsba{word-spacing:-0.816000px;}
.wse{word-spacing:-0.780000px;}
.wsb5{word-spacing:-0.768000px;}
.ws1b{word-spacing:-0.720000px;}
.wsbe{word-spacing:-0.672000px;}
.ws37{word-spacing:-0.660000px;}
.wsd7{word-spacing:-0.624000px;}
.ws40{word-spacing:-0.600000px;}
.ws47{word-spacing:-0.576000px;}
.ws43{word-spacing:-0.540000px;}
.ws48{word-spacing:-0.528000px;}
.ws6{word-spacing:-0.480000px;}
.wsbd{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.420000px;}
.wsc2{word-spacing:-0.384000px;}
.ws18{word-spacing:-0.360000px;}
.wsbb{word-spacing:-0.336000px;}
.ws15{word-spacing:-0.300000px;}
.ws6d{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.240000px;}
.wsaf{word-spacing:-0.192000px;}
.wsa{word-spacing:-0.180000px;}
.wsb0{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.120000px;}
.ws46{word-spacing:-0.096000px;}
.ws1d{word-spacing:-0.060000px;}
.wsd2{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.wsaa{word-spacing:0.048000px;}
.ws66{word-spacing:0.060000px;}
.ws50{word-spacing:0.084000px;}
.ws67{word-spacing:0.120000px;}
.ws51{word-spacing:0.126000px;}
.wsb6{word-spacing:0.144000px;}
.ws3f{word-spacing:0.180000px;}
.wsad{word-spacing:0.192000px;}
.ws87{word-spacing:0.240000px;}
.ws6a{word-spacing:0.300000px;}
.ws34{word-spacing:0.360000px;}
.ws8f{word-spacing:0.420000px;}
.wsd5{word-spacing:0.432000px;}
.ws68{word-spacing:0.480000px;}
.ws7a{word-spacing:0.528000px;}
.ws77{word-spacing:1.800000px;}
.ws90{word-spacing:2.208000px;}
.ws9a{word-spacing:3.168000px;}
.ws86{word-spacing:3.240000px;}
.ws80{word-spacing:3.360000px;}
.ws79{word-spacing:3.648000px;}
.ws8b{word-spacing:3.720000px;}
.wsb7{word-spacing:3.936000px;}
.ws6c{word-spacing:3.984000px;}
.ws85{word-spacing:4.200000px;}
.ws69{word-spacing:4.920000px;}
.ws45{word-spacing:4.980000px;}
.wsa7{word-spacing:5.460000px;}
.wsa8{word-spacing:5.520000px;}
.ws4c{word-spacing:138.600000px;}
.ws4d{word-spacing:154.350000px;}
.ws53{word-spacing:156.000000px;}
.ws5d{word-spacing:185.280000px;}
.ws52{word-spacing:228.144000px;}
.ws5c{word-spacing:228.156600px;}
.ws57{word-spacing:229.056000px;}
.ws58{word-spacing:232.560000px;}
.ws55{word-spacing:238.560000px;}
.ws54{word-spacing:240.144000px;}
.ws56{word-spacing:243.936000px;}
.ws5f{word-spacing:246.624000px;}
.ws5b{word-spacing:247.056000px;}
.ws5e{word-spacing:280.800000px;}
.ws60{word-spacing:315.024000px;}
.ws59{word-spacing:353.856000px;}
.ws73{word-spacing:881.088000px;}
.ws75{word-spacing:913.104000px;}
.ws72{word-spacing:939.744000px;}
.ws71{word-spacing:942.432000px;}
.ws74{word-spacing:1010.832000px;}
.ws76{word-spacing:1235.760000px;}
.ws2d{word-spacing:1290.240000px;}
.ws31{word-spacing:1329.264000px;}
.ws32{word-spacing:1351.584000px;}
.ws2f{word-spacing:1359.552000px;}
.ws2e{word-spacing:1386.240000px;}
.ws30{word-spacing:1420.896000px;}
.ws61{word-spacing:1573.776000px;}
.ws70{word-spacing:2012.640000px;}
._c{margin-left:-2898.096000px;}
._f{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-4.095000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.134000px;}
._8{width:1.020000px;}
._4{width:2.331000px;}
._9{width:4.260000px;}
._6{width:5.400000px;}
._7{width:7.080000px;}
._a{width:8.220000px;}
._b{width:9.300000px;}
._d{width:10.560000px;}
._8f{width:12.120000px;}
._52{width:17.052000px;}
._27{width:50.190000px;}
._2a{width:82.236000px;}
._38{width:84.714000px;}
._3c{width:89.838000px;}
._32{width:90.972000px;}
._3e{width:95.172000px;}
._33{width:105.714000px;}
._1e{width:109.851000px;}
._43{width:116.676000px;}
._4f{width:119.028000px;}
._22{width:120.792000px;}
._15{width:122.850000px;}
._1b{width:127.764000px;}
._58{width:130.158000px;}
._2e{width:133.350000px;}
._23{width:136.038000px;}
._56{width:137.088000px;}
._3a{width:140.658000px;}
._42{width:143.934000px;}
._3f{width:145.866000px;}
._1c{width:149.100000px;}
._3d{width:152.143800px;}
._54{width:153.342000px;}
._2f{width:155.904000px;}
._20{width:156.954000px;}
._18{width:164.850000px;}
._49{width:169.176000px;}
._14{width:170.940000px;}
._36{width:172.074000px;}
._29{width:173.563200px;}
._5a{width:175.695000px;}
._35{width:177.366000px;}
._46{width:179.172000px;}
._45{width:189.084000px;}
._4c{width:194.376000px;}
._41{width:196.350000px;}
._2d{width:198.912000px;}
._4b{width:202.753800px;}
._26{width:206.514000px;}
._34{width:208.063200px;}
._1d{width:214.494000px;}
._73{width:217.296000px;}
._4e{width:219.366000px;}
._21{width:221.088000px;}
._37{width:222.903600px;}
._55{width:229.173000px;}
._17{width:230.412000px;}
._28{width:231.966000px;}
._48{width:233.184000px;}
._5f{width:241.200000px;}
._1a{width:243.894000px;}
._2b{width:246.204000px;}
._44{width:249.690000px;}
._4a{width:251.748000px;}
._61{width:252.994200px;}
._24{width:255.234000px;}
._5c{width:258.144000px;}
._40{width:259.728000px;}
._31{width:268.380000px;}
._5e{width:270.144000px;}
._1f{width:273.042000px;}
._6e{width:275.472000px;}
._65{width:281.232000px;}
._16{width:282.324000px;}
._3b{width:289.338000px;}
._72{width:292.800000px;}
._51{width:298.662000px;}
._2c{width:309.750000px;}
._47{width:321.468000px;}
._12{width:324.156000px;}
._10{width:330.918000px;}
._19{width:338.394000px;}
._25{width:341.082000px;}
._57{width:349.125000px;}
._13{width:351.162000px;}
._53{width:356.097000px;}
._11{width:357.252000px;}
._39{width:362.101800px;}
._5d{width:365.856000px;}
._64{width:367.200000px;}
._5b{width:368.886000px;}
._6f{width:378.528000px;}
._30{width:383.880000px;}
._4d{width:388.897800px;}
._69{width:405.312000px;}
._66{width:409.248000px;}
._76{width:414.576000px;}
._50{width:418.068000px;}
._6a{width:491.904000px;}
._6c{width:497.760000px;}
._63{width:508.800000px;}
._68{width:515.904000px;}
._60{width:521.328000px;}
._62{width:550.560000px;}
._6b{width:555.510000px;}
._75{width:558.576000px;}
._77{width:564.288000px;}
._67{width:573.264000px;}
._78{width:582.624000px;}
._71{width:599.904000px;}
._74{width:617.232000px;}
._6d{width:691.920000px;}
._70{width:702.534000px;}
._59{width:742.320000px;}
._7a{width:937.008000px;}
._7d{width:977.040000px;}
._7b{width:1057.104000px;}
._8b{width:1062.432000px;}
._79{width:1064.694000px;}
._8a{width:1083.792000px;}
._82{width:1101.072000px;}
._88{width:1105.056000px;}
._89{width:1107.744000px;}
._7e{width:1122.384000px;}
._7c{width:1129.056000px;}
._e{width:1144.272000px;}
._7f{width:1146.384000px;}
._80{width:1193.568000px;}
._8e{width:1217.136000px;}
._85{width:1246.368000px;}
._8d{width:1251.318000px;}
._87{width:1254.384000px;}
._8c{width:1266.384000px;}
._84{width:1278.432000px;}
._83{width:1281.072000px;}
._81{width:1313.040000px;}
._86{width:1387.728000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:25.200000px;}
.fs6{font-size:27.000000px;}
.fsb{font-size:28.800000px;}
.fsc{font-size:36.000000px;}
.fs5{font-size:37.800000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y14c{bottom:70.917000px;}
.y50{bottom:82.834200px;}
.y108{bottom:83.460300px;}
.y140{bottom:83.770350px;}
.y157{bottom:83.779200px;}
.y15f{bottom:83.920350px;}
.y178{bottom:84.192750px;}
.y8c{bottom:84.233400px;}
.yfc{bottom:84.485400px;}
.y14b{bottom:86.661000px;}
.y23{bottom:88.026750px;}
.ybd{bottom:93.645000px;}
.y128{bottom:94.624050px;}
.y1a5{bottom:95.121900px;}
.y1e5{bottom:95.263500px;}
.y107{bottom:99.204300px;}
.y156{bottom:99.523200px;}
.y177{bottom:99.936750px;}
.y8b{bottom:100.733400px;}
.y13f{bottom:101.770350px;}
.y15e{bottom:101.920350px;}
.y22{bottom:103.023000px;}
.yfb{bottom:106.050300px;}
.ybc{bottom:108.391950px;}
.y1a4{bottom:110.121900px;}
.y1e4{bottom:110.263500px;}
.y127{bottom:110.872050px;}
.y176{bottom:115.680750px;}
.y8a{bottom:117.233400px;}
.y13e{bottom:119.770350px;}
.y15d{bottom:119.920350px;}
.yfa{bottom:122.298300px;}
.ybb{bottom:123.144450px;}
.y1a3{bottom:125.121900px;}
.y1e3{bottom:125.263500px;}
.y126{bottom:127.120050px;}
.y89{bottom:133.733400px;}
.y13d{bottom:137.770350px;}
.y15c{bottom:137.920350px;}
.yba{bottom:138.148950px;}
.yf9{bottom:138.546300px;}
.y1a2{bottom:140.121900px;}
.y1e2{bottom:140.263500px;}
.y125{bottom:143.368050px;}
.y88{bottom:150.233400px;}
.yb9{bottom:152.896350px;}
.yf8{bottom:154.794300px;}
.y1a1{bottom:155.121900px;}
.y1e1{bottom:155.263500px;}
.y13c{bottom:155.770350px;}
.y15b{bottom:155.920350px;}
.y124{bottom:159.616050px;}
.y29{bottom:166.863150px;}
.yb8{bottom:167.648400px;}
.y1a0{bottom:170.121900px;}
.y1e0{bottom:170.263500px;}
.yf7{bottom:171.042300px;}
.y13b{bottom:173.770350px;}
.y87{bottom:175.745400px;}
.y123{bottom:175.864050px;}
.yb7{bottom:182.652900px;}
.y28{bottom:184.863150px;}
.y19f{bottom:185.121900px;}
.y1df{bottom:185.263500px;}
.yf6{bottom:187.290300px;}
.y15a{bottom:191.515350px;}
.y13a{bottom:191.770350px;}
.y86{bottom:191.993400px;}
.y122{bottom:192.112050px;}
.yb6{bottom:197.390250px;}
.y19e{bottom:200.121900px;}
.y1de{bottom:200.263500px;}
.y27{bottom:202.863150px;}
.yf5{bottom:203.538300px;}
.y85{bottom:208.241400px;}
.y121{bottom:208.360050px;}
.y159{bottom:209.515350px;}
.y139{bottom:209.770350px;}
.yb5{bottom:212.142750px;}
.y19d{bottom:215.121900px;}
.y1dd{bottom:215.263500px;}
.yf4{bottom:219.786300px;}
.y26{bottom:220.863150px;}
.y84{bottom:224.489400px;}
.y120{bottom:224.608050px;}
.yb4{bottom:227.147250px;}
.y138{bottom:227.770350px;}
.y19c{bottom:230.121900px;}
.y1dc{bottom:230.263500px;}
.yf3{bottom:236.034300px;}
.y25{bottom:238.863150px;}
.y83{bottom:240.737400px;}
.y11f{bottom:240.856050px;}
.yb3{bottom:241.899750px;}
.y19b{bottom:245.121900px;}
.y1db{bottom:245.263500px;}
.y137{bottom:245.770350px;}
.yf2{bottom:252.282300px;}
.y2b{bottom:256.863150px;}
.yb2{bottom:256.904250px;}
.y82{bottom:256.985400px;}
.y11e{bottom:257.104050px;}
.y19a{bottom:260.121900px;}
.y1da{bottom:260.263500px;}
.y136{bottom:263.770350px;}
.yf1{bottom:268.530300px;}
.yb0{bottom:271.651800px;}
.y11d{bottom:273.352050px;}
.y24{bottom:274.458150px;}
.y2a{bottom:274.863150px;}
.y199{bottom:275.121900px;}
.y1d9{bottom:275.263500px;}
.y135{bottom:281.770350px;}
.yf0{bottom:284.778300px;}
.yaf{bottom:286.656300px;}
.yb1{bottom:286.661250px;}
.y81{bottom:288.497400px;}
.y11c{bottom:289.600050px;}
.y198{bottom:290.121900px;}
.y1d8{bottom:290.263500px;}
.y134{bottom:299.770350px;}
.yef{bottom:301.089750px;}
.yae{bottom:301.403700px;}
.y197{bottom:305.121900px;}
.y1d7{bottom:305.263500px;}
.y11b{bottom:305.848050px;}
.yad{bottom:316.408200px;}
.yee{bottom:317.337750px;}
.y133{bottom:317.770350px;}
.y196{bottom:320.121900px;}
.y1d6{bottom:320.263500px;}
.y11a{bottom:322.096050px;}
.y80{bottom:323.410350px;}
.yaa{bottom:331.145100px;}
.yac{bottom:331.160700px;}
.yed{bottom:333.585750px;}
.y195{bottom:335.121900px;}
.y1d5{bottom:335.263500px;}
.y132{bottom:335.770350px;}
.y119{bottom:338.344050px;}
.y7f{bottom:342.910350px;}
.ya9{bottom:346.149600px;}
.yab{bottom:346.165200px;}
.y21{bottom:348.710400px;}
.yec{bottom:349.833750px;}
.y194{bottom:350.121900px;}
.y1d4{bottom:350.263500px;}
.y131{bottom:353.770350px;}
.y118{bottom:354.592050px;}
.ya8{bottom:360.902100px;}
.y193{bottom:365.121900px;}
.y1d3{bottom:365.263500px;}
.yeb{bottom:366.081750px;}
.y117{bottom:370.840050px;}
.y130{bottom:371.770350px;}
.ya7{bottom:375.654600px;}
.y20{bottom:376.055400px;}
.y192{bottom:380.121900px;}
.y1d2{bottom:380.263500px;}
.yea{bottom:382.329750px;}
.y116{bottom:387.088050px;}
.y12f{bottom:389.770350px;}
.y5c{bottom:389.785350px;}
.ya6{bottom:390.659100px;}
.y1f{bottom:394.055400px;}
.y191{bottom:395.121900px;}
.y1d1{bottom:395.263500px;}
.ye9{bottom:398.577750px;}
.y115{bottom:403.336050px;}
.ya5{bottom:405.411600px;}
.y12e{bottom:407.770350px;}
.y5b{bottom:407.785350px;}
.y190{bottom:410.121900px;}
.y1d0{bottom:410.263500px;}
.y1e{bottom:412.055400px;}
.ye8{bottom:414.825750px;}
.y114{bottom:419.584050px;}
.ya4{bottom:420.416100px;}
.y18f{bottom:425.121900px;}
.y1cf{bottom:425.263500px;}
.y12d{bottom:425.770350px;}
.y5a{bottom:425.785350px;}
.y1d{bottom:430.055400px;}
.ye7{bottom:431.073750px;}
.ya2{bottom:435.155250px;}
.y113{bottom:435.832050px;}
.y18e{bottom:440.121900px;}
.y1ce{bottom:440.263500px;}
.y12c{bottom:443.770350px;}
.y7e{bottom:443.785350px;}
.ye6{bottom:447.321750px;}
.y1c{bottom:448.055400px;}
.ya1{bottom:450.159750px;}
.ya3{bottom:450.173100px;}
.y112{bottom:452.080050px;}
.y18d{bottom:455.121900px;}
.y1cd{bottom:455.263500px;}
.y59{bottom:461.380350px;}
.y4f{bottom:461.770350px;}
.y7d{bottom:461.785350px;}
.y106{bottom:461.920350px;}
.ye5{bottom:463.569750px;}
.ya0{bottom:464.912250px;}
.y1b{bottom:466.055400px;}
.y111{bottom:468.328050px;}
.y18c{bottom:470.121900px;}
.y1cc{bottom:470.263500px;}
.y175{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y7c{bottom:479.785350px;}
.ye4{bottom:479.817750px;}
.y9f{bottom:479.916750px;}
.y105{bottom:479.920350px;}
.y1a{bottom:484.055400px;}
.y110{bottom:484.576050px;}
.y18b{bottom:485.121900px;}
.y1cb{bottom:485.263500px;}
.y9e{bottom:494.669250px;}
.ye3{bottom:496.065750px;}
.y58{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y7b{bottom:497.785350px;}
.y104{bottom:497.920350px;}
.y18a{bottom:500.121900px;}
.y1ca{bottom:500.263500px;}
.y10f{bottom:500.824050px;}
.y19{bottom:502.055400px;}
.y9d{bottom:509.673750px;}
.ye2{bottom:512.313750px;}
.y189{bottom:515.121900px;}
.y1c9{bottom:515.263500px;}
.y57{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y7a{bottom:515.785350px;}
.y103{bottom:515.920350px;}
.y10e{bottom:517.072050px;}
.y18{bottom:520.055400px;}
.ye1{bottom:528.561750px;}
.y188{bottom:530.121900px;}
.y1c8{bottom:530.263500px;}
.y9b{bottom:532.931250px;}
.y10d{bottom:533.320050px;}
.y56{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y79{bottom:533.785350px;}
.y102{bottom:533.920350px;}
.y17{bottom:538.055400px;}
.y9a{bottom:540.438750px;}
.ye0{bottom:544.809750px;}
.y187{bottom:545.121900px;}
.y1c7{bottom:545.263500px;}
.y9c{bottom:547.935750px;}
.y10c{bottom:549.568050px;}
.y55{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y78{bottom:551.785350px;}
.y101{bottom:551.920350px;}
.y16{bottom:556.055400px;}
.y186{bottom:560.121900px;}
.y1c6{bottom:560.263500px;}
.ydf{bottom:561.057750px;}
.y54{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y77{bottom:569.785350px;}
.y100{bottom:569.920350px;}
.y15{bottom:574.055400px;}
.y99{bottom:574.855350px;}
.y185{bottom:575.121900px;}
.y206{bottom:575.263500px;}
.y1c5{bottom:575.265900px;}
.y10b{bottom:581.080050px;}
.y53{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y76{bottom:587.785350px;}
.yff{bottom:587.920350px;}
.y184{bottom:590.121900px;}
.y205{bottom:590.263500px;}
.y1c4{bottom:590.265900px;}
.y14{bottom:592.055400px;}
.yde{bottom:592.569600px;}
.y204{bottom:605.263500px;}
.y1c3{bottom:605.265900px;}
.y174{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y75{bottom:605.785350px;}
.yfe{bottom:605.920350px;}
.y13{bottom:610.055400px;}
.y10a{bottom:615.970350px;}
.y203{bottom:620.263500px;}
.y1c2{bottom:620.265900px;}
.y52{bottom:623.230350px;}
.y183{bottom:623.232600px;}
.y173{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y74{bottom:623.785350px;}
.y96{bottom:623.920350px;}
.y12{bottom:628.055400px;}
.y202{bottom:635.263500px;}
.y1c1{bottom:635.265900px;}
.y172{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.y73{bottom:641.785350px;}
.y95{bottom:641.920350px;}
.ydc{bottom:645.808350px;}
.y11{bottom:646.055400px;}
.y201{bottom:650.263500px;}
.y1c0{bottom:650.265900px;}
.yfd{bottom:659.515350px;}
.y171{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.y72{bottom:659.785350px;}
.y94{bottom:659.920350px;}
.ydb{bottom:660.812850px;}
.ydd{bottom:660.832950px;}
.y12b{bottom:660.976050px;}
.y10{bottom:664.055400px;}
.y200{bottom:665.263500px;}
.y1bf{bottom:665.265900px;}
.yda{bottom:675.565350px;}
.y12a{bottom:676.720050px;}
.y170{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.y182{bottom:677.772600px;}
.y71{bottom:677.785350px;}
.y93{bottom:677.920350px;}
.y1ff{bottom:680.263500px;}
.y1be{bottom:680.265900px;}
.yf{bottom:682.055400px;}
.yd9{bottom:690.569850px;}
.y129{bottom:692.464050px;}
.y1fe{bottom:695.263500px;}
.y1bd{bottom:695.265900px;}
.y181{bottom:695.367600px;}
.y16f{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.y70{bottom:695.785350px;}
.y92{bottom:695.920350px;}
.ye{bottom:700.055400px;}
.yd8{bottom:705.322350px;}
.y1fd{bottom:710.263500px;}
.y1bc{bottom:710.265900px;}
.y98{bottom:713.380350px;}
.y16e{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.y6f{bottom:713.785350px;}
.y91{bottom:713.920350px;}
.yd7{bottom:720.326850px;}
.y1fc{bottom:725.263500px;}
.y1bb{bottom:725.265900px;}
.y180{bottom:731.367600px;}
.y16d{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.y6e{bottom:731.785350px;}
.y90{bottom:731.920350px;}
.yd{bottom:733.190250px;}
.yd6{bottom:735.079350px;}
.y1fb{bottom:740.263500px;}
.y1ba{bottom:740.265900px;}
.y97{bottom:749.245350px;}
.y16c{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.y6d{bottom:749.785350px;}
.y8f{bottom:749.920350px;}
.yd5{bottom:750.083850px;}
.y1fa{bottom:755.263500px;}
.y1b9{bottom:755.265900px;}
.yc{bottom:758.518050px;}
.yd3{bottom:764.835750px;}
.y16b{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.y17f{bottom:767.772600px;}
.y6c{bottom:767.785350px;}
.y155{bottom:767.920350px;}
.y1f9{bottom:770.263500px;}
.y1b8{bottom:770.265900px;}
.yd2{bottom:779.840250px;}
.yd4{bottom:779.840850px;}
.y1f8{bottom:785.263500px;}
.y1b7{bottom:785.265900px;}
.y17e{bottom:785.367600px;}
.y8e{bottom:785.515350px;}
.y16a{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.y6b{bottom:785.785350px;}
.y154{bottom:785.920350px;}
.yb{bottom:794.094150px;}
.yd1{bottom:794.587650px;}
.y1f7{bottom:800.263500px;}
.y1b6{bottom:800.265900px;}
.y169{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.y6a{bottom:803.785350px;}
.y153{bottom:803.920350px;}
.ya{bottom:807.594150px;}
.yd0{bottom:809.330100px;}
.y1f6{bottom:815.263500px;}
.y1b5{bottom:815.265900px;}
.y9{bottom:821.094150px;}
.y168{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.y17d{bottom:821.772600px;}
.y69{bottom:821.785350px;}
.y152{bottom:821.920350px;}
.ycf{bottom:824.334600px;}
.y1f5{bottom:830.263500px;}
.y1b4{bottom:830.265900px;}
.yce{bottom:839.087100px;}
.y167{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y17c{bottom:839.772600px;}
.y68{bottom:839.785350px;}
.y151{bottom:839.920350px;}
.y1f4{bottom:845.263500px;}
.y1b3{bottom:845.265900px;}
.y8{bottom:851.380950px;}
.ycd{bottom:854.091600px;}
.y17b{bottom:857.367600px;}
.y166{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.y67{bottom:857.785350px;}
.y150{bottom:857.920350px;}
.y1f3{bottom:860.263500px;}
.y1b2{bottom:860.265900px;}
.ycb{bottom:868.839150px;}
.y1f2{bottom:875.263500px;}
.y1b1{bottom:875.265900px;}
.y165{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.y66{bottom:875.785350px;}
.yca{bottom:883.843650px;}
.ycc{bottom:883.848600px;}
.y1f1{bottom:890.263500px;}
.y1b0{bottom:890.265900px;}
.y14f{bottom:893.515350px;}
.y164{bottom:893.635350px;}
.y37{bottom:893.770350px;}
.y148{bottom:893.772600px;}
.y65{bottom:893.785350px;}
.y7{bottom:897.543600px;}
.yc8{bottom:898.591050px;}
.y1f0{bottom:905.263500px;}
.y1af{bottom:905.265900px;}
.y14e{bottom:911.515350px;}
.y163{bottom:911.635350px;}
.y36{bottom:911.770350px;}
.y147{bottom:911.772600px;}
.y64{bottom:911.785350px;}
.yc7{bottom:913.595550px;}
.yc9{bottom:913.600650px;}
.y1ef{bottom:920.263500px;}
.y1ae{bottom:920.265900px;}
.yc5{bottom:928.343100px;}
.y162{bottom:929.635350px;}
.y35{bottom:929.770350px;}
.y146{bottom:929.772600px;}
.y63{bottom:929.785350px;}
.y6{bottom:934.004400px;}
.y1ee{bottom:935.263500px;}
.y1ad{bottom:935.265900px;}
.yc4{bottom:943.347600px;}
.yc6{bottom:943.352550px;}
.y17a{bottom:947.367600px;}
.y161{bottom:947.635350px;}
.y34{bottom:947.770350px;}
.y145{bottom:947.772600px;}
.y62{bottom:947.785350px;}
.y1ed{bottom:950.263500px;}
.y1ac{bottom:950.265900px;}
.yc2{bottom:958.087950px;}
.y1ec{bottom:965.263500px;}
.y1ab{bottom:965.265900px;}
.y33{bottom:965.770350px;}
.y144{bottom:965.772600px;}
.y61{bottom:965.785350px;}
.y5{bottom:970.465200px;}
.yc1{bottom:973.092450px;}
.yc3{bottom:973.104600px;}
.y1eb{bottom:980.263500px;}
.y1aa{bottom:980.265900px;}
.y160{bottom:983.230350px;}
.y32{bottom:983.770350px;}
.y143{bottom:983.772600px;}
.y60{bottom:983.785350px;}
.y1ea{bottom:995.263500px;}
.y1a9{bottom:995.265900px;}
.ybf{bottom:995.982450px;}
.y31{bottom:1001.770350px;}
.y142{bottom:1001.772600px;}
.y5f{bottom:1001.785350px;}
.ybe{bottom:1003.489950px;}
.y4{bottom:1006.926000px;}
.y1e9{bottom:1010.263500px;}
.y1a8{bottom:1010.265900px;}
.yc0{bottom:1010.986950px;}
.y30{bottom:1019.770350px;}
.y14a{bottom:1019.772600px;}
.y5e{bottom:1019.785350px;}
.y1e8{bottom:1025.263500px;}
.y1a7{bottom:1025.265900px;}
.y141{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.y149{bottom:1037.772600px;}
.y5d{bottom:1037.785350px;}
.y1e7{bottom:1040.263500px;}
.y1a6{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.618450px;}
.y51{bottom:1132.418700px;}
.y109{bottom:1132.422300px;}
.y158{bottom:1132.423200px;}
.y1e6{bottom:1132.423500px;}
.y14d{bottom:1132.425000px;}
.y179{bottom:1132.428750px;}
.y8d{bottom:1132.433400px;}
.y2d{bottom:1136.089500px;}
.y2c{bottom:1150.492500px;}
.h7{height:19.683105px;}
.h1e{height:20.010937px;}
.h8{height:28.412109px;}
.h11{height:29.162109px;}
.h10{height:29.182617px;}
.h2{height:30.597656px;}
.h17{height:31.473370px;}
.h14{height:31.491370px;}
.h1c{height:31.491970px;}
.h18{height:31.493170px;}
.h15{height:31.508770px;}
.h1a{height:31.509370px;}
.h1b{height:31.511770px;}
.h16{height:31.531570px;}
.h19{height:31.538170px;}
.h12{height:31.542970px;}
.h13{height:31.551370px;}
.hb{height:32.783203px;}
.he{height:33.351562px;}
.h4{height:34.945312px;}
.hd{height:34.992188px;}
.h1d{height:35.967338px;}
.hc{height:41.689453px;}
.ha{height:43.681641px;}
.h9{height:43.710938px;}
.h6{height:49.138634px;}
.h3{height:56.786133px;}
.hf{height:59.170617px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x17{left:78.661350px;}
.x1b{left:87.176850px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x24{left:99.921300px;}
.x31{left:102.047400px;}
.x4{left:104.173200px;}
.x3{left:106.724400px;}
.x28{left:108.436800px;}
.xb{left:110.555400px;}
.x33{left:123.307350px;}
.x6{left:131.816400px;}
.x10{left:165.985350px;}
.x13{left:180.715350px;}
.x14{left:182.834700px;}
.x1c{left:193.478850px;}
.x1f{left:201.973350px;}
.x5{left:212.876400px;}
.x29{left:214.738800px;}
.x2e{left:220.137450px;}
.x2a{left:223.243800px;}
.x1d{left:330.335850px;}
.x23{left:343.971600px;}
.x20{left:361.783350px;}
.x2d{left:385.450050px;}
.x2b{left:388.766400px;}
.x2c{left:395.477550px;}
.x21{left:443.705100px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x1e{left:476.264850px;}
.x11{left:478.345350px;}
.x7{left:480.476400px;}
.x32{left:482.627400px;}
.xd{left:491.105400px;}
.x34{left:503.851350px;}
.x12{left:512.365350px;}
.x16{left:591.650400px;}
.x22{left:614.991600px;}
.xf{left:663.492300px;}
.x2{left:693.365400px;}
.x18{left:698.213850px;}
.x25{left:719.473800px;}
.x2f{left:721.715400px;}
.xe{left:728.391600px;}
.x30{left:743.864850px;}
.x19{left:746.230350px;}
.x15{left:749.654700px;}
.x1a{left:751.543350px;}
.x26{left:767.490300px;}
.x27{left:772.803300px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v6{vertical-align:-3.604267pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.440000pt;}
.v4{vertical-align:12.474133pt;}
.v5{vertical-align:14.183467pt;}
.v1{vertical-align:19.217067pt;}
.v3{vertical-align:26.656000pt;}
.ls83{letter-spacing:-2.346667pt;}
.ls44{letter-spacing:-1.578667pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls4c{letter-spacing:-0.426667pt;}
.ls98{letter-spacing:-0.384000pt;}
.ls5a{letter-spacing:-0.373333pt;}
.ls36{letter-spacing:-0.320000pt;}
.ls54{letter-spacing:-0.298667pt;}
.ls4d{letter-spacing:-0.266667pt;}
.ls53{letter-spacing:-0.213333pt;}
.ls81{letter-spacing:-0.170667pt;}
.ls39{letter-spacing:-0.160000pt;}
.ls82{letter-spacing:-0.128000pt;}
.ls41{letter-spacing:-0.112000pt;}
.ls4b{letter-spacing:-0.106667pt;}
.ls57{letter-spacing:-0.085333pt;}
.ls40{letter-spacing:-0.074667pt;}
.ls4a{letter-spacing:-0.053333pt;}
.ls80{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004800pt;}
.ls85{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.053333pt;}
.ls34{letter-spacing:0.085333pt;}
.ls8{letter-spacing:0.106667pt;}
.ls6a{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls68{letter-spacing:0.170667pt;}
.ls29{letter-spacing:0.213333pt;}
.ls48{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.266667pt;}
.ls72{letter-spacing:0.298667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls79{letter-spacing:0.341333pt;}
.ls12{letter-spacing:0.373333pt;}
.ls74{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls35{letter-spacing:0.469333pt;}
.ls33{letter-spacing:0.480000pt;}
.ls76{letter-spacing:0.512000pt;}
.ls2a{letter-spacing:0.533333pt;}
.ls8a{letter-spacing:0.554667pt;}
.ls3a{letter-spacing:0.586667pt;}
.ls75{letter-spacing:0.597333pt;}
.ls9{letter-spacing:0.640000pt;}
.ls88{letter-spacing:0.682667pt;}
.ls16{letter-spacing:0.693333pt;}
.ls71{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls6e{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls67{letter-spacing:0.810667pt;}
.lse{letter-spacing:0.853333pt;}
.ls69{letter-spacing:0.896000pt;}
.ls4{letter-spacing:0.906667pt;}
.ls7b{letter-spacing:0.938667pt;}
.ls20{letter-spacing:0.960000pt;}
.ls8d{letter-spacing:0.981333pt;}
.ls1b{letter-spacing:1.013333pt;}
.ls6f{letter-spacing:1.024000pt;}
.ls18{letter-spacing:1.066667pt;}
.ls6c{letter-spacing:1.109333pt;}
.ls30{letter-spacing:1.120000pt;}
.ls6b{letter-spacing:1.152000pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls9b{letter-spacing:1.194667pt;}
.ls15{letter-spacing:1.226667pt;}
.ls70{letter-spacing:1.237333pt;}
.lsc{letter-spacing:1.280000pt;}
.ls89{letter-spacing:1.322667pt;}
.ls7{letter-spacing:1.333333pt;}
.ls93{letter-spacing:1.365333pt;}
.ls2f{letter-spacing:1.386667pt;}
.ls65{letter-spacing:1.408000pt;}
.ls47{letter-spacing:1.440000pt;}
.ls86{letter-spacing:1.450667pt;}
.ls26{letter-spacing:1.493333pt;}
.ls73{letter-spacing:1.536000pt;}
.ls23{letter-spacing:1.546667pt;}
.ls99{letter-spacing:1.578667pt;}
.ls22{letter-spacing:1.600000pt;}
.ls97{letter-spacing:1.621333pt;}
.ls28{letter-spacing:1.653333pt;}
.ls24{letter-spacing:1.706667pt;}
.ls7e{letter-spacing:1.749333pt;}
.ls21{letter-spacing:1.760000pt;}
.ls90{letter-spacing:1.792000pt;}
.ls25{letter-spacing:1.813333pt;}
.ls95{letter-spacing:1.834667pt;}
.ls45{letter-spacing:1.866667pt;}
.ls7a{letter-spacing:1.877333pt;}
.ls3{letter-spacing:1.920000pt;}
.ls8f{letter-spacing:1.962667pt;}
.ls31{letter-spacing:1.973333pt;}
.ls92{letter-spacing:2.005333pt;}
.ls2c{letter-spacing:2.026667pt;}
.ls9d{letter-spacing:2.048000pt;}
.ls10{letter-spacing:2.080000pt;}
.ls8c{letter-spacing:2.090667pt;}
.ls2b{letter-spacing:2.133333pt;}
.ls78{letter-spacing:2.176000pt;}
.ls19{letter-spacing:2.186667pt;}
.ls17{letter-spacing:2.240000pt;}
.ls91{letter-spacing:2.261333pt;}
.ls3c{letter-spacing:2.293333pt;}
.ls50{letter-spacing:2.346667pt;}
.ls77{letter-spacing:2.389333pt;}
.ls1c{letter-spacing:2.400000pt;}
.ls9c{letter-spacing:2.432000pt;}
.ls55{letter-spacing:2.453333pt;}
.ls84{letter-spacing:2.474667pt;}
.ls46{letter-spacing:2.506667pt;}
.ls27{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:2.613333pt;}
.ls7c{letter-spacing:2.645333pt;}
.ls1d{letter-spacing:2.666667pt;}
.ls7f{letter-spacing:2.688000pt;}
.ls38{letter-spacing:2.720000pt;}
.ls5b{letter-spacing:2.773333pt;}
.ls52{letter-spacing:2.826667pt;}
.ls5e{letter-spacing:2.880000pt;}
.ls6{letter-spacing:2.933333pt;}
.ls5d{letter-spacing:2.986667pt;}
.ls2e{letter-spacing:3.040000pt;}
.ls3b{letter-spacing:3.093333pt;}
.ls32{letter-spacing:3.146667pt;}
.ls7d{letter-spacing:3.157333pt;}
.ls37{letter-spacing:3.200000pt;}
.lsd{letter-spacing:3.253333pt;}
.ls9a{letter-spacing:3.285333pt;}
.ls49{letter-spacing:3.306667pt;}
.ls56{letter-spacing:3.413333pt;}
.ls62{letter-spacing:3.466667pt;}
.ls5c{letter-spacing:3.573333pt;}
.ls87{letter-spacing:3.584000pt;}
.ls8b{letter-spacing:3.626667pt;}
.ls58{letter-spacing:3.680000pt;}
.ls64{letter-spacing:3.786667pt;}
.ls4f{letter-spacing:3.893333pt;}
.ls60{letter-spacing:3.946667pt;}
.ls63{letter-spacing:4.106667pt;}
.ls8e{letter-spacing:4.181333pt;}
.ls2d{letter-spacing:4.213333pt;}
.ls59{letter-spacing:4.320000pt;}
.ls5f{letter-spacing:4.480000pt;}
.ls96{letter-spacing:4.522667pt;}
.ls6d{letter-spacing:4.693333pt;}
.ls66{letter-spacing:4.906667pt;}
.ls51{letter-spacing:5.013333pt;}
.ls4e{letter-spacing:5.066667pt;}
.ls94{letter-spacing:5.077333pt;}
.ls61{letter-spacing:5.813333pt;}
.ls3e{letter-spacing:352.097600pt;}
.ls3f{letter-spacing:384.089600pt;}
.ls42{letter-spacing:401.353067pt;}
.ls3d{letter-spacing:404.451733pt;}
.ls43{letter-spacing:428.313600pt;}
.ws9b{word-spacing:-18.613333pt;}
.ws6e{word-spacing:-15.946667pt;}
.ws4a{word-spacing:-15.626667pt;}
.ws10{word-spacing:-15.146667pt;}
.ws49{word-spacing:-14.826667pt;}
.wsf{word-spacing:-14.186667pt;}
.ws88{word-spacing:-14.026667pt;}
.ws6f{word-spacing:-13.973333pt;}
.wse3{word-spacing:-13.952000pt;}
.ws7b{word-spacing:-13.920000pt;}
.ws64{word-spacing:-13.866667pt;}
.ws2c{word-spacing:-13.760000pt;}
.ws89{word-spacing:-13.653333pt;}
.ws91{word-spacing:-13.386667pt;}
.ws63{word-spacing:-13.333333pt;}
.ws7c{word-spacing:-13.226667pt;}
.wscb{word-spacing:-13.141333pt;}
.wsa3{word-spacing:-12.842667pt;}
.wsd0{word-spacing:-12.757333pt;}
.wse6{word-spacing:-12.586667pt;}
.wse2{word-spacing:-12.501333pt;}
.wse4{word-spacing:-12.245333pt;}
.wsce{word-spacing:-12.202667pt;}
.ws9c{word-spacing:-12.160000pt;}
.wsa0{word-spacing:-11.904000pt;}
.ws2{word-spacing:-11.861333pt;}
.ws9e{word-spacing:-11.776000pt;}
.wse5{word-spacing:-11.733333pt;}
.wscc{word-spacing:-11.690667pt;}
.ws9f{word-spacing:-11.434667pt;}
.wsa5{word-spacing:-11.392000pt;}
.ws1{word-spacing:-11.120000pt;}
.wsa4{word-spacing:-10.965333pt;}
.wsa2{word-spacing:-10.794667pt;}
.wscd{word-spacing:-10.752000pt;}
.ws5a{word-spacing:-10.666667pt;}
.wscf{word-spacing:-10.624000pt;}
.ws9d{word-spacing:-10.496000pt;}
.ws0{word-spacing:-9.340800pt;}
.ws4b{word-spacing:-9.333333pt;}
.wsa1{word-spacing:-8.320000pt;}
.ws7d{word-spacing:-8.000000pt;}
.ws62{word-spacing:-6.400000pt;}
.ws96{word-spacing:-5.813333pt;}
.ws78{word-spacing:-5.066667pt;}
.ws7e{word-spacing:-5.013333pt;}
.wsac{word-spacing:-4.906667pt;}
.wsb3{word-spacing:-4.693333pt;}
.wse0{word-spacing:-4.522667pt;}
.ws97{word-spacing:-4.480000pt;}
.ws8e{word-spacing:-4.320000pt;}
.ws3b{word-spacing:-4.213333pt;}
.wsd9{word-spacing:-4.181333pt;}
.ws99{word-spacing:-4.106667pt;}
.ws93{word-spacing:-3.946667pt;}
.ws7f{word-spacing:-3.893333pt;}
.wsa6{word-spacing:-3.786667pt;}
.ws8d{word-spacing:-3.680000pt;}
.wsd4{word-spacing:-3.584000pt;}
.ws92{word-spacing:-3.573333pt;}
.ws98{word-spacing:-3.520000pt;}
.ws8c{word-spacing:-3.466667pt;}
.ws65{word-spacing:-3.306667pt;}
.wse7{word-spacing:-3.285333pt;}
.ws13{word-spacing:-3.253333pt;}
.ws36{word-spacing:-3.200000pt;}
.wsc7{word-spacing:-3.157333pt;}
.ws42{word-spacing:-3.146667pt;}
.ws4e{word-spacing:-3.093333pt;}
.ws3c{word-spacing:-3.040000pt;}
.ws94{word-spacing:-2.986667pt;}
.wsb{word-spacing:-2.933333pt;}
.ws95{word-spacing:-2.880000pt;}
.ws82{word-spacing:-2.826667pt;}
.ws84{word-spacing:-2.773333pt;}
.ws3e{word-spacing:-2.720000pt;}
.wsca{word-spacing:-2.688000pt;}
.ws25{word-spacing:-2.666667pt;}
.wsc6{word-spacing:-2.645333pt;}
.ws22{word-spacing:-2.613333pt;}
.ws4{word-spacing:-2.565333pt;}
.ws33{word-spacing:-2.560000pt;}
.ws83{word-spacing:-2.506667pt;}
.wsd1{word-spacing:-2.474667pt;}
.ws8a{word-spacing:-2.453333pt;}
.wse8{word-spacing:-2.432000pt;}
.ws24{word-spacing:-2.400000pt;}
.wsbf{word-spacing:-2.389333pt;}
.ws81{word-spacing:-2.346667pt;}
.ws4f{word-spacing:-2.293333pt;}
.wsdb{word-spacing:-2.261333pt;}
.ws1c{word-spacing:-2.240000pt;}
.ws20{word-spacing:-2.186667pt;}
.wsc1{word-spacing:-2.176000pt;}
.ws38{word-spacing:-2.133333pt;}
.wse1{word-spacing:-2.090667pt;}
.ws16{word-spacing:-2.080000pt;}
.ws5{word-spacing:-2.072000pt;}
.wse9{word-spacing:-2.048000pt;}
.ws39{word-spacing:-2.026667pt;}
.wsdc{word-spacing:-2.005333pt;}
.ws3a{word-spacing:-1.973333pt;}
.wsda{word-spacing:-1.962667pt;}
.ws7{word-spacing:-1.920000pt;}
.wsc3{word-spacing:-1.877333pt;}
.ws44{word-spacing:-1.866667pt;}
.wsdf{word-spacing:-1.834667pt;}
.ws1e{word-spacing:-1.813333pt;}
.wsc9{word-spacing:-1.792000pt;}
.ws29{word-spacing:-1.760000pt;}
.wsc8{word-spacing:-1.749333pt;}
.ws12{word-spacing:-1.706667pt;}
.ws35{word-spacing:-1.653333pt;}
.wsd3{word-spacing:-1.621333pt;}
.ws2a{word-spacing:-1.600000pt;}
.wsde{word-spacing:-1.578667pt;}
.ws2b{word-spacing:-1.546667pt;}
.wsbc{word-spacing:-1.536000pt;}
.ws21{word-spacing:-1.493333pt;}
.wsc0{word-spacing:-1.450667pt;}
.ws6b{word-spacing:-1.440000pt;}
.wsab{word-spacing:-1.408000pt;}
.ws3d{word-spacing:-1.386667pt;}
.wsdd{word-spacing:-1.365333pt;}
.wsc{word-spacing:-1.333333pt;}
.wsd6{word-spacing:-1.322667pt;}
.ws11{word-spacing:-1.280000pt;}
.wsb9{word-spacing:-1.237333pt;}
.ws1a{word-spacing:-1.226667pt;}
.wsc4{word-spacing:-1.194667pt;}
.ws27{word-spacing:-1.173333pt;}
.wsb1{word-spacing:-1.152000pt;}
.ws41{word-spacing:-1.120000pt;}
.wsb2{word-spacing:-1.109333pt;}
.ws1f{word-spacing:-1.066667pt;}
.wsb8{word-spacing:-1.024000pt;}
.ws23{word-spacing:-1.013333pt;}
.wsd8{word-spacing:-0.981333pt;}
.ws28{word-spacing:-0.960000pt;}
.wsc5{word-spacing:-0.938667pt;}
.ws8{word-spacing:-0.906667pt;}
.wsa9{word-spacing:-0.896000pt;}
.ws14{word-spacing:-0.853333pt;}
.wsae{word-spacing:-0.810667pt;}
.ws26{word-spacing:-0.800000pt;}
.wsb4{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.746667pt;}
.wsba{word-spacing:-0.725333pt;}
.wse{word-spacing:-0.693333pt;}
.wsb5{word-spacing:-0.682667pt;}
.ws1b{word-spacing:-0.640000pt;}
.wsbe{word-spacing:-0.597333pt;}
.ws37{word-spacing:-0.586667pt;}
.wsd7{word-spacing:-0.554667pt;}
.ws40{word-spacing:-0.533333pt;}
.ws47{word-spacing:-0.512000pt;}
.ws43{word-spacing:-0.480000pt;}
.ws48{word-spacing:-0.469333pt;}
.ws6{word-spacing:-0.426667pt;}
.wsbd{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.373333pt;}
.wsc2{word-spacing:-0.341333pt;}
.ws18{word-spacing:-0.320000pt;}
.wsbb{word-spacing:-0.298667pt;}
.ws15{word-spacing:-0.266667pt;}
.ws6d{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.213333pt;}
.wsaf{word-spacing:-0.170667pt;}
.wsa{word-spacing:-0.160000pt;}
.wsb0{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.106667pt;}
.ws46{word-spacing:-0.085333pt;}
.ws1d{word-spacing:-0.053333pt;}
.wsd2{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.042667pt;}
.ws66{word-spacing:0.053333pt;}
.ws50{word-spacing:0.074667pt;}
.ws67{word-spacing:0.106667pt;}
.ws51{word-spacing:0.112000pt;}
.wsb6{word-spacing:0.128000pt;}
.ws3f{word-spacing:0.160000pt;}
.wsad{word-spacing:0.170667pt;}
.ws87{word-spacing:0.213333pt;}
.ws6a{word-spacing:0.266667pt;}
.ws34{word-spacing:0.320000pt;}
.ws8f{word-spacing:0.373333pt;}
.wsd5{word-spacing:0.384000pt;}
.ws68{word-spacing:0.426667pt;}
.ws7a{word-spacing:0.469333pt;}
.ws77{word-spacing:1.600000pt;}
.ws90{word-spacing:1.962667pt;}
.ws9a{word-spacing:2.816000pt;}
.ws86{word-spacing:2.880000pt;}
.ws80{word-spacing:2.986667pt;}
.ws79{word-spacing:3.242667pt;}
.ws8b{word-spacing:3.306667pt;}
.wsb7{word-spacing:3.498667pt;}
.ws6c{word-spacing:3.541333pt;}
.ws85{word-spacing:3.733333pt;}
.ws69{word-spacing:4.373333pt;}
.ws45{word-spacing:4.426667pt;}
.wsa7{word-spacing:4.853333pt;}
.wsa8{word-spacing:4.906667pt;}
.ws4c{word-spacing:123.200000pt;}
.ws4d{word-spacing:137.200000pt;}
.ws53{word-spacing:138.666667pt;}
.ws5d{word-spacing:164.693333pt;}
.ws52{word-spacing:202.794667pt;}
.ws5c{word-spacing:202.805867pt;}
.ws57{word-spacing:203.605333pt;}
.ws58{word-spacing:206.720000pt;}
.ws55{word-spacing:212.053333pt;}
.ws54{word-spacing:213.461333pt;}
.ws56{word-spacing:216.832000pt;}
.ws5f{word-spacing:219.221333pt;}
.ws5b{word-spacing:219.605333pt;}
.ws5e{word-spacing:249.600000pt;}
.ws60{word-spacing:280.021333pt;}
.ws59{word-spacing:314.538667pt;}
.ws73{word-spacing:783.189333pt;}
.ws75{word-spacing:811.648000pt;}
.ws72{word-spacing:835.328000pt;}
.ws71{word-spacing:837.717333pt;}
.ws74{word-spacing:898.517333pt;}
.ws76{word-spacing:1098.453333pt;}
.ws2d{word-spacing:1146.880000pt;}
.ws31{word-spacing:1181.568000pt;}
.ws32{word-spacing:1201.408000pt;}
.ws2f{word-spacing:1208.490667pt;}
.ws2e{word-spacing:1232.213333pt;}
.ws30{word-spacing:1263.018667pt;}
.ws61{word-spacing:1398.912000pt;}
.ws70{word-spacing:1789.013333pt;}
._c{margin-left:-2576.085333pt;}
._f{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.640000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.008000pt;}
._8{width:0.906667pt;}
._4{width:2.072000pt;}
._9{width:3.786667pt;}
._6{width:4.800000pt;}
._7{width:6.293333pt;}
._a{width:7.306667pt;}
._b{width:8.266667pt;}
._d{width:9.386667pt;}
._8f{width:10.773333pt;}
._52{width:15.157333pt;}
._27{width:44.613333pt;}
._2a{width:73.098667pt;}
._38{width:75.301333pt;}
._3c{width:79.856000pt;}
._32{width:80.864000pt;}
._3e{width:84.597333pt;}
._33{width:93.968000pt;}
._1e{width:97.645333pt;}
._43{width:103.712000pt;}
._4f{width:105.802667pt;}
._22{width:107.370667pt;}
._15{width:109.200000pt;}
._1b{width:113.568000pt;}
._58{width:115.696000pt;}
._2e{width:118.533333pt;}
._23{width:120.922667pt;}
._56{width:121.856000pt;}
._3a{width:125.029333pt;}
._42{width:127.941333pt;}
._3f{width:129.658667pt;}
._1c{width:132.533333pt;}
._3d{width:135.238933pt;}
._54{width:136.304000pt;}
._2f{width:138.581333pt;}
._20{width:139.514667pt;}
._18{width:146.533333pt;}
._49{width:150.378667pt;}
._14{width:151.946667pt;}
._36{width:152.954667pt;}
._29{width:154.278400pt;}
._5a{width:156.173333pt;}
._35{width:157.658667pt;}
._46{width:159.264000pt;}
._45{width:168.074667pt;}
._4c{width:172.778667pt;}
._41{width:174.533333pt;}
._2d{width:176.810667pt;}
._4b{width:180.225600pt;}
._26{width:183.568000pt;}
._34{width:184.945067pt;}
._1d{width:190.661333pt;}
._73{width:193.152000pt;}
._4e{width:194.992000pt;}
._21{width:196.522667pt;}
._37{width:198.136533pt;}
._55{width:203.709333pt;}
._17{width:204.810667pt;}
._28{width:206.192000pt;}
._48{width:207.274667pt;}
._5f{width:214.400000pt;}
._1a{width:216.794667pt;}
._2b{width:218.848000pt;}
._44{width:221.946667pt;}
._4a{width:223.776000pt;}
._61{width:224.883733pt;}
._24{width:226.874667pt;}
._5c{width:229.461333pt;}
._40{width:230.869333pt;}
._31{width:238.560000pt;}
._5e{width:240.128000pt;}
._1f{width:242.704000pt;}
._6e{width:244.864000pt;}
._65{width:249.984000pt;}
._16{width:250.954667pt;}
._3b{width:257.189333pt;}
._72{width:260.266667pt;}
._51{width:265.477333pt;}
._2c{width:275.333333pt;}
._47{width:285.749333pt;}
._12{width:288.138667pt;}
._10{width:294.149333pt;}
._19{width:300.794667pt;}
._25{width:303.184000pt;}
._57{width:310.333333pt;}
._13{width:312.144000pt;}
._53{width:316.530667pt;}
._11{width:317.557333pt;}
._39{width:321.868267pt;}
._5d{width:325.205333pt;}
._64{width:326.400000pt;}
._5b{width:327.898667pt;}
._6f{width:336.469333pt;}
._30{width:341.226667pt;}
._4d{width:345.686933pt;}
._69{width:360.277333pt;}
._66{width:363.776000pt;}
._76{width:368.512000pt;}
._50{width:371.616000pt;}
._6a{width:437.248000pt;}
._6c{width:442.453333pt;}
._63{width:452.266667pt;}
._68{width:458.581333pt;}
._60{width:463.402667pt;}
._62{width:489.386667pt;}
._6b{width:493.786667pt;}
._75{width:496.512000pt;}
._77{width:501.589333pt;}
._67{width:509.568000pt;}
._78{width:517.888000pt;}
._71{width:533.248000pt;}
._74{width:548.650667pt;}
._6d{width:615.040000pt;}
._70{width:624.474667pt;}
._59{width:659.840000pt;}
._7a{width:832.896000pt;}
._7d{width:868.480000pt;}
._7b{width:939.648000pt;}
._8b{width:944.384000pt;}
._79{width:946.394667pt;}
._8a{width:963.370667pt;}
._82{width:978.730667pt;}
._88{width:982.272000pt;}
._89{width:984.661333pt;}
._7e{width:997.674667pt;}
._7c{width:1003.605333pt;}
._e{width:1017.130667pt;}
._7f{width:1019.008000pt;}
._80{width:1060.949333pt;}
._8e{width:1081.898667pt;}
._85{width:1107.882667pt;}
._8d{width:1112.282667pt;}
._87{width:1115.008000pt;}
._8c{width:1125.674667pt;}
._84{width:1136.384000pt;}
._83{width:1138.730667pt;}
._81{width:1167.146667pt;}
._86{width:1233.536000pt;}
.fsa{font-size:22.400000pt;}
.fs6{font-size:24.000000pt;}
.fsb{font-size:25.600000pt;}
.fsc{font-size:32.000000pt;}
.fs5{font-size:33.600000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y14c{bottom:63.037333pt;}
.y50{bottom:73.630400pt;}
.y108{bottom:74.186933pt;}
.y140{bottom:74.462533pt;}
.y157{bottom:74.470400pt;}
.y15f{bottom:74.595867pt;}
.y178{bottom:74.838000pt;}
.y8c{bottom:74.874133pt;}
.yfc{bottom:75.098133pt;}
.y14b{bottom:77.032000pt;}
.y23{bottom:78.246000pt;}
.ybd{bottom:83.240000pt;}
.y128{bottom:84.110267pt;}
.y1a5{bottom:84.552800pt;}
.y1e5{bottom:84.678667pt;}
.y107{bottom:88.181600pt;}
.y156{bottom:88.465067pt;}
.y177{bottom:88.832667pt;}
.y8b{bottom:89.540800pt;}
.y13f{bottom:90.462533pt;}
.y15e{bottom:90.595867pt;}
.y22{bottom:91.576000pt;}
.yfb{bottom:94.266933pt;}
.ybc{bottom:96.348400pt;}
.y1a4{bottom:97.886133pt;}
.y1e4{bottom:98.012000pt;}
.y127{bottom:98.552933pt;}
.y176{bottom:102.827333pt;}
.y8a{bottom:104.207467pt;}
.y13e{bottom:106.462533pt;}
.y15d{bottom:106.595867pt;}
.yfa{bottom:108.709600pt;}
.ybb{bottom:109.461733pt;}
.y1a3{bottom:111.219467pt;}
.y1e3{bottom:111.345333pt;}
.y126{bottom:112.995600pt;}
.y89{bottom:118.874133pt;}
.y13d{bottom:122.462533pt;}
.y15c{bottom:122.595867pt;}
.yba{bottom:122.799067pt;}
.yf9{bottom:123.152267pt;}
.y1a2{bottom:124.552800pt;}
.y1e2{bottom:124.678667pt;}
.y125{bottom:127.438267pt;}
.y88{bottom:133.540800pt;}
.yb9{bottom:135.907867pt;}
.yf8{bottom:137.594933pt;}
.y1a1{bottom:137.886133pt;}
.y1e1{bottom:138.012000pt;}
.y13c{bottom:138.462533pt;}
.y15b{bottom:138.595867pt;}
.y124{bottom:141.880933pt;}
.y29{bottom:148.322800pt;}
.yb8{bottom:149.020800pt;}
.y1a0{bottom:151.219467pt;}
.y1e0{bottom:151.345333pt;}
.yf7{bottom:152.037600pt;}
.y13b{bottom:154.462533pt;}
.y87{bottom:156.218133pt;}
.y123{bottom:156.323600pt;}
.yb7{bottom:162.358133pt;}
.y28{bottom:164.322800pt;}
.y19f{bottom:164.552800pt;}
.y1df{bottom:164.678667pt;}
.yf6{bottom:166.480267pt;}
.y15a{bottom:170.235867pt;}
.y13a{bottom:170.462533pt;}
.y86{bottom:170.660800pt;}
.y122{bottom:170.766267pt;}
.yb6{bottom:175.458000pt;}
.y19e{bottom:177.886133pt;}
.y1de{bottom:178.012000pt;}
.y27{bottom:180.322800pt;}
.yf5{bottom:180.922933pt;}
.y85{bottom:185.103467pt;}
.y121{bottom:185.208933pt;}
.y159{bottom:186.235867pt;}
.y139{bottom:186.462533pt;}
.yb5{bottom:188.571333pt;}
.y19d{bottom:191.219467pt;}
.y1dd{bottom:191.345333pt;}
.yf4{bottom:195.365600pt;}
.y26{bottom:196.322800pt;}
.y84{bottom:199.546133pt;}
.y120{bottom:199.651600pt;}
.yb4{bottom:201.908667pt;}
.y138{bottom:202.462533pt;}
.y19c{bottom:204.552800pt;}
.y1dc{bottom:204.678667pt;}
.yf3{bottom:209.808267pt;}
.y25{bottom:212.322800pt;}
.y83{bottom:213.988800pt;}
.y11f{bottom:214.094267pt;}
.yb3{bottom:215.022000pt;}
.y19b{bottom:217.886133pt;}
.y1db{bottom:218.012000pt;}
.y137{bottom:218.462533pt;}
.yf2{bottom:224.250933pt;}
.y2b{bottom:228.322800pt;}
.yb2{bottom:228.359333pt;}
.y82{bottom:228.431467pt;}
.y11e{bottom:228.536933pt;}
.y19a{bottom:231.219467pt;}
.y1da{bottom:231.345333pt;}
.y136{bottom:234.462533pt;}
.yf1{bottom:238.693600pt;}
.yb0{bottom:241.468267pt;}
.y11d{bottom:242.979600pt;}
.y24{bottom:243.962800pt;}
.y2a{bottom:244.322800pt;}
.y199{bottom:244.552800pt;}
.y1d9{bottom:244.678667pt;}
.y135{bottom:250.462533pt;}
.yf0{bottom:253.136267pt;}
.yaf{bottom:254.805600pt;}
.yb1{bottom:254.810000pt;}
.y81{bottom:256.442133pt;}
.y11c{bottom:257.422267pt;}
.y198{bottom:257.886133pt;}
.y1d8{bottom:258.012000pt;}
.y134{bottom:266.462533pt;}
.yef{bottom:267.635333pt;}
.yae{bottom:267.914400pt;}
.y197{bottom:271.219467pt;}
.y1d7{bottom:271.345333pt;}
.y11b{bottom:271.864933pt;}
.yad{bottom:281.251733pt;}
.yee{bottom:282.078000pt;}
.y133{bottom:282.462533pt;}
.y196{bottom:284.552800pt;}
.y1d6{bottom:284.678667pt;}
.y11a{bottom:286.307600pt;}
.y80{bottom:287.475867pt;}
.yaa{bottom:294.351200pt;}
.yac{bottom:294.365067pt;}
.yed{bottom:296.520667pt;}
.y195{bottom:297.886133pt;}
.y1d5{bottom:298.012000pt;}
.y132{bottom:298.462533pt;}
.y119{bottom:300.750267pt;}
.y7f{bottom:304.809200pt;}
.ya9{bottom:307.688533pt;}
.yab{bottom:307.702400pt;}
.y21{bottom:309.964800pt;}
.yec{bottom:310.963333pt;}
.y194{bottom:311.219467pt;}
.y1d4{bottom:311.345333pt;}
.y131{bottom:314.462533pt;}
.y118{bottom:315.192933pt;}
.ya8{bottom:320.801867pt;}
.y193{bottom:324.552800pt;}
.y1d3{bottom:324.678667pt;}
.yeb{bottom:325.406000pt;}
.y117{bottom:329.635600pt;}
.y130{bottom:330.462533pt;}
.ya7{bottom:333.915200pt;}
.y20{bottom:334.271467pt;}
.y192{bottom:337.886133pt;}
.y1d2{bottom:338.012000pt;}
.yea{bottom:339.848667pt;}
.y116{bottom:344.078267pt;}
.y12f{bottom:346.462533pt;}
.y5c{bottom:346.475867pt;}
.ya6{bottom:347.252533pt;}
.y1f{bottom:350.271467pt;}
.y191{bottom:351.219467pt;}
.y1d1{bottom:351.345333pt;}
.ye9{bottom:354.291333pt;}
.y115{bottom:358.520933pt;}
.ya5{bottom:360.365867pt;}
.y12e{bottom:362.462533pt;}
.y5b{bottom:362.475867pt;}
.y190{bottom:364.552800pt;}
.y1d0{bottom:364.678667pt;}
.y1e{bottom:366.271467pt;}
.ye8{bottom:368.734000pt;}
.y114{bottom:372.963600pt;}
.ya4{bottom:373.703200pt;}
.y18f{bottom:377.886133pt;}
.y1cf{bottom:378.012000pt;}
.y12d{bottom:378.462533pt;}
.y5a{bottom:378.475867pt;}
.y1d{bottom:382.271467pt;}
.ye7{bottom:383.176667pt;}
.ya2{bottom:386.804667pt;}
.y113{bottom:387.406267pt;}
.y18e{bottom:391.219467pt;}
.y1ce{bottom:391.345333pt;}
.y12c{bottom:394.462533pt;}
.y7e{bottom:394.475867pt;}
.ye6{bottom:397.619333pt;}
.y1c{bottom:398.271467pt;}
.ya1{bottom:400.142000pt;}
.ya3{bottom:400.153867pt;}
.y112{bottom:401.848933pt;}
.y18d{bottom:404.552800pt;}
.y1cd{bottom:404.678667pt;}
.y59{bottom:410.115867pt;}
.y4f{bottom:410.462533pt;}
.y7d{bottom:410.475867pt;}
.y106{bottom:410.595867pt;}
.ye5{bottom:412.062000pt;}
.ya0{bottom:413.255333pt;}
.y1b{bottom:414.271467pt;}
.y111{bottom:416.291600pt;}
.y18c{bottom:417.886133pt;}
.y1cc{bottom:418.012000pt;}
.y175{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y7c{bottom:426.475867pt;}
.ye4{bottom:426.504667pt;}
.y9f{bottom:426.592667pt;}
.y105{bottom:426.595867pt;}
.y1a{bottom:430.271467pt;}
.y110{bottom:430.734267pt;}
.y18b{bottom:431.219467pt;}
.y1cb{bottom:431.345333pt;}
.y9e{bottom:439.706000pt;}
.ye3{bottom:440.947333pt;}
.y58{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y7b{bottom:442.475867pt;}
.y104{bottom:442.595867pt;}
.y18a{bottom:444.552800pt;}
.y1ca{bottom:444.678667pt;}
.y10f{bottom:445.176933pt;}
.y19{bottom:446.271467pt;}
.y9d{bottom:453.043333pt;}
.ye2{bottom:455.390000pt;}
.y189{bottom:457.886133pt;}
.y1c9{bottom:458.012000pt;}
.y57{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y7a{bottom:458.475867pt;}
.y103{bottom:458.595867pt;}
.y10e{bottom:459.619600pt;}
.y18{bottom:462.271467pt;}
.ye1{bottom:469.832667pt;}
.y188{bottom:471.219467pt;}
.y1c8{bottom:471.345333pt;}
.y9b{bottom:473.716667pt;}
.y10d{bottom:474.062267pt;}
.y56{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y79{bottom:474.475867pt;}
.y102{bottom:474.595867pt;}
.y17{bottom:478.271467pt;}
.y9a{bottom:480.390000pt;}
.ye0{bottom:484.275333pt;}
.y187{bottom:484.552800pt;}
.y1c7{bottom:484.678667pt;}
.y9c{bottom:487.054000pt;}
.y10c{bottom:488.504933pt;}
.y55{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y78{bottom:490.475867pt;}
.y101{bottom:490.595867pt;}
.y16{bottom:494.271467pt;}
.y186{bottom:497.886133pt;}
.y1c6{bottom:498.012000pt;}
.ydf{bottom:498.718000pt;}
.y54{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y77{bottom:506.475867pt;}
.y100{bottom:506.595867pt;}
.y15{bottom:510.271467pt;}
.y99{bottom:510.982533pt;}
.y185{bottom:511.219467pt;}
.y206{bottom:511.345333pt;}
.y1c5{bottom:511.347467pt;}
.y10b{bottom:516.515600pt;}
.y53{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y76{bottom:522.475867pt;}
.yff{bottom:522.595867pt;}
.y184{bottom:524.552800pt;}
.y205{bottom:524.678667pt;}
.y1c4{bottom:524.680800pt;}
.y14{bottom:526.271467pt;}
.yde{bottom:526.728533pt;}
.y204{bottom:538.012000pt;}
.y1c3{bottom:538.014133pt;}
.y174{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y75{bottom:538.475867pt;}
.yfe{bottom:538.595867pt;}
.y13{bottom:542.271467pt;}
.y10a{bottom:547.529200pt;}
.y203{bottom:551.345333pt;}
.y1c2{bottom:551.347467pt;}
.y52{bottom:553.982533pt;}
.y183{bottom:553.984533pt;}
.y173{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y74{bottom:554.475867pt;}
.y96{bottom:554.595867pt;}
.y12{bottom:558.271467pt;}
.y202{bottom:564.678667pt;}
.y1c1{bottom:564.680800pt;}
.y172{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.y73{bottom:570.475867pt;}
.y95{bottom:570.595867pt;}
.ydc{bottom:574.051867pt;}
.y11{bottom:574.271467pt;}
.y201{bottom:578.012000pt;}
.y1c0{bottom:578.014133pt;}
.yfd{bottom:586.235867pt;}
.y171{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.y72{bottom:586.475867pt;}
.y94{bottom:586.595867pt;}
.ydb{bottom:587.389200pt;}
.ydd{bottom:587.407067pt;}
.y12b{bottom:587.534267pt;}
.y10{bottom:590.271467pt;}
.y200{bottom:591.345333pt;}
.y1bf{bottom:591.347467pt;}
.yda{bottom:600.502533pt;}
.y12a{bottom:601.528933pt;}
.y170{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.y182{bottom:602.464533pt;}
.y71{bottom:602.475867pt;}
.y93{bottom:602.595867pt;}
.y1ff{bottom:604.678667pt;}
.y1be{bottom:604.680800pt;}
.yf{bottom:606.271467pt;}
.yd9{bottom:613.839867pt;}
.y129{bottom:615.523600pt;}
.y1fe{bottom:618.012000pt;}
.y1bd{bottom:618.014133pt;}
.y181{bottom:618.104533pt;}
.y16f{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.y70{bottom:618.475867pt;}
.y92{bottom:618.595867pt;}
.ye{bottom:622.271467pt;}
.yd8{bottom:626.953200pt;}
.y1fd{bottom:631.345333pt;}
.y1bc{bottom:631.347467pt;}
.y98{bottom:634.115867pt;}
.y16e{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.y6f{bottom:634.475867pt;}
.y91{bottom:634.595867pt;}
.yd7{bottom:640.290533pt;}
.y1fc{bottom:644.678667pt;}
.y1bb{bottom:644.680800pt;}
.y180{bottom:650.104533pt;}
.y16d{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.y6e{bottom:650.475867pt;}
.y90{bottom:650.595867pt;}
.yd{bottom:651.724667pt;}
.yd6{bottom:653.403867pt;}
.y1fb{bottom:658.012000pt;}
.y1ba{bottom:658.014133pt;}
.y97{bottom:665.995867pt;}
.y16c{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.y6d{bottom:666.475867pt;}
.y8f{bottom:666.595867pt;}
.yd5{bottom:666.741200pt;}
.y1fa{bottom:671.345333pt;}
.y1b9{bottom:671.347467pt;}
.yc{bottom:674.238267pt;}
.yd3{bottom:679.854000pt;}
.y16b{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.y17f{bottom:682.464533pt;}
.y6c{bottom:682.475867pt;}
.y155{bottom:682.595867pt;}
.y1f9{bottom:684.678667pt;}
.y1b8{bottom:684.680800pt;}
.yd2{bottom:693.191333pt;}
.yd4{bottom:693.191867pt;}
.y1f8{bottom:698.012000pt;}
.y1b7{bottom:698.014133pt;}
.y17e{bottom:698.104533pt;}
.y8e{bottom:698.235867pt;}
.y16a{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.y6b{bottom:698.475867pt;}
.y154{bottom:698.595867pt;}
.yb{bottom:705.861467pt;}
.yd1{bottom:706.300133pt;}
.y1f7{bottom:711.345333pt;}
.y1b6{bottom:711.347467pt;}
.y169{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.y6a{bottom:714.475867pt;}
.y153{bottom:714.595867pt;}
.ya{bottom:717.861467pt;}
.yd0{bottom:719.404533pt;}
.y1f6{bottom:724.678667pt;}
.y1b5{bottom:724.680800pt;}
.y9{bottom:729.861467pt;}
.y168{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.y17d{bottom:730.464533pt;}
.y69{bottom:730.475867pt;}
.y152{bottom:730.595867pt;}
.ycf{bottom:732.741867pt;}
.y1f5{bottom:738.012000pt;}
.y1b4{bottom:738.014133pt;}
.yce{bottom:745.855200pt;}
.y167{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y17c{bottom:746.464533pt;}
.y68{bottom:746.475867pt;}
.y151{bottom:746.595867pt;}
.y1f4{bottom:751.345333pt;}
.y1b3{bottom:751.347467pt;}
.y8{bottom:756.783067pt;}
.ycd{bottom:759.192533pt;}
.y17b{bottom:762.104533pt;}
.y166{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.y67{bottom:762.475867pt;}
.y150{bottom:762.595867pt;}
.y1f3{bottom:764.678667pt;}
.y1b2{bottom:764.680800pt;}
.ycb{bottom:772.301467pt;}
.y1f2{bottom:778.012000pt;}
.y1b1{bottom:778.014133pt;}
.y165{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.y66{bottom:778.475867pt;}
.yca{bottom:785.638800pt;}
.ycc{bottom:785.643200pt;}
.y1f1{bottom:791.345333pt;}
.y1b0{bottom:791.347467pt;}
.y14f{bottom:794.235867pt;}
.y164{bottom:794.342533pt;}
.y37{bottom:794.462533pt;}
.y148{bottom:794.464533pt;}
.y65{bottom:794.475867pt;}
.y7{bottom:797.816533pt;}
.yc8{bottom:798.747600pt;}
.y1f0{bottom:804.678667pt;}
.y1af{bottom:804.680800pt;}
.y14e{bottom:810.235867pt;}
.y163{bottom:810.342533pt;}
.y36{bottom:810.462533pt;}
.y147{bottom:810.464533pt;}
.y64{bottom:810.475867pt;}
.yc7{bottom:812.084933pt;}
.yc9{bottom:812.089467pt;}
.y1ef{bottom:818.012000pt;}
.y1ae{bottom:818.014133pt;}
.yc5{bottom:825.193867pt;}
.y162{bottom:826.342533pt;}
.y35{bottom:826.462533pt;}
.y146{bottom:826.464533pt;}
.y63{bottom:826.475867pt;}
.y6{bottom:830.226133pt;}
.y1ee{bottom:831.345333pt;}
.y1ad{bottom:831.347467pt;}
.yc4{bottom:838.531200pt;}
.yc6{bottom:838.535600pt;}
.y17a{bottom:842.104533pt;}
.y161{bottom:842.342533pt;}
.y34{bottom:842.462533pt;}
.y145{bottom:842.464533pt;}
.y62{bottom:842.475867pt;}
.y1ed{bottom:844.678667pt;}
.y1ac{bottom:844.680800pt;}
.yc2{bottom:851.633733pt;}
.y1ec{bottom:858.012000pt;}
.y1ab{bottom:858.014133pt;}
.y33{bottom:858.462533pt;}
.y144{bottom:858.464533pt;}
.y61{bottom:858.475867pt;}
.y5{bottom:862.635733pt;}
.yc1{bottom:864.971067pt;}
.yc3{bottom:864.981867pt;}
.y1eb{bottom:871.345333pt;}
.y1aa{bottom:871.347467pt;}
.y160{bottom:873.982533pt;}
.y32{bottom:874.462533pt;}
.y143{bottom:874.464533pt;}
.y60{bottom:874.475867pt;}
.y1ea{bottom:884.678667pt;}
.y1a9{bottom:884.680800pt;}
.ybf{bottom:885.317733pt;}
.y31{bottom:890.462533pt;}
.y142{bottom:890.464533pt;}
.y5f{bottom:890.475867pt;}
.ybe{bottom:891.991067pt;}
.y4{bottom:895.045333pt;}
.y1e9{bottom:898.012000pt;}
.y1a8{bottom:898.014133pt;}
.yc0{bottom:898.655067pt;}
.y30{bottom:906.462533pt;}
.y14a{bottom:906.464533pt;}
.y5e{bottom:906.475867pt;}
.y1e8{bottom:911.345333pt;}
.y1a7{bottom:911.347467pt;}
.y141{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.y149{bottom:922.464533pt;}
.y5d{bottom:922.475867pt;}
.y1e7{bottom:924.678667pt;}
.y1a6{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.549733pt;}
.y51{bottom:1006.594400pt;}
.y109{bottom:1006.597600pt;}
.y158{bottom:1006.598400pt;}
.y1e6{bottom:1006.598667pt;}
.y14d{bottom:1006.600000pt;}
.y179{bottom:1006.603333pt;}
.y8d{bottom:1006.607467pt;}
.y2d{bottom:1009.857333pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:17.496094pt;}
.h1e{height:17.787500pt;}
.h8{height:25.255208pt;}
.h11{height:25.921875pt;}
.h10{height:25.940104pt;}
.h2{height:27.197917pt;}
.h17{height:27.976329pt;}
.h14{height:27.992329pt;}
.h1c{height:27.992862pt;}
.h18{height:27.993929pt;}
.h15{height:28.007796pt;}
.h1a{height:28.008329pt;}
.h1b{height:28.010462pt;}
.h16{height:28.028062pt;}
.h19{height:28.033929pt;}
.h12{height:28.038196pt;}
.h13{height:28.045662pt;}
.hb{height:29.140625pt;}
.he{height:29.645833pt;}
.h4{height:31.062500pt;}
.hd{height:31.104167pt;}
.h1d{height:31.970967pt;}
.hc{height:37.057292pt;}
.ha{height:38.828125pt;}
.h9{height:38.854167pt;}
.h6{height:43.678785pt;}
.h3{height:50.476562pt;}
.hf{height:52.596104pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x17{left:69.921200pt;}
.x1b{left:77.490533pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x24{left:88.818933pt;}
.x31{left:90.708800pt;}
.x4{left:92.598400pt;}
.x3{left:94.866133pt;}
.x28{left:96.388267pt;}
.xb{left:98.271467pt;}
.x33{left:109.606533pt;}
.x6{left:117.170133pt;}
.x10{left:147.542533pt;}
.x13{left:160.635867pt;}
.x14{left:162.519733pt;}
.x1c{left:171.981200pt;}
.x1f{left:179.531867pt;}
.x5{left:189.223467pt;}
.x29{left:190.878933pt;}
.x2e{left:195.677733pt;}
.x2a{left:198.438933pt;}
.x1d{left:293.631867pt;}
.x23{left:305.752533pt;}
.x20{left:321.585200pt;}
.x2d{left:342.622267pt;}
.x2b{left:345.570133pt;}
.x2c{left:351.535600pt;}
.x21{left:394.404533pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x1e{left:423.346533pt;}
.x11{left:425.195867pt;}
.x7{left:427.090133pt;}
.x32{left:429.002133pt;}
.xd{left:436.538133pt;}
.x34{left:447.867867pt;}
.x12{left:455.435867pt;}
.x16{left:525.911467pt;}
.x22{left:546.659200pt;}
.xf{left:589.770933pt;}
.x2{left:616.324800pt;}
.x18{left:620.634533pt;}
.x25{left:639.532267pt;}
.x2f{left:641.524800pt;}
.xe{left:647.459200pt;}
.x30{left:661.213200pt;}
.x19{left:663.315867pt;}
.x15{left:666.359733pt;}
.x1a{left:668.038533pt;}
.x26{left:682.213600pt;}
.x27{left:686.936267pt;}
}




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