
    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_1f251d2ed51148f99adf2d2b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4b15c018f8c3f3eb80e1e957.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_61b278f1c43492cd32731966.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c6eb243d734e12230c3fd2f7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_be1d1935e19383d2550f5053.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.872559;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_9521e46a20f6c92451e02d75.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.471800px;}
.v3{vertical-align:-3.392400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.568600px;}
.v1{vertical-align:22.655400px;}
.ls1e{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.420000px;}
.ls4f{letter-spacing:-0.300000px;}
.ls84{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.240000px;}
.ls5e{letter-spacing:-0.180000px;}
.ls83{letter-spacing:-0.144000px;}
.ls3a{letter-spacing:-0.120000px;}
.ls97{letter-spacing:-0.096000px;}
.ls39{letter-spacing:-0.060000px;}
.ls5f{letter-spacing:-0.048000px;}
.ls1d{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls66{letter-spacing:0.048000px;}
.ls23{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.096000px;}
.ls1c{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.180000px;}
.ls69{letter-spacing:0.192000px;}
.ls5{letter-spacing:0.240000px;}
.ls70{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.300000px;}
.ls7a{letter-spacing:0.336000px;}
.ls37{letter-spacing:0.360000px;}
.ls99{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.420000px;}
.ls85{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.480000px;}
.ls6c{letter-spacing:0.528000px;}
.ls16{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.600000px;}
.ls8d{letter-spacing:0.624000px;}
.ls36{letter-spacing:0.660000px;}
.ls6e{letter-spacing:0.672000px;}
.ls3f{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.780000px;}
.ls89{letter-spacing:0.816000px;}
.ls35{letter-spacing:0.840000px;}
.ls81{letter-spacing:0.864000px;}
.ls38{letter-spacing:0.900000px;}
.ls87{letter-spacing:0.912000px;}
.ls18{letter-spacing:0.960000px;}
.ls78{letter-spacing:1.008000px;}
.ls4e{letter-spacing:1.020000px;}
.ls75{letter-spacing:1.056000px;}
.ls24{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.104000px;}
.ls45{letter-spacing:1.140000px;}
.ls7d{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.200000px;}
.ls90{letter-spacing:1.248000px;}
.ls42{letter-spacing:1.260000px;}
.ls8b{letter-spacing:1.296000px;}
.ls11{letter-spacing:1.320000px;}
.ls72{letter-spacing:1.344000px;}
.ls12{letter-spacing:1.380000px;}
.ls6b{letter-spacing:1.392000px;}
.ls3d{letter-spacing:1.440000px;}
.ls94{letter-spacing:1.488000px;}
.ls4c{letter-spacing:1.497000px;}
.ls21{letter-spacing:1.500000px;}
.ls65{letter-spacing:1.536000px;}
.ls32{letter-spacing:1.560000px;}
.ls86{letter-spacing:1.584000px;}
.ls3b{letter-spacing:1.620000px;}
.ls8f{letter-spacing:1.632000px;}
.ls53{letter-spacing:1.680000px;}
.ls6f{letter-spacing:1.728000px;}
.ls19{letter-spacing:1.740000px;}
.ls8a{letter-spacing:1.776000px;}
.ls22{letter-spacing:1.800000px;}
.ls8e{letter-spacing:1.824000px;}
.ls2c{letter-spacing:1.860000px;}
.ls7e{letter-spacing:1.872000px;}
.ls2f{letter-spacing:1.920000px;}
.ls9a{letter-spacing:1.968000px;}
.ls13{letter-spacing:1.980000px;}
.ls80{letter-spacing:2.016000px;}
.ls1b{letter-spacing:2.040000px;}
.ls5c{letter-spacing:2.064000px;}
.ls30{letter-spacing:2.100000px;}
.ls73{letter-spacing:2.112000px;}
.ls17{letter-spacing:2.160000px;}
.ls98{letter-spacing:2.208000px;}
.ls33{letter-spacing:2.220000px;}
.ls71{letter-spacing:2.256000px;}
.ls40{letter-spacing:2.280000px;}
.ls7c{letter-spacing:2.304000px;}
.lsb{letter-spacing:2.340000px;}
.ls6d{letter-spacing:2.352000px;}
.ls10{letter-spacing:2.400000px;}
.ls5d{letter-spacing:2.448000px;}
.ls46{letter-spacing:2.460000px;}
.ls96{letter-spacing:2.496000px;}
.ls31{letter-spacing:2.520000px;}
.ls52{letter-spacing:2.580000px;}
.ls64{letter-spacing:2.592000px;}
.lsc{letter-spacing:2.640000px;}
.ls5b{letter-spacing:2.688000px;}
.ls57{letter-spacing:2.700000px;}
.ls68{letter-spacing:2.736000px;}
.ls2a{letter-spacing:2.760000px;}
.ls6a{letter-spacing:2.784000px;}
.ls60{letter-spacing:2.820000px;}
.ls93{letter-spacing:2.832000px;}
.ls67{letter-spacing:2.928000px;}
.ls59{letter-spacing:2.940000px;}
.ls88{letter-spacing:2.976000px;}
.ls26{letter-spacing:3.000000px;}
.ls77{letter-spacing:3.024000px;}
.ls29{letter-spacing:3.060000px;}
.ls91{letter-spacing:3.072000px;}
.ls2b{letter-spacing:3.120000px;}
.ls7f{letter-spacing:3.168000px;}
.ls3e{letter-spacing:3.180000px;}
.ls76{letter-spacing:3.216000px;}
.ls1a{letter-spacing:3.240000px;}
.ls8c{letter-spacing:3.264000px;}
.lsf{letter-spacing:3.300000px;}
.ls4b{letter-spacing:3.360000px;}
.ls15{letter-spacing:3.480000px;}
.ls74{letter-spacing:3.504000px;}
.ls5a{letter-spacing:3.540000px;}
.ls49{letter-spacing:3.600000px;}
.ls82{letter-spacing:3.696000px;}
.ls4a{letter-spacing:3.720000px;}
.ls2d{letter-spacing:3.780000px;}
.ls2e{letter-spacing:3.840000px;}
.lse{letter-spacing:3.900000px;}
.ls7b{letter-spacing:3.936000px;}
.ls4d{letter-spacing:3.960000px;}
.ls48{letter-spacing:4.020000px;}
.ls41{letter-spacing:4.140000px;}
.ls43{letter-spacing:4.440000px;}
.ls55{letter-spacing:4.680000px;}
.ls34{letter-spacing:4.920000px;}
.ls3c{letter-spacing:4.980000px;}
.ls79{letter-spacing:5.088000px;}
.ls54{letter-spacing:5.100000px;}
.ls47{letter-spacing:5.160000px;}
.ls95{letter-spacing:5.184000px;}
.ls62{letter-spacing:5.220000px;}
.ls51{letter-spacing:5.340000px;}
.ls92{letter-spacing:5.376000px;}
.ls44{letter-spacing:5.400000px;}
.ls63{letter-spacing:5.640000px;}
.ls50{letter-spacing:5.880000px;}
.ls61{letter-spacing:6.180000px;}
.ls14{letter-spacing:7.440000px;}
.ls56{letter-spacing:7.920000px;}
.lsd{letter-spacing:8.880000px;}
.ls58{letter-spacing:9.420000px;}
.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:-21.840000px;}
.ws33{word-spacing:-20.520000px;}
.ws66{word-spacing:-20.460000px;}
.ws3{word-spacing:-20.160000px;}
.ws34{word-spacing:-19.800000px;}
.ws31{word-spacing:-19.200000px;}
.ws4{word-spacing:-18.840000px;}
.ws2{word-spacing:-18.660000px;}
.ws65{word-spacing:-18.300000px;}
.ws5{word-spacing:-18.000000px;}
.ws36{word-spacing:-17.400000px;}
.ws53{word-spacing:-17.280000px;}
.ws32{word-spacing:-17.160000px;}
.ws54{word-spacing:-17.040000px;}
.ws55{word-spacing:-16.740000px;}
.ws16{word-spacing:-16.680000px;}
.ws17{word-spacing:-16.620000px;}
.ws56{word-spacing:-15.792000px;}
.ws67{word-spacing:-15.744000px;}
.ws8e{word-spacing:-14.832000px;}
.ws79{word-spacing:-14.496000px;}
.ws18{word-spacing:-14.178000px;}
.ws9d{word-spacing:-14.160000px;}
.ws78{word-spacing:-13.392000px;}
.ws1{word-spacing:-13.344000px;}
.ws0{word-spacing:-11.008800px;}
.ws30{word-spacing:-10.008000px;}
.ws40{word-spacing:-5.160000px;}
.ws5c{word-spacing:-3.900000px;}
.ws1e{word-spacing:-3.300000px;}
.ws2a{word-spacing:-3.120000px;}
.ws61{word-spacing:-3.000000px;}
.ws95{word-spacing:-2.832000px;}
.ws7e{word-spacing:-2.784000px;}
.ws72{word-spacing:-2.700000px;}
.ws7{word-spacing:-2.664000px;}
.ws50{word-spacing:-2.640000px;}
.ws76{word-spacing:-2.580000px;}
.ws37{word-spacing:-2.220000px;}
.ws46{word-spacing:-2.160000px;}
.ws63{word-spacing:-2.064000px;}
.ws59{word-spacing:-2.040000px;}
.ws13{word-spacing:-1.980000px;}
.ws60{word-spacing:-1.920000px;}
.ws71{word-spacing:-1.860000px;}
.ws19{word-spacing:-1.800000px;}
.ws15{word-spacing:-1.740000px;}
.ws8d{word-spacing:-1.536000px;}
.ws41{word-spacing:-1.500000px;}
.ws39{word-spacing:-1.440000px;}
.ws9a{word-spacing:-1.392000px;}
.ws12{word-spacing:-1.320000px;}
.ws69{word-spacing:-1.140000px;}
.ws1c{word-spacing:-1.080000px;}
.ws4d{word-spacing:-1.020000px;}
.ws6e{word-spacing:-0.840000px;}
.wsa0{word-spacing:-0.816000px;}
.ws1d{word-spacing:-0.780000px;}
.ws49{word-spacing:-0.720000px;}
.ws8a{word-spacing:-0.672000px;}
.ws9e{word-spacing:-0.624000px;}
.ws14{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.480000px;}
.ws26{word-spacing:-0.420000px;}
.ws6b{word-spacing:-0.360000px;}
.ws9b{word-spacing:-0.336000px;}
.ws4b{word-spacing:-0.300000px;}
.ws87{word-spacing:-0.288000px;}
.ws74{word-spacing:-0.240000px;}
.ws75{word-spacing:-0.120000px;}
.ws91{word-spacing:-0.096000px;}
.ws57{word-spacing:-0.060000px;}
.ws77{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws7f{word-spacing:0.048000px;}
.ws97{word-spacing:0.096000px;}
.ws5b{word-spacing:0.120000px;}
.ws5e{word-spacing:0.180000px;}
.wsb{word-spacing:0.192000px;}
.ws4a{word-spacing:0.240000px;}
.ws7c{word-spacing:0.336000px;}
.ws80{word-spacing:0.384000px;}
.ws42{word-spacing:0.540000px;}
.ws6a{word-spacing:0.600000px;}
.ws96{word-spacing:0.624000px;}
.ws38{word-spacing:0.660000px;}
.ws82{word-spacing:0.720000px;}
.ws4e{word-spacing:0.780000px;}
.ws2d{word-spacing:0.840000px;}
.ws4c{word-spacing:0.900000px;}
.ws83{word-spacing:0.912000px;}
.ws6c{word-spacing:0.960000px;}
.ws2e{word-spacing:1.020000px;}
.ws92{word-spacing:1.056000px;}
.ws58{word-spacing:1.140000px;}
.ws3d{word-spacing:1.320000px;}
.ws98{word-spacing:1.344000px;}
.ws29{word-spacing:1.440000px;}
.ws7b{word-spacing:1.584000px;}
.ws3a{word-spacing:1.620000px;}
.ws8c{word-spacing:1.632000px;}
.ws48{word-spacing:1.680000px;}
.ws7a{word-spacing:1.824000px;}
.ws70{word-spacing:1.920000px;}
.wsf{word-spacing:1.980000px;}
.ws81{word-spacing:2.064000px;}
.ws45{word-spacing:2.100000px;}
.ws85{word-spacing:2.112000px;}
.ws5a{word-spacing:2.160000px;}
.ws24{word-spacing:2.220000px;}
.ws28{word-spacing:2.280000px;}
.ws52{word-spacing:2.304000px;}
.ws89{word-spacing:2.352000px;}
.ws3f{word-spacing:2.460000px;}
.ws88{word-spacing:2.496000px;}
.ws8b{word-spacing:2.592000px;}
.ws68{word-spacing:2.640000px;}
.ws64{word-spacing:2.688000px;}
.ws7d{word-spacing:2.736000px;}
.ws2f{word-spacing:2.820000px;}
.ws1a{word-spacing:2.940000px;}
.ws90{word-spacing:2.976000px;}
.ws25{word-spacing:3.060000px;}
.ws9c{word-spacing:3.120000px;}
.ws9f{word-spacing:3.264000px;}
.ws9{word-spacing:3.312000px;}
.ws99{word-spacing:3.360000px;}
.ws94{word-spacing:3.408000px;}
.ws51{word-spacing:3.456000px;}
.ws2c{word-spacing:3.480000px;}
.ws62{word-spacing:3.504000px;}
.ws2b{word-spacing:3.540000px;}
.ws86{word-spacing:3.600000px;}
.ws1b{word-spacing:3.660000px;}
.ws6f{word-spacing:3.720000px;}
.ws84{word-spacing:3.792000px;}
.ws1f{word-spacing:3.840000px;}
.ws6d{word-spacing:3.900000px;}
.ws93{word-spacing:3.936000px;}
.wse{word-spacing:3.960000px;}
.ws20{word-spacing:4.020000px;}
.ws27{word-spacing:4.080000px;}
.ws3b{word-spacing:4.140000px;}
.wsc{word-spacing:4.176000px;}
.ws8f{word-spacing:4.224000px;}
.ws5f{word-spacing:4.260000px;}
.wsa{word-spacing:4.368000px;}
.ws8{word-spacing:4.416000px;}
.ws4f{word-spacing:4.440000px;}
.ws43{word-spacing:4.500000px;}
.ws3e{word-spacing:4.560000px;}
.ws5d{word-spacing:4.620000px;}
.ws3c{word-spacing:4.680000px;}
.ws10{word-spacing:4.980000px;}
.ws47{word-spacing:5.040000px;}
.ws21{word-spacing:5.160000px;}
.ws23{word-spacing:5.220000px;}
.ws11{word-spacing:5.460000px;}
.wsd{word-spacing:5.520000px;}
.ws73{word-spacing:8.220000px;}
.ws44{word-spacing:280.752000px;}
._d{margin-left:-2898.126000px;}
._e{margin-left:-2874.309000px;}
._6{margin-left:-9.000000px;}
._c{margin-left:-6.474000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.906000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.266000px;}
._7{width:1.020000px;}
._b{width:2.220000px;}
._3{width:3.312000px;}
._5{width:4.320000px;}
._a{width:5.826000px;}
._8{width:7.140000px;}
._9{width:8.760000px;}
._14{width:162.930000px;}
._15{width:280.752000px;}
._11{width:294.096000px;}
._12{width:307.440000px;}
._17{width:556.134000px;}
._f{width:675.216000px;}
._16{width:820.182000px;}
._10{width:828.576000px;}
._13{width:961.968000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y104{bottom:82.913700px;}
.y63{bottom:83.363850px;}
.y2c{bottom:83.493900px;}
.y123{bottom:83.717250px;}
.y101{bottom:92.191800px;}
.y12a{bottom:94.796700px;}
.y16a{bottom:94.938300px;}
.y103{bottom:98.657700px;}
.y122{bottom:99.461250px;}
.y62{bottom:101.363850px;}
.y97{bottom:101.505600px;}
.y100{bottom:108.439800px;}
.y129{bottom:109.796700px;}
.y169{bottom:109.938300px;}
.y102{bottom:114.401700px;}
.y121{bottom:115.205250px;}
.y61{bottom:119.363850px;}
.y96{bottom:119.505600px;}
.yff{bottom:124.687800px;}
.y128{bottom:124.796700px;}
.y168{bottom:124.938300px;}
.y120{bottom:130.949250px;}
.y60{bottom:137.363850px;}
.y95{bottom:137.505600px;}
.y127{bottom:139.796700px;}
.y167{bottom:139.938300px;}
.yfe{bottom:140.935800px;}
.y1a{bottom:146.467650px;}
.y11f{bottom:146.693250px;}
.y166{bottom:154.938300px;}
.y5f{bottom:155.363850px;}
.y94{bottom:155.505600px;}
.yfd{bottom:157.183800px;}
.y11e{bottom:162.437250px;}
.y165{bottom:169.938300px;}
.y126{bottom:173.232600px;}
.y5e{bottom:173.363850px;}
.y93{bottom:173.505600px;}
.y11d{bottom:178.181250px;}
.y164{bottom:184.938300px;}
.yfc{bottom:186.187800px;}
.y5d{bottom:191.363850px;}
.y92{bottom:191.505600px;}
.y163{bottom:199.938300px;}
.y28{bottom:202.068300px;}
.yfb{bottom:202.687800px;}
.y5c{bottom:209.363850px;}
.y91{bottom:209.505600px;}
.y162{bottom:214.938300px;}
.y27{bottom:220.068300px;}
.y5b{bottom:227.363850px;}
.y125{bottom:227.367600px;}
.y90{bottom:227.505600px;}
.y161{bottom:229.938300px;}
.yfa{bottom:231.691800px;}
.y26{bottom:238.068300px;}
.y160{bottom:244.938300px;}
.y5a{bottom:245.363850px;}
.y124{bottom:245.367600px;}
.y8f{bottom:245.505600px;}
.y25{bottom:256.068300px;}
.y15f{bottom:259.938300px;}
.y59{bottom:263.363850px;}
.y8e{bottom:263.505600px;}
.yf9{bottom:264.023850px;}
.y24{bottom:274.068300px;}
.y15e{bottom:274.938300px;}
.y58{bottom:281.363850px;}
.y8d{bottom:281.505600px;}
.yf8{bottom:283.523850px;}
.y15d{bottom:289.938300px;}
.y23{bottom:292.068300px;}
.y57{bottom:299.363850px;}
.y8c{bottom:299.505600px;}
.yf7{bottom:303.023850px;}
.y15c{bottom:304.938300px;}
.y22{bottom:310.068300px;}
.y56{bottom:317.363850px;}
.y8b{bottom:317.505600px;}
.y15b{bottom:319.938300px;}
.yf6{bottom:322.523850px;}
.y21{bottom:328.068300px;}
.y15a{bottom:334.938300px;}
.y55{bottom:335.363850px;}
.y8a{bottom:335.505600px;}
.y20{bottom:346.068300px;}
.y159{bottom:349.938300px;}
.y54{bottom:353.363850px;}
.y89{bottom:353.505600px;}
.y1f{bottom:364.068300px;}
.y158{bottom:364.938300px;}
.yf5{bottom:371.243850px;}
.y53{bottom:371.363850px;}
.y88{bottom:371.505600px;}
.yd2{bottom:371.513850px;}
.y157{bottom:379.938300px;}
.y1e{bottom:382.068300px;}
.yf4{bottom:389.243850px;}
.y52{bottom:389.363850px;}
.y87{bottom:389.505600px;}
.yd1{bottom:389.513850px;}
.y156{bottom:394.938300px;}
.y1d{bottom:400.068300px;}
.yf3{bottom:407.243850px;}
.y51{bottom:407.363850px;}
.y86{bottom:407.505600px;}
.yd0{bottom:407.513850px;}
.y155{bottom:409.938300px;}
.y1c{bottom:418.068300px;}
.y154{bottom:424.938300px;}
.yf2{bottom:425.243850px;}
.y50{bottom:425.363850px;}
.y85{bottom:425.502600px;}
.ycf{bottom:425.513850px;}
.y29{bottom:436.068300px;}
.y153{bottom:439.938300px;}
.yf1{bottom:443.243850px;}
.y4f{bottom:443.363850px;}
.y84{bottom:443.502600px;}
.yce{bottom:443.513850px;}
.y1b{bottom:454.068300px;}
.y152{bottom:454.938300px;}
.yf0{bottom:461.243850px;}
.y4e{bottom:461.363850px;}
.yb7{bottom:461.370600px;}
.y83{bottom:461.502600px;}
.ycd{bottom:461.513850px;}
.y151{bottom:469.938300px;}
.yef{bottom:479.243850px;}
.y4d{bottom:479.363850px;}
.yb6{bottom:479.370600px;}
.y82{bottom:479.502600px;}
.ycc{bottom:479.513850px;}
.y150{bottom:484.938300px;}
.yee{bottom:497.243850px;}
.y4c{bottom:497.363850px;}
.yb5{bottom:497.370600px;}
.y81{bottom:497.502600px;}
.ycb{bottom:497.513850px;}
.y14f{bottom:499.938300px;}
.y14e{bottom:514.938300px;}
.y11c{bottom:515.228850px;}
.yed{bottom:515.243850px;}
.y4b{bottom:515.363850px;}
.yb4{bottom:515.370600px;}
.y80{bottom:515.502600px;}
.yca{bottom:515.513850px;}
.y19{bottom:522.547650px;}
.y14d{bottom:529.938300px;}
.y11b{bottom:533.228850px;}
.yec{bottom:533.243850px;}
.y4a{bottom:533.363850px;}
.yb3{bottom:533.370600px;}
.y7f{bottom:533.502600px;}
.yc9{bottom:533.513850px;}
.y18{bottom:537.555900px;}
.y14c{bottom:544.938300px;}
.y11a{bottom:551.228850px;}
.yeb{bottom:551.243850px;}
.y49{bottom:551.363850px;}
.yb2{bottom:551.370600px;}
.y7e{bottom:551.502600px;}
.yc8{bottom:551.513850px;}
.y14b{bottom:559.938300px;}
.y106{bottom:567.969900px;}
.y119{bottom:569.228850px;}
.yea{bottom:569.243850px;}
.y48{bottom:569.363850px;}
.yb1{bottom:569.370600px;}
.y7d{bottom:569.502600px;}
.yc7{bottom:569.513850px;}
.y17{bottom:570.411900px;}
.y14a{bottom:574.938300px;}
.y16{bottom:585.411900px;}
.y118{bottom:587.228850px;}
.ye9{bottom:587.243850px;}
.y47{bottom:587.363850px;}
.yb0{bottom:587.370600px;}
.y7c{bottom:587.502600px;}
.yc6{bottom:587.513850px;}
.y149{bottom:589.938300px;}
.y15{bottom:600.411900px;}
.y148{bottom:604.938300px;}
.y117{bottom:605.228850px;}
.ye8{bottom:605.243850px;}
.y46{bottom:605.363850px;}
.yaf{bottom:605.370600px;}
.y7b{bottom:605.502600px;}
.yc5{bottom:605.513850px;}
.y14{bottom:615.411900px;}
.y147{bottom:619.938300px;}
.y116{bottom:623.228850px;}
.ye7{bottom:623.243850px;}
.y45{bottom:623.363850px;}
.yae{bottom:623.370600px;}
.y7a{bottom:623.502600px;}
.yc4{bottom:623.513850px;}
.y13{bottom:630.411900px;}
.y146{bottom:634.938300px;}
.y115{bottom:641.228850px;}
.ye6{bottom:641.243850px;}
.y44{bottom:641.363850px;}
.yad{bottom:641.370600px;}
.y79{bottom:641.502600px;}
.yc3{bottom:641.513850px;}
.y12{bottom:645.411900px;}
.y145{bottom:649.938300px;}
.y114{bottom:659.228850px;}
.ye5{bottom:659.243850px;}
.y43{bottom:659.363850px;}
.yac{bottom:659.370600px;}
.y78{bottom:659.502600px;}
.yc2{bottom:659.513850px;}
.y11{bottom:660.411900px;}
.y144{bottom:664.938300px;}
.y10{bottom:675.411900px;}
.y113{bottom:677.228850px;}
.ye4{bottom:677.243850px;}
.y42{bottom:677.363850px;}
.yab{bottom:677.370600px;}
.y77{bottom:677.502600px;}
.yc1{bottom:677.513850px;}
.y143{bottom:679.938300px;}
.yf{bottom:690.411900px;}
.y142{bottom:694.938300px;}
.y112{bottom:695.228850px;}
.ye3{bottom:695.243850px;}
.y41{bottom:695.363850px;}
.yaa{bottom:695.370600px;}
.y76{bottom:695.502600px;}
.yc0{bottom:695.513850px;}
.ye{bottom:705.411900px;}
.y141{bottom:709.938300px;}
.y111{bottom:713.228850px;}
.ye2{bottom:713.243850px;}
.y40{bottom:713.363850px;}
.ya9{bottom:713.370600px;}
.y75{bottom:713.502600px;}
.ybf{bottom:713.513850px;}
.yd{bottom:720.411900px;}
.y140{bottom:724.938300px;}
.y110{bottom:731.228850px;}
.ye1{bottom:731.243850px;}
.y3f{bottom:731.363850px;}
.ya8{bottom:731.370600px;}
.y74{bottom:731.502600px;}
.ybe{bottom:731.513850px;}
.y13f{bottom:739.938300px;}
.y10f{bottom:749.228850px;}
.ye0{bottom:749.243850px;}
.y3e{bottom:749.363850px;}
.ya7{bottom:749.370600px;}
.y73{bottom:749.502600px;}
.ybd{bottom:749.513850px;}
.y13e{bottom:754.938300px;}
.y10e{bottom:767.228850px;}
.ydf{bottom:767.243850px;}
.y3d{bottom:767.363850px;}
.ya6{bottom:767.370600px;}
.y72{bottom:767.502600px;}
.ybc{bottom:767.513850px;}
.yc{bottom:769.293750px;}
.y13d{bottom:769.938300px;}
.y13c{bottom:784.938300px;}
.y10d{bottom:785.228850px;}
.yde{bottom:785.243850px;}
.y3c{bottom:785.363850px;}
.ya5{bottom:785.370600px;}
.y71{bottom:785.502600px;}
.ybb{bottom:785.513850px;}
.y13b{bottom:799.938300px;}
.y10c{bottom:803.228850px;}
.ydd{bottom:803.243850px;}
.y3b{bottom:803.363850px;}
.ya4{bottom:803.370600px;}
.y70{bottom:803.502600px;}
.yba{bottom:803.513850px;}
.yb{bottom:803.655900px;}
.y13a{bottom:814.938300px;}
.y10b{bottom:821.228850px;}
.ydc{bottom:821.243850px;}
.y3a{bottom:821.363850px;}
.ya3{bottom:821.370600px;}
.y6f{bottom:821.502600px;}
.yb9{bottom:821.513850px;}
.ya{bottom:824.273850px;}
.y139{bottom:829.938300px;}
.y9{bottom:836.655900px;}
.y10a{bottom:839.228850px;}
.ydb{bottom:839.243850px;}
.y39{bottom:839.363850px;}
.ya2{bottom:839.370600px;}
.y6e{bottom:839.502600px;}
.y138{bottom:844.938300px;}
.y109{bottom:857.228850px;}
.yda{bottom:857.243850px;}
.y8{bottom:857.273850px;}
.y38{bottom:857.363850px;}
.y173{bottom:857.367600px;}
.ya1{bottom:857.370600px;}
.y6d{bottom:857.502600px;}
.yb8{bottom:857.513850px;}
.y137{bottom:859.938300px;}
.y7{bottom:869.655900px;}
.y136{bottom:874.938300px;}
.y37{bottom:875.363850px;}
.y172{bottom:875.367600px;}
.ya0{bottom:875.370600px;}
.y6c{bottom:875.502600px;}
.y135{bottom:889.938300px;}
.y6{bottom:890.273850px;}
.y108{bottom:893.228850px;}
.yd9{bottom:893.243850px;}
.y36{bottom:893.363850px;}
.y171{bottom:893.367600px;}
.y9f{bottom:893.370600px;}
.y6b{bottom:893.502600px;}
.y134{bottom:904.938300px;}
.y5{bottom:905.541300px;}
.y35{bottom:911.363850px;}
.y170{bottom:911.367600px;}
.y9e{bottom:911.370600px;}
.y6a{bottom:911.502600px;}
.y133{bottom:919.938300px;}
.y34{bottom:929.363850px;}
.y16f{bottom:929.367600px;}
.y9d{bottom:929.370600px;}
.y69{bottom:929.502600px;}
.y4{bottom:932.930700px;}
.y132{bottom:934.938300px;}
.y33{bottom:947.363850px;}
.y16e{bottom:947.367600px;}
.y9c{bottom:947.370600px;}
.yd8{bottom:947.378850px;}
.y68{bottom:947.502600px;}
.y131{bottom:949.938300px;}
.y3{bottom:959.936700px;}
.y130{bottom:964.938300px;}
.y32{bottom:965.363850px;}
.y16d{bottom:965.367600px;}
.y9b{bottom:965.370600px;}
.yd7{bottom:965.378850px;}
.y67{bottom:965.502600px;}
.y12f{bottom:979.938300px;}
.y31{bottom:983.363850px;}
.y16c{bottom:983.367600px;}
.y9a{bottom:983.370600px;}
.yd6{bottom:983.378850px;}
.y2{bottom:991.423800px;}
.y12e{bottom:994.938300px;}
.y30{bottom:1001.363850px;}
.y99{bottom:1001.370600px;}
.yd5{bottom:1001.378850px;}
.y66{bottom:1001.502600px;}
.y12d{bottom:1009.938300px;}
.y2f{bottom:1019.363850px;}
.y16b{bottom:1019.367600px;}
.yd4{bottom:1019.378850px;}
.y12c{bottom:1024.938300px;}
.y107{bottom:1033.557900px;}
.y105{bottom:1033.560450px;}
.y2e{bottom:1037.363850px;}
.y65{bottom:1037.367600px;}
.y98{bottom:1037.370600px;}
.yd3{bottom:1037.378850px;}
.y12b{bottom:1039.938300px;}
.y2b{bottom:1070.766450px;}
.y64{bottom:1086.066450px;}
.y2a{bottom:1086.069450px;}
.h6{height:20.967187px;}
.h7{height:34.945312px;}
.h10{height:34.968750px;}
.h2{height:37.652344px;}
.h9{height:42.998250px;}
.h8{height:43.031250px;}
.ha{height:43.681641px;}
.hc{height:43.710938px;}
.hd{height:45.708703px;}
.he{height:45.720703px;}
.h3{height:52.417969px;}
.hb{height:53.789062px;}
.hf{height:53.801063px;}
.h5{height:59.167969px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x17{left:78.660000px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x23{left:106.299150px;}
.xc{left:110.540400px;}
.x1f{left:112.677150px;}
.x3{left:125.427600px;}
.x25{left:127.559100px;}
.x7{left:131.816400px;}
.x4{left:161.571600px;}
.x11{left:165.982200px;}
.x20{left:198.875400px;}
.x6{left:212.876400px;}
.x5{left:229.602450px;}
.x18{left:357.156000px;}
.x19{left:445.692000px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x12{left:478.352400px;}
.x8{left:480.476400px;}
.x24{left:486.711150px;}
.xe{left:491.105400px;}
.x22{left:508.106550px;}
.x13{left:512.372400px;}
.x16{left:528.588000px;}
.x1a{left:539.904000px;}
.x15{left:591.646200px;}
.x21{left:596.096400px;}
.x1c{left:634.452000px;}
.x1b{left:643.788000px;}
.x10{left:663.492300px;}
.x2{left:704.338650px;}
.x26{left:717.130200px;}
.xf{left:724.221150px;}
.x1e{left:731.340000px;}
.x1d{left:734.004000px;}
.x14{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v3{vertical-align:-3.015467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.283200pt;}
.v1{vertical-align:20.138133pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.373333pt;}
.ls4f{letter-spacing:-0.266667pt;}
.ls84{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.213333pt;}
.ls5e{letter-spacing:-0.160000pt;}
.ls83{letter-spacing:-0.128000pt;}
.ls3a{letter-spacing:-0.106667pt;}
.ls97{letter-spacing:-0.085333pt;}
.ls39{letter-spacing:-0.053333pt;}
.ls5f{letter-spacing:-0.042667pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls66{letter-spacing:0.042667pt;}
.ls23{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.085333pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.160000pt;}
.ls69{letter-spacing:0.170667pt;}
.ls5{letter-spacing:0.213333pt;}
.ls70{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.266667pt;}
.ls7a{letter-spacing:0.298667pt;}
.ls37{letter-spacing:0.320000pt;}
.ls99{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.373333pt;}
.ls85{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.426667pt;}
.ls6c{letter-spacing:0.469333pt;}
.ls16{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls8d{letter-spacing:0.554667pt;}
.ls36{letter-spacing:0.586667pt;}
.ls6e{letter-spacing:0.597333pt;}
.ls3f{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.693333pt;}
.ls89{letter-spacing:0.725333pt;}
.ls35{letter-spacing:0.746667pt;}
.ls81{letter-spacing:0.768000pt;}
.ls38{letter-spacing:0.800000pt;}
.ls87{letter-spacing:0.810667pt;}
.ls18{letter-spacing:0.853333pt;}
.ls78{letter-spacing:0.896000pt;}
.ls4e{letter-spacing:0.906667pt;}
.ls75{letter-spacing:0.938667pt;}
.ls24{letter-spacing:0.960000pt;}
.ls8{letter-spacing:0.981333pt;}
.ls45{letter-spacing:1.013333pt;}
.ls7d{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.066667pt;}
.ls90{letter-spacing:1.109333pt;}
.ls42{letter-spacing:1.120000pt;}
.ls8b{letter-spacing:1.152000pt;}
.ls11{letter-spacing:1.173333pt;}
.ls72{letter-spacing:1.194667pt;}
.ls12{letter-spacing:1.226667pt;}
.ls6b{letter-spacing:1.237333pt;}
.ls3d{letter-spacing:1.280000pt;}
.ls94{letter-spacing:1.322667pt;}
.ls4c{letter-spacing:1.330667pt;}
.ls21{letter-spacing:1.333333pt;}
.ls65{letter-spacing:1.365333pt;}
.ls32{letter-spacing:1.386667pt;}
.ls86{letter-spacing:1.408000pt;}
.ls3b{letter-spacing:1.440000pt;}
.ls8f{letter-spacing:1.450667pt;}
.ls53{letter-spacing:1.493333pt;}
.ls6f{letter-spacing:1.536000pt;}
.ls19{letter-spacing:1.546667pt;}
.ls8a{letter-spacing:1.578667pt;}
.ls22{letter-spacing:1.600000pt;}
.ls8e{letter-spacing:1.621333pt;}
.ls2c{letter-spacing:1.653333pt;}
.ls7e{letter-spacing:1.664000pt;}
.ls2f{letter-spacing:1.706667pt;}
.ls9a{letter-spacing:1.749333pt;}
.ls13{letter-spacing:1.760000pt;}
.ls80{letter-spacing:1.792000pt;}
.ls1b{letter-spacing:1.813333pt;}
.ls5c{letter-spacing:1.834667pt;}
.ls30{letter-spacing:1.866667pt;}
.ls73{letter-spacing:1.877333pt;}
.ls17{letter-spacing:1.920000pt;}
.ls98{letter-spacing:1.962667pt;}
.ls33{letter-spacing:1.973333pt;}
.ls71{letter-spacing:2.005333pt;}
.ls40{letter-spacing:2.026667pt;}
.ls7c{letter-spacing:2.048000pt;}
.lsb{letter-spacing:2.080000pt;}
.ls6d{letter-spacing:2.090667pt;}
.ls10{letter-spacing:2.133333pt;}
.ls5d{letter-spacing:2.176000pt;}
.ls46{letter-spacing:2.186667pt;}
.ls96{letter-spacing:2.218667pt;}
.ls31{letter-spacing:2.240000pt;}
.ls52{letter-spacing:2.293333pt;}
.ls64{letter-spacing:2.304000pt;}
.lsc{letter-spacing:2.346667pt;}
.ls5b{letter-spacing:2.389333pt;}
.ls57{letter-spacing:2.400000pt;}
.ls68{letter-spacing:2.432000pt;}
.ls2a{letter-spacing:2.453333pt;}
.ls6a{letter-spacing:2.474667pt;}
.ls60{letter-spacing:2.506667pt;}
.ls93{letter-spacing:2.517333pt;}
.ls67{letter-spacing:2.602667pt;}
.ls59{letter-spacing:2.613333pt;}
.ls88{letter-spacing:2.645333pt;}
.ls26{letter-spacing:2.666667pt;}
.ls77{letter-spacing:2.688000pt;}
.ls29{letter-spacing:2.720000pt;}
.ls91{letter-spacing:2.730667pt;}
.ls2b{letter-spacing:2.773333pt;}
.ls7f{letter-spacing:2.816000pt;}
.ls3e{letter-spacing:2.826667pt;}
.ls76{letter-spacing:2.858667pt;}
.ls1a{letter-spacing:2.880000pt;}
.ls8c{letter-spacing:2.901333pt;}
.lsf{letter-spacing:2.933333pt;}
.ls4b{letter-spacing:2.986667pt;}
.ls15{letter-spacing:3.093333pt;}
.ls74{letter-spacing:3.114667pt;}
.ls5a{letter-spacing:3.146667pt;}
.ls49{letter-spacing:3.200000pt;}
.ls82{letter-spacing:3.285333pt;}
.ls4a{letter-spacing:3.306667pt;}
.ls2d{letter-spacing:3.360000pt;}
.ls2e{letter-spacing:3.413333pt;}
.lse{letter-spacing:3.466667pt;}
.ls7b{letter-spacing:3.498667pt;}
.ls4d{letter-spacing:3.520000pt;}
.ls48{letter-spacing:3.573333pt;}
.ls41{letter-spacing:3.680000pt;}
.ls43{letter-spacing:3.946667pt;}
.ls55{letter-spacing:4.160000pt;}
.ls34{letter-spacing:4.373333pt;}
.ls3c{letter-spacing:4.426667pt;}
.ls79{letter-spacing:4.522667pt;}
.ls54{letter-spacing:4.533333pt;}
.ls47{letter-spacing:4.586667pt;}
.ls95{letter-spacing:4.608000pt;}
.ls62{letter-spacing:4.640000pt;}
.ls51{letter-spacing:4.746667pt;}
.ls92{letter-spacing:4.778667pt;}
.ls44{letter-spacing:4.800000pt;}
.ls63{letter-spacing:5.013333pt;}
.ls50{letter-spacing:5.226667pt;}
.ls61{letter-spacing:5.493333pt;}
.ls14{letter-spacing:6.613333pt;}
.ls56{letter-spacing:7.040000pt;}
.lsd{letter-spacing:7.893333pt;}
.ls58{letter-spacing:8.373333pt;}
.ws35{word-spacing:-19.413333pt;}
.ws33{word-spacing:-18.240000pt;}
.ws66{word-spacing:-18.186667pt;}
.ws3{word-spacing:-17.920000pt;}
.ws34{word-spacing:-17.600000pt;}
.ws31{word-spacing:-17.066667pt;}
.ws4{word-spacing:-16.746667pt;}
.ws2{word-spacing:-16.586667pt;}
.ws65{word-spacing:-16.266667pt;}
.ws5{word-spacing:-16.000000pt;}
.ws36{word-spacing:-15.466667pt;}
.ws53{word-spacing:-15.360000pt;}
.ws32{word-spacing:-15.253333pt;}
.ws54{word-spacing:-15.146667pt;}
.ws55{word-spacing:-14.880000pt;}
.ws16{word-spacing:-14.826667pt;}
.ws17{word-spacing:-14.773333pt;}
.ws56{word-spacing:-14.037333pt;}
.ws67{word-spacing:-13.994667pt;}
.ws8e{word-spacing:-13.184000pt;}
.ws79{word-spacing:-12.885333pt;}
.ws18{word-spacing:-12.602667pt;}
.ws9d{word-spacing:-12.586667pt;}
.ws78{word-spacing:-11.904000pt;}
.ws1{word-spacing:-11.861333pt;}
.ws0{word-spacing:-9.785600pt;}
.ws30{word-spacing:-8.896000pt;}
.ws40{word-spacing:-4.586667pt;}
.ws5c{word-spacing:-3.466667pt;}
.ws1e{word-spacing:-2.933333pt;}
.ws2a{word-spacing:-2.773333pt;}
.ws61{word-spacing:-2.666667pt;}
.ws95{word-spacing:-2.517333pt;}
.ws7e{word-spacing:-2.474667pt;}
.ws72{word-spacing:-2.400000pt;}
.ws7{word-spacing:-2.368000pt;}
.ws50{word-spacing:-2.346667pt;}
.ws76{word-spacing:-2.293333pt;}
.ws37{word-spacing:-1.973333pt;}
.ws46{word-spacing:-1.920000pt;}
.ws63{word-spacing:-1.834667pt;}
.ws59{word-spacing:-1.813333pt;}
.ws13{word-spacing:-1.760000pt;}
.ws60{word-spacing:-1.706667pt;}
.ws71{word-spacing:-1.653333pt;}
.ws19{word-spacing:-1.600000pt;}
.ws15{word-spacing:-1.546667pt;}
.ws8d{word-spacing:-1.365333pt;}
.ws41{word-spacing:-1.333333pt;}
.ws39{word-spacing:-1.280000pt;}
.ws9a{word-spacing:-1.237333pt;}
.ws12{word-spacing:-1.173333pt;}
.ws69{word-spacing:-1.013333pt;}
.ws1c{word-spacing:-0.960000pt;}
.ws4d{word-spacing:-0.906667pt;}
.ws6e{word-spacing:-0.746667pt;}
.wsa0{word-spacing:-0.725333pt;}
.ws1d{word-spacing:-0.693333pt;}
.ws49{word-spacing:-0.640000pt;}
.ws8a{word-spacing:-0.597333pt;}
.ws9e{word-spacing:-0.554667pt;}
.ws14{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.426667pt;}
.ws26{word-spacing:-0.373333pt;}
.ws6b{word-spacing:-0.320000pt;}
.ws9b{word-spacing:-0.298667pt;}
.ws4b{word-spacing:-0.266667pt;}
.ws87{word-spacing:-0.256000pt;}
.ws74{word-spacing:-0.213333pt;}
.ws75{word-spacing:-0.106667pt;}
.ws91{word-spacing:-0.085333pt;}
.ws57{word-spacing:-0.053333pt;}
.ws77{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.042667pt;}
.ws97{word-spacing:0.085333pt;}
.ws5b{word-spacing:0.106667pt;}
.ws5e{word-spacing:0.160000pt;}
.wsb{word-spacing:0.170667pt;}
.ws4a{word-spacing:0.213333pt;}
.ws7c{word-spacing:0.298667pt;}
.ws80{word-spacing:0.341333pt;}
.ws42{word-spacing:0.480000pt;}
.ws6a{word-spacing:0.533333pt;}
.ws96{word-spacing:0.554667pt;}
.ws38{word-spacing:0.586667pt;}
.ws82{word-spacing:0.640000pt;}
.ws4e{word-spacing:0.693333pt;}
.ws2d{word-spacing:0.746667pt;}
.ws4c{word-spacing:0.800000pt;}
.ws83{word-spacing:0.810667pt;}
.ws6c{word-spacing:0.853333pt;}
.ws2e{word-spacing:0.906667pt;}
.ws92{word-spacing:0.938667pt;}
.ws58{word-spacing:1.013333pt;}
.ws3d{word-spacing:1.173333pt;}
.ws98{word-spacing:1.194667pt;}
.ws29{word-spacing:1.280000pt;}
.ws7b{word-spacing:1.408000pt;}
.ws3a{word-spacing:1.440000pt;}
.ws8c{word-spacing:1.450667pt;}
.ws48{word-spacing:1.493333pt;}
.ws7a{word-spacing:1.621333pt;}
.ws70{word-spacing:1.706667pt;}
.wsf{word-spacing:1.760000pt;}
.ws81{word-spacing:1.834667pt;}
.ws45{word-spacing:1.866667pt;}
.ws85{word-spacing:1.877333pt;}
.ws5a{word-spacing:1.920000pt;}
.ws24{word-spacing:1.973333pt;}
.ws28{word-spacing:2.026667pt;}
.ws52{word-spacing:2.048000pt;}
.ws89{word-spacing:2.090667pt;}
.ws3f{word-spacing:2.186667pt;}
.ws88{word-spacing:2.218667pt;}
.ws8b{word-spacing:2.304000pt;}
.ws68{word-spacing:2.346667pt;}
.ws64{word-spacing:2.389333pt;}
.ws7d{word-spacing:2.432000pt;}
.ws2f{word-spacing:2.506667pt;}
.ws1a{word-spacing:2.613333pt;}
.ws90{word-spacing:2.645333pt;}
.ws25{word-spacing:2.720000pt;}
.ws9c{word-spacing:2.773333pt;}
.ws9f{word-spacing:2.901333pt;}
.ws9{word-spacing:2.944000pt;}
.ws99{word-spacing:2.986667pt;}
.ws94{word-spacing:3.029333pt;}
.ws51{word-spacing:3.072000pt;}
.ws2c{word-spacing:3.093333pt;}
.ws62{word-spacing:3.114667pt;}
.ws2b{word-spacing:3.146667pt;}
.ws86{word-spacing:3.200000pt;}
.ws1b{word-spacing:3.253333pt;}
.ws6f{word-spacing:3.306667pt;}
.ws84{word-spacing:3.370667pt;}
.ws1f{word-spacing:3.413333pt;}
.ws6d{word-spacing:3.466667pt;}
.ws93{word-spacing:3.498667pt;}
.wse{word-spacing:3.520000pt;}
.ws20{word-spacing:3.573333pt;}
.ws27{word-spacing:3.626667pt;}
.ws3b{word-spacing:3.680000pt;}
.wsc{word-spacing:3.712000pt;}
.ws8f{word-spacing:3.754667pt;}
.ws5f{word-spacing:3.786667pt;}
.wsa{word-spacing:3.882667pt;}
.ws8{word-spacing:3.925333pt;}
.ws4f{word-spacing:3.946667pt;}
.ws43{word-spacing:4.000000pt;}
.ws3e{word-spacing:4.053333pt;}
.ws5d{word-spacing:4.106667pt;}
.ws3c{word-spacing:4.160000pt;}
.ws10{word-spacing:4.426667pt;}
.ws47{word-spacing:4.480000pt;}
.ws21{word-spacing:4.586667pt;}
.ws23{word-spacing:4.640000pt;}
.ws11{word-spacing:4.853333pt;}
.wsd{word-spacing:4.906667pt;}
.ws73{word-spacing:7.306667pt;}
.ws44{word-spacing:249.557333pt;}
._d{margin-left:-2576.112000pt;}
._e{margin-left:-2554.941333pt;}
._6{margin-left:-8.000000pt;}
._c{margin-left:-5.754667pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.472000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.125333pt;}
._7{width:0.906667pt;}
._b{width:1.973333pt;}
._3{width:2.944000pt;}
._5{width:3.840000pt;}
._a{width:5.178667pt;}
._8{width:6.346667pt;}
._9{width:7.786667pt;}
._14{width:144.826667pt;}
._15{width:249.557333pt;}
._11{width:261.418667pt;}
._12{width:273.280000pt;}
._17{width:494.341333pt;}
._f{width:600.192000pt;}
._16{width:729.050667pt;}
._10{width:736.512000pt;}
._13{width:855.082667pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y104{bottom:73.701067pt;}
.y63{bottom:74.101200pt;}
.y2c{bottom:74.216800pt;}
.y123{bottom:74.415333pt;}
.y101{bottom:81.948267pt;}
.y12a{bottom:84.263733pt;}
.y16a{bottom:84.389600pt;}
.y103{bottom:87.695733pt;}
.y122{bottom:88.410000pt;}
.y62{bottom:90.101200pt;}
.y97{bottom:90.227200pt;}
.y100{bottom:96.390933pt;}
.y129{bottom:97.597067pt;}
.y169{bottom:97.722933pt;}
.y102{bottom:101.690400pt;}
.y121{bottom:102.404667pt;}
.y61{bottom:106.101200pt;}
.y96{bottom:106.227200pt;}
.yff{bottom:110.833600pt;}
.y128{bottom:110.930400pt;}
.y168{bottom:111.056267pt;}
.y120{bottom:116.399333pt;}
.y60{bottom:122.101200pt;}
.y95{bottom:122.227200pt;}
.y127{bottom:124.263733pt;}
.y167{bottom:124.389600pt;}
.yfe{bottom:125.276267pt;}
.y1a{bottom:130.193467pt;}
.y11f{bottom:130.394000pt;}
.y166{bottom:137.722933pt;}
.y5f{bottom:138.101200pt;}
.y94{bottom:138.227200pt;}
.yfd{bottom:139.718933pt;}
.y11e{bottom:144.388667pt;}
.y165{bottom:151.056267pt;}
.y126{bottom:153.984533pt;}
.y5e{bottom:154.101200pt;}
.y93{bottom:154.227200pt;}
.y11d{bottom:158.383333pt;}
.y164{bottom:164.389600pt;}
.yfc{bottom:165.500267pt;}
.y5d{bottom:170.101200pt;}
.y92{bottom:170.227200pt;}
.y163{bottom:177.722933pt;}
.y28{bottom:179.616267pt;}
.yfb{bottom:180.166933pt;}
.y5c{bottom:186.101200pt;}
.y91{bottom:186.227200pt;}
.y162{bottom:191.056267pt;}
.y27{bottom:195.616267pt;}
.y5b{bottom:202.101200pt;}
.y125{bottom:202.104533pt;}
.y90{bottom:202.227200pt;}
.y161{bottom:204.389600pt;}
.yfa{bottom:205.948267pt;}
.y26{bottom:211.616267pt;}
.y160{bottom:217.722933pt;}
.y5a{bottom:218.101200pt;}
.y124{bottom:218.104533pt;}
.y8f{bottom:218.227200pt;}
.y25{bottom:227.616267pt;}
.y15f{bottom:231.056267pt;}
.y59{bottom:234.101200pt;}
.y8e{bottom:234.227200pt;}
.yf9{bottom:234.687867pt;}
.y24{bottom:243.616267pt;}
.y15e{bottom:244.389600pt;}
.y58{bottom:250.101200pt;}
.y8d{bottom:250.227200pt;}
.yf8{bottom:252.021200pt;}
.y15d{bottom:257.722933pt;}
.y23{bottom:259.616267pt;}
.y57{bottom:266.101200pt;}
.y8c{bottom:266.227200pt;}
.yf7{bottom:269.354533pt;}
.y15c{bottom:271.056267pt;}
.y22{bottom:275.616267pt;}
.y56{bottom:282.101200pt;}
.y8b{bottom:282.227200pt;}
.y15b{bottom:284.389600pt;}
.yf6{bottom:286.687867pt;}
.y21{bottom:291.616267pt;}
.y15a{bottom:297.722933pt;}
.y55{bottom:298.101200pt;}
.y8a{bottom:298.227200pt;}
.y20{bottom:307.616267pt;}
.y159{bottom:311.056267pt;}
.y54{bottom:314.101200pt;}
.y89{bottom:314.227200pt;}
.y1f{bottom:323.616267pt;}
.y158{bottom:324.389600pt;}
.yf5{bottom:329.994533pt;}
.y53{bottom:330.101200pt;}
.y88{bottom:330.227200pt;}
.yd2{bottom:330.234533pt;}
.y157{bottom:337.722933pt;}
.y1e{bottom:339.616267pt;}
.yf4{bottom:345.994533pt;}
.y52{bottom:346.101200pt;}
.y87{bottom:346.227200pt;}
.yd1{bottom:346.234533pt;}
.y156{bottom:351.056267pt;}
.y1d{bottom:355.616267pt;}
.yf3{bottom:361.994533pt;}
.y51{bottom:362.101200pt;}
.y86{bottom:362.227200pt;}
.yd0{bottom:362.234533pt;}
.y155{bottom:364.389600pt;}
.y1c{bottom:371.616267pt;}
.y154{bottom:377.722933pt;}
.yf2{bottom:377.994533pt;}
.y50{bottom:378.101200pt;}
.y85{bottom:378.224533pt;}
.ycf{bottom:378.234533pt;}
.y29{bottom:387.616267pt;}
.y153{bottom:391.056267pt;}
.yf1{bottom:393.994533pt;}
.y4f{bottom:394.101200pt;}
.y84{bottom:394.224533pt;}
.yce{bottom:394.234533pt;}
.y1b{bottom:403.616267pt;}
.y152{bottom:404.389600pt;}
.yf0{bottom:409.994533pt;}
.y4e{bottom:410.101200pt;}
.yb7{bottom:410.107200pt;}
.y83{bottom:410.224533pt;}
.ycd{bottom:410.234533pt;}
.y151{bottom:417.722933pt;}
.yef{bottom:425.994533pt;}
.y4d{bottom:426.101200pt;}
.yb6{bottom:426.107200pt;}
.y82{bottom:426.224533pt;}
.ycc{bottom:426.234533pt;}
.y150{bottom:431.056267pt;}
.yee{bottom:441.994533pt;}
.y4c{bottom:442.101200pt;}
.yb5{bottom:442.107200pt;}
.y81{bottom:442.224533pt;}
.ycb{bottom:442.234533pt;}
.y14f{bottom:444.389600pt;}
.y14e{bottom:457.722933pt;}
.y11c{bottom:457.981200pt;}
.yed{bottom:457.994533pt;}
.y4b{bottom:458.101200pt;}
.yb4{bottom:458.107200pt;}
.y80{bottom:458.224533pt;}
.yca{bottom:458.234533pt;}
.y19{bottom:464.486800pt;}
.y14d{bottom:471.056267pt;}
.y11b{bottom:473.981200pt;}
.yec{bottom:473.994533pt;}
.y4a{bottom:474.101200pt;}
.yb3{bottom:474.107200pt;}
.y7f{bottom:474.224533pt;}
.yc9{bottom:474.234533pt;}
.y18{bottom:477.827467pt;}
.y14c{bottom:484.389600pt;}
.y11a{bottom:489.981200pt;}
.yeb{bottom:489.994533pt;}
.y49{bottom:490.101200pt;}
.yb2{bottom:490.107200pt;}
.y7e{bottom:490.224533pt;}
.yc8{bottom:490.234533pt;}
.y14b{bottom:497.722933pt;}
.y106{bottom:504.862133pt;}
.y119{bottom:505.981200pt;}
.yea{bottom:505.994533pt;}
.y48{bottom:506.101200pt;}
.yb1{bottom:506.107200pt;}
.y7d{bottom:506.224533pt;}
.yc7{bottom:506.234533pt;}
.y17{bottom:507.032800pt;}
.y14a{bottom:511.056267pt;}
.y16{bottom:520.366133pt;}
.y118{bottom:521.981200pt;}
.ye9{bottom:521.994533pt;}
.y47{bottom:522.101200pt;}
.yb0{bottom:522.107200pt;}
.y7c{bottom:522.224533pt;}
.yc6{bottom:522.234533pt;}
.y149{bottom:524.389600pt;}
.y15{bottom:533.699467pt;}
.y148{bottom:537.722933pt;}
.y117{bottom:537.981200pt;}
.ye8{bottom:537.994533pt;}
.y46{bottom:538.101200pt;}
.yaf{bottom:538.107200pt;}
.y7b{bottom:538.224533pt;}
.yc5{bottom:538.234533pt;}
.y14{bottom:547.032800pt;}
.y147{bottom:551.056267pt;}
.y116{bottom:553.981200pt;}
.ye7{bottom:553.994533pt;}
.y45{bottom:554.101200pt;}
.yae{bottom:554.107200pt;}
.y7a{bottom:554.224533pt;}
.yc4{bottom:554.234533pt;}
.y13{bottom:560.366133pt;}
.y146{bottom:564.389600pt;}
.y115{bottom:569.981200pt;}
.ye6{bottom:569.994533pt;}
.y44{bottom:570.101200pt;}
.yad{bottom:570.107200pt;}
.y79{bottom:570.224533pt;}
.yc3{bottom:570.234533pt;}
.y12{bottom:573.699467pt;}
.y145{bottom:577.722933pt;}
.y114{bottom:585.981200pt;}
.ye5{bottom:585.994533pt;}
.y43{bottom:586.101200pt;}
.yac{bottom:586.107200pt;}
.y78{bottom:586.224533pt;}
.yc2{bottom:586.234533pt;}
.y11{bottom:587.032800pt;}
.y144{bottom:591.056267pt;}
.y10{bottom:600.366133pt;}
.y113{bottom:601.981200pt;}
.ye4{bottom:601.994533pt;}
.y42{bottom:602.101200pt;}
.yab{bottom:602.107200pt;}
.y77{bottom:602.224533pt;}
.yc1{bottom:602.234533pt;}
.y143{bottom:604.389600pt;}
.yf{bottom:613.699467pt;}
.y142{bottom:617.722933pt;}
.y112{bottom:617.981200pt;}
.ye3{bottom:617.994533pt;}
.y41{bottom:618.101200pt;}
.yaa{bottom:618.107200pt;}
.y76{bottom:618.224533pt;}
.yc0{bottom:618.234533pt;}
.ye{bottom:627.032800pt;}
.y141{bottom:631.056267pt;}
.y111{bottom:633.981200pt;}
.ye2{bottom:633.994533pt;}
.y40{bottom:634.101200pt;}
.ya9{bottom:634.107200pt;}
.y75{bottom:634.224533pt;}
.ybf{bottom:634.234533pt;}
.yd{bottom:640.366133pt;}
.y140{bottom:644.389600pt;}
.y110{bottom:649.981200pt;}
.ye1{bottom:649.994533pt;}
.y3f{bottom:650.101200pt;}
.ya8{bottom:650.107200pt;}
.y74{bottom:650.224533pt;}
.ybe{bottom:650.234533pt;}
.y13f{bottom:657.722933pt;}
.y10f{bottom:665.981200pt;}
.ye0{bottom:665.994533pt;}
.y3e{bottom:666.101200pt;}
.ya7{bottom:666.107200pt;}
.y73{bottom:666.224533pt;}
.ybd{bottom:666.234533pt;}
.y13e{bottom:671.056267pt;}
.y10e{bottom:681.981200pt;}
.ydf{bottom:681.994533pt;}
.y3d{bottom:682.101200pt;}
.ya6{bottom:682.107200pt;}
.y72{bottom:682.224533pt;}
.ybc{bottom:682.234533pt;}
.yc{bottom:683.816667pt;}
.y13d{bottom:684.389600pt;}
.y13c{bottom:697.722933pt;}
.y10d{bottom:697.981200pt;}
.yde{bottom:697.994533pt;}
.y3c{bottom:698.101200pt;}
.ya5{bottom:698.107200pt;}
.y71{bottom:698.224533pt;}
.ybb{bottom:698.234533pt;}
.y13b{bottom:711.056267pt;}
.y10c{bottom:713.981200pt;}
.ydd{bottom:713.994533pt;}
.y3b{bottom:714.101200pt;}
.ya4{bottom:714.107200pt;}
.y70{bottom:714.224533pt;}
.yba{bottom:714.234533pt;}
.yb{bottom:714.360800pt;}
.y13a{bottom:724.389600pt;}
.y10b{bottom:729.981200pt;}
.ydc{bottom:729.994533pt;}
.y3a{bottom:730.101200pt;}
.ya3{bottom:730.107200pt;}
.y6f{bottom:730.224533pt;}
.yb9{bottom:730.234533pt;}
.ya{bottom:732.687867pt;}
.y139{bottom:737.722933pt;}
.y9{bottom:743.694133pt;}
.y10a{bottom:745.981200pt;}
.ydb{bottom:745.994533pt;}
.y39{bottom:746.101200pt;}
.ya2{bottom:746.107200pt;}
.y6e{bottom:746.224533pt;}
.y138{bottom:751.056267pt;}
.y109{bottom:761.981200pt;}
.yda{bottom:761.994533pt;}
.y8{bottom:762.021200pt;}
.y38{bottom:762.101200pt;}
.y173{bottom:762.104533pt;}
.ya1{bottom:762.107200pt;}
.y6d{bottom:762.224533pt;}
.yb8{bottom:762.234533pt;}
.y137{bottom:764.389600pt;}
.y7{bottom:773.027467pt;}
.y136{bottom:777.722933pt;}
.y37{bottom:778.101200pt;}
.y172{bottom:778.104533pt;}
.ya0{bottom:778.107200pt;}
.y6c{bottom:778.224533pt;}
.y135{bottom:791.056267pt;}
.y6{bottom:791.354533pt;}
.y108{bottom:793.981200pt;}
.yd9{bottom:793.994533pt;}
.y36{bottom:794.101200pt;}
.y171{bottom:794.104533pt;}
.y9f{bottom:794.107200pt;}
.y6b{bottom:794.224533pt;}
.y134{bottom:804.389600pt;}
.y5{bottom:804.925600pt;}
.y35{bottom:810.101200pt;}
.y170{bottom:810.104533pt;}
.y9e{bottom:810.107200pt;}
.y6a{bottom:810.224533pt;}
.y133{bottom:817.722933pt;}
.y34{bottom:826.101200pt;}
.y16f{bottom:826.104533pt;}
.y9d{bottom:826.107200pt;}
.y69{bottom:826.224533pt;}
.y4{bottom:829.271733pt;}
.y132{bottom:831.056267pt;}
.y33{bottom:842.101200pt;}
.y16e{bottom:842.104533pt;}
.y9c{bottom:842.107200pt;}
.yd8{bottom:842.114533pt;}
.y68{bottom:842.224533pt;}
.y131{bottom:844.389600pt;}
.y3{bottom:853.277067pt;}
.y130{bottom:857.722933pt;}
.y32{bottom:858.101200pt;}
.y16d{bottom:858.104533pt;}
.y9b{bottom:858.107200pt;}
.yd7{bottom:858.114533pt;}
.y67{bottom:858.224533pt;}
.y12f{bottom:871.056267pt;}
.y31{bottom:874.101200pt;}
.y16c{bottom:874.104533pt;}
.y9a{bottom:874.107200pt;}
.yd6{bottom:874.114533pt;}
.y2{bottom:881.265600pt;}
.y12e{bottom:884.389600pt;}
.y30{bottom:890.101200pt;}
.y99{bottom:890.107200pt;}
.yd5{bottom:890.114533pt;}
.y66{bottom:890.224533pt;}
.y12d{bottom:897.722933pt;}
.y2f{bottom:906.101200pt;}
.y16b{bottom:906.104533pt;}
.yd4{bottom:906.114533pt;}
.y12c{bottom:911.056267pt;}
.y107{bottom:918.718133pt;}
.y105{bottom:918.720400pt;}
.y2e{bottom:922.101200pt;}
.y65{bottom:922.104533pt;}
.y98{bottom:922.107200pt;}
.yd3{bottom:922.114533pt;}
.y12b{bottom:924.389600pt;}
.y2b{bottom:951.792400pt;}
.y64{bottom:965.392400pt;}
.y2a{bottom:965.395067pt;}
.h6{height:18.637500pt;}
.h7{height:31.062500pt;}
.h10{height:31.083333pt;}
.h2{height:33.468750pt;}
.h9{height:38.220667pt;}
.h8{height:38.250000pt;}
.ha{height:38.828125pt;}
.hc{height:38.854167pt;}
.hd{height:40.629958pt;}
.he{height:40.640625pt;}
.h3{height:46.593750pt;}
.hb{height:47.812500pt;}
.hf{height:47.823167pt;}
.h5{height:52.593750pt;}
.h4{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x17{left:69.920000pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x23{left:94.488133pt;}
.xc{left:98.258133pt;}
.x1f{left:100.157467pt;}
.x3{left:111.491200pt;}
.x25{left:113.385867pt;}
.x7{left:117.170133pt;}
.x4{left:143.619200pt;}
.x11{left:147.539733pt;}
.x20{left:176.778133pt;}
.x6{left:189.223467pt;}
.x5{left:204.091067pt;}
.x18{left:317.472000pt;}
.x19{left:396.170667pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x12{left:425.202133pt;}
.x8{left:427.090133pt;}
.x24{left:432.632133pt;}
.xe{left:436.538133pt;}
.x22{left:451.650267pt;}
.x13{left:455.442133pt;}
.x16{left:469.856000pt;}
.x1a{left:479.914667pt;}
.x15{left:525.907733pt;}
.x21{left:529.863467pt;}
.x1c{left:563.957333pt;}
.x1b{left:572.256000pt;}
.x10{left:589.770933pt;}
.x2{left:626.078800pt;}
.x26{left:637.449067pt;}
.xf{left:643.752133pt;}
.x1e{left:650.080000pt;}
.x1d{left:652.448000pt;}
.x14{left:662.649733pt;}
}




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