
    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_81b2c0200bcd8f772e918222.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_05f4a13b6a95b2ba0939211f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_50b7eaa1024527d81a6f6bc3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4c62b4a36442c4bb520f91af.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_2fd411db3e761a8d97431051.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_65f74fd23f2534c5e9f2f544.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d233679098d44b088410dfcf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.054800px;}
.ls6c{letter-spacing:-4.440000px;}
.lsa0{letter-spacing:-1.140000px;}
.ls5a{letter-spacing:-1.134000px;}
.ls59{letter-spacing:-1.080000px;}
.ls64{letter-spacing:-1.020000px;}
.lsb{letter-spacing:-0.960000px;}
.ls91{letter-spacing:-0.918000px;}
.ls5d{letter-spacing:-0.900000px;}
.ls40{letter-spacing:-0.864000px;}
.ls2c{letter-spacing:-0.840000px;}
.ls8b{letter-spacing:-0.780000px;}
.ls42{letter-spacing:-0.756000px;}
.ls2a{letter-spacing:-0.720000px;}
.ls3f{letter-spacing:-0.702000px;}
.ls29{letter-spacing:-0.660000px;}
.ls58{letter-spacing:-0.648000px;}
.ls2d{letter-spacing:-0.600000px;}
.ls43{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.540000px;}
.ls93{letter-spacing:-0.486000px;}
.ls63{letter-spacing:-0.480000px;}
.ls5b{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.420000px;}
.lsb4{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.360000px;}
.ls92{letter-spacing:-0.324000px;}
.lsa{letter-spacing:-0.300000px;}
.ls44{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.240000px;}
.lsb3{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.ls41{letter-spacing:-0.162000px;}
.ls2b{letter-spacing:-0.120000px;}
.ls5c{letter-spacing:-0.108000px;}
.ls62{letter-spacing:-0.060000px;}
.ls94{letter-spacing:-0.054000px;}
.ls5{letter-spacing:0.000000px;}
.ls89{letter-spacing:0.007800px;}
.ls9d{letter-spacing:0.024600px;}
.ls1f{letter-spacing:0.060000px;}
.ls4c{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.120000px;}
.ls7f{letter-spacing:0.142200px;}
.ls2{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.216000px;}
.ls2f{letter-spacing:0.240000px;}
.ls36{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.300000px;}
.ls37{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.378000px;}
.ls80{letter-spacing:0.411600px;}
.ls4{letter-spacing:0.420000px;}
.ls4d{letter-spacing:0.432000px;}
.ls96{letter-spacing:0.450600px;}
.ls71{letter-spacing:0.462000px;}
.ls5e{letter-spacing:0.480000px;}
.ls45{letter-spacing:0.486000px;}
.ls3{letter-spacing:0.540000px;}
.ls9e{letter-spacing:0.543600px;}
.ls51{letter-spacing:0.594000px;}
.ls1d{letter-spacing:0.600000px;}
.ls4f{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.660000px;}
.ls4e{letter-spacing:0.702000px;}
.ls6e{letter-spacing:0.720000px;}
.ls65{letter-spacing:0.734400px;}
.ls76{letter-spacing:0.750000px;}
.ls20{letter-spacing:0.753000px;}
.ls3b{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.780000px;}
.ls8f{letter-spacing:0.810000px;}
.ls14{letter-spacing:0.840000px;}
.ls34{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.960000px;}
.ls48{letter-spacing:0.972000px;}
.ls78{letter-spacing:1.020000px;}
.ls77{letter-spacing:1.027200px;}
.ls12{letter-spacing:1.080000px;}
.ls3d{letter-spacing:1.134000px;}
.ls1e{letter-spacing:1.140000px;}
.ls50{letter-spacing:1.188000px;}
.lsf{letter-spacing:1.200000px;}
.ls38{letter-spacing:1.242000px;}
.lsaf{letter-spacing:1.248000px;}
.ls6a{letter-spacing:1.260000px;}
.ls79{letter-spacing:1.273200px;}
.ls49{letter-spacing:1.296000px;}
.ls24{letter-spacing:1.320000px;}
.ls3a{letter-spacing:1.350000px;}
.ls11{letter-spacing:1.380000px;}
.lsac{letter-spacing:1.386000px;}
.ls5f{letter-spacing:1.440000px;}
.ls70{letter-spacing:1.455600px;}
.ls3c{letter-spacing:1.458000px;}
.ls1c{letter-spacing:1.500000px;}
.lsd{letter-spacing:1.560000px;}
.ls9b{letter-spacing:1.566000px;}
.lsae{letter-spacing:1.609200px;}
.ls26{letter-spacing:1.620000px;}
.ls28{letter-spacing:1.680000px;}
.ls99{letter-spacing:1.728000px;}
.ls1a{letter-spacing:1.740000px;}
.ls47{letter-spacing:1.782000px;}
.ls73{letter-spacing:1.800000px;}
.ls22{letter-spacing:1.860000px;}
.ls17{letter-spacing:1.920000px;}
.ls87{letter-spacing:1.944000px;}
.ls23{letter-spacing:1.980000px;}
.ls30{letter-spacing:2.040000px;}
.ls82{letter-spacing:2.077200px;}
.ls68{letter-spacing:2.100000px;}
.ls88{letter-spacing:2.106000px;}
.ls61{letter-spacing:2.160000px;}
.ls18{letter-spacing:2.220000px;}
.ls4a{letter-spacing:2.268000px;}
.lse{letter-spacing:2.280000px;}
.ls56{letter-spacing:2.330400px;}
.ls35{letter-spacing:2.340000px;}
.ls19{letter-spacing:2.400000px;}
.ls55{letter-spacing:2.460000px;}
.ls46{letter-spacing:2.484000px;}
.ls53{letter-spacing:2.520000px;}
.ls83{letter-spacing:2.580000px;}
.ls9c{letter-spacing:2.592000px;}
.ls6d{letter-spacing:2.640000px;}
.lsb1{letter-spacing:2.646000px;}
.ls85{letter-spacing:2.676000px;}
.ls32{letter-spacing:2.700000px;}
.ls13{letter-spacing:2.760000px;}
.ls7c{letter-spacing:2.820000px;}
.ls8d{letter-spacing:2.830800px;}
.ls54{letter-spacing:2.880000px;}
.ls4b{letter-spacing:2.916000px;}
.ls2e{letter-spacing:2.940000px;}
.ls10{letter-spacing:3.000000px;}
.ls7b{letter-spacing:3.060000px;}
.ls90{letter-spacing:3.078000px;}
.ls25{letter-spacing:3.120000px;}
.lsb0{letter-spacing:3.132000px;}
.ls57{letter-spacing:3.163200px;}
.ls33{letter-spacing:3.180000px;}
.ls97{letter-spacing:3.240000px;}
.ls7d{letter-spacing:3.325200px;}
.ls6b{letter-spacing:3.360000px;}
.ls74{letter-spacing:3.420000px;}
.ls98{letter-spacing:3.480000px;}
.ls84{letter-spacing:3.540000px;}
.ls75{letter-spacing:3.600000px;}
.ls72{letter-spacing:3.617400px;}
.lsb2{letter-spacing:3.672000px;}
.ls9a{letter-spacing:3.726000px;}
.ls86{letter-spacing:3.780000px;}
.ls6f{letter-spacing:3.869400px;}
.lsa9{letter-spacing:3.900000px;}
.ls69{letter-spacing:3.951600px;}
.ls9f{letter-spacing:3.960000px;}
.lsa3{letter-spacing:4.070400px;}
.ls8c{letter-spacing:4.440000px;}
.ls67{letter-spacing:4.560000px;}
.ls7a{letter-spacing:4.680000px;}
.ls8e{letter-spacing:4.920000px;}
.ls60{letter-spacing:4.980000px;}
.ls95{letter-spacing:5.040000px;}
.ls66{letter-spacing:5.100000px;}
.lsa6{letter-spacing:5.104800px;}
.lsab{letter-spacing:5.460000px;}
.lsa2{letter-spacing:5.880000px;}
.ls81{letter-spacing:6.000000px;}
.ls8a{letter-spacing:6.144600px;}
.ls7e{letter-spacing:6.900000px;}
.lsa7{letter-spacing:7.443000px;}
.ls52{letter-spacing:7.722000px;}
.ls15{letter-spacing:7.797000px;}
.lsad{letter-spacing:8.221200px;}
.lsaa{letter-spacing:8.236800px;}
.lsa4{letter-spacing:8.362200px;}
.ls27{letter-spacing:8.982000px;}
.lsa8{letter-spacing:9.267600px;}
.lsa5{letter-spacing:9.406200px;}
.lsa1{letter-spacing:9.800400px;}
.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;}
}
.wsdd{word-spacing:-60.000000px;}
.ws42{word-spacing:-54.000000px;}
.ws136{word-spacing:-20.460000px;}
.wseb{word-spacing:-18.540000px;}
.wsae{word-spacing:-17.520000px;}
.ws6f{word-spacing:-17.460000px;}
.wsf8{word-spacing:-17.400000px;}
.ws12e{word-spacing:-17.340000px;}
.ws12d{word-spacing:-17.280000px;}
.ws41{word-spacing:-17.040000px;}
.wse9{word-spacing:-16.980000px;}
.ws135{word-spacing:-16.800000px;}
.ws10b{word-spacing:-16.740000px;}
.ws25{word-spacing:-16.680000px;}
.ws6{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.500000px;}
.wsc2{word-spacing:-16.440000px;}
.ws97{word-spacing:-16.380000px;}
.ws127{word-spacing:-16.260000px;}
.wsd1{word-spacing:-16.200000px;}
.ws143{word-spacing:-16.146000px;}
.ws10a{word-spacing:-16.140000px;}
.ws99{word-spacing:-16.080000px;}
.ws13a{word-spacing:-16.020000px;}
.wsdc{word-spacing:-15.960000px;}
.wsdb{word-spacing:-15.720000px;}
.wsd3{word-spacing:-15.660000px;}
.ws72{word-spacing:-15.600000px;}
.wsec{word-spacing:-15.540000px;}
.wsc1{word-spacing:-15.480000px;}
.wsea{word-spacing:-15.420000px;}
.ws128{word-spacing:-15.300000px;}
.ws6d{word-spacing:-15.240000px;}
.ws4{word-spacing:-15.120000px;}
.wsad{word-spacing:-15.060000px;}
.ws0{word-spacing:-15.000000px;}
.wsd2{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.820000px;}
.ws6e{word-spacing:-14.760000px;}
.ws40{word-spacing:-14.700000px;}
.ws1{word-spacing:-14.640000px;}
.ws98{word-spacing:-14.520000px;}
.ws3{word-spacing:-14.460000px;}
.ws70{word-spacing:-14.400000px;}
.wsde{word-spacing:-14.340000px;}
.wsac{word-spacing:-14.280000px;}
.ws71{word-spacing:-14.100000px;}
.ws5{word-spacing:-14.040000px;}
.ws43{word-spacing:-13.878000px;}
.ws44{word-spacing:-13.500000px;}
.ws79{word-spacing:-12.366000px;}
.ws88{word-spacing:-11.340000px;}
.ws73{word-spacing:-11.286000px;}
.wsfa{word-spacing:-9.828000px;}
.ws8c{word-spacing:-9.774000px;}
.ws76{word-spacing:-9.612000px;}
.ws116{word-spacing:-8.262000px;}
.ws10f{word-spacing:-7.560000px;}
.ws7f{word-spacing:-6.912000px;}
.wsef{word-spacing:-6.900000px;}
.ws62{word-spacing:-6.696000px;}
.ws67{word-spacing:-6.642000px;}
.ws111{word-spacing:-6.102000px;}
.ws12c{word-spacing:-5.880000px;}
.ws7a{word-spacing:-5.616000px;}
.ws138{word-spacing:-5.460000px;}
.ws75{word-spacing:-5.454000px;}
.ws6b{word-spacing:-5.346000px;}
.ws11a{word-spacing:-5.292000px;}
.ws1e{word-spacing:-4.980000px;}
.ws139{word-spacing:-4.800000px;}
.wsf0{word-spacing:-4.680000px;}
.ws112{word-spacing:-4.644000px;}
.ws95{word-spacing:-4.500000px;}
.ws107{word-spacing:-4.440000px;}
.ws133{word-spacing:-4.320000px;}
.ws30{word-spacing:-4.260000px;}
.ws5b{word-spacing:-4.158000px;}
.ws13d{word-spacing:-3.900000px;}
.wsfb{word-spacing:-3.888000px;}
.wse{word-spacing:-3.780000px;}
.wsc{word-spacing:-3.720000px;}
.ws5f{word-spacing:-3.672000px;}
.ws12a{word-spacing:-3.660000px;}
.wscc{word-spacing:-3.600000px;}
.wsf4{word-spacing:-3.540000px;}
.wsb0{word-spacing:-3.480000px;}
.ws59{word-spacing:-3.456000px;}
.wsda{word-spacing:-3.420000px;}
.ws7d{word-spacing:-3.402000px;}
.ws106{word-spacing:-3.360000px;}
.ws5d{word-spacing:-3.348000px;}
.ws103{word-spacing:-3.300000px;}
.wsbe{word-spacing:-3.240000px;}
.ws81{word-spacing:-3.186000px;}
.ws3d{word-spacing:-3.180000px;}
.ws11b{word-spacing:-3.132000px;}
.wsd7{word-spacing:-3.120000px;}
.wscb{word-spacing:-3.060000px;}
.ws2d{word-spacing:-3.000000px;}
.ws4a{word-spacing:-2.940000px;}
.ws7c{word-spacing:-2.916000px;}
.ws8e{word-spacing:-2.880000px;}
.wse2{word-spacing:-2.820000px;}
.ws2e{word-spacing:-2.760000px;}
.ws4e{word-spacing:-2.700000px;}
.ws14c{word-spacing:-2.646000px;}
.wsc3{word-spacing:-2.640000px;}
.ws1f{word-spacing:-2.580000px;}
.ws8d{word-spacing:-2.520000px;}
.ws77{word-spacing:-2.484000px;}
.ws35{word-spacing:-2.460000px;}
.wsd4{word-spacing:-2.400000px;}
.ws118{word-spacing:-2.376000px;}
.ws52{word-spacing:-2.340000px;}
.ws84{word-spacing:-2.322000px;}
.wsf5{word-spacing:-2.280000px;}
.ws31{word-spacing:-2.220000px;}
.wsa7{word-spacing:-2.160000px;}
.ws6c{word-spacing:-2.106000px;}
.wsaa{word-spacing:-2.100000px;}
.ws48{word-spacing:-2.040000px;}
.wscd{word-spacing:-1.980000px;}
.ws39{word-spacing:-1.920000px;}
.wsa2{word-spacing:-1.860000px;}
.ws11d{word-spacing:-1.800000px;}
.wsba{word-spacing:-1.740000px;}
.ws122{word-spacing:-1.728000px;}
.ws3f{word-spacing:-1.680000px;}
.ws3e{word-spacing:-1.620000px;}
.ws23{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.500000px;}
.ws91{word-spacing:-1.440000px;}
.ws144{word-spacing:-1.404000px;}
.wsa1{word-spacing:-1.380000px;}
.ws64{word-spacing:-1.350000px;}
.ws1a{word-spacing:-1.320000px;}
.wsbc{word-spacing:-1.260000px;}
.ws8b{word-spacing:-1.242000px;}
.ws1d{word-spacing:-1.200000px;}
.wsd6{word-spacing:-1.140000px;}
.ws4c{word-spacing:-1.080000px;}
.ws7b{word-spacing:-1.026000px;}
.wse0{word-spacing:-1.020000px;}
.ws80{word-spacing:-0.972000px;}
.ws18{word-spacing:-0.960000px;}
.wse8{word-spacing:-0.900000px;}
.ws46{word-spacing:-0.840000px;}
.ws110{word-spacing:-0.810000px;}
.ws3a{word-spacing:-0.780000px;}
.ws147{word-spacing:-0.756000px;}
.ws55{word-spacing:-0.720000px;}
.ws4d{word-spacing:-0.660000px;}
.ws13f{word-spacing:-0.648000px;}
.ws12{word-spacing:-0.600000px;}
.ws83{word-spacing:-0.594000px;}
.ws53{word-spacing:-0.540000px;}
.ws96{word-spacing:-0.480000px;}
.ws78{word-spacing:-0.432000px;}
.ws21{word-spacing:-0.420000px;}
.ws5e{word-spacing:-0.378000px;}
.ws2b{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.300000px;}
.ws4b{word-spacing:-0.240000px;}
.ws37{word-spacing:-0.180000px;}
.ws14a{word-spacing:-0.162000px;}
.ws15{word-spacing:-0.120000px;}
.ws115{word-spacing:-0.108000px;}
.wsb4{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws145{word-spacing:0.054000px;}
.ws9a{word-spacing:0.060000px;}
.ws7e{word-spacing:0.108000px;}
.ws2f{word-spacing:0.120000px;}
.ws20{word-spacing:0.180000px;}
.ws148{word-spacing:0.216000px;}
.ws9f{word-spacing:0.240000px;}
.ws61{word-spacing:0.270000px;}
.ws17{word-spacing:0.300000px;}
.ws89{word-spacing:0.324000px;}
.wsf{word-spacing:0.360000px;}
.ws14b{word-spacing:0.378000px;}
.ws19{word-spacing:0.420000px;}
.ws146{word-spacing:0.432000px;}
.ws8{word-spacing:0.480000px;}
.ws13{word-spacing:0.540000px;}
.ws60{word-spacing:0.594000px;}
.ws36{word-spacing:0.600000px;}
.ws113{word-spacing:0.648000px;}
.ws2a{word-spacing:0.660000px;}
.ws149{word-spacing:0.702000px;}
.ws28{word-spacing:0.720000px;}
.ws142{word-spacing:0.756000px;}
.ws102{word-spacing:0.780000px;}
.wsd8{word-spacing:0.840000px;}
.ws38{word-spacing:0.900000px;}
.wsf2{word-spacing:0.960000px;}
.ws5a{word-spacing:0.972000px;}
.wsf6{word-spacing:1.020000px;}
.ws65{word-spacing:1.080000px;}
.wsaf{word-spacing:1.140000px;}
.ws129{word-spacing:1.200000px;}
.wsc0{word-spacing:1.260000px;}
.ws27{word-spacing:1.320000px;}
.ws5c{word-spacing:1.350000px;}
.ws101{word-spacing:1.500000px;}
.wsa3{word-spacing:1.560000px;}
.ws66{word-spacing:1.566000px;}
.ws13c{word-spacing:1.620000px;}
.ws13b{word-spacing:1.740000px;}
.wsfe{word-spacing:1.782000px;}
.ws33{word-spacing:1.800000px;}
.ws74{word-spacing:1.836000px;}
.wsbd{word-spacing:1.860000px;}
.ws10d{word-spacing:1.980000px;}
.ws57{word-spacing:2.040000px;}
.ws93{word-spacing:2.100000px;}
.wsa4{word-spacing:2.160000px;}
.ws119{word-spacing:2.214000px;}
.ws1b{word-spacing:2.220000px;}
.ws54{word-spacing:2.280000px;}
.ws90{word-spacing:2.340000px;}
.ws121{word-spacing:2.376000px;}
.ws120{word-spacing:2.400000px;}
.ws105{word-spacing:2.460000px;}
.ws9c{word-spacing:2.520000px;}
.wsc7{word-spacing:2.580000px;}
.wscf{word-spacing:2.640000px;}
.ws109{word-spacing:2.700000px;}
.ws104{word-spacing:2.760000px;}
.ws6a{word-spacing:2.808000px;}
.wsbb{word-spacing:2.820000px;}
.ws69{word-spacing:2.862000px;}
.wse4{word-spacing:2.880000px;}
.ws14e{word-spacing:2.916000px;}
.wse6{word-spacing:2.940000px;}
.wsa8{word-spacing:3.060000px;}
.ws85{word-spacing:3.078000px;}
.ws131{word-spacing:3.120000px;}
.ws117{word-spacing:3.132000px;}
.ws92{word-spacing:3.180000px;}
.wsf9{word-spacing:3.240000px;}
.wsed{word-spacing:3.300000px;}
.wsf1{word-spacing:3.360000px;}
.wsd0{word-spacing:3.420000px;}
.ws1c{word-spacing:3.480000px;}
.ws124{word-spacing:3.510000px;}
.wsce{word-spacing:3.540000px;}
.wsb6{word-spacing:3.600000px;}
.ws82{word-spacing:3.618000px;}
.wsca{word-spacing:3.660000px;}
.ws9e{word-spacing:3.720000px;}
.ws11c{word-spacing:3.840000px;}
.ws16{word-spacing:3.900000px;}
.ws108{word-spacing:3.960000px;}
.wsd9{word-spacing:4.020000px;}
.wsfd{word-spacing:4.050000px;}
.ws130{word-spacing:4.080000px;}
.ws114{word-spacing:4.158000px;}
.ws8f{word-spacing:4.200000px;}
.ws94{word-spacing:4.260000px;}
.ws50{word-spacing:4.320000px;}
.wsc9{word-spacing:4.380000px;}
.wsb2{word-spacing:4.440000px;}
.ws56{word-spacing:4.500000px;}
.ws49{word-spacing:4.560000px;}
.ws47{word-spacing:4.620000px;}
.wse5{word-spacing:4.680000px;}
.ws14d{word-spacing:4.698000px;}
.ws9b{word-spacing:4.740000px;}
.ws86{word-spacing:4.752000px;}
.ws32{word-spacing:4.800000px;}
.ws11{word-spacing:4.860000px;}
.ws29{word-spacing:4.920000px;}
.ws3c{word-spacing:4.980000px;}
.wsb9{word-spacing:5.040000px;}
.wsbf{word-spacing:5.100000px;}
.ws3b{word-spacing:5.160000px;}
.ws4f{word-spacing:5.280000px;}
.wsfc{word-spacing:5.292000px;}
.wsc5{word-spacing:5.340000px;}
.wse3{word-spacing:5.400000px;}
.ws140{word-spacing:5.454000px;}
.ws13e{word-spacing:5.460000px;}
.ws2c{word-spacing:5.520000px;}
.wsd{word-spacing:5.580000px;}
.ws8a{word-spacing:5.616000px;}
.ws34{word-spacing:5.640000px;}
.wsdf{word-spacing:5.700000px;}
.ws68{word-spacing:5.724000px;}
.ws22{word-spacing:5.760000px;}
.ws11f{word-spacing:5.820000px;}
.ws125{word-spacing:5.832000px;}
.ws126{word-spacing:5.880000px;}
.ws141{word-spacing:5.886000px;}
.wsa5{word-spacing:5.940000px;}
.ws100{word-spacing:6.000000px;}
.ws63{word-spacing:6.048000px;}
.wsff{word-spacing:6.060000px;}
.wse7{word-spacing:6.120000px;}
.ws14{word-spacing:6.180000px;}
.ws51{word-spacing:6.240000px;}
.ws45{word-spacing:6.300000px;}
.wsc4{word-spacing:6.360000px;}
.ws10c{word-spacing:6.420000px;}
.ws87{word-spacing:6.426000px;}
.wsc8{word-spacing:6.480000px;}
.wsc6{word-spacing:6.540000px;}
.wsf7{word-spacing:6.600000px;}
.ws58{word-spacing:6.750000px;}
.ws132{word-spacing:6.780000px;}
.ws11e{word-spacing:6.840000px;}
.wsb3{word-spacing:6.900000px;}
.ws9{word-spacing:6.960000px;}
.wsb1{word-spacing:7.020000px;}
.wsa6{word-spacing:7.080000px;}
.wsab{word-spacing:7.140000px;}
.ws134{word-spacing:7.200000px;}
.ws26{word-spacing:7.260000px;}
.wsa9{word-spacing:7.320000px;}
.ws14f{word-spacing:7.344000px;}
.wsa0{word-spacing:7.380000px;}
.wsd5{word-spacing:7.440000px;}
.wsb{word-spacing:7.500000px;}
.ws123{word-spacing:7.506000px;}
.wsb5{word-spacing:7.560000px;}
.ws137{word-spacing:7.860000px;}
.ws12b{word-spacing:7.920000px;}
.wsb8{word-spacing:9.120000px;}
.wse1{word-spacing:9.300000px;}
.ws10e{word-spacing:9.840000px;}
.ws9d{word-spacing:10.020000px;}
.wsb7{word-spacing:10.140000px;}
.ws12f{word-spacing:10.200000px;}
.wsf3{word-spacing:12.000000px;}
.wsee{word-spacing:13.800000px;}
._0{margin-left:-94.500000px;}
._1e{margin-left:-14.195400px;}
._12{margin-left:-11.670600px;}
._26{margin-left:-9.222000px;}
._6{margin-left:-7.590600px;}
._10{margin-left:-6.300000px;}
._4{margin-left:-4.800000px;}
._5{margin-left:-3.300000px;}
._f{margin-left:-2.280000px;}
._2{margin-left:-1.229400px;}
._3{width:1.131000px;}
._9{width:2.173200px;}
._8{width:3.960000px;}
._b{width:5.912400px;}
._7{width:7.800000px;}
._a{width:8.820000px;}
._e{width:10.500000px;}
._11{width:11.640000px;}
._1f{width:13.440000px;}
._25{width:16.194000px;}
._24{width:17.640000px;}
._1b{width:20.715000px;}
._13{width:23.328000px;}
._15{width:24.840000px;}
._22{width:28.674000px;}
._1c{width:30.888000px;}
._16{width:32.994000px;}
._19{width:34.887000px;}
._20{width:37.155000px;}
._23{width:44.772000px;}
._14{width:46.116000px;}
._21{width:50.274000px;}
._17{width:51.570000px;}
._1d{width:53.406000px;}
._1a{width:56.754000px;}
._18{width:57.942000px;}
._c{width:70.524000px;}
._d{width:1399.268400px;}
._1{width:1480.293600px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y177{bottom:83.264700px;}
.y167{bottom:85.974600px;}
.yf1{bottom:87.014700px;}
.y3c{bottom:87.179400px;}
.y119{bottom:87.314700px;}
.y198{bottom:87.459900px;}
.y1bb{bottom:87.474600px;}
.yb8{bottom:89.274600px;}
.y93{bottom:90.459900px;}
.y68{bottom:90.474600px;}
.y1e6{bottom:90.716250px;}
.y13e{bottom:90.774600px;}
.y160{bottom:91.514700px;}
.y148{bottom:91.974600px;}
.y1fb{bottom:92.260050px;}
.y162{bottom:92.274600px;}
.y166{bottom:99.474600px;}
.yf0{bottom:100.514700px;}
.y3b{bottom:100.679400px;}
.y176{bottom:101.264700px;}
.yb7{bottom:102.774600px;}
.y197{bottom:105.459900px;}
.y118{bottom:105.464700px;}
.y147{bottom:105.474600px;}
.y92{bottom:108.459900px;}
.y67{bottom:108.474600px;}
.y1e5{bottom:108.716250px;}
.y13d{bottom:108.774600px;}
.y15f{bottom:109.514700px;}
.y1fa{bottom:110.260050px;}
.y161{bottom:110.274600px;}
.y165{bottom:112.974600px;}
.yef{bottom:114.014700px;}
.y146{bottom:118.974600px;}
.y175{bottom:119.264700px;}
.y196{bottom:123.459900px;}
.y1ba{bottom:123.474600px;}
.y117{bottom:123.614700px;}
.y21c{bottom:124.974600px;}
.y91{bottom:126.459900px;}
.y66{bottom:126.474600px;}
.y1e4{bottom:126.716250px;}
.y13c{bottom:126.774600px;}
.yee{bottom:127.514700px;}
.y1f9{bottom:128.260050px;}
.yb6{bottom:129.774600px;}
.y145{bottom:132.474600px;}
.y164{bottom:139.974600px;}
.yed{bottom:141.014700px;}
.y195{bottom:141.459900px;}
.y1b9{bottom:141.474600px;}
.yb5{bottom:143.274600px;}
.y90{bottom:144.459900px;}
.y65{bottom:144.474600px;}
.y1e3{bottom:144.716250px;}
.y13b{bottom:144.774600px;}
.y15e{bottom:145.514700px;}
.y144{bottom:145.974600px;}
.y1f8{bottom:146.260050px;}
.y252{bottom:152.714700px;}
.y24a{bottom:154.501500px;}
.yec{bottom:154.514700px;}
.yb4{bottom:156.774600px;}
.y194{bottom:159.459900px;}
.y143{bottom:159.474600px;}
.y116{bottom:159.914700px;}
.y8f{bottom:162.459900px;}
.y64{bottom:162.474600px;}
.y22{bottom:162.490050px;}
.y3a{bottom:162.504750px;}
.y1e2{bottom:162.716250px;}
.y13a{bottom:162.774600px;}
.y1f7{bottom:164.260050px;}
.y251{bottom:166.214700px;}
.yeb{bottom:168.014700px;}
.yb3{bottom:170.274600px;}
.y249{bottom:170.701500px;}
.y174{bottom:172.514700px;}
.y142{bottom:172.974600px;}
.y163{bottom:174.474600px;}
.y193{bottom:177.459900px;}
.y1b8{bottom:177.474600px;}
.y115{bottom:178.064700px;}
.y21b{bottom:178.974600px;}
.y250{bottom:179.714700px;}
.y8e{bottom:180.459900px;}
.y63{bottom:180.474600px;}
.y21{bottom:180.490050px;}
.y39{bottom:180.504750px;}
.y1e1{bottom:180.716250px;}
.y139{bottom:180.774600px;}
.yea{bottom:181.514700px;}
.y1f6{bottom:182.260050px;}
.yb2{bottom:183.774600px;}
.y141{bottom:186.474600px;}
.y248{bottom:186.901500px;}
.y173{bottom:190.514700px;}
.y24f{bottom:193.214700px;}
.y21a{bottom:193.224600px;}
.ye9{bottom:195.014700px;}
.y192{bottom:195.459900px;}
.y1b7{bottom:195.474600px;}
.y114{bottom:196.214700px;}
.yb1{bottom:197.274600px;}
.y8d{bottom:198.459900px;}
.y62{bottom:198.474600px;}
.y20{bottom:198.490050px;}
.y38{bottom:198.504750px;}
.y1e0{bottom:198.716250px;}
.y138{bottom:198.774600px;}
.y15d{bottom:199.514700px;}
.y140{bottom:199.974600px;}
.y1f5{bottom:200.260050px;}
.y247{bottom:203.101500px;}
.y219{bottom:207.474600px;}
.ye8{bottom:208.514700px;}
.yb0{bottom:210.774600px;}
.y191{bottom:213.459900px;}
.y1b6{bottom:213.474600px;}
.y113{bottom:214.364700px;}
.y8c{bottom:216.459900px;}
.y61{bottom:216.474600px;}
.y1f{bottom:216.490050px;}
.y1df{bottom:216.716250px;}
.y137{bottom:216.774600px;}
.y15c{bottom:217.514700px;}
.y1f4{bottom:218.260050px;}
.y246{bottom:219.301500px;}
.y218{bottom:221.724600px;}
.ye7{bottom:222.014700px;}
.yaf{bottom:224.274600px;}
.y172{bottom:226.514700px;}
.y190{bottom:231.459900px;}
.y13f{bottom:231.474600px;}
.y112{bottom:232.514700px;}
.y8b{bottom:234.459900px;}
.y60{bottom:234.474600px;}
.y1e{bottom:234.490050px;}
.y37{bottom:234.504750px;}
.y1de{bottom:234.716250px;}
.y136{bottom:234.774600px;}
.y245{bottom:235.501500px;}
.ye6{bottom:235.514700px;}
.y217{bottom:235.974600px;}
.y1f3{bottom:236.260050px;}
.yae{bottom:237.774600px;}
.y171{bottom:244.514700px;}
.ye5{bottom:249.014700px;}
.y18f{bottom:249.459900px;}
.y1b5{bottom:249.474600px;}
.y216{bottom:250.224600px;}
.y111{bottom:250.664700px;}
.yad{bottom:251.274600px;}
.y244{bottom:251.701500px;}
.y8a{bottom:252.459900px;}
.y5f{bottom:252.474600px;}
.y1d{bottom:252.490050px;}
.y36{bottom:252.504750px;}
.y1dd{bottom:252.716250px;}
.y135{bottom:252.774600px;}
.y15b{bottom:253.514700px;}
.y1f2{bottom:254.260050px;}
.ye4{bottom:262.514700px;}
.y215{bottom:264.474600px;}
.yac{bottom:264.774600px;}
.y18e{bottom:267.459900px;}
.y1b4{bottom:267.474600px;}
.y243{bottom:267.901500px;}
.y110{bottom:268.814700px;}
.y89{bottom:270.459900px;}
.y5e{bottom:270.474600px;}
.y1c{bottom:270.490050px;}
.y35{bottom:270.504750px;}
.y1dc{bottom:270.716250px;}
.y134{bottom:270.774600px;}
.y15a{bottom:271.514700px;}
.y1f1{bottom:272.260050px;}
.ye3{bottom:276.014700px;}
.yab{bottom:278.274600px;}
.y214{bottom:278.724600px;}
.y170{bottom:280.514700px;}
.y242{bottom:284.101500px;}
.y18d{bottom:285.459900px;}
.y1b3{bottom:285.474600px;}
.y10f{bottom:286.964700px;}
.y88{bottom:288.459900px;}
.y5d{bottom:288.474600px;}
.y1b{bottom:288.490050px;}
.y34{bottom:288.504750px;}
.y1db{bottom:288.716250px;}
.y133{bottom:288.774600px;}
.ye2{bottom:289.514700px;}
.y1f0{bottom:290.260050px;}
.yaa{bottom:291.774600px;}
.y16f{bottom:298.514700px;}
.y241{bottom:300.301500px;}
.y18c{bottom:303.459900px;}
.y1b2{bottom:303.474600px;}
.y10e{bottom:305.114700px;}
.ya9{bottom:305.274600px;}
.y87{bottom:306.459900px;}
.y5c{bottom:306.474600px;}
.y1a{bottom:306.490050px;}
.y1da{bottom:306.716250px;}
.y132{bottom:306.774600px;}
.y159{bottom:307.514700px;}
.y1ef{bottom:308.260050px;}
.y240{bottom:316.501500px;}
.ye1{bottom:316.514700px;}
.ya8{bottom:318.774600px;}
.y18b{bottom:321.459900px;}
.y1b1{bottom:321.474600px;}
.y10d{bottom:323.264700px;}
.y86{bottom:324.459900px;}
.y5b{bottom:324.474600px;}
.y19{bottom:324.490050px;}
.y33{bottom:324.504750px;}
.y1d9{bottom:324.716250px;}
.y131{bottom:324.774600px;}
.y158{bottom:325.514700px;}
.y1ee{bottom:326.260050px;}
.y213{bottom:328.974600px;}
.ye0{bottom:330.014700px;}
.ya7{bottom:332.274600px;}
.y23f{bottom:332.701500px;}
.y16e{bottom:334.514700px;}
.y18a{bottom:339.459900px;}
.y1b0{bottom:339.474600px;}
.y10c{bottom:341.414700px;}
.y85{bottom:342.459900px;}
.y5a{bottom:342.474600px;}
.y18{bottom:342.490050px;}
.y32{bottom:342.504750px;}
.y1d8{bottom:342.716250px;}
.y130{bottom:342.774600px;}
.ydf{bottom:343.514700px;}
.y1ed{bottom:344.260050px;}
.ya6{bottom:345.774600px;}
.y212{bottom:346.974600px;}
.y23e{bottom:348.901500px;}
.y16d{bottom:352.514700px;}
.yde{bottom:357.014700px;}
.y189{bottom:357.459900px;}
.y1af{bottom:357.474600px;}
.y10b{bottom:359.564700px;}
.y84{bottom:360.459900px;}
.y59{bottom:360.474600px;}
.y17{bottom:360.490050px;}
.y31{bottom:360.504750px;}
.y1d7{bottom:360.716250px;}
.y12f{bottom:360.774600px;}
.y1ec{bottom:362.260050px;}
.y211{bottom:364.974600px;}
.y23d{bottom:365.101500px;}
.ydd{bottom:370.514700px;}
.ya5{bottom:372.774600px;}
.y188{bottom:375.459900px;}
.y1ae{bottom:375.474600px;}
.y10a{bottom:377.714700px;}
.y83{bottom:378.459900px;}
.y58{bottom:378.474600px;}
.y16{bottom:378.490050px;}
.y30{bottom:378.504750px;}
.y1d6{bottom:378.716250px;}
.y12e{bottom:378.774600px;}
.y157{bottom:379.514700px;}
.y1eb{bottom:380.260050px;}
.y23c{bottom:381.301500px;}
.y210{bottom:382.974600px;}
.ydc{bottom:384.014700px;}
.ya4{bottom:386.274600px;}
.y16c{bottom:388.514700px;}
.y187{bottom:393.459900px;}
.y109{bottom:395.864700px;}
.y82{bottom:396.459900px;}
.y57{bottom:396.474600px;}
.y15{bottom:396.490050px;}
.y2f{bottom:396.504750px;}
.y1d5{bottom:396.716250px;}
.y12d{bottom:396.774600px;}
.y23b{bottom:397.501500px;}
.ydb{bottom:397.514700px;}
.y1ea{bottom:398.260050px;}
.ya3{bottom:399.774600px;}
.y20f{bottom:400.974600px;}
.y16b{bottom:406.514700px;}
.yda{bottom:411.014700px;}
.y186{bottom:411.459900px;}
.y1ad{bottom:411.474600px;}
.ya2{bottom:413.274600px;}
.y23a{bottom:413.701500px;}
.y108{bottom:414.014700px;}
.y81{bottom:414.459900px;}
.y56{bottom:414.474600px;}
.y14{bottom:414.490050px;}
.y2e{bottom:414.504750px;}
.y1d4{bottom:414.716250px;}
.y156{bottom:415.514700px;}
.y1e9{bottom:416.260050px;}
.y20e{bottom:418.974600px;}
.yd9{bottom:424.514700px;}
.y1ac{bottom:424.974600px;}
.ya1{bottom:426.774600px;}
.y185{bottom:429.459900px;}
.y239{bottom:429.901500px;}
.y107{bottom:432.164700px;}
.y80{bottom:432.459900px;}
.y55{bottom:432.474600px;}
.y13{bottom:432.490050px;}
.y2d{bottom:432.504750px;}
.y1d3{bottom:432.716250px;}
.y12c{bottom:432.774600px;}
.y155{bottom:433.514700px;}
.y1e8{bottom:434.260050px;}
.y20d{bottom:436.974600px;}
.yd8{bottom:438.014700px;}
.y1ab{bottom:438.474600px;}
.ya0{bottom:440.274600px;}
.y16a{bottom:442.514700px;}
.y238{bottom:446.101500px;}
.y184{bottom:447.459900px;}
.y106{bottom:450.314700px;}
.y7f{bottom:450.459900px;}
.y54{bottom:450.474600px;}
.y12{bottom:450.490050px;}
.y2c{bottom:450.504750px;}
.y1d2{bottom:450.716250px;}
.y12b{bottom:451.074600px;}
.yd7{bottom:451.514700px;}
.y1aa{bottom:451.974600px;}
.y1e7{bottom:452.260050px;}
.y9f{bottom:453.774600px;}
.y20c{bottom:454.974600px;}
.y237{bottom:462.301500px;}
.yd6{bottom:465.014700px;}
.y183{bottom:465.459900px;}
.y1a9{bottom:465.474600px;}
.y9e{bottom:467.274600px;}
.y7e{bottom:468.459900px;}
.y105{bottom:468.464700px;}
.y53{bottom:468.474600px;}
.y11{bottom:468.490050px;}
.y2b{bottom:468.504750px;}
.y1d1{bottom:468.716250px;}
.y12a{bottom:469.374600px;}
.y154{bottom:469.514700px;}
.y20b{bottom:472.974600px;}
.y236{bottom:478.501500px;}
.yd5{bottom:478.514700px;}
.y1a8{bottom:478.974600px;}
.y9d{bottom:480.774600px;}
.y182{bottom:483.459900px;}
.y7d{bottom:486.459900px;}
.y52{bottom:486.474600px;}
.y10{bottom:486.490050px;}
.y2a{bottom:486.504750px;}
.y104{bottom:486.614700px;}
.y1d0{bottom:486.716250px;}
.y153{bottom:487.514700px;}
.y129{bottom:487.674600px;}
.y20a{bottom:490.974600px;}
.yd4{bottom:492.014700px;}
.y1a7{bottom:492.474600px;}
.y9c{bottom:494.274600px;}
.y235{bottom:494.701500px;}
.y181{bottom:501.459900px;}
.y7c{bottom:504.459900px;}
.y51{bottom:504.474600px;}
.yf{bottom:504.490050px;}
.y29{bottom:504.504750px;}
.y1cf{bottom:504.716250px;}
.y103{bottom:504.764700px;}
.yd3{bottom:505.514700px;}
.y128{bottom:505.974600px;}
.y9b{bottom:507.774600px;}
.y209{bottom:508.974600px;}
.y234{bottom:510.901500px;}
.yd2{bottom:519.014700px;}
.y180{bottom:519.459900px;}
.y1a6{bottom:519.474600px;}
.y9a{bottom:521.274600px;}
.y7b{bottom:522.459900px;}
.y50{bottom:522.474600px;}
.ye{bottom:522.490050px;}
.y28{bottom:522.504750px;}
.y1ce{bottom:522.716250px;}
.y102{bottom:522.914700px;}
.y152{bottom:523.514700px;}
.y127{bottom:524.274600px;}
.y208{bottom:526.974600px;}
.y233{bottom:527.101500px;}
.yd1{bottom:532.514700px;}
.y1a5{bottom:532.974600px;}
.y99{bottom:534.774600px;}
.y17f{bottom:537.459900px;}
.y7a{bottom:540.459900px;}
.y4f{bottom:540.474600px;}
.yd{bottom:540.490050px;}
.y27{bottom:540.504750px;}
.y1cd{bottom:540.716250px;}
.y101{bottom:541.064700px;}
.y151{bottom:541.514700px;}
.y126{bottom:542.574600px;}
.y232{bottom:543.301500px;}
.y207{bottom:544.974600px;}
.yd0{bottom:546.014700px;}
.y1a4{bottom:546.474600px;}
.y98{bottom:548.274600px;}
.y17e{bottom:555.459900px;}
.y79{bottom:558.459900px;}
.y4e{bottom:558.474600px;}
.yc{bottom:558.490050px;}
.y26{bottom:558.504750px;}
.y1cc{bottom:558.716250px;}
.y231{bottom:559.501500px;}
.ycf{bottom:559.514700px;}
.y1a3{bottom:559.974600px;}
.y125{bottom:560.874600px;}
.y97{bottom:561.774600px;}
.y206{bottom:562.974600px;}
.yce{bottom:573.014700px;}
.y17d{bottom:573.459900px;}
.y1a2{bottom:573.474600px;}
.y96{bottom:575.274600px;}
.y230{bottom:575.701500px;}
.y78{bottom:576.459900px;}
.y4d{bottom:576.474600px;}
.yb{bottom:576.490050px;}
.y25{bottom:576.504750px;}
.y1cb{bottom:576.716250px;}
.y100{bottom:577.514700px;}
.y124{bottom:579.174600px;}
.y205{bottom:580.974600px;}
.y169{bottom:586.514700px;}
.y1a1{bottom:586.974600px;}
.y95{bottom:588.774600px;}
.y17c{bottom:591.459900px;}
.y22f{bottom:591.901500px;}
.y77{bottom:594.459900px;}
.y4c{bottom:594.474600px;}
.ya{bottom:594.490050px;}
.y24{bottom:594.504750px;}
.y1ca{bottom:594.716250px;}
.y150{bottom:595.514700px;}
.yff{bottom:595.814700px;}
.y123{bottom:597.474600px;}
.y204{bottom:598.974600px;}
.ycd{bottom:600.014700px;}
.y1a0{bottom:600.474600px;}
.y22e{bottom:608.101500px;}
.y17b{bottom:609.459900px;}
.y76{bottom:612.459900px;}
.y4b{bottom:612.474600px;}
.y9{bottom:612.490050px;}
.y23{bottom:612.504750px;}
.y1c9{bottom:612.716250px;}
.ycc{bottom:613.514700px;}
.yfe{bottom:614.114700px;}
.y122{bottom:615.774600px;}
.y203{bottom:616.974600px;}
.y22d{bottom:624.301500px;}
.ycb{bottom:627.014700px;}
.y17a{bottom:627.459900px;}
.y94{bottom:627.474600px;}
.y75{bottom:630.459900px;}
.y4a{bottom:630.474600px;}
.y1c8{bottom:630.716250px;}
.y14f{bottom:631.514700px;}
.y19f{bottom:631.974600px;}
.yfd{bottom:632.414700px;}
.y202{bottom:634.974600px;}
.y22c{bottom:640.501500px;}
.yca{bottom:640.514700px;}
.y179{bottom:645.459900px;}
.y74{bottom:648.459900px;}
.y49{bottom:648.474600px;}
.y1c7{bottom:648.716250px;}
.y14e{bottom:649.514700px;}
.yfc{bottom:650.714700px;}
.y121{bottom:652.074600px;}
.y201{bottom:652.974600px;}
.yc9{bottom:654.014700px;}
.y22b{bottom:656.701500px;}
.y178{bottom:663.459900px;}
.y73{bottom:666.459900px;}
.y48{bottom:666.474600px;}
.y1c6{bottom:666.716250px;}
.yc8{bottom:667.514700px;}
.y19e{bottom:667.974600px;}
.yfb{bottom:669.014700px;}
.y120{bottom:670.074600px;}
.y200{bottom:670.974600px;}
.y7{bottom:671.334750px;}
.y22a{bottom:672.901500px;}
.yc7{bottom:681.014700px;}
.y72{bottom:684.459900px;}
.y47{bottom:684.474600px;}
.y1c5{bottom:684.716250px;}
.y14d{bottom:685.514700px;}
.y19d{bottom:685.974600px;}
.yfa{bottom:687.314700px;}
.y11f{bottom:688.074600px;}
.y1ff{bottom:688.974600px;}
.y229{bottom:689.101500px;}
.yc6{bottom:694.514700px;}
.y6{bottom:699.834750px;}
.y71{bottom:702.459900px;}
.y46{bottom:702.474600px;}
.y1c4{bottom:702.716250px;}
.y14c{bottom:703.514700px;}
.y19c{bottom:703.974600px;}
.y228{bottom:705.301500px;}
.yf9{bottom:705.614700px;}
.y11e{bottom:706.074600px;}
.y1fe{bottom:706.974600px;}
.yc5{bottom:708.014700px;}
.y70{bottom:720.459900px;}
.y45{bottom:720.474600px;}
.y227{bottom:721.501500px;}
.yc4{bottom:721.514700px;}
.y19b{bottom:721.974600px;}
.yf8{bottom:723.914700px;}
.y11d{bottom:724.074600px;}
.y1fd{bottom:724.974600px;}
.y5{bottom:728.334750px;}
.yc3{bottom:735.014700px;}
.y226{bottom:737.701500px;}
.y6f{bottom:738.459900px;}
.y44{bottom:738.474600px;}
.y1c3{bottom:738.716250px;}
.y14b{bottom:739.514700px;}
.y19a{bottom:739.974600px;}
.y11c{bottom:742.074600px;}
.yf7{bottom:742.214700px;}
.yc2{bottom:748.514700px;}
.y225{bottom:753.901500px;}
.y6e{bottom:756.459900px;}
.y43{bottom:756.474600px;}
.y1c2{bottom:756.716250px;}
.y14a{bottom:757.514700px;}
.y199{bottom:757.974600px;}
.y1fc{bottom:759.474600px;}
.yf6{bottom:760.514700px;}
.yc1{bottom:762.014700px;}
.y224{bottom:770.101500px;}
.y6d{bottom:774.459900px;}
.y42{bottom:774.474600px;}
.y1c1{bottom:774.716250px;}
.yc0{bottom:775.514700px;}
.y8{bottom:776.655150px;}
.y11b{bottom:778.074600px;}
.yf5{bottom:778.814700px;}
.y223{bottom:786.301500px;}
.ybf{bottom:789.014700px;}
.y6c{bottom:792.459900px;}
.y41{bottom:792.474600px;}
.y1c0{bottom:792.716250px;}
.y149{bottom:793.514700px;}
.y11a{bottom:794.274600px;}
.yf4{bottom:797.114700px;}
.y222{bottom:802.501500px;}
.y168{bottom:802.514700px;}
.y6b{bottom:810.459900px;}
.y40{bottom:810.474600px;}
.y1bf{bottom:810.716250px;}
.yf3{bottom:815.414550px;}
.ybe{bottom:816.014700px;}
.y221{bottom:818.701500px;}
.y24e{bottom:818.714700px;}
.y4{bottom:828.459900px;}
.y3f{bottom:828.474600px;}
.y1be{bottom:828.716250px;}
.ybd{bottom:829.514700px;}
.yf2{bottom:833.714700px;}
.y220{bottom:834.901500px;}
.y24d{bottom:834.914550px;}
.ybc{bottom:843.014700px;}
.y6a{bottom:846.459900px;}
.y3e{bottom:846.474600px;}
.y21f{bottom:851.101500px;}
.y24c{bottom:851.114700px;}
.ybb{bottom:856.514700px;}
.y3{bottom:864.459900px;}
.y69{bottom:864.474600px;}
.y1bd{bottom:864.716250px;}
.y21e{bottom:867.301500px;}
.y24b{bottom:867.314700px;}
.yba{bottom:870.014700px;}
.y2{bottom:882.459900px;}
.y3d{bottom:882.474600px;}
.y1bc{bottom:882.716250px;}
.y21d{bottom:883.501500px;}
.yb9{bottom:883.514700px;}
.y1{bottom:937.589700px;}
.h5{height:37.494141px;}
.h8{height:41.660156px;}
.h7{height:42.117188px;}
.h9{height:42.714956px;}
.h6{height:47.381836px;}
.h2{height:47.961914px;}
.h4{height:52.646484px;}
.h3{height:53.291016px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:63.750000px;}
.x11{left:83.250000px;}
.x1{left:85.050000px;}
.xa{left:87.750000px;}
.xf{left:93.450000px;}
.x14{left:104.550000px;}
.x13{left:106.050000px;}
.x4{left:109.050000px;}
.x3{left:212.914350px;}
.x2{left:265.325400px;}
.xb{left:361.425000px;}
.xe{left:379.425150px;}
.x12{left:380.925150px;}
.x5{left:382.725000px;}
.xc{left:385.425000px;}
.xd{left:391.125000px;}
.x10{left:402.225000px;}
.x8{left:403.725000px;}
.x6{left:406.725000px;}
.x7{left:412.425000px;}
.x16{left:444.054600px;}
.x15{left:461.516700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.937600pt;}
.ls6c{letter-spacing:-3.946667pt;}
.lsa0{letter-spacing:-1.013333pt;}
.ls5a{letter-spacing:-1.008000pt;}
.ls59{letter-spacing:-0.960000pt;}
.ls64{letter-spacing:-0.906667pt;}
.lsb{letter-spacing:-0.853333pt;}
.ls91{letter-spacing:-0.816000pt;}
.ls5d{letter-spacing:-0.800000pt;}
.ls40{letter-spacing:-0.768000pt;}
.ls2c{letter-spacing:-0.746667pt;}
.ls8b{letter-spacing:-0.693333pt;}
.ls42{letter-spacing:-0.672000pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls3f{letter-spacing:-0.624000pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls58{letter-spacing:-0.576000pt;}
.ls2d{letter-spacing:-0.533333pt;}
.ls43{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls93{letter-spacing:-0.432000pt;}
.ls63{letter-spacing:-0.426667pt;}
.ls5b{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.373333pt;}
.lsb4{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls92{letter-spacing:-0.288000pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls44{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.213333pt;}
.lsb3{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls41{letter-spacing:-0.144000pt;}
.ls2b{letter-spacing:-0.106667pt;}
.ls5c{letter-spacing:-0.096000pt;}
.ls62{letter-spacing:-0.053333pt;}
.ls94{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls89{letter-spacing:0.006933pt;}
.ls9d{letter-spacing:0.021867pt;}
.ls1f{letter-spacing:0.053333pt;}
.ls4c{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls7f{letter-spacing:0.126400pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.192000pt;}
.ls2f{letter-spacing:0.213333pt;}
.ls36{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls37{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.336000pt;}
.ls80{letter-spacing:0.365867pt;}
.ls4{letter-spacing:0.373333pt;}
.ls4d{letter-spacing:0.384000pt;}
.ls96{letter-spacing:0.400533pt;}
.ls71{letter-spacing:0.410667pt;}
.ls5e{letter-spacing:0.426667pt;}
.ls45{letter-spacing:0.432000pt;}
.ls3{letter-spacing:0.480000pt;}
.ls9e{letter-spacing:0.483200pt;}
.ls51{letter-spacing:0.528000pt;}
.ls1d{letter-spacing:0.533333pt;}
.ls4f{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.586667pt;}
.ls4e{letter-spacing:0.624000pt;}
.ls6e{letter-spacing:0.640000pt;}
.ls65{letter-spacing:0.652800pt;}
.ls76{letter-spacing:0.666667pt;}
.ls20{letter-spacing:0.669333pt;}
.ls3b{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.693333pt;}
.ls8f{letter-spacing:0.720000pt;}
.ls14{letter-spacing:0.746667pt;}
.ls34{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.853333pt;}
.ls48{letter-spacing:0.864000pt;}
.ls78{letter-spacing:0.906667pt;}
.ls77{letter-spacing:0.913067pt;}
.ls12{letter-spacing:0.960000pt;}
.ls3d{letter-spacing:1.008000pt;}
.ls1e{letter-spacing:1.013333pt;}
.ls50{letter-spacing:1.056000pt;}
.lsf{letter-spacing:1.066667pt;}
.ls38{letter-spacing:1.104000pt;}
.lsaf{letter-spacing:1.109333pt;}
.ls6a{letter-spacing:1.120000pt;}
.ls79{letter-spacing:1.131733pt;}
.ls49{letter-spacing:1.152000pt;}
.ls24{letter-spacing:1.173333pt;}
.ls3a{letter-spacing:1.200000pt;}
.ls11{letter-spacing:1.226667pt;}
.lsac{letter-spacing:1.232000pt;}
.ls5f{letter-spacing:1.280000pt;}
.ls70{letter-spacing:1.293867pt;}
.ls3c{letter-spacing:1.296000pt;}
.ls1c{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.386667pt;}
.ls9b{letter-spacing:1.392000pt;}
.lsae{letter-spacing:1.430400pt;}
.ls26{letter-spacing:1.440000pt;}
.ls28{letter-spacing:1.493333pt;}
.ls99{letter-spacing:1.536000pt;}
.ls1a{letter-spacing:1.546667pt;}
.ls47{letter-spacing:1.584000pt;}
.ls73{letter-spacing:1.600000pt;}
.ls22{letter-spacing:1.653333pt;}
.ls17{letter-spacing:1.706667pt;}
.ls87{letter-spacing:1.728000pt;}
.ls23{letter-spacing:1.760000pt;}
.ls30{letter-spacing:1.813333pt;}
.ls82{letter-spacing:1.846400pt;}
.ls68{letter-spacing:1.866667pt;}
.ls88{letter-spacing:1.872000pt;}
.ls61{letter-spacing:1.920000pt;}
.ls18{letter-spacing:1.973333pt;}
.ls4a{letter-spacing:2.016000pt;}
.lse{letter-spacing:2.026667pt;}
.ls56{letter-spacing:2.071467pt;}
.ls35{letter-spacing:2.080000pt;}
.ls19{letter-spacing:2.133333pt;}
.ls55{letter-spacing:2.186667pt;}
.ls46{letter-spacing:2.208000pt;}
.ls53{letter-spacing:2.240000pt;}
.ls83{letter-spacing:2.293333pt;}
.ls9c{letter-spacing:2.304000pt;}
.ls6d{letter-spacing:2.346667pt;}
.lsb1{letter-spacing:2.352000pt;}
.ls85{letter-spacing:2.378667pt;}
.ls32{letter-spacing:2.400000pt;}
.ls13{letter-spacing:2.453333pt;}
.ls7c{letter-spacing:2.506667pt;}
.ls8d{letter-spacing:2.516267pt;}
.ls54{letter-spacing:2.560000pt;}
.ls4b{letter-spacing:2.592000pt;}
.ls2e{letter-spacing:2.613333pt;}
.ls10{letter-spacing:2.666667pt;}
.ls7b{letter-spacing:2.720000pt;}
.ls90{letter-spacing:2.736000pt;}
.ls25{letter-spacing:2.773333pt;}
.lsb0{letter-spacing:2.784000pt;}
.ls57{letter-spacing:2.811733pt;}
.ls33{letter-spacing:2.826667pt;}
.ls97{letter-spacing:2.880000pt;}
.ls7d{letter-spacing:2.955733pt;}
.ls6b{letter-spacing:2.986667pt;}
.ls74{letter-spacing:3.040000pt;}
.ls98{letter-spacing:3.093333pt;}
.ls84{letter-spacing:3.146667pt;}
.ls75{letter-spacing:3.200000pt;}
.ls72{letter-spacing:3.215467pt;}
.lsb2{letter-spacing:3.264000pt;}
.ls9a{letter-spacing:3.312000pt;}
.ls86{letter-spacing:3.360000pt;}
.ls6f{letter-spacing:3.439467pt;}
.lsa9{letter-spacing:3.466667pt;}
.ls69{letter-spacing:3.512533pt;}
.ls9f{letter-spacing:3.520000pt;}
.lsa3{letter-spacing:3.618133pt;}
.ls8c{letter-spacing:3.946667pt;}
.ls67{letter-spacing:4.053333pt;}
.ls7a{letter-spacing:4.160000pt;}
.ls8e{letter-spacing:4.373333pt;}
.ls60{letter-spacing:4.426667pt;}
.ls95{letter-spacing:4.480000pt;}
.ls66{letter-spacing:4.533333pt;}
.lsa6{letter-spacing:4.537600pt;}
.lsab{letter-spacing:4.853333pt;}
.lsa2{letter-spacing:5.226667pt;}
.ls81{letter-spacing:5.333333pt;}
.ls8a{letter-spacing:5.461867pt;}
.ls7e{letter-spacing:6.133333pt;}
.lsa7{letter-spacing:6.616000pt;}
.ls52{letter-spacing:6.864000pt;}
.ls15{letter-spacing:6.930667pt;}
.lsad{letter-spacing:7.307733pt;}
.lsaa{letter-spacing:7.321600pt;}
.lsa4{letter-spacing:7.433067pt;}
.ls27{letter-spacing:7.984000pt;}
.lsa8{letter-spacing:8.237867pt;}
.lsa5{letter-spacing:8.361067pt;}
.lsa1{letter-spacing:8.711467pt;}
.wsdd{word-spacing:-53.333333pt;}
.ws42{word-spacing:-48.000000pt;}
.ws136{word-spacing:-18.186667pt;}
.wseb{word-spacing:-16.480000pt;}
.wsae{word-spacing:-15.573333pt;}
.ws6f{word-spacing:-15.520000pt;}
.wsf8{word-spacing:-15.466667pt;}
.ws12e{word-spacing:-15.413333pt;}
.ws12d{word-spacing:-15.360000pt;}
.ws41{word-spacing:-15.146667pt;}
.wse9{word-spacing:-15.093333pt;}
.ws135{word-spacing:-14.933333pt;}
.ws10b{word-spacing:-14.880000pt;}
.ws25{word-spacing:-14.826667pt;}
.ws6{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.666667pt;}
.wsc2{word-spacing:-14.613333pt;}
.ws97{word-spacing:-14.560000pt;}
.ws127{word-spacing:-14.453333pt;}
.wsd1{word-spacing:-14.400000pt;}
.ws143{word-spacing:-14.352000pt;}
.ws10a{word-spacing:-14.346667pt;}
.ws99{word-spacing:-14.293333pt;}
.ws13a{word-spacing:-14.240000pt;}
.wsdc{word-spacing:-14.186667pt;}
.wsdb{word-spacing:-13.973333pt;}
.wsd3{word-spacing:-13.920000pt;}
.ws72{word-spacing:-13.866667pt;}
.wsec{word-spacing:-13.813333pt;}
.wsc1{word-spacing:-13.760000pt;}
.wsea{word-spacing:-13.706667pt;}
.ws128{word-spacing:-13.600000pt;}
.ws6d{word-spacing:-13.546667pt;}
.ws4{word-spacing:-13.440000pt;}
.wsad{word-spacing:-13.386667pt;}
.ws0{word-spacing:-13.333333pt;}
.wsd2{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.173333pt;}
.ws6e{word-spacing:-13.120000pt;}
.ws40{word-spacing:-13.066667pt;}
.ws1{word-spacing:-13.013333pt;}
.ws98{word-spacing:-12.906667pt;}
.ws3{word-spacing:-12.853333pt;}
.ws70{word-spacing:-12.800000pt;}
.wsde{word-spacing:-12.746667pt;}
.wsac{word-spacing:-12.693333pt;}
.ws71{word-spacing:-12.533333pt;}
.ws5{word-spacing:-12.480000pt;}
.ws43{word-spacing:-12.336000pt;}
.ws44{word-spacing:-12.000000pt;}
.ws79{word-spacing:-10.992000pt;}
.ws88{word-spacing:-10.080000pt;}
.ws73{word-spacing:-10.032000pt;}
.wsfa{word-spacing:-8.736000pt;}
.ws8c{word-spacing:-8.688000pt;}
.ws76{word-spacing:-8.544000pt;}
.ws116{word-spacing:-7.344000pt;}
.ws10f{word-spacing:-6.720000pt;}
.ws7f{word-spacing:-6.144000pt;}
.wsef{word-spacing:-6.133333pt;}
.ws62{word-spacing:-5.952000pt;}
.ws67{word-spacing:-5.904000pt;}
.ws111{word-spacing:-5.424000pt;}
.ws12c{word-spacing:-5.226667pt;}
.ws7a{word-spacing:-4.992000pt;}
.ws138{word-spacing:-4.853333pt;}
.ws75{word-spacing:-4.848000pt;}
.ws6b{word-spacing:-4.752000pt;}
.ws11a{word-spacing:-4.704000pt;}
.ws1e{word-spacing:-4.426667pt;}
.ws139{word-spacing:-4.266667pt;}
.wsf0{word-spacing:-4.160000pt;}
.ws112{word-spacing:-4.128000pt;}
.ws95{word-spacing:-4.000000pt;}
.ws107{word-spacing:-3.946667pt;}
.ws133{word-spacing:-3.840000pt;}
.ws30{word-spacing:-3.786667pt;}
.ws5b{word-spacing:-3.696000pt;}
.ws13d{word-spacing:-3.466667pt;}
.wsfb{word-spacing:-3.456000pt;}
.wse{word-spacing:-3.360000pt;}
.wsc{word-spacing:-3.306667pt;}
.ws5f{word-spacing:-3.264000pt;}
.ws12a{word-spacing:-3.253333pt;}
.wscc{word-spacing:-3.200000pt;}
.wsf4{word-spacing:-3.146667pt;}
.wsb0{word-spacing:-3.093333pt;}
.ws59{word-spacing:-3.072000pt;}
.wsda{word-spacing:-3.040000pt;}
.ws7d{word-spacing:-3.024000pt;}
.ws106{word-spacing:-2.986667pt;}
.ws5d{word-spacing:-2.976000pt;}
.ws103{word-spacing:-2.933333pt;}
.wsbe{word-spacing:-2.880000pt;}
.ws81{word-spacing:-2.832000pt;}
.ws3d{word-spacing:-2.826667pt;}
.ws11b{word-spacing:-2.784000pt;}
.wsd7{word-spacing:-2.773333pt;}
.wscb{word-spacing:-2.720000pt;}
.ws2d{word-spacing:-2.666667pt;}
.ws4a{word-spacing:-2.613333pt;}
.ws7c{word-spacing:-2.592000pt;}
.ws8e{word-spacing:-2.560000pt;}
.wse2{word-spacing:-2.506667pt;}
.ws2e{word-spacing:-2.453333pt;}
.ws4e{word-spacing:-2.400000pt;}
.ws14c{word-spacing:-2.352000pt;}
.wsc3{word-spacing:-2.346667pt;}
.ws1f{word-spacing:-2.293333pt;}
.ws8d{word-spacing:-2.240000pt;}
.ws77{word-spacing:-2.208000pt;}
.ws35{word-spacing:-2.186667pt;}
.wsd4{word-spacing:-2.133333pt;}
.ws118{word-spacing:-2.112000pt;}
.ws52{word-spacing:-2.080000pt;}
.ws84{word-spacing:-2.064000pt;}
.wsf5{word-spacing:-2.026667pt;}
.ws31{word-spacing:-1.973333pt;}
.wsa7{word-spacing:-1.920000pt;}
.ws6c{word-spacing:-1.872000pt;}
.wsaa{word-spacing:-1.866667pt;}
.ws48{word-spacing:-1.813333pt;}
.wscd{word-spacing:-1.760000pt;}
.ws39{word-spacing:-1.706667pt;}
.wsa2{word-spacing:-1.653333pt;}
.ws11d{word-spacing:-1.600000pt;}
.wsba{word-spacing:-1.546667pt;}
.ws122{word-spacing:-1.536000pt;}
.ws3f{word-spacing:-1.493333pt;}
.ws3e{word-spacing:-1.440000pt;}
.ws23{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.333333pt;}
.ws91{word-spacing:-1.280000pt;}
.ws144{word-spacing:-1.248000pt;}
.wsa1{word-spacing:-1.226667pt;}
.ws64{word-spacing:-1.200000pt;}
.ws1a{word-spacing:-1.173333pt;}
.wsbc{word-spacing:-1.120000pt;}
.ws8b{word-spacing:-1.104000pt;}
.ws1d{word-spacing:-1.066667pt;}
.wsd6{word-spacing:-1.013333pt;}
.ws4c{word-spacing:-0.960000pt;}
.ws7b{word-spacing:-0.912000pt;}
.wse0{word-spacing:-0.906667pt;}
.ws80{word-spacing:-0.864000pt;}
.ws18{word-spacing:-0.853333pt;}
.wse8{word-spacing:-0.800000pt;}
.ws46{word-spacing:-0.746667pt;}
.ws110{word-spacing:-0.720000pt;}
.ws3a{word-spacing:-0.693333pt;}
.ws147{word-spacing:-0.672000pt;}
.ws55{word-spacing:-0.640000pt;}
.ws4d{word-spacing:-0.586667pt;}
.ws13f{word-spacing:-0.576000pt;}
.ws12{word-spacing:-0.533333pt;}
.ws83{word-spacing:-0.528000pt;}
.ws53{word-spacing:-0.480000pt;}
.ws96{word-spacing:-0.426667pt;}
.ws78{word-spacing:-0.384000pt;}
.ws21{word-spacing:-0.373333pt;}
.ws5e{word-spacing:-0.336000pt;}
.ws2b{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.266667pt;}
.ws4b{word-spacing:-0.213333pt;}
.ws37{word-spacing:-0.160000pt;}
.ws14a{word-spacing:-0.144000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws115{word-spacing:-0.096000pt;}
.wsb4{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws145{word-spacing:0.048000pt;}
.ws9a{word-spacing:0.053333pt;}
.ws7e{word-spacing:0.096000pt;}
.ws2f{word-spacing:0.106667pt;}
.ws20{word-spacing:0.160000pt;}
.ws148{word-spacing:0.192000pt;}
.ws9f{word-spacing:0.213333pt;}
.ws61{word-spacing:0.240000pt;}
.ws17{word-spacing:0.266667pt;}
.ws89{word-spacing:0.288000pt;}
.wsf{word-spacing:0.320000pt;}
.ws14b{word-spacing:0.336000pt;}
.ws19{word-spacing:0.373333pt;}
.ws146{word-spacing:0.384000pt;}
.ws8{word-spacing:0.426667pt;}
.ws13{word-spacing:0.480000pt;}
.ws60{word-spacing:0.528000pt;}
.ws36{word-spacing:0.533333pt;}
.ws113{word-spacing:0.576000pt;}
.ws2a{word-spacing:0.586667pt;}
.ws149{word-spacing:0.624000pt;}
.ws28{word-spacing:0.640000pt;}
.ws142{word-spacing:0.672000pt;}
.ws102{word-spacing:0.693333pt;}
.wsd8{word-spacing:0.746667pt;}
.ws38{word-spacing:0.800000pt;}
.wsf2{word-spacing:0.853333pt;}
.ws5a{word-spacing:0.864000pt;}
.wsf6{word-spacing:0.906667pt;}
.ws65{word-spacing:0.960000pt;}
.wsaf{word-spacing:1.013333pt;}
.ws129{word-spacing:1.066667pt;}
.wsc0{word-spacing:1.120000pt;}
.ws27{word-spacing:1.173333pt;}
.ws5c{word-spacing:1.200000pt;}
.ws101{word-spacing:1.333333pt;}
.wsa3{word-spacing:1.386667pt;}
.ws66{word-spacing:1.392000pt;}
.ws13c{word-spacing:1.440000pt;}
.ws13b{word-spacing:1.546667pt;}
.wsfe{word-spacing:1.584000pt;}
.ws33{word-spacing:1.600000pt;}
.ws74{word-spacing:1.632000pt;}
.wsbd{word-spacing:1.653333pt;}
.ws10d{word-spacing:1.760000pt;}
.ws57{word-spacing:1.813333pt;}
.ws93{word-spacing:1.866667pt;}
.wsa4{word-spacing:1.920000pt;}
.ws119{word-spacing:1.968000pt;}
.ws1b{word-spacing:1.973333pt;}
.ws54{word-spacing:2.026667pt;}
.ws90{word-spacing:2.080000pt;}
.ws121{word-spacing:2.112000pt;}
.ws120{word-spacing:2.133333pt;}
.ws105{word-spacing:2.186667pt;}
.ws9c{word-spacing:2.240000pt;}
.wsc7{word-spacing:2.293333pt;}
.wscf{word-spacing:2.346667pt;}
.ws109{word-spacing:2.400000pt;}
.ws104{word-spacing:2.453333pt;}
.ws6a{word-spacing:2.496000pt;}
.wsbb{word-spacing:2.506667pt;}
.ws69{word-spacing:2.544000pt;}
.wse4{word-spacing:2.560000pt;}
.ws14e{word-spacing:2.592000pt;}
.wse6{word-spacing:2.613333pt;}
.wsa8{word-spacing:2.720000pt;}
.ws85{word-spacing:2.736000pt;}
.ws131{word-spacing:2.773333pt;}
.ws117{word-spacing:2.784000pt;}
.ws92{word-spacing:2.826667pt;}
.wsf9{word-spacing:2.880000pt;}
.wsed{word-spacing:2.933333pt;}
.wsf1{word-spacing:2.986667pt;}
.wsd0{word-spacing:3.040000pt;}
.ws1c{word-spacing:3.093333pt;}
.ws124{word-spacing:3.120000pt;}
.wsce{word-spacing:3.146667pt;}
.wsb6{word-spacing:3.200000pt;}
.ws82{word-spacing:3.216000pt;}
.wsca{word-spacing:3.253333pt;}
.ws9e{word-spacing:3.306667pt;}
.ws11c{word-spacing:3.413333pt;}
.ws16{word-spacing:3.466667pt;}
.ws108{word-spacing:3.520000pt;}
.wsd9{word-spacing:3.573333pt;}
.wsfd{word-spacing:3.600000pt;}
.ws130{word-spacing:3.626667pt;}
.ws114{word-spacing:3.696000pt;}
.ws8f{word-spacing:3.733333pt;}
.ws94{word-spacing:3.786667pt;}
.ws50{word-spacing:3.840000pt;}
.wsc9{word-spacing:3.893333pt;}
.wsb2{word-spacing:3.946667pt;}
.ws56{word-spacing:4.000000pt;}
.ws49{word-spacing:4.053333pt;}
.ws47{word-spacing:4.106667pt;}
.wse5{word-spacing:4.160000pt;}
.ws14d{word-spacing:4.176000pt;}
.ws9b{word-spacing:4.213333pt;}
.ws86{word-spacing:4.224000pt;}
.ws32{word-spacing:4.266667pt;}
.ws11{word-spacing:4.320000pt;}
.ws29{word-spacing:4.373333pt;}
.ws3c{word-spacing:4.426667pt;}
.wsb9{word-spacing:4.480000pt;}
.wsbf{word-spacing:4.533333pt;}
.ws3b{word-spacing:4.586667pt;}
.ws4f{word-spacing:4.693333pt;}
.wsfc{word-spacing:4.704000pt;}
.wsc5{word-spacing:4.746667pt;}
.wse3{word-spacing:4.800000pt;}
.ws140{word-spacing:4.848000pt;}
.ws13e{word-spacing:4.853333pt;}
.ws2c{word-spacing:4.906667pt;}
.wsd{word-spacing:4.960000pt;}
.ws8a{word-spacing:4.992000pt;}
.ws34{word-spacing:5.013333pt;}
.wsdf{word-spacing:5.066667pt;}
.ws68{word-spacing:5.088000pt;}
.ws22{word-spacing:5.120000pt;}
.ws11f{word-spacing:5.173333pt;}
.ws125{word-spacing:5.184000pt;}
.ws126{word-spacing:5.226667pt;}
.ws141{word-spacing:5.232000pt;}
.wsa5{word-spacing:5.280000pt;}
.ws100{word-spacing:5.333333pt;}
.ws63{word-spacing:5.376000pt;}
.wsff{word-spacing:5.386667pt;}
.wse7{word-spacing:5.440000pt;}
.ws14{word-spacing:5.493333pt;}
.ws51{word-spacing:5.546667pt;}
.ws45{word-spacing:5.600000pt;}
.wsc4{word-spacing:5.653333pt;}
.ws10c{word-spacing:5.706667pt;}
.ws87{word-spacing:5.712000pt;}
.wsc8{word-spacing:5.760000pt;}
.wsc6{word-spacing:5.813333pt;}
.wsf7{word-spacing:5.866667pt;}
.ws58{word-spacing:6.000000pt;}
.ws132{word-spacing:6.026667pt;}
.ws11e{word-spacing:6.080000pt;}
.wsb3{word-spacing:6.133333pt;}
.ws9{word-spacing:6.186667pt;}
.wsb1{word-spacing:6.240000pt;}
.wsa6{word-spacing:6.293333pt;}
.wsab{word-spacing:6.346667pt;}
.ws134{word-spacing:6.400000pt;}
.ws26{word-spacing:6.453333pt;}
.wsa9{word-spacing:6.506667pt;}
.ws14f{word-spacing:6.528000pt;}
.wsa0{word-spacing:6.560000pt;}
.wsd5{word-spacing:6.613333pt;}
.wsb{word-spacing:6.666667pt;}
.ws123{word-spacing:6.672000pt;}
.wsb5{word-spacing:6.720000pt;}
.ws137{word-spacing:6.986667pt;}
.ws12b{word-spacing:7.040000pt;}
.wsb8{word-spacing:8.106667pt;}
.wse1{word-spacing:8.266667pt;}
.ws10e{word-spacing:8.746667pt;}
.ws9d{word-spacing:8.906667pt;}
.wsb7{word-spacing:9.013333pt;}
.ws12f{word-spacing:9.066667pt;}
.wsf3{word-spacing:10.666667pt;}
.wsee{word-spacing:12.266667pt;}
._0{margin-left:-84.000000pt;}
._1e{margin-left:-12.618133pt;}
._12{margin-left:-10.373867pt;}
._26{margin-left:-8.197333pt;}
._6{margin-left:-6.747200pt;}
._10{margin-left:-5.600000pt;}
._4{margin-left:-4.266667pt;}
._5{margin-left:-2.933333pt;}
._f{margin-left:-2.026667pt;}
._2{margin-left:-1.092800pt;}
._3{width:1.005333pt;}
._9{width:1.931733pt;}
._8{width:3.520000pt;}
._b{width:5.255467pt;}
._7{width:6.933333pt;}
._a{width:7.840000pt;}
._e{width:9.333333pt;}
._11{width:10.346667pt;}
._1f{width:11.946667pt;}
._25{width:14.394667pt;}
._24{width:15.680000pt;}
._1b{width:18.413333pt;}
._13{width:20.736000pt;}
._15{width:22.080000pt;}
._22{width:25.488000pt;}
._1c{width:27.456000pt;}
._16{width:29.328000pt;}
._19{width:31.010667pt;}
._20{width:33.026667pt;}
._23{width:39.797333pt;}
._14{width:40.992000pt;}
._21{width:44.688000pt;}
._17{width:45.840000pt;}
._1d{width:47.472000pt;}
._1a{width:50.448000pt;}
._18{width:51.504000pt;}
._c{width:62.688000pt;}
._d{width:1243.794133pt;}
._1{width:1315.816533pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y177{bottom:74.013067pt;}
.y167{bottom:76.421867pt;}
.yf1{bottom:77.346400pt;}
.y3c{bottom:77.492800pt;}
.y119{bottom:77.613067pt;}
.y198{bottom:77.742133pt;}
.y1bb{bottom:77.755200pt;}
.yb8{bottom:79.355200pt;}
.y93{bottom:80.408800pt;}
.y68{bottom:80.421867pt;}
.y1e6{bottom:80.636667pt;}
.y13e{bottom:80.688533pt;}
.y160{bottom:81.346400pt;}
.y148{bottom:81.755200pt;}
.y1fb{bottom:82.008933pt;}
.y162{bottom:82.021867pt;}
.y166{bottom:88.421867pt;}
.yf0{bottom:89.346400pt;}
.y3b{bottom:89.492800pt;}
.y176{bottom:90.013067pt;}
.yb7{bottom:91.355200pt;}
.y197{bottom:93.742133pt;}
.y118{bottom:93.746400pt;}
.y147{bottom:93.755200pt;}
.y92{bottom:96.408800pt;}
.y67{bottom:96.421867pt;}
.y1e5{bottom:96.636667pt;}
.y13d{bottom:96.688533pt;}
.y15f{bottom:97.346400pt;}
.y1fa{bottom:98.008933pt;}
.y161{bottom:98.021867pt;}
.y165{bottom:100.421867pt;}
.yef{bottom:101.346400pt;}
.y146{bottom:105.755200pt;}
.y175{bottom:106.013067pt;}
.y196{bottom:109.742133pt;}
.y1ba{bottom:109.755200pt;}
.y117{bottom:109.879733pt;}
.y21c{bottom:111.088533pt;}
.y91{bottom:112.408800pt;}
.y66{bottom:112.421867pt;}
.y1e4{bottom:112.636667pt;}
.y13c{bottom:112.688533pt;}
.yee{bottom:113.346400pt;}
.y1f9{bottom:114.008933pt;}
.yb6{bottom:115.355200pt;}
.y145{bottom:117.755200pt;}
.y164{bottom:124.421867pt;}
.yed{bottom:125.346400pt;}
.y195{bottom:125.742133pt;}
.y1b9{bottom:125.755200pt;}
.yb5{bottom:127.355200pt;}
.y90{bottom:128.408800pt;}
.y65{bottom:128.421867pt;}
.y1e3{bottom:128.636667pt;}
.y13b{bottom:128.688533pt;}
.y15e{bottom:129.346400pt;}
.y144{bottom:129.755200pt;}
.y1f8{bottom:130.008933pt;}
.y252{bottom:135.746400pt;}
.y24a{bottom:137.334667pt;}
.yec{bottom:137.346400pt;}
.yb4{bottom:139.355200pt;}
.y194{bottom:141.742133pt;}
.y143{bottom:141.755200pt;}
.y116{bottom:142.146400pt;}
.y8f{bottom:144.408800pt;}
.y64{bottom:144.421867pt;}
.y22{bottom:144.435600pt;}
.y3a{bottom:144.448667pt;}
.y1e2{bottom:144.636667pt;}
.y13a{bottom:144.688533pt;}
.y1f7{bottom:146.008933pt;}
.y251{bottom:147.746400pt;}
.yeb{bottom:149.346400pt;}
.yb3{bottom:151.355200pt;}
.y249{bottom:151.734667pt;}
.y174{bottom:153.346400pt;}
.y142{bottom:153.755200pt;}
.y163{bottom:155.088533pt;}
.y193{bottom:157.742133pt;}
.y1b8{bottom:157.755200pt;}
.y115{bottom:158.279733pt;}
.y21b{bottom:159.088533pt;}
.y250{bottom:159.746400pt;}
.y8e{bottom:160.408800pt;}
.y63{bottom:160.421867pt;}
.y21{bottom:160.435600pt;}
.y39{bottom:160.448667pt;}
.y1e1{bottom:160.636667pt;}
.y139{bottom:160.688533pt;}
.yea{bottom:161.346400pt;}
.y1f6{bottom:162.008933pt;}
.yb2{bottom:163.355200pt;}
.y141{bottom:165.755200pt;}
.y248{bottom:166.134667pt;}
.y173{bottom:169.346400pt;}
.y24f{bottom:171.746400pt;}
.y21a{bottom:171.755200pt;}
.ye9{bottom:173.346400pt;}
.y192{bottom:173.742133pt;}
.y1b7{bottom:173.755200pt;}
.y114{bottom:174.413067pt;}
.yb1{bottom:175.355200pt;}
.y8d{bottom:176.408800pt;}
.y62{bottom:176.421867pt;}
.y20{bottom:176.435600pt;}
.y38{bottom:176.448667pt;}
.y1e0{bottom:176.636667pt;}
.y138{bottom:176.688533pt;}
.y15d{bottom:177.346400pt;}
.y140{bottom:177.755200pt;}
.y1f5{bottom:178.008933pt;}
.y247{bottom:180.534667pt;}
.y219{bottom:184.421867pt;}
.ye8{bottom:185.346400pt;}
.yb0{bottom:187.355200pt;}
.y191{bottom:189.742133pt;}
.y1b6{bottom:189.755200pt;}
.y113{bottom:190.546400pt;}
.y8c{bottom:192.408800pt;}
.y61{bottom:192.421867pt;}
.y1f{bottom:192.435600pt;}
.y1df{bottom:192.636667pt;}
.y137{bottom:192.688533pt;}
.y15c{bottom:193.346400pt;}
.y1f4{bottom:194.008933pt;}
.y246{bottom:194.934667pt;}
.y218{bottom:197.088533pt;}
.ye7{bottom:197.346400pt;}
.yaf{bottom:199.355200pt;}
.y172{bottom:201.346400pt;}
.y190{bottom:205.742133pt;}
.y13f{bottom:205.755200pt;}
.y112{bottom:206.679733pt;}
.y8b{bottom:208.408800pt;}
.y60{bottom:208.421867pt;}
.y1e{bottom:208.435600pt;}
.y37{bottom:208.448667pt;}
.y1de{bottom:208.636667pt;}
.y136{bottom:208.688533pt;}
.y245{bottom:209.334667pt;}
.ye6{bottom:209.346400pt;}
.y217{bottom:209.755200pt;}
.y1f3{bottom:210.008933pt;}
.yae{bottom:211.355200pt;}
.y171{bottom:217.346400pt;}
.ye5{bottom:221.346400pt;}
.y18f{bottom:221.742133pt;}
.y1b5{bottom:221.755200pt;}
.y216{bottom:222.421867pt;}
.y111{bottom:222.813067pt;}
.yad{bottom:223.355200pt;}
.y244{bottom:223.734667pt;}
.y8a{bottom:224.408800pt;}
.y5f{bottom:224.421867pt;}
.y1d{bottom:224.435600pt;}
.y36{bottom:224.448667pt;}
.y1dd{bottom:224.636667pt;}
.y135{bottom:224.688533pt;}
.y15b{bottom:225.346400pt;}
.y1f2{bottom:226.008933pt;}
.ye4{bottom:233.346400pt;}
.y215{bottom:235.088533pt;}
.yac{bottom:235.355200pt;}
.y18e{bottom:237.742133pt;}
.y1b4{bottom:237.755200pt;}
.y243{bottom:238.134667pt;}
.y110{bottom:238.946400pt;}
.y89{bottom:240.408800pt;}
.y5e{bottom:240.421867pt;}
.y1c{bottom:240.435600pt;}
.y35{bottom:240.448667pt;}
.y1dc{bottom:240.636667pt;}
.y134{bottom:240.688533pt;}
.y15a{bottom:241.346400pt;}
.y1f1{bottom:242.008933pt;}
.ye3{bottom:245.346400pt;}
.yab{bottom:247.355200pt;}
.y214{bottom:247.755200pt;}
.y170{bottom:249.346400pt;}
.y242{bottom:252.534667pt;}
.y18d{bottom:253.742133pt;}
.y1b3{bottom:253.755200pt;}
.y10f{bottom:255.079733pt;}
.y88{bottom:256.408800pt;}
.y5d{bottom:256.421867pt;}
.y1b{bottom:256.435600pt;}
.y34{bottom:256.448667pt;}
.y1db{bottom:256.636667pt;}
.y133{bottom:256.688533pt;}
.ye2{bottom:257.346400pt;}
.y1f0{bottom:258.008933pt;}
.yaa{bottom:259.355200pt;}
.y16f{bottom:265.346400pt;}
.y241{bottom:266.934667pt;}
.y18c{bottom:269.742133pt;}
.y1b2{bottom:269.755200pt;}
.y10e{bottom:271.213067pt;}
.ya9{bottom:271.355200pt;}
.y87{bottom:272.408800pt;}
.y5c{bottom:272.421867pt;}
.y1a{bottom:272.435600pt;}
.y1da{bottom:272.636667pt;}
.y132{bottom:272.688533pt;}
.y159{bottom:273.346400pt;}
.y1ef{bottom:274.008933pt;}
.y240{bottom:281.334667pt;}
.ye1{bottom:281.346400pt;}
.ya8{bottom:283.355200pt;}
.y18b{bottom:285.742133pt;}
.y1b1{bottom:285.755200pt;}
.y10d{bottom:287.346400pt;}
.y86{bottom:288.408800pt;}
.y5b{bottom:288.421867pt;}
.y19{bottom:288.435600pt;}
.y33{bottom:288.448667pt;}
.y1d9{bottom:288.636667pt;}
.y131{bottom:288.688533pt;}
.y158{bottom:289.346400pt;}
.y1ee{bottom:290.008933pt;}
.y213{bottom:292.421867pt;}
.ye0{bottom:293.346400pt;}
.ya7{bottom:295.355200pt;}
.y23f{bottom:295.734667pt;}
.y16e{bottom:297.346400pt;}
.y18a{bottom:301.742133pt;}
.y1b0{bottom:301.755200pt;}
.y10c{bottom:303.479733pt;}
.y85{bottom:304.408800pt;}
.y5a{bottom:304.421867pt;}
.y18{bottom:304.435600pt;}
.y32{bottom:304.448667pt;}
.y1d8{bottom:304.636667pt;}
.y130{bottom:304.688533pt;}
.ydf{bottom:305.346400pt;}
.y1ed{bottom:306.008933pt;}
.ya6{bottom:307.355200pt;}
.y212{bottom:308.421867pt;}
.y23e{bottom:310.134667pt;}
.y16d{bottom:313.346400pt;}
.yde{bottom:317.346400pt;}
.y189{bottom:317.742133pt;}
.y1af{bottom:317.755200pt;}
.y10b{bottom:319.613067pt;}
.y84{bottom:320.408800pt;}
.y59{bottom:320.421867pt;}
.y17{bottom:320.435600pt;}
.y31{bottom:320.448667pt;}
.y1d7{bottom:320.636667pt;}
.y12f{bottom:320.688533pt;}
.y1ec{bottom:322.008933pt;}
.y211{bottom:324.421867pt;}
.y23d{bottom:324.534667pt;}
.ydd{bottom:329.346400pt;}
.ya5{bottom:331.355200pt;}
.y188{bottom:333.742133pt;}
.y1ae{bottom:333.755200pt;}
.y10a{bottom:335.746400pt;}
.y83{bottom:336.408800pt;}
.y58{bottom:336.421867pt;}
.y16{bottom:336.435600pt;}
.y30{bottom:336.448667pt;}
.y1d6{bottom:336.636667pt;}
.y12e{bottom:336.688533pt;}
.y157{bottom:337.346400pt;}
.y1eb{bottom:338.008933pt;}
.y23c{bottom:338.934667pt;}
.y210{bottom:340.421867pt;}
.ydc{bottom:341.346400pt;}
.ya4{bottom:343.355200pt;}
.y16c{bottom:345.346400pt;}
.y187{bottom:349.742133pt;}
.y109{bottom:351.879733pt;}
.y82{bottom:352.408800pt;}
.y57{bottom:352.421867pt;}
.y15{bottom:352.435600pt;}
.y2f{bottom:352.448667pt;}
.y1d5{bottom:352.636667pt;}
.y12d{bottom:352.688533pt;}
.y23b{bottom:353.334667pt;}
.ydb{bottom:353.346400pt;}
.y1ea{bottom:354.008933pt;}
.ya3{bottom:355.355200pt;}
.y20f{bottom:356.421867pt;}
.y16b{bottom:361.346400pt;}
.yda{bottom:365.346400pt;}
.y186{bottom:365.742133pt;}
.y1ad{bottom:365.755200pt;}
.ya2{bottom:367.355200pt;}
.y23a{bottom:367.734667pt;}
.y108{bottom:368.013067pt;}
.y81{bottom:368.408800pt;}
.y56{bottom:368.421867pt;}
.y14{bottom:368.435600pt;}
.y2e{bottom:368.448667pt;}
.y1d4{bottom:368.636667pt;}
.y156{bottom:369.346400pt;}
.y1e9{bottom:370.008933pt;}
.y20e{bottom:372.421867pt;}
.yd9{bottom:377.346400pt;}
.y1ac{bottom:377.755200pt;}
.ya1{bottom:379.355200pt;}
.y185{bottom:381.742133pt;}
.y239{bottom:382.134667pt;}
.y107{bottom:384.146400pt;}
.y80{bottom:384.408800pt;}
.y55{bottom:384.421867pt;}
.y13{bottom:384.435600pt;}
.y2d{bottom:384.448667pt;}
.y1d3{bottom:384.636667pt;}
.y12c{bottom:384.688533pt;}
.y155{bottom:385.346400pt;}
.y1e8{bottom:386.008933pt;}
.y20d{bottom:388.421867pt;}
.yd8{bottom:389.346400pt;}
.y1ab{bottom:389.755200pt;}
.ya0{bottom:391.355200pt;}
.y16a{bottom:393.346400pt;}
.y238{bottom:396.534667pt;}
.y184{bottom:397.742133pt;}
.y106{bottom:400.279733pt;}
.y7f{bottom:400.408800pt;}
.y54{bottom:400.421867pt;}
.y12{bottom:400.435600pt;}
.y2c{bottom:400.448667pt;}
.y1d2{bottom:400.636667pt;}
.y12b{bottom:400.955200pt;}
.yd7{bottom:401.346400pt;}
.y1aa{bottom:401.755200pt;}
.y1e7{bottom:402.008933pt;}
.y9f{bottom:403.355200pt;}
.y20c{bottom:404.421867pt;}
.y237{bottom:410.934667pt;}
.yd6{bottom:413.346400pt;}
.y183{bottom:413.742133pt;}
.y1a9{bottom:413.755200pt;}
.y9e{bottom:415.355200pt;}
.y7e{bottom:416.408800pt;}
.y105{bottom:416.413067pt;}
.y53{bottom:416.421867pt;}
.y11{bottom:416.435600pt;}
.y2b{bottom:416.448667pt;}
.y1d1{bottom:416.636667pt;}
.y12a{bottom:417.221867pt;}
.y154{bottom:417.346400pt;}
.y20b{bottom:420.421867pt;}
.y236{bottom:425.334667pt;}
.yd5{bottom:425.346400pt;}
.y1a8{bottom:425.755200pt;}
.y9d{bottom:427.355200pt;}
.y182{bottom:429.742133pt;}
.y7d{bottom:432.408800pt;}
.y52{bottom:432.421867pt;}
.y10{bottom:432.435600pt;}
.y2a{bottom:432.448667pt;}
.y104{bottom:432.546400pt;}
.y1d0{bottom:432.636667pt;}
.y153{bottom:433.346400pt;}
.y129{bottom:433.488533pt;}
.y20a{bottom:436.421867pt;}
.yd4{bottom:437.346400pt;}
.y1a7{bottom:437.755200pt;}
.y9c{bottom:439.355200pt;}
.y235{bottom:439.734667pt;}
.y181{bottom:445.742133pt;}
.y7c{bottom:448.408800pt;}
.y51{bottom:448.421867pt;}
.yf{bottom:448.435600pt;}
.y29{bottom:448.448667pt;}
.y1cf{bottom:448.636667pt;}
.y103{bottom:448.679733pt;}
.yd3{bottom:449.346400pt;}
.y128{bottom:449.755200pt;}
.y9b{bottom:451.355200pt;}
.y209{bottom:452.421867pt;}
.y234{bottom:454.134667pt;}
.yd2{bottom:461.346400pt;}
.y180{bottom:461.742133pt;}
.y1a6{bottom:461.755200pt;}
.y9a{bottom:463.355200pt;}
.y7b{bottom:464.408800pt;}
.y50{bottom:464.421867pt;}
.ye{bottom:464.435600pt;}
.y28{bottom:464.448667pt;}
.y1ce{bottom:464.636667pt;}
.y102{bottom:464.813067pt;}
.y152{bottom:465.346400pt;}
.y127{bottom:466.021867pt;}
.y208{bottom:468.421867pt;}
.y233{bottom:468.534667pt;}
.yd1{bottom:473.346400pt;}
.y1a5{bottom:473.755200pt;}
.y99{bottom:475.355200pt;}
.y17f{bottom:477.742133pt;}
.y7a{bottom:480.408800pt;}
.y4f{bottom:480.421867pt;}
.yd{bottom:480.435600pt;}
.y27{bottom:480.448667pt;}
.y1cd{bottom:480.636667pt;}
.y101{bottom:480.946400pt;}
.y151{bottom:481.346400pt;}
.y126{bottom:482.288533pt;}
.y232{bottom:482.934667pt;}
.y207{bottom:484.421867pt;}
.yd0{bottom:485.346400pt;}
.y1a4{bottom:485.755200pt;}
.y98{bottom:487.355200pt;}
.y17e{bottom:493.742133pt;}
.y79{bottom:496.408800pt;}
.y4e{bottom:496.421867pt;}
.yc{bottom:496.435600pt;}
.y26{bottom:496.448667pt;}
.y1cc{bottom:496.636667pt;}
.y231{bottom:497.334667pt;}
.ycf{bottom:497.346400pt;}
.y1a3{bottom:497.755200pt;}
.y125{bottom:498.555200pt;}
.y97{bottom:499.355200pt;}
.y206{bottom:500.421867pt;}
.yce{bottom:509.346400pt;}
.y17d{bottom:509.742133pt;}
.y1a2{bottom:509.755200pt;}
.y96{bottom:511.355200pt;}
.y230{bottom:511.734667pt;}
.y78{bottom:512.408800pt;}
.y4d{bottom:512.421867pt;}
.yb{bottom:512.435600pt;}
.y25{bottom:512.448667pt;}
.y1cb{bottom:512.636667pt;}
.y100{bottom:513.346400pt;}
.y124{bottom:514.821867pt;}
.y205{bottom:516.421867pt;}
.y169{bottom:521.346400pt;}
.y1a1{bottom:521.755200pt;}
.y95{bottom:523.355200pt;}
.y17c{bottom:525.742133pt;}
.y22f{bottom:526.134667pt;}
.y77{bottom:528.408800pt;}
.y4c{bottom:528.421867pt;}
.ya{bottom:528.435600pt;}
.y24{bottom:528.448667pt;}
.y1ca{bottom:528.636667pt;}
.y150{bottom:529.346400pt;}
.yff{bottom:529.613067pt;}
.y123{bottom:531.088533pt;}
.y204{bottom:532.421867pt;}
.ycd{bottom:533.346400pt;}
.y1a0{bottom:533.755200pt;}
.y22e{bottom:540.534667pt;}
.y17b{bottom:541.742133pt;}
.y76{bottom:544.408800pt;}
.y4b{bottom:544.421867pt;}
.y9{bottom:544.435600pt;}
.y23{bottom:544.448667pt;}
.y1c9{bottom:544.636667pt;}
.ycc{bottom:545.346400pt;}
.yfe{bottom:545.879733pt;}
.y122{bottom:547.355200pt;}
.y203{bottom:548.421867pt;}
.y22d{bottom:554.934667pt;}
.ycb{bottom:557.346400pt;}
.y17a{bottom:557.742133pt;}
.y94{bottom:557.755200pt;}
.y75{bottom:560.408800pt;}
.y4a{bottom:560.421867pt;}
.y1c8{bottom:560.636667pt;}
.y14f{bottom:561.346400pt;}
.y19f{bottom:561.755200pt;}
.yfd{bottom:562.146400pt;}
.y202{bottom:564.421867pt;}
.y22c{bottom:569.334667pt;}
.yca{bottom:569.346400pt;}
.y179{bottom:573.742133pt;}
.y74{bottom:576.408800pt;}
.y49{bottom:576.421867pt;}
.y1c7{bottom:576.636667pt;}
.y14e{bottom:577.346400pt;}
.yfc{bottom:578.413067pt;}
.y121{bottom:579.621867pt;}
.y201{bottom:580.421867pt;}
.yc9{bottom:581.346400pt;}
.y22b{bottom:583.734667pt;}
.y178{bottom:589.742133pt;}
.y73{bottom:592.408800pt;}
.y48{bottom:592.421867pt;}
.y1c6{bottom:592.636667pt;}
.yc8{bottom:593.346400pt;}
.y19e{bottom:593.755200pt;}
.yfb{bottom:594.679733pt;}
.y120{bottom:595.621867pt;}
.y200{bottom:596.421867pt;}
.y7{bottom:596.742000pt;}
.y22a{bottom:598.134667pt;}
.yc7{bottom:605.346400pt;}
.y72{bottom:608.408800pt;}
.y47{bottom:608.421867pt;}
.y1c5{bottom:608.636667pt;}
.y14d{bottom:609.346400pt;}
.y19d{bottom:609.755200pt;}
.yfa{bottom:610.946400pt;}
.y11f{bottom:611.621867pt;}
.y1ff{bottom:612.421867pt;}
.y229{bottom:612.534667pt;}
.yc6{bottom:617.346400pt;}
.y6{bottom:622.075333pt;}
.y71{bottom:624.408800pt;}
.y46{bottom:624.421867pt;}
.y1c4{bottom:624.636667pt;}
.y14c{bottom:625.346400pt;}
.y19c{bottom:625.755200pt;}
.y228{bottom:626.934667pt;}
.yf9{bottom:627.213067pt;}
.y11e{bottom:627.621867pt;}
.y1fe{bottom:628.421867pt;}
.yc5{bottom:629.346400pt;}
.y70{bottom:640.408800pt;}
.y45{bottom:640.421867pt;}
.y227{bottom:641.334667pt;}
.yc4{bottom:641.346400pt;}
.y19b{bottom:641.755200pt;}
.yf8{bottom:643.479733pt;}
.y11d{bottom:643.621867pt;}
.y1fd{bottom:644.421867pt;}
.y5{bottom:647.408667pt;}
.yc3{bottom:653.346400pt;}
.y226{bottom:655.734667pt;}
.y6f{bottom:656.408800pt;}
.y44{bottom:656.421867pt;}
.y1c3{bottom:656.636667pt;}
.y14b{bottom:657.346400pt;}
.y19a{bottom:657.755200pt;}
.y11c{bottom:659.621867pt;}
.yf7{bottom:659.746400pt;}
.yc2{bottom:665.346400pt;}
.y225{bottom:670.134667pt;}
.y6e{bottom:672.408800pt;}
.y43{bottom:672.421867pt;}
.y1c2{bottom:672.636667pt;}
.y14a{bottom:673.346400pt;}
.y199{bottom:673.755200pt;}
.y1fc{bottom:675.088533pt;}
.yf6{bottom:676.013067pt;}
.yc1{bottom:677.346400pt;}
.y224{bottom:684.534667pt;}
.y6d{bottom:688.408800pt;}
.y42{bottom:688.421867pt;}
.y1c1{bottom:688.636667pt;}
.yc0{bottom:689.346400pt;}
.y8{bottom:690.360133pt;}
.y11b{bottom:691.621867pt;}
.yf5{bottom:692.279733pt;}
.y223{bottom:698.934667pt;}
.ybf{bottom:701.346400pt;}
.y6c{bottom:704.408800pt;}
.y41{bottom:704.421867pt;}
.y1c0{bottom:704.636667pt;}
.y149{bottom:705.346400pt;}
.y11a{bottom:706.021867pt;}
.yf4{bottom:708.546400pt;}
.y222{bottom:713.334667pt;}
.y168{bottom:713.346400pt;}
.y6b{bottom:720.408800pt;}
.y40{bottom:720.421867pt;}
.y1bf{bottom:720.636667pt;}
.yf3{bottom:724.812933pt;}
.ybe{bottom:725.346400pt;}
.y221{bottom:727.734667pt;}
.y24e{bottom:727.746400pt;}
.y4{bottom:736.408800pt;}
.y3f{bottom:736.421867pt;}
.y1be{bottom:736.636667pt;}
.ybd{bottom:737.346400pt;}
.yf2{bottom:741.079733pt;}
.y220{bottom:742.134667pt;}
.y24d{bottom:742.146267pt;}
.ybc{bottom:749.346400pt;}
.y6a{bottom:752.408800pt;}
.y3e{bottom:752.421867pt;}
.y21f{bottom:756.534667pt;}
.y24c{bottom:756.546400pt;}
.ybb{bottom:761.346400pt;}
.y3{bottom:768.408800pt;}
.y69{bottom:768.421867pt;}
.y1bd{bottom:768.636667pt;}
.y21e{bottom:770.934667pt;}
.y24b{bottom:770.946400pt;}
.yba{bottom:773.346400pt;}
.y2{bottom:784.408800pt;}
.y3d{bottom:784.421867pt;}
.y1bc{bottom:784.636667pt;}
.y21d{bottom:785.334667pt;}
.yb9{bottom:785.346400pt;}
.y1{bottom:833.413067pt;}
.h5{height:33.328125pt;}
.h8{height:37.031250pt;}
.h7{height:37.437500pt;}
.h9{height:37.968850pt;}
.h6{height:42.117188pt;}
.h2{height:42.632812pt;}
.h4{height:46.796875pt;}
.h3{height:47.369792pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:56.666667pt;}
.x11{left:74.000000pt;}
.x1{left:75.600000pt;}
.xa{left:78.000000pt;}
.xf{left:83.066667pt;}
.x14{left:92.933333pt;}
.x13{left:94.266667pt;}
.x4{left:96.933333pt;}
.x3{left:189.257200pt;}
.x2{left:235.844800pt;}
.xb{left:321.266667pt;}
.xe{left:337.266800pt;}
.x12{left:338.600133pt;}
.x5{left:340.200000pt;}
.xc{left:342.600000pt;}
.xd{left:347.666667pt;}
.x10{left:357.533333pt;}
.x8{left:358.866667pt;}
.x6{left:361.533333pt;}
.x7{left:366.600000pt;}
.x16{left:394.715200pt;}
.x15{left:410.237067pt;}
}




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