
    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_c14d708373de12f2f4719f7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9869474c15c38619fe1dd663.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_864c552cdd2a160bf897aa0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_2ba9ef0c30f25bfb1fc75dba.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_4f3df82d7feae1512bdba5ba.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_412cc83c0aeba03f8ab87de2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_8a49a0a13b0f3a1c2052c325.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1867ee7c472940038d86b1c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.810000;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_31f6b8735ee95ea220137424.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_86014011152aedb94d0f624c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_adade3c1e85317da23f74a27.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091309;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:ffc;src:url('chunks/assets/font_0daa178ca643294d474b90d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.730957;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:ffd;src:url('chunks/assets/font_93391dc23d4a2a8224f5ab94.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-15.956400px;}
.v3{vertical-align:-4.054800px;}
.v2{vertical-align:-2.940000px;}
.v1{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v4{vertical-align:14.976000px;}
.ls63{letter-spacing:-2.220000px;}
.ls10{letter-spacing:-0.780000px;}
.ls13{letter-spacing:-0.480000px;}
.ls34{letter-spacing:-0.432000px;}
.ls90{letter-spacing:-0.288000px;}
.ls64{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.120000px;}
.ls12{letter-spacing:-0.060000px;}
.ls41{letter-spacing:-0.048000px;}
.lsf{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.007200px;}
.ls59{letter-spacing:0.009600px;}
.ls5a{letter-spacing:0.010200px;}
.ls83{letter-spacing:0.048000px;}
.ls58{letter-spacing:0.053400px;}
.ls7{letter-spacing:0.060000px;}
.ls2a{letter-spacing:0.120000px;}
.ls8d{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.164400px;}
.ls40{letter-spacing:0.180000px;}
.ls4d{letter-spacing:0.205800px;}
.ls3{letter-spacing:0.240000px;}
.ls87{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.300000px;}
.ls4e{letter-spacing:0.352200px;}
.ls6{letter-spacing:0.360000px;}
.ls66{letter-spacing:0.384000px;}
.ls3d{letter-spacing:0.420000px;}
.ls7e{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls7c{letter-spacing:0.528000px;}
.ls4{letter-spacing:0.540000px;}
.ls6b{letter-spacing:0.576000px;}
.ls55{letter-spacing:0.600000px;}
.ls6f{letter-spacing:0.624000px;}
.ls52{letter-spacing:0.632400px;}
.ls18{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.733200px;}
.ls1c{letter-spacing:0.733800px;}
.ls22{letter-spacing:0.751200px;}
.ls77{letter-spacing:0.768000px;}
.ls16{letter-spacing:0.780000px;}
.ls7b{letter-spacing:0.816000px;}
.ls26{letter-spacing:0.840000px;}
.ls89{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.900000px;}
.ls8e{letter-spacing:0.912000px;}
.ls8{letter-spacing:0.960000px;}
.ls4f{letter-spacing:0.984600px;}
.ls51{letter-spacing:0.985200px;}
.ls79{letter-spacing:1.008000px;}
.lse{letter-spacing:1.020000px;}
.ls69{letter-spacing:1.056000px;}
.ls54{letter-spacing:1.063800px;}
.ls53{letter-spacing:1.064400px;}
.ls4a{letter-spacing:1.075800px;}
.ls5{letter-spacing:1.080000px;}
.ls71{letter-spacing:1.104000px;}
.ls25{letter-spacing:1.140000px;}
.ls68{letter-spacing:1.152000px;}
.ls2{letter-spacing:1.200000px;}
.ls56{letter-spacing:1.216200px;}
.ls1d{letter-spacing:1.232400px;}
.ls1b{letter-spacing:1.237800px;}
.ls8a{letter-spacing:1.248000px;}
.ls5c{letter-spacing:1.248600px;}
.ls21{letter-spacing:1.260000px;}
.ls3f{letter-spacing:1.344000px;}
.ls17{letter-spacing:1.380000px;}
.ls7d{letter-spacing:1.392000px;}
.ls0{letter-spacing:1.440000px;}
.ls3b{letter-spacing:1.462800px;}
.ls9{letter-spacing:1.500000px;}
.ls6a{letter-spacing:1.536000px;}
.ls42{letter-spacing:1.560000px;}
.ls65{letter-spacing:1.584000px;}
.ls46{letter-spacing:1.600800px;}
.ls48{letter-spacing:1.601400px;}
.ls44{letter-spacing:1.620000px;}
.ls6e{letter-spacing:1.632000px;}
.ls50{letter-spacing:1.651200px;}
.ls24{letter-spacing:1.680000px;}
.ls72{letter-spacing:1.728000px;}
.ls1a{letter-spacing:1.740000px;}
.ls28{letter-spacing:1.800000px;}
.ls4b{letter-spacing:1.803000px;}
.ls8f{letter-spacing:1.824000px;}
.ls19{letter-spacing:1.860000px;}
.ls82{letter-spacing:1.872000px;}
.ls60{letter-spacing:1.920000px;}
.ls80{letter-spacing:1.968000px;}
.ls57{letter-spacing:2.037000px;}
.ls37{letter-spacing:2.040000px;}
.ls75{letter-spacing:2.064000px;}
.ls5d{letter-spacing:2.090400px;}
.ls5b{letter-spacing:2.100000px;}
.ls8b{letter-spacing:2.112000px;}
.ls36{letter-spacing:2.160000px;}
.ls88{letter-spacing:2.208000px;}
.ls1f{letter-spacing:2.220000px;}
.ls86{letter-spacing:2.304000px;}
.ls61{letter-spacing:2.340000px;}
.lsd{letter-spacing:2.400000px;}
.ls3a{letter-spacing:2.460000px;}
.ls1{letter-spacing:2.520000px;}
.ls74{letter-spacing:2.592000px;}
.ls23{letter-spacing:2.640000px;}
.ls49{letter-spacing:2.678400px;}
.ls47{letter-spacing:2.679000px;}
.ls67{letter-spacing:2.688000px;}
.ls2b{letter-spacing:2.700000px;}
.ls45{letter-spacing:2.739000px;}
.lsc{letter-spacing:2.760000px;}
.ls3e{letter-spacing:2.820000px;}
.ls4c{letter-spacing:2.880000px;}
.ls85{letter-spacing:2.928000px;}
.ls38{letter-spacing:2.940000px;}
.ls5f{letter-spacing:3.000000px;}
.ls6c{letter-spacing:3.024000px;}
.ls6d{letter-spacing:3.072000px;}
.ls70{letter-spacing:3.168000px;}
.ls7a{letter-spacing:3.216000px;}
.ls7f{letter-spacing:3.264000px;}
.ls39{letter-spacing:3.360000px;}
.ls76{letter-spacing:3.504000px;}
.ls43{letter-spacing:3.600000px;}
.ls81{letter-spacing:3.744000px;}
.ls84{letter-spacing:3.792000px;}
.ls73{letter-spacing:3.840000px;}
.ls8c{letter-spacing:3.888000px;}
.ls78{letter-spacing:3.936000px;}
.ls62{letter-spacing:3.960000px;}
.ls29{letter-spacing:4.500000px;}
.ls35{letter-spacing:4.800000px;}
.ls5e{letter-spacing:4.920000px;}
.ls20{letter-spacing:5.100000px;}
.ls2c{letter-spacing:5.460000px;}
.lsa{letter-spacing:8.220000px;}
.ls2f{letter-spacing:68.040000px;}
.ls32{letter-spacing:98.355000px;}
.ls3c{letter-spacing:299.376000px;}
.ls31{letter-spacing:328.905000px;}
.ls30{letter-spacing:769.230000px;}
.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;}
}
.ws34{word-spacing:-172.176000px;}
.ws1{word-spacing:-60.000000px;}
.ws31{word-spacing:-48.000000px;}
.ws45{word-spacing:-18.720000px;}
.ws3f{word-spacing:-18.600000px;}
.ws3a{word-spacing:-17.820000px;}
.ws44{word-spacing:-17.520000px;}
.ws42{word-spacing:-17.100000px;}
.ws43{word-spacing:-17.040000px;}
.ws0{word-spacing:-16.680000px;}
.ws3e{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.260000px;}
.ws5b{word-spacing:-15.936000px;}
.ws61{word-spacing:-15.744000px;}
.ws41{word-spacing:-15.600000px;}
.wsc{word-spacing:-15.480000px;}
.ws40{word-spacing:-15.360000px;}
.ws5d{word-spacing:-15.216000px;}
.ws2f{word-spacing:-15.000000px;}
.ws62{word-spacing:-14.160000px;}
.ws86{word-spacing:-14.064000px;}
.ws5e{word-spacing:-13.392000px;}
.ws2{word-spacing:-13.344000px;}
.ws56{word-spacing:-13.152000px;}
.ws58{word-spacing:-13.104000px;}
.ws5c{word-spacing:-13.008000px;}
.ws85{word-spacing:-12.912000px;}
.ws57{word-spacing:-12.624000px;}
.ws60{word-spacing:-12.576000px;}
.ws5f{word-spacing:-12.432000px;}
.ws5a{word-spacing:-12.240000px;}
.ws63{word-spacing:-12.048000px;}
.ws2c{word-spacing:-12.000000px;}
.ws59{word-spacing:-11.952000px;}
.ws28{word-spacing:-11.250000px;}
.wse{word-spacing:-9.000000px;}
.ws2b{word-spacing:-7.200000px;}
.ws10{word-spacing:-6.750000px;}
.ws27{word-spacing:-5.520000px;}
.ws17{word-spacing:-5.100000px;}
.ws7f{word-spacing:-3.792000px;}
.ws7e{word-spacing:-3.744000px;}
.ws46{word-spacing:-3.660000px;}
.ws7d{word-spacing:-3.264000px;}
.ws78{word-spacing:-3.216000px;}
.ws4{word-spacing:-2.886000px;}
.ws4d{word-spacing:-2.880000px;}
.ws66{word-spacing:-2.700000px;}
.ws73{word-spacing:-2.592000px;}
.ws2d{word-spacing:-2.475000px;}
.wsa{word-spacing:-2.400000px;}
.ws80{word-spacing:-2.304000px;}
.ws83{word-spacing:-2.208000px;}
.ws89{word-spacing:-2.064000px;}
.ws52{word-spacing:-2.040000px;}
.ws1d{word-spacing:-1.800000px;}
.ws72{word-spacing:-1.728000px;}
.ws6d{word-spacing:-1.632000px;}
.ws68{word-spacing:-1.584000px;}
.ws74{word-spacing:-1.536000px;}
.ws1b{word-spacing:-1.500000px;}
.ws1f{word-spacing:-1.440000px;}
.ws7a{word-spacing:-1.392000px;}
.ws3d{word-spacing:-1.344000px;}
.ws53{word-spacing:-1.260000px;}
.ws6c{word-spacing:-1.248000px;}
.ws3b{word-spacing:-1.140000px;}
.ws6f{word-spacing:-1.104000px;}
.ws16{word-spacing:-1.080000px;}
.ws6a{word-spacing:-1.056000px;}
.ws65{word-spacing:-1.020000px;}
.ws76{word-spacing:-1.008000px;}
.ws88{word-spacing:-0.960000px;}
.ws75{word-spacing:-0.864000px;}
.ws55{word-spacing:-0.840000px;}
.ws15{word-spacing:-0.780000px;}
.ws6b{word-spacing:-0.624000px;}
.ws79{word-spacing:-0.576000px;}
.ws64{word-spacing:-0.540000px;}
.ws70{word-spacing:-0.528000px;}
.ws19{word-spacing:-0.480000px;}
.ws7b{word-spacing:-0.432000px;}
.ws9{word-spacing:-0.420000px;}
.ws6e{word-spacing:-0.384000px;}
.ws50{word-spacing:-0.300000px;}
.ws81{word-spacing:-0.288000px;}
.ws87{word-spacing:-0.144000px;}
.ws84{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws3c{word-spacing:0.048000px;}
.ws24{word-spacing:0.060000px;}
.wsb{word-spacing:0.066000px;}
.ws4b{word-spacing:0.120000px;}
.ws4e{word-spacing:0.240000px;}
.ws25{word-spacing:0.360000px;}
.ws1c{word-spacing:0.540000px;}
.ws71{word-spacing:0.624000px;}
.ws35{word-spacing:0.900000px;}
.ws7c{word-spacing:0.912000px;}
.ws51{word-spacing:1.020000px;}
.ws18{word-spacing:1.080000px;}
.ws47{word-spacing:1.380000px;}
.ws8b{word-spacing:1.560000px;}
.ws39{word-spacing:1.680000px;}
.ws26{word-spacing:1.800000px;}
.ws13{word-spacing:1.920000px;}
.ws1a{word-spacing:2.220000px;}
.ws4f{word-spacing:2.340000px;}
.ws8{word-spacing:2.520000px;}
.ws8a{word-spacing:2.544000px;}
.ws2e{word-spacing:2.736000px;}
.ws36{word-spacing:2.760000px;}
.ws38{word-spacing:2.820000px;}
.ws77{word-spacing:2.832000px;}
.ws82{word-spacing:2.976000px;}
.ws48{word-spacing:3.120000px;}
.ws20{word-spacing:3.240000px;}
.ws1e{word-spacing:3.300000px;}
.ws4c{word-spacing:3.360000px;}
.ws37{word-spacing:3.660000px;}
.ws22{word-spacing:3.780000px;}
.ws69{word-spacing:3.936000px;}
.ws7{word-spacing:3.960000px;}
.ws67{word-spacing:3.984000px;}
.ws23{word-spacing:4.020000px;}
.ws21{word-spacing:4.380000px;}
.ws14{word-spacing:4.500000px;}
.ws4a{word-spacing:4.680000px;}
.ws49{word-spacing:4.740000px;}
.ws6{word-spacing:4.920000px;}
.ws5{word-spacing:4.980000px;}
.ws54{word-spacing:5.520000px;}
.ws29{word-spacing:57.915000px;}
.ws2a{word-spacing:87.693600px;}
.ws11{word-spacing:111.825000px;}
.ws12{word-spacing:121.860000px;}
.ws30{word-spacing:171.696000px;}
.ws32{word-spacing:283.392000px;}
.ws33{word-spacing:287.376000px;}
.wsf{word-spacing:869.265000px;}
._27{margin-left:-2898.144000px;}
._4e{margin-left:-2874.336000px;}
._51{margin-left:-298.392000px;}
._3{margin-left:-7.560000px;}
._54{margin-left:-6.396000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.900000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.020000px;}
._9{width:1.020000px;}
._a{width:2.460000px;}
._6{width:3.540000px;}
._5{width:5.460000px;}
._7{width:6.540000px;}
._53{width:7.680000px;}
._52{width:8.700000px;}
._8{width:10.080000px;}
._b{width:11.220000px;}
._25{width:60.210000px;}
._3a{width:61.650000px;}
._15{width:81.315000px;}
._14{width:86.040000px;}
._3d{width:88.650000px;}
._26{width:91.080000px;}
._43{width:92.205000px;}
._21{width:98.910000px;}
._19{width:109.215000px;}
._36{width:110.355000px;}
._23{width:114.600000px;}
._13{width:123.075000px;}
._3c{width:124.695000px;}
._44{width:126.045000px;}
._1b{width:127.305000px;}
._32{width:130.635000px;}
._17{width:134.325000px;}
._16{width:145.485000px;}
._1e{width:148.275000px;}
._1d{width:153.405000px;}
._11{width:158.130000px;}
._20{width:186.795000px;}
._38{width:196.785000px;}
._1f{width:198.540000px;}
._e{width:207.990000px;}
._c{width:210.105000px;}
._d{width:217.620000px;}
._46{width:230.265000px;}
._2e{width:249.345000px;}
._4d{width:260.460000px;}
._2a{width:264.285000px;}
._2c{width:268.020000px;}
._2b{width:284.310000px;}
._50{width:295.392000px;}
._3f{width:297.990000px;}
._29{width:304.125000px;}
._33{width:305.385000px;}
._30{width:336.780000px;}
._4b{width:345.780000px;}
._39{width:349.410000px;}
._41{width:352.470000px;}
._4a{width:378.315000px;}
._12{width:381.780000px;}
._40{width:385.515000px;}
._42{width:407.925000px;}
._3e{width:413.910000px;}
._34{width:420.270000px;}
._35{width:422.642400px;}
._1a{width:430.575000px;}
._4f{width:434.544000px;}
._47{width:437.940000px;}
._24{width:440.550000px;}
._2f{width:442.350000px;}
._28{width:445.770000px;}
._18{width:448.290000px;}
._22{width:452.430000px;}
._48{width:457.920000px;}
._45{width:465.480000px;}
._10{width:473.265000px;}
._2d{width:476.730000px;}
._f{width:478.260000px;}
._31{width:544.065000px;}
._4c{width:667.935000px;}
._3b{width:674.280000px;}
._49{width:701.685000px;}
._37{width:702.990000px;}
._1c{width:745.515000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.000000px;}
.fsa{font-size:28.800000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y162{bottom:80.263500px;}
.yf0{bottom:83.635350px;}
.yde{bottom:83.770350px;}
.yc5{bottom:84.086400px;}
.y1d{bottom:88.026750px;}
.y121{bottom:89.121900px;}
.yc1{bottom:92.725500px;}
.y161{bottom:95.263500px;}
.yc4{bottom:99.830400px;}
.yef{bottom:101.635350px;}
.ydd{bottom:101.770350px;}
.y1c{bottom:103.023000px;}
.y120{bottom:104.121900px;}
.yc0{bottom:108.973500px;}
.y160{bottom:110.263500px;}
.yc3{bottom:115.574400px;}
.y11f{bottom:119.121900px;}
.yee{bottom:119.230350px;}
.ydc{bottom:119.770350px;}
.ybb{bottom:124.642650px;}
.ybf{bottom:125.221500px;}
.y15f{bottom:125.263500px;}
.y7e{bottom:129.412500px;}
.y11e{bottom:134.121900px;}
.ydb{bottom:137.770350px;}
.y15e{bottom:140.263500px;}
.yba{bottom:141.142650px;}
.y7d{bottom:145.916250px;}
.y11d{bottom:149.121900px;}
.yc6{bottom:150.326550px;}
.yc9{bottom:150.327900px;}
.y15d{bottom:155.263500px;}
.yed{bottom:155.635350px;}
.yda{bottom:155.770350px;}
.ybe{bottom:156.733500px;}
.y29{bottom:160.378950px;}
.y7c{bottom:161.418750px;}
.yb9{bottom:161.631750px;}
.y11c{bottom:164.121900px;}
.y15c{bottom:170.263500px;}
.yec{bottom:173.635350px;}
.yd9{bottom:173.770350px;}
.y7b{bottom:176.921250px;}
.y28{bottom:178.378950px;}
.y11b{bottom:179.121900px;}
.yb8{bottom:183.013650px;}
.y15b{bottom:185.263500px;}
.ybd{bottom:191.635350px;}
.yd8{bottom:191.770350px;}
.y7a{bottom:192.417900px;}
.y11a{bottom:194.121900px;}
.y27{bottom:196.378950px;}
.yb7{bottom:199.517400px;}
.y15a{bottom:200.263500px;}
.y79{bottom:207.920400px;}
.y119{bottom:209.121900px;}
.yeb{bottom:209.635350px;}
.yd7{bottom:209.770350px;}
.y26{bottom:214.378950px;}
.yb6{bottom:215.019900px;}
.y159{bottom:215.263500px;}
.yc8{bottom:222.183900px;}
.y78{bottom:223.422900px;}
.y118{bottom:224.121900px;}
.yea{bottom:227.635350px;}
.yd6{bottom:227.770350px;}
.y158{bottom:230.263500px;}
.yb4{bottom:230.522400px;}
.y25{bottom:232.378950px;}
.yc2{bottom:238.249500px;}
.y77{bottom:238.925400px;}
.y117{bottom:239.121900px;}
.y157{bottom:245.263500px;}
.ye9{bottom:245.635350px;}
.yd5{bottom:245.770350px;}
.yb3{bottom:247.021950px;}
.yb5{bottom:247.026150px;}
.y24{bottom:250.378950px;}
.y116{bottom:254.121900px;}
.y75{bottom:254.427900px;}
.y156{bottom:260.263500px;}
.yb2{bottom:262.524450px;}
.ye8{bottom:263.635350px;}
.yd4{bottom:263.770350px;}
.y23{bottom:268.378950px;}
.y115{bottom:269.121900px;}
.y74{bottom:270.927450px;}
.y76{bottom:270.931650px;}
.y155{bottom:275.263500px;}
.yb1{bottom:278.026950px;}
.ye7{bottom:281.230350px;}
.yd3{bottom:281.770350px;}
.y114{bottom:284.121900px;}
.y22{bottom:286.378950px;}
.y154{bottom:290.263500px;}
.yb0{bottom:293.529450px;}
.y113{bottom:299.121900px;}
.y73{bottom:299.187450px;}
.yd2{bottom:299.770350px;}
.y21{bottom:304.378950px;}
.y153{bottom:305.263500px;}
.yaf{bottom:309.031950px;}
.y112{bottom:314.121900px;}
.ye6{bottom:317.635350px;}
.yd1{bottom:317.770350px;}
.y152{bottom:320.263500px;}
.y20{bottom:322.378950px;}
.yae{bottom:324.534450px;}
.y72{bottom:327.447450px;}
.y111{bottom:329.121900px;}
.y151{bottom:335.263500px;}
.ye5{bottom:335.635350px;}
.yd0{bottom:335.770350px;}
.yad{bottom:340.036950px;}
.y1f{bottom:340.378950px;}
.y110{bottom:344.121900px;}
.y150{bottom:350.263500px;}
.ye4{bottom:353.635350px;}
.ycf{bottom:353.770350px;}
.yac{bottom:355.539450px;}
.y2b{bottom:358.378950px;}
.y10f{bottom:359.121900px;}
.y71{bottom:359.208600px;}
.y14f{bottom:365.263500px;}
.yab{bottom:371.027100px;}
.ye3{bottom:371.635350px;}
.yce{bottom:371.770350px;}
.y10e{bottom:374.121900px;}
.y1e{bottom:375.973950px;}
.y2a{bottom:376.378950px;}
.y70{bottom:378.708600px;}
.y14e{bottom:380.263500px;}
.yaa{bottom:386.529600px;}
.y10d{bottom:389.121900px;}
.ye2{bottom:389.635350px;}
.ycd{bottom:389.770350px;}
.y14d{bottom:395.263500px;}
.ya9{bottom:402.032100px;}
.y10c{bottom:404.121900px;}
.ye1{bottom:407.635350px;}
.ycc{bottom:407.770350px;}
.y14c{bottom:410.263500px;}
.ya8{bottom:417.534600px;}
.y10b{bottom:419.121900px;}
.y14b{bottom:425.263500px;}
.y6f{bottom:425.628600px;}
.ye0{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.ya7{bottom:433.037100px;}
.y10a{bottom:434.121900px;}
.y14a{bottom:440.263500px;}
.y6e{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.ya6{bottom:448.539600px;}
.y109{bottom:449.121900px;}
.y1b{bottom:450.508650px;}
.y149{bottom:455.263500px;}
.yc7{bottom:457.743900px;}
.y6d{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.ya5{bottom:464.042100px;}
.y108{bottom:464.121900px;}
.y1a{bottom:468.514200px;}
.y148{bottom:470.263500px;}
.y107{bottom:479.121900px;}
.ya4{bottom:479.544600px;}
.y6c{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y147{bottom:485.263500px;}
.y106{bottom:494.121900px;}
.ya3{bottom:495.047100px;}
.y19{bottom:495.859200px;}
.y6b{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y146{bottom:500.263500px;}
.y105{bottom:509.121900px;}
.ya2{bottom:511.550850px;}
.y18{bottom:513.859200px;}
.ydf{bottom:515.230350px;}
.y145{bottom:515.263500px;}
.y6a{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y104{bottom:524.121900px;}
.ya1{bottom:527.053350px;}
.y144{bottom:530.263500px;}
.y17{bottom:531.859200px;}
.y69{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y103{bottom:539.121900px;}
.ya0{bottom:542.555850px;}
.y143{bottom:545.263500px;}
.y16{bottom:549.859200px;}
.y68{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y102{bottom:554.121900px;}
.y9f{bottom:558.058350px;}
.y142{bottom:560.263500px;}
.y15{bottom:567.859200px;}
.y101{bottom:569.121900px;}
.y67{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y9e{bottom:573.560850px;}
.y141{bottom:575.263500px;}
.y100{bottom:584.121900px;}
.y14{bottom:585.859200px;}
.y66{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y9d{bottom:589.063350px;}
.y140{bottom:590.263500px;}
.yff{bottom:599.121900px;}
.y13{bottom:603.859200px;}
.y9b{bottom:604.565850px;}
.y13f{bottom:605.263500px;}
.y65{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.yfe{bottom:614.121900px;}
.y13e{bottom:620.263500px;}
.y9a{bottom:621.067350px;}
.y9c{bottom:621.069600px;}
.y12{bottom:621.859200px;}
.y64{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.yfd{bottom:629.121900px;}
.y13d{bottom:635.263500px;}
.y99{bottom:636.569850px;}
.y11{bottom:639.859200px;}
.y63{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.yfc{bottom:644.121900px;}
.y13c{bottom:650.263500px;}
.y98{bottom:652.072350px;}
.y10{bottom:657.859200px;}
.yfb{bottom:659.121900px;}
.y62{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.yca{bottom:661.419900px;}
.y13b{bottom:665.263500px;}
.y97{bottom:667.574850px;}
.yfa{bottom:674.121900px;}
.yf{bottom:675.859200px;}
.y61{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.y13a{bottom:680.265900px;}
.y96{bottom:683.072550px;}
.yf9{bottom:689.121900px;}
.ye{bottom:693.859200px;}
.y139{bottom:695.265900px;}
.y60{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.y95{bottom:698.575050px;}
.yf8{bottom:704.121900px;}
.y138{bottom:710.265900px;}
.yd{bottom:711.859200px;}
.y5f{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.y93{bottom:714.077550px;}
.yf7{bottom:719.121900px;}
.y137{bottom:725.265900px;}
.yc{bottom:729.859200px;}
.y92{bottom:730.575450px;}
.y94{bottom:730.581300px;}
.y5e{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.yf6{bottom:734.121900px;}
.y136{bottom:740.265900px;}
.y91{bottom:746.077950px;}
.y5d{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.y135{bottom:755.265900px;}
.y90{bottom:761.580450px;}
.yf5{bottom:767.230350px;}
.y5c{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.y176{bottom:770.263500px;}
.y134{bottom:770.265900px;}
.yb{bottom:775.017000px;}
.y8f{bottom:777.082950px;}
.y175{bottom:785.263500px;}
.y133{bottom:785.265900px;}
.y5b{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.ya{bottom:787.468500px;}
.y8d{bottom:792.585450px;}
.y174{bottom:800.263500px;}
.y132{bottom:800.265900px;}
.y5a{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.y8c{bottom:809.081100px;}
.y8e{bottom:809.089200px;}
.y173{bottom:815.263500px;}
.y131{bottom:815.265900px;}
.y9{bottom:819.183600px;}
.y59{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.y8b{bottom:824.583600px;}
.y172{bottom:830.263500px;}
.y130{bottom:830.265900px;}
.y8{bottom:832.683600px;}
.yf4{bottom:839.365350px;}
.y58{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y8a{bottom:840.086100px;}
.y171{bottom:845.263500px;}
.y12f{bottom:845.265900px;}
.y89{bottom:855.588600px;}
.y57{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.y17e{bottom:857.772600px;}
.y170{bottom:860.263500px;}
.y12e{bottom:860.265900px;}
.y7{bottom:866.836200px;}
.y88{bottom:871.091100px;}
.y16f{bottom:875.263500px;}
.y12d{bottom:875.265900px;}
.yf3{bottom:875.365350px;}
.y56{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.y17d{bottom:875.772600px;}
.y87{bottom:886.593600px;}
.y6{bottom:887.830950px;}
.y16e{bottom:890.263500px;}
.y12c{bottom:890.265900px;}
.y55{bottom:893.635350px;}
.y37{bottom:893.770350px;}
.y86{bottom:902.096100px;}
.y16d{bottom:905.263500px;}
.y12b{bottom:905.265900px;}
.y54{bottom:911.635350px;}
.y36{bottom:911.770350px;}
.y17c{bottom:911.772600px;}
.y85{bottom:917.598600px;}
.y16c{bottom:920.263500px;}
.y12a{bottom:920.265900px;}
.y53{bottom:929.635350px;}
.y35{bottom:929.770350px;}
.y17b{bottom:929.772600px;}
.y83{bottom:933.101100px;}
.y5{bottom:934.004400px;}
.y16b{bottom:935.263500px;}
.y129{bottom:935.265900px;}
.yf2{bottom:947.365350px;}
.y34{bottom:947.770350px;}
.y17a{bottom:947.772600px;}
.y82{bottom:949.600650px;}
.y84{bottom:949.604850px;}
.y16a{bottom:950.263500px;}
.y128{bottom:950.265900px;}
.y52{bottom:965.230350px;}
.y169{bottom:965.263500px;}
.y127{bottom:965.265900px;}
.y33{bottom:965.770350px;}
.y4{bottom:970.465200px;}
.y81{bottom:977.860650px;}
.y168{bottom:980.263500px;}
.y126{bottom:980.265900px;}
.y32{bottom:983.770350px;}
.y179{bottom:983.772600px;}
.y167{bottom:995.263500px;}
.y125{bottom:995.265900px;}
.yf1{bottom:1001.365350px;}
.y31{bottom:1001.770350px;}
.y178{bottom:1001.772600px;}
.y80{bottom:1006.120650px;}
.y3{bottom:1006.926000px;}
.y166{bottom:1010.263500px;}
.y124{bottom:1010.265900px;}
.y30{bottom:1019.770350px;}
.y165{bottom:1025.263500px;}
.y123{bottom:1025.265900px;}
.ybc{bottom:1037.365350px;}
.y177{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.y164{bottom:1040.263500px;}
.y122{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y7f{bottom:1132.418700px;}
.ycb{bottom:1132.419900px;}
.y163{bottom:1132.423500px;}
.y2d{bottom:1136.122500px;}
.y2c{bottom:1150.492500px;}
.h1c{height:26.067037px;}
.h7{height:28.412109px;}
.h2{height:30.597656px;}
.h13{height:31.267090px;}
.h19{height:31.286290px;}
.h1b{height:31.326490px;}
.hc{height:32.783203px;}
.h6{height:32.805176px;}
.h14{height:33.075000px;}
.h1f{height:33.351562px;}
.h1a{height:33.727854px;}
.h15{height:33.736254px;}
.h17{height:33.742854px;}
.h18{height:33.751854px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h1e{height:35.280000px;}
.h16{height:39.396973px;}
.he{height:41.689453px;}
.h1d{height:42.023438px;}
.hd{height:43.681641px;}
.h8{height:43.710938px;}
.hb{height:43.718034px;}
.h9{height:43.740234px;}
.h12{height:44.100000px;}
.ha{height:45.720000px;}
.h5{height:45.865723px;}
.hf{height:52.529297px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x11{left:78.661500px;}
.x12{left:87.160350px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x18{left:99.921300px;}
.x24{left:102.047400px;}
.x4{left:106.299150px;}
.x19{left:108.427650px;}
.xd{left:110.555400px;}
.x22{left:123.307350px;}
.x3{left:125.436450px;}
.x7{left:131.816400px;}
.x1f{left:164.551200px;}
.x5{left:191.330250px;}
.x6{left:212.876400px;}
.x1d{left:215.140350px;}
.x13{left:338.789100px;}
.x1a{left:360.045150px;}
.xb{left:455.041500px;}
.xe{left:457.083150px;}
.x14{left:462.186600px;}
.x1e{left:478.360350px;}
.x8{left:480.476400px;}
.x10{left:491.103150px;}
.x23{left:503.863350px;}
.x20{left:512.359200px;}
.x9{left:514.496400px;}
.xf{left:525.273150px;}
.x21{left:570.680550px;}
.x1c{left:591.665400px;}
.x15{left:615.422850px;}
.x17{left:663.492300px;}
.x2{left:693.365400px;}
.x16{left:735.065400px;}
.x1b{left:756.325200px;}
@media print{
.v5{vertical-align:-14.183467pt;}
.v3{vertical-align:-3.604267pt;}
.v2{vertical-align:-2.613333pt;}
.v1{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v4{vertical-align:13.312000pt;}
.ls63{letter-spacing:-1.973333pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls34{letter-spacing:-0.384000pt;}
.ls90{letter-spacing:-0.256000pt;}
.ls64{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls41{letter-spacing:-0.042667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.006400pt;}
.ls59{letter-spacing:0.008533pt;}
.ls5a{letter-spacing:0.009067pt;}
.ls83{letter-spacing:0.042667pt;}
.ls58{letter-spacing:0.047467pt;}
.ls7{letter-spacing:0.053333pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls8d{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.146133pt;}
.ls40{letter-spacing:0.160000pt;}
.ls4d{letter-spacing:0.182933pt;}
.ls3{letter-spacing:0.213333pt;}
.ls87{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls4e{letter-spacing:0.313067pt;}
.ls6{letter-spacing:0.320000pt;}
.ls66{letter-spacing:0.341333pt;}
.ls3d{letter-spacing:0.373333pt;}
.ls7e{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls7c{letter-spacing:0.469333pt;}
.ls4{letter-spacing:0.480000pt;}
.ls6b{letter-spacing:0.512000pt;}
.ls55{letter-spacing:0.533333pt;}
.ls6f{letter-spacing:0.554667pt;}
.ls52{letter-spacing:0.562133pt;}
.ls18{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.651733pt;}
.ls1c{letter-spacing:0.652267pt;}
.ls22{letter-spacing:0.667733pt;}
.ls77{letter-spacing:0.682667pt;}
.ls16{letter-spacing:0.693333pt;}
.ls7b{letter-spacing:0.725333pt;}
.ls26{letter-spacing:0.746667pt;}
.ls89{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.800000pt;}
.ls8e{letter-spacing:0.810667pt;}
.ls8{letter-spacing:0.853333pt;}
.ls4f{letter-spacing:0.875200pt;}
.ls51{letter-spacing:0.875733pt;}
.ls79{letter-spacing:0.896000pt;}
.lse{letter-spacing:0.906667pt;}
.ls69{letter-spacing:0.938667pt;}
.ls54{letter-spacing:0.945600pt;}
.ls53{letter-spacing:0.946133pt;}
.ls4a{letter-spacing:0.956267pt;}
.ls5{letter-spacing:0.960000pt;}
.ls71{letter-spacing:0.981333pt;}
.ls25{letter-spacing:1.013333pt;}
.ls68{letter-spacing:1.024000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls56{letter-spacing:1.081067pt;}
.ls1d{letter-spacing:1.095467pt;}
.ls1b{letter-spacing:1.100267pt;}
.ls8a{letter-spacing:1.109333pt;}
.ls5c{letter-spacing:1.109867pt;}
.ls21{letter-spacing:1.120000pt;}
.ls3f{letter-spacing:1.194667pt;}
.ls17{letter-spacing:1.226667pt;}
.ls7d{letter-spacing:1.237333pt;}
.ls0{letter-spacing:1.280000pt;}
.ls3b{letter-spacing:1.300267pt;}
.ls9{letter-spacing:1.333333pt;}
.ls6a{letter-spacing:1.365333pt;}
.ls42{letter-spacing:1.386667pt;}
.ls65{letter-spacing:1.408000pt;}
.ls46{letter-spacing:1.422933pt;}
.ls48{letter-spacing:1.423467pt;}
.ls44{letter-spacing:1.440000pt;}
.ls6e{letter-spacing:1.450667pt;}
.ls50{letter-spacing:1.467733pt;}
.ls24{letter-spacing:1.493333pt;}
.ls72{letter-spacing:1.536000pt;}
.ls1a{letter-spacing:1.546667pt;}
.ls28{letter-spacing:1.600000pt;}
.ls4b{letter-spacing:1.602667pt;}
.ls8f{letter-spacing:1.621333pt;}
.ls19{letter-spacing:1.653333pt;}
.ls82{letter-spacing:1.664000pt;}
.ls60{letter-spacing:1.706667pt;}
.ls80{letter-spacing:1.749333pt;}
.ls57{letter-spacing:1.810667pt;}
.ls37{letter-spacing:1.813333pt;}
.ls75{letter-spacing:1.834667pt;}
.ls5d{letter-spacing:1.858133pt;}
.ls5b{letter-spacing:1.866667pt;}
.ls8b{letter-spacing:1.877333pt;}
.ls36{letter-spacing:1.920000pt;}
.ls88{letter-spacing:1.962667pt;}
.ls1f{letter-spacing:1.973333pt;}
.ls86{letter-spacing:2.048000pt;}
.ls61{letter-spacing:2.080000pt;}
.lsd{letter-spacing:2.133333pt;}
.ls3a{letter-spacing:2.186667pt;}
.ls1{letter-spacing:2.240000pt;}
.ls74{letter-spacing:2.304000pt;}
.ls23{letter-spacing:2.346667pt;}
.ls49{letter-spacing:2.380800pt;}
.ls47{letter-spacing:2.381333pt;}
.ls67{letter-spacing:2.389333pt;}
.ls2b{letter-spacing:2.400000pt;}
.ls45{letter-spacing:2.434667pt;}
.lsc{letter-spacing:2.453333pt;}
.ls3e{letter-spacing:2.506667pt;}
.ls4c{letter-spacing:2.560000pt;}
.ls85{letter-spacing:2.602667pt;}
.ls38{letter-spacing:2.613333pt;}
.ls5f{letter-spacing:2.666667pt;}
.ls6c{letter-spacing:2.688000pt;}
.ls6d{letter-spacing:2.730667pt;}
.ls70{letter-spacing:2.816000pt;}
.ls7a{letter-spacing:2.858667pt;}
.ls7f{letter-spacing:2.901333pt;}
.ls39{letter-spacing:2.986667pt;}
.ls76{letter-spacing:3.114667pt;}
.ls43{letter-spacing:3.200000pt;}
.ls81{letter-spacing:3.328000pt;}
.ls84{letter-spacing:3.370667pt;}
.ls73{letter-spacing:3.413333pt;}
.ls8c{letter-spacing:3.456000pt;}
.ls78{letter-spacing:3.498667pt;}
.ls62{letter-spacing:3.520000pt;}
.ls29{letter-spacing:4.000000pt;}
.ls35{letter-spacing:4.266667pt;}
.ls5e{letter-spacing:4.373333pt;}
.ls20{letter-spacing:4.533333pt;}
.ls2c{letter-spacing:4.853333pt;}
.lsa{letter-spacing:7.306667pt;}
.ls2f{letter-spacing:60.480000pt;}
.ls32{letter-spacing:87.426667pt;}
.ls3c{letter-spacing:266.112000pt;}
.ls31{letter-spacing:292.360000pt;}
.ls30{letter-spacing:683.760000pt;}
.ws34{word-spacing:-153.045333pt;}
.ws1{word-spacing:-53.333333pt;}
.ws31{word-spacing:-42.666667pt;}
.ws45{word-spacing:-16.640000pt;}
.ws3f{word-spacing:-16.533333pt;}
.ws3a{word-spacing:-15.840000pt;}
.ws44{word-spacing:-15.573333pt;}
.ws42{word-spacing:-15.200000pt;}
.ws43{word-spacing:-15.146667pt;}
.ws0{word-spacing:-14.826667pt;}
.ws3e{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.453333pt;}
.ws5b{word-spacing:-14.165333pt;}
.ws61{word-spacing:-13.994667pt;}
.ws41{word-spacing:-13.866667pt;}
.wsc{word-spacing:-13.760000pt;}
.ws40{word-spacing:-13.653333pt;}
.ws5d{word-spacing:-13.525333pt;}
.ws2f{word-spacing:-13.333333pt;}
.ws62{word-spacing:-12.586667pt;}
.ws86{word-spacing:-12.501333pt;}
.ws5e{word-spacing:-11.904000pt;}
.ws2{word-spacing:-11.861333pt;}
.ws56{word-spacing:-11.690667pt;}
.ws58{word-spacing:-11.648000pt;}
.ws5c{word-spacing:-11.562667pt;}
.ws85{word-spacing:-11.477333pt;}
.ws57{word-spacing:-11.221333pt;}
.ws60{word-spacing:-11.178667pt;}
.ws5f{word-spacing:-11.050667pt;}
.ws5a{word-spacing:-10.880000pt;}
.ws63{word-spacing:-10.709333pt;}
.ws2c{word-spacing:-10.666667pt;}
.ws59{word-spacing:-10.624000pt;}
.ws28{word-spacing:-10.000000pt;}
.wse{word-spacing:-8.000000pt;}
.ws2b{word-spacing:-6.400000pt;}
.ws10{word-spacing:-6.000000pt;}
.ws27{word-spacing:-4.906667pt;}
.ws17{word-spacing:-4.533333pt;}
.ws7f{word-spacing:-3.370667pt;}
.ws7e{word-spacing:-3.328000pt;}
.ws46{word-spacing:-3.253333pt;}
.ws7d{word-spacing:-2.901333pt;}
.ws78{word-spacing:-2.858667pt;}
.ws4{word-spacing:-2.565333pt;}
.ws4d{word-spacing:-2.560000pt;}
.ws66{word-spacing:-2.400000pt;}
.ws73{word-spacing:-2.304000pt;}
.ws2d{word-spacing:-2.200000pt;}
.wsa{word-spacing:-2.133333pt;}
.ws80{word-spacing:-2.048000pt;}
.ws83{word-spacing:-1.962667pt;}
.ws89{word-spacing:-1.834667pt;}
.ws52{word-spacing:-1.813333pt;}
.ws1d{word-spacing:-1.600000pt;}
.ws72{word-spacing:-1.536000pt;}
.ws6d{word-spacing:-1.450667pt;}
.ws68{word-spacing:-1.408000pt;}
.ws74{word-spacing:-1.365333pt;}
.ws1b{word-spacing:-1.333333pt;}
.ws1f{word-spacing:-1.280000pt;}
.ws7a{word-spacing:-1.237333pt;}
.ws3d{word-spacing:-1.194667pt;}
.ws53{word-spacing:-1.120000pt;}
.ws6c{word-spacing:-1.109333pt;}
.ws3b{word-spacing:-1.013333pt;}
.ws6f{word-spacing:-0.981333pt;}
.ws16{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.938667pt;}
.ws65{word-spacing:-0.906667pt;}
.ws76{word-spacing:-0.896000pt;}
.ws88{word-spacing:-0.853333pt;}
.ws75{word-spacing:-0.768000pt;}
.ws55{word-spacing:-0.746667pt;}
.ws15{word-spacing:-0.693333pt;}
.ws6b{word-spacing:-0.554667pt;}
.ws79{word-spacing:-0.512000pt;}
.ws64{word-spacing:-0.480000pt;}
.ws70{word-spacing:-0.469333pt;}
.ws19{word-spacing:-0.426667pt;}
.ws7b{word-spacing:-0.384000pt;}
.ws9{word-spacing:-0.373333pt;}
.ws6e{word-spacing:-0.341333pt;}
.ws50{word-spacing:-0.266667pt;}
.ws81{word-spacing:-0.256000pt;}
.ws87{word-spacing:-0.128000pt;}
.ws84{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.042667pt;}
.ws24{word-spacing:0.053333pt;}
.wsb{word-spacing:0.058667pt;}
.ws4b{word-spacing:0.106667pt;}
.ws4e{word-spacing:0.213333pt;}
.ws25{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.480000pt;}
.ws71{word-spacing:0.554667pt;}
.ws35{word-spacing:0.800000pt;}
.ws7c{word-spacing:0.810667pt;}
.ws51{word-spacing:0.906667pt;}
.ws18{word-spacing:0.960000pt;}
.ws47{word-spacing:1.226667pt;}
.ws8b{word-spacing:1.386667pt;}
.ws39{word-spacing:1.493333pt;}
.ws26{word-spacing:1.600000pt;}
.ws13{word-spacing:1.706667pt;}
.ws1a{word-spacing:1.973333pt;}
.ws4f{word-spacing:2.080000pt;}
.ws8{word-spacing:2.240000pt;}
.ws8a{word-spacing:2.261333pt;}
.ws2e{word-spacing:2.432000pt;}
.ws36{word-spacing:2.453333pt;}
.ws38{word-spacing:2.506667pt;}
.ws77{word-spacing:2.517333pt;}
.ws82{word-spacing:2.645333pt;}
.ws48{word-spacing:2.773333pt;}
.ws20{word-spacing:2.880000pt;}
.ws1e{word-spacing:2.933333pt;}
.ws4c{word-spacing:2.986667pt;}
.ws37{word-spacing:3.253333pt;}
.ws22{word-spacing:3.360000pt;}
.ws69{word-spacing:3.498667pt;}
.ws7{word-spacing:3.520000pt;}
.ws67{word-spacing:3.541333pt;}
.ws23{word-spacing:3.573333pt;}
.ws21{word-spacing:3.893333pt;}
.ws14{word-spacing:4.000000pt;}
.ws4a{word-spacing:4.160000pt;}
.ws49{word-spacing:4.213333pt;}
.ws6{word-spacing:4.373333pt;}
.ws5{word-spacing:4.426667pt;}
.ws54{word-spacing:4.906667pt;}
.ws29{word-spacing:51.480000pt;}
.ws2a{word-spacing:77.949867pt;}
.ws11{word-spacing:99.400000pt;}
.ws12{word-spacing:108.320000pt;}
.ws30{word-spacing:152.618667pt;}
.ws32{word-spacing:251.904000pt;}
.ws33{word-spacing:255.445333pt;}
.wsf{word-spacing:772.680000pt;}
._27{margin-left:-2576.128000pt;}
._4e{margin-left:-2554.965333pt;}
._51{margin-left:-265.237333pt;}
._3{margin-left:-6.720000pt;}
._54{margin-left:-5.685333pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.466667pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.906667pt;}
._9{width:0.906667pt;}
._a{width:2.186667pt;}
._6{width:3.146667pt;}
._5{width:4.853333pt;}
._7{width:5.813333pt;}
._53{width:6.826667pt;}
._52{width:7.733333pt;}
._8{width:8.960000pt;}
._b{width:9.973333pt;}
._25{width:53.520000pt;}
._3a{width:54.800000pt;}
._15{width:72.280000pt;}
._14{width:76.480000pt;}
._3d{width:78.800000pt;}
._26{width:80.960000pt;}
._43{width:81.960000pt;}
._21{width:87.920000pt;}
._19{width:97.080000pt;}
._36{width:98.093333pt;}
._23{width:101.866667pt;}
._13{width:109.400000pt;}
._3c{width:110.840000pt;}
._44{width:112.040000pt;}
._1b{width:113.160000pt;}
._32{width:116.120000pt;}
._17{width:119.400000pt;}
._16{width:129.320000pt;}
._1e{width:131.800000pt;}
._1d{width:136.360000pt;}
._11{width:140.560000pt;}
._20{width:166.040000pt;}
._38{width:174.920000pt;}
._1f{width:176.480000pt;}
._e{width:184.880000pt;}
._c{width:186.760000pt;}
._d{width:193.440000pt;}
._46{width:204.680000pt;}
._2e{width:221.640000pt;}
._4d{width:231.520000pt;}
._2a{width:234.920000pt;}
._2c{width:238.240000pt;}
._2b{width:252.720000pt;}
._50{width:262.570667pt;}
._3f{width:264.880000pt;}
._29{width:270.333333pt;}
._33{width:271.453333pt;}
._30{width:299.360000pt;}
._4b{width:307.360000pt;}
._39{width:310.586667pt;}
._41{width:313.306667pt;}
._4a{width:336.280000pt;}
._12{width:339.360000pt;}
._40{width:342.680000pt;}
._42{width:362.600000pt;}
._3e{width:367.920000pt;}
._34{width:373.573333pt;}
._35{width:375.682133pt;}
._1a{width:382.733333pt;}
._4f{width:386.261333pt;}
._47{width:389.280000pt;}
._24{width:391.600000pt;}
._2f{width:393.200000pt;}
._28{width:396.240000pt;}
._18{width:398.480000pt;}
._22{width:402.160000pt;}
._48{width:407.040000pt;}
._45{width:413.760000pt;}
._10{width:420.680000pt;}
._2d{width:423.760000pt;}
._f{width:425.120000pt;}
._31{width:483.613333pt;}
._4c{width:593.720000pt;}
._3b{width:599.360000pt;}
._49{width:623.720000pt;}
._37{width:624.880000pt;}
._1c{width:662.680000pt;}
.fs9{font-size:24.000000pt;}
.fsa{font-size:25.600000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y162{bottom:71.345333pt;}
.yf0{bottom:74.342533pt;}
.yde{bottom:74.462533pt;}
.yc5{bottom:74.743467pt;}
.y1d{bottom:78.246000pt;}
.y121{bottom:79.219467pt;}
.yc1{bottom:82.422667pt;}
.y161{bottom:84.678667pt;}
.yc4{bottom:88.738133pt;}
.yef{bottom:90.342533pt;}
.ydd{bottom:90.462533pt;}
.y1c{bottom:91.576000pt;}
.y120{bottom:92.552800pt;}
.yc0{bottom:96.865333pt;}
.y160{bottom:98.012000pt;}
.yc3{bottom:102.732800pt;}
.y11f{bottom:105.886133pt;}
.yee{bottom:105.982533pt;}
.ydc{bottom:106.462533pt;}
.ybb{bottom:110.793467pt;}
.ybf{bottom:111.308000pt;}
.y15f{bottom:111.345333pt;}
.y7e{bottom:115.033333pt;}
.y11e{bottom:119.219467pt;}
.ydb{bottom:122.462533pt;}
.y15e{bottom:124.678667pt;}
.yba{bottom:125.460133pt;}
.y7d{bottom:129.703333pt;}
.y11d{bottom:132.552800pt;}
.yc6{bottom:133.623600pt;}
.yc9{bottom:133.624800pt;}
.y15d{bottom:138.012000pt;}
.yed{bottom:138.342533pt;}
.yda{bottom:138.462533pt;}
.ybe{bottom:139.318667pt;}
.y29{bottom:142.559067pt;}
.y7c{bottom:143.483333pt;}
.yb9{bottom:143.672667pt;}
.y11c{bottom:145.886133pt;}
.y15c{bottom:151.345333pt;}
.yec{bottom:154.342533pt;}
.yd9{bottom:154.462533pt;}
.y7b{bottom:157.263333pt;}
.y28{bottom:158.559067pt;}
.y11b{bottom:159.219467pt;}
.yb8{bottom:162.678800pt;}
.y15b{bottom:164.678667pt;}
.ybd{bottom:170.342533pt;}
.yd8{bottom:170.462533pt;}
.y7a{bottom:171.038133pt;}
.y11a{bottom:172.552800pt;}
.y27{bottom:174.559067pt;}
.yb7{bottom:177.348800pt;}
.y15a{bottom:178.012000pt;}
.y79{bottom:184.818133pt;}
.y119{bottom:185.886133pt;}
.yeb{bottom:186.342533pt;}
.yd7{bottom:186.462533pt;}
.y26{bottom:190.559067pt;}
.yb6{bottom:191.128800pt;}
.y159{bottom:191.345333pt;}
.yc8{bottom:197.496800pt;}
.y78{bottom:198.598133pt;}
.y118{bottom:199.219467pt;}
.yea{bottom:202.342533pt;}
.yd6{bottom:202.462533pt;}
.y158{bottom:204.678667pt;}
.yb4{bottom:204.908800pt;}
.y25{bottom:206.559067pt;}
.yc2{bottom:211.777333pt;}
.y77{bottom:212.378133pt;}
.y117{bottom:212.552800pt;}
.y157{bottom:218.012000pt;}
.ye9{bottom:218.342533pt;}
.yd5{bottom:218.462533pt;}
.yb3{bottom:219.575067pt;}
.yb5{bottom:219.578800pt;}
.y24{bottom:222.559067pt;}
.y116{bottom:225.886133pt;}
.y75{bottom:226.158133pt;}
.y156{bottom:231.345333pt;}
.yb2{bottom:233.355067pt;}
.ye8{bottom:234.342533pt;}
.yd4{bottom:234.462533pt;}
.y23{bottom:238.559067pt;}
.y115{bottom:239.219467pt;}
.y74{bottom:240.824400pt;}
.y76{bottom:240.828133pt;}
.y155{bottom:244.678667pt;}
.yb1{bottom:247.135067pt;}
.ye7{bottom:249.982533pt;}
.yd3{bottom:250.462533pt;}
.y114{bottom:252.552800pt;}
.y22{bottom:254.559067pt;}
.y154{bottom:258.012000pt;}
.yb0{bottom:260.915067pt;}
.y113{bottom:265.886133pt;}
.y73{bottom:265.944400pt;}
.yd2{bottom:266.462533pt;}
.y21{bottom:270.559067pt;}
.y153{bottom:271.345333pt;}
.yaf{bottom:274.695067pt;}
.y112{bottom:279.219467pt;}
.ye6{bottom:282.342533pt;}
.yd1{bottom:282.462533pt;}
.y152{bottom:284.678667pt;}
.y20{bottom:286.559067pt;}
.yae{bottom:288.475067pt;}
.y72{bottom:291.064400pt;}
.y111{bottom:292.552800pt;}
.y151{bottom:298.012000pt;}
.ye5{bottom:298.342533pt;}
.yd0{bottom:298.462533pt;}
.yad{bottom:302.255067pt;}
.y1f{bottom:302.559067pt;}
.y110{bottom:305.886133pt;}
.y150{bottom:311.345333pt;}
.ye4{bottom:314.342533pt;}
.ycf{bottom:314.462533pt;}
.yac{bottom:316.035067pt;}
.y2b{bottom:318.559067pt;}
.y10f{bottom:319.219467pt;}
.y71{bottom:319.296533pt;}
.y14f{bottom:324.678667pt;}
.yab{bottom:329.801867pt;}
.ye3{bottom:330.342533pt;}
.yce{bottom:330.462533pt;}
.y10e{bottom:332.552800pt;}
.y1e{bottom:334.199067pt;}
.y2a{bottom:334.559067pt;}
.y70{bottom:336.629867pt;}
.y14e{bottom:338.012000pt;}
.yaa{bottom:343.581867pt;}
.y10d{bottom:345.886133pt;}
.ye2{bottom:346.342533pt;}
.ycd{bottom:346.462533pt;}
.y14d{bottom:351.345333pt;}
.ya9{bottom:357.361867pt;}
.y10c{bottom:359.219467pt;}
.ye1{bottom:362.342533pt;}
.ycc{bottom:362.462533pt;}
.y14c{bottom:364.678667pt;}
.ya8{bottom:371.141867pt;}
.y10b{bottom:372.552800pt;}
.y14b{bottom:378.012000pt;}
.y6f{bottom:378.336533pt;}
.ye0{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.ya7{bottom:384.921867pt;}
.y10a{bottom:385.886133pt;}
.y14a{bottom:391.345333pt;}
.y6e{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.ya6{bottom:398.701867pt;}
.y109{bottom:399.219467pt;}
.y1b{bottom:400.452133pt;}
.y149{bottom:404.678667pt;}
.yc7{bottom:406.883467pt;}
.y6d{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.ya5{bottom:412.481867pt;}
.y108{bottom:412.552800pt;}
.y1a{bottom:416.457067pt;}
.y148{bottom:418.012000pt;}
.y107{bottom:425.886133pt;}
.ya4{bottom:426.261867pt;}
.y6c{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y147{bottom:431.345333pt;}
.y106{bottom:439.219467pt;}
.ya3{bottom:440.041867pt;}
.y19{bottom:440.763733pt;}
.y6b{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y146{bottom:444.678667pt;}
.y105{bottom:452.552800pt;}
.ya2{bottom:454.711867pt;}
.y18{bottom:456.763733pt;}
.ydf{bottom:457.982533pt;}
.y145{bottom:458.012000pt;}
.y6a{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y104{bottom:465.886133pt;}
.ya1{bottom:468.491867pt;}
.y144{bottom:471.345333pt;}
.y17{bottom:472.763733pt;}
.y69{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y103{bottom:479.219467pt;}
.ya0{bottom:482.271867pt;}
.y143{bottom:484.678667pt;}
.y16{bottom:488.763733pt;}
.y68{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y102{bottom:492.552800pt;}
.y9f{bottom:496.051867pt;}
.y142{bottom:498.012000pt;}
.y15{bottom:504.763733pt;}
.y101{bottom:505.886133pt;}
.y67{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y9e{bottom:509.831867pt;}
.y141{bottom:511.345333pt;}
.y100{bottom:519.219467pt;}
.y14{bottom:520.763733pt;}
.y66{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y9d{bottom:523.611867pt;}
.y140{bottom:524.678667pt;}
.yff{bottom:532.552800pt;}
.y13{bottom:536.763733pt;}
.y9b{bottom:537.391867pt;}
.y13f{bottom:538.012000pt;}
.y65{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.yfe{bottom:545.886133pt;}
.y13e{bottom:551.345333pt;}
.y9a{bottom:552.059867pt;}
.y9c{bottom:552.061867pt;}
.y12{bottom:552.763733pt;}
.y64{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.yfd{bottom:559.219467pt;}
.y13d{bottom:564.678667pt;}
.y99{bottom:565.839867pt;}
.y11{bottom:568.763733pt;}
.y63{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.yfc{bottom:572.552800pt;}
.y13c{bottom:578.012000pt;}
.y98{bottom:579.619867pt;}
.y10{bottom:584.763733pt;}
.yfb{bottom:585.886133pt;}
.y62{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.yca{bottom:587.928800pt;}
.y13b{bottom:591.345333pt;}
.y97{bottom:593.399867pt;}
.yfa{bottom:599.219467pt;}
.yf{bottom:600.763733pt;}
.y61{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.y13a{bottom:604.680800pt;}
.y96{bottom:607.175600pt;}
.yf9{bottom:612.552800pt;}
.ye{bottom:616.763733pt;}
.y139{bottom:618.014133pt;}
.y60{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.y95{bottom:620.955600pt;}
.yf8{bottom:625.886133pt;}
.y138{bottom:631.347467pt;}
.yd{bottom:632.763733pt;}
.y5f{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.y93{bottom:634.735600pt;}
.yf7{bottom:639.219467pt;}
.y137{bottom:644.680800pt;}
.yc{bottom:648.763733pt;}
.y92{bottom:649.400400pt;}
.y94{bottom:649.405600pt;}
.y5e{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.yf6{bottom:652.552800pt;}
.y136{bottom:658.014133pt;}
.y91{bottom:663.180400pt;}
.y5d{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.y135{bottom:671.347467pt;}
.y90{bottom:676.960400pt;}
.yf5{bottom:681.982533pt;}
.y5c{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.y176{bottom:684.678667pt;}
.y134{bottom:684.680800pt;}
.yb{bottom:688.904000pt;}
.y8f{bottom:690.740400pt;}
.y175{bottom:698.012000pt;}
.y133{bottom:698.014133pt;}
.y5b{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.ya{bottom:699.972000pt;}
.y8d{bottom:704.520400pt;}
.y174{bottom:711.345333pt;}
.y132{bottom:711.347467pt;}
.y5a{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.y8c{bottom:719.183200pt;}
.y8e{bottom:719.190400pt;}
.y173{bottom:724.678667pt;}
.y131{bottom:724.680800pt;}
.y9{bottom:728.163200pt;}
.y59{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.y8b{bottom:732.963200pt;}
.y172{bottom:738.012000pt;}
.y130{bottom:738.014133pt;}
.y8{bottom:740.163200pt;}
.yf4{bottom:746.102533pt;}
.y58{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y8a{bottom:746.743200pt;}
.y171{bottom:751.345333pt;}
.y12f{bottom:751.347467pt;}
.y89{bottom:760.523200pt;}
.y57{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.y17e{bottom:762.464533pt;}
.y170{bottom:764.678667pt;}
.y12e{bottom:764.680800pt;}
.y7{bottom:770.521067pt;}
.y88{bottom:774.303200pt;}
.y16f{bottom:778.012000pt;}
.y12d{bottom:778.014133pt;}
.yf3{bottom:778.102533pt;}
.y56{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.y17d{bottom:778.464533pt;}
.y87{bottom:788.083200pt;}
.y6{bottom:789.183067pt;}
.y16e{bottom:791.345333pt;}
.y12c{bottom:791.347467pt;}
.y55{bottom:794.342533pt;}
.y37{bottom:794.462533pt;}
.y86{bottom:801.863200pt;}
.y16d{bottom:804.678667pt;}
.y12b{bottom:804.680800pt;}
.y54{bottom:810.342533pt;}
.y36{bottom:810.462533pt;}
.y17c{bottom:810.464533pt;}
.y85{bottom:815.643200pt;}
.y16c{bottom:818.012000pt;}
.y12a{bottom:818.014133pt;}
.y53{bottom:826.342533pt;}
.y35{bottom:826.462533pt;}
.y17b{bottom:826.464533pt;}
.y83{bottom:829.423200pt;}
.y5{bottom:830.226133pt;}
.y16b{bottom:831.345333pt;}
.y129{bottom:831.347467pt;}
.yf2{bottom:842.102533pt;}
.y34{bottom:842.462533pt;}
.y17a{bottom:842.464533pt;}
.y82{bottom:844.089467pt;}
.y84{bottom:844.093200pt;}
.y16a{bottom:844.678667pt;}
.y128{bottom:844.680800pt;}
.y52{bottom:857.982533pt;}
.y169{bottom:858.012000pt;}
.y127{bottom:858.014133pt;}
.y33{bottom:858.462533pt;}
.y4{bottom:862.635733pt;}
.y81{bottom:869.209467pt;}
.y168{bottom:871.345333pt;}
.y126{bottom:871.347467pt;}
.y32{bottom:874.462533pt;}
.y179{bottom:874.464533pt;}
.y167{bottom:884.678667pt;}
.y125{bottom:884.680800pt;}
.yf1{bottom:890.102533pt;}
.y31{bottom:890.462533pt;}
.y178{bottom:890.464533pt;}
.y80{bottom:894.329467pt;}
.y3{bottom:895.045333pt;}
.y166{bottom:898.012000pt;}
.y124{bottom:898.014133pt;}
.y30{bottom:906.462533pt;}
.y165{bottom:911.345333pt;}
.y123{bottom:911.347467pt;}
.ybc{bottom:922.102533pt;}
.y177{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.y164{bottom:924.678667pt;}
.y122{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y7f{bottom:1006.594400pt;}
.ycb{bottom:1006.595467pt;}
.y163{bottom:1006.598667pt;}
.y2d{bottom:1009.886667pt;}
.y2c{bottom:1022.660000pt;}
.h1c{height:23.170700pt;}
.h7{height:25.255208pt;}
.h2{height:27.197917pt;}
.h13{height:27.792969pt;}
.h19{height:27.810035pt;}
.h1b{height:27.845769pt;}
.hc{height:29.140625pt;}
.h6{height:29.160156pt;}
.h14{height:29.400000pt;}
.h1f{height:29.645833pt;}
.h1a{height:29.980315pt;}
.h15{height:29.987781pt;}
.h17{height:29.993648pt;}
.h18{height:30.001648pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h1e{height:31.360000pt;}
.h16{height:35.019531pt;}
.he{height:37.057292pt;}
.h1d{height:37.354167pt;}
.hd{height:38.828125pt;}
.h8{height:38.854167pt;}
.hb{height:38.860475pt;}
.h9{height:38.880208pt;}
.h12{height:39.200000pt;}
.ha{height:40.640000pt;}
.h5{height:40.769531pt;}
.hf{height:46.692708pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x11{left:69.921333pt;}
.x12{left:77.475867pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x18{left:88.818933pt;}
.x24{left:90.708800pt;}
.x4{left:94.488133pt;}
.x19{left:96.380133pt;}
.xd{left:98.271467pt;}
.x22{left:109.606533pt;}
.x3{left:111.499067pt;}
.x7{left:117.170133pt;}
.x1f{left:146.267733pt;}
.x5{left:170.071333pt;}
.x6{left:189.223467pt;}
.x1d{left:191.235867pt;}
.x13{left:301.145867pt;}
.x1a{left:320.040133pt;}
.xb{left:404.481333pt;}
.xe{left:406.296133pt;}
.x14{left:410.832533pt;}
.x1e{left:425.209200pt;}
.x8{left:427.090133pt;}
.x10{left:436.536133pt;}
.x23{left:447.878533pt;}
.x20{left:455.430400pt;}
.x9{left:457.330133pt;}
.xf{left:466.909467pt;}
.x21{left:507.271600pt;}
.x1c{left:525.924800pt;}
.x15{left:547.042533pt;}
.x17{left:589.770933pt;}
.x2{left:616.324800pt;}
.x16{left:653.391467pt;}
.x1b{left:672.289067pt;}
}




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