
    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_46ea05944b7d8691fc011cc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.101562;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_30f42e482571d5b5cb57476f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c294245bf93b0004cf8eb0f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_cdf99e0809f5f9c1dc53d1eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_c2a0a12472d4a07fc3ddb148.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_9fe7b28a52aa2b23312e08d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_2701f0b68f31abcfe4fe1f73.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.102539;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_8219670fcacfba0c578f6628.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_659acf46054b7103355a23b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_7abe92f1dd3885e7c492cb09.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v1{vertical-align:27.360000px;}
.v6{vertical-align:33.140880px;}
.v2{vertical-align:47.520000px;}
.ls9{letter-spacing:-1.440000px;}
.ls3d{letter-spacing:-1.008000px;}
.ls30{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.720000px;}
.ls41{letter-spacing:-0.432000px;}
.ls3c{letter-spacing:-0.337680px;}
.lsf{letter-spacing:-0.336960px;}
.ls8{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.033696px;}
.ls25{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.162000px;}
.ls17{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.336960px;}
.ls1b{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.385920px;}
.ls47{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.ls22{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.160000px;}
.ls2d{letter-spacing:2.880000px;}
.ls16{letter-spacing:3.600000px;}
.ls4{letter-spacing:4.320000px;}
.ls31{letter-spacing:5.040000px;}
.ls2{letter-spacing:5.760000px;}
.ls21{letter-spacing:6.480000px;}
.ls24{letter-spacing:7.200000px;}
.ls2b{letter-spacing:7.920000px;}
.ls38{letter-spacing:8.640000px;}
.ls2a{letter-spacing:9.360000px;}
.ls11{letter-spacing:10.080000px;}
.ls45{letter-spacing:10.800000px;}
.ls49{letter-spacing:10.944000px;}
.ls3e{letter-spacing:12.240000px;}
.ls5{letter-spacing:12.960000px;}
.ls27{letter-spacing:14.400000px;}
.ls26{letter-spacing:15.120000px;}
.ls1a{letter-spacing:15.840000px;}
.ls4a{letter-spacing:16.560000px;}
.ls10{letter-spacing:17.280000px;}
.ls35{letter-spacing:18.720000px;}
.ls42{letter-spacing:19.440000px;}
.ls1e{letter-spacing:21.600000px;}
.ls20{letter-spacing:23.040000px;}
.ls34{letter-spacing:23.904000px;}
.ls43{letter-spacing:24.480000px;}
.ls3a{letter-spacing:25.200000px;}
.ls39{letter-spacing:26.640000px;}
.ls40{letter-spacing:27.360000px;}
.lsd{letter-spacing:28.080000px;}
.ls33{letter-spacing:28.224000px;}
.ls46{letter-spacing:29.520000px;}
.ls48{letter-spacing:30.240000px;}
.ls36{letter-spacing:31.824000px;}
.ls3b{letter-spacing:33.984000px;}
.ls2c{letter-spacing:34.560000px;}
.lse{letter-spacing:39.600000px;}
.ls37{letter-spacing:39.744000px;}
.ls28{letter-spacing:41.904000px;}
.ls3f{letter-spacing:46.080000px;}
.ls1f{letter-spacing:54.864000px;}
.ls23{letter-spacing:55.584000px;}
.ls1d{letter-spacing:64.016640px;}
.lsc{letter-spacing:64.224000px;}
.ls19{letter-spacing:170.640000px;}
.ls44{letter-spacing:267.984000px;}
.ls14{letter-spacing:565.200000px;}
.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;}
}
.ws35{word-spacing:-59.760000px;}
.ws57{word-spacing:-20.723040px;}
.ws1e{word-spacing:-18.720000px;}
.ws25{word-spacing:-18.288000px;}
.ws26{word-spacing:-18.216000px;}
.ws27{word-spacing:-18.144000px;}
.ws4d{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws47{word-spacing:-17.928000px;}
.ws5d{word-spacing:-17.856000px;}
.ws15{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws69{word-spacing:-17.280000px;}
.ws7f{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.560000px;}
.ws36{word-spacing:-12.060000px;}
.ws90{word-spacing:-5.760000px;}
.ws8f{word-spacing:-4.464000px;}
.ws4{word-spacing:-4.320000px;}
.ws97{word-spacing:-4.032000px;}
.ws7b{word-spacing:-3.888000px;}
.ws66{word-spacing:-3.600000px;}
.ws7c{word-spacing:-3.384000px;}
.ws3e{word-spacing:-2.880000px;}
.ws78{word-spacing:-2.592000px;}
.ws71{word-spacing:-2.304000px;}
.ws4e{word-spacing:-2.160000px;}
.ws52{word-spacing:-1.872000px;}
.ws98{word-spacing:-1.512000px;}
.ws7{word-spacing:-1.440000px;}
.ws17{word-spacing:-1.263600px;}
.wsc{word-spacing:-1.152000px;}
.ws2d{word-spacing:-1.008000px;}
.ws45{word-spacing:-0.864000px;}
.ws22{word-spacing:-0.720000px;}
.ws32{word-spacing:-0.648000px;}
.ws4a{word-spacing:-0.589680px;}
.ws37{word-spacing:-0.505440px;}
.ws94{word-spacing:-0.504000px;}
.ws2e{word-spacing:-0.432000px;}
.ws61{word-spacing:-0.385920px;}
.ws2f{word-spacing:-0.358560px;}
.ws65{word-spacing:-0.336960px;}
.ws28{word-spacing:-0.288000px;}
.ws2a{word-spacing:-0.216000px;}
.wsb{word-spacing:-0.144000px;}
.ws46{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws29{word-spacing:0.054000px;}
.ws6f{word-spacing:0.072000px;}
.ws2c{word-spacing:0.144000px;}
.ws16{word-spacing:0.168480px;}
.ws13{word-spacing:0.216000px;}
.ws5{word-spacing:0.288000px;}
.ws79{word-spacing:0.337680px;}
.ws6b{word-spacing:0.432000px;}
.ws7e{word-spacing:0.576000px;}
.ws19{word-spacing:0.720000px;}
.ws7a{word-spacing:0.936000px;}
.ws87{word-spacing:1.008000px;}
.ws81{word-spacing:1.152000px;}
.ws4f{word-spacing:1.296000px;}
.ws8{word-spacing:1.440000px;}
.ws7d{word-spacing:1.656000px;}
.ws80{word-spacing:1.728000px;}
.ws6{word-spacing:2.160000px;}
.ws34{word-spacing:2.448000px;}
.ws5e{word-spacing:2.592000px;}
.ws5c{word-spacing:2.880000px;}
.ws5f{word-spacing:3.168000px;}
.wse{word-spacing:3.600000px;}
.ws2b{word-spacing:3.888000px;}
.ws10{word-spacing:4.320000px;}
.ws40{word-spacing:4.608000px;}
.ws4b{word-spacing:4.752000px;}
.ws55{word-spacing:4.896000px;}
.ws53{word-spacing:5.040000px;}
.ws54{word-spacing:5.328000px;}
.ws41{word-spacing:5.760000px;}
.ws3d{word-spacing:6.192000px;}
.ws59{word-spacing:6.480000px;}
.ws9b{word-spacing:6.624000px;}
.ws92{word-spacing:6.912000px;}
.ws42{word-spacing:7.200000px;}
.ws63{word-spacing:7.416000px;}
.ws75{word-spacing:7.488000px;}
.ws11{word-spacing:7.920000px;}
.ws5b{word-spacing:8.208000px;}
.ws93{word-spacing:8.352000px;}
.ws58{word-spacing:8.640000px;}
.ws99{word-spacing:8.784000px;}
.ws1a{word-spacing:8.928000px;}
.ws89{word-spacing:9.216000px;}
.ws39{word-spacing:9.360000px;}
.ws60{word-spacing:9.648000px;}
.ws14{word-spacing:10.080000px;}
.ws51{word-spacing:10.368000px;}
.ws1c{word-spacing:10.800000px;}
.ws8e{word-spacing:11.232000px;}
.ws49{word-spacing:11.520000px;}
.wsf{word-spacing:11.808000px;}
.ws30{word-spacing:12.240000px;}
.ws6a{word-spacing:12.528000px;}
.ws12{word-spacing:12.960000px;}
.ws21{word-spacing:13.680000px;}
.wsd{word-spacing:13.968000px;}
.ws68{word-spacing:14.400000px;}
.ws5a{word-spacing:14.688000px;}
.ws95{word-spacing:14.976000px;}
.ws83{word-spacing:15.120000px;}
.ws84{word-spacing:15.408000px;}
.ws33{word-spacing:15.840000px;}
.ws3c{word-spacing:16.128000px;}
.ws8b{word-spacing:16.416000px;}
.ws8a{word-spacing:16.560000px;}
.ws9a{word-spacing:16.704000px;}
.wsa{word-spacing:17.280000px;}
.ws50{word-spacing:17.784000px;}
.ws44{word-spacing:18.000000px;}
.ws67{word-spacing:18.288000px;}
.ws6e{word-spacing:18.432000px;}
.ws6c{word-spacing:18.720000px;}
.ws77{word-spacing:19.296000px;}
.ws76{word-spacing:19.440000px;}
.ws48{word-spacing:20.160000px;}
.ws9{word-spacing:20.448000px;}
.ws31{word-spacing:21.600000px;}
.ws9c{word-spacing:22.464000px;}
.ws3a{word-spacing:23.040000px;}
.ws91{word-spacing:23.328000px;}
.ws85{word-spacing:23.760000px;}
.ws86{word-spacing:24.048000px;}
.ws70{word-spacing:24.480000px;}
.ws96{word-spacing:25.056000px;}
.ws1d{word-spacing:25.200000px;}
.ws82{word-spacing:25.488000px;}
.ws56{word-spacing:26.640000px;}
.ws3b{word-spacing:26.928000px;}
.ws38{word-spacing:27.360000px;}
.ws1b{word-spacing:28.080000px;}
.ws62{word-spacing:28.800000px;}
.ws74{word-spacing:29.088000px;}
.ws18{word-spacing:30.960000px;}
.ws73{word-spacing:32.400000px;}
.ws9d{word-spacing:32.544000px;}
.ws72{word-spacing:32.688000px;}
.ws3f{word-spacing:33.120000px;}
.ws23{word-spacing:34.416000px;}
.ws24{word-spacing:34.560000px;}
.ws8c{word-spacing:35.568000px;}
.ws9e{word-spacing:37.440000px;}
.ws88{word-spacing:39.600000px;}
.ws1f{word-spacing:42.480000px;}
.ws8d{word-spacing:45.792000px;}
.ws43{word-spacing:48.240000px;}
.ws64{word-spacing:49.680000px;}
.ws4c{word-spacing:53.280000px;}
.ws20{word-spacing:55.440000px;}
.ws6d{word-spacing:77.040000px;}
._3b{margin-left:-29.652912px;}
._35{margin-left:-26.504280px;}
._39{margin-left:-20.700288px;}
._3a{margin-left:-18.178776px;}
._20{margin-left:-10.152000px;}
._38{margin-left:-6.480000px;}
._13{margin-left:-5.040000px;}
._2{margin-left:-3.990456px;}
._6{margin-left:-2.245536px;}
._0{margin-left:-1.066464px;}
._1{width:1.254456px;}
._3{width:2.849544px;}
._d{width:4.236912px;}
._5{width:5.602464px;}
._4{width:6.624000px;}
._f{width:8.175096px;}
._12{width:9.510048px;}
._e{width:10.584000px;}
._8{width:11.592000px;}
._9{width:12.960000px;}
._c{width:14.369544px;}
._1e{width:15.480000px;}
._b{width:16.892928px;}
._a{width:19.368000px;}
._7{width:20.736000px;}
._29{width:22.306464px;}
._2b{width:23.328000px;}
._1d{width:24.336000px;}
._1c{width:25.344000px;}
._1f{width:26.640000px;}
._14{width:28.224000px;}
._3c{width:29.232000px;}
._11{width:30.240000px;}
._10{width:31.680000px;}
._15{width:33.264000px;}
._16{width:34.416000px;}
._22{width:35.424000px;}
._21{width:37.224000px;}
._18{width:39.292632px;}
._17{width:40.475088px;}
._19{width:42.538464px;}
._37{width:44.388288px;}
._36{width:46.163088px;}
._2a{width:48.240000px;}
._27{width:49.536000px;}
._32{width:51.192000px;}
._2c{width:52.330464px;}
._2d{width:53.441856px;}
._1a{width:54.576000px;}
._1b{width:55.697544px;}
._30{width:57.816000px;}
._31{width:58.824000px;}
._2e{width:62.064000px;}
._2f{width:63.257544px;}
._3e{width:79.502472px;}
._34{width:87.895080px;}
._33{width:89.122464px;}
._3d{width:125.568000px;}
._23{width:139.492008px;}
._25{width:145.193544px;}
._26{width:164.160000px;}
._24{width:263.232000px;}
._28{width:389.232000px;}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:7.020000px;}
.ya9{bottom:7.200000px;}
.y69{bottom:18.900000px;}
.yb6{bottom:19.080000px;}
.y6a{bottom:30.780000px;}
.y77{bottom:30.960000px;}
.y9c{bottom:42.840000px;}
.ya4{bottom:54.540000px;}
.ya8{bottom:54.720000px;}
.y2{bottom:57.060000px;}
.y1{bottom:77.760000px;}
.y9d{bottom:78.480000px;}
.ya3{bottom:102.240000px;}
.y97{bottom:110.700000px;}
.y215{bottom:113.400000px;}
.y24{bottom:114.120000px;}
.y122{bottom:114.840000px;}
.y14f{bottom:115.380000px;}
.y21c{bottom:116.100000px;}
.y136{bottom:119.160000px;}
.y46{bottom:119.340000px;}
.y26e{bottom:122.760000px;}
.y17a{bottom:124.380000px;}
.y1ee{bottom:125.280000px;}
.yae{bottom:126.180000px;}
.y240{bottom:126.540000px;}
.y248{bottom:127.080000px;}
.y205{bottom:129.060000px;}
.y209{bottom:130.500000px;}
.y190{bottom:133.740000px;}
.y289{bottom:134.820000px;}
.y1ae{bottom:137.880000px;}
.y19c{bottom:139.680000px;}
.y96{bottom:141.840000px;}
.y214{bottom:144.540000px;}
.y1c6{bottom:144.900000px;}
.y23{bottom:145.260000px;}
.y121{bottom:145.800000px;}
.y14e{bottom:146.340000px;}
.yc3{bottom:146.880000px;}
.y21b{bottom:147.060000px;}
.y67{bottom:149.580000px;}
.yad{bottom:149.940000px;}
.y135{bottom:150.300000px;}
.y45{bottom:150.480000px;}
.y26d{bottom:153.720000px;}
.y179{bottom:155.520000px;}
.y1ed{bottom:156.420000px;}
.ye2{bottom:156.780000px;}
.y23f{bottom:157.680000px;}
.y247{bottom:158.040000px;}
.y22d{bottom:158.940000px;}
.y204{bottom:160.200000px;}
.y208{bottom:161.460000px;}
.y2a7{bottom:162.360000px;}
.y25d{bottom:163.800000px;}
.y18f{bottom:164.880000px;}
.y288{bottom:167.040000px;}
.y1ad{bottom:169.020000px;}
.yff{bottom:169.920000px;}
.y296{bottom:170.460000px;}
.y19b{bottom:170.640000px;}
.y1cf{bottom:171.180000px;}
.y95{bottom:172.800000px;}
.y213{bottom:175.500000px;}
.y1c5{bottom:175.860000px;}
.y22{bottom:176.220000px;}
.y163{bottom:176.400000px;}
.y120{bottom:176.940000px;}
.y14d{bottom:177.300000px;}
.yc2{bottom:178.020000px;}
.y21a{bottom:178.200000px;}
.y134{bottom:181.260000px;}
.y44{bottom:181.440000px;}
.y26c{bottom:184.860000px;}
.y178{bottom:186.480000px;}
.y1ec{bottom:187.380000px;}
.ye1{bottom:187.920000px;}
.y23e{bottom:188.640000px;}
.y246{bottom:189.180000px;}
.y22c{bottom:189.900000px;}
.y203{bottom:191.160000px;}
.y66{bottom:192.600000px;}
.y18e{bottom:195.840000px;}
.y25c{bottom:196.200000px;}
.y287{bottom:199.620000px;}
.y1ac{bottom:199.980000px;}
.yfe{bottom:200.700000px;}
.y295{bottom:201.420000px;}
.y19a{bottom:201.780000px;}
.y1ce{bottom:202.140000px;}
.y94{bottom:203.940000px;}
.y2a6{bottom:205.380000px;}
.y212{bottom:206.640000px;}
.y1c4{bottom:207.000000px;}
.y21{bottom:207.360000px;}
.y11f{bottom:207.900000px;}
.yc1{bottom:208.980000px;}
.y219{bottom:209.160000px;}
.y133{bottom:212.400000px;}
.y43{bottom:212.580000px;}
.y26b{bottom:215.820000px;}
.y177{bottom:217.620000px;}
.y1eb{bottom:218.340000px;}
.ye0{bottom:218.880000px;}
.y23d{bottom:219.780000px;}
.y245{bottom:220.140000px;}
.y22b{bottom:221.040000px;}
.y202{bottom:222.300000px;}
.y65{bottom:223.560000px;}
.y14c{bottom:226.440000px;}
.y18d{bottom:226.800000px;}
.y25b{bottom:228.420000px;}
.y286{bottom:230.580000px;}
.y1ab{bottom:231.120000px;}
.y294{bottom:232.560000px;}
.y199{bottom:232.740000px;}
.yfd{bottom:233.280000px;}
.y1cd{bottom:234.540000px;}
.y93{bottom:234.900000px;}
.y211{bottom:237.600000px;}
.y1c3{bottom:237.960000px;}
.y20{bottom:238.320000px;}
.y11e{bottom:239.040000px;}
.yc0{bottom:240.120000px;}
.y218{bottom:240.300000px;}
.y132{bottom:243.360000px;}
.y42{bottom:243.540000px;}
.y26a{bottom:246.960000px;}
.y2a5{bottom:248.400000px;}
.y176{bottom:248.580000px;}
.y1ea{bottom:249.480000px;}
.ydf{bottom:250.020000px;}
.y23c{bottom:250.740000px;}
.y244{bottom:251.280000px;}
.y22a{bottom:252.000000px;}
.y201{bottom:253.260000px;}
.y64{bottom:254.700000px;}
.y162{bottom:256.500000px;}
.y14b{bottom:257.400000px;}
.y18c{bottom:257.940000px;}
.y25a{bottom:260.820000px;}
.y285{bottom:261.720000px;}
.y1aa{bottom:262.080000px;}
.y293{bottom:263.520000px;}
.yfc{bottom:264.060000px;}
.y198{bottom:264.960000px;}
.y1cc{bottom:265.500000px;}
.y92{bottom:266.040000px;}
.y1c2{bottom:269.100000px;}
.y1f{bottom:269.460000px;}
.y11d{bottom:270.000000px;}
.y217{bottom:271.260000px;}
.y41{bottom:274.500000px;}
.y269{bottom:277.740000px;}
.ybf{bottom:278.820000px;}
.y175{bottom:279.720000px;}
.y1e9{bottom:280.440000px;}
.yde{bottom:280.980000px;}
.y23b{bottom:281.880000px;}
.y243{bottom:282.240000px;}
.y229{bottom:283.140000px;}
.y200{bottom:284.400000px;}
.y63{bottom:285.660000px;}
.y161{bottom:287.460000px;}
.y14a{bottom:288.540000px;}
.y18b{bottom:288.900000px;}
.y2a4{bottom:291.600000px;}
.y284{bottom:292.680000px;}
.y1a9{bottom:293.220000px;}
.y292{bottom:294.660000px;}
.yfb{bottom:296.640000px;}
.y91{bottom:297.000000px;}
.y197{bottom:297.360000px;}
.y1c1{bottom:300.060000px;}
.y1e{bottom:300.420000px;}
.y11c{bottom:300.960000px;}
.y216{bottom:302.400000px;}
.y131{bottom:305.460000px;}
.y40{bottom:305.640000px;}
.y268{bottom:310.320000px;}
.y174{bottom:310.680000px;}
.y1e8{bottom:311.580000px;}
.ydd{bottom:312.120000px;}
.y23a{bottom:312.840000px;}
.y242{bottom:313.200000px;}
.y228{bottom:314.100000px;}
.y1ff{bottom:315.360000px;}
.y62{bottom:316.800000px;}
.ybe{bottom:318.780000px;}
.y18a{bottom:320.040000px;}
.y283{bottom:323.820000px;}
.y1a8{bottom:324.180000px;}
.y259{bottom:325.620000px;}
.yfa{bottom:327.600000px;}
.y90{bottom:328.140000px;}
.y196{bottom:329.760000px;}
.y1c0{bottom:331.200000px;}
.y1d{bottom:331.560000px;}
.y11b{bottom:332.100000px;}
.y210{bottom:333.360000px;}
.y2a3{bottom:334.620000px;}
.y3f{bottom:336.600000px;}
.y149{bottom:337.500000px;}
.y267{bottom:341.100000px;}
.y173{bottom:341.820000px;}
.y1e7{bottom:342.540000px;}
.ydc{bottom:342.900000px;}
.y239{bottom:343.980000px;}
.y130{bottom:344.880000px;}
.y227{bottom:345.240000px;}
.y1fe{bottom:346.500000px;}
.y61{bottom:347.760000px;}
.ybd{bottom:349.920000px;}
.y189{bottom:351.000000px;}
.y241{bottom:352.620000px;}
.y1a7{bottom:355.320000px;}
.y258{bottom:356.580000px;}
.y291{bottom:356.760000px;}
.yf9{bottom:358.740000px;}
.y8f{bottom:359.100000px;}
.y195{bottom:362.160000px;}
.y1c{bottom:362.520000px;}
.y11a{bottom:363.060000px;}
.y20f{bottom:364.500000px;}
.y1cb{bottom:367.020000px;}
.y160{bottom:367.560000px;}
.y3e{bottom:367.740000px;}
.y148{bottom:368.640000px;}
.y172{bottom:372.780000px;}
.y266{bottom:373.500000px;}
.y1e6{bottom:373.680000px;}
.y238{bottom:374.940000px;}
.ydb{bottom:375.300000px;}
.y226{bottom:376.200000px;}
.y1fd{bottom:377.460000px;}
.y2a2{bottom:377.640000px;}
.y60{bottom:378.900000px;}
.ybc{bottom:380.880000px;}
.y188{bottom:382.140000px;}
.y12f{bottom:387.540000px;}
.y290{bottom:387.720000px;}
.y257{bottom:388.980000px;}
.yf8{bottom:389.700000px;}
.y8e{bottom:390.240000px;}
.y194{bottom:393.300000px;}
.y1b{bottom:393.660000px;}
.y119{bottom:394.200000px;}
.y1a6{bottom:394.560000px;}
.y20e{bottom:395.460000px;}
.y3d{bottom:398.700000px;}
.y282{bottom:402.480000px;}
.y171{bottom:403.920000px;}
.y1e5{bottom:404.640000px;}
.y237{bottom:406.080000px;}
.y225{bottom:407.340000px;}
.yda{bottom:407.700000px;}
.y1fc{bottom:408.600000px;}
.y5f{bottom:409.860000px;}
.ybb{bottom:412.020000px;}
.y187{bottom:413.100000px;}
.y15f{bottom:416.700000px;}
.y147{bottom:417.600000px;}
.y28f{bottom:418.860000px;}
.y12e{bottom:419.940000px;}
.y256{bottom:420.120000px;}
.y2a1{bottom:420.660000px;}
.yf7{bottom:420.840000px;}
.y8d{bottom:421.200000px;}
.y193{bottom:424.260000px;}
.y1a{bottom:424.620000px;}
.y118{bottom:425.160000px;}
.y20d{bottom:426.600000px;}
.y3c{bottom:429.840000px;}
.y281{bottom:433.620000px;}
.y170{bottom:434.880000px;}
.y265{bottom:437.040000px;}
.y1a5{bottom:437.400000px;}
.y224{bottom:438.300000px;}
.yd9{bottom:438.840000px;}
.y1fb{bottom:439.560000px;}
.y5e{bottom:441.000000px;}
.yba{bottom:442.980000px;}
.y1e4{bottom:443.340000px;}
.y186{bottom:444.240000px;}
.y236{bottom:444.780000px;}
.y15e{bottom:447.660000px;}
.y146{bottom:448.740000px;}
.y28e{bottom:449.640000px;}
.y255{bottom:450.900000px;}
.yf6{bottom:451.800000px;}
.y8c{bottom:452.340000px;}
.y192{bottom:455.400000px;}
.y19{bottom:455.760000px;}
.y117{bottom:456.300000px;}
.y20c{bottom:457.560000px;}
.y3b{bottom:460.800000px;}
.y2a0{bottom:463.680000px;}
.y280{bottom:464.580000px;}
.y16f{bottom:466.020000px;}
.y264{bottom:468.180000px;}
.y1a4{bottom:468.540000px;}
.y223{bottom:469.440000px;}
.yd8{bottom:469.800000px;}
.y1fa{bottom:470.700000px;}
.y5d{bottom:471.960000px;}
.yb9{bottom:473.940000px;}
.y185{bottom:475.200000px;}
.y28d{bottom:482.040000px;}
.yf5{bottom:482.940000px;}
.y8b{bottom:483.300000px;}
.y254{bottom:483.480000px;}
.y12d{bottom:484.560000px;}
.y235{bottom:484.740000px;}
.y1bf{bottom:486.360000px;}
.y18{bottom:486.720000px;}
.y116{bottom:487.260000px;}
.y20b{bottom:488.700000px;}
.y145{bottom:491.760000px;}
.y3a{bottom:491.940000px;}
.y191{bottom:494.100000px;}
.y27f{bottom:495.720000px;}
.y15d{bottom:496.800000px;}
.y16e{bottom:496.980000px;}
.y263{bottom:499.140000px;}
.y1a3{bottom:499.500000px;}
.y222{bottom:500.400000px;}
.yd7{bottom:500.940000px;}
.y1f9{bottom:501.660000px;}
.y5c{bottom:503.100000px;}
.yb8{bottom:504.900000px;}
.y184{bottom:506.340000px;}
.y29f{bottom:506.700000px;}
.y207{bottom:510.660000px;}
.yf4{bottom:513.900000px;}
.y8a{bottom:514.440000px;}
.y1e3{bottom:515.700000px;}
.y234{bottom:515.880000px;}
.y12c{bottom:516.960000px;}
.y1be{bottom:517.500000px;}
.y17{bottom:517.860000px;}
.y115{bottom:518.400000px;}
.y20a{bottom:519.660000px;}
.y39{bottom:522.900000px;}
.y27e{bottom:526.680000px;}
.y15c{bottom:527.760000px;}
.y16d{bottom:528.120000px;}
.y262{bottom:530.280000px;}
.y1a2{bottom:530.640000px;}
.y221{bottom:531.540000px;}
.yd6{bottom:531.900000px;}
.y1f8{bottom:532.800000px;}
.y5b{bottom:534.060000px;}
.y183{bottom:537.300000px;}
.yf3{bottom:545.040000px;}
.y89{bottom:545.400000px;}
.y253{bottom:545.580000px;}
.y28c{bottom:546.660000px;}
.y233{bottom:546.840000px;}
.y1e2{bottom:548.100000px;}
.y1bd{bottom:548.460000px;}
.y16{bottom:548.820000px;}
.y114{bottom:549.360000px;}
.y29e{bottom:549.900000px;}
.y206{bottom:550.800000px;}
.yb7{bottom:551.700000px;}
.y144{bottom:553.860000px;}
.y38{bottom:554.040000px;}
.y27d{bottom:557.820000px;}
.y15b{bottom:558.900000px;}
.y16c{bottom:559.080000px;}
.y1a1{bottom:561.600000px;}
.y220{bottom:562.500000px;}
.yd5{bottom:563.040000px;}
.y1f7{bottom:563.760000px;}
.y5a{bottom:565.200000px;}
.yb4{bottom:567.900000px;}
.y182{bottom:568.440000px;}
.y261{bottom:568.800000px;}
.yb5{bottom:574.920000px;}
.yf2{bottom:576.000000px;}
.y88{bottom:576.540000px;}
.y232{bottom:577.800000px;}
.y1e1{bottom:579.240000px;}
.y1bc{bottom:579.600000px;}
.y15{bottom:579.960000px;}
.y113{bottom:580.500000px;}
.y12b{bottom:581.760000px;}
.y37{bottom:585.000000px;}
.yb3{bottom:586.980000px;}
.y27c{bottom:588.780000px;}
.y15a{bottom:589.860000px;}
.y16b{bottom:590.040000px;}
.y1a0{bottom:592.740000px;}
.y29d{bottom:592.920000px;}
.y21f{bottom:593.640000px;}
.yd4{bottom:594.000000px;}
.y1f6{bottom:594.900000px;}
.y59{bottom:596.160000px;}
.y181{bottom:599.400000px;}
.y143{bottom:602.820000px;}
.yf1{bottom:607.140000px;}
.y87{bottom:607.500000px;}
.y252{bottom:607.680000px;}
.y260{bottom:608.760000px;}
.y231{bottom:608.940000px;}
.y1e0{bottom:610.200000px;}
.y1bb{bottom:610.560000px;}
.y14{bottom:610.920000px;}
.y112{bottom:611.460000px;}
.y12a{bottom:612.900000px;}
.y36{bottom:616.140000px;}
.yb1{bottom:617.760000px;}
.y27b{bottom:619.920000px;}
.y159{bottom:620.820000px;}
.y16a{bottom:621.180000px;}
.y19f{bottom:623.700000px;}
.y21e{bottom:624.420000px;}
.yb2{bottom:624.780000px;}
.yd3{bottom:625.140000px;}
.y1f5{bottom:625.860000px;}
.y58{bottom:627.120000px;}
.y180{bottom:630.540000px;}
.y142{bottom:633.960000px;}
.y29c{bottom:635.940000px;}
.yb0{bottom:636.840000px;}
.yf0{bottom:638.100000px;}
.y86{bottom:638.640000px;}
.y230{bottom:639.900000px;}
.y25f{bottom:641.160000px;}
.y1df{bottom:641.340000px;}
.y1ba{bottom:641.520000px;}
.y13{bottom:642.060000px;}
.y111{bottom:642.600000px;}
.y129{bottom:643.860000px;}
.y35{bottom:647.100000px;}
.y27a{bottom:650.880000px;}
.y158{bottom:651.960000px;}
.y169{bottom:652.140000px;}
.y19e{bottom:654.840000px;}
.yd2{bottom:656.100000px;}
.y1f4{bottom:656.820000px;}
.y57{bottom:658.260000px;}
.y141{bottom:664.920000px;}
.yac{bottom:667.620000px;}
.y17f{bottom:669.240000px;}
.y251{bottom:669.780000px;}
.y1de{bottom:672.300000px;}
.y1b9{bottom:672.660000px;}
.y12{bottom:673.020000px;}
.y25e{bottom:673.380000px;}
.y110{bottom:673.560000px;}
.yaf{bottom:674.640000px;}
.y128{bottom:674.820000px;}
.yef{bottom:676.800000px;}
.y34{bottom:678.240000px;}
.y29b{bottom:678.960000px;}
.y279{bottom:682.020000px;}
.y157{bottom:682.920000px;}
.y168{bottom:683.280000px;}
.y19d{bottom:685.800000px;}
.y85{bottom:686.340000px;}
.yd1{bottom:687.240000px;}
.y1f3{bottom:687.960000px;}
.y56{bottom:689.220000px;}
.y140{bottom:696.060000px;}
.y250{bottom:700.740000px;}
.y1dd{bottom:703.440000px;}
.y1b8{bottom:703.620000px;}
.y83{bottom:703.980000px;}
.y11{bottom:704.160000px;}
.y10f{bottom:704.700000px;}
.y127{bottom:705.960000px;}
.y33{bottom:709.200000px;}
.y84{bottom:711.000000px;}
.y278{bottom:712.980000px;}
.y167{bottom:714.240000px;}
.yee{bottom:716.940000px;}
.yd0{bottom:718.200000px;}
.y1f2{bottom:718.920000px;}
.y55{bottom:720.360000px;}
.y29a{bottom:721.980000px;}
.y82{bottom:722.880000px;}
.y13f{bottom:727.020000px;}
.y24f{bottom:731.880000px;}
.y156{bottom:732.060000px;}
.y22f{bottom:734.220000px;}
.y1dc{bottom:734.400000px;}
.y1b7{bottom:734.760000px;}
.y10{bottom:735.120000px;}
.y10e{bottom:735.660000px;}
.y126{bottom:736.920000px;}
.y32{bottom:740.340000px;}
.y277{bottom:744.120000px;}
.y166{bottom:745.200000px;}
.yab{bottom:746.100000px;}
.yed{bottom:747.900000px;}
.ycf{bottom:749.340000px;}
.y1f1{bottom:750.060000px;}
.y54{bottom:751.320000px;}
.y80{bottom:753.840000px;}
.y21d{bottom:759.060000px;}
.y81{bottom:760.860000px;}
.y24e{bottom:762.840000px;}
.y155{bottom:763.020000px;}
.y1db{bottom:765.540000px;}
.y1b6{bottom:765.720000px;}
.yf{bottom:766.260000px;}
.y10d{bottom:766.800000px;}
.y125{bottom:768.060000px;}
.y31{bottom:771.300000px;}
.y7f{bottom:772.740000px;}
.y276{bottom:775.080000px;}
.y13e{bottom:776.160000px;}
.y165{bottom:777.600000px;}
.yec{bottom:779.040000px;}
.yce{bottom:780.300000px;}
.y1f0{bottom:781.020000px;}
.y53{bottom:782.460000px;}
.y24d{bottom:793.980000px;}
.y154{bottom:794.160000px;}
.y1da{bottom:796.500000px;}
.y1b5{bottom:796.860000px;}
.ye{bottom:797.220000px;}
.y10c{bottom:797.760000px;}
.y124{bottom:799.020000px;}
.y30{bottom:802.440000px;}
.y7d{bottom:803.700000px;}
.y275{bottom:806.220000px;}
.y13d{bottom:807.120000px;}
.yeb{bottom:810.000000px;}
.y7e{bottom:810.720000px;}
.ycd{bottom:811.440000px;}
.y1ef{bottom:812.160000px;}
.y1ca{bottom:813.420000px;}
.y52{bottom:821.160000px;}
.y7c{bottom:822.600000px;}
.y24c{bottom:824.940000px;}
.y1d9{bottom:827.640000px;}
.y1b4{bottom:827.820000px;}
.yd{bottom:828.180000px;}
.y22e{bottom:828.720000px;}
.y10b{bottom:828.900000px;}
.y123{bottom:830.160000px;}
.y2f{bottom:833.400000px;}
.ya7{bottom:836.460000px;}
.y274{bottom:837.180000px;}
.y13c{bottom:838.260000px;}
.yea{bottom:841.140000px;}
.ycc{bottom:842.400000px;}
.y153{bottom:843.120000px;}
.yaa{bottom:843.660000px;}
.y1c9{bottom:844.560000px;}
.y7a{bottom:853.560000px;}
.y24b{bottom:856.080000px;}
.y1d8{bottom:858.600000px;}
.yc{bottom:859.320000px;}
.y10a{bottom:859.860000px;}
.y7b{bottom:860.580000px;}
.y51{bottom:861.120000px;}
.y2e{bottom:864.540000px;}
.y1b3{bottom:866.520000px;}
.y273{bottom:868.320000px;}
.ye9{bottom:872.100000px;}
.y79{bottom:872.460000px;}
.ycb{bottom:873.540000px;}
.y152{bottom:874.260000px;}
.y1c8{bottom:875.520000px;}
.ya6{bottom:879.300000px;}
.y24a{bottom:886.860000px;}
.y13b{bottom:887.220000px;}
.y1d7{bottom:889.740000px;}
.yb{bottom:890.280000px;}
.y109{bottom:891.000000px;}
.y50{bottom:892.260000px;}
.y2d{bottom:895.500000px;}
.y272{bottom:899.280000px;}
.ye8{bottom:903.240000px;}
.y76{bottom:903.420000px;}
.yca{bottom:904.500000px;}
.y151{bottom:905.220000px;}
.y1b2{bottom:906.660000px;}
.y78{bottom:910.440000px;}
.y13a{bottom:918.360000px;}
.y249{bottom:919.260000px;}
.y1d6{bottom:920.700000px;}
.ya{bottom:921.420000px;}
.y108{bottom:921.960000px;}
.y75{bottom:922.320000px;}
.y4f{bottom:923.220000px;}
.y17e{bottom:926.640000px;}
.y271{bottom:930.240000px;}
.ya2{bottom:934.020000px;}
.y2c{bottom:934.200000px;}
.yc9{bottom:935.640000px;}
.y150{bottom:936.360000px;}
.y1b1{bottom:937.620000px;}
.ya5{bottom:941.040000px;}
.y1c7{bottom:945.360000px;}
.y1d5{bottom:951.660000px;}
.y9{bottom:952.380000px;}
.y107{bottom:953.100000px;}
.y73{bottom:953.280000px;}
.y4e{bottom:954.360000px;}
.y17d{bottom:957.600000px;}
.y74{bottom:960.300000px;}
.y270{bottom:962.460000px;}
.ye7{bottom:965.340000px;}
.yc8{bottom:966.600000px;}
.y139{bottom:967.320000px;}
.y1b0{bottom:968.760000px;}
.y72{bottom:972.180000px;}
.y2b{bottom:974.340000px;}
.ya1{bottom:976.680000px;}
.y1d4{bottom:982.800000px;}
.y8{bottom:983.520000px;}
.y106{bottom:984.060000px;}
.y4d{bottom:985.320000px;}
.ya0{bottom:988.560000px;}
.y17c{bottom:988.740000px;}
.y26f{bottom:994.860000px;}
.ye6{bottom:996.300000px;}
.yc7{bottom:997.740000px;}
.y138{bottom:998.460000px;}
.y70{bottom:1003.140000px;}
.y2a{bottom:1005.300000px;}
.y1af{bottom:1007.460000px;}
.y71{bottom:1010.160000px;}
.y1d3{bottom:1013.760000px;}
.y7{bottom:1014.480000px;}
.y105{bottom:1015.200000px;}
.y4c{bottom:1016.460000px;}
.y17b{bottom:1019.700000px;}
.y6f{bottom:1022.040000px;}
.ye5{bottom:1027.440000px;}
.yc6{bottom:1028.700000px;}
.y137{bottom:1029.420000px;}
.y29{bottom:1036.440000px;}
.y1d2{bottom:1044.900000px;}
.y6{bottom:1045.620000px;}
.y104{bottom:1046.160000px;}
.y4b{bottom:1047.420000px;}
.y6e{bottom:1053.000000px;}
.y9b{bottom:1055.160000px;}
.ye4{bottom:1058.400000px;}
.yc5{bottom:1059.840000px;}
.y299{bottom:1060.560000px;}
.y9f{bottom:1062.360000px;}
.y164{bottom:1066.680000px;}
.y28{bottom:1067.400000px;}
.y6d{bottom:1071.900000px;}
.y9a{bottom:1074.240000px;}
.y1d1{bottom:1075.860000px;}
.y103{bottom:1077.300000px;}
.y4a{bottom:1078.560000px;}
.y5{bottom:1084.320000px;}
.y9e{bottom:1086.120000px;}
.yc4{bottom:1090.800000px;}
.y298{bottom:1091.520000px;}
.ye3{bottom:1097.640000px;}
.y99{bottom:1098.000000px;}
.y27{bottom:1098.540000px;}
.y68{bottom:1102.860000px;}
.y1d0{bottom:1106.820000px;}
.y28b{bottom:1107.000000px;}
.y102{bottom:1108.260000px;}
.y49{bottom:1109.520000px;}
.y6c{bottom:1109.880000px;}
.y98{bottom:1121.760000px;}
.y297{bottom:1122.660000px;}
.y4{bottom:1129.140000px;}
.y26{bottom:1129.500000px;}
.y28a{bottom:1137.960000px;}
.y101{bottom:1139.400000px;}
.y48{bottom:1140.660000px;}
.y25{bottom:1168.740000px;}
.y100{bottom:1170.180000px;}
.y47{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.h9{height:47.520000px;}
.hb{height:47.700000px;}
.hc{height:47.701500px;}
.h12{height:52.931953px;}
.h4{height:58.671562px;}
.h3{height:63.175781px;}
.h14{height:63.351562px;}
.h2{height:63.773438px;}
.h6{height:64.160156px;}
.h15{height:69.687773px;}
.h13{height:69.708653px;}
.h7{height:70.088203px;}
.h8{height:75.067383px;}
.h5{height:85.333008px;}
.hd{height:95.220000px;}
.hf{height:110.695781px;}
.ha{height:111.680156px;}
.he{height:112.013437px;}
.h10{height:118.980000px;}
.h11{height:166.680000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:66.420000px;}
.w5{width:127.620000px;}
.w6{width:132.658500px;}
.w3{width:254.340000px;}
.w7{width:274.140000px;}
.w4{width:320.580000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:1.080000px;}
.x31{left:17.100000px;}
.x22{left:34.380000px;}
.xa{left:40.680000px;}
.xb{left:79.920000px;}
.x3d{left:100.800000px;}
.x2{left:106.200000px;}
.x7{left:108.000000px;}
.x2d{left:120.780000px;}
.x2b{left:123.840000px;}
.x27{left:126.900000px;}
.x1e{left:128.880000px;}
.x3c{left:132.120000px;}
.x34{left:133.200000px;}
.xd{left:134.640000px;}
.x15{left:135.720000px;}
.x39{left:138.240000px;}
.x6{left:148.680000px;}
.x4{left:159.300000px;}
.x5{left:164.160000px;}
.x3a{left:165.240000px;}
.x9{left:176.580000px;}
.x35{left:187.200000px;}
.x1f{left:204.120000px;}
.x32{left:210.780000px;}
.x36{left:214.200000px;}
.x20{left:220.680000px;}
.x1a{left:230.580000px;}
.x37{left:238.680000px;}
.x11{left:241.560000px;}
.x3b{left:244.800000px;}
.x28{left:250.560000px;}
.x13{left:257.040000px;}
.xf{left:262.620000px;}
.x38{left:265.680000px;}
.x1c{left:267.480000px;}
.x18{left:286.740000px;}
.xe{left:293.040000px;}
.x3{left:295.380000px;}
.x21{left:334.080000px;}
.x23{left:342.180000px;}
.xc{left:351.000000px;}
.x24{left:354.060000px;}
.x25{left:361.440000px;}
.x2e{left:377.460000px;}
.x16{left:385.920000px;}
.x1{left:432.900000px;}
.x29{left:468.900000px;}
.x14{left:489.060000px;}
.x30{left:507.960000px;}
.x26{left:533.880000px;}
.x12{left:537.480000px;}
.x17{left:575.460000px;}
.x1d{left:597.060000px;}
.x2c{left:626.400000px;}
.x19{left:657.360000px;}
.x2f{left:666.900000px;}
.x10{left:669.240000px;}
.x2a{left:673.200000px;}
.x1b{left:676.260000px;}
.x33{left:722.340000px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v1{vertical-align:24.320000pt;}
.v6{vertical-align:29.458560pt;}
.v2{vertical-align:42.240000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls3d{letter-spacing:-0.896000pt;}
.ls30{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls41{letter-spacing:-0.384000pt;}
.ls3c{letter-spacing:-0.300160pt;}
.lsf{letter-spacing:-0.299520pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.029952pt;}
.ls25{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.144000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.299520pt;}
.ls1b{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.343040pt;}
.ls47{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls22{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.920000pt;}
.ls2d{letter-spacing:2.560000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls4{letter-spacing:3.840000pt;}
.ls31{letter-spacing:4.480000pt;}
.ls2{letter-spacing:5.120000pt;}
.ls21{letter-spacing:5.760000pt;}
.ls24{letter-spacing:6.400000pt;}
.ls2b{letter-spacing:7.040000pt;}
.ls38{letter-spacing:7.680000pt;}
.ls2a{letter-spacing:8.320000pt;}
.ls11{letter-spacing:8.960000pt;}
.ls45{letter-spacing:9.600000pt;}
.ls49{letter-spacing:9.728000pt;}
.ls3e{letter-spacing:10.880000pt;}
.ls5{letter-spacing:11.520000pt;}
.ls27{letter-spacing:12.800000pt;}
.ls26{letter-spacing:13.440000pt;}
.ls1a{letter-spacing:14.080000pt;}
.ls4a{letter-spacing:14.720000pt;}
.ls10{letter-spacing:15.360000pt;}
.ls35{letter-spacing:16.640000pt;}
.ls42{letter-spacing:17.280000pt;}
.ls1e{letter-spacing:19.200000pt;}
.ls20{letter-spacing:20.480000pt;}
.ls34{letter-spacing:21.248000pt;}
.ls43{letter-spacing:21.760000pt;}
.ls3a{letter-spacing:22.400000pt;}
.ls39{letter-spacing:23.680000pt;}
.ls40{letter-spacing:24.320000pt;}
.lsd{letter-spacing:24.960000pt;}
.ls33{letter-spacing:25.088000pt;}
.ls46{letter-spacing:26.240000pt;}
.ls48{letter-spacing:26.880000pt;}
.ls36{letter-spacing:28.288000pt;}
.ls3b{letter-spacing:30.208000pt;}
.ls2c{letter-spacing:30.720000pt;}
.lse{letter-spacing:35.200000pt;}
.ls37{letter-spacing:35.328000pt;}
.ls28{letter-spacing:37.248000pt;}
.ls3f{letter-spacing:40.960000pt;}
.ls1f{letter-spacing:48.768000pt;}
.ls23{letter-spacing:49.408000pt;}
.ls1d{letter-spacing:56.903680pt;}
.lsc{letter-spacing:57.088000pt;}
.ls19{letter-spacing:151.680000pt;}
.ls44{letter-spacing:238.208000pt;}
.ls14{letter-spacing:502.400000pt;}
.ws35{word-spacing:-53.120000pt;}
.ws57{word-spacing:-18.420480pt;}
.ws1e{word-spacing:-16.640000pt;}
.ws25{word-spacing:-16.256000pt;}
.ws26{word-spacing:-16.192000pt;}
.ws27{word-spacing:-16.128000pt;}
.ws4d{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws47{word-spacing:-15.936000pt;}
.ws5d{word-spacing:-15.872000pt;}
.ws15{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws69{word-spacing:-15.360000pt;}
.ws7f{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws36{word-spacing:-10.720000pt;}
.ws90{word-spacing:-5.120000pt;}
.ws8f{word-spacing:-3.968000pt;}
.ws4{word-spacing:-3.840000pt;}
.ws97{word-spacing:-3.584000pt;}
.ws7b{word-spacing:-3.456000pt;}
.ws66{word-spacing:-3.200000pt;}
.ws7c{word-spacing:-3.008000pt;}
.ws3e{word-spacing:-2.560000pt;}
.ws78{word-spacing:-2.304000pt;}
.ws71{word-spacing:-2.048000pt;}
.ws4e{word-spacing:-1.920000pt;}
.ws52{word-spacing:-1.664000pt;}
.ws98{word-spacing:-1.344000pt;}
.ws7{word-spacing:-1.280000pt;}
.ws17{word-spacing:-1.123200pt;}
.wsc{word-spacing:-1.024000pt;}
.ws2d{word-spacing:-0.896000pt;}
.ws45{word-spacing:-0.768000pt;}
.ws22{word-spacing:-0.640000pt;}
.ws32{word-spacing:-0.576000pt;}
.ws4a{word-spacing:-0.524160pt;}
.ws37{word-spacing:-0.449280pt;}
.ws94{word-spacing:-0.448000pt;}
.ws2e{word-spacing:-0.384000pt;}
.ws61{word-spacing:-0.343040pt;}
.ws2f{word-spacing:-0.318720pt;}
.ws65{word-spacing:-0.299520pt;}
.ws28{word-spacing:-0.256000pt;}
.ws2a{word-spacing:-0.192000pt;}
.wsb{word-spacing:-0.128000pt;}
.ws46{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws29{word-spacing:0.048000pt;}
.ws6f{word-spacing:0.064000pt;}
.ws2c{word-spacing:0.128000pt;}
.ws16{word-spacing:0.149760pt;}
.ws13{word-spacing:0.192000pt;}
.ws5{word-spacing:0.256000pt;}
.ws79{word-spacing:0.300160pt;}
.ws6b{word-spacing:0.384000pt;}
.ws7e{word-spacing:0.512000pt;}
.ws19{word-spacing:0.640000pt;}
.ws7a{word-spacing:0.832000pt;}
.ws87{word-spacing:0.896000pt;}
.ws81{word-spacing:1.024000pt;}
.ws4f{word-spacing:1.152000pt;}
.ws8{word-spacing:1.280000pt;}
.ws7d{word-spacing:1.472000pt;}
.ws80{word-spacing:1.536000pt;}
.ws6{word-spacing:1.920000pt;}
.ws34{word-spacing:2.176000pt;}
.ws5e{word-spacing:2.304000pt;}
.ws5c{word-spacing:2.560000pt;}
.ws5f{word-spacing:2.816000pt;}
.wse{word-spacing:3.200000pt;}
.ws2b{word-spacing:3.456000pt;}
.ws10{word-spacing:3.840000pt;}
.ws40{word-spacing:4.096000pt;}
.ws4b{word-spacing:4.224000pt;}
.ws55{word-spacing:4.352000pt;}
.ws53{word-spacing:4.480000pt;}
.ws54{word-spacing:4.736000pt;}
.ws41{word-spacing:5.120000pt;}
.ws3d{word-spacing:5.504000pt;}
.ws59{word-spacing:5.760000pt;}
.ws9b{word-spacing:5.888000pt;}
.ws92{word-spacing:6.144000pt;}
.ws42{word-spacing:6.400000pt;}
.ws63{word-spacing:6.592000pt;}
.ws75{word-spacing:6.656000pt;}
.ws11{word-spacing:7.040000pt;}
.ws5b{word-spacing:7.296000pt;}
.ws93{word-spacing:7.424000pt;}
.ws58{word-spacing:7.680000pt;}
.ws99{word-spacing:7.808000pt;}
.ws1a{word-spacing:7.936000pt;}
.ws89{word-spacing:8.192000pt;}
.ws39{word-spacing:8.320000pt;}
.ws60{word-spacing:8.576000pt;}
.ws14{word-spacing:8.960000pt;}
.ws51{word-spacing:9.216000pt;}
.ws1c{word-spacing:9.600000pt;}
.ws8e{word-spacing:9.984000pt;}
.ws49{word-spacing:10.240000pt;}
.wsf{word-spacing:10.496000pt;}
.ws30{word-spacing:10.880000pt;}
.ws6a{word-spacing:11.136000pt;}
.ws12{word-spacing:11.520000pt;}
.ws21{word-spacing:12.160000pt;}
.wsd{word-spacing:12.416000pt;}
.ws68{word-spacing:12.800000pt;}
.ws5a{word-spacing:13.056000pt;}
.ws95{word-spacing:13.312000pt;}
.ws83{word-spacing:13.440000pt;}
.ws84{word-spacing:13.696000pt;}
.ws33{word-spacing:14.080000pt;}
.ws3c{word-spacing:14.336000pt;}
.ws8b{word-spacing:14.592000pt;}
.ws8a{word-spacing:14.720000pt;}
.ws9a{word-spacing:14.848000pt;}
.wsa{word-spacing:15.360000pt;}
.ws50{word-spacing:15.808000pt;}
.ws44{word-spacing:16.000000pt;}
.ws67{word-spacing:16.256000pt;}
.ws6e{word-spacing:16.384000pt;}
.ws6c{word-spacing:16.640000pt;}
.ws77{word-spacing:17.152000pt;}
.ws76{word-spacing:17.280000pt;}
.ws48{word-spacing:17.920000pt;}
.ws9{word-spacing:18.176000pt;}
.ws31{word-spacing:19.200000pt;}
.ws9c{word-spacing:19.968000pt;}
.ws3a{word-spacing:20.480000pt;}
.ws91{word-spacing:20.736000pt;}
.ws85{word-spacing:21.120000pt;}
.ws86{word-spacing:21.376000pt;}
.ws70{word-spacing:21.760000pt;}
.ws96{word-spacing:22.272000pt;}
.ws1d{word-spacing:22.400000pt;}
.ws82{word-spacing:22.656000pt;}
.ws56{word-spacing:23.680000pt;}
.ws3b{word-spacing:23.936000pt;}
.ws38{word-spacing:24.320000pt;}
.ws1b{word-spacing:24.960000pt;}
.ws62{word-spacing:25.600000pt;}
.ws74{word-spacing:25.856000pt;}
.ws18{word-spacing:27.520000pt;}
.ws73{word-spacing:28.800000pt;}
.ws9d{word-spacing:28.928000pt;}
.ws72{word-spacing:29.056000pt;}
.ws3f{word-spacing:29.440000pt;}
.ws23{word-spacing:30.592000pt;}
.ws24{word-spacing:30.720000pt;}
.ws8c{word-spacing:31.616000pt;}
.ws9e{word-spacing:33.280000pt;}
.ws88{word-spacing:35.200000pt;}
.ws1f{word-spacing:37.760000pt;}
.ws8d{word-spacing:40.704000pt;}
.ws43{word-spacing:42.880000pt;}
.ws64{word-spacing:44.160000pt;}
.ws4c{word-spacing:47.360000pt;}
.ws20{word-spacing:49.280000pt;}
.ws6d{word-spacing:68.480000pt;}
._3b{margin-left:-26.358144pt;}
._35{margin-left:-23.559360pt;}
._39{margin-left:-18.400256pt;}
._3a{margin-left:-16.158912pt;}
._20{margin-left:-9.024000pt;}
._38{margin-left:-5.760000pt;}
._13{margin-left:-4.480000pt;}
._2{margin-left:-3.547072pt;}
._6{margin-left:-1.996032pt;}
._0{margin-left:-0.947968pt;}
._1{width:1.115072pt;}
._3{width:2.532928pt;}
._d{width:3.766144pt;}
._5{width:4.979968pt;}
._4{width:5.888000pt;}
._f{width:7.266752pt;}
._12{width:8.453376pt;}
._e{width:9.408000pt;}
._8{width:10.304000pt;}
._9{width:11.520000pt;}
._c{width:12.772928pt;}
._1e{width:13.760000pt;}
._b{width:15.015936pt;}
._a{width:17.216000pt;}
._7{width:18.432000pt;}
._29{width:19.827968pt;}
._2b{width:20.736000pt;}
._1d{width:21.632000pt;}
._1c{width:22.528000pt;}
._1f{width:23.680000pt;}
._14{width:25.088000pt;}
._3c{width:25.984000pt;}
._11{width:26.880000pt;}
._10{width:28.160000pt;}
._15{width:29.568000pt;}
._16{width:30.592000pt;}
._22{width:31.488000pt;}
._21{width:33.088000pt;}
._18{width:34.926784pt;}
._17{width:35.977856pt;}
._19{width:37.811968pt;}
._37{width:39.456256pt;}
._36{width:41.033856pt;}
._2a{width:42.880000pt;}
._27{width:44.032000pt;}
._32{width:45.504000pt;}
._2c{width:46.515968pt;}
._2d{width:47.503872pt;}
._1a{width:48.512000pt;}
._1b{width:49.508928pt;}
._30{width:51.392000pt;}
._31{width:52.288000pt;}
._2e{width:55.168000pt;}
._2f{width:56.228928pt;}
._3e{width:70.668864pt;}
._34{width:78.128960pt;}
._33{width:79.219968pt;}
._3d{width:111.616000pt;}
._23{width:123.992896pt;}
._25{width:129.060928pt;}
._26{width:145.920000pt;}
._24{width:233.984000pt;}
._28{width:345.984000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:6.240000pt;}
.ya9{bottom:6.400000pt;}
.y69{bottom:16.800000pt;}
.yb6{bottom:16.960000pt;}
.y6a{bottom:27.360000pt;}
.y77{bottom:27.520000pt;}
.y9c{bottom:38.080000pt;}
.ya4{bottom:48.480000pt;}
.ya8{bottom:48.640000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:69.120000pt;}
.y9d{bottom:69.760000pt;}
.ya3{bottom:90.880000pt;}
.y97{bottom:98.400000pt;}
.y215{bottom:100.800000pt;}
.y24{bottom:101.440000pt;}
.y122{bottom:102.080000pt;}
.y14f{bottom:102.560000pt;}
.y21c{bottom:103.200000pt;}
.y136{bottom:105.920000pt;}
.y46{bottom:106.080000pt;}
.y26e{bottom:109.120000pt;}
.y17a{bottom:110.560000pt;}
.y1ee{bottom:111.360000pt;}
.yae{bottom:112.160000pt;}
.y240{bottom:112.480000pt;}
.y248{bottom:112.960000pt;}
.y205{bottom:114.720000pt;}
.y209{bottom:116.000000pt;}
.y190{bottom:118.880000pt;}
.y289{bottom:119.840000pt;}
.y1ae{bottom:122.560000pt;}
.y19c{bottom:124.160000pt;}
.y96{bottom:126.080000pt;}
.y214{bottom:128.480000pt;}
.y1c6{bottom:128.800000pt;}
.y23{bottom:129.120000pt;}
.y121{bottom:129.600000pt;}
.y14e{bottom:130.080000pt;}
.yc3{bottom:130.560000pt;}
.y21b{bottom:130.720000pt;}
.y67{bottom:132.960000pt;}
.yad{bottom:133.280000pt;}
.y135{bottom:133.600000pt;}
.y45{bottom:133.760000pt;}
.y26d{bottom:136.640000pt;}
.y179{bottom:138.240000pt;}
.y1ed{bottom:139.040000pt;}
.ye2{bottom:139.360000pt;}
.y23f{bottom:140.160000pt;}
.y247{bottom:140.480000pt;}
.y22d{bottom:141.280000pt;}
.y204{bottom:142.400000pt;}
.y208{bottom:143.520000pt;}
.y2a7{bottom:144.320000pt;}
.y25d{bottom:145.600000pt;}
.y18f{bottom:146.560000pt;}
.y288{bottom:148.480000pt;}
.y1ad{bottom:150.240000pt;}
.yff{bottom:151.040000pt;}
.y296{bottom:151.520000pt;}
.y19b{bottom:151.680000pt;}
.y1cf{bottom:152.160000pt;}
.y95{bottom:153.600000pt;}
.y213{bottom:156.000000pt;}
.y1c5{bottom:156.320000pt;}
.y22{bottom:156.640000pt;}
.y163{bottom:156.800000pt;}
.y120{bottom:157.280000pt;}
.y14d{bottom:157.600000pt;}
.yc2{bottom:158.240000pt;}
.y21a{bottom:158.400000pt;}
.y134{bottom:161.120000pt;}
.y44{bottom:161.280000pt;}
.y26c{bottom:164.320000pt;}
.y178{bottom:165.760000pt;}
.y1ec{bottom:166.560000pt;}
.ye1{bottom:167.040000pt;}
.y23e{bottom:167.680000pt;}
.y246{bottom:168.160000pt;}
.y22c{bottom:168.800000pt;}
.y203{bottom:169.920000pt;}
.y66{bottom:171.200000pt;}
.y18e{bottom:174.080000pt;}
.y25c{bottom:174.400000pt;}
.y287{bottom:177.440000pt;}
.y1ac{bottom:177.760000pt;}
.yfe{bottom:178.400000pt;}
.y295{bottom:179.040000pt;}
.y19a{bottom:179.360000pt;}
.y1ce{bottom:179.680000pt;}
.y94{bottom:181.280000pt;}
.y2a6{bottom:182.560000pt;}
.y212{bottom:183.680000pt;}
.y1c4{bottom:184.000000pt;}
.y21{bottom:184.320000pt;}
.y11f{bottom:184.800000pt;}
.yc1{bottom:185.760000pt;}
.y219{bottom:185.920000pt;}
.y133{bottom:188.800000pt;}
.y43{bottom:188.960000pt;}
.y26b{bottom:191.840000pt;}
.y177{bottom:193.440000pt;}
.y1eb{bottom:194.080000pt;}
.ye0{bottom:194.560000pt;}
.y23d{bottom:195.360000pt;}
.y245{bottom:195.680000pt;}
.y22b{bottom:196.480000pt;}
.y202{bottom:197.600000pt;}
.y65{bottom:198.720000pt;}
.y14c{bottom:201.280000pt;}
.y18d{bottom:201.600000pt;}
.y25b{bottom:203.040000pt;}
.y286{bottom:204.960000pt;}
.y1ab{bottom:205.440000pt;}
.y294{bottom:206.720000pt;}
.y199{bottom:206.880000pt;}
.yfd{bottom:207.360000pt;}
.y1cd{bottom:208.480000pt;}
.y93{bottom:208.800000pt;}
.y211{bottom:211.200000pt;}
.y1c3{bottom:211.520000pt;}
.y20{bottom:211.840000pt;}
.y11e{bottom:212.480000pt;}
.yc0{bottom:213.440000pt;}
.y218{bottom:213.600000pt;}
.y132{bottom:216.320000pt;}
.y42{bottom:216.480000pt;}
.y26a{bottom:219.520000pt;}
.y2a5{bottom:220.800000pt;}
.y176{bottom:220.960000pt;}
.y1ea{bottom:221.760000pt;}
.ydf{bottom:222.240000pt;}
.y23c{bottom:222.880000pt;}
.y244{bottom:223.360000pt;}
.y22a{bottom:224.000000pt;}
.y201{bottom:225.120000pt;}
.y64{bottom:226.400000pt;}
.y162{bottom:228.000000pt;}
.y14b{bottom:228.800000pt;}
.y18c{bottom:229.280000pt;}
.y25a{bottom:231.840000pt;}
.y285{bottom:232.640000pt;}
.y1aa{bottom:232.960000pt;}
.y293{bottom:234.240000pt;}
.yfc{bottom:234.720000pt;}
.y198{bottom:235.520000pt;}
.y1cc{bottom:236.000000pt;}
.y92{bottom:236.480000pt;}
.y1c2{bottom:239.200000pt;}
.y1f{bottom:239.520000pt;}
.y11d{bottom:240.000000pt;}
.y217{bottom:241.120000pt;}
.y41{bottom:244.000000pt;}
.y269{bottom:246.880000pt;}
.ybf{bottom:247.840000pt;}
.y175{bottom:248.640000pt;}
.y1e9{bottom:249.280000pt;}
.yde{bottom:249.760000pt;}
.y23b{bottom:250.560000pt;}
.y243{bottom:250.880000pt;}
.y229{bottom:251.680000pt;}
.y200{bottom:252.800000pt;}
.y63{bottom:253.920000pt;}
.y161{bottom:255.520000pt;}
.y14a{bottom:256.480000pt;}
.y18b{bottom:256.800000pt;}
.y2a4{bottom:259.200000pt;}
.y284{bottom:260.160000pt;}
.y1a9{bottom:260.640000pt;}
.y292{bottom:261.920000pt;}
.yfb{bottom:263.680000pt;}
.y91{bottom:264.000000pt;}
.y197{bottom:264.320000pt;}
.y1c1{bottom:266.720000pt;}
.y1e{bottom:267.040000pt;}
.y11c{bottom:267.520000pt;}
.y216{bottom:268.800000pt;}
.y131{bottom:271.520000pt;}
.y40{bottom:271.680000pt;}
.y268{bottom:275.840000pt;}
.y174{bottom:276.160000pt;}
.y1e8{bottom:276.960000pt;}
.ydd{bottom:277.440000pt;}
.y23a{bottom:278.080000pt;}
.y242{bottom:278.400000pt;}
.y228{bottom:279.200000pt;}
.y1ff{bottom:280.320000pt;}
.y62{bottom:281.600000pt;}
.ybe{bottom:283.360000pt;}
.y18a{bottom:284.480000pt;}
.y283{bottom:287.840000pt;}
.y1a8{bottom:288.160000pt;}
.y259{bottom:289.440000pt;}
.yfa{bottom:291.200000pt;}
.y90{bottom:291.680000pt;}
.y196{bottom:293.120000pt;}
.y1c0{bottom:294.400000pt;}
.y1d{bottom:294.720000pt;}
.y11b{bottom:295.200000pt;}
.y210{bottom:296.320000pt;}
.y2a3{bottom:297.440000pt;}
.y3f{bottom:299.200000pt;}
.y149{bottom:300.000000pt;}
.y267{bottom:303.200000pt;}
.y173{bottom:303.840000pt;}
.y1e7{bottom:304.480000pt;}
.ydc{bottom:304.800000pt;}
.y239{bottom:305.760000pt;}
.y130{bottom:306.560000pt;}
.y227{bottom:306.880000pt;}
.y1fe{bottom:308.000000pt;}
.y61{bottom:309.120000pt;}
.ybd{bottom:311.040000pt;}
.y189{bottom:312.000000pt;}
.y241{bottom:313.440000pt;}
.y1a7{bottom:315.840000pt;}
.y258{bottom:316.960000pt;}
.y291{bottom:317.120000pt;}
.yf9{bottom:318.880000pt;}
.y8f{bottom:319.200000pt;}
.y195{bottom:321.920000pt;}
.y1c{bottom:322.240000pt;}
.y11a{bottom:322.720000pt;}
.y20f{bottom:324.000000pt;}
.y1cb{bottom:326.240000pt;}
.y160{bottom:326.720000pt;}
.y3e{bottom:326.880000pt;}
.y148{bottom:327.680000pt;}
.y172{bottom:331.360000pt;}
.y266{bottom:332.000000pt;}
.y1e6{bottom:332.160000pt;}
.y238{bottom:333.280000pt;}
.ydb{bottom:333.600000pt;}
.y226{bottom:334.400000pt;}
.y1fd{bottom:335.520000pt;}
.y2a2{bottom:335.680000pt;}
.y60{bottom:336.800000pt;}
.ybc{bottom:338.560000pt;}
.y188{bottom:339.680000pt;}
.y12f{bottom:344.480000pt;}
.y290{bottom:344.640000pt;}
.y257{bottom:345.760000pt;}
.yf8{bottom:346.400000pt;}
.y8e{bottom:346.880000pt;}
.y194{bottom:349.600000pt;}
.y1b{bottom:349.920000pt;}
.y119{bottom:350.400000pt;}
.y1a6{bottom:350.720000pt;}
.y20e{bottom:351.520000pt;}
.y3d{bottom:354.400000pt;}
.y282{bottom:357.760000pt;}
.y171{bottom:359.040000pt;}
.y1e5{bottom:359.680000pt;}
.y237{bottom:360.960000pt;}
.y225{bottom:362.080000pt;}
.yda{bottom:362.400000pt;}
.y1fc{bottom:363.200000pt;}
.y5f{bottom:364.320000pt;}
.ybb{bottom:366.240000pt;}
.y187{bottom:367.200000pt;}
.y15f{bottom:370.400000pt;}
.y147{bottom:371.200000pt;}
.y28f{bottom:372.320000pt;}
.y12e{bottom:373.280000pt;}
.y256{bottom:373.440000pt;}
.y2a1{bottom:373.920000pt;}
.yf7{bottom:374.080000pt;}
.y8d{bottom:374.400000pt;}
.y193{bottom:377.120000pt;}
.y1a{bottom:377.440000pt;}
.y118{bottom:377.920000pt;}
.y20d{bottom:379.200000pt;}
.y3c{bottom:382.080000pt;}
.y281{bottom:385.440000pt;}
.y170{bottom:386.560000pt;}
.y265{bottom:388.480000pt;}
.y1a5{bottom:388.800000pt;}
.y224{bottom:389.600000pt;}
.yd9{bottom:390.080000pt;}
.y1fb{bottom:390.720000pt;}
.y5e{bottom:392.000000pt;}
.yba{bottom:393.760000pt;}
.y1e4{bottom:394.080000pt;}
.y186{bottom:394.880000pt;}
.y236{bottom:395.360000pt;}
.y15e{bottom:397.920000pt;}
.y146{bottom:398.880000pt;}
.y28e{bottom:399.680000pt;}
.y255{bottom:400.800000pt;}
.yf6{bottom:401.600000pt;}
.y8c{bottom:402.080000pt;}
.y192{bottom:404.800000pt;}
.y19{bottom:405.120000pt;}
.y117{bottom:405.600000pt;}
.y20c{bottom:406.720000pt;}
.y3b{bottom:409.600000pt;}
.y2a0{bottom:412.160000pt;}
.y280{bottom:412.960000pt;}
.y16f{bottom:414.240000pt;}
.y264{bottom:416.160000pt;}
.y1a4{bottom:416.480000pt;}
.y223{bottom:417.280000pt;}
.yd8{bottom:417.600000pt;}
.y1fa{bottom:418.400000pt;}
.y5d{bottom:419.520000pt;}
.yb9{bottom:421.280000pt;}
.y185{bottom:422.400000pt;}
.y28d{bottom:428.480000pt;}
.yf5{bottom:429.280000pt;}
.y8b{bottom:429.600000pt;}
.y254{bottom:429.760000pt;}
.y12d{bottom:430.720000pt;}
.y235{bottom:430.880000pt;}
.y1bf{bottom:432.320000pt;}
.y18{bottom:432.640000pt;}
.y116{bottom:433.120000pt;}
.y20b{bottom:434.400000pt;}
.y145{bottom:437.120000pt;}
.y3a{bottom:437.280000pt;}
.y191{bottom:439.200000pt;}
.y27f{bottom:440.640000pt;}
.y15d{bottom:441.600000pt;}
.y16e{bottom:441.760000pt;}
.y263{bottom:443.680000pt;}
.y1a3{bottom:444.000000pt;}
.y222{bottom:444.800000pt;}
.yd7{bottom:445.280000pt;}
.y1f9{bottom:445.920000pt;}
.y5c{bottom:447.200000pt;}
.yb8{bottom:448.800000pt;}
.y184{bottom:450.080000pt;}
.y29f{bottom:450.400000pt;}
.y207{bottom:453.920000pt;}
.yf4{bottom:456.800000pt;}
.y8a{bottom:457.280000pt;}
.y1e3{bottom:458.400000pt;}
.y234{bottom:458.560000pt;}
.y12c{bottom:459.520000pt;}
.y1be{bottom:460.000000pt;}
.y17{bottom:460.320000pt;}
.y115{bottom:460.800000pt;}
.y20a{bottom:461.920000pt;}
.y39{bottom:464.800000pt;}
.y27e{bottom:468.160000pt;}
.y15c{bottom:469.120000pt;}
.y16d{bottom:469.440000pt;}
.y262{bottom:471.360000pt;}
.y1a2{bottom:471.680000pt;}
.y221{bottom:472.480000pt;}
.yd6{bottom:472.800000pt;}
.y1f8{bottom:473.600000pt;}
.y5b{bottom:474.720000pt;}
.y183{bottom:477.600000pt;}
.yf3{bottom:484.480000pt;}
.y89{bottom:484.800000pt;}
.y253{bottom:484.960000pt;}
.y28c{bottom:485.920000pt;}
.y233{bottom:486.080000pt;}
.y1e2{bottom:487.200000pt;}
.y1bd{bottom:487.520000pt;}
.y16{bottom:487.840000pt;}
.y114{bottom:488.320000pt;}
.y29e{bottom:488.800000pt;}
.y206{bottom:489.600000pt;}
.yb7{bottom:490.400000pt;}
.y144{bottom:492.320000pt;}
.y38{bottom:492.480000pt;}
.y27d{bottom:495.840000pt;}
.y15b{bottom:496.800000pt;}
.y16c{bottom:496.960000pt;}
.y1a1{bottom:499.200000pt;}
.y220{bottom:500.000000pt;}
.yd5{bottom:500.480000pt;}
.y1f7{bottom:501.120000pt;}
.y5a{bottom:502.400000pt;}
.yb4{bottom:504.800000pt;}
.y182{bottom:505.280000pt;}
.y261{bottom:505.600000pt;}
.yb5{bottom:511.040000pt;}
.yf2{bottom:512.000000pt;}
.y88{bottom:512.480000pt;}
.y232{bottom:513.600000pt;}
.y1e1{bottom:514.880000pt;}
.y1bc{bottom:515.200000pt;}
.y15{bottom:515.520000pt;}
.y113{bottom:516.000000pt;}
.y12b{bottom:517.120000pt;}
.y37{bottom:520.000000pt;}
.yb3{bottom:521.760000pt;}
.y27c{bottom:523.360000pt;}
.y15a{bottom:524.320000pt;}
.y16b{bottom:524.480000pt;}
.y1a0{bottom:526.880000pt;}
.y29d{bottom:527.040000pt;}
.y21f{bottom:527.680000pt;}
.yd4{bottom:528.000000pt;}
.y1f6{bottom:528.800000pt;}
.y59{bottom:529.920000pt;}
.y181{bottom:532.800000pt;}
.y143{bottom:535.840000pt;}
.yf1{bottom:539.680000pt;}
.y87{bottom:540.000000pt;}
.y252{bottom:540.160000pt;}
.y260{bottom:541.120000pt;}
.y231{bottom:541.280000pt;}
.y1e0{bottom:542.400000pt;}
.y1bb{bottom:542.720000pt;}
.y14{bottom:543.040000pt;}
.y112{bottom:543.520000pt;}
.y12a{bottom:544.800000pt;}
.y36{bottom:547.680000pt;}
.yb1{bottom:549.120000pt;}
.y27b{bottom:551.040000pt;}
.y159{bottom:551.840000pt;}
.y16a{bottom:552.160000pt;}
.y19f{bottom:554.400000pt;}
.y21e{bottom:555.040000pt;}
.yb2{bottom:555.360000pt;}
.yd3{bottom:555.680000pt;}
.y1f5{bottom:556.320000pt;}
.y58{bottom:557.440000pt;}
.y180{bottom:560.480000pt;}
.y142{bottom:563.520000pt;}
.y29c{bottom:565.280000pt;}
.yb0{bottom:566.080000pt;}
.yf0{bottom:567.200000pt;}
.y86{bottom:567.680000pt;}
.y230{bottom:568.800000pt;}
.y25f{bottom:569.920000pt;}
.y1df{bottom:570.080000pt;}
.y1ba{bottom:570.240000pt;}
.y13{bottom:570.720000pt;}
.y111{bottom:571.200000pt;}
.y129{bottom:572.320000pt;}
.y35{bottom:575.200000pt;}
.y27a{bottom:578.560000pt;}
.y158{bottom:579.520000pt;}
.y169{bottom:579.680000pt;}
.y19e{bottom:582.080000pt;}
.yd2{bottom:583.200000pt;}
.y1f4{bottom:583.840000pt;}
.y57{bottom:585.120000pt;}
.y141{bottom:591.040000pt;}
.yac{bottom:593.440000pt;}
.y17f{bottom:594.880000pt;}
.y251{bottom:595.360000pt;}
.y1de{bottom:597.600000pt;}
.y1b9{bottom:597.920000pt;}
.y12{bottom:598.240000pt;}
.y25e{bottom:598.560000pt;}
.y110{bottom:598.720000pt;}
.yaf{bottom:599.680000pt;}
.y128{bottom:599.840000pt;}
.yef{bottom:601.600000pt;}
.y34{bottom:602.880000pt;}
.y29b{bottom:603.520000pt;}
.y279{bottom:606.240000pt;}
.y157{bottom:607.040000pt;}
.y168{bottom:607.360000pt;}
.y19d{bottom:609.600000pt;}
.y85{bottom:610.080000pt;}
.yd1{bottom:610.880000pt;}
.y1f3{bottom:611.520000pt;}
.y56{bottom:612.640000pt;}
.y140{bottom:618.720000pt;}
.y250{bottom:622.880000pt;}
.y1dd{bottom:625.280000pt;}
.y1b8{bottom:625.440000pt;}
.y83{bottom:625.760000pt;}
.y11{bottom:625.920000pt;}
.y10f{bottom:626.400000pt;}
.y127{bottom:627.520000pt;}
.y33{bottom:630.400000pt;}
.y84{bottom:632.000000pt;}
.y278{bottom:633.760000pt;}
.y167{bottom:634.880000pt;}
.yee{bottom:637.280000pt;}
.yd0{bottom:638.400000pt;}
.y1f2{bottom:639.040000pt;}
.y55{bottom:640.320000pt;}
.y29a{bottom:641.760000pt;}
.y82{bottom:642.560000pt;}
.y13f{bottom:646.240000pt;}
.y24f{bottom:650.560000pt;}
.y156{bottom:650.720000pt;}
.y22f{bottom:652.640000pt;}
.y1dc{bottom:652.800000pt;}
.y1b7{bottom:653.120000pt;}
.y10{bottom:653.440000pt;}
.y10e{bottom:653.920000pt;}
.y126{bottom:655.040000pt;}
.y32{bottom:658.080000pt;}
.y277{bottom:661.440000pt;}
.y166{bottom:662.400000pt;}
.yab{bottom:663.200000pt;}
.yed{bottom:664.800000pt;}
.ycf{bottom:666.080000pt;}
.y1f1{bottom:666.720000pt;}
.y54{bottom:667.840000pt;}
.y80{bottom:670.080000pt;}
.y21d{bottom:674.720000pt;}
.y81{bottom:676.320000pt;}
.y24e{bottom:678.080000pt;}
.y155{bottom:678.240000pt;}
.y1db{bottom:680.480000pt;}
.y1b6{bottom:680.640000pt;}
.yf{bottom:681.120000pt;}
.y10d{bottom:681.600000pt;}
.y125{bottom:682.720000pt;}
.y31{bottom:685.600000pt;}
.y7f{bottom:686.880000pt;}
.y276{bottom:688.960000pt;}
.y13e{bottom:689.920000pt;}
.y165{bottom:691.200000pt;}
.yec{bottom:692.480000pt;}
.yce{bottom:693.600000pt;}
.y1f0{bottom:694.240000pt;}
.y53{bottom:695.520000pt;}
.y24d{bottom:705.760000pt;}
.y154{bottom:705.920000pt;}
.y1da{bottom:708.000000pt;}
.y1b5{bottom:708.320000pt;}
.ye{bottom:708.640000pt;}
.y10c{bottom:709.120000pt;}
.y124{bottom:710.240000pt;}
.y30{bottom:713.280000pt;}
.y7d{bottom:714.400000pt;}
.y275{bottom:716.640000pt;}
.y13d{bottom:717.440000pt;}
.yeb{bottom:720.000000pt;}
.y7e{bottom:720.640000pt;}
.ycd{bottom:721.280000pt;}
.y1ef{bottom:721.920000pt;}
.y1ca{bottom:723.040000pt;}
.y52{bottom:729.920000pt;}
.y7c{bottom:731.200000pt;}
.y24c{bottom:733.280000pt;}
.y1d9{bottom:735.680000pt;}
.y1b4{bottom:735.840000pt;}
.yd{bottom:736.160000pt;}
.y22e{bottom:736.640000pt;}
.y10b{bottom:736.800000pt;}
.y123{bottom:737.920000pt;}
.y2f{bottom:740.800000pt;}
.ya7{bottom:743.520000pt;}
.y274{bottom:744.160000pt;}
.y13c{bottom:745.120000pt;}
.yea{bottom:747.680000pt;}
.ycc{bottom:748.800000pt;}
.y153{bottom:749.440000pt;}
.yaa{bottom:749.920000pt;}
.y1c9{bottom:750.720000pt;}
.y7a{bottom:758.720000pt;}
.y24b{bottom:760.960000pt;}
.y1d8{bottom:763.200000pt;}
.yc{bottom:763.840000pt;}
.y10a{bottom:764.320000pt;}
.y7b{bottom:764.960000pt;}
.y51{bottom:765.440000pt;}
.y2e{bottom:768.480000pt;}
.y1b3{bottom:770.240000pt;}
.y273{bottom:771.840000pt;}
.ye9{bottom:775.200000pt;}
.y79{bottom:775.520000pt;}
.ycb{bottom:776.480000pt;}
.y152{bottom:777.120000pt;}
.y1c8{bottom:778.240000pt;}
.ya6{bottom:781.600000pt;}
.y24a{bottom:788.320000pt;}
.y13b{bottom:788.640000pt;}
.y1d7{bottom:790.880000pt;}
.yb{bottom:791.360000pt;}
.y109{bottom:792.000000pt;}
.y50{bottom:793.120000pt;}
.y2d{bottom:796.000000pt;}
.y272{bottom:799.360000pt;}
.ye8{bottom:802.880000pt;}
.y76{bottom:803.040000pt;}
.yca{bottom:804.000000pt;}
.y151{bottom:804.640000pt;}
.y1b2{bottom:805.920000pt;}
.y78{bottom:809.280000pt;}
.y13a{bottom:816.320000pt;}
.y249{bottom:817.120000pt;}
.y1d6{bottom:818.400000pt;}
.ya{bottom:819.040000pt;}
.y108{bottom:819.520000pt;}
.y75{bottom:819.840000pt;}
.y4f{bottom:820.640000pt;}
.y17e{bottom:823.680000pt;}
.y271{bottom:826.880000pt;}
.ya2{bottom:830.240000pt;}
.y2c{bottom:830.400000pt;}
.yc9{bottom:831.680000pt;}
.y150{bottom:832.320000pt;}
.y1b1{bottom:833.440000pt;}
.ya5{bottom:836.480000pt;}
.y1c7{bottom:840.320000pt;}
.y1d5{bottom:845.920000pt;}
.y9{bottom:846.560000pt;}
.y107{bottom:847.200000pt;}
.y73{bottom:847.360000pt;}
.y4e{bottom:848.320000pt;}
.y17d{bottom:851.200000pt;}
.y74{bottom:853.600000pt;}
.y270{bottom:855.520000pt;}
.ye7{bottom:858.080000pt;}
.yc8{bottom:859.200000pt;}
.y139{bottom:859.840000pt;}
.y1b0{bottom:861.120000pt;}
.y72{bottom:864.160000pt;}
.y2b{bottom:866.080000pt;}
.ya1{bottom:868.160000pt;}
.y1d4{bottom:873.600000pt;}
.y8{bottom:874.240000pt;}
.y106{bottom:874.720000pt;}
.y4d{bottom:875.840000pt;}
.ya0{bottom:878.720000pt;}
.y17c{bottom:878.880000pt;}
.y26f{bottom:884.320000pt;}
.ye6{bottom:885.600000pt;}
.yc7{bottom:886.880000pt;}
.y138{bottom:887.520000pt;}
.y70{bottom:891.680000pt;}
.y2a{bottom:893.600000pt;}
.y1af{bottom:895.520000pt;}
.y71{bottom:897.920000pt;}
.y1d3{bottom:901.120000pt;}
.y7{bottom:901.760000pt;}
.y105{bottom:902.400000pt;}
.y4c{bottom:903.520000pt;}
.y17b{bottom:906.400000pt;}
.y6f{bottom:908.480000pt;}
.ye5{bottom:913.280000pt;}
.yc6{bottom:914.400000pt;}
.y137{bottom:915.040000pt;}
.y29{bottom:921.280000pt;}
.y1d2{bottom:928.800000pt;}
.y6{bottom:929.440000pt;}
.y104{bottom:929.920000pt;}
.y4b{bottom:931.040000pt;}
.y6e{bottom:936.000000pt;}
.y9b{bottom:937.920000pt;}
.ye4{bottom:940.800000pt;}
.yc5{bottom:942.080000pt;}
.y299{bottom:942.720000pt;}
.y9f{bottom:944.320000pt;}
.y164{bottom:948.160000pt;}
.y28{bottom:948.800000pt;}
.y6d{bottom:952.800000pt;}
.y9a{bottom:954.880000pt;}
.y1d1{bottom:956.320000pt;}
.y103{bottom:957.600000pt;}
.y4a{bottom:958.720000pt;}
.y5{bottom:963.840000pt;}
.y9e{bottom:965.440000pt;}
.yc4{bottom:969.600000pt;}
.y298{bottom:970.240000pt;}
.ye3{bottom:975.680000pt;}
.y99{bottom:976.000000pt;}
.y27{bottom:976.480000pt;}
.y68{bottom:980.320000pt;}
.y1d0{bottom:983.840000pt;}
.y28b{bottom:984.000000pt;}
.y102{bottom:985.120000pt;}
.y49{bottom:986.240000pt;}
.y6c{bottom:986.560000pt;}
.y98{bottom:997.120000pt;}
.y297{bottom:997.920000pt;}
.y4{bottom:1003.680000pt;}
.y26{bottom:1004.000000pt;}
.y28a{bottom:1011.520000pt;}
.y101{bottom:1012.800000pt;}
.y48{bottom:1013.920000pt;}
.y25{bottom:1038.880000pt;}
.y100{bottom:1040.160000pt;}
.y47{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.h9{height:42.240000pt;}
.hb{height:42.400000pt;}
.hc{height:42.401333pt;}
.h12{height:47.050625pt;}
.h4{height:52.152500pt;}
.h3{height:56.156250pt;}
.h14{height:56.312500pt;}
.h2{height:56.687500pt;}
.h6{height:57.031250pt;}
.h15{height:61.944687pt;}
.h13{height:61.963247pt;}
.h7{height:62.300625pt;}
.h8{height:66.726562pt;}
.h5{height:75.851562pt;}
.hd{height:84.640000pt;}
.hf{height:98.396250pt;}
.ha{height:99.271250pt;}
.he{height:99.567500pt;}
.h10{height:105.760000pt;}
.h11{height:148.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:59.040000pt;}
.w5{width:113.440000pt;}
.w6{width:117.918667pt;}
.w3{width:226.080000pt;}
.w7{width:243.680000pt;}
.w4{width:284.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:0.960000pt;}
.x31{left:15.200000pt;}
.x22{left:30.560000pt;}
.xa{left:36.160000pt;}
.xb{left:71.040000pt;}
.x3d{left:89.600000pt;}
.x2{left:94.400000pt;}
.x7{left:96.000000pt;}
.x2d{left:107.360000pt;}
.x2b{left:110.080000pt;}
.x27{left:112.800000pt;}
.x1e{left:114.560000pt;}
.x3c{left:117.440000pt;}
.x34{left:118.400000pt;}
.xd{left:119.680000pt;}
.x15{left:120.640000pt;}
.x39{left:122.880000pt;}
.x6{left:132.160000pt;}
.x4{left:141.600000pt;}
.x5{left:145.920000pt;}
.x3a{left:146.880000pt;}
.x9{left:156.960000pt;}
.x35{left:166.400000pt;}
.x1f{left:181.440000pt;}
.x32{left:187.360000pt;}
.x36{left:190.400000pt;}
.x20{left:196.160000pt;}
.x1a{left:204.960000pt;}
.x37{left:212.160000pt;}
.x11{left:214.720000pt;}
.x3b{left:217.600000pt;}
.x28{left:222.720000pt;}
.x13{left:228.480000pt;}
.xf{left:233.440000pt;}
.x38{left:236.160000pt;}
.x1c{left:237.760000pt;}
.x18{left:254.880000pt;}
.xe{left:260.480000pt;}
.x3{left:262.560000pt;}
.x21{left:296.960000pt;}
.x23{left:304.160000pt;}
.xc{left:312.000000pt;}
.x24{left:314.720000pt;}
.x25{left:321.280000pt;}
.x2e{left:335.520000pt;}
.x16{left:343.040000pt;}
.x1{left:384.800000pt;}
.x29{left:416.800000pt;}
.x14{left:434.720000pt;}
.x30{left:451.520000pt;}
.x26{left:474.560000pt;}
.x12{left:477.760000pt;}
.x17{left:511.520000pt;}
.x1d{left:530.720000pt;}
.x2c{left:556.800000pt;}
.x19{left:584.320000pt;}
.x2f{left:592.800000pt;}
.x10{left:594.880000pt;}
.x2a{left:598.400000pt;}
.x1b{left:601.120000pt;}
.x33{left:642.080000pt;}
}




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