
    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_83659619760e69487093ad82.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4b8870fa3b2aff9e30dafad1.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_aec4fc68d361b45296b89666.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_e8a8f43f2de29fd56fb2030e.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_a1be8197f26cd1f4233b2d7d.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_14d9cef6e2dc5767c1a0c82a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_e6e244ae9d382d63a3910f07.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fde6bd71271a028c9071e519.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ef517753a1a6527b09e3bf02.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b215e60c6892655228e821a4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls36{letter-spacing:-2.040000px;}
.lsc{letter-spacing:-0.780000px;}
.ls8a{letter-spacing:-0.672000px;}
.ls40{letter-spacing:-0.540000px;}
.ls8c{letter-spacing:-0.528000px;}
.ls63{letter-spacing:-0.480000px;}
.ls8b{letter-spacing:-0.336000px;}
.ls48{letter-spacing:-0.300000px;}
.ls38{letter-spacing:-0.240000px;}
.ls54{letter-spacing:-0.192000px;}
.ls52{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.120000px;}
.ls82{letter-spacing:-0.096000px;}
.ls37{letter-spacing:-0.060000px;}
.ls83{letter-spacing:-0.048000px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004140px;}
.ls70{letter-spacing:0.006000px;}
.ls79{letter-spacing:0.048000px;}
.ls3d{letter-spacing:0.060000px;}
.ls47{letter-spacing:0.096000px;}
.ls24{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.ls60{letter-spacing:0.192000px;}
.ls3a{letter-spacing:0.240000px;}
.ls45{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.300000px;}
.ls4f{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.420000px;}
.ls7a{letter-spacing:0.432000px;}
.ls2e{letter-spacing:0.480000px;}
.ls57{letter-spacing:0.528000px;}
.ls28{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.600000px;}
.ls23{letter-spacing:0.660000px;}
.ls51{letter-spacing:0.672000px;}
.ls4{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.780000px;}
.ls5a{letter-spacing:0.816000px;}
.ls1b{letter-spacing:0.840000px;}
.ls68{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.900000px;}
.ls77{letter-spacing:0.912000px;}
.lsa{letter-spacing:0.960000px;}
.ls62{letter-spacing:1.008000px;}
.ls4d{letter-spacing:1.020000px;}
.ls85{letter-spacing:1.056000px;}
.ls3{letter-spacing:1.080000px;}
.ls75{letter-spacing:1.104000px;}
.ls10{letter-spacing:1.140000px;}
.ls59{letter-spacing:1.152000px;}
.ls22{letter-spacing:1.200000px;}
.ls1e{letter-spacing:1.260000px;}
.ls78{letter-spacing:1.296000px;}
.ls13{letter-spacing:1.320000px;}
.ls1{letter-spacing:1.380000px;}
.ls7b{letter-spacing:1.392000px;}
.ls2c{letter-spacing:1.440000px;}
.ls7e{letter-spacing:1.488000px;}
.ls19{letter-spacing:1.500000px;}
.ls18{letter-spacing:1.560000px;}
.ls89{letter-spacing:1.584000px;}
.ls16{letter-spacing:1.620000px;}
.ls7c{letter-spacing:1.632000px;}
.ls41{letter-spacing:1.680000px;}
.ls3b{letter-spacing:1.740000px;}
.ls86{letter-spacing:1.776000px;}
.ls20{letter-spacing:1.800000px;}
.ls15{letter-spacing:1.860000px;}
.ls9{letter-spacing:1.920000px;}
.ls29{letter-spacing:1.980000px;}
.ls76{letter-spacing:2.016000px;}
.ls1f{letter-spacing:2.040000px;}
.ls35{letter-spacing:2.100000px;}
.ls3c{letter-spacing:2.160000px;}
.ls7d{letter-spacing:2.208000px;}
.ls66{letter-spacing:2.220000px;}
.ls84{letter-spacing:2.256000px;}
.lsf{letter-spacing:2.280000px;}
.ls2b{letter-spacing:2.340000px;}
.ls4c{letter-spacing:2.400000px;}
.ls3f{letter-spacing:2.460000px;}
.ls26{letter-spacing:2.520000px;}
.ls6c{letter-spacing:2.544000px;}
.lse{letter-spacing:2.580000px;}
.ls6f{letter-spacing:2.592000px;}
.ls14{letter-spacing:2.640000px;}
.ls11{letter-spacing:2.700000px;}
.ls7f{letter-spacing:2.736000px;}
.ls2a{letter-spacing:2.760000px;}
.ls1c{letter-spacing:2.820000px;}
.ls55{letter-spacing:2.880000px;}
.ls31{letter-spacing:2.940000px;}
.ls1d{letter-spacing:3.000000px;}
.ls21{letter-spacing:3.060000px;}
.ls30{letter-spacing:3.120000px;}
.ls34{letter-spacing:3.240000px;}
.ls4a{letter-spacing:3.279600px;}
.ls25{letter-spacing:3.300000px;}
.ls4e{letter-spacing:3.360000px;}
.ls5b{letter-spacing:3.480000px;}
.ls33{letter-spacing:3.540000px;}
.ls5e{letter-spacing:3.600000px;}
.ls2f{letter-spacing:3.660000px;}
.ls5c{letter-spacing:3.960000px;}
.ls5d{letter-spacing:4.020000px;}
.ls6b{letter-spacing:4.080000px;}
.ls61{letter-spacing:4.128000px;}
.ls87{letter-spacing:4.176000px;}
.ls69{letter-spacing:4.260000px;}
.ls46{letter-spacing:4.272000px;}
.ls50{letter-spacing:4.320000px;}
.ls80{letter-spacing:4.368000px;}
.ls3e{letter-spacing:4.440000px;}
.ls58{letter-spacing:4.512000px;}
.ls72{letter-spacing:4.680000px;}
.ls53{letter-spacing:4.740000px;}
.ls6d{letter-spacing:5.040000px;}
.ls88{letter-spacing:5.088000px;}
.ls81{letter-spacing:5.100000px;}
.ls74{letter-spacing:5.160000px;}
.ls56{letter-spacing:5.220000px;}
.ls6{letter-spacing:5.340000px;}
.ls43{letter-spacing:5.460000px;}
.ls42{letter-spacing:5.580000px;}
.ls44{letter-spacing:5.600400px;}
.ls67{letter-spacing:5.760000px;}
.ls32{letter-spacing:5.820000px;}
.ls49{letter-spacing:5.880000px;}
.ls12{letter-spacing:6.060000px;}
.lsd{letter-spacing:6.540000px;}
.ls71{letter-spacing:6.660000px;}
.ls65{letter-spacing:6.720000px;}
.ls6a{letter-spacing:6.960000px;}
.ls64{letter-spacing:7.560000px;}
.ls27{letter-spacing:7.620000px;}
.ls5f{letter-spacing:7.680000px;}
.ls4b{letter-spacing:8.160000px;}
.ls73{letter-spacing:9.600000px;}
.ls6e{letter-spacing:10.020000px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.wsb{word-spacing:-21.540000px;}
.ws75{word-spacing:-20.040000px;}
.ws48{word-spacing:-19.740000px;}
.ws77{word-spacing:-18.360000px;}
.wsf{word-spacing:-18.000000px;}
.ws55{word-spacing:-17.700000px;}
.ws14{word-spacing:-16.980000px;}
.ws76{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.wse{word-spacing:-16.500000px;}
.ws7d{word-spacing:-16.368000px;}
.wsd{word-spacing:-16.320000px;}
.ws10{word-spacing:-16.260000px;}
.ws61{word-spacing:-16.200000px;}
.wsc{word-spacing:-16.080000px;}
.ws13{word-spacing:-15.960000px;}
.ws3e{word-spacing:-15.900000px;}
.ws15{word-spacing:-15.840000px;}
.ws3d{word-spacing:-15.720000px;}
.ws2e{word-spacing:-15.660000px;}
.ws11{word-spacing:-15.000000px;}
.ws54{word-spacing:-14.940000px;}
.ws2f{word-spacing:-14.760000px;}
.ws79{word-spacing:-14.208000px;}
.ws78{word-spacing:-14.016000px;}
.wsa1{word-spacing:-13.584000px;}
.ws12{word-spacing:-13.500000px;}
.ws7f{word-spacing:-13.440000px;}
.ws4{word-spacing:-13.344000px;}
.ws7e{word-spacing:-13.296000px;}
.ws9e{word-spacing:-13.200000px;}
.wsa0{word-spacing:-13.152000px;}
.ws9d{word-spacing:-12.960000px;}
.ws7b{word-spacing:-12.672000px;}
.ws4c{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.ws3f{word-spacing:-12.336000px;}
.ws30{word-spacing:-12.288000px;}
.ws56{word-spacing:-12.192000px;}
.ws62{word-spacing:-12.000000px;}
.ws7c{word-spacing:-11.952000px;}
.ws7a{word-spacing:-11.904000px;}
.ws49{word-spacing:-11.808000px;}
.ws89{word-spacing:-11.760000px;}
.wsa2{word-spacing:-11.664000px;}
.ws85{word-spacing:-11.616000px;}
.wsa3{word-spacing:-11.472000px;}
.ws9f{word-spacing:-11.328000px;}
.ws1{word-spacing:-10.210662px;}
.ws8f{word-spacing:-10.176000px;}
.ws8d{word-spacing:-8.688000px;}
.ws84{word-spacing:-7.824000px;}
.ws95{word-spacing:-5.328000px;}
.ws87{word-spacing:-4.992000px;}
.ws91{word-spacing:-4.848000px;}
.ws9b{word-spacing:-4.368000px;}
.ws90{word-spacing:-3.504000px;}
.ws82{word-spacing:-3.300000px;}
.ws1a{word-spacing:-3.000000px;}
.ws6{word-spacing:-2.886000px;}
.ws5d{word-spacing:-2.700000px;}
.wsa5{word-spacing:-2.640000px;}
.ws96{word-spacing:-2.592000px;}
.ws94{word-spacing:-2.256000px;}
.ws1e{word-spacing:-2.220000px;}
.ws92{word-spacing:-2.208000px;}
.ws8b{word-spacing:-2.016000px;}
.ws23{word-spacing:-1.980000px;}
.ws17{word-spacing:-1.920000px;}
.ws80{word-spacing:-1.680000px;}
.wsa8{word-spacing:-1.584000px;}
.ws9c{word-spacing:-1.440000px;}
.ws72{word-spacing:-1.380000px;}
.ws81{word-spacing:-1.320000px;}
.ws99{word-spacing:-1.296000px;}
.ws64{word-spacing:-1.200000px;}
.wsa7{word-spacing:-1.152000px;}
.ws73{word-spacing:-1.140000px;}
.ws8{word-spacing:-1.080000px;}
.ws86{word-spacing:-1.008000px;}
.wsa4{word-spacing:-0.960000px;}
.ws37{word-spacing:-0.840000px;}
.ws66{word-spacing:-0.780000px;}
.ws8a{word-spacing:-0.672000px;}
.ws35{word-spacing:-0.660000px;}
.ws34{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.528000px;}
.ws47{word-spacing:-0.336000px;}
.ws3a{word-spacing:-0.288000px;}
.ws4a{word-spacing:-0.192000px;}
.ws71{word-spacing:-0.180000px;}
.ws63{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.060000px;}
.ws6f{word-spacing:0.180000px;}
.ws4b{word-spacing:0.192000px;}
.ws26{word-spacing:0.240000px;}
.ws36{word-spacing:0.300000px;}
.ws46{word-spacing:0.360000px;}
.ws18{word-spacing:0.540000px;}
.ws57{word-spacing:0.600000px;}
.ws6b{word-spacing:0.660000px;}
.wsa6{word-spacing:0.720000px;}
.ws69{word-spacing:0.840000px;}
.ws67{word-spacing:0.864000px;}
.ws88{word-spacing:0.912000px;}
.ws16{word-spacing:1.020000px;}
.ws2d{word-spacing:1.104000px;}
.ws6d{word-spacing:1.152000px;}
.ws5b{word-spacing:1.200000px;}
.ws33{word-spacing:1.260000px;}
.ws1c{word-spacing:1.320000px;}
.ws25{word-spacing:1.440000px;}
.ws4e{word-spacing:1.560000px;}
.ws70{word-spacing:1.620000px;}
.wsa9{word-spacing:1.632000px;}
.ws3b{word-spacing:1.680000px;}
.ws29{word-spacing:1.740000px;}
.ws28{word-spacing:1.800000px;}
.ws8e{word-spacing:2.016000px;}
.ws20{word-spacing:2.040000px;}
.ws6e{word-spacing:2.064000px;}
.ws2c{word-spacing:2.160000px;}
.ws40{word-spacing:2.220000px;}
.ws60{word-spacing:2.256000px;}
.ws4f{word-spacing:2.400000px;}
.ws9a{word-spacing:2.448000px;}
.ws74{word-spacing:2.544000px;}
.ws2a{word-spacing:2.580000px;}
.ws5c{word-spacing:2.640000px;}
.ws93{word-spacing:2.688000px;}
.ws31{word-spacing:2.700000px;}
.ws2b{word-spacing:2.820000px;}
.ws8c{word-spacing:2.832000px;}
.ws59{word-spacing:2.880000px;}
.ws24{word-spacing:2.940000px;}
.ws50{word-spacing:3.000000px;}
.ws22{word-spacing:3.120000px;}
.ws51{word-spacing:3.240000px;}
.ws44{word-spacing:3.300000px;}
.ws6a{word-spacing:3.360000px;}
.ws1f{word-spacing:3.480000px;}
.ws4d{word-spacing:3.540000px;}
.ws1b{word-spacing:3.660000px;}
.ws5e{word-spacing:3.780000px;}
.ws58{word-spacing:3.840000px;}
.ws83{word-spacing:3.900000px;}
.ws3c{word-spacing:3.936000px;}
.ws45{word-spacing:3.960000px;}
.ws38{word-spacing:3.984000px;}
.ws27{word-spacing:4.080000px;}
.ws5f{word-spacing:4.128000px;}
.ws68{word-spacing:4.140000px;}
.ws42{word-spacing:4.200000px;}
.ws43{word-spacing:4.260000px;}
.ws39{word-spacing:4.272000px;}
.ws41{word-spacing:4.320000px;}
.ws32{word-spacing:4.440000px;}
.ws65{word-spacing:4.500000px;}
.ws52{word-spacing:4.512000px;}
.ws5a{word-spacing:4.560000px;}
.ws21{word-spacing:4.620000px;}
.ws1d{word-spacing:4.800000px;}
.ws6c{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.ws98{word-spacing:5.460000px;}
.ws97{word-spacing:5.520000px;}
.ws19{word-spacing:7.380000px;}
._c{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._5{margin-left:-7.560000px;}
._e{margin-left:-6.546000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.744000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.134000px;}
._6{width:1.056000px;}
._8{width:2.964000px;}
._a{width:4.380000px;}
._b{width:5.592000px;}
._7{width:6.600000px;}
._9{width:8.040000px;}
._13{width:9.912000px;}
._11{width:38.118000px;}
._12{width:40.992000px;}
._f{width:42.960000px;}
._14{width:61.824000px;}
._10{width:63.840000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs4{font-size:36.729000px;}
.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;}
.y2f{bottom:47.777250px;}
.ye7{bottom:83.118000px;}
.y9d{bottom:83.212500px;}
.ycf{bottom:83.224350px;}
.ye3{bottom:83.247750px;}
.yc3{bottom:83.543250px;}
.y62{bottom:83.635350px;}
.y98{bottom:83.885550px;}
.yc6{bottom:84.086400px;}
.ycb{bottom:84.488100px;}
.y2c{bottom:88.026750px;}
.y148{bottom:89.121900px;}
.y115{bottom:89.772600px;}
.y95{bottom:91.253850px;}
.ye6{bottom:98.862000px;}
.y9c{bottom:98.956500px;}
.yce{bottom:98.968350px;}
.ye2{bottom:98.991750px;}
.yc2{bottom:99.287250px;}
.y97{bottom:99.629550px;}
.yc5{bottom:99.830400px;}
.yca{bottom:100.232100px;}
.y61{bottom:101.635350px;}
.y2b{bottom:103.023000px;}
.y147{bottom:104.121900px;}
.y114{bottom:107.772600px;}
.y94{bottom:109.253850px;}
.ye5{bottom:114.606000px;}
.y9b{bottom:114.700500px;}
.ycd{bottom:114.712350px;}
.yc1{bottom:115.031250px;}
.yc4{bottom:115.574400px;}
.yc9{bottom:115.976100px;}
.y146{bottom:119.121900px;}
.y60{bottom:119.635350px;}
.y113{bottom:125.367600px;}
.y93{bottom:127.253850px;}
.ye4{bottom:130.350000px;}
.y9a{bottom:130.444500px;}
.ycc{bottom:130.456350px;}
.yc0{bottom:130.775250px;}
.yc8{bottom:131.720100px;}
.y145{bottom:134.121900px;}
.y5f{bottom:137.635350px;}
.y92{bottom:145.253850px;}
.y99{bottom:146.188500px;}
.yc7{bottom:147.464100px;}
.y144{bottom:149.121900px;}
.y5e{bottom:155.635350px;}
.y112{bottom:161.263500px;}
.y91{bottom:163.253850px;}
.y28{bottom:164.061750px;}
.y143{bottom:164.121900px;}
.y5d{bottom:173.635350px;}
.y111{bottom:176.263500px;}
.y142{bottom:179.121900px;}
.y90{bottom:181.253850px;}
.y27{bottom:182.061750px;}
.y110{bottom:191.263500px;}
.y5c{bottom:191.635350px;}
.y141{bottom:194.121900px;}
.y8f{bottom:199.253850px;}
.y26{bottom:200.061750px;}
.y10f{bottom:206.263500px;}
.y140{bottom:209.121900px;}
.y5b{bottom:209.635350px;}
.y8e{bottom:217.253850px;}
.y2a{bottom:218.061750px;}
.y10e{bottom:221.263500px;}
.y13f{bottom:224.121900px;}
.y5a{bottom:227.635350px;}
.y8d{bottom:235.253850px;}
.y25{bottom:235.659000px;}
.y29{bottom:236.061750px;}
.y10d{bottom:236.263500px;}
.y13e{bottom:239.121900px;}
.y59{bottom:245.635350px;}
.y10c{bottom:251.263500px;}
.y8c{bottom:253.253850px;}
.y13d{bottom:254.121900px;}
.y58{bottom:263.635350px;}
.y10b{bottom:266.263500px;}
.y13c{bottom:269.121900px;}
.y8b{bottom:271.253850px;}
.y10a{bottom:281.263500px;}
.y57{bottom:281.635350px;}
.y13b{bottom:284.121900px;}
.y8a{bottom:289.253850px;}
.y109{bottom:296.263500px;}
.y13a{bottom:299.121900px;}
.y56{bottom:299.635350px;}
.y89{bottom:307.253850px;}
.y24{bottom:309.964200px;}
.y108{bottom:311.263500px;}
.y139{bottom:314.121900px;}
.y55{bottom:317.635350px;}
.y88{bottom:325.253850px;}
.y107{bottom:326.263500px;}
.y138{bottom:329.121900px;}
.y54{bottom:335.635350px;}
.y23{bottom:337.309200px;}
.y106{bottom:341.263500px;}
.y87{bottom:343.253850px;}
.y137{bottom:344.121900px;}
.y53{bottom:353.635350px;}
.y22{bottom:355.309200px;}
.y105{bottom:356.263500px;}
.y136{bottom:359.121900px;}
.y86{bottom:361.253850px;}
.y104{bottom:371.263500px;}
.y52{bottom:371.635350px;}
.y21{bottom:373.309200px;}
.y135{bottom:374.121900px;}
.y85{bottom:379.253850px;}
.y103{bottom:386.263500px;}
.y134{bottom:389.121900px;}
.y51{bottom:389.635350px;}
.y20{bottom:391.309200px;}
.y84{bottom:397.253850px;}
.y102{bottom:401.263500px;}
.y133{bottom:404.121900px;}
.y50{bottom:407.635350px;}
.y1f{bottom:409.309200px;}
.y83{bottom:415.253850px;}
.y101{bottom:416.263500px;}
.y132{bottom:419.121900px;}
.y4f{bottom:425.635350px;}
.y1e{bottom:427.309200px;}
.y100{bottom:431.263500px;}
.y82{bottom:433.253850px;}
.y131{bottom:434.121900px;}
.y1d{bottom:445.309200px;}
.yff{bottom:446.263500px;}
.y130{bottom:449.121900px;}
.y81{bottom:451.253850px;}
.y4e{bottom:461.230350px;}
.yfe{bottom:461.263500px;}
.y1c{bottom:463.309200px;}
.y12f{bottom:464.121900px;}
.y80{bottom:469.253850px;}
.yfd{bottom:476.263500px;}
.y12e{bottom:479.121900px;}
.y1b{bottom:481.309200px;}
.y7f{bottom:487.253850px;}
.yfc{bottom:491.263500px;}
.y12d{bottom:494.121900px;}
.y1a{bottom:499.309200px;}
.y7e{bottom:505.253850px;}
.yfb{bottom:506.263500px;}
.y12c{bottom:509.121900px;}
.y4d{bottom:515.770350px;}
.y19{bottom:517.309200px;}
.yfa{bottom:521.263500px;}
.y7d{bottom:523.253850px;}
.y12b{bottom:524.121900px;}
.y4c{bottom:533.770350px;}
.y18{bottom:535.309200px;}
.yf9{bottom:536.263500px;}
.y12a{bottom:539.121900px;}
.y7c{bottom:541.253850px;}
.yf8{bottom:551.263500px;}
.y4b{bottom:551.770350px;}
.y17{bottom:553.309200px;}
.y129{bottom:554.121900px;}
.y7b{bottom:559.253850px;}
.yf7{bottom:566.263500px;}
.ye9{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.ybf{bottom:569.777100px;}
.y16{bottom:571.309200px;}
.ya4{bottom:577.112100px;}
.y7a{bottom:577.253850px;}
.yf6{bottom:581.263500px;}
.y128{bottom:587.232600px;}
.y49{bottom:587.770350px;}
.ybe{bottom:587.777100px;}
.y15{bottom:589.309200px;}
.ya3{bottom:595.112100px;}
.y79{bottom:595.253850px;}
.yf5{bottom:596.263500px;}
.ye8{bottom:605.230350px;}
.y48{bottom:605.770350px;}
.ybd{bottom:605.777100px;}
.y14{bottom:607.309200px;}
.yf4{bottom:611.263500px;}
.ya2{bottom:613.112100px;}
.y78{bottom:613.253850px;}
.y47{bottom:623.770350px;}
.ybc{bottom:623.777100px;}
.y13{bottom:625.309200px;}
.yf3{bottom:626.263500px;}
.ye1{bottom:631.112100px;}
.y77{bottom:631.253850px;}
.y46{bottom:641.770350px;}
.y127{bottom:641.772600px;}
.ybb{bottom:641.777100px;}
.y12{bottom:643.309200px;}
.ya1{bottom:647.952750px;}
.ye0{bottom:649.112100px;}
.y76{bottom:649.253850px;}
.y126{bottom:659.367600px;}
.yf2{bottom:659.380350px;}
.y45{bottom:659.770350px;}
.yba{bottom:659.777100px;}
.y11{bottom:661.309200px;}
.ya0{bottom:663.558750px;}
.ydf{bottom:667.112100px;}
.y75{bottom:667.253850px;}
.yf1{bottom:677.380350px;}
.y44{bottom:677.770350px;}
.yb9{bottom:677.777100px;}
.y9f{bottom:677.920350px;}
.y10{bottom:679.309200px;}
.yde{bottom:685.112100px;}
.y74{bottom:685.253850px;}
.y125{bottom:695.367600px;}
.y9e{bottom:695.515350px;}
.y43{bottom:695.770350px;}
.yb8{bottom:695.777100px;}
.yf{bottom:697.309200px;}
.ydd{bottom:703.112100px;}
.y73{bottom:703.253850px;}
.yf0{bottom:713.635350px;}
.y42{bottom:713.770350px;}
.yb7{bottom:713.777100px;}
.ye{bottom:715.309200px;}
.ydc{bottom:721.112100px;}
.y72{bottom:721.253850px;}
.yef{bottom:731.635350px;}
.y41{bottom:731.770350px;}
.y124{bottom:731.772600px;}
.yb6{bottom:731.777100px;}
.yd{bottom:733.309200px;}
.ydb{bottom:739.112100px;}
.y71{bottom:739.253850px;}
.yee{bottom:749.635350px;}
.y40{bottom:749.770350px;}
.y123{bottom:749.772600px;}
.yb5{bottom:749.777100px;}
.yc{bottom:751.309200px;}
.yda{bottom:757.112100px;}
.y70{bottom:757.253850px;}
.y122{bottom:767.367600px;}
.yed{bottom:767.635350px;}
.y3f{bottom:767.770350px;}
.yb4{bottom:767.777100px;}
.yb{bottom:769.309200px;}
.yd9{bottom:775.112100px;}
.y6f{bottom:775.253850px;}
.yec{bottom:785.635350px;}
.y3e{bottom:785.770350px;}
.yb3{bottom:785.777100px;}
.ya{bottom:787.309200px;}
.yd8{bottom:793.112100px;}
.y6e{bottom:793.253850px;}
.y15a{bottom:800.263500px;}
.yeb{bottom:803.635350px;}
.y3d{bottom:803.770350px;}
.y121{bottom:803.772600px;}
.yb2{bottom:803.777100px;}
.yd7{bottom:811.112100px;}
.y6d{bottom:811.253850px;}
.y159{bottom:815.263500px;}
.y120{bottom:821.367600px;}
.y3c{bottom:821.770350px;}
.yb1{bottom:821.777100px;}
.yd6{bottom:829.112100px;}
.y6c{bottom:829.253850px;}
.y158{bottom:830.263500px;}
.y9{bottom:832.467300px;}
.yea{bottom:839.230350px;}
.y3b{bottom:839.770350px;}
.yb0{bottom:839.777100px;}
.y8{bottom:844.918050px;}
.y157{bottom:845.263500px;}
.yd5{bottom:847.112100px;}
.y6b{bottom:847.253850px;}
.y3a{bottom:857.770350px;}
.y11f{bottom:857.772600px;}
.yaf{bottom:857.777100px;}
.y156{bottom:860.263500px;}
.yd4{bottom:865.112100px;}
.y155{bottom:875.263500px;}
.y39{bottom:875.770350px;}
.y11e{bottom:875.772600px;}
.yae{bottom:875.777100px;}
.y7{bottom:876.633600px;}
.y6a{bottom:882.094500px;}
.y154{bottom:890.263500px;}
.y11d{bottom:893.367600px;}
.y38{bottom:893.770350px;}
.yad{bottom:893.777100px;}
.y6{bottom:895.558950px;}
.y69{bottom:897.700500px;}
.yd3{bottom:899.952600px;}
.y153{bottom:905.263500px;}
.y37{bottom:911.770350px;}
.yac{bottom:911.777100px;}
.y68{bottom:912.070350px;}
.yd2{bottom:915.558600px;}
.y152{bottom:920.263500px;}
.y5{bottom:924.280950px;}
.y67{bottom:929.665350px;}
.y36{bottom:929.770350px;}
.y11c{bottom:929.772600px;}
.yab{bottom:929.777100px;}
.yd1{bottom:929.920350px;}
.y151{bottom:935.263500px;}
.yd0{bottom:947.515350px;}
.y35{bottom:947.770350px;}
.y11b{bottom:947.772600px;}
.yaa{bottom:947.777100px;}
.y150{bottom:950.263500px;}
.y14f{bottom:965.263500px;}
.y66{bottom:965.515350px;}
.y34{bottom:965.770350px;}
.y11a{bottom:965.772600px;}
.ya9{bottom:965.777100px;}
.y4{bottom:970.465200px;}
.y14e{bottom:980.263500px;}
.y65{bottom:983.515350px;}
.y33{bottom:983.770350px;}
.y119{bottom:983.772600px;}
.ya8{bottom:983.777100px;}
.y14d{bottom:995.263500px;}
.y64{bottom:1001.515350px;}
.y32{bottom:1001.770350px;}
.y118{bottom:1001.772600px;}
.ya7{bottom:1001.777100px;}
.y3{bottom:1006.926000px;}
.y14c{bottom:1010.263500px;}
.y31{bottom:1019.770350px;}
.y117{bottom:1019.772600px;}
.ya6{bottom:1019.777100px;}
.y14b{bottom:1025.263500px;}
.y63{bottom:1037.380350px;}
.y30{bottom:1037.770350px;}
.y116{bottom:1037.772600px;}
.ya5{bottom:1037.777100px;}
.y14a{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y149{bottom:1132.413900px;}
.y96{bottom:1132.418700px;}
.y15b{bottom:1132.423500px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hd{height:32.761230px;}
.h7{height:32.805176px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.h11{height:40.031250px;}
.ha{height:43.681641px;}
.hb{height:43.717434px;}
.h9{height:43.740234px;}
.h10{height:45.035156px;}
.hc{height:50.039062px;}
.h12{height:51.659063px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x25{left:99.496050px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x1f{left:113.386950px;}
.x28{left:123.307050px;}
.x3{left:125.439150px;}
.x6{left:131.811000px;}
.xc{left:144.740400px;}
.x1b{left:156.071700px;}
.x1e{left:186.160350px;}
.x1c{left:187.586700px;}
.x24{left:190.145400px;}
.x5{left:212.876400px;}
.x1d{left:218.426850px;}
.x20{left:224.802450px;}
.x9{left:455.041500px;}
.x16{left:457.097250px;}
.x13{left:472.803450px;}
.x19{left:478.330350px;}
.x7{left:480.471000px;}
.x27{left:482.598600px;}
.x15{left:491.102250px;}
.xf{left:493.985400px;}
.x29{left:503.863050px;}
.xe{left:506.060400px;}
.x10{left:509.405400px;}
.x11{left:513.290400px;}
.x12{left:545.045400px;}
.x26{left:574.820400px;}
.x14{left:581.842950px;}
.xd{left:583.475400px;}
.x22{left:600.655350px;}
.x18{left:663.492300px;}
.x2{left:693.365400px;}
.x21{left:721.717650px;}
.x17{left:728.391600px;}
.x23{left:743.868150px;}
.x1a{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls36{letter-spacing:-1.813333pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls8a{letter-spacing:-0.597333pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls8c{letter-spacing:-0.469333pt;}
.ls63{letter-spacing:-0.426667pt;}
.ls8b{letter-spacing:-0.298667pt;}
.ls48{letter-spacing:-0.266667pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls54{letter-spacing:-0.170667pt;}
.ls52{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls82{letter-spacing:-0.085333pt;}
.ls37{letter-spacing:-0.053333pt;}
.ls83{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003680pt;}
.ls70{letter-spacing:0.005333pt;}
.ls79{letter-spacing:0.042667pt;}
.ls3d{letter-spacing:0.053333pt;}
.ls47{letter-spacing:0.085333pt;}
.ls24{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls60{letter-spacing:0.170667pt;}
.ls3a{letter-spacing:0.213333pt;}
.ls45{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.266667pt;}
.ls4f{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.373333pt;}
.ls7a{letter-spacing:0.384000pt;}
.ls2e{letter-spacing:0.426667pt;}
.ls57{letter-spacing:0.469333pt;}
.ls28{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls23{letter-spacing:0.586667pt;}
.ls51{letter-spacing:0.597333pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls5a{letter-spacing:0.725333pt;}
.ls1b{letter-spacing:0.746667pt;}
.ls68{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls77{letter-spacing:0.810667pt;}
.lsa{letter-spacing:0.853333pt;}
.ls62{letter-spacing:0.896000pt;}
.ls4d{letter-spacing:0.906667pt;}
.ls85{letter-spacing:0.938667pt;}
.ls3{letter-spacing:0.960000pt;}
.ls75{letter-spacing:0.981333pt;}
.ls10{letter-spacing:1.013333pt;}
.ls59{letter-spacing:1.024000pt;}
.ls22{letter-spacing:1.066667pt;}
.ls1e{letter-spacing:1.120000pt;}
.ls78{letter-spacing:1.152000pt;}
.ls13{letter-spacing:1.173333pt;}
.ls1{letter-spacing:1.226667pt;}
.ls7b{letter-spacing:1.237333pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls7e{letter-spacing:1.322667pt;}
.ls19{letter-spacing:1.333333pt;}
.ls18{letter-spacing:1.386667pt;}
.ls89{letter-spacing:1.408000pt;}
.ls16{letter-spacing:1.440000pt;}
.ls7c{letter-spacing:1.450667pt;}
.ls41{letter-spacing:1.493333pt;}
.ls3b{letter-spacing:1.546667pt;}
.ls86{letter-spacing:1.578667pt;}
.ls20{letter-spacing:1.600000pt;}
.ls15{letter-spacing:1.653333pt;}
.ls9{letter-spacing:1.706667pt;}
.ls29{letter-spacing:1.760000pt;}
.ls76{letter-spacing:1.792000pt;}
.ls1f{letter-spacing:1.813333pt;}
.ls35{letter-spacing:1.866667pt;}
.ls3c{letter-spacing:1.920000pt;}
.ls7d{letter-spacing:1.962667pt;}
.ls66{letter-spacing:1.973333pt;}
.ls84{letter-spacing:2.005333pt;}
.lsf{letter-spacing:2.026667pt;}
.ls2b{letter-spacing:2.080000pt;}
.ls4c{letter-spacing:2.133333pt;}
.ls3f{letter-spacing:2.186667pt;}
.ls26{letter-spacing:2.240000pt;}
.ls6c{letter-spacing:2.261333pt;}
.lse{letter-spacing:2.293333pt;}
.ls6f{letter-spacing:2.304000pt;}
.ls14{letter-spacing:2.346667pt;}
.ls11{letter-spacing:2.400000pt;}
.ls7f{letter-spacing:2.432000pt;}
.ls2a{letter-spacing:2.453333pt;}
.ls1c{letter-spacing:2.506667pt;}
.ls55{letter-spacing:2.560000pt;}
.ls31{letter-spacing:2.613333pt;}
.ls1d{letter-spacing:2.666667pt;}
.ls21{letter-spacing:2.720000pt;}
.ls30{letter-spacing:2.773333pt;}
.ls34{letter-spacing:2.880000pt;}
.ls4a{letter-spacing:2.915200pt;}
.ls25{letter-spacing:2.933333pt;}
.ls4e{letter-spacing:2.986667pt;}
.ls5b{letter-spacing:3.093333pt;}
.ls33{letter-spacing:3.146667pt;}
.ls5e{letter-spacing:3.200000pt;}
.ls2f{letter-spacing:3.253333pt;}
.ls5c{letter-spacing:3.520000pt;}
.ls5d{letter-spacing:3.573333pt;}
.ls6b{letter-spacing:3.626667pt;}
.ls61{letter-spacing:3.669333pt;}
.ls87{letter-spacing:3.712000pt;}
.ls69{letter-spacing:3.786667pt;}
.ls46{letter-spacing:3.797333pt;}
.ls50{letter-spacing:3.840000pt;}
.ls80{letter-spacing:3.882667pt;}
.ls3e{letter-spacing:3.946667pt;}
.ls58{letter-spacing:4.010667pt;}
.ls72{letter-spacing:4.160000pt;}
.ls53{letter-spacing:4.213333pt;}
.ls6d{letter-spacing:4.480000pt;}
.ls88{letter-spacing:4.522667pt;}
.ls81{letter-spacing:4.533333pt;}
.ls74{letter-spacing:4.586667pt;}
.ls56{letter-spacing:4.640000pt;}
.ls6{letter-spacing:4.746667pt;}
.ls43{letter-spacing:4.853333pt;}
.ls42{letter-spacing:4.960000pt;}
.ls44{letter-spacing:4.978133pt;}
.ls67{letter-spacing:5.120000pt;}
.ls32{letter-spacing:5.173333pt;}
.ls49{letter-spacing:5.226667pt;}
.ls12{letter-spacing:5.386667pt;}
.lsd{letter-spacing:5.813333pt;}
.ls71{letter-spacing:5.920000pt;}
.ls65{letter-spacing:5.973333pt;}
.ls6a{letter-spacing:6.186667pt;}
.ls64{letter-spacing:6.720000pt;}
.ls27{letter-spacing:6.773333pt;}
.ls5f{letter-spacing:6.826667pt;}
.ls4b{letter-spacing:7.253333pt;}
.ls73{letter-spacing:8.533333pt;}
.ls6e{letter-spacing:8.906667pt;}
.ws0{word-spacing:-31.284267pt;}
.wsb{word-spacing:-19.146667pt;}
.ws75{word-spacing:-17.813333pt;}
.ws48{word-spacing:-17.546667pt;}
.ws77{word-spacing:-16.320000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws55{word-spacing:-15.733333pt;}
.ws14{word-spacing:-15.093333pt;}
.ws76{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.wse{word-spacing:-14.666667pt;}
.ws7d{word-spacing:-14.549333pt;}
.wsd{word-spacing:-14.506667pt;}
.ws10{word-spacing:-14.453333pt;}
.ws61{word-spacing:-14.400000pt;}
.wsc{word-spacing:-14.293333pt;}
.ws13{word-spacing:-14.186667pt;}
.ws3e{word-spacing:-14.133333pt;}
.ws15{word-spacing:-14.080000pt;}
.ws3d{word-spacing:-13.973333pt;}
.ws2e{word-spacing:-13.920000pt;}
.ws11{word-spacing:-13.333333pt;}
.ws54{word-spacing:-13.280000pt;}
.ws2f{word-spacing:-13.120000pt;}
.ws79{word-spacing:-12.629333pt;}
.ws78{word-spacing:-12.458667pt;}
.wsa1{word-spacing:-12.074667pt;}
.ws12{word-spacing:-12.000000pt;}
.ws7f{word-spacing:-11.946667pt;}
.ws4{word-spacing:-11.861333pt;}
.ws7e{word-spacing:-11.818667pt;}
.ws9e{word-spacing:-11.733333pt;}
.wsa0{word-spacing:-11.690667pt;}
.ws9d{word-spacing:-11.520000pt;}
.ws7b{word-spacing:-11.264000pt;}
.ws4c{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.ws3f{word-spacing:-10.965333pt;}
.ws30{word-spacing:-10.922667pt;}
.ws56{word-spacing:-10.837333pt;}
.ws62{word-spacing:-10.666667pt;}
.ws7c{word-spacing:-10.624000pt;}
.ws7a{word-spacing:-10.581333pt;}
.ws49{word-spacing:-10.496000pt;}
.ws89{word-spacing:-10.453333pt;}
.wsa2{word-spacing:-10.368000pt;}
.ws85{word-spacing:-10.325333pt;}
.wsa3{word-spacing:-10.197333pt;}
.ws9f{word-spacing:-10.069333pt;}
.ws1{word-spacing:-9.076144pt;}
.ws8f{word-spacing:-9.045333pt;}
.ws8d{word-spacing:-7.722667pt;}
.ws84{word-spacing:-6.954667pt;}
.ws95{word-spacing:-4.736000pt;}
.ws87{word-spacing:-4.437333pt;}
.ws91{word-spacing:-4.309333pt;}
.ws9b{word-spacing:-3.882667pt;}
.ws90{word-spacing:-3.114667pt;}
.ws82{word-spacing:-2.933333pt;}
.ws1a{word-spacing:-2.666667pt;}
.ws6{word-spacing:-2.565333pt;}
.ws5d{word-spacing:-2.400000pt;}
.wsa5{word-spacing:-2.346667pt;}
.ws96{word-spacing:-2.304000pt;}
.ws94{word-spacing:-2.005333pt;}
.ws1e{word-spacing:-1.973333pt;}
.ws92{word-spacing:-1.962667pt;}
.ws8b{word-spacing:-1.792000pt;}
.ws23{word-spacing:-1.760000pt;}
.ws17{word-spacing:-1.706667pt;}
.ws80{word-spacing:-1.493333pt;}
.wsa8{word-spacing:-1.408000pt;}
.ws9c{word-spacing:-1.280000pt;}
.ws72{word-spacing:-1.226667pt;}
.ws81{word-spacing:-1.173333pt;}
.ws99{word-spacing:-1.152000pt;}
.ws64{word-spacing:-1.066667pt;}
.wsa7{word-spacing:-1.024000pt;}
.ws73{word-spacing:-1.013333pt;}
.ws8{word-spacing:-0.960000pt;}
.ws86{word-spacing:-0.896000pt;}
.wsa4{word-spacing:-0.853333pt;}
.ws37{word-spacing:-0.746667pt;}
.ws66{word-spacing:-0.693333pt;}
.ws8a{word-spacing:-0.597333pt;}
.ws35{word-spacing:-0.586667pt;}
.ws34{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.469333pt;}
.ws47{word-spacing:-0.298667pt;}
.ws3a{word-spacing:-0.256000pt;}
.ws4a{word-spacing:-0.170667pt;}
.ws71{word-spacing:-0.160000pt;}
.ws63{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.053333pt;}
.ws6f{word-spacing:0.160000pt;}
.ws4b{word-spacing:0.170667pt;}
.ws26{word-spacing:0.213333pt;}
.ws36{word-spacing:0.266667pt;}
.ws46{word-spacing:0.320000pt;}
.ws18{word-spacing:0.480000pt;}
.ws57{word-spacing:0.533333pt;}
.ws6b{word-spacing:0.586667pt;}
.wsa6{word-spacing:0.640000pt;}
.ws69{word-spacing:0.746667pt;}
.ws67{word-spacing:0.768000pt;}
.ws88{word-spacing:0.810667pt;}
.ws16{word-spacing:0.906667pt;}
.ws2d{word-spacing:0.981333pt;}
.ws6d{word-spacing:1.024000pt;}
.ws5b{word-spacing:1.066667pt;}
.ws33{word-spacing:1.120000pt;}
.ws1c{word-spacing:1.173333pt;}
.ws25{word-spacing:1.280000pt;}
.ws4e{word-spacing:1.386667pt;}
.ws70{word-spacing:1.440000pt;}
.wsa9{word-spacing:1.450667pt;}
.ws3b{word-spacing:1.493333pt;}
.ws29{word-spacing:1.546667pt;}
.ws28{word-spacing:1.600000pt;}
.ws8e{word-spacing:1.792000pt;}
.ws20{word-spacing:1.813333pt;}
.ws6e{word-spacing:1.834667pt;}
.ws2c{word-spacing:1.920000pt;}
.ws40{word-spacing:1.973333pt;}
.ws60{word-spacing:2.005333pt;}
.ws4f{word-spacing:2.133333pt;}
.ws9a{word-spacing:2.176000pt;}
.ws74{word-spacing:2.261333pt;}
.ws2a{word-spacing:2.293333pt;}
.ws5c{word-spacing:2.346667pt;}
.ws93{word-spacing:2.389333pt;}
.ws31{word-spacing:2.400000pt;}
.ws2b{word-spacing:2.506667pt;}
.ws8c{word-spacing:2.517333pt;}
.ws59{word-spacing:2.560000pt;}
.ws24{word-spacing:2.613333pt;}
.ws50{word-spacing:2.666667pt;}
.ws22{word-spacing:2.773333pt;}
.ws51{word-spacing:2.880000pt;}
.ws44{word-spacing:2.933333pt;}
.ws6a{word-spacing:2.986667pt;}
.ws1f{word-spacing:3.093333pt;}
.ws4d{word-spacing:3.146667pt;}
.ws1b{word-spacing:3.253333pt;}
.ws5e{word-spacing:3.360000pt;}
.ws58{word-spacing:3.413333pt;}
.ws83{word-spacing:3.466667pt;}
.ws3c{word-spacing:3.498667pt;}
.ws45{word-spacing:3.520000pt;}
.ws38{word-spacing:3.541333pt;}
.ws27{word-spacing:3.626667pt;}
.ws5f{word-spacing:3.669333pt;}
.ws68{word-spacing:3.680000pt;}
.ws42{word-spacing:3.733333pt;}
.ws43{word-spacing:3.786667pt;}
.ws39{word-spacing:3.797333pt;}
.ws41{word-spacing:3.840000pt;}
.ws32{word-spacing:3.946667pt;}
.ws65{word-spacing:4.000000pt;}
.ws52{word-spacing:4.010667pt;}
.ws5a{word-spacing:4.053333pt;}
.ws21{word-spacing:4.106667pt;}
.ws1d{word-spacing:4.266667pt;}
.ws6c{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.ws98{word-spacing:4.853333pt;}
.ws97{word-spacing:4.906667pt;}
.ws19{word-spacing:6.560000pt;}
._c{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._5{margin-left:-6.720000pt;}
._e{margin-left:-5.818667pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.328000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.008000pt;}
._6{width:0.938667pt;}
._8{width:2.634667pt;}
._a{width:3.893333pt;}
._b{width:4.970667pt;}
._7{width:5.866667pt;}
._9{width:7.146667pt;}
._13{width:8.810667pt;}
._11{width:33.882667pt;}
._12{width:36.437333pt;}
._f{width:38.186667pt;}
._14{width:54.954667pt;}
._10{width:56.746667pt;}
.fs5{font-size:23.320000pt;}
.fs4{font-size:32.648000pt;}
.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;}
.y2f{bottom:42.468667pt;}
.ye7{bottom:73.882667pt;}
.y9d{bottom:73.966667pt;}
.ycf{bottom:73.977200pt;}
.ye3{bottom:73.998000pt;}
.yc3{bottom:74.260667pt;}
.y62{bottom:74.342533pt;}
.y98{bottom:74.564933pt;}
.yc6{bottom:74.743467pt;}
.ycb{bottom:75.100533pt;}
.y2c{bottom:78.246000pt;}
.y148{bottom:79.219467pt;}
.y115{bottom:79.797867pt;}
.y95{bottom:81.114533pt;}
.ye6{bottom:87.877333pt;}
.y9c{bottom:87.961333pt;}
.yce{bottom:87.971867pt;}
.ye2{bottom:87.992667pt;}
.yc2{bottom:88.255333pt;}
.y97{bottom:88.559600pt;}
.yc5{bottom:88.738133pt;}
.yca{bottom:89.095200pt;}
.y61{bottom:90.342533pt;}
.y2b{bottom:91.576000pt;}
.y147{bottom:92.552800pt;}
.y114{bottom:95.797867pt;}
.y94{bottom:97.114533pt;}
.ye5{bottom:101.872000pt;}
.y9b{bottom:101.956000pt;}
.ycd{bottom:101.966533pt;}
.yc1{bottom:102.250000pt;}
.yc4{bottom:102.732800pt;}
.yc9{bottom:103.089867pt;}
.y146{bottom:105.886133pt;}
.y60{bottom:106.342533pt;}
.y113{bottom:111.437867pt;}
.y93{bottom:113.114533pt;}
.ye4{bottom:115.866667pt;}
.y9a{bottom:115.950667pt;}
.ycc{bottom:115.961200pt;}
.yc0{bottom:116.244667pt;}
.yc8{bottom:117.084533pt;}
.y145{bottom:119.219467pt;}
.y5f{bottom:122.342533pt;}
.y92{bottom:129.114533pt;}
.y99{bottom:129.945333pt;}
.yc7{bottom:131.079200pt;}
.y144{bottom:132.552800pt;}
.y5e{bottom:138.342533pt;}
.y112{bottom:143.345333pt;}
.y91{bottom:145.114533pt;}
.y28{bottom:145.832667pt;}
.y143{bottom:145.886133pt;}
.y5d{bottom:154.342533pt;}
.y111{bottom:156.678667pt;}
.y142{bottom:159.219467pt;}
.y90{bottom:161.114533pt;}
.y27{bottom:161.832667pt;}
.y110{bottom:170.012000pt;}
.y5c{bottom:170.342533pt;}
.y141{bottom:172.552800pt;}
.y8f{bottom:177.114533pt;}
.y26{bottom:177.832667pt;}
.y10f{bottom:183.345333pt;}
.y140{bottom:185.886133pt;}
.y5b{bottom:186.342533pt;}
.y8e{bottom:193.114533pt;}
.y2a{bottom:193.832667pt;}
.y10e{bottom:196.678667pt;}
.y13f{bottom:199.219467pt;}
.y5a{bottom:202.342533pt;}
.y8d{bottom:209.114533pt;}
.y25{bottom:209.474667pt;}
.y29{bottom:209.832667pt;}
.y10d{bottom:210.012000pt;}
.y13e{bottom:212.552800pt;}
.y59{bottom:218.342533pt;}
.y10c{bottom:223.345333pt;}
.y8c{bottom:225.114533pt;}
.y13d{bottom:225.886133pt;}
.y58{bottom:234.342533pt;}
.y10b{bottom:236.678667pt;}
.y13c{bottom:239.219467pt;}
.y8b{bottom:241.114533pt;}
.y10a{bottom:250.012000pt;}
.y57{bottom:250.342533pt;}
.y13b{bottom:252.552800pt;}
.y8a{bottom:257.114533pt;}
.y109{bottom:263.345333pt;}
.y13a{bottom:265.886133pt;}
.y56{bottom:266.342533pt;}
.y89{bottom:273.114533pt;}
.y24{bottom:275.523733pt;}
.y108{bottom:276.678667pt;}
.y139{bottom:279.219467pt;}
.y55{bottom:282.342533pt;}
.y88{bottom:289.114533pt;}
.y107{bottom:290.012000pt;}
.y138{bottom:292.552800pt;}
.y54{bottom:298.342533pt;}
.y23{bottom:299.830400pt;}
.y106{bottom:303.345333pt;}
.y87{bottom:305.114533pt;}
.y137{bottom:305.886133pt;}
.y53{bottom:314.342533pt;}
.y22{bottom:315.830400pt;}
.y105{bottom:316.678667pt;}
.y136{bottom:319.219467pt;}
.y86{bottom:321.114533pt;}
.y104{bottom:330.012000pt;}
.y52{bottom:330.342533pt;}
.y21{bottom:331.830400pt;}
.y135{bottom:332.552800pt;}
.y85{bottom:337.114533pt;}
.y103{bottom:343.345333pt;}
.y134{bottom:345.886133pt;}
.y51{bottom:346.342533pt;}
.y20{bottom:347.830400pt;}
.y84{bottom:353.114533pt;}
.y102{bottom:356.678667pt;}
.y133{bottom:359.219467pt;}
.y50{bottom:362.342533pt;}
.y1f{bottom:363.830400pt;}
.y83{bottom:369.114533pt;}
.y101{bottom:370.012000pt;}
.y132{bottom:372.552800pt;}
.y4f{bottom:378.342533pt;}
.y1e{bottom:379.830400pt;}
.y100{bottom:383.345333pt;}
.y82{bottom:385.114533pt;}
.y131{bottom:385.886133pt;}
.y1d{bottom:395.830400pt;}
.yff{bottom:396.678667pt;}
.y130{bottom:399.219467pt;}
.y81{bottom:401.114533pt;}
.y4e{bottom:409.982533pt;}
.yfe{bottom:410.012000pt;}
.y1c{bottom:411.830400pt;}
.y12f{bottom:412.552800pt;}
.y80{bottom:417.114533pt;}
.yfd{bottom:423.345333pt;}
.y12e{bottom:425.886133pt;}
.y1b{bottom:427.830400pt;}
.y7f{bottom:433.114533pt;}
.yfc{bottom:436.678667pt;}
.y12d{bottom:439.219467pt;}
.y1a{bottom:443.830400pt;}
.y7e{bottom:449.114533pt;}
.yfb{bottom:450.012000pt;}
.y12c{bottom:452.552800pt;}
.y4d{bottom:458.462533pt;}
.y19{bottom:459.830400pt;}
.yfa{bottom:463.345333pt;}
.y7d{bottom:465.114533pt;}
.y12b{bottom:465.886133pt;}
.y4c{bottom:474.462533pt;}
.y18{bottom:475.830400pt;}
.yf9{bottom:476.678667pt;}
.y12a{bottom:479.219467pt;}
.y7c{bottom:481.114533pt;}
.yf8{bottom:490.012000pt;}
.y4b{bottom:490.462533pt;}
.y17{bottom:491.830400pt;}
.y129{bottom:492.552800pt;}
.y7b{bottom:497.114533pt;}
.yf7{bottom:503.345333pt;}
.ye9{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.ybf{bottom:506.468533pt;}
.y16{bottom:507.830400pt;}
.ya4{bottom:512.988533pt;}
.y7a{bottom:513.114533pt;}
.yf6{bottom:516.678667pt;}
.y128{bottom:521.984533pt;}
.y49{bottom:522.462533pt;}
.ybe{bottom:522.468533pt;}
.y15{bottom:523.830400pt;}
.ya3{bottom:528.988533pt;}
.y79{bottom:529.114533pt;}
.yf5{bottom:530.012000pt;}
.ye8{bottom:537.982533pt;}
.y48{bottom:538.462533pt;}
.ybd{bottom:538.468533pt;}
.y14{bottom:539.830400pt;}
.yf4{bottom:543.345333pt;}
.ya2{bottom:544.988533pt;}
.y78{bottom:545.114533pt;}
.y47{bottom:554.462533pt;}
.ybc{bottom:554.468533pt;}
.y13{bottom:555.830400pt;}
.yf3{bottom:556.678667pt;}
.ye1{bottom:560.988533pt;}
.y77{bottom:561.114533pt;}
.y46{bottom:570.462533pt;}
.y127{bottom:570.464533pt;}
.ybb{bottom:570.468533pt;}
.y12{bottom:571.830400pt;}
.ya1{bottom:575.958000pt;}
.ye0{bottom:576.988533pt;}
.y76{bottom:577.114533pt;}
.y126{bottom:586.104533pt;}
.yf2{bottom:586.115867pt;}
.y45{bottom:586.462533pt;}
.yba{bottom:586.468533pt;}
.y11{bottom:587.830400pt;}
.ya0{bottom:589.830000pt;}
.ydf{bottom:592.988533pt;}
.y75{bottom:593.114533pt;}
.yf1{bottom:602.115867pt;}
.y44{bottom:602.462533pt;}
.yb9{bottom:602.468533pt;}
.y9f{bottom:602.595867pt;}
.y10{bottom:603.830400pt;}
.yde{bottom:608.988533pt;}
.y74{bottom:609.114533pt;}
.y125{bottom:618.104533pt;}
.y9e{bottom:618.235867pt;}
.y43{bottom:618.462533pt;}
.yb8{bottom:618.468533pt;}
.yf{bottom:619.830400pt;}
.ydd{bottom:624.988533pt;}
.y73{bottom:625.114533pt;}
.yf0{bottom:634.342533pt;}
.y42{bottom:634.462533pt;}
.yb7{bottom:634.468533pt;}
.ye{bottom:635.830400pt;}
.ydc{bottom:640.988533pt;}
.y72{bottom:641.114533pt;}
.yef{bottom:650.342533pt;}
.y41{bottom:650.462533pt;}
.y124{bottom:650.464533pt;}
.yb6{bottom:650.468533pt;}
.yd{bottom:651.830400pt;}
.ydb{bottom:656.988533pt;}
.y71{bottom:657.114533pt;}
.yee{bottom:666.342533pt;}
.y40{bottom:666.462533pt;}
.y123{bottom:666.464533pt;}
.yb5{bottom:666.468533pt;}
.yc{bottom:667.830400pt;}
.yda{bottom:672.988533pt;}
.y70{bottom:673.114533pt;}
.y122{bottom:682.104533pt;}
.yed{bottom:682.342533pt;}
.y3f{bottom:682.462533pt;}
.yb4{bottom:682.468533pt;}
.yb{bottom:683.830400pt;}
.yd9{bottom:688.988533pt;}
.y6f{bottom:689.114533pt;}
.yec{bottom:698.342533pt;}
.y3e{bottom:698.462533pt;}
.yb3{bottom:698.468533pt;}
.ya{bottom:699.830400pt;}
.yd8{bottom:704.988533pt;}
.y6e{bottom:705.114533pt;}
.y15a{bottom:711.345333pt;}
.yeb{bottom:714.342533pt;}
.y3d{bottom:714.462533pt;}
.y121{bottom:714.464533pt;}
.yb2{bottom:714.468533pt;}
.yd7{bottom:720.988533pt;}
.y6d{bottom:721.114533pt;}
.y159{bottom:724.678667pt;}
.y120{bottom:730.104533pt;}
.y3c{bottom:730.462533pt;}
.yb1{bottom:730.468533pt;}
.yd6{bottom:736.988533pt;}
.y6c{bottom:737.114533pt;}
.y158{bottom:738.012000pt;}
.y9{bottom:739.970933pt;}
.yea{bottom:745.982533pt;}
.y3b{bottom:746.462533pt;}
.yb0{bottom:746.468533pt;}
.y8{bottom:751.038267pt;}
.y157{bottom:751.345333pt;}
.yd5{bottom:752.988533pt;}
.y6b{bottom:753.114533pt;}
.y3a{bottom:762.462533pt;}
.y11f{bottom:762.464533pt;}
.yaf{bottom:762.468533pt;}
.y156{bottom:764.678667pt;}
.yd4{bottom:768.988533pt;}
.y155{bottom:778.012000pt;}
.y39{bottom:778.462533pt;}
.y11e{bottom:778.464533pt;}
.yae{bottom:778.468533pt;}
.y7{bottom:779.229867pt;}
.y6a{bottom:784.084000pt;}
.y154{bottom:791.345333pt;}
.y11d{bottom:794.104533pt;}
.y38{bottom:794.462533pt;}
.yad{bottom:794.468533pt;}
.y6{bottom:796.052400pt;}
.y69{bottom:797.956000pt;}
.yd3{bottom:799.957867pt;}
.y153{bottom:804.678667pt;}
.y37{bottom:810.462533pt;}
.yac{bottom:810.468533pt;}
.y68{bottom:810.729200pt;}
.yd2{bottom:813.829867pt;}
.y152{bottom:818.012000pt;}
.y5{bottom:821.583067pt;}
.y67{bottom:826.369200pt;}
.y36{bottom:826.462533pt;}
.y11c{bottom:826.464533pt;}
.yab{bottom:826.468533pt;}
.yd1{bottom:826.595867pt;}
.y151{bottom:831.345333pt;}
.yd0{bottom:842.235867pt;}
.y35{bottom:842.462533pt;}
.y11b{bottom:842.464533pt;}
.yaa{bottom:842.468533pt;}
.y150{bottom:844.678667pt;}
.y14f{bottom:858.012000pt;}
.y66{bottom:858.235867pt;}
.y34{bottom:858.462533pt;}
.y11a{bottom:858.464533pt;}
.ya9{bottom:858.468533pt;}
.y4{bottom:862.635733pt;}
.y14e{bottom:871.345333pt;}
.y65{bottom:874.235867pt;}
.y33{bottom:874.462533pt;}
.y119{bottom:874.464533pt;}
.ya8{bottom:874.468533pt;}
.y14d{bottom:884.678667pt;}
.y64{bottom:890.235867pt;}
.y32{bottom:890.462533pt;}
.y118{bottom:890.464533pt;}
.ya7{bottom:890.468533pt;}
.y3{bottom:895.045333pt;}
.y14c{bottom:898.012000pt;}
.y31{bottom:906.462533pt;}
.y117{bottom:906.464533pt;}
.ya6{bottom:906.468533pt;}
.y14b{bottom:911.345333pt;}
.y63{bottom:922.115867pt;}
.y30{bottom:922.462533pt;}
.y116{bottom:922.464533pt;}
.ya5{bottom:922.468533pt;}
.y14a{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y149{bottom:1006.590133pt;}
.y96{bottom:1006.594400pt;}
.y15b{bottom:1006.598667pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hd{height:29.121094pt;}
.h7{height:29.160156pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.h11{height:35.583333pt;}
.ha{height:38.828125pt;}
.hb{height:38.859942pt;}
.h9{height:38.880208pt;}
.h10{height:40.031250pt;}
.hc{height:44.479167pt;}
.h12{height:45.919167pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x25{left:88.440933pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x1f{left:100.788400pt;}
.x28{left:109.606267pt;}
.x3{left:111.501467pt;}
.x6{left:117.165333pt;}
.xc{left:128.658133pt;}
.x1b{left:138.730400pt;}
.x1e{left:165.475867pt;}
.x1c{left:166.743733pt;}
.x24{left:169.018133pt;}
.x5{left:189.223467pt;}
.x1d{left:194.157200pt;}
.x20{left:199.824400pt;}
.x9{left:404.481333pt;}
.x16{left:406.308667pt;}
.x13{left:420.269733pt;}
.x19{left:425.182533pt;}
.x7{left:427.085333pt;}
.x27{left:428.976533pt;}
.x15{left:436.535333pt;}
.xf{left:439.098133pt;}
.x29{left:447.878267pt;}
.xe{left:449.831467pt;}
.x10{left:452.804800pt;}
.x11{left:456.258133pt;}
.x12{left:484.484800pt;}
.x26{left:510.951467pt;}
.x14{left:517.193733pt;}
.xd{left:518.644800pt;}
.x22{left:533.915867pt;}
.x18{left:589.770933pt;}
.x2{left:616.324800pt;}
.x21{left:641.526800pt;}
.x17{left:647.459200pt;}
.x23{left:661.216133pt;}
.x1a{left:666.356800pt;}
}




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