
    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_30cc4dca357ed8c2106bc011.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fc8937ef86eac796d3b07805.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_5afca3bfc5a25af7077cab1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.705566;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_7cf6745be91ed6708007ae2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.116211;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_2488a81e1228f53b4c9056a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_de17db18aee6e311fc036f4c.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_62e1c639a8dbf023285f206c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_30cc4dca357ed8c2106bc011.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_8e87c8d53422e8c702723d7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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);}
.v2{vertical-align:-27.464400px;}
.v8{vertical-align:-23.976000px;}
.v4{vertical-align:-21.978000px;}
.v5{vertical-align:-1.063800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.135600px;}
.v7{vertical-align:19.798200px;}
.v6{vertical-align:23.099400px;}
.v1{vertical-align:39.600000px;}
.ls2{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.330000px;}
.lsd{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.132000px;}
.lsc{letter-spacing:0.462000px;}
.ls5{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.594000px;}
.ls1a{letter-spacing:1.188000px;}
.ls11{letter-spacing:1.782000px;}
.ls19{letter-spacing:2.376000px;}
.ls18{letter-spacing:2.640000px;}
.ls12{letter-spacing:3.168000px;}
.lse{letter-spacing:3.675600px;}
.lsf{letter-spacing:3.676200px;}
.lsa{letter-spacing:6.024600px;}
.ls10{letter-spacing:6.147000px;}
.ls17{letter-spacing:6.889800px;}
.ls7{letter-spacing:9.708000px;}
.ls9{letter-spacing:10.269000px;}
.ls15{letter-spacing:18.888600px;}
.ls8{letter-spacing:33.847800px;}
.ls14{letter-spacing:35.122200px;}
.ls13{letter-spacing:35.122800px;}
.ls3{letter-spacing:75.849600px;}
.ls1{letter-spacing:114.151200px;}
.ls4{letter-spacing:258.744000px;}
.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;}
}
.wsbd{word-spacing:-19.668000px;}
.wsbb{word-spacing:-19.140000px;}
.wsbc{word-spacing:-18.282000px;}
.ws31{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.250000px;}
.wsa7{word-spacing:-17.094000px;}
.wsa5{word-spacing:-17.028000px;}
.wsbe{word-spacing:-16.632000px;}
.ws21{word-spacing:-16.500000px;}
.wsa8{word-spacing:-16.434000px;}
.wsa6{word-spacing:-16.170000px;}
.ws2{word-spacing:-11.592000px;}
.ws56{word-spacing:-10.494000px;}
.wsd{word-spacing:-8.928000px;}
.wsb1{word-spacing:-7.920000px;}
.ws96{word-spacing:-7.128000px;}
.ws9a{word-spacing:-5.112000px;}
.wsc3{word-spacing:-4.224000px;}
.ws6a{word-spacing:-3.960000px;}
.ws6b{word-spacing:-3.528000px;}
.ws42{word-spacing:-3.456000px;}
.ws65{word-spacing:-3.384000px;}
.ws19{word-spacing:-3.096000px;}
.wsae{word-spacing:-3.036000px;}
.ws14{word-spacing:-3.024000px;}
.ws29{word-spacing:-2.880000px;}
.ws61{word-spacing:-2.736000px;}
.ws1b{word-spacing:-2.520000px;}
.wsbf{word-spacing:-2.376000px;}
.ws41{word-spacing:-2.304000px;}
.ws59{word-spacing:-2.232000px;}
.ws82{word-spacing:-2.016000px;}
.wsac{word-spacing:-1.914000px;}
.ws63{word-spacing:-1.872000px;}
.wsa0{word-spacing:-1.800000px;}
.ws5a{word-spacing:-1.728000px;}
.wsc{word-spacing:-1.587000px;}
.ws84{word-spacing:-1.512000px;}
.wsc7{word-spacing:-1.188000px;}
.ws86{word-spacing:-1.152000px;}
.ws68{word-spacing:-0.936000px;}
.ws25{word-spacing:-0.864000px;}
.ws2d{word-spacing:-0.792000px;}
.ws7f{word-spacing:-0.648000px;}
.wsb5{word-spacing:-0.462000px;}
.ws16{word-spacing:-0.432000px;}
.ws80{word-spacing:-0.072000px;}
.wsab{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.wsa4{word-spacing:0.072000px;}
.ws8e{word-spacing:0.144000px;}
.ws1c{word-spacing:0.288000px;}
.wsaa{word-spacing:0.330000px;}
.ws7d{word-spacing:0.432000px;}
.ws7a{word-spacing:0.504000px;}
.ws43{word-spacing:0.720000px;}
.wsc8{word-spacing:0.792000px;}
.ws9{word-spacing:0.897000px;}
.ws62{word-spacing:1.008000px;}
.ws97{word-spacing:1.080000px;}
.ws9e{word-spacing:1.224000px;}
.ws15{word-spacing:1.656000px;}
.ws57{word-spacing:2.016000px;}
.ws9f{word-spacing:2.088000px;}
.ws92{word-spacing:2.376000px;}
.ws95{word-spacing:2.592000px;}
.ws10{word-spacing:2.736000px;}
.ws8{word-spacing:2.829000px;}
.wsb3{word-spacing:2.904000px;}
.ws4{word-spacing:3.036000px;}
.wsb7{word-spacing:3.168000px;}
.wsc4{word-spacing:3.300000px;}
.ws17{word-spacing:3.384000px;}
.ws83{word-spacing:3.672000px;}
.ws87{word-spacing:3.816000px;}
.wsc5{word-spacing:3.894000px;}
.wsc1{word-spacing:4.026000px;}
.ws13{word-spacing:4.176000px;}
.ws69{word-spacing:4.248000px;}
.ws67{word-spacing:4.320000px;}
.ws99{word-spacing:4.392000px;}
.ws5f{word-spacing:4.680000px;}
.wsb2{word-spacing:4.686000px;}
.ws28{word-spacing:4.752000px;}
.ws1d{word-spacing:4.896000px;}
.ws6{word-spacing:4.968000px;}
.ws7c{word-spacing:5.112000px;}
.wse{word-spacing:5.328000px;}
.ws91{word-spacing:5.400000px;}
.ws7{word-spacing:5.451000px;}
.ws6c{word-spacing:5.472000px;}
.ws2f{word-spacing:5.616000px;}
.ws8f{word-spacing:5.688000px;}
.ws98{word-spacing:5.904000px;}
.ws30{word-spacing:5.976000px;}
.ws79{word-spacing:6.192000px;}
.wsf{word-spacing:6.264000px;}
.ws1a{word-spacing:6.336000px;}
.wsc2{word-spacing:6.468000px;}
.ws40{word-spacing:6.480000px;}
.ws7b{word-spacing:6.552000px;}
.wsa2{word-spacing:6.624000px;}
.wsa{word-spacing:6.831000px;}
.wscd{word-spacing:6.864000px;}
.wsa1{word-spacing:6.912000px;}
.ws3{word-spacing:7.038000px;}
.ws66{word-spacing:7.056000px;}
.ws2e{word-spacing:7.272000px;}
.ws3f{word-spacing:7.488000px;}
.wsb0{word-spacing:7.590000px;}
.ws94{word-spacing:8.208000px;}
.ws81{word-spacing:8.568000px;}
.ws9d{word-spacing:8.712000px;}
.ws18{word-spacing:8.856000px;}
.wsb{word-spacing:8.901000px;}
.ws26{word-spacing:8.928000px;}
.ws58{word-spacing:9.072000px;}
.ws27{word-spacing:9.720000px;}
.wsb4{word-spacing:10.032000px;}
.wsc0{word-spacing:10.230000px;}
.ws90{word-spacing:10.296000px;}
.ws93{word-spacing:10.368000px;}
.ws2c{word-spacing:10.584000px;}
.wsb9{word-spacing:10.626000px;}
.ws64{word-spacing:10.656000px;}
.ws6d{word-spacing:10.728000px;}
.ws9c{word-spacing:11.088000px;}
.ws1e{word-spacing:11.808000px;}
.ws12{word-spacing:12.024000px;}
.wsad{word-spacing:12.606000px;}
.wsa3{word-spacing:14.328000px;}
.ws7e{word-spacing:15.336000px;}
.ws5{word-spacing:15.456000px;}
.ws11{word-spacing:15.480000px;}
.wsb6{word-spacing:16.236000px;}
.ws85{word-spacing:17.424000px;}
.ws60{word-spacing:17.784000px;}
.ws78{word-spacing:18.072000px;}
.wscc{word-spacing:19.206000px;}
.wsaf{word-spacing:20.064000px;}
.wsca{word-spacing:21.054000px;}
.wsba{word-spacing:23.628000px;}
.wsc9{word-spacing:27.060000px;}
.wsa9{word-spacing:33.048000px;}
.wsb8{word-spacing:34.188000px;}
.wscb{word-spacing:35.442000px;}
.ws9b{word-spacing:39.312000px;}
.ws1f{word-spacing:46.884000px;}
.wsc6{word-spacing:47.718000px;}
.ws32{word-spacing:48.289200px;}
.ws22{word-spacing:53.593200px;}
.ws23{word-spacing:64.711200px;}
.ws35{word-spacing:75.366000px;}
.ws6e{word-spacing:82.890600px;}
.ws52{word-spacing:85.371000px;}
.ws54{word-spacing:85.372200px;}
.ws2b{word-spacing:86.550000px;}
.ws72{word-spacing:89.718600px;}
.ws51{word-spacing:100.050000px;}
.ws5b{word-spacing:101.398800px;}
.ws6f{word-spacing:101.671200px;}
.ws4c{word-spacing:105.219600px;}
.ws53{word-spacing:106.443600px;}
.ws3e{word-spacing:118.370400px;}
.ws4a{word-spacing:118.371000px;}
.ws8d{word-spacing:119.044800px;}
.ws71{word-spacing:119.586600px;}
.ws8b{word-spacing:122.718000px;}
.ws50{word-spacing:127.230600px;}
.ws45{word-spacing:133.050000px;}
.ws5e{word-spacing:138.094800px;}
.ws39{word-spacing:138.219600px;}
.ws37{word-spacing:140.668800px;}
.ws38{word-spacing:149.550000px;}
.ws47{word-spacing:154.719600px;}
.ws77{word-spacing:155.718000px;}
.ws33{word-spacing:161.282400px;}
.ws3d{word-spacing:166.050000px;}
.ws3b{word-spacing:171.219600px;}
.ws55{word-spacing:173.041800px;}
.ws24{word-spacing:176.448600px;}
.ws75{word-spacing:177.696600px;}
.ws4d{word-spacing:182.550000px;}
.ws5d{word-spacing:191.657400px;}
.ws36{word-spacing:204.219600px;}
.ws4f{word-spacing:214.438200px;}
.ws8c{word-spacing:215.628000px;}
.ws5c{word-spacing:220.726200px;}
.ws3c{word-spacing:230.938200px;}
.ws89{word-spacing:243.134400px;}
.ws4b{word-spacing:248.550000px;}
.ws46{word-spacing:259.617600px;}
.ws48{word-spacing:260.852400px;}
.ws88{word-spacing:266.955000px;}
.ws34{word-spacing:270.219600px;}
.ws73{word-spacing:276.134400px;}
.ws70{word-spacing:276.696600px;}
.ws49{word-spacing:281.550000px;}
.ws4e{word-spacing:285.913800px;}
.ws44{word-spacing:295.059600px;}
.ws76{word-spacing:303.606600px;}
.ws3a{word-spacing:318.914400px;}
.ws8a{word-spacing:334.775400px;}
.ws74{word-spacing:365.326200px;}
.ws2a{word-spacing:484.963800px;}
.ws20{word-spacing:492.448800px;}
._49{margin-left:-16.359600px;}
._47{margin-left:-8.996400px;}
._6{margin-left:-7.711200px;}
._3{margin-left:-6.367200px;}
._0{margin-left:-5.352000px;}
._5{margin-left:-3.906000px;}
._1{margin-left:-2.898000px;}
._4{margin-left:-1.520400px;}
._7{width:1.835400px;}
._9{width:3.325800px;}
._a{width:4.774800px;}
._10{width:6.084000px;}
._e{width:7.823400px;}
._c{width:9.338400px;}
._d{width:10.396800px;}
._2{width:11.592000px;}
._8{width:12.937500px;}
._b{width:14.131200px;}
._f{width:15.151200px;}
._12{width:16.297200px;}
._48{width:19.740600px;}
._4b{width:21.642600px;}
._4a{width:23.291400px;}
._36{width:105.129000px;}
._30{width:107.304600px;}
._45{width:108.667800px;}
._11{width:120.892200px;}
._34{width:122.944200px;}
._2b{width:133.050000px;}
._33{width:134.676600px;}
._23{width:137.449200px;}
._42{width:139.218600px;}
._20{width:140.305200px;}
._43{width:141.667800px;}
._31{width:149.550000px;}
._21{width:154.586400px;}
._32{width:156.672000px;}
._46{width:161.645400px;}
._17{width:166.050000px;}
._2d{width:168.048000px;}
._2e{width:170.492400px;}
._24{width:182.550000px;}
._22{width:184.176600px;}
._1d{width:186.034800px;}
._1b{width:187.719600px;}
._2a{width:190.893000px;}
._37{width:193.350600px;}
._18{width:198.833400px;}
._1c{width:200.627400px;}
._38{width:202.956000px;}
._19{width:204.219600px;}
._16{width:207.392400px;}
._27{width:209.490600px;}
._2f{width:211.351200px;}
._3f{width:214.404000px;}
._1e{width:215.550000px;}
._14{width:220.844400px;}
._2c{width:222.686400px;}
._3a{width:223.921800px;}
._35{width:225.393000px;}
._1f{width:227.851200px;}
._15{width:232.050000px;}
._28{width:237.344400px;}
._1a{width:239.186400px;}
._25{width:251.670000px;}
._29{width:270.219600px;}
._40{width:277.982400px;}
._13{width:298.050000px;}
._41{width:316.455000px;}
._3c{width:339.769200px;}
._26{width:386.025600px;}
._44{width:392.197200px;}
._3e{width:402.271200px;}
._39{width:420.420600px;}
._3d{width:435.139200px;}
._3b{width:460.747200px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.478000px;}
.fs6{font-size:41.976000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.y11b{bottom:71.903100px;}
.y7a{bottom:83.539050px;}
.y109{bottom:85.273800px;}
.y152{bottom:85.641750px;}
.y15c{bottom:87.204600px;}
.y17c{bottom:88.242750px;}
.y24{bottom:88.578750px;}
.y12c{bottom:91.912050px;}
.y11a{bottom:92.808000px;}
.ybc{bottom:96.432150px;}
.y4b{bottom:101.941800px;}
.y79{bottom:103.658400px;}
.ye3{bottom:103.832850px;}
.y108{bottom:106.273800px;}
.y151{bottom:106.641750px;}
.y17b{bottom:106.992750px;}
.y23{bottom:108.078750px;}
.y15b{bottom:108.204600px;}
.y76{bottom:113.691300px;}
.y12b{bottom:115.297950px;}
.ybb{bottom:117.432150px;}
.y119{bottom:117.708000px;}
.y4a{bottom:122.941800px;}
.y78{bottom:123.458400px;}
.y75{bottom:123.591300px;}
.y17a{bottom:125.742750px;}
.ye2{bottom:127.218750px;}
.y107{bottom:127.273800px;}
.y22{bottom:127.578750px;}
.y150{bottom:127.641750px;}
.y15a{bottom:129.204600px;}
.yba{bottom:138.432150px;}
.y12a{bottom:138.683700px;}
.y118{bottom:142.607850px;}
.y77{bottom:143.258400px;}
.y49{bottom:143.941800px;}
.y21{bottom:147.078750px;}
.y106{bottom:148.273800px;}
.y14f{bottom:148.641750px;}
.y179{bottom:148.744650px;}
.y159{bottom:150.204600px;}
.ye1{bottom:150.604500px;}
.yb9{bottom:159.432150px;}
.y129{bottom:162.069600px;}
.y74{bottom:164.895150px;}
.y48{bottom:164.941800px;}
.y20{bottom:166.578750px;}
.y178{bottom:167.494650px;}
.y117{bottom:167.508000px;}
.y105{bottom:169.273800px;}
.y14e{bottom:169.641750px;}
.y158{bottom:171.204600px;}
.ye0{bottom:173.724450px;}
.yb8{bottom:180.432150px;}
.y128{bottom:184.519650px;}
.y73{bottom:184.695150px;}
.y47{bottom:185.941800px;}
.y1f{bottom:186.078750px;}
.y177{bottom:186.244650px;}
.y14d{bottom:190.641750px;}
.y157{bottom:192.204600px;}
.y116{bottom:192.540900px;}
.y6d{bottom:194.728050px;}
.y125{bottom:195.348450px;}
.ydf{bottom:197.110350px;}
.y104{bottom:199.273800px;}
.yb7{bottom:201.432150px;}
.y72{bottom:204.495000px;}
.y6f{bottom:204.495150px;}
.y176{bottom:204.994650px;}
.y1e{bottom:205.578750px;}
.y127{bottom:205.972650px;}
.y46{bottom:206.941800px;}
.y14c{bottom:211.641750px;}
.y156{bottom:213.204600px;}
.y1a1{bottom:214.210800px;}
.y6b{bottom:214.528050px;}
.y124{bottom:215.148450px;}
.y115{bottom:217.307850px;}
.yde{bottom:220.496100px;}
.yb6{bottom:222.432150px;}
.y175{bottom:223.744650px;}
.y6e{bottom:224.295150px;}
.y1d{bottom:225.078750px;}
.y126{bottom:225.772650px;}
.y103{bottom:227.411100px;}
.y45{bottom:227.941800px;}
.y14b{bottom:232.641750px;}
.y1a0{bottom:233.710800px;}
.y155{bottom:234.204600px;}
.y6c{bottom:234.328050px;}
.y114{bottom:242.207850px;}
.yb5{bottom:243.432150px;}
.y71{bottom:244.095150px;}
.ydd{bottom:244.147800px;}
.y1c{bottom:244.578750px;}
.y174{bottom:246.746700px;}
.y44{bottom:248.941800px;}
.y102{bottom:250.796850px;}
.y19f{bottom:252.460800px;}
.y154{bottom:255.204600px;}
.y123{bottom:257.200650px;}
.y70{bottom:263.895150px;}
.y1b{bottom:264.078750px;}
.yb4{bottom:264.432150px;}
.y173{bottom:265.496700px;}
.y113{bottom:267.107850px;}
.ydc{bottom:267.267750px;}
.y43{bottom:269.941800px;}
.y101{bottom:274.182750px;}
.y14a{bottom:274.641750px;}
.y19e{bottom:275.462700px;}
.y153{bottom:276.204600px;}
.y1a{bottom:283.578750px;}
.y172{bottom:284.246700px;}
.y6a{bottom:285.073950px;}
.yb3{bottom:285.432150px;}
.ydb{bottom:290.653650px;}
.y42{bottom:290.941800px;}
.y112{bottom:292.008000px;}
.y19d{bottom:294.212700px;}
.y122{bottom:297.204600px;}
.y100{bottom:297.568500px;}
.y171{bottom:302.996700px;}
.y19{bottom:303.078750px;}
.y68{bottom:304.873950px;}
.y66{bottom:305.006850px;}
.y41{bottom:311.941800px;}
.y19c{bottom:312.962700px;}
.yda{bottom:314.305350px;}
.y65{bottom:314.906850px;}
.yb2{bottom:315.432150px;}
.y111{bottom:317.040900px;}
.y149{bottom:317.841750px;}
.y121{bottom:318.204600px;}
.yff{bottom:320.688450px;}
.y170{bottom:321.746700px;}
.y18{bottom:322.578750px;}
.y67{bottom:324.673950px;}
.y19b{bottom:331.712700px;}
.y40{bottom:332.941800px;}
.yd9{bottom:333.056250px;}
.yb1{bottom:333.385950px;}
.y148{bottom:338.841750px;}
.y120{bottom:339.204600px;}
.yfe{bottom:339.479850px;}
.y16f{bottom:340.496700px;}
.y17{bottom:342.078750px;}
.yd6{bottom:342.996000px;}
.y110{bottom:343.035450px;}
.y69{bottom:344.473950px;}
.y10d{bottom:349.210650px;}
.yb0{bottom:353.185950px;}
.y3f{bottom:353.941800px;}
.y19a{bottom:354.714600px;}
.yfd{bottom:355.979850px;}
.y16e{bottom:359.246700px;}
.yd8{bottom:359.496300px;}
.yd5{bottom:359.762100px;}
.y147{bottom:359.841750px;}
.y11f{bottom:360.204600px;}
.y16{bottom:361.578750px;}
.y10f{bottom:365.022300px;}
.y64{bottom:366.623850px;}
.y10c{bottom:369.010650px;}
.yaf{bottom:372.985950px;}
.y199{bottom:373.464600px;}
.yab{bottom:374.549400px;}
.ya9{bottom:374.682300px;}
.y3e{bottom:374.941800px;}
.yd7{bottom:379.296300px;}
.yfc{bottom:379.365600px;}
.yd4{bottom:379.562100px;}
.y10e{bottom:380.022300px;}
.y146{bottom:380.841750px;}
.y15{bottom:381.078750px;}
.y11e{bottom:381.204600px;}
.y16d{bottom:382.248600px;}
.ya8{bottom:384.582300px;}
.y63{bottom:386.423850px;}
.yae{bottom:392.785950px;}
.yaa{bottom:394.349400px;}
.y3d{bottom:395.941800px;}
.y198{bottom:396.466650px;}
.y14{bottom:400.578750px;}
.y16c{bottom:400.998600px;}
.y145{bottom:401.841750px;}
.y11d{bottom:402.204600px;}
.yfb{bottom:402.751500px;}
.yd3{bottom:405.990600px;}
.y10b{bottom:409.196700px;}
.yad{bottom:412.585950px;}
.y197{bottom:415.216650px;}
.y3c{bottom:416.941800px;}
.y62{bottom:417.700650px;}
.y16b{bottom:419.748600px;}
.y13{bottom:420.078750px;}
.y144{bottom:422.841750px;}
.y11c{bottom:423.204600px;}
.yfa{bottom:426.137250px;}
.yac{bottom:432.385950px;}
.y196{bottom:433.966650px;}
.y3b{bottom:437.941800px;}
.y16a{bottom:438.498600px;}
.y12{bottom:439.578750px;}
.yd2{bottom:441.494550px;}
.y143{bottom:443.841750px;}
.y10a{bottom:444.204600px;}
.yf9{bottom:449.788950px;}
.y195{bottom:452.716650px;}
.ya7{bottom:455.297250px;}
.y3a{bottom:458.941800px;}
.y11{bottom:459.078750px;}
.y169{bottom:461.500650px;}
.yd1{bottom:462.494550px;}
.y142{bottom:464.841750px;}
.y61{bottom:465.204600px;}
.y9f{bottom:466.893750px;}
.yf8{bottom:473.174850px;}
.ya6{bottom:475.097250px;}
.y194{bottom:475.718700px;}
.ya2{bottom:476.660850px;}
.y10{bottom:478.578750px;}
.y39{bottom:479.941800px;}
.y168{bottom:480.250650px;}
.y141{bottom:485.841750px;}
.y60{bottom:486.204600px;}
.y9e{bottom:486.693750px;}
.y193{bottom:494.468700px;}
.ya5{bottom:494.897250px;}
.yd0{bottom:495.494550px;}
.ya1{bottom:496.460700px;}
.yf7{bottom:496.560600px;}
.y9b{bottom:496.593750px;}
.y38{bottom:500.941800px;}
.y167{bottom:503.252550px;}
.y9d{bottom:506.493750px;}
.y140{bottom:506.841750px;}
.y5f{bottom:507.204600px;}
.ya4{bottom:514.697250px;}
.ya0{bottom:516.260850px;}
.y192{bottom:517.470600px;}
.yf{bottom:517.878750px;}
.yf6{bottom:519.946500px;}
.y37{bottom:521.941800px;}
.y166{bottom:522.002550px;}
.y9c{bottom:526.293750px;}
.y13f{bottom:527.841750px;}
.y5e{bottom:528.204600px;}
.ya3{bottom:534.497250px;}
.y191{bottom:536.220600px;}
.ycf{bottom:537.494550px;}
.ye{bottom:539.478750px;}
.y165{bottom:540.752550px;}
.y36{bottom:542.941800px;}
.yf5{bottom:543.066450px;}
.y13e{bottom:548.841750px;}
.y5d{bottom:549.204600px;}
.y190{bottom:554.970600px;}
.yce{bottom:558.494550px;}
.y164{bottom:559.502550px;}
.y9a{bottom:559.895700px;}
.yd{bottom:561.078750px;}
.y35{bottom:563.941800px;}
.yf4{bottom:566.452200px;}
.y13d{bottom:569.841750px;}
.y5c{bottom:570.204600px;}
.y95{bottom:571.359300px;}
.y91{bottom:571.492200px;}
.y18f{bottom:573.720600px;}
.ycd{bottom:579.494550px;}
.y99{bottom:579.695700px;}
.y163{bottom:582.504600px;}
.yc{bottom:582.678750px;}
.y34{bottom:584.941800px;}
.yf3{bottom:589.838100px;}
.y13c{bottom:590.841750px;}
.y94{bottom:591.159150px;}
.y5b{bottom:591.204600px;}
.y90{bottom:591.292200px;}
.y18e{bottom:592.470600px;}
.y98{bottom:599.495700px;}
.ycc{bottom:600.494550px;}
.y8d{bottom:601.192200px;}
.y162{bottom:601.254600px;}
.yb{bottom:604.278750px;}
.y33{bottom:605.941800px;}
.y93{bottom:610.959300px;}
.y8f{bottom:611.092200px;}
.y13b{bottom:611.841750px;}
.y5a{bottom:612.204600px;}
.yf2{bottom:613.489800px;}
.y18d{bottom:615.472500px;}
.y97{bottom:619.295700px;}
.y161{bottom:620.004600px;}
.ycb{bottom:621.494550px;}
.ya{bottom:625.878750px;}
.y32{bottom:626.941800px;}
.y92{bottom:630.759300px;}
.y8e{bottom:630.892200px;}
.y13a{bottom:632.841750px;}
.y59{bottom:633.204600px;}
.y18c{bottom:634.222500px;}
.yf1{bottom:636.609750px;}
.y160{bottom:638.754600px;}
.y96{bottom:639.095700px;}
.yca{bottom:642.494550px;}
.y31{bottom:647.941800px;}
.y18b{bottom:652.972500px;}
.y139{bottom:653.841750px;}
.y58{bottom:654.204600px;}
.y15f{bottom:657.504600px;}
.yf0{bottom:659.995500px;}
.yc9{bottom:663.494550px;}
.y9{bottom:663.678750px;}
.y8c{bottom:663.696900px;}
.y30{bottom:668.941800px;}
.y18a{bottom:671.722500px;}
.y138{bottom:674.841750px;}
.y87{bottom:675.160500px;}
.y57{bottom:675.204600px;}
.y83{bottom:675.293400px;}
.y15e{bottom:676.254600px;}
.y8b{bottom:683.496900px;}
.yef{bottom:683.647200px;}
.yc8{bottom:684.494550px;}
.y8{bottom:685.278750px;}
.y2f{bottom:689.941800px;}
.y189{bottom:690.472500px;}
.y86{bottom:694.960500px;}
.y82{bottom:695.093400px;}
.y137{bottom:695.841750px;}
.y56{bottom:696.204600px;}
.y8a{bottom:703.296900px;}
.y7f{bottom:704.993400px;}
.yc7{bottom:705.494550px;}
.y7{bottom:706.878750px;}
.yee{bottom:707.033100px;}
.y188{bottom:709.222500px;}
.y2e{bottom:710.941800px;}
.y85{bottom:714.760500px;}
.y81{bottom:714.893400px;}
.y15d{bottom:716.604600px;}
.y136{bottom:716.841750px;}
.y55{bottom:717.204600px;}
.y89{bottom:723.096900px;}
.yc6{bottom:726.494550px;}
.y6{bottom:728.478750px;}
.yed{bottom:730.418850px;}
.y2d{bottom:731.941800px;}
.y187{bottom:732.224550px;}
.y84{bottom:734.560500px;}
.y80{bottom:734.693400px;}
.y135{bottom:737.841750px;}
.y54{bottom:738.204600px;}
.y88{bottom:742.896900px;}
.yc5{bottom:747.494550px;}
.y186{bottom:750.974550px;}
.y2c{bottom:752.941800px;}
.yec{bottom:753.804750px;}
.y134{bottom:758.841750px;}
.y53{bottom:759.204600px;}
.y7e{bottom:766.039650px;}
.yc4{bottom:768.494550px;}
.y185{bottom:769.724550px;}
.y5{bottom:773.478750px;}
.y2b{bottom:773.941800px;}
.yeb{bottom:777.190500px;}
.y133{bottom:779.841750px;}
.y52{bottom:780.204600px;}
.y7d{bottom:785.839650px;}
.y184{bottom:788.474550px;}
.yc3{bottom:789.494550px;}
.y2a{bottom:794.941800px;}
.yea{bottom:800.310450px;}
.y132{bottom:800.841750px;}
.y51{bottom:801.204600px;}
.y4{bottom:804.978750px;}
.yc2{bottom:810.494550px;}
.y183{bottom:811.476450px;}
.y29{bottom:815.941800px;}
.y7c{bottom:816.700500px;}
.ye9{bottom:817.451250px;}
.y50{bottom:822.204600px;}
.y182{bottom:830.226450px;}
.yc1{bottom:831.494550px;}
.y131{bottom:831.591750px;}
.ye8{bottom:833.951250px;}
.y3{bottom:836.478750px;}
.y28{bottom:836.941800px;}
.y4f{bottom:843.204600px;}
.y181{bottom:848.976450px;}
.y130{bottom:851.872350px;}
.yc0{bottom:852.494550px;}
.ye7{bottom:857.337000px;}
.y27{bottom:857.941800px;}
.y7b{bottom:864.204600px;}
.y180{bottom:867.726450px;}
.ybf{bottom:873.494550px;}
.y12f{bottom:875.258100px;}
.y26{bottom:878.941800px;}
.ye6{bottom:880.722900px;}
.y4e{bottom:885.204600px;}
.y17f{bottom:890.728500px;}
.ybe{bottom:894.494550px;}
.y12e{bottom:898.643850px;}
.ye5{bottom:904.108650px;}
.y4d{bottom:906.204600px;}
.y17e{bottom:909.478500px;}
.y25{bottom:921.541800px;}
.y12d{bottom:922.029750px;}
.y4c{bottom:927.204600px;}
.ybd{bottom:927.494550px;}
.ye4{bottom:927.760500px;}
.y17d{bottom:928.228500px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.ha{height:44.730469px;}
.h14{height:44.794598px;}
.h16{height:44.795198px;}
.h18{height:45.326198px;}
.h19{height:45.326798px;}
.h10{height:45.826172px;}
.he{height:45.858398px;}
.h8{height:47.909180px;}
.h6{height:50.027344px;}
.h3{height:50.400000px;}
.h4{height:56.929688px;}
.hd{height:57.750000px;}
.h7{height:60.375000px;}
.h9{height:63.000000px;}
.h17{height:65.656598px;}
.h15{height:68.957798px;}
.h13{height:69.885600px;}
.h5{height:73.500000px;}
.h12{height:84.331069px;}
.hf{height:84.926798px;}
.hc{height:97.350000px;}
.h11{height:97.350600px;}
.hb{height:136.950000px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xf{left:80.787450px;}
.x1{left:84.330750px;}
.x15{left:86.575500px;}
.x16{left:90.229200px;}
.xb{left:93.201450px;}
.x1d{left:94.236600px;}
.x8{left:95.701950px;}
.x4{left:99.640200px;}
.x1c{left:102.887700px;}
.x3{left:108.863700px;}
.x7{left:111.249900px;}
.xd{left:120.192750px;}
.x40{left:123.307050px;}
.x1a{left:124.949400px;}
.x41{left:127.559100px;}
.x6{left:130.104600px;}
.x11{left:134.787450px;}
.x12{left:136.063050px;}
.x3a{left:137.120400px;}
.x27{left:138.909600px;}
.x42{left:140.314950px;}
.x26{left:142.978200px;}
.x21{left:145.959150px;}
.x13{left:148.818900px;}
.xc{left:151.965150px;}
.x20{left:153.057000px;}
.x1b{left:157.272600px;}
.x25{left:160.227450px;}
.xe{left:161.650800px;}
.x14{left:165.355350px;}
.x22{left:168.030300px;}
.x35{left:169.260300px;}
.x31{left:177.260550px;}
.x5{left:180.928050px;}
.x36{left:182.767200px;}
.x30{left:185.063400px;}
.x2c{left:188.729250px;}
.x2b{left:190.683000px;}
.x33{left:195.597450px;}
.x2d{left:198.804000px;}
.x39{left:199.813500px;}
.x2f{left:200.882700px;}
.x34{left:203.621850px;}
.x32{left:216.895200px;}
.x2e{left:218.736150px;}
.x3f{left:219.817950px;}
.xa{left:224.743050px;}
.x3d{left:234.952350px;}
.x23{left:242.787450px;}
.x3e{left:243.806550px;}
.x18{left:246.974400px;}
.x9{left:256.405650px;}
.x1e{left:263.005050px;}
.x1f{left:275.388150px;}
.x17{left:278.469750px;}
.x10{left:352.777350px;}
.x2{left:356.388750px;}
.x2a{left:358.970100px;}
.x19{left:375.292350px;}
.x24{left:377.164350px;}
.x38{left:413.323800px;}
.x28{left:463.658100px;}
.x3b{left:464.689200px;}
.x29{left:466.409400px;}
.x3c{left:467.440500px;}
.x37{left:498.371250px;}
@media print{
.v2{vertical-align:-24.412800pt;}
.v8{vertical-align:-21.312000pt;}
.v4{vertical-align:-19.536000pt;}
.v5{vertical-align:-0.945600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.787200pt;}
.v7{vertical-align:17.598400pt;}
.v6{vertical-align:20.532800pt;}
.v1{vertical-align:35.200000pt;}
.ls2{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.293333pt;}
.lsd{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.117333pt;}
.lsc{letter-spacing:0.410667pt;}
.ls5{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.528000pt;}
.ls1a{letter-spacing:1.056000pt;}
.ls11{letter-spacing:1.584000pt;}
.ls19{letter-spacing:2.112000pt;}
.ls18{letter-spacing:2.346667pt;}
.ls12{letter-spacing:2.816000pt;}
.lse{letter-spacing:3.267200pt;}
.lsf{letter-spacing:3.267733pt;}
.lsa{letter-spacing:5.355200pt;}
.ls10{letter-spacing:5.464000pt;}
.ls17{letter-spacing:6.124267pt;}
.ls7{letter-spacing:8.629333pt;}
.ls9{letter-spacing:9.128000pt;}
.ls15{letter-spacing:16.789867pt;}
.ls8{letter-spacing:30.086933pt;}
.ls14{letter-spacing:31.219733pt;}
.ls13{letter-spacing:31.220267pt;}
.ls3{letter-spacing:67.421867pt;}
.ls1{letter-spacing:101.467733pt;}
.ls4{letter-spacing:229.994667pt;}
.wsbd{word-spacing:-17.482667pt;}
.wsbb{word-spacing:-17.013333pt;}
.wsbc{word-spacing:-16.250667pt;}
.ws31{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.333333pt;}
.wsa7{word-spacing:-15.194667pt;}
.wsa5{word-spacing:-15.136000pt;}
.wsbe{word-spacing:-14.784000pt;}
.ws21{word-spacing:-14.666667pt;}
.wsa8{word-spacing:-14.608000pt;}
.wsa6{word-spacing:-14.373333pt;}
.ws2{word-spacing:-10.304000pt;}
.ws56{word-spacing:-9.328000pt;}
.wsd{word-spacing:-7.936000pt;}
.wsb1{word-spacing:-7.040000pt;}
.ws96{word-spacing:-6.336000pt;}
.ws9a{word-spacing:-4.544000pt;}
.wsc3{word-spacing:-3.754667pt;}
.ws6a{word-spacing:-3.520000pt;}
.ws6b{word-spacing:-3.136000pt;}
.ws42{word-spacing:-3.072000pt;}
.ws65{word-spacing:-3.008000pt;}
.ws19{word-spacing:-2.752000pt;}
.wsae{word-spacing:-2.698667pt;}
.ws14{word-spacing:-2.688000pt;}
.ws29{word-spacing:-2.560000pt;}
.ws61{word-spacing:-2.432000pt;}
.ws1b{word-spacing:-2.240000pt;}
.wsbf{word-spacing:-2.112000pt;}
.ws41{word-spacing:-2.048000pt;}
.ws59{word-spacing:-1.984000pt;}
.ws82{word-spacing:-1.792000pt;}
.wsac{word-spacing:-1.701333pt;}
.ws63{word-spacing:-1.664000pt;}
.wsa0{word-spacing:-1.600000pt;}
.ws5a{word-spacing:-1.536000pt;}
.wsc{word-spacing:-1.410667pt;}
.ws84{word-spacing:-1.344000pt;}
.wsc7{word-spacing:-1.056000pt;}
.ws86{word-spacing:-1.024000pt;}
.ws68{word-spacing:-0.832000pt;}
.ws25{word-spacing:-0.768000pt;}
.ws2d{word-spacing:-0.704000pt;}
.ws7f{word-spacing:-0.576000pt;}
.wsb5{word-spacing:-0.410667pt;}
.ws16{word-spacing:-0.384000pt;}
.ws80{word-spacing:-0.064000pt;}
.wsab{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.064000pt;}
.ws8e{word-spacing:0.128000pt;}
.ws1c{word-spacing:0.256000pt;}
.wsaa{word-spacing:0.293333pt;}
.ws7d{word-spacing:0.384000pt;}
.ws7a{word-spacing:0.448000pt;}
.ws43{word-spacing:0.640000pt;}
.wsc8{word-spacing:0.704000pt;}
.ws9{word-spacing:0.797333pt;}
.ws62{word-spacing:0.896000pt;}
.ws97{word-spacing:0.960000pt;}
.ws9e{word-spacing:1.088000pt;}
.ws15{word-spacing:1.472000pt;}
.ws57{word-spacing:1.792000pt;}
.ws9f{word-spacing:1.856000pt;}
.ws92{word-spacing:2.112000pt;}
.ws95{word-spacing:2.304000pt;}
.ws10{word-spacing:2.432000pt;}
.ws8{word-spacing:2.514667pt;}
.wsb3{word-spacing:2.581333pt;}
.ws4{word-spacing:2.698667pt;}
.wsb7{word-spacing:2.816000pt;}
.wsc4{word-spacing:2.933333pt;}
.ws17{word-spacing:3.008000pt;}
.ws83{word-spacing:3.264000pt;}
.ws87{word-spacing:3.392000pt;}
.wsc5{word-spacing:3.461333pt;}
.wsc1{word-spacing:3.578667pt;}
.ws13{word-spacing:3.712000pt;}
.ws69{word-spacing:3.776000pt;}
.ws67{word-spacing:3.840000pt;}
.ws99{word-spacing:3.904000pt;}
.ws5f{word-spacing:4.160000pt;}
.wsb2{word-spacing:4.165333pt;}
.ws28{word-spacing:4.224000pt;}
.ws1d{word-spacing:4.352000pt;}
.ws6{word-spacing:4.416000pt;}
.ws7c{word-spacing:4.544000pt;}
.wse{word-spacing:4.736000pt;}
.ws91{word-spacing:4.800000pt;}
.ws7{word-spacing:4.845333pt;}
.ws6c{word-spacing:4.864000pt;}
.ws2f{word-spacing:4.992000pt;}
.ws8f{word-spacing:5.056000pt;}
.ws98{word-spacing:5.248000pt;}
.ws30{word-spacing:5.312000pt;}
.ws79{word-spacing:5.504000pt;}
.wsf{word-spacing:5.568000pt;}
.ws1a{word-spacing:5.632000pt;}
.wsc2{word-spacing:5.749333pt;}
.ws40{word-spacing:5.760000pt;}
.ws7b{word-spacing:5.824000pt;}
.wsa2{word-spacing:5.888000pt;}
.wsa{word-spacing:6.072000pt;}
.wscd{word-spacing:6.101333pt;}
.wsa1{word-spacing:6.144000pt;}
.ws3{word-spacing:6.256000pt;}
.ws66{word-spacing:6.272000pt;}
.ws2e{word-spacing:6.464000pt;}
.ws3f{word-spacing:6.656000pt;}
.wsb0{word-spacing:6.746667pt;}
.ws94{word-spacing:7.296000pt;}
.ws81{word-spacing:7.616000pt;}
.ws9d{word-spacing:7.744000pt;}
.ws18{word-spacing:7.872000pt;}
.wsb{word-spacing:7.912000pt;}
.ws26{word-spacing:7.936000pt;}
.ws58{word-spacing:8.064000pt;}
.ws27{word-spacing:8.640000pt;}
.wsb4{word-spacing:8.917333pt;}
.wsc0{word-spacing:9.093333pt;}
.ws90{word-spacing:9.152000pt;}
.ws93{word-spacing:9.216000pt;}
.ws2c{word-spacing:9.408000pt;}
.wsb9{word-spacing:9.445333pt;}
.ws64{word-spacing:9.472000pt;}
.ws6d{word-spacing:9.536000pt;}
.ws9c{word-spacing:9.856000pt;}
.ws1e{word-spacing:10.496000pt;}
.ws12{word-spacing:10.688000pt;}
.wsad{word-spacing:11.205333pt;}
.wsa3{word-spacing:12.736000pt;}
.ws7e{word-spacing:13.632000pt;}
.ws5{word-spacing:13.738667pt;}
.ws11{word-spacing:13.760000pt;}
.wsb6{word-spacing:14.432000pt;}
.ws85{word-spacing:15.488000pt;}
.ws60{word-spacing:15.808000pt;}
.ws78{word-spacing:16.064000pt;}
.wscc{word-spacing:17.072000pt;}
.wsaf{word-spacing:17.834667pt;}
.wsca{word-spacing:18.714667pt;}
.wsba{word-spacing:21.002667pt;}
.wsc9{word-spacing:24.053333pt;}
.wsa9{word-spacing:29.376000pt;}
.wsb8{word-spacing:30.389333pt;}
.wscb{word-spacing:31.504000pt;}
.ws9b{word-spacing:34.944000pt;}
.ws1f{word-spacing:41.674667pt;}
.wsc6{word-spacing:42.416000pt;}
.ws32{word-spacing:42.923733pt;}
.ws22{word-spacing:47.638400pt;}
.ws23{word-spacing:57.521067pt;}
.ws35{word-spacing:66.992000pt;}
.ws6e{word-spacing:73.680533pt;}
.ws52{word-spacing:75.885333pt;}
.ws54{word-spacing:75.886400pt;}
.ws2b{word-spacing:76.933333pt;}
.ws72{word-spacing:79.749867pt;}
.ws51{word-spacing:88.933333pt;}
.ws5b{word-spacing:90.132267pt;}
.ws6f{word-spacing:90.374400pt;}
.ws4c{word-spacing:93.528533pt;}
.ws53{word-spacing:94.616533pt;}
.ws3e{word-spacing:105.218133pt;}
.ws4a{word-spacing:105.218667pt;}
.ws8d{word-spacing:105.817600pt;}
.ws71{word-spacing:106.299200pt;}
.ws8b{word-spacing:109.082667pt;}
.ws50{word-spacing:113.093867pt;}
.ws45{word-spacing:118.266667pt;}
.ws5e{word-spacing:122.750933pt;}
.ws39{word-spacing:122.861867pt;}
.ws37{word-spacing:125.038933pt;}
.ws38{word-spacing:132.933333pt;}
.ws47{word-spacing:137.528533pt;}
.ws77{word-spacing:138.416000pt;}
.ws33{word-spacing:143.362133pt;}
.ws3d{word-spacing:147.600000pt;}
.ws3b{word-spacing:152.195200pt;}
.ws55{word-spacing:153.814933pt;}
.ws24{word-spacing:156.843200pt;}
.ws75{word-spacing:157.952533pt;}
.ws4d{word-spacing:162.266667pt;}
.ws5d{word-spacing:170.362133pt;}
.ws36{word-spacing:181.528533pt;}
.ws4f{word-spacing:190.611733pt;}
.ws8c{word-spacing:191.669333pt;}
.ws5c{word-spacing:196.201067pt;}
.ws3c{word-spacing:205.278400pt;}
.ws89{word-spacing:216.119467pt;}
.ws4b{word-spacing:220.933333pt;}
.ws46{word-spacing:230.771200pt;}
.ws48{word-spacing:231.868800pt;}
.ws88{word-spacing:237.293333pt;}
.ws34{word-spacing:240.195200pt;}
.ws73{word-spacing:245.452800pt;}
.ws70{word-spacing:245.952533pt;}
.ws49{word-spacing:250.266667pt;}
.ws4e{word-spacing:254.145600pt;}
.ws44{word-spacing:262.275200pt;}
.ws76{word-spacing:269.872533pt;}
.ws3a{word-spacing:283.479467pt;}
.ws8a{word-spacing:297.578133pt;}
.ws74{word-spacing:324.734400pt;}
.ws2a{word-spacing:431.078933pt;}
.ws20{word-spacing:437.732267pt;}
._49{margin-left:-14.541867pt;}
._47{margin-left:-7.996800pt;}
._6{margin-left:-6.854400pt;}
._3{margin-left:-5.659733pt;}
._0{margin-left:-4.757333pt;}
._5{margin-left:-3.472000pt;}
._1{margin-left:-2.576000pt;}
._4{margin-left:-1.351467pt;}
._7{width:1.631467pt;}
._9{width:2.956267pt;}
._a{width:4.244267pt;}
._10{width:5.408000pt;}
._e{width:6.954133pt;}
._c{width:8.300800pt;}
._d{width:9.241600pt;}
._2{width:10.304000pt;}
._8{width:11.500000pt;}
._b{width:12.561067pt;}
._f{width:13.467733pt;}
._12{width:14.486400pt;}
._48{width:17.547200pt;}
._4b{width:19.237867pt;}
._4a{width:20.703467pt;}
._36{width:93.448000pt;}
._30{width:95.381867pt;}
._45{width:96.593600pt;}
._11{width:107.459733pt;}
._34{width:109.283733pt;}
._2b{width:118.266667pt;}
._33{width:119.712533pt;}
._23{width:122.177067pt;}
._42{width:123.749867pt;}
._20{width:124.715733pt;}
._43{width:125.926933pt;}
._31{width:132.933333pt;}
._21{width:137.410133pt;}
._32{width:139.264000pt;}
._46{width:143.684800pt;}
._17{width:147.600000pt;}
._2d{width:149.376000pt;}
._2e{width:151.548800pt;}
._24{width:162.266667pt;}
._22{width:163.712533pt;}
._1d{width:165.364267pt;}
._1b{width:166.861867pt;}
._2a{width:169.682667pt;}
._37{width:171.867200pt;}
._18{width:176.740800pt;}
._1c{width:178.335467pt;}
._38{width:180.405333pt;}
._19{width:181.528533pt;}
._16{width:184.348800pt;}
._27{width:186.213867pt;}
._2f{width:187.867733pt;}
._3f{width:190.581333pt;}
._1e{width:191.600000pt;}
._14{width:196.306133pt;}
._2c{width:197.943467pt;}
._3a{width:199.041600pt;}
._35{width:200.349333pt;}
._1f{width:202.534400pt;}
._15{width:206.266667pt;}
._28{width:210.972800pt;}
._1a{width:212.610133pt;}
._25{width:223.706667pt;}
._29{width:240.195200pt;}
._40{width:247.095467pt;}
._13{width:264.933333pt;}
._41{width:281.293333pt;}
._3c{width:302.017067pt;}
._26{width:343.133867pt;}
._44{width:348.619733pt;}
._3e{width:357.574400pt;}
._39{width:373.707200pt;}
._3d{width:386.790400pt;}
._3b{width:409.553067pt;}
.fs5{font-size:34.202667pt;}
.fs6{font-size:37.312000pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.y11b{bottom:63.913867pt;}
.y7a{bottom:74.256933pt;}
.y109{bottom:75.798933pt;}
.y152{bottom:76.126000pt;}
.y15c{bottom:77.515200pt;}
.y17c{bottom:78.438000pt;}
.y24{bottom:78.736667pt;}
.y12c{bottom:81.699600pt;}
.y11a{bottom:82.496000pt;}
.ybc{bottom:85.717467pt;}
.y4b{bottom:90.614933pt;}
.y79{bottom:92.140800pt;}
.ye3{bottom:92.295867pt;}
.y108{bottom:94.465600pt;}
.y151{bottom:94.792667pt;}
.y17b{bottom:95.104667pt;}
.y23{bottom:96.070000pt;}
.y15b{bottom:96.181867pt;}
.y76{bottom:101.058933pt;}
.y12b{bottom:102.487067pt;}
.ybb{bottom:104.384133pt;}
.y119{bottom:104.629333pt;}
.y4a{bottom:109.281600pt;}
.y78{bottom:109.740800pt;}
.y75{bottom:109.858933pt;}
.y17a{bottom:111.771333pt;}
.ye2{bottom:113.083333pt;}
.y107{bottom:113.132267pt;}
.y22{bottom:113.403333pt;}
.y150{bottom:113.459333pt;}
.y15a{bottom:114.848533pt;}
.yba{bottom:123.050800pt;}
.y12a{bottom:123.274400pt;}
.y118{bottom:126.762533pt;}
.y77{bottom:127.340800pt;}
.y49{bottom:127.948267pt;}
.y21{bottom:130.736667pt;}
.y106{bottom:131.798933pt;}
.y14f{bottom:132.126000pt;}
.y179{bottom:132.217467pt;}
.y159{bottom:133.515200pt;}
.ye1{bottom:133.870667pt;}
.yb9{bottom:141.717467pt;}
.y129{bottom:144.061867pt;}
.y74{bottom:146.573467pt;}
.y48{bottom:146.614933pt;}
.y20{bottom:148.070000pt;}
.y178{bottom:148.884133pt;}
.y117{bottom:148.896000pt;}
.y105{bottom:150.465600pt;}
.y14e{bottom:150.792667pt;}
.y158{bottom:152.181867pt;}
.ye0{bottom:154.421733pt;}
.yb8{bottom:160.384133pt;}
.y128{bottom:164.017467pt;}
.y73{bottom:164.173467pt;}
.y47{bottom:165.281600pt;}
.y1f{bottom:165.403333pt;}
.y177{bottom:165.550800pt;}
.y14d{bottom:169.459333pt;}
.y157{bottom:170.848533pt;}
.y116{bottom:171.147467pt;}
.y6d{bottom:173.091600pt;}
.y125{bottom:173.643067pt;}
.ydf{bottom:175.209200pt;}
.y104{bottom:177.132267pt;}
.yb7{bottom:179.050800pt;}
.y72{bottom:181.773333pt;}
.y6f{bottom:181.773467pt;}
.y176{bottom:182.217467pt;}
.y1e{bottom:182.736667pt;}
.y127{bottom:183.086800pt;}
.y46{bottom:183.948267pt;}
.y14c{bottom:188.126000pt;}
.y156{bottom:189.515200pt;}
.y1a1{bottom:190.409600pt;}
.y6b{bottom:190.691600pt;}
.y124{bottom:191.243067pt;}
.y115{bottom:193.162533pt;}
.yde{bottom:195.996533pt;}
.yb6{bottom:197.717467pt;}
.y175{bottom:198.884133pt;}
.y6e{bottom:199.373467pt;}
.y1d{bottom:200.070000pt;}
.y126{bottom:200.686800pt;}
.y103{bottom:202.143200pt;}
.y45{bottom:202.614933pt;}
.y14b{bottom:206.792667pt;}
.y1a0{bottom:207.742933pt;}
.y155{bottom:208.181867pt;}
.y6c{bottom:208.291600pt;}
.y114{bottom:215.295867pt;}
.yb5{bottom:216.384133pt;}
.y71{bottom:216.973467pt;}
.ydd{bottom:217.020267pt;}
.y1c{bottom:217.403333pt;}
.y174{bottom:219.330400pt;}
.y44{bottom:221.281600pt;}
.y102{bottom:222.930533pt;}
.y19f{bottom:224.409600pt;}
.y154{bottom:226.848533pt;}
.y123{bottom:228.622800pt;}
.y70{bottom:234.573467pt;}
.y1b{bottom:234.736667pt;}
.yb4{bottom:235.050800pt;}
.y173{bottom:235.997067pt;}
.y113{bottom:237.429200pt;}
.ydc{bottom:237.571333pt;}
.y43{bottom:239.948267pt;}
.y101{bottom:243.718000pt;}
.y14a{bottom:244.126000pt;}
.y19e{bottom:244.855733pt;}
.y153{bottom:245.515200pt;}
.y1a{bottom:252.070000pt;}
.y172{bottom:252.663733pt;}
.y6a{bottom:253.399067pt;}
.yb3{bottom:253.717467pt;}
.ydb{bottom:258.358800pt;}
.y42{bottom:258.614933pt;}
.y112{bottom:259.562667pt;}
.y19d{bottom:261.522400pt;}
.y122{bottom:264.181867pt;}
.y100{bottom:264.505333pt;}
.y171{bottom:269.330400pt;}
.y19{bottom:269.403333pt;}
.y68{bottom:270.999067pt;}
.y66{bottom:271.117200pt;}
.y41{bottom:277.281600pt;}
.y19c{bottom:278.189067pt;}
.yda{bottom:279.382533pt;}
.y65{bottom:279.917200pt;}
.yb2{bottom:280.384133pt;}
.y111{bottom:281.814133pt;}
.y149{bottom:282.526000pt;}
.y121{bottom:282.848533pt;}
.yff{bottom:285.056400pt;}
.y170{bottom:285.997067pt;}
.y18{bottom:286.736667pt;}
.y67{bottom:288.599067pt;}
.y19b{bottom:294.855733pt;}
.y40{bottom:295.948267pt;}
.yd9{bottom:296.050000pt;}
.yb1{bottom:296.343067pt;}
.y148{bottom:301.192667pt;}
.y120{bottom:301.515200pt;}
.yfe{bottom:301.759867pt;}
.y16f{bottom:302.663733pt;}
.y17{bottom:304.070000pt;}
.yd6{bottom:304.885333pt;}
.y110{bottom:304.920400pt;}
.y69{bottom:306.199067pt;}
.y10d{bottom:310.409467pt;}
.yb0{bottom:313.943067pt;}
.y3f{bottom:314.614933pt;}
.y19a{bottom:315.301867pt;}
.yfd{bottom:316.426533pt;}
.y16e{bottom:319.330400pt;}
.yd8{bottom:319.552267pt;}
.yd5{bottom:319.788533pt;}
.y147{bottom:319.859333pt;}
.y11f{bottom:320.181867pt;}
.y16{bottom:321.403333pt;}
.y10f{bottom:324.464267pt;}
.y64{bottom:325.887867pt;}
.y10c{bottom:328.009467pt;}
.yaf{bottom:331.543067pt;}
.y199{bottom:331.968533pt;}
.yab{bottom:332.932800pt;}
.ya9{bottom:333.050933pt;}
.y3e{bottom:333.281600pt;}
.yd7{bottom:337.152267pt;}
.yfc{bottom:337.213867pt;}
.yd4{bottom:337.388533pt;}
.y10e{bottom:337.797600pt;}
.y146{bottom:338.526000pt;}
.y15{bottom:338.736667pt;}
.y11e{bottom:338.848533pt;}
.y16d{bottom:339.776533pt;}
.ya8{bottom:341.850933pt;}
.y63{bottom:343.487867pt;}
.yae{bottom:349.143067pt;}
.yaa{bottom:350.532800pt;}
.y3d{bottom:351.948267pt;}
.y198{bottom:352.414800pt;}
.y14{bottom:356.070000pt;}
.y16c{bottom:356.443200pt;}
.y145{bottom:357.192667pt;}
.y11d{bottom:357.515200pt;}
.yfb{bottom:358.001333pt;}
.yd3{bottom:360.880533pt;}
.y10b{bottom:363.730400pt;}
.yad{bottom:366.743067pt;}
.y197{bottom:369.081467pt;}
.y3c{bottom:370.614933pt;}
.y62{bottom:371.289467pt;}
.y16b{bottom:373.109867pt;}
.y13{bottom:373.403333pt;}
.y144{bottom:375.859333pt;}
.y11c{bottom:376.181867pt;}
.yfa{bottom:378.788667pt;}
.yac{bottom:384.343067pt;}
.y196{bottom:385.748133pt;}
.y3b{bottom:389.281600pt;}
.y16a{bottom:389.776533pt;}
.y12{bottom:390.736667pt;}
.yd2{bottom:392.439600pt;}
.y143{bottom:394.526000pt;}
.y10a{bottom:394.848533pt;}
.yf9{bottom:399.812400pt;}
.y195{bottom:402.414800pt;}
.ya7{bottom:404.708667pt;}
.y3a{bottom:407.948267pt;}
.y11{bottom:408.070000pt;}
.y169{bottom:410.222800pt;}
.yd1{bottom:411.106267pt;}
.y142{bottom:413.192667pt;}
.y61{bottom:413.515200pt;}
.y9f{bottom:415.016667pt;}
.yf8{bottom:420.599867pt;}
.ya6{bottom:422.308667pt;}
.y194{bottom:422.861067pt;}
.ya2{bottom:423.698533pt;}
.y10{bottom:425.403333pt;}
.y39{bottom:426.614933pt;}
.y168{bottom:426.889467pt;}
.y141{bottom:431.859333pt;}
.y60{bottom:432.181867pt;}
.y9e{bottom:432.616667pt;}
.y193{bottom:439.527733pt;}
.ya5{bottom:439.908667pt;}
.yd0{bottom:440.439600pt;}
.ya1{bottom:441.298400pt;}
.yf7{bottom:441.387200pt;}
.y9b{bottom:441.416667pt;}
.y38{bottom:445.281600pt;}
.y167{bottom:447.335600pt;}
.y9d{bottom:450.216667pt;}
.y140{bottom:450.526000pt;}
.y5f{bottom:450.848533pt;}
.ya4{bottom:457.508667pt;}
.ya0{bottom:458.898533pt;}
.y192{bottom:459.973867pt;}
.yf{bottom:460.336667pt;}
.yf6{bottom:462.174667pt;}
.y37{bottom:463.948267pt;}
.y166{bottom:464.002267pt;}
.y9c{bottom:467.816667pt;}
.y13f{bottom:469.192667pt;}
.y5e{bottom:469.515200pt;}
.ya3{bottom:475.108667pt;}
.y191{bottom:476.640533pt;}
.ycf{bottom:477.772933pt;}
.ye{bottom:479.536667pt;}
.y165{bottom:480.668933pt;}
.y36{bottom:482.614933pt;}
.yf5{bottom:482.725733pt;}
.y13e{bottom:487.859333pt;}
.y5d{bottom:488.181867pt;}
.y190{bottom:493.307200pt;}
.yce{bottom:496.439600pt;}
.y164{bottom:497.335600pt;}
.y9a{bottom:497.685067pt;}
.yd{bottom:498.736667pt;}
.y35{bottom:501.281600pt;}
.yf4{bottom:503.513067pt;}
.y13d{bottom:506.526000pt;}
.y5c{bottom:506.848533pt;}
.y95{bottom:507.874933pt;}
.y91{bottom:507.993067pt;}
.y18f{bottom:509.973867pt;}
.ycd{bottom:515.106267pt;}
.y99{bottom:515.285067pt;}
.y163{bottom:517.781867pt;}
.yc{bottom:517.936667pt;}
.y34{bottom:519.948267pt;}
.yf3{bottom:524.300533pt;}
.y13c{bottom:525.192667pt;}
.y94{bottom:525.474800pt;}
.y5b{bottom:525.515200pt;}
.y90{bottom:525.593067pt;}
.y18e{bottom:526.640533pt;}
.y98{bottom:532.885067pt;}
.ycc{bottom:533.772933pt;}
.y8d{bottom:534.393067pt;}
.y162{bottom:534.448533pt;}
.yb{bottom:537.136667pt;}
.y33{bottom:538.614933pt;}
.y93{bottom:543.074933pt;}
.y8f{bottom:543.193067pt;}
.y13b{bottom:543.859333pt;}
.y5a{bottom:544.181867pt;}
.yf2{bottom:545.324267pt;}
.y18d{bottom:547.086667pt;}
.y97{bottom:550.485067pt;}
.y161{bottom:551.115200pt;}
.ycb{bottom:552.439600pt;}
.ya{bottom:556.336667pt;}
.y32{bottom:557.281600pt;}
.y92{bottom:560.674933pt;}
.y8e{bottom:560.793067pt;}
.y13a{bottom:562.526000pt;}
.y59{bottom:562.848533pt;}
.y18c{bottom:563.753333pt;}
.yf1{bottom:565.875333pt;}
.y160{bottom:567.781867pt;}
.y96{bottom:568.085067pt;}
.yca{bottom:571.106267pt;}
.y31{bottom:575.948267pt;}
.y18b{bottom:580.420000pt;}
.y139{bottom:581.192667pt;}
.y58{bottom:581.515200pt;}
.y15f{bottom:584.448533pt;}
.yf0{bottom:586.662667pt;}
.yc9{bottom:589.772933pt;}
.y9{bottom:589.936667pt;}
.y8c{bottom:589.952800pt;}
.y30{bottom:594.614933pt;}
.y18a{bottom:597.086667pt;}
.y138{bottom:599.859333pt;}
.y87{bottom:600.142667pt;}
.y57{bottom:600.181867pt;}
.y83{bottom:600.260800pt;}
.y15e{bottom:601.115200pt;}
.y8b{bottom:607.552800pt;}
.yef{bottom:607.686400pt;}
.yc8{bottom:608.439600pt;}
.y8{bottom:609.136667pt;}
.y2f{bottom:613.281600pt;}
.y189{bottom:613.753333pt;}
.y86{bottom:617.742667pt;}
.y82{bottom:617.860800pt;}
.y137{bottom:618.526000pt;}
.y56{bottom:618.848533pt;}
.y8a{bottom:625.152800pt;}
.y7f{bottom:626.660800pt;}
.yc7{bottom:627.106267pt;}
.y7{bottom:628.336667pt;}
.yee{bottom:628.473867pt;}
.y188{bottom:630.420000pt;}
.y2e{bottom:631.948267pt;}
.y85{bottom:635.342667pt;}
.y81{bottom:635.460800pt;}
.y15d{bottom:636.981867pt;}
.y136{bottom:637.192667pt;}
.y55{bottom:637.515200pt;}
.y89{bottom:642.752800pt;}
.yc6{bottom:645.772933pt;}
.y6{bottom:647.536667pt;}
.yed{bottom:649.261200pt;}
.y2d{bottom:650.614933pt;}
.y187{bottom:650.866267pt;}
.y84{bottom:652.942667pt;}
.y80{bottom:653.060800pt;}
.y135{bottom:655.859333pt;}
.y54{bottom:656.181867pt;}
.y88{bottom:660.352800pt;}
.yc5{bottom:664.439600pt;}
.y186{bottom:667.532933pt;}
.y2c{bottom:669.281600pt;}
.yec{bottom:670.048667pt;}
.y134{bottom:674.526000pt;}
.y53{bottom:674.848533pt;}
.y7e{bottom:680.924133pt;}
.yc4{bottom:683.106267pt;}
.y185{bottom:684.199600pt;}
.y5{bottom:687.536667pt;}
.y2b{bottom:687.948267pt;}
.yeb{bottom:690.836000pt;}
.y133{bottom:693.192667pt;}
.y52{bottom:693.515200pt;}
.y7d{bottom:698.524133pt;}
.y184{bottom:700.866267pt;}
.yc3{bottom:701.772933pt;}
.y2a{bottom:706.614933pt;}
.yea{bottom:711.387067pt;}
.y132{bottom:711.859333pt;}
.y51{bottom:712.181867pt;}
.y4{bottom:715.536667pt;}
.yc2{bottom:720.439600pt;}
.y183{bottom:721.312400pt;}
.y29{bottom:725.281600pt;}
.y7c{bottom:725.956000pt;}
.ye9{bottom:726.623333pt;}
.y50{bottom:730.848533pt;}
.y182{bottom:737.979067pt;}
.yc1{bottom:739.106267pt;}
.y131{bottom:739.192667pt;}
.ye8{bottom:741.290000pt;}
.y3{bottom:743.536667pt;}
.y28{bottom:743.948267pt;}
.y4f{bottom:749.515200pt;}
.y181{bottom:754.645733pt;}
.y130{bottom:757.219867pt;}
.yc0{bottom:757.772933pt;}
.ye7{bottom:762.077333pt;}
.y27{bottom:762.614933pt;}
.y7b{bottom:768.181867pt;}
.y180{bottom:771.312400pt;}
.ybf{bottom:776.439600pt;}
.y12f{bottom:778.007200pt;}
.y26{bottom:781.281600pt;}
.ye6{bottom:782.864800pt;}
.y4e{bottom:786.848533pt;}
.y17f{bottom:791.758667pt;}
.ybe{bottom:795.106267pt;}
.y12e{bottom:798.794533pt;}
.ye5{bottom:803.652133pt;}
.y4d{bottom:805.515200pt;}
.y17e{bottom:808.425333pt;}
.y25{bottom:819.148267pt;}
.y12d{bottom:819.582000pt;}
.y4c{bottom:824.181867pt;}
.ybd{bottom:824.439600pt;}
.ye4{bottom:824.676000pt;}
.y17d{bottom:825.092000pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.ha{height:39.760417pt;}
.h14{height:39.817421pt;}
.h16{height:39.817954pt;}
.h18{height:40.289954pt;}
.h19{height:40.290487pt;}
.h10{height:40.734375pt;}
.he{height:40.763021pt;}
.h8{height:42.585938pt;}
.h6{height:44.468750pt;}
.h3{height:44.800000pt;}
.h4{height:50.604167pt;}
.hd{height:51.333333pt;}
.h7{height:53.666667pt;}
.h9{height:56.000000pt;}
.h17{height:58.361421pt;}
.h15{height:61.295821pt;}
.h13{height:62.120533pt;}
.h5{height:65.333333pt;}
.h12{height:74.960950pt;}
.hf{height:75.490487pt;}
.hc{height:86.533333pt;}
.h11{height:86.533867pt;}
.hb{height:121.733333pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xf{left:71.811067pt;}
.x1{left:74.960667pt;}
.x15{left:76.956000pt;}
.x16{left:80.203733pt;}
.xb{left:82.845733pt;}
.x1d{left:83.765867pt;}
.x8{left:85.068400pt;}
.x4{left:88.569067pt;}
.x1c{left:91.455733pt;}
.x3{left:96.767733pt;}
.x7{left:98.888800pt;}
.xd{left:106.838000pt;}
.x40{left:109.606267pt;}
.x1a{left:111.066133pt;}
.x41{left:113.385867pt;}
.x6{left:115.648533pt;}
.x11{left:119.811067pt;}
.x12{left:120.944933pt;}
.x3a{left:121.884800pt;}
.x27{left:123.475200pt;}
.x42{left:124.724400pt;}
.x26{left:127.091733pt;}
.x21{left:129.741467pt;}
.x13{left:132.283467pt;}
.xc{left:135.080133pt;}
.x20{left:136.050667pt;}
.x1b{left:139.797867pt;}
.x25{left:142.424400pt;}
.xe{left:143.689600pt;}
.x14{left:146.982533pt;}
.x22{left:149.360267pt;}
.x35{left:150.453600pt;}
.x31{left:157.564933pt;}
.x5{left:160.824933pt;}
.x36{left:162.459733pt;}
.x30{left:164.500800pt;}
.x2c{left:167.759333pt;}
.x2b{left:169.496000pt;}
.x33{left:173.864400pt;}
.x2d{left:176.714667pt;}
.x39{left:177.612000pt;}
.x2f{left:178.562400pt;}
.x34{left:180.997200pt;}
.x32{left:192.795733pt;}
.x2e{left:194.432133pt;}
.x3f{left:195.393733pt;}
.xa{left:199.771600pt;}
.x3d{left:208.846533pt;}
.x23{left:215.811067pt;}
.x3e{left:216.716933pt;}
.x18{left:219.532800pt;}
.x9{left:227.916133pt;}
.x1e{left:233.782267pt;}
.x1f{left:244.789467pt;}
.x17{left:247.528667pt;}
.x10{left:313.579867pt;}
.x2{left:316.790000pt;}
.x2a{left:319.084533pt;}
.x19{left:333.593200pt;}
.x24{left:335.257200pt;}
.x38{left:367.398933pt;}
.x28{left:412.140533pt;}
.x3b{left:413.057067pt;}
.x29{left:414.586133pt;}
.x3c{left:415.502667pt;}
.x37{left:442.996667pt;}
}




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