
    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_f297938a2a5eded7e484f10b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_911a522be6dfd044c8145145.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_8e8d18d25e57adc0e7ac6f8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_83b2f3def0afbce6f3e733b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_37de585d000b4a09d698b5dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_dea170c7293b9d9c0cf3c6ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b2f8064685729eaf96b1465f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f71ce80df5a18c8670e93dff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2e5f04512366afb1d7a67dbb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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);}
.v2{vertical-align:-15.442800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:21.619200px;}
.ls68{letter-spacing:-7.740000px;}
.ls57{letter-spacing:-7.500000px;}
.ls64{letter-spacing:-7.380000px;}
.ls54{letter-spacing:-7.320000px;}
.ls66{letter-spacing:-6.960000px;}
.ls63{letter-spacing:-6.660000px;}
.ls5d{letter-spacing:-6.480000px;}
.ls3c{letter-spacing:-6.360000px;}
.ls53{letter-spacing:-4.800000px;}
.ls65{letter-spacing:-1.500000px;}
.ls3d{letter-spacing:-1.020000px;}
.ls16{letter-spacing:-0.780000px;}
.ls3a{letter-spacing:-0.480000px;}
.ls51{letter-spacing:-0.420000px;}
.ls52{letter-spacing:-0.360000px;}
.ls3b{letter-spacing:-0.300000px;}
.ls17{letter-spacing:-0.253200px;}
.ls39{letter-spacing:-0.240000px;}
.ls67{letter-spacing:-0.180000px;}
.ls8a{letter-spacing:-0.144000px;}
.ls4f{letter-spacing:-0.120000px;}
.ls89{letter-spacing:-0.096000px;}
.ls38{letter-spacing:-0.060000px;}
.ls8b{letter-spacing:-0.048000px;}
.ls18{letter-spacing:-0.045000px;}
.ls15{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls88{letter-spacing:0.048000px;}
.ls1a{letter-spacing:0.060000px;}
.ls8c{letter-spacing:0.096000px;}
.lse{letter-spacing:0.120000px;}
.ls7f{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls75{letter-spacing:0.192000px;}
.ls20{letter-spacing:0.240000px;}
.ls83{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.300000px;}
.ls56{letter-spacing:0.336000px;}
.ls1f{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.384000px;}
.ls46{letter-spacing:0.420000px;}
.ls58{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.540000px;}
.ls82{letter-spacing:0.576000px;}
.ls4c{letter-spacing:0.600000px;}
.ls85{letter-spacing:0.624000px;}
.ls48{letter-spacing:0.660000px;}
.ls94{letter-spacing:0.672000px;}
.ls36{letter-spacing:0.720000px;}
.ls7a{letter-spacing:0.768000px;}
.ls21{letter-spacing:0.780000px;}
.ls77{letter-spacing:0.816000px;}
.ls12{letter-spacing:0.840000px;}
.ls23{letter-spacing:0.900000px;}
.ls91{letter-spacing:0.912000px;}
.ls29{letter-spacing:0.960000px;}
.ls86{letter-spacing:1.008000px;}
.ls22{letter-spacing:1.020000px;}
.ls7c{letter-spacing:1.056000px;}
.lsd{letter-spacing:1.080000px;}
.ls7b{letter-spacing:1.104000px;}
.ls32{letter-spacing:1.140000px;}
.ls81{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.200000px;}
.ls6f{letter-spacing:1.248000px;}
.ls8{letter-spacing:1.260000px;}
.ls26{letter-spacing:1.320000px;}
.ls79{letter-spacing:1.344000px;}
.ls4{letter-spacing:1.380000px;}
.ls87{letter-spacing:1.392000px;}
.lsa{letter-spacing:1.440000px;}
.ls8e{letter-spacing:1.488000px;}
.ls24{letter-spacing:1.500000px;}
.ls6a{letter-spacing:1.536000px;}
.ls2f{letter-spacing:1.560000px;}
.ls8d{letter-spacing:1.584000px;}
.ls4e{letter-spacing:1.620000px;}
.ls6e{letter-spacing:1.632000px;}
.ls5{letter-spacing:1.680000px;}
.ls78{letter-spacing:1.728000px;}
.ls1d{letter-spacing:1.740000px;}
.ls40{letter-spacing:1.800000px;}
.ls3e{letter-spacing:1.860000px;}
.ls1e{letter-spacing:1.920000px;}
.ls28{letter-spacing:1.980000px;}
.ls80{letter-spacing:2.016000px;}
.ls50{letter-spacing:2.040000px;}
.ls34{letter-spacing:2.100000px;}
.ls2b{letter-spacing:2.160000px;}
.ls72{letter-spacing:2.208000px;}
.ls4b{letter-spacing:2.220000px;}
.ls71{letter-spacing:2.256000px;}
.ls1b{letter-spacing:2.280000px;}
.ls6c{letter-spacing:2.304000px;}
.ls11{letter-spacing:2.340000px;}
.ls7d{letter-spacing:2.352000px;}
.ls9{letter-spacing:2.400000px;}
.ls5a{letter-spacing:2.460000px;}
.ls92{letter-spacing:2.496000px;}
.ls37{letter-spacing:2.520000px;}
.ls6b{letter-spacing:2.544000px;}
.ls41{letter-spacing:2.580000px;}
.ls13{letter-spacing:2.640000px;}
.ls43{letter-spacing:2.700000px;}
.ls5e{letter-spacing:2.760000px;}
.ls8f{letter-spacing:2.784000px;}
.ls47{letter-spacing:2.820000px;}
.ls70{letter-spacing:2.832000px;}
.ls33{letter-spacing:2.880000px;}
.ls6{letter-spacing:2.940000px;}
.ls1c{letter-spacing:3.000000px;}
.ls7e{letter-spacing:3.024000px;}
.ls30{letter-spacing:3.060000px;}
.ls84{letter-spacing:3.072000px;}
.ls2c{letter-spacing:3.120000px;}
.ls3f{letter-spacing:3.180000px;}
.ls44{letter-spacing:3.240000px;}
.ls27{letter-spacing:3.300000px;}
.ls73{letter-spacing:3.312000px;}
.ls55{letter-spacing:3.360000px;}
.ls35{letter-spacing:3.420000px;}
.ls93{letter-spacing:3.456000px;}
.lsc{letter-spacing:3.600000px;}
.lsb{letter-spacing:3.660000px;}
.ls62{letter-spacing:3.720000px;}
.ls61{letter-spacing:4.020000px;}
.ls2d{letter-spacing:4.200000px;}
.ls76{letter-spacing:4.224000px;}
.ls90{letter-spacing:4.416000px;}
.ls42{letter-spacing:4.440000px;}
.ls45{letter-spacing:4.560000px;}
.ls4a{letter-spacing:4.860000px;}
.ls95{letter-spacing:4.920000px;}
.ls69{letter-spacing:5.040000px;}
.ls2a{letter-spacing:5.160000px;}
.ls19{letter-spacing:5.280000px;}
.ls60{letter-spacing:5.400000px;}
.ls5c{letter-spacing:5.520000px;}
.ls5b{letter-spacing:6.180000px;}
.ls5f{letter-spacing:6.240000px;}
.ls59{letter-spacing:6.660000px;}
.ls31{letter-spacing:6.720000px;}
.ls49{letter-spacing:6.840000px;}
.ls74{letter-spacing:7.584000px;}
.ls3{letter-spacing:7.860000px;}
.ls4d{letter-spacing:8.400000px;}
.ls2e{letter-spacing:9.180000px;}
.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;}
}
.ws91{word-spacing:-19.584000px;}
.ws3e{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.660000px;}
.ws7{word-spacing:-18.600000px;}
.ws3d{word-spacing:-18.180000px;}
.ws62{word-spacing:-17.880000px;}
.wsb0{word-spacing:-17.640000px;}
.ws5f{word-spacing:-17.460000px;}
.ws3{word-spacing:-17.400000px;}
.ws75{word-spacing:-17.340000px;}
.ws78{word-spacing:-17.100000px;}
.ws1d{word-spacing:-16.920000px;}
.ws5e{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.ws61{word-spacing:-16.560000px;}
.ws1e{word-spacing:-16.500000px;}
.ws5{word-spacing:-16.440000px;}
.wsac{word-spacing:-16.416000px;}
.ws3c{word-spacing:-16.320000px;}
.ws4{word-spacing:-16.260000px;}
.ws22{word-spacing:-16.200000px;}
.ws9{word-spacing:-16.080000px;}
.ws44{word-spacing:-15.900000px;}
.ws60{word-spacing:-15.780000px;}
.ws1f{word-spacing:-15.540000px;}
.ws21{word-spacing:-15.480000px;}
.ws71{word-spacing:-15.420000px;}
.ws74{word-spacing:-15.360000px;}
.ws90{word-spacing:-15.312000px;}
.ws72{word-spacing:-15.300000px;}
.ws20{word-spacing:-15.240000px;}
.ws70{word-spacing:-15.180000px;}
.ws63{word-spacing:-15.120000px;}
.ws97{word-spacing:-15.072000px;}
.ws76{word-spacing:-15.060000px;}
.ws6{word-spacing:-15.000000px;}
.ws43{word-spacing:-14.940000px;}
.wsaf{word-spacing:-14.820000px;}
.ws98{word-spacing:-14.544000px;}
.ws8d{word-spacing:-14.304000px;}
.ws8f{word-spacing:-13.920000px;}
.wsae{word-spacing:-13.536000px;}
.wsa{word-spacing:-13.344000px;}
.ws94{word-spacing:-13.152000px;}
.wsad{word-spacing:-12.912000px;}
.ws9a{word-spacing:-12.768000px;}
.ws92{word-spacing:-12.720000px;}
.ws95{word-spacing:-12.576000px;}
.ws2{word-spacing:-12.510000px;}
.ws8e{word-spacing:-12.336000px;}
.ws96{word-spacing:-12.288000px;}
.ws9b{word-spacing:-12.192000px;}
.ws93{word-spacing:-12.144000px;}
.wsab{word-spacing:-12.096000px;}
.ws6d{word-spacing:-12.000000px;}
.ws99{word-spacing:-11.952000px;}
.ws0{word-spacing:-10.508400px;}
.ws73{word-spacing:-7.620000px;}
.wsa1{word-spacing:-7.584000px;}
.ws77{word-spacing:-7.260000px;}
.ws17{word-spacing:-3.660000px;}
.ws53{word-spacing:-3.480000px;}
.wsc{word-spacing:-2.886000px;}
.ws79{word-spacing:-2.760000px;}
.ws64{word-spacing:-2.520000px;}
.ws13{word-spacing:-2.400000px;}
.ws30{word-spacing:-2.340000px;}
.ws9d{word-spacing:-2.304000px;}
.ws2f{word-spacing:-2.220000px;}
.wsa0{word-spacing:-2.208000px;}
.ws7a{word-spacing:-1.920000px;}
.ws35{word-spacing:-1.620000px;}
.ws82{word-spacing:-1.560000px;}
.ws15{word-spacing:-1.440000px;}
.ws14{word-spacing:-1.260000px;}
.ws37{word-spacing:-1.140000px;}
.wse{word-spacing:-1.134000px;}
.wsb4{word-spacing:-0.960000px;}
.ws25{word-spacing:-0.900000px;}
.wsb3{word-spacing:-0.864000px;}
.ws4e{word-spacing:-0.840000px;}
.ws66{word-spacing:-0.780000px;}
.wsa5{word-spacing:-0.768000px;}
.ws85{word-spacing:-0.720000px;}
.ws7e{word-spacing:-0.660000px;}
.wsa9{word-spacing:-0.576000px;}
.ws2a{word-spacing:-0.480000px;}
.ws7f{word-spacing:-0.360000px;}
.ws9e{word-spacing:-0.336000px;}
.ws4f{word-spacing:-0.300000px;}
.wsaa{word-spacing:-0.288000px;}
.ws29{word-spacing:-0.240000px;}
.wsa2{word-spacing:-0.192000px;}
.wsa7{word-spacing:-0.144000px;}
.ws1b{word-spacing:-0.120000px;}
.wsb5{word-spacing:-0.096000px;}
.ws2c{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws27{word-spacing:0.060000px;}
.ws4a{word-spacing:0.120000px;}
.ws9f{word-spacing:0.144000px;}
.ws6e{word-spacing:0.192000px;}
.ws19{word-spacing:0.240000px;}
.wsd{word-spacing:0.253200px;}
.ws39{word-spacing:0.300000px;}
.ws6b{word-spacing:0.420000px;}
.ws1c{word-spacing:0.480000px;}
.ws2d{word-spacing:0.660000px;}
.ws47{word-spacing:0.720000px;}
.ws49{word-spacing:0.840000px;}
.wsa3{word-spacing:0.912000px;}
.ws69{word-spacing:0.960000px;}
.ws24{word-spacing:1.020000px;}
.ws31{word-spacing:1.140000px;}
.ws6f{word-spacing:1.152000px;}
.ws4c{word-spacing:1.200000px;}
.ws7c{word-spacing:1.260000px;}
.wsb6{word-spacing:1.296000px;}
.ws40{word-spacing:1.380000px;}
.wsb8{word-spacing:1.392000px;}
.wsb1{word-spacing:1.488000px;}
.ws81{word-spacing:1.500000px;}
.ws38{word-spacing:1.560000px;}
.ws23{word-spacing:1.620000px;}
.ws87{word-spacing:1.680000px;}
.ws6c{word-spacing:1.728000px;}
.ws88{word-spacing:1.740000px;}
.ws46{word-spacing:1.800000px;}
.ws42{word-spacing:1.824000px;}
.ws4d{word-spacing:1.860000px;}
.ws4b{word-spacing:1.980000px;}
.ws6a{word-spacing:2.040000px;}
.ws8b{word-spacing:2.160000px;}
.ws56{word-spacing:2.220000px;}
.wsa6{word-spacing:2.256000px;}
.ws57{word-spacing:2.340000px;}
.ws48{word-spacing:2.400000px;}
.ws89{word-spacing:2.520000px;}
.ws36{word-spacing:2.580000px;}
.ws5d{word-spacing:2.736000px;}
.ws26{word-spacing:2.760000px;}
.wsb2{word-spacing:2.784000px;}
.ws28{word-spacing:2.820000px;}
.wsa4{word-spacing:2.832000px;}
.ws5b{word-spacing:2.880000px;}
.ws7b{word-spacing:2.940000px;}
.wsa8{word-spacing:2.976000px;}
.ws84{word-spacing:3.000000px;}
.ws2e{word-spacing:3.120000px;}
.ws80{word-spacing:3.180000px;}
.ws3f{word-spacing:3.240000px;}
.ws5c{word-spacing:3.312000px;}
.ws12{word-spacing:3.360000px;}
.ws51{word-spacing:3.420000px;}
.wsb7{word-spacing:3.456000px;}
.ws2b{word-spacing:3.540000px;}
.wsb9{word-spacing:3.552000px;}
.ws52{word-spacing:3.600000px;}
.ws3a{word-spacing:3.720000px;}
.ws18{word-spacing:3.840000px;}
.ws5a{word-spacing:3.936000px;}
.ws67{word-spacing:3.960000px;}
.ws59{word-spacing:3.984000px;}
.ws1a{word-spacing:4.020000px;}
.ws32{word-spacing:4.140000px;}
.ws11{word-spacing:4.200000px;}
.ws33{word-spacing:4.320000px;}
.ws54{word-spacing:4.380000px;}
.ws3b{word-spacing:4.440000px;}
.ws16{word-spacing:4.500000px;}
.ws8a{word-spacing:4.680000px;}
.ws50{word-spacing:4.740000px;}
.ws45{word-spacing:4.800000px;}
.ws41{word-spacing:4.860000px;}
.wsf{word-spacing:4.920000px;}
.ws10{word-spacing:4.980000px;}
.ws83{word-spacing:5.040000px;}
.ws68{word-spacing:5.400000px;}
.ws8c{word-spacing:5.460000px;}
.ws9c{word-spacing:5.520000px;}
.ws34{word-spacing:6.360000px;}
.ws65{word-spacing:6.480000px;}
.ws7d{word-spacing:6.660000px;}
.ws86{word-spacing:6.960000px;}
.ws55{word-spacing:7.320000px;}
.ws58{word-spacing:7.500000px;}
._b{margin-left:-2898.180600px;}
._c{margin-left:-2874.372600px;}
._2{margin-left:-7.849200px;}
._6{margin-left:-6.615000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.515400px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.012800px;}
._5{width:1.134000px;}
._a{width:3.096000px;}
._9{width:4.235400px;}
._8{width:6.060000px;}
._7{width:8.100000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y117{bottom:80.121900px;}
.y158{bottom:80.263500px;}
.yd0{bottom:83.023350px;}
.yb7{bottom:83.554950px;}
.yf0{bottom:83.635350px;}
.ycc{bottom:83.767500px;}
.ya2{bottom:83.770350px;}
.ya0{bottom:83.885550px;}
.y92{bottom:84.203850px;}
.y19{bottom:88.026750px;}
.y116{bottom:95.121900px;}
.y157{bottom:95.263500px;}
.ycf{bottom:98.767350px;}
.yb6{bottom:99.298950px;}
.ycb{bottom:99.511500px;}
.y9f{bottom:99.629550px;}
.yef{bottom:101.230350px;}
.ya1{bottom:101.770350px;}
.y91{bottom:102.203850px;}
.y18{bottom:103.023000px;}
.ybd{bottom:109.775700px;}
.y115{bottom:110.121900px;}
.y156{bottom:110.263500px;}
.yce{bottom:114.511350px;}
.yb5{bottom:115.042950px;}
.yca{bottom:115.255500px;}
.y62{bottom:119.770350px;}
.y90{bottom:120.203850px;}
.y114{bottom:125.121900px;}
.y155{bottom:125.263500px;}
.ybc{bottom:125.519700px;}
.yee{bottom:137.635350px;}
.y61{bottom:137.770350px;}
.y8f{bottom:138.203850px;}
.y113{bottom:140.121900px;}
.y154{bottom:140.263500px;}
.ybb{bottom:141.263700px;}
.y112{bottom:155.121900px;}
.y153{bottom:155.263500px;}
.yed{bottom:155.635350px;}
.y60{bottom:155.770350px;}
.y8e{bottom:156.203850px;}
.yba{bottom:157.007700px;}
.y29{bottom:166.508850px;}
.y111{bottom:170.121900px;}
.y152{bottom:170.263500px;}
.yb9{bottom:172.751700px;}
.yec{bottom:173.635350px;}
.y5f{bottom:173.770350px;}
.y8d{bottom:174.203850px;}
.y28{bottom:184.508850px;}
.y110{bottom:185.121900px;}
.y151{bottom:185.263500px;}
.yb8{bottom:188.495700px;}
.yeb{bottom:191.635350px;}
.y5e{bottom:191.770350px;}
.y8c{bottom:192.203850px;}
.y10f{bottom:200.121900px;}
.y150{bottom:200.263500px;}
.y27{bottom:202.508850px;}
.yea{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.y8b{bottom:210.203850px;}
.y10e{bottom:215.121900px;}
.y14f{bottom:215.263500px;}
.y26{bottom:220.508850px;}
.ye9{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.y8a{bottom:228.203850px;}
.y10d{bottom:230.121900px;}
.y14e{bottom:230.263500px;}
.y25{bottom:238.508850px;}
.y10c{bottom:245.121900px;}
.y14d{bottom:245.263500px;}
.ye8{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.y89{bottom:246.203850px;}
.y24{bottom:256.508850px;}
.y10b{bottom:260.121900px;}
.y14c{bottom:260.263500px;}
.ye7{bottom:263.635350px;}
.y5a{bottom:263.770350px;}
.y88{bottom:264.203850px;}
.y23{bottom:274.508850px;}
.y10a{bottom:275.121900px;}
.y14b{bottom:275.263500px;}
.ye6{bottom:281.635350px;}
.y59{bottom:281.770350px;}
.y87{bottom:282.203850px;}
.y109{bottom:290.121900px;}
.y14a{bottom:290.263500px;}
.y22{bottom:292.508850px;}
.ye5{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.y108{bottom:305.121900px;}
.y149{bottom:305.263500px;}
.y21{bottom:310.508850px;}
.ye4{bottom:317.230350px;}
.y57{bottom:317.770350px;}
.y86{bottom:317.798850px;}
.y107{bottom:320.121900px;}
.y148{bottom:320.263500px;}
.y20{bottom:328.508850px;}
.y106{bottom:335.121900px;}
.y147{bottom:335.263500px;}
.y56{bottom:335.770350px;}
.y1f{bottom:346.508850px;}
.y105{bottom:350.121900px;}
.y146{bottom:350.263500px;}
.ye3{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.y85{bottom:354.053850px;}
.y1e{bottom:364.508850px;}
.y104{bottom:365.121900px;}
.y145{bottom:365.263500px;}
.ye2{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.y84{bottom:372.053850px;}
.y103{bottom:380.121900px;}
.y144{bottom:380.263500px;}
.y1d{bottom:382.508850px;}
.ye1{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.y83{bottom:390.053850px;}
.y102{bottom:395.121900px;}
.y143{bottom:395.263500px;}
.y1c{bottom:400.508850px;}
.ye0{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y82{bottom:408.053850px;}
.y101{bottom:410.121900px;}
.y142{bottom:410.263500px;}
.y1b{bottom:418.508850px;}
.y100{bottom:425.121900px;}
.y141{bottom:425.263500px;}
.ydf{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.y81{bottom:426.053850px;}
.y2b{bottom:436.508850px;}
.yff{bottom:440.121900px;}
.y140{bottom:440.263500px;}
.yde{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.y80{bottom:444.053850px;}
.y1a{bottom:454.103850px;}
.y2a{bottom:454.508850px;}
.yfe{bottom:455.121900px;}
.y13f{bottom:455.263500px;}
.ydd{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y7f{bottom:462.053850px;}
.yfd{bottom:470.121900px;}
.y13e{bottom:470.263500px;}
.ydc{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y7e{bottom:480.053850px;}
.yfc{bottom:485.121900px;}
.y13d{bottom:485.263500px;}
.ydb{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y7d{bottom:498.053850px;}
.yfb{bottom:500.121900px;}
.y13c{bottom:500.263500px;}
.yfa{bottom:515.121900px;}
.y13b{bottom:515.263500px;}
.yda{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y7c{bottom:516.053850px;}
.yf9{bottom:530.121900px;}
.y13a{bottom:530.263500px;}
.yd9{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y7b{bottom:534.053850px;}
.y17{bottom:534.514200px;}
.yf8{bottom:545.121900px;}
.y139{bottom:545.263500px;}
.yd8{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y7a{bottom:552.053850px;}
.yf7{bottom:560.121900px;}
.y138{bottom:560.263500px;}
.y16{bottom:561.859200px;}
.yd7{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y79{bottom:570.053850px;}
.yf6{bottom:575.121900px;}
.y137{bottom:575.263500px;}
.y9e{bottom:577.112100px;}
.y15{bottom:579.859200px;}
.yd6{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y78{bottom:588.053850px;}
.yf5{bottom:590.121900px;}
.y136{bottom:590.263500px;}
.y9d{bottom:595.112100px;}
.y14{bottom:597.859200px;}
.y135{bottom:605.263500px;}
.yd5{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y77{bottom:606.053850px;}
.y9c{bottom:613.112100px;}
.y13{bottom:615.859200px;}
.y134{bottom:620.263500px;}
.yf4{bottom:623.230350px;}
.yd4{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y76{bottom:624.053850px;}
.y12{bottom:633.859200px;}
.y133{bottom:635.263500px;}
.yd3{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.y75{bottom:642.053850px;}
.y9b{bottom:647.952750px;}
.y174{bottom:650.263500px;}
.y132{bottom:650.265900px;}
.y11{bottom:651.859200px;}
.y44{bottom:659.770350px;}
.y74{bottom:660.055350px;}
.y9a{bottom:663.558750px;}
.y173{bottom:665.263500px;}
.y131{bottom:665.265900px;}
.y10{bottom:669.859200px;}
.yd2{bottom:677.230350px;}
.yc9{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.y99{bottom:677.920350px;}
.y172{bottom:680.263500px;}
.y130{bottom:680.265900px;}
.yf{bottom:687.859200px;}
.y171{bottom:695.263500px;}
.y12f{bottom:695.265900px;}
.yf3{bottom:695.365350px;}
.y98{bottom:695.515350px;}
.yc8{bottom:695.635350px;}
.y73{bottom:695.650350px;}
.y42{bottom:695.770350px;}
.ye{bottom:705.859200px;}
.y170{bottom:710.263500px;}
.y12e{bottom:710.265900px;}
.yc7{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.yd{bottom:723.859200px;}
.y16f{bottom:725.263500px;}
.y12d{bottom:725.265900px;}
.y97{bottom:731.365350px;}
.yc6{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.y72{bottom:731.905350px;}
.y16e{bottom:740.263500px;}
.y12c{bottom:740.265900px;}
.y96{bottom:749.365350px;}
.yc5{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.y71{bottom:749.905350px;}
.y16d{bottom:755.263500px;}
.y12b{bottom:755.265900px;}
.y95{bottom:767.365350px;}
.yc4{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.y70{bottom:767.905350px;}
.yc{bottom:769.017450px;}
.y16c{bottom:770.263500px;}
.y12a{bottom:770.265900px;}
.yb{bottom:781.468200px;}
.y16b{bottom:785.263500px;}
.y129{bottom:785.265900px;}
.yc3{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.y6f{bottom:785.905350px;}
.y16a{bottom:800.263500px;}
.y128{bottom:800.265900px;}
.y94{bottom:803.230350px;}
.yc2{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.y6e{bottom:803.905350px;}
.y169{bottom:815.263500px;}
.y127{bottom:815.265900px;}
.ya{bottom:817.044300px;}
.yc1{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.y17e{bottom:821.772600px;}
.y6d{bottom:821.905350px;}
.y9{bottom:826.683600px;}
.y168{bottom:830.263500px;}
.y126{bottom:830.265900px;}
.yc0{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y17d{bottom:839.772600px;}
.y6c{bottom:839.905350px;}
.y8{bottom:840.183600px;}
.y167{bottom:845.263500px;}
.y125{bottom:845.265900px;}
.y7{bottom:857.544300px;}
.y39{bottom:857.770350px;}
.y17c{bottom:857.772600px;}
.yb4{bottom:857.785350px;}
.y6b{bottom:857.905350px;}
.ya9{bottom:857.920350px;}
.y166{bottom:860.263500px;}
.y124{bottom:860.265900px;}
.ybf{bottom:875.230350px;}
.y165{bottom:875.263500px;}
.y123{bottom:875.265900px;}
.y38{bottom:875.770350px;}
.yb3{bottom:875.785350px;}
.y6a{bottom:875.905350px;}
.ya8{bottom:875.920350px;}
.y6{bottom:887.830950px;}
.y164{bottom:890.263500px;}
.y122{bottom:890.265900px;}
.y37{bottom:893.770350px;}
.y17b{bottom:893.772600px;}
.yb2{bottom:893.785350px;}
.y69{bottom:893.905350px;}
.ya7{bottom:893.920350px;}
.y163{bottom:905.263500px;}
.y121{bottom:905.265900px;}
.yf2{bottom:911.365350px;}
.y36{bottom:911.770350px;}
.y17a{bottom:911.772600px;}
.yb1{bottom:911.785350px;}
.y68{bottom:911.905350px;}
.ya6{bottom:911.920350px;}
.y162{bottom:920.263500px;}
.y120{bottom:920.265900px;}
.y35{bottom:929.770350px;}
.y179{bottom:929.772600px;}
.yb0{bottom:929.785350px;}
.y67{bottom:929.905350px;}
.ya5{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y161{bottom:935.263500px;}
.y11f{bottom:935.265900px;}
.y34{bottom:947.770350px;}
.yaf{bottom:947.785350px;}
.y66{bottom:947.905350px;}
.ya4{bottom:947.920350px;}
.y160{bottom:950.263500px;}
.y11e{bottom:950.265900px;}
.y15f{bottom:965.263500px;}
.y11d{bottom:965.265900px;}
.yf1{bottom:965.365350px;}
.y33{bottom:965.770350px;}
.y178{bottom:965.772600px;}
.yae{bottom:965.785350px;}
.y65{bottom:965.905350px;}
.y4{bottom:970.465200px;}
.y15e{bottom:980.263500px;}
.y11c{bottom:980.265900px;}
.ya3{bottom:983.515350px;}
.y32{bottom:983.770350px;}
.y177{bottom:983.772600px;}
.yad{bottom:983.785350px;}
.y15d{bottom:995.263500px;}
.y11b{bottom:995.265900px;}
.y64{bottom:1001.500350px;}
.y31{bottom:1001.770350px;}
.y176{bottom:1001.772600px;}
.yac{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y15c{bottom:1010.263500px;}
.y11a{bottom:1010.265900px;}
.y30{bottom:1019.770350px;}
.yab{bottom:1019.785350px;}
.y15b{bottom:1025.263500px;}
.y119{bottom:1025.265900px;}
.y63{bottom:1037.365350px;}
.y175{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.yaa{bottom:1037.785350px;}
.y15a{bottom:1040.263500px;}
.y118{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y93{bottom:1132.418700px;}
.ybe{bottom:1132.421700px;}
.y159{bottom:1132.423500px;}
.yd1{bottom:1132.435350px;}
.ycd{bottom:1132.435500px;}
.y2d{bottom:1136.089500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h12{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h11{height:37.520508px;}
.he{height:41.689453px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.hc{height:43.718034px;}
.ha{height:43.740234px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:70.582650px;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x20{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x23{left:123.307050px;}
.x3{left:125.433000px;}
.x6{left:131.816400px;}
.x1f{left:194.270400px;}
.x5{left:212.876400px;}
.x9{left:455.041500px;}
.xd{left:457.085400px;}
.x11{left:478.375350px;}
.x7{left:480.461400px;}
.x21{left:482.591400px;}
.xe{left:491.105400px;}
.x18{left:494.132550px;}
.x15{left:506.485350px;}
.x1a{left:512.362200px;}
.xc{left:525.275400px;}
.x16{left:542.080350px;}
.x14{left:566.830350px;}
.x13{left:572.230350px;}
.x1e{left:591.928650px;}
.x1d{left:600.700350px;}
.x19{left:602.362050px;}
.x12{left:612.940350px;}
.x17{left:614.470350px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x22{left:722.627550px;}
.xf{left:729.282150px;}
.x24{left:744.758850px;}
.x1b{left:750.541950px;}
@media print{
.v2{vertical-align:-13.726933pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:19.217067pt;}
.ls68{letter-spacing:-6.880000pt;}
.ls57{letter-spacing:-6.666667pt;}
.ls64{letter-spacing:-6.560000pt;}
.ls54{letter-spacing:-6.506667pt;}
.ls66{letter-spacing:-6.186667pt;}
.ls63{letter-spacing:-5.920000pt;}
.ls5d{letter-spacing:-5.760000pt;}
.ls3c{letter-spacing:-5.653333pt;}
.ls53{letter-spacing:-4.266667pt;}
.ls65{letter-spacing:-1.333333pt;}
.ls3d{letter-spacing:-0.906667pt;}
.ls16{letter-spacing:-0.693333pt;}
.ls3a{letter-spacing:-0.426667pt;}
.ls51{letter-spacing:-0.373333pt;}
.ls52{letter-spacing:-0.320000pt;}
.ls3b{letter-spacing:-0.266667pt;}
.ls17{letter-spacing:-0.225067pt;}
.ls39{letter-spacing:-0.213333pt;}
.ls67{letter-spacing:-0.160000pt;}
.ls8a{letter-spacing:-0.128000pt;}
.ls4f{letter-spacing:-0.106667pt;}
.ls89{letter-spacing:-0.085333pt;}
.ls38{letter-spacing:-0.053333pt;}
.ls8b{letter-spacing:-0.042667pt;}
.ls18{letter-spacing:-0.040000pt;}
.ls15{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls88{letter-spacing:0.042667pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls8c{letter-spacing:0.085333pt;}
.lse{letter-spacing:0.106667pt;}
.ls7f{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls75{letter-spacing:0.170667pt;}
.ls20{letter-spacing:0.213333pt;}
.ls83{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.266667pt;}
.ls56{letter-spacing:0.298667pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.341333pt;}
.ls46{letter-spacing:0.373333pt;}
.ls58{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.480000pt;}
.ls82{letter-spacing:0.512000pt;}
.ls4c{letter-spacing:0.533333pt;}
.ls85{letter-spacing:0.554667pt;}
.ls48{letter-spacing:0.586667pt;}
.ls94{letter-spacing:0.597333pt;}
.ls36{letter-spacing:0.640000pt;}
.ls7a{letter-spacing:0.682667pt;}
.ls21{letter-spacing:0.693333pt;}
.ls77{letter-spacing:0.725333pt;}
.ls12{letter-spacing:0.746667pt;}
.ls23{letter-spacing:0.800000pt;}
.ls91{letter-spacing:0.810667pt;}
.ls29{letter-spacing:0.853333pt;}
.ls86{letter-spacing:0.896000pt;}
.ls22{letter-spacing:0.906667pt;}
.ls7c{letter-spacing:0.938667pt;}
.lsd{letter-spacing:0.960000pt;}
.ls7b{letter-spacing:0.981333pt;}
.ls32{letter-spacing:1.013333pt;}
.ls81{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls6f{letter-spacing:1.109333pt;}
.ls8{letter-spacing:1.120000pt;}
.ls26{letter-spacing:1.173333pt;}
.ls79{letter-spacing:1.194667pt;}
.ls4{letter-spacing:1.226667pt;}
.ls87{letter-spacing:1.237333pt;}
.lsa{letter-spacing:1.280000pt;}
.ls8e{letter-spacing:1.322667pt;}
.ls24{letter-spacing:1.333333pt;}
.ls6a{letter-spacing:1.365333pt;}
.ls2f{letter-spacing:1.386667pt;}
.ls8d{letter-spacing:1.408000pt;}
.ls4e{letter-spacing:1.440000pt;}
.ls6e{letter-spacing:1.450667pt;}
.ls5{letter-spacing:1.493333pt;}
.ls78{letter-spacing:1.536000pt;}
.ls1d{letter-spacing:1.546667pt;}
.ls40{letter-spacing:1.600000pt;}
.ls3e{letter-spacing:1.653333pt;}
.ls1e{letter-spacing:1.706667pt;}
.ls28{letter-spacing:1.760000pt;}
.ls80{letter-spacing:1.792000pt;}
.ls50{letter-spacing:1.813333pt;}
.ls34{letter-spacing:1.866667pt;}
.ls2b{letter-spacing:1.920000pt;}
.ls72{letter-spacing:1.962667pt;}
.ls4b{letter-spacing:1.973333pt;}
.ls71{letter-spacing:2.005333pt;}
.ls1b{letter-spacing:2.026667pt;}
.ls6c{letter-spacing:2.048000pt;}
.ls11{letter-spacing:2.080000pt;}
.ls7d{letter-spacing:2.090667pt;}
.ls9{letter-spacing:2.133333pt;}
.ls5a{letter-spacing:2.186667pt;}
.ls92{letter-spacing:2.218667pt;}
.ls37{letter-spacing:2.240000pt;}
.ls6b{letter-spacing:2.261333pt;}
.ls41{letter-spacing:2.293333pt;}
.ls13{letter-spacing:2.346667pt;}
.ls43{letter-spacing:2.400000pt;}
.ls5e{letter-spacing:2.453333pt;}
.ls8f{letter-spacing:2.474667pt;}
.ls47{letter-spacing:2.506667pt;}
.ls70{letter-spacing:2.517333pt;}
.ls33{letter-spacing:2.560000pt;}
.ls6{letter-spacing:2.613333pt;}
.ls1c{letter-spacing:2.666667pt;}
.ls7e{letter-spacing:2.688000pt;}
.ls30{letter-spacing:2.720000pt;}
.ls84{letter-spacing:2.730667pt;}
.ls2c{letter-spacing:2.773333pt;}
.ls3f{letter-spacing:2.826667pt;}
.ls44{letter-spacing:2.880000pt;}
.ls27{letter-spacing:2.933333pt;}
.ls73{letter-spacing:2.944000pt;}
.ls55{letter-spacing:2.986667pt;}
.ls35{letter-spacing:3.040000pt;}
.ls93{letter-spacing:3.072000pt;}
.lsc{letter-spacing:3.200000pt;}
.lsb{letter-spacing:3.253333pt;}
.ls62{letter-spacing:3.306667pt;}
.ls61{letter-spacing:3.573333pt;}
.ls2d{letter-spacing:3.733333pt;}
.ls76{letter-spacing:3.754667pt;}
.ls90{letter-spacing:3.925333pt;}
.ls42{letter-spacing:3.946667pt;}
.ls45{letter-spacing:4.053333pt;}
.ls4a{letter-spacing:4.320000pt;}
.ls95{letter-spacing:4.373333pt;}
.ls69{letter-spacing:4.480000pt;}
.ls2a{letter-spacing:4.586667pt;}
.ls19{letter-spacing:4.693333pt;}
.ls60{letter-spacing:4.800000pt;}
.ls5c{letter-spacing:4.906667pt;}
.ls5b{letter-spacing:5.493333pt;}
.ls5f{letter-spacing:5.546667pt;}
.ls59{letter-spacing:5.920000pt;}
.ls31{letter-spacing:5.973333pt;}
.ls49{letter-spacing:6.080000pt;}
.ls74{letter-spacing:6.741333pt;}
.ls3{letter-spacing:6.986667pt;}
.ls4d{letter-spacing:7.466667pt;}
.ls2e{letter-spacing:8.160000pt;}
.ws91{word-spacing:-17.408000pt;}
.ws3e{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.586667pt;}
.ws7{word-spacing:-16.533333pt;}
.ws3d{word-spacing:-16.160000pt;}
.ws62{word-spacing:-15.893333pt;}
.wsb0{word-spacing:-15.680000pt;}
.ws5f{word-spacing:-15.520000pt;}
.ws3{word-spacing:-15.466667pt;}
.ws75{word-spacing:-15.413333pt;}
.ws78{word-spacing:-15.200000pt;}
.ws1d{word-spacing:-15.040000pt;}
.ws5e{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws61{word-spacing:-14.720000pt;}
.ws1e{word-spacing:-14.666667pt;}
.ws5{word-spacing:-14.613333pt;}
.wsac{word-spacing:-14.592000pt;}
.ws3c{word-spacing:-14.506667pt;}
.ws4{word-spacing:-14.453333pt;}
.ws22{word-spacing:-14.400000pt;}
.ws9{word-spacing:-14.293333pt;}
.ws44{word-spacing:-14.133333pt;}
.ws60{word-spacing:-14.026667pt;}
.ws1f{word-spacing:-13.813333pt;}
.ws21{word-spacing:-13.760000pt;}
.ws71{word-spacing:-13.706667pt;}
.ws74{word-spacing:-13.653333pt;}
.ws90{word-spacing:-13.610667pt;}
.ws72{word-spacing:-13.600000pt;}
.ws20{word-spacing:-13.546667pt;}
.ws70{word-spacing:-13.493333pt;}
.ws63{word-spacing:-13.440000pt;}
.ws97{word-spacing:-13.397333pt;}
.ws76{word-spacing:-13.386667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws43{word-spacing:-13.280000pt;}
.wsaf{word-spacing:-13.173333pt;}
.ws98{word-spacing:-12.928000pt;}
.ws8d{word-spacing:-12.714667pt;}
.ws8f{word-spacing:-12.373333pt;}
.wsae{word-spacing:-12.032000pt;}
.wsa{word-spacing:-11.861333pt;}
.ws94{word-spacing:-11.690667pt;}
.wsad{word-spacing:-11.477333pt;}
.ws9a{word-spacing:-11.349333pt;}
.ws92{word-spacing:-11.306667pt;}
.ws95{word-spacing:-11.178667pt;}
.ws2{word-spacing:-11.120000pt;}
.ws8e{word-spacing:-10.965333pt;}
.ws96{word-spacing:-10.922667pt;}
.ws9b{word-spacing:-10.837333pt;}
.ws93{word-spacing:-10.794667pt;}
.wsab{word-spacing:-10.752000pt;}
.ws6d{word-spacing:-10.666667pt;}
.ws99{word-spacing:-10.624000pt;}
.ws0{word-spacing:-9.340800pt;}
.ws73{word-spacing:-6.773333pt;}
.wsa1{word-spacing:-6.741333pt;}
.ws77{word-spacing:-6.453333pt;}
.ws17{word-spacing:-3.253333pt;}
.ws53{word-spacing:-3.093333pt;}
.wsc{word-spacing:-2.565333pt;}
.ws79{word-spacing:-2.453333pt;}
.ws64{word-spacing:-2.240000pt;}
.ws13{word-spacing:-2.133333pt;}
.ws30{word-spacing:-2.080000pt;}
.ws9d{word-spacing:-2.048000pt;}
.ws2f{word-spacing:-1.973333pt;}
.wsa0{word-spacing:-1.962667pt;}
.ws7a{word-spacing:-1.706667pt;}
.ws35{word-spacing:-1.440000pt;}
.ws82{word-spacing:-1.386667pt;}
.ws15{word-spacing:-1.280000pt;}
.ws14{word-spacing:-1.120000pt;}
.ws37{word-spacing:-1.013333pt;}
.wse{word-spacing:-1.008000pt;}
.wsb4{word-spacing:-0.853333pt;}
.ws25{word-spacing:-0.800000pt;}
.wsb3{word-spacing:-0.768000pt;}
.ws4e{word-spacing:-0.746667pt;}
.ws66{word-spacing:-0.693333pt;}
.wsa5{word-spacing:-0.682667pt;}
.ws85{word-spacing:-0.640000pt;}
.ws7e{word-spacing:-0.586667pt;}
.wsa9{word-spacing:-0.512000pt;}
.ws2a{word-spacing:-0.426667pt;}
.ws7f{word-spacing:-0.320000pt;}
.ws9e{word-spacing:-0.298667pt;}
.ws4f{word-spacing:-0.266667pt;}
.wsaa{word-spacing:-0.256000pt;}
.ws29{word-spacing:-0.213333pt;}
.wsa2{word-spacing:-0.170667pt;}
.wsa7{word-spacing:-0.128000pt;}
.ws1b{word-spacing:-0.106667pt;}
.wsb5{word-spacing:-0.085333pt;}
.ws2c{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws27{word-spacing:0.053333pt;}
.ws4a{word-spacing:0.106667pt;}
.ws9f{word-spacing:0.128000pt;}
.ws6e{word-spacing:0.170667pt;}
.ws19{word-spacing:0.213333pt;}
.wsd{word-spacing:0.225067pt;}
.ws39{word-spacing:0.266667pt;}
.ws6b{word-spacing:0.373333pt;}
.ws1c{word-spacing:0.426667pt;}
.ws2d{word-spacing:0.586667pt;}
.ws47{word-spacing:0.640000pt;}
.ws49{word-spacing:0.746667pt;}
.wsa3{word-spacing:0.810667pt;}
.ws69{word-spacing:0.853333pt;}
.ws24{word-spacing:0.906667pt;}
.ws31{word-spacing:1.013333pt;}
.ws6f{word-spacing:1.024000pt;}
.ws4c{word-spacing:1.066667pt;}
.ws7c{word-spacing:1.120000pt;}
.wsb6{word-spacing:1.152000pt;}
.ws40{word-spacing:1.226667pt;}
.wsb8{word-spacing:1.237333pt;}
.wsb1{word-spacing:1.322667pt;}
.ws81{word-spacing:1.333333pt;}
.ws38{word-spacing:1.386667pt;}
.ws23{word-spacing:1.440000pt;}
.ws87{word-spacing:1.493333pt;}
.ws6c{word-spacing:1.536000pt;}
.ws88{word-spacing:1.546667pt;}
.ws46{word-spacing:1.600000pt;}
.ws42{word-spacing:1.621333pt;}
.ws4d{word-spacing:1.653333pt;}
.ws4b{word-spacing:1.760000pt;}
.ws6a{word-spacing:1.813333pt;}
.ws8b{word-spacing:1.920000pt;}
.ws56{word-spacing:1.973333pt;}
.wsa6{word-spacing:2.005333pt;}
.ws57{word-spacing:2.080000pt;}
.ws48{word-spacing:2.133333pt;}
.ws89{word-spacing:2.240000pt;}
.ws36{word-spacing:2.293333pt;}
.ws5d{word-spacing:2.432000pt;}
.ws26{word-spacing:2.453333pt;}
.wsb2{word-spacing:2.474667pt;}
.ws28{word-spacing:2.506667pt;}
.wsa4{word-spacing:2.517333pt;}
.ws5b{word-spacing:2.560000pt;}
.ws7b{word-spacing:2.613333pt;}
.wsa8{word-spacing:2.645333pt;}
.ws84{word-spacing:2.666667pt;}
.ws2e{word-spacing:2.773333pt;}
.ws80{word-spacing:2.826667pt;}
.ws3f{word-spacing:2.880000pt;}
.ws5c{word-spacing:2.944000pt;}
.ws12{word-spacing:2.986667pt;}
.ws51{word-spacing:3.040000pt;}
.wsb7{word-spacing:3.072000pt;}
.ws2b{word-spacing:3.146667pt;}
.wsb9{word-spacing:3.157333pt;}
.ws52{word-spacing:3.200000pt;}
.ws3a{word-spacing:3.306667pt;}
.ws18{word-spacing:3.413333pt;}
.ws5a{word-spacing:3.498667pt;}
.ws67{word-spacing:3.520000pt;}
.ws59{word-spacing:3.541333pt;}
.ws1a{word-spacing:3.573333pt;}
.ws32{word-spacing:3.680000pt;}
.ws11{word-spacing:3.733333pt;}
.ws33{word-spacing:3.840000pt;}
.ws54{word-spacing:3.893333pt;}
.ws3b{word-spacing:3.946667pt;}
.ws16{word-spacing:4.000000pt;}
.ws8a{word-spacing:4.160000pt;}
.ws50{word-spacing:4.213333pt;}
.ws45{word-spacing:4.266667pt;}
.ws41{word-spacing:4.320000pt;}
.wsf{word-spacing:4.373333pt;}
.ws10{word-spacing:4.426667pt;}
.ws83{word-spacing:4.480000pt;}
.ws68{word-spacing:4.800000pt;}
.ws8c{word-spacing:4.853333pt;}
.ws9c{word-spacing:4.906667pt;}
.ws34{word-spacing:5.653333pt;}
.ws65{word-spacing:5.760000pt;}
.ws7d{word-spacing:5.920000pt;}
.ws86{word-spacing:6.186667pt;}
.ws55{word-spacing:6.506667pt;}
.ws58{word-spacing:6.666667pt;}
._b{margin-left:-2576.160533pt;}
._c{margin-left:-2554.997867pt;}
._2{margin-left:-6.977067pt;}
._6{margin-left:-5.880000pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.124800pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.900267pt;}
._5{width:1.008000pt;}
._a{width:2.752000pt;}
._9{width:3.764800pt;}
._8{width:5.386667pt;}
._7{width:7.200000pt;}
.fs5{font-size:24.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y117{bottom:71.219467pt;}
.y158{bottom:71.345333pt;}
.yd0{bottom:73.798533pt;}
.yb7{bottom:74.271067pt;}
.yf0{bottom:74.342533pt;}
.ycc{bottom:74.460000pt;}
.ya2{bottom:74.462533pt;}
.ya0{bottom:74.564933pt;}
.y92{bottom:74.847867pt;}
.y19{bottom:78.246000pt;}
.y116{bottom:84.552800pt;}
.y157{bottom:84.678667pt;}
.ycf{bottom:87.793200pt;}
.yb6{bottom:88.265733pt;}
.ycb{bottom:88.454667pt;}
.y9f{bottom:88.559600pt;}
.yef{bottom:89.982533pt;}
.ya1{bottom:90.462533pt;}
.y91{bottom:90.847867pt;}
.y18{bottom:91.576000pt;}
.ybd{bottom:97.578400pt;}
.y115{bottom:97.886133pt;}
.y156{bottom:98.012000pt;}
.yce{bottom:101.787867pt;}
.yb5{bottom:102.260400pt;}
.yca{bottom:102.449333pt;}
.y62{bottom:106.462533pt;}
.y90{bottom:106.847867pt;}
.y114{bottom:111.219467pt;}
.y155{bottom:111.345333pt;}
.ybc{bottom:111.573067pt;}
.yee{bottom:122.342533pt;}
.y61{bottom:122.462533pt;}
.y8f{bottom:122.847867pt;}
.y113{bottom:124.552800pt;}
.y154{bottom:124.678667pt;}
.ybb{bottom:125.567733pt;}
.y112{bottom:137.886133pt;}
.y153{bottom:138.012000pt;}
.yed{bottom:138.342533pt;}
.y60{bottom:138.462533pt;}
.y8e{bottom:138.847867pt;}
.yba{bottom:139.562400pt;}
.y29{bottom:148.007867pt;}
.y111{bottom:151.219467pt;}
.y152{bottom:151.345333pt;}
.yb9{bottom:153.557067pt;}
.yec{bottom:154.342533pt;}
.y5f{bottom:154.462533pt;}
.y8d{bottom:154.847867pt;}
.y28{bottom:164.007867pt;}
.y110{bottom:164.552800pt;}
.y151{bottom:164.678667pt;}
.yb8{bottom:167.551733pt;}
.yeb{bottom:170.342533pt;}
.y5e{bottom:170.462533pt;}
.y8c{bottom:170.847867pt;}
.y10f{bottom:177.886133pt;}
.y150{bottom:178.012000pt;}
.y27{bottom:180.007867pt;}
.yea{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.y8b{bottom:186.847867pt;}
.y10e{bottom:191.219467pt;}
.y14f{bottom:191.345333pt;}
.y26{bottom:196.007867pt;}
.ye9{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.y8a{bottom:202.847867pt;}
.y10d{bottom:204.552800pt;}
.y14e{bottom:204.678667pt;}
.y25{bottom:212.007867pt;}
.y10c{bottom:217.886133pt;}
.y14d{bottom:218.012000pt;}
.ye8{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.y89{bottom:218.847867pt;}
.y24{bottom:228.007867pt;}
.y10b{bottom:231.219467pt;}
.y14c{bottom:231.345333pt;}
.ye7{bottom:234.342533pt;}
.y5a{bottom:234.462533pt;}
.y88{bottom:234.847867pt;}
.y23{bottom:244.007867pt;}
.y10a{bottom:244.552800pt;}
.y14b{bottom:244.678667pt;}
.ye6{bottom:250.342533pt;}
.y59{bottom:250.462533pt;}
.y87{bottom:250.847867pt;}
.y109{bottom:257.886133pt;}
.y14a{bottom:258.012000pt;}
.y22{bottom:260.007867pt;}
.ye5{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.y108{bottom:271.219467pt;}
.y149{bottom:271.345333pt;}
.y21{bottom:276.007867pt;}
.ye4{bottom:281.982533pt;}
.y57{bottom:282.462533pt;}
.y86{bottom:282.487867pt;}
.y107{bottom:284.552800pt;}
.y148{bottom:284.678667pt;}
.y20{bottom:292.007867pt;}
.y106{bottom:297.886133pt;}
.y147{bottom:298.012000pt;}
.y56{bottom:298.462533pt;}
.y1f{bottom:308.007867pt;}
.y105{bottom:311.219467pt;}
.y146{bottom:311.345333pt;}
.ye3{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.y85{bottom:314.714533pt;}
.y1e{bottom:324.007867pt;}
.y104{bottom:324.552800pt;}
.y145{bottom:324.678667pt;}
.ye2{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.y84{bottom:330.714533pt;}
.y103{bottom:337.886133pt;}
.y144{bottom:338.012000pt;}
.y1d{bottom:340.007867pt;}
.ye1{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.y83{bottom:346.714533pt;}
.y102{bottom:351.219467pt;}
.y143{bottom:351.345333pt;}
.y1c{bottom:356.007867pt;}
.ye0{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y82{bottom:362.714533pt;}
.y101{bottom:364.552800pt;}
.y142{bottom:364.678667pt;}
.y1b{bottom:372.007867pt;}
.y100{bottom:377.886133pt;}
.y141{bottom:378.012000pt;}
.ydf{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.y81{bottom:378.714533pt;}
.y2b{bottom:388.007867pt;}
.yff{bottom:391.219467pt;}
.y140{bottom:391.345333pt;}
.yde{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.y80{bottom:394.714533pt;}
.y1a{bottom:403.647867pt;}
.y2a{bottom:404.007867pt;}
.yfe{bottom:404.552800pt;}
.y13f{bottom:404.678667pt;}
.ydd{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y7f{bottom:410.714533pt;}
.yfd{bottom:417.886133pt;}
.y13e{bottom:418.012000pt;}
.ydc{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y7e{bottom:426.714533pt;}
.yfc{bottom:431.219467pt;}
.y13d{bottom:431.345333pt;}
.ydb{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y7d{bottom:442.714533pt;}
.yfb{bottom:444.552800pt;}
.y13c{bottom:444.678667pt;}
.yfa{bottom:457.886133pt;}
.y13b{bottom:458.012000pt;}
.yda{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y7c{bottom:458.714533pt;}
.yf9{bottom:471.219467pt;}
.y13a{bottom:471.345333pt;}
.yd9{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y7b{bottom:474.714533pt;}
.y17{bottom:475.123733pt;}
.yf8{bottom:484.552800pt;}
.y139{bottom:484.678667pt;}
.yd8{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y7a{bottom:490.714533pt;}
.yf7{bottom:497.886133pt;}
.y138{bottom:498.012000pt;}
.y16{bottom:499.430400pt;}
.yd7{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y79{bottom:506.714533pt;}
.yf6{bottom:511.219467pt;}
.y137{bottom:511.345333pt;}
.y9e{bottom:512.988533pt;}
.y15{bottom:515.430400pt;}
.yd6{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y78{bottom:522.714533pt;}
.yf5{bottom:524.552800pt;}
.y136{bottom:524.678667pt;}
.y9d{bottom:528.988533pt;}
.y14{bottom:531.430400pt;}
.y135{bottom:538.012000pt;}
.yd5{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y77{bottom:538.714533pt;}
.y9c{bottom:544.988533pt;}
.y13{bottom:547.430400pt;}
.y134{bottom:551.345333pt;}
.yf4{bottom:553.982533pt;}
.yd4{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y76{bottom:554.714533pt;}
.y12{bottom:563.430400pt;}
.y133{bottom:564.678667pt;}
.yd3{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.y75{bottom:570.714533pt;}
.y9b{bottom:575.958000pt;}
.y174{bottom:578.012000pt;}
.y132{bottom:578.014133pt;}
.y11{bottom:579.430400pt;}
.y44{bottom:586.462533pt;}
.y74{bottom:586.715867pt;}
.y9a{bottom:589.830000pt;}
.y173{bottom:591.345333pt;}
.y131{bottom:591.347467pt;}
.y10{bottom:595.430400pt;}
.yd2{bottom:601.982533pt;}
.yc9{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.y99{bottom:602.595867pt;}
.y172{bottom:604.678667pt;}
.y130{bottom:604.680800pt;}
.yf{bottom:611.430400pt;}
.y171{bottom:618.012000pt;}
.y12f{bottom:618.014133pt;}
.yf3{bottom:618.102533pt;}
.y98{bottom:618.235867pt;}
.yc8{bottom:618.342533pt;}
.y73{bottom:618.355867pt;}
.y42{bottom:618.462533pt;}
.ye{bottom:627.430400pt;}
.y170{bottom:631.345333pt;}
.y12e{bottom:631.347467pt;}
.yc7{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.yd{bottom:643.430400pt;}
.y16f{bottom:644.678667pt;}
.y12d{bottom:644.680800pt;}
.y97{bottom:650.102533pt;}
.yc6{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.y72{bottom:650.582533pt;}
.y16e{bottom:658.012000pt;}
.y12c{bottom:658.014133pt;}
.y96{bottom:666.102533pt;}
.yc5{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.y71{bottom:666.582533pt;}
.y16d{bottom:671.345333pt;}
.y12b{bottom:671.347467pt;}
.y95{bottom:682.102533pt;}
.yc4{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.y70{bottom:682.582533pt;}
.yc{bottom:683.571067pt;}
.y16c{bottom:684.678667pt;}
.y12a{bottom:684.680800pt;}
.yb{bottom:694.638400pt;}
.y16b{bottom:698.012000pt;}
.y129{bottom:698.014133pt;}
.yc3{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.y6f{bottom:698.582533pt;}
.y16a{bottom:711.345333pt;}
.y128{bottom:711.347467pt;}
.y94{bottom:713.982533pt;}
.yc2{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.y6e{bottom:714.582533pt;}
.y169{bottom:724.678667pt;}
.y127{bottom:724.680800pt;}
.ya{bottom:726.261600pt;}
.yc1{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.y17e{bottom:730.464533pt;}
.y6d{bottom:730.582533pt;}
.y9{bottom:734.829867pt;}
.y168{bottom:738.012000pt;}
.y126{bottom:738.014133pt;}
.yc0{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y17d{bottom:746.464533pt;}
.y6c{bottom:746.582533pt;}
.y8{bottom:746.829867pt;}
.y167{bottom:751.345333pt;}
.y125{bottom:751.347467pt;}
.y7{bottom:762.261600pt;}
.y39{bottom:762.462533pt;}
.y17c{bottom:762.464533pt;}
.yb4{bottom:762.475867pt;}
.y6b{bottom:762.582533pt;}
.ya9{bottom:762.595867pt;}
.y166{bottom:764.678667pt;}
.y124{bottom:764.680800pt;}
.ybf{bottom:777.982533pt;}
.y165{bottom:778.012000pt;}
.y123{bottom:778.014133pt;}
.y38{bottom:778.462533pt;}
.yb3{bottom:778.475867pt;}
.y6a{bottom:778.582533pt;}
.ya8{bottom:778.595867pt;}
.y6{bottom:789.183067pt;}
.y164{bottom:791.345333pt;}
.y122{bottom:791.347467pt;}
.y37{bottom:794.462533pt;}
.y17b{bottom:794.464533pt;}
.yb2{bottom:794.475867pt;}
.y69{bottom:794.582533pt;}
.ya7{bottom:794.595867pt;}
.y163{bottom:804.678667pt;}
.y121{bottom:804.680800pt;}
.yf2{bottom:810.102533pt;}
.y36{bottom:810.462533pt;}
.y17a{bottom:810.464533pt;}
.yb1{bottom:810.475867pt;}
.y68{bottom:810.582533pt;}
.ya6{bottom:810.595867pt;}
.y162{bottom:818.012000pt;}
.y120{bottom:818.014133pt;}
.y35{bottom:826.462533pt;}
.y179{bottom:826.464533pt;}
.yb0{bottom:826.475867pt;}
.y67{bottom:826.582533pt;}
.ya5{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y161{bottom:831.345333pt;}
.y11f{bottom:831.347467pt;}
.y34{bottom:842.462533pt;}
.yaf{bottom:842.475867pt;}
.y66{bottom:842.582533pt;}
.ya4{bottom:842.595867pt;}
.y160{bottom:844.678667pt;}
.y11e{bottom:844.680800pt;}
.y15f{bottom:858.012000pt;}
.y11d{bottom:858.014133pt;}
.yf1{bottom:858.102533pt;}
.y33{bottom:858.462533pt;}
.y178{bottom:858.464533pt;}
.yae{bottom:858.475867pt;}
.y65{bottom:858.582533pt;}
.y4{bottom:862.635733pt;}
.y15e{bottom:871.345333pt;}
.y11c{bottom:871.347467pt;}
.ya3{bottom:874.235867pt;}
.y32{bottom:874.462533pt;}
.y177{bottom:874.464533pt;}
.yad{bottom:874.475867pt;}
.y15d{bottom:884.678667pt;}
.y11b{bottom:884.680800pt;}
.y64{bottom:890.222533pt;}
.y31{bottom:890.462533pt;}
.y176{bottom:890.464533pt;}
.yac{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y15c{bottom:898.012000pt;}
.y11a{bottom:898.014133pt;}
.y30{bottom:906.462533pt;}
.yab{bottom:906.475867pt;}
.y15b{bottom:911.345333pt;}
.y119{bottom:911.347467pt;}
.y63{bottom:922.102533pt;}
.y175{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.yaa{bottom:922.475867pt;}
.y15a{bottom:924.678667pt;}
.y118{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y93{bottom:1006.594400pt;}
.ybe{bottom:1006.597067pt;}
.y159{bottom:1006.598667pt;}
.yd1{bottom:1006.609200pt;}
.ycd{bottom:1006.609333pt;}
.y2d{bottom:1009.857333pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h12{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h11{height:33.351562pt;}
.he{height:37.057292pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.hc{height:38.860475pt;}
.ha{height:38.880208pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:62.740133pt;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x20{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x23{left:109.606267pt;}
.x3{left:111.496000pt;}
.x6{left:117.170133pt;}
.x1f{left:172.684800pt;}
.x5{left:189.223467pt;}
.x9{left:404.481333pt;}
.xd{left:406.298133pt;}
.x11{left:425.222533pt;}
.x7{left:427.076800pt;}
.x21{left:428.970133pt;}
.xe{left:436.538133pt;}
.x18{left:439.228933pt;}
.x15{left:450.209200pt;}
.x1a{left:455.433067pt;}
.xc{left:466.911467pt;}
.x16{left:481.849200pt;}
.x14{left:503.849200pt;}
.x13{left:508.649200pt;}
.x1e{left:526.158800pt;}
.x1d{left:533.955867pt;}
.x19{left:535.432933pt;}
.x12{left:544.835867pt;}
.x17{left:546.195867pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x22{left:642.335600pt;}
.xf{left:648.250800pt;}
.x24{left:662.007867pt;}
.x1b{left:667.148400pt;}
}




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