
    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_cf19406295b8257d44ec66f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aaaa335b552c624f0dce2561.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_ada0b6cc66eea479e1e47646.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_976eada622a639a1851d8214.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.730469;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_0220bd89ce2432cbde29424b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a9f742d72f1868ef6a80d52f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e4404cf130c35a6cc9db6825.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_760dabb26e6a2eeb8dd58cb4.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_ac3f9baf59d0a8a40e66f479.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_37f03a2ef231fd244e060c63.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-11.757000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.v4{vertical-align:32.976000px;}
.v5{vertical-align:65.952000px;}
.ls1e{letter-spacing:-5.340000px;}
.ls18{letter-spacing:-0.780000px;}
.ls43{letter-spacing:-0.660000px;}
.ls6e{letter-spacing:-0.600000px;}
.ls19{letter-spacing:-0.506400px;}
.ls62{letter-spacing:-0.480000px;}
.ls60{letter-spacing:-0.420000px;}
.ls1a{letter-spacing:-0.315000px;}
.ls1d{letter-spacing:-0.300000px;}
.ls44{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.225000px;}
.ls49{letter-spacing:-0.192000px;}
.ls1b{letter-spacing:-0.183645px;}
.ls6d{letter-spacing:-0.180000px;}
.ls97{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.120000px;}
.ls96{letter-spacing:-0.096000px;}
.ls20{letter-spacing:-0.060000px;}
.ls80{letter-spacing:-0.048000px;}
.ls17{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.003540px;}
.ls74{letter-spacing:0.048000px;}
.ls42{letter-spacing:0.060000px;}
.ls63{letter-spacing:0.096000px;}
.ls5{letter-spacing:0.120000px;}
.ls6b{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls8d{letter-spacing:0.192000px;}
.ls50{letter-spacing:0.201000px;}
.ls36{letter-spacing:0.240000px;}
.ls8a{letter-spacing:0.288000px;}
.ls3e{letter-spacing:0.300000px;}
.ls77{letter-spacing:0.336000px;}
.lse{letter-spacing:0.360000px;}
.ls91{letter-spacing:0.384000px;}
.ls2d{letter-spacing:0.420000px;}
.ls89{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.480000px;}
.ls8b{letter-spacing:0.528000px;}
.ls3d{letter-spacing:0.540000px;}
.ls6f{letter-spacing:0.576000px;}
.ls2c{letter-spacing:0.600000px;}
.ls79{letter-spacing:0.624000px;}
.ls31{letter-spacing:0.660000px;}
.ls7a{letter-spacing:0.672000px;}
.ls13{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.780000px;}
.ls94{letter-spacing:0.816000px;}
.lsb{letter-spacing:0.840000px;}
.ls7b{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.900000px;}
.ls82{letter-spacing:0.912000px;}
.ls46{letter-spacing:0.960000px;}
.ls7c{letter-spacing:1.008000px;}
.ls7{letter-spacing:1.020000px;}
.ls34{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.140000px;}
.ls61{letter-spacing:1.152000px;}
.ls25{letter-spacing:1.200000px;}
.ls8c{letter-spacing:1.248000px;}
.ls8{letter-spacing:1.260000px;}
.ls85{letter-spacing:1.296000px;}
.ls9{letter-spacing:1.320000px;}
.ls87{letter-spacing:1.344000px;}
.ls35{letter-spacing:1.380000px;}
.ls84{letter-spacing:1.392000px;}
.ls4a{letter-spacing:1.440000px;}
.ls92{letter-spacing:1.488000px;}
.ls3a{letter-spacing:1.500000px;}
.ls73{letter-spacing:1.536000px;}
.lsf{letter-spacing:1.560000px;}
.ls4d{letter-spacing:1.620000px;}
.ls7e{letter-spacing:1.632000px;}
.ls41{letter-spacing:1.680000px;}
.ls8f{letter-spacing:1.728000px;}
.ls2f{letter-spacing:1.740000px;}
.ls38{letter-spacing:1.800000px;}
.ls86{letter-spacing:1.824000px;}
.ls29{letter-spacing:1.860000px;}
.ls88{letter-spacing:1.872000px;}
.ls4b{letter-spacing:1.920000px;}
.ls15{letter-spacing:1.980000px;}
.ls75{letter-spacing:2.016000px;}
.ls27{letter-spacing:2.040000px;}
.ls7f{letter-spacing:2.064000px;}
.ls70{letter-spacing:2.100000px;}
.ls95{letter-spacing:2.112000px;}
.lsd{letter-spacing:2.160000px;}
.ls83{letter-spacing:2.208000px;}
.ls33{letter-spacing:2.220000px;}
.ls69{letter-spacing:2.280000px;}
.ls7d{letter-spacing:2.304000px;}
.ls23{letter-spacing:2.340000px;}
.ls90{letter-spacing:2.352000px;}
.ls11{letter-spacing:2.400000px;}
.ls93{letter-spacing:2.448000px;}
.ls24{letter-spacing:2.460000px;}
.ls76{letter-spacing:2.496000px;}
.ls5d{letter-spacing:2.520000px;}
.ls40{letter-spacing:2.580000px;}
.ls78{letter-spacing:2.592000px;}
.ls37{letter-spacing:2.640000px;}
.ls3b{letter-spacing:2.700000px;}
.ls32{letter-spacing:2.760000px;}
.ls30{letter-spacing:2.820000px;}
.ls22{letter-spacing:2.880000px;}
.ls39{letter-spacing:2.940000px;}
.ls10{letter-spacing:3.000000px;}
.ls59{letter-spacing:3.060000px;}
.ls72{letter-spacing:3.120000px;}
.ls81{letter-spacing:3.168000px;}
.lsc{letter-spacing:3.180000px;}
.ls54{letter-spacing:3.240000px;}
.ls2e{letter-spacing:3.300000px;}
.ls2a{letter-spacing:3.360000px;}
.ls4{letter-spacing:3.420000px;}
.ls45{letter-spacing:3.480000px;}
.ls5e{letter-spacing:3.660000px;}
.ls5c{letter-spacing:3.720000px;}
.ls4f{letter-spacing:3.780000px;}
.ls8e{letter-spacing:3.792000px;}
.ls51{letter-spacing:3.840000px;}
.ls67{letter-spacing:3.960000px;}
.ls5f{letter-spacing:3.984000px;}
.ls71{letter-spacing:4.020000px;}
.ls14{letter-spacing:4.080000px;}
.ls6c{letter-spacing:4.128000px;}
.ls98{letter-spacing:4.200000px;}
.ls55{letter-spacing:4.320000px;}
.ls28{letter-spacing:4.380000px;}
.ls3c{letter-spacing:4.440000px;}
.ls53{letter-spacing:4.500000px;}
.ls4e{letter-spacing:4.620000px;}
.ls52{letter-spacing:4.680000px;}
.ls5a{letter-spacing:4.740000px;}
.ls5b{letter-spacing:5.040000px;}
.ls2b{letter-spacing:5.100000px;}
.ls47{letter-spacing:5.280000px;}
.ls48{letter-spacing:5.460000px;}
.ls65{letter-spacing:5.580000px;}
.ls6a{letter-spacing:5.940000px;}
.ls99{letter-spacing:6.240000px;}
.ls66{letter-spacing:6.600000px;}
.ls64{letter-spacing:6.720000px;}
.ls4c{letter-spacing:6.840000px;}
.ls16{letter-spacing:6.900000px;}
.ls57{letter-spacing:6.960000px;}
.ls12{letter-spacing:7.320000px;}
.ls68{letter-spacing:7.680000px;}
.ls58{letter-spacing:11.880000px;}
.ls0{letter-spacing:59.039400px;}
.ls1{letter-spacing:59.165676px;}
.ls2{letter-spacing:59.166276px;}
.ls56{letter-spacing:214.128000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.194800px;}
.ws51{word-spacing:-19.680000px;}
.ws99{word-spacing:-18.840000px;}
.ws5d{word-spacing:-17.940000px;}
.ws63{word-spacing:-17.700000px;}
.ws85{word-spacing:-17.460000px;}
.ws52{word-spacing:-17.400000px;}
.ws53{word-spacing:-17.340000px;}
.ws4f{word-spacing:-16.860000px;}
.ws83{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws3a{word-spacing:-16.440000px;}
.ws50{word-spacing:-16.320000px;}
.ws4{word-spacing:-16.260000px;}
.ws37{word-spacing:-16.200000px;}
.ws77{word-spacing:-16.080000px;}
.ws3{word-spacing:-16.020000px;}
.ws1e{word-spacing:-15.780000px;}
.ws7{word-spacing:-15.720000px;}
.ws82{word-spacing:-15.660000px;}
.ws9a{word-spacing:-15.540000px;}
.ws62{word-spacing:-15.480000px;}
.ws86{word-spacing:-15.420000px;}
.ws39{word-spacing:-15.300000px;}
.ws33{word-spacing:-15.240000px;}
.ws5{word-spacing:-15.180000px;}
.ws9e{word-spacing:-15.168000px;}
.ws38{word-spacing:-15.060000px;}
.ws1d{word-spacing:-15.000000px;}
.ws84{word-spacing:-14.880000px;}
.ws6{word-spacing:-14.700000px;}
.ws9c{word-spacing:-14.400000px;}
.wsb4{word-spacing:-14.016000px;}
.wsad{word-spacing:-13.872000px;}
.wsb2{word-spacing:-13.824000px;}
.wsac{word-spacing:-13.632000px;}
.ws5c{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.344000px;}
.wsae{word-spacing:-13.152000px;}
.ws9d{word-spacing:-12.864000px;}
.wsb0{word-spacing:-12.624000px;}
.wsaf{word-spacing:-12.528000px;}
.ws8{word-spacing:-12.510000px;}
.wsb1{word-spacing:-12.432000px;}
.wsb3{word-spacing:-12.192000px;}
.wsab{word-spacing:-12.096000px;}
.ws7c{word-spacing:-12.000000px;}
.ws9b{word-spacing:-11.952000px;}
.ws1{word-spacing:-10.027017px;}
.ws59{word-spacing:-4.320000px;}
.ws1b{word-spacing:-4.080000px;}
.ws90{word-spacing:-3.960000px;}
.ws68{word-spacing:-3.840000px;}
.ws8a{word-spacing:-3.300000px;}
.wsa8{word-spacing:-3.168000px;}
.wsb5{word-spacing:-3.120000px;}
.ws78{word-spacing:-3.060000px;}
.ws16{word-spacing:-3.000000px;}
.ws5f{word-spacing:-2.940000px;}
.wsb{word-spacing:-2.886000px;}
.ws2b{word-spacing:-2.880000px;}
.ws91{word-spacing:-2.760000px;}
.ws4d{word-spacing:-2.700000px;}
.wsa5{word-spacing:-2.496000px;}
.ws95{word-spacing:-2.460000px;}
.wsc6{word-spacing:-2.448000px;}
.ws17{word-spacing:-2.400000px;}
.ws23{word-spacing:-2.220000px;}
.ws66{word-spacing:-2.160000px;}
.wsc7{word-spacing:-2.112000px;}
.ws9f{word-spacing:-2.100000px;}
.ws71{word-spacing:-2.040000px;}
.ws1c{word-spacing:-1.980000px;}
.ws8b{word-spacing:-1.800000px;}
.ws8d{word-spacing:-1.680000px;}
.ws15{word-spacing:-1.560000px;}
.wsba{word-spacing:-1.344000px;}
.ws13{word-spacing:-1.320000px;}
.ws67{word-spacing:-1.200000px;}
.wsc5{word-spacing:-1.152000px;}
.ws74{word-spacing:-1.140000px;}
.ws29{word-spacing:-1.080000px;}
.ws12{word-spacing:-1.020000px;}
.ws55{word-spacing:-0.960000px;}
.wsb9{word-spacing:-0.912000px;}
.wsaa{word-spacing:-0.864000px;}
.ws69{word-spacing:-0.840000px;}
.ws31{word-spacing:-0.780000px;}
.ws47{word-spacing:-0.720000px;}
.wsc8{word-spacing:-0.672000px;}
.ws79{word-spacing:-0.660000px;}
.wsa7{word-spacing:-0.624000px;}
.ws93{word-spacing:-0.600000px;}
.ws1f{word-spacing:-0.540000px;}
.wsbe{word-spacing:-0.528000px;}
.ws64{word-spacing:-0.480000px;}
.wsc0{word-spacing:-0.432000px;}
.ws92{word-spacing:-0.420000px;}
.ws56{word-spacing:-0.360000px;}
.ws2a{word-spacing:-0.300000px;}
.wsbc{word-spacing:-0.288000px;}
.ws2d{word-spacing:-0.240000px;}
.wsc2{word-spacing:-0.192000px;}
.ws5a{word-spacing:-0.180000px;}
.ws27{word-spacing:-0.120000px;}
.ws87{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.wsa6{word-spacing:0.048000px;}
.wse{word-spacing:0.060000px;}
.wsbb{word-spacing:0.096000px;}
.ws1a{word-spacing:0.120000px;}
.ws30{word-spacing:0.180000px;}
.ws61{word-spacing:0.192000px;}
.wsd{word-spacing:0.225000px;}
.ws2e{word-spacing:0.240000px;}
.ws65{word-spacing:0.300000px;}
.ws96{word-spacing:0.360000px;}
.ws46{word-spacing:0.420000px;}
.ws24{word-spacing:0.480000px;}
.wsc{word-spacing:0.506400px;}
.ws2f{word-spacing:0.540000px;}
.ws94{word-spacing:0.600000px;}
.ws5b{word-spacing:0.624000px;}
.ws25{word-spacing:0.660000px;}
.ws4e{word-spacing:0.720000px;}
.ws36{word-spacing:0.960000px;}
.wsc1{word-spacing:1.008000px;}
.ws4a{word-spacing:1.080000px;}
.wsa2{word-spacing:1.140000px;}
.ws7f{word-spacing:1.152000px;}
.wsbd{word-spacing:1.296000px;}
.wsa0{word-spacing:1.320000px;}
.ws7e{word-spacing:1.380000px;}
.wsc4{word-spacing:1.392000px;}
.ws6a{word-spacing:1.440000px;}
.ws73{word-spacing:1.500000px;}
.wsa9{word-spacing:1.536000px;}
.ws35{word-spacing:1.560000px;}
.ws76{word-spacing:1.584000px;}
.ws6b{word-spacing:1.620000px;}
.ws57{word-spacing:1.680000px;}
.ws58{word-spacing:1.740000px;}
.wsb6{word-spacing:1.776000px;}
.ws19{word-spacing:1.800000px;}
.ws42{word-spacing:1.920000px;}
.ws70{word-spacing:2.040000px;}
.ws43{word-spacing:2.160000px;}
.ws2c{word-spacing:2.280000px;}
.ws32{word-spacing:2.340000px;}
.ws6e{word-spacing:2.400000px;}
.ws98{word-spacing:2.460000px;}
.ws28{word-spacing:2.520000px;}
.ws97{word-spacing:2.580000px;}
.wsa4{word-spacing:2.640000px;}
.ws75{word-spacing:2.700000px;}
.wsb7{word-spacing:2.832000px;}
.ws14{word-spacing:2.880000px;}
.ws49{word-spacing:3.000000px;}
.ws6f{word-spacing:3.060000px;}
.ws80{word-spacing:3.120000px;}
.ws60{word-spacing:3.180000px;}
.wsb8{word-spacing:3.216000px;}
.ws89{word-spacing:3.240000px;}
.wsc3{word-spacing:3.264000px;}
.ws88{word-spacing:3.360000px;}
.wsbf{word-spacing:3.408000px;}
.ws22{word-spacing:3.420000px;}
.ws45{word-spacing:3.480000px;}
.ws6c{word-spacing:3.660000px;}
.ws34{word-spacing:3.780000px;}
.wsf{word-spacing:3.840000px;}
.ws6d{word-spacing:3.900000px;}
.ws81{word-spacing:3.936000px;}
.ws4b{word-spacing:3.960000px;}
.ws7b{word-spacing:3.984000px;}
.ws7a{word-spacing:4.020000px;}
.ws72{word-spacing:4.080000px;}
.ws48{word-spacing:4.260000px;}
.ws4c{word-spacing:4.320000px;}
.ws20{word-spacing:4.380000px;}
.ws5e{word-spacing:4.440000px;}
.ws7d{word-spacing:4.560000px;}
.ws44{word-spacing:4.620000px;}
.ws21{word-spacing:4.680000px;}
.ws8f{word-spacing:4.740000px;}
.ws26{word-spacing:4.860000px;}
.ws11{word-spacing:4.920000px;}
.ws10{word-spacing:4.980000px;}
.ws18{word-spacing:5.340000px;}
.wsa3{word-spacing:5.460000px;}
.wsa1{word-spacing:5.520000px;}
.ws8c{word-spacing:6.600000px;}
.wsc9{word-spacing:6.660000px;}
.ws8e{word-spacing:6.780000px;}
.ws3d{word-spacing:185.088000px;}
.ws54{word-spacing:220.176000px;}
.ws3e{word-spacing:277.728000px;}
.ws41{word-spacing:320.304000px;}
.ws40{word-spacing:358.896000px;}
.ws3b{word-spacing:364.560000px;}
.ws3c{word-spacing:366.432000px;}
.ws3f{word-spacing:479.136000px;}
._c{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._2{margin-left:-9.621600px;}
._18{margin-left:-7.860000px;}
._b{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._14{margin-left:-4.368000px;}
._4{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.012800px;}
._6{width:1.080000px;}
._30{width:2.088000px;}
._a{width:3.096000px;}
._8{width:4.710000px;}
._5{width:5.820000px;}
._9{width:6.930000px;}
._7{width:7.980000px;}
._19{width:9.420000px;}
._11{width:108.018000px;}
._13{width:115.440000px;}
._f{width:231.456000px;}
._20{width:232.896000px;}
._27{width:256.200000px;}
._2c{width:274.031400px;}
._21{width:280.560000px;}
._2d{width:286.157400px;}
._1d{width:316.176000px;}
._1e{width:331.920000px;}
._22{width:360.438000px;}
._24{width:372.870000px;}
._12{width:384.528000px;}
._e{width:387.168000px;}
._1b{width:388.704000px;}
._2e{width:389.866800px;}
._16{width:395.232000px;}
._2b{width:401.712000px;}
._26{width:405.744000px;}
._17{width:420.624000px;}
._15{width:451.248000px;}
._2f{width:455.764800px;}
._1a{width:494.640000px;}
._25{width:572.304000px;}
._23{width:573.750000px;}
._10{width:652.656000px;}
._2a{width:699.702000px;}
._1f{width:730.042800px;}
._28{width:742.710000px;}
._29{width:752.976000px;}
._1c{width:1009.344000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{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;}
.ye4{bottom:83.247750px;}
.yea{bottom:83.436900px;}
.y10d{bottom:83.460300px;}
.y12a{bottom:83.635350px;}
.y8d{bottom:83.770350px;}
.y91{bottom:83.873850px;}
.yde{bottom:83.885550px;}
.y5e{bottom:83.920350px;}
.y156{bottom:86.121900px;}
.y2b{bottom:88.026750px;}
.yb7{bottom:93.031950px;}
.yb6{bottom:93.043950px;}
.yc1{bottom:93.304500px;}
.yd9{bottom:93.714000px;}
.ye3{bottom:98.991750px;}
.ye9{bottom:99.180900px;}
.y10c{bottom:99.204300px;}
.y90{bottom:99.617850px;}
.ydd{bottom:99.629550px;}
.y155{bottom:101.121900px;}
.y129{bottom:101.635350px;}
.y8c{bottom:101.770350px;}
.y5d{bottom:101.920350px;}
.y2a{bottom:103.023000px;}
.yb5{bottom:109.543950px;}
.yc0{bottom:109.552500px;}
.yd8{bottom:109.965900px;}
.ye8{bottom:114.924900px;}
.y8f{bottom:115.361850px;}
.y154{bottom:116.121900px;}
.y128{bottom:119.230350px;}
.y8b{bottom:119.770350px;}
.y5c{bottom:119.920350px;}
.yb4{bottom:125.791950px;}
.ybf{bottom:125.800500px;}
.yb3{bottom:125.803950px;}
.yd7{bottom:126.225750px;}
.ye7{bottom:130.668900px;}
.y153{bottom:131.121900px;}
.y8a{bottom:137.770350px;}
.ybe{bottom:142.048500px;}
.yb2{bottom:142.303950px;}
.yd6{bottom:142.473750px;}
.y152{bottom:146.121900px;}
.y5b{bottom:155.515350px;}
.y127{bottom:155.635350px;}
.y89{bottom:155.770350px;}
.yb1{bottom:158.563950px;}
.y27{bottom:159.384600px;}
.y151{bottom:161.121900px;}
.ybd{bottom:171.052500px;}
.yd5{bottom:171.477750px;}
.y126{bottom:173.230350px;}
.y88{bottom:173.770350px;}
.yb0{bottom:175.063950px;}
.y150{bottom:176.121900px;}
.y26{bottom:177.384600px;}
.ybc{bottom:187.300500px;}
.yd4{bottom:187.725750px;}
.y14f{bottom:191.121900px;}
.yaf{bottom:191.323950px;}
.y5a{bottom:191.770350px;}
.y19e{bottom:191.772600px;}
.y25{bottom:195.384600px;}
.y14e{bottom:206.121900px;}
.yae{bottom:207.823950px;}
.y125{bottom:209.635350px;}
.y59{bottom:209.770350px;}
.y19d{bottom:209.772600px;}
.y24{bottom:213.384600px;}
.ybb{bottom:219.691650px;}
.yd3{bottom:220.120350px;}
.y14d{bottom:221.121900px;}
.yad{bottom:224.083950px;}
.y124{bottom:227.635350px;}
.y58{bottom:227.770350px;}
.y19c{bottom:227.772600px;}
.y18e{bottom:230.263500px;}
.y23{bottom:231.384600px;}
.y14c{bottom:236.121900px;}
.yac{bottom:240.583950px;}
.y18d{bottom:245.263500px;}
.y123{bottom:245.635350px;}
.y57{bottom:245.770350px;}
.y19b{bottom:245.772600px;}
.y22{bottom:249.384600px;}
.y14b{bottom:251.121900px;}
.y18c{bottom:260.263500px;}
.y122{bottom:263.635350px;}
.y56{bottom:263.770350px;}
.y19a{bottom:263.772600px;}
.yba{bottom:265.019400px;}
.y14a{bottom:266.121900px;}
.ydb{bottom:266.142750px;}
.y21{bottom:267.384600px;}
.yab{bottom:269.587950px;}
.y18b{bottom:275.263500px;}
.yb9{bottom:280.763400px;}
.y149{bottom:281.121900px;}
.y121{bottom:281.635350px;}
.y55{bottom:281.770350px;}
.yda{bottom:281.886750px;}
.y20{bottom:285.384600px;}
.yaa{bottom:286.087950px;}
.y18a{bottom:290.263500px;}
.y148{bottom:296.121900px;}
.y120{bottom:299.230350px;}
.y54{bottom:299.770350px;}
.y199{bottom:299.772600px;}
.y1f{bottom:303.384600px;}
.y189{bottom:305.263500px;}
.y147{bottom:311.121900px;}
.y53{bottom:317.770350px;}
.y198{bottom:317.772600px;}
.y87{bottom:317.785350px;}
.ya9{bottom:318.475350px;}
.y188{bottom:320.263500px;}
.y1e{bottom:321.384600px;}
.y146{bottom:326.121900px;}
.y187{bottom:335.263500px;}
.y11f{bottom:335.635350px;}
.y52{bottom:335.770350px;}
.y197{bottom:335.772600px;}
.y86{bottom:335.785350px;}
.y1d{bottom:339.384600px;}
.y145{bottom:341.121900px;}
.y186{bottom:350.263500px;}
.y11e{bottom:353.635350px;}
.y51{bottom:353.770350px;}
.y196{bottom:353.772600px;}
.y85{bottom:353.785350px;}
.y144{bottom:356.121900px;}
.y1c{bottom:357.384600px;}
.y185{bottom:365.263500px;}
.y143{bottom:371.121900px;}
.y11d{bottom:371.635350px;}
.y50{bottom:371.770350px;}
.y195{bottom:371.772600px;}
.y84{bottom:371.785350px;}
.ya0{bottom:371.920350px;}
.y29{bottom:375.384600px;}
.y184{bottom:380.263500px;}
.y142{bottom:386.121900px;}
.y11c{bottom:389.635350px;}
.y4f{bottom:389.770350px;}
.y83{bottom:389.785350px;}
.y9f{bottom:389.920350px;}
.y1b{bottom:392.981850px;}
.y28{bottom:393.384600px;}
.y183{bottom:395.263500px;}
.y141{bottom:401.121900px;}
.y11b{bottom:407.635350px;}
.y4e{bottom:407.770350px;}
.y194{bottom:407.772600px;}
.y82{bottom:407.785350px;}
.y9e{bottom:407.920350px;}
.y182{bottom:410.263500px;}
.y140{bottom:416.121900px;}
.y181{bottom:425.263500px;}
.y11a{bottom:425.635350px;}
.y4d{bottom:425.770350px;}
.y193{bottom:425.772600px;}
.y81{bottom:425.785350px;}
.y9d{bottom:425.920350px;}
.y13f{bottom:431.121900px;}
.y180{bottom:440.263500px;}
.y119{bottom:443.635350px;}
.y4c{bottom:443.770350px;}
.y192{bottom:443.772600px;}
.y80{bottom:443.785350px;}
.y9c{bottom:443.920350px;}
.y13e{bottom:446.121900px;}
.y17f{bottom:455.263500px;}
.y13d{bottom:461.121900px;}
.y118{bottom:461.230350px;}
.y4b{bottom:461.770350px;}
.y191{bottom:461.772600px;}
.y7f{bottom:461.785350px;}
.y9b{bottom:461.920350px;}
.y1a{bottom:469.849200px;}
.y17e{bottom:470.263500px;}
.y13c{bottom:476.121900px;}
.ya8{bottom:479.770350px;}
.y190{bottom:479.772600px;}
.y7e{bottom:479.785350px;}
.y9a{bottom:479.920350px;}
.y17d{bottom:485.263500px;}
.y13b{bottom:491.121900px;}
.y19{bottom:497.209200px;}
.y4a{bottom:497.365350px;}
.y117{bottom:497.635350px;}
.ya7{bottom:497.770350px;}
.y109{bottom:497.772600px;}
.y7d{bottom:497.785350px;}
.y99{bottom:497.920350px;}
.y17c{bottom:500.263500px;}
.y13a{bottom:506.121900px;}
.y18{bottom:515.209200px;}
.y17b{bottom:515.263500px;}
.y116{bottom:515.635350px;}
.ya6{bottom:515.770350px;}
.y108{bottom:515.772600px;}
.y7c{bottom:515.785350px;}
.y98{bottom:515.920350px;}
.y139{bottom:521.121900px;}
.y17a{bottom:530.263500px;}
.y17{bottom:533.209200px;}
.y49{bottom:533.230350px;}
.y115{bottom:533.635350px;}
.ya5{bottom:533.770350px;}
.y107{bottom:533.772600px;}
.y7b{bottom:533.785350px;}
.y97{bottom:533.920350px;}
.y138{bottom:536.121900px;}
.y179{bottom:545.263500px;}
.y137{bottom:551.121900px;}
.y16{bottom:551.209200px;}
.y114{bottom:551.635350px;}
.ya4{bottom:551.770350px;}
.y106{bottom:551.772600px;}
.y7a{bottom:551.785350px;}
.y96{bottom:551.920350px;}
.y178{bottom:560.263500px;}
.y136{bottom:566.121900px;}
.y15{bottom:569.209200px;}
.y113{bottom:569.635350px;}
.ya3{bottom:569.770350px;}
.y105{bottom:569.772600px;}
.y79{bottom:569.785350px;}
.y95{bottom:569.920350px;}
.y177{bottom:575.263500px;}
.y135{bottom:581.121900px;}
.y14{bottom:587.209200px;}
.y112{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y104{bottom:587.772600px;}
.y78{bottom:587.785350px;}
.y94{bottom:587.920350px;}
.y176{bottom:590.263500px;}
.y134{bottom:596.121900px;}
.y13{bottom:605.209200px;}
.y175{bottom:605.263500px;}
.ya2{bottom:605.365350px;}
.y111{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y103{bottom:605.772600px;}
.y77{bottom:605.785350px;}
.y133{bottom:611.121900px;}
.y174{bottom:620.263500px;}
.y12{bottom:623.209200px;}
.y93{bottom:623.515350px;}
.y110{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y102{bottom:623.772600px;}
.y76{bottom:623.785350px;}
.y132{bottom:626.121900px;}
.y173{bottom:635.263500px;}
.y131{bottom:641.121900px;}
.y11{bottom:641.209200px;}
.ya1{bottom:641.230350px;}
.y45{bottom:641.770350px;}
.y101{bottom:641.772600px;}
.y75{bottom:641.785350px;}
.y172{bottom:650.263500px;}
.y130{bottom:656.121900px;}
.y10f{bottom:659.230350px;}
.y44{bottom:659.770350px;}
.y100{bottom:659.772600px;}
.y74{bottom:659.785350px;}
.y171{bottom:665.263500px;}
.y12f{bottom:671.121900px;}
.ye6{bottom:672.915750px;}
.y43{bottom:677.770350px;}
.yff{bottom:677.772600px;}
.y73{bottom:677.785350px;}
.y170{bottom:680.263500px;}
.y12e{bottom:686.121900px;}
.y10{bottom:686.367300px;}
.ye5{bottom:688.659750px;}
.y16f{bottom:695.263500px;}
.y42{bottom:695.770350px;}
.yfe{bottom:695.772600px;}
.y72{bottom:695.785350px;}
.yf{bottom:698.818050px;}
.y12d{bottom:701.121900px;}
.y16e{bottom:710.263500px;}
.ye{bottom:710.518050px;}
.y41{bottom:713.770350px;}
.yfd{bottom:713.772600px;}
.y71{bottom:713.785350px;}
.y12c{bottom:716.121900px;}
.y16d{bottom:725.263500px;}
.y40{bottom:731.770350px;}
.yfc{bottom:731.772600px;}
.y70{bottom:731.785350px;}
.y16c{bottom:740.263500px;}
.yd{bottom:742.233600px;}
.y12b{bottom:749.230350px;}
.y3f{bottom:749.770350px;}
.yfb{bottom:749.772600px;}
.y6f{bottom:749.785350px;}
.y16b{bottom:755.263500px;}
.yc{bottom:761.158800px;}
.y3e{bottom:767.770350px;}
.yfa{bottom:767.772600px;}
.y6e{bottom:767.785350px;}
.ye2{bottom:767.920350px;}
.yb{bottom:769.233600px;}
.y16a{bottom:770.263500px;}
.ya{bottom:782.733600px;}
.y169{bottom:785.263500px;}
.y3d{bottom:785.770350px;}
.yf9{bottom:785.772600px;}
.y6d{bottom:785.785350px;}
.ye1{bottom:785.920350px;}
.y168{bottom:800.263500px;}
.y9{bottom:801.658950px;}
.y3c{bottom:803.770350px;}
.yf8{bottom:803.772600px;}
.y6c{bottom:803.785350px;}
.ye0{bottom:803.920350px;}
.y167{bottom:815.263500px;}
.y3b{bottom:821.770350px;}
.yf7{bottom:821.772600px;}
.y6b{bottom:821.785350px;}
.y166{bottom:830.263500px;}
.y8{bottom:830.380950px;}
.yc8{bottom:839.365350px;}
.ydf{bottom:839.515350px;}
.y3a{bottom:839.770350px;}
.yf6{bottom:839.772600px;}
.y6a{bottom:839.785350px;}
.y165{bottom:845.263500px;}
.yd2{bottom:846.970350px;}
.y7{bottom:851.380950px;}
.yc7{bottom:857.365350px;}
.y39{bottom:857.770350px;}
.yf5{bottom:857.772600px;}
.y69{bottom:857.785350px;}
.y164{bottom:860.263500px;}
.yd1{bottom:864.970350px;}
.y163{bottom:875.263500px;}
.yc6{bottom:875.365350px;}
.y38{bottom:875.770350px;}
.yf4{bottom:875.772600px;}
.y68{bottom:875.785350px;}
.yd0{bottom:882.970350px;}
.y162{bottom:890.263500px;}
.yc5{bottom:893.365350px;}
.y37{bottom:893.770350px;}
.yf3{bottom:893.772600px;}
.y67{bottom:893.785350px;}
.y6{bottom:897.543600px;}
.ycf{bottom:900.970350px;}
.y161{bottom:905.263500px;}
.yc4{bottom:911.365350px;}
.y36{bottom:911.770350px;}
.yf2{bottom:911.772600px;}
.y66{bottom:911.785350px;}
.yce{bottom:918.970350px;}
.y160{bottom:920.263500px;}
.y35{bottom:929.770350px;}
.yf1{bottom:929.772600px;}
.y65{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y15f{bottom:935.263500px;}
.ycd{bottom:936.970350px;}
.yc3{bottom:947.230350px;}
.y34{bottom:947.770350px;}
.yf0{bottom:947.772600px;}
.y64{bottom:947.785350px;}
.y15e{bottom:950.263500px;}
.ycc{bottom:954.970350px;}
.y15d{bottom:965.263500px;}
.y33{bottom:965.770350px;}
.yef{bottom:965.772600px;}
.y63{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y15c{bottom:980.263500px;}
.y32{bottom:983.770350px;}
.yee{bottom:983.772600px;}
.y62{bottom:983.785350px;}
.ycb{bottom:989.811000px;}
.y15b{bottom:995.263500px;}
.y31{bottom:1001.770350px;}
.yed{bottom:1001.772600px;}
.y61{bottom:1001.785350px;}
.yca{bottom:1005.417000px;}
.y3{bottom:1006.926000px;}
.y15a{bottom:1010.263500px;}
.y30{bottom:1019.770350px;}
.y10b{bottom:1019.772600px;}
.y60{bottom:1019.785350px;}
.y159{bottom:1025.263500px;}
.yc9{bottom:1037.365350px;}
.yec{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.y10a{bottom:1037.772600px;}
.y5f{bottom:1037.785350px;}
.y158{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.yb8{bottom:1132.375950px;}
.y157{bottom:1132.413900px;}
.y8e{bottom:1132.418700px;}
.y10e{bottom:1132.421700px;}
.ydc{bottom:1132.422750px;}
.y18f{bottom:1132.423500px;}
.yc2{bottom:1132.432500px;}
.y92{bottom:1132.433850px;}
.yeb{bottom:1132.440900px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:18.856406px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.h7{height:32.805176px;}
.h14{height:33.328125px;}
.h11{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h13{height:37.520508px;}
.h10{height:41.660156px;}
.h15{height:41.680453px;}
.hd{height:41.689453px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.hb{height:43.777434px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h12{height:99.303563px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x14{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x1c{left:99.930000px;}
.x4{left:106.299150px;}
.x1f{left:108.830400px;}
.xb{left:110.570400px;}
.x21{left:113.390400px;}
.x1e{left:115.490400px;}
.x2d{left:123.307050px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.x20{left:138.005400px;}
.xc{left:144.770400px;}
.x2a{left:190.145400px;}
.x18{left:193.453350px;}
.x29{left:198.877650px;}
.x1d{left:202.910400px;}
.x5{left:212.876400px;}
.x1b{left:224.034000px;}
.x17{left:342.277350px;}
.x9{left:455.041500px;}
.xd{left:457.145400px;}
.x11{left:478.345350px;}
.x7{left:480.456000px;}
.x2c{left:482.586600px;}
.x24{left:486.211200px;}
.xe{left:491.165400px;}
.x26{left:499.405350px;}
.x2e{left:503.863050px;}
.x1a{left:512.305350px;}
.x22{left:526.610400px;}
.x15{left:573.853350px;}
.x2b{left:574.865400px;}
.x25{left:587.866200px;}
.x13{left:591.658050px;}
.x23{left:593.165400px;}
.x10{left:663.492300px;}
.x19{left:669.673350px;}
.x2{left:693.365400px;}
.x16{left:707.017350px;}
.x27{left:721.717650px;}
.xf{left:728.391600px;}
.x28{left:743.863350px;}
.x12{left:749.647350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.450667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.v4{vertical-align:29.312000pt;}
.v5{vertical-align:58.624000pt;}
.ls1e{letter-spacing:-4.746667pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls43{letter-spacing:-0.586667pt;}
.ls6e{letter-spacing:-0.533333pt;}
.ls19{letter-spacing:-0.450133pt;}
.ls62{letter-spacing:-0.426667pt;}
.ls60{letter-spacing:-0.373333pt;}
.ls1a{letter-spacing:-0.280000pt;}
.ls1d{letter-spacing:-0.266667pt;}
.ls44{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.200000pt;}
.ls49{letter-spacing:-0.170667pt;}
.ls1b{letter-spacing:-0.163240pt;}
.ls6d{letter-spacing:-0.160000pt;}
.ls97{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls96{letter-spacing:-0.085333pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls80{letter-spacing:-0.042667pt;}
.ls17{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003147pt;}
.ls74{letter-spacing:0.042667pt;}
.ls42{letter-spacing:0.053333pt;}
.ls63{letter-spacing:0.085333pt;}
.ls5{letter-spacing:0.106667pt;}
.ls6b{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls8d{letter-spacing:0.170667pt;}
.ls50{letter-spacing:0.178667pt;}
.ls36{letter-spacing:0.213333pt;}
.ls8a{letter-spacing:0.256000pt;}
.ls3e{letter-spacing:0.266667pt;}
.ls77{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.320000pt;}
.ls91{letter-spacing:0.341333pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls89{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls8b{letter-spacing:0.469333pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls6f{letter-spacing:0.512000pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls79{letter-spacing:0.554667pt;}
.ls31{letter-spacing:0.586667pt;}
.ls7a{letter-spacing:0.597333pt;}
.ls13{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.693333pt;}
.ls94{letter-spacing:0.725333pt;}
.lsb{letter-spacing:0.746667pt;}
.ls7b{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls82{letter-spacing:0.810667pt;}
.ls46{letter-spacing:0.853333pt;}
.ls7c{letter-spacing:0.896000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls34{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.013333pt;}
.ls61{letter-spacing:1.024000pt;}
.ls25{letter-spacing:1.066667pt;}
.ls8c{letter-spacing:1.109333pt;}
.ls8{letter-spacing:1.120000pt;}
.ls85{letter-spacing:1.152000pt;}
.ls9{letter-spacing:1.173333pt;}
.ls87{letter-spacing:1.194667pt;}
.ls35{letter-spacing:1.226667pt;}
.ls84{letter-spacing:1.237333pt;}
.ls4a{letter-spacing:1.280000pt;}
.ls92{letter-spacing:1.322667pt;}
.ls3a{letter-spacing:1.333333pt;}
.ls73{letter-spacing:1.365333pt;}
.lsf{letter-spacing:1.386667pt;}
.ls4d{letter-spacing:1.440000pt;}
.ls7e{letter-spacing:1.450667pt;}
.ls41{letter-spacing:1.493333pt;}
.ls8f{letter-spacing:1.536000pt;}
.ls2f{letter-spacing:1.546667pt;}
.ls38{letter-spacing:1.600000pt;}
.ls86{letter-spacing:1.621333pt;}
.ls29{letter-spacing:1.653333pt;}
.ls88{letter-spacing:1.664000pt;}
.ls4b{letter-spacing:1.706667pt;}
.ls15{letter-spacing:1.760000pt;}
.ls75{letter-spacing:1.792000pt;}
.ls27{letter-spacing:1.813333pt;}
.ls7f{letter-spacing:1.834667pt;}
.ls70{letter-spacing:1.866667pt;}
.ls95{letter-spacing:1.877333pt;}
.lsd{letter-spacing:1.920000pt;}
.ls83{letter-spacing:1.962667pt;}
.ls33{letter-spacing:1.973333pt;}
.ls69{letter-spacing:2.026667pt;}
.ls7d{letter-spacing:2.048000pt;}
.ls23{letter-spacing:2.080000pt;}
.ls90{letter-spacing:2.090667pt;}
.ls11{letter-spacing:2.133333pt;}
.ls93{letter-spacing:2.176000pt;}
.ls24{letter-spacing:2.186667pt;}
.ls76{letter-spacing:2.218667pt;}
.ls5d{letter-spacing:2.240000pt;}
.ls40{letter-spacing:2.293333pt;}
.ls78{letter-spacing:2.304000pt;}
.ls37{letter-spacing:2.346667pt;}
.ls3b{letter-spacing:2.400000pt;}
.ls32{letter-spacing:2.453333pt;}
.ls30{letter-spacing:2.506667pt;}
.ls22{letter-spacing:2.560000pt;}
.ls39{letter-spacing:2.613333pt;}
.ls10{letter-spacing:2.666667pt;}
.ls59{letter-spacing:2.720000pt;}
.ls72{letter-spacing:2.773333pt;}
.ls81{letter-spacing:2.816000pt;}
.lsc{letter-spacing:2.826667pt;}
.ls54{letter-spacing:2.880000pt;}
.ls2e{letter-spacing:2.933333pt;}
.ls2a{letter-spacing:2.986667pt;}
.ls4{letter-spacing:3.040000pt;}
.ls45{letter-spacing:3.093333pt;}
.ls5e{letter-spacing:3.253333pt;}
.ls5c{letter-spacing:3.306667pt;}
.ls4f{letter-spacing:3.360000pt;}
.ls8e{letter-spacing:3.370667pt;}
.ls51{letter-spacing:3.413333pt;}
.ls67{letter-spacing:3.520000pt;}
.ls5f{letter-spacing:3.541333pt;}
.ls71{letter-spacing:3.573333pt;}
.ls14{letter-spacing:3.626667pt;}
.ls6c{letter-spacing:3.669333pt;}
.ls98{letter-spacing:3.733333pt;}
.ls55{letter-spacing:3.840000pt;}
.ls28{letter-spacing:3.893333pt;}
.ls3c{letter-spacing:3.946667pt;}
.ls53{letter-spacing:4.000000pt;}
.ls4e{letter-spacing:4.106667pt;}
.ls52{letter-spacing:4.160000pt;}
.ls5a{letter-spacing:4.213333pt;}
.ls5b{letter-spacing:4.480000pt;}
.ls2b{letter-spacing:4.533333pt;}
.ls47{letter-spacing:4.693333pt;}
.ls48{letter-spacing:4.853333pt;}
.ls65{letter-spacing:4.960000pt;}
.ls6a{letter-spacing:5.280000pt;}
.ls99{letter-spacing:5.546667pt;}
.ls66{letter-spacing:5.866667pt;}
.ls64{letter-spacing:5.973333pt;}
.ls4c{letter-spacing:6.080000pt;}
.ls16{letter-spacing:6.133333pt;}
.ls57{letter-spacing:6.186667pt;}
.ls12{letter-spacing:6.506667pt;}
.ls68{letter-spacing:6.826667pt;}
.ls58{letter-spacing:10.560000pt;}
.ls0{letter-spacing:52.479467pt;}
.ls1{letter-spacing:52.591712pt;}
.ls2{letter-spacing:52.592245pt;}
.ls56{letter-spacing:190.336000pt;}
.ws0{word-spacing:-31.284267pt;}
.ws51{word-spacing:-17.493333pt;}
.ws99{word-spacing:-16.746667pt;}
.ws5d{word-spacing:-15.946667pt;}
.ws63{word-spacing:-15.733333pt;}
.ws85{word-spacing:-15.520000pt;}
.ws52{word-spacing:-15.466667pt;}
.ws53{word-spacing:-15.413333pt;}
.ws4f{word-spacing:-14.986667pt;}
.ws83{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws3a{word-spacing:-14.613333pt;}
.ws50{word-spacing:-14.506667pt;}
.ws4{word-spacing:-14.453333pt;}
.ws37{word-spacing:-14.400000pt;}
.ws77{word-spacing:-14.293333pt;}
.ws3{word-spacing:-14.240000pt;}
.ws1e{word-spacing:-14.026667pt;}
.ws7{word-spacing:-13.973333pt;}
.ws82{word-spacing:-13.920000pt;}
.ws9a{word-spacing:-13.813333pt;}
.ws62{word-spacing:-13.760000pt;}
.ws86{word-spacing:-13.706667pt;}
.ws39{word-spacing:-13.600000pt;}
.ws33{word-spacing:-13.546667pt;}
.ws5{word-spacing:-13.493333pt;}
.ws9e{word-spacing:-13.482667pt;}
.ws38{word-spacing:-13.386667pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws84{word-spacing:-13.226667pt;}
.ws6{word-spacing:-13.066667pt;}
.ws9c{word-spacing:-12.800000pt;}
.wsb4{word-spacing:-12.458667pt;}
.wsad{word-spacing:-12.330667pt;}
.wsb2{word-spacing:-12.288000pt;}
.wsac{word-spacing:-12.117333pt;}
.ws5c{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.861333pt;}
.wsae{word-spacing:-11.690667pt;}
.ws9d{word-spacing:-11.434667pt;}
.wsb0{word-spacing:-11.221333pt;}
.wsaf{word-spacing:-11.136000pt;}
.ws8{word-spacing:-11.120000pt;}
.wsb1{word-spacing:-11.050667pt;}
.wsb3{word-spacing:-10.837333pt;}
.wsab{word-spacing:-10.752000pt;}
.ws7c{word-spacing:-10.666667pt;}
.ws9b{word-spacing:-10.624000pt;}
.ws1{word-spacing:-8.912904pt;}
.ws59{word-spacing:-3.840000pt;}
.ws1b{word-spacing:-3.626667pt;}
.ws90{word-spacing:-3.520000pt;}
.ws68{word-spacing:-3.413333pt;}
.ws8a{word-spacing:-2.933333pt;}
.wsa8{word-spacing:-2.816000pt;}
.wsb5{word-spacing:-2.773333pt;}
.ws78{word-spacing:-2.720000pt;}
.ws16{word-spacing:-2.666667pt;}
.ws5f{word-spacing:-2.613333pt;}
.wsb{word-spacing:-2.565333pt;}
.ws2b{word-spacing:-2.560000pt;}
.ws91{word-spacing:-2.453333pt;}
.ws4d{word-spacing:-2.400000pt;}
.wsa5{word-spacing:-2.218667pt;}
.ws95{word-spacing:-2.186667pt;}
.wsc6{word-spacing:-2.176000pt;}
.ws17{word-spacing:-2.133333pt;}
.ws23{word-spacing:-1.973333pt;}
.ws66{word-spacing:-1.920000pt;}
.wsc7{word-spacing:-1.877333pt;}
.ws9f{word-spacing:-1.866667pt;}
.ws71{word-spacing:-1.813333pt;}
.ws1c{word-spacing:-1.760000pt;}
.ws8b{word-spacing:-1.600000pt;}
.ws8d{word-spacing:-1.493333pt;}
.ws15{word-spacing:-1.386667pt;}
.wsba{word-spacing:-1.194667pt;}
.ws13{word-spacing:-1.173333pt;}
.ws67{word-spacing:-1.066667pt;}
.wsc5{word-spacing:-1.024000pt;}
.ws74{word-spacing:-1.013333pt;}
.ws29{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.906667pt;}
.ws55{word-spacing:-0.853333pt;}
.wsb9{word-spacing:-0.810667pt;}
.wsaa{word-spacing:-0.768000pt;}
.ws69{word-spacing:-0.746667pt;}
.ws31{word-spacing:-0.693333pt;}
.ws47{word-spacing:-0.640000pt;}
.wsc8{word-spacing:-0.597333pt;}
.ws79{word-spacing:-0.586667pt;}
.wsa7{word-spacing:-0.554667pt;}
.ws93{word-spacing:-0.533333pt;}
.ws1f{word-spacing:-0.480000pt;}
.wsbe{word-spacing:-0.469333pt;}
.ws64{word-spacing:-0.426667pt;}
.wsc0{word-spacing:-0.384000pt;}
.ws92{word-spacing:-0.373333pt;}
.ws56{word-spacing:-0.320000pt;}
.ws2a{word-spacing:-0.266667pt;}
.wsbc{word-spacing:-0.256000pt;}
.ws2d{word-spacing:-0.213333pt;}
.wsc2{word-spacing:-0.170667pt;}
.ws5a{word-spacing:-0.160000pt;}
.ws27{word-spacing:-0.106667pt;}
.ws87{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.042667pt;}
.wse{word-spacing:0.053333pt;}
.wsbb{word-spacing:0.085333pt;}
.ws1a{word-spacing:0.106667pt;}
.ws30{word-spacing:0.160000pt;}
.ws61{word-spacing:0.170667pt;}
.wsd{word-spacing:0.200000pt;}
.ws2e{word-spacing:0.213333pt;}
.ws65{word-spacing:0.266667pt;}
.ws96{word-spacing:0.320000pt;}
.ws46{word-spacing:0.373333pt;}
.ws24{word-spacing:0.426667pt;}
.wsc{word-spacing:0.450133pt;}
.ws2f{word-spacing:0.480000pt;}
.ws94{word-spacing:0.533333pt;}
.ws5b{word-spacing:0.554667pt;}
.ws25{word-spacing:0.586667pt;}
.ws4e{word-spacing:0.640000pt;}
.ws36{word-spacing:0.853333pt;}
.wsc1{word-spacing:0.896000pt;}
.ws4a{word-spacing:0.960000pt;}
.wsa2{word-spacing:1.013333pt;}
.ws7f{word-spacing:1.024000pt;}
.wsbd{word-spacing:1.152000pt;}
.wsa0{word-spacing:1.173333pt;}
.ws7e{word-spacing:1.226667pt;}
.wsc4{word-spacing:1.237333pt;}
.ws6a{word-spacing:1.280000pt;}
.ws73{word-spacing:1.333333pt;}
.wsa9{word-spacing:1.365333pt;}
.ws35{word-spacing:1.386667pt;}
.ws76{word-spacing:1.408000pt;}
.ws6b{word-spacing:1.440000pt;}
.ws57{word-spacing:1.493333pt;}
.ws58{word-spacing:1.546667pt;}
.wsb6{word-spacing:1.578667pt;}
.ws19{word-spacing:1.600000pt;}
.ws42{word-spacing:1.706667pt;}
.ws70{word-spacing:1.813333pt;}
.ws43{word-spacing:1.920000pt;}
.ws2c{word-spacing:2.026667pt;}
.ws32{word-spacing:2.080000pt;}
.ws6e{word-spacing:2.133333pt;}
.ws98{word-spacing:2.186667pt;}
.ws28{word-spacing:2.240000pt;}
.ws97{word-spacing:2.293333pt;}
.wsa4{word-spacing:2.346667pt;}
.ws75{word-spacing:2.400000pt;}
.wsb7{word-spacing:2.517333pt;}
.ws14{word-spacing:2.560000pt;}
.ws49{word-spacing:2.666667pt;}
.ws6f{word-spacing:2.720000pt;}
.ws80{word-spacing:2.773333pt;}
.ws60{word-spacing:2.826667pt;}
.wsb8{word-spacing:2.858667pt;}
.ws89{word-spacing:2.880000pt;}
.wsc3{word-spacing:2.901333pt;}
.ws88{word-spacing:2.986667pt;}
.wsbf{word-spacing:3.029333pt;}
.ws22{word-spacing:3.040000pt;}
.ws45{word-spacing:3.093333pt;}
.ws6c{word-spacing:3.253333pt;}
.ws34{word-spacing:3.360000pt;}
.wsf{word-spacing:3.413333pt;}
.ws6d{word-spacing:3.466667pt;}
.ws81{word-spacing:3.498667pt;}
.ws4b{word-spacing:3.520000pt;}
.ws7b{word-spacing:3.541333pt;}
.ws7a{word-spacing:3.573333pt;}
.ws72{word-spacing:3.626667pt;}
.ws48{word-spacing:3.786667pt;}
.ws4c{word-spacing:3.840000pt;}
.ws20{word-spacing:3.893333pt;}
.ws5e{word-spacing:3.946667pt;}
.ws7d{word-spacing:4.053333pt;}
.ws44{word-spacing:4.106667pt;}
.ws21{word-spacing:4.160000pt;}
.ws8f{word-spacing:4.213333pt;}
.ws26{word-spacing:4.320000pt;}
.ws11{word-spacing:4.373333pt;}
.ws10{word-spacing:4.426667pt;}
.ws18{word-spacing:4.746667pt;}
.wsa3{word-spacing:4.853333pt;}
.wsa1{word-spacing:4.906667pt;}
.ws8c{word-spacing:5.866667pt;}
.wsc9{word-spacing:5.920000pt;}
.ws8e{word-spacing:6.026667pt;}
.ws3d{word-spacing:164.522667pt;}
.ws54{word-spacing:195.712000pt;}
.ws3e{word-spacing:246.869333pt;}
.ws41{word-spacing:284.714667pt;}
.ws40{word-spacing:319.018667pt;}
.ws3b{word-spacing:324.053333pt;}
.ws3c{word-spacing:325.717333pt;}
.ws3f{word-spacing:425.898667pt;}
._c{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._2{margin-left:-8.552533pt;}
._18{margin-left:-6.986667pt;}
._b{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._14{margin-left:-3.882667pt;}
._4{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.900267pt;}
._6{width:0.960000pt;}
._30{width:1.856000pt;}
._a{width:2.752000pt;}
._8{width:4.186667pt;}
._5{width:5.173333pt;}
._9{width:6.160000pt;}
._7{width:7.093333pt;}
._19{width:8.373333pt;}
._11{width:96.016000pt;}
._13{width:102.613333pt;}
._f{width:205.738667pt;}
._20{width:207.018667pt;}
._27{width:227.733333pt;}
._2c{width:243.583467pt;}
._21{width:249.386667pt;}
._2d{width:254.362133pt;}
._1d{width:281.045333pt;}
._1e{width:295.040000pt;}
._22{width:320.389333pt;}
._24{width:331.440000pt;}
._12{width:341.802667pt;}
._e{width:344.149333pt;}
._1b{width:345.514667pt;}
._2e{width:346.548267pt;}
._16{width:351.317333pt;}
._2b{width:357.077333pt;}
._26{width:360.661333pt;}
._17{width:373.888000pt;}
._15{width:401.109333pt;}
._2f{width:405.124267pt;}
._1a{width:439.680000pt;}
._25{width:508.714667pt;}
._23{width:510.000000pt;}
._10{width:580.138667pt;}
._2a{width:621.957333pt;}
._1f{width:648.926933pt;}
._28{width:660.186667pt;}
._29{width:669.312000pt;}
._1c{width:897.194667pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{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;}
.ye4{bottom:73.998000pt;}
.yea{bottom:74.166133pt;}
.y10d{bottom:74.186933pt;}
.y12a{bottom:74.342533pt;}
.y8d{bottom:74.462533pt;}
.y91{bottom:74.554533pt;}
.yde{bottom:74.564933pt;}
.y5e{bottom:74.595867pt;}
.y156{bottom:76.552800pt;}
.y2b{bottom:78.246000pt;}
.yb7{bottom:82.695067pt;}
.yb6{bottom:82.705733pt;}
.yc1{bottom:82.937333pt;}
.yd9{bottom:83.301333pt;}
.ye3{bottom:87.992667pt;}
.ye9{bottom:88.160800pt;}
.y10c{bottom:88.181600pt;}
.y90{bottom:88.549200pt;}
.ydd{bottom:88.559600pt;}
.y155{bottom:89.886133pt;}
.y129{bottom:90.342533pt;}
.y8c{bottom:90.462533pt;}
.y5d{bottom:90.595867pt;}
.y2a{bottom:91.576000pt;}
.yb5{bottom:97.372400pt;}
.yc0{bottom:97.380000pt;}
.yd8{bottom:97.747467pt;}
.ye8{bottom:102.155467pt;}
.y8f{bottom:102.543867pt;}
.y154{bottom:103.219467pt;}
.y128{bottom:105.982533pt;}
.y8b{bottom:106.462533pt;}
.y5c{bottom:106.595867pt;}
.yb4{bottom:111.815067pt;}
.ybf{bottom:111.822667pt;}
.yb3{bottom:111.825733pt;}
.yd7{bottom:112.200667pt;}
.ye7{bottom:116.150133pt;}
.y153{bottom:116.552800pt;}
.y8a{bottom:122.462533pt;}
.ybe{bottom:126.265333pt;}
.yb2{bottom:126.492400pt;}
.yd6{bottom:126.643333pt;}
.y152{bottom:129.886133pt;}
.y5b{bottom:138.235867pt;}
.y127{bottom:138.342533pt;}
.y89{bottom:138.462533pt;}
.yb1{bottom:140.945733pt;}
.y27{bottom:141.675200pt;}
.y151{bottom:143.219467pt;}
.ybd{bottom:152.046667pt;}
.yd5{bottom:152.424667pt;}
.y126{bottom:153.982533pt;}
.y88{bottom:154.462533pt;}
.yb0{bottom:155.612400pt;}
.y150{bottom:156.552800pt;}
.y26{bottom:157.675200pt;}
.ybc{bottom:166.489333pt;}
.yd4{bottom:166.867333pt;}
.y14f{bottom:169.886133pt;}
.yaf{bottom:170.065733pt;}
.y5a{bottom:170.462533pt;}
.y19e{bottom:170.464533pt;}
.y25{bottom:173.675200pt;}
.y14e{bottom:183.219467pt;}
.yae{bottom:184.732400pt;}
.y125{bottom:186.342533pt;}
.y59{bottom:186.462533pt;}
.y19d{bottom:186.464533pt;}
.y24{bottom:189.675200pt;}
.ybb{bottom:195.281467pt;}
.yd3{bottom:195.662533pt;}
.y14d{bottom:196.552800pt;}
.yad{bottom:199.185733pt;}
.y124{bottom:202.342533pt;}
.y58{bottom:202.462533pt;}
.y19c{bottom:202.464533pt;}
.y18e{bottom:204.678667pt;}
.y23{bottom:205.675200pt;}
.y14c{bottom:209.886133pt;}
.yac{bottom:213.852400pt;}
.y18d{bottom:218.012000pt;}
.y123{bottom:218.342533pt;}
.y57{bottom:218.462533pt;}
.y19b{bottom:218.464533pt;}
.y22{bottom:221.675200pt;}
.y14b{bottom:223.219467pt;}
.y18c{bottom:231.345333pt;}
.y122{bottom:234.342533pt;}
.y56{bottom:234.462533pt;}
.y19a{bottom:234.464533pt;}
.yba{bottom:235.572800pt;}
.y14a{bottom:236.552800pt;}
.ydb{bottom:236.571333pt;}
.y21{bottom:237.675200pt;}
.yab{bottom:239.633733pt;}
.y18b{bottom:244.678667pt;}
.yb9{bottom:249.567467pt;}
.y149{bottom:249.886133pt;}
.y121{bottom:250.342533pt;}
.y55{bottom:250.462533pt;}
.yda{bottom:250.566000pt;}
.y20{bottom:253.675200pt;}
.yaa{bottom:254.300400pt;}
.y18a{bottom:258.012000pt;}
.y148{bottom:263.219467pt;}
.y120{bottom:265.982533pt;}
.y54{bottom:266.462533pt;}
.y199{bottom:266.464533pt;}
.y1f{bottom:269.675200pt;}
.y189{bottom:271.345333pt;}
.y147{bottom:276.552800pt;}
.y53{bottom:282.462533pt;}
.y198{bottom:282.464533pt;}
.y87{bottom:282.475867pt;}
.ya9{bottom:283.089200pt;}
.y188{bottom:284.678667pt;}
.y1e{bottom:285.675200pt;}
.y146{bottom:289.886133pt;}
.y187{bottom:298.012000pt;}
.y11f{bottom:298.342533pt;}
.y52{bottom:298.462533pt;}
.y197{bottom:298.464533pt;}
.y86{bottom:298.475867pt;}
.y1d{bottom:301.675200pt;}
.y145{bottom:303.219467pt;}
.y186{bottom:311.345333pt;}
.y11e{bottom:314.342533pt;}
.y51{bottom:314.462533pt;}
.y196{bottom:314.464533pt;}
.y85{bottom:314.475867pt;}
.y144{bottom:316.552800pt;}
.y1c{bottom:317.675200pt;}
.y185{bottom:324.678667pt;}
.y143{bottom:329.886133pt;}
.y11d{bottom:330.342533pt;}
.y50{bottom:330.462533pt;}
.y195{bottom:330.464533pt;}
.y84{bottom:330.475867pt;}
.ya0{bottom:330.595867pt;}
.y29{bottom:333.675200pt;}
.y184{bottom:338.012000pt;}
.y142{bottom:343.219467pt;}
.y11c{bottom:346.342533pt;}
.y4f{bottom:346.462533pt;}
.y83{bottom:346.475867pt;}
.y9f{bottom:346.595867pt;}
.y1b{bottom:349.317200pt;}
.y28{bottom:349.675200pt;}
.y183{bottom:351.345333pt;}
.y141{bottom:356.552800pt;}
.y11b{bottom:362.342533pt;}
.y4e{bottom:362.462533pt;}
.y194{bottom:362.464533pt;}
.y82{bottom:362.475867pt;}
.y9e{bottom:362.595867pt;}
.y182{bottom:364.678667pt;}
.y140{bottom:369.886133pt;}
.y181{bottom:378.012000pt;}
.y11a{bottom:378.342533pt;}
.y4d{bottom:378.462533pt;}
.y193{bottom:378.464533pt;}
.y81{bottom:378.475867pt;}
.y9d{bottom:378.595867pt;}
.y13f{bottom:383.219467pt;}
.y180{bottom:391.345333pt;}
.y119{bottom:394.342533pt;}
.y4c{bottom:394.462533pt;}
.y192{bottom:394.464533pt;}
.y80{bottom:394.475867pt;}
.y9c{bottom:394.595867pt;}
.y13e{bottom:396.552800pt;}
.y17f{bottom:404.678667pt;}
.y13d{bottom:409.886133pt;}
.y118{bottom:409.982533pt;}
.y4b{bottom:410.462533pt;}
.y191{bottom:410.464533pt;}
.y7f{bottom:410.475867pt;}
.y9b{bottom:410.595867pt;}
.y1a{bottom:417.643733pt;}
.y17e{bottom:418.012000pt;}
.y13c{bottom:423.219467pt;}
.ya8{bottom:426.462533pt;}
.y190{bottom:426.464533pt;}
.y7e{bottom:426.475867pt;}
.y9a{bottom:426.595867pt;}
.y17d{bottom:431.345333pt;}
.y13b{bottom:436.552800pt;}
.y19{bottom:441.963733pt;}
.y4a{bottom:442.102533pt;}
.y117{bottom:442.342533pt;}
.ya7{bottom:442.462533pt;}
.y109{bottom:442.464533pt;}
.y7d{bottom:442.475867pt;}
.y99{bottom:442.595867pt;}
.y17c{bottom:444.678667pt;}
.y13a{bottom:449.886133pt;}
.y18{bottom:457.963733pt;}
.y17b{bottom:458.012000pt;}
.y116{bottom:458.342533pt;}
.ya6{bottom:458.462533pt;}
.y108{bottom:458.464533pt;}
.y7c{bottom:458.475867pt;}
.y98{bottom:458.595867pt;}
.y139{bottom:463.219467pt;}
.y17a{bottom:471.345333pt;}
.y17{bottom:473.963733pt;}
.y49{bottom:473.982533pt;}
.y115{bottom:474.342533pt;}
.ya5{bottom:474.462533pt;}
.y107{bottom:474.464533pt;}
.y7b{bottom:474.475867pt;}
.y97{bottom:474.595867pt;}
.y138{bottom:476.552800pt;}
.y179{bottom:484.678667pt;}
.y137{bottom:489.886133pt;}
.y16{bottom:489.963733pt;}
.y114{bottom:490.342533pt;}
.ya4{bottom:490.462533pt;}
.y106{bottom:490.464533pt;}
.y7a{bottom:490.475867pt;}
.y96{bottom:490.595867pt;}
.y178{bottom:498.012000pt;}
.y136{bottom:503.219467pt;}
.y15{bottom:505.963733pt;}
.y113{bottom:506.342533pt;}
.ya3{bottom:506.462533pt;}
.y105{bottom:506.464533pt;}
.y79{bottom:506.475867pt;}
.y95{bottom:506.595867pt;}
.y177{bottom:511.345333pt;}
.y135{bottom:516.552800pt;}
.y14{bottom:521.963733pt;}
.y112{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y104{bottom:522.464533pt;}
.y78{bottom:522.475867pt;}
.y94{bottom:522.595867pt;}
.y176{bottom:524.678667pt;}
.y134{bottom:529.886133pt;}
.y13{bottom:537.963733pt;}
.y175{bottom:538.012000pt;}
.ya2{bottom:538.102533pt;}
.y111{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y103{bottom:538.464533pt;}
.y77{bottom:538.475867pt;}
.y133{bottom:543.219467pt;}
.y174{bottom:551.345333pt;}
.y12{bottom:553.963733pt;}
.y93{bottom:554.235867pt;}
.y110{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y102{bottom:554.464533pt;}
.y76{bottom:554.475867pt;}
.y132{bottom:556.552800pt;}
.y173{bottom:564.678667pt;}
.y131{bottom:569.886133pt;}
.y11{bottom:569.963733pt;}
.ya1{bottom:569.982533pt;}
.y45{bottom:570.462533pt;}
.y101{bottom:570.464533pt;}
.y75{bottom:570.475867pt;}
.y172{bottom:578.012000pt;}
.y130{bottom:583.219467pt;}
.y10f{bottom:585.982533pt;}
.y44{bottom:586.462533pt;}
.y100{bottom:586.464533pt;}
.y74{bottom:586.475867pt;}
.y171{bottom:591.345333pt;}
.y12f{bottom:596.552800pt;}
.ye6{bottom:598.147333pt;}
.y43{bottom:602.462533pt;}
.yff{bottom:602.464533pt;}
.y73{bottom:602.475867pt;}
.y170{bottom:604.678667pt;}
.y12e{bottom:609.886133pt;}
.y10{bottom:610.104267pt;}
.ye5{bottom:612.142000pt;}
.y16f{bottom:618.012000pt;}
.y42{bottom:618.462533pt;}
.yfe{bottom:618.464533pt;}
.y72{bottom:618.475867pt;}
.yf{bottom:621.171600pt;}
.y12d{bottom:623.219467pt;}
.y16e{bottom:631.345333pt;}
.ye{bottom:631.571600pt;}
.y41{bottom:634.462533pt;}
.yfd{bottom:634.464533pt;}
.y71{bottom:634.475867pt;}
.y12c{bottom:636.552800pt;}
.y16d{bottom:644.678667pt;}
.y40{bottom:650.462533pt;}
.yfc{bottom:650.464533pt;}
.y70{bottom:650.475867pt;}
.y16c{bottom:658.012000pt;}
.yd{bottom:659.763200pt;}
.y12b{bottom:665.982533pt;}
.y3f{bottom:666.462533pt;}
.yfb{bottom:666.464533pt;}
.y6f{bottom:666.475867pt;}
.y16b{bottom:671.345333pt;}
.yc{bottom:676.585600pt;}
.y3e{bottom:682.462533pt;}
.yfa{bottom:682.464533pt;}
.y6e{bottom:682.475867pt;}
.ye2{bottom:682.595867pt;}
.yb{bottom:683.763200pt;}
.y16a{bottom:684.678667pt;}
.ya{bottom:695.763200pt;}
.y169{bottom:698.012000pt;}
.y3d{bottom:698.462533pt;}
.yf9{bottom:698.464533pt;}
.y6d{bottom:698.475867pt;}
.ye1{bottom:698.595867pt;}
.y168{bottom:711.345333pt;}
.y9{bottom:712.585733pt;}
.y3c{bottom:714.462533pt;}
.yf8{bottom:714.464533pt;}
.y6c{bottom:714.475867pt;}
.ye0{bottom:714.595867pt;}
.y167{bottom:724.678667pt;}
.y3b{bottom:730.462533pt;}
.yf7{bottom:730.464533pt;}
.y6b{bottom:730.475867pt;}
.y166{bottom:738.012000pt;}
.y8{bottom:738.116400pt;}
.yc8{bottom:746.102533pt;}
.ydf{bottom:746.235867pt;}
.y3a{bottom:746.462533pt;}
.yf6{bottom:746.464533pt;}
.y6a{bottom:746.475867pt;}
.y165{bottom:751.345333pt;}
.yd2{bottom:752.862533pt;}
.y7{bottom:756.783067pt;}
.yc7{bottom:762.102533pt;}
.y39{bottom:762.462533pt;}
.yf5{bottom:762.464533pt;}
.y69{bottom:762.475867pt;}
.y164{bottom:764.678667pt;}
.yd1{bottom:768.862533pt;}
.y163{bottom:778.012000pt;}
.yc6{bottom:778.102533pt;}
.y38{bottom:778.462533pt;}
.yf4{bottom:778.464533pt;}
.y68{bottom:778.475867pt;}
.yd0{bottom:784.862533pt;}
.y162{bottom:791.345333pt;}
.yc5{bottom:794.102533pt;}
.y37{bottom:794.462533pt;}
.yf3{bottom:794.464533pt;}
.y67{bottom:794.475867pt;}
.y6{bottom:797.816533pt;}
.ycf{bottom:800.862533pt;}
.y161{bottom:804.678667pt;}
.yc4{bottom:810.102533pt;}
.y36{bottom:810.462533pt;}
.yf2{bottom:810.464533pt;}
.y66{bottom:810.475867pt;}
.yce{bottom:816.862533pt;}
.y160{bottom:818.012000pt;}
.y35{bottom:826.462533pt;}
.yf1{bottom:826.464533pt;}
.y65{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y15f{bottom:831.345333pt;}
.ycd{bottom:832.862533pt;}
.yc3{bottom:841.982533pt;}
.y34{bottom:842.462533pt;}
.yf0{bottom:842.464533pt;}
.y64{bottom:842.475867pt;}
.y15e{bottom:844.678667pt;}
.ycc{bottom:848.862533pt;}
.y15d{bottom:858.012000pt;}
.y33{bottom:858.462533pt;}
.yef{bottom:858.464533pt;}
.y63{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y15c{bottom:871.345333pt;}
.y32{bottom:874.462533pt;}
.yee{bottom:874.464533pt;}
.y62{bottom:874.475867pt;}
.ycb{bottom:879.832000pt;}
.y15b{bottom:884.678667pt;}
.y31{bottom:890.462533pt;}
.yed{bottom:890.464533pt;}
.y61{bottom:890.475867pt;}
.yca{bottom:893.704000pt;}
.y3{bottom:895.045333pt;}
.y15a{bottom:898.012000pt;}
.y30{bottom:906.462533pt;}
.y10b{bottom:906.464533pt;}
.y60{bottom:906.475867pt;}
.y159{bottom:911.345333pt;}
.yc9{bottom:922.102533pt;}
.yec{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.y10a{bottom:922.464533pt;}
.y5f{bottom:922.475867pt;}
.y158{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.yb8{bottom:1006.556400pt;}
.y157{bottom:1006.590133pt;}
.y8e{bottom:1006.594400pt;}
.y10e{bottom:1006.597067pt;}
.ydc{bottom:1006.598000pt;}
.y18f{bottom:1006.598667pt;}
.yc2{bottom:1006.606667pt;}
.y92{bottom:1006.607867pt;}
.yeb{bottom:1006.614133pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:16.761250pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.h7{height:29.160156pt;}
.h14{height:29.625000pt;}
.h11{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h13{height:33.351562pt;}
.h10{height:37.031250pt;}
.h15{height:37.049292pt;}
.hd{height:37.057292pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.hb{height:38.913275pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h12{height:88.269833pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x14{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1c{left:88.826667pt;}
.x4{left:94.488133pt;}
.x1f{left:96.738133pt;}
.xb{left:98.284800pt;}
.x21{left:100.791467pt;}
.x1e{left:102.658133pt;}
.x2d{left:109.606267pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.x20{left:122.671467pt;}
.xc{left:128.684800pt;}
.x2a{left:169.018133pt;}
.x18{left:171.958533pt;}
.x29{left:176.780133pt;}
.x1d{left:180.364800pt;}
.x5{left:189.223467pt;}
.x1b{left:199.141333pt;}
.x17{left:304.246533pt;}
.x9{left:404.481333pt;}
.xd{left:406.351467pt;}
.x11{left:425.195867pt;}
.x7{left:427.072000pt;}
.x2c{left:428.965867pt;}
.x24{left:432.187733pt;}
.xe{left:436.591467pt;}
.x26{left:443.915867pt;}
.x2e{left:447.878267pt;}
.x1a{left:455.382533pt;}
.x22{left:468.098133pt;}
.x15{left:510.091867pt;}
.x2b{left:510.991467pt;}
.x25{left:522.547733pt;}
.x13{left:525.918267pt;}
.x23{left:527.258133pt;}
.x10{left:589.770933pt;}
.x19{left:595.265200pt;}
.x2{left:616.324800pt;}
.x16{left:628.459867pt;}
.x27{left:641.526800pt;}
.xf{left:647.459200pt;}
.x28{left:661.211867pt;}
.x12{left:666.353200pt;}
}




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