
    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_c25a4bb5a7f897553002b0b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_121a4d4e0650061b3eba8ea2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_a52f601ec23d96be2cbe1349.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_3170fe8fb53a47a12f8557c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_cc8dc5297a2af9b1674c8057.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_d5cc5f5d3993cf75383d8370.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_4492ad6cd25cb5f01b4c4ec0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.928223;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_6341e608339f36068697dfd7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.128906;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_8954aab501836a44546856f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3bdde2ee03a631ed4dbbc66c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128906;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:ffb;src:url('chunks/assets/font_cc3ecaa55ba6544d9cd9dc5c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-33.888000px;}
.v2{vertical-align:-18.030000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.984000px;}
.v3{vertical-align:17.550600px;}
.v6{vertical-align:26.976000px;}
.v5{vertical-align:33.888000px;}
.v7{vertical-align:54.000000px;}
.ls3{letter-spacing:-1.350000px;}
.ls5{letter-spacing:-0.840000px;}
.ls6{letter-spacing:-0.810000px;}
.ls4{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.540000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007800px;}
.lsa{letter-spacing:0.012816px;}
.ls7{letter-spacing:0.013416px;}
.lsc{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.960000px;}
.lse{letter-spacing:1.080000px;}
.ls1{letter-spacing:4.992000px;}
.ls9{letter-spacing:76.176000px;}
.ls8{letter-spacing:282.480000px;}
.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;}
}
.ws8f{word-spacing:-48.000000px;}
.ws63{word-spacing:-40.743000px;}
.ws8d{word-spacing:-40.705200px;}
.ws17{word-spacing:-40.689000px;}
.ws3{word-spacing:-30.864000px;}
.wsad{word-spacing:-13.014000px;}
.ws2{word-spacing:-11.568000px;}
.ws16{word-spacing:-7.587162px;}
.ws90{word-spacing:-7.107936px;}
.ws1{word-spacing:-6.744144px;}
.wsc6{word-spacing:-3.726000px;}
.ws6b{word-spacing:-2.592000px;}
.ws88{word-spacing:-2.484000px;}
.ws24{word-spacing:-2.430000px;}
.ws85{word-spacing:-2.376000px;}
.ws9c{word-spacing:-2.322000px;}
.ws4a{word-spacing:-2.268000px;}
.wsb4{word-spacing:-2.160000px;}
.ws6c{word-spacing:-2.106000px;}
.ws64{word-spacing:-1.998000px;}
.ws81{word-spacing:-1.944000px;}
.ws8a{word-spacing:-1.890000px;}
.wsa6{word-spacing:-1.836000px;}
.ws4c{word-spacing:-1.728000px;}
.wsa0{word-spacing:-1.674000px;}
.ws49{word-spacing:-1.620000px;}
.ws9d{word-spacing:-1.566000px;}
.ws65{word-spacing:-1.512000px;}
.ws89{word-spacing:-1.458000px;}
.ws14{word-spacing:-1.440000px;}
.ws9f{word-spacing:-1.404000px;}
.ws8{word-spacing:-1.350000px;}
.ws15{word-spacing:-1.344000px;}
.wsce{word-spacing:-1.296000px;}
.wsb9{word-spacing:-1.242000px;}
.ws74{word-spacing:-1.188000px;}
.ws1d{word-spacing:-1.134000px;}
.ws67{word-spacing:-1.080000px;}
.ws71{word-spacing:-1.026000px;}
.ws7{word-spacing:-0.972000px;}
.wsca{word-spacing:-0.918000px;}
.ws1b{word-spacing:-0.864000px;}
.ws50{word-spacing:-0.810000px;}
.wsa1{word-spacing:-0.756000px;}
.wsc0{word-spacing:-0.702000px;}
.wsd2{word-spacing:-0.594000px;}
.ws7d{word-spacing:-0.540000px;}
.ws4e{word-spacing:-0.486000px;}
.ws76{word-spacing:-0.432000px;}
.ws5d{word-spacing:-0.378000px;}
.ws48{word-spacing:-0.324000px;}
.wsc7{word-spacing:-0.270000px;}
.ws43{word-spacing:-0.216000px;}
.wsb8{word-spacing:-0.162000px;}
.wsae{word-spacing:-0.108000px;}
.ws0{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.wsa7{word-spacing:0.108000px;}
.ws3b{word-spacing:0.162000px;}
.ws75{word-spacing:0.270000px;}
.ws5{word-spacing:0.324000px;}
.ws21{word-spacing:0.378000px;}
.wsd3{word-spacing:0.432000px;}
.wsc4{word-spacing:0.486000px;}
.ws53{word-spacing:0.540000px;}
.wsc5{word-spacing:0.594000px;}
.ws6{word-spacing:0.648000px;}
.ws5b{word-spacing:0.702000px;}
.ws23{word-spacing:0.756000px;}
.wsa2{word-spacing:0.864000px;}
.wsb1{word-spacing:0.918000px;}
.ws77{word-spacing:1.080000px;}
.ws56{word-spacing:1.134000px;}
.wsaf{word-spacing:1.188000px;}
.ws7e{word-spacing:1.242000px;}
.ws9b{word-spacing:1.296000px;}
.wse{word-spacing:1.350000px;}
.ws10{word-spacing:1.404000px;}
.ws83{word-spacing:1.458000px;}
.wsc1{word-spacing:1.512000px;}
.wsf{word-spacing:1.566000px;}
.ws9{word-spacing:1.620000px;}
.ws2e{word-spacing:1.674000px;}
.wsbd{word-spacing:1.836000px;}
.wsac{word-spacing:1.890000px;}
.wsd1{word-spacing:1.944000px;}
.ws41{word-spacing:2.052000px;}
.ws59{word-spacing:2.160000px;}
.ws4b{word-spacing:2.214000px;}
.ws8b{word-spacing:2.268000px;}
.ws47{word-spacing:2.322000px;}
.wsd0{word-spacing:2.376000px;}
.wsa4{word-spacing:2.430000px;}
.ws3f{word-spacing:2.484000px;}
.wsa5{word-spacing:2.538000px;}
.wsa3{word-spacing:2.592000px;}
.ws97{word-spacing:2.646000px;}
.ws66{word-spacing:2.700000px;}
.ws7f{word-spacing:2.754000px;}
.ws6e{word-spacing:2.808000px;}
.ws19{word-spacing:2.862000px;}
.ws40{word-spacing:2.916000px;}
.wsc{word-spacing:2.970000px;}
.ws25{word-spacing:3.024000px;}
.ws44{word-spacing:3.078000px;}
.ws1e{word-spacing:3.132000px;}
.ws82{word-spacing:3.186000px;}
.wsb2{word-spacing:3.240000px;}
.ws30{word-spacing:3.294000px;}
.ws1a{word-spacing:3.348000px;}
.wsc8{word-spacing:3.456000px;}
.ws6f{word-spacing:3.510000px;}
.wsc2{word-spacing:3.564000px;}
.ws38{word-spacing:3.618000px;}
.ws3d{word-spacing:3.672000px;}
.wsb{word-spacing:3.726000px;}
.ws6d{word-spacing:3.780000px;}
.ws69{word-spacing:3.834000px;}
.ws2c{word-spacing:3.888000px;}
.ws13{word-spacing:3.984000px;}
.ws1f{word-spacing:3.996000px;}
.ws42{word-spacing:4.050000px;}
.ws57{word-spacing:4.104000px;}
.ws58{word-spacing:4.158000px;}
.wsc3{word-spacing:4.212000px;}
.ws3a{word-spacing:4.266000px;}
.ws8c{word-spacing:4.320000px;}
.wsbf{word-spacing:4.374000px;}
.ws80{word-spacing:4.428000px;}
.ws45{word-spacing:4.482000px;}
.ws4f{word-spacing:4.590000px;}
.ws31{word-spacing:4.644000px;}
.wsbc{word-spacing:4.698000px;}
.wsbe{word-spacing:4.752000px;}
.ws60{word-spacing:4.806000px;}
.wsba{word-spacing:4.860000px;}
.ws7c{word-spacing:4.914000px;}
.ws32{word-spacing:4.968000px;}
.ws12{word-spacing:4.992000px;}
.ws5f{word-spacing:5.022000px;}
.ws51{word-spacing:5.076000px;}
.ws4d{word-spacing:5.130000px;}
.ws27{word-spacing:5.184000px;}
.ws11{word-spacing:5.232000px;}
.ws36{word-spacing:5.238000px;}
.ws5a{word-spacing:5.292000px;}
.ws29{word-spacing:5.400000px;}
.wsab{word-spacing:5.454000px;}
.ws46{word-spacing:5.508000px;}
.ws52{word-spacing:5.562000px;}
.ws84{word-spacing:5.670000px;}
.ws86{word-spacing:5.724000px;}
.ws5c{word-spacing:5.886000px;}
.wsd{word-spacing:5.940000px;}
.ws39{word-spacing:5.994000px;}
.ws34{word-spacing:6.102000px;}
.ws87{word-spacing:6.210000px;}
.ws3e{word-spacing:6.372000px;}
.wscd{word-spacing:6.480000px;}
.wsa{word-spacing:6.588000px;}
.ws22{word-spacing:6.642000px;}
.ws1c{word-spacing:6.804000px;}
.wsbb{word-spacing:6.858000px;}
.ws7a{word-spacing:6.912000px;}
.ws5e{word-spacing:7.020000px;}
.ws9e{word-spacing:7.074000px;}
.wsc9{word-spacing:7.128000px;}
.ws68{word-spacing:7.182000px;}
.ws33{word-spacing:7.236000px;}
.ws35{word-spacing:7.290000px;}
.ws55{word-spacing:7.398000px;}
.ws2f{word-spacing:7.452000px;}
.wsb0{word-spacing:7.506000px;}
.ws6a{word-spacing:7.560000px;}
.ws26{word-spacing:7.776000px;}
.ws61{word-spacing:7.884000px;}
.ws70{word-spacing:7.938000px;}
.ws73{word-spacing:8.046000px;}
.wsb6{word-spacing:8.208000px;}
.ws78{word-spacing:8.262000px;}
.wsb3{word-spacing:8.316000px;}
.ws7b{word-spacing:8.478000px;}
.ws72{word-spacing:8.586000px;}
.ws54{word-spacing:8.640000px;}
.wsa9{word-spacing:8.802000px;}
.ws62{word-spacing:9.018000px;}
.ws37{word-spacing:9.234000px;}
.wscb{word-spacing:9.342000px;}
.ws2b{word-spacing:9.504000px;}
.ws2d{word-spacing:9.990000px;}
.wsa8{word-spacing:10.260000px;}
.wsb7{word-spacing:10.422000px;}
.wsb5{word-spacing:10.800000px;}
.wsaa{word-spacing:10.854000px;}
.ws3c{word-spacing:11.394000px;}
.wscf{word-spacing:11.502000px;}
.ws20{word-spacing:11.772000px;}
.ws79{word-spacing:12.312000px;}
.ws18{word-spacing:13.284000px;}
.ws28{word-spacing:13.392000px;}
.wscc{word-spacing:13.986000px;}
.ws2a{word-spacing:14.742000px;}
.ws96{word-spacing:157.488000px;}
.ws99{word-spacing:194.976000px;}
.ws8e{word-spacing:236.112000px;}
.ws93{word-spacing:270.576000px;}
.ws91{word-spacing:270.720000px;}
.ws92{word-spacing:302.928000px;}
.ws94{word-spacing:311.472000px;}
.ws95{word-spacing:438.048000px;}
.ws98{word-spacing:466.992000px;}
.ws9a{word-spacing:508.800000px;}
._58{margin-left:-1802.208000px;}
._3f{margin-left:-1793.664000px;}
._2f{margin-left:-1785.984000px;}
._5d{margin-left:-1667.136000px;}
._43{margin-left:-1658.640000px;}
._7{margin-left:-13.014000px;}
._9{margin-left:-11.340000px;}
._3{margin-left:-9.628200px;}
._6{margin-left:-6.361200px;}
._4{margin-left:-5.184000px;}
._2{margin-left:-2.845800px;}
._0{margin-left:-1.333800px;}
._1{width:1.193400px;}
._a{width:2.224800px;}
._5{width:3.385800px;}
._c{width:5.313600px;}
._d{width:6.355800px;}
._b{width:7.587000px;}
._8{width:9.412200px;}
._e{width:10.735200px;}
._27{width:11.808000px;}
._75{width:14.148000px;}
._79{width:19.548000px;}
._7b{width:20.574000px;}
._77{width:22.572000px;}
._7a{width:24.246000px;}
._76{width:26.136000px;}
._78{width:27.594000px;}
._81{width:28.836000px;}
._80{width:30.294000px;}
._7e{width:33.048000px;}
._7c{width:34.614000px;}
._7f{width:35.694000px;}
._71{width:38.544000px;}
._7d{width:40.716000px;}
._f{width:85.208400px;}
._6f{width:99.888000px;}
._72{width:115.920000px;}
._6c{width:117.600000px;}
._74{width:119.280000px;}
._67{width:121.440000px;}
._66{width:136.320000px;}
._6e{width:166.608000px;}
._70{width:177.360000px;}
._3c{width:205.248000px;}
._18{width:215.040000px;}
._38{width:223.104000px;}
._1f{width:225.168000px;}
._23{width:228.528000px;}
._35{width:229.680000px;}
._16{width:230.880000px;}
._26{width:238.224000px;}
._50{width:240.720000px;}
._5a{width:241.872000px;}
._49{width:243.024000px;}
._62{width:244.464000px;}
._39{width:247.056000px;}
._55{width:248.736000px;}
._2a{width:249.840000px;}
._73{width:251.568000px;}
._2c{width:253.872000px;}
._33{width:258.336000px;}
._63{width:263.520000px;}
._1a{width:265.296000px;}
._1c{width:269.232000px;}
._10{width:273.408000px;}
._22{width:285.408000px;}
._1e{width:289.488000px;}
._13{width:292.224000px;}
._6a{width:305.376000px;}
._28{width:306.864000px;}
._65{width:331.440000px;}
._15{width:347.424000px;}
._21{width:348.576000px;}
._19{width:350.112000px;}
._1b{width:351.264000px;}
._20{width:352.272000px;}
._14{width:353.760000px;}
._25{width:355.392000px;}
._24{width:356.880000px;}
._17{width:359.232000px;}
._12{width:361.488000px;}
._1d{width:363.360000px;}
._30{width:365.568000px;}
._11{width:367.632000px;}
._40{width:371.616000px;}
._29{width:383.520000px;}
._57{width:385.248000px;}
._3e{width:393.648000px;}
._53{width:395.136000px;}
._69{width:410.448000px;}
._4d{width:419.280000px;}
._54{width:422.736000px;}
._4c{width:427.728000px;}
._4f{width:429.792000px;}
._56{width:431.568000px;}
._61{width:433.632000px;}
._5b{width:438.000000px;}
._6b{width:447.216000px;}
._4a{width:448.416000px;}
._52{width:452.544000px;}
._4e{width:453.888000px;}
._47{width:457.104000px;}
._60{width:459.504000px;}
._42{width:462.096000px;}
._48{width:463.296000px;}
._2d{width:464.640000px;}
._3b{width:468.192000px;}
._4b{width:477.792000px;}
._51{width:478.944000px;}
._5e{width:484.464000px;}
._5f{width:486.096000px;}
._37{width:487.344000px;}
._2b{width:489.408000px;}
._44{width:492.912000px;}
._45{width:494.496000px;}
._36{width:495.840000px;}
._2e{width:501.888000px;}
._3d{width:503.376000px;}
._59{width:508.080000px;}
._32{width:510.000000px;}
._3a{width:512.976000px;}
._5c{width:514.128000px;}
._46{width:515.328000px;}
._41{width:516.528000px;}
._34{width:519.504000px;}
._64{width:560.496000px;}
._31{width:571.632000px;}
._6d{width:847.056000px;}
._68{width:857.184000px;}
.fc1{color:rgb(101,98,99);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.984000px;}
.fs6{font-size:31.482000px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:34.081350px;}
.y2d{bottom:35.569500px;}
.y144{bottom:85.037850px;}
.y1a7{bottom:85.039350px;}
.y1b1{bottom:85.252350px;}
.y69{bottom:85.294350px;}
.ya2{bottom:85.300350px;}
.y245{bottom:85.414350px;}
.yb2{bottom:85.680750px;}
.yc1{bottom:85.721250px;}
.y151{bottom:85.722000px;}
.y15e{bottom:85.762500px;}
.ydb{bottom:85.922400px;}
.yf4{bottom:86.003400px;}
.y27{bottom:86.122500px;}
.y143{bottom:97.039350px;}
.y26{bottom:101.122500px;}
.y1b0{bottom:101.749350px;}
.y68{bottom:101.791350px;}
.ya1{bottom:101.797350px;}
.y244{bottom:101.911350px;}
.yb1{bottom:102.177750px;}
.yc0{bottom:102.218250px;}
.y150{bottom:102.219000px;}
.y15d{bottom:102.259500px;}
.yda{bottom:102.419400px;}
.yf3{bottom:102.500400px;}
.y25{bottom:116.122500px;}
.y1af{bottom:118.246350px;}
.y67{bottom:118.288350px;}
.ya0{bottom:118.294350px;}
.y243{bottom:118.408350px;}
.yb0{bottom:118.674750px;}
.ybf{bottom:118.715250px;}
.y14f{bottom:118.716000px;}
.y15c{bottom:118.756500px;}
.yd9{bottom:118.916400px;}
.yf2{bottom:118.997400px;}
.y142{bottom:120.193800px;}
.y1ae{bottom:134.743350px;}
.y66{bottom:134.785350px;}
.y242{bottom:134.905350px;}
.yaf{bottom:135.171750px;}
.ybe{bottom:135.212250px;}
.yd8{bottom:135.413400px;}
.yf1{bottom:135.494400px;}
.y141{bottom:136.501800px;}
.y2c{bottom:148.399200px;}
.y1ad{bottom:151.240350px;}
.y65{bottom:151.282350px;}
.y9f{bottom:151.288350px;}
.y241{bottom:151.402350px;}
.yae{bottom:151.668750px;}
.ybd{bottom:151.709250px;}
.y14e{bottom:151.710000px;}
.y15b{bottom:151.750500px;}
.yd7{bottom:151.910400px;}
.yf0{bottom:151.991400px;}
.y13f{bottom:152.809800px;}
.y2b{bottom:163.399200px;}
.y1ac{bottom:167.737350px;}
.y64{bottom:167.779350px;}
.y240{bottom:167.899350px;}
.ybc{bottom:168.206250px;}
.y14d{bottom:168.207000px;}
.y15a{bottom:168.247500px;}
.yd6{bottom:168.407400px;}
.y140{bottom:169.117800px;}
.y2a{bottom:182.851200px;}
.y1b3{bottom:184.234350px;}
.y63{bottom:184.276350px;}
.y9e{bottom:184.282350px;}
.y23f{bottom:184.396350px;}
.yad{bottom:184.662750px;}
.ybb{bottom:184.703250px;}
.y14c{bottom:184.704000px;}
.y159{bottom:184.744500px;}
.yef{bottom:184.985400px;}
.y13e{bottom:185.413800px;}
.y29{bottom:197.251200px;}
.y1ab{bottom:200.731350px;}
.y62{bottom:200.773350px;}
.y9d{bottom:200.779350px;}
.y23e{bottom:200.893350px;}
.yba{bottom:201.200250px;}
.y14b{bottom:201.201000px;}
.y158{bottom:201.241500px;}
.yd5{bottom:201.464400px;}
.yee{bottom:201.482400px;}
.y13d{bottom:201.721800px;}
.y13a{bottom:209.881800px;}
.y28{bottom:211.651200px;}
.y1aa{bottom:217.228350px;}
.y61{bottom:217.270350px;}
.y9c{bottom:217.276350px;}
.y23d{bottom:217.390350px;}
.yac{bottom:217.656750px;}
.yb9{bottom:217.697250px;}
.y14a{bottom:217.698000px;}
.y157{bottom:217.738500px;}
.yd4{bottom:217.961400px;}
.yed{bottom:217.979400px;}
.y13c{bottom:218.029800px;}
.y1a9{bottom:233.725350px;}
.y1e0{bottom:233.752350px;}
.y9b{bottom:233.773350px;}
.y23c{bottom:233.887350px;}
.y211{bottom:233.914350px;}
.yb8{bottom:234.194250px;}
.y149{bottom:234.195000px;}
.y156{bottom:234.235500px;}
.y13b{bottom:234.337800px;}
.yd3{bottom:234.458400px;}
.yec{bottom:234.476400px;}
.y1a8{bottom:250.222350px;}
.y1b2{bottom:250.249350px;}
.y60{bottom:250.264350px;}
.y9a{bottom:250.270350px;}
.y23b{bottom:250.384350px;}
.y210{bottom:250.411350px;}
.y139{bottom:250.645800px;}
.yab{bottom:250.650750px;}
.y148{bottom:250.692000px;}
.y155{bottom:250.732500px;}
.yd2{bottom:250.955400px;}
.yeb{bottom:250.973400px;}
.ya{bottom:260.769750px;}
.y1df{bottom:266.746350px;}
.y5f{bottom:266.761350px;}
.y99{bottom:266.767350px;}
.y23a{bottom:266.881350px;}
.y20f{bottom:266.908350px;}
.y138{bottom:266.953800px;}
.yaa{bottom:267.147750px;}
.yb7{bottom:267.188250px;}
.y147{bottom:267.189000px;}
.y154{bottom:267.229500px;}
.yd1{bottom:267.452400px;}
.yea{bottom:267.470400px;}
.y135{bottom:275.113800px;}
.y9{bottom:277.266750px;}
.y1de{bottom:283.243350px;}
.y5e{bottom:283.258350px;}
.y137{bottom:283.261800px;}
.y98{bottom:283.264350px;}
.y239{bottom:283.378350px;}
.ya9{bottom:283.644750px;}
.yb6{bottom:283.685250px;}
.y146{bottom:283.686000px;}
.y153{bottom:283.726500px;}
.yd0{bottom:283.949400px;}
.ye9{bottom:283.967400px;}
.y1b7{bottom:292.135050px;}
.y8{bottom:293.763750px;}
.y136{bottom:299.569800px;}
.y1dd{bottom:299.740350px;}
.y5d{bottom:299.755350px;}
.y97{bottom:299.761350px;}
.y238{bottom:299.875350px;}
.y20e{bottom:299.902350px;}
.ya8{bottom:300.141750px;}
.yb5{bottom:300.182250px;}
.y145{bottom:300.183000px;}
.y152{bottom:300.223500px;}
.ycf{bottom:300.446400px;}
.ye8{bottom:300.464400px;}
.y7{bottom:310.260750px;}
.y134{bottom:315.877800px;}
.y1dc{bottom:316.237350px;}
.y5c{bottom:316.252350px;}
.y96{bottom:316.258350px;}
.y237{bottom:316.372350px;}
.y20d{bottom:316.399350px;}
.ya7{bottom:316.638750px;}
.yb4{bottom:316.679250px;}
.yce{bottom:316.943400px;}
.ye7{bottom:316.961400px;}
.y6{bottom:326.757750px;}
.y132{bottom:332.185800px;}
.y5b{bottom:332.749350px;}
.y95{bottom:332.755350px;}
.y236{bottom:332.869350px;}
.y20c{bottom:332.896350px;}
.ya6{bottom:333.135750px;}
.yb3{bottom:333.176250px;}
.ycd{bottom:333.440400px;}
.ye6{bottom:333.458400px;}
.y191{bottom:337.098300px;}
.y190{bottom:343.854300px;}
.y133{bottom:348.493800px;}
.y1db{bottom:349.231350px;}
.y5a{bottom:349.246350px;}
.y94{bottom:349.252350px;}
.y235{bottom:349.366350px;}
.y20b{bottom:349.393350px;}
.ycc{bottom:349.937400px;}
.ye5{bottom:349.955400px;}
.y131{bottom:364.789800px;}
.y1e{bottom:364.908750px;}
.y59{bottom:365.743350px;}
.y93{bottom:365.749350px;}
.y234{bottom:365.863350px;}
.y20a{bottom:365.890350px;}
.ycb{bottom:366.434400px;}
.ye4{bottom:366.452400px;}
.y18f{bottom:367.522800px;}
.yc2{bottom:370.412100px;}
.y12f{bottom:381.097800px;}
.y1da{bottom:382.225350px;}
.y58{bottom:382.240350px;}
.y92{bottom:382.246350px;}
.y233{bottom:382.360350px;}
.y209{bottom:382.387350px;}
.yca{bottom:382.931400px;}
.ye3{bottom:382.949400px;}
.y18e{bottom:384.466800px;}
.y1a6{bottom:389.799150px;}
.y130{bottom:397.405800px;}
.y57{bottom:398.737350px;}
.y91{bottom:398.743350px;}
.y1d9{bottom:398.830350px;}
.y232{bottom:398.857350px;}
.ye2{bottom:399.446400px;}
.y18d{bottom:401.410800px;}
.y1d{bottom:402.668250px;}
.y1a5{bottom:403.299150px;}
.y12e{bottom:413.701800px;}
.y56{bottom:415.234350px;}
.y1d8{bottom:415.327350px;}
.y231{bottom:415.354350px;}
.y208{bottom:415.381350px;}
.yc9{bottom:415.925400px;}
.ye1{bottom:415.943400px;}
.y18c{bottom:418.354800px;}
.y1c{bottom:419.165250px;}
.y12c{bottom:430.009800px;}
.y90{bottom:431.737350px;}
.y1d7{bottom:431.824350px;}
.y230{bottom:431.851350px;}
.y207{bottom:431.878350px;}
.yc8{bottom:432.422400px;}
.y189{bottom:435.298800px;}
.y1b{bottom:435.662250px;}
.y12d{bottom:446.317800px;}
.y55{bottom:448.228350px;}
.y8f{bottom:448.234350px;}
.y1d6{bottom:448.321350px;}
.y22f{bottom:448.348350px;}
.y206{bottom:448.375350px;}
.yc7{bottom:448.919400px;}
.ye0{bottom:448.937400px;}
.y1a{bottom:452.159250px;}
.y18b{bottom:452.242800px;}
.y12b{bottom:462.613800px;}
.y54{bottom:464.725350px;}
.y8e{bottom:464.731350px;}
.y1d5{bottom:464.818350px;}
.y22e{bottom:464.845350px;}
.y205{bottom:464.872350px;}
.yc6{bottom:465.416400px;}
.ydf{bottom:465.434400px;}
.y19{bottom:468.656250px;}
.y18a{bottom:469.186800px;}
.y12a{bottom:478.921800px;}
.y8d{bottom:481.228350px;}
.y1d4{bottom:481.315350px;}
.y53{bottom:481.330350px;}
.y22d{bottom:481.342350px;}
.y204{bottom:481.369350px;}
.yc5{bottom:481.913400px;}
.yde{bottom:481.931400px;}
.y18{bottom:485.153250px;}
.y188{bottom:486.130800px;}
.y126{bottom:488.485800px;}
.y129{bottom:495.229800px;}
.y8c{bottom:497.725350px;}
.y1d3{bottom:497.812350px;}
.y52{bottom:497.827350px;}
.y22c{bottom:497.839350px;}
.y203{bottom:497.866350px;}
.yc4{bottom:498.410400px;}
.ydd{bottom:498.428400px;}
.y17{bottom:501.650250px;}
.y125{bottom:501.985800px;}
.y187{bottom:503.074800px;}
.y186{bottom:509.830800px;}
.y128{bottom:511.537800px;}
.y51{bottom:514.324350px;}
.y22b{bottom:514.336350px;}
.y8b{bottom:514.405350px;}
.yc3{bottom:514.907400px;}
.ydc{bottom:514.925400px;}
.y127{bottom:527.845800px;}
.y1d2{bottom:530.806350px;}
.y50{bottom:530.821350px;}
.y22a{bottom:530.833350px;}
.y202{bottom:530.860350px;}
.y8a{bottom:530.902350px;}
.y16{bottom:534.644250px;}
.y185{bottom:539.654850px;}
.y124{bottom:544.153800px;}
.y1d1{bottom:547.303350px;}
.y4f{bottom:547.318350px;}
.y229{bottom:547.330350px;}
.y201{bottom:547.357350px;}
.y89{bottom:547.399350px;}
.y122{bottom:560.461800px;}
.yf7{bottom:562.034100px;}
.y1d0{bottom:563.800350px;}
.y4e{bottom:563.815350px;}
.y228{bottom:563.827350px;}
.y200{bottom:563.854350px;}
.y88{bottom:563.896350px;}
.y184{bottom:575.246850px;}
.yf6{bottom:575.534100px;}
.y123{bottom:576.769800px;}
.y1cf{bottom:580.297350px;}
.y4d{bottom:580.312350px;}
.y227{bottom:580.324350px;}
.y1ff{bottom:580.351350px;}
.y87{bottom:580.393350px;}
.y1b6{bottom:584.392350px;}
.y15{bottom:585.161250px;}
.yf5{bottom:589.034100px;}
.y182{bottom:592.190850px;}
.y121{bottom:593.065800px;}
.y1ce{bottom:596.794350px;}
.y4c{bottom:596.809350px;}
.y226{bottom:596.821350px;}
.y1fe{bottom:596.848350px;}
.y86{bottom:596.890350px;}
.y183{bottom:609.134850px;}
.y1cd{bottom:613.291350px;}
.y225{bottom:613.318350px;}
.y1fd{bottom:613.345350px;}
.y120{bottom:615.535800px;}
.y14{bottom:622.920750px;}
.y181{bottom:626.078850px;}
.y1cc{bottom:629.788350px;}
.y4b{bottom:629.803350px;}
.y224{bottom:629.815350px;}
.y1fc{bottom:629.842350px;}
.y85{bottom:629.884350px;}
.y13{bottom:639.417750px;}
.y180{bottom:643.022850px;}
.y1cb{bottom:646.285350px;}
.y4a{bottom:646.300350px;}
.y223{bottom:646.312350px;}
.y1fb{bottom:646.339350px;}
.y12{bottom:655.914750px;}
.y11f{bottom:656.395800px;}
.y17f{bottom:659.966850px;}
.y17b{bottom:661.694850px;}
.y1ca{bottom:662.782350px;}
.y49{bottom:662.797350px;}
.y222{bottom:662.809350px;}
.y1fa{bottom:662.836350px;}
.y84{bottom:662.878350px;}
.y11{bottom:672.411750px;}
.y11e{bottom:672.703800px;}
.y17a{bottom:675.194850px;}
.y17e{bottom:676.910850px;}
.y1c9{bottom:679.279350px;}
.y48{bottom:679.294350px;}
.y221{bottom:679.306350px;}
.y83{bottom:679.375350px;}
.y10{bottom:688.908750px;}
.y11d{bottom:689.011800px;}
.y17d{bottom:693.854850px;}
.y1c8{bottom:695.776350px;}
.y47{bottom:695.791350px;}
.y220{bottom:695.803350px;}
.y1f9{bottom:695.830350px;}
.y82{bottom:695.872350px;}
.y11c{bottom:705.319800px;}
.yf{bottom:705.405750px;}
.y114{bottom:706.719150px;}
.y17c{bottom:710.798850px;}
.y1c7{bottom:712.273350px;}
.y46{bottom:712.288350px;}
.y21f{bottom:712.300350px;}
.y81{bottom:712.369350px;}
.y118{bottom:716.287800px;}
.y113{bottom:720.219150px;}
.y11b{bottom:721.627800px;}
.ye{bottom:721.902750px;}
.y179{bottom:727.742850px;}
.y1c6{bottom:728.770350px;}
.y45{bottom:728.785350px;}
.y21e{bottom:728.797350px;}
.y1f8{bottom:728.824350px;}
.y80{bottom:728.866350px;}
.y117{bottom:729.787800px;}
.y11a{bottom:737.935800px;}
.yd{bottom:738.399750px;}
.y116{bottom:743.287800px;}
.y178{bottom:744.686850px;}
.y1c5{bottom:745.267350px;}
.y21d{bottom:745.294350px;}
.y1f7{bottom:745.321350px;}
.y7f{bottom:745.363350px;}
.y119{bottom:754.243800px;}
.yc{bottom:754.896750px;}
.y177{bottom:761.630850px;}
.y1c4{bottom:761.764350px;}
.y44{bottom:761.779350px;}
.y21c{bottom:761.791350px;}
.y1f6{bottom:761.818350px;}
.y7e{bottom:761.860350px;}
.y173{bottom:770.102850px;}
.y115{bottom:770.551800px;}
.y43{bottom:778.276350px;}
.y21b{bottom:778.288350px;}
.y1f5{bottom:778.315350px;}
.y7d{bottom:778.357350px;}
.y176{bottom:778.574850px;}
.y112{bottom:786.843150px;}
.yb{bottom:787.890750px;}
.y1c3{bottom:794.758350px;}
.y42{bottom:794.773350px;}
.y21a{bottom:794.785350px;}
.y1f4{bottom:794.812350px;}
.y7c{bottom:794.854350px;}
.y175{bottom:795.518850px;}
.y111{bottom:803.151150px;}
.y1c2{bottom:811.255350px;}
.y41{bottom:811.270350px;}
.y219{bottom:811.282350px;}
.y1f3{bottom:811.309350px;}
.y7b{bottom:811.351350px;}
.y174{bottom:812.462850px;}
.y10d{bottom:812.697750px;}
.y110{bottom:819.459150px;}
.y10c{bottom:826.197750px;}
.y24{bottom:827.350800px;}
.y1c1{bottom:827.752350px;}
.y40{bottom:827.767350px;}
.y218{bottom:827.779350px;}
.y1f2{bottom:827.806350px;}
.y7a{bottom:827.848350px;}
.y172{bottom:829.406850px;}
.y10f{bottom:835.767150px;}
.y171{bottom:837.878850px;}
.y1c0{bottom:844.249350px;}
.y3f{bottom:844.264350px;}
.y217{bottom:844.276350px;}
.y1f1{bottom:844.303350px;}
.y79{bottom:844.345350px;}
.y10e{bottom:852.075150px;}
.y1bf{bottom:860.746350px;}
.y3e{bottom:860.761350px;}
.y216{bottom:860.773350px;}
.y1f0{bottom:860.800350px;}
.y78{bottom:860.842350px;}
.y170{bottom:863.294850px;}
.y23{bottom:863.616750px;}
.y10b{bottom:868.365750px;}
.y1b5{bottom:869.274300px;}
.y1be{bottom:877.243350px;}
.y3d{bottom:877.258350px;}
.y215{bottom:877.270350px;}
.y1ef{bottom:877.297350px;}
.y77{bottom:877.339350px;}
.y16e{bottom:880.238850px;}
.y1b4{bottom:882.774300px;}
.y10a{bottom:884.673750px;}
.y22{bottom:889.110750px;}
.y1bd{bottom:893.740350px;}
.y3c{bottom:893.755350px;}
.y214{bottom:893.767350px;}
.y1ee{bottom:893.794350px;}
.y76{bottom:893.836350px;}
.y106{bottom:894.220350px;}
.y16f{bottom:897.182850px;}
.y109{bottom:900.981750px;}
.y105{bottom:907.720350px;}
.y3b{bottom:910.252350px;}
.y213{bottom:910.264350px;}
.y1ed{bottom:910.291350px;}
.y16d{bottom:914.126850px;}
.y108{bottom:917.289750px;}
.y1bc{bottom:926.734350px;}
.y3a{bottom:926.749350px;}
.y212{bottom:926.761350px;}
.y1ec{bottom:926.788350px;}
.y75{bottom:926.830350px;}
.y21{bottom:927.390600px;}
.y16b{bottom:931.070850px;}
.y107{bottom:933.597750px;}
.y1bb{bottom:943.231350px;}
.y198{bottom:943.258350px;}
.y1a4{bottom:943.298850px;}
.y16c{bottom:948.014850px;}
.y104{bottom:949.888350px;}
.y20{bottom:957.378600px;}
.y1ba{bottom:959.728350px;}
.y39{bottom:959.743350px;}
.y197{bottom:959.755350px;}
.y1eb{bottom:959.782350px;}
.y1a3{bottom:959.795850px;}
.y74{bottom:959.824350px;}
.y16a{bottom:964.958850px;}
.y103{bottom:966.196350px;}
.yff{bottom:975.756000px;}
.y1b9{bottom:976.225350px;}
.y38{bottom:976.240350px;}
.y196{bottom:976.252350px;}
.y1ea{bottom:976.279350px;}
.y1a2{bottom:976.292850px;}
.y168{bottom:981.902850px;}
.y102{bottom:982.504350px;}
.y1f{bottom:987.366600px;}
.yfe{bottom:989.256000px;}
.y37{bottom:992.737350px;}
.y1b8{bottom:992.749350px;}
.y1e9{bottom:992.776350px;}
.y1a1{bottom:992.789850px;}
.y73{bottom:992.818350px;}
.y101{bottom:998.812350px;}
.y169{bottom:998.846850px;}
.y36{bottom:1009.234350px;}
.y195{bottom:1009.246350px;}
.y1e8{bottom:1009.273350px;}
.y1a0{bottom:1009.286850px;}
.y72{bottom:1009.315350px;}
.y100{bottom:1015.120350px;}
.y167{bottom:1015.790850px;}
.y35{bottom:1025.731350px;}
.y194{bottom:1025.743350px;}
.y1e7{bottom:1025.770350px;}
.y19f{bottom:1025.783850px;}
.y71{bottom:1025.812350px;}
.y164{bottom:1025.990850px;}
.yfd{bottom:1031.424000px;}
.y166{bottom:1032.734850px;}
.y163{bottom:1039.490850px;}
.y34{bottom:1042.228350px;}
.y193{bottom:1042.240350px;}
.y1e6{bottom:1042.267350px;}
.y70{bottom:1042.309350px;}
.y165{bottom:1049.678850px;}
.yfc{bottom:1053.916050px;}
.y33{bottom:1058.725350px;}
.y192{bottom:1058.737350px;}
.y1e5{bottom:1058.764350px;}
.y19e{bottom:1058.777850px;}
.y6f{bottom:1058.806350px;}
.y162{bottom:1066.622850px;}
.y32{bottom:1075.234350px;}
.y19d{bottom:1075.274850px;}
.y6e{bottom:1075.303350px;}
.y160{bottom:1083.566850px;}
.y31{bottom:1091.731350px;}
.yfb{bottom:1091.744850px;}
.y1e4{bottom:1091.758350px;}
.y19c{bottom:1091.771850px;}
.y6d{bottom:1091.800350px;}
.y161{bottom:1100.510850px;}
.y30{bottom:1108.228350px;}
.yfa{bottom:1108.241850px;}
.y1e3{bottom:1108.255350px;}
.y19b{bottom:1108.268850px;}
.y6c{bottom:1108.297350px;}
.y5{bottom:1108.719150px;}
.y15f{bottom:1117.454850px;}
.y4{bottom:1123.719150px;}
.yf8{bottom:1124.725350px;}
.y1e2{bottom:1124.752350px;}
.y19a{bottom:1124.765850px;}
.y6b{bottom:1124.794350px;}
.y3{bottom:1138.719150px;}
.y2f{bottom:1141.222350px;}
.yf9{bottom:1141.235850px;}
.y1e1{bottom:1141.249350px;}
.y199{bottom:1141.262850px;}
.y6a{bottom:1141.291350px;}
.y2{bottom:1153.719150px;}
.y1{bottom:1168.719150px;}
.ya5{bottom:1190.580900px;}
.y2e{bottom:1199.617350px;}
.ya4{bottom:1210.247400px;}
.h9{height:31.766602px;}
.h7{height:38.308594px;}
.h8{height:40.816406px;}
.h4{height:40.842773px;}
.h2{height:43.781250px;}
.ha{height:43.798650px;}
.hc{height:43.847850px;}
.hb{height:43.850850px;}
.h10{height:43.859250px;}
.h3{height:49.253906px;}
.he{height:63.257250px;}
.h6{height:63.533203px;}
.h11{height:70.757250px;}
.hd{height:77.669250px;}
.hf{height:90.281250px;}
.h5{height:93.035156px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:63.779550px;}
.x16{left:74.226150px;}
.x15{left:78.665700px;}
.x31{left:81.305100px;}
.x34{left:83.153100px;}
.x6{left:85.039350px;}
.x33{left:90.653100px;}
.xd{left:94.210200px;}
.x55{left:99.288000px;}
.x4d{left:102.528900px;}
.x4f{left:104.400900px;}
.x3f{left:109.810950px;}
.x4e{left:111.900900px;}
.x13{left:120.269100px;}
.x12{left:123.773100px;}
.x2f{left:125.345100px;}
.x36{left:126.413100px;}
.x49{left:127.668900px;}
.x24{left:131.849100px;}
.x29{left:135.557100px;}
.x3d{left:144.490950px;}
.x45{left:145.534950px;}
.xe{left:146.594700px;}
.x43{left:147.778950px;}
.x17{left:149.788500px;}
.x2d{left:151.613100px;}
.x28{left:152.849100px;}
.x30{left:160.829100px;}
.x38{left:169.366950px;}
.x3c{left:170.758950px;}
.xa{left:172.183950px;}
.x51{left:178.903950px;}
.x3e{left:179.962950px;}
.x4c{left:182.064900px;}
.x23{left:185.804850px;}
.x11{left:198.882450px;}
.x37{left:216.661800px;}
.x53{left:231.345300px;}
.x46{left:234.886950px;}
.x54{left:245.322900px;}
.x1e{left:254.660850px;}
.x1b{left:266.216550px;}
.x1a{left:268.088550px;}
.x1d{left:272.828850px;}
.x1c{left:275.588550px;}
.x18{left:277.004550px;}
.x19{left:281.636550px;}
.x14{left:324.353100px;}
.x25{left:335.093100px;}
.x32{left:339.869100px;}
.x42{left:342.874950px;}
.x40{left:348.394950px;}
.x35{left:356.969100px;}
.x2e{left:363.185100px;}
.x2a{left:364.697100px;}
.x26{left:368.909100px;}
.x27{left:369.965100px;}
.x44{left:373.582950px;}
.x3b{left:377.410950px;}
.x39{left:378.466950px;}
.x2c{left:384.329100px;}
.x3a{left:385.570950px;}
.x1f{left:393.980850px;}
.x21{left:395.216850px;}
.x20{left:403.052850px;}
.x22{left:405.452850px;}
.x4a{left:407.844900px;}
.x52{left:413.947950px;}
.x57{left:422.636550px;}
.x50{left:436.926750px;}
.x10{left:446.450550px;}
.xb{left:467.709750px;}
.x9{left:546.345000px;}
.x4b{left:574.524900px;}
.x5{left:628.746450px;}
.x8{left:634.218000px;}
.x7{left:638.437500px;}
.x1{left:658.026450px;}
.x48{left:663.576900px;}
.x47{left:672.720900px;}
.x3{left:680.898450px;}
.x2b{left:687.965100px;}
.x41{left:698.650950px;}
.x4{left:700.578450px;}
.x2{left:716.562450px;}
.x56{left:797.561400px;}
.xc{left:801.252900px;}
@media print{
.v4{vertical-align:-30.122667pt;}
.v2{vertical-align:-16.026667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.208000pt;}
.v3{vertical-align:15.600533pt;}
.v6{vertical-align:23.978667pt;}
.v5{vertical-align:30.122667pt;}
.v7{vertical-align:48.000000pt;}
.ls3{letter-spacing:-1.200000pt;}
.ls5{letter-spacing:-0.746667pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006933pt;}
.lsa{letter-spacing:0.011392pt;}
.ls7{letter-spacing:0.011925pt;}
.lsc{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.853333pt;}
.lse{letter-spacing:0.960000pt;}
.ls1{letter-spacing:4.437333pt;}
.ls9{letter-spacing:67.712000pt;}
.ls8{letter-spacing:251.093333pt;}
.ws8f{word-spacing:-42.666667pt;}
.ws63{word-spacing:-36.216000pt;}
.ws8d{word-spacing:-36.182400pt;}
.ws17{word-spacing:-36.168000pt;}
.ws3{word-spacing:-27.434667pt;}
.wsad{word-spacing:-11.568000pt;}
.ws2{word-spacing:-10.282667pt;}
.ws16{word-spacing:-6.744144pt;}
.ws90{word-spacing:-6.318165pt;}
.ws1{word-spacing:-5.994795pt;}
.wsc6{word-spacing:-3.312000pt;}
.ws6b{word-spacing:-2.304000pt;}
.ws88{word-spacing:-2.208000pt;}
.ws24{word-spacing:-2.160000pt;}
.ws85{word-spacing:-2.112000pt;}
.ws9c{word-spacing:-2.064000pt;}
.ws4a{word-spacing:-2.016000pt;}
.wsb4{word-spacing:-1.920000pt;}
.ws6c{word-spacing:-1.872000pt;}
.ws64{word-spacing:-1.776000pt;}
.ws81{word-spacing:-1.728000pt;}
.ws8a{word-spacing:-1.680000pt;}
.wsa6{word-spacing:-1.632000pt;}
.ws4c{word-spacing:-1.536000pt;}
.wsa0{word-spacing:-1.488000pt;}
.ws49{word-spacing:-1.440000pt;}
.ws9d{word-spacing:-1.392000pt;}
.ws65{word-spacing:-1.344000pt;}
.ws89{word-spacing:-1.296000pt;}
.ws14{word-spacing:-1.280000pt;}
.ws9f{word-spacing:-1.248000pt;}
.ws8{word-spacing:-1.200000pt;}
.ws15{word-spacing:-1.194667pt;}
.wsce{word-spacing:-1.152000pt;}
.wsb9{word-spacing:-1.104000pt;}
.ws74{word-spacing:-1.056000pt;}
.ws1d{word-spacing:-1.008000pt;}
.ws67{word-spacing:-0.960000pt;}
.ws71{word-spacing:-0.912000pt;}
.ws7{word-spacing:-0.864000pt;}
.wsca{word-spacing:-0.816000pt;}
.ws1b{word-spacing:-0.768000pt;}
.ws50{word-spacing:-0.720000pt;}
.wsa1{word-spacing:-0.672000pt;}
.wsc0{word-spacing:-0.624000pt;}
.wsd2{word-spacing:-0.528000pt;}
.ws7d{word-spacing:-0.480000pt;}
.ws4e{word-spacing:-0.432000pt;}
.ws76{word-spacing:-0.384000pt;}
.ws5d{word-spacing:-0.336000pt;}
.ws48{word-spacing:-0.288000pt;}
.wsc7{word-spacing:-0.240000pt;}
.ws43{word-spacing:-0.192000pt;}
.wsb8{word-spacing:-0.144000pt;}
.wsae{word-spacing:-0.096000pt;}
.ws0{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.096000pt;}
.ws3b{word-spacing:0.144000pt;}
.ws75{word-spacing:0.240000pt;}
.ws5{word-spacing:0.288000pt;}
.ws21{word-spacing:0.336000pt;}
.wsd3{word-spacing:0.384000pt;}
.wsc4{word-spacing:0.432000pt;}
.ws53{word-spacing:0.480000pt;}
.wsc5{word-spacing:0.528000pt;}
.ws6{word-spacing:0.576000pt;}
.ws5b{word-spacing:0.624000pt;}
.ws23{word-spacing:0.672000pt;}
.wsa2{word-spacing:0.768000pt;}
.wsb1{word-spacing:0.816000pt;}
.ws77{word-spacing:0.960000pt;}
.ws56{word-spacing:1.008000pt;}
.wsaf{word-spacing:1.056000pt;}
.ws7e{word-spacing:1.104000pt;}
.ws9b{word-spacing:1.152000pt;}
.wse{word-spacing:1.200000pt;}
.ws10{word-spacing:1.248000pt;}
.ws83{word-spacing:1.296000pt;}
.wsc1{word-spacing:1.344000pt;}
.wsf{word-spacing:1.392000pt;}
.ws9{word-spacing:1.440000pt;}
.ws2e{word-spacing:1.488000pt;}
.wsbd{word-spacing:1.632000pt;}
.wsac{word-spacing:1.680000pt;}
.wsd1{word-spacing:1.728000pt;}
.ws41{word-spacing:1.824000pt;}
.ws59{word-spacing:1.920000pt;}
.ws4b{word-spacing:1.968000pt;}
.ws8b{word-spacing:2.016000pt;}
.ws47{word-spacing:2.064000pt;}
.wsd0{word-spacing:2.112000pt;}
.wsa4{word-spacing:2.160000pt;}
.ws3f{word-spacing:2.208000pt;}
.wsa5{word-spacing:2.256000pt;}
.wsa3{word-spacing:2.304000pt;}
.ws97{word-spacing:2.352000pt;}
.ws66{word-spacing:2.400000pt;}
.ws7f{word-spacing:2.448000pt;}
.ws6e{word-spacing:2.496000pt;}
.ws19{word-spacing:2.544000pt;}
.ws40{word-spacing:2.592000pt;}
.wsc{word-spacing:2.640000pt;}
.ws25{word-spacing:2.688000pt;}
.ws44{word-spacing:2.736000pt;}
.ws1e{word-spacing:2.784000pt;}
.ws82{word-spacing:2.832000pt;}
.wsb2{word-spacing:2.880000pt;}
.ws30{word-spacing:2.928000pt;}
.ws1a{word-spacing:2.976000pt;}
.wsc8{word-spacing:3.072000pt;}
.ws6f{word-spacing:3.120000pt;}
.wsc2{word-spacing:3.168000pt;}
.ws38{word-spacing:3.216000pt;}
.ws3d{word-spacing:3.264000pt;}
.wsb{word-spacing:3.312000pt;}
.ws6d{word-spacing:3.360000pt;}
.ws69{word-spacing:3.408000pt;}
.ws2c{word-spacing:3.456000pt;}
.ws13{word-spacing:3.541333pt;}
.ws1f{word-spacing:3.552000pt;}
.ws42{word-spacing:3.600000pt;}
.ws57{word-spacing:3.648000pt;}
.ws58{word-spacing:3.696000pt;}
.wsc3{word-spacing:3.744000pt;}
.ws3a{word-spacing:3.792000pt;}
.ws8c{word-spacing:3.840000pt;}
.wsbf{word-spacing:3.888000pt;}
.ws80{word-spacing:3.936000pt;}
.ws45{word-spacing:3.984000pt;}
.ws4f{word-spacing:4.080000pt;}
.ws31{word-spacing:4.128000pt;}
.wsbc{word-spacing:4.176000pt;}
.wsbe{word-spacing:4.224000pt;}
.ws60{word-spacing:4.272000pt;}
.wsba{word-spacing:4.320000pt;}
.ws7c{word-spacing:4.368000pt;}
.ws32{word-spacing:4.416000pt;}
.ws12{word-spacing:4.437333pt;}
.ws5f{word-spacing:4.464000pt;}
.ws51{word-spacing:4.512000pt;}
.ws4d{word-spacing:4.560000pt;}
.ws27{word-spacing:4.608000pt;}
.ws11{word-spacing:4.650667pt;}
.ws36{word-spacing:4.656000pt;}
.ws5a{word-spacing:4.704000pt;}
.ws29{word-spacing:4.800000pt;}
.wsab{word-spacing:4.848000pt;}
.ws46{word-spacing:4.896000pt;}
.ws52{word-spacing:4.944000pt;}
.ws84{word-spacing:5.040000pt;}
.ws86{word-spacing:5.088000pt;}
.ws5c{word-spacing:5.232000pt;}
.wsd{word-spacing:5.280000pt;}
.ws39{word-spacing:5.328000pt;}
.ws34{word-spacing:5.424000pt;}
.ws87{word-spacing:5.520000pt;}
.ws3e{word-spacing:5.664000pt;}
.wscd{word-spacing:5.760000pt;}
.wsa{word-spacing:5.856000pt;}
.ws22{word-spacing:5.904000pt;}
.ws1c{word-spacing:6.048000pt;}
.wsbb{word-spacing:6.096000pt;}
.ws7a{word-spacing:6.144000pt;}
.ws5e{word-spacing:6.240000pt;}
.ws9e{word-spacing:6.288000pt;}
.wsc9{word-spacing:6.336000pt;}
.ws68{word-spacing:6.384000pt;}
.ws33{word-spacing:6.432000pt;}
.ws35{word-spacing:6.480000pt;}
.ws55{word-spacing:6.576000pt;}
.ws2f{word-spacing:6.624000pt;}
.wsb0{word-spacing:6.672000pt;}
.ws6a{word-spacing:6.720000pt;}
.ws26{word-spacing:6.912000pt;}
.ws61{word-spacing:7.008000pt;}
.ws70{word-spacing:7.056000pt;}
.ws73{word-spacing:7.152000pt;}
.wsb6{word-spacing:7.296000pt;}
.ws78{word-spacing:7.344000pt;}
.wsb3{word-spacing:7.392000pt;}
.ws7b{word-spacing:7.536000pt;}
.ws72{word-spacing:7.632000pt;}
.ws54{word-spacing:7.680000pt;}
.wsa9{word-spacing:7.824000pt;}
.ws62{word-spacing:8.016000pt;}
.ws37{word-spacing:8.208000pt;}
.wscb{word-spacing:8.304000pt;}
.ws2b{word-spacing:8.448000pt;}
.ws2d{word-spacing:8.880000pt;}
.wsa8{word-spacing:9.120000pt;}
.wsb7{word-spacing:9.264000pt;}
.wsb5{word-spacing:9.600000pt;}
.wsaa{word-spacing:9.648000pt;}
.ws3c{word-spacing:10.128000pt;}
.wscf{word-spacing:10.224000pt;}
.ws20{word-spacing:10.464000pt;}
.ws79{word-spacing:10.944000pt;}
.ws18{word-spacing:11.808000pt;}
.ws28{word-spacing:11.904000pt;}
.wscc{word-spacing:12.432000pt;}
.ws2a{word-spacing:13.104000pt;}
.ws96{word-spacing:139.989333pt;}
.ws99{word-spacing:173.312000pt;}
.ws8e{word-spacing:209.877333pt;}
.ws93{word-spacing:240.512000pt;}
.ws91{word-spacing:240.640000pt;}
.ws92{word-spacing:269.269333pt;}
.ws94{word-spacing:276.864000pt;}
.ws95{word-spacing:389.376000pt;}
.ws98{word-spacing:415.104000pt;}
.ws9a{word-spacing:452.266667pt;}
._58{margin-left:-1601.962667pt;}
._3f{margin-left:-1594.368000pt;}
._2f{margin-left:-1587.541333pt;}
._5d{margin-left:-1481.898667pt;}
._43{margin-left:-1474.346667pt;}
._7{margin-left:-11.568000pt;}
._9{margin-left:-10.080000pt;}
._3{margin-left:-8.558400pt;}
._6{margin-left:-5.654400pt;}
._4{margin-left:-4.608000pt;}
._2{margin-left:-2.529600pt;}
._0{margin-left:-1.185600pt;}
._1{width:1.060800pt;}
._a{width:1.977600pt;}
._5{width:3.009600pt;}
._c{width:4.723200pt;}
._d{width:5.649600pt;}
._b{width:6.744000pt;}
._8{width:8.366400pt;}
._e{width:9.542400pt;}
._27{width:10.496000pt;}
._75{width:12.576000pt;}
._79{width:17.376000pt;}
._7b{width:18.288000pt;}
._77{width:20.064000pt;}
._7a{width:21.552000pt;}
._76{width:23.232000pt;}
._78{width:24.528000pt;}
._81{width:25.632000pt;}
._80{width:26.928000pt;}
._7e{width:29.376000pt;}
._7c{width:30.768000pt;}
._7f{width:31.728000pt;}
._71{width:34.261333pt;}
._7d{width:36.192000pt;}
._f{width:75.740800pt;}
._6f{width:88.789333pt;}
._72{width:103.040000pt;}
._6c{width:104.533333pt;}
._74{width:106.026667pt;}
._67{width:107.946667pt;}
._66{width:121.173333pt;}
._6e{width:148.096000pt;}
._70{width:157.653333pt;}
._3c{width:182.442667pt;}
._18{width:191.146667pt;}
._38{width:198.314667pt;}
._1f{width:200.149333pt;}
._23{width:203.136000pt;}
._35{width:204.160000pt;}
._16{width:205.226667pt;}
._26{width:211.754667pt;}
._50{width:213.973333pt;}
._5a{width:214.997333pt;}
._49{width:216.021333pt;}
._62{width:217.301333pt;}
._39{width:219.605333pt;}
._55{width:221.098667pt;}
._2a{width:222.080000pt;}
._73{width:223.616000pt;}
._2c{width:225.664000pt;}
._33{width:229.632000pt;}
._63{width:234.240000pt;}
._1a{width:235.818667pt;}
._1c{width:239.317333pt;}
._10{width:243.029333pt;}
._22{width:253.696000pt;}
._1e{width:257.322667pt;}
._13{width:259.754667pt;}
._6a{width:271.445333pt;}
._28{width:272.768000pt;}
._65{width:294.613333pt;}
._15{width:308.821333pt;}
._21{width:309.845333pt;}
._19{width:311.210667pt;}
._1b{width:312.234667pt;}
._20{width:313.130667pt;}
._14{width:314.453333pt;}
._25{width:315.904000pt;}
._24{width:317.226667pt;}
._17{width:319.317333pt;}
._12{width:321.322667pt;}
._1d{width:322.986667pt;}
._30{width:324.949333pt;}
._11{width:326.784000pt;}
._40{width:330.325333pt;}
._29{width:340.906667pt;}
._57{width:342.442667pt;}
._3e{width:349.909333pt;}
._53{width:351.232000pt;}
._69{width:364.842667pt;}
._4d{width:372.693333pt;}
._54{width:375.765333pt;}
._4c{width:380.202667pt;}
._4f{width:382.037333pt;}
._56{width:383.616000pt;}
._61{width:385.450667pt;}
._5b{width:389.333333pt;}
._6b{width:397.525333pt;}
._4a{width:398.592000pt;}
._52{width:402.261333pt;}
._4e{width:403.456000pt;}
._47{width:406.314667pt;}
._60{width:408.448000pt;}
._42{width:410.752000pt;}
._48{width:411.818667pt;}
._2d{width:413.013333pt;}
._3b{width:416.170667pt;}
._4b{width:424.704000pt;}
._51{width:425.728000pt;}
._5e{width:430.634667pt;}
._5f{width:432.085333pt;}
._37{width:433.194667pt;}
._2b{width:435.029333pt;}
._44{width:438.144000pt;}
._45{width:439.552000pt;}
._36{width:440.746667pt;}
._2e{width:446.122667pt;}
._3d{width:447.445333pt;}
._59{width:451.626667pt;}
._32{width:453.333333pt;}
._3a{width:455.978667pt;}
._5c{width:457.002667pt;}
._46{width:458.069333pt;}
._41{width:459.136000pt;}
._34{width:461.781333pt;}
._64{width:498.218667pt;}
._31{width:508.117333pt;}
._6d{width:752.938667pt;}
._68{width:761.941333pt;}
.fs4{font-size:24.874667pt;}
.fs6{font-size:27.984000pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:30.294533pt;}
.y2d{bottom:31.617333pt;}
.y144{bottom:75.589200pt;}
.y1a7{bottom:75.590533pt;}
.y1b1{bottom:75.779867pt;}
.y69{bottom:75.817200pt;}
.ya2{bottom:75.822533pt;}
.y245{bottom:75.923867pt;}
.yb2{bottom:76.160667pt;}
.yc1{bottom:76.196667pt;}
.y151{bottom:76.197333pt;}
.y15e{bottom:76.233333pt;}
.ydb{bottom:76.375467pt;}
.yf4{bottom:76.447467pt;}
.y27{bottom:76.553333pt;}
.y143{bottom:86.257200pt;}
.y26{bottom:89.886667pt;}
.y1b0{bottom:90.443867pt;}
.y68{bottom:90.481200pt;}
.ya1{bottom:90.486533pt;}
.y244{bottom:90.587867pt;}
.yb1{bottom:90.824667pt;}
.yc0{bottom:90.860667pt;}
.y150{bottom:90.861333pt;}
.y15d{bottom:90.897333pt;}
.yda{bottom:91.039467pt;}
.yf3{bottom:91.111467pt;}
.y25{bottom:103.220000pt;}
.y1af{bottom:105.107867pt;}
.y67{bottom:105.145200pt;}
.ya0{bottom:105.150533pt;}
.y243{bottom:105.251867pt;}
.yb0{bottom:105.488667pt;}
.ybf{bottom:105.524667pt;}
.y14f{bottom:105.525333pt;}
.y15c{bottom:105.561333pt;}
.yd9{bottom:105.703467pt;}
.yf2{bottom:105.775467pt;}
.y142{bottom:106.838933pt;}
.y1ae{bottom:119.771867pt;}
.y66{bottom:119.809200pt;}
.y242{bottom:119.915867pt;}
.yaf{bottom:120.152667pt;}
.ybe{bottom:120.188667pt;}
.yd8{bottom:120.367467pt;}
.yf1{bottom:120.439467pt;}
.y141{bottom:121.334933pt;}
.y2c{bottom:131.910400pt;}
.y1ad{bottom:134.435867pt;}
.y65{bottom:134.473200pt;}
.y9f{bottom:134.478533pt;}
.y241{bottom:134.579867pt;}
.yae{bottom:134.816667pt;}
.ybd{bottom:134.852667pt;}
.y14e{bottom:134.853333pt;}
.y15b{bottom:134.889333pt;}
.yd7{bottom:135.031467pt;}
.yf0{bottom:135.103467pt;}
.y13f{bottom:135.830933pt;}
.y2b{bottom:145.243733pt;}
.y1ac{bottom:149.099867pt;}
.y64{bottom:149.137200pt;}
.y240{bottom:149.243867pt;}
.ybc{bottom:149.516667pt;}
.y14d{bottom:149.517333pt;}
.y15a{bottom:149.553333pt;}
.yd6{bottom:149.695467pt;}
.y140{bottom:150.326933pt;}
.y2a{bottom:162.534400pt;}
.y1b3{bottom:163.763867pt;}
.y63{bottom:163.801200pt;}
.y9e{bottom:163.806533pt;}
.y23f{bottom:163.907867pt;}
.yad{bottom:164.144667pt;}
.ybb{bottom:164.180667pt;}
.y14c{bottom:164.181333pt;}
.y159{bottom:164.217333pt;}
.yef{bottom:164.431467pt;}
.y13e{bottom:164.812267pt;}
.y29{bottom:175.334400pt;}
.y1ab{bottom:178.427867pt;}
.y62{bottom:178.465200pt;}
.y9d{bottom:178.470533pt;}
.y23e{bottom:178.571867pt;}
.yba{bottom:178.844667pt;}
.y14b{bottom:178.845333pt;}
.y158{bottom:178.881333pt;}
.yd5{bottom:179.079467pt;}
.yee{bottom:179.095467pt;}
.y13d{bottom:179.308267pt;}
.y13a{bottom:186.561600pt;}
.y28{bottom:188.134400pt;}
.y1aa{bottom:193.091867pt;}
.y61{bottom:193.129200pt;}
.y9c{bottom:193.134533pt;}
.y23d{bottom:193.235867pt;}
.yac{bottom:193.472667pt;}
.yb9{bottom:193.508667pt;}
.y14a{bottom:193.509333pt;}
.y157{bottom:193.545333pt;}
.yd4{bottom:193.743467pt;}
.yed{bottom:193.759467pt;}
.y13c{bottom:193.804267pt;}
.y1a9{bottom:207.755867pt;}
.y1e0{bottom:207.779867pt;}
.y9b{bottom:207.798533pt;}
.y23c{bottom:207.899867pt;}
.y211{bottom:207.923867pt;}
.yb8{bottom:208.172667pt;}
.y149{bottom:208.173333pt;}
.y156{bottom:208.209333pt;}
.y13b{bottom:208.300267pt;}
.yd3{bottom:208.407467pt;}
.yec{bottom:208.423467pt;}
.y1a8{bottom:222.419867pt;}
.y1b2{bottom:222.443867pt;}
.y60{bottom:222.457200pt;}
.y9a{bottom:222.462533pt;}
.y23b{bottom:222.563867pt;}
.y210{bottom:222.587867pt;}
.y139{bottom:222.796267pt;}
.yab{bottom:222.800667pt;}
.y148{bottom:222.837333pt;}
.y155{bottom:222.873333pt;}
.yd2{bottom:223.071467pt;}
.yeb{bottom:223.087467pt;}
.ya{bottom:231.795333pt;}
.y1df{bottom:237.107867pt;}
.y5f{bottom:237.121200pt;}
.y99{bottom:237.126533pt;}
.y23a{bottom:237.227867pt;}
.y20f{bottom:237.251867pt;}
.y138{bottom:237.292267pt;}
.yaa{bottom:237.464667pt;}
.yb7{bottom:237.500667pt;}
.y147{bottom:237.501333pt;}
.y154{bottom:237.537333pt;}
.yd1{bottom:237.735467pt;}
.yea{bottom:237.751467pt;}
.y135{bottom:244.545600pt;}
.y9{bottom:246.459333pt;}
.y1de{bottom:251.771867pt;}
.y5e{bottom:251.785200pt;}
.y137{bottom:251.788267pt;}
.y98{bottom:251.790533pt;}
.y239{bottom:251.891867pt;}
.ya9{bottom:252.128667pt;}
.yb6{bottom:252.164667pt;}
.y146{bottom:252.165333pt;}
.y153{bottom:252.201333pt;}
.yd0{bottom:252.399467pt;}
.ye9{bottom:252.415467pt;}
.y1b7{bottom:259.675600pt;}
.y8{bottom:261.123333pt;}
.y136{bottom:266.284267pt;}
.y1dd{bottom:266.435867pt;}
.y5d{bottom:266.449200pt;}
.y97{bottom:266.454533pt;}
.y238{bottom:266.555867pt;}
.y20e{bottom:266.579867pt;}
.ya8{bottom:266.792667pt;}
.yb5{bottom:266.828667pt;}
.y145{bottom:266.829333pt;}
.y152{bottom:266.865333pt;}
.ycf{bottom:267.063467pt;}
.ye8{bottom:267.079467pt;}
.y7{bottom:275.787333pt;}
.y134{bottom:280.780267pt;}
.y1dc{bottom:281.099867pt;}
.y5c{bottom:281.113200pt;}
.y96{bottom:281.118533pt;}
.y237{bottom:281.219867pt;}
.y20d{bottom:281.243867pt;}
.ya7{bottom:281.456667pt;}
.yb4{bottom:281.492667pt;}
.yce{bottom:281.727467pt;}
.ye7{bottom:281.743467pt;}
.y6{bottom:290.451333pt;}
.y132{bottom:295.276267pt;}
.y5b{bottom:295.777200pt;}
.y95{bottom:295.782533pt;}
.y236{bottom:295.883867pt;}
.y20c{bottom:295.907867pt;}
.ya6{bottom:296.120667pt;}
.yb3{bottom:296.156667pt;}
.ycd{bottom:296.391467pt;}
.ye6{bottom:296.407467pt;}
.y191{bottom:299.642933pt;}
.y190{bottom:305.648267pt;}
.y133{bottom:309.772267pt;}
.y1db{bottom:310.427867pt;}
.y5a{bottom:310.441200pt;}
.y94{bottom:310.446533pt;}
.y235{bottom:310.547867pt;}
.y20b{bottom:310.571867pt;}
.ycc{bottom:311.055467pt;}
.ye5{bottom:311.071467pt;}
.y131{bottom:324.257600pt;}
.y1e{bottom:324.363333pt;}
.y59{bottom:325.105200pt;}
.y93{bottom:325.110533pt;}
.y234{bottom:325.211867pt;}
.y20a{bottom:325.235867pt;}
.ycb{bottom:325.719467pt;}
.ye4{bottom:325.735467pt;}
.y18f{bottom:326.686933pt;}
.yc2{bottom:329.255200pt;}
.y12f{bottom:338.753600pt;}
.y1da{bottom:339.755867pt;}
.y58{bottom:339.769200pt;}
.y92{bottom:339.774533pt;}
.y233{bottom:339.875867pt;}
.y209{bottom:339.899867pt;}
.yca{bottom:340.383467pt;}
.ye3{bottom:340.399467pt;}
.y18e{bottom:341.748267pt;}
.y1a6{bottom:346.488133pt;}
.y130{bottom:353.249600pt;}
.y57{bottom:354.433200pt;}
.y91{bottom:354.438533pt;}
.y1d9{bottom:354.515867pt;}
.y232{bottom:354.539867pt;}
.ye2{bottom:355.063467pt;}
.y18d{bottom:356.809600pt;}
.y1d{bottom:357.927333pt;}
.y1a5{bottom:358.488133pt;}
.y12e{bottom:367.734933pt;}
.y56{bottom:369.097200pt;}
.y1d8{bottom:369.179867pt;}
.y231{bottom:369.203867pt;}
.y208{bottom:369.227867pt;}
.yc9{bottom:369.711467pt;}
.ye1{bottom:369.727467pt;}
.y18c{bottom:371.870933pt;}
.y1c{bottom:372.591333pt;}
.y12c{bottom:382.230933pt;}
.y90{bottom:383.766533pt;}
.y1d7{bottom:383.843867pt;}
.y230{bottom:383.867867pt;}
.y207{bottom:383.891867pt;}
.yc8{bottom:384.375467pt;}
.y189{bottom:386.932267pt;}
.y1b{bottom:387.255333pt;}
.y12d{bottom:396.726933pt;}
.y55{bottom:398.425200pt;}
.y8f{bottom:398.430533pt;}
.y1d6{bottom:398.507867pt;}
.y22f{bottom:398.531867pt;}
.y206{bottom:398.555867pt;}
.yc7{bottom:399.039467pt;}
.ye0{bottom:399.055467pt;}
.y1a{bottom:401.919333pt;}
.y18b{bottom:401.993600pt;}
.y12b{bottom:411.212267pt;}
.y54{bottom:413.089200pt;}
.y8e{bottom:413.094533pt;}
.y1d5{bottom:413.171867pt;}
.y22e{bottom:413.195867pt;}
.y205{bottom:413.219867pt;}
.yc6{bottom:413.703467pt;}
.ydf{bottom:413.719467pt;}
.y19{bottom:416.583333pt;}
.y18a{bottom:417.054933pt;}
.y12a{bottom:425.708267pt;}
.y8d{bottom:427.758533pt;}
.y1d4{bottom:427.835867pt;}
.y53{bottom:427.849200pt;}
.y22d{bottom:427.859867pt;}
.y204{bottom:427.883867pt;}
.yc5{bottom:428.367467pt;}
.yde{bottom:428.383467pt;}
.y18{bottom:431.247333pt;}
.y188{bottom:432.116267pt;}
.y126{bottom:434.209600pt;}
.y129{bottom:440.204267pt;}
.y8c{bottom:442.422533pt;}
.y1d3{bottom:442.499867pt;}
.y52{bottom:442.513200pt;}
.y22c{bottom:442.523867pt;}
.y203{bottom:442.547867pt;}
.yc4{bottom:443.031467pt;}
.ydd{bottom:443.047467pt;}
.y17{bottom:445.911333pt;}
.y125{bottom:446.209600pt;}
.y187{bottom:447.177600pt;}
.y186{bottom:453.182933pt;}
.y128{bottom:454.700267pt;}
.y51{bottom:457.177200pt;}
.y22b{bottom:457.187867pt;}
.y8b{bottom:457.249200pt;}
.yc3{bottom:457.695467pt;}
.ydc{bottom:457.711467pt;}
.y127{bottom:469.196267pt;}
.y1d2{bottom:471.827867pt;}
.y50{bottom:471.841200pt;}
.y22a{bottom:471.851867pt;}
.y202{bottom:471.875867pt;}
.y8a{bottom:471.913200pt;}
.y16{bottom:475.239333pt;}
.y185{bottom:479.693200pt;}
.y124{bottom:483.692267pt;}
.y1d1{bottom:486.491867pt;}
.y4f{bottom:486.505200pt;}
.y229{bottom:486.515867pt;}
.y201{bottom:486.539867pt;}
.y89{bottom:486.577200pt;}
.y122{bottom:498.188267pt;}
.yf7{bottom:499.585867pt;}
.y1d0{bottom:501.155867pt;}
.y4e{bottom:501.169200pt;}
.y228{bottom:501.179867pt;}
.y200{bottom:501.203867pt;}
.y88{bottom:501.241200pt;}
.y184{bottom:511.330533pt;}
.yf6{bottom:511.585867pt;}
.y123{bottom:512.684267pt;}
.y1cf{bottom:515.819867pt;}
.y4d{bottom:515.833200pt;}
.y227{bottom:515.843867pt;}
.y1ff{bottom:515.867867pt;}
.y87{bottom:515.905200pt;}
.y1b6{bottom:519.459867pt;}
.y15{bottom:520.143333pt;}
.yf5{bottom:523.585867pt;}
.y182{bottom:526.391867pt;}
.y121{bottom:527.169600pt;}
.y1ce{bottom:530.483867pt;}
.y4c{bottom:530.497200pt;}
.y226{bottom:530.507867pt;}
.y1fe{bottom:530.531867pt;}
.y86{bottom:530.569200pt;}
.y183{bottom:541.453200pt;}
.y1cd{bottom:545.147867pt;}
.y225{bottom:545.171867pt;}
.y1fd{bottom:545.195867pt;}
.y120{bottom:547.142933pt;}
.y14{bottom:553.707333pt;}
.y181{bottom:556.514533pt;}
.y1cc{bottom:559.811867pt;}
.y4b{bottom:559.825200pt;}
.y224{bottom:559.835867pt;}
.y1fc{bottom:559.859867pt;}
.y85{bottom:559.897200pt;}
.y13{bottom:568.371333pt;}
.y180{bottom:571.575867pt;}
.y1cb{bottom:574.475867pt;}
.y4a{bottom:574.489200pt;}
.y223{bottom:574.499867pt;}
.y1fb{bottom:574.523867pt;}
.y12{bottom:583.035333pt;}
.y11f{bottom:583.462933pt;}
.y17f{bottom:586.637200pt;}
.y17b{bottom:588.173200pt;}
.y1ca{bottom:589.139867pt;}
.y49{bottom:589.153200pt;}
.y222{bottom:589.163867pt;}
.y1fa{bottom:589.187867pt;}
.y84{bottom:589.225200pt;}
.y11{bottom:597.699333pt;}
.y11e{bottom:597.958933pt;}
.y17a{bottom:600.173200pt;}
.y17e{bottom:601.698533pt;}
.y1c9{bottom:603.803867pt;}
.y48{bottom:603.817200pt;}
.y221{bottom:603.827867pt;}
.y83{bottom:603.889200pt;}
.y10{bottom:612.363333pt;}
.y11d{bottom:612.454933pt;}
.y17d{bottom:616.759867pt;}
.y1c8{bottom:618.467867pt;}
.y47{bottom:618.481200pt;}
.y220{bottom:618.491867pt;}
.y1f9{bottom:618.515867pt;}
.y82{bottom:618.553200pt;}
.y11c{bottom:626.950933pt;}
.yf{bottom:627.027333pt;}
.y114{bottom:628.194800pt;}
.y17c{bottom:631.821200pt;}
.y1c7{bottom:633.131867pt;}
.y46{bottom:633.145200pt;}
.y21f{bottom:633.155867pt;}
.y81{bottom:633.217200pt;}
.y118{bottom:636.700267pt;}
.y113{bottom:640.194800pt;}
.y11b{bottom:641.446933pt;}
.ye{bottom:641.691333pt;}
.y179{bottom:646.882533pt;}
.y1c6{bottom:647.795867pt;}
.y45{bottom:647.809200pt;}
.y21e{bottom:647.819867pt;}
.y1f8{bottom:647.843867pt;}
.y80{bottom:647.881200pt;}
.y117{bottom:648.700267pt;}
.y11a{bottom:655.942933pt;}
.yd{bottom:656.355333pt;}
.y116{bottom:660.700267pt;}
.y178{bottom:661.943867pt;}
.y1c5{bottom:662.459867pt;}
.y21d{bottom:662.483867pt;}
.y1f7{bottom:662.507867pt;}
.y7f{bottom:662.545200pt;}
.y119{bottom:670.438933pt;}
.yc{bottom:671.019333pt;}
.y177{bottom:677.005200pt;}
.y1c4{bottom:677.123867pt;}
.y44{bottom:677.137200pt;}
.y21c{bottom:677.147867pt;}
.y1f6{bottom:677.171867pt;}
.y7e{bottom:677.209200pt;}
.y173{bottom:684.535867pt;}
.y115{bottom:684.934933pt;}
.y43{bottom:691.801200pt;}
.y21b{bottom:691.811867pt;}
.y1f5{bottom:691.835867pt;}
.y7d{bottom:691.873200pt;}
.y176{bottom:692.066533pt;}
.y112{bottom:699.416133pt;}
.yb{bottom:700.347333pt;}
.y1c3{bottom:706.451867pt;}
.y42{bottom:706.465200pt;}
.y21a{bottom:706.475867pt;}
.y1f4{bottom:706.499867pt;}
.y7c{bottom:706.537200pt;}
.y175{bottom:707.127867pt;}
.y111{bottom:713.912133pt;}
.y1c2{bottom:721.115867pt;}
.y41{bottom:721.129200pt;}
.y219{bottom:721.139867pt;}
.y1f3{bottom:721.163867pt;}
.y7b{bottom:721.201200pt;}
.y174{bottom:722.189200pt;}
.y10d{bottom:722.398000pt;}
.y110{bottom:728.408133pt;}
.y10c{bottom:734.398000pt;}
.y24{bottom:735.422933pt;}
.y1c1{bottom:735.779867pt;}
.y40{bottom:735.793200pt;}
.y218{bottom:735.803867pt;}
.y1f2{bottom:735.827867pt;}
.y7a{bottom:735.865200pt;}
.y172{bottom:737.250533pt;}
.y10f{bottom:742.904133pt;}
.y171{bottom:744.781200pt;}
.y1c0{bottom:750.443867pt;}
.y3f{bottom:750.457200pt;}
.y217{bottom:750.467867pt;}
.y1f1{bottom:750.491867pt;}
.y79{bottom:750.529200pt;}
.y10e{bottom:757.400133pt;}
.y1bf{bottom:765.107867pt;}
.y3e{bottom:765.121200pt;}
.y216{bottom:765.131867pt;}
.y1f0{bottom:765.155867pt;}
.y78{bottom:765.193200pt;}
.y170{bottom:767.373200pt;}
.y23{bottom:767.659333pt;}
.y10b{bottom:771.880667pt;}
.y1b5{bottom:772.688267pt;}
.y1be{bottom:779.771867pt;}
.y3d{bottom:779.785200pt;}
.y215{bottom:779.795867pt;}
.y1ef{bottom:779.819867pt;}
.y77{bottom:779.857200pt;}
.y16e{bottom:782.434533pt;}
.y1b4{bottom:784.688267pt;}
.y10a{bottom:786.376667pt;}
.y22{bottom:790.320667pt;}
.y1bd{bottom:794.435867pt;}
.y3c{bottom:794.449200pt;}
.y214{bottom:794.459867pt;}
.y1ee{bottom:794.483867pt;}
.y76{bottom:794.521200pt;}
.y106{bottom:794.862533pt;}
.y16f{bottom:797.495867pt;}
.y109{bottom:800.872667pt;}
.y105{bottom:806.862533pt;}
.y3b{bottom:809.113200pt;}
.y213{bottom:809.123867pt;}
.y1ed{bottom:809.147867pt;}
.y16d{bottom:812.557200pt;}
.y108{bottom:815.368667pt;}
.y1bc{bottom:823.763867pt;}
.y3a{bottom:823.777200pt;}
.y212{bottom:823.787867pt;}
.y1ec{bottom:823.811867pt;}
.y75{bottom:823.849200pt;}
.y21{bottom:824.347200pt;}
.y16b{bottom:827.618533pt;}
.y107{bottom:829.864667pt;}
.y1bb{bottom:838.427867pt;}
.y198{bottom:838.451867pt;}
.y1a4{bottom:838.487867pt;}
.y16c{bottom:842.679867pt;}
.y104{bottom:844.345200pt;}
.y20{bottom:851.003200pt;}
.y1ba{bottom:853.091867pt;}
.y39{bottom:853.105200pt;}
.y197{bottom:853.115867pt;}
.y1eb{bottom:853.139867pt;}
.y1a3{bottom:853.151867pt;}
.y74{bottom:853.177200pt;}
.y16a{bottom:857.741200pt;}
.y103{bottom:858.841200pt;}
.yff{bottom:867.338667pt;}
.y1b9{bottom:867.755867pt;}
.y38{bottom:867.769200pt;}
.y196{bottom:867.779867pt;}
.y1ea{bottom:867.803867pt;}
.y1a2{bottom:867.815867pt;}
.y168{bottom:872.802533pt;}
.y102{bottom:873.337200pt;}
.y1f{bottom:877.659200pt;}
.yfe{bottom:879.338667pt;}
.y37{bottom:882.433200pt;}
.y1b8{bottom:882.443867pt;}
.y1e9{bottom:882.467867pt;}
.y1a1{bottom:882.479867pt;}
.y73{bottom:882.505200pt;}
.y101{bottom:887.833200pt;}
.y169{bottom:887.863867pt;}
.y36{bottom:897.097200pt;}
.y195{bottom:897.107867pt;}
.y1e8{bottom:897.131867pt;}
.y1a0{bottom:897.143867pt;}
.y72{bottom:897.169200pt;}
.y100{bottom:902.329200pt;}
.y167{bottom:902.925200pt;}
.y35{bottom:911.761200pt;}
.y194{bottom:911.771867pt;}
.y1e7{bottom:911.795867pt;}
.y19f{bottom:911.807867pt;}
.y71{bottom:911.833200pt;}
.y164{bottom:911.991867pt;}
.yfd{bottom:916.821333pt;}
.y166{bottom:917.986533pt;}
.y163{bottom:923.991867pt;}
.y34{bottom:926.425200pt;}
.y193{bottom:926.435867pt;}
.y1e6{bottom:926.459867pt;}
.y70{bottom:926.497200pt;}
.y165{bottom:933.047867pt;}
.yfc{bottom:936.814267pt;}
.y33{bottom:941.089200pt;}
.y192{bottom:941.099867pt;}
.y1e5{bottom:941.123867pt;}
.y19e{bottom:941.135867pt;}
.y6f{bottom:941.161200pt;}
.y162{bottom:948.109200pt;}
.y32{bottom:955.763867pt;}
.y19d{bottom:955.799867pt;}
.y6e{bottom:955.825200pt;}
.y160{bottom:963.170533pt;}
.y31{bottom:970.427867pt;}
.yfb{bottom:970.439867pt;}
.y1e4{bottom:970.451867pt;}
.y19c{bottom:970.463867pt;}
.y6d{bottom:970.489200pt;}
.y161{bottom:978.231867pt;}
.y30{bottom:985.091867pt;}
.yfa{bottom:985.103867pt;}
.y1e3{bottom:985.115867pt;}
.y19b{bottom:985.127867pt;}
.y6c{bottom:985.153200pt;}
.y5{bottom:985.528133pt;}
.y15f{bottom:993.293200pt;}
.y4{bottom:998.861467pt;}
.yf8{bottom:999.755867pt;}
.y1e2{bottom:999.779867pt;}
.y19a{bottom:999.791867pt;}
.y6b{bottom:999.817200pt;}
.y3{bottom:1012.194800pt;}
.y2f{bottom:1014.419867pt;}
.yf9{bottom:1014.431867pt;}
.y1e1{bottom:1014.443867pt;}
.y199{bottom:1014.455867pt;}
.y6a{bottom:1014.481200pt;}
.y2{bottom:1025.528133pt;}
.y1{bottom:1038.861467pt;}
.ya5{bottom:1058.294133pt;}
.y2e{bottom:1066.326533pt;}
.ya4{bottom:1075.775467pt;}
.h9{height:28.236979pt;}
.h7{height:34.052083pt;}
.h8{height:36.281250pt;}
.h4{height:36.304688pt;}
.h2{height:38.916667pt;}
.ha{height:38.932133pt;}
.hc{height:38.975867pt;}
.hb{height:38.978533pt;}
.h10{height:38.986000pt;}
.h3{height:43.781250pt;}
.he{height:56.228667pt;}
.h6{height:56.473958pt;}
.h11{height:62.895333pt;}
.hd{height:69.039333pt;}
.hf{height:80.250000pt;}
.h5{height:82.697917pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:56.692933pt;}
.x16{left:65.978800pt;}
.x15{left:69.925067pt;}
.x31{left:72.271200pt;}
.x34{left:73.913867pt;}
.x6{left:75.590533pt;}
.x33{left:80.580533pt;}
.xd{left:83.742400pt;}
.x55{left:88.256000pt;}
.x4d{left:91.136800pt;}
.x4f{left:92.800800pt;}
.x3f{left:97.609733pt;}
.x4e{left:99.467467pt;}
.x13{left:106.905867pt;}
.x12{left:110.020533pt;}
.x2f{left:111.417867pt;}
.x36{left:112.367200pt;}
.x49{left:113.483467pt;}
.x24{left:117.199200pt;}
.x29{left:120.495200pt;}
.x3d{left:128.436400pt;}
.x45{left:129.364400pt;}
.xe{left:130.306400pt;}
.x43{left:131.359067pt;}
.x17{left:133.145333pt;}
.x2d{left:134.767200pt;}
.x28{left:135.865867pt;}
.x30{left:142.959200pt;}
.x38{left:150.548400pt;}
.x3c{left:151.785733pt;}
.xa{left:153.052400pt;}
.x51{left:159.025733pt;}
.x3e{left:159.967067pt;}
.x4c{left:161.835467pt;}
.x23{left:165.159867pt;}
.x11{left:176.784400pt;}
.x37{left:192.588267pt;}
.x53{left:205.640267pt;}
.x46{left:208.788400pt;}
.x54{left:218.064800pt;}
.x1e{left:226.365200pt;}
.x1b{left:236.636933pt;}
.x1a{left:238.300933pt;}
.x1d{left:242.514533pt;}
.x1c{left:244.967600pt;}
.x18{left:246.226267pt;}
.x19{left:250.343600pt;}
.x14{left:288.313867pt;}
.x25{left:297.860533pt;}
.x32{left:302.105867pt;}
.x42{left:304.777733pt;}
.x40{left:309.684400pt;}
.x35{left:317.305867pt;}
.x2e{left:322.831200pt;}
.x2a{left:324.175200pt;}
.x26{left:327.919200pt;}
.x27{left:328.857867pt;}
.x44{left:332.073733pt;}
.x3b{left:335.476400pt;}
.x39{left:336.415067pt;}
.x2c{left:341.625867pt;}
.x3a{left:342.729733pt;}
.x1f{left:350.205200pt;}
.x21{left:351.303867pt;}
.x20{left:358.269200pt;}
.x22{left:360.402533pt;}
.x4a{left:362.528800pt;}
.x52{left:367.953733pt;}
.x57{left:375.676933pt;}
.x50{left:388.379333pt;}
.x10{left:396.844933pt;}
.xb{left:415.742000pt;}
.x9{left:485.640000pt;}
.x4b{left:510.688800pt;}
.x5{left:558.885733pt;}
.x8{left:563.749333pt;}
.x7{left:567.500000pt;}
.x1{left:584.912400pt;}
.x48{left:589.846133pt;}
.x47{left:597.974133pt;}
.x3{left:605.243067pt;}
.x2b{left:611.524533pt;}
.x41{left:621.023067pt;}
.x4{left:622.736400pt;}
.x2{left:636.944400pt;}
.x56{left:708.943467pt;}
.xc{left:712.224800pt;}
}




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