
    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_3a5e753f3c9933a6dc942572.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_c10a6cf8143454d9e29a5e24.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_628409fc6e5fead3d62d214b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.079590;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_c6f728bae7fb0d579207381b.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_eccc4346469b44e36b7fc844.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_2fc3214f62305bbdccdc7fd8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.074219;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_6a8f16edf7cc64b03c894054.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.863281;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_61fbccfb5cbd1873a2dac9d5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_88fe27db5c77587e39f7b236.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_b8ec7380a32aec6f64878db6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_495e215570396d4b738c1962.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.882324;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;}
.m1{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,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);}
.m2{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:-16.471800px;}
.v5{vertical-align:-6.470400px;}
.v4{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:22.655400px;}
.ls1f{letter-spacing:-0.960000px;}
.ls41{letter-spacing:-0.600000px;}
.ls50{letter-spacing:-0.480000px;}
.ls4f{letter-spacing:-0.432000px;}
.ls71{letter-spacing:-0.384000px;}
.ls63{letter-spacing:-0.360000px;}
.ls51{letter-spacing:-0.336000px;}
.ls4e{letter-spacing:-0.300000px;}
.ls42{letter-spacing:-0.240000px;}
.ls43{letter-spacing:-0.180000px;}
.ls3f{letter-spacing:-0.120000px;}
.ls1e{letter-spacing:-0.096000px;}
.ls1c{letter-spacing:-0.084000px;}
.ls3e{letter-spacing:-0.060000px;}
.ls8d{letter-spacing:-0.048000px;}
.ls1d{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls77{letter-spacing:0.048000px;}
.ls4a{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.120000px;}
.ls6f{letter-spacing:0.144000px;}
.ls48{letter-spacing:0.180000px;}
.ls6a{letter-spacing:0.192000px;}
.ls3a{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.300000px;}
.ls7c{letter-spacing:0.336000px;}
.ls13{letter-spacing:0.360000px;}
.ls6c{letter-spacing:0.384000px;}
.ls30{letter-spacing:0.420000px;}
.ls87{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.480000px;}
.ls8f{letter-spacing:0.528000px;}
.ls47{letter-spacing:0.540000px;}
.ls7e{letter-spacing:0.576000px;}
.ls23{letter-spacing:0.600000px;}
.ls2b{letter-spacing:0.660000px;}
.ls80{letter-spacing:0.672000px;}
.ls19{letter-spacing:0.720000px;}
.ls88{letter-spacing:0.768000px;}
.ls4c{letter-spacing:0.780000px;}
.ls4{letter-spacing:0.816000px;}
.ls49{letter-spacing:0.840000px;}
.ls85{letter-spacing:0.864000px;}
.ls5f{letter-spacing:0.900000px;}
.ls8b{letter-spacing:0.912000px;}
.ls17{letter-spacing:0.960000px;}
.ls78{letter-spacing:1.008000px;}
.ls16{letter-spacing:1.020000px;}
.lsf{letter-spacing:1.080000px;}
.ls7a{letter-spacing:1.104000px;}
.ls1a{letter-spacing:1.140000px;}
.ls2{letter-spacing:1.152000px;}
.ls27{letter-spacing:1.200000px;}
.ls79{letter-spacing:1.248000px;}
.ls31{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.320000px;}
.ls7b{letter-spacing:1.344000px;}
.ls3c{letter-spacing:1.380000px;}
.ls7f{letter-spacing:1.392000px;}
.ls12{letter-spacing:1.440000px;}
.ls69{letter-spacing:1.488000px;}
.ls15{letter-spacing:1.500000px;}
.ls11{letter-spacing:1.560000px;}
.ls6e{letter-spacing:1.584000px;}
.ls56{letter-spacing:1.620000px;}
.ls83{letter-spacing:1.632000px;}
.ls8{letter-spacing:1.680000px;}
.ls61{letter-spacing:1.740000px;}
.ls58{letter-spacing:1.800000px;}
.ls6d{letter-spacing:1.824000px;}
.ls39{letter-spacing:1.860000px;}
.ls74{letter-spacing:1.872000px;}
.ls3b{letter-spacing:1.920000px;}
.ls2a{letter-spacing:1.980000px;}
.ls6{letter-spacing:2.040000px;}
.ls7d{letter-spacing:2.064000px;}
.ls1b{letter-spacing:2.100000px;}
.lse{letter-spacing:2.160000px;}
.ls54{letter-spacing:2.220000px;}
.ls8a{letter-spacing:2.256000px;}
.ls60{letter-spacing:2.280000px;}
.ls45{letter-spacing:2.340000px;}
.ls4b{letter-spacing:2.400000px;}
.ls70{letter-spacing:2.448000px;}
.ls4d{letter-spacing:2.460000px;}
.lsb{letter-spacing:2.520000px;}
.ls21{letter-spacing:2.580000px;}
.ls8e{letter-spacing:2.592000px;}
.ls5d{letter-spacing:2.640000px;}
.ls76{letter-spacing:2.688000px;}
.ls38{letter-spacing:2.700000px;}
.ls75{letter-spacing:2.736000px;}
.ls14{letter-spacing:2.760000px;}
.ls46{letter-spacing:2.820000px;}
.lsa{letter-spacing:2.880000px;}
.ls65{letter-spacing:2.940000px;}
.ls20{letter-spacing:3.000000px;}
.ls72{letter-spacing:3.024000px;}
.ls22{letter-spacing:3.060000px;}
.ls55{letter-spacing:3.120000px;}
.ls86{letter-spacing:3.168000px;}
.ls5a{letter-spacing:3.180000px;}
.ls28{letter-spacing:3.240000px;}
.ls89{letter-spacing:3.264000px;}
.ls10{letter-spacing:3.300000px;}
.ls7{letter-spacing:3.360000px;}
.ls24{letter-spacing:3.420000px;}
.ls3d{letter-spacing:3.480000px;}
.ls81{letter-spacing:3.504000px;}
.ls73{letter-spacing:3.552000px;}
.ls2d{letter-spacing:3.720000px;}
.lsc{letter-spacing:3.780000px;}
.ls6b{letter-spacing:3.792000px;}
.ls18{letter-spacing:3.900000px;}
.ls53{letter-spacing:3.960000px;}
.ls2c{letter-spacing:4.020000px;}
.ls64{letter-spacing:4.080000px;}
.ls8c{letter-spacing:4.128000px;}
.ls44{letter-spacing:4.260000px;}
.ls62{letter-spacing:4.320000px;}
.ls2e{letter-spacing:4.380000px;}
.ls59{letter-spacing:4.440000px;}
.ls82{letter-spacing:4.464000px;}
.ls5c{letter-spacing:4.560000px;}
.lsd{letter-spacing:4.680000px;}
.ls66{letter-spacing:4.740000px;}
.ls5b{letter-spacing:4.800000px;}
.ls29{letter-spacing:4.860000px;}
.ls37{letter-spacing:4.920000px;}
.ls67{letter-spacing:4.980000px;}
.ls5{letter-spacing:5.220000px;}
.ls26{letter-spacing:5.280000px;}
.ls36{letter-spacing:5.340000px;}
.ls5e{letter-spacing:5.460000px;}
.ls52{letter-spacing:5.700000px;}
.ls84{letter-spacing:5.760000px;}
.ls32{letter-spacing:6.060000px;}
.ls35{letter-spacing:6.540000px;}
.ls57{letter-spacing:7.140000px;}
.ls40{letter-spacing:7.620000px;}
.ls34{letter-spacing:7.740000px;}
.ls68{letter-spacing:8.040000px;}
.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;}
}
.ws4e{word-spacing:-48.000000px;}
.ws29{word-spacing:-24.420000px;}
.ws2a{word-spacing:-21.960000px;}
.ws60{word-spacing:-21.120000px;}
.ws7d{word-spacing:-19.860000px;}
.ws6c{word-spacing:-19.440000px;}
.ws7c{word-spacing:-19.080000px;}
.ws7f{word-spacing:-19.020000px;}
.ws7b{word-spacing:-18.660000px;}
.ws2b{word-spacing:-18.540000px;}
.ws3{word-spacing:-18.180000px;}
.ws1{word-spacing:-18.120000px;}
.ws80{word-spacing:-18.060000px;}
.ws6d{word-spacing:-17.940000px;}
.ws7e{word-spacing:-17.880000px;}
.ws4{word-spacing:-17.760000px;}
.ws6b{word-spacing:-17.700000px;}
.ws4d{word-spacing:-17.640000px;}
.ws6f{word-spacing:-17.580000px;}
.ws6e{word-spacing:-17.460000px;}
.ws5{word-spacing:-17.400000px;}
.ws7a{word-spacing:-17.280000px;}
.ws70{word-spacing:-17.100000px;}
.ws2{word-spacing:-16.680000px;}
.ws5f{word-spacing:-16.560000px;}
.ws71{word-spacing:-16.320000px;}
.ws92{word-spacing:-16.080000px;}
.ws93{word-spacing:-15.408000px;}
.ws97{word-spacing:-14.976000px;}
.ws96{word-spacing:-14.736000px;}
.ws94{word-spacing:-13.920000px;}
.ws91{word-spacing:-13.488000px;}
.ws81{word-spacing:-13.344000px;}
.ws95{word-spacing:-13.296000px;}
.ws0{word-spacing:-11.008800px;}
.ws40{word-spacing:-7.740000px;}
.ws41{word-spacing:-7.620000px;}
.ws66{word-spacing:-7.140000px;}
.ws42{word-spacing:-6.540000px;}
.ws61{word-spacing:-5.700000px;}
.ws43{word-spacing:-5.340000px;}
.ws30{word-spacing:-5.280000px;}
.wse{word-spacing:-5.220000px;}
.ws86{word-spacing:-4.980000px;}
.ws44{word-spacing:-4.920000px;}
.ws34{word-spacing:-4.860000px;}
.ws72{word-spacing:-4.800000px;}
.ws85{word-spacing:-4.740000px;}
.ws17{word-spacing:-4.620000px;}
.ws73{word-spacing:-4.560000px;}
.wsa7{word-spacing:-4.464000px;}
.ws68{word-spacing:-4.440000px;}
.ws39{word-spacing:-4.380000px;}
.ws79{word-spacing:-4.320000px;}
.ws50{word-spacing:-4.260000px;}
.wsb1{word-spacing:-4.128000px;}
.ws83{word-spacing:-4.080000px;}
.ws37{word-spacing:-4.020000px;}
.ws62{word-spacing:-3.960000px;}
.ws25{word-spacing:-3.900000px;}
.ws89{word-spacing:-3.792000px;}
.ws16{word-spacing:-3.780000px;}
.ws38{word-spacing:-3.720000px;}
.ws7{word-spacing:-3.630000px;}
.ws98{word-spacing:-3.552000px;}
.wsa6{word-spacing:-3.504000px;}
.ws32{word-spacing:-3.480000px;}
.ws2e{word-spacing:-3.420000px;}
.ws10{word-spacing:-3.360000px;}
.ws1a{word-spacing:-3.300000px;}
.wsaf{word-spacing:-3.264000px;}
.ws33{word-spacing:-3.240000px;}
.ws6a{word-spacing:-3.180000px;}
.wsab{word-spacing:-3.168000px;}
.ws64{word-spacing:-3.120000px;}
.ws2c{word-spacing:-3.060000px;}
.ws8f{word-spacing:-3.024000px;}
.wsd{word-spacing:-3.000000px;}
.ws84{word-spacing:-2.940000px;}
.ws14{word-spacing:-2.880000px;}
.ws52{word-spacing:-2.820000px;}
.ws21{word-spacing:-2.760000px;}
.ws9a{word-spacing:-2.736000px;}
.ws45{word-spacing:-2.700000px;}
.ws74{word-spacing:-2.640000px;}
.wsac{word-spacing:-2.592000px;}
.ws12{word-spacing:-2.580000px;}
.ws15{word-spacing:-2.520000px;}
.ws56{word-spacing:-2.460000px;}
.ws90{word-spacing:-2.448000px;}
.ws54{word-spacing:-2.400000px;}
.ws51{word-spacing:-2.340000px;}
.ws76{word-spacing:-2.280000px;}
.wsb0{word-spacing:-2.256000px;}
.ws63{word-spacing:-2.220000px;}
.ws18{word-spacing:-2.160000px;}
.ws1b{word-spacing:-2.100000px;}
.wsa2{word-spacing:-2.064000px;}
.wsf{word-spacing:-2.040000px;}
.ws35{word-spacing:-1.980000px;}
.ws4b{word-spacing:-1.920000px;}
.ws99{word-spacing:-1.872000px;}
.ws49{word-spacing:-1.860000px;}
.ws8b{word-spacing:-1.824000px;}
.ws67{word-spacing:-1.800000px;}
.ws77{word-spacing:-1.740000px;}
.ws11{word-spacing:-1.680000px;}
.wsa8{word-spacing:-1.632000px;}
.ws65{word-spacing:-1.620000px;}
.ws8d{word-spacing:-1.584000px;}
.ws1c{word-spacing:-1.560000px;}
.ws22{word-spacing:-1.500000px;}
.ws87{word-spacing:-1.488000px;}
.ws1e{word-spacing:-1.440000px;}
.wsa4{word-spacing:-1.392000px;}
.ws4c{word-spacing:-1.380000px;}
.wsa0{word-spacing:-1.344000px;}
.ws13{word-spacing:-1.320000px;}
.ws3d{word-spacing:-1.260000px;}
.ws9d{word-spacing:-1.248000px;}
.ws31{word-spacing:-1.200000px;}
.ws8{word-spacing:-1.152000px;}
.ws28{word-spacing:-1.140000px;}
.ws9f{word-spacing:-1.104000px;}
.ws19{word-spacing:-1.080000px;}
.ws23{word-spacing:-1.020000px;}
.ws9c{word-spacing:-1.008000px;}
.ws24{word-spacing:-0.960000px;}
.ws9e{word-spacing:-0.912000px;}
.ws75{word-spacing:-0.900000px;}
.wsaa{word-spacing:-0.864000px;}
.ws57{word-spacing:-0.840000px;}
.wsb{word-spacing:-0.816000px;}
.ws59{word-spacing:-0.780000px;}
.wsad{word-spacing:-0.768000px;}
.ws27{word-spacing:-0.720000px;}
.wsa5{word-spacing:-0.672000px;}
.ws36{word-spacing:-0.660000px;}
.ws2d{word-spacing:-0.600000px;}
.wsa3{word-spacing:-0.576000px;}
.ws53{word-spacing:-0.540000px;}
.wsae{word-spacing:-0.528000px;}
.ws2f{word-spacing:-0.480000px;}
.ws5c{word-spacing:-0.432000px;}
.ws3c{word-spacing:-0.420000px;}
.ws8a{word-spacing:-0.384000px;}
.ws20{word-spacing:-0.360000px;}
.wsa1{word-spacing:-0.336000px;}
.ws3a{word-spacing:-0.300000px;}
.wsa{word-spacing:-0.288000px;}
.ws4a{word-spacing:-0.240000px;}
.ws88{word-spacing:-0.192000px;}
.ws55{word-spacing:-0.180000px;}
.ws8e{word-spacing:-0.144000px;}
.ws3e{word-spacing:-0.120000px;}
.ws58{word-spacing:-0.060000px;}
.ws9b{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.wsa9{word-spacing:0.048000px;}
.ws3b{word-spacing:0.060000px;}
.ws9{word-spacing:0.096000px;}
.ws3f{word-spacing:0.120000px;}
.ws48{word-spacing:0.180000px;}
.ws47{word-spacing:0.240000px;}
.ws5a{word-spacing:0.300000px;}
.ws5e{word-spacing:0.336000px;}
.ws78{word-spacing:0.360000px;}
.ws8c{word-spacing:0.384000px;}
.ws5b{word-spacing:0.432000px;}
.ws5d{word-spacing:0.480000px;}
.ws46{word-spacing:0.600000px;}
.wsc{word-spacing:0.960000px;}
.ws69{word-spacing:1.296000px;}
.ws1f{word-spacing:2.520000px;}
.ws82{word-spacing:4.560000px;}
.ws1d{word-spacing:5.460000px;}
.ws26{word-spacing:5.520000px;}
.ws4f{word-spacing:540.048000px;}
._e{margin-left:-2898.126000px;}
._10{margin-left:-2874.309000px;}
._5{margin-left:-7.318800px;}
._0{margin-left:-6.132000px;}
._4{margin-left:-4.884000px;}
._1{margin-left:-3.108000px;}
._3{margin-left:-1.158600px;}
._7{width:1.632000px;}
._b{width:2.688000px;}
._2{width:3.720000px;}
._6{width:5.520000px;}
._a{width:6.840000px;}
._8{width:8.700000px;}
._f{width:9.720000px;}
._9{width:10.740000px;}
._d{width:12.000000px;}
._c{width:13.020000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.800000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:62.116583px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y156{bottom:82.796700px;}
.yce{bottom:83.043450px;}
.yc8{bottom:83.209200px;}
.ydd{bottom:83.228850px;}
.y144{bottom:83.229000px;}
.yc3{bottom:83.363850px;}
.y121{bottom:83.364000px;}
.y29{bottom:83.493900px;}
.ydf{bottom:83.775900px;}
.y8c{bottom:88.305600px;}
.y155{bottom:97.796700px;}
.yc7{bottom:98.953200px;}
.yde{bottom:99.519900px;}
.ydc{bottom:101.228850px;}
.y143{bottom:101.229000px;}
.yc2{bottom:101.363850px;}
.y120{bottom:101.364000px;}
.y8b{bottom:106.305600px;}
.yd1{bottom:110.993250px;}
.y154{bottom:112.796700px;}
.yc6{bottom:114.697200px;}
.ydb{bottom:119.228850px;}
.y142{bottom:119.229000px;}
.yc1{bottom:119.363850px;}
.y11f{bottom:119.364000px;}
.y8a{bottom:124.305600px;}
.y153{bottom:127.796700px;}
.yc5{bottom:130.441200px;}
.yda{bottom:137.228850px;}
.y141{bottom:137.229000px;}
.yc0{bottom:137.363850px;}
.y11e{bottom:137.364000px;}
.y89{bottom:142.305600px;}
.y152{bottom:142.796700px;}
.yc4{bottom:146.185200px;}
.y14{bottom:146.481900px;}
.yd9{bottom:155.228850px;}
.y140{bottom:155.229000px;}
.ybf{bottom:155.363850px;}
.y11d{bottom:155.364000px;}
.ye6{bottom:157.218150px;}
.y151{bottom:157.796700px;}
.yeb{bottom:158.174400px;}
.y88{bottom:160.305600px;}
.ye5{bottom:165.726150px;}
.y150{bottom:172.796700px;}
.yd8{bottom:173.228850px;}
.y13f{bottom:173.229000px;}
.ybe{bottom:173.363850px;}
.y11c{bottom:173.364000px;}
.y87{bottom:178.305600px;}
.y14f{bottom:187.796700px;}
.yd7{bottom:191.228850px;}
.y13e{bottom:191.229000px;}
.ybd{bottom:191.363850px;}
.y11b{bottom:191.364000px;}
.yd0{bottom:194.753250px;}
.y86{bottom:196.305600px;}
.y25{bottom:197.745600px;}
.y14e{bottom:202.796700px;}
.yd6{bottom:209.228850px;}
.y13d{bottom:209.229000px;}
.ybc{bottom:209.363850px;}
.y11a{bottom:209.364000px;}
.y57{bottom:209.367600px;}
.y85{bottom:214.305600px;}
.y24{bottom:215.745600px;}
.y14d{bottom:217.796700px;}
.yea{bottom:220.358400px;}
.yd5{bottom:227.228850px;}
.y13c{bottom:227.229000px;}
.ybb{bottom:227.363850px;}
.y119{bottom:227.364000px;}
.y56{bottom:227.367600px;}
.y84{bottom:232.305600px;}
.y14c{bottom:232.796700px;}
.y23{bottom:233.745600px;}
.yd4{bottom:245.228850px;}
.y13b{bottom:245.229000px;}
.yba{bottom:245.363850px;}
.y118{bottom:245.364000px;}
.y55{bottom:245.367600px;}
.y14b{bottom:247.796700px;}
.y83{bottom:250.305600px;}
.y22{bottom:251.745600px;}
.y14a{bottom:262.796700px;}
.y13a{bottom:263.229000px;}
.yb9{bottom:263.363850px;}
.y117{bottom:263.364000px;}
.y54{bottom:263.367600px;}
.y82{bottom:268.305600px;}
.y21{bottom:269.745600px;}
.y149{bottom:277.796700px;}
.ycd{bottom:280.541850px;}
.yd3{bottom:281.228850px;}
.y139{bottom:281.229000px;}
.yb8{bottom:281.363850px;}
.y116{bottom:281.364000px;}
.y53{bottom:281.367600px;}
.y81{bottom:286.305600px;}
.y20{bottom:287.745600px;}
.y189{bottom:289.938300px;}
.ycc{bottom:291.161850px;}
.y148{bottom:292.796700px;}
.y138{bottom:299.229000px;}
.yb7{bottom:299.363850px;}
.y115{bottom:299.364000px;}
.y52{bottom:299.367600px;}
.y80{bottom:304.305600px;}
.y188{bottom:304.938300px;}
.y1f{bottom:305.745600px;}
.y147{bottom:307.796700px;}
.y137{bottom:317.229000px;}
.yb6{bottom:317.363850px;}
.y114{bottom:317.364000px;}
.y51{bottom:317.367600px;}
.y187{bottom:319.938300px;}
.ye4{bottom:321.354150px;}
.y7f{bottom:322.305600px;}
.y146{bottom:322.796700px;}
.y1e{bottom:323.745600px;}
.ycf{bottom:329.009250px;}
.y186{bottom:334.938300px;}
.y136{bottom:335.229000px;}
.yb5{bottom:335.363850px;}
.y113{bottom:335.364000px;}
.y50{bottom:335.367600px;}
.y145{bottom:337.796700px;}
.y7e{bottom:340.305600px;}
.y1d{bottom:341.745600px;}
.y185{bottom:349.938300px;}
.y135{bottom:353.229000px;}
.yb4{bottom:353.363850px;}
.y112{bottom:353.364000px;}
.y4f{bottom:353.367600px;}
.y7d{bottom:358.305600px;}
.y1c{bottom:359.745600px;}
.y184{bottom:364.938300px;}
.y134{bottom:371.229000px;}
.yb3{bottom:371.363850px;}
.y111{bottom:371.364000px;}
.y4e{bottom:371.367600px;}
.y7c{bottom:376.305600px;}
.y1b{bottom:377.745600px;}
.y183{bottom:379.938300px;}
.ye9{bottom:381.938400px;}
.ycb{bottom:388.961850px;}
.y133{bottom:389.229000px;}
.yb2{bottom:389.363850px;}
.y110{bottom:389.364000px;}
.y4d{bottom:389.367600px;}
.y7b{bottom:394.305600px;}
.y182{bottom:394.938300px;}
.y1a{bottom:395.745600px;}
.y132{bottom:407.229000px;}
.yb1{bottom:407.363850px;}
.y10f{bottom:407.364000px;}
.y4c{bottom:407.367600px;}
.y181{bottom:409.938300px;}
.y7a{bottom:412.305600px;}
.y19{bottom:413.745600px;}
.y180{bottom:424.938300px;}
.y131{bottom:425.229000px;}
.yb0{bottom:425.363850px;}
.y10e{bottom:425.364000px;}
.y4b{bottom:425.367600px;}
.y79{bottom:430.305600px;}
.y18{bottom:431.745600px;}
.y17f{bottom:439.938300px;}
.y130{bottom:443.229000px;}
.yaf{bottom:443.363850px;}
.y10d{bottom:443.364000px;}
.y4a{bottom:443.367600px;}
.y78{bottom:448.305600px;}
.y17{bottom:449.745600px;}
.y17e{bottom:454.938300px;}
.y12f{bottom:461.229000px;}
.yae{bottom:461.363850px;}
.y10c{bottom:461.364000px;}
.y49{bottom:461.367600px;}
.y77{bottom:466.305600px;}
.y16{bottom:467.745600px;}
.y17d{bottom:469.938300px;}
.y12e{bottom:479.229000px;}
.yad{bottom:479.363850px;}
.y10b{bottom:479.364000px;}
.y48{bottom:479.367600px;}
.y76{bottom:484.305600px;}
.y17c{bottom:484.938300px;}
.y26{bottom:485.745600px;}
.y12d{bottom:497.229000px;}
.yac{bottom:497.363850px;}
.y10a{bottom:497.364000px;}
.y47{bottom:497.367600px;}
.y17b{bottom:499.938300px;}
.y75{bottom:502.305600px;}
.y15{bottom:503.745600px;}
.y18a{bottom:512.694300px;}
.yca{bottom:513.545850px;}
.y17a{bottom:514.938300px;}
.y12c{bottom:515.229000px;}
.yab{bottom:515.363850px;}
.y109{bottom:515.364000px;}
.y46{bottom:515.367600px;}
.ye3{bottom:518.226150px;}
.y74{bottom:520.305600px;}
.y179{bottom:529.938300px;}
.y12b{bottom:533.229000px;}
.yaa{bottom:533.363850px;}
.y108{bottom:533.364000px;}
.y45{bottom:533.367600px;}
.y73{bottom:538.305600px;}
.y178{bottom:544.938300px;}
.y12a{bottom:551.229000px;}
.ya9{bottom:551.363850px;}
.y107{bottom:551.364000px;}
.y44{bottom:551.367600px;}
.y72{bottom:556.305600px;}
.y177{bottom:559.938300px;}
.ye2{bottom:567.546150px;}
.y129{bottom:569.229000px;}
.ya8{bottom:569.363850px;}
.y106{bottom:569.364000px;}
.y43{bottom:569.367600px;}
.y71{bottom:574.305600px;}
.y13{bottom:574.305900px;}
.y176{bottom:574.938300px;}
.y128{bottom:587.229000px;}
.ya7{bottom:587.363850px;}
.y105{bottom:587.364000px;}
.y42{bottom:587.367600px;}
.y175{bottom:589.938300px;}
.ye8{bottom:591.350400px;}
.y70{bottom:592.305600px;}
.y174{bottom:604.938300px;}
.y127{bottom:605.229000px;}
.ya6{bottom:605.363850px;}
.y104{bottom:605.364000px;}
.y41{bottom:605.367600px;}
.y12{bottom:607.161900px;}
.y6f{bottom:610.305600px;}
.y173{bottom:619.938300px;}
.y11{bottom:622.161900px;}
.y126{bottom:623.229000px;}
.ya5{bottom:623.363850px;}
.y103{bottom:623.364000px;}
.y40{bottom:623.367600px;}
.y6e{bottom:628.305600px;}
.yc9{bottom:630.473850px;}
.ye7{bottom:630.686400px;}
.y172{bottom:634.938300px;}
.y10{bottom:637.161900px;}
.y125{bottom:641.229000px;}
.ya4{bottom:641.363850px;}
.y102{bottom:641.364000px;}
.y3f{bottom:641.367600px;}
.yd2{bottom:644.513250px;}
.y6d{bottom:646.305600px;}
.y171{bottom:649.938300px;}
.yf{bottom:652.161900px;}
.y124{bottom:659.229000px;}
.ya3{bottom:659.363850px;}
.y101{bottom:659.364000px;}
.y3e{bottom:659.367600px;}
.y6b{bottom:663.977850px;}
.y6c{bottom:664.305600px;}
.y6a{bottom:664.309350px;}
.y170{bottom:664.938300px;}
.ye{bottom:667.161900px;}
.y123{bottom:677.229000px;}
.ya2{bottom:677.363850px;}
.y100{bottom:677.364000px;}
.y3d{bottom:677.367600px;}
.y16f{bottom:679.938300px;}
.yd{bottom:682.161900px;}
.y69{bottom:682.309350px;}
.ye0{bottom:687.450150px;}
.y16e{bottom:694.938300px;}
.ya1{bottom:695.363850px;}
.yff{bottom:695.364000px;}
.y3c{bottom:695.367600px;}
.yc{bottom:697.161900px;}
.y68{bottom:700.309350px;}
.y16d{bottom:709.938300px;}
.y122{bottom:713.229000px;}
.ya0{bottom:713.363850px;}
.yfe{bottom:713.364000px;}
.y3b{bottom:713.367600px;}
.y67{bottom:718.309350px;}
.ye1{bottom:724.446150px;}
.y16c{bottom:724.938300px;}
.y9f{bottom:731.363850px;}
.yfd{bottom:731.364000px;}
.y3a{bottom:731.367600px;}
.y66{bottom:736.309350px;}
.y16b{bottom:739.938300px;}
.yb{bottom:746.085000px;}
.y9e{bottom:749.363850px;}
.yfc{bottom:749.364000px;}
.y39{bottom:749.367600px;}
.y65{bottom:754.309350px;}
.y16a{bottom:754.938300px;}
.y9d{bottom:767.363850px;}
.yfb{bottom:767.364000px;}
.y38{bottom:767.367600px;}
.y169{bottom:769.938300px;}
.y64{bottom:772.309350px;}
.ya{bottom:784.523850px;}
.y168{bottom:784.938300px;}
.y9c{bottom:785.363850px;}
.yfa{bottom:785.364000px;}
.y37{bottom:785.367600px;}
.y63{bottom:790.309350px;}
.y167{bottom:799.938300px;}
.y9{bottom:801.023850px;}
.y9b{bottom:803.363850px;}
.yf9{bottom:803.364000px;}
.y36{bottom:803.367600px;}
.y62{bottom:808.309350px;}
.y166{bottom:814.938300px;}
.y8{bottom:817.523850px;}
.y9a{bottom:821.363850px;}
.yf8{bottom:821.364000px;}
.y35{bottom:821.367600px;}
.y61{bottom:826.309350px;}
.y165{bottom:829.938300px;}
.y7{bottom:834.023850px;}
.y99{bottom:839.363850px;}
.yf7{bottom:839.364000px;}
.y34{bottom:839.367600px;}
.y60{bottom:844.309350px;}
.y164{bottom:844.938300px;}
.y6{bottom:846.405900px;}
.y98{bottom:857.363850px;}
.yf6{bottom:857.364000px;}
.y33{bottom:857.367600px;}
.y163{bottom:859.938300px;}
.y5f{bottom:862.309350px;}
.y5{bottom:867.023850px;}
.y162{bottom:874.938300px;}
.y97{bottom:875.363850px;}
.yf5{bottom:875.364000px;}
.y32{bottom:875.367600px;}
.y5e{bottom:880.309350px;}
.y4{bottom:882.292800px;}
.y161{bottom:889.938300px;}
.y96{bottom:893.363850px;}
.yf4{bottom:893.364000px;}
.y31{bottom:893.367600px;}
.y160{bottom:904.938300px;}
.y3{bottom:905.541300px;}
.y95{bottom:911.363850px;}
.yf3{bottom:911.364000px;}
.y30{bottom:911.367600px;}
.y5d{bottom:915.186900px;}
.y15f{bottom:919.938300px;}
.y94{bottom:929.363850px;}
.yf2{bottom:929.364000px;}
.y2f{bottom:929.367600px;}
.y5c{bottom:930.792900px;}
.y2{bottom:932.935800px;}
.y15e{bottom:934.938300px;}
.y93{bottom:947.363850px;}
.yf1{bottom:947.364000px;}
.y2e{bottom:947.367600px;}
.y5b{bottom:947.517600px;}
.y15d{bottom:949.938300px;}
.y1{bottom:959.941800px;}
.y15c{bottom:964.938300px;}
.y92{bottom:965.363850px;}
.yf0{bottom:965.364000px;}
.y2d{bottom:965.367600px;}
.y5a{bottom:965.517600px;}
.y15b{bottom:979.938300px;}
.y91{bottom:983.363850px;}
.yef{bottom:983.364000px;}
.y2c{bottom:983.367600px;}
.y59{bottom:983.517600px;}
.y15a{bottom:994.938300px;}
.y90{bottom:1001.363850px;}
.yee{bottom:1001.364000px;}
.y2b{bottom:1001.367600px;}
.y58{bottom:1001.517600px;}
.y159{bottom:1009.938300px;}
.y8f{bottom:1019.363850px;}
.yed{bottom:1019.364000px;}
.y158{bottom:1024.938300px;}
.y8e{bottom:1037.363850px;}
.yec{bottom:1037.364000px;}
.y2a{bottom:1037.367600px;}
.y157{bottom:1039.938300px;}
.y28{bottom:1070.769450px;}
.y8d{bottom:1086.066450px;}
.y27{bottom:1086.069450px;}
.h4{height:24.989138px;}
.h6{height:34.945312px;}
.h5{height:41.460938px;}
.h7{height:41.718750px;}
.h8{height:43.681641px;}
.hb{height:44.326172px;}
.hc{height:46.933594px;}
.hd{height:48.699401px;}
.ha{height:51.826172px;}
.h9{height:52.148438px;}
.h3{height:57.363281px;}
.h2{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.532250px;}
.x7{left:96.094500px;}
.x1{left:97.795350px;}
.x19{left:105.874050px;}
.xa{left:110.552250px;}
.x2{left:125.427600px;}
.x5{left:131.816400px;}
.x9{left:144.722250px;}
.x3{left:161.571600px;}
.x25{left:199.834050px;}
.x1f{left:201.118050px;}
.x22{left:207.490050px;}
.x2b{left:211.390350px;}
.x4{left:212.876400px;}
.x26{left:249.271650px;}
.x1a{left:260.218050px;}
.x1c{left:270.425100px;}
.x28{left:271.591650px;}
.x2a{left:355.567650px;}
.x1d{left:361.421100px;}
.x24{left:405.634050px;}
.x8{left:455.041500px;}
.x13{left:457.082400px;}
.x10{left:461.749050px;}
.xe{left:466.727250px;}
.x17{left:478.345350px;}
.x6{left:480.476400px;}
.x2d{left:486.850500px;}
.x12{left:491.102400px;}
.x2c{left:508.106400px;}
.x18{left:512.365350px;}
.x14{left:529.757250px;}
.xd{left:544.547250px;}
.x15{left:547.917000px;}
.x23{left:562.534050px;}
.x21{left:569.758050px;}
.x11{left:578.807550px;}
.xc{left:591.662250px;}
.xf{left:596.927250px;}
.x1e{left:601.229100px;}
.x20{left:607.606050px;}
.x29{left:617.599650px;}
.x27{left:625.039650px;}
.x2e{left:717.130200px;}
.x16{left:724.221150px;}
.x1b{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v5{vertical-align:-5.751467pt;}
.v4{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:20.138133pt;}
.ls1f{letter-spacing:-0.853333pt;}
.ls41{letter-spacing:-0.533333pt;}
.ls50{letter-spacing:-0.426667pt;}
.ls4f{letter-spacing:-0.384000pt;}
.ls71{letter-spacing:-0.341333pt;}
.ls63{letter-spacing:-0.320000pt;}
.ls51{letter-spacing:-0.298667pt;}
.ls4e{letter-spacing:-0.266667pt;}
.ls42{letter-spacing:-0.213333pt;}
.ls43{letter-spacing:-0.160000pt;}
.ls3f{letter-spacing:-0.106667pt;}
.ls1e{letter-spacing:-0.085333pt;}
.ls1c{letter-spacing:-0.074667pt;}
.ls3e{letter-spacing:-0.053333pt;}
.ls8d{letter-spacing:-0.042667pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls77{letter-spacing:0.042667pt;}
.ls4a{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.106667pt;}
.ls6f{letter-spacing:0.128000pt;}
.ls48{letter-spacing:0.160000pt;}
.ls6a{letter-spacing:0.170667pt;}
.ls3a{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.266667pt;}
.ls7c{letter-spacing:0.298667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls6c{letter-spacing:0.341333pt;}
.ls30{letter-spacing:0.373333pt;}
.ls87{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.426667pt;}
.ls8f{letter-spacing:0.469333pt;}
.ls47{letter-spacing:0.480000pt;}
.ls7e{letter-spacing:0.512000pt;}
.ls23{letter-spacing:0.533333pt;}
.ls2b{letter-spacing:0.586667pt;}
.ls80{letter-spacing:0.597333pt;}
.ls19{letter-spacing:0.640000pt;}
.ls88{letter-spacing:0.682667pt;}
.ls4c{letter-spacing:0.693333pt;}
.ls4{letter-spacing:0.725333pt;}
.ls49{letter-spacing:0.746667pt;}
.ls85{letter-spacing:0.768000pt;}
.ls5f{letter-spacing:0.800000pt;}
.ls8b{letter-spacing:0.810667pt;}
.ls17{letter-spacing:0.853333pt;}
.ls78{letter-spacing:0.896000pt;}
.ls16{letter-spacing:0.906667pt;}
.lsf{letter-spacing:0.960000pt;}
.ls7a{letter-spacing:0.981333pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls2{letter-spacing:1.024000pt;}
.ls27{letter-spacing:1.066667pt;}
.ls79{letter-spacing:1.109333pt;}
.ls31{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.173333pt;}
.ls7b{letter-spacing:1.194667pt;}
.ls3c{letter-spacing:1.226667pt;}
.ls7f{letter-spacing:1.237333pt;}
.ls12{letter-spacing:1.280000pt;}
.ls69{letter-spacing:1.322667pt;}
.ls15{letter-spacing:1.333333pt;}
.ls11{letter-spacing:1.386667pt;}
.ls6e{letter-spacing:1.408000pt;}
.ls56{letter-spacing:1.440000pt;}
.ls83{letter-spacing:1.450667pt;}
.ls8{letter-spacing:1.493333pt;}
.ls61{letter-spacing:1.546667pt;}
.ls58{letter-spacing:1.600000pt;}
.ls6d{letter-spacing:1.621333pt;}
.ls39{letter-spacing:1.653333pt;}
.ls74{letter-spacing:1.664000pt;}
.ls3b{letter-spacing:1.706667pt;}
.ls2a{letter-spacing:1.760000pt;}
.ls6{letter-spacing:1.813333pt;}
.ls7d{letter-spacing:1.834667pt;}
.ls1b{letter-spacing:1.866667pt;}
.lse{letter-spacing:1.920000pt;}
.ls54{letter-spacing:1.973333pt;}
.ls8a{letter-spacing:2.005333pt;}
.ls60{letter-spacing:2.026667pt;}
.ls45{letter-spacing:2.080000pt;}
.ls4b{letter-spacing:2.133333pt;}
.ls70{letter-spacing:2.176000pt;}
.ls4d{letter-spacing:2.186667pt;}
.lsb{letter-spacing:2.240000pt;}
.ls21{letter-spacing:2.293333pt;}
.ls8e{letter-spacing:2.304000pt;}
.ls5d{letter-spacing:2.346667pt;}
.ls76{letter-spacing:2.389333pt;}
.ls38{letter-spacing:2.400000pt;}
.ls75{letter-spacing:2.432000pt;}
.ls14{letter-spacing:2.453333pt;}
.ls46{letter-spacing:2.506667pt;}
.lsa{letter-spacing:2.560000pt;}
.ls65{letter-spacing:2.613333pt;}
.ls20{letter-spacing:2.666667pt;}
.ls72{letter-spacing:2.688000pt;}
.ls22{letter-spacing:2.720000pt;}
.ls55{letter-spacing:2.773333pt;}
.ls86{letter-spacing:2.816000pt;}
.ls5a{letter-spacing:2.826667pt;}
.ls28{letter-spacing:2.880000pt;}
.ls89{letter-spacing:2.901333pt;}
.ls10{letter-spacing:2.933333pt;}
.ls7{letter-spacing:2.986667pt;}
.ls24{letter-spacing:3.040000pt;}
.ls3d{letter-spacing:3.093333pt;}
.ls81{letter-spacing:3.114667pt;}
.ls73{letter-spacing:3.157333pt;}
.ls2d{letter-spacing:3.306667pt;}
.lsc{letter-spacing:3.360000pt;}
.ls6b{letter-spacing:3.370667pt;}
.ls18{letter-spacing:3.466667pt;}
.ls53{letter-spacing:3.520000pt;}
.ls2c{letter-spacing:3.573333pt;}
.ls64{letter-spacing:3.626667pt;}
.ls8c{letter-spacing:3.669333pt;}
.ls44{letter-spacing:3.786667pt;}
.ls62{letter-spacing:3.840000pt;}
.ls2e{letter-spacing:3.893333pt;}
.ls59{letter-spacing:3.946667pt;}
.ls82{letter-spacing:3.968000pt;}
.ls5c{letter-spacing:4.053333pt;}
.lsd{letter-spacing:4.160000pt;}
.ls66{letter-spacing:4.213333pt;}
.ls5b{letter-spacing:4.266667pt;}
.ls29{letter-spacing:4.320000pt;}
.ls37{letter-spacing:4.373333pt;}
.ls67{letter-spacing:4.426667pt;}
.ls5{letter-spacing:4.640000pt;}
.ls26{letter-spacing:4.693333pt;}
.ls36{letter-spacing:4.746667pt;}
.ls5e{letter-spacing:4.853333pt;}
.ls52{letter-spacing:5.066667pt;}
.ls84{letter-spacing:5.120000pt;}
.ls32{letter-spacing:5.386667pt;}
.ls35{letter-spacing:5.813333pt;}
.ls57{letter-spacing:6.346667pt;}
.ls40{letter-spacing:6.773333pt;}
.ls34{letter-spacing:6.880000pt;}
.ls68{letter-spacing:7.146667pt;}
.ws4e{word-spacing:-42.666667pt;}
.ws29{word-spacing:-21.706667pt;}
.ws2a{word-spacing:-19.520000pt;}
.ws60{word-spacing:-18.773333pt;}
.ws7d{word-spacing:-17.653333pt;}
.ws6c{word-spacing:-17.280000pt;}
.ws7c{word-spacing:-16.960000pt;}
.ws7f{word-spacing:-16.906667pt;}
.ws7b{word-spacing:-16.586667pt;}
.ws2b{word-spacing:-16.480000pt;}
.ws3{word-spacing:-16.160000pt;}
.ws1{word-spacing:-16.106667pt;}
.ws80{word-spacing:-16.053333pt;}
.ws6d{word-spacing:-15.946667pt;}
.ws7e{word-spacing:-15.893333pt;}
.ws4{word-spacing:-15.786667pt;}
.ws6b{word-spacing:-15.733333pt;}
.ws4d{word-spacing:-15.680000pt;}
.ws6f{word-spacing:-15.626667pt;}
.ws6e{word-spacing:-15.520000pt;}
.ws5{word-spacing:-15.466667pt;}
.ws7a{word-spacing:-15.360000pt;}
.ws70{word-spacing:-15.200000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws5f{word-spacing:-14.720000pt;}
.ws71{word-spacing:-14.506667pt;}
.ws92{word-spacing:-14.293333pt;}
.ws93{word-spacing:-13.696000pt;}
.ws97{word-spacing:-13.312000pt;}
.ws96{word-spacing:-13.098667pt;}
.ws94{word-spacing:-12.373333pt;}
.ws91{word-spacing:-11.989333pt;}
.ws81{word-spacing:-11.861333pt;}
.ws95{word-spacing:-11.818667pt;}
.ws0{word-spacing:-9.785600pt;}
.ws40{word-spacing:-6.880000pt;}
.ws41{word-spacing:-6.773333pt;}
.ws66{word-spacing:-6.346667pt;}
.ws42{word-spacing:-5.813333pt;}
.ws61{word-spacing:-5.066667pt;}
.ws43{word-spacing:-4.746667pt;}
.ws30{word-spacing:-4.693333pt;}
.wse{word-spacing:-4.640000pt;}
.ws86{word-spacing:-4.426667pt;}
.ws44{word-spacing:-4.373333pt;}
.ws34{word-spacing:-4.320000pt;}
.ws72{word-spacing:-4.266667pt;}
.ws85{word-spacing:-4.213333pt;}
.ws17{word-spacing:-4.106667pt;}
.ws73{word-spacing:-4.053333pt;}
.wsa7{word-spacing:-3.968000pt;}
.ws68{word-spacing:-3.946667pt;}
.ws39{word-spacing:-3.893333pt;}
.ws79{word-spacing:-3.840000pt;}
.ws50{word-spacing:-3.786667pt;}
.wsb1{word-spacing:-3.669333pt;}
.ws83{word-spacing:-3.626667pt;}
.ws37{word-spacing:-3.573333pt;}
.ws62{word-spacing:-3.520000pt;}
.ws25{word-spacing:-3.466667pt;}
.ws89{word-spacing:-3.370667pt;}
.ws16{word-spacing:-3.360000pt;}
.ws38{word-spacing:-3.306667pt;}
.ws7{word-spacing:-3.226667pt;}
.ws98{word-spacing:-3.157333pt;}
.wsa6{word-spacing:-3.114667pt;}
.ws32{word-spacing:-3.093333pt;}
.ws2e{word-spacing:-3.040000pt;}
.ws10{word-spacing:-2.986667pt;}
.ws1a{word-spacing:-2.933333pt;}
.wsaf{word-spacing:-2.901333pt;}
.ws33{word-spacing:-2.880000pt;}
.ws6a{word-spacing:-2.826667pt;}
.wsab{word-spacing:-2.816000pt;}
.ws64{word-spacing:-2.773333pt;}
.ws2c{word-spacing:-2.720000pt;}
.ws8f{word-spacing:-2.688000pt;}
.wsd{word-spacing:-2.666667pt;}
.ws84{word-spacing:-2.613333pt;}
.ws14{word-spacing:-2.560000pt;}
.ws52{word-spacing:-2.506667pt;}
.ws21{word-spacing:-2.453333pt;}
.ws9a{word-spacing:-2.432000pt;}
.ws45{word-spacing:-2.400000pt;}
.ws74{word-spacing:-2.346667pt;}
.wsac{word-spacing:-2.304000pt;}
.ws12{word-spacing:-2.293333pt;}
.ws15{word-spacing:-2.240000pt;}
.ws56{word-spacing:-2.186667pt;}
.ws90{word-spacing:-2.176000pt;}
.ws54{word-spacing:-2.133333pt;}
.ws51{word-spacing:-2.080000pt;}
.ws76{word-spacing:-2.026667pt;}
.wsb0{word-spacing:-2.005333pt;}
.ws63{word-spacing:-1.973333pt;}
.ws18{word-spacing:-1.920000pt;}
.ws1b{word-spacing:-1.866667pt;}
.wsa2{word-spacing:-1.834667pt;}
.wsf{word-spacing:-1.813333pt;}
.ws35{word-spacing:-1.760000pt;}
.ws4b{word-spacing:-1.706667pt;}
.ws99{word-spacing:-1.664000pt;}
.ws49{word-spacing:-1.653333pt;}
.ws8b{word-spacing:-1.621333pt;}
.ws67{word-spacing:-1.600000pt;}
.ws77{word-spacing:-1.546667pt;}
.ws11{word-spacing:-1.493333pt;}
.wsa8{word-spacing:-1.450667pt;}
.ws65{word-spacing:-1.440000pt;}
.ws8d{word-spacing:-1.408000pt;}
.ws1c{word-spacing:-1.386667pt;}
.ws22{word-spacing:-1.333333pt;}
.ws87{word-spacing:-1.322667pt;}
.ws1e{word-spacing:-1.280000pt;}
.wsa4{word-spacing:-1.237333pt;}
.ws4c{word-spacing:-1.226667pt;}
.wsa0{word-spacing:-1.194667pt;}
.ws13{word-spacing:-1.173333pt;}
.ws3d{word-spacing:-1.120000pt;}
.ws9d{word-spacing:-1.109333pt;}
.ws31{word-spacing:-1.066667pt;}
.ws8{word-spacing:-1.024000pt;}
.ws28{word-spacing:-1.013333pt;}
.ws9f{word-spacing:-0.981333pt;}
.ws19{word-spacing:-0.960000pt;}
.ws23{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.896000pt;}
.ws24{word-spacing:-0.853333pt;}
.ws9e{word-spacing:-0.810667pt;}
.ws75{word-spacing:-0.800000pt;}
.wsaa{word-spacing:-0.768000pt;}
.ws57{word-spacing:-0.746667pt;}
.wsb{word-spacing:-0.725333pt;}
.ws59{word-spacing:-0.693333pt;}
.wsad{word-spacing:-0.682667pt;}
.ws27{word-spacing:-0.640000pt;}
.wsa5{word-spacing:-0.597333pt;}
.ws36{word-spacing:-0.586667pt;}
.ws2d{word-spacing:-0.533333pt;}
.wsa3{word-spacing:-0.512000pt;}
.ws53{word-spacing:-0.480000pt;}
.wsae{word-spacing:-0.469333pt;}
.ws2f{word-spacing:-0.426667pt;}
.ws5c{word-spacing:-0.384000pt;}
.ws3c{word-spacing:-0.373333pt;}
.ws8a{word-spacing:-0.341333pt;}
.ws20{word-spacing:-0.320000pt;}
.wsa1{word-spacing:-0.298667pt;}
.ws3a{word-spacing:-0.266667pt;}
.wsa{word-spacing:-0.256000pt;}
.ws4a{word-spacing:-0.213333pt;}
.ws88{word-spacing:-0.170667pt;}
.ws55{word-spacing:-0.160000pt;}
.ws8e{word-spacing:-0.128000pt;}
.ws3e{word-spacing:-0.106667pt;}
.ws58{word-spacing:-0.053333pt;}
.ws9b{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.042667pt;}
.ws3b{word-spacing:0.053333pt;}
.ws9{word-spacing:0.085333pt;}
.ws3f{word-spacing:0.106667pt;}
.ws48{word-spacing:0.160000pt;}
.ws47{word-spacing:0.213333pt;}
.ws5a{word-spacing:0.266667pt;}
.ws5e{word-spacing:0.298667pt;}
.ws78{word-spacing:0.320000pt;}
.ws8c{word-spacing:0.341333pt;}
.ws5b{word-spacing:0.384000pt;}
.ws5d{word-spacing:0.426667pt;}
.ws46{word-spacing:0.533333pt;}
.wsc{word-spacing:0.853333pt;}
.ws69{word-spacing:1.152000pt;}
.ws1f{word-spacing:2.240000pt;}
.ws82{word-spacing:4.053333pt;}
.ws1d{word-spacing:4.853333pt;}
.ws26{word-spacing:4.906667pt;}
.ws4f{word-spacing:480.042667pt;}
._e{margin-left:-2576.112000pt;}
._10{margin-left:-2554.941333pt;}
._5{margin-left:-6.505600pt;}
._0{margin-left:-5.450667pt;}
._4{margin-left:-4.341333pt;}
._1{margin-left:-2.762667pt;}
._3{margin-left:-1.029867pt;}
._7{width:1.450667pt;}
._b{width:2.389333pt;}
._2{width:3.306667pt;}
._6{width:4.906667pt;}
._a{width:6.080000pt;}
._8{width:7.733333pt;}
._f{width:8.640000pt;}
._9{width:9.546667pt;}
._d{width:10.666667pt;}
._c{width:11.573333pt;}
.fs3{font-size:25.600000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:55.214741pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y156{bottom:73.597067pt;}
.yce{bottom:73.816400pt;}
.yc8{bottom:73.963733pt;}
.ydd{bottom:73.981200pt;}
.y144{bottom:73.981333pt;}
.yc3{bottom:74.101200pt;}
.y121{bottom:74.101333pt;}
.y29{bottom:74.216800pt;}
.ydf{bottom:74.467467pt;}
.y8c{bottom:78.493867pt;}
.y155{bottom:86.930400pt;}
.yc7{bottom:87.958400pt;}
.yde{bottom:88.462133pt;}
.ydc{bottom:89.981200pt;}
.y143{bottom:89.981333pt;}
.yc2{bottom:90.101200pt;}
.y120{bottom:90.101333pt;}
.y8b{bottom:94.493867pt;}
.yd1{bottom:98.660667pt;}
.y154{bottom:100.263733pt;}
.yc6{bottom:101.953067pt;}
.ydb{bottom:105.981200pt;}
.y142{bottom:105.981333pt;}
.yc1{bottom:106.101200pt;}
.y11f{bottom:106.101333pt;}
.y8a{bottom:110.493867pt;}
.y153{bottom:113.597067pt;}
.yc5{bottom:115.947733pt;}
.yda{bottom:121.981200pt;}
.y141{bottom:121.981333pt;}
.yc0{bottom:122.101200pt;}
.y11e{bottom:122.101333pt;}
.y89{bottom:126.493867pt;}
.y152{bottom:126.930400pt;}
.yc4{bottom:129.942400pt;}
.y14{bottom:130.206133pt;}
.yd9{bottom:137.981200pt;}
.y140{bottom:137.981333pt;}
.ybf{bottom:138.101200pt;}
.y11d{bottom:138.101333pt;}
.ye6{bottom:139.749467pt;}
.y151{bottom:140.263733pt;}
.yeb{bottom:140.599467pt;}
.y88{bottom:142.493867pt;}
.ye5{bottom:147.312133pt;}
.y150{bottom:153.597067pt;}
.yd8{bottom:153.981200pt;}
.y13f{bottom:153.981333pt;}
.ybe{bottom:154.101200pt;}
.y11c{bottom:154.101333pt;}
.y87{bottom:158.493867pt;}
.y14f{bottom:166.930400pt;}
.yd7{bottom:169.981200pt;}
.y13e{bottom:169.981333pt;}
.ybd{bottom:170.101200pt;}
.y11b{bottom:170.101333pt;}
.yd0{bottom:173.114000pt;}
.y86{bottom:174.493867pt;}
.y25{bottom:175.773867pt;}
.y14e{bottom:180.263733pt;}
.yd6{bottom:185.981200pt;}
.y13d{bottom:185.981333pt;}
.ybc{bottom:186.101200pt;}
.y11a{bottom:186.101333pt;}
.y57{bottom:186.104533pt;}
.y85{bottom:190.493867pt;}
.y24{bottom:191.773867pt;}
.y14d{bottom:193.597067pt;}
.yea{bottom:195.874133pt;}
.yd5{bottom:201.981200pt;}
.y13c{bottom:201.981333pt;}
.ybb{bottom:202.101200pt;}
.y119{bottom:202.101333pt;}
.y56{bottom:202.104533pt;}
.y84{bottom:206.493867pt;}
.y14c{bottom:206.930400pt;}
.y23{bottom:207.773867pt;}
.yd4{bottom:217.981200pt;}
.y13b{bottom:217.981333pt;}
.yba{bottom:218.101200pt;}
.y118{bottom:218.101333pt;}
.y55{bottom:218.104533pt;}
.y14b{bottom:220.263733pt;}
.y83{bottom:222.493867pt;}
.y22{bottom:223.773867pt;}
.y14a{bottom:233.597067pt;}
.y13a{bottom:233.981333pt;}
.yb9{bottom:234.101200pt;}
.y117{bottom:234.101333pt;}
.y54{bottom:234.104533pt;}
.y82{bottom:238.493867pt;}
.y21{bottom:239.773867pt;}
.y149{bottom:246.930400pt;}
.ycd{bottom:249.370533pt;}
.yd3{bottom:249.981200pt;}
.y139{bottom:249.981333pt;}
.yb8{bottom:250.101200pt;}
.y116{bottom:250.101333pt;}
.y53{bottom:250.104533pt;}
.y81{bottom:254.493867pt;}
.y20{bottom:255.773867pt;}
.y189{bottom:257.722933pt;}
.ycc{bottom:258.810533pt;}
.y148{bottom:260.263733pt;}
.y138{bottom:265.981333pt;}
.yb7{bottom:266.101200pt;}
.y115{bottom:266.101333pt;}
.y52{bottom:266.104533pt;}
.y80{bottom:270.493867pt;}
.y188{bottom:271.056267pt;}
.y1f{bottom:271.773867pt;}
.y147{bottom:273.597067pt;}
.y137{bottom:281.981333pt;}
.yb6{bottom:282.101200pt;}
.y114{bottom:282.101333pt;}
.y51{bottom:282.104533pt;}
.y187{bottom:284.389600pt;}
.ye4{bottom:285.648133pt;}
.y7f{bottom:286.493867pt;}
.y146{bottom:286.930400pt;}
.y1e{bottom:287.773867pt;}
.ycf{bottom:292.452667pt;}
.y186{bottom:297.722933pt;}
.y136{bottom:297.981333pt;}
.yb5{bottom:298.101200pt;}
.y113{bottom:298.101333pt;}
.y50{bottom:298.104533pt;}
.y145{bottom:300.263733pt;}
.y7e{bottom:302.493867pt;}
.y1d{bottom:303.773867pt;}
.y185{bottom:311.056267pt;}
.y135{bottom:313.981333pt;}
.yb4{bottom:314.101200pt;}
.y112{bottom:314.101333pt;}
.y4f{bottom:314.104533pt;}
.y7d{bottom:318.493867pt;}
.y1c{bottom:319.773867pt;}
.y184{bottom:324.389600pt;}
.y134{bottom:329.981333pt;}
.yb3{bottom:330.101200pt;}
.y111{bottom:330.101333pt;}
.y4e{bottom:330.104533pt;}
.y7c{bottom:334.493867pt;}
.y1b{bottom:335.773867pt;}
.y183{bottom:337.722933pt;}
.ye9{bottom:339.500800pt;}
.ycb{bottom:345.743867pt;}
.y133{bottom:345.981333pt;}
.yb2{bottom:346.101200pt;}
.y110{bottom:346.101333pt;}
.y4d{bottom:346.104533pt;}
.y7b{bottom:350.493867pt;}
.y182{bottom:351.056267pt;}
.y1a{bottom:351.773867pt;}
.y132{bottom:361.981333pt;}
.yb1{bottom:362.101200pt;}
.y10f{bottom:362.101333pt;}
.y4c{bottom:362.104533pt;}
.y181{bottom:364.389600pt;}
.y7a{bottom:366.493867pt;}
.y19{bottom:367.773867pt;}
.y180{bottom:377.722933pt;}
.y131{bottom:377.981333pt;}
.yb0{bottom:378.101200pt;}
.y10e{bottom:378.101333pt;}
.y4b{bottom:378.104533pt;}
.y79{bottom:382.493867pt;}
.y18{bottom:383.773867pt;}
.y17f{bottom:391.056267pt;}
.y130{bottom:393.981333pt;}
.yaf{bottom:394.101200pt;}
.y10d{bottom:394.101333pt;}
.y4a{bottom:394.104533pt;}
.y78{bottom:398.493867pt;}
.y17{bottom:399.773867pt;}
.y17e{bottom:404.389600pt;}
.y12f{bottom:409.981333pt;}
.yae{bottom:410.101200pt;}
.y10c{bottom:410.101333pt;}
.y49{bottom:410.104533pt;}
.y77{bottom:414.493867pt;}
.y16{bottom:415.773867pt;}
.y17d{bottom:417.722933pt;}
.y12e{bottom:425.981333pt;}
.yad{bottom:426.101200pt;}
.y10b{bottom:426.101333pt;}
.y48{bottom:426.104533pt;}
.y76{bottom:430.493867pt;}
.y17c{bottom:431.056267pt;}
.y26{bottom:431.773867pt;}
.y12d{bottom:441.981333pt;}
.yac{bottom:442.101200pt;}
.y10a{bottom:442.101333pt;}
.y47{bottom:442.104533pt;}
.y17b{bottom:444.389600pt;}
.y75{bottom:446.493867pt;}
.y15{bottom:447.773867pt;}
.y18a{bottom:455.728267pt;}
.yca{bottom:456.485200pt;}
.y17a{bottom:457.722933pt;}
.y12c{bottom:457.981333pt;}
.yab{bottom:458.101200pt;}
.y109{bottom:458.101333pt;}
.y46{bottom:458.104533pt;}
.ye3{bottom:460.645467pt;}
.y74{bottom:462.493867pt;}
.y179{bottom:471.056267pt;}
.y12b{bottom:473.981333pt;}
.yaa{bottom:474.101200pt;}
.y108{bottom:474.101333pt;}
.y45{bottom:474.104533pt;}
.y73{bottom:478.493867pt;}
.y178{bottom:484.389600pt;}
.y12a{bottom:489.981333pt;}
.ya9{bottom:490.101200pt;}
.y107{bottom:490.101333pt;}
.y44{bottom:490.104533pt;}
.y72{bottom:494.493867pt;}
.y177{bottom:497.722933pt;}
.ye2{bottom:504.485467pt;}
.y129{bottom:505.981333pt;}
.ya8{bottom:506.101200pt;}
.y106{bottom:506.101333pt;}
.y43{bottom:506.104533pt;}
.y71{bottom:510.493867pt;}
.y13{bottom:510.494133pt;}
.y176{bottom:511.056267pt;}
.y128{bottom:521.981333pt;}
.ya7{bottom:522.101200pt;}
.y105{bottom:522.101333pt;}
.y42{bottom:522.104533pt;}
.y175{bottom:524.389600pt;}
.ye8{bottom:525.644800pt;}
.y70{bottom:526.493867pt;}
.y174{bottom:537.722933pt;}
.y127{bottom:537.981333pt;}
.ya6{bottom:538.101200pt;}
.y104{bottom:538.101333pt;}
.y41{bottom:538.104533pt;}
.y12{bottom:539.699467pt;}
.y6f{bottom:542.493867pt;}
.y173{bottom:551.056267pt;}
.y11{bottom:553.032800pt;}
.y126{bottom:553.981333pt;}
.ya5{bottom:554.101200pt;}
.y103{bottom:554.101333pt;}
.y40{bottom:554.104533pt;}
.y6e{bottom:558.493867pt;}
.yc9{bottom:560.421200pt;}
.ye7{bottom:560.610133pt;}
.y172{bottom:564.389600pt;}
.y10{bottom:566.366133pt;}
.y125{bottom:569.981333pt;}
.ya4{bottom:570.101200pt;}
.y102{bottom:570.101333pt;}
.y3f{bottom:570.104533pt;}
.yd2{bottom:572.900667pt;}
.y6d{bottom:574.493867pt;}
.y171{bottom:577.722933pt;}
.yf{bottom:579.699467pt;}
.y124{bottom:585.981333pt;}
.ya3{bottom:586.101200pt;}
.y101{bottom:586.101333pt;}
.y3e{bottom:586.104533pt;}
.y6b{bottom:590.202533pt;}
.y6c{bottom:590.493867pt;}
.y6a{bottom:590.497200pt;}
.y170{bottom:591.056267pt;}
.ye{bottom:593.032800pt;}
.y123{bottom:601.981333pt;}
.ya2{bottom:602.101200pt;}
.y100{bottom:602.101333pt;}
.y3d{bottom:602.104533pt;}
.y16f{bottom:604.389600pt;}
.yd{bottom:606.366133pt;}
.y69{bottom:606.497200pt;}
.ye0{bottom:611.066800pt;}
.y16e{bottom:617.722933pt;}
.ya1{bottom:618.101200pt;}
.yff{bottom:618.101333pt;}
.y3c{bottom:618.104533pt;}
.yc{bottom:619.699467pt;}
.y68{bottom:622.497200pt;}
.y16d{bottom:631.056267pt;}
.y122{bottom:633.981333pt;}
.ya0{bottom:634.101200pt;}
.yfe{bottom:634.101333pt;}
.y3b{bottom:634.104533pt;}
.y67{bottom:638.497200pt;}
.ye1{bottom:643.952133pt;}
.y16c{bottom:644.389600pt;}
.y9f{bottom:650.101200pt;}
.yfd{bottom:650.101333pt;}
.y3a{bottom:650.104533pt;}
.y66{bottom:654.497200pt;}
.y16b{bottom:657.722933pt;}
.yb{bottom:663.186667pt;}
.y9e{bottom:666.101200pt;}
.yfc{bottom:666.101333pt;}
.y39{bottom:666.104533pt;}
.y65{bottom:670.497200pt;}
.y16a{bottom:671.056267pt;}
.y9d{bottom:682.101200pt;}
.yfb{bottom:682.101333pt;}
.y38{bottom:682.104533pt;}
.y169{bottom:684.389600pt;}
.y64{bottom:686.497200pt;}
.ya{bottom:697.354533pt;}
.y168{bottom:697.722933pt;}
.y9c{bottom:698.101200pt;}
.yfa{bottom:698.101333pt;}
.y37{bottom:698.104533pt;}
.y63{bottom:702.497200pt;}
.y167{bottom:711.056267pt;}
.y9{bottom:712.021200pt;}
.y9b{bottom:714.101200pt;}
.yf9{bottom:714.101333pt;}
.y36{bottom:714.104533pt;}
.y62{bottom:718.497200pt;}
.y166{bottom:724.389600pt;}
.y8{bottom:726.687867pt;}
.y9a{bottom:730.101200pt;}
.yf8{bottom:730.101333pt;}
.y35{bottom:730.104533pt;}
.y61{bottom:734.497200pt;}
.y165{bottom:737.722933pt;}
.y7{bottom:741.354533pt;}
.y99{bottom:746.101200pt;}
.yf7{bottom:746.101333pt;}
.y34{bottom:746.104533pt;}
.y60{bottom:750.497200pt;}
.y164{bottom:751.056267pt;}
.y6{bottom:752.360800pt;}
.y98{bottom:762.101200pt;}
.yf6{bottom:762.101333pt;}
.y33{bottom:762.104533pt;}
.y163{bottom:764.389600pt;}
.y5f{bottom:766.497200pt;}
.y5{bottom:770.687867pt;}
.y162{bottom:777.722933pt;}
.y97{bottom:778.101200pt;}
.yf5{bottom:778.101333pt;}
.y32{bottom:778.104533pt;}
.y5e{bottom:782.497200pt;}
.y4{bottom:784.260267pt;}
.y161{bottom:791.056267pt;}
.y96{bottom:794.101200pt;}
.yf4{bottom:794.101333pt;}
.y31{bottom:794.104533pt;}
.y160{bottom:804.389600pt;}
.y3{bottom:804.925600pt;}
.y95{bottom:810.101200pt;}
.yf3{bottom:810.101333pt;}
.y30{bottom:810.104533pt;}
.y5d{bottom:813.499467pt;}
.y15f{bottom:817.722933pt;}
.y94{bottom:826.101200pt;}
.yf2{bottom:826.101333pt;}
.y2f{bottom:826.104533pt;}
.y5c{bottom:827.371467pt;}
.y2{bottom:829.276267pt;}
.y15e{bottom:831.056267pt;}
.y93{bottom:842.101200pt;}
.yf1{bottom:842.101333pt;}
.y2e{bottom:842.104533pt;}
.y5b{bottom:842.237867pt;}
.y15d{bottom:844.389600pt;}
.y1{bottom:853.281600pt;}
.y15c{bottom:857.722933pt;}
.y92{bottom:858.101200pt;}
.yf0{bottom:858.101333pt;}
.y2d{bottom:858.104533pt;}
.y5a{bottom:858.237867pt;}
.y15b{bottom:871.056267pt;}
.y91{bottom:874.101200pt;}
.yef{bottom:874.101333pt;}
.y2c{bottom:874.104533pt;}
.y59{bottom:874.237867pt;}
.y15a{bottom:884.389600pt;}
.y90{bottom:890.101200pt;}
.yee{bottom:890.101333pt;}
.y2b{bottom:890.104533pt;}
.y58{bottom:890.237867pt;}
.y159{bottom:897.722933pt;}
.y8f{bottom:906.101200pt;}
.yed{bottom:906.101333pt;}
.y158{bottom:911.056267pt;}
.y8e{bottom:922.101200pt;}
.yec{bottom:922.101333pt;}
.y2a{bottom:922.104533pt;}
.y157{bottom:924.389600pt;}
.y28{bottom:951.795067pt;}
.y8d{bottom:965.392400pt;}
.y27{bottom:965.395067pt;}
.h4{height:22.212567pt;}
.h6{height:31.062500pt;}
.h5{height:36.854167pt;}
.h7{height:37.083333pt;}
.h8{height:38.828125pt;}
.hb{height:39.401042pt;}
.hc{height:41.718750pt;}
.hd{height:43.288357pt;}
.ha{height:46.067708pt;}
.h9{height:46.354167pt;}
.h3{height:50.989583pt;}
.h2{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.028667pt;}
.x7{left:85.417333pt;}
.x1{left:86.929200pt;}
.x19{left:94.110267pt;}
.xa{left:98.268667pt;}
.x2{left:111.491200pt;}
.x5{left:117.170133pt;}
.x9{left:128.642000pt;}
.x3{left:143.619200pt;}
.x25{left:177.630267pt;}
.x1f{left:178.771600pt;}
.x22{left:184.435600pt;}
.x2b{left:187.902533pt;}
.x4{left:189.223467pt;}
.x26{left:221.574800pt;}
.x1a{left:231.304933pt;}
.x1c{left:240.377867pt;}
.x28{left:241.414800pt;}
.x2a{left:316.060133pt;}
.x1d{left:321.263200pt;}
.x24{left:360.563600pt;}
.x8{left:404.481333pt;}
.x13{left:406.295467pt;}
.x10{left:410.443600pt;}
.xe{left:414.868667pt;}
.x17{left:425.195867pt;}
.x6{left:427.090133pt;}
.x2d{left:432.756000pt;}
.x12{left:436.535467pt;}
.x2c{left:451.650133pt;}
.x18{left:455.435867pt;}
.x14{left:470.895333pt;}
.xd{left:484.042000pt;}
.x15{left:487.037333pt;}
.x23{left:500.030267pt;}
.x21{left:506.451600pt;}
.x11{left:514.495600pt;}
.xc{left:525.922000pt;}
.xf{left:530.602000pt;}
.x1e{left:534.425867pt;}
.x20{left:540.094267pt;}
.x29{left:548.977467pt;}
.x27{left:555.590800pt;}
.x2e{left:637.449067pt;}
.x16{left:643.752133pt;}
.x1b{left:662.649733pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  