
    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_a6b291c985f9557e373c8bac.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_2ea16770314257a1c06aa6ab.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_4fcb64a312ad8ba487a6f2b9.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_e4bbadc08db2c01fd76c81ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.887695;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_5ef2268ee362943c23d57141.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_23f39ddb0fc9021fd83f43bc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c37dddb87a017ca9098319dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fa09ae7ffd3478f9f0b60293.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_869143cca0f8f6283a437d39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cee5d49d25830eb6b8244dcc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d3e978060627d39a4f354b4d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3e2000ec4152bd62e6aa0bce.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0fcb23e9a322d83977ef9d33.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c15d37836888533d5502f474.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a4c4eaf19759ca088d307db1.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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.700800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:28.941000px;}
.v1{vertical-align:30.381600px;}
.ls47{letter-spacing:-1.776000px;}
.ls46{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.780000px;}
.ls87{letter-spacing:-0.720000px;}
.ls76{letter-spacing:-0.624000px;}
.ls88{letter-spacing:-0.480000px;}
.ls3e{letter-spacing:-0.420000px;}
.ls3f{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.315000px;}
.ls50{letter-spacing:-0.300000px;}
.ls36{letter-spacing:-0.240000px;}
.ls35{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.120000px;}
.ls75{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.060000px;}
.ls85{letter-spacing:-0.048000px;}
.ls13{letter-spacing:-0.045000px;}
.ls11{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.003600px;}
.ls2{letter-spacing:0.004140px;}
.ls3{letter-spacing:0.005520px;}
.ls1{letter-spacing:0.005676px;}
.ls27{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.069600px;}
.ls52{letter-spacing:0.096000px;}
.ls33{letter-spacing:0.112200px;}
.ls1f{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.180000px;}
.ls62{letter-spacing:0.192000px;}
.ls2a{letter-spacing:0.240000px;}
.ls3d{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.300000px;}
.ls21{letter-spacing:0.360000px;}
.ls78{letter-spacing:0.384000px;}
.ls4c{letter-spacing:0.420000px;}
.ls60{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.480000px;}
.ls6e{letter-spacing:0.528000px;}
.ls1a{letter-spacing:0.540000px;}
.ls72{letter-spacing:0.576000px;}
.ls1e{letter-spacing:0.600000px;}
.ls65{letter-spacing:0.624000px;}
.ls1d{letter-spacing:0.660000px;}
.ls61{letter-spacing:0.672000px;}
.ls17{letter-spacing:0.720000px;}
.ls7c{letter-spacing:0.768000px;}
.lsc{letter-spacing:0.780000px;}
.ls5e{letter-spacing:0.816000px;}
.lsa{letter-spacing:0.840000px;}
.ls79{letter-spacing:0.864000px;}
.ls41{letter-spacing:0.900000px;}
.ls71{letter-spacing:0.912000px;}
.ls2d{letter-spacing:0.960000px;}
.ls77{letter-spacing:1.008000px;}
.ls6{letter-spacing:1.020000px;}
.ls64{letter-spacing:1.056000px;}
.ls2f{letter-spacing:1.080000px;}
.ls82{letter-spacing:1.104000px;}
.lsb{letter-spacing:1.140000px;}
.ls81{letter-spacing:1.152000px;}
.ls4f{letter-spacing:1.200000px;}
.ls69{letter-spacing:1.248000px;}
.ls2c{letter-spacing:1.260000px;}
.ls34{letter-spacing:1.320000px;}
.ls7f{letter-spacing:1.344000px;}
.ls40{letter-spacing:1.380000px;}
.ls7e{letter-spacing:1.392000px;}
.ls29{letter-spacing:1.440000px;}
.ls73{letter-spacing:1.488000px;}
.ls1c{letter-spacing:1.500000px;}
.ls32{letter-spacing:1.560000px;}
.ls74{letter-spacing:1.584000px;}
.ls5a{letter-spacing:1.620000px;}
.ls8{letter-spacing:1.680000px;}
.ls6f{letter-spacing:1.728000px;}
.lsf{letter-spacing:1.740000px;}
.ls1b{letter-spacing:1.800000px;}
.ls7a{letter-spacing:1.824000px;}
.ls3a{letter-spacing:1.860000px;}
.ls86{letter-spacing:1.872000px;}
.ls23{letter-spacing:1.920000px;}
.ls6d{letter-spacing:1.968000px;}
.ls22{letter-spacing:1.980000px;}
.ls3c{letter-spacing:2.040000px;}
.ls28{letter-spacing:2.100000px;}
.ls7d{letter-spacing:2.112000px;}
.ls25{letter-spacing:2.160000px;}
.ls6b{letter-spacing:2.208000px;}
.ls9{letter-spacing:2.220000px;}
.ls83{letter-spacing:2.256000px;}
.ls31{letter-spacing:2.280000px;}
.lsd{letter-spacing:2.340000px;}
.ls80{letter-spacing:2.352000px;}
.ls2e{letter-spacing:2.400000px;}
.ls63{letter-spacing:2.448000px;}
.ls18{letter-spacing:2.460000px;}
.ls30{letter-spacing:2.520000px;}
.ls5f{letter-spacing:2.592000px;}
.ls39{letter-spacing:2.640000px;}
.ls6a{letter-spacing:2.688000px;}
.ls48{letter-spacing:2.700000px;}
.ls66{letter-spacing:2.736000px;}
.ls7{letter-spacing:2.760000px;}
.ls16{letter-spacing:2.820000px;}
.ls84{letter-spacing:2.832000px;}
.ls49{letter-spacing:2.880000px;}
.ls6c{letter-spacing:2.928000px;}
.ls4e{letter-spacing:2.940000px;}
.ls5d{letter-spacing:3.000000px;}
.ls70{letter-spacing:3.024000px;}
.ls4b{letter-spacing:3.060000px;}
.lse{letter-spacing:3.120000px;}
.ls2b{letter-spacing:3.240000px;}
.ls3b{letter-spacing:3.360000px;}
.ls7b{letter-spacing:3.408000px;}
.ls55{letter-spacing:3.420000px;}
.ls68{letter-spacing:3.456000px;}
.ls4d{letter-spacing:3.480000px;}
.ls5{letter-spacing:3.540000px;}
.ls51{letter-spacing:3.720000px;}
.ls10{letter-spacing:3.780000px;}
.ls57{letter-spacing:4.140000px;}
.ls19{letter-spacing:4.200000px;}
.ls58{letter-spacing:4.320000px;}
.ls5c{letter-spacing:4.440000px;}
.ls67{letter-spacing:4.608000px;}
.ls59{letter-spacing:4.860000px;}
.ls38{letter-spacing:5.220000px;}
.ls56{letter-spacing:5.760000px;}
.ls5b{letter-spacing:5.820000px;}
.ls54{letter-spacing:6.000000px;}
.ls0{letter-spacing:59.537400px;}
.ls44{letter-spacing:134.064000px;}
.ls43{letter-spacing:146.064000px;}
.ls53{letter-spacing:172.664944px;}
.ls42{letter-spacing:205.584000px;}
.ls45{letter-spacing:274.800000px;}
.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;}
}
.ws5a{word-spacing:-172.664944px;}
.ws28{word-spacing:-158.064000px;}
.ws5f{word-spacing:-20.760000px;}
.ws6b{word-spacing:-18.600000px;}
.ws2{word-spacing:-16.680000px;}
.ws22{word-spacing:-16.560000px;}
.ws40{word-spacing:-16.320000px;}
.ws3e{word-spacing:-15.900000px;}
.ws3f{word-spacing:-15.840000px;}
.ws60{word-spacing:-15.720000px;}
.ws5e{word-spacing:-15.540000px;}
.ws3d{word-spacing:-15.300000px;}
.ws41{word-spacing:-15.000000px;}
.ws84{word-spacing:-14.352000px;}
.ws82{word-spacing:-13.824000px;}
.ws70{word-spacing:-13.728000px;}
.ws86{word-spacing:-13.440000px;}
.ws4{word-spacing:-13.344000px;}
.ws85{word-spacing:-13.200000px;}
.ws54{word-spacing:-13.177200px;}
.ws6d{word-spacing:-13.056000px;}
.ws81{word-spacing:-13.008000px;}
.ws83{word-spacing:-12.960000px;}
.ws6e{word-spacing:-12.816000px;}
.ws80{word-spacing:-12.624000px;}
.ws71{word-spacing:-12.576000px;}
.ws3{word-spacing:-12.510000px;}
.ws6f{word-spacing:-12.240000px;}
.ws6c{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.ws1{word-spacing:-7.293330px;}
.ws79{word-spacing:-4.608000px;}
.ws1f{word-spacing:-4.200000px;}
.ws72{word-spacing:-3.240000px;}
.ws4a{word-spacing:-3.120000px;}
.ws6{word-spacing:-2.886000px;}
.ws78{word-spacing:-2.736000px;}
.ws44{word-spacing:-2.700000px;}
.ws92{word-spacing:-2.352000px;}
.ws43{word-spacing:-2.280000px;}
.ws96{word-spacing:-2.256000px;}
.ws10{word-spacing:-2.220000px;}
.ws47{word-spacing:-2.040000px;}
.ws68{word-spacing:-1.980000px;}
.ws88{word-spacing:-1.968000px;}
.ws8d{word-spacing:-1.872000px;}
.ws1d{word-spacing:-1.860000px;}
.ws7a{word-spacing:-1.728000px;}
.ws94{word-spacing:-1.680000px;}
.ws38{word-spacing:-1.560000px;}
.ws58{word-spacing:-1.500000px;}
.ws7d{word-spacing:-1.488000px;}
.ws97{word-spacing:-1.440000px;}
.ws51{word-spacing:-1.260000px;}
.ws95{word-spacing:-1.152000px;}
.ws4e{word-spacing:-1.080000px;}
.ws8a{word-spacing:-1.008000px;}
.ws11{word-spacing:-0.960000px;}
.ws7b{word-spacing:-0.912000px;}
.ws66{word-spacing:-0.840000px;}
.ws77{word-spacing:-0.816000px;}
.ws61{word-spacing:-0.780000px;}
.ws46{word-spacing:-0.720000px;}
.ws76{word-spacing:-0.624000px;}
.ws7f{word-spacing:-0.576000px;}
.ws67{word-spacing:-0.540000px;}
.ws65{word-spacing:-0.480000px;}
.ws42{word-spacing:-0.420000px;}
.ws4d{word-spacing:-0.360000px;}
.ws3a{word-spacing:-0.300000px;}
.ws8c{word-spacing:-0.288000px;}
.ws4b{word-spacing:-0.240000px;}
.ws8f{word-spacing:-0.192000px;}
.ws16{word-spacing:-0.180000px;}
.ws35{word-spacing:-0.120000px;}
.ws5d{word-spacing:-0.096000px;}
.ws64{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws90{word-spacing:0.048000px;}
.ws19{word-spacing:0.060000px;}
.ws13{word-spacing:0.120000px;}
.wsd{word-spacing:0.300000px;}
.ws63{word-spacing:0.360000px;}
.ws1c{word-spacing:0.420000px;}
.ws55{word-spacing:0.480000px;}
.wsf{word-spacing:0.600000px;}
.ws52{word-spacing:0.660000px;}
.ws1e{word-spacing:0.720000px;}
.ws45{word-spacing:0.780000px;}
.wse{word-spacing:0.900000px;}
.ws6a{word-spacing:0.960000px;}
.ws15{word-spacing:1.020000px;}
.ws5c{word-spacing:1.152000px;}
.ws7e{word-spacing:1.344000px;}
.ws32{word-spacing:1.380000px;}
.ws8e{word-spacing:1.392000px;}
.ws56{word-spacing:1.500000px;}
.ws3b{word-spacing:1.560000px;}
.ws3c{word-spacing:1.776000px;}
.ws39{word-spacing:1.800000px;}
.ws93{word-spacing:1.872000px;}
.ws4f{word-spacing:1.920000px;}
.ws4c{word-spacing:1.980000px;}
.ws31{word-spacing:2.040000px;}
.ws37{word-spacing:2.160000px;}
.ws87{word-spacing:2.256000px;}
.ws50{word-spacing:2.280000px;}
.ws17{word-spacing:2.400000px;}
.ws36{word-spacing:2.460000px;}
.ws7c{word-spacing:2.496000px;}
.ws1a{word-spacing:2.520000px;}
.ws75{word-spacing:2.544000px;}
.wsb{word-spacing:2.580000px;}
.wsa{word-spacing:2.820000px;}
.ws33{word-spacing:2.880000px;}
.ws91{word-spacing:3.072000px;}
.ws89{word-spacing:3.408000px;}
.ws59{word-spacing:3.600000px;}
.ws8b{word-spacing:3.648000px;}
.wsc{word-spacing:3.660000px;}
.ws74{word-spacing:3.696000px;}
.ws62{word-spacing:3.720000px;}
.ws57{word-spacing:3.840000px;}
.ws21{word-spacing:3.936000px;}
.ws5b{word-spacing:3.984000px;}
.ws1b{word-spacing:4.020000px;}
.ws9{word-spacing:4.140000px;}
.ws14{word-spacing:4.200000px;}
.ws18{word-spacing:4.260000px;}
.ws48{word-spacing:4.380000px;}
.ws69{word-spacing:4.500000px;}
.ws12{word-spacing:4.560000px;}
.ws34{word-spacing:4.680000px;}
.ws20{word-spacing:4.740000px;}
.ws49{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws7{word-spacing:4.980000px;}
.ws73{word-spacing:5.520000px;}
.ws2c{word-spacing:72.000000px;}
.ws30{word-spacing:86.064000px;}
.ws2a{word-spacing:98.064000px;}
.ws29{word-spacing:101.376000px;}
.ws2b{word-spacing:101.424000px;}
.ws24{word-spacing:110.064000px;}
.ws2e{word-spacing:110.976000px;}
.ws27{word-spacing:112.408800px;}
.ws2d{word-spacing:114.528000px;}
.ws25{word-spacing:122.064000px;}
.ws2f{word-spacing:126.528000px;}
.ws26{word-spacing:134.064000px;}
.ws53{word-spacing:152.374156px;}
.ws23{word-spacing:251.952000px;}
._b{margin-left:-2898.144000px;}
._e{margin-left:-2874.336000px;}
._27{margin-left:-145.746060px;}
._3{margin-left:-12.309000px;}
._36{margin-left:-11.088000px;}
._6{margin-left:-7.140000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.735060px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.169940px;}
._5{width:1.020000px;}
._8{width:2.460000px;}
._a{width:3.840000px;}
._7{width:4.860000px;}
._9{width:5.940000px;}
._c{width:7.740000px;}
._d{width:9.180000px;}
._45{width:34.035263px;}
._44{width:47.370154px;}
._10{width:61.104000px;}
._18{width:62.928000px;}
._43{width:74.280637px;}
._41{width:86.064000px;}
._42{width:87.615528px;}
._2e{width:100.608000px;}
._3f{width:105.552000px;}
._30{width:108.048000px;}
._23{width:110.064000px;}
._32{width:113.424000px;}
._14{width:121.200000px;}
._1d{width:122.928000px;}
._28{width:126.528000px;}
._2d{width:129.648000px;}
._1a{width:133.200000px;}
._17{width:134.928000px;}
._19{width:139.584000px;}
._1f{width:142.944000px;}
._1b{width:145.200000px;}
._13{width:146.928000px;}
._1c{width:150.960000px;}
._33{width:156.240000px;}
._29{width:158.598000px;}
._2f{width:161.520000px;}
._1e{width:166.896000px;}
._2c{width:169.584000px;}
._21{width:174.288000px;}
._24{width:176.823060px;}
._16{width:182.256000px;}
._31{width:193.584000px;}
._34{width:204.240000px;}
._3b{width:206.928000px;}
._37{width:209.520000px;}
._20{width:212.256000px;}
._15{width:222.912000px;}
._26{width:225.120000px;}
._2b{width:236.064000px;}
._25{width:249.600000px;}
._12{width:259.584000px;}
._3c{width:263.856000px;}
._2a{width:268.224000px;}
._22{width:272.448000px;}
._f{width:286.896000px;}
._11{width:289.584000px;}
._3a{width:328.520940px;}
._38{width:345.168000px;}
._35{width:359.808000px;}
._3d{width:367.446000px;}
._39{width:383.574000px;}
._3e{width:409.788000px;}
._40{width:470.199060px;}
.fc2{color:rgb(125,124,125);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs9{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsc{font-size:47.400000px;}
.fsa{font-size:48.000000px;}
.fse{font-size:48.140400px;}
.fsb{font-size:48.311400px;}
.fsd{font-size:57.867000px;}
.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;}
.y2d{bottom:47.777250px;}
.yd4{bottom:83.141400px;}
.yfb{bottom:83.543250px;}
.y7d{bottom:83.566650px;}
.yc2{bottom:84.853950px;}
.y2a{bottom:88.026750px;}
.yb0{bottom:90.950400px;}
.y128{bottom:92.121900px;}
.yf6{bottom:93.030000px;}
.y168{bottom:95.263500px;}
.yd3{bottom:98.885400px;}
.yfa{bottom:99.287250px;}
.y7c{bottom:99.310650px;}
.y62{bottom:101.770350px;}
.y78{bottom:101.912100px;}
.y29{bottom:103.023000px;}
.y127{bottom:107.121900px;}
.yaf{bottom:107.450400px;}
.y167{bottom:110.263500px;}
.yf9{bottom:115.031250px;}
.y61{bottom:119.770350px;}
.y77{bottom:119.912100px;}
.yce{bottom:121.606500px;}
.y126{bottom:122.121900px;}
.yd1{bottom:123.188100px;}
.yae{bottom:123.698400px;}
.y166{bottom:125.263500px;}
.yd2{bottom:127.254000px;}
.yf8{bottom:130.775250px;}
.y60{bottom:137.770350px;}
.y76{bottom:137.912100px;}
.yad{bottom:139.946400px;}
.y165{bottom:140.263500px;}
.yf3{bottom:149.200500px;}
.yd0{bottom:150.028200px;}
.yf7{bottom:154.848300px;}
.y125{bottom:155.232600px;}
.y164{bottom:155.263500px;}
.y5f{bottom:155.770350px;}
.y75{bottom:155.912100px;}
.yac{bottom:156.194400px;}
.yc4{bottom:164.388600px;}
.y163{bottom:170.263500px;}
.yab{bottom:172.442400px;}
.y5e{bottom:173.770350px;}
.y74{bottom:173.912100px;}
.y26{bottom:175.967250px;}
.yf5{bottom:181.802850px;}
.y7e{bottom:184.342350px;}
.y162{bottom:185.263500px;}
.yc5{bottom:186.068341px;}
.yaa{bottom:188.690400px;}
.y5d{bottom:191.770350px;}
.y73{bottom:191.912100px;}
.y25{bottom:193.967250px;}
.yee{bottom:195.405300px;}
.y161{bottom:200.263500px;}
.ya9{bottom:204.938400px;}
.yc6{bottom:207.748081px;}
.y5c{bottom:209.770350px;}
.y124{bottom:209.772600px;}
.y72{bottom:209.912100px;}
.y24{bottom:211.967250px;}
.y160{bottom:215.263500px;}
.ya8{bottom:221.222100px;}
.y123{bottom:227.367600px;}
.y5b{bottom:227.770350px;}
.y71{bottom:227.912100px;}
.yc7{bottom:229.464056px;}
.y23{bottom:229.967250px;}
.y15f{bottom:230.263500px;}
.ya7{bottom:237.470100px;}
.y15e{bottom:245.263500px;}
.y5a{bottom:245.770350px;}
.y70{bottom:245.912100px;}
.yef{bottom:247.008197px;}
.y22{bottom:247.967250px;}
.yc8{bottom:251.143797px;}
.ya6{bottom:253.718100px;}
.ycf{bottom:259.688400px;}
.y15d{bottom:260.263500px;}
.y59{bottom:263.770350px;}
.y122{bottom:263.772600px;}
.y6f{bottom:263.912100px;}
.y21{bottom:265.967250px;}
.ya5{bottom:269.966100px;}
.yc9{bottom:272.823537px;}
.y15c{bottom:275.263500px;}
.y121{bottom:281.367600px;}
.y58{bottom:281.770350px;}
.y6e{bottom:281.912100px;}
.y28{bottom:283.967250px;}
.ya4{bottom:286.214100px;}
.y15b{bottom:290.263500px;}
.yca{bottom:294.539512px;}
.yf0{bottom:298.654495px;}
.y57{bottom:299.770350px;}
.y6d{bottom:299.912100px;}
.y20{bottom:301.564500px;}
.y27{bottom:301.967250px;}
.ya3{bottom:302.462100px;}
.yf4{bottom:304.306050px;}
.y15a{bottom:305.263500px;}
.ycb{bottom:316.219252px;}
.y120{bottom:317.367600px;}
.y56{bottom:317.770350px;}
.y6c{bottom:317.920350px;}
.ya2{bottom:318.710100px;}
.y159{bottom:320.263500px;}
.ya1{bottom:334.958100px;}
.y158{bottom:335.263500px;}
.y55{bottom:335.770350px;}
.y6b{bottom:335.920350px;}
.ycc{bottom:337.898993px;}
.yf1{bottom:350.257392px;}
.y157{bottom:350.263500px;}
.ya0{bottom:351.206100px;}
.y54{bottom:353.770350px;}
.y11f{bottom:353.772600px;}
.y6a{bottom:353.920350px;}
.ycd{bottom:359.614967px;}
.y156{bottom:365.263500px;}
.y9f{bottom:367.489800px;}
.y53{bottom:371.770350px;}
.y11e{bottom:371.772600px;}
.y69{bottom:371.920350px;}
.y1f{bottom:377.627250px;}
.y196{bottom:380.263500px;}
.y155{bottom:380.265900px;}
.y9e{bottom:383.737800px;}
.y52{bottom:389.770350px;}
.y11d{bottom:389.772600px;}
.y68{bottom:389.920350px;}
.y195{bottom:395.263500px;}
.y154{bottom:395.265900px;}
.y9d{bottom:399.985800px;}
.yf2{bottom:401.903689px;}
.y1e{bottom:404.972250px;}
.y11c{bottom:407.367600px;}
.y51{bottom:407.770350px;}
.y67{bottom:407.920350px;}
.y194{bottom:410.263500px;}
.y153{bottom:410.265900px;}
.y9c{bottom:416.233800px;}
.y1d{bottom:422.972250px;}
.y193{bottom:425.263500px;}
.y152{bottom:425.265900px;}
.y50{bottom:425.770350px;}
.y66{bottom:425.920350px;}
.yd7{bottom:426.269400px;}
.y9b{bottom:432.481800px;}
.y192{bottom:440.263500px;}
.y151{bottom:440.265900px;}
.y1c{bottom:440.972250px;}
.yd6{bottom:442.013400px;}
.y4f{bottom:443.770350px;}
.y11b{bottom:443.772600px;}
.y9a{bottom:448.729800px;}
.y191{bottom:455.263500px;}
.y150{bottom:455.265900px;}
.yd5{bottom:457.757400px;}
.y1b{bottom:458.972250px;}
.y65{bottom:461.515350px;}
.y4e{bottom:461.770350px;}
.y11a{bottom:461.772600px;}
.y99{bottom:464.977800px;}
.y190{bottom:470.263500px;}
.y14f{bottom:470.265900px;}
.y1a{bottom:476.972250px;}
.yc1{bottom:479.635350px;}
.y4d{bottom:479.770350px;}
.y119{bottom:479.772600px;}
.y98{bottom:481.225800px;}
.y18f{bottom:485.263500px;}
.y14e{bottom:485.265900px;}
.y19{bottom:494.972250px;}
.y97{bottom:497.473800px;}
.yc0{bottom:497.635350px;}
.y4c{bottom:497.770350px;}
.y118{bottom:497.772600px;}
.y18e{bottom:500.263500px;}
.y14d{bottom:500.265900px;}
.y18{bottom:512.972250px;}
.y96{bottom:513.753450px;}
.y18d{bottom:515.263500px;}
.y14c{bottom:515.265900px;}
.ybf{bottom:515.635350px;}
.y4b{bottom:515.770350px;}
.y117{bottom:515.772600px;}
.yed{bottom:516.827400px;}
.y95{bottom:530.001450px;}
.y18c{bottom:530.263500px;}
.y14b{bottom:530.265900px;}
.y17{bottom:530.972250px;}
.yec{bottom:531.225150px;}
.ybe{bottom:533.635350px;}
.y4a{bottom:533.770350px;}
.y116{bottom:533.772600px;}
.y18b{bottom:545.263500px;}
.y14a{bottom:545.265900px;}
.yeb{bottom:545.622900px;}
.y94{bottom:546.249450px;}
.y16{bottom:548.972250px;}
.ybd{bottom:551.635350px;}
.y49{bottom:551.770350px;}
.y115{bottom:551.772600px;}
.yea{bottom:560.020650px;}
.y18a{bottom:560.263500px;}
.y149{bottom:560.265900px;}
.y93{bottom:562.497450px;}
.y15{bottom:566.972250px;}
.ybc{bottom:569.635350px;}
.y48{bottom:569.770350px;}
.y114{bottom:569.772600px;}
.ye9{bottom:574.418400px;}
.y189{bottom:575.263500px;}
.y148{bottom:575.265900px;}
.y92{bottom:578.745450px;}
.y14{bottom:584.972250px;}
.ybb{bottom:587.635350px;}
.y47{bottom:587.770350px;}
.y113{bottom:587.772600px;}
.ye8{bottom:588.816150px;}
.y188{bottom:590.263500px;}
.y147{bottom:590.265900px;}
.y91{bottom:594.993450px;}
.y13{bottom:602.972250px;}
.ye7{bottom:603.213900px;}
.y187{bottom:605.263500px;}
.y146{bottom:605.265900px;}
.y112{bottom:605.367600px;}
.yba{bottom:605.635350px;}
.y46{bottom:605.770350px;}
.y90{bottom:611.241450px;}
.ye6{bottom:617.611650px;}
.y186{bottom:620.263500px;}
.y145{bottom:620.265900px;}
.y12{bottom:620.972250px;}
.yb9{bottom:623.635350px;}
.y45{bottom:623.770350px;}
.y8f{bottom:627.489450px;}
.ye5{bottom:632.009400px;}
.y185{bottom:635.263500px;}
.y144{bottom:635.265900px;}
.y11{bottom:638.972250px;}
.yb8{bottom:641.635350px;}
.y44{bottom:641.770350px;}
.y111{bottom:641.772600px;}
.ye4{bottom:646.407150px;}
.y184{bottom:650.263500px;}
.y143{bottom:650.265900px;}
.y8d{bottom:656.493450px;}
.y10{bottom:656.972250px;}
.yb7{bottom:659.635350px;}
.y43{bottom:659.770350px;}
.y110{bottom:659.772600px;}
.ye3{bottom:660.804900px;}
.y183{bottom:665.263500px;}
.y142{bottom:665.265900px;}
.y8e{bottom:672.993450px;}
.yf{bottom:674.972250px;}
.ye2{bottom:675.202650px;}
.yb6{bottom:677.635350px;}
.y42{bottom:677.770350px;}
.y10f{bottom:677.772600px;}
.y182{bottom:680.263500px;}
.y141{bottom:680.265900px;}
.ye1{bottom:689.600400px;}
.y181{bottom:695.263500px;}
.y140{bottom:695.265900px;}
.yb5{bottom:695.635350px;}
.y41{bottom:695.770350px;}
.y10e{bottom:695.772600px;}
.ye0{bottom:703.998150px;}
.y8c{bottom:705.385350px;}
.y180{bottom:710.263500px;}
.y13f{bottom:710.265900px;}
.yb4{bottom:713.635350px;}
.y40{bottom:713.770350px;}
.y10d{bottom:713.772600px;}
.ydf{bottom:718.395900px;}
.ye{bottom:720.130350px;}
.y8b{bottom:724.885350px;}
.y17f{bottom:725.263500px;}
.y13e{bottom:725.265900px;}
.yb3{bottom:731.635350px;}
.y3f{bottom:731.770350px;}
.y10c{bottom:731.772600px;}
.yd{bottom:732.581100px;}
.yde{bottom:732.793650px;}
.y17e{bottom:740.263500px;}
.y13d{bottom:740.265900px;}
.y8a{bottom:744.385350px;}
.ydd{bottom:747.191400px;}
.y3e{bottom:749.770350px;}
.y10b{bottom:749.772600px;}
.y17d{bottom:755.263500px;}
.y13c{bottom:755.265900px;}
.ydc{bottom:761.589150px;}
.yb2{bottom:767.230350px;}
.y3d{bottom:767.770350px;}
.y10a{bottom:767.772600px;}
.yc{bottom:769.721850px;}
.y17c{bottom:770.263500px;}
.y13b{bottom:770.265900px;}
.ydb{bottom:775.986900px;}
.yb{bottom:777.796650px;}
.y17b{bottom:785.263500px;}
.y13a{bottom:785.265900px;}
.y89{bottom:785.635350px;}
.y3c{bottom:785.770350px;}
.y109{bottom:785.772600px;}
.yda{bottom:790.384650px;}
.ya{bottom:796.721850px;}
.y17a{bottom:800.263500px;}
.y139{bottom:800.265900px;}
.y88{bottom:803.635350px;}
.y3b{bottom:803.770350px;}
.y108{bottom:803.772600px;}
.yd9{bottom:804.782400px;}
.y9{bottom:804.796650px;}
.y179{bottom:815.263500px;}
.y138{bottom:815.265900px;}
.yd8{bottom:819.180150px;}
.y87{bottom:821.635350px;}
.y3a{bottom:821.770350px;}
.y107{bottom:821.772600px;}
.y8{bottom:823.721850px;}
.y178{bottom:830.263500px;}
.y137{bottom:830.265900px;}
.y86{bottom:839.635350px;}
.y39{bottom:839.770350px;}
.y106{bottom:839.772600px;}
.y177{bottom:845.263500px;}
.y136{bottom:845.265900px;}
.y7{bottom:852.444000px;}
.y85{bottom:857.635350px;}
.y38{bottom:857.770350px;}
.y105{bottom:857.772600px;}
.y176{bottom:860.263500px;}
.y135{bottom:860.265900px;}
.y175{bottom:875.263500px;}
.y134{bottom:875.265900px;}
.y84{bottom:875.635350px;}
.y37{bottom:875.770350px;}
.y104{bottom:875.772600px;}
.y174{bottom:890.263500px;}
.y133{bottom:890.265900px;}
.y64{bottom:893.365350px;}
.y83{bottom:893.635350px;}
.y36{bottom:893.770350px;}
.y103{bottom:893.772600px;}
.y6{bottom:898.606650px;}
.y173{bottom:905.263500px;}
.y132{bottom:905.265900px;}
.y82{bottom:911.635350px;}
.y35{bottom:911.770350px;}
.y102{bottom:911.772600px;}
.y172{bottom:920.263500px;}
.y131{bottom:920.265900px;}
.y63{bottom:929.230350px;}
.y81{bottom:929.635350px;}
.y34{bottom:929.770350px;}
.y101{bottom:929.772600px;}
.y5{bottom:935.067450px;}
.y171{bottom:935.263500px;}
.y130{bottom:935.265900px;}
.y33{bottom:947.770350px;}
.y100{bottom:947.772600px;}
.y170{bottom:950.263500px;}
.y12f{bottom:950.265900px;}
.y80{bottom:965.230350px;}
.y16f{bottom:965.263500px;}
.y12e{bottom:965.265900px;}
.y32{bottom:965.770350px;}
.yff{bottom:965.772600px;}
.y4{bottom:971.528250px;}
.y16e{bottom:980.263500px;}
.y12d{bottom:980.265900px;}
.y31{bottom:983.770350px;}
.yfe{bottom:983.772600px;}
.y16d{bottom:995.263500px;}
.y12c{bottom:995.265900px;}
.y30{bottom:1001.770350px;}
.yfd{bottom:1001.772600px;}
.y3{bottom:1007.989050px;}
.y16c{bottom:1010.263500px;}
.y12b{bottom:1010.265900px;}
.y2f{bottom:1019.770350px;}
.y16b{bottom:1025.263500px;}
.y12a{bottom:1025.265900px;}
.y7b{bottom:1037.365350px;}
.y7a{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.y16a{bottom:1040.263500px;}
.y129{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y7f{bottom:1132.414350px;}
.yc3{bottom:1132.417950px;}
.y79{bottom:1132.418700px;}
.y169{bottom:1132.423500px;}
.yfc{bottom:1132.439250px;}
.yb1{bottom:1132.442400px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hf{height:32.761230px;}
.h7{height:32.805176px;}
.h14{height:33.328125px;}
.h1d{height:33.341962px;}
.h15{height:33.351562px;}
.h19{height:34.554785px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h1c{height:35.071034px;}
.h17{height:35.195610px;}
.he{height:41.660156px;}
.h12{height:41.689453px;}
.h1a{height:42.157014px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.hd{height:43.717434px;}
.ha{height:43.740234px;}
.h13{height:52.517871px;}
.h16{height:52.550871px;}
.hc{height:54.424477px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h18{height:270.034500px;}
.h1b{height:316.713000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:472.309500px;}
.w3{width:547.401000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:12.868500px;}
.x44{left:24.408000px;}
.x3d{left:35.553000px;}
.xa{left:76.535400px;}
.x16{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x49{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x4b{left:123.307050px;}
.x3{left:125.426850px;}
.x6{left:131.811000px;}
.x13{left:137.986500px;}
.x43{left:183.387000px;}
.x47{left:190.132500px;}
.x48{left:194.287500px;}
.x29{left:197.501700px;}
.x3c{left:199.672500px;}
.x42{left:207.795000px;}
.x5{left:212.876400px;}
.x3b{left:225.140495px;}
.x3a{left:235.225500px;}
.x45{left:239.201250px;}
.x3e{left:243.933600px;}
.x2b{left:333.905700px;}
.x17{left:336.997350px;}
.x18{left:339.661350px;}
.x2a{left:342.629700px;}
.x2d{left:376.421700px;}
.x19{left:379.513350px;}
.x1a{left:382.177350px;}
.x2c{left:384.917700px;}
.x40{left:398.056050px;}
.x2f{left:418.937700px;}
.x1b{left:422.029350px;}
.x1c{left:424.693350px;}
.x2e{left:427.433700px;}
.x46{left:429.127050px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x31{left:461.453700px;}
.x1d{left:464.545350px;}
.x1e{left:467.209350px;}
.x30{left:469.949700px;}
.x11{left:478.341000px;}
.x7{left:480.471000px;}
.x4a{left:482.591400px;}
.xe{left:491.105400px;}
.x32{left:503.969700px;}
.x1f{left:507.061350px;}
.x12{left:512.361000px;}
.xd{left:525.275400px;}
.x21{left:546.469350px;}
.x20{left:549.577350px;}
.x33{left:554.981700px;}
.x41{left:558.496050px;}
.x22{left:588.757350px;}
.x15{left:591.650400px;}
.x35{left:593.501700px;}
.x34{left:597.497700px;}
.x39{left:600.698700px;}
.x24{left:631.273350px;}
.x23{left:634.609350px;}
.x36{left:640.241700px;}
.x10{left:663.492300px;}
.x26{left:673.789350px;}
.x25{left:677.125350px;}
.x37{left:682.529700px;}
.x2{left:693.365400px;}
.x28{left:716.305350px;}
.x27{left:719.641350px;}
.x38{left:725.045700px;}
.xf{left:735.065400px;}
.x14{left:756.322500px;}
@media print{
.v2{vertical-align:-19.289600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:25.725333pt;}
.v1{vertical-align:27.005867pt;}
.ls47{letter-spacing:-1.578667pt;}
.ls46{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls87{letter-spacing:-0.640000pt;}
.ls76{letter-spacing:-0.554667pt;}
.ls88{letter-spacing:-0.426667pt;}
.ls3e{letter-spacing:-0.373333pt;}
.ls3f{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.280000pt;}
.ls50{letter-spacing:-0.266667pt;}
.ls36{letter-spacing:-0.213333pt;}
.ls35{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.106667pt;}
.ls75{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls85{letter-spacing:-0.042667pt;}
.ls13{letter-spacing:-0.040000pt;}
.ls11{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.003200pt;}
.ls2{letter-spacing:0.003680pt;}
.ls3{letter-spacing:0.004907pt;}
.ls1{letter-spacing:0.005045pt;}
.ls27{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.061867pt;}
.ls52{letter-spacing:0.085333pt;}
.ls33{letter-spacing:0.099733pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.160000pt;}
.ls62{letter-spacing:0.170667pt;}
.ls2a{letter-spacing:0.213333pt;}
.ls3d{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls21{letter-spacing:0.320000pt;}
.ls78{letter-spacing:0.341333pt;}
.ls4c{letter-spacing:0.373333pt;}
.ls60{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.426667pt;}
.ls6e{letter-spacing:0.469333pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls72{letter-spacing:0.512000pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls65{letter-spacing:0.554667pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls61{letter-spacing:0.597333pt;}
.ls17{letter-spacing:0.640000pt;}
.ls7c{letter-spacing:0.682667pt;}
.lsc{letter-spacing:0.693333pt;}
.ls5e{letter-spacing:0.725333pt;}
.lsa{letter-spacing:0.746667pt;}
.ls79{letter-spacing:0.768000pt;}
.ls41{letter-spacing:0.800000pt;}
.ls71{letter-spacing:0.810667pt;}
.ls2d{letter-spacing:0.853333pt;}
.ls77{letter-spacing:0.896000pt;}
.ls6{letter-spacing:0.906667pt;}
.ls64{letter-spacing:0.938667pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls82{letter-spacing:0.981333pt;}
.lsb{letter-spacing:1.013333pt;}
.ls81{letter-spacing:1.024000pt;}
.ls4f{letter-spacing:1.066667pt;}
.ls69{letter-spacing:1.109333pt;}
.ls2c{letter-spacing:1.120000pt;}
.ls34{letter-spacing:1.173333pt;}
.ls7f{letter-spacing:1.194667pt;}
.ls40{letter-spacing:1.226667pt;}
.ls7e{letter-spacing:1.237333pt;}
.ls29{letter-spacing:1.280000pt;}
.ls73{letter-spacing:1.322667pt;}
.ls1c{letter-spacing:1.333333pt;}
.ls32{letter-spacing:1.386667pt;}
.ls74{letter-spacing:1.408000pt;}
.ls5a{letter-spacing:1.440000pt;}
.ls8{letter-spacing:1.493333pt;}
.ls6f{letter-spacing:1.536000pt;}
.lsf{letter-spacing:1.546667pt;}
.ls1b{letter-spacing:1.600000pt;}
.ls7a{letter-spacing:1.621333pt;}
.ls3a{letter-spacing:1.653333pt;}
.ls86{letter-spacing:1.664000pt;}
.ls23{letter-spacing:1.706667pt;}
.ls6d{letter-spacing:1.749333pt;}
.ls22{letter-spacing:1.760000pt;}
.ls3c{letter-spacing:1.813333pt;}
.ls28{letter-spacing:1.866667pt;}
.ls7d{letter-spacing:1.877333pt;}
.ls25{letter-spacing:1.920000pt;}
.ls6b{letter-spacing:1.962667pt;}
.ls9{letter-spacing:1.973333pt;}
.ls83{letter-spacing:2.005333pt;}
.ls31{letter-spacing:2.026667pt;}
.lsd{letter-spacing:2.080000pt;}
.ls80{letter-spacing:2.090667pt;}
.ls2e{letter-spacing:2.133333pt;}
.ls63{letter-spacing:2.176000pt;}
.ls18{letter-spacing:2.186667pt;}
.ls30{letter-spacing:2.240000pt;}
.ls5f{letter-spacing:2.304000pt;}
.ls39{letter-spacing:2.346667pt;}
.ls6a{letter-spacing:2.389333pt;}
.ls48{letter-spacing:2.400000pt;}
.ls66{letter-spacing:2.432000pt;}
.ls7{letter-spacing:2.453333pt;}
.ls16{letter-spacing:2.506667pt;}
.ls84{letter-spacing:2.517333pt;}
.ls49{letter-spacing:2.560000pt;}
.ls6c{letter-spacing:2.602667pt;}
.ls4e{letter-spacing:2.613333pt;}
.ls5d{letter-spacing:2.666667pt;}
.ls70{letter-spacing:2.688000pt;}
.ls4b{letter-spacing:2.720000pt;}
.lse{letter-spacing:2.773333pt;}
.ls2b{letter-spacing:2.880000pt;}
.ls3b{letter-spacing:2.986667pt;}
.ls7b{letter-spacing:3.029333pt;}
.ls55{letter-spacing:3.040000pt;}
.ls68{letter-spacing:3.072000pt;}
.ls4d{letter-spacing:3.093333pt;}
.ls5{letter-spacing:3.146667pt;}
.ls51{letter-spacing:3.306667pt;}
.ls10{letter-spacing:3.360000pt;}
.ls57{letter-spacing:3.680000pt;}
.ls19{letter-spacing:3.733333pt;}
.ls58{letter-spacing:3.840000pt;}
.ls5c{letter-spacing:3.946667pt;}
.ls67{letter-spacing:4.096000pt;}
.ls59{letter-spacing:4.320000pt;}
.ls38{letter-spacing:4.640000pt;}
.ls56{letter-spacing:5.120000pt;}
.ls5b{letter-spacing:5.173333pt;}
.ls54{letter-spacing:5.333333pt;}
.ls0{letter-spacing:52.922133pt;}
.ls44{letter-spacing:119.168000pt;}
.ls43{letter-spacing:129.834667pt;}
.ls53{letter-spacing:153.479950pt;}
.ls42{letter-spacing:182.741333pt;}
.ls45{letter-spacing:244.266667pt;}
.ws5a{word-spacing:-153.479950pt;}
.ws28{word-spacing:-140.501333pt;}
.ws5f{word-spacing:-18.453333pt;}
.ws6b{word-spacing:-16.533333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws22{word-spacing:-14.720000pt;}
.ws40{word-spacing:-14.506667pt;}
.ws3e{word-spacing:-14.133333pt;}
.ws3f{word-spacing:-14.080000pt;}
.ws60{word-spacing:-13.973333pt;}
.ws5e{word-spacing:-13.813333pt;}
.ws3d{word-spacing:-13.600000pt;}
.ws41{word-spacing:-13.333333pt;}
.ws84{word-spacing:-12.757333pt;}
.ws82{word-spacing:-12.288000pt;}
.ws70{word-spacing:-12.202667pt;}
.ws86{word-spacing:-11.946667pt;}
.ws4{word-spacing:-11.861333pt;}
.ws85{word-spacing:-11.733333pt;}
.ws54{word-spacing:-11.713067pt;}
.ws6d{word-spacing:-11.605333pt;}
.ws81{word-spacing:-11.562667pt;}
.ws83{word-spacing:-11.520000pt;}
.ws6e{word-spacing:-11.392000pt;}
.ws80{word-spacing:-11.221333pt;}
.ws71{word-spacing:-11.178667pt;}
.ws3{word-spacing:-11.120000pt;}
.ws6f{word-spacing:-10.880000pt;}
.ws6c{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws1{word-spacing:-6.482960pt;}
.ws79{word-spacing:-4.096000pt;}
.ws1f{word-spacing:-3.733333pt;}
.ws72{word-spacing:-2.880000pt;}
.ws4a{word-spacing:-2.773333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws78{word-spacing:-2.432000pt;}
.ws44{word-spacing:-2.400000pt;}
.ws92{word-spacing:-2.090667pt;}
.ws43{word-spacing:-2.026667pt;}
.ws96{word-spacing:-2.005333pt;}
.ws10{word-spacing:-1.973333pt;}
.ws47{word-spacing:-1.813333pt;}
.ws68{word-spacing:-1.760000pt;}
.ws88{word-spacing:-1.749333pt;}
.ws8d{word-spacing:-1.664000pt;}
.ws1d{word-spacing:-1.653333pt;}
.ws7a{word-spacing:-1.536000pt;}
.ws94{word-spacing:-1.493333pt;}
.ws38{word-spacing:-1.386667pt;}
.ws58{word-spacing:-1.333333pt;}
.ws7d{word-spacing:-1.322667pt;}
.ws97{word-spacing:-1.280000pt;}
.ws51{word-spacing:-1.120000pt;}
.ws95{word-spacing:-1.024000pt;}
.ws4e{word-spacing:-0.960000pt;}
.ws8a{word-spacing:-0.896000pt;}
.ws11{word-spacing:-0.853333pt;}
.ws7b{word-spacing:-0.810667pt;}
.ws66{word-spacing:-0.746667pt;}
.ws77{word-spacing:-0.725333pt;}
.ws61{word-spacing:-0.693333pt;}
.ws46{word-spacing:-0.640000pt;}
.ws76{word-spacing:-0.554667pt;}
.ws7f{word-spacing:-0.512000pt;}
.ws67{word-spacing:-0.480000pt;}
.ws65{word-spacing:-0.426667pt;}
.ws42{word-spacing:-0.373333pt;}
.ws4d{word-spacing:-0.320000pt;}
.ws3a{word-spacing:-0.266667pt;}
.ws8c{word-spacing:-0.256000pt;}
.ws4b{word-spacing:-0.213333pt;}
.ws8f{word-spacing:-0.170667pt;}
.ws16{word-spacing:-0.160000pt;}
.ws35{word-spacing:-0.106667pt;}
.ws5d{word-spacing:-0.085333pt;}
.ws64{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws90{word-spacing:0.042667pt;}
.ws19{word-spacing:0.053333pt;}
.ws13{word-spacing:0.106667pt;}
.wsd{word-spacing:0.266667pt;}
.ws63{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.373333pt;}
.ws55{word-spacing:0.426667pt;}
.wsf{word-spacing:0.533333pt;}
.ws52{word-spacing:0.586667pt;}
.ws1e{word-spacing:0.640000pt;}
.ws45{word-spacing:0.693333pt;}
.wse{word-spacing:0.800000pt;}
.ws6a{word-spacing:0.853333pt;}
.ws15{word-spacing:0.906667pt;}
.ws5c{word-spacing:1.024000pt;}
.ws7e{word-spacing:1.194667pt;}
.ws32{word-spacing:1.226667pt;}
.ws8e{word-spacing:1.237333pt;}
.ws56{word-spacing:1.333333pt;}
.ws3b{word-spacing:1.386667pt;}
.ws3c{word-spacing:1.578667pt;}
.ws39{word-spacing:1.600000pt;}
.ws93{word-spacing:1.664000pt;}
.ws4f{word-spacing:1.706667pt;}
.ws4c{word-spacing:1.760000pt;}
.ws31{word-spacing:1.813333pt;}
.ws37{word-spacing:1.920000pt;}
.ws87{word-spacing:2.005333pt;}
.ws50{word-spacing:2.026667pt;}
.ws17{word-spacing:2.133333pt;}
.ws36{word-spacing:2.186667pt;}
.ws7c{word-spacing:2.218667pt;}
.ws1a{word-spacing:2.240000pt;}
.ws75{word-spacing:2.261333pt;}
.wsb{word-spacing:2.293333pt;}
.wsa{word-spacing:2.506667pt;}
.ws33{word-spacing:2.560000pt;}
.ws91{word-spacing:2.730667pt;}
.ws89{word-spacing:3.029333pt;}
.ws59{word-spacing:3.200000pt;}
.ws8b{word-spacing:3.242667pt;}
.wsc{word-spacing:3.253333pt;}
.ws74{word-spacing:3.285333pt;}
.ws62{word-spacing:3.306667pt;}
.ws57{word-spacing:3.413333pt;}
.ws21{word-spacing:3.498667pt;}
.ws5b{word-spacing:3.541333pt;}
.ws1b{word-spacing:3.573333pt;}
.ws9{word-spacing:3.680000pt;}
.ws14{word-spacing:3.733333pt;}
.ws18{word-spacing:3.786667pt;}
.ws48{word-spacing:3.893333pt;}
.ws69{word-spacing:4.000000pt;}
.ws12{word-spacing:4.053333pt;}
.ws34{word-spacing:4.160000pt;}
.ws20{word-spacing:4.213333pt;}
.ws49{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws7{word-spacing:4.426667pt;}
.ws73{word-spacing:4.906667pt;}
.ws2c{word-spacing:64.000000pt;}
.ws30{word-spacing:76.501333pt;}
.ws2a{word-spacing:87.168000pt;}
.ws29{word-spacing:90.112000pt;}
.ws2b{word-spacing:90.154667pt;}
.ws24{word-spacing:97.834667pt;}
.ws2e{word-spacing:98.645333pt;}
.ws27{word-spacing:99.918933pt;}
.ws2d{word-spacing:101.802667pt;}
.ws25{word-spacing:108.501333pt;}
.ws2f{word-spacing:112.469333pt;}
.ws26{word-spacing:119.168000pt;}
.ws53{word-spacing:135.443694pt;}
.ws23{word-spacing:223.957333pt;}
._b{margin-left:-2576.128000pt;}
._e{margin-left:-2554.965333pt;}
._27{margin-left:-129.552053pt;}
._3{margin-left:-10.941333pt;}
._36{margin-left:-9.856000pt;}
._6{margin-left:-6.346667pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.320053pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.039947pt;}
._5{width:0.906667pt;}
._8{width:2.186667pt;}
._a{width:3.413333pt;}
._7{width:4.320000pt;}
._9{width:5.280000pt;}
._c{width:6.880000pt;}
._d{width:8.160000pt;}
._45{width:30.253567pt;}
._44{width:42.106803pt;}
._10{width:54.314667pt;}
._18{width:55.936000pt;}
._43{width:66.027233pt;}
._41{width:76.501333pt;}
._42{width:77.880469pt;}
._2e{width:89.429333pt;}
._3f{width:93.824000pt;}
._30{width:96.042667pt;}
._23{width:97.834667pt;}
._32{width:100.821333pt;}
._14{width:107.733333pt;}
._1d{width:109.269333pt;}
._28{width:112.469333pt;}
._2d{width:115.242667pt;}
._1a{width:118.400000pt;}
._17{width:119.936000pt;}
._19{width:124.074667pt;}
._1f{width:127.061333pt;}
._1b{width:129.066667pt;}
._13{width:130.602667pt;}
._1c{width:134.186667pt;}
._33{width:138.880000pt;}
._29{width:140.976000pt;}
._2f{width:143.573333pt;}
._1e{width:148.352000pt;}
._2c{width:150.741333pt;}
._21{width:154.922667pt;}
._24{width:157.176053pt;}
._16{width:162.005333pt;}
._31{width:172.074667pt;}
._34{width:181.546667pt;}
._3b{width:183.936000pt;}
._37{width:186.240000pt;}
._20{width:188.672000pt;}
._15{width:198.144000pt;}
._26{width:200.106667pt;}
._2b{width:209.834667pt;}
._25{width:221.866667pt;}
._12{width:230.741333pt;}
._3c{width:234.538667pt;}
._2a{width:238.421333pt;}
._22{width:242.176000pt;}
._f{width:255.018667pt;}
._11{width:257.408000pt;}
._3a{width:292.018613pt;}
._38{width:306.816000pt;}
._35{width:319.829333pt;}
._3d{width:326.618667pt;}
._39{width:340.954667pt;}
._3e{width:364.256000pt;}
._40{width:417.954720pt;}
.fs5{font-size:23.320000pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsc{font-size:42.133333pt;}
.fsa{font-size:42.666667pt;}
.fse{font-size:42.791467pt;}
.fsb{font-size:42.943467pt;}
.fsd{font-size:51.437333pt;}
.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;}
.y2d{bottom:42.468667pt;}
.yd4{bottom:73.903467pt;}
.yfb{bottom:74.260667pt;}
.y7d{bottom:74.281467pt;}
.yc2{bottom:75.425733pt;}
.y2a{bottom:78.246000pt;}
.yb0{bottom:80.844800pt;}
.y128{bottom:81.886133pt;}
.yf6{bottom:82.693333pt;}
.y168{bottom:84.678667pt;}
.yd3{bottom:87.898133pt;}
.yfa{bottom:88.255333pt;}
.y7c{bottom:88.276133pt;}
.y62{bottom:90.462533pt;}
.y78{bottom:90.588533pt;}
.y29{bottom:91.576000pt;}
.y127{bottom:95.219467pt;}
.yaf{bottom:95.511467pt;}
.y167{bottom:98.012000pt;}
.yf9{bottom:102.250000pt;}
.y61{bottom:106.462533pt;}
.y77{bottom:106.588533pt;}
.yce{bottom:108.094667pt;}
.y126{bottom:108.552800pt;}
.yd1{bottom:109.500533pt;}
.yae{bottom:109.954133pt;}
.y166{bottom:111.345333pt;}
.yd2{bottom:113.114667pt;}
.yf8{bottom:116.244667pt;}
.y60{bottom:122.462533pt;}
.y76{bottom:122.588533pt;}
.yad{bottom:124.396800pt;}
.y165{bottom:124.678667pt;}
.yf3{bottom:132.622667pt;}
.yd0{bottom:133.358400pt;}
.yf7{bottom:137.642933pt;}
.y125{bottom:137.984533pt;}
.y164{bottom:138.012000pt;}
.y5f{bottom:138.462533pt;}
.y75{bottom:138.588533pt;}
.yac{bottom:138.839467pt;}
.yc4{bottom:146.123200pt;}
.y163{bottom:151.345333pt;}
.yab{bottom:153.282133pt;}
.y5e{bottom:154.462533pt;}
.y74{bottom:154.588533pt;}
.y26{bottom:156.415333pt;}
.yf5{bottom:161.602533pt;}
.y7e{bottom:163.859867pt;}
.y162{bottom:164.678667pt;}
.yc5{bottom:165.394081pt;}
.yaa{bottom:167.724800pt;}
.y5d{bottom:170.462533pt;}
.y73{bottom:170.588533pt;}
.y25{bottom:172.415333pt;}
.yee{bottom:173.693600pt;}
.y161{bottom:178.012000pt;}
.ya9{bottom:182.167467pt;}
.yc6{bottom:184.664961pt;}
.y5c{bottom:186.462533pt;}
.y124{bottom:186.464533pt;}
.y72{bottom:186.588533pt;}
.y24{bottom:188.415333pt;}
.y160{bottom:191.345333pt;}
.ya8{bottom:196.641867pt;}
.y123{bottom:202.104533pt;}
.y5b{bottom:202.462533pt;}
.y71{bottom:202.588533pt;}
.yc7{bottom:203.968050pt;}
.y23{bottom:204.415333pt;}
.y15f{bottom:204.678667pt;}
.ya7{bottom:211.084533pt;}
.y15e{bottom:218.012000pt;}
.y5a{bottom:218.462533pt;}
.y70{bottom:218.588533pt;}
.yef{bottom:219.562842pt;}
.y22{bottom:220.415333pt;}
.yc8{bottom:223.238930pt;}
.ya6{bottom:225.527200pt;}
.ycf{bottom:230.834133pt;}
.y15d{bottom:231.345333pt;}
.y59{bottom:234.462533pt;}
.y122{bottom:234.464533pt;}
.y6f{bottom:234.588533pt;}
.y21{bottom:236.415333pt;}
.ya5{bottom:239.969867pt;}
.yc9{bottom:242.509811pt;}
.y15c{bottom:244.678667pt;}
.y121{bottom:250.104533pt;}
.y58{bottom:250.462533pt;}
.y6e{bottom:250.588533pt;}
.y28{bottom:252.415333pt;}
.ya4{bottom:254.412533pt;}
.y15b{bottom:258.012000pt;}
.yca{bottom:261.812899pt;}
.yf0{bottom:265.470662pt;}
.y57{bottom:266.462533pt;}
.y6d{bottom:266.588533pt;}
.y20{bottom:268.057333pt;}
.y27{bottom:268.415333pt;}
.ya3{bottom:268.855200pt;}
.yf4{bottom:270.494267pt;}
.y15a{bottom:271.345333pt;}
.ycb{bottom:281.083780pt;}
.y120{bottom:282.104533pt;}
.y56{bottom:282.462533pt;}
.y6c{bottom:282.595867pt;}
.ya2{bottom:283.297867pt;}
.y159{bottom:284.678667pt;}
.ya1{bottom:297.740533pt;}
.y158{bottom:298.012000pt;}
.y55{bottom:298.462533pt;}
.y6b{bottom:298.595867pt;}
.ycc{bottom:300.354661pt;}
.yf1{bottom:311.339904pt;}
.y157{bottom:311.345333pt;}
.ya0{bottom:312.183200pt;}
.y54{bottom:314.462533pt;}
.y11f{bottom:314.464533pt;}
.y6a{bottom:314.595867pt;}
.ycd{bottom:319.657749pt;}
.y156{bottom:324.678667pt;}
.y9f{bottom:326.657600pt;}
.y53{bottom:330.462533pt;}
.y11e{bottom:330.464533pt;}
.y69{bottom:330.595867pt;}
.y1f{bottom:335.668667pt;}
.y196{bottom:338.012000pt;}
.y155{bottom:338.014133pt;}
.y9e{bottom:341.100267pt;}
.y52{bottom:346.462533pt;}
.y11d{bottom:346.464533pt;}
.y68{bottom:346.595867pt;}
.y195{bottom:351.345333pt;}
.y154{bottom:351.347467pt;}
.y9d{bottom:355.542933pt;}
.yf2{bottom:357.247724pt;}
.y1e{bottom:359.975333pt;}
.y11c{bottom:362.104533pt;}
.y51{bottom:362.462533pt;}
.y67{bottom:362.595867pt;}
.y194{bottom:364.678667pt;}
.y153{bottom:364.680800pt;}
.y9c{bottom:369.985600pt;}
.y1d{bottom:375.975333pt;}
.y193{bottom:378.012000pt;}
.y152{bottom:378.014133pt;}
.y50{bottom:378.462533pt;}
.y66{bottom:378.595867pt;}
.yd7{bottom:378.906133pt;}
.y9b{bottom:384.428267pt;}
.y192{bottom:391.345333pt;}
.y151{bottom:391.347467pt;}
.y1c{bottom:391.975333pt;}
.yd6{bottom:392.900800pt;}
.y4f{bottom:394.462533pt;}
.y11b{bottom:394.464533pt;}
.y9a{bottom:398.870933pt;}
.y191{bottom:404.678667pt;}
.y150{bottom:404.680800pt;}
.yd5{bottom:406.895467pt;}
.y1b{bottom:407.975333pt;}
.y65{bottom:410.235867pt;}
.y4e{bottom:410.462533pt;}
.y11a{bottom:410.464533pt;}
.y99{bottom:413.313600pt;}
.y190{bottom:418.012000pt;}
.y14f{bottom:418.014133pt;}
.y1a{bottom:423.975333pt;}
.yc1{bottom:426.342533pt;}
.y4d{bottom:426.462533pt;}
.y119{bottom:426.464533pt;}
.y98{bottom:427.756267pt;}
.y18f{bottom:431.345333pt;}
.y14e{bottom:431.347467pt;}
.y19{bottom:439.975333pt;}
.y97{bottom:442.198933pt;}
.yc0{bottom:442.342533pt;}
.y4c{bottom:442.462533pt;}
.y118{bottom:442.464533pt;}
.y18e{bottom:444.678667pt;}
.y14d{bottom:444.680800pt;}
.y18{bottom:455.975333pt;}
.y96{bottom:456.669733pt;}
.y18d{bottom:458.012000pt;}
.y14c{bottom:458.014133pt;}
.ybf{bottom:458.342533pt;}
.y4b{bottom:458.462533pt;}
.y117{bottom:458.464533pt;}
.yed{bottom:459.402133pt;}
.y95{bottom:471.112400pt;}
.y18c{bottom:471.345333pt;}
.y14b{bottom:471.347467pt;}
.y17{bottom:471.975333pt;}
.yec{bottom:472.200133pt;}
.ybe{bottom:474.342533pt;}
.y4a{bottom:474.462533pt;}
.y116{bottom:474.464533pt;}
.y18b{bottom:484.678667pt;}
.y14a{bottom:484.680800pt;}
.yeb{bottom:484.998133pt;}
.y94{bottom:485.555067pt;}
.y16{bottom:487.975333pt;}
.ybd{bottom:490.342533pt;}
.y49{bottom:490.462533pt;}
.y115{bottom:490.464533pt;}
.yea{bottom:497.796133pt;}
.y18a{bottom:498.012000pt;}
.y149{bottom:498.014133pt;}
.y93{bottom:499.997733pt;}
.y15{bottom:503.975333pt;}
.ybc{bottom:506.342533pt;}
.y48{bottom:506.462533pt;}
.y114{bottom:506.464533pt;}
.ye9{bottom:510.594133pt;}
.y189{bottom:511.345333pt;}
.y148{bottom:511.347467pt;}
.y92{bottom:514.440400pt;}
.y14{bottom:519.975333pt;}
.ybb{bottom:522.342533pt;}
.y47{bottom:522.462533pt;}
.y113{bottom:522.464533pt;}
.ye8{bottom:523.392133pt;}
.y188{bottom:524.678667pt;}
.y147{bottom:524.680800pt;}
.y91{bottom:528.883067pt;}
.y13{bottom:535.975333pt;}
.ye7{bottom:536.190133pt;}
.y187{bottom:538.012000pt;}
.y146{bottom:538.014133pt;}
.y112{bottom:538.104533pt;}
.yba{bottom:538.342533pt;}
.y46{bottom:538.462533pt;}
.y90{bottom:543.325733pt;}
.ye6{bottom:548.988133pt;}
.y186{bottom:551.345333pt;}
.y145{bottom:551.347467pt;}
.y12{bottom:551.975333pt;}
.yb9{bottom:554.342533pt;}
.y45{bottom:554.462533pt;}
.y8f{bottom:557.768400pt;}
.ye5{bottom:561.786133pt;}
.y185{bottom:564.678667pt;}
.y144{bottom:564.680800pt;}
.y11{bottom:567.975333pt;}
.yb8{bottom:570.342533pt;}
.y44{bottom:570.462533pt;}
.y111{bottom:570.464533pt;}
.ye4{bottom:574.584133pt;}
.y184{bottom:578.012000pt;}
.y143{bottom:578.014133pt;}
.y8d{bottom:583.549733pt;}
.y10{bottom:583.975333pt;}
.yb7{bottom:586.342533pt;}
.y43{bottom:586.462533pt;}
.y110{bottom:586.464533pt;}
.ye3{bottom:587.382133pt;}
.y183{bottom:591.345333pt;}
.y142{bottom:591.347467pt;}
.y8e{bottom:598.216400pt;}
.yf{bottom:599.975333pt;}
.ye2{bottom:600.180133pt;}
.yb6{bottom:602.342533pt;}
.y42{bottom:602.462533pt;}
.y10f{bottom:602.464533pt;}
.y182{bottom:604.678667pt;}
.y141{bottom:604.680800pt;}
.ye1{bottom:612.978133pt;}
.y181{bottom:618.012000pt;}
.y140{bottom:618.014133pt;}
.yb5{bottom:618.342533pt;}
.y41{bottom:618.462533pt;}
.y10e{bottom:618.464533pt;}
.ye0{bottom:625.776133pt;}
.y8c{bottom:627.009200pt;}
.y180{bottom:631.345333pt;}
.y13f{bottom:631.347467pt;}
.yb4{bottom:634.342533pt;}
.y40{bottom:634.462533pt;}
.y10d{bottom:634.464533pt;}
.ydf{bottom:638.574133pt;}
.ye{bottom:640.115867pt;}
.y8b{bottom:644.342533pt;}
.y17f{bottom:644.678667pt;}
.y13e{bottom:644.680800pt;}
.yb3{bottom:650.342533pt;}
.y3f{bottom:650.462533pt;}
.y10c{bottom:650.464533pt;}
.yd{bottom:651.183200pt;}
.yde{bottom:651.372133pt;}
.y17e{bottom:658.012000pt;}
.y13d{bottom:658.014133pt;}
.y8a{bottom:661.675867pt;}
.ydd{bottom:664.170133pt;}
.y3e{bottom:666.462533pt;}
.y10b{bottom:666.464533pt;}
.y17d{bottom:671.345333pt;}
.y13c{bottom:671.347467pt;}
.ydc{bottom:676.968133pt;}
.yb2{bottom:681.982533pt;}
.y3d{bottom:682.462533pt;}
.y10a{bottom:682.464533pt;}
.yc{bottom:684.197200pt;}
.y17c{bottom:684.678667pt;}
.y13b{bottom:684.680800pt;}
.ydb{bottom:689.766133pt;}
.yb{bottom:691.374800pt;}
.y17b{bottom:698.012000pt;}
.y13a{bottom:698.014133pt;}
.y89{bottom:698.342533pt;}
.y3c{bottom:698.462533pt;}
.y109{bottom:698.464533pt;}
.yda{bottom:702.564133pt;}
.ya{bottom:708.197200pt;}
.y17a{bottom:711.345333pt;}
.y139{bottom:711.347467pt;}
.y88{bottom:714.342533pt;}
.y3b{bottom:714.462533pt;}
.y108{bottom:714.464533pt;}
.yd9{bottom:715.362133pt;}
.y9{bottom:715.374800pt;}
.y179{bottom:724.678667pt;}
.y138{bottom:724.680800pt;}
.yd8{bottom:728.160133pt;}
.y87{bottom:730.342533pt;}
.y3a{bottom:730.462533pt;}
.y107{bottom:730.464533pt;}
.y8{bottom:732.197200pt;}
.y178{bottom:738.012000pt;}
.y137{bottom:738.014133pt;}
.y86{bottom:746.342533pt;}
.y39{bottom:746.462533pt;}
.y106{bottom:746.464533pt;}
.y177{bottom:751.345333pt;}
.y136{bottom:751.347467pt;}
.y7{bottom:757.728000pt;}
.y85{bottom:762.342533pt;}
.y38{bottom:762.462533pt;}
.y105{bottom:762.464533pt;}
.y176{bottom:764.678667pt;}
.y135{bottom:764.680800pt;}
.y175{bottom:778.012000pt;}
.y134{bottom:778.014133pt;}
.y84{bottom:778.342533pt;}
.y37{bottom:778.462533pt;}
.y104{bottom:778.464533pt;}
.y174{bottom:791.345333pt;}
.y133{bottom:791.347467pt;}
.y64{bottom:794.102533pt;}
.y83{bottom:794.342533pt;}
.y36{bottom:794.462533pt;}
.y103{bottom:794.464533pt;}
.y6{bottom:798.761467pt;}
.y173{bottom:804.678667pt;}
.y132{bottom:804.680800pt;}
.y82{bottom:810.342533pt;}
.y35{bottom:810.462533pt;}
.y102{bottom:810.464533pt;}
.y172{bottom:818.012000pt;}
.y131{bottom:818.014133pt;}
.y63{bottom:825.982533pt;}
.y81{bottom:826.342533pt;}
.y34{bottom:826.462533pt;}
.y101{bottom:826.464533pt;}
.y5{bottom:831.171067pt;}
.y171{bottom:831.345333pt;}
.y130{bottom:831.347467pt;}
.y33{bottom:842.462533pt;}
.y100{bottom:842.464533pt;}
.y170{bottom:844.678667pt;}
.y12f{bottom:844.680800pt;}
.y80{bottom:857.982533pt;}
.y16f{bottom:858.012000pt;}
.y12e{bottom:858.014133pt;}
.y32{bottom:858.462533pt;}
.yff{bottom:858.464533pt;}
.y4{bottom:863.580667pt;}
.y16e{bottom:871.345333pt;}
.y12d{bottom:871.347467pt;}
.y31{bottom:874.462533pt;}
.yfe{bottom:874.464533pt;}
.y16d{bottom:884.678667pt;}
.y12c{bottom:884.680800pt;}
.y30{bottom:890.462533pt;}
.yfd{bottom:890.464533pt;}
.y3{bottom:895.990267pt;}
.y16c{bottom:898.012000pt;}
.y12b{bottom:898.014133pt;}
.y2f{bottom:906.462533pt;}
.y16b{bottom:911.345333pt;}
.y12a{bottom:911.347467pt;}
.y7b{bottom:922.102533pt;}
.y7a{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.y16a{bottom:924.678667pt;}
.y129{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y7f{bottom:1006.590533pt;}
.yc3{bottom:1006.593733pt;}
.y79{bottom:1006.594400pt;}
.y169{bottom:1006.598667pt;}
.yfc{bottom:1006.612667pt;}
.yb1{bottom:1006.615467pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hf{height:29.121094pt;}
.h7{height:29.160156pt;}
.h14{height:29.625000pt;}
.h1d{height:29.637300pt;}
.h15{height:29.645833pt;}
.h19{height:30.715365pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h1c{height:31.174252pt;}
.h17{height:31.284986pt;}
.he{height:37.031250pt;}
.h12{height:37.057292pt;}
.h1a{height:37.472901pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.hd{height:38.859942pt;}
.ha{height:38.880208pt;}
.h13{height:46.682552pt;}
.h16{height:46.711885pt;}
.hc{height:48.377313pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h18{height:240.030667pt;}
.h1b{height:281.522667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:419.830667pt;}
.w3{width:486.578667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:11.438667pt;}
.x44{left:21.696000pt;}
.x3d{left:31.602667pt;}
.xa{left:68.031467pt;}
.x16{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x49{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x4b{left:109.606267pt;}
.x3{left:111.490533pt;}
.x6{left:117.165333pt;}
.x13{left:122.654667pt;}
.x43{left:163.010667pt;}
.x47{left:169.006667pt;}
.x48{left:172.700000pt;}
.x29{left:175.557067pt;}
.x3c{left:177.486667pt;}
.x42{left:184.706667pt;}
.x5{left:189.223467pt;}
.x3b{left:200.124885pt;}
.x3a{left:209.089333pt;}
.x45{left:212.623333pt;}
.x3e{left:216.829867pt;}
.x2b{left:296.805067pt;}
.x17{left:299.553200pt;}
.x18{left:301.921200pt;}
.x2a{left:304.559733pt;}
.x2d{left:334.597067pt;}
.x19{left:337.345200pt;}
.x1a{left:339.713200pt;}
.x2c{left:342.149067pt;}
.x40{left:353.827600pt;}
.x2f{left:372.389067pt;}
.x1b{left:375.137200pt;}
.x1c{left:377.505200pt;}
.x2e{left:379.941067pt;}
.x46{left:381.446267pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x31{left:410.181067pt;}
.x1d{left:412.929200pt;}
.x1e{left:415.297200pt;}
.x30{left:417.733067pt;}
.x11{left:425.192000pt;}
.x7{left:427.085333pt;}
.x4a{left:428.970133pt;}
.xe{left:436.538133pt;}
.x32{left:447.973067pt;}
.x1f{left:450.721200pt;}
.x12{left:455.432000pt;}
.xd{left:466.911467pt;}
.x21{left:485.750533pt;}
.x20{left:488.513200pt;}
.x33{left:493.317067pt;}
.x41{left:496.440933pt;}
.x22{left:523.339867pt;}
.x15{left:525.911467pt;}
.x35{left:527.557067pt;}
.x34{left:531.109067pt;}
.x39{left:533.954400pt;}
.x24{left:561.131867pt;}
.x23{left:564.097200pt;}
.x36{left:569.103733pt;}
.x10{left:589.770933pt;}
.x26{left:598.923867pt;}
.x25{left:601.889200pt;}
.x37{left:606.693067pt;}
.x2{left:616.324800pt;}
.x28{left:636.715867pt;}
.x27{left:639.681200pt;}
.x38{left:644.485067pt;}
.xf{left:653.391467pt;}
.x14{left:672.286667pt;}
}




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