
    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_fcda2ca04482e3a37a053c93.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_20ace7d7ef19c657bc186076.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_9692fcd31ae4f85e23692ad7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dc7e02907fd1318f32cf9b2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f9be60c2dbc20140186aa739.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1403c01cba6c6b74aad45904.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_cd9d66db8354b92023411b02.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f5fdf784b986bf0a318d7a40.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_02e6f3e49b8489be00631d8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_49247eb22a8ec86596103d62.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891113;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;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:21.619200px;}
.ls73{letter-spacing:-5.580000px;}
.ls11{letter-spacing:-0.780000px;}
.ls39{letter-spacing:-0.420000px;}
.ls6e{letter-spacing:-0.360000px;}
.ls5f{letter-spacing:-0.300000px;}
.ls55{letter-spacing:-0.288000px;}
.ls61{letter-spacing:-0.240000px;}
.ls60{letter-spacing:-0.180000px;}
.ls4c{letter-spacing:-0.144000px;}
.ls4b{letter-spacing:-0.120000px;}
.ls4e{letter-spacing:-0.096000px;}
.ls12{letter-spacing:-0.060000px;}
.ls6c{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004200px;}
.ls88{letter-spacing:0.048000px;}
.ls29{letter-spacing:0.060000px;}
.ls80{letter-spacing:0.096000px;}
.ls3d{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.180000px;}
.ls47{letter-spacing:0.192000px;}
.ls30{letter-spacing:0.240000px;}
.ls8c{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls6a{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.384000px;}
.ls35{letter-spacing:0.420000px;}
.ls82{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.480000px;}
.ls8d{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.600000px;}
.ls78{letter-spacing:0.624000px;}
.ls20{letter-spacing:0.660000px;}
.ls72{letter-spacing:0.672000px;}
.ls21{letter-spacing:0.720000px;}
.ls77{letter-spacing:0.768000px;}
.ls2d{letter-spacing:0.780000px;}
.ls8e{letter-spacing:0.816000px;}
.ls1f{letter-spacing:0.840000px;}
.ls94{letter-spacing:0.864000px;}
.ls7{letter-spacing:0.900000px;}
.ls89{letter-spacing:0.912000px;}
.ls31{letter-spacing:0.960000px;}
.ls7e{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.020000px;}
.ls83{letter-spacing:1.056000px;}
.ls22{letter-spacing:1.080000px;}
.ls8a{letter-spacing:1.104000px;}
.ls2f{letter-spacing:1.140000px;}
.ls87{letter-spacing:1.152000px;}
.ls24{letter-spacing:1.200000px;}
.ls7a{letter-spacing:1.248000px;}
.ls17{letter-spacing:1.260000px;}
.ls96{letter-spacing:1.296000px;}
.ls27{letter-spacing:1.320000px;}
.ls4d{letter-spacing:1.344000px;}
.ls36{letter-spacing:1.380000px;}
.ls7f{letter-spacing:1.392000px;}
.ls5{letter-spacing:1.440000px;}
.ls8b{letter-spacing:1.488000px;}
.ls26{letter-spacing:1.500000px;}
.ls95{letter-spacing:1.536000px;}
.ls1{letter-spacing:1.560000px;}
.ls7c{letter-spacing:1.584000px;}
.ls2e{letter-spacing:1.620000px;}
.ls91{letter-spacing:1.632000px;}
.ls37{letter-spacing:1.680000px;}
.ls70{letter-spacing:1.712400px;}
.ls76{letter-spacing:1.728000px;}
.lse{letter-spacing:1.740000px;}
.ls81{letter-spacing:1.776000px;}
.lsc{letter-spacing:1.800000px;}
.ls7d{letter-spacing:1.824000px;}
.lsa{letter-spacing:1.860000px;}
.ls32{letter-spacing:1.920000px;}
.ls54{letter-spacing:1.968000px;}
.ls15{letter-spacing:1.980000px;}
.ls51{letter-spacing:2.016000px;}
.ls2c{letter-spacing:2.040000px;}
.ls4a{letter-spacing:2.100000px;}
.ls25{letter-spacing:2.160000px;}
.ls7b{letter-spacing:2.208000px;}
.ls3c{letter-spacing:2.220000px;}
.ls9{letter-spacing:2.280000px;}
.ls1e{letter-spacing:2.340000px;}
.ls42{letter-spacing:2.352000px;}
.ls34{letter-spacing:2.400000px;}
.ls13{letter-spacing:2.460000px;}
.ls79{letter-spacing:2.496000px;}
.ls3e{letter-spacing:2.520000px;}
.lsb{letter-spacing:2.580000px;}
.ls4f{letter-spacing:2.640000px;}
.ls57{letter-spacing:2.700000px;}
.ls38{letter-spacing:2.760000px;}
.ls90{letter-spacing:2.784000px;}
.ls2b{letter-spacing:2.820000px;}
.ls84{letter-spacing:2.832000px;}
.ls14{letter-spacing:2.880000px;}
.ls56{letter-spacing:2.940000px;}
.ls23{letter-spacing:3.000000px;}
.ls86{letter-spacing:3.024000px;}
.ls6{letter-spacing:3.060000px;}
.ls93{letter-spacing:3.072000px;}
.ls33{letter-spacing:3.120000px;}
.lsf{letter-spacing:3.180000px;}
.ls3f{letter-spacing:3.240000px;}
.ls3b{letter-spacing:3.300000px;}
.ls5d{letter-spacing:3.360000px;}
.ls85{letter-spacing:3.408000px;}
.ls43{letter-spacing:3.504000px;}
.ls59{letter-spacing:3.540000px;}
.ls5c{letter-spacing:3.600000px;}
.ls6f{letter-spacing:3.648000px;}
.lsd{letter-spacing:3.660000px;}
.ls3a{letter-spacing:3.720000px;}
.ls5b{letter-spacing:3.744000px;}
.ls6d{letter-spacing:3.780000px;}
.ls52{letter-spacing:3.840000px;}
.ls1c{letter-spacing:3.900000px;}
.ls5a{letter-spacing:3.960000px;}
.ls92{letter-spacing:3.984000px;}
.ls2a{letter-spacing:4.020000px;}
.ls1a{letter-spacing:4.080000px;}
.ls50{letter-spacing:4.140000px;}
.ls48{letter-spacing:4.176000px;}
.ls69{letter-spacing:4.224000px;}
.ls8f{letter-spacing:4.272000px;}
.ls74{letter-spacing:4.320000px;}
.ls67{letter-spacing:4.380000px;}
.ls66{letter-spacing:4.500000px;}
.ls46{letter-spacing:4.512000px;}
.ls6b{letter-spacing:4.704000px;}
.ls62{letter-spacing:4.920000px;}
.ls58{letter-spacing:4.980000px;}
.ls5e{letter-spacing:5.040000px;}
.ls65{letter-spacing:5.400000px;}
.ls1b{letter-spacing:5.580000px;}
.ls49{letter-spacing:5.820000px;}
.ls63{letter-spacing:6.060000px;}
.ls64{letter-spacing:6.120000px;}
.ls41{letter-spacing:6.288000px;}
.ls16{letter-spacing:6.900000px;}
.ls75{letter-spacing:7.320000px;}
.ls44{letter-spacing:7.440000px;}
.ls71{letter-spacing:7.680000px;}
.ls53{letter-spacing:7.920000px;}
.ls1d{letter-spacing:8.820000px;}
.ls68{letter-spacing:8.940000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.194800px;}
.wsc9{word-spacing:-20.580000px;}
.ws98{word-spacing:-20.040000px;}
.wsac{word-spacing:-19.920000px;}
.wse7{word-spacing:-19.200000px;}
.ws17{word-spacing:-18.900000px;}
.wsc6{word-spacing:-18.840000px;}
.ws8{word-spacing:-18.660000px;}
.wsdb{word-spacing:-18.540000px;}
.ws5{word-spacing:-18.060000px;}
.ws1c{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.880000px;}
.wsd4{word-spacing:-17.760000px;}
.ws67{word-spacing:-17.640000px;}
.ws15{word-spacing:-17.460000px;}
.ws19{word-spacing:-17.340000px;}
.ws18{word-spacing:-17.280000px;}
.ws3d{word-spacing:-17.160000px;}
.ws84{word-spacing:-17.040000px;}
.wsc5{word-spacing:-16.980000px;}
.ws1f{word-spacing:-16.920000px;}
.ws1a{word-spacing:-16.860000px;}
.ws9{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.wsda{word-spacing:-16.620000px;}
.ws20{word-spacing:-16.560000px;}
.wsd5{word-spacing:-16.500000px;}
.wsbb{word-spacing:-16.440000px;}
.ws83{word-spacing:-16.380000px;}
.ws1e{word-spacing:-16.320000px;}
.ws95{word-spacing:-16.260000px;}
.ws1d{word-spacing:-16.200000px;}
.ws5f{word-spacing:-16.140000px;}
.wsd9{word-spacing:-16.080000px;}
.ws4{word-spacing:-16.020000px;}
.ws6{word-spacing:-15.900000px;}
.ws46{word-spacing:-15.840000px;}
.wsd8{word-spacing:-15.780000px;}
.ws96{word-spacing:-15.720000px;}
.ws3b{word-spacing:-15.660000px;}
.ws7{word-spacing:-15.600000px;}
.ws3c{word-spacing:-15.540000px;}
.ws40{word-spacing:-15.504000px;}
.ws82{word-spacing:-15.480000px;}
.ws78{word-spacing:-15.300000px;}
.wsab{word-spacing:-15.240000px;}
.ws16{word-spacing:-15.180000px;}
.ws3e{word-spacing:-15.120000px;}
.ws85{word-spacing:-15.060000px;}
.wsec{word-spacing:-15.024000px;}
.ws3f{word-spacing:-15.000000px;}
.ws97{word-spacing:-14.940000px;}
.ws94{word-spacing:-14.880000px;}
.wsfb{word-spacing:-14.784000px;}
.wsba{word-spacing:-14.700000px;}
.wsfe{word-spacing:-13.824000px;}
.wseb{word-spacing:-13.776000px;}
.ws93{word-spacing:-13.500000px;}
.wsf8{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.344000px;}
.wsfc{word-spacing:-13.008000px;}
.wse9{word-spacing:-12.960000px;}
.wsfd{word-spacing:-12.864000px;}
.wsff{word-spacing:-12.816000px;}
.wsf9{word-spacing:-12.768000px;}
.wscb{word-spacing:-12.720000px;}
.wse8{word-spacing:-12.672000px;}
.ws42{word-spacing:-12.576000px;}
.wsfa{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.ws41{word-spacing:-12.480000px;}
.wsf6{word-spacing:-12.384000px;}
.wsf5{word-spacing:-12.336000px;}
.wsc7{word-spacing:-12.240000px;}
.ws45{word-spacing:-12.192000px;}
.wsea{word-spacing:-12.096000px;}
.wsf7{word-spacing:-12.048000px;}
.ws44{word-spacing:-12.000000px;}
.ws68{word-spacing:-11.904000px;}
.ws43{word-spacing:-11.856000px;}
.ws1{word-spacing:-10.508400px;}
.wsad{word-spacing:-5.040000px;}
.wse3{word-spacing:-4.920000px;}
.ws110{word-spacing:-4.272000px;}
.wsc3{word-spacing:-3.840000px;}
.wsd0{word-spacing:-3.780000px;}
.ws9c{word-spacing:-3.744000px;}
.wse4{word-spacing:-3.720000px;}
.ws53{word-spacing:-3.504000px;}
.ws37{word-spacing:-3.300000px;}
.ws9e{word-spacing:-3.240000px;}
.wse2{word-spacing:-2.940000px;}
.wsc{word-spacing:-2.886000px;}
.ws21{word-spacing:-2.880000px;}
.wsd6{word-spacing:-2.760000px;}
.wsf1{word-spacing:-2.640000px;}
.ws3a{word-spacing:-2.475000px;}
.ws31{word-spacing:-2.460000px;}
.wsa1{word-spacing:-2.400000px;}
.ws52{word-spacing:-2.352000px;}
.ws36{word-spacing:-2.280000px;}
.ws2a{word-spacing:-2.220000px;}
.ws4a{word-spacing:-2.160000px;}
.ws91{word-spacing:-2.100000px;}
.wsa2{word-spacing:-2.040000px;}
.ws111{word-spacing:-2.016000px;}
.ws22{word-spacing:-1.980000px;}
.wse1{word-spacing:-1.860000px;}
.ws115{word-spacing:-1.824000px;}
.ws14{word-spacing:-1.740000px;}
.wsaf{word-spacing:-1.680000px;}
.ws39{word-spacing:-1.665000px;}
.wsb5{word-spacing:-1.620000px;}
.wse0{word-spacing:-1.560000px;}
.wsae{word-spacing:-1.500000px;}
.ws8f{word-spacing:-1.440000px;}
.ws103{word-spacing:-1.392000px;}
.wsb6{word-spacing:-1.320000px;}
.ws113{word-spacing:-1.248000px;}
.wsb9{word-spacing:-1.200000px;}
.ws4f{word-spacing:-1.080000px;}
.ws10{word-spacing:-1.020000px;}
.wsb7{word-spacing:-0.960000px;}
.wse5{word-spacing:-0.900000px;}
.wsa9{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.840000px;}
.ws10d{word-spacing:-0.816000px;}
.ws38{word-spacing:-0.810000px;}
.wscd{word-spacing:-0.720000px;}
.ws109{word-spacing:-0.672000px;}
.ws25{word-spacing:-0.660000px;}
.ws59{word-spacing:-0.576000px;}
.ws10f{word-spacing:-0.528000px;}
.ws55{word-spacing:-0.480000px;}
.wsdd{word-spacing:-0.420000px;}
.ws29{word-spacing:-0.360000px;}
.ws100{word-spacing:-0.336000px;}
.ws30{word-spacing:-0.300000px;}
.ws106{word-spacing:-0.288000px;}
.wsaa{word-spacing:-0.240000px;}
.wsef{word-spacing:-0.192000px;}
.ws2f{word-spacing:-0.180000px;}
.ws5a{word-spacing:-0.144000px;}
.ws4d{word-spacing:-0.120000px;}
.ws72{word-spacing:-0.096000px;}
.ws87{word-spacing:-0.060000px;}
.wsd3{word-spacing:-0.048000px;}
.wsb{word-spacing:0.000000px;}
.wsf0{word-spacing:0.048000px;}
.wsb8{word-spacing:0.060000px;}
.ws6a{word-spacing:0.120000px;}
.ws11{word-spacing:0.180000px;}
.ws6d{word-spacing:0.240000px;}
.ws65{word-spacing:0.288000px;}
.ws6b{word-spacing:0.300000px;}
.ws116{word-spacing:0.336000px;}
.wsbe{word-spacing:0.360000px;}
.wsed{word-spacing:0.420000px;}
.ws10e{word-spacing:0.432000px;}
.wsa5{word-spacing:0.480000px;}
.ws117{word-spacing:0.528000px;}
.ws4c{word-spacing:0.540000px;}
.ws61{word-spacing:0.600000px;}
.wsbd{word-spacing:0.624000px;}
.ws8d{word-spacing:0.660000px;}
.wsf4{word-spacing:0.672000px;}
.ws5b{word-spacing:0.720000px;}
.ws7e{word-spacing:0.768000px;}
.ws26{word-spacing:0.780000px;}
.ws104{word-spacing:0.816000px;}
.ws5d{word-spacing:0.840000px;}
.ws70{word-spacing:0.900000px;}
.ws10c{word-spacing:0.912000px;}
.ws7a{word-spacing:0.960000px;}
.ws10b{word-spacing:1.056000px;}
.ws8e{word-spacing:1.080000px;}
.wsa4{word-spacing:1.104000px;}
.ws63{word-spacing:1.140000px;}
.wscf{word-spacing:1.152000px;}
.wsc0{word-spacing:1.200000px;}
.wscc{word-spacing:1.296000px;}
.ws79{word-spacing:1.320000px;}
.ws64{word-spacing:1.344000px;}
.ws89{word-spacing:1.380000px;}
.ws81{word-spacing:1.392000px;}
.ws2c{word-spacing:1.440000px;}
.wsf2{word-spacing:1.488000px;}
.ws2b{word-spacing:1.500000px;}
.ws8b{word-spacing:1.560000px;}
.ws23{word-spacing:1.620000px;}
.wsb4{word-spacing:1.680000px;}
.ws8c{word-spacing:1.740000px;}
.ws69{word-spacing:1.800000px;}
.wsa7{word-spacing:1.824000px;}
.wsc1{word-spacing:1.860000px;}
.wsca{word-spacing:1.872000px;}
.wsdc{word-spacing:1.920000px;}
.ws80{word-spacing:1.968000px;}
.ws73{word-spacing:2.016000px;}
.ws28{word-spacing:2.040000px;}
.ws9a{word-spacing:2.100000px;}
.ws7f{word-spacing:2.112000px;}
.wsa8{word-spacing:2.208000px;}
.ws90{word-spacing:2.220000px;}
.ws101{word-spacing:2.256000px;}
.ws49{word-spacing:2.280000px;}
.ws66{word-spacing:2.304000px;}
.ws9d{word-spacing:2.340000px;}
.ws76{word-spacing:2.352000px;}
.ws102{word-spacing:2.448000px;}
.ws2e{word-spacing:2.460000px;}
.ws13{word-spacing:2.520000px;}
.ws75{word-spacing:2.544000px;}
.ws88{word-spacing:2.580000px;}
.ws60{word-spacing:2.640000px;}
.ws107{word-spacing:2.688000px;}
.wsb3{word-spacing:2.700000px;}
.ws105{word-spacing:2.736000px;}
.ws5c{word-spacing:2.760000px;}
.wsd1{word-spacing:2.820000px;}
.ws7d{word-spacing:2.880000px;}
.ws10a{word-spacing:2.928000px;}
.ws92{word-spacing:2.940000px;}
.wsb2{word-spacing:3.060000px;}
.ws9b{word-spacing:3.072000px;}
.wsf3{word-spacing:3.168000px;}
.ws8a{word-spacing:3.180000px;}
.wsa0{word-spacing:3.240000px;}
.ws108{word-spacing:3.264000px;}
.ws5e{word-spacing:3.300000px;}
.ws7b{word-spacing:3.360000px;}
.ws77{word-spacing:3.408000px;}
.ws6c{word-spacing:3.420000px;}
.ws27{word-spacing:3.480000px;}
.wsce{word-spacing:3.504000px;}
.ws114{word-spacing:3.552000px;}
.ws12{word-spacing:3.600000px;}
.wsd2{word-spacing:3.648000px;}
.ws2d{word-spacing:3.660000px;}
.ws7c{word-spacing:3.720000px;}
.ws57{word-spacing:3.744000px;}
.ws48{word-spacing:3.840000px;}
.wse6{word-spacing:3.888000px;}
.ws47{word-spacing:3.900000px;}
.ws51{word-spacing:3.936000px;}
.wsbc{word-spacing:3.960000px;}
.ws56{word-spacing:3.984000px;}
.wsdf{word-spacing:4.020000px;}
.ws71{word-spacing:4.080000px;}
.ws4b{word-spacing:4.140000px;}
.wsc8{word-spacing:4.176000px;}
.wsbf{word-spacing:4.200000px;}
.ws6f{word-spacing:4.260000px;}
.ws4e{word-spacing:4.320000px;}
.ws50{word-spacing:4.380000px;}
.ws74{word-spacing:4.416000px;}
.ws6e{word-spacing:4.440000px;}
.ws54{word-spacing:4.464000px;}
.wsa6{word-spacing:4.500000px;}
.ws58{word-spacing:4.512000px;}
.wsb1{word-spacing:4.560000px;}
.wsd7{word-spacing:4.608000px;}
.ws99{word-spacing:4.620000px;}
.wse{word-spacing:4.680000px;}
.ws9f{word-spacing:4.740000px;}
.wsc2{word-spacing:4.800000px;}
.ws62{word-spacing:4.860000px;}
.wsd{word-spacing:4.920000px;}
.ws112{word-spacing:4.944000px;}
.wsf{word-spacing:4.980000px;}
.wsee{word-spacing:5.520000px;}
.wsde{word-spacing:5.580000px;}
.ws86{word-spacing:5.640000px;}
.wsc4{word-spacing:6.420000px;}
.ws32{word-spacing:7.380000px;}
.wsb0{word-spacing:7.560000px;}
.wsa3{word-spacing:8.640000px;}
.ws33{word-spacing:34.335000px;}
.ws34{word-spacing:492.772200px;}
.ws35{word-spacing:592.110000px;}
._b{margin-left:-2898.096000px;}
._5e{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._4{margin-left:-7.500000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.005000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.020000px;}
._6{width:1.020000px;}
._8{width:2.160000px;}
._9{width:3.900000px;}
._7{width:5.880000px;}
._a{width:7.596000px;}
._60{width:8.793000px;}
._5f{width:10.776000px;}
._31{width:27.540000px;}
._13{width:45.585000px;}
._19{width:72.375000px;}
._22{width:78.615000px;}
._56{width:85.005000px;}
._34{width:92.310000px;}
._47{width:109.845000px;}
._3a{width:112.500000px;}
._2d{width:114.885000px;}
._23{width:120.375000px;}
._4e{width:126.090000px;}
._3c{width:128.580000px;}
._12{width:129.870000px;}
._1c{width:131.130000px;}
._37{width:133.605000px;}
._52{width:135.450000px;}
._3b{width:141.411000px;}
._4c{width:142.515000px;}
._30{width:143.595000px;}
._33{width:144.855000px;}
._3d{width:146.925000px;}
._2b{width:150.525000px;}
._59{width:152.550000px;}
._53{width:173.475000px;}
._20{width:174.795000px;}
._57{width:177.345000px;}
._3e{width:179.295000px;}
._f{width:181.350000px;}
._25{width:189.645000px;}
._2c{width:192.240000px;}
._1a{width:193.860000px;}
._29{width:199.335000px;}
._e{width:208.395000px;}
._51{width:224.655000px;}
._28{width:234.645000px;}
._1d{width:247.320000px;}
._d{width:248.670000px;}
._40{width:251.505000px;}
._54{width:254.835000px;}
._48{width:256.800000px;}
._43{width:262.755000px;}
._41{width:282.891000px;}
._16{width:284.895000px;}
._1e{width:292.950000px;}
._44{width:294.141000px;}
._17{width:302.940000px;}
._55{width:307.305000px;}
._21{width:311.085000px;}
._35{width:317.385000px;}
._49{width:324.630000px;}
._5c{width:329.715000px;}
._1f{width:335.970000px;}
._4d{width:341.055000px;}
._18{width:344.700000px;}
._58{width:345.960000px;}
._39{width:348.480000px;}
._14{width:349.740000px;}
._24{width:354.870000px;}
._2e{width:360.600000px;}
._5b{width:364.770000px;}
._2a{width:387.315000px;}
._45{width:388.890000px;}
._10{width:391.725000px;}
._4a{width:397.080000px;}
._26{width:404.190000px;}
._15{width:412.335000px;}
._46{width:413.505000px;}
._5a{width:418.500000px;}
._4b{width:419.760000px;}
._5d{width:425.655000px;}
._4f{width:429.855000px;}
._11{width:433.485000px;}
._1b{width:434.745000px;}
._36{width:437.265000px;}
._50{width:442.215000px;}
._27{width:445.950000px;}
._2f{width:447.210000px;}
._32{width:448.515000px;}
._3f{width:468.675000px;}
._38{width:503.595000px;}
._42{width:536.085000px;}
._c{width:654.975000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y253{bottom:78.019500px;}
.y210{bottom:80.263500px;}
.y115{bottom:82.112100px;}
.ye8{bottom:83.007450px;}
.y1ba{bottom:83.103900px;}
.y1b6{bottom:83.115600px;}
.y1cf{bottom:83.121900px;}
.y1b4{bottom:83.316450px;}
.y143{bottom:83.326350px;}
.y61{bottom:83.635350px;}
.ye5{bottom:83.637750px;}
.y1c{bottom:83.660400px;}
.yf7{bottom:83.716500px;}
.y1a4{bottom:83.751600px;}
.yae{bottom:83.770350px;}
.y68{bottom:83.785350px;}
.y171{bottom:83.920350px;}
.y1bc{bottom:83.965950px;}
.yf0{bottom:84.070500px;}
.y1a1{bottom:84.188550px;}
.y148{bottom:84.197100px;}
.y1a6{bottom:84.613650px;}
.ye0{bottom:86.312100px;}
.y252{bottom:93.019500px;}
.yed{bottom:94.039200px;}
.y20f{bottom:95.263500px;}
.y19a{bottom:95.312100px;}
.y1ce{bottom:98.121900px;}
.y1b{bottom:98.656650px;}
.ye7{bottom:98.751450px;}
.y1b9{bottom:98.847900px;}
.y1b5{bottom:98.859600px;}
.y1b3{bottom:99.060450px;}
.y142{bottom:99.070350px;}
.ye4{bottom:99.381750px;}
.yf6{bottom:99.460500px;}
.y1a3{bottom:99.495600px;}
.y1bb{bottom:99.709950px;}
.yef{bottom:99.814500px;}
.y1a0{bottom:99.932550px;}
.y147{bottom:99.941100px;}
.y114{bottom:100.112100px;}
.y1a5{bottom:100.357650px;}
.y60{bottom:101.635350px;}
.yad{bottom:101.770350px;}
.y67{bottom:101.785350px;}
.y170{bottom:101.920350px;}
.y1c1{bottom:102.920700px;}
.ydf{bottom:104.312100px;}
.y251{bottom:108.019500px;}
.yec{bottom:109.783200px;}
.y20e{bottom:110.263500px;}
.y1cd{bottom:113.121900px;}
.y199{bottom:113.312100px;}
.y1a{bottom:113.652900px;}
.ye6{bottom:114.495450px;}
.y1b8{bottom:114.591900px;}
.y1b2{bottom:114.804450px;}
.y141{bottom:114.814350px;}
.ye3{bottom:115.125750px;}
.yf5{bottom:115.204500px;}
.y1a2{bottom:115.239600px;}
.yee{bottom:115.558500px;}
.y113{bottom:118.112100px;}
.y1c0{bottom:118.664700px;}
.y5f{bottom:119.635350px;}
.yac{bottom:119.770350px;}
.y16f{bottom:119.920350px;}
.ya1{bottom:121.880250px;}
.yde{bottom:122.312100px;}
.y250{bottom:123.019500px;}
.y20d{bottom:125.263500px;}
.yeb{bottom:125.527200px;}
.y1cc{bottom:128.121900px;}
.y1a8{bottom:128.824200px;}
.ye2{bottom:130.869750px;}
.yf4{bottom:130.948500px;}
.y198{bottom:131.312100px;}
.y112{bottom:136.112100px;}
.y66{bottom:137.380350px;}
.y5e{bottom:137.635350px;}
.yab{bottom:137.770350px;}
.y16e{bottom:137.920350px;}
.y24f{bottom:138.019500px;}
.y20c{bottom:140.263500px;}
.ydd{bottom:140.312100px;}
.yea{bottom:141.271200px;}
.y1cb{bottom:143.121900px;}
.y1a7{bottom:144.568200px;}
.ye1{bottom:146.613750px;}
.yf3{bottom:146.692500px;}
.y197{bottom:149.312100px;}
.ya0{bottom:150.140250px;}
.y24e{bottom:153.019500px;}
.y111{bottom:154.112100px;}
.y20b{bottom:155.263500px;}
.y5d{bottom:155.635350px;}
.yaa{bottom:155.770350px;}
.y16d{bottom:155.920350px;}
.ye9{bottom:157.015200px;}
.y1ca{bottom:158.121900px;}
.ydc{bottom:158.312100px;}
.yf2{bottom:162.436500px;}
.y9f{bottom:165.642750px;}
.y196{bottom:167.312100px;}
.y29{bottom:167.890650px;}
.y24d{bottom:168.019500px;}
.y20a{bottom:170.263500px;}
.y110{bottom:172.112100px;}
.y65{bottom:173.230350px;}
.y5c{bottom:173.635350px;}
.ya9{bottom:173.770350px;}
.y16c{bottom:173.920350px;}
.ydb{bottom:176.312100px;}
.y9e{bottom:181.145250px;}
.y24c{bottom:183.019500px;}
.y209{bottom:185.263500px;}
.y195{bottom:185.312100px;}
.y28{bottom:185.890650px;}
.y10f{bottom:190.112100px;}
.y1c9{bottom:191.230350px;}
.y5b{bottom:191.635350px;}
.ya8{bottom:191.770350px;}
.y19f{bottom:191.777100px;}
.y16b{bottom:191.920350px;}
.yda{bottom:194.312100px;}
.y9d{bottom:196.647750px;}
.y24b{bottom:198.019500px;}
.y208{bottom:200.263500px;}
.y194{bottom:203.312100px;}
.y27{bottom:203.890650px;}
.y10e{bottom:208.112100px;}
.y64{bottom:209.095350px;}
.y5a{bottom:209.635350px;}
.ya7{bottom:209.770350px;}
.y19e{bottom:209.777100px;}
.y16a{bottom:209.920350px;}
.y9c{bottom:212.150250px;}
.yd9{bottom:212.312100px;}
.y24a{bottom:213.019500px;}
.y207{bottom:215.263500px;}
.y193{bottom:221.312100px;}
.y26{bottom:221.890650px;}
.y10d{bottom:226.112100px;}
.y1bf{bottom:227.230350px;}
.y59{bottom:227.635350px;}
.y9b{bottom:227.652750px;}
.ya6{bottom:227.770350px;}
.y19d{bottom:227.777100px;}
.y169{bottom:227.920350px;}
.y249{bottom:228.019500px;}
.y206{bottom:230.263500px;}
.yd8{bottom:230.312100px;}
.y192{bottom:239.312100px;}
.y25{bottom:239.890650px;}
.y248{bottom:243.019500px;}
.y9a{bottom:243.155250px;}
.y10c{bottom:244.112100px;}
.y205{bottom:245.263500px;}
.y58{bottom:245.635350px;}
.ya5{bottom:245.770350px;}
.y19c{bottom:245.777100px;}
.y168{bottom:245.920350px;}
.yd7{bottom:248.312100px;}
.y191{bottom:257.312100px;}
.y24{bottom:257.890650px;}
.y247{bottom:258.019500px;}
.y99{bottom:258.657750px;}
.y204{bottom:260.263500px;}
.y10b{bottom:262.112100px;}
.y63{bottom:263.230350px;}
.y1c8{bottom:263.365350px;}
.ya4{bottom:263.770350px;}
.y19b{bottom:263.777100px;}
.y167{bottom:263.920350px;}
.yd6{bottom:266.312100px;}
.y246{bottom:273.019500px;}
.y98{bottom:274.160250px;}
.y203{bottom:275.263500px;}
.y190{bottom:275.312100px;}
.y23{bottom:275.890650px;}
.y10a{bottom:280.112100px;}
.y57{bottom:281.230350px;}
.ya3{bottom:281.770350px;}
.y140{bottom:281.777100px;}
.y166{bottom:281.920350px;}
.yd5{bottom:284.312100px;}
.y245{bottom:288.019500px;}
.y97{bottom:289.662750px;}
.y202{bottom:290.263500px;}
.y18f{bottom:293.312100px;}
.y22{bottom:293.890650px;}
.y109{bottom:298.112100px;}
.y1c7{bottom:299.365350px;}
.ya2{bottom:299.770350px;}
.y13f{bottom:299.777100px;}
.y165{bottom:299.920350px;}
.yd4{bottom:302.312100px;}
.y244{bottom:303.019500px;}
.y96{bottom:305.165250px;}
.y201{bottom:305.263500px;}
.y18e{bottom:311.312100px;}
.y21{bottom:311.890650px;}
.y108{bottom:316.112100px;}
.y62{bottom:317.770350px;}
.y13e{bottom:317.777100px;}
.y164{bottom:317.920350px;}
.y243{bottom:318.019500px;}
.y200{bottom:320.263500px;}
.yd3{bottom:320.312100px;}
.y95{bottom:320.652900px;}
.y18d{bottom:329.312100px;}
.y20{bottom:329.890650px;}
.y242{bottom:333.019500px;}
.y107{bottom:334.112100px;}
.y1ff{bottom:335.263500px;}
.y56{bottom:335.770350px;}
.y13d{bottom:335.777100px;}
.y163{bottom:335.920350px;}
.y94{bottom:336.155400px;}
.yd2{bottom:338.312100px;}
.y18c{bottom:347.312100px;}
.y1f{bottom:347.890650px;}
.y241{bottom:348.019500px;}
.y1fe{bottom:350.263500px;}
.y93{bottom:351.657900px;}
.y106{bottom:352.112100px;}
.y55{bottom:353.770350px;}
.y13c{bottom:353.777100px;}
.y162{bottom:353.920350px;}
.yd1{bottom:356.312100px;}
.y240{bottom:363.019500px;}
.y1fd{bottom:365.263500px;}
.y18b{bottom:365.312100px;}
.y1e{bottom:365.890650px;}
.y92{bottom:367.160400px;}
.y105{bottom:370.112100px;}
.y54{bottom:371.770350px;}
.y13b{bottom:371.777100px;}
.y161{bottom:371.920350px;}
.yd0{bottom:374.312100px;}
.y23f{bottom:378.019500px;}
.y1fc{bottom:380.263500px;}
.y91{bottom:382.662900px;}
.y18a{bottom:383.312100px;}
.y2b{bottom:383.890650px;}
.y104{bottom:388.112100px;}
.y1c6{bottom:389.365350px;}
.y53{bottom:389.770350px;}
.y13a{bottom:389.777100px;}
.y160{bottom:389.920350px;}
.ycf{bottom:392.312100px;}
.y23e{bottom:393.019500px;}
.y1fb{bottom:395.265900px;}
.y90{bottom:398.165400px;}
.y189{bottom:401.312100px;}
.y1d{bottom:401.485650px;}
.y2a{bottom:401.890650px;}
.y103{bottom:406.112100px;}
.y52{bottom:407.770350px;}
.y139{bottom:407.777100px;}
.y15f{bottom:407.920350px;}
.y23d{bottom:408.019500px;}
.y1fa{bottom:410.265900px;}
.yce{bottom:410.312100px;}
.y8f{bottom:413.667900px;}
.y188{bottom:419.312100px;}
.y23c{bottom:423.019500px;}
.y102{bottom:424.112100px;}
.y1f9{bottom:425.265900px;}
.y51{bottom:425.770350px;}
.y138{bottom:425.777100px;}
.y15e{bottom:425.920350px;}
.ycd{bottom:428.312100px;}
.y8e{bottom:429.170400px;}
.y187{bottom:437.312100px;}
.y23b{bottom:438.019500px;}
.y1f8{bottom:440.265900px;}
.y101{bottom:442.112100px;}
.y1c5{bottom:443.365350px;}
.y50{bottom:443.770350px;}
.y137{bottom:443.777100px;}
.y15d{bottom:443.920350px;}
.y8d{bottom:444.672900px;}
.ycc{bottom:446.312100px;}
.y23a{bottom:453.019500px;}
.y1f7{bottom:455.265900px;}
.y186{bottom:455.312100px;}
.y100{bottom:460.112100px;}
.y8c{bottom:460.175400px;}
.y4f{bottom:461.770350px;}
.y136{bottom:461.777100px;}
.y15c{bottom:461.920350px;}
.ycb{bottom:464.312100px;}
.y19{bottom:466.108500px;}
.y239{bottom:468.019500px;}
.y1f6{bottom:470.265900px;}
.y185{bottom:473.312100px;}
.y8b{bottom:475.677900px;}
.yff{bottom:478.112100px;}
.y4e{bottom:479.770350px;}
.y135{bottom:479.777100px;}
.y15b{bottom:479.920350px;}
.yca{bottom:482.312100px;}
.y238{bottom:483.019500px;}
.y18{bottom:484.114200px;}
.y1f5{bottom:485.265900px;}
.y8a{bottom:491.180400px;}
.y4d{bottom:497.770350px;}
.y134{bottom:497.777100px;}
.y15a{bottom:497.920350px;}
.y237{bottom:498.019500px;}
.y1f4{bottom:500.265900px;}
.yc9{bottom:500.312100px;}
.y89{bottom:506.682900px;}
.y184{bottom:508.805250px;}
.y17{bottom:511.459200px;}
.y236{bottom:513.019500px;}
.yfe{bottom:513.605250px;}
.y1f3{bottom:515.265900px;}
.y4c{bottom:515.770350px;}
.y133{bottom:515.777100px;}
.y159{bottom:515.920350px;}
.y88{bottom:522.185400px;}
.y183{bottom:523.805250px;}
.y235{bottom:528.019500px;}
.yfd{bottom:528.605250px;}
.y16{bottom:529.459200px;}
.y1f2{bottom:530.265900px;}
.y4b{bottom:533.770350px;}
.y132{bottom:533.777100px;}
.y158{bottom:533.920350px;}
.yc8{bottom:535.805250px;}
.y87{bottom:537.687900px;}
.y182{bottom:538.805250px;}
.y234{bottom:543.019500px;}
.yfc{bottom:543.605250px;}
.y1f1{bottom:545.265900px;}
.y15{bottom:547.459200px;}
.yc7{bottom:550.805250px;}
.y4a{bottom:551.770350px;}
.y131{bottom:551.777100px;}
.y157{bottom:551.920350px;}
.y86{bottom:553.190400px;}
.y233{bottom:558.019500px;}
.y1f0{bottom:560.265900px;}
.y14{bottom:565.459200px;}
.yc6{bottom:565.805250px;}
.y85{bottom:568.692900px;}
.y49{bottom:569.770350px;}
.y130{bottom:569.777100px;}
.y156{bottom:569.920350px;}
.y232{bottom:573.019500px;}
.y1ef{bottom:575.265900px;}
.yfb{bottom:575.952750px;}
.yc5{bottom:580.805250px;}
.y13{bottom:583.459200px;}
.y84{bottom:584.195400px;}
.y181{bottom:587.515350px;}
.y48{bottom:587.770350px;}
.y12f{bottom:587.777100px;}
.y155{bottom:587.920350px;}
.y231{bottom:588.019500px;}
.y1ee{bottom:590.265900px;}
.yfa{bottom:591.558750px;}
.yc4{bottom:595.805250px;}
.y83{bottom:600.699150px;}
.y12{bottom:601.459200px;}
.y230{bottom:603.019500px;}
.y1ed{bottom:605.265900px;}
.y1c4{bottom:605.365350px;}
.y47{bottom:605.770350px;}
.y12e{bottom:605.777100px;}
.yf9{bottom:605.920350px;}
.yc3{bottom:610.805250px;}
.y82{bottom:616.201650px;}
.y22f{bottom:618.019500px;}
.y11{bottom:619.459200px;}
.y1ec{bottom:620.265900px;}
.yf8{bottom:623.515350px;}
.y46{bottom:623.770350px;}
.y12d{bottom:623.777100px;}
.y154{bottom:623.920350px;}
.yc2{bottom:625.805250px;}
.y81{bottom:631.704150px;}
.y22e{bottom:633.019500px;}
.y1eb{bottom:635.265900px;}
.y10{bottom:637.459200px;}
.yc1{bottom:640.805250px;}
.y45{bottom:641.770350px;}
.y12c{bottom:641.777100px;}
.y153{bottom:641.920350px;}
.y80{bottom:647.206650px;}
.y22d{bottom:648.019500px;}
.y1ea{bottom:650.265900px;}
.yc0{bottom:655.805250px;}
.y44{bottom:659.770350px;}
.y12b{bottom:659.777100px;}
.y152{bottom:659.920350px;}
.y146{bottom:662.657100px;}
.y7f{bottom:662.693700px;}
.y22c{bottom:663.019500px;}
.y1e9{bottom:665.265900px;}
.ybf{bottom:670.805250px;}
.y43{bottom:677.770350px;}
.y12a{bottom:677.777100px;}
.y151{bottom:677.920350px;}
.y22b{bottom:678.019500px;}
.y7e{bottom:678.196200px;}
.y145{bottom:678.401100px;}
.y1e8{bottom:680.265900px;}
.yf{bottom:682.617300px;}
.ybe{bottom:685.805250px;}
.y22a{bottom:693.019500px;}
.y7d{bottom:693.698700px;}
.y144{bottom:694.145100px;}
.ye{bottom:695.068050px;}
.y1e7{bottom:695.265900px;}
.y42{bottom:695.770350px;}
.y129{bottom:695.777100px;}
.y150{bottom:695.920350px;}
.ybd{bottom:700.805250px;}
.y229{bottom:708.019500px;}
.y7c{bottom:709.201200px;}
.y1e6{bottom:710.265900px;}
.y41{bottom:713.770350px;}
.y128{bottom:713.777100px;}
.y14f{bottom:713.920350px;}
.ybc{bottom:715.805250px;}
.y228{bottom:723.019500px;}
.y7b{bottom:724.703700px;}
.y1e5{bottom:725.265900px;}
.yd{bottom:730.644150px;}
.ybb{bottom:730.805250px;}
.y40{bottom:731.770350px;}
.y127{bottom:731.777100px;}
.y14e{bottom:731.920350px;}
.y227{bottom:738.019500px;}
.y7a{bottom:740.206200px;}
.y1e4{bottom:740.265900px;}
.yc{bottom:740.283600px;}
.yba{bottom:745.805250px;}
.y3f{bottom:749.770350px;}
.y126{bottom:749.777100px;}
.y14d{bottom:749.920350px;}
.y226{bottom:753.019500px;}
.y1e3{bottom:755.265900px;}
.y79{bottom:755.708700px;}
.yb{bottom:757.644150px;}
.yb9{bottom:760.805250px;}
.y3e{bottom:767.770350px;}
.y125{bottom:767.777100px;}
.y14c{bottom:767.920350px;}
.y225{bottom:768.019500px;}
.y1e2{bottom:770.265900px;}
.ya{bottom:771.144150px;}
.y78{bottom:771.211200px;}
.yb8{bottom:775.805250px;}
.y224{bottom:783.019500px;}
.y9{bottom:784.644150px;}
.y1e1{bottom:785.265900px;}
.y3d{bottom:785.770350px;}
.y124{bottom:785.777100px;}
.y180{bottom:785.785350px;}
.y14b{bottom:785.920350px;}
.y77{bottom:786.713700px;}
.yb7{bottom:790.805250px;}
.y223{bottom:798.019500px;}
.y1e0{bottom:800.265900px;}
.y76{bottom:802.216200px;}
.y3c{bottom:803.770350px;}
.y123{bottom:803.777100px;}
.y17f{bottom:803.785350px;}
.yb6{bottom:805.805250px;}
.y222{bottom:813.019500px;}
.y8{bottom:814.930800px;}
.y1df{bottom:815.265900px;}
.y75{bottom:817.718700px;}
.yb5{bottom:820.805250px;}
.y14a{bottom:821.515350px;}
.y3b{bottom:821.770350px;}
.y122{bottom:821.777100px;}
.y17e{bottom:821.785350px;}
.y221{bottom:828.019500px;}
.y1de{bottom:830.265900px;}
.y74{bottom:833.221200px;}
.yb4{bottom:835.805250px;}
.y3a{bottom:839.770350px;}
.y121{bottom:839.777100px;}
.y17d{bottom:839.785350px;}
.y220{bottom:843.019500px;}
.y1dd{bottom:845.265900px;}
.y73{bottom:848.723700px;}
.yb3{bottom:850.805250px;}
.y39{bottom:857.770350px;}
.y120{bottom:857.777100px;}
.y17c{bottom:857.785350px;}
.y21f{bottom:858.019500px;}
.y1dc{bottom:860.265900px;}
.y7{bottom:861.082800px;}
.y72{bottom:864.226200px;}
.yb2{bottom:865.805250px;}
.y21e{bottom:873.019500px;}
.y1b1{bottom:873.970350px;}
.y1db{bottom:875.265900px;}
.y38{bottom:875.770350px;}
.y11f{bottom:875.777100px;}
.y17b{bottom:875.785350px;}
.y71{bottom:879.728700px;}
.yb1{bottom:880.805250px;}
.y21d{bottom:888.019500px;}
.y1da{bottom:890.265900px;}
.y1b0{bottom:891.970350px;}
.y37{bottom:893.770350px;}
.y11e{bottom:893.777100px;}
.y17a{bottom:893.785350px;}
.y70{bottom:895.231200px;}
.y6{bottom:897.543600px;}
.y21c{bottom:903.019500px;}
.y1d9{bottom:905.265900px;}
.y6f{bottom:910.733700px;}
.y36{bottom:911.770350px;}
.y11d{bottom:911.777100px;}
.y179{bottom:911.785350px;}
.yb0{bottom:911.920350px;}
.y21b{bottom:918.019500px;}
.y1d8{bottom:920.265900px;}
.y6e{bottom:926.236200px;}
.y1af{bottom:927.463500px;}
.yaf{bottom:929.515350px;}
.y35{bottom:929.770350px;}
.y11c{bottom:929.777100px;}
.y178{bottom:929.785350px;}
.y21a{bottom:933.019500px;}
.y5{bottom:934.004400px;}
.y1d7{bottom:935.265900px;}
.y6d{bottom:941.738700px;}
.y1ae{bottom:942.463500px;}
.y34{bottom:947.770350px;}
.y11b{bottom:947.777100px;}
.y177{bottom:947.785350px;}
.y219{bottom:948.019500px;}
.y1d6{bottom:950.265900px;}
.y1ad{bottom:957.463500px;}
.y218{bottom:963.019500px;}
.y1d5{bottom:965.265900px;}
.y1c3{bottom:965.365350px;}
.y33{bottom:965.770350px;}
.y11a{bottom:965.777100px;}
.y176{bottom:965.785350px;}
.y6c{bottom:969.998700px;}
.y4{bottom:970.465200px;}
.y217{bottom:978.019500px;}
.y1d4{bottom:980.265900px;}
.y32{bottom:983.770350px;}
.y119{bottom:983.777100px;}
.y175{bottom:983.785350px;}
.y6b{bottom:986.502450px;}
.y1ac{bottom:989.811000px;}
.y216{bottom:993.019500px;}
.y1d3{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.y118{bottom:1001.777100px;}
.y174{bottom:1001.785350px;}
.y1ab{bottom:1005.417000px;}
.y3{bottom:1006.926000px;}
.y215{bottom:1008.019500px;}
.y1d2{bottom:1010.265900px;}
.y6a{bottom:1018.270350px;}
.y30{bottom:1019.770350px;}
.y1aa{bottom:1019.776200px;}
.y117{bottom:1019.777100px;}
.y173{bottom:1019.785350px;}
.y214{bottom:1023.019500px;}
.y1d1{bottom:1025.265900px;}
.y1a9{bottom:1037.371200px;}
.y1be{bottom:1037.380350px;}
.y2f{bottom:1037.770350px;}
.y116{bottom:1037.777100px;}
.y172{bottom:1037.785350px;}
.y213{bottom:1038.019500px;}
.y1d0{bottom:1040.265900px;}
.y212{bottom:1053.019500px;}
.y2{bottom:1069.300350px;}
.y69{bottom:1132.418700px;}
.y1b7{bottom:1132.419600px;}
.y149{bottom:1132.421700px;}
.y211{bottom:1132.423500px;}
.y1c2{bottom:1132.424700px;}
.yf1{bottom:1132.426500px;}
.y1bd{bottom:1132.429950px;}
.y2d{bottom:1136.089500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.761230px;}
.h7{height:32.805176px;}
.h15{height:33.328125px;}
.h10{height:34.945312px;}
.hf{height:34.992188px;}
.h11{height:37.529297px;}
.h13{height:37.588697px;}
.h12{height:37.591097px;}
.h14{height:40.031250px;}
.he{height:41.660156px;}
.ha{height:43.681641px;}
.hb{height:43.717434px;}
.h9{height:43.740234px;}
.h16{height:45.035156px;}
.h5{height:49.138634px;}
.hd{height:50.039062px;}
.h17{height:51.659062px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:70.582650px;}
.xc{left:76.535400px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x17{left:99.921300px;}
.x2f{left:102.047400px;}
.x4{left:106.299300px;}
.xd{left:110.555400px;}
.x32{left:114.517500px;}
.x30{left:123.307350px;}
.x3{left:125.433150px;}
.x7{left:131.816400px;}
.xe{left:144.695400px;}
.x2c{left:147.200400px;}
.x31{left:184.281750px;}
.x5{left:191.363700px;}
.x2e{left:201.286950px;}
.x2d{left:208.880400px;}
.x6{left:212.876400px;}
.x36{left:215.530350px;}
.x33{left:218.805000px;}
.x23{left:235.087350px;}
.x20{left:240.208800px;}
.x21{left:248.719350px;}
.x18{left:405.820050px;}
.x22{left:411.731850px;}
.xb{left:455.041500px;}
.xf{left:457.055400px;}
.x19{left:459.898800px;}
.x28{left:478.345350px;}
.x8{left:480.476400px;}
.x27{left:482.598600px;}
.x1a{left:489.531300px;}
.x10{left:491.075400px;}
.x25{left:499.831200px;}
.x37{left:503.851200px;}
.x14{left:507.741600px;}
.x29{left:512.350350px;}
.x9{left:514.496400px;}
.x13{left:542.736600px;}
.x12{left:583.476600px;}
.x11{left:591.666600px;}
.x26{left:593.221200px;}
.x35{left:600.730350px;}
.x1b{left:631.652550px;}
.x16{left:663.492300px;}
.x2{left:693.365400px;}
.x1c{left:701.301300px;}
.x1d{left:712.225050px;}
.x2a{left:721.717650px;}
.x15{left:728.391600px;}
.x2b{left:743.868150px;}
.x24{left:749.651400px;}
.x1e{left:760.825050px;}
.x1f{left:770.815050px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:19.217067pt;}
.ls73{letter-spacing:-4.960000pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls39{letter-spacing:-0.373333pt;}
.ls6e{letter-spacing:-0.320000pt;}
.ls5f{letter-spacing:-0.266667pt;}
.ls55{letter-spacing:-0.256000pt;}
.ls61{letter-spacing:-0.213333pt;}
.ls60{letter-spacing:-0.160000pt;}
.ls4c{letter-spacing:-0.128000pt;}
.ls4b{letter-spacing:-0.106667pt;}
.ls4e{letter-spacing:-0.085333pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls6c{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003733pt;}
.ls88{letter-spacing:0.042667pt;}
.ls29{letter-spacing:0.053333pt;}
.ls80{letter-spacing:0.085333pt;}
.ls3d{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.160000pt;}
.ls47{letter-spacing:0.170667pt;}
.ls30{letter-spacing:0.213333pt;}
.ls8c{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls6a{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.341333pt;}
.ls35{letter-spacing:0.373333pt;}
.ls82{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.426667pt;}
.ls8d{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls78{letter-spacing:0.554667pt;}
.ls20{letter-spacing:0.586667pt;}
.ls72{letter-spacing:0.597333pt;}
.ls21{letter-spacing:0.640000pt;}
.ls77{letter-spacing:0.682667pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls8e{letter-spacing:0.725333pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls94{letter-spacing:0.768000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls89{letter-spacing:0.810667pt;}
.ls31{letter-spacing:0.853333pt;}
.ls7e{letter-spacing:0.896000pt;}
.ls4{letter-spacing:0.906667pt;}
.ls83{letter-spacing:0.938667pt;}
.ls22{letter-spacing:0.960000pt;}
.ls8a{letter-spacing:0.981333pt;}
.ls2f{letter-spacing:1.013333pt;}
.ls87{letter-spacing:1.024000pt;}
.ls24{letter-spacing:1.066667pt;}
.ls7a{letter-spacing:1.109333pt;}
.ls17{letter-spacing:1.120000pt;}
.ls96{letter-spacing:1.152000pt;}
.ls27{letter-spacing:1.173333pt;}
.ls4d{letter-spacing:1.194667pt;}
.ls36{letter-spacing:1.226667pt;}
.ls7f{letter-spacing:1.237333pt;}
.ls5{letter-spacing:1.280000pt;}
.ls8b{letter-spacing:1.322667pt;}
.ls26{letter-spacing:1.333333pt;}
.ls95{letter-spacing:1.365333pt;}
.ls1{letter-spacing:1.386667pt;}
.ls7c{letter-spacing:1.408000pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls91{letter-spacing:1.450667pt;}
.ls37{letter-spacing:1.493333pt;}
.ls70{letter-spacing:1.522133pt;}
.ls76{letter-spacing:1.536000pt;}
.lse{letter-spacing:1.546667pt;}
.ls81{letter-spacing:1.578667pt;}
.lsc{letter-spacing:1.600000pt;}
.ls7d{letter-spacing:1.621333pt;}
.lsa{letter-spacing:1.653333pt;}
.ls32{letter-spacing:1.706667pt;}
.ls54{letter-spacing:1.749333pt;}
.ls15{letter-spacing:1.760000pt;}
.ls51{letter-spacing:1.792000pt;}
.ls2c{letter-spacing:1.813333pt;}
.ls4a{letter-spacing:1.866667pt;}
.ls25{letter-spacing:1.920000pt;}
.ls7b{letter-spacing:1.962667pt;}
.ls3c{letter-spacing:1.973333pt;}
.ls9{letter-spacing:2.026667pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls42{letter-spacing:2.090667pt;}
.ls34{letter-spacing:2.133333pt;}
.ls13{letter-spacing:2.186667pt;}
.ls79{letter-spacing:2.218667pt;}
.ls3e{letter-spacing:2.240000pt;}
.lsb{letter-spacing:2.293333pt;}
.ls4f{letter-spacing:2.346667pt;}
.ls57{letter-spacing:2.400000pt;}
.ls38{letter-spacing:2.453333pt;}
.ls90{letter-spacing:2.474667pt;}
.ls2b{letter-spacing:2.506667pt;}
.ls84{letter-spacing:2.517333pt;}
.ls14{letter-spacing:2.560000pt;}
.ls56{letter-spacing:2.613333pt;}
.ls23{letter-spacing:2.666667pt;}
.ls86{letter-spacing:2.688000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls93{letter-spacing:2.730667pt;}
.ls33{letter-spacing:2.773333pt;}
.lsf{letter-spacing:2.826667pt;}
.ls3f{letter-spacing:2.880000pt;}
.ls3b{letter-spacing:2.933333pt;}
.ls5d{letter-spacing:2.986667pt;}
.ls85{letter-spacing:3.029333pt;}
.ls43{letter-spacing:3.114667pt;}
.ls59{letter-spacing:3.146667pt;}
.ls5c{letter-spacing:3.200000pt;}
.ls6f{letter-spacing:3.242667pt;}
.lsd{letter-spacing:3.253333pt;}
.ls3a{letter-spacing:3.306667pt;}
.ls5b{letter-spacing:3.328000pt;}
.ls6d{letter-spacing:3.360000pt;}
.ls52{letter-spacing:3.413333pt;}
.ls1c{letter-spacing:3.466667pt;}
.ls5a{letter-spacing:3.520000pt;}
.ls92{letter-spacing:3.541333pt;}
.ls2a{letter-spacing:3.573333pt;}
.ls1a{letter-spacing:3.626667pt;}
.ls50{letter-spacing:3.680000pt;}
.ls48{letter-spacing:3.712000pt;}
.ls69{letter-spacing:3.754667pt;}
.ls8f{letter-spacing:3.797333pt;}
.ls74{letter-spacing:3.840000pt;}
.ls67{letter-spacing:3.893333pt;}
.ls66{letter-spacing:4.000000pt;}
.ls46{letter-spacing:4.010667pt;}
.ls6b{letter-spacing:4.181333pt;}
.ls62{letter-spacing:4.373333pt;}
.ls58{letter-spacing:4.426667pt;}
.ls5e{letter-spacing:4.480000pt;}
.ls65{letter-spacing:4.800000pt;}
.ls1b{letter-spacing:4.960000pt;}
.ls49{letter-spacing:5.173333pt;}
.ls63{letter-spacing:5.386667pt;}
.ls64{letter-spacing:5.440000pt;}
.ls41{letter-spacing:5.589333pt;}
.ls16{letter-spacing:6.133333pt;}
.ls75{letter-spacing:6.506667pt;}
.ls44{letter-spacing:6.613333pt;}
.ls71{letter-spacing:6.826667pt;}
.ls53{letter-spacing:7.040000pt;}
.ls1d{letter-spacing:7.840000pt;}
.ls68{letter-spacing:7.946667pt;}
.ws0{word-spacing:-31.284267pt;}
.wsc9{word-spacing:-18.293333pt;}
.ws98{word-spacing:-17.813333pt;}
.wsac{word-spacing:-17.706667pt;}
.wse7{word-spacing:-17.066667pt;}
.ws17{word-spacing:-16.800000pt;}
.wsc6{word-spacing:-16.746667pt;}
.ws8{word-spacing:-16.586667pt;}
.wsdb{word-spacing:-16.480000pt;}
.ws5{word-spacing:-16.053333pt;}
.ws1c{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.893333pt;}
.wsd4{word-spacing:-15.786667pt;}
.ws67{word-spacing:-15.680000pt;}
.ws15{word-spacing:-15.520000pt;}
.ws19{word-spacing:-15.413333pt;}
.ws18{word-spacing:-15.360000pt;}
.ws3d{word-spacing:-15.253333pt;}
.ws84{word-spacing:-15.146667pt;}
.wsc5{word-spacing:-15.093333pt;}
.ws1f{word-spacing:-15.040000pt;}
.ws1a{word-spacing:-14.986667pt;}
.ws9{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.wsda{word-spacing:-14.773333pt;}
.ws20{word-spacing:-14.720000pt;}
.wsd5{word-spacing:-14.666667pt;}
.wsbb{word-spacing:-14.613333pt;}
.ws83{word-spacing:-14.560000pt;}
.ws1e{word-spacing:-14.506667pt;}
.ws95{word-spacing:-14.453333pt;}
.ws1d{word-spacing:-14.400000pt;}
.ws5f{word-spacing:-14.346667pt;}
.wsd9{word-spacing:-14.293333pt;}
.ws4{word-spacing:-14.240000pt;}
.ws6{word-spacing:-14.133333pt;}
.ws46{word-spacing:-14.080000pt;}
.wsd8{word-spacing:-14.026667pt;}
.ws96{word-spacing:-13.973333pt;}
.ws3b{word-spacing:-13.920000pt;}
.ws7{word-spacing:-13.866667pt;}
.ws3c{word-spacing:-13.813333pt;}
.ws40{word-spacing:-13.781333pt;}
.ws82{word-spacing:-13.760000pt;}
.ws78{word-spacing:-13.600000pt;}
.wsab{word-spacing:-13.546667pt;}
.ws16{word-spacing:-13.493333pt;}
.ws3e{word-spacing:-13.440000pt;}
.ws85{word-spacing:-13.386667pt;}
.wsec{word-spacing:-13.354667pt;}
.ws3f{word-spacing:-13.333333pt;}
.ws97{word-spacing:-13.280000pt;}
.ws94{word-spacing:-13.226667pt;}
.wsfb{word-spacing:-13.141333pt;}
.wsba{word-spacing:-13.066667pt;}
.wsfe{word-spacing:-12.288000pt;}
.wseb{word-spacing:-12.245333pt;}
.ws93{word-spacing:-12.000000pt;}
.wsf8{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.861333pt;}
.wsfc{word-spacing:-11.562667pt;}
.wse9{word-spacing:-11.520000pt;}
.wsfd{word-spacing:-11.434667pt;}
.wsff{word-spacing:-11.392000pt;}
.wsf9{word-spacing:-11.349333pt;}
.wscb{word-spacing:-11.306667pt;}
.wse8{word-spacing:-11.264000pt;}
.ws42{word-spacing:-11.178667pt;}
.wsfa{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.ws41{word-spacing:-11.093333pt;}
.wsf6{word-spacing:-11.008000pt;}
.wsf5{word-spacing:-10.965333pt;}
.wsc7{word-spacing:-10.880000pt;}
.ws45{word-spacing:-10.837333pt;}
.wsea{word-spacing:-10.752000pt;}
.wsf7{word-spacing:-10.709333pt;}
.ws44{word-spacing:-10.666667pt;}
.ws68{word-spacing:-10.581333pt;}
.ws43{word-spacing:-10.538667pt;}
.ws1{word-spacing:-9.340800pt;}
.wsad{word-spacing:-4.480000pt;}
.wse3{word-spacing:-4.373333pt;}
.ws110{word-spacing:-3.797333pt;}
.wsc3{word-spacing:-3.413333pt;}
.wsd0{word-spacing:-3.360000pt;}
.ws9c{word-spacing:-3.328000pt;}
.wse4{word-spacing:-3.306667pt;}
.ws53{word-spacing:-3.114667pt;}
.ws37{word-spacing:-2.933333pt;}
.ws9e{word-spacing:-2.880000pt;}
.wse2{word-spacing:-2.613333pt;}
.wsc{word-spacing:-2.565333pt;}
.ws21{word-spacing:-2.560000pt;}
.wsd6{word-spacing:-2.453333pt;}
.wsf1{word-spacing:-2.346667pt;}
.ws3a{word-spacing:-2.200000pt;}
.ws31{word-spacing:-2.186667pt;}
.wsa1{word-spacing:-2.133333pt;}
.ws52{word-spacing:-2.090667pt;}
.ws36{word-spacing:-2.026667pt;}
.ws2a{word-spacing:-1.973333pt;}
.ws4a{word-spacing:-1.920000pt;}
.ws91{word-spacing:-1.866667pt;}
.wsa2{word-spacing:-1.813333pt;}
.ws111{word-spacing:-1.792000pt;}
.ws22{word-spacing:-1.760000pt;}
.wse1{word-spacing:-1.653333pt;}
.ws115{word-spacing:-1.621333pt;}
.ws14{word-spacing:-1.546667pt;}
.wsaf{word-spacing:-1.493333pt;}
.ws39{word-spacing:-1.480000pt;}
.wsb5{word-spacing:-1.440000pt;}
.wse0{word-spacing:-1.386667pt;}
.wsae{word-spacing:-1.333333pt;}
.ws8f{word-spacing:-1.280000pt;}
.ws103{word-spacing:-1.237333pt;}
.wsb6{word-spacing:-1.173333pt;}
.ws113{word-spacing:-1.109333pt;}
.wsb9{word-spacing:-1.066667pt;}
.ws4f{word-spacing:-0.960000pt;}
.ws10{word-spacing:-0.906667pt;}
.wsb7{word-spacing:-0.853333pt;}
.wse5{word-spacing:-0.800000pt;}
.wsa9{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.746667pt;}
.ws10d{word-spacing:-0.725333pt;}
.ws38{word-spacing:-0.720000pt;}
.wscd{word-spacing:-0.640000pt;}
.ws109{word-spacing:-0.597333pt;}
.ws25{word-spacing:-0.586667pt;}
.ws59{word-spacing:-0.512000pt;}
.ws10f{word-spacing:-0.469333pt;}
.ws55{word-spacing:-0.426667pt;}
.wsdd{word-spacing:-0.373333pt;}
.ws29{word-spacing:-0.320000pt;}
.ws100{word-spacing:-0.298667pt;}
.ws30{word-spacing:-0.266667pt;}
.ws106{word-spacing:-0.256000pt;}
.wsaa{word-spacing:-0.213333pt;}
.wsef{word-spacing:-0.170667pt;}
.ws2f{word-spacing:-0.160000pt;}
.ws5a{word-spacing:-0.128000pt;}
.ws4d{word-spacing:-0.106667pt;}
.ws72{word-spacing:-0.085333pt;}
.ws87{word-spacing:-0.053333pt;}
.wsd3{word-spacing:-0.042667pt;}
.wsb{word-spacing:0.000000pt;}
.wsf0{word-spacing:0.042667pt;}
.wsb8{word-spacing:0.053333pt;}
.ws6a{word-spacing:0.106667pt;}
.ws11{word-spacing:0.160000pt;}
.ws6d{word-spacing:0.213333pt;}
.ws65{word-spacing:0.256000pt;}
.ws6b{word-spacing:0.266667pt;}
.ws116{word-spacing:0.298667pt;}
.wsbe{word-spacing:0.320000pt;}
.wsed{word-spacing:0.373333pt;}
.ws10e{word-spacing:0.384000pt;}
.wsa5{word-spacing:0.426667pt;}
.ws117{word-spacing:0.469333pt;}
.ws4c{word-spacing:0.480000pt;}
.ws61{word-spacing:0.533333pt;}
.wsbd{word-spacing:0.554667pt;}
.ws8d{word-spacing:0.586667pt;}
.wsf4{word-spacing:0.597333pt;}
.ws5b{word-spacing:0.640000pt;}
.ws7e{word-spacing:0.682667pt;}
.ws26{word-spacing:0.693333pt;}
.ws104{word-spacing:0.725333pt;}
.ws5d{word-spacing:0.746667pt;}
.ws70{word-spacing:0.800000pt;}
.ws10c{word-spacing:0.810667pt;}
.ws7a{word-spacing:0.853333pt;}
.ws10b{word-spacing:0.938667pt;}
.ws8e{word-spacing:0.960000pt;}
.wsa4{word-spacing:0.981333pt;}
.ws63{word-spacing:1.013333pt;}
.wscf{word-spacing:1.024000pt;}
.wsc0{word-spacing:1.066667pt;}
.wscc{word-spacing:1.152000pt;}
.ws79{word-spacing:1.173333pt;}
.ws64{word-spacing:1.194667pt;}
.ws89{word-spacing:1.226667pt;}
.ws81{word-spacing:1.237333pt;}
.ws2c{word-spacing:1.280000pt;}
.wsf2{word-spacing:1.322667pt;}
.ws2b{word-spacing:1.333333pt;}
.ws8b{word-spacing:1.386667pt;}
.ws23{word-spacing:1.440000pt;}
.wsb4{word-spacing:1.493333pt;}
.ws8c{word-spacing:1.546667pt;}
.ws69{word-spacing:1.600000pt;}
.wsa7{word-spacing:1.621333pt;}
.wsc1{word-spacing:1.653333pt;}
.wsca{word-spacing:1.664000pt;}
.wsdc{word-spacing:1.706667pt;}
.ws80{word-spacing:1.749333pt;}
.ws73{word-spacing:1.792000pt;}
.ws28{word-spacing:1.813333pt;}
.ws9a{word-spacing:1.866667pt;}
.ws7f{word-spacing:1.877333pt;}
.wsa8{word-spacing:1.962667pt;}
.ws90{word-spacing:1.973333pt;}
.ws101{word-spacing:2.005333pt;}
.ws49{word-spacing:2.026667pt;}
.ws66{word-spacing:2.048000pt;}
.ws9d{word-spacing:2.080000pt;}
.ws76{word-spacing:2.090667pt;}
.ws102{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.186667pt;}
.ws13{word-spacing:2.240000pt;}
.ws75{word-spacing:2.261333pt;}
.ws88{word-spacing:2.293333pt;}
.ws60{word-spacing:2.346667pt;}
.ws107{word-spacing:2.389333pt;}
.wsb3{word-spacing:2.400000pt;}
.ws105{word-spacing:2.432000pt;}
.ws5c{word-spacing:2.453333pt;}
.wsd1{word-spacing:2.506667pt;}
.ws7d{word-spacing:2.560000pt;}
.ws10a{word-spacing:2.602667pt;}
.ws92{word-spacing:2.613333pt;}
.wsb2{word-spacing:2.720000pt;}
.ws9b{word-spacing:2.730667pt;}
.wsf3{word-spacing:2.816000pt;}
.ws8a{word-spacing:2.826667pt;}
.wsa0{word-spacing:2.880000pt;}
.ws108{word-spacing:2.901333pt;}
.ws5e{word-spacing:2.933333pt;}
.ws7b{word-spacing:2.986667pt;}
.ws77{word-spacing:3.029333pt;}
.ws6c{word-spacing:3.040000pt;}
.ws27{word-spacing:3.093333pt;}
.wsce{word-spacing:3.114667pt;}
.ws114{word-spacing:3.157333pt;}
.ws12{word-spacing:3.200000pt;}
.wsd2{word-spacing:3.242667pt;}
.ws2d{word-spacing:3.253333pt;}
.ws7c{word-spacing:3.306667pt;}
.ws57{word-spacing:3.328000pt;}
.ws48{word-spacing:3.413333pt;}
.wse6{word-spacing:3.456000pt;}
.ws47{word-spacing:3.466667pt;}
.ws51{word-spacing:3.498667pt;}
.wsbc{word-spacing:3.520000pt;}
.ws56{word-spacing:3.541333pt;}
.wsdf{word-spacing:3.573333pt;}
.ws71{word-spacing:3.626667pt;}
.ws4b{word-spacing:3.680000pt;}
.wsc8{word-spacing:3.712000pt;}
.wsbf{word-spacing:3.733333pt;}
.ws6f{word-spacing:3.786667pt;}
.ws4e{word-spacing:3.840000pt;}
.ws50{word-spacing:3.893333pt;}
.ws74{word-spacing:3.925333pt;}
.ws6e{word-spacing:3.946667pt;}
.ws54{word-spacing:3.968000pt;}
.wsa6{word-spacing:4.000000pt;}
.ws58{word-spacing:4.010667pt;}
.wsb1{word-spacing:4.053333pt;}
.wsd7{word-spacing:4.096000pt;}
.ws99{word-spacing:4.106667pt;}
.wse{word-spacing:4.160000pt;}
.ws9f{word-spacing:4.213333pt;}
.wsc2{word-spacing:4.266667pt;}
.ws62{word-spacing:4.320000pt;}
.wsd{word-spacing:4.373333pt;}
.ws112{word-spacing:4.394667pt;}
.wsf{word-spacing:4.426667pt;}
.wsee{word-spacing:4.906667pt;}
.wsde{word-spacing:4.960000pt;}
.ws86{word-spacing:5.013333pt;}
.wsc4{word-spacing:5.706667pt;}
.ws32{word-spacing:6.560000pt;}
.wsb0{word-spacing:6.720000pt;}
.wsa3{word-spacing:7.680000pt;}
.ws33{word-spacing:30.520000pt;}
.ws34{word-spacing:438.019733pt;}
.ws35{word-spacing:526.320000pt;}
._b{margin-left:-2576.085333pt;}
._5e{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._4{margin-left:-6.666667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.560000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.906667pt;}
._6{width:0.906667pt;}
._8{width:1.920000pt;}
._9{width:3.466667pt;}
._7{width:5.226667pt;}
._a{width:6.752000pt;}
._60{width:7.816000pt;}
._5f{width:9.578667pt;}
._31{width:24.480000pt;}
._13{width:40.520000pt;}
._19{width:64.333333pt;}
._22{width:69.880000pt;}
._56{width:75.560000pt;}
._34{width:82.053333pt;}
._47{width:97.640000pt;}
._3a{width:100.000000pt;}
._2d{width:102.120000pt;}
._23{width:107.000000pt;}
._4e{width:112.080000pt;}
._3c{width:114.293333pt;}
._12{width:115.440000pt;}
._1c{width:116.560000pt;}
._37{width:118.760000pt;}
._52{width:120.400000pt;}
._3b{width:125.698667pt;}
._4c{width:126.680000pt;}
._30{width:127.640000pt;}
._33{width:128.760000pt;}
._3d{width:130.600000pt;}
._2b{width:133.800000pt;}
._59{width:135.600000pt;}
._53{width:154.200000pt;}
._20{width:155.373333pt;}
._57{width:157.640000pt;}
._3e{width:159.373333pt;}
._f{width:161.200000pt;}
._25{width:168.573333pt;}
._2c{width:170.880000pt;}
._1a{width:172.320000pt;}
._29{width:177.186667pt;}
._e{width:185.240000pt;}
._51{width:199.693333pt;}
._28{width:208.573333pt;}
._1d{width:219.840000pt;}
._d{width:221.040000pt;}
._40{width:223.560000pt;}
._54{width:226.520000pt;}
._48{width:228.266667pt;}
._43{width:233.560000pt;}
._41{width:251.458667pt;}
._16{width:253.240000pt;}
._1e{width:260.400000pt;}
._44{width:261.458667pt;}
._17{width:269.280000pt;}
._55{width:273.160000pt;}
._21{width:276.520000pt;}
._35{width:282.120000pt;}
._49{width:288.560000pt;}
._5c{width:293.080000pt;}
._1f{width:298.640000pt;}
._4d{width:303.160000pt;}
._18{width:306.400000pt;}
._58{width:307.520000pt;}
._39{width:309.760000pt;}
._14{width:310.880000pt;}
._24{width:315.440000pt;}
._2e{width:320.533333pt;}
._5b{width:324.240000pt;}
._2a{width:344.280000pt;}
._45{width:345.680000pt;}
._10{width:348.200000pt;}
._4a{width:352.960000pt;}
._26{width:359.280000pt;}
._15{width:366.520000pt;}
._46{width:367.560000pt;}
._5a{width:372.000000pt;}
._4b{width:373.120000pt;}
._5d{width:378.360000pt;}
._4f{width:382.093333pt;}
._11{width:385.320000pt;}
._1b{width:386.440000pt;}
._36{width:388.680000pt;}
._50{width:393.080000pt;}
._27{width:396.400000pt;}
._2f{width:397.520000pt;}
._32{width:398.680000pt;}
._3f{width:416.600000pt;}
._38{width:447.640000pt;}
._42{width:476.520000pt;}
._c{width:582.200000pt;}
.fs5{font-size:24.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y253{bottom:69.350667pt;}
.y210{bottom:71.345333pt;}
.y115{bottom:72.988533pt;}
.ye8{bottom:73.784400pt;}
.y1ba{bottom:73.870133pt;}
.y1b6{bottom:73.880533pt;}
.y1cf{bottom:73.886133pt;}
.y1b4{bottom:74.059067pt;}
.y143{bottom:74.067867pt;}
.y61{bottom:74.342533pt;}
.ye5{bottom:74.344667pt;}
.y1c{bottom:74.364800pt;}
.yf7{bottom:74.414667pt;}
.y1a4{bottom:74.445867pt;}
.yae{bottom:74.462533pt;}
.y68{bottom:74.475867pt;}
.y171{bottom:74.595867pt;}
.y1bc{bottom:74.636400pt;}
.yf0{bottom:74.729333pt;}
.y1a1{bottom:74.834267pt;}
.y148{bottom:74.841867pt;}
.y1a6{bottom:75.212133pt;}
.ye0{bottom:76.721867pt;}
.y252{bottom:82.684000pt;}
.yed{bottom:83.590400pt;}
.y20f{bottom:84.678667pt;}
.y19a{bottom:84.721867pt;}
.y1ce{bottom:87.219467pt;}
.y1b{bottom:87.694800pt;}
.ye7{bottom:87.779067pt;}
.y1b9{bottom:87.864800pt;}
.y1b5{bottom:87.875200pt;}
.y1b3{bottom:88.053733pt;}
.y142{bottom:88.062533pt;}
.ye4{bottom:88.339333pt;}
.yf6{bottom:88.409333pt;}
.y1a3{bottom:88.440533pt;}
.y1bb{bottom:88.631067pt;}
.yef{bottom:88.724000pt;}
.y1a0{bottom:88.828933pt;}
.y147{bottom:88.836533pt;}
.y114{bottom:88.988533pt;}
.y1a5{bottom:89.206800pt;}
.y60{bottom:90.342533pt;}
.yad{bottom:90.462533pt;}
.y67{bottom:90.475867pt;}
.y170{bottom:90.595867pt;}
.y1c1{bottom:91.485067pt;}
.ydf{bottom:92.721867pt;}
.y251{bottom:96.017333pt;}
.yec{bottom:97.585067pt;}
.y20e{bottom:98.012000pt;}
.y1cd{bottom:100.552800pt;}
.y199{bottom:100.721867pt;}
.y1a{bottom:101.024800pt;}
.ye6{bottom:101.773733pt;}
.y1b8{bottom:101.859467pt;}
.y1b2{bottom:102.048400pt;}
.y141{bottom:102.057200pt;}
.ye3{bottom:102.334000pt;}
.yf5{bottom:102.404000pt;}
.y1a2{bottom:102.435200pt;}
.yee{bottom:102.718667pt;}
.y113{bottom:104.988533pt;}
.y1c0{bottom:105.479733pt;}
.y5f{bottom:106.342533pt;}
.yac{bottom:106.462533pt;}
.y16f{bottom:106.595867pt;}
.ya1{bottom:108.338000pt;}
.yde{bottom:108.721867pt;}
.y250{bottom:109.350667pt;}
.y20d{bottom:111.345333pt;}
.yeb{bottom:111.579733pt;}
.y1cc{bottom:113.886133pt;}
.y1a8{bottom:114.510400pt;}
.ye2{bottom:116.328667pt;}
.yf4{bottom:116.398667pt;}
.y198{bottom:116.721867pt;}
.y112{bottom:120.988533pt;}
.y66{bottom:122.115867pt;}
.y5e{bottom:122.342533pt;}
.yab{bottom:122.462533pt;}
.y16e{bottom:122.595867pt;}
.y24f{bottom:122.684000pt;}
.y20c{bottom:124.678667pt;}
.ydd{bottom:124.721867pt;}
.yea{bottom:125.574400pt;}
.y1cb{bottom:127.219467pt;}
.y1a7{bottom:128.505067pt;}
.ye1{bottom:130.323333pt;}
.yf3{bottom:130.393333pt;}
.y197{bottom:132.721867pt;}
.ya0{bottom:133.458000pt;}
.y24e{bottom:136.017333pt;}
.y111{bottom:136.988533pt;}
.y20b{bottom:138.012000pt;}
.y5d{bottom:138.342533pt;}
.yaa{bottom:138.462533pt;}
.y16d{bottom:138.595867pt;}
.ye9{bottom:139.569067pt;}
.y1ca{bottom:140.552800pt;}
.ydc{bottom:140.721867pt;}
.yf2{bottom:144.388000pt;}
.y9f{bottom:147.238000pt;}
.y196{bottom:148.721867pt;}
.y29{bottom:149.236133pt;}
.y24d{bottom:149.350667pt;}
.y20a{bottom:151.345333pt;}
.y110{bottom:152.988533pt;}
.y65{bottom:153.982533pt;}
.y5c{bottom:154.342533pt;}
.ya9{bottom:154.462533pt;}
.y16c{bottom:154.595867pt;}
.ydb{bottom:156.721867pt;}
.y9e{bottom:161.018000pt;}
.y24c{bottom:162.684000pt;}
.y209{bottom:164.678667pt;}
.y195{bottom:164.721867pt;}
.y28{bottom:165.236133pt;}
.y10f{bottom:168.988533pt;}
.y1c9{bottom:169.982533pt;}
.y5b{bottom:170.342533pt;}
.ya8{bottom:170.462533pt;}
.y19f{bottom:170.468533pt;}
.y16b{bottom:170.595867pt;}
.yda{bottom:172.721867pt;}
.y9d{bottom:174.798000pt;}
.y24b{bottom:176.017333pt;}
.y208{bottom:178.012000pt;}
.y194{bottom:180.721867pt;}
.y27{bottom:181.236133pt;}
.y10e{bottom:184.988533pt;}
.y64{bottom:185.862533pt;}
.y5a{bottom:186.342533pt;}
.ya7{bottom:186.462533pt;}
.y19e{bottom:186.468533pt;}
.y16a{bottom:186.595867pt;}
.y9c{bottom:188.578000pt;}
.yd9{bottom:188.721867pt;}
.y24a{bottom:189.350667pt;}
.y207{bottom:191.345333pt;}
.y193{bottom:196.721867pt;}
.y26{bottom:197.236133pt;}
.y10d{bottom:200.988533pt;}
.y1bf{bottom:201.982533pt;}
.y59{bottom:202.342533pt;}
.y9b{bottom:202.358000pt;}
.ya6{bottom:202.462533pt;}
.y19d{bottom:202.468533pt;}
.y169{bottom:202.595867pt;}
.y249{bottom:202.684000pt;}
.y206{bottom:204.678667pt;}
.yd8{bottom:204.721867pt;}
.y192{bottom:212.721867pt;}
.y25{bottom:213.236133pt;}
.y248{bottom:216.017333pt;}
.y9a{bottom:216.138000pt;}
.y10c{bottom:216.988533pt;}
.y205{bottom:218.012000pt;}
.y58{bottom:218.342533pt;}
.ya5{bottom:218.462533pt;}
.y19c{bottom:218.468533pt;}
.y168{bottom:218.595867pt;}
.yd7{bottom:220.721867pt;}
.y191{bottom:228.721867pt;}
.y24{bottom:229.236133pt;}
.y247{bottom:229.350667pt;}
.y99{bottom:229.918000pt;}
.y204{bottom:231.345333pt;}
.y10b{bottom:232.988533pt;}
.y63{bottom:233.982533pt;}
.y1c8{bottom:234.102533pt;}
.ya4{bottom:234.462533pt;}
.y19b{bottom:234.468533pt;}
.y167{bottom:234.595867pt;}
.yd6{bottom:236.721867pt;}
.y246{bottom:242.684000pt;}
.y98{bottom:243.698000pt;}
.y203{bottom:244.678667pt;}
.y190{bottom:244.721867pt;}
.y23{bottom:245.236133pt;}
.y10a{bottom:248.988533pt;}
.y57{bottom:249.982533pt;}
.ya3{bottom:250.462533pt;}
.y140{bottom:250.468533pt;}
.y166{bottom:250.595867pt;}
.yd5{bottom:252.721867pt;}
.y245{bottom:256.017333pt;}
.y97{bottom:257.478000pt;}
.y202{bottom:258.012000pt;}
.y18f{bottom:260.721867pt;}
.y22{bottom:261.236133pt;}
.y109{bottom:264.988533pt;}
.y1c7{bottom:266.102533pt;}
.ya2{bottom:266.462533pt;}
.y13f{bottom:266.468533pt;}
.y165{bottom:266.595867pt;}
.yd4{bottom:268.721867pt;}
.y244{bottom:269.350667pt;}
.y96{bottom:271.258000pt;}
.y201{bottom:271.345333pt;}
.y18e{bottom:276.721867pt;}
.y21{bottom:277.236133pt;}
.y108{bottom:280.988533pt;}
.y62{bottom:282.462533pt;}
.y13e{bottom:282.468533pt;}
.y164{bottom:282.595867pt;}
.y243{bottom:282.684000pt;}
.y200{bottom:284.678667pt;}
.yd3{bottom:284.721867pt;}
.y95{bottom:285.024800pt;}
.y18d{bottom:292.721867pt;}
.y20{bottom:293.236133pt;}
.y242{bottom:296.017333pt;}
.y107{bottom:296.988533pt;}
.y1ff{bottom:298.012000pt;}
.y56{bottom:298.462533pt;}
.y13d{bottom:298.468533pt;}
.y163{bottom:298.595867pt;}
.y94{bottom:298.804800pt;}
.yd2{bottom:300.721867pt;}
.y18c{bottom:308.721867pt;}
.y1f{bottom:309.236133pt;}
.y241{bottom:309.350667pt;}
.y1fe{bottom:311.345333pt;}
.y93{bottom:312.584800pt;}
.y106{bottom:312.988533pt;}
.y55{bottom:314.462533pt;}
.y13c{bottom:314.468533pt;}
.y162{bottom:314.595867pt;}
.yd1{bottom:316.721867pt;}
.y240{bottom:322.684000pt;}
.y1fd{bottom:324.678667pt;}
.y18b{bottom:324.721867pt;}
.y1e{bottom:325.236133pt;}
.y92{bottom:326.364800pt;}
.y105{bottom:328.988533pt;}
.y54{bottom:330.462533pt;}
.y13b{bottom:330.468533pt;}
.y161{bottom:330.595867pt;}
.yd0{bottom:332.721867pt;}
.y23f{bottom:336.017333pt;}
.y1fc{bottom:338.012000pt;}
.y91{bottom:340.144800pt;}
.y18a{bottom:340.721867pt;}
.y2b{bottom:341.236133pt;}
.y104{bottom:344.988533pt;}
.y1c6{bottom:346.102533pt;}
.y53{bottom:346.462533pt;}
.y13a{bottom:346.468533pt;}
.y160{bottom:346.595867pt;}
.ycf{bottom:348.721867pt;}
.y23e{bottom:349.350667pt;}
.y1fb{bottom:351.347467pt;}
.y90{bottom:353.924800pt;}
.y189{bottom:356.721867pt;}
.y1d{bottom:356.876133pt;}
.y2a{bottom:357.236133pt;}
.y103{bottom:360.988533pt;}
.y52{bottom:362.462533pt;}
.y139{bottom:362.468533pt;}
.y15f{bottom:362.595867pt;}
.y23d{bottom:362.684000pt;}
.y1fa{bottom:364.680800pt;}
.yce{bottom:364.721867pt;}
.y8f{bottom:367.704800pt;}
.y188{bottom:372.721867pt;}
.y23c{bottom:376.017333pt;}
.y102{bottom:376.988533pt;}
.y1f9{bottom:378.014133pt;}
.y51{bottom:378.462533pt;}
.y138{bottom:378.468533pt;}
.y15e{bottom:378.595867pt;}
.ycd{bottom:380.721867pt;}
.y8e{bottom:381.484800pt;}
.y187{bottom:388.721867pt;}
.y23b{bottom:389.350667pt;}
.y1f8{bottom:391.347467pt;}
.y101{bottom:392.988533pt;}
.y1c5{bottom:394.102533pt;}
.y50{bottom:394.462533pt;}
.y137{bottom:394.468533pt;}
.y15d{bottom:394.595867pt;}
.y8d{bottom:395.264800pt;}
.ycc{bottom:396.721867pt;}
.y23a{bottom:402.684000pt;}
.y1f7{bottom:404.680800pt;}
.y186{bottom:404.721867pt;}
.y100{bottom:408.988533pt;}
.y8c{bottom:409.044800pt;}
.y4f{bottom:410.462533pt;}
.y136{bottom:410.468533pt;}
.y15c{bottom:410.595867pt;}
.ycb{bottom:412.721867pt;}
.y19{bottom:414.318667pt;}
.y239{bottom:416.017333pt;}
.y1f6{bottom:418.014133pt;}
.y185{bottom:420.721867pt;}
.y8b{bottom:422.824800pt;}
.yff{bottom:424.988533pt;}
.y4e{bottom:426.462533pt;}
.y135{bottom:426.468533pt;}
.y15b{bottom:426.595867pt;}
.yca{bottom:428.721867pt;}
.y238{bottom:429.350667pt;}
.y18{bottom:430.323733pt;}
.y1f5{bottom:431.347467pt;}
.y8a{bottom:436.604800pt;}
.y4d{bottom:442.462533pt;}
.y134{bottom:442.468533pt;}
.y15a{bottom:442.595867pt;}
.y237{bottom:442.684000pt;}
.y1f4{bottom:444.680800pt;}
.yc9{bottom:444.721867pt;}
.y89{bottom:450.384800pt;}
.y184{bottom:452.271333pt;}
.y17{bottom:454.630400pt;}
.y236{bottom:456.017333pt;}
.yfe{bottom:456.538000pt;}
.y1f3{bottom:458.014133pt;}
.y4c{bottom:458.462533pt;}
.y133{bottom:458.468533pt;}
.y159{bottom:458.595867pt;}
.y88{bottom:464.164800pt;}
.y183{bottom:465.604667pt;}
.y235{bottom:469.350667pt;}
.yfd{bottom:469.871333pt;}
.y16{bottom:470.630400pt;}
.y1f2{bottom:471.347467pt;}
.y4b{bottom:474.462533pt;}
.y132{bottom:474.468533pt;}
.y158{bottom:474.595867pt;}
.yc8{bottom:476.271333pt;}
.y87{bottom:477.944800pt;}
.y182{bottom:478.938000pt;}
.y234{bottom:482.684000pt;}
.yfc{bottom:483.204667pt;}
.y1f1{bottom:484.680800pt;}
.y15{bottom:486.630400pt;}
.yc7{bottom:489.604667pt;}
.y4a{bottom:490.462533pt;}
.y131{bottom:490.468533pt;}
.y157{bottom:490.595867pt;}
.y86{bottom:491.724800pt;}
.y233{bottom:496.017333pt;}
.y1f0{bottom:498.014133pt;}
.y14{bottom:502.630400pt;}
.yc6{bottom:502.938000pt;}
.y85{bottom:505.504800pt;}
.y49{bottom:506.462533pt;}
.y130{bottom:506.468533pt;}
.y156{bottom:506.595867pt;}
.y232{bottom:509.350667pt;}
.y1ef{bottom:511.347467pt;}
.yfb{bottom:511.958000pt;}
.yc5{bottom:516.271333pt;}
.y13{bottom:518.630400pt;}
.y84{bottom:519.284800pt;}
.y181{bottom:522.235867pt;}
.y48{bottom:522.462533pt;}
.y12f{bottom:522.468533pt;}
.y155{bottom:522.595867pt;}
.y231{bottom:522.684000pt;}
.y1ee{bottom:524.680800pt;}
.yfa{bottom:525.830000pt;}
.yc4{bottom:529.604667pt;}
.y83{bottom:533.954800pt;}
.y12{bottom:534.630400pt;}
.y230{bottom:536.017333pt;}
.y1ed{bottom:538.014133pt;}
.y1c4{bottom:538.102533pt;}
.y47{bottom:538.462533pt;}
.y12e{bottom:538.468533pt;}
.yf9{bottom:538.595867pt;}
.yc3{bottom:542.938000pt;}
.y82{bottom:547.734800pt;}
.y22f{bottom:549.350667pt;}
.y11{bottom:550.630400pt;}
.y1ec{bottom:551.347467pt;}
.yf8{bottom:554.235867pt;}
.y46{bottom:554.462533pt;}
.y12d{bottom:554.468533pt;}
.y154{bottom:554.595867pt;}
.yc2{bottom:556.271333pt;}
.y81{bottom:561.514800pt;}
.y22e{bottom:562.684000pt;}
.y1eb{bottom:564.680800pt;}
.y10{bottom:566.630400pt;}
.yc1{bottom:569.604667pt;}
.y45{bottom:570.462533pt;}
.y12c{bottom:570.468533pt;}
.y153{bottom:570.595867pt;}
.y80{bottom:575.294800pt;}
.y22d{bottom:576.017333pt;}
.y1ea{bottom:578.014133pt;}
.yc0{bottom:582.938000pt;}
.y44{bottom:586.462533pt;}
.y12b{bottom:586.468533pt;}
.y152{bottom:586.595867pt;}
.y146{bottom:589.028533pt;}
.y7f{bottom:589.061067pt;}
.y22c{bottom:589.350667pt;}
.y1e9{bottom:591.347467pt;}
.ybf{bottom:596.271333pt;}
.y43{bottom:602.462533pt;}
.y12a{bottom:602.468533pt;}
.y151{bottom:602.595867pt;}
.y22b{bottom:602.684000pt;}
.y7e{bottom:602.841067pt;}
.y145{bottom:603.023200pt;}
.y1e8{bottom:604.680800pt;}
.yf{bottom:606.770933pt;}
.ybe{bottom:609.604667pt;}
.y22a{bottom:616.017333pt;}
.y7d{bottom:616.621067pt;}
.y144{bottom:617.017867pt;}
.ye{bottom:617.838267pt;}
.y1e7{bottom:618.014133pt;}
.y42{bottom:618.462533pt;}
.y129{bottom:618.468533pt;}
.y150{bottom:618.595867pt;}
.ybd{bottom:622.938000pt;}
.y229{bottom:629.350667pt;}
.y7c{bottom:630.401067pt;}
.y1e6{bottom:631.347467pt;}
.y41{bottom:634.462533pt;}
.y128{bottom:634.468533pt;}
.y14f{bottom:634.595867pt;}
.ybc{bottom:636.271333pt;}
.y228{bottom:642.684000pt;}
.y7b{bottom:644.181067pt;}
.y1e5{bottom:644.680800pt;}
.yd{bottom:649.461467pt;}
.ybb{bottom:649.604667pt;}
.y40{bottom:650.462533pt;}
.y127{bottom:650.468533pt;}
.y14e{bottom:650.595867pt;}
.y227{bottom:656.017333pt;}
.y7a{bottom:657.961067pt;}
.y1e4{bottom:658.014133pt;}
.yc{bottom:658.029867pt;}
.yba{bottom:662.938000pt;}
.y3f{bottom:666.462533pt;}
.y126{bottom:666.468533pt;}
.y14d{bottom:666.595867pt;}
.y226{bottom:669.350667pt;}
.y1e3{bottom:671.347467pt;}
.y79{bottom:671.741067pt;}
.yb{bottom:673.461467pt;}
.yb9{bottom:676.271333pt;}
.y3e{bottom:682.462533pt;}
.y125{bottom:682.468533pt;}
.y14c{bottom:682.595867pt;}
.y225{bottom:682.684000pt;}
.y1e2{bottom:684.680800pt;}
.ya{bottom:685.461467pt;}
.y78{bottom:685.521067pt;}
.yb8{bottom:689.604667pt;}
.y224{bottom:696.017333pt;}
.y9{bottom:697.461467pt;}
.y1e1{bottom:698.014133pt;}
.y3d{bottom:698.462533pt;}
.y124{bottom:698.468533pt;}
.y180{bottom:698.475867pt;}
.y14b{bottom:698.595867pt;}
.y77{bottom:699.301067pt;}
.yb7{bottom:702.938000pt;}
.y223{bottom:709.350667pt;}
.y1e0{bottom:711.347467pt;}
.y76{bottom:713.081067pt;}
.y3c{bottom:714.462533pt;}
.y123{bottom:714.468533pt;}
.y17f{bottom:714.475867pt;}
.yb6{bottom:716.271333pt;}
.y222{bottom:722.684000pt;}
.y8{bottom:724.382933pt;}
.y1df{bottom:724.680800pt;}
.y75{bottom:726.861067pt;}
.yb5{bottom:729.604667pt;}
.y14a{bottom:730.235867pt;}
.y3b{bottom:730.462533pt;}
.y122{bottom:730.468533pt;}
.y17e{bottom:730.475867pt;}
.y221{bottom:736.017333pt;}
.y1de{bottom:738.014133pt;}
.y74{bottom:740.641067pt;}
.yb4{bottom:742.938000pt;}
.y3a{bottom:746.462533pt;}
.y121{bottom:746.468533pt;}
.y17d{bottom:746.475867pt;}
.y220{bottom:749.350667pt;}
.y1dd{bottom:751.347467pt;}
.y73{bottom:754.421067pt;}
.yb3{bottom:756.271333pt;}
.y39{bottom:762.462533pt;}
.y120{bottom:762.468533pt;}
.y17c{bottom:762.475867pt;}
.y21f{bottom:762.684000pt;}
.y1dc{bottom:764.680800pt;}
.y7{bottom:765.406933pt;}
.y72{bottom:768.201067pt;}
.yb2{bottom:769.604667pt;}
.y21e{bottom:776.017333pt;}
.y1b1{bottom:776.862533pt;}
.y1db{bottom:778.014133pt;}
.y38{bottom:778.462533pt;}
.y11f{bottom:778.468533pt;}
.y17b{bottom:778.475867pt;}
.y71{bottom:781.981067pt;}
.yb1{bottom:782.938000pt;}
.y21d{bottom:789.350667pt;}
.y1da{bottom:791.347467pt;}
.y1b0{bottom:792.862533pt;}
.y37{bottom:794.462533pt;}
.y11e{bottom:794.468533pt;}
.y17a{bottom:794.475867pt;}
.y70{bottom:795.761067pt;}
.y6{bottom:797.816533pt;}
.y21c{bottom:802.684000pt;}
.y1d9{bottom:804.680800pt;}
.y6f{bottom:809.541067pt;}
.y36{bottom:810.462533pt;}
.y11d{bottom:810.468533pt;}
.y179{bottom:810.475867pt;}
.yb0{bottom:810.595867pt;}
.y21b{bottom:816.017333pt;}
.y1d8{bottom:818.014133pt;}
.y6e{bottom:823.321067pt;}
.y1af{bottom:824.412000pt;}
.yaf{bottom:826.235867pt;}
.y35{bottom:826.462533pt;}
.y11c{bottom:826.468533pt;}
.y178{bottom:826.475867pt;}
.y21a{bottom:829.350667pt;}
.y5{bottom:830.226133pt;}
.y1d7{bottom:831.347467pt;}
.y6d{bottom:837.101067pt;}
.y1ae{bottom:837.745333pt;}
.y34{bottom:842.462533pt;}
.y11b{bottom:842.468533pt;}
.y177{bottom:842.475867pt;}
.y219{bottom:842.684000pt;}
.y1d6{bottom:844.680800pt;}
.y1ad{bottom:851.078667pt;}
.y218{bottom:856.017333pt;}
.y1d5{bottom:858.014133pt;}
.y1c3{bottom:858.102533pt;}
.y33{bottom:858.462533pt;}
.y11a{bottom:858.468533pt;}
.y176{bottom:858.475867pt;}
.y6c{bottom:862.221067pt;}
.y4{bottom:862.635733pt;}
.y217{bottom:869.350667pt;}
.y1d4{bottom:871.347467pt;}
.y32{bottom:874.462533pt;}
.y119{bottom:874.468533pt;}
.y175{bottom:874.475867pt;}
.y6b{bottom:876.891067pt;}
.y1ac{bottom:879.832000pt;}
.y216{bottom:882.684000pt;}
.y1d3{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.y118{bottom:890.468533pt;}
.y174{bottom:890.475867pt;}
.y1ab{bottom:893.704000pt;}
.y3{bottom:895.045333pt;}
.y215{bottom:896.017333pt;}
.y1d2{bottom:898.014133pt;}
.y6a{bottom:905.129200pt;}
.y30{bottom:906.462533pt;}
.y1aa{bottom:906.467733pt;}
.y117{bottom:906.468533pt;}
.y173{bottom:906.475867pt;}
.y214{bottom:909.350667pt;}
.y1d1{bottom:911.347467pt;}
.y1a9{bottom:922.107733pt;}
.y1be{bottom:922.115867pt;}
.y2f{bottom:922.462533pt;}
.y116{bottom:922.468533pt;}
.y172{bottom:922.475867pt;}
.y213{bottom:922.684000pt;}
.y1d0{bottom:924.680800pt;}
.y212{bottom:936.017333pt;}
.y2{bottom:950.489200pt;}
.y69{bottom:1006.594400pt;}
.y1b7{bottom:1006.595200pt;}
.y149{bottom:1006.597067pt;}
.y211{bottom:1006.598667pt;}
.y1c2{bottom:1006.599733pt;}
.yf1{bottom:1006.601333pt;}
.y1bd{bottom:1006.604400pt;}
.y2d{bottom:1009.857333pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.121094pt;}
.h7{height:29.160156pt;}
.h15{height:29.625000pt;}
.h10{height:31.062500pt;}
.hf{height:31.104167pt;}
.h11{height:33.359375pt;}
.h13{height:33.412175pt;}
.h12{height:33.414308pt;}
.h14{height:35.583333pt;}
.he{height:37.031250pt;}
.ha{height:38.828125pt;}
.hb{height:38.859942pt;}
.h9{height:38.880208pt;}
.h16{height:40.031250pt;}
.h5{height:43.678785pt;}
.hd{height:44.479167pt;}
.h17{height:45.919167pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:62.740133pt;}
.xc{left:68.031467pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x17{left:88.818933pt;}
.x2f{left:90.708800pt;}
.x4{left:94.488267pt;}
.xd{left:98.271467pt;}
.x32{left:101.793333pt;}
.x30{left:109.606533pt;}
.x3{left:111.496133pt;}
.x7{left:117.170133pt;}
.xe{left:128.618133pt;}
.x2c{left:130.844800pt;}
.x31{left:163.806000pt;}
.x5{left:170.101067pt;}
.x2e{left:178.921733pt;}
.x2d{left:185.671467pt;}
.x6{left:189.223467pt;}
.x36{left:191.582533pt;}
.x33{left:194.493333pt;}
.x23{left:208.966533pt;}
.x20{left:213.518933pt;}
.x21{left:221.083867pt;}
.x18{left:360.728933pt;}
.x22{left:365.983867pt;}
.xb{left:404.481333pt;}
.xf{left:406.271467pt;}
.x19{left:408.798933pt;}
.x28{left:425.195867pt;}
.x8{left:427.090133pt;}
.x27{left:428.976533pt;}
.x1a{left:435.138933pt;}
.x10{left:436.511467pt;}
.x25{left:444.294400pt;}
.x37{left:447.867733pt;}
.x14{left:451.325867pt;}
.x29{left:455.422533pt;}
.x9{left:457.330133pt;}
.x13{left:482.432533pt;}
.x12{left:518.645867pt;}
.x11{left:525.925867pt;}
.x26{left:527.307733pt;}
.x35{left:533.982533pt;}
.x1b{left:561.468933pt;}
.x16{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1c{left:623.378933pt;}
.x1d{left:633.088933pt;}
.x2a{left:641.526800pt;}
.x15{left:647.459200pt;}
.x2b{left:661.216133pt;}
.x24{left:666.356800pt;}
.x1e{left:676.288933pt;}
.x1f{left:685.168933pt;}
}




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