
    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_b649f11d08df10b78ca11843.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_9e5fd1e12ae1ee325a683ce2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_23ede3339776e7781e9d1ea4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_c5f91e31a1229c993754a41c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_3fe65ffa07536f12cd8d4ad0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.023000;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_3a52f5977ae7404688e858bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.230469;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);}
.v3{vertical-align:-24.000000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v1{vertical-align:24.000000px;}
.ls44{letter-spacing:-4.020000px;}
.ls53{letter-spacing:-2.820000px;}
.ls24{letter-spacing:-2.448000px;}
.ls51{letter-spacing:-1.620000px;}
.ls5d{letter-spacing:-1.320000px;}
.ls39{letter-spacing:-1.296000px;}
.ls2e{letter-spacing:-1.224000px;}
.ls17{letter-spacing:-0.864000px;}
.ls52{letter-spacing:-0.792000px;}
.ls41{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls63{letter-spacing:-0.528000px;}
.ls16{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.420000px;}
.ls19{letter-spacing:-0.360000px;}
.ls5e{letter-spacing:-0.330000px;}
.ls20{letter-spacing:-0.300000px;}
.ls27{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.216000px;}
.ls61{letter-spacing:-0.198000px;}
.ls45{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.144000px;}
.ls62{letter-spacing:-0.132000px;}
.ls11{letter-spacing:-0.120000px;}
.ls25{letter-spacing:-0.072000px;}
.ls64{letter-spacing:-0.066000px;}
.ls42{letter-spacing:-0.060000px;}
.ls13{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.060000px;}
.ls2a{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.144000px;}
.ls55{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.300000px;}
.ls60{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls65{letter-spacing:0.396000px;}
.lsb{letter-spacing:0.410400px;}
.ls22{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.453600px;}
.ls2d{letter-spacing:0.460800px;}
.ls5f{letter-spacing:0.462000px;}
.lsc{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.482400px;}
.ls9{letter-spacing:0.496800px;}
.ls7{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.540000px;}
.ls31{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.588000px;}
.ls47{letter-spacing:0.780000px;}
.ls34{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.110000px;}
.ls3a{letter-spacing:1.152000px;}
.ls4b{letter-spacing:1.194000px;}
.ls33{letter-spacing:1.411200px;}
.ls54{letter-spacing:1.560000px;}
.ls23{letter-spacing:2.376000px;}
.lsd{letter-spacing:3.600000px;}
.ls5b{letter-spacing:4.092000px;}
.ls4a{letter-spacing:4.380000px;}
.ls35{letter-spacing:4.730400px;}
.ls37{letter-spacing:4.752000px;}
.ls26{letter-spacing:5.976000px;}
.ls48{letter-spacing:6.780000px;}
.ls10{letter-spacing:7.200000px;}
.ls40{letter-spacing:7.980000px;}
.ls2b{letter-spacing:8.352000px;}
.ls3d{letter-spacing:9.576000px;}
.ls5c{letter-spacing:11.580000px;}
.ls4d{letter-spacing:12.780000px;}
.ls30{letter-spacing:13.176000px;}
.ls5a{letter-spacing:14.784000px;}
.ls46{letter-spacing:17.580000px;}
.ls38{letter-spacing:18.000000px;}
.lse{letter-spacing:19.152000px;}
.ls57{letter-spacing:23.580000px;}
.ls56{letter-spacing:25.980000px;}
.ls2f{letter-spacing:28.800000px;}
.ls50{letter-spacing:30.780000px;}
.ls49{letter-spacing:45.180000px;}
.ls59{letter-spacing:57.180000px;}
.ls4e{letter-spacing:95.580000px;}
.ls4f{letter-spacing:100.380000px;}
.ls4c{letter-spacing:101.580000px;}
.ls3e{letter-spacing:119.952000px;}
.ls58{letter-spacing:121.980000px;}
.ls3f{letter-spacing:177.552000px;}
.ls3b{letter-spacing:191.952000px;}
.ls3c{letter-spacing:221.976000px;}
.ls32{letter-spacing:261.180000px;}
.ls1{letter-spacing:496.380000px;}
.ls3{letter-spacing:744.780000px;}
.ls2{letter-spacing:839.580000px;}
.ls2c{letter-spacing:967.800000px;}
.ls0{letter-spacing:1187.580000px;}
.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;}
}
.ws54{word-spacing:-72.000000px;}
.ws4f{word-spacing:-29.160000px;}
.wsa{word-spacing:-19.656000px;}
.ws2{word-spacing:-19.584000px;}
.ws68{word-spacing:-19.440000px;}
.wsc{word-spacing:-19.296000px;}
.ws9{word-spacing:-19.224000px;}
.ws33{word-spacing:-19.152000px;}
.ws67{word-spacing:-18.936000px;}
.ws3d{word-spacing:-18.864000px;}
.ws69{word-spacing:-18.792000px;}
.ws3e{word-spacing:-18.648000px;}
.ws3{word-spacing:-18.360000px;}
.ws7f{word-spacing:-18.216000px;}
.wsb7{word-spacing:-18.018000px;}
.ws65{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws7d{word-spacing:-17.856000px;}
.ws7e{word-spacing:-17.640000px;}
.wsb6{word-spacing:-17.094000px;}
.ws7{word-spacing:-16.920000px;}
.ws90{word-spacing:-16.380000px;}
.wsb5{word-spacing:-16.368000px;}
.ws8d{word-spacing:-16.260000px;}
.ws8f{word-spacing:-16.200000px;}
.ws53{word-spacing:-16.140000px;}
.ws81{word-spacing:-16.080000px;}
.ws4{word-spacing:-16.020000px;}
.ws91{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.720000px;}
.ws6{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.ws5{word-spacing:-15.480000px;}
.ws80{word-spacing:-14.700000px;}
.wsb4{word-spacing:-14.640000px;}
.ws51{word-spacing:-13.176000px;}
.wsbd{word-spacing:-11.580000px;}
.ws1{word-spacing:-11.214000px;}
.ws6e{word-spacing:-9.576000px;}
.ws8e{word-spacing:-8.820000px;}
.ws39{word-spacing:-8.352000px;}
.ws83{word-spacing:-7.200000px;}
.ws2d{word-spacing:-5.976000px;}
.ws63{word-spacing:-4.752000px;}
.wsad{word-spacing:-4.260000px;}
.wsb1{word-spacing:-4.140000px;}
.ws66{word-spacing:-3.816000px;}
.ws36{word-spacing:-3.600000px;}
.wsac{word-spacing:-3.540000px;}
.ws45{word-spacing:-3.528000px;}
.ws46{word-spacing:-3.168000px;}
.ws20{word-spacing:-3.024000px;}
.wsc2{word-spacing:-2.940000px;}
.ws4d{word-spacing:-2.664000px;}
.ws94{word-spacing:-2.400000px;}
.ws28{word-spacing:-2.376000px;}
.ws9f{word-spacing:-2.340000px;}
.ws4c{word-spacing:-2.160000px;}
.ws78{word-spacing:-2.016000px;}
.ws29{word-spacing:-1.872000px;}
.wsbf{word-spacing:-1.860000px;}
.wsc0{word-spacing:-1.740000px;}
.wsc3{word-spacing:-1.680000px;}
.wsa5{word-spacing:-1.560000px;}
.ws6c{word-spacing:-1.440000px;}
.wsa1{word-spacing:-1.200000px;}
.ws3f{word-spacing:-1.152000px;}
.wsa0{word-spacing:-1.140000px;}
.ws56{word-spacing:-0.864000px;}
.ws60{word-spacing:-0.792000px;}
.ws62{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.660000px;}
.ws42{word-spacing:-0.648000px;}
.ws64{word-spacing:-0.576000px;}
.ws19{word-spacing:-0.540000px;}
.ws61{word-spacing:-0.504000px;}
.wsc1{word-spacing:-0.480000px;}
.ws24{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.420000px;}
.ws15{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.300000px;}
.ws16{word-spacing:-0.288000px;}
.ws12{word-spacing:-0.252000px;}
.ws87{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.216000px;}
.ws31{word-spacing:-0.144000px;}
.wsae{word-spacing:-0.120000px;}
.ws95{word-spacing:-0.060000px;}
.wse{word-spacing:0.000000px;}
.wsf{word-spacing:0.060000px;}
.wsce{word-spacing:0.066000px;}
.ws2c{word-spacing:0.072000px;}
.ws98{word-spacing:0.120000px;}
.ws6a{word-spacing:0.144000px;}
.ws32{word-spacing:0.216000px;}
.ws3c{word-spacing:0.288000px;}
.ws1d{word-spacing:0.300000px;}
.ws17{word-spacing:0.360000px;}
.ws1a{word-spacing:0.420000px;}
.ws37{word-spacing:0.432000px;}
.wsd2{word-spacing:0.462000px;}
.ws1c{word-spacing:0.480000px;}
.ws3a{word-spacing:0.504000px;}
.wsd1{word-spacing:0.528000px;}
.ws18{word-spacing:0.576000px;}
.ws84{word-spacing:0.648000px;}
.ws13{word-spacing:0.756000px;}
.ws38{word-spacing:0.864000px;}
.ws52{word-spacing:0.936000px;}
.ws48{word-spacing:1.224000px;}
.wsa8{word-spacing:1.260000px;}
.ws82{word-spacing:1.584000px;}
.ws97{word-spacing:1.620000px;}
.ws14{word-spacing:1.656000px;}
.ws55{word-spacing:1.728000px;}
.ws2a{word-spacing:2.448000px;}
.ws6d{word-spacing:2.664000px;}
.ws41{word-spacing:2.808000px;}
.ws9e{word-spacing:2.820000px;}
.ws49{word-spacing:2.952000px;}
.wsa2{word-spacing:3.060000px;}
.ws22{word-spacing:3.312000px;}
.ws21{word-spacing:3.384000px;}
.wsd0{word-spacing:3.498000px;}
.ws50{word-spacing:3.672000px;}
.ws5d{word-spacing:3.744000px;}
.ws7a{word-spacing:3.888000px;}
.ws88{word-spacing:4.020000px;}
.ws4b{word-spacing:4.032000px;}
.ws23{word-spacing:4.104000px;}
.wscf{word-spacing:4.158000px;}
.ws27{word-spacing:4.176000px;}
.ws9d{word-spacing:4.260000px;}
.ws57{word-spacing:4.464000px;}
.ws5b{word-spacing:4.536000px;}
.ws47{word-spacing:4.824000px;}
.ws58{word-spacing:5.184000px;}
.ws43{word-spacing:5.328000px;}
.ws35{word-spacing:5.544000px;}
.wsb8{word-spacing:5.580000px;}
.ws34{word-spacing:5.688000px;}
.ws6b{word-spacing:5.760000px;}
.ws5f{word-spacing:6.408000px;}
.ws4e{word-spacing:6.552000px;}
.ws8b{word-spacing:6.660000px;}
.ws89{word-spacing:6.720000px;}
.ws8c{word-spacing:6.960000px;}
.ws71{word-spacing:6.984000px;}
.ws9a{word-spacing:7.200000px;}
.ws99{word-spacing:7.260000px;}
.ws86{word-spacing:7.272000px;}
.ws8a{word-spacing:7.320000px;}
.ws3b{word-spacing:7.560000px;}
.ws75{word-spacing:7.632000px;}
.wsc8{word-spacing:7.740000px;}
.ws74{word-spacing:7.776000px;}
.wsbc{word-spacing:7.860000px;}
.ws7c{word-spacing:8.136000px;}
.wsbb{word-spacing:8.460000px;}
.ws7b{word-spacing:8.640000px;}
.ws40{word-spacing:8.928000px;}
.wsaf{word-spacing:8.940000px;}
.ws2e{word-spacing:9.288000px;}
.ws2f{word-spacing:9.360000px;}
.ws96{word-spacing:9.600000px;}
.ws5e{word-spacing:9.648000px;}
.ws93{word-spacing:9.660000px;}
.ws70{word-spacing:9.864000px;}
.ws44{word-spacing:10.152000px;}
.ws5c{word-spacing:10.512000px;}
.ws72{word-spacing:11.088000px;}
.ws73{word-spacing:11.232000px;}
.wsaa{word-spacing:12.060000px;}
.ws6f{word-spacing:12.384000px;}
.wsa4{word-spacing:12.660000px;}
.wsa3{word-spacing:13.260000px;}
.ws4a{word-spacing:13.608000px;}
.wscd{word-spacing:14.322000px;}
.ws2b{word-spacing:14.472000px;}
.ws1e{word-spacing:14.832000px;}
.wscc{word-spacing:14.850000px;}
.ws1f{word-spacing:14.976000px;}
.ws25{word-spacing:15.336000px;}
.ws26{word-spacing:15.984000px;}
.wsab{word-spacing:16.800000px;}
.ws92{word-spacing:18.060000px;}
.ws5a{word-spacing:18.072000px;}
.ws79{word-spacing:20.952000px;}
.ws76{word-spacing:21.384000px;}
.ws30{word-spacing:24.048000px;}
.wsbe{word-spacing:24.060000px;}
.wsb9{word-spacing:25.740000px;}
.wsba{word-spacing:25.860000px;}
.ws59{word-spacing:26.424000px;}
.ws77{word-spacing:26.928000px;}
.ws85{word-spacing:30.528000px;}
.wsb3{word-spacing:30.660000px;}
.wsb2{word-spacing:30.840000px;}
.ws9c{word-spacing:45.600000px;}
.ws9b{word-spacing:45.660000px;}
.wsc9{word-spacing:57.180000px;}
.wsca{word-spacing:57.300000px;}
.wscb{word-spacing:57.480000px;}
.wsa6{word-spacing:95.520000px;}
.wsa7{word-spacing:96.000000px;}
.wsa9{word-spacing:100.140000px;}
.wsc5{word-spacing:121.980000px;}
.wsc4{word-spacing:122.160000px;}
.wsc7{word-spacing:122.280000px;}
.wsc6{word-spacing:123.300000px;}
.wsb0{word-spacing:703.260000px;}
._21{margin-left:-29.930400px;}
._20{margin-left:-28.584000px;}
._23{margin-left:-27.489600px;}
._14{margin-left:-20.368800px;}
._12{margin-left:-18.835200px;}
._15{margin-left:-17.532000px;}
._2a{margin-left:-16.495200px;}
._26{margin-left:-14.443200px;}
._24{margin-left:-12.888000px;}
._27{margin-left:-11.793600px;}
._2d{margin-left:-10.672800px;}
._18{margin-left:-9.432000px;}
._16{margin-left:-8.424000px;}
._1a{margin-left:-7.341600px;}
._c{margin-left:-6.288000px;}
._b{margin-left:-4.944000px;}
._9{margin-left:-3.184800px;}
._6{margin-left:-2.173200px;}
._5{margin-left:-1.080000px;}
._0{width:1.140000px;}
._2{width:2.412000px;}
._8{width:3.879600px;}
._a{width:5.472000px;}
._d{width:6.631200px;}
._e{width:7.917600px;}
._19{width:9.024000px;}
._1e{width:10.044000px;}
._1f{width:11.332800px;}
._25{width:12.477600px;}
._28{width:13.636800px;}
._7{width:14.856000px;}
._34{width:17.040000px;}
._13{width:18.216000px;}
._31{width:19.320000px;}
._11{width:20.908800px;}
._2e{width:22.464000px;}
._17{width:24.288000px;}
._35{width:25.972800px;}
._22{width:29.721600px;}
._f{width:31.548000px;}
._10{width:32.750400px;}
._1b{width:33.768000px;}
._1c{width:35.402400px;}
._30{width:45.408000px;}
._37{width:57.613200px;}
._32{width:96.529200px;}
._33{width:100.479600px;}
._2f{width:102.960000px;}
._36{width:122.688000px;}
._2b{width:153.111600px;}
._2c{width:174.933600px;}
._29{width:284.752800px;}
._1{width:488.220000px;}
._3{width:643.860000px;}
._4{width:775.980000px;}
._1d{width:788.100000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.000000px;}
.fs2{font-size:24.000000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y7{bottom:5.100000px;}
.ya{bottom:5.700000px;}
.ya2{bottom:51.600000px;}
.y4{bottom:67.800000px;}
.y7e{bottom:98.100000px;}
.y9e{bottom:100.518000px;}
.y39{bottom:102.606000px;}
.yd8{bottom:103.818000px;}
.yba{bottom:107.400000px;}
.yff{bottom:109.500000px;}
.yb7{bottom:119.700000px;}
.y9d{bottom:123.918000px;}
.yb9{bottom:124.806000px;}
.y38{bottom:125.700000px;}
.yd7{bottom:126.912000px;}
.y134{bottom:127.200000px;}
.y67{bottom:128.190000px;}
.yfe{bottom:128.700000px;}
.y7b{bottom:135.936000px;}
.y37{bottom:145.800000px;}
.y133{bottom:146.700000px;}
.y9c{bottom:147.318000px;}
.yb8{bottom:147.900000px;}
.yfd{bottom:148.200000px;}
.yd6{bottom:150.312000px;}
.y66{bottom:151.590000px;}
.y36{bottom:156.930000px;}
.y7a{bottom:159.336000px;}
.y132{bottom:166.200000px;}
.yfc{bottom:167.700000px;}
.y9b{bottom:170.412000px;}
.yd5{bottom:173.712000px;}
.y65{bottom:174.990000px;}
.y35{bottom:180.024000px;}
.y79{bottom:182.736000px;}
.y131{bottom:185.700000px;}
.yfb{bottom:187.200000px;}
.yb6{bottom:189.600000px;}
.y9a{bottom:193.812000px;}
.yd4{bottom:196.806000px;}
.y64{bottom:198.084000px;}
.y34{bottom:203.424000px;}
.y130{bottom:204.900000px;}
.y78{bottom:205.830000px;}
.yfa{bottom:206.400000px;}
.y99{bottom:217.212000px;}
.yd3{bottom:220.206000px;}
.y63{bottom:221.484000px;}
.y12f{bottom:224.400000px;}
.yf9{bottom:225.900000px;}
.y33{bottom:226.824000px;}
.y77{bottom:229.230000px;}
.y98{bottom:240.306000px;}
.yd2{bottom:243.300000px;}
.y12e{bottom:243.900000px;}
.y62{bottom:244.884000px;}
.yf8{bottom:245.400000px;}
.y32{bottom:249.918000px;}
.y76{bottom:252.630000px;}
.y12d{bottom:263.100000px;}
.yf7{bottom:263.700000px;}
.y97{bottom:263.706000px;}
.yd1{bottom:266.700000px;}
.y61{bottom:267.978000px;}
.y31{bottom:273.318000px;}
.y142{bottom:273.900000px;}
.y75{bottom:275.724000px;}
.yf6{bottom:281.100000px;}
.y12c{bottom:282.600000px;}
.yd0{bottom:286.800000px;}
.y96{bottom:287.106000px;}
.y60{bottom:291.378000px;}
.ycd{bottom:292.800000px;}
.y141{bottom:293.700000px;}
.y30{bottom:296.718000px;}
.ycf{bottom:297.900000px;}
.y74{bottom:299.124000px;}
.y12b{bottom:302.100000px;}
.yf5{bottom:302.700000px;}
.y95{bottom:310.200000px;}
.y140{bottom:313.800000px;}
.y5f{bottom:314.778000px;}
.yf4{bottom:319.806000px;}
.y2f{bottom:319.812000px;}
.yce{bottom:321.000000px;}
.y12a{bottom:321.300000px;}
.y73{bottom:322.218000px;}
.y13f{bottom:330.592500px;}
.y94{bottom:333.600000px;}
.y5e{bottom:337.872000px;}
.y129{bottom:340.800000px;}
.yf3{bottom:343.206000px;}
.y2e{bottom:343.212000px;}
.y72{bottom:345.618000px;}
.y13e{bottom:351.894000px;}
.y93{bottom:353.400000px;}
.y128{bottom:360.300000px;}
.y5d{bottom:361.272000px;}
.ycc{bottom:362.700000px;}
.y92{bottom:364.500000px;}
.y2d{bottom:366.306000px;}
.yf2{bottom:366.606000px;}
.y71{bottom:369.018000px;}
.y13d{bottom:373.195500px;}
.y127{bottom:379.800000px;}
.y5c{bottom:384.366000px;}
.y91{bottom:384.600000px;}
.yf1{bottom:389.700000px;}
.y2c{bottom:389.706000px;}
.y70{bottom:392.112000px;}
.y90{bottom:395.700000px;}
.y126{bottom:399.000000px;}
.y13c{bottom:399.298500px;}
.y5b{bottom:407.766000px;}
.yb5{bottom:412.500000px;}
.yf0{bottom:413.100000px;}
.y2b{bottom:413.106000px;}
.y6f{bottom:415.512000px;}
.y8f{bottom:415.800000px;}
.y125{bottom:418.500000px;}
.yb4{bottom:423.330000px;}
.y8e{bottom:426.606000px;}
.y5a{bottom:431.166000px;}
.y2a{bottom:436.200000px;}
.yef{bottom:436.500000px;}
.y124{bottom:438.000000px;}
.y6e{bottom:438.912000px;}
.y13b{bottom:442.198500px;}
.yb3{bottom:446.730000px;}
.y8d{bottom:450.006000px;}
.y59{bottom:454.260000px;}
.y29{bottom:456.300000px;}
.y123{bottom:457.200000px;}
.yee{bottom:457.800000px;}
.y6d{bottom:462.006000px;}
.y13a{bottom:463.500000px;}
.y28{bottom:467.400000px;}
.yb2{bottom:470.130000px;}
.y8c{bottom:473.406000px;}
.yed{bottom:475.224000px;}
.y122{bottom:476.700000px;}
.y58{bottom:477.660000px;}
.y139{bottom:483.600000px;}
.y6c{bottom:485.406000px;}
.y27{bottom:487.500000px;}
.yb1{bottom:493.224000px;}
.y121{bottom:496.200000px;}
.y8b{bottom:496.500000px;}
.y26{bottom:498.324000px;}
.yec{bottom:498.624000px;}
.y138{bottom:500.100000px;}
.y57{bottom:501.060000px;}
.y6b{bottom:508.806000px;}
.y120{bottom:515.400000px;}
.y8a{bottom:516.600000px;}
.yb0{bottom:516.624000px;}
.y137{bottom:519.300000px;}
.yeb{bottom:521.718000px;}
.y25{bottom:521.724000px;}
.y56{bottom:524.154000px;}
.y89{bottom:527.712000px;}
.y6a{bottom:531.900000px;}
.y11f{bottom:534.900000px;}
.y136{bottom:538.800000px;}
.yaf{bottom:540.024000px;}
.yea{bottom:545.118000px;}
.y24{bottom:545.124000px;}
.y55{bottom:547.554000px;}
.y88{bottom:550.806000px;}
.y11e{bottom:554.400000px;}
.y69{bottom:555.300000px;}
.y135{bottom:557.400000px;}
.yae{bottom:563.118000px;}
.y23{bottom:568.218000px;}
.ye9{bottom:568.518000px;}
.y54{bottom:570.954000px;}
.ycb{bottom:571.500000px;}
.y11d{bottom:573.900000px;}
.y87{bottom:574.206000px;}
.y68{bottom:576.600000px;}
.yca{bottom:582.318000px;}
.yad{bottom:586.518000px;}
.ye8{bottom:591.612000px;}
.y22{bottom:591.618000px;}
.y11c{bottom:593.100000px;}
.y53{bottom:594.048000px;}
.y86{bottom:597.606000px;}
.yc9{bottom:605.718000px;}
.yac{bottom:609.918000px;}
.y11b{bottom:612.600000px;}
.ye7{bottom:615.012000px;}
.y21{bottom:615.018000px;}
.y52{bottom:617.448000px;}
.y85{bottom:620.700000px;}
.yc8{bottom:629.118000px;}
.y11a{bottom:632.100000px;}
.yab{bottom:633.012000px;}
.y20{bottom:638.112000px;}
.ye6{bottom:638.412000px;}
.y51{bottom:640.848000px;}
.y84{bottom:644.100000px;}
.y119{bottom:651.300000px;}
.yc7{bottom:652.212000px;}
.yaa{bottom:656.412000px;}
.ye5{bottom:661.506000px;}
.y1f{bottom:661.512000px;}
.y50{bottom:663.942000px;}
.y83{bottom:664.200000px;}
.y7d{bottom:670.200000px;}
.y118{bottom:670.800000px;}
.y82{bottom:675.312000px;}
.yc6{bottom:675.612000px;}
.ya9{bottom:679.506000px;}
.ye4{bottom:684.906000px;}
.y1e{bottom:684.912000px;}
.y4f{bottom:687.342000px;}
.y117{bottom:690.300000px;}
.y81{bottom:698.406000px;}
.yc5{bottom:699.012000px;}
.ya8{bottom:702.906000px;}
.ye3{bottom:708.000000px;}
.y1d{bottom:708.006000px;}
.y116{bottom:709.500000px;}
.y4e{bottom:710.436000px;}
.y80{bottom:721.806000px;}
.yc4{bottom:722.106000px;}
.ya7{bottom:726.306000px;}
.y115{bottom:729.000000px;}
.ye2{bottom:731.400000px;}
.y1c{bottom:731.406000px;}
.y4d{bottom:733.836000px;}
.y7f{bottom:744.900000px;}
.yc3{bottom:745.506000px;}
.y114{bottom:748.500000px;}
.ya6{bottom:749.400000px;}
.ye1{bottom:753.000000px;}
.y1b{bottom:754.500000px;}
.y4c{bottom:757.236000px;}
.y113{bottom:768.000000px;}
.yc2{bottom:768.906000px;}
.ya5{bottom:769.500000px;}
.ye0{bottom:770.412000px;}
.y1a{bottom:774.600000px;}
.ya1{bottom:775.500000px;}
.y4b{bottom:780.330000px;}
.ya4{bottom:780.600000px;}
.y19{bottom:784.800000px;}
.y7c{bottom:786.600000px;}
.y112{bottom:787.200000px;}
.yc1{bottom:792.000000px;}
.ydf{bottom:793.506000px;}
.y4a{bottom:803.730000px;}
.ya3{bottom:804.000000px;}
.y18{bottom:804.300000px;}
.y111{bottom:806.700000px;}
.yc0{bottom:815.400000px;}
.yde{bottom:816.906000px;}
.y17{bottom:821.100000px;}
.y110{bottom:826.200000px;}
.y49{bottom:827.130000px;}
.y16{bottom:831.300000px;}
.ybf{bottom:834.300000px;}
.ydd{bottom:840.000000px;}
.ybe{bottom:842.400000px;}
.ya0{bottom:845.400000px;}
.y48{bottom:850.224000px;}
.y15{bottom:856.200000px;}
.ybd{bottom:861.600000px;}
.y10f{bottom:864.900000px;}
.ybc{bottom:869.700000px;}
.y14{bottom:870.300000px;}
.y47{bottom:873.624000px;}
.y10e{bottom:884.400000px;}
.ydc{bottom:887.700000px;}
.ybb{bottom:888.900000px;}
.y13{bottom:894.900000px;}
.y46{bottom:897.024000px;}
.y10d{bottom:903.600000px;}
.y12{bottom:908.100000px;}
.ydb{bottom:911.100000px;}
.y45{bottom:920.118000px;}
.y10c{bottom:923.100000px;}
.y11{bottom:925.506000px;}
.yda{bottom:934.500000px;}
.y10b{bottom:942.600000px;}
.y44{bottom:943.518000px;}
.y10{bottom:948.600000px;}
.yd9{bottom:961.800000px;}
.y10a{bottom:962.100000px;}
.y43{bottom:966.612000px;}
.yf{bottom:972.000000px;}
.y109{bottom:981.300000px;}
.y42{bottom:990.012000px;}
.ye{bottom:994.500000px;}
.y108{bottom:1000.800000px;}
.y41{bottom:1013.412000px;}
.yd{bottom:1015.200000px;}
.y107{bottom:1020.300000px;}
.y40{bottom:1036.506000px;}
.y106{bottom:1039.500000px;}
.yc{bottom:1042.500000px;}
.y105{bottom:1059.000000px;}
.y3f{bottom:1059.906000px;}
.yb{bottom:1068.300000px;}
.y9f{bottom:1072.200000px;}
.y104{bottom:1078.500000px;}
.y8{bottom:1083.300000px;}
.y3e{bottom:1083.306000px;}
.y103{bottom:1097.700000px;}
.y3d{bottom:1106.400000px;}
.y6{bottom:1107.300000px;}
.y102{bottom:1117.200000px;}
.y3c{bottom:1129.800000px;}
.y5{bottom:1132.500000px;}
.y101{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y3b{bottom:1153.200000px;}
.y100{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y3a{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h18{height:10.440000px;}
.hf{height:17.136000px;}
.h4{height:20.880000px;}
.h5{height:23.401500px;}
.h8{height:24.000000px;}
.hd{height:28.008000px;}
.hc{height:41.760000px;}
.h1b{height:42.840000px;}
.h2{height:46.680000px;}
.h7{height:47.401500px;}
.h6{height:51.408000px;}
.h9{height:52.200000px;}
.he{height:56.016000px;}
.h1c{height:57.420000px;}
.h10{height:58.857422px;}
.ha{height:59.976000px;}
.hb{height:62.640000px;}
.h17{height:69.898500px;}
.h15{height:69.900000px;}
.h3{height:70.664062px;}
.h11{height:103.113281px;}
.h13{height:116.401500px;}
.h19{height:207.000000px;}
.h1a{height:209.401500px;}
.h16{height:221.100000px;}
.h14{height:225.000000px;}
.h12{height:384.600000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w2{width:478.200000px;}
.w5{width:709.200000px;}
.w6{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x23{left:36.000000px;}
.x1b{left:59.700000px;}
.x3{left:79.800000px;}
.x1{left:91.500000px;}
.x1c{left:101.706000px;}
.x1e{left:110.094000px;}
.x1d{left:112.200000px;}
.xf{left:114.600000px;}
.x2e{left:118.500000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x19{left:134.106000px;}
.x2a{left:135.912000px;}
.x27{left:138.600000px;}
.x17{left:144.600000px;}
.x29{left:152.400000px;}
.xa{left:167.400000px;}
.x2c{left:172.828500px;}
.x25{left:186.300000px;}
.x16{left:197.700000px;}
.x11{left:210.300000px;}
.x21{left:215.106000px;}
.x12{left:231.300000px;}
.xd{left:247.494000px;}
.xc{left:260.100000px;}
.xe{left:262.518000px;}
.xb{left:288.297000px;}
.x2b{left:289.830000px;}
.x24{left:356.412000px;}
.x14{left:374.100000px;}
.x10{left:384.300000px;}
.x2d{left:442.200000px;}
.x2{left:446.400000px;}
.x15{left:449.400000px;}
.x1f{left:457.200000px;}
.x13{left:460.500000px;}
.x18{left:467.700000px;}
.x9{left:473.100000px;}
.x5{left:558.000000px;}
.x28{left:663.000000px;}
.x7{left:685.800000px;}
.x1a{left:699.900000px;}
.x26{left:714.600000px;}
.x22{left:717.300000px;}
.x20{left:719.100000px;}
@media print{
.v3{vertical-align:-21.333333pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v1{vertical-align:21.333333pt;}
.ls44{letter-spacing:-3.573333pt;}
.ls53{letter-spacing:-2.506667pt;}
.ls24{letter-spacing:-2.176000pt;}
.ls51{letter-spacing:-1.440000pt;}
.ls5d{letter-spacing:-1.173333pt;}
.ls39{letter-spacing:-1.152000pt;}
.ls2e{letter-spacing:-1.088000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls52{letter-spacing:-0.704000pt;}
.ls41{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls63{letter-spacing:-0.469333pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.373333pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls5e{letter-spacing:-0.293333pt;}
.ls20{letter-spacing:-0.266667pt;}
.ls27{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls61{letter-spacing:-0.176000pt;}
.ls45{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.128000pt;}
.ls62{letter-spacing:-0.117333pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls64{letter-spacing:-0.058667pt;}
.ls42{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.053333pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.128000pt;}
.ls55{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls60{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls65{letter-spacing:0.352000pt;}
.lsb{letter-spacing:0.364800pt;}
.ls22{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.403200pt;}
.ls2d{letter-spacing:0.409600pt;}
.ls5f{letter-spacing:0.410667pt;}
.lsc{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.428800pt;}
.ls9{letter-spacing:0.441600pt;}
.ls7{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls31{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.522667pt;}
.ls47{letter-spacing:0.693333pt;}
.ls34{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.986667pt;}
.ls3a{letter-spacing:1.024000pt;}
.ls4b{letter-spacing:1.061333pt;}
.ls33{letter-spacing:1.254400pt;}
.ls54{letter-spacing:1.386667pt;}
.ls23{letter-spacing:2.112000pt;}
.lsd{letter-spacing:3.200000pt;}
.ls5b{letter-spacing:3.637333pt;}
.ls4a{letter-spacing:3.893333pt;}
.ls35{letter-spacing:4.204800pt;}
.ls37{letter-spacing:4.224000pt;}
.ls26{letter-spacing:5.312000pt;}
.ls48{letter-spacing:6.026667pt;}
.ls10{letter-spacing:6.400000pt;}
.ls40{letter-spacing:7.093333pt;}
.ls2b{letter-spacing:7.424000pt;}
.ls3d{letter-spacing:8.512000pt;}
.ls5c{letter-spacing:10.293333pt;}
.ls4d{letter-spacing:11.360000pt;}
.ls30{letter-spacing:11.712000pt;}
.ls5a{letter-spacing:13.141333pt;}
.ls46{letter-spacing:15.626667pt;}
.ls38{letter-spacing:16.000000pt;}
.lse{letter-spacing:17.024000pt;}
.ls57{letter-spacing:20.960000pt;}
.ls56{letter-spacing:23.093333pt;}
.ls2f{letter-spacing:25.600000pt;}
.ls50{letter-spacing:27.360000pt;}
.ls49{letter-spacing:40.160000pt;}
.ls59{letter-spacing:50.826667pt;}
.ls4e{letter-spacing:84.960000pt;}
.ls4f{letter-spacing:89.226667pt;}
.ls4c{letter-spacing:90.293333pt;}
.ls3e{letter-spacing:106.624000pt;}
.ls58{letter-spacing:108.426667pt;}
.ls3f{letter-spacing:157.824000pt;}
.ls3b{letter-spacing:170.624000pt;}
.ls3c{letter-spacing:197.312000pt;}
.ls32{letter-spacing:232.160000pt;}
.ls1{letter-spacing:441.226667pt;}
.ls3{letter-spacing:662.026667pt;}
.ls2{letter-spacing:746.293333pt;}
.ls2c{letter-spacing:860.266667pt;}
.ls0{letter-spacing:1055.626667pt;}
.ws54{word-spacing:-64.000000pt;}
.ws4f{word-spacing:-25.920000pt;}
.wsa{word-spacing:-17.472000pt;}
.ws2{word-spacing:-17.408000pt;}
.ws68{word-spacing:-17.280000pt;}
.wsc{word-spacing:-17.152000pt;}
.ws9{word-spacing:-17.088000pt;}
.ws33{word-spacing:-17.024000pt;}
.ws67{word-spacing:-16.832000pt;}
.ws3d{word-spacing:-16.768000pt;}
.ws69{word-spacing:-16.704000pt;}
.ws3e{word-spacing:-16.576000pt;}
.ws3{word-spacing:-16.320000pt;}
.ws7f{word-spacing:-16.192000pt;}
.wsb7{word-spacing:-16.016000pt;}
.ws65{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws7d{word-spacing:-15.872000pt;}
.ws7e{word-spacing:-15.680000pt;}
.wsb6{word-spacing:-15.194667pt;}
.ws7{word-spacing:-15.040000pt;}
.ws90{word-spacing:-14.560000pt;}
.wsb5{word-spacing:-14.549333pt;}
.ws8d{word-spacing:-14.453333pt;}
.ws8f{word-spacing:-14.400000pt;}
.ws53{word-spacing:-14.346667pt;}
.ws81{word-spacing:-14.293333pt;}
.ws4{word-spacing:-14.240000pt;}
.ws91{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.973333pt;}
.ws6{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.ws5{word-spacing:-13.760000pt;}
.ws80{word-spacing:-13.066667pt;}
.wsb4{word-spacing:-13.013333pt;}
.ws51{word-spacing:-11.712000pt;}
.wsbd{word-spacing:-10.293333pt;}
.ws1{word-spacing:-9.968000pt;}
.ws6e{word-spacing:-8.512000pt;}
.ws8e{word-spacing:-7.840000pt;}
.ws39{word-spacing:-7.424000pt;}
.ws83{word-spacing:-6.400000pt;}
.ws2d{word-spacing:-5.312000pt;}
.ws63{word-spacing:-4.224000pt;}
.wsad{word-spacing:-3.786667pt;}
.wsb1{word-spacing:-3.680000pt;}
.ws66{word-spacing:-3.392000pt;}
.ws36{word-spacing:-3.200000pt;}
.wsac{word-spacing:-3.146667pt;}
.ws45{word-spacing:-3.136000pt;}
.ws46{word-spacing:-2.816000pt;}
.ws20{word-spacing:-2.688000pt;}
.wsc2{word-spacing:-2.613333pt;}
.ws4d{word-spacing:-2.368000pt;}
.ws94{word-spacing:-2.133333pt;}
.ws28{word-spacing:-2.112000pt;}
.ws9f{word-spacing:-2.080000pt;}
.ws4c{word-spacing:-1.920000pt;}
.ws78{word-spacing:-1.792000pt;}
.ws29{word-spacing:-1.664000pt;}
.wsbf{word-spacing:-1.653333pt;}
.wsc0{word-spacing:-1.546667pt;}
.wsc3{word-spacing:-1.493333pt;}
.wsa5{word-spacing:-1.386667pt;}
.ws6c{word-spacing:-1.280000pt;}
.wsa1{word-spacing:-1.066667pt;}
.ws3f{word-spacing:-1.024000pt;}
.wsa0{word-spacing:-1.013333pt;}
.ws56{word-spacing:-0.768000pt;}
.ws60{word-spacing:-0.704000pt;}
.ws62{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.586667pt;}
.ws42{word-spacing:-0.576000pt;}
.ws64{word-spacing:-0.512000pt;}
.ws19{word-spacing:-0.480000pt;}
.ws61{word-spacing:-0.448000pt;}
.wsc1{word-spacing:-0.426667pt;}
.ws24{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.373333pt;}
.ws15{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.266667pt;}
.ws16{word-spacing:-0.256000pt;}
.ws12{word-spacing:-0.224000pt;}
.ws87{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.192000pt;}
.ws31{word-spacing:-0.128000pt;}
.wsae{word-spacing:-0.106667pt;}
.ws95{word-spacing:-0.053333pt;}
.wse{word-spacing:0.000000pt;}
.wsf{word-spacing:0.053333pt;}
.wsce{word-spacing:0.058667pt;}
.ws2c{word-spacing:0.064000pt;}
.ws98{word-spacing:0.106667pt;}
.ws6a{word-spacing:0.128000pt;}
.ws32{word-spacing:0.192000pt;}
.ws3c{word-spacing:0.256000pt;}
.ws1d{word-spacing:0.266667pt;}
.ws17{word-spacing:0.320000pt;}
.ws1a{word-spacing:0.373333pt;}
.ws37{word-spacing:0.384000pt;}
.wsd2{word-spacing:0.410667pt;}
.ws1c{word-spacing:0.426667pt;}
.ws3a{word-spacing:0.448000pt;}
.wsd1{word-spacing:0.469333pt;}
.ws18{word-spacing:0.512000pt;}
.ws84{word-spacing:0.576000pt;}
.ws13{word-spacing:0.672000pt;}
.ws38{word-spacing:0.768000pt;}
.ws52{word-spacing:0.832000pt;}
.ws48{word-spacing:1.088000pt;}
.wsa8{word-spacing:1.120000pt;}
.ws82{word-spacing:1.408000pt;}
.ws97{word-spacing:1.440000pt;}
.ws14{word-spacing:1.472000pt;}
.ws55{word-spacing:1.536000pt;}
.ws2a{word-spacing:2.176000pt;}
.ws6d{word-spacing:2.368000pt;}
.ws41{word-spacing:2.496000pt;}
.ws9e{word-spacing:2.506667pt;}
.ws49{word-spacing:2.624000pt;}
.wsa2{word-spacing:2.720000pt;}
.ws22{word-spacing:2.944000pt;}
.ws21{word-spacing:3.008000pt;}
.wsd0{word-spacing:3.109333pt;}
.ws50{word-spacing:3.264000pt;}
.ws5d{word-spacing:3.328000pt;}
.ws7a{word-spacing:3.456000pt;}
.ws88{word-spacing:3.573333pt;}
.ws4b{word-spacing:3.584000pt;}
.ws23{word-spacing:3.648000pt;}
.wscf{word-spacing:3.696000pt;}
.ws27{word-spacing:3.712000pt;}
.ws9d{word-spacing:3.786667pt;}
.ws57{word-spacing:3.968000pt;}
.ws5b{word-spacing:4.032000pt;}
.ws47{word-spacing:4.288000pt;}
.ws58{word-spacing:4.608000pt;}
.ws43{word-spacing:4.736000pt;}
.ws35{word-spacing:4.928000pt;}
.wsb8{word-spacing:4.960000pt;}
.ws34{word-spacing:5.056000pt;}
.ws6b{word-spacing:5.120000pt;}
.ws5f{word-spacing:5.696000pt;}
.ws4e{word-spacing:5.824000pt;}
.ws8b{word-spacing:5.920000pt;}
.ws89{word-spacing:5.973333pt;}
.ws8c{word-spacing:6.186667pt;}
.ws71{word-spacing:6.208000pt;}
.ws9a{word-spacing:6.400000pt;}
.ws99{word-spacing:6.453333pt;}
.ws86{word-spacing:6.464000pt;}
.ws8a{word-spacing:6.506667pt;}
.ws3b{word-spacing:6.720000pt;}
.ws75{word-spacing:6.784000pt;}
.wsc8{word-spacing:6.880000pt;}
.ws74{word-spacing:6.912000pt;}
.wsbc{word-spacing:6.986667pt;}
.ws7c{word-spacing:7.232000pt;}
.wsbb{word-spacing:7.520000pt;}
.ws7b{word-spacing:7.680000pt;}
.ws40{word-spacing:7.936000pt;}
.wsaf{word-spacing:7.946667pt;}
.ws2e{word-spacing:8.256000pt;}
.ws2f{word-spacing:8.320000pt;}
.ws96{word-spacing:8.533333pt;}
.ws5e{word-spacing:8.576000pt;}
.ws93{word-spacing:8.586667pt;}
.ws70{word-spacing:8.768000pt;}
.ws44{word-spacing:9.024000pt;}
.ws5c{word-spacing:9.344000pt;}
.ws72{word-spacing:9.856000pt;}
.ws73{word-spacing:9.984000pt;}
.wsaa{word-spacing:10.720000pt;}
.ws6f{word-spacing:11.008000pt;}
.wsa4{word-spacing:11.253333pt;}
.wsa3{word-spacing:11.786667pt;}
.ws4a{word-spacing:12.096000pt;}
.wscd{word-spacing:12.730667pt;}
.ws2b{word-spacing:12.864000pt;}
.ws1e{word-spacing:13.184000pt;}
.wscc{word-spacing:13.200000pt;}
.ws1f{word-spacing:13.312000pt;}
.ws25{word-spacing:13.632000pt;}
.ws26{word-spacing:14.208000pt;}
.wsab{word-spacing:14.933333pt;}
.ws92{word-spacing:16.053333pt;}
.ws5a{word-spacing:16.064000pt;}
.ws79{word-spacing:18.624000pt;}
.ws76{word-spacing:19.008000pt;}
.ws30{word-spacing:21.376000pt;}
.wsbe{word-spacing:21.386667pt;}
.wsb9{word-spacing:22.880000pt;}
.wsba{word-spacing:22.986667pt;}
.ws59{word-spacing:23.488000pt;}
.ws77{word-spacing:23.936000pt;}
.ws85{word-spacing:27.136000pt;}
.wsb3{word-spacing:27.253333pt;}
.wsb2{word-spacing:27.413333pt;}
.ws9c{word-spacing:40.533333pt;}
.ws9b{word-spacing:40.586667pt;}
.wsc9{word-spacing:50.826667pt;}
.wsca{word-spacing:50.933333pt;}
.wscb{word-spacing:51.093333pt;}
.wsa6{word-spacing:84.906667pt;}
.wsa7{word-spacing:85.333333pt;}
.wsa9{word-spacing:89.013333pt;}
.wsc5{word-spacing:108.426667pt;}
.wsc4{word-spacing:108.586667pt;}
.wsc7{word-spacing:108.693333pt;}
.wsc6{word-spacing:109.600000pt;}
.wsb0{word-spacing:625.120000pt;}
._21{margin-left:-26.604800pt;}
._20{margin-left:-25.408000pt;}
._23{margin-left:-24.435200pt;}
._14{margin-left:-18.105600pt;}
._12{margin-left:-16.742400pt;}
._15{margin-left:-15.584000pt;}
._2a{margin-left:-14.662400pt;}
._26{margin-left:-12.838400pt;}
._24{margin-left:-11.456000pt;}
._27{margin-left:-10.483200pt;}
._2d{margin-left:-9.486933pt;}
._18{margin-left:-8.384000pt;}
._16{margin-left:-7.488000pt;}
._1a{margin-left:-6.525867pt;}
._c{margin-left:-5.589333pt;}
._b{margin-left:-4.394667pt;}
._9{margin-left:-2.830933pt;}
._6{margin-left:-1.931733pt;}
._5{margin-left:-0.960000pt;}
._0{width:1.013333pt;}
._2{width:2.144000pt;}
._8{width:3.448533pt;}
._a{width:4.864000pt;}
._d{width:5.894400pt;}
._e{width:7.037867pt;}
._19{width:8.021333pt;}
._1e{width:8.928000pt;}
._1f{width:10.073600pt;}
._25{width:11.091200pt;}
._28{width:12.121600pt;}
._7{width:13.205333pt;}
._34{width:15.146667pt;}
._13{width:16.192000pt;}
._31{width:17.173333pt;}
._11{width:18.585600pt;}
._2e{width:19.968000pt;}
._17{width:21.589333pt;}
._35{width:23.086933pt;}
._22{width:26.419200pt;}
._f{width:28.042667pt;}
._10{width:29.111467pt;}
._1b{width:30.016000pt;}
._1c{width:31.468800pt;}
._30{width:40.362667pt;}
._37{width:51.211733pt;}
._32{width:85.803733pt;}
._33{width:89.315200pt;}
._2f{width:91.520000pt;}
._36{width:109.056000pt;}
._2b{width:136.099200pt;}
._2c{width:155.496533pt;}
._29{width:253.113600pt;}
._1{width:433.973333pt;}
._3{width:572.320000pt;}
._4{width:689.760000pt;}
._1d{width:700.533333pt;}
.fs7{font-size:10.666667pt;}
.fs2{font-size:21.333333pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.066667pt;}
.ya2{bottom:45.866667pt;}
.y4{bottom:60.266667pt;}
.y7e{bottom:87.200000pt;}
.y9e{bottom:89.349333pt;}
.y39{bottom:91.205333pt;}
.yd8{bottom:92.282667pt;}
.yba{bottom:95.466667pt;}
.yff{bottom:97.333333pt;}
.yb7{bottom:106.400000pt;}
.y9d{bottom:110.149333pt;}
.yb9{bottom:110.938667pt;}
.y38{bottom:111.733333pt;}
.yd7{bottom:112.810667pt;}
.y134{bottom:113.066667pt;}
.y67{bottom:113.946667pt;}
.yfe{bottom:114.400000pt;}
.y7b{bottom:120.832000pt;}
.y37{bottom:129.600000pt;}
.y133{bottom:130.400000pt;}
.y9c{bottom:130.949333pt;}
.yb8{bottom:131.466667pt;}
.yfd{bottom:131.733333pt;}
.yd6{bottom:133.610667pt;}
.y66{bottom:134.746667pt;}
.y36{bottom:139.493333pt;}
.y7a{bottom:141.632000pt;}
.y132{bottom:147.733333pt;}
.yfc{bottom:149.066667pt;}
.y9b{bottom:151.477333pt;}
.yd5{bottom:154.410667pt;}
.y65{bottom:155.546667pt;}
.y35{bottom:160.021333pt;}
.y79{bottom:162.432000pt;}
.y131{bottom:165.066667pt;}
.yfb{bottom:166.400000pt;}
.yb6{bottom:168.533333pt;}
.y9a{bottom:172.277333pt;}
.yd4{bottom:174.938667pt;}
.y64{bottom:176.074667pt;}
.y34{bottom:180.821333pt;}
.y130{bottom:182.133333pt;}
.y78{bottom:182.960000pt;}
.yfa{bottom:183.466667pt;}
.y99{bottom:193.077333pt;}
.yd3{bottom:195.738667pt;}
.y63{bottom:196.874667pt;}
.y12f{bottom:199.466667pt;}
.yf9{bottom:200.800000pt;}
.y33{bottom:201.621333pt;}
.y77{bottom:203.760000pt;}
.y98{bottom:213.605333pt;}
.yd2{bottom:216.266667pt;}
.y12e{bottom:216.800000pt;}
.y62{bottom:217.674667pt;}
.yf8{bottom:218.133333pt;}
.y32{bottom:222.149333pt;}
.y76{bottom:224.560000pt;}
.y12d{bottom:233.866667pt;}
.yf7{bottom:234.400000pt;}
.y97{bottom:234.405333pt;}
.yd1{bottom:237.066667pt;}
.y61{bottom:238.202667pt;}
.y31{bottom:242.949333pt;}
.y142{bottom:243.466667pt;}
.y75{bottom:245.088000pt;}
.yf6{bottom:249.866667pt;}
.y12c{bottom:251.200000pt;}
.yd0{bottom:254.933333pt;}
.y96{bottom:255.205333pt;}
.y60{bottom:259.002667pt;}
.ycd{bottom:260.266667pt;}
.y141{bottom:261.066667pt;}
.y30{bottom:263.749333pt;}
.ycf{bottom:264.800000pt;}
.y74{bottom:265.888000pt;}
.y12b{bottom:268.533333pt;}
.yf5{bottom:269.066667pt;}
.y95{bottom:275.733333pt;}
.y140{bottom:278.933333pt;}
.y5f{bottom:279.802667pt;}
.yf4{bottom:284.272000pt;}
.y2f{bottom:284.277333pt;}
.yce{bottom:285.333333pt;}
.y12a{bottom:285.600000pt;}
.y73{bottom:286.416000pt;}
.y13f{bottom:293.860000pt;}
.y94{bottom:296.533333pt;}
.y5e{bottom:300.330667pt;}
.y129{bottom:302.933333pt;}
.yf3{bottom:305.072000pt;}
.y2e{bottom:305.077333pt;}
.y72{bottom:307.216000pt;}
.y13e{bottom:312.794667pt;}
.y93{bottom:314.133333pt;}
.y128{bottom:320.266667pt;}
.y5d{bottom:321.130667pt;}
.ycc{bottom:322.400000pt;}
.y92{bottom:324.000000pt;}
.y2d{bottom:325.605333pt;}
.yf2{bottom:325.872000pt;}
.y71{bottom:328.016000pt;}
.y13d{bottom:331.729333pt;}
.y127{bottom:337.600000pt;}
.y5c{bottom:341.658667pt;}
.y91{bottom:341.866667pt;}
.yf1{bottom:346.400000pt;}
.y2c{bottom:346.405333pt;}
.y70{bottom:348.544000pt;}
.y90{bottom:351.733333pt;}
.y126{bottom:354.666667pt;}
.y13c{bottom:354.932000pt;}
.y5b{bottom:362.458667pt;}
.yb5{bottom:366.666667pt;}
.yf0{bottom:367.200000pt;}
.y2b{bottom:367.205333pt;}
.y6f{bottom:369.344000pt;}
.y8f{bottom:369.600000pt;}
.y125{bottom:372.000000pt;}
.yb4{bottom:376.293333pt;}
.y8e{bottom:379.205333pt;}
.y5a{bottom:383.258667pt;}
.y2a{bottom:387.733333pt;}
.yef{bottom:388.000000pt;}
.y124{bottom:389.333333pt;}
.y6e{bottom:390.144000pt;}
.y13b{bottom:393.065333pt;}
.yb3{bottom:397.093333pt;}
.y8d{bottom:400.005333pt;}
.y59{bottom:403.786667pt;}
.y29{bottom:405.600000pt;}
.y123{bottom:406.400000pt;}
.yee{bottom:406.933333pt;}
.y6d{bottom:410.672000pt;}
.y13a{bottom:412.000000pt;}
.y28{bottom:415.466667pt;}
.yb2{bottom:417.893333pt;}
.y8c{bottom:420.805333pt;}
.yed{bottom:422.421333pt;}
.y122{bottom:423.733333pt;}
.y58{bottom:424.586667pt;}
.y139{bottom:429.866667pt;}
.y6c{bottom:431.472000pt;}
.y27{bottom:433.333333pt;}
.yb1{bottom:438.421333pt;}
.y121{bottom:441.066667pt;}
.y8b{bottom:441.333333pt;}
.y26{bottom:442.954667pt;}
.yec{bottom:443.221333pt;}
.y138{bottom:444.533333pt;}
.y57{bottom:445.386667pt;}
.y6b{bottom:452.272000pt;}
.y120{bottom:458.133333pt;}
.y8a{bottom:459.200000pt;}
.yb0{bottom:459.221333pt;}
.y137{bottom:461.600000pt;}
.yeb{bottom:463.749333pt;}
.y25{bottom:463.754667pt;}
.y56{bottom:465.914667pt;}
.y89{bottom:469.077333pt;}
.y6a{bottom:472.800000pt;}
.y11f{bottom:475.466667pt;}
.y136{bottom:478.933333pt;}
.yaf{bottom:480.021333pt;}
.yea{bottom:484.549333pt;}
.y24{bottom:484.554667pt;}
.y55{bottom:486.714667pt;}
.y88{bottom:489.605333pt;}
.y11e{bottom:492.800000pt;}
.y69{bottom:493.600000pt;}
.y135{bottom:495.466667pt;}
.yae{bottom:500.549333pt;}
.y23{bottom:505.082667pt;}
.ye9{bottom:505.349333pt;}
.y54{bottom:507.514667pt;}
.ycb{bottom:508.000000pt;}
.y11d{bottom:510.133333pt;}
.y87{bottom:510.405333pt;}
.y68{bottom:512.533333pt;}
.yca{bottom:517.616000pt;}
.yad{bottom:521.349333pt;}
.ye8{bottom:525.877333pt;}
.y22{bottom:525.882667pt;}
.y11c{bottom:527.200000pt;}
.y53{bottom:528.042667pt;}
.y86{bottom:531.205333pt;}
.yc9{bottom:538.416000pt;}
.yac{bottom:542.149333pt;}
.y11b{bottom:544.533333pt;}
.ye7{bottom:546.677333pt;}
.y21{bottom:546.682667pt;}
.y52{bottom:548.842667pt;}
.y85{bottom:551.733333pt;}
.yc8{bottom:559.216000pt;}
.y11a{bottom:561.866667pt;}
.yab{bottom:562.677333pt;}
.y20{bottom:567.210667pt;}
.ye6{bottom:567.477333pt;}
.y51{bottom:569.642667pt;}
.y84{bottom:572.533333pt;}
.y119{bottom:578.933333pt;}
.yc7{bottom:579.744000pt;}
.yaa{bottom:583.477333pt;}
.ye5{bottom:588.005333pt;}
.y1f{bottom:588.010667pt;}
.y50{bottom:590.170667pt;}
.y83{bottom:590.400000pt;}
.y7d{bottom:595.733333pt;}
.y118{bottom:596.266667pt;}
.y82{bottom:600.277333pt;}
.yc6{bottom:600.544000pt;}
.ya9{bottom:604.005333pt;}
.ye4{bottom:608.805333pt;}
.y1e{bottom:608.810667pt;}
.y4f{bottom:610.970667pt;}
.y117{bottom:613.600000pt;}
.y81{bottom:620.805333pt;}
.yc5{bottom:621.344000pt;}
.ya8{bottom:624.805333pt;}
.ye3{bottom:629.333333pt;}
.y1d{bottom:629.338667pt;}
.y116{bottom:630.666667pt;}
.y4e{bottom:631.498667pt;}
.y80{bottom:641.605333pt;}
.yc4{bottom:641.872000pt;}
.ya7{bottom:645.605333pt;}
.y115{bottom:648.000000pt;}
.ye2{bottom:650.133333pt;}
.y1c{bottom:650.138667pt;}
.y4d{bottom:652.298667pt;}
.y7f{bottom:662.133333pt;}
.yc3{bottom:662.672000pt;}
.y114{bottom:665.333333pt;}
.ya6{bottom:666.133333pt;}
.ye1{bottom:669.333333pt;}
.y1b{bottom:670.666667pt;}
.y4c{bottom:673.098667pt;}
.y113{bottom:682.666667pt;}
.yc2{bottom:683.472000pt;}
.ya5{bottom:684.000000pt;}
.ye0{bottom:684.810667pt;}
.y1a{bottom:688.533333pt;}
.ya1{bottom:689.333333pt;}
.y4b{bottom:693.626667pt;}
.ya4{bottom:693.866667pt;}
.y19{bottom:697.600000pt;}
.y7c{bottom:699.200000pt;}
.y112{bottom:699.733333pt;}
.yc1{bottom:704.000000pt;}
.ydf{bottom:705.338667pt;}
.y4a{bottom:714.426667pt;}
.ya3{bottom:714.666667pt;}
.y18{bottom:714.933333pt;}
.y111{bottom:717.066667pt;}
.yc0{bottom:724.800000pt;}
.yde{bottom:726.138667pt;}
.y17{bottom:729.866667pt;}
.y110{bottom:734.400000pt;}
.y49{bottom:735.226667pt;}
.y16{bottom:738.933333pt;}
.ybf{bottom:741.600000pt;}
.ydd{bottom:746.666667pt;}
.ybe{bottom:748.800000pt;}
.ya0{bottom:751.466667pt;}
.y48{bottom:755.754667pt;}
.y15{bottom:761.066667pt;}
.ybd{bottom:765.866667pt;}
.y10f{bottom:768.800000pt;}
.ybc{bottom:773.066667pt;}
.y14{bottom:773.600000pt;}
.y47{bottom:776.554667pt;}
.y10e{bottom:786.133333pt;}
.ydc{bottom:789.066667pt;}
.ybb{bottom:790.133333pt;}
.y13{bottom:795.466667pt;}
.y46{bottom:797.354667pt;}
.y10d{bottom:803.200000pt;}
.y12{bottom:807.200000pt;}
.ydb{bottom:809.866667pt;}
.y45{bottom:817.882667pt;}
.y10c{bottom:820.533333pt;}
.y11{bottom:822.672000pt;}
.yda{bottom:830.666667pt;}
.y10b{bottom:837.866667pt;}
.y44{bottom:838.682667pt;}
.y10{bottom:843.200000pt;}
.yd9{bottom:854.933333pt;}
.y10a{bottom:855.200000pt;}
.y43{bottom:859.210667pt;}
.yf{bottom:864.000000pt;}
.y109{bottom:872.266667pt;}
.y42{bottom:880.010667pt;}
.ye{bottom:884.000000pt;}
.y108{bottom:889.600000pt;}
.y41{bottom:900.810667pt;}
.yd{bottom:902.400000pt;}
.y107{bottom:906.933333pt;}
.y40{bottom:921.338667pt;}
.y106{bottom:924.000000pt;}
.yc{bottom:926.666667pt;}
.y105{bottom:941.333333pt;}
.y3f{bottom:942.138667pt;}
.yb{bottom:949.600000pt;}
.y9f{bottom:953.066667pt;}
.y104{bottom:958.666667pt;}
.y8{bottom:962.933333pt;}
.y3e{bottom:962.938667pt;}
.y103{bottom:975.733333pt;}
.y3d{bottom:983.466667pt;}
.y6{bottom:984.266667pt;}
.y102{bottom:993.066667pt;}
.y3c{bottom:1004.266667pt;}
.y5{bottom:1006.666667pt;}
.y101{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y3b{bottom:1025.066667pt;}
.y100{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y3a{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h18{height:9.280000pt;}
.hf{height:15.232000pt;}
.h4{height:18.560000pt;}
.h5{height:20.801333pt;}
.h8{height:21.333333pt;}
.hd{height:24.896000pt;}
.hc{height:37.120000pt;}
.h1b{height:38.080000pt;}
.h2{height:41.493333pt;}
.h7{height:42.134667pt;}
.h6{height:45.696000pt;}
.h9{height:46.400000pt;}
.he{height:49.792000pt;}
.h1c{height:51.040000pt;}
.h10{height:52.317708pt;}
.ha{height:53.312000pt;}
.hb{height:55.680000pt;}
.h17{height:62.132000pt;}
.h15{height:62.133333pt;}
.h3{height:62.812500pt;}
.h11{height:91.656250pt;}
.h13{height:103.468000pt;}
.h19{height:184.000000pt;}
.h1a{height:186.134667pt;}
.h16{height:196.533333pt;}
.h14{height:200.000000pt;}
.h12{height:341.866667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w2{width:425.066667pt;}
.w5{width:630.400000pt;}
.w6{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x23{left:32.000000pt;}
.x1b{left:53.066667pt;}
.x3{left:70.933333pt;}
.x1{left:81.333333pt;}
.x1c{left:90.405333pt;}
.x1e{left:97.861333pt;}
.x1d{left:99.733333pt;}
.xf{left:101.866667pt;}
.x2e{left:105.333333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x19{left:119.205333pt;}
.x2a{left:120.810667pt;}
.x27{left:123.200000pt;}
.x17{left:128.533333pt;}
.x29{left:135.466667pt;}
.xa{left:148.800000pt;}
.x2c{left:153.625333pt;}
.x25{left:165.600000pt;}
.x16{left:175.733333pt;}
.x11{left:186.933333pt;}
.x21{left:191.205333pt;}
.x12{left:205.600000pt;}
.xd{left:219.994667pt;}
.xc{left:231.200000pt;}
.xe{left:233.349333pt;}
.xb{left:256.264000pt;}
.x2b{left:257.626667pt;}
.x24{left:316.810667pt;}
.x14{left:332.533333pt;}
.x10{left:341.600000pt;}
.x2d{left:393.066667pt;}
.x2{left:396.800000pt;}
.x15{left:399.466667pt;}
.x1f{left:406.400000pt;}
.x13{left:409.333333pt;}
.x18{left:415.733333pt;}
.x9{left:420.533333pt;}
.x5{left:496.000000pt;}
.x28{left:589.333333pt;}
.x7{left:609.600000pt;}
.x1a{left:622.133333pt;}
.x26{left:635.200000pt;}
.x22{left:637.600000pt;}
.x20{left:639.200000pt;}
}




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