
    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_d789ecb9a294b2f8bb5dd5cb.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_4aa094641c367b3425879266.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_7d7d54d5a5112a3a1e387144.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dcd66747c012ad8c89a3b0a9.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_8cc098ca2399e660be3c3bf5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.975098;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_409c8686c84034b644b05459.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d6b83d9f881e6033c5afac04.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_de4b5afa0b8a8186146e1eac.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_750e5932d2f9573185e41da3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_08637719faa4908c62fc412e.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.442200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:19.879200px;}
.v1{vertical-align:21.619200px;}
.ls56{letter-spacing:-1.380000px;}
.ls11{letter-spacing:-0.780000px;}
.ls61{letter-spacing:-0.600000px;}
.ls8b{letter-spacing:-0.432000px;}
.ls62{letter-spacing:-0.360000px;}
.ls49{letter-spacing:-0.300000px;}
.ls3e{letter-spacing:-0.240000px;}
.ls5c{letter-spacing:-0.192000px;}
.ls3c{letter-spacing:-0.180000px;}
.ls8c{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.120000px;}
.ls8d{letter-spacing:-0.096000px;}
.ls54{letter-spacing:-0.060000px;}
.ls57{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006000px;}
.ls55{letter-spacing:0.048000px;}
.ls22{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.120000px;}
.ls76{letter-spacing:0.144000px;}
.ls36{letter-spacing:0.180000px;}
.ls78{letter-spacing:0.192000px;}
.ls43{letter-spacing:0.240000px;}
.ls75{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.420000px;}
.ls77{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.480000px;}
.ls4a{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.540000px;}
.ls65{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.600000px;}
.ls8a{letter-spacing:0.624000px;}
.ls44{letter-spacing:0.660000px;}
.ls6f{letter-spacing:0.672000px;}
.ls4f{letter-spacing:0.720000px;}
.ls5b{letter-spacing:0.768000px;}
.ls45{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.840000px;}
.ls73{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.900000px;}
.ls83{letter-spacing:0.912000px;}
.ls3d{letter-spacing:0.960000px;}
.ls66{letter-spacing:1.008000px;}
.ls1d{letter-spacing:1.020000px;}
.ls35{letter-spacing:1.080000px;}
.ls2e{letter-spacing:1.140000px;}
.ls6e{letter-spacing:1.152000px;}
.ls4d{letter-spacing:1.200000px;}
.ls67{letter-spacing:1.248000px;}
.ls3a{letter-spacing:1.260000px;}
.ls89{letter-spacing:1.296000px;}
.ls21{letter-spacing:1.320000px;}
.ls81{letter-spacing:1.344000px;}
.ls19{letter-spacing:1.380000px;}
.ls7c{letter-spacing:1.392000px;}
.ls29{letter-spacing:1.440000px;}
.ls72{letter-spacing:1.488000px;}
.ls15{letter-spacing:1.500000px;}
.ls39{letter-spacing:1.560000px;}
.ls63{letter-spacing:1.584000px;}
.ls5{letter-spacing:1.620000px;}
.lse{letter-spacing:1.680000px;}
.ls27{letter-spacing:1.740000px;}
.ls70{letter-spacing:1.776000px;}
.ls38{letter-spacing:1.800000px;}
.ls82{letter-spacing:1.824000px;}
.ls2b{letter-spacing:1.860000px;}
.ls2a{letter-spacing:1.920000px;}
.ls24{letter-spacing:1.980000px;}
.ls7d{letter-spacing:2.016000px;}
.lsb{letter-spacing:2.040000px;}
.ls84{letter-spacing:2.064000px;}
.lsd{letter-spacing:2.100000px;}
.ls4{letter-spacing:2.160000px;}
.ls64{letter-spacing:2.208000px;}
.ls1e{letter-spacing:2.220000px;}
.ls47{letter-spacing:2.280000px;}
.ls7a{letter-spacing:2.304000px;}
.ls58{letter-spacing:2.340000px;}
.ls16{letter-spacing:2.400000px;}
.ls3{letter-spacing:2.460000px;}
.ls68{letter-spacing:2.496000px;}
.ls18{letter-spacing:2.520000px;}
.ls20{letter-spacing:2.580000px;}
.ls71{letter-spacing:2.592000px;}
.ls2d{letter-spacing:2.640000px;}
.ls87{letter-spacing:2.688000px;}
.ls4e{letter-spacing:2.700000px;}
.ls5e{letter-spacing:2.760000px;}
.ls79{letter-spacing:2.784000px;}
.ls5a{letter-spacing:2.820000px;}
.ls7e{letter-spacing:2.832000px;}
.ls52{letter-spacing:2.880000px;}
.ls3f{letter-spacing:2.940000px;}
.ls32{letter-spacing:3.000000px;}
.ls5d{letter-spacing:3.060000px;}
.ls7b{letter-spacing:3.072000px;}
.ls31{letter-spacing:3.120000px;}
.ls53{letter-spacing:3.180000px;}
.ls48{letter-spacing:3.240000px;}
.ls14{letter-spacing:3.300000px;}
.ls2c{letter-spacing:3.360000px;}
.ls34{letter-spacing:3.420000px;}
.ls88{letter-spacing:3.456000px;}
.ls40{letter-spacing:3.480000px;}
.ls9{letter-spacing:3.660000px;}
.lsa{letter-spacing:3.720000px;}
.ls50{letter-spacing:3.780000px;}
.ls33{letter-spacing:3.840000px;}
.ls59{letter-spacing:3.900000px;}
.ls28{letter-spacing:3.960000px;}
.ls6a{letter-spacing:4.020000px;}
.ls1f{letter-spacing:4.560000px;}
.ls86{letter-spacing:4.608000px;}
.ls6b{letter-spacing:4.680000px;}
.ls80{letter-spacing:4.704000px;}
.ls12{letter-spacing:4.740000px;}
.ls7f{letter-spacing:4.752000px;}
.ls4c{letter-spacing:4.800000px;}
.ls23{letter-spacing:5.040000px;}
.ls51{letter-spacing:5.100000px;}
.ls6c{letter-spacing:5.160000px;}
.ls26{letter-spacing:5.280000px;}
.ls69{letter-spacing:5.400000px;}
.ls85{letter-spacing:5.424000px;}
.ls3b{letter-spacing:5.460000px;}
.ls1a{letter-spacing:5.520000px;}
.ls42{letter-spacing:5.640000px;}
.ls46{letter-spacing:5.880000px;}
.ls41{letter-spacing:6.240000px;}
.ls74{letter-spacing:6.360000px;}
.ls5f{letter-spacing:6.480000px;}
.lsc{letter-spacing:7.020000px;}
.ls60{letter-spacing:7.260000px;}
.ls6d{letter-spacing:7.620000px;}
.ls37{letter-spacing:8.100000px;}
.ls30{letter-spacing:10.260000px;}
.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;}
}
.ws4{word-spacing:-18.720000px;}
.ws1{word-spacing:-17.514000px;}
.ws4e{word-spacing:-17.400000px;}
.ws5b{word-spacing:-17.340000px;}
.ws7b{word-spacing:-17.100000px;}
.wsd{word-spacing:-16.920000px;}
.ws6f{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws78{word-spacing:-16.440000px;}
.ws6d{word-spacing:-16.380000px;}
.ws79{word-spacing:-16.260000px;}
.ws6e{word-spacing:-16.200000px;}
.ws7a{word-spacing:-16.080000px;}
.ws6c{word-spacing:-15.960000px;}
.ws20{word-spacing:-15.780000px;}
.ws1e{word-spacing:-15.660000px;}
.wsb{word-spacing:-15.600000px;}
.ws58{word-spacing:-15.360000px;}
.ws1f{word-spacing:-15.300000px;}
.ws38{word-spacing:-15.060000px;}
.wsc{word-spacing:-15.000000px;}
.ws5a{word-spacing:-14.640000px;}
.ws59{word-spacing:-14.400000px;}
.ws1d{word-spacing:-13.500000px;}
.ws91{word-spacing:-13.440000px;}
.ws8f{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.344000px;}
.ws92{word-spacing:-13.296000px;}
.ws8e{word-spacing:-13.248000px;}
.ws8d{word-spacing:-12.576000px;}
.ws3{word-spacing:-12.510000px;}
.ws90{word-spacing:-12.480000px;}
.ws93{word-spacing:-12.240000px;}
.ws35{word-spacing:-12.000000px;}
.ws7e{word-spacing:-10.512000px;}
.ws0{word-spacing:-10.508400px;}
.ws7d{word-spacing:-10.224000px;}
.ws84{word-spacing:-9.120000px;}
.ws57{word-spacing:-9.000000px;}
.ws80{word-spacing:-8.400000px;}
.ws82{word-spacing:-7.824000px;}
.ws7c{word-spacing:-7.584000px;}
.ws86{word-spacing:-6.480000px;}
.ws25{word-spacing:-5.880000px;}
.ws28{word-spacing:-5.040000px;}
.ws9c{word-spacing:-4.752000px;}
.wsa{word-spacing:-3.720000px;}
.ws5e{word-spacing:-3.660000px;}
.ws81{word-spacing:-3.504000px;}
.ws63{word-spacing:-3.300000px;}
.ws60{word-spacing:-3.240000px;}
.ws19{word-spacing:-3.120000px;}
.ws7{word-spacing:-2.886000px;}
.ws9b{word-spacing:-2.832000px;}
.ws8a{word-spacing:-2.700000px;}
.wsa1{word-spacing:-2.688000px;}
.ws18{word-spacing:-2.640000px;}
.ws49{word-spacing:-2.580000px;}
.ws85{word-spacing:-2.496000px;}
.ws3e{word-spacing:-2.400000px;}
.ws6a{word-spacing:-2.340000px;}
.ws64{word-spacing:-2.280000px;}
.ws77{word-spacing:-2.040000px;}
.ws2e{word-spacing:-1.980000px;}
.ws54{word-spacing:-1.920000px;}
.ws4a{word-spacing:-1.800000px;}
.ws26{word-spacing:-1.740000px;}
.ws43{word-spacing:-1.620000px;}
.ws7f{word-spacing:-1.584000px;}
.ws45{word-spacing:-1.560000px;}
.ws29{word-spacing:-1.500000px;}
.wsa2{word-spacing:-1.296000px;}
.ws1b{word-spacing:-1.260000px;}
.ws99{word-spacing:-1.248000px;}
.ws87{word-spacing:-1.200000px;}
.ws4b{word-spacing:-1.140000px;}
.ws6b{word-spacing:-0.960000px;}
.ws5d{word-spacing:-0.900000px;}
.ws9f{word-spacing:-0.864000px;}
.ws23{word-spacing:-0.840000px;}
.ws2a{word-spacing:-0.780000px;}
.ws40{word-spacing:-0.720000px;}
.ws96{word-spacing:-0.672000px;}
.ws61{word-spacing:-0.660000px;}
.ws70{word-spacing:-0.600000px;}
.ws34{word-spacing:-0.528000px;}
.wsa0{word-spacing:-0.480000px;}
.ws44{word-spacing:-0.360000px;}
.ws2b{word-spacing:-0.300000px;}
.ws24{word-spacing:-0.240000px;}
.ws72{word-spacing:-0.180000px;}
.ws22{word-spacing:-0.120000px;}
.ws27{word-spacing:-0.060000px;}
.ws4c{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws4d{word-spacing:0.048000px;}
.ws3d{word-spacing:0.060000px;}
.ws3a{word-spacing:0.120000px;}
.ws97{word-spacing:0.144000px;}
.ws4f{word-spacing:0.180000px;}
.ws3b{word-spacing:0.240000px;}
.ws95{word-spacing:0.288000px;}
.ws31{word-spacing:0.300000px;}
.ws69{word-spacing:0.360000px;}
.ws8b{word-spacing:0.384000px;}
.ws13{word-spacing:0.420000px;}
.ws83{word-spacing:0.480000px;}
.ws9a{word-spacing:0.528000px;}
.ws73{word-spacing:0.660000px;}
.ws3c{word-spacing:0.720000px;}
.ws14{word-spacing:0.780000px;}
.ws47{word-spacing:0.816000px;}
.ws1a{word-spacing:0.840000px;}
.ws66{word-spacing:0.900000px;}
.ws62{word-spacing:0.960000px;}
.ws55{word-spacing:1.140000px;}
.ws17{word-spacing:1.320000px;}
.ws42{word-spacing:1.440000px;}
.wsa3{word-spacing:1.488000px;}
.ws2d{word-spacing:1.560000px;}
.ws5f{word-spacing:1.620000px;}
.ws53{word-spacing:1.680000px;}
.ws48{word-spacing:1.776000px;}
.ws9e{word-spacing:1.872000px;}
.ws11{word-spacing:2.040000px;}
.ws76{word-spacing:2.100000px;}
.ws1c{word-spacing:2.160000px;}
.ws75{word-spacing:2.340000px;}
.ws21{word-spacing:2.400000px;}
.ws65{word-spacing:2.460000px;}
.ws8c{word-spacing:2.640000px;}
.ws5c{word-spacing:2.760000px;}
.ws74{word-spacing:2.820000px;}
.ws9d{word-spacing:3.072000px;}
.ws39{word-spacing:3.180000px;}
.ws37{word-spacing:3.216000px;}
.wse{word-spacing:3.240000px;}
.ws32{word-spacing:3.264000px;}
.ws16{word-spacing:3.420000px;}
.ws98{word-spacing:3.456000px;}
.ws12{word-spacing:3.480000px;}
.ws36{word-spacing:3.504000px;}
.ws41{word-spacing:3.660000px;}
.ws50{word-spacing:3.720000px;}
.ws94{word-spacing:3.744000px;}
.ws10{word-spacing:3.840000px;}
.ws52{word-spacing:3.936000px;}
.ws2c{word-spacing:3.960000px;}
.ws33{word-spacing:3.984000px;}
.ws88{word-spacing:4.020000px;}
.ws51{word-spacing:4.080000px;}
.ws68{word-spacing:4.200000px;}
.ws15{word-spacing:4.260000px;}
.ws46{word-spacing:4.380000px;}
.ws3f{word-spacing:4.500000px;}
.ws71{word-spacing:4.620000px;}
.wsf{word-spacing:4.680000px;}
.ws30{word-spacing:4.740000px;}
.ws56{word-spacing:4.752000px;}
.ws2f{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.ws89{word-spacing:5.460000px;}
.ws67{word-spacing:5.880000px;}
._c{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._4{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._6{width:1.004400px;}
._9{width:2.730000px;}
._f{width:3.732000px;}
._a{width:4.740000px;}
._b{width:6.240000px;}
._8{width:7.440000px;}
._7{width:8.520000px;}
._d{width:10.620000px;}
._12{width:37.830000px;}
._13{width:39.486000px;}
._10{width:43.824000px;}
._11{width:55.824000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsb{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y122{bottom:83.145300px;}
.y114{bottom:83.464200px;}
.yf7{bottom:83.531550px;}
.ye6{bottom:83.768850px;}
.y10f{bottom:83.770350px;}
.y95{bottom:83.785350px;}
.y11a{bottom:83.877750px;}
.y183{bottom:83.912100px;}
.y15c{bottom:83.914350px;}
.y144{bottom:84.053850px;}
.ye9{bottom:84.298950px;}
.yec{bottom:84.310800px;}
.y11d{bottom:84.338100px;}
.yf1{bottom:84.925050px;}
.y21{bottom:88.026750px;}
.y1db{bottom:89.121900px;}
.yb0{bottom:91.253850px;}
.y121{bottom:98.889300px;}
.y113{bottom:99.208200px;}
.yf6{bottom:99.275550px;}
.y119{bottom:99.621750px;}
.ye8{bottom:100.042950px;}
.yeb{bottom:100.054800px;}
.y11c{bottom:100.082100px;}
.yf0{bottom:100.669050px;}
.y60{bottom:101.635350px;}
.ye5{bottom:101.768850px;}
.y10e{bottom:101.770350px;}
.y94{bottom:101.785350px;}
.y182{bottom:101.912100px;}
.y15b{bottom:101.914350px;}
.y143{bottom:102.053850px;}
.y20{bottom:103.023000px;}
.y1da{bottom:104.121900px;}
.y1ab{bottom:107.772600px;}
.yaf{bottom:109.253850px;}
.y120{bottom:114.633300px;}
.y112{bottom:114.952200px;}
.yf5{bottom:115.019550px;}
.y118{bottom:115.365750px;}
.ye7{bottom:115.786950px;}
.y11b{bottom:115.826100px;}
.yef{bottom:116.413050px;}
.y1d9{bottom:119.121900px;}
.y5f{bottom:119.635350px;}
.ye4{bottom:119.768850px;}
.y10d{bottom:119.770350px;}
.y93{bottom:119.785350px;}
.y181{bottom:119.912100px;}
.y15a{bottom:119.914350px;}
.y142{bottom:120.053850px;}
.y1aa{bottom:125.772600px;}
.yae{bottom:127.253850px;}
.y11f{bottom:130.377300px;}
.y111{bottom:130.696200px;}
.yf4{bottom:130.763550px;}
.y117{bottom:131.109750px;}
.yee{bottom:132.157050px;}
.y1d8{bottom:134.121900px;}
.y5e{bottom:137.635350px;}
.ye3{bottom:137.768850px;}
.y10c{bottom:137.770350px;}
.y92{bottom:137.785350px;}
.y180{bottom:137.912100px;}
.y159{bottom:137.914350px;}
.y141{bottom:138.053850px;}
.y1a9{bottom:143.772600px;}
.yad{bottom:145.253850px;}
.y11e{bottom:146.121300px;}
.y110{bottom:146.440200px;}
.yf3{bottom:146.507550px;}
.y116{bottom:146.853750px;}
.y1d7{bottom:149.121900px;}
.y218{bottom:155.263500px;}
.y5d{bottom:155.635350px;}
.ye2{bottom:155.768850px;}
.y10b{bottom:155.770350px;}
.y91{bottom:155.785350px;}
.y17f{bottom:155.912100px;}
.y158{bottom:155.914350px;}
.y140{bottom:156.053850px;}
.y1a8{bottom:161.772600px;}
.y115{bottom:162.597750px;}
.yac{bottom:163.253850px;}
.y29{bottom:163.284450px;}
.y1d6{bottom:164.121900px;}
.y217{bottom:170.263500px;}
.y5c{bottom:173.635350px;}
.ye1{bottom:173.768850px;}
.y10a{bottom:173.770350px;}
.y90{bottom:173.785350px;}
.y17e{bottom:173.912100px;}
.y157{bottom:173.914350px;}
.y13f{bottom:174.053850px;}
.y1d5{bottom:179.121900px;}
.y1a7{bottom:179.772600px;}
.yab{bottom:181.253850px;}
.y28{bottom:181.284450px;}
.y216{bottom:185.263500px;}
.y5b{bottom:191.635350px;}
.ye0{bottom:191.768850px;}
.y109{bottom:191.770350px;}
.y8f{bottom:191.785350px;}
.y17d{bottom:191.912100px;}
.y156{bottom:191.914350px;}
.y13e{bottom:192.053850px;}
.y1d4{bottom:194.121900px;}
.y1a6{bottom:197.772600px;}
.yaa{bottom:199.253850px;}
.y27{bottom:199.284450px;}
.y215{bottom:200.263500px;}
.y1d3{bottom:209.121900px;}
.y5a{bottom:209.635350px;}
.ydf{bottom:209.768850px;}
.y108{bottom:209.770350px;}
.y8e{bottom:209.785350px;}
.y17c{bottom:209.912100px;}
.y155{bottom:209.914350px;}
.y13d{bottom:210.053850px;}
.y214{bottom:215.263500px;}
.y1a5{bottom:215.772600px;}
.ya9{bottom:217.253850px;}
.y26{bottom:217.284450px;}
.y1d2{bottom:224.121900px;}
.y59{bottom:227.635350px;}
.yde{bottom:227.768850px;}
.y107{bottom:227.770350px;}
.y8d{bottom:227.785350px;}
.y17b{bottom:227.912100px;}
.y154{bottom:227.914350px;}
.y13c{bottom:228.053850px;}
.y213{bottom:230.263500px;}
.y1a4{bottom:233.772600px;}
.y25{bottom:235.284450px;}
.y1d1{bottom:239.121900px;}
.y212{bottom:245.263500px;}
.y58{bottom:245.635350px;}
.ydd{bottom:245.768850px;}
.y106{bottom:245.770350px;}
.y8c{bottom:245.785350px;}
.y17a{bottom:245.912100px;}
.y153{bottom:245.914350px;}
.y13b{bottom:246.053850px;}
.y1a3{bottom:251.772600px;}
.ya8{bottom:252.094500px;}
.y24{bottom:253.284450px;}
.y1d0{bottom:254.121900px;}
.y211{bottom:260.263500px;}
.y57{bottom:263.635350px;}
.ydc{bottom:263.768850px;}
.y105{bottom:263.770350px;}
.y8b{bottom:263.785350px;}
.y179{bottom:263.912100px;}
.y152{bottom:263.914350px;}
.y13a{bottom:264.053850px;}
.ya7{bottom:267.700500px;}
.y1cf{bottom:269.121900px;}
.y1a2{bottom:269.772600px;}
.y23{bottom:271.284450px;}
.y210{bottom:275.263500px;}
.y56{bottom:281.635350px;}
.ydb{bottom:281.768850px;}
.y104{bottom:281.770350px;}
.y8a{bottom:281.785350px;}
.y178{bottom:281.912100px;}
.y151{bottom:281.914350px;}
.y139{bottom:282.053850px;}
.ya6{bottom:282.055350px;}
.y1ce{bottom:284.121900px;}
.y1a1{bottom:287.772600px;}
.y2b{bottom:289.284450px;}
.y20f{bottom:290.263500px;}
.y55{bottom:299.635350px;}
.ya5{bottom:299.650350px;}
.yda{bottom:299.768850px;}
.y103{bottom:299.770350px;}
.y89{bottom:299.785350px;}
.y177{bottom:299.912100px;}
.y150{bottom:299.914350px;}
.y20e{bottom:305.263500px;}
.y1a0{bottom:305.772600px;}
.y22{bottom:306.879450px;}
.y2a{bottom:307.284450px;}
.y1cd{bottom:317.232600px;}
.y54{bottom:317.635350px;}
.y138{bottom:317.648850px;}
.yd9{bottom:317.768850px;}
.y102{bottom:317.770350px;}
.y88{bottom:317.785350px;}
.y176{bottom:317.912100px;}
.y14f{bottom:317.914350px;}
.y20d{bottom:320.263500px;}
.y19f{bottom:323.772600px;}
.y20c{bottom:335.263500px;}
.ya4{bottom:335.500350px;}
.y53{bottom:335.635350px;}
.yd8{bottom:335.768850px;}
.y101{bottom:335.770350px;}
.y87{bottom:335.785350px;}
.y175{bottom:335.912100px;}
.y14e{bottom:335.914350px;}
.y19e{bottom:341.772600px;}
.y20b{bottom:350.263500px;}
.ya3{bottom:353.500350px;}
.y137{bottom:353.513850px;}
.y52{bottom:353.635350px;}
.yd7{bottom:353.768850px;}
.y100{bottom:353.770350px;}
.y86{bottom:353.785350px;}
.y174{bottom:353.912100px;}
.y14d{bottom:353.914350px;}
.y19d{bottom:359.772600px;}
.y20a{bottom:365.263500px;}
.ya2{bottom:371.500350px;}
.y51{bottom:371.635350px;}
.yd6{bottom:371.768850px;}
.yff{bottom:371.770350px;}
.y1cc{bottom:371.772600px;}
.y85{bottom:371.785350px;}
.y173{bottom:371.912100px;}
.y14c{bottom:371.914350px;}
.y19c{bottom:377.772600px;}
.y209{bottom:380.263500px;}
.y1f{bottom:382.564200px;}
.y1cb{bottom:389.367600px;}
.ya1{bottom:389.500350px;}
.y50{bottom:389.635350px;}
.yd5{bottom:389.768850px;}
.yfe{bottom:389.770350px;}
.y84{bottom:389.785350px;}
.y172{bottom:389.912100px;}
.y14b{bottom:389.914350px;}
.y208{bottom:395.263500px;}
.y4f{bottom:407.635350px;}
.yd4{bottom:407.768850px;}
.yfd{bottom:407.770350px;}
.y83{bottom:407.785350px;}
.y171{bottom:407.912100px;}
.y14a{bottom:407.914350px;}
.y136{bottom:408.053850px;}
.y1e{bottom:409.909200px;}
.y207{bottom:410.263500px;}
.y19b{bottom:413.367600px;}
.y206{bottom:425.263500px;}
.ya0{bottom:425.365350px;}
.y1ca{bottom:425.367600px;}
.y4e{bottom:425.635350px;}
.yd3{bottom:425.768850px;}
.yfc{bottom:425.770350px;}
.y82{bottom:425.785350px;}
.y149{bottom:425.914350px;}
.y170{bottom:425.920350px;}
.y135{bottom:426.053850px;}
.y1d{bottom:427.909200px;}
.y205{bottom:440.263500px;}
.y4d{bottom:443.635350px;}
.yd2{bottom:443.768850px;}
.yfb{bottom:443.770350px;}
.y81{bottom:443.785350px;}
.y148{bottom:443.914350px;}
.y16f{bottom:443.920350px;}
.y134{bottom:444.053850px;}
.y1c{bottom:445.909200px;}
.y204{bottom:455.263500px;}
.y9f{bottom:461.230350px;}
.y4c{bottom:461.635350px;}
.yd1{bottom:461.768850px;}
.yfa{bottom:461.770350px;}
.y1c9{bottom:461.772600px;}
.y80{bottom:461.785350px;}
.y147{bottom:461.914350px;}
.y16e{bottom:461.920350px;}
.y133{bottom:462.053850px;}
.y1b{bottom:463.909200px;}
.y19a{bottom:467.405250px;}
.y203{bottom:470.263500px;}
.y1c8{bottom:479.367600px;}
.y4b{bottom:479.635350px;}
.yd0{bottom:479.768850px;}
.yf9{bottom:479.770350px;}
.y7f{bottom:479.785350px;}
.y146{bottom:479.914350px;}
.y16d{bottom:479.920350px;}
.y132{bottom:480.053850px;}
.y1a{bottom:481.909200px;}
.y199{bottom:482.405250px;}
.y202{bottom:485.263500px;}
.y198{bottom:497.405250px;}
.y4a{bottom:497.635350px;}
.ycf{bottom:497.768850px;}
.yf8{bottom:497.770350px;}
.y7e{bottom:497.785350px;}
.y16c{bottom:497.920350px;}
.y131{bottom:498.053850px;}
.y19{bottom:499.909200px;}
.y201{bottom:500.263500px;}
.y197{bottom:512.405250px;}
.y200{bottom:515.263500px;}
.y145{bottom:515.509350px;}
.y49{bottom:515.635350px;}
.yce{bottom:515.768850px;}
.y9e{bottom:515.770350px;}
.y1c7{bottom:515.772600px;}
.y7d{bottom:515.785350px;}
.y16b{bottom:515.920350px;}
.y130{bottom:516.053850px;}
.y18{bottom:517.909200px;}
.y196{bottom:527.405250px;}
.y1ff{bottom:530.263500px;}
.y1c6{bottom:533.367600px;}
.y48{bottom:533.635350px;}
.ycd{bottom:533.768850px;}
.y9d{bottom:533.770350px;}
.y7c{bottom:533.785350px;}
.y16a{bottom:533.920350px;}
.y12f{bottom:534.053850px;}
.y17{bottom:535.909200px;}
.y195{bottom:542.405250px;}
.y1fe{bottom:545.263500px;}
.y47{bottom:551.635350px;}
.ycc{bottom:551.768850px;}
.y9c{bottom:551.770350px;}
.y7b{bottom:551.785350px;}
.y169{bottom:551.920350px;}
.y12e{bottom:552.070350px;}
.y16{bottom:553.909200px;}
.y194{bottom:557.405250px;}
.y1fd{bottom:560.263500px;}
.y46{bottom:569.635350px;}
.ycb{bottom:569.768850px;}
.y9b{bottom:569.770350px;}
.y1c5{bottom:569.772600px;}
.y7a{bottom:569.785350px;}
.y168{bottom:569.920350px;}
.y12d{bottom:570.070350px;}
.y15{bottom:571.909200px;}
.y193{bottom:572.405250px;}
.y1fc{bottom:575.263500px;}
.y192{bottom:587.405250px;}
.yca{bottom:587.768850px;}
.y9a{bottom:587.770350px;}
.y1c4{bottom:587.772600px;}
.y79{bottom:587.785350px;}
.y167{bottom:587.920350px;}
.y12c{bottom:588.070350px;}
.y14{bottom:589.909200px;}
.y1fb{bottom:590.263500px;}
.y191{bottom:602.405250px;}
.y45{bottom:605.230350px;}
.y1fa{bottom:605.263500px;}
.yc9{bottom:605.768850px;}
.y99{bottom:605.770350px;}
.y1c3{bottom:605.772600px;}
.y78{bottom:605.785350px;}
.y166{bottom:605.920350px;}
.y13{bottom:607.909200px;}
.y190{bottom:617.405250px;}
.y1f9{bottom:620.263500px;}
.y12b{bottom:623.665350px;}
.yc8{bottom:623.768850px;}
.y98{bottom:623.770350px;}
.y1c2{bottom:623.772600px;}
.y77{bottom:623.785350px;}
.y165{bottom:623.920350px;}
.y12{bottom:625.909200px;}
.y18f{bottom:632.405250px;}
.y1f8{bottom:635.263500px;}
.y1c1{bottom:641.367600px;}
.yc7{bottom:641.768850px;}
.y97{bottom:641.770350px;}
.y76{bottom:641.785350px;}
.y164{bottom:641.920350px;}
.y18e{bottom:647.405250px;}
.y1f7{bottom:650.263500px;}
.yc6{bottom:659.768850px;}
.y44{bottom:659.770350px;}
.y75{bottom:659.785350px;}
.y12a{bottom:659.920350px;}
.y18d{bottom:662.405250px;}
.y1f6{bottom:665.263500px;}
.y11{bottom:671.067300px;}
.y18c{bottom:677.405250px;}
.yc5{bottom:677.768850px;}
.y43{bottom:677.770350px;}
.y1c0{bottom:677.772600px;}
.y74{bottom:677.785350px;}
.y129{bottom:677.920350px;}
.y1f5{bottom:680.263500px;}
.y10{bottom:683.518050px;}
.y18b{bottom:692.405250px;}
.y1f4{bottom:695.263500px;}
.yc4{bottom:695.768850px;}
.y42{bottom:695.770350px;}
.y1bf{bottom:695.772600px;}
.y73{bottom:695.785350px;}
.y128{bottom:695.920350px;}
.y18a{bottom:707.405250px;}
.y1f3{bottom:710.263500px;}
.yc3{bottom:713.768850px;}
.y41{bottom:713.770350px;}
.y1be{bottom:713.772600px;}
.y72{bottom:713.785350px;}
.y127{bottom:713.920350px;}
.yf{bottom:719.094150px;}
.y189{bottom:722.405250px;}
.y1f2{bottom:725.263500px;}
.ye{bottom:728.733600px;}
.yc2{bottom:731.768850px;}
.y40{bottom:731.770350px;}
.y1bd{bottom:731.772600px;}
.y71{bottom:731.785350px;}
.y126{bottom:731.920350px;}
.y188{bottom:737.405250px;}
.y1f1{bottom:740.263500px;}
.yd{bottom:746.094150px;}
.yc1{bottom:749.768850px;}
.y3f{bottom:749.770350px;}
.y1bc{bottom:749.772600px;}
.y70{bottom:749.785350px;}
.y125{bottom:749.920350px;}
.y187{bottom:752.405250px;}
.y1f0{bottom:755.263500px;}
.yc{bottom:759.594150px;}
.yc0{bottom:767.768850px;}
.y3e{bottom:767.770350px;}
.y1bb{bottom:767.772600px;}
.y6f{bottom:767.785350px;}
.y124{bottom:767.920350px;}
.y1ef{bottom:770.263500px;}
.yb{bottom:773.094150px;}
.y1ee{bottom:785.263500px;}
.ybf{bottom:785.768850px;}
.y3d{bottom:785.770350px;}
.y1ba{bottom:785.772600px;}
.y6e{bottom:785.785350px;}
.y163{bottom:785.920350px;}
.ya{bottom:786.594150px;}
.y9{bottom:800.094150px;}
.y1ed{bottom:800.263500px;}
.y123{bottom:803.515350px;}
.ybe{bottom:803.768850px;}
.y3c{bottom:803.770350px;}
.y1b9{bottom:803.772600px;}
.y6d{bottom:803.785350px;}
.y162{bottom:803.920350px;}
.y1ec{bottom:815.263500px;}
.ybd{bottom:821.768850px;}
.y3b{bottom:821.770350px;}
.y1b8{bottom:821.772600px;}
.y6c{bottom:821.785350px;}
.y161{bottom:821.920350px;}
.y1eb{bottom:830.263500px;}
.y8{bottom:830.386200px;}
.ybc{bottom:839.768850px;}
.y3a{bottom:839.770350px;}
.y1b7{bottom:839.772600px;}
.y6b{bottom:839.785350px;}
.y160{bottom:839.920350px;}
.y1ea{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.ybb{bottom:857.768850px;}
.y39{bottom:857.770350px;}
.y1b6{bottom:857.772600px;}
.y6a{bottom:857.785350px;}
.y15f{bottom:857.920350px;}
.y1e9{bottom:860.263500px;}
.y1e8{bottom:875.263500px;}
.yba{bottom:875.768850px;}
.y38{bottom:875.770350px;}
.y1b5{bottom:875.772600px;}
.y69{bottom:875.785350px;}
.y15e{bottom:875.920350px;}
.y1e7{bottom:890.263500px;}
.yb9{bottom:893.768850px;}
.y37{bottom:893.770350px;}
.y1b4{bottom:893.772600px;}
.y68{bottom:893.785350px;}
.y186{bottom:893.920350px;}
.y6{bottom:897.551250px;}
.y1e6{bottom:905.263500px;}
.y15d{bottom:911.515350px;}
.yb8{bottom:911.768850px;}
.y36{bottom:911.770350px;}
.y1b3{bottom:911.772600px;}
.y67{bottom:911.785350px;}
.y185{bottom:911.920350px;}
.y1e5{bottom:920.263500px;}
.yb7{bottom:929.768850px;}
.y35{bottom:929.770350px;}
.y1b2{bottom:929.772600px;}
.y66{bottom:929.785350px;}
.y5{bottom:934.012050px;}
.y1e4{bottom:935.263500px;}
.y184{bottom:947.515350px;}
.yb6{bottom:947.768850px;}
.y34{bottom:947.770350px;}
.y1b1{bottom:947.772600px;}
.y65{bottom:947.785350px;}
.y1e3{bottom:950.263500px;}
.y1e2{bottom:965.263500px;}
.yb5{bottom:965.768850px;}
.y33{bottom:965.770350px;}
.y1b0{bottom:965.772600px;}
.y64{bottom:965.785350px;}
.y4{bottom:970.472850px;}
.y1e1{bottom:980.263500px;}
.yb4{bottom:983.768850px;}
.y32{bottom:983.770350px;}
.y1af{bottom:983.772600px;}
.y63{bottom:983.785350px;}
.y1e0{bottom:995.263500px;}
.yb3{bottom:1001.768850px;}
.y31{bottom:1001.770350px;}
.y1ae{bottom:1001.772600px;}
.y62{bottom:1001.785350px;}
.y3{bottom:1006.933650px;}
.y1df{bottom:1010.263500px;}
.yb2{bottom:1019.768850px;}
.y30{bottom:1019.770350px;}
.y1ad{bottom:1019.772600px;}
.y1de{bottom:1025.263500px;}
.y1ac{bottom:1037.367600px;}
.y61{bottom:1037.380350px;}
.yb1{bottom:1037.768850px;}
.y2f{bottom:1037.770350px;}
.y1dd{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1dc{bottom:1132.413900px;}
.y96{bottom:1132.418700px;}
.y219{bottom:1132.423500px;}
.yed{bottom:1132.426800px;}
.yea{bottom:1132.426950px;}
.yf2{bottom:1132.441050px;}
.y2d{bottom:1136.089500px;}
.y2c{bottom:1150.492500px;}
.h7{height:20.645508px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.hd{height:32.783203px;}
.h14{height:33.351562px;}
.h13{height:33.421875px;}
.h8{height:34.409180px;}
.h10{height:34.968750px;}
.hf{height:36.703125px;}
.h12{height:37.599609px;}
.h11{height:41.689453px;}
.he{height:41.777344px;}
.ha{height:43.681641px;}
.hc{height:43.710938px;}
.h15{height:44.945606px;}
.hb{height:45.878906px;}
.h6{height:49.117634px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x24{left:102.047250px;}
.x4{left:106.299150px;}
.xd{left:110.540400px;}
.x18{left:118.261500px;}
.x20{left:120.756000px;}
.x3{left:125.433000px;}
.x6{left:131.816400px;}
.x14{left:138.430350px;}
.xc{left:144.710400px;}
.x15{left:162.460350px;}
.x16{left:203.035350px;}
.x21{left:211.392450px;}
.x5{left:212.876400px;}
.x1f{left:220.137000px;}
.x19{left:222.927000px;}
.x13{left:224.170350px;}
.x12{left:232.360350px;}
.x17{left:233.905350px;}
.xa{left:455.041500px;}
.xe{left:457.070400px;}
.x1a{left:478.371000px;}
.x7{left:480.476400px;}
.x25{left:482.603250px;}
.xf{left:491.090400px;}
.x23{left:503.858400px;}
.x1b{left:512.391000px;}
.x8{left:514.481400px;}
.x22{left:596.082450px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x1d{left:721.717650px;}
.x10{left:728.391600px;}
.x1e{left:743.868150px;}
.x1c{left:749.651400px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:17.670400pt;}
.v1{vertical-align:19.217067pt;}
.ls56{letter-spacing:-1.226667pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls61{letter-spacing:-0.533333pt;}
.ls8b{letter-spacing:-0.384000pt;}
.ls62{letter-spacing:-0.320000pt;}
.ls49{letter-spacing:-0.266667pt;}
.ls3e{letter-spacing:-0.213333pt;}
.ls5c{letter-spacing:-0.170667pt;}
.ls3c{letter-spacing:-0.160000pt;}
.ls8c{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls8d{letter-spacing:-0.085333pt;}
.ls54{letter-spacing:-0.053333pt;}
.ls57{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005333pt;}
.ls55{letter-spacing:0.042667pt;}
.ls22{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls76{letter-spacing:0.128000pt;}
.ls36{letter-spacing:0.160000pt;}
.ls78{letter-spacing:0.170667pt;}
.ls43{letter-spacing:0.213333pt;}
.ls75{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.373333pt;}
.ls77{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls4a{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.480000pt;}
.ls65{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls8a{letter-spacing:0.554667pt;}
.ls44{letter-spacing:0.586667pt;}
.ls6f{letter-spacing:0.597333pt;}
.ls4f{letter-spacing:0.640000pt;}
.ls5b{letter-spacing:0.682667pt;}
.ls45{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.746667pt;}
.ls73{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls83{letter-spacing:0.810667pt;}
.ls3d{letter-spacing:0.853333pt;}
.ls66{letter-spacing:0.896000pt;}
.ls1d{letter-spacing:0.906667pt;}
.ls35{letter-spacing:0.960000pt;}
.ls2e{letter-spacing:1.013333pt;}
.ls6e{letter-spacing:1.024000pt;}
.ls4d{letter-spacing:1.066667pt;}
.ls67{letter-spacing:1.109333pt;}
.ls3a{letter-spacing:1.120000pt;}
.ls89{letter-spacing:1.152000pt;}
.ls21{letter-spacing:1.173333pt;}
.ls81{letter-spacing:1.194667pt;}
.ls19{letter-spacing:1.226667pt;}
.ls7c{letter-spacing:1.237333pt;}
.ls29{letter-spacing:1.280000pt;}
.ls72{letter-spacing:1.322667pt;}
.ls15{letter-spacing:1.333333pt;}
.ls39{letter-spacing:1.386667pt;}
.ls63{letter-spacing:1.408000pt;}
.ls5{letter-spacing:1.440000pt;}
.lse{letter-spacing:1.493333pt;}
.ls27{letter-spacing:1.546667pt;}
.ls70{letter-spacing:1.578667pt;}
.ls38{letter-spacing:1.600000pt;}
.ls82{letter-spacing:1.621333pt;}
.ls2b{letter-spacing:1.653333pt;}
.ls2a{letter-spacing:1.706667pt;}
.ls24{letter-spacing:1.760000pt;}
.ls7d{letter-spacing:1.792000pt;}
.lsb{letter-spacing:1.813333pt;}
.ls84{letter-spacing:1.834667pt;}
.lsd{letter-spacing:1.866667pt;}
.ls4{letter-spacing:1.920000pt;}
.ls64{letter-spacing:1.962667pt;}
.ls1e{letter-spacing:1.973333pt;}
.ls47{letter-spacing:2.026667pt;}
.ls7a{letter-spacing:2.048000pt;}
.ls58{letter-spacing:2.080000pt;}
.ls16{letter-spacing:2.133333pt;}
.ls3{letter-spacing:2.186667pt;}
.ls68{letter-spacing:2.218667pt;}
.ls18{letter-spacing:2.240000pt;}
.ls20{letter-spacing:2.293333pt;}
.ls71{letter-spacing:2.304000pt;}
.ls2d{letter-spacing:2.346667pt;}
.ls87{letter-spacing:2.389333pt;}
.ls4e{letter-spacing:2.400000pt;}
.ls5e{letter-spacing:2.453333pt;}
.ls79{letter-spacing:2.474667pt;}
.ls5a{letter-spacing:2.506667pt;}
.ls7e{letter-spacing:2.517333pt;}
.ls52{letter-spacing:2.560000pt;}
.ls3f{letter-spacing:2.613333pt;}
.ls32{letter-spacing:2.666667pt;}
.ls5d{letter-spacing:2.720000pt;}
.ls7b{letter-spacing:2.730667pt;}
.ls31{letter-spacing:2.773333pt;}
.ls53{letter-spacing:2.826667pt;}
.ls48{letter-spacing:2.880000pt;}
.ls14{letter-spacing:2.933333pt;}
.ls2c{letter-spacing:2.986667pt;}
.ls34{letter-spacing:3.040000pt;}
.ls88{letter-spacing:3.072000pt;}
.ls40{letter-spacing:3.093333pt;}
.ls9{letter-spacing:3.253333pt;}
.lsa{letter-spacing:3.306667pt;}
.ls50{letter-spacing:3.360000pt;}
.ls33{letter-spacing:3.413333pt;}
.ls59{letter-spacing:3.466667pt;}
.ls28{letter-spacing:3.520000pt;}
.ls6a{letter-spacing:3.573333pt;}
.ls1f{letter-spacing:4.053333pt;}
.ls86{letter-spacing:4.096000pt;}
.ls6b{letter-spacing:4.160000pt;}
.ls80{letter-spacing:4.181333pt;}
.ls12{letter-spacing:4.213333pt;}
.ls7f{letter-spacing:4.224000pt;}
.ls4c{letter-spacing:4.266667pt;}
.ls23{letter-spacing:4.480000pt;}
.ls51{letter-spacing:4.533333pt;}
.ls6c{letter-spacing:4.586667pt;}
.ls26{letter-spacing:4.693333pt;}
.ls69{letter-spacing:4.800000pt;}
.ls85{letter-spacing:4.821333pt;}
.ls3b{letter-spacing:4.853333pt;}
.ls1a{letter-spacing:4.906667pt;}
.ls42{letter-spacing:5.013333pt;}
.ls46{letter-spacing:5.226667pt;}
.ls41{letter-spacing:5.546667pt;}
.ls74{letter-spacing:5.653333pt;}
.ls5f{letter-spacing:5.760000pt;}
.lsc{letter-spacing:6.240000pt;}
.ls60{letter-spacing:6.453333pt;}
.ls6d{letter-spacing:6.773333pt;}
.ls37{letter-spacing:7.200000pt;}
.ls30{letter-spacing:9.120000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws1{word-spacing:-15.568000pt;}
.ws4e{word-spacing:-15.466667pt;}
.ws5b{word-spacing:-15.413333pt;}
.ws7b{word-spacing:-15.200000pt;}
.wsd{word-spacing:-15.040000pt;}
.ws6f{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws78{word-spacing:-14.613333pt;}
.ws6d{word-spacing:-14.560000pt;}
.ws79{word-spacing:-14.453333pt;}
.ws6e{word-spacing:-14.400000pt;}
.ws7a{word-spacing:-14.293333pt;}
.ws6c{word-spacing:-14.186667pt;}
.ws20{word-spacing:-14.026667pt;}
.ws1e{word-spacing:-13.920000pt;}
.wsb{word-spacing:-13.866667pt;}
.ws58{word-spacing:-13.653333pt;}
.ws1f{word-spacing:-13.600000pt;}
.ws38{word-spacing:-13.386667pt;}
.wsc{word-spacing:-13.333333pt;}
.ws5a{word-spacing:-13.013333pt;}
.ws59{word-spacing:-12.800000pt;}
.ws1d{word-spacing:-12.000000pt;}
.ws91{word-spacing:-11.946667pt;}
.ws8f{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.861333pt;}
.ws92{word-spacing:-11.818667pt;}
.ws8e{word-spacing:-11.776000pt;}
.ws8d{word-spacing:-11.178667pt;}
.ws3{word-spacing:-11.120000pt;}
.ws90{word-spacing:-11.093333pt;}
.ws93{word-spacing:-10.880000pt;}
.ws35{word-spacing:-10.666667pt;}
.ws7e{word-spacing:-9.344000pt;}
.ws0{word-spacing:-9.340800pt;}
.ws7d{word-spacing:-9.088000pt;}
.ws84{word-spacing:-8.106667pt;}
.ws57{word-spacing:-8.000000pt;}
.ws80{word-spacing:-7.466667pt;}
.ws82{word-spacing:-6.954667pt;}
.ws7c{word-spacing:-6.741333pt;}
.ws86{word-spacing:-5.760000pt;}
.ws25{word-spacing:-5.226667pt;}
.ws28{word-spacing:-4.480000pt;}
.ws9c{word-spacing:-4.224000pt;}
.wsa{word-spacing:-3.306667pt;}
.ws5e{word-spacing:-3.253333pt;}
.ws81{word-spacing:-3.114667pt;}
.ws63{word-spacing:-2.933333pt;}
.ws60{word-spacing:-2.880000pt;}
.ws19{word-spacing:-2.773333pt;}
.ws7{word-spacing:-2.565333pt;}
.ws9b{word-spacing:-2.517333pt;}
.ws8a{word-spacing:-2.400000pt;}
.wsa1{word-spacing:-2.389333pt;}
.ws18{word-spacing:-2.346667pt;}
.ws49{word-spacing:-2.293333pt;}
.ws85{word-spacing:-2.218667pt;}
.ws3e{word-spacing:-2.133333pt;}
.ws6a{word-spacing:-2.080000pt;}
.ws64{word-spacing:-2.026667pt;}
.ws77{word-spacing:-1.813333pt;}
.ws2e{word-spacing:-1.760000pt;}
.ws54{word-spacing:-1.706667pt;}
.ws4a{word-spacing:-1.600000pt;}
.ws26{word-spacing:-1.546667pt;}
.ws43{word-spacing:-1.440000pt;}
.ws7f{word-spacing:-1.408000pt;}
.ws45{word-spacing:-1.386667pt;}
.ws29{word-spacing:-1.333333pt;}
.wsa2{word-spacing:-1.152000pt;}
.ws1b{word-spacing:-1.120000pt;}
.ws99{word-spacing:-1.109333pt;}
.ws87{word-spacing:-1.066667pt;}
.ws4b{word-spacing:-1.013333pt;}
.ws6b{word-spacing:-0.853333pt;}
.ws5d{word-spacing:-0.800000pt;}
.ws9f{word-spacing:-0.768000pt;}
.ws23{word-spacing:-0.746667pt;}
.ws2a{word-spacing:-0.693333pt;}
.ws40{word-spacing:-0.640000pt;}
.ws96{word-spacing:-0.597333pt;}
.ws61{word-spacing:-0.586667pt;}
.ws70{word-spacing:-0.533333pt;}
.ws34{word-spacing:-0.469333pt;}
.wsa0{word-spacing:-0.426667pt;}
.ws44{word-spacing:-0.320000pt;}
.ws2b{word-spacing:-0.266667pt;}
.ws24{word-spacing:-0.213333pt;}
.ws72{word-spacing:-0.160000pt;}
.ws22{word-spacing:-0.106667pt;}
.ws27{word-spacing:-0.053333pt;}
.ws4c{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.042667pt;}
.ws3d{word-spacing:0.053333pt;}
.ws3a{word-spacing:0.106667pt;}
.ws97{word-spacing:0.128000pt;}
.ws4f{word-spacing:0.160000pt;}
.ws3b{word-spacing:0.213333pt;}
.ws95{word-spacing:0.256000pt;}
.ws31{word-spacing:0.266667pt;}
.ws69{word-spacing:0.320000pt;}
.ws8b{word-spacing:0.341333pt;}
.ws13{word-spacing:0.373333pt;}
.ws83{word-spacing:0.426667pt;}
.ws9a{word-spacing:0.469333pt;}
.ws73{word-spacing:0.586667pt;}
.ws3c{word-spacing:0.640000pt;}
.ws14{word-spacing:0.693333pt;}
.ws47{word-spacing:0.725333pt;}
.ws1a{word-spacing:0.746667pt;}
.ws66{word-spacing:0.800000pt;}
.ws62{word-spacing:0.853333pt;}
.ws55{word-spacing:1.013333pt;}
.ws17{word-spacing:1.173333pt;}
.ws42{word-spacing:1.280000pt;}
.wsa3{word-spacing:1.322667pt;}
.ws2d{word-spacing:1.386667pt;}
.ws5f{word-spacing:1.440000pt;}
.ws53{word-spacing:1.493333pt;}
.ws48{word-spacing:1.578667pt;}
.ws9e{word-spacing:1.664000pt;}
.ws11{word-spacing:1.813333pt;}
.ws76{word-spacing:1.866667pt;}
.ws1c{word-spacing:1.920000pt;}
.ws75{word-spacing:2.080000pt;}
.ws21{word-spacing:2.133333pt;}
.ws65{word-spacing:2.186667pt;}
.ws8c{word-spacing:2.346667pt;}
.ws5c{word-spacing:2.453333pt;}
.ws74{word-spacing:2.506667pt;}
.ws9d{word-spacing:2.730667pt;}
.ws39{word-spacing:2.826667pt;}
.ws37{word-spacing:2.858667pt;}
.wse{word-spacing:2.880000pt;}
.ws32{word-spacing:2.901333pt;}
.ws16{word-spacing:3.040000pt;}
.ws98{word-spacing:3.072000pt;}
.ws12{word-spacing:3.093333pt;}
.ws36{word-spacing:3.114667pt;}
.ws41{word-spacing:3.253333pt;}
.ws50{word-spacing:3.306667pt;}
.ws94{word-spacing:3.328000pt;}
.ws10{word-spacing:3.413333pt;}
.ws52{word-spacing:3.498667pt;}
.ws2c{word-spacing:3.520000pt;}
.ws33{word-spacing:3.541333pt;}
.ws88{word-spacing:3.573333pt;}
.ws51{word-spacing:3.626667pt;}
.ws68{word-spacing:3.733333pt;}
.ws15{word-spacing:3.786667pt;}
.ws46{word-spacing:3.893333pt;}
.ws3f{word-spacing:4.000000pt;}
.ws71{word-spacing:4.106667pt;}
.wsf{word-spacing:4.160000pt;}
.ws30{word-spacing:4.213333pt;}
.ws56{word-spacing:4.224000pt;}
.ws2f{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.ws89{word-spacing:4.853333pt;}
.ws67{word-spacing:5.226667pt;}
._c{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._4{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._6{width:0.892800pt;}
._9{width:2.426667pt;}
._f{width:3.317333pt;}
._a{width:4.213333pt;}
._b{width:5.546667pt;}
._8{width:6.613333pt;}
._7{width:7.573333pt;}
._d{width:9.440000pt;}
._12{width:33.626667pt;}
._13{width:35.098667pt;}
._10{width:38.954667pt;}
._11{width:49.621333pt;}
.fs5{font-size:24.000000pt;}
.fsb{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y122{bottom:73.906933pt;}
.y114{bottom:74.190400pt;}
.yf7{bottom:74.250267pt;}
.ye6{bottom:74.461200pt;}
.y10f{bottom:74.462533pt;}
.y95{bottom:74.475867pt;}
.y11a{bottom:74.558000pt;}
.y183{bottom:74.588533pt;}
.y15c{bottom:74.590533pt;}
.y144{bottom:74.714533pt;}
.ye9{bottom:74.932400pt;}
.yec{bottom:74.942933pt;}
.y11d{bottom:74.967200pt;}
.yf1{bottom:75.488933pt;}
.y21{bottom:78.246000pt;}
.y1db{bottom:79.219467pt;}
.yb0{bottom:81.114533pt;}
.y121{bottom:87.901600pt;}
.y113{bottom:88.185067pt;}
.yf6{bottom:88.244933pt;}
.y119{bottom:88.552667pt;}
.ye8{bottom:88.927067pt;}
.yeb{bottom:88.937600pt;}
.y11c{bottom:88.961867pt;}
.yf0{bottom:89.483600pt;}
.y60{bottom:90.342533pt;}
.ye5{bottom:90.461200pt;}
.y10e{bottom:90.462533pt;}
.y94{bottom:90.475867pt;}
.y182{bottom:90.588533pt;}
.y15b{bottom:90.590533pt;}
.y143{bottom:90.714533pt;}
.y20{bottom:91.576000pt;}
.y1da{bottom:92.552800pt;}
.y1ab{bottom:95.797867pt;}
.yaf{bottom:97.114533pt;}
.y120{bottom:101.896267pt;}
.y112{bottom:102.179733pt;}
.yf5{bottom:102.239600pt;}
.y118{bottom:102.547333pt;}
.ye7{bottom:102.921733pt;}
.y11b{bottom:102.956533pt;}
.yef{bottom:103.478267pt;}
.y1d9{bottom:105.886133pt;}
.y5f{bottom:106.342533pt;}
.ye4{bottom:106.461200pt;}
.y10d{bottom:106.462533pt;}
.y93{bottom:106.475867pt;}
.y181{bottom:106.588533pt;}
.y15a{bottom:106.590533pt;}
.y142{bottom:106.714533pt;}
.y1aa{bottom:111.797867pt;}
.yae{bottom:113.114533pt;}
.y11f{bottom:115.890933pt;}
.y111{bottom:116.174400pt;}
.yf4{bottom:116.234267pt;}
.y117{bottom:116.542000pt;}
.yee{bottom:117.472933pt;}
.y1d8{bottom:119.219467pt;}
.y5e{bottom:122.342533pt;}
.ye3{bottom:122.461200pt;}
.y10c{bottom:122.462533pt;}
.y92{bottom:122.475867pt;}
.y180{bottom:122.588533pt;}
.y159{bottom:122.590533pt;}
.y141{bottom:122.714533pt;}
.y1a9{bottom:127.797867pt;}
.yad{bottom:129.114533pt;}
.y11e{bottom:129.885600pt;}
.y110{bottom:130.169067pt;}
.yf3{bottom:130.228933pt;}
.y116{bottom:130.536667pt;}
.y1d7{bottom:132.552800pt;}
.y218{bottom:138.012000pt;}
.y5d{bottom:138.342533pt;}
.ye2{bottom:138.461200pt;}
.y10b{bottom:138.462533pt;}
.y91{bottom:138.475867pt;}
.y17f{bottom:138.588533pt;}
.y158{bottom:138.590533pt;}
.y140{bottom:138.714533pt;}
.y1a8{bottom:143.797867pt;}
.y115{bottom:144.531333pt;}
.yac{bottom:145.114533pt;}
.y29{bottom:145.141733pt;}
.y1d6{bottom:145.886133pt;}
.y217{bottom:151.345333pt;}
.y5c{bottom:154.342533pt;}
.ye1{bottom:154.461200pt;}
.y10a{bottom:154.462533pt;}
.y90{bottom:154.475867pt;}
.y17e{bottom:154.588533pt;}
.y157{bottom:154.590533pt;}
.y13f{bottom:154.714533pt;}
.y1d5{bottom:159.219467pt;}
.y1a7{bottom:159.797867pt;}
.yab{bottom:161.114533pt;}
.y28{bottom:161.141733pt;}
.y216{bottom:164.678667pt;}
.y5b{bottom:170.342533pt;}
.ye0{bottom:170.461200pt;}
.y109{bottom:170.462533pt;}
.y8f{bottom:170.475867pt;}
.y17d{bottom:170.588533pt;}
.y156{bottom:170.590533pt;}
.y13e{bottom:170.714533pt;}
.y1d4{bottom:172.552800pt;}
.y1a6{bottom:175.797867pt;}
.yaa{bottom:177.114533pt;}
.y27{bottom:177.141733pt;}
.y215{bottom:178.012000pt;}
.y1d3{bottom:185.886133pt;}
.y5a{bottom:186.342533pt;}
.ydf{bottom:186.461200pt;}
.y108{bottom:186.462533pt;}
.y8e{bottom:186.475867pt;}
.y17c{bottom:186.588533pt;}
.y155{bottom:186.590533pt;}
.y13d{bottom:186.714533pt;}
.y214{bottom:191.345333pt;}
.y1a5{bottom:191.797867pt;}
.ya9{bottom:193.114533pt;}
.y26{bottom:193.141733pt;}
.y1d2{bottom:199.219467pt;}
.y59{bottom:202.342533pt;}
.yde{bottom:202.461200pt;}
.y107{bottom:202.462533pt;}
.y8d{bottom:202.475867pt;}
.y17b{bottom:202.588533pt;}
.y154{bottom:202.590533pt;}
.y13c{bottom:202.714533pt;}
.y213{bottom:204.678667pt;}
.y1a4{bottom:207.797867pt;}
.y25{bottom:209.141733pt;}
.y1d1{bottom:212.552800pt;}
.y212{bottom:218.012000pt;}
.y58{bottom:218.342533pt;}
.ydd{bottom:218.461200pt;}
.y106{bottom:218.462533pt;}
.y8c{bottom:218.475867pt;}
.y17a{bottom:218.588533pt;}
.y153{bottom:218.590533pt;}
.y13b{bottom:218.714533pt;}
.y1a3{bottom:223.797867pt;}
.ya8{bottom:224.084000pt;}
.y24{bottom:225.141733pt;}
.y1d0{bottom:225.886133pt;}
.y211{bottom:231.345333pt;}
.y57{bottom:234.342533pt;}
.ydc{bottom:234.461200pt;}
.y105{bottom:234.462533pt;}
.y8b{bottom:234.475867pt;}
.y179{bottom:234.588533pt;}
.y152{bottom:234.590533pt;}
.y13a{bottom:234.714533pt;}
.ya7{bottom:237.956000pt;}
.y1cf{bottom:239.219467pt;}
.y1a2{bottom:239.797867pt;}
.y23{bottom:241.141733pt;}
.y210{bottom:244.678667pt;}
.y56{bottom:250.342533pt;}
.ydb{bottom:250.461200pt;}
.y104{bottom:250.462533pt;}
.y8a{bottom:250.475867pt;}
.y178{bottom:250.588533pt;}
.y151{bottom:250.590533pt;}
.y139{bottom:250.714533pt;}
.ya6{bottom:250.715867pt;}
.y1ce{bottom:252.552800pt;}
.y1a1{bottom:255.797867pt;}
.y2b{bottom:257.141733pt;}
.y20f{bottom:258.012000pt;}
.y55{bottom:266.342533pt;}
.ya5{bottom:266.355867pt;}
.yda{bottom:266.461200pt;}
.y103{bottom:266.462533pt;}
.y89{bottom:266.475867pt;}
.y177{bottom:266.588533pt;}
.y150{bottom:266.590533pt;}
.y20e{bottom:271.345333pt;}
.y1a0{bottom:271.797867pt;}
.y22{bottom:272.781733pt;}
.y2a{bottom:273.141733pt;}
.y1cd{bottom:281.984533pt;}
.y54{bottom:282.342533pt;}
.y138{bottom:282.354533pt;}
.yd9{bottom:282.461200pt;}
.y102{bottom:282.462533pt;}
.y88{bottom:282.475867pt;}
.y176{bottom:282.588533pt;}
.y14f{bottom:282.590533pt;}
.y20d{bottom:284.678667pt;}
.y19f{bottom:287.797867pt;}
.y20c{bottom:298.012000pt;}
.ya4{bottom:298.222533pt;}
.y53{bottom:298.342533pt;}
.yd8{bottom:298.461200pt;}
.y101{bottom:298.462533pt;}
.y87{bottom:298.475867pt;}
.y175{bottom:298.588533pt;}
.y14e{bottom:298.590533pt;}
.y19e{bottom:303.797867pt;}
.y20b{bottom:311.345333pt;}
.ya3{bottom:314.222533pt;}
.y137{bottom:314.234533pt;}
.y52{bottom:314.342533pt;}
.yd7{bottom:314.461200pt;}
.y100{bottom:314.462533pt;}
.y86{bottom:314.475867pt;}
.y174{bottom:314.588533pt;}
.y14d{bottom:314.590533pt;}
.y19d{bottom:319.797867pt;}
.y20a{bottom:324.678667pt;}
.ya2{bottom:330.222533pt;}
.y51{bottom:330.342533pt;}
.yd6{bottom:330.461200pt;}
.yff{bottom:330.462533pt;}
.y1cc{bottom:330.464533pt;}
.y85{bottom:330.475867pt;}
.y173{bottom:330.588533pt;}
.y14c{bottom:330.590533pt;}
.y19c{bottom:335.797867pt;}
.y209{bottom:338.012000pt;}
.y1f{bottom:340.057067pt;}
.y1cb{bottom:346.104533pt;}
.ya1{bottom:346.222533pt;}
.y50{bottom:346.342533pt;}
.yd5{bottom:346.461200pt;}
.yfe{bottom:346.462533pt;}
.y84{bottom:346.475867pt;}
.y172{bottom:346.588533pt;}
.y14b{bottom:346.590533pt;}
.y208{bottom:351.345333pt;}
.y4f{bottom:362.342533pt;}
.yd4{bottom:362.461200pt;}
.yfd{bottom:362.462533pt;}
.y83{bottom:362.475867pt;}
.y171{bottom:362.588533pt;}
.y14a{bottom:362.590533pt;}
.y136{bottom:362.714533pt;}
.y1e{bottom:364.363733pt;}
.y207{bottom:364.678667pt;}
.y19b{bottom:367.437867pt;}
.y206{bottom:378.012000pt;}
.ya0{bottom:378.102533pt;}
.y1ca{bottom:378.104533pt;}
.y4e{bottom:378.342533pt;}
.yd3{bottom:378.461200pt;}
.yfc{bottom:378.462533pt;}
.y82{bottom:378.475867pt;}
.y149{bottom:378.590533pt;}
.y170{bottom:378.595867pt;}
.y135{bottom:378.714533pt;}
.y1d{bottom:380.363733pt;}
.y205{bottom:391.345333pt;}
.y4d{bottom:394.342533pt;}
.yd2{bottom:394.461200pt;}
.yfb{bottom:394.462533pt;}
.y81{bottom:394.475867pt;}
.y148{bottom:394.590533pt;}
.y16f{bottom:394.595867pt;}
.y134{bottom:394.714533pt;}
.y1c{bottom:396.363733pt;}
.y204{bottom:404.678667pt;}
.y9f{bottom:409.982533pt;}
.y4c{bottom:410.342533pt;}
.yd1{bottom:410.461200pt;}
.yfa{bottom:410.462533pt;}
.y1c9{bottom:410.464533pt;}
.y80{bottom:410.475867pt;}
.y147{bottom:410.590533pt;}
.y16e{bottom:410.595867pt;}
.y133{bottom:410.714533pt;}
.y1b{bottom:412.363733pt;}
.y19a{bottom:415.471333pt;}
.y203{bottom:418.012000pt;}
.y1c8{bottom:426.104533pt;}
.y4b{bottom:426.342533pt;}
.yd0{bottom:426.461200pt;}
.yf9{bottom:426.462533pt;}
.y7f{bottom:426.475867pt;}
.y146{bottom:426.590533pt;}
.y16d{bottom:426.595867pt;}
.y132{bottom:426.714533pt;}
.y1a{bottom:428.363733pt;}
.y199{bottom:428.804667pt;}
.y202{bottom:431.345333pt;}
.y198{bottom:442.138000pt;}
.y4a{bottom:442.342533pt;}
.ycf{bottom:442.461200pt;}
.yf8{bottom:442.462533pt;}
.y7e{bottom:442.475867pt;}
.y16c{bottom:442.595867pt;}
.y131{bottom:442.714533pt;}
.y19{bottom:444.363733pt;}
.y201{bottom:444.678667pt;}
.y197{bottom:455.471333pt;}
.y200{bottom:458.012000pt;}
.y145{bottom:458.230533pt;}
.y49{bottom:458.342533pt;}
.yce{bottom:458.461200pt;}
.y9e{bottom:458.462533pt;}
.y1c7{bottom:458.464533pt;}
.y7d{bottom:458.475867pt;}
.y16b{bottom:458.595867pt;}
.y130{bottom:458.714533pt;}
.y18{bottom:460.363733pt;}
.y196{bottom:468.804667pt;}
.y1ff{bottom:471.345333pt;}
.y1c6{bottom:474.104533pt;}
.y48{bottom:474.342533pt;}
.ycd{bottom:474.461200pt;}
.y9d{bottom:474.462533pt;}
.y7c{bottom:474.475867pt;}
.y16a{bottom:474.595867pt;}
.y12f{bottom:474.714533pt;}
.y17{bottom:476.363733pt;}
.y195{bottom:482.138000pt;}
.y1fe{bottom:484.678667pt;}
.y47{bottom:490.342533pt;}
.ycc{bottom:490.461200pt;}
.y9c{bottom:490.462533pt;}
.y7b{bottom:490.475867pt;}
.y169{bottom:490.595867pt;}
.y12e{bottom:490.729200pt;}
.y16{bottom:492.363733pt;}
.y194{bottom:495.471333pt;}
.y1fd{bottom:498.012000pt;}
.y46{bottom:506.342533pt;}
.ycb{bottom:506.461200pt;}
.y9b{bottom:506.462533pt;}
.y1c5{bottom:506.464533pt;}
.y7a{bottom:506.475867pt;}
.y168{bottom:506.595867pt;}
.y12d{bottom:506.729200pt;}
.y15{bottom:508.363733pt;}
.y193{bottom:508.804667pt;}
.y1fc{bottom:511.345333pt;}
.y192{bottom:522.138000pt;}
.yca{bottom:522.461200pt;}
.y9a{bottom:522.462533pt;}
.y1c4{bottom:522.464533pt;}
.y79{bottom:522.475867pt;}
.y167{bottom:522.595867pt;}
.y12c{bottom:522.729200pt;}
.y14{bottom:524.363733pt;}
.y1fb{bottom:524.678667pt;}
.y191{bottom:535.471333pt;}
.y45{bottom:537.982533pt;}
.y1fa{bottom:538.012000pt;}
.yc9{bottom:538.461200pt;}
.y99{bottom:538.462533pt;}
.y1c3{bottom:538.464533pt;}
.y78{bottom:538.475867pt;}
.y166{bottom:538.595867pt;}
.y13{bottom:540.363733pt;}
.y190{bottom:548.804667pt;}
.y1f9{bottom:551.345333pt;}
.y12b{bottom:554.369200pt;}
.yc8{bottom:554.461200pt;}
.y98{bottom:554.462533pt;}
.y1c2{bottom:554.464533pt;}
.y77{bottom:554.475867pt;}
.y165{bottom:554.595867pt;}
.y12{bottom:556.363733pt;}
.y18f{bottom:562.138000pt;}
.y1f8{bottom:564.678667pt;}
.y1c1{bottom:570.104533pt;}
.yc7{bottom:570.461200pt;}
.y97{bottom:570.462533pt;}
.y76{bottom:570.475867pt;}
.y164{bottom:570.595867pt;}
.y18e{bottom:575.471333pt;}
.y1f7{bottom:578.012000pt;}
.yc6{bottom:586.461200pt;}
.y44{bottom:586.462533pt;}
.y75{bottom:586.475867pt;}
.y12a{bottom:586.595867pt;}
.y18d{bottom:588.804667pt;}
.y1f6{bottom:591.345333pt;}
.y11{bottom:596.504267pt;}
.y18c{bottom:602.138000pt;}
.yc5{bottom:602.461200pt;}
.y43{bottom:602.462533pt;}
.y1c0{bottom:602.464533pt;}
.y74{bottom:602.475867pt;}
.y129{bottom:602.595867pt;}
.y1f5{bottom:604.678667pt;}
.y10{bottom:607.571600pt;}
.y18b{bottom:615.471333pt;}
.y1f4{bottom:618.012000pt;}
.yc4{bottom:618.461200pt;}
.y42{bottom:618.462533pt;}
.y1bf{bottom:618.464533pt;}
.y73{bottom:618.475867pt;}
.y128{bottom:618.595867pt;}
.y18a{bottom:628.804667pt;}
.y1f3{bottom:631.345333pt;}
.yc3{bottom:634.461200pt;}
.y41{bottom:634.462533pt;}
.y1be{bottom:634.464533pt;}
.y72{bottom:634.475867pt;}
.y127{bottom:634.595867pt;}
.yf{bottom:639.194800pt;}
.y189{bottom:642.138000pt;}
.y1f2{bottom:644.678667pt;}
.ye{bottom:647.763200pt;}
.yc2{bottom:650.461200pt;}
.y40{bottom:650.462533pt;}
.y1bd{bottom:650.464533pt;}
.y71{bottom:650.475867pt;}
.y126{bottom:650.595867pt;}
.y188{bottom:655.471333pt;}
.y1f1{bottom:658.012000pt;}
.yd{bottom:663.194800pt;}
.yc1{bottom:666.461200pt;}
.y3f{bottom:666.462533pt;}
.y1bc{bottom:666.464533pt;}
.y70{bottom:666.475867pt;}
.y125{bottom:666.595867pt;}
.y187{bottom:668.804667pt;}
.y1f0{bottom:671.345333pt;}
.yc{bottom:675.194800pt;}
.yc0{bottom:682.461200pt;}
.y3e{bottom:682.462533pt;}
.y1bb{bottom:682.464533pt;}
.y6f{bottom:682.475867pt;}
.y124{bottom:682.595867pt;}
.y1ef{bottom:684.678667pt;}
.yb{bottom:687.194800pt;}
.y1ee{bottom:698.012000pt;}
.ybf{bottom:698.461200pt;}
.y3d{bottom:698.462533pt;}
.y1ba{bottom:698.464533pt;}
.y6e{bottom:698.475867pt;}
.y163{bottom:698.595867pt;}
.ya{bottom:699.194800pt;}
.y9{bottom:711.194800pt;}
.y1ed{bottom:711.345333pt;}
.y123{bottom:714.235867pt;}
.ybe{bottom:714.461200pt;}
.y3c{bottom:714.462533pt;}
.y1b9{bottom:714.464533pt;}
.y6d{bottom:714.475867pt;}
.y162{bottom:714.595867pt;}
.y1ec{bottom:724.678667pt;}
.ybd{bottom:730.461200pt;}
.y3b{bottom:730.462533pt;}
.y1b8{bottom:730.464533pt;}
.y6c{bottom:730.475867pt;}
.y161{bottom:730.595867pt;}
.y1eb{bottom:738.012000pt;}
.y8{bottom:738.121067pt;}
.ybc{bottom:746.461200pt;}
.y3a{bottom:746.462533pt;}
.y1b7{bottom:746.464533pt;}
.y6b{bottom:746.475867pt;}
.y160{bottom:746.595867pt;}
.y1ea{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.ybb{bottom:762.461200pt;}
.y39{bottom:762.462533pt;}
.y1b6{bottom:762.464533pt;}
.y6a{bottom:762.475867pt;}
.y15f{bottom:762.595867pt;}
.y1e9{bottom:764.678667pt;}
.y1e8{bottom:778.012000pt;}
.yba{bottom:778.461200pt;}
.y38{bottom:778.462533pt;}
.y1b5{bottom:778.464533pt;}
.y69{bottom:778.475867pt;}
.y15e{bottom:778.595867pt;}
.y1e7{bottom:791.345333pt;}
.yb9{bottom:794.461200pt;}
.y37{bottom:794.462533pt;}
.y1b4{bottom:794.464533pt;}
.y68{bottom:794.475867pt;}
.y186{bottom:794.595867pt;}
.y6{bottom:797.823333pt;}
.y1e6{bottom:804.678667pt;}
.y15d{bottom:810.235867pt;}
.yb8{bottom:810.461200pt;}
.y36{bottom:810.462533pt;}
.y1b3{bottom:810.464533pt;}
.y67{bottom:810.475867pt;}
.y185{bottom:810.595867pt;}
.y1e5{bottom:818.012000pt;}
.yb7{bottom:826.461200pt;}
.y35{bottom:826.462533pt;}
.y1b2{bottom:826.464533pt;}
.y66{bottom:826.475867pt;}
.y5{bottom:830.232933pt;}
.y1e4{bottom:831.345333pt;}
.y184{bottom:842.235867pt;}
.yb6{bottom:842.461200pt;}
.y34{bottom:842.462533pt;}
.y1b1{bottom:842.464533pt;}
.y65{bottom:842.475867pt;}
.y1e3{bottom:844.678667pt;}
.y1e2{bottom:858.012000pt;}
.yb5{bottom:858.461200pt;}
.y33{bottom:858.462533pt;}
.y1b0{bottom:858.464533pt;}
.y64{bottom:858.475867pt;}
.y4{bottom:862.642533pt;}
.y1e1{bottom:871.345333pt;}
.yb4{bottom:874.461200pt;}
.y32{bottom:874.462533pt;}
.y1af{bottom:874.464533pt;}
.y63{bottom:874.475867pt;}
.y1e0{bottom:884.678667pt;}
.yb3{bottom:890.461200pt;}
.y31{bottom:890.462533pt;}
.y1ae{bottom:890.464533pt;}
.y62{bottom:890.475867pt;}
.y3{bottom:895.052133pt;}
.y1df{bottom:898.012000pt;}
.yb2{bottom:906.461200pt;}
.y30{bottom:906.462533pt;}
.y1ad{bottom:906.464533pt;}
.y1de{bottom:911.345333pt;}
.y1ac{bottom:922.104533pt;}
.y61{bottom:922.115867pt;}
.yb1{bottom:922.461200pt;}
.y2f{bottom:922.462533pt;}
.y1dd{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1dc{bottom:1006.590133pt;}
.y96{bottom:1006.594400pt;}
.y219{bottom:1006.598667pt;}
.yed{bottom:1006.601600pt;}
.yea{bottom:1006.601733pt;}
.yf2{bottom:1006.614267pt;}
.y2d{bottom:1009.857333pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:18.351562pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.hd{height:29.140625pt;}
.h14{height:29.645833pt;}
.h13{height:29.708333pt;}
.h8{height:30.585938pt;}
.h10{height:31.083333pt;}
.hf{height:32.625000pt;}
.h12{height:33.421875pt;}
.h11{height:37.057292pt;}
.he{height:37.135417pt;}
.ha{height:38.828125pt;}
.hc{height:38.854167pt;}
.h15{height:39.951650pt;}
.hb{height:40.781250pt;}
.h6{height:43.660119pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x24{left:90.708667pt;}
.x4{left:94.488133pt;}
.xd{left:98.258133pt;}
.x18{left:105.121333pt;}
.x20{left:107.338667pt;}
.x3{left:111.496000pt;}
.x6{left:117.170133pt;}
.x14{left:123.049200pt;}
.xc{left:128.631467pt;}
.x15{left:144.409200pt;}
.x16{left:180.475867pt;}
.x21{left:187.904400pt;}
.x5{left:189.223467pt;}
.x1f{left:195.677333pt;}
.x19{left:198.157333pt;}
.x13{left:199.262533pt;}
.x12{left:206.542533pt;}
.x17{left:207.915867pt;}
.xa{left:404.481333pt;}
.xe{left:406.284800pt;}
.x1a{left:425.218667pt;}
.x7{left:427.090133pt;}
.x25{left:428.980667pt;}
.xf{left:436.524800pt;}
.x23{left:447.874133pt;}
.x1b{left:455.458667pt;}
.x8{left:457.316800pt;}
.x22{left:529.851067pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1d{left:641.526800pt;}
.x10{left:647.459200pt;}
.x1e{left:661.216133pt;}
.x1c{left:666.356800pt;}
}




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