
    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_c940fedf3bf6f1c867c4404b.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_0d64f3f8de3df4439d5c4c34.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_d769dd8906bf6ba85d29466f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_280b16ce2eee8416341f70b8.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_36078512dc93dd04e51446d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_2d2129d9011eabe99a17b131.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0d510b4ac7269610ad0296ad.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8dbdd698208ce7285a3592d8.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_2c67eec90acfbb5f4ce40e30.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_ba8d0093bfcd047753682a66.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v3{vertical-align:-13.387200px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:15.909000px;}
.v1{vertical-align:21.619800px;}
.ls34{letter-spacing:-7.740000px;}
.ls58{letter-spacing:-7.620000px;}
.ls57{letter-spacing:-7.440000px;}
.ls4e{letter-spacing:-7.380000px;}
.ls3a{letter-spacing:-7.200000px;}
.ls35{letter-spacing:-7.080000px;}
.ls62{letter-spacing:-7.020000px;}
.ls12{letter-spacing:-6.780000px;}
.ls64{letter-spacing:-6.660000px;}
.ls56{letter-spacing:-6.480000px;}
.ls3b{letter-spacing:-6.420000px;}
.ls63{letter-spacing:-6.180000px;}
.ls4d{letter-spacing:-6.120000px;}
.ls6e{letter-spacing:-6.060000px;}
.ls4f{letter-spacing:-5.160000px;}
.ls91{letter-spacing:-2.640000px;}
.ls10{letter-spacing:-0.780000px;}
.ls90{letter-spacing:-0.768000px;}
.ls11{letter-spacing:-0.506400px;}
.ls5c{letter-spacing:-0.384000px;}
.ls54{letter-spacing:-0.300000px;}
.ls37{letter-spacing:-0.180000px;}
.ls8f{letter-spacing:-0.144000px;}
.ls36{letter-spacing:-0.120000px;}
.ls38{letter-spacing:-0.060000px;}
.ls6f{letter-spacing:-0.048000px;}
.lsf{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003600px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005400px;}
.ls88{letter-spacing:0.048000px;}
.ls7{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.069000px;}
.ls70{letter-spacing:0.096000px;}
.ls2b{letter-spacing:0.120000px;}
.ls71{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.180000px;}
.ls83{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.240000px;}
.ls7c{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.300000px;}
.ls3e{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.360000px;}
.ls5f{letter-spacing:0.384000px;}
.ls8{letter-spacing:0.420000px;}
.ls5b{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.480000px;}
.ls81{letter-spacing:0.528000px;}
.ls2a{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.600000px;}
.ls59{letter-spacing:0.624000px;}
.lse{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.720000px;}
.ls73{letter-spacing:0.768000px;}
.lsa{letter-spacing:0.780000px;}
.ls5a{letter-spacing:0.816000px;}
.ls16{letter-spacing:0.840000px;}
.lsb{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.960000px;}
.ls79{letter-spacing:1.008000px;}
.ls17{letter-spacing:1.020000px;}
.ls94{letter-spacing:1.056000px;}
.ls53{letter-spacing:1.080000px;}
.ls7e{letter-spacing:1.104000px;}
.ls22{letter-spacing:1.140000px;}
.ls74{letter-spacing:1.152000px;}
.ls1c{letter-spacing:1.200000px;}
.ls6a{letter-spacing:1.248000px;}
.ls29{letter-spacing:1.260000px;}
.ls87{letter-spacing:1.296000px;}
.ls23{letter-spacing:1.320000px;}
.ls3f{letter-spacing:1.380000px;}
.ls93{letter-spacing:1.392000px;}
.ls32{letter-spacing:1.440000px;}
.ls1b{letter-spacing:1.500000px;}
.ls72{letter-spacing:1.536000px;}
.ls2e{letter-spacing:1.560000px;}
.ls75{letter-spacing:1.584000px;}
.ls30{letter-spacing:1.620000px;}
.ls6d{letter-spacing:1.632000px;}
.ls2f{letter-spacing:1.680000px;}
.ls7b{letter-spacing:1.728000px;}
.ls48{letter-spacing:1.740000px;}
.ls76{letter-spacing:1.776000px;}
.ls6{letter-spacing:1.800000px;}
.ls85{letter-spacing:1.824000px;}
.ls1a{letter-spacing:1.860000px;}
.ls92{letter-spacing:1.872000px;}
.ls1f{letter-spacing:1.920000px;}
.ls8a{letter-spacing:1.968000px;}
.ls25{letter-spacing:1.980000px;}
.ls80{letter-spacing:2.016000px;}
.lsd{letter-spacing:2.040000px;}
.ls4a{letter-spacing:2.100000px;}
.ls6c{letter-spacing:2.112000px;}
.ls65{letter-spacing:2.160000px;}
.ls78{letter-spacing:2.208000px;}
.ls4c{letter-spacing:2.220000px;}
.ls6b{letter-spacing:2.256000px;}
.ls1e{letter-spacing:2.280000px;}
.ls33{letter-spacing:2.340000px;}
.ls86{letter-spacing:2.352000px;}
.ls41{letter-spacing:2.400000px;}
.ls51{letter-spacing:2.460000px;}
.ls7a{letter-spacing:2.544000px;}
.ls21{letter-spacing:2.580000px;}
.ls5{letter-spacing:2.640000px;}
.ls77{letter-spacing:2.688000px;}
.ls44{letter-spacing:2.700000px;}
.ls67{letter-spacing:2.760000px;}
.ls68{letter-spacing:2.784000px;}
.ls2c{letter-spacing:2.820000px;}
.ls55{letter-spacing:2.880000px;}
.ls84{letter-spacing:2.928000px;}
.ls40{letter-spacing:2.940000px;}
.ls2d{letter-spacing:3.000000px;}
.ls31{letter-spacing:3.060000px;}
.ls8d{letter-spacing:3.072000px;}
.ls26{letter-spacing:3.120000px;}
.ls7d{letter-spacing:3.216000px;}
.ls13{letter-spacing:3.240000px;}
.ls89{letter-spacing:3.312000px;}
.ls42{letter-spacing:3.360000px;}
.ls27{letter-spacing:3.480000px;}
.ls49{letter-spacing:3.600000px;}
.ls60{letter-spacing:3.660000px;}
.ls82{letter-spacing:3.696000px;}
.ls28{letter-spacing:3.720000px;}
.ls39{letter-spacing:3.780000px;}
.ls69{letter-spacing:3.792000px;}
.ls43{letter-spacing:3.900000px;}
.ls8c{letter-spacing:3.984000px;}
.ls4b{letter-spacing:4.080000px;}
.ls8e{letter-spacing:4.176000px;}
.ls50{letter-spacing:4.260000px;}
.ls8b{letter-spacing:4.272000px;}
.ls5d{letter-spacing:4.320000px;}
.ls52{letter-spacing:4.560000px;}
.ls46{letter-spacing:4.620000px;}
.ls5e{letter-spacing:4.920000px;}
.ls7f{letter-spacing:4.944000px;}
.ls61{letter-spacing:5.520000px;}
.ls18{letter-spacing:5.640000px;}
.ls66{letter-spacing:6.600000px;}
.ls47{letter-spacing:6.720000px;}
.ls20{letter-spacing:7.260000px;}
.ls45{letter-spacing:9.480000px;}
.ls3d{letter-spacing:81.552000px;}
.ls3c{letter-spacing:207.094200px;}
.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;}
}
.ws47{word-spacing:-24.480000px;}
.ws89{word-spacing:-19.920000px;}
.ws9b{word-spacing:-18.480000px;}
.ws15{word-spacing:-18.000000px;}
.ws46{word-spacing:-17.280000px;}
.ws99{word-spacing:-17.040000px;}
.ws48{word-spacing:-16.860000px;}
.ws1{word-spacing:-16.680000px;}
.ws98{word-spacing:-16.620000px;}
.ws6b{word-spacing:-16.200000px;}
.wsbe{word-spacing:-16.176000px;}
.ws6e{word-spacing:-16.080000px;}
.ws13{word-spacing:-16.020000px;}
.ws6f{word-spacing:-15.960000px;}
.ws5{word-spacing:-15.900000px;}
.ws9d{word-spacing:-15.792000px;}
.ws3{word-spacing:-15.780000px;}
.ws45{word-spacing:-15.720000px;}
.ws6c{word-spacing:-15.540000px;}
.ws4{word-spacing:-15.360000px;}
.ws6d{word-spacing:-15.240000px;}
.ws9a{word-spacing:-15.000000px;}
.wsbd{word-spacing:-14.784000px;}
.wsb5{word-spacing:-14.544000px;}
.wsb8{word-spacing:-14.400000px;}
.wsbb{word-spacing:-14.208000px;}
.wsdf{word-spacing:-13.824000px;}
.wsb1{word-spacing:-13.776000px;}
.wsb6{word-spacing:-13.728000px;}
.wsb0{word-spacing:-13.536000px;}
.wsbc{word-spacing:-13.440000px;}
.wsdd{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.344000px;}
.wsb3{word-spacing:-13.008000px;}
.ws9c{word-spacing:-12.960000px;}
.wse0{word-spacing:-12.720000px;}
.wsba{word-spacing:-12.624000px;}
.ws2{word-spacing:-12.510000px;}
.wsb7{word-spacing:-12.480000px;}
.ws8a{word-spacing:-12.384000px;}
.ws87{word-spacing:-12.336000px;}
.wsbf{word-spacing:-12.288000px;}
.wsde{word-spacing:-12.240000px;}
.ws3b{word-spacing:-12.000000px;}
.wsb2{word-spacing:-11.856000px;}
.wsb4{word-spacing:-11.232000px;}
.ws0{word-spacing:-10.508400px;}
.wsb9{word-spacing:-9.360000px;}
.ws97{word-spacing:-8.940000px;}
.ws14{word-spacing:-7.920000px;}
.ws12{word-spacing:-7.260000px;}
.ws41{word-spacing:-7.200000px;}
.ws5c{word-spacing:-6.780000px;}
.ws5b{word-spacing:-4.620000px;}
.wsd9{word-spacing:-4.272000px;}
.wsda{word-spacing:-3.984000px;}
.ws2b{word-spacing:-3.780000px;}
.wsd0{word-spacing:-3.696000px;}
.ws8d{word-spacing:-3.600000px;}
.ws2d{word-spacing:-3.540000px;}
.wscf{word-spacing:-3.360000px;}
.wsd6{word-spacing:-3.312000px;}
.ws75{word-spacing:-3.120000px;}
.ws5e{word-spacing:-2.940000px;}
.ws8{word-spacing:-2.886000px;}
.ws1b{word-spacing:-2.820000px;}
.wsab{word-spacing:-2.784000px;}
.ws55{word-spacing:-2.700000px;}
.ws5a{word-spacing:-2.580000px;}
.wsc8{word-spacing:-2.544000px;}
.ws76{word-spacing:-2.460000px;}
.ws59{word-spacing:-2.340000px;}
.ws9{word-spacing:-2.331000px;}
.wsdb{word-spacing:-2.256000px;}
.ws27{word-spacing:-2.220000px;}
.wsc6{word-spacing:-2.208000px;}
.wsae{word-spacing:-2.112000px;}
.wsa1{word-spacing:-2.040000px;}
.wscd{word-spacing:-2.016000px;}
.ws56{word-spacing:-1.980000px;}
.wsd8{word-spacing:-1.968000px;}
.ws6a{word-spacing:-1.860000px;}
.wse4{word-spacing:-1.824000px;}
.ws1d{word-spacing:-1.800000px;}
.ws5f{word-spacing:-1.740000px;}
.wsc9{word-spacing:-1.728000px;}
.ws37{word-spacing:-1.680000px;}
.ws4c{word-spacing:-1.620000px;}
.ws5d{word-spacing:-1.560000px;}
.wsc4{word-spacing:-1.536000px;}
.wsa0{word-spacing:-1.500000px;}
.ws3a{word-spacing:-1.440000px;}
.ws58{word-spacing:-1.380000px;}
.ws28{word-spacing:-1.320000px;}
.wsd4{word-spacing:-1.296000px;}
.ws38{word-spacing:-1.260000px;}
.wsac{word-spacing:-1.248000px;}
.ws35{word-spacing:-1.200000px;}
.wsca{word-spacing:-1.152000px;}
.ws64{word-spacing:-1.140000px;}
.ws77{word-spacing:-1.080000px;}
.wse2{word-spacing:-1.056000px;}
.ws1e{word-spacing:-1.020000px;}
.wsc7{word-spacing:-1.008000px;}
.ws62{word-spacing:-0.960000px;}
.ws4e{word-spacing:-0.900000px;}
.ws43{word-spacing:-0.864000px;}
.wsa3{word-spacing:-0.840000px;}
.ws84{word-spacing:-0.816000px;}
.ws9e{word-spacing:-0.780000px;}
.ws42{word-spacing:-0.720000px;}
.ws20{word-spacing:-0.660000px;}
.ws82{word-spacing:-0.624000px;}
.ws36{word-spacing:-0.600000px;}
.ws24{word-spacing:-0.540000px;}
.ws57{word-spacing:-0.480000px;}
.ws85{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.420000px;}
.wsaf{word-spacing:-0.384000px;}
.wsd{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.300000px;}
.ws67{word-spacing:-0.240000px;}
.ws50{word-spacing:-0.180000px;}
.wsd5{word-spacing:-0.144000px;}
.ws7e{word-spacing:-0.120000px;}
.ws2c{word-spacing:-0.060000px;}
.wscb{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.wsa8{word-spacing:0.048000px;}
.ws1a{word-spacing:0.060000px;}
.ws60{word-spacing:0.120000px;}
.ws26{word-spacing:0.180000px;}
.ws86{word-spacing:0.240000px;}
.ws52{word-spacing:0.300000px;}
.ws53{word-spacing:0.360000px;}
.wse5{word-spacing:0.528000px;}
.ws11{word-spacing:0.600000px;}
.ws21{word-spacing:0.720000px;}
.wsb{word-spacing:0.780000px;}
.wse3{word-spacing:0.816000px;}
.wse{word-spacing:0.840000px;}
.wsd7{word-spacing:0.864000px;}
.wsad{word-spacing:0.912000px;}
.ws18{word-spacing:0.960000px;}
.ws33{word-spacing:1.020000px;}
.ws4f{word-spacing:1.080000px;}
.ws88{word-spacing:1.200000px;}
.ws25{word-spacing:1.260000px;}
.wsd2{word-spacing:1.296000px;}
.ws93{word-spacing:1.320000px;}
.wsaa{word-spacing:1.344000px;}
.wsd3{word-spacing:1.392000px;}
.wsc3{word-spacing:1.488000px;}
.ws51{word-spacing:1.560000px;}
.ws2f{word-spacing:1.620000px;}
.ws78{word-spacing:1.680000px;}
.wsd1{word-spacing:1.824000px;}
.ws7c{word-spacing:1.860000px;}
.wsce{word-spacing:1.872000px;}
.ws80{word-spacing:1.920000px;}
.ws96{word-spacing:2.064000px;}
.ws68{word-spacing:2.100000px;}
.ws90{word-spacing:2.160000px;}
.ws81{word-spacing:2.208000px;}
.ws8e{word-spacing:2.220000px;}
.wsc2{word-spacing:2.256000px;}
.ws2a{word-spacing:2.280000px;}
.wsa5{word-spacing:2.340000px;}
.ws1f{word-spacing:2.400000px;}
.wscc{word-spacing:2.448000px;}
.ws2e{word-spacing:2.460000px;}
.ws17{word-spacing:2.520000px;}
.wsa7{word-spacing:2.544000px;}
.ws4d{word-spacing:2.640000px;}
.wsc0{word-spacing:2.736000px;}
.ws79{word-spacing:2.760000px;}
.wsc5{word-spacing:3.168000px;}
.ws7b{word-spacing:3.180000px;}
.ws16{word-spacing:3.240000px;}
.ws1c{word-spacing:3.300000px;}
.ws4a{word-spacing:3.360000px;}
.wse1{word-spacing:3.408000px;}
.ws8f{word-spacing:3.420000px;}
.ws22{word-spacing:3.480000px;}
.ws34{word-spacing:3.540000px;}
.ws19{word-spacing:3.660000px;}
.wsa2{word-spacing:3.720000px;}
.ws29{word-spacing:3.780000px;}
.wsc1{word-spacing:3.792000px;}
.ws32{word-spacing:3.840000px;}
.wsa9{word-spacing:3.888000px;}
.ws94{word-spacing:3.900000px;}
.ws83{word-spacing:3.936000px;}
.ws54{word-spacing:3.960000px;}
.ws44{word-spacing:3.984000px;}
.ws9f{word-spacing:4.260000px;}
.ws10{word-spacing:4.440000px;}
.ws63{word-spacing:4.620000px;}
.ws61{word-spacing:4.680000px;}
.ws65{word-spacing:4.860000px;}
.wsa{word-spacing:4.920000px;}
.wsdc{word-spacing:4.944000px;}
.wsc{word-spacing:4.980000px;}
.ws69{word-spacing:5.160000px;}
.wsa4{word-spacing:5.460000px;}
.wsa6{word-spacing:5.520000px;}
.ws49{word-spacing:6.120000px;}
.ws92{word-spacing:6.180000px;}
.ws39{word-spacing:6.420000px;}
.ws7a{word-spacing:6.480000px;}
.ws95{word-spacing:6.660000px;}
.wsf{word-spacing:6.780000px;}
.ws91{word-spacing:7.020000px;}
.ws31{word-spacing:7.200000px;}
.ws66{word-spacing:7.380000px;}
.ws7d{word-spacing:7.440000px;}
.ws7f{word-spacing:7.620000px;}
.ws4b{word-spacing:7.740000px;}
.ws3f{word-spacing:69.552000px;}
.ws3e{word-spacing:145.488000px;}
.ws40{word-spacing:183.360000px;}
.ws74{word-spacing:244.176000px;}
.ws72{word-spacing:245.952000px;}
.ws70{word-spacing:268.176000px;}
.ws8c{word-spacing:342.192000px;}
.ws3d{word-spacing:409.920000px;}
.ws3c{word-spacing:513.840000px;}
.ws73{word-spacing:561.072000px;}
.ws71{word-spacing:618.336000px;}
.ws8b{word-spacing:958.272000px;}
._d{margin-left:-2898.096000px;}
._2c{margin-left:-2874.288000px;}
._2{margin-left:-16.458000px;}
._7{margin-left:-8.330400px;}
._3{margin-left:-7.089600px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.744000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.053000px;}
._a{width:1.620000px;}
._4{width:2.887800px;}
._9{width:4.200000px;}
._8{width:5.280000px;}
._b{width:6.720000px;}
._c{width:8.460000px;}
._2d{width:9.540000px;}
._2e{width:11.760000px;}
._11{width:81.552000px;}
._26{width:128.547600px;}
._2f{width:144.192000px;}
._1d{width:157.488000px;}
._24{width:177.207600px;}
._22{width:195.879600px;}
._36{width:196.929600px;}
._37{width:204.945600px;}
._31{width:228.960000px;}
._38{width:240.993600px;}
._17{width:247.905600px;}
._33{width:256.176000px;}
._16{width:263.841600px;}
._18{width:266.577600px;}
._29{width:296.793600px;}
._3a{width:383.745600px;}
._1f{width:391.137600px;}
._3b{width:401.184000px;}
._28{width:408.273600px;}
._f{width:421.008000px;}
._15{width:486.672000px;}
._39{width:500.385600px;}
._10{width:545.376000px;}
._2a{width:547.329600px;}
._14{width:566.640000px;}
._35{width:631.233600px;}
._13{width:699.792000px;}
._1a{width:706.656000px;}
._12{width:708.390000px;}
._1e{width:712.032000px;}
._21{width:758.352000px;}
._1b{width:765.408000px;}
._34{width:789.969600px;}
._19{width:842.304000px;}
._e{width:852.048000px;}
._25{width:868.944000px;}
._23{width:872.928000px;}
._20{width:911.568000px;}
._1c{width:931.344000px;}
._32{width:1018.518000px;}
._27{width:1025.862000px;}
._30{width:1069.584000px;}
._2b{width:1106.160000px;}
._3d{width:1271.169600px;}
._3c{width:1349.793600px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.400000px;}
.fs5{font-size:27.000000px;}
.fsb{font-size:28.800000px;}
.fs4{font-size:37.800000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2c{bottom:47.777250px;}
.y147{bottom:74.121900px;}
.y189{bottom:80.263500px;}
.y11a{bottom:82.822500px;}
.yf6{bottom:83.342250px;}
.yef{bottom:83.626050px;}
.y5f{bottom:83.635350px;}
.y1e{bottom:83.660400px;}
.y6a{bottom:83.770350px;}
.yff{bottom:84.206850px;}
.y8f{bottom:87.735900px;}
.y146{bottom:89.121900px;}
.ye8{bottom:92.391150px;}
.y117{bottom:92.855550px;}
.y188{bottom:95.263500px;}
.y119{bottom:98.566500px;}
.y1d{bottom:98.656650px;}
.yf5{bottom:99.086250px;}
.yee{bottom:99.370050px;}
.yfe{bottom:99.950850px;}
.y5e{bottom:101.635350px;}
.y69{bottom:101.770350px;}
.y145{bottom:104.121900px;}
.ye7{bottom:108.639150px;}
.y8e{bottom:109.265100px;}
.y116{bottom:109.355550px;}
.y187{bottom:110.263500px;}
.y1c{bottom:113.652900px;}
.yf4{bottom:114.830250px;}
.yed{bottom:115.114050px;}
.y144{bottom:119.121900px;}
.y5d{bottom:119.635350px;}
.y68{bottom:119.770350px;}
.ye6{bottom:124.887150px;}
.y186{bottom:125.263500px;}
.y8d{bottom:125.513100px;}
.y115{bottom:125.603550px;}
.yec{bottom:130.858050px;}
.y102{bottom:132.254850px;}
.y143{bottom:134.121900px;}
.y5c{bottom:137.635350px;}
.y67{bottom:137.770350px;}
.y185{bottom:140.263500px;}
.ye5{bottom:141.135150px;}
.y8c{bottom:141.761100px;}
.y114{bottom:142.103550px;}
.yeb{bottom:146.602050px;}
.y142{bottom:149.121900px;}
.yf9{bottom:153.734250px;}
.y126{bottom:155.230350px;}
.y184{bottom:155.263500px;}
.y5b{bottom:155.635350px;}
.y66{bottom:155.770350px;}
.ye4{bottom:157.383150px;}
.y8b{bottom:158.032950px;}
.y113{bottom:158.351550px;}
.yea{bottom:162.346050px;}
.y141{bottom:164.121900px;}
.y183{bottom:170.263500px;}
.ye3{bottom:173.631150px;}
.y5a{bottom:173.635350px;}
.y65{bottom:173.770350px;}
.y8a{bottom:174.280950px;}
.y112{bottom:174.851550px;}
.y140{bottom:179.121900px;}
.y27{bottom:180.150600px;}
.y182{bottom:185.263500px;}
.ye2{bottom:189.879150px;}
.y89{bottom:190.528950px;}
.y111{bottom:191.099550px;}
.y59{bottom:191.635350px;}
.y64{bottom:191.770350px;}
.y13f{bottom:194.121900px;}
.y26{bottom:198.150600px;}
.yf2{bottom:199.678050px;}
.y181{bottom:200.263500px;}
.ye1{bottom:206.127150px;}
.y88{bottom:206.776950px;}
.y110{bottom:207.599550px;}
.y13e{bottom:209.121900px;}
.y125{bottom:209.635350px;}
.y63{bottom:209.770350px;}
.y180{bottom:215.263500px;}
.y25{bottom:216.150600px;}
.y87{bottom:223.024950px;}
.y13d{bottom:224.121900px;}
.y58{bottom:227.230350px;}
.y124{bottom:227.635350px;}
.y62{bottom:227.770350px;}
.y17f{bottom:230.263500px;}
.y24{bottom:234.150600px;}
.y10f{bottom:236.603550px;}
.ye0{bottom:237.639150px;}
.y13c{bottom:239.121900px;}
.y86{bottom:239.272950px;}
.y17e{bottom:245.263500px;}
.y123{bottom:245.635350px;}
.y61{bottom:245.770350px;}
.y23{bottom:252.150600px;}
.y10e{bottom:253.103550px;}
.y13b{bottom:254.121900px;}
.y85{bottom:255.556650px;}
.y17d{bottom:260.263500px;}
.y122{bottom:263.635350px;}
.y60{bottom:263.770350px;}
.y13a{bottom:269.121900px;}
.y10d{bottom:269.603550px;}
.y22{bottom:270.150600px;}
.y84{bottom:271.804650px;}
.ydf{bottom:272.537100px;}
.y17c{bottom:275.263500px;}
.y121{bottom:281.635350px;}
.y57{bottom:281.770350px;}
.y139{bottom:284.121900px;}
.y83{bottom:288.052650px;}
.y21{bottom:288.150600px;}
.y17b{bottom:290.263500px;}
.yde{bottom:292.037100px;}
.y10c{bottom:298.607550px;}
.y138{bottom:299.121900px;}
.y120{bottom:299.635350px;}
.y56{bottom:299.770350px;}
.y82{bottom:304.300650px;}
.y17a{bottom:305.263500px;}
.y20{bottom:306.150600px;}
.ydd{bottom:311.537100px;}
.y137{bottom:314.121900px;}
.y11f{bottom:317.635350px;}
.y55{bottom:317.770350px;}
.y179{bottom:320.263500px;}
.y81{bottom:320.548650px;}
.y29{bottom:324.150600px;}
.y136{bottom:329.121900px;}
.y10b{bottom:330.998700px;}
.y178{bottom:335.263500px;}
.y11e{bottom:335.635350px;}
.y54{bottom:335.770350px;}
.y80{bottom:336.796650px;}
.y1f{bottom:341.745600px;}
.y28{bottom:342.150600px;}
.y135{bottom:344.121900px;}
.y177{bottom:350.263500px;}
.y10a{bottom:350.498700px;}
.y7f{bottom:353.044650px;}
.y11d{bottom:353.635350px;}
.y53{bottom:353.770350px;}
.yb7{bottom:353.907600px;}
.ydc{bottom:353.912100px;}
.y134{bottom:359.121900px;}
.y176{bottom:365.263500px;}
.y7e{bottom:369.292650px;}
.y109{bottom:369.998700px;}
.y52{bottom:371.770350px;}
.yb6{bottom:371.907600px;}
.ydb{bottom:371.912100px;}
.y133{bottom:374.121900px;}
.y175{bottom:380.263500px;}
.yfa{bottom:381.218250px;}
.y7d{bottom:385.540650px;}
.y132{bottom:389.121900px;}
.y11c{bottom:389.230350px;}
.y51{bottom:389.770350px;}
.yb5{bottom:389.907600px;}
.yda{bottom:389.912100px;}
.y174{bottom:395.263500px;}
.y7c{bottom:401.792700px;}
.y131{bottom:404.121900px;}
.y50{bottom:407.770350px;}
.yb4{bottom:407.907600px;}
.yd9{bottom:407.912100px;}
.y173{bottom:410.263500px;}
.y108{bottom:412.046550px;}
.y7b{bottom:418.072350px;}
.y130{bottom:419.121900px;}
.y1b{bottom:422.467950px;}
.y172{bottom:425.263500px;}
.y4f{bottom:425.770350px;}
.yb3{bottom:425.907600px;}
.yd8{bottom:425.912100px;}
.y107{bottom:427.790550px;}
.y12f{bottom:434.121900px;}
.y7a{bottom:434.320350px;}
.y171{bottom:440.263500px;}
.y4e{bottom:443.770350px;}
.yb2{bottom:443.907600px;}
.yd7{bottom:443.912100px;}
.y12e{bottom:449.121900px;}
.y1a{bottom:449.812950px;}
.y79{bottom:450.568350px;}
.y170{bottom:455.263500px;}
.y101{bottom:458.594850px;}
.y4d{bottom:461.770350px;}
.yb1{bottom:461.907600px;}
.yd6{bottom:461.912100px;}
.y12d{bottom:464.121900px;}
.y78{bottom:466.816350px;}
.y19{bottom:467.812950px;}
.y16f{bottom:470.263500px;}
.y4c{bottom:479.770350px;}
.yb0{bottom:479.907600px;}
.yd5{bottom:479.912100px;}
.y77{bottom:483.064350px;}
.y16e{bottom:485.263500px;}
.y18{bottom:485.812950px;}
.yf1{bottom:493.066050px;}
.y12c{bottom:497.230350px;}
.y4b{bottom:497.770350px;}
.yaf{bottom:497.907600px;}
.yd4{bottom:497.912100px;}
.y76{bottom:499.312350px;}
.y16d{bottom:500.263500px;}
.y17{bottom:503.812950px;}
.y16c{bottom:515.263500px;}
.y75{bottom:515.560350px;}
.y4a{bottom:515.770350px;}
.yae{bottom:515.907600px;}
.yd3{bottom:515.912100px;}
.y16{bottom:521.812950px;}
.y16b{bottom:530.263500px;}
.y74{bottom:531.808350px;}
.y49{bottom:533.770350px;}
.yad{bottom:533.907600px;}
.yd2{bottom:533.922600px;}
.y15{bottom:539.812950px;}
.y16a{bottom:545.263500px;}
.y73{bottom:548.060400px;}
.y48{bottom:551.770350px;}
.yac{bottom:551.907600px;}
.yd1{bottom:551.922600px;}
.y14{bottom:557.812950px;}
.y169{bottom:560.263500px;}
.y72{bottom:564.320100px;}
.y12b{bottom:569.365350px;}
.y47{bottom:569.770350px;}
.yab{bottom:569.907600px;}
.yd0{bottom:569.922600px;}
.y168{bottom:575.263500px;}
.y13{bottom:575.812950px;}
.y71{bottom:580.568100px;}
.y46{bottom:587.770350px;}
.yaa{bottom:587.907600px;}
.ycf{bottom:587.922600px;}
.y167{bottom:590.263500px;}
.y70{bottom:596.816100px;}
.y166{bottom:605.263500px;}
.y12a{bottom:605.365350px;}
.y45{bottom:605.770350px;}
.ya9{bottom:605.907600px;}
.yce{bottom:605.922600px;}
.yf8{bottom:616.670250px;}
.y165{bottom:620.263500px;}
.y12{bottom:620.967300px;}
.y44{bottom:623.770350px;}
.ya8{bottom:623.907600px;}
.ycd{bottom:623.922600px;}
.y6f{bottom:625.820100px;}
.y11{bottom:633.418050px;}
.y164{bottom:635.263500px;}
.y43{bottom:641.770350px;}
.ya7{bottom:641.907600px;}
.ycc{bottom:641.922600px;}
.y6e{bottom:642.320100px;}
.y10{bottom:648.464850px;}
.y163{bottom:650.263500px;}
.y42{bottom:659.770350px;}
.ya6{bottom:659.907600px;}
.ycb{bottom:659.922600px;}
.y162{bottom:665.263500px;}
.y6d{bottom:674.711400px;}
.y41{bottom:677.770350px;}
.ya5{bottom:677.907600px;}
.yca{bottom:677.922600px;}
.y161{bottom:680.263500px;}
.yf{bottom:680.694150px;}
.ye{bottom:694.194150px;}
.y6c{bottom:694.211400px;}
.y160{bottom:695.263500px;}
.y129{bottom:695.365350px;}
.y40{bottom:695.770350px;}
.ya4{bottom:695.907600px;}
.yc9{bottom:695.922600px;}
.yd{bottom:707.694150px;}
.y15f{bottom:710.263500px;}
.y3f{bottom:713.770350px;}
.ya3{bottom:713.907600px;}
.yc8{bottom:713.922600px;}
.yc{bottom:721.194150px;}
.y15e{bottom:725.263500px;}
.y3e{bottom:731.770350px;}
.ya2{bottom:731.907600px;}
.yc7{bottom:731.922600px;}
.yb{bottom:734.694150px;}
.y91{bottom:736.350150px;}
.y15d{bottom:740.263500px;}
.ya{bottom:748.194150px;}
.y128{bottom:749.365350px;}
.y3d{bottom:749.770350px;}
.ya1{bottom:749.907600px;}
.yc6{bottom:749.922600px;}
.y90{bottom:752.094150px;}
.y15c{bottom:755.263500px;}
.y3c{bottom:767.770350px;}
.ya0{bottom:767.907600px;}
.yc5{bottom:767.922600px;}
.y15b{bottom:770.263500px;}
.yfd{bottom:776.570850px;}
.y9{bottom:778.480800px;}
.yf0{bottom:781.774050px;}
.y15a{bottom:785.263500px;}
.y3b{bottom:785.770350px;}
.y9f{bottom:785.907600px;}
.yc4{bottom:785.922600px;}
.yfc{bottom:792.314850px;}
.y159{bottom:800.263500px;}
.y3a{bottom:803.770350px;}
.y9e{bottom:803.907600px;}
.yc3{bottom:803.922600px;}
.y158{bottom:815.263500px;}
.y39{bottom:821.770350px;}
.y9d{bottom:821.907600px;}
.yc2{bottom:821.922600px;}
.y8{bottom:824.653650px;}
.y100{bottom:825.542850px;}
.y157{bottom:830.263500px;}
.y38{bottom:839.770350px;}
.y9c{bottom:839.907600px;}
.yc1{bottom:839.922600px;}
.yf7{bottom:842.558250px;}
.y156{bottom:845.263500px;}
.y37{bottom:857.770350px;}
.y9b{bottom:857.907600px;}
.yc0{bottom:857.922600px;}
.y155{bottom:860.263500px;}
.y7{bottom:861.114450px;}
.y154{bottom:875.263500px;}
.y36{bottom:875.770350px;}
.y9a{bottom:875.907600px;}
.ybf{bottom:875.922600px;}
.y153{bottom:890.263500px;}
.y35{bottom:893.770350px;}
.y99{bottom:893.907600px;}
.ybe{bottom:893.922600px;}
.y6{bottom:897.575250px;}
.y152{bottom:905.263500px;}
.y127{bottom:911.365350px;}
.y34{bottom:911.770350px;}
.y98{bottom:911.907600px;}
.ybd{bottom:911.922600px;}
.y151{bottom:920.263500px;}
.y33{bottom:929.770350px;}
.y106{bottom:929.772600px;}
.y97{bottom:929.907600px;}
.y5{bottom:934.036050px;}
.y150{bottom:935.263500px;}
.ybc{bottom:947.517600px;}
.y32{bottom:947.770350px;}
.y105{bottom:947.772600px;}
.y96{bottom:947.907600px;}
.y14f{bottom:950.263500px;}
.y14e{bottom:965.263500px;}
.y31{bottom:965.770350px;}
.y104{bottom:965.772600px;}
.y95{bottom:965.907600px;}
.y4{bottom:970.496850px;}
.y14d{bottom:980.263500px;}
.y30{bottom:983.770350px;}
.ybb{bottom:983.772600px;}
.y14c{bottom:995.263500px;}
.y94{bottom:1001.502600px;}
.y2f{bottom:1001.770350px;}
.yba{bottom:1001.772600px;}
.y3{bottom:1006.926000px;}
.y14b{bottom:1010.263500px;}
.y2e{bottom:1019.770350px;}
.yb9{bottom:1019.772600px;}
.y14a{bottom:1025.263500px;}
.y93{bottom:1037.367600px;}
.y2d{bottom:1037.770350px;}
.yb8{bottom:1037.772600px;}
.y149{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y148{bottom:1132.413900px;}
.y6b{bottom:1132.418700px;}
.y103{bottom:1132.418850px;}
.y92{bottom:1132.422150px;}
.y18a{bottom:1132.423500px;}
.y11b{bottom:1132.426500px;}
.yfb{bottom:1132.430250px;}
.y118{bottom:1132.439550px;}
.ye9{bottom:1132.443150px;}
.yf3{bottom:1132.450050px;}
.y2b{bottom:1136.089500px;}
.y2a{bottom:1150.492500px;}
.h7{height:17.035840px;}
.h6{height:19.683105px;}
.h16{height:20.010937px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.805176px;}
.h11{height:33.328125px;}
.h10{height:33.351562px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.h15{height:35.824537px;}
.h14{height:35.840137px;}
.h12{height:35.919938px;}
.h13{height:35.951138px;}
.hd{height:41.689453px;}
.ha{height:43.681641px;}
.hb{height:43.702434px;}
.h9{height:43.740234px;}
.h5{height:49.139234px;}
.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;}
.x9{left:76.535400px;}
.x7{left:96.094500px;}
.x1{left:97.795200px;}
.x10{left:99.921300px;}
.x3d{left:102.047400px;}
.x1b{left:105.011400px;}
.x3{left:106.299150px;}
.xa{left:110.540400px;}
.x20{left:122.443350px;}
.x5{left:131.816400px;}
.xb{left:144.695400px;}
.x23{left:202.811400px;}
.x39{left:211.375350px;}
.x4{left:212.876400px;}
.x25{left:220.137450px;}
.x18{left:232.365300px;}
.x27{left:239.419350px;}
.x2c{left:246.247350px;}
.x26{left:289.243350px;}
.x1c{left:329.939400px;}
.x1d{left:334.619400px;}
.x29{left:347.059350px;}
.x2a{left:348.103350px;}
.x28{left:358.387350px;}
.x11{left:360.597300px;}
.x16{left:366.927300px;}
.x24{left:437.939400px;}
.x31{left:447.091350px;}
.x8{left:455.041500px;}
.xc{left:457.055400px;}
.x2b{left:458.863350px;}
.x22{left:461.323350px;}
.x21{left:463.447350px;}
.x19{left:478.380300px;}
.x6{left:480.476400px;}
.x3e{left:482.603400px;}
.x12{left:485.421300px;}
.xd{left:491.075400px;}
.x3b{left:503.858400px;}
.x1a{left:512.400300px;}
.x34{left:550.867350px;}
.x1e{left:556.571400px;}
.x1f{left:558.275400px;}
.x2d{left:561.379350px;}
.x33{left:564.367350px;}
.x3a{left:596.097600px;}
.x37{left:642.643350px;}
.x2f{left:651.679350px;}
.x2e{left:656.395350px;}
.x36{left:659.143350px;}
.xf{left:663.492300px;}
.x13{left:678.489300px;}
.x2{left:693.365400px;}
.x38{left:721.715400px;}
.xe{left:728.391600px;}
.x14{left:739.869300px;}
.x3c{left:743.882400px;}
.x17{left:749.645400px;}
.x35{left:750.955350px;}
.x30{left:754.195350px;}
.x32{left:761.467350px;}
.x15{left:763.521300px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v3{vertical-align:-11.899733pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:14.141333pt;}
.v1{vertical-align:19.217600pt;}
.ls34{letter-spacing:-6.880000pt;}
.ls58{letter-spacing:-6.773333pt;}
.ls57{letter-spacing:-6.613333pt;}
.ls4e{letter-spacing:-6.560000pt;}
.ls3a{letter-spacing:-6.400000pt;}
.ls35{letter-spacing:-6.293333pt;}
.ls62{letter-spacing:-6.240000pt;}
.ls12{letter-spacing:-6.026667pt;}
.ls64{letter-spacing:-5.920000pt;}
.ls56{letter-spacing:-5.760000pt;}
.ls3b{letter-spacing:-5.706667pt;}
.ls63{letter-spacing:-5.493333pt;}
.ls4d{letter-spacing:-5.440000pt;}
.ls6e{letter-spacing:-5.386667pt;}
.ls4f{letter-spacing:-4.586667pt;}
.ls91{letter-spacing:-2.346667pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls90{letter-spacing:-0.682667pt;}
.ls11{letter-spacing:-0.450133pt;}
.ls5c{letter-spacing:-0.341333pt;}
.ls54{letter-spacing:-0.266667pt;}
.ls37{letter-spacing:-0.160000pt;}
.ls8f{letter-spacing:-0.128000pt;}
.ls36{letter-spacing:-0.106667pt;}
.ls38{letter-spacing:-0.053333pt;}
.ls6f{letter-spacing:-0.042667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003200pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004800pt;}
.ls88{letter-spacing:0.042667pt;}
.ls7{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.061333pt;}
.ls70{letter-spacing:0.085333pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls71{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls83{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls7c{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.266667pt;}
.ls3e{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5f{letter-spacing:0.341333pt;}
.ls8{letter-spacing:0.373333pt;}
.ls5b{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls81{letter-spacing:0.469333pt;}
.ls2a{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls59{letter-spacing:0.554667pt;}
.lse{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.640000pt;}
.ls73{letter-spacing:0.682667pt;}
.lsa{letter-spacing:0.693333pt;}
.ls5a{letter-spacing:0.725333pt;}
.ls16{letter-spacing:0.746667pt;}
.lsb{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.853333pt;}
.ls79{letter-spacing:0.896000pt;}
.ls17{letter-spacing:0.906667pt;}
.ls94{letter-spacing:0.938667pt;}
.ls53{letter-spacing:0.960000pt;}
.ls7e{letter-spacing:0.981333pt;}
.ls22{letter-spacing:1.013333pt;}
.ls74{letter-spacing:1.024000pt;}
.ls1c{letter-spacing:1.066667pt;}
.ls6a{letter-spacing:1.109333pt;}
.ls29{letter-spacing:1.120000pt;}
.ls87{letter-spacing:1.152000pt;}
.ls23{letter-spacing:1.173333pt;}
.ls3f{letter-spacing:1.226667pt;}
.ls93{letter-spacing:1.237333pt;}
.ls32{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:1.333333pt;}
.ls72{letter-spacing:1.365333pt;}
.ls2e{letter-spacing:1.386667pt;}
.ls75{letter-spacing:1.408000pt;}
.ls30{letter-spacing:1.440000pt;}
.ls6d{letter-spacing:1.450667pt;}
.ls2f{letter-spacing:1.493333pt;}
.ls7b{letter-spacing:1.536000pt;}
.ls48{letter-spacing:1.546667pt;}
.ls76{letter-spacing:1.578667pt;}
.ls6{letter-spacing:1.600000pt;}
.ls85{letter-spacing:1.621333pt;}
.ls1a{letter-spacing:1.653333pt;}
.ls92{letter-spacing:1.664000pt;}
.ls1f{letter-spacing:1.706667pt;}
.ls8a{letter-spacing:1.749333pt;}
.ls25{letter-spacing:1.760000pt;}
.ls80{letter-spacing:1.792000pt;}
.lsd{letter-spacing:1.813333pt;}
.ls4a{letter-spacing:1.866667pt;}
.ls6c{letter-spacing:1.877333pt;}
.ls65{letter-spacing:1.920000pt;}
.ls78{letter-spacing:1.962667pt;}
.ls4c{letter-spacing:1.973333pt;}
.ls6b{letter-spacing:2.005333pt;}
.ls1e{letter-spacing:2.026667pt;}
.ls33{letter-spacing:2.080000pt;}
.ls86{letter-spacing:2.090667pt;}
.ls41{letter-spacing:2.133333pt;}
.ls51{letter-spacing:2.186667pt;}
.ls7a{letter-spacing:2.261333pt;}
.ls21{letter-spacing:2.293333pt;}
.ls5{letter-spacing:2.346667pt;}
.ls77{letter-spacing:2.389333pt;}
.ls44{letter-spacing:2.400000pt;}
.ls67{letter-spacing:2.453333pt;}
.ls68{letter-spacing:2.474667pt;}
.ls2c{letter-spacing:2.506667pt;}
.ls55{letter-spacing:2.560000pt;}
.ls84{letter-spacing:2.602667pt;}
.ls40{letter-spacing:2.613333pt;}
.ls2d{letter-spacing:2.666667pt;}
.ls31{letter-spacing:2.720000pt;}
.ls8d{letter-spacing:2.730667pt;}
.ls26{letter-spacing:2.773333pt;}
.ls7d{letter-spacing:2.858667pt;}
.ls13{letter-spacing:2.880000pt;}
.ls89{letter-spacing:2.944000pt;}
.ls42{letter-spacing:2.986667pt;}
.ls27{letter-spacing:3.093333pt;}
.ls49{letter-spacing:3.200000pt;}
.ls60{letter-spacing:3.253333pt;}
.ls82{letter-spacing:3.285333pt;}
.ls28{letter-spacing:3.306667pt;}
.ls39{letter-spacing:3.360000pt;}
.ls69{letter-spacing:3.370667pt;}
.ls43{letter-spacing:3.466667pt;}
.ls8c{letter-spacing:3.541333pt;}
.ls4b{letter-spacing:3.626667pt;}
.ls8e{letter-spacing:3.712000pt;}
.ls50{letter-spacing:3.786667pt;}
.ls8b{letter-spacing:3.797333pt;}
.ls5d{letter-spacing:3.840000pt;}
.ls52{letter-spacing:4.053333pt;}
.ls46{letter-spacing:4.106667pt;}
.ls5e{letter-spacing:4.373333pt;}
.ls7f{letter-spacing:4.394667pt;}
.ls61{letter-spacing:4.906667pt;}
.ls18{letter-spacing:5.013333pt;}
.ls66{letter-spacing:5.866667pt;}
.ls47{letter-spacing:5.973333pt;}
.ls20{letter-spacing:6.453333pt;}
.ls45{letter-spacing:8.426667pt;}
.ls3d{letter-spacing:72.490667pt;}
.ls3c{letter-spacing:184.083733pt;}
.ws47{word-spacing:-21.760000pt;}
.ws89{word-spacing:-17.706667pt;}
.ws9b{word-spacing:-16.426667pt;}
.ws15{word-spacing:-16.000000pt;}
.ws46{word-spacing:-15.360000pt;}
.ws99{word-spacing:-15.146667pt;}
.ws48{word-spacing:-14.986667pt;}
.ws1{word-spacing:-14.826667pt;}
.ws98{word-spacing:-14.773333pt;}
.ws6b{word-spacing:-14.400000pt;}
.wsbe{word-spacing:-14.378667pt;}
.ws6e{word-spacing:-14.293333pt;}
.ws13{word-spacing:-14.240000pt;}
.ws6f{word-spacing:-14.186667pt;}
.ws5{word-spacing:-14.133333pt;}
.ws9d{word-spacing:-14.037333pt;}
.ws3{word-spacing:-14.026667pt;}
.ws45{word-spacing:-13.973333pt;}
.ws6c{word-spacing:-13.813333pt;}
.ws4{word-spacing:-13.653333pt;}
.ws6d{word-spacing:-13.546667pt;}
.ws9a{word-spacing:-13.333333pt;}
.wsbd{word-spacing:-13.141333pt;}
.wsb5{word-spacing:-12.928000pt;}
.wsb8{word-spacing:-12.800000pt;}
.wsbb{word-spacing:-12.629333pt;}
.wsdf{word-spacing:-12.288000pt;}
.wsb1{word-spacing:-12.245333pt;}
.wsb6{word-spacing:-12.202667pt;}
.wsb0{word-spacing:-12.032000pt;}
.wsbc{word-spacing:-11.946667pt;}
.wsdd{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.861333pt;}
.wsb3{word-spacing:-11.562667pt;}
.ws9c{word-spacing:-11.520000pt;}
.wse0{word-spacing:-11.306667pt;}
.wsba{word-spacing:-11.221333pt;}
.ws2{word-spacing:-11.120000pt;}
.wsb7{word-spacing:-11.093333pt;}
.ws8a{word-spacing:-11.008000pt;}
.ws87{word-spacing:-10.965333pt;}
.wsbf{word-spacing:-10.922667pt;}
.wsde{word-spacing:-10.880000pt;}
.ws3b{word-spacing:-10.666667pt;}
.wsb2{word-spacing:-10.538667pt;}
.wsb4{word-spacing:-9.984000pt;}
.ws0{word-spacing:-9.340800pt;}
.wsb9{word-spacing:-8.320000pt;}
.ws97{word-spacing:-7.946667pt;}
.ws14{word-spacing:-7.040000pt;}
.ws12{word-spacing:-6.453333pt;}
.ws41{word-spacing:-6.400000pt;}
.ws5c{word-spacing:-6.026667pt;}
.ws5b{word-spacing:-4.106667pt;}
.wsd9{word-spacing:-3.797333pt;}
.wsda{word-spacing:-3.541333pt;}
.ws2b{word-spacing:-3.360000pt;}
.wsd0{word-spacing:-3.285333pt;}
.ws8d{word-spacing:-3.200000pt;}
.ws2d{word-spacing:-3.146667pt;}
.wscf{word-spacing:-2.986667pt;}
.wsd6{word-spacing:-2.944000pt;}
.ws75{word-spacing:-2.773333pt;}
.ws5e{word-spacing:-2.613333pt;}
.ws8{word-spacing:-2.565333pt;}
.ws1b{word-spacing:-2.506667pt;}
.wsab{word-spacing:-2.474667pt;}
.ws55{word-spacing:-2.400000pt;}
.ws5a{word-spacing:-2.293333pt;}
.wsc8{word-spacing:-2.261333pt;}
.ws76{word-spacing:-2.186667pt;}
.ws59{word-spacing:-2.080000pt;}
.ws9{word-spacing:-2.072000pt;}
.wsdb{word-spacing:-2.005333pt;}
.ws27{word-spacing:-1.973333pt;}
.wsc6{word-spacing:-1.962667pt;}
.wsae{word-spacing:-1.877333pt;}
.wsa1{word-spacing:-1.813333pt;}
.wscd{word-spacing:-1.792000pt;}
.ws56{word-spacing:-1.760000pt;}
.wsd8{word-spacing:-1.749333pt;}
.ws6a{word-spacing:-1.653333pt;}
.wse4{word-spacing:-1.621333pt;}
.ws1d{word-spacing:-1.600000pt;}
.ws5f{word-spacing:-1.546667pt;}
.wsc9{word-spacing:-1.536000pt;}
.ws37{word-spacing:-1.493333pt;}
.ws4c{word-spacing:-1.440000pt;}
.ws5d{word-spacing:-1.386667pt;}
.wsc4{word-spacing:-1.365333pt;}
.wsa0{word-spacing:-1.333333pt;}
.ws3a{word-spacing:-1.280000pt;}
.ws58{word-spacing:-1.226667pt;}
.ws28{word-spacing:-1.173333pt;}
.wsd4{word-spacing:-1.152000pt;}
.ws38{word-spacing:-1.120000pt;}
.wsac{word-spacing:-1.109333pt;}
.ws35{word-spacing:-1.066667pt;}
.wsca{word-spacing:-1.024000pt;}
.ws64{word-spacing:-1.013333pt;}
.ws77{word-spacing:-0.960000pt;}
.wse2{word-spacing:-0.938667pt;}
.ws1e{word-spacing:-0.906667pt;}
.wsc7{word-spacing:-0.896000pt;}
.ws62{word-spacing:-0.853333pt;}
.ws4e{word-spacing:-0.800000pt;}
.ws43{word-spacing:-0.768000pt;}
.wsa3{word-spacing:-0.746667pt;}
.ws84{word-spacing:-0.725333pt;}
.ws9e{word-spacing:-0.693333pt;}
.ws42{word-spacing:-0.640000pt;}
.ws20{word-spacing:-0.586667pt;}
.ws82{word-spacing:-0.554667pt;}
.ws36{word-spacing:-0.533333pt;}
.ws24{word-spacing:-0.480000pt;}
.ws57{word-spacing:-0.426667pt;}
.ws85{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.373333pt;}
.wsaf{word-spacing:-0.341333pt;}
.wsd{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.266667pt;}
.ws67{word-spacing:-0.213333pt;}
.ws50{word-spacing:-0.160000pt;}
.wsd5{word-spacing:-0.128000pt;}
.ws7e{word-spacing:-0.106667pt;}
.ws2c{word-spacing:-0.053333pt;}
.wscb{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.042667pt;}
.ws1a{word-spacing:0.053333pt;}
.ws60{word-spacing:0.106667pt;}
.ws26{word-spacing:0.160000pt;}
.ws86{word-spacing:0.213333pt;}
.ws52{word-spacing:0.266667pt;}
.ws53{word-spacing:0.320000pt;}
.wse5{word-spacing:0.469333pt;}
.ws11{word-spacing:0.533333pt;}
.ws21{word-spacing:0.640000pt;}
.wsb{word-spacing:0.693333pt;}
.wse3{word-spacing:0.725333pt;}
.wse{word-spacing:0.746667pt;}
.wsd7{word-spacing:0.768000pt;}
.wsad{word-spacing:0.810667pt;}
.ws18{word-spacing:0.853333pt;}
.ws33{word-spacing:0.906667pt;}
.ws4f{word-spacing:0.960000pt;}
.ws88{word-spacing:1.066667pt;}
.ws25{word-spacing:1.120000pt;}
.wsd2{word-spacing:1.152000pt;}
.ws93{word-spacing:1.173333pt;}
.wsaa{word-spacing:1.194667pt;}
.wsd3{word-spacing:1.237333pt;}
.wsc3{word-spacing:1.322667pt;}
.ws51{word-spacing:1.386667pt;}
.ws2f{word-spacing:1.440000pt;}
.ws78{word-spacing:1.493333pt;}
.wsd1{word-spacing:1.621333pt;}
.ws7c{word-spacing:1.653333pt;}
.wsce{word-spacing:1.664000pt;}
.ws80{word-spacing:1.706667pt;}
.ws96{word-spacing:1.834667pt;}
.ws68{word-spacing:1.866667pt;}
.ws90{word-spacing:1.920000pt;}
.ws81{word-spacing:1.962667pt;}
.ws8e{word-spacing:1.973333pt;}
.wsc2{word-spacing:2.005333pt;}
.ws2a{word-spacing:2.026667pt;}
.wsa5{word-spacing:2.080000pt;}
.ws1f{word-spacing:2.133333pt;}
.wscc{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.186667pt;}
.ws17{word-spacing:2.240000pt;}
.wsa7{word-spacing:2.261333pt;}
.ws4d{word-spacing:2.346667pt;}
.wsc0{word-spacing:2.432000pt;}
.ws79{word-spacing:2.453333pt;}
.wsc5{word-spacing:2.816000pt;}
.ws7b{word-spacing:2.826667pt;}
.ws16{word-spacing:2.880000pt;}
.ws1c{word-spacing:2.933333pt;}
.ws4a{word-spacing:2.986667pt;}
.wse1{word-spacing:3.029333pt;}
.ws8f{word-spacing:3.040000pt;}
.ws22{word-spacing:3.093333pt;}
.ws34{word-spacing:3.146667pt;}
.ws19{word-spacing:3.253333pt;}
.wsa2{word-spacing:3.306667pt;}
.ws29{word-spacing:3.360000pt;}
.wsc1{word-spacing:3.370667pt;}
.ws32{word-spacing:3.413333pt;}
.wsa9{word-spacing:3.456000pt;}
.ws94{word-spacing:3.466667pt;}
.ws83{word-spacing:3.498667pt;}
.ws54{word-spacing:3.520000pt;}
.ws44{word-spacing:3.541333pt;}
.ws9f{word-spacing:3.786667pt;}
.ws10{word-spacing:3.946667pt;}
.ws63{word-spacing:4.106667pt;}
.ws61{word-spacing:4.160000pt;}
.ws65{word-spacing:4.320000pt;}
.wsa{word-spacing:4.373333pt;}
.wsdc{word-spacing:4.394667pt;}
.wsc{word-spacing:4.426667pt;}
.ws69{word-spacing:4.586667pt;}
.wsa4{word-spacing:4.853333pt;}
.wsa6{word-spacing:4.906667pt;}
.ws49{word-spacing:5.440000pt;}
.ws92{word-spacing:5.493333pt;}
.ws39{word-spacing:5.706667pt;}
.ws7a{word-spacing:5.760000pt;}
.ws95{word-spacing:5.920000pt;}
.wsf{word-spacing:6.026667pt;}
.ws91{word-spacing:6.240000pt;}
.ws31{word-spacing:6.400000pt;}
.ws66{word-spacing:6.560000pt;}
.ws7d{word-spacing:6.613333pt;}
.ws7f{word-spacing:6.773333pt;}
.ws4b{word-spacing:6.880000pt;}
.ws3f{word-spacing:61.824000pt;}
.ws3e{word-spacing:129.322667pt;}
.ws40{word-spacing:162.986667pt;}
.ws74{word-spacing:217.045333pt;}
.ws72{word-spacing:218.624000pt;}
.ws70{word-spacing:238.378667pt;}
.ws8c{word-spacing:304.170667pt;}
.ws3d{word-spacing:364.373333pt;}
.ws3c{word-spacing:456.746667pt;}
.ws73{word-spacing:498.730667pt;}
.ws71{word-spacing:549.632000pt;}
.ws8b{word-spacing:851.797333pt;}
._d{margin-left:-2576.085333pt;}
._2c{margin-left:-2554.922667pt;}
._2{margin-left:-14.629333pt;}
._7{margin-left:-7.404800pt;}
._3{margin-left:-6.301867pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.328000pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.936000pt;}
._a{width:1.440000pt;}
._4{width:2.566933pt;}
._9{width:3.733333pt;}
._8{width:4.693333pt;}
._b{width:5.973333pt;}
._c{width:7.520000pt;}
._2d{width:8.480000pt;}
._2e{width:10.453333pt;}
._11{width:72.490667pt;}
._26{width:114.264533pt;}
._2f{width:128.170667pt;}
._1d{width:139.989333pt;}
._24{width:157.517867pt;}
._22{width:174.115200pt;}
._36{width:175.048533pt;}
._37{width:182.173867pt;}
._31{width:203.520000pt;}
._38{width:214.216533pt;}
._17{width:220.360533pt;}
._33{width:227.712000pt;}
._16{width:234.525867pt;}
._18{width:236.957867pt;}
._29{width:263.816533pt;}
._3a{width:341.107200pt;}
._1f{width:347.677867pt;}
._3b{width:356.608000pt;}
._28{width:362.909867pt;}
._f{width:374.229333pt;}
._15{width:432.597333pt;}
._39{width:444.787200pt;}
._10{width:484.778667pt;}
._2a{width:486.515200pt;}
._14{width:503.680000pt;}
._35{width:561.096533pt;}
._13{width:622.037333pt;}
._1a{width:628.138667pt;}
._12{width:629.680000pt;}
._1e{width:632.917333pt;}
._21{width:674.090667pt;}
._1b{width:680.362667pt;}
._34{width:702.195200pt;}
._19{width:748.714667pt;}
._e{width:757.376000pt;}
._25{width:772.394667pt;}
._23{width:775.936000pt;}
._20{width:810.282667pt;}
._1c{width:827.861333pt;}
._32{width:905.349333pt;}
._27{width:911.877333pt;}
._30{width:950.741333pt;}
._2b{width:983.253333pt;}
._3d{width:1129.928533pt;}
._3c{width:1199.816533pt;}
.fs7{font-size:20.800000pt;}
.fs5{font-size:24.000000pt;}
.fsb{font-size:25.600000pt;}
.fs4{font-size:33.600000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2c{bottom:42.468667pt;}
.y147{bottom:65.886133pt;}
.y189{bottom:71.345333pt;}
.y11a{bottom:73.620000pt;}
.yf6{bottom:74.082000pt;}
.yef{bottom:74.334267pt;}
.y5f{bottom:74.342533pt;}
.y1e{bottom:74.364800pt;}
.y6a{bottom:74.462533pt;}
.yff{bottom:74.850533pt;}
.y8f{bottom:77.987467pt;}
.y146{bottom:79.219467pt;}
.ye8{bottom:82.125467pt;}
.y117{bottom:82.538267pt;}
.y188{bottom:84.678667pt;}
.y119{bottom:87.614667pt;}
.y1d{bottom:87.694800pt;}
.yf5{bottom:88.076667pt;}
.yee{bottom:88.328933pt;}
.yfe{bottom:88.845200pt;}
.y5e{bottom:90.342533pt;}
.y69{bottom:90.462533pt;}
.y145{bottom:92.552800pt;}
.ye7{bottom:96.568133pt;}
.y8e{bottom:97.124533pt;}
.y116{bottom:97.204933pt;}
.y187{bottom:98.012000pt;}
.y1c{bottom:101.024800pt;}
.yf4{bottom:102.071333pt;}
.yed{bottom:102.323600pt;}
.y144{bottom:105.886133pt;}
.y5d{bottom:106.342533pt;}
.y68{bottom:106.462533pt;}
.ye6{bottom:111.010800pt;}
.y186{bottom:111.345333pt;}
.y8d{bottom:111.567200pt;}
.y115{bottom:111.647600pt;}
.yec{bottom:116.318267pt;}
.y102{bottom:117.559867pt;}
.y143{bottom:119.219467pt;}
.y5c{bottom:122.342533pt;}
.y67{bottom:122.462533pt;}
.y185{bottom:124.678667pt;}
.ye5{bottom:125.453467pt;}
.y8c{bottom:126.009867pt;}
.y114{bottom:126.314267pt;}
.yeb{bottom:130.312933pt;}
.y142{bottom:132.552800pt;}
.yf9{bottom:136.652667pt;}
.y126{bottom:137.982533pt;}
.y184{bottom:138.012000pt;}
.y5b{bottom:138.342533pt;}
.y66{bottom:138.462533pt;}
.ye4{bottom:139.896133pt;}
.y8b{bottom:140.473733pt;}
.y113{bottom:140.756933pt;}
.yea{bottom:144.307600pt;}
.y141{bottom:145.886133pt;}
.y183{bottom:151.345333pt;}
.ye3{bottom:154.338800pt;}
.y5a{bottom:154.342533pt;}
.y65{bottom:154.462533pt;}
.y8a{bottom:154.916400pt;}
.y112{bottom:155.423600pt;}
.y140{bottom:159.219467pt;}
.y27{bottom:160.133867pt;}
.y182{bottom:164.678667pt;}
.ye2{bottom:168.781467pt;}
.y89{bottom:169.359067pt;}
.y111{bottom:169.866267pt;}
.y59{bottom:170.342533pt;}
.y64{bottom:170.462533pt;}
.y13f{bottom:172.552800pt;}
.y26{bottom:176.133867pt;}
.yf2{bottom:177.491600pt;}
.y181{bottom:178.012000pt;}
.ye1{bottom:183.224133pt;}
.y88{bottom:183.801733pt;}
.y110{bottom:184.532933pt;}
.y13e{bottom:185.886133pt;}
.y125{bottom:186.342533pt;}
.y63{bottom:186.462533pt;}
.y180{bottom:191.345333pt;}
.y25{bottom:192.133867pt;}
.y87{bottom:198.244400pt;}
.y13d{bottom:199.219467pt;}
.y58{bottom:201.982533pt;}
.y124{bottom:202.342533pt;}
.y62{bottom:202.462533pt;}
.y17f{bottom:204.678667pt;}
.y24{bottom:208.133867pt;}
.y10f{bottom:210.314267pt;}
.ye0{bottom:211.234800pt;}
.y13c{bottom:212.552800pt;}
.y86{bottom:212.687067pt;}
.y17e{bottom:218.012000pt;}
.y123{bottom:218.342533pt;}
.y61{bottom:218.462533pt;}
.y23{bottom:224.133867pt;}
.y10e{bottom:224.980933pt;}
.y13b{bottom:225.886133pt;}
.y85{bottom:227.161467pt;}
.y17d{bottom:231.345333pt;}
.y122{bottom:234.342533pt;}
.y60{bottom:234.462533pt;}
.y13a{bottom:239.219467pt;}
.y10d{bottom:239.647600pt;}
.y22{bottom:240.133867pt;}
.y84{bottom:241.604133pt;}
.ydf{bottom:242.255200pt;}
.y17c{bottom:244.678667pt;}
.y121{bottom:250.342533pt;}
.y57{bottom:250.462533pt;}
.y139{bottom:252.552800pt;}
.y83{bottom:256.046800pt;}
.y21{bottom:256.133867pt;}
.y17b{bottom:258.012000pt;}
.yde{bottom:259.588533pt;}
.y10c{bottom:265.428933pt;}
.y138{bottom:265.886133pt;}
.y120{bottom:266.342533pt;}
.y56{bottom:266.462533pt;}
.y82{bottom:270.489467pt;}
.y17a{bottom:271.345333pt;}
.y20{bottom:272.133867pt;}
.ydd{bottom:276.921867pt;}
.y137{bottom:279.219467pt;}
.y11f{bottom:282.342533pt;}
.y55{bottom:282.462533pt;}
.y179{bottom:284.678667pt;}
.y81{bottom:284.932133pt;}
.y29{bottom:288.133867pt;}
.y136{bottom:292.552800pt;}
.y10b{bottom:294.221067pt;}
.y178{bottom:298.012000pt;}
.y11e{bottom:298.342533pt;}
.y54{bottom:298.462533pt;}
.y80{bottom:299.374800pt;}
.y1f{bottom:303.773867pt;}
.y28{bottom:304.133867pt;}
.y135{bottom:305.886133pt;}
.y177{bottom:311.345333pt;}
.y10a{bottom:311.554400pt;}
.y7f{bottom:313.817467pt;}
.y11d{bottom:314.342533pt;}
.y53{bottom:314.462533pt;}
.yb7{bottom:314.584533pt;}
.ydc{bottom:314.588533pt;}
.y134{bottom:319.219467pt;}
.y176{bottom:324.678667pt;}
.y7e{bottom:328.260133pt;}
.y109{bottom:328.887733pt;}
.y52{bottom:330.462533pt;}
.yb6{bottom:330.584533pt;}
.ydb{bottom:330.588533pt;}
.y133{bottom:332.552800pt;}
.y175{bottom:338.012000pt;}
.yfa{bottom:338.860667pt;}
.y7d{bottom:342.702800pt;}
.y132{bottom:345.886133pt;}
.y11c{bottom:345.982533pt;}
.y51{bottom:346.462533pt;}
.yb5{bottom:346.584533pt;}
.yda{bottom:346.588533pt;}
.y174{bottom:351.345333pt;}
.y7c{bottom:357.149067pt;}
.y131{bottom:359.219467pt;}
.y50{bottom:362.462533pt;}
.yb4{bottom:362.584533pt;}
.yd9{bottom:362.588533pt;}
.y173{bottom:364.678667pt;}
.y108{bottom:366.263600pt;}
.y7b{bottom:371.619867pt;}
.y130{bottom:372.552800pt;}
.y1b{bottom:375.527067pt;}
.y172{bottom:378.012000pt;}
.y4f{bottom:378.462533pt;}
.yb3{bottom:378.584533pt;}
.yd8{bottom:378.588533pt;}
.y107{bottom:380.258267pt;}
.y12f{bottom:385.886133pt;}
.y7a{bottom:386.062533pt;}
.y171{bottom:391.345333pt;}
.y4e{bottom:394.462533pt;}
.yb2{bottom:394.584533pt;}
.yd7{bottom:394.588533pt;}
.y12e{bottom:399.219467pt;}
.y1a{bottom:399.833733pt;}
.y79{bottom:400.505200pt;}
.y170{bottom:404.678667pt;}
.y101{bottom:407.639867pt;}
.y4d{bottom:410.462533pt;}
.yb1{bottom:410.584533pt;}
.yd6{bottom:410.588533pt;}
.y12d{bottom:412.552800pt;}
.y78{bottom:414.947867pt;}
.y19{bottom:415.833733pt;}
.y16f{bottom:418.012000pt;}
.y4c{bottom:426.462533pt;}
.yb0{bottom:426.584533pt;}
.yd5{bottom:426.588533pt;}
.y77{bottom:429.390533pt;}
.y16e{bottom:431.345333pt;}
.y18{bottom:431.833733pt;}
.yf1{bottom:438.280933pt;}
.y12c{bottom:441.982533pt;}
.y4b{bottom:442.462533pt;}
.yaf{bottom:442.584533pt;}
.yd4{bottom:442.588533pt;}
.y76{bottom:443.833200pt;}
.y16d{bottom:444.678667pt;}
.y17{bottom:447.833733pt;}
.y16c{bottom:458.012000pt;}
.y75{bottom:458.275867pt;}
.y4a{bottom:458.462533pt;}
.yae{bottom:458.584533pt;}
.yd3{bottom:458.588533pt;}
.y16{bottom:463.833733pt;}
.y16b{bottom:471.345333pt;}
.y74{bottom:472.718533pt;}
.y49{bottom:474.462533pt;}
.yad{bottom:474.584533pt;}
.yd2{bottom:474.597867pt;}
.y15{bottom:479.833733pt;}
.y16a{bottom:484.678667pt;}
.y73{bottom:487.164800pt;}
.y48{bottom:490.462533pt;}
.yac{bottom:490.584533pt;}
.yd1{bottom:490.597867pt;}
.y14{bottom:495.833733pt;}
.y169{bottom:498.012000pt;}
.y72{bottom:501.617867pt;}
.y12b{bottom:506.102533pt;}
.y47{bottom:506.462533pt;}
.yab{bottom:506.584533pt;}
.yd0{bottom:506.597867pt;}
.y168{bottom:511.345333pt;}
.y13{bottom:511.833733pt;}
.y71{bottom:516.060533pt;}
.y46{bottom:522.462533pt;}
.yaa{bottom:522.584533pt;}
.ycf{bottom:522.597867pt;}
.y167{bottom:524.678667pt;}
.y70{bottom:530.503200pt;}
.y166{bottom:538.012000pt;}
.y12a{bottom:538.102533pt;}
.y45{bottom:538.462533pt;}
.ya9{bottom:538.584533pt;}
.yce{bottom:538.597867pt;}
.yf8{bottom:548.151333pt;}
.y165{bottom:551.345333pt;}
.y12{bottom:551.970933pt;}
.y44{bottom:554.462533pt;}
.ya8{bottom:554.584533pt;}
.ycd{bottom:554.597867pt;}
.y6f{bottom:556.284533pt;}
.y11{bottom:563.038267pt;}
.y164{bottom:564.678667pt;}
.y43{bottom:570.462533pt;}
.ya7{bottom:570.584533pt;}
.ycc{bottom:570.597867pt;}
.y6e{bottom:570.951200pt;}
.y10{bottom:576.413200pt;}
.y163{bottom:578.012000pt;}
.y42{bottom:586.462533pt;}
.ya6{bottom:586.584533pt;}
.ycb{bottom:586.597867pt;}
.y162{bottom:591.345333pt;}
.y6d{bottom:599.743467pt;}
.y41{bottom:602.462533pt;}
.ya5{bottom:602.584533pt;}
.yca{bottom:602.597867pt;}
.y161{bottom:604.678667pt;}
.yf{bottom:605.061467pt;}
.ye{bottom:617.061467pt;}
.y6c{bottom:617.076800pt;}
.y160{bottom:618.012000pt;}
.y129{bottom:618.102533pt;}
.y40{bottom:618.462533pt;}
.ya4{bottom:618.584533pt;}
.yc9{bottom:618.597867pt;}
.yd{bottom:629.061467pt;}
.y15f{bottom:631.345333pt;}
.y3f{bottom:634.462533pt;}
.ya3{bottom:634.584533pt;}
.yc8{bottom:634.597867pt;}
.yc{bottom:641.061467pt;}
.y15e{bottom:644.678667pt;}
.y3e{bottom:650.462533pt;}
.ya2{bottom:650.584533pt;}
.yc7{bottom:650.597867pt;}
.yb{bottom:653.061467pt;}
.y91{bottom:654.533467pt;}
.y15d{bottom:658.012000pt;}
.ya{bottom:665.061467pt;}
.y128{bottom:666.102533pt;}
.y3d{bottom:666.462533pt;}
.ya1{bottom:666.584533pt;}
.yc6{bottom:666.597867pt;}
.y90{bottom:668.528133pt;}
.y15c{bottom:671.345333pt;}
.y3c{bottom:682.462533pt;}
.ya0{bottom:682.584533pt;}
.yc5{bottom:682.597867pt;}
.y15b{bottom:684.678667pt;}
.yfd{bottom:690.285200pt;}
.y9{bottom:691.982933pt;}
.yf0{bottom:694.910267pt;}
.y15a{bottom:698.012000pt;}
.y3b{bottom:698.462533pt;}
.y9f{bottom:698.584533pt;}
.yc4{bottom:698.597867pt;}
.yfc{bottom:704.279867pt;}
.y159{bottom:711.345333pt;}
.y3a{bottom:714.462533pt;}
.y9e{bottom:714.584533pt;}
.yc3{bottom:714.597867pt;}
.y158{bottom:724.678667pt;}
.y39{bottom:730.462533pt;}
.y9d{bottom:730.584533pt;}
.yc2{bottom:730.597867pt;}
.y8{bottom:733.025467pt;}
.y100{bottom:733.815867pt;}
.y157{bottom:738.012000pt;}
.y38{bottom:746.462533pt;}
.y9c{bottom:746.584533pt;}
.yc1{bottom:746.597867pt;}
.yf7{bottom:748.940667pt;}
.y156{bottom:751.345333pt;}
.y37{bottom:762.462533pt;}
.y9b{bottom:762.584533pt;}
.yc0{bottom:762.597867pt;}
.y155{bottom:764.678667pt;}
.y7{bottom:765.435067pt;}
.y154{bottom:778.012000pt;}
.y36{bottom:778.462533pt;}
.y9a{bottom:778.584533pt;}
.ybf{bottom:778.597867pt;}
.y153{bottom:791.345333pt;}
.y35{bottom:794.462533pt;}
.y99{bottom:794.584533pt;}
.ybe{bottom:794.597867pt;}
.y6{bottom:797.844667pt;}
.y152{bottom:804.678667pt;}
.y127{bottom:810.102533pt;}
.y34{bottom:810.462533pt;}
.y98{bottom:810.584533pt;}
.ybd{bottom:810.597867pt;}
.y151{bottom:818.012000pt;}
.y33{bottom:826.462533pt;}
.y106{bottom:826.464533pt;}
.y97{bottom:826.584533pt;}
.y5{bottom:830.254267pt;}
.y150{bottom:831.345333pt;}
.ybc{bottom:842.237867pt;}
.y32{bottom:842.462533pt;}
.y105{bottom:842.464533pt;}
.y96{bottom:842.584533pt;}
.y14f{bottom:844.678667pt;}
.y14e{bottom:858.012000pt;}
.y31{bottom:858.462533pt;}
.y104{bottom:858.464533pt;}
.y95{bottom:858.584533pt;}
.y4{bottom:862.663867pt;}
.y14d{bottom:871.345333pt;}
.y30{bottom:874.462533pt;}
.ybb{bottom:874.464533pt;}
.y14c{bottom:884.678667pt;}
.y94{bottom:890.224533pt;}
.y2f{bottom:890.462533pt;}
.yba{bottom:890.464533pt;}
.y3{bottom:895.045333pt;}
.y14b{bottom:898.012000pt;}
.y2e{bottom:906.462533pt;}
.yb9{bottom:906.464533pt;}
.y14a{bottom:911.345333pt;}
.y93{bottom:922.104533pt;}
.y2d{bottom:922.462533pt;}
.yb8{bottom:922.464533pt;}
.y149{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y148{bottom:1006.590133pt;}
.y6b{bottom:1006.594400pt;}
.y103{bottom:1006.594533pt;}
.y92{bottom:1006.597467pt;}
.y18a{bottom:1006.598667pt;}
.y11b{bottom:1006.601333pt;}
.yfb{bottom:1006.604667pt;}
.y118{bottom:1006.612933pt;}
.ye9{bottom:1006.616133pt;}
.yf3{bottom:1006.622267pt;}
.y2b{bottom:1009.857333pt;}
.y2a{bottom:1022.660000pt;}
.h7{height:15.142969pt;}
.h6{height:17.496094pt;}
.h16{height:17.787500pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.160156pt;}
.h11{height:29.625000pt;}
.h10{height:29.645833pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.h15{height:31.844033pt;}
.h14{height:31.857900pt;}
.h12{height:31.928833pt;}
.h13{height:31.956567pt;}
.hd{height:37.057292pt;}
.ha{height:38.828125pt;}
.hb{height:38.846608pt;}
.h9{height:38.880208pt;}
.h5{height:43.679319pt;}
.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;}
.x9{left:68.031467pt;}
.x7{left:85.417333pt;}
.x1{left:86.929067pt;}
.x10{left:88.818933pt;}
.x3d{left:90.708800pt;}
.x1b{left:93.343467pt;}
.x3{left:94.488133pt;}
.xa{left:98.258133pt;}
.x20{left:108.838533pt;}
.x5{left:117.170133pt;}
.xb{left:128.618133pt;}
.x23{left:180.276800pt;}
.x39{left:187.889200pt;}
.x4{left:189.223467pt;}
.x25{left:195.677733pt;}
.x18{left:206.546933pt;}
.x27{left:212.817200pt;}
.x2c{left:218.886533pt;}
.x26{left:257.105200pt;}
.x1c{left:293.279467pt;}
.x1d{left:297.439467pt;}
.x29{left:308.497200pt;}
.x2a{left:309.425200pt;}
.x28{left:318.566533pt;}
.x11{left:320.530933pt;}
.x16{left:326.157600pt;}
.x24{left:389.279467pt;}
.x31{left:397.414533pt;}
.x8{left:404.481333pt;}
.xc{left:406.271467pt;}
.x2b{left:407.878533pt;}
.x22{left:410.065200pt;}
.x21{left:411.953200pt;}
.x19{left:425.226933pt;}
.x6{left:427.090133pt;}
.x3e{left:428.980800pt;}
.x12{left:431.485600pt;}
.xd{left:436.511467pt;}
.x3b{left:447.874133pt;}
.x1a{left:455.466933pt;}
.x34{left:489.659867pt;}
.x1e{left:494.730133pt;}
.x1f{left:496.244800pt;}
.x2d{left:499.003867pt;}
.x33{left:501.659867pt;}
.x3a{left:529.864533pt;}
.x37{left:571.238533pt;}
.x2f{left:579.270533pt;}
.x2e{left:583.462533pt;}
.x36{left:585.905200pt;}
.xf{left:589.770933pt;}
.x13{left:603.101600pt;}
.x2{left:616.324800pt;}
.x38{left:641.524800pt;}
.xe{left:647.459200pt;}
.x14{left:657.661600pt;}
.x3c{left:661.228800pt;}
.x17{left:666.351467pt;}
.x35{left:667.515867pt;}
.x30{left:670.395867pt;}
.x32{left:676.859867pt;}
.x15{left:678.685600pt;}
}




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