
    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_a42c9cc1b89670d613272127.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_07627fa652491f59fe781b24.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_a1ac442a79b1a56f944c626e.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_86f8b6697666ed3a19720b51.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6e62d2fb382d298ad26415e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a6f059e2247dceb231fc724c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0c88bfdfe864c690b6f9684e.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_ac6aedf7f1d2ac92088aaf3a.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_0dffeb3a076e09adc818083d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5815e97d3d40ffbbf99445e9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_619e2717c45fec0706ef2452.woff2')format("woff");}.ffb{font-family:ffb;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:-15.442800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:15.956400px;}
.v3{vertical-align:19.852200px;}
.v1{vertical-align:21.619200px;}
.ls51{letter-spacing:-3.300000px;}
.ls40{letter-spacing:-2.640000px;}
.ls9{letter-spacing:-2.025600px;}
.ls60{letter-spacing:-1.776000px;}
.lsa{letter-spacing:-1.266000px;}
.ls55{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.780000px;}
.ls53{letter-spacing:-0.480000px;}
.ls52{letter-spacing:-0.300000px;}
.ls3f{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.180000px;}
.ls3d{letter-spacing:-0.120000px;}
.ls59{letter-spacing:-0.096000px;}
.ls3b{letter-spacing:-0.060000px;}
.ls80{letter-spacing:-0.048000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004200px;}
.ls5b{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.120000px;}
.ls67{letter-spacing:0.134400px;}
.ls73{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.192000px;}
.ls34{letter-spacing:0.240000px;}
.ls65{letter-spacing:0.260400px;}
.ls17{letter-spacing:0.300000px;}
.ls68{letter-spacing:0.336000px;}
.lse{letter-spacing:0.360000px;}
.ls54{letter-spacing:0.384000px;}
.ls29{letter-spacing:0.420000px;}
.ls2f{letter-spacing:0.480000px;}
.ls4d{letter-spacing:0.540000px;}
.ls84{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.600000px;}
.ls5a{letter-spacing:0.624000px;}
.ls3e{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.660000px;}
.ls25{letter-spacing:0.720000px;}
.ls63{letter-spacing:0.742200px;}
.ls58{letter-spacing:0.768000px;}
.ls2a{letter-spacing:0.780000px;}
.ls6e{letter-spacing:0.816000px;}
.ls19{letter-spacing:0.840000px;}
.ls66{letter-spacing:0.859200px;}
.ls2c{letter-spacing:0.900000px;}
.ls85{letter-spacing:0.912000px;}
.ls10{letter-spacing:0.960000px;}
.ls7b{letter-spacing:1.008000px;}
.ls3a{letter-spacing:1.020000px;}
.ls33{letter-spacing:1.080000px;}
.ls6d{letter-spacing:1.104000px;}
.ls2d{letter-spacing:1.140000px;}
.ls7c{letter-spacing:1.152000px;}
.lsd{letter-spacing:1.200000px;}
.ls76{letter-spacing:1.248000px;}
.ls43{letter-spacing:1.260000px;}
.ls36{letter-spacing:1.320000px;}
.ls7e{letter-spacing:1.344000px;}
.ls1d{letter-spacing:1.380000px;}
.ls6b{letter-spacing:1.392000px;}
.ls39{letter-spacing:1.440000px;}
.ls81{letter-spacing:1.488000px;}
.ls26{letter-spacing:1.500000px;}
.ls70{letter-spacing:1.536000px;}
.ls4b{letter-spacing:1.560000px;}
.ls86{letter-spacing:1.584000px;}
.ls30{letter-spacing:1.620000px;}
.ls38{letter-spacing:1.680000px;}
.ls44{letter-spacing:1.740000px;}
.lsf{letter-spacing:1.800000px;}
.ls56{letter-spacing:1.860000px;}
.ls62{letter-spacing:1.866600px;}
.ls75{letter-spacing:1.872000px;}
.ls16{letter-spacing:1.920000px;}
.ls77{letter-spacing:1.968000px;}
.ls3{letter-spacing:1.980000px;}
.ls2b{letter-spacing:2.040000px;}
.ls2{letter-spacing:2.100000px;}
.ls35{letter-spacing:2.160000px;}
.ls6c{letter-spacing:2.208000px;}
.ls48{letter-spacing:2.220000px;}
.ls7a{letter-spacing:2.256000px;}
.ls11{letter-spacing:2.280000px;}
.ls4a{letter-spacing:2.340000px;}
.ls18{letter-spacing:2.400000px;}
.ls47{letter-spacing:2.460000px;}
.ls12{letter-spacing:2.520000px;}
.ls1c{letter-spacing:2.580000px;}
.ls42{letter-spacing:2.640000px;}
.ls1b{letter-spacing:2.700000px;}
.ls5d{letter-spacing:2.760000px;}
.ls7d{letter-spacing:2.784000px;}
.ls14{letter-spacing:2.820000px;}
.ls21{letter-spacing:2.880000px;}
.ls71{letter-spacing:2.928000px;}
.ls61{letter-spacing:2.940000px;}
.ls83{letter-spacing:2.976000px;}
.ls15{letter-spacing:3.000000px;}
.ls78{letter-spacing:3.024000px;}
.ls4f{letter-spacing:3.060000px;}
.ls27{letter-spacing:3.120000px;}
.ls31{letter-spacing:3.180000px;}
.ls72{letter-spacing:3.216000px;}
.ls64{letter-spacing:3.360000px;}
.ls24{letter-spacing:3.420000px;}
.ls1a{letter-spacing:3.480000px;}
.ls74{letter-spacing:3.552000px;}
.ls50{letter-spacing:3.600000px;}
.ls7f{letter-spacing:3.660000px;}
.ls28{letter-spacing:3.720000px;}
.ls20{letter-spacing:3.780000px;}
.ls2e{letter-spacing:3.840000px;}
.ls4c{letter-spacing:3.900000px;}
.ls37{letter-spacing:4.080000px;}
.ls49{letter-spacing:4.140000px;}
.ls79{letter-spacing:4.176000px;}
.ls1f{letter-spacing:4.380000px;}
.ls6a{letter-spacing:4.440000px;}
.ls82{letter-spacing:4.656000px;}
.ls22{letter-spacing:4.680000px;}
.ls32{letter-spacing:4.800000px;}
.ls23{letter-spacing:4.860000px;}
.ls46{letter-spacing:4.920000px;}
.ls87{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.160000px;}
.ls41{letter-spacing:5.220000px;}
.ls5e{letter-spacing:6.060000px;}
.ls5c{letter-spacing:6.300000px;}
.lsc{letter-spacing:7.080000px;}
.ls4e{letter-spacing:7.500000px;}
.ls69{letter-spacing:7.560000px;}
.ls6f{letter-spacing:7.920000px;}
.ls45{letter-spacing:12.240000px;}
.ls5f{letter-spacing:531.216000px;}
.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;}
}
.ws2c{word-spacing:-20.220000px;}
.wsa2{word-spacing:-19.320000px;}
.wsb7{word-spacing:-17.880000px;}
.wsb{word-spacing:-17.280000px;}
.ws39{word-spacing:-17.220000px;}
.ws98{word-spacing:-16.920000px;}
.ws2d{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.wsb6{word-spacing:-16.656000px;}
.ws7a{word-spacing:-16.440000px;}
.ws67{word-spacing:-16.260000px;}
.ws4b{word-spacing:-16.200000px;}
.ws97{word-spacing:-16.140000px;}
.wsd{word-spacing:-16.080000px;}
.ws5d{word-spacing:-15.960000px;}
.ws5e{word-spacing:-15.900000px;}
.wsc{word-spacing:-15.840000px;}
.ws49{word-spacing:-15.540000px;}
.ws3a{word-spacing:-15.480000px;}
.ws7c{word-spacing:-15.360000px;}
.ws9a{word-spacing:-15.180000px;}
.ws3b{word-spacing:-15.000000px;}
.ws7b{word-spacing:-14.940000px;}
.ws5f{word-spacing:-14.880000px;}
.ws3{word-spacing:-13.344000px;}
.wsa4{word-spacing:-13.152000px;}
.wsa3{word-spacing:-13.104000px;}
.wsb5{word-spacing:-12.816000px;}
.ws88{word-spacing:-12.624000px;}
.ws2{word-spacing:-12.510000px;}
.ws73{word-spacing:-12.384000px;}
.ws33{word-spacing:-12.240000px;}
.ws90{word-spacing:-12.048000px;}
.ws4c{word-spacing:-12.000000px;}
.ws4a{word-spacing:-11.700000px;}
.ws0{word-spacing:-10.508400px;}
.ws19{word-spacing:-9.648000px;}
.ws1a{word-spacing:-9.360000px;}
.ws9b{word-spacing:-9.000000px;}
.ws52{word-spacing:-7.500000px;}
.ws4d{word-spacing:-7.200000px;}
.ws34{word-spacing:-4.920000px;}
.wsb9{word-spacing:-4.656000px;}
.wsad{word-spacing:-3.840000px;}
.wsc1{word-spacing:-3.600000px;}
.wsb0{word-spacing:-3.552000px;}
.ws59{word-spacing:-3.060000px;}
.ws9c{word-spacing:-2.940000px;}
.ws5{word-spacing:-2.886000px;}
.ws70{word-spacing:-2.820000px;}
.wsaf{word-spacing:-2.640000px;}
.wsa6{word-spacing:-2.400000px;}
.wsf{word-spacing:-2.280000px;}
.ws83{word-spacing:-2.220000px;}
.ws82{word-spacing:-1.860000px;}
.ws91{word-spacing:-1.800000px;}
.ws5a{word-spacing:-1.560000px;}
.wsa0{word-spacing:-1.500000px;}
.wsab{word-spacing:-1.392000px;}
.ws10{word-spacing:-1.380000px;}
.ws92{word-spacing:-1.320000px;}
.ws2f{word-spacing:-1.260000px;}
.ws57{word-spacing:-1.200000px;}
.wsc2{word-spacing:-1.140000px;}
.wsac{word-spacing:-1.104000px;}
.ws8{word-spacing:-1.080000px;}
.wsb3{word-spacing:-0.960000px;}
.ws32{word-spacing:-0.900000px;}
.ws78{word-spacing:-0.864000px;}
.ws1c{word-spacing:-0.840000px;}
.wsb8{word-spacing:-0.816000px;}
.ws8f{word-spacing:-0.780000px;}
.ws58{word-spacing:-0.660000px;}
.ws8d{word-spacing:-0.624000px;}
.ws45{word-spacing:-0.600000px;}
.wsba{word-spacing:-0.576000px;}
.ws74{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.480000px;}
.ws46{word-spacing:-0.420000px;}
.ws76{word-spacing:-0.384000px;}
.ws72{word-spacing:-0.360000px;}
.ws1f{word-spacing:-0.300000px;}
.ws1d{word-spacing:-0.240000px;}
.ws87{word-spacing:-0.192000px;}
.ws51{word-spacing:-0.180000px;}
.wsbc{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.120000px;}
.ws11{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws2b{word-spacing:0.048000px;}
.wse{word-spacing:0.060000px;}
.ws38{word-spacing:0.096000px;}
.ws26{word-spacing:0.120000px;}
.ws2a{word-spacing:0.144000px;}
.ws7{word-spacing:0.180000px;}
.ws36{word-spacing:0.240000px;}
.ws61{word-spacing:0.300000px;}
.ws95{word-spacing:0.360000px;}
.ws75{word-spacing:0.432000px;}
.ws93{word-spacing:0.480000px;}
.ws81{word-spacing:0.540000px;}
.ws18{word-spacing:0.600000px;}
.ws31{word-spacing:0.720000px;}
.ws60{word-spacing:0.840000px;}
.ws79{word-spacing:0.864000px;}
.ws47{word-spacing:0.960000px;}
.ws53{word-spacing:1.020000px;}
.wsae{word-spacing:1.056000px;}
.ws4f{word-spacing:1.080000px;}
.ws42{word-spacing:1.140000px;}
.ws48{word-spacing:1.200000px;}
.wsc3{word-spacing:1.260000px;}
.ws6{word-spacing:1.266000px;}
.ws5b{word-spacing:1.380000px;}
.wsbd{word-spacing:1.392000px;}
.ws4e{word-spacing:1.500000px;}
.ws50{word-spacing:1.560000px;}
.ws77{word-spacing:1.584000px;}
.ws1b{word-spacing:1.620000px;}
.ws64{word-spacing:1.728000px;}
.ws13{word-spacing:1.800000px;}
.ws5c{word-spacing:1.824000px;}
.ws71{word-spacing:1.980000px;}
.ws66{word-spacing:2.016000px;}
.ws2e{word-spacing:2.040000px;}
.ws28{word-spacing:2.064000px;}
.ws24{word-spacing:2.100000px;}
.wsb4{word-spacing:2.112000px;}
.wsa1{word-spacing:2.220000px;}
.ws9f{word-spacing:2.280000px;}
.ws37{word-spacing:2.340000px;}
.ws29{word-spacing:2.400000px;}
.wsbb{word-spacing:2.496000px;}
.ws12{word-spacing:2.520000px;}
.ws80{word-spacing:2.580000px;}
.ws65{word-spacing:2.736000px;}
.ws9e{word-spacing:2.820000px;}
.ws16{word-spacing:2.880000px;}
.ws23{word-spacing:2.940000px;}
.ws30{word-spacing:3.000000px;}
.ws85{word-spacing:3.024000px;}
.ws35{word-spacing:3.060000px;}
.ws1e{word-spacing:3.120000px;}
.wsb2{word-spacing:3.216000px;}
.ws56{word-spacing:3.240000px;}
.wsa7{word-spacing:3.300000px;}
.wsb1{word-spacing:3.408000px;}
.ws21{word-spacing:3.420000px;}
.ws44{word-spacing:3.480000px;}
.ws96{word-spacing:3.540000px;}
.wsbf{word-spacing:3.600000px;}
.ws94{word-spacing:3.660000px;}
.ws20{word-spacing:3.720000px;}
.wsa5{word-spacing:3.780000px;}
.ws22{word-spacing:3.840000px;}
.ws25{word-spacing:3.900000px;}
.ws8e{word-spacing:3.936000px;}
.ws63{word-spacing:3.960000px;}
.ws86{word-spacing:3.984000px;}
.wsa8{word-spacing:4.140000px;}
.ws54{word-spacing:4.200000px;}
.wsaa{word-spacing:4.260000px;}
.ws17{word-spacing:4.320000px;}
.ws43{word-spacing:4.380000px;}
.ws84{word-spacing:4.440000px;}
.ws55{word-spacing:4.620000px;}
.ws27{word-spacing:4.680000px;}
.wsa9{word-spacing:4.740000px;}
.ws41{word-spacing:4.800000px;}
.ws9d{word-spacing:4.860000px;}
.wsa{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.ws62{word-spacing:5.520000px;}
.wsbe{word-spacing:5.580000px;}
.wsc0{word-spacing:6.600000px;}
.ws8b{word-spacing:266.640000px;}
.ws99{word-spacing:283.920000px;}
.ws6d{word-spacing:334.800000px;}
.ws6a{word-spacing:335.040000px;}
.ws6b{word-spacing:347.040000px;}
.ws8a{word-spacing:374.640000px;}
.ws7e{word-spacing:382.800000px;}
.ws69{word-spacing:383.040000px;}
.ws6f{word-spacing:383.055600px;}
.ws3d{word-spacing:598.560000px;}
.ws3c{word-spacing:622.560000px;}
.ws40{word-spacing:628.560000px;}
.ws3f{word-spacing:640.560000px;}
.ws3e{word-spacing:652.560000px;}
.ws89{word-spacing:769.200000px;}
.ws7d{word-spacing:905.568000px;}
.ws68{word-spacing:906.096000px;}
.ws7f{word-spacing:2462.928000px;}
.ws6e{word-spacing:2464.320000px;}
.ws6c{word-spacing:2465.184000px;}
.ws8c{word-spacing:2498.496000px;}
._b{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._2{margin-left:-26.712600px;}
._10{margin-left:-16.536000px;}
._1d{margin-left:-7.860000px;}
._5{margin-left:-6.744000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.600000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.179600px;}
._6{width:1.080000px;}
._9{width:2.370000px;}
._d{width:3.810000px;}
._a{width:4.980000px;}
._8{width:6.300000px;}
._7{width:8.040000px;}
._40{width:9.222000px;}
._12{width:10.764000px;}
._11{width:12.240000px;}
._1c{width:13.380000px;}
._f{width:16.584000px;}
._e{width:17.736000px;}
._2e{width:248.934000px;}
._15{width:278.160000px;}
._37{width:280.038000px;}
._33{width:290.640000px;}
._3e{width:302.592000px;}
._31{width:326.640000px;}
._30{width:344.640000px;}
._2a{width:348.192000px;}
._1b{width:360.144000px;}
._14{width:365.472000px;}
._29{width:371.040000px;}
._2f{width:374.640000px;}
._20{width:385.830000px;}
._3b{width:387.450000px;}
._3d{width:398.640000px;}
._23{width:407.040000px;}
._2d{width:410.208000px;}
._24{width:413.040000px;}
._22{width:419.040000px;}
._3f{width:511.440000px;}
._32{width:517.440000px;}
._39{width:519.216000px;}
._2c{width:526.560000px;}
._1f{width:547.104000px;}
._3c{width:571.440000px;}
._3a{width:583.440000px;}
._25{width:620.064000px;}
._1a{width:640.560000px;}
._19{width:652.560000px;}
._1e{width:663.456000px;}
._17{width:664.560000px;}
._21{width:778.176000px;}
._13{width:794.064000px;}
._34{width:928.032000px;}
._18{width:961.392000px;}
._16{width:997.392000px;}
._26{width:1063.152000px;}
._35{width:1338.672000px;}
._27{width:1542.192000px;}
._36{width:1750.176000px;}
._2b{width:1996.128000px;}
._28{width:1997.232000px;}
._38{width:2135.904000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.000000px;}
.fsb{font-size:28.800000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:37.800000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y98{bottom:82.988250px;}
.y11b{bottom:83.247750px;}
.y1d5{bottom:83.425200px;}
.yab{bottom:83.661150px;}
.y61{bottom:83.770350px;}
.y19c{bottom:84.055350px;}
.ye4{bottom:84.063000px;}
.y1b3{bottom:84.070350px;}
.y177{bottom:85.192500px;}
.y136{bottom:85.920900px;}
.y1c9{bottom:86.255550px;}
.y114{bottom:86.383350px;}
.y26{bottom:88.026750px;}
.y219{bottom:89.263500px;}
.ydd{bottom:89.538750px;}
.y97{bottom:98.732250px;}
.y11a{bottom:98.991750px;}
.y1d4{bottom:99.169200px;}
.yaa{bottom:99.405150px;}
.ye3{bottom:99.807000px;}
.y160{bottom:100.342200px;}
.y1db{bottom:101.365350px;}
.y176{bottom:101.440500px;}
.y60{bottom:101.770350px;}
.y19b{bottom:102.055350px;}
.y1b2{bottom:102.070350px;}
.y135{bottom:102.168900px;}
.y1c8{bottom:102.503550px;}
.y113{bottom:102.631350px;}
.y25{bottom:103.023000px;}
.y218{bottom:104.263500px;}
.ydc{bottom:104.934750px;}
.y96{bottom:114.476250px;}
.y1d3{bottom:114.913200px;}
.ya9{bottom:115.149150px;}
.ye2{bottom:115.551000px;}
.y15f{bottom:116.590200px;}
.y175{bottom:117.688500px;}
.y134{bottom:118.416900px;}
.y1c7{bottom:118.751550px;}
.y112{bottom:118.879350px;}
.y217{bottom:119.263500px;}
.y5f{bottom:119.770350px;}
.y19a{bottom:120.055350px;}
.y1b1{bottom:120.070350px;}
.ydb{bottom:120.330750px;}
.y95{bottom:130.220250px;}
.y1d2{bottom:130.657200px;}
.ye1{bottom:131.295000px;}
.y15e{bottom:132.838200px;}
.y174{bottom:133.936500px;}
.y216{bottom:134.263500px;}
.y133{bottom:134.664900px;}
.y1c6{bottom:134.999550px;}
.y111{bottom:135.127350px;}
.yda{bottom:135.726750px;}
.y5e{bottom:137.770350px;}
.y199{bottom:138.055350px;}
.y1b0{bottom:138.070350px;}
.y94{bottom:145.964250px;}
.y1d1{bottom:146.401200px;}
.ye0{bottom:147.039000px;}
.y15d{bottom:149.086200px;}
.y215{bottom:149.263500px;}
.y173{bottom:150.184500px;}
.y132{bottom:150.912900px;}
.yd9{bottom:151.122750px;}
.y1c5{bottom:151.247550px;}
.y110{bottom:151.375350px;}
.y1da{bottom:155.365350px;}
.y5d{bottom:155.770350px;}
.y198{bottom:156.055350px;}
.y1af{bottom:156.070350px;}
.y93{bottom:161.708250px;}
.y214{bottom:164.263500px;}
.y15c{bottom:165.334200px;}
.y10f{bottom:166.123350px;}
.y2a{bottom:166.189950px;}
.y172{bottom:166.432500px;}
.yd8{bottom:166.518750px;}
.y131{bottom:167.160900px;}
.y1c4{bottom:167.495550px;}
.y5c{bottom:173.770350px;}
.y197{bottom:174.055350px;}
.y1ae{bottom:174.070350px;}
.y213{bottom:179.263500px;}
.y15b{bottom:181.582200px;}
.yd7{bottom:181.914750px;}
.y171{bottom:182.680500px;}
.y130{bottom:183.408900px;}
.y1c3{bottom:183.743550px;}
.y10e{bottom:183.893100px;}
.y29{bottom:184.189950px;}
.y5b{bottom:191.770350px;}
.y196{bottom:192.055350px;}
.y1ad{bottom:192.070350px;}
.y212{bottom:194.263500px;}
.yd6{bottom:197.310750px;}
.y15a{bottom:197.830200px;}
.y170{bottom:198.928500px;}
.y12f{bottom:199.656900px;}
.y1c2{bottom:199.991550px;}
.y10d{bottom:200.141100px;}
.y28{bottom:202.189950px;}
.y211{bottom:209.263500px;}
.y5a{bottom:209.770350px;}
.y195{bottom:210.055350px;}
.y1ac{bottom:210.070350px;}
.yd5{bottom:212.706750px;}
.y159{bottom:214.078200px;}
.y16f{bottom:215.176500px;}
.y12e{bottom:215.904900px;}
.y1c1{bottom:216.239550px;}
.y10c{bottom:216.389100px;}
.y2c{bottom:220.189950px;}
.y210{bottom:224.263500px;}
.y1d9{bottom:227.365350px;}
.y59{bottom:227.770350px;}
.y194{bottom:228.055350px;}
.y1ab{bottom:228.070350px;}
.yd4{bottom:228.102750px;}
.y158{bottom:230.326200px;}
.y16e{bottom:231.424500px;}
.y12d{bottom:232.152900px;}
.y1c0{bottom:232.487550px;}
.y10b{bottom:232.637100px;}
.y27{bottom:237.784950px;}
.y2b{bottom:238.189950px;}
.y20f{bottom:239.263500px;}
.yd3{bottom:243.498750px;}
.y58{bottom:245.770350px;}
.y193{bottom:246.055350px;}
.y1aa{bottom:246.070350px;}
.y157{bottom:246.574200px;}
.y16d{bottom:247.672500px;}
.y12c{bottom:248.400900px;}
.y1bf{bottom:248.735550px;}
.y10a{bottom:248.885100px;}
.y20e{bottom:254.263500px;}
.yd2{bottom:258.894750px;}
.y156{bottom:262.822200px;}
.y68{bottom:263.770350px;}
.y16c{bottom:263.920500px;}
.y192{bottom:264.055350px;}
.y1a9{bottom:264.070350px;}
.y12b{bottom:264.648900px;}
.y1be{bottom:264.983550px;}
.y109{bottom:265.133100px;}
.y20d{bottom:269.263500px;}
.yd1{bottom:274.290750px;}
.y155{bottom:279.070200px;}
.y16b{bottom:280.168500px;}
.y1bd{bottom:281.231550px;}
.y57{bottom:281.365350px;}
.y67{bottom:281.770350px;}
.y261{bottom:281.772600px;}
.y191{bottom:282.055350px;}
.y1a8{bottom:282.070350px;}
.y20c{bottom:284.263500px;}
.y12a{bottom:287.280900px;}
.y108{bottom:287.765100px;}
.yd0{bottom:289.686750px;}
.y154{bottom:295.318200px;}
.y20b{bottom:299.263500px;}
.y56{bottom:299.365350px;}
.y66{bottom:299.770350px;}
.y190{bottom:300.055350px;}
.y1a7{bottom:300.070350px;}
.y16a{bottom:302.800500px;}
.y1bc{bottom:303.863550px;}
.y24{bottom:313.160250px;}
.y20a{bottom:314.263500px;}
.ycf{bottom:316.998750px;}
.y65{bottom:317.770350px;}
.y260{bottom:317.772600px;}
.y153{bottom:317.950200px;}
.y18f{bottom:318.055350px;}
.y1a6{bottom:318.070350px;}
.y129{bottom:319.690350px;}
.y107{bottom:320.156250px;}
.y209{bottom:329.263500px;}
.y169{bottom:335.191650px;}
.y55{bottom:335.230350px;}
.y64{bottom:335.770350px;}
.y25f{bottom:335.772600px;}
.y18e{bottom:336.055350px;}
.y1a5{bottom:336.070350px;}
.y1bb{bottom:336.254700px;}
.y128{bottom:339.190350px;}
.y106{bottom:339.656250px;}
.y23{bottom:340.505250px;}
.y152{bottom:340.582200px;}
.y208{bottom:344.263500px;}
.yce{bottom:344.310750px;}
.y1d8{bottom:353.365350px;}
.y63{bottom:353.770350px;}
.y18d{bottom:354.055350px;}
.y1a4{bottom:354.070350px;}
.y168{bottom:354.691650px;}
.y1ba{bottom:355.754700px;}
.y151{bottom:356.830200px;}
.y22{bottom:358.505250px;}
.y105{bottom:359.156250px;}
.y207{bottom:359.263500px;}
.ycd{bottom:371.622750px;}
.y62{bottom:371.770350px;}
.y25e{bottom:371.772600px;}
.y18c{bottom:372.055350px;}
.y1a3{bottom:372.070350px;}
.y150{bottom:373.078200px;}
.y206{bottom:374.263500px;}
.y21{bottom:376.505250px;}
.y13d{bottom:385.656900px;}
.ycc{bottom:387.018750px;}
.y205{bottom:389.263500px;}
.y14f{bottom:389.326200px;}
.y54{bottom:389.770350px;}
.y25d{bottom:389.772600px;}
.y125{bottom:389.920350px;}
.y18b{bottom:390.055350px;}
.y1a2{bottom:390.070350px;}
.y20{bottom:394.505250px;}
.y1ca{bottom:398.051550px;}
.y13c{bottom:401.400900px;}
.ycb{bottom:402.414750px;}
.y167{bottom:403.551300px;}
.y204{bottom:404.263500px;}
.y104{bottom:404.810700px;}
.y14e{bottom:405.574200px;}
.y53{bottom:407.770350px;}
.y25c{bottom:407.772600px;}
.y124{bottom:407.920350px;}
.y18a{bottom:408.055350px;}
.y1a1{bottom:408.070350px;}
.y1f{bottom:412.505250px;}
.y13b{bottom:417.144900px;}
.yca{bottom:417.810750px;}
.y203{bottom:419.263500px;}
.y166{bottom:419.295300px;}
.y103{bottom:421.058700px;}
.y14d{bottom:421.822200px;}
.y52{bottom:425.770350px;}
.y25b{bottom:425.772600px;}
.y123{bottom:425.920350px;}
.y189{bottom:426.055350px;}
.y1a0{bottom:426.070350px;}
.y1e{bottom:430.505250px;}
.y13a{bottom:432.888900px;}
.yc9{bottom:433.206750px;}
.y202{bottom:434.263500px;}
.y165{bottom:435.039300px;}
.y102{bottom:437.306700px;}
.y14c{bottom:438.070200px;}
.y51{bottom:443.770350px;}
.y122{bottom:443.920350px;}
.y188{bottom:444.055350px;}
.y19f{bottom:444.070350px;}
.y1d{bottom:448.505250px;}
.yc8{bottom:448.602750px;}
.y139{bottom:448.632900px;}
.y201{bottom:449.263500px;}
.y164{bottom:450.783300px;}
.y101{bottom:453.554700px;}
.y14b{bottom:454.318200px;}
.y50{bottom:461.770350px;}
.y25a{bottom:461.772600px;}
.y121{bottom:461.920350px;}
.y187{bottom:462.055350px;}
.yc7{bottom:463.998750px;}
.y200{bottom:464.263500px;}
.y138{bottom:464.376900px;}
.y1c{bottom:466.505250px;}
.y163{bottom:466.527300px;}
.y100{bottom:469.802700px;}
.y241{bottom:470.263500px;}
.y14a{bottom:470.566200px;}
.y1ff{bottom:479.263500px;}
.yc6{bottom:479.394750px;}
.y19e{bottom:479.665350px;}
.y4f{bottom:479.770350px;}
.y259{bottom:479.772600px;}
.y120{bottom:479.920350px;}
.ya8{bottom:479.935350px;}
.y186{bottom:480.055350px;}
.y137{bottom:480.120900px;}
.y1b{bottom:484.505250px;}
.y240{bottom:485.263500px;}
.yff{bottom:486.050700px;}
.y149{bottom:486.814200px;}
.y1fe{bottom:494.263500px;}
.yc5{bottom:494.790750px;}
.y1d7{bottom:497.365350px;}
.y19d{bottom:497.665350px;}
.y4e{bottom:497.770350px;}
.y79{bottom:497.920350px;}
.ya7{bottom:497.935350px;}
.y185{bottom:498.055350px;}
.y92{bottom:498.212100px;}
.y23f{bottom:500.263500px;}
.yfe{bottom:502.298700px;}
.y1a{bottom:502.505250px;}
.y148{bottom:503.062200px;}
.y1fd{bottom:509.263500px;}
.y23e{bottom:515.263500px;}
.y4d{bottom:515.770350px;}
.y258{bottom:515.772600px;}
.y78{bottom:515.920350px;}
.ya6{bottom:515.935350px;}
.y184{bottom:516.055350px;}
.y91{bottom:516.212100px;}
.yfd{bottom:518.546700px;}
.y147{bottom:519.310200px;}
.y19{bottom:520.505250px;}
.yc4{bottom:522.102750px;}
.y1fc{bottom:524.263500px;}
.y23d{bottom:530.263500px;}
.y1d0{bottom:533.635350px;}
.y4c{bottom:533.770350px;}
.y257{bottom:533.772600px;}
.y77{bottom:533.920350px;}
.y90{bottom:534.212100px;}
.yfc{bottom:534.794700px;}
.y146{bottom:535.558200px;}
.y18{bottom:538.505250px;}
.y1fb{bottom:539.263500px;}
.y23c{bottom:545.263500px;}
.ye6{bottom:546.099000px;}
.yc3{bottom:549.414750px;}
.yfb{bottom:551.042700px;}
.ya5{bottom:551.530350px;}
.y1cf{bottom:551.635350px;}
.y183{bottom:551.650350px;}
.y4b{bottom:551.770350px;}
.y256{bottom:551.772600px;}
.y76{bottom:551.920350px;}
.y1fa{bottom:554.263500px;}
.y17{bottom:556.505250px;}
.y145{bottom:558.190200px;}
.y23b{bottom:560.263500px;}
.ye5{bottom:561.843000px;}
.yfa{bottom:567.290700px;}
.y1f9{bottom:569.263500px;}
.ya4{bottom:569.530350px;}
.y1ce{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.y8f{bottom:569.807100px;}
.y75{bottom:569.920350px;}
.y16{bottom:574.505250px;}
.y23a{bottom:575.263500px;}
.yc2{bottom:580.975350px;}
.yf9{bottom:583.538700px;}
.y1f8{bottom:584.263500px;}
.y182{bottom:587.515350px;}
.y1cd{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.y255{bottom:587.772600px;}
.y74{bottom:587.920350px;}
.y239{bottom:590.263500px;}
.y144{bottom:590.581350px;}
.y15{bottom:592.505250px;}
.y119{bottom:598.438650px;}
.y1f7{bottom:599.263500px;}
.yc1{bottom:600.475350px;}
.y238{bottom:605.263500px;}
.y181{bottom:605.515350px;}
.y48{bottom:605.770350px;}
.y254{bottom:605.772600px;}
.ya3{bottom:605.785350px;}
.y73{bottom:605.920350px;}
.y8e{bottom:606.062100px;}
.yf8{bottom:606.170700px;}
.y143{bottom:610.081350px;}
.y14{bottom:610.505250px;}
.y118{bottom:614.182650px;}
.y1f6{bottom:614.263500px;}
.y237{bottom:620.263500px;}
.y1cc{bottom:623.230350px;}
.y47{bottom:623.770350px;}
.y253{bottom:623.772600px;}
.ya2{bottom:623.785350px;}
.y72{bottom:623.920350px;}
.y8d{bottom:624.062100px;}
.y13{bottom:628.505250px;}
.yf7{bottom:628.802700px;}
.y1f5{bottom:629.263500px;}
.y142{bottom:629.581350px;}
.y117{bottom:629.926650px;}
.y236{bottom:635.263500px;}
.y180{bottom:641.380350px;}
.y46{bottom:641.770350px;}
.ya1{bottom:641.785350px;}
.y71{bottom:641.920350px;}
.yc0{bottom:641.935350px;}
.y8c{bottom:642.062100px;}
.y1f4{bottom:644.263500px;}
.yf6{bottom:645.050700px;}
.y12{bottom:646.505250px;}
.y235{bottom:650.263500px;}
.y1f3{bottom:659.263500px;}
.y45{bottom:659.770350px;}
.y252{bottom:659.772600px;}
.ya0{bottom:659.785350px;}
.y70{bottom:659.920350px;}
.ybf{bottom:659.935350px;}
.y8b{bottom:660.062100px;}
.yf5{bottom:661.298700px;}
.y11{bottom:664.505250px;}
.y234{bottom:665.263500px;}
.y1f2{bottom:674.263500px;}
.yf4{bottom:677.546700px;}
.y44{bottom:677.770350px;}
.y251{bottom:677.772600px;}
.y9f{bottom:677.785350px;}
.y6f{bottom:677.920350px;}
.ybe{bottom:677.935350px;}
.y8a{bottom:678.062100px;}
.y233{bottom:680.263500px;}
.y10{bottom:682.505250px;}
.y141{bottom:683.720250px;}
.y1f1{bottom:689.263500px;}
.yf3{bottom:693.794700px;}
.y232{bottom:695.263500px;}
.y43{bottom:695.770350px;}
.y250{bottom:695.772600px;}
.y9e{bottom:695.785350px;}
.y6e{bottom:695.920350px;}
.ybd{bottom:695.935350px;}
.y89{bottom:696.062100px;}
.y140{bottom:699.464250px;}
.yf{bottom:700.505250px;}
.y1f0{bottom:704.263500px;}
.yf2{bottom:710.042700px;}
.y231{bottom:710.263500px;}
.y42{bottom:713.770350px;}
.y24f{bottom:713.772600px;}
.y6d{bottom:713.920350px;}
.ybc{bottom:713.935350px;}
.y88{bottom:714.062100px;}
.y13f{bottom:715.208250px;}
.ye{bottom:718.505250px;}
.y1ef{bottom:719.263500px;}
.y230{bottom:725.263500px;}
.yf1{bottom:726.290700px;}
.y9d{bottom:731.380350px;}
.y41{bottom:731.770350px;}
.y24e{bottom:731.772600px;}
.y6c{bottom:731.920350px;}
.ybb{bottom:731.935350px;}
.y87{bottom:732.062100px;}
.y1ee{bottom:734.263500px;}
.yd{bottom:736.505250px;}
.y22f{bottom:740.263500px;}
.yf0{bottom:742.538700px;}
.y1ed{bottom:749.263500px;}
.y9c{bottom:749.380350px;}
.y40{bottom:749.770350px;}
.y24d{bottom:749.772600px;}
.y6b{bottom:749.920350px;}
.yba{bottom:749.935350px;}
.y22e{bottom:755.263500px;}
.yef{bottom:758.786700px;}
.y1ec{bottom:764.263500px;}
.ydf{bottom:767.515350px;}
.y86{bottom:767.657100px;}
.y3f{bottom:767.770350px;}
.y24c{bottom:767.772600px;}
.yb0{bottom:767.920350px;}
.y1b9{bottom:767.935350px;}
.yc{bottom:769.640100px;}
.y22d{bottom:770.263500px;}
.yee{bottom:775.034700px;}
.y1eb{bottom:779.263500px;}
.y9b{bottom:785.230350px;}
.y22c{bottom:785.263500px;}
.y6a{bottom:785.515350px;}
.yb9{bottom:785.530350px;}
.y3e{bottom:785.770350px;}
.y24b{bottom:785.772600px;}
.yaf{bottom:785.920350px;}
.y1b8{bottom:785.935350px;}
.yed{bottom:791.282700px;}
.y1ea{bottom:794.263500px;}
.yb{bottom:794.968200px;}
.y22b{bottom:800.263500px;}
.yb8{bottom:803.530350px;}
.y3d{bottom:803.770350px;}
.y85{bottom:803.912100px;}
.yae{bottom:803.920350px;}
.yec{bottom:807.530700px;}
.y1e9{bottom:809.263500px;}
.y22a{bottom:815.263500px;}
.y1b7{bottom:821.530350px;}
.y3c{bottom:821.770350px;}
.y24a{bottom:821.772600px;}
.y84{bottom:821.912100px;}
.y11f{bottom:821.920350px;}
.y1e8{bottom:824.263500px;}
.yeb{bottom:830.162700px;}
.y229{bottom:830.263500px;}
.ya{bottom:830.544300px;}
.y1e7{bottom:839.263500px;}
.yad{bottom:839.515350px;}
.y1b6{bottom:839.530350px;}
.y3b{bottom:839.770350px;}
.y249{bottom:839.772600px;}
.yb7{bottom:839.785350px;}
.y83{bottom:839.912100px;}
.y17f{bottom:839.920350px;}
.y9{bottom:840.183600px;}
.y228{bottom:845.263500px;}
.y1e6{bottom:854.263500px;}
.y11e{bottom:857.515350px;}
.y8{bottom:857.544300px;}
.y3a{bottom:857.770350px;}
.yb6{bottom:857.785350px;}
.y17e{bottom:857.920350px;}
.y82{bottom:857.935350px;}
.y227{bottom:860.263500px;}
.yea{bottom:862.555350px;}
.y1e5{bottom:869.263500px;}
.y226{bottom:875.263500px;}
.y11d{bottom:875.515350px;}
.y39{bottom:875.770350px;}
.y248{bottom:875.772600px;}
.yb5{bottom:875.785350px;}
.y17d{bottom:875.920350px;}
.y81{bottom:875.935350px;}
.ye9{bottom:882.055350px;}
.y1e4{bottom:884.263500px;}
.y7{bottom:887.830950px;}
.y225{bottom:890.263500px;}
.y38{bottom:893.770350px;}
.y247{bottom:893.772600px;}
.yb4{bottom:893.785350px;}
.y17c{bottom:893.920350px;}
.y80{bottom:893.935350px;}
.y1e3{bottom:899.263500px;}
.ye8{bottom:901.555350px;}
.y224{bottom:905.263500px;}
.y1b5{bottom:911.515350px;}
.y37{bottom:911.770350px;}
.yb3{bottom:911.785350px;}
.y17b{bottom:911.920350px;}
.y1e2{bottom:914.263500px;}
.y223{bottom:920.263500px;}
.ye7{bottom:921.055350px;}
.y1e1{bottom:929.263500px;}
.y1b4{bottom:929.515350px;}
.y7f{bottom:929.530350px;}
.y36{bottom:929.770350px;}
.y246{bottom:929.772600px;}
.yb2{bottom:929.785350px;}
.y17a{bottom:929.920350px;}
.y6{bottom:934.004400px;}
.y222{bottom:935.263500px;}
.y1e0{bottom:944.263500px;}
.y35{bottom:947.770350px;}
.y245{bottom:947.772600px;}
.yb1{bottom:947.785350px;}
.y221{bottom:950.263500px;}
.y1df{bottom:959.263500px;}
.y220{bottom:965.263500px;}
.y179{bottom:965.515350px;}
.y34{bottom:965.770350px;}
.y7e{bottom:965.785350px;}
.y5{bottom:970.465200px;}
.y1de{bottom:974.263500px;}
.y21f{bottom:980.263500px;}
.y162{bottom:983.515350px;}
.y33{bottom:983.770350px;}
.y244{bottom:983.772600px;}
.y7d{bottom:983.785350px;}
.y1dd{bottom:989.263500px;}
.y21e{bottom:995.263500px;}
.y32{bottom:1001.770350px;}
.y243{bottom:1001.772600px;}
.y7c{bottom:1001.785350px;}
.y1dc{bottom:1004.263500px;}
.y4{bottom:1006.926000px;}
.y21d{bottom:1010.263500px;}
.y116{bottom:1019.365350px;}
.y127{bottom:1019.380350px;}
.y31{bottom:1019.770350px;}
.y7b{bottom:1019.785350px;}
.y21c{bottom:1025.263500px;}
.y9a{bottom:1037.365350px;}
.y242{bottom:1037.367600px;}
.y126{bottom:1037.380350px;}
.y30{bottom:1037.770350px;}
.y7a{bottom:1037.785350px;}
.y21b{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.618450px;}
.y69{bottom:1132.418700px;}
.y11c{bottom:1132.419750px;}
.y13e{bottom:1132.421700px;}
.y21a{bottom:1132.423500px;}
.yac{bottom:1132.425150px;}
.y115{bottom:1132.435350px;}
.y1d6{bottom:1132.441200px;}
.y99{bottom:1132.448250px;}
.y1cb{bottom:1132.463550px;}
.y178{bottom:1132.468500px;}
.yde{bottom:1132.506750px;}
.y161{bottom:1132.510200px;}
.y2e{bottom:1136.089500px;}
.y2d{bottom:1150.492500px;}
.h7{height:19.683105px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.761230px;}
.h8{height:32.805176px;}
.h11{height:33.351562px;}
.h4{height:34.945312px;}
.he{height:34.992188px;}
.h13{height:35.953275px;}
.h12{height:41.660156px;}
.h15{height:41.680453px;}
.hd{height:41.689453px;}
.hf{height:42.949219px;}
.ha{height:43.681641px;}
.hb{height:43.740234px;}
.h10{height:44.848294px;}
.h14{height:44.958872px;}
.h6{height:49.138634px;}
.h3{height:56.786133px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:70.582650px;}
.xb{left:76.535400px;}
.x17{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x5{left:104.173200px;}
.x3{left:106.724400px;}
.xc{left:110.551200px;}
.x20{left:123.307050px;}
.x4{left:125.433000px;}
.x7{left:131.816400px;}
.xd{left:144.736200px;}
.x6{left:212.876400px;}
.x1c{left:220.150350px;}
.x18{left:248.665350px;}
.xa{left:455.041500px;}
.xe{left:457.096200px;}
.x12{left:478.330350px;}
.x8{left:480.476400px;}
.x1f{left:482.598600px;}
.xf{left:491.116200px;}
.x13{left:512.350350px;}
.x1e{left:574.850400px;}
.x15{left:591.665400px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x19{left:721.717650px;}
.x10{left:728.391600px;}
.x1d{left:742.977600px;}
.x1b{left:744.117300px;}
.x14{left:749.659350px;}
@media print{
.v2{vertical-align:-13.726933pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:14.183467pt;}
.v3{vertical-align:17.646400pt;}
.v1{vertical-align:19.217067pt;}
.ls51{letter-spacing:-2.933333pt;}
.ls40{letter-spacing:-2.346667pt;}
.ls9{letter-spacing:-1.800533pt;}
.ls60{letter-spacing:-1.578667pt;}
.lsa{letter-spacing:-1.125333pt;}
.ls55{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.693333pt;}
.ls53{letter-spacing:-0.426667pt;}
.ls52{letter-spacing:-0.266667pt;}
.ls3f{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls3d{letter-spacing:-0.106667pt;}
.ls59{letter-spacing:-0.085333pt;}
.ls3b{letter-spacing:-0.053333pt;}
.ls80{letter-spacing:-0.042667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003733pt;}
.ls5b{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.106667pt;}
.ls67{letter-spacing:0.119467pt;}
.ls73{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.170667pt;}
.ls34{letter-spacing:0.213333pt;}
.ls65{letter-spacing:0.231467pt;}
.ls17{letter-spacing:0.266667pt;}
.ls68{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.320000pt;}
.ls54{letter-spacing:0.341333pt;}
.ls29{letter-spacing:0.373333pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls4d{letter-spacing:0.480000pt;}
.ls84{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.533333pt;}
.ls5a{letter-spacing:0.554667pt;}
.ls3e{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.586667pt;}
.ls25{letter-spacing:0.640000pt;}
.ls63{letter-spacing:0.659733pt;}
.ls58{letter-spacing:0.682667pt;}
.ls2a{letter-spacing:0.693333pt;}
.ls6e{letter-spacing:0.725333pt;}
.ls19{letter-spacing:0.746667pt;}
.ls66{letter-spacing:0.763733pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls85{letter-spacing:0.810667pt;}
.ls10{letter-spacing:0.853333pt;}
.ls7b{letter-spacing:0.896000pt;}
.ls3a{letter-spacing:0.906667pt;}
.ls33{letter-spacing:0.960000pt;}
.ls6d{letter-spacing:0.981333pt;}
.ls2d{letter-spacing:1.013333pt;}
.ls7c{letter-spacing:1.024000pt;}
.lsd{letter-spacing:1.066667pt;}
.ls76{letter-spacing:1.109333pt;}
.ls43{letter-spacing:1.120000pt;}
.ls36{letter-spacing:1.173333pt;}
.ls7e{letter-spacing:1.194667pt;}
.ls1d{letter-spacing:1.226667pt;}
.ls6b{letter-spacing:1.237333pt;}
.ls39{letter-spacing:1.280000pt;}
.ls81{letter-spacing:1.322667pt;}
.ls26{letter-spacing:1.333333pt;}
.ls70{letter-spacing:1.365333pt;}
.ls4b{letter-spacing:1.386667pt;}
.ls86{letter-spacing:1.408000pt;}
.ls30{letter-spacing:1.440000pt;}
.ls38{letter-spacing:1.493333pt;}
.ls44{letter-spacing:1.546667pt;}
.lsf{letter-spacing:1.600000pt;}
.ls56{letter-spacing:1.653333pt;}
.ls62{letter-spacing:1.659200pt;}
.ls75{letter-spacing:1.664000pt;}
.ls16{letter-spacing:1.706667pt;}
.ls77{letter-spacing:1.749333pt;}
.ls3{letter-spacing:1.760000pt;}
.ls2b{letter-spacing:1.813333pt;}
.ls2{letter-spacing:1.866667pt;}
.ls35{letter-spacing:1.920000pt;}
.ls6c{letter-spacing:1.962667pt;}
.ls48{letter-spacing:1.973333pt;}
.ls7a{letter-spacing:2.005333pt;}
.ls11{letter-spacing:2.026667pt;}
.ls4a{letter-spacing:2.080000pt;}
.ls18{letter-spacing:2.133333pt;}
.ls47{letter-spacing:2.186667pt;}
.ls12{letter-spacing:2.240000pt;}
.ls1c{letter-spacing:2.293333pt;}
.ls42{letter-spacing:2.346667pt;}
.ls1b{letter-spacing:2.400000pt;}
.ls5d{letter-spacing:2.453333pt;}
.ls7d{letter-spacing:2.474667pt;}
.ls14{letter-spacing:2.506667pt;}
.ls21{letter-spacing:2.560000pt;}
.ls71{letter-spacing:2.602667pt;}
.ls61{letter-spacing:2.613333pt;}
.ls83{letter-spacing:2.645333pt;}
.ls15{letter-spacing:2.666667pt;}
.ls78{letter-spacing:2.688000pt;}
.ls4f{letter-spacing:2.720000pt;}
.ls27{letter-spacing:2.773333pt;}
.ls31{letter-spacing:2.826667pt;}
.ls72{letter-spacing:2.858667pt;}
.ls64{letter-spacing:2.986667pt;}
.ls24{letter-spacing:3.040000pt;}
.ls1a{letter-spacing:3.093333pt;}
.ls74{letter-spacing:3.157333pt;}
.ls50{letter-spacing:3.200000pt;}
.ls7f{letter-spacing:3.253333pt;}
.ls28{letter-spacing:3.306667pt;}
.ls20{letter-spacing:3.360000pt;}
.ls2e{letter-spacing:3.413333pt;}
.ls4c{letter-spacing:3.466667pt;}
.ls37{letter-spacing:3.626667pt;}
.ls49{letter-spacing:3.680000pt;}
.ls79{letter-spacing:3.712000pt;}
.ls1f{letter-spacing:3.893333pt;}
.ls6a{letter-spacing:3.946667pt;}
.ls82{letter-spacing:4.138667pt;}
.ls22{letter-spacing:4.160000pt;}
.ls32{letter-spacing:4.266667pt;}
.ls23{letter-spacing:4.320000pt;}
.ls46{letter-spacing:4.373333pt;}
.ls87{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:4.586667pt;}
.ls41{letter-spacing:4.640000pt;}
.ls5e{letter-spacing:5.386667pt;}
.ls5c{letter-spacing:5.600000pt;}
.lsc{letter-spacing:6.293333pt;}
.ls4e{letter-spacing:6.666667pt;}
.ls69{letter-spacing:6.720000pt;}
.ls6f{letter-spacing:7.040000pt;}
.ls45{letter-spacing:10.880000pt;}
.ls5f{letter-spacing:472.192000pt;}
.ws2c{word-spacing:-17.973333pt;}
.wsa2{word-spacing:-17.173333pt;}
.wsb7{word-spacing:-15.893333pt;}
.wsb{word-spacing:-15.360000pt;}
.ws39{word-spacing:-15.306667pt;}
.ws98{word-spacing:-15.040000pt;}
.ws2d{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.wsb6{word-spacing:-14.805333pt;}
.ws7a{word-spacing:-14.613333pt;}
.ws67{word-spacing:-14.453333pt;}
.ws4b{word-spacing:-14.400000pt;}
.ws97{word-spacing:-14.346667pt;}
.wsd{word-spacing:-14.293333pt;}
.ws5d{word-spacing:-14.186667pt;}
.ws5e{word-spacing:-14.133333pt;}
.wsc{word-spacing:-14.080000pt;}
.ws49{word-spacing:-13.813333pt;}
.ws3a{word-spacing:-13.760000pt;}
.ws7c{word-spacing:-13.653333pt;}
.ws9a{word-spacing:-13.493333pt;}
.ws3b{word-spacing:-13.333333pt;}
.ws7b{word-spacing:-13.280000pt;}
.ws5f{word-spacing:-13.226667pt;}
.ws3{word-spacing:-11.861333pt;}
.wsa4{word-spacing:-11.690667pt;}
.wsa3{word-spacing:-11.648000pt;}
.wsb5{word-spacing:-11.392000pt;}
.ws88{word-spacing:-11.221333pt;}
.ws2{word-spacing:-11.120000pt;}
.ws73{word-spacing:-11.008000pt;}
.ws33{word-spacing:-10.880000pt;}
.ws90{word-spacing:-10.709333pt;}
.ws4c{word-spacing:-10.666667pt;}
.ws4a{word-spacing:-10.400000pt;}
.ws0{word-spacing:-9.340800pt;}
.ws19{word-spacing:-8.576000pt;}
.ws1a{word-spacing:-8.320000pt;}
.ws9b{word-spacing:-8.000000pt;}
.ws52{word-spacing:-6.666667pt;}
.ws4d{word-spacing:-6.400000pt;}
.ws34{word-spacing:-4.373333pt;}
.wsb9{word-spacing:-4.138667pt;}
.wsad{word-spacing:-3.413333pt;}
.wsc1{word-spacing:-3.200000pt;}
.wsb0{word-spacing:-3.157333pt;}
.ws59{word-spacing:-2.720000pt;}
.ws9c{word-spacing:-2.613333pt;}
.ws5{word-spacing:-2.565333pt;}
.ws70{word-spacing:-2.506667pt;}
.wsaf{word-spacing:-2.346667pt;}
.wsa6{word-spacing:-2.133333pt;}
.wsf{word-spacing:-2.026667pt;}
.ws83{word-spacing:-1.973333pt;}
.ws82{word-spacing:-1.653333pt;}
.ws91{word-spacing:-1.600000pt;}
.ws5a{word-spacing:-1.386667pt;}
.wsa0{word-spacing:-1.333333pt;}
.wsab{word-spacing:-1.237333pt;}
.ws10{word-spacing:-1.226667pt;}
.ws92{word-spacing:-1.173333pt;}
.ws2f{word-spacing:-1.120000pt;}
.ws57{word-spacing:-1.066667pt;}
.wsc2{word-spacing:-1.013333pt;}
.wsac{word-spacing:-0.981333pt;}
.ws8{word-spacing:-0.960000pt;}
.wsb3{word-spacing:-0.853333pt;}
.ws32{word-spacing:-0.800000pt;}
.ws78{word-spacing:-0.768000pt;}
.ws1c{word-spacing:-0.746667pt;}
.wsb8{word-spacing:-0.725333pt;}
.ws8f{word-spacing:-0.693333pt;}
.ws58{word-spacing:-0.586667pt;}
.ws8d{word-spacing:-0.554667pt;}
.ws45{word-spacing:-0.533333pt;}
.wsba{word-spacing:-0.512000pt;}
.ws74{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.426667pt;}
.ws46{word-spacing:-0.373333pt;}
.ws76{word-spacing:-0.341333pt;}
.ws72{word-spacing:-0.320000pt;}
.ws1f{word-spacing:-0.266667pt;}
.ws1d{word-spacing:-0.213333pt;}
.ws87{word-spacing:-0.170667pt;}
.ws51{word-spacing:-0.160000pt;}
.wsbc{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws11{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.042667pt;}
.wse{word-spacing:0.053333pt;}
.ws38{word-spacing:0.085333pt;}
.ws26{word-spacing:0.106667pt;}
.ws2a{word-spacing:0.128000pt;}
.ws7{word-spacing:0.160000pt;}
.ws36{word-spacing:0.213333pt;}
.ws61{word-spacing:0.266667pt;}
.ws95{word-spacing:0.320000pt;}
.ws75{word-spacing:0.384000pt;}
.ws93{word-spacing:0.426667pt;}
.ws81{word-spacing:0.480000pt;}
.ws18{word-spacing:0.533333pt;}
.ws31{word-spacing:0.640000pt;}
.ws60{word-spacing:0.746667pt;}
.ws79{word-spacing:0.768000pt;}
.ws47{word-spacing:0.853333pt;}
.ws53{word-spacing:0.906667pt;}
.wsae{word-spacing:0.938667pt;}
.ws4f{word-spacing:0.960000pt;}
.ws42{word-spacing:1.013333pt;}
.ws48{word-spacing:1.066667pt;}
.wsc3{word-spacing:1.120000pt;}
.ws6{word-spacing:1.125333pt;}
.ws5b{word-spacing:1.226667pt;}
.wsbd{word-spacing:1.237333pt;}
.ws4e{word-spacing:1.333333pt;}
.ws50{word-spacing:1.386667pt;}
.ws77{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.440000pt;}
.ws64{word-spacing:1.536000pt;}
.ws13{word-spacing:1.600000pt;}
.ws5c{word-spacing:1.621333pt;}
.ws71{word-spacing:1.760000pt;}
.ws66{word-spacing:1.792000pt;}
.ws2e{word-spacing:1.813333pt;}
.ws28{word-spacing:1.834667pt;}
.ws24{word-spacing:1.866667pt;}
.wsb4{word-spacing:1.877333pt;}
.wsa1{word-spacing:1.973333pt;}
.ws9f{word-spacing:2.026667pt;}
.ws37{word-spacing:2.080000pt;}
.ws29{word-spacing:2.133333pt;}
.wsbb{word-spacing:2.218667pt;}
.ws12{word-spacing:2.240000pt;}
.ws80{word-spacing:2.293333pt;}
.ws65{word-spacing:2.432000pt;}
.ws9e{word-spacing:2.506667pt;}
.ws16{word-spacing:2.560000pt;}
.ws23{word-spacing:2.613333pt;}
.ws30{word-spacing:2.666667pt;}
.ws85{word-spacing:2.688000pt;}
.ws35{word-spacing:2.720000pt;}
.ws1e{word-spacing:2.773333pt;}
.wsb2{word-spacing:2.858667pt;}
.ws56{word-spacing:2.880000pt;}
.wsa7{word-spacing:2.933333pt;}
.wsb1{word-spacing:3.029333pt;}
.ws21{word-spacing:3.040000pt;}
.ws44{word-spacing:3.093333pt;}
.ws96{word-spacing:3.146667pt;}
.wsbf{word-spacing:3.200000pt;}
.ws94{word-spacing:3.253333pt;}
.ws20{word-spacing:3.306667pt;}
.wsa5{word-spacing:3.360000pt;}
.ws22{word-spacing:3.413333pt;}
.ws25{word-spacing:3.466667pt;}
.ws8e{word-spacing:3.498667pt;}
.ws63{word-spacing:3.520000pt;}
.ws86{word-spacing:3.541333pt;}
.wsa8{word-spacing:3.680000pt;}
.ws54{word-spacing:3.733333pt;}
.wsaa{word-spacing:3.786667pt;}
.ws17{word-spacing:3.840000pt;}
.ws43{word-spacing:3.893333pt;}
.ws84{word-spacing:3.946667pt;}
.ws55{word-spacing:4.106667pt;}
.ws27{word-spacing:4.160000pt;}
.wsa9{word-spacing:4.213333pt;}
.ws41{word-spacing:4.266667pt;}
.ws9d{word-spacing:4.320000pt;}
.wsa{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.ws62{word-spacing:4.906667pt;}
.wsbe{word-spacing:4.960000pt;}
.wsc0{word-spacing:5.866667pt;}
.ws8b{word-spacing:237.013333pt;}
.ws99{word-spacing:252.373333pt;}
.ws6d{word-spacing:297.600000pt;}
.ws6a{word-spacing:297.813333pt;}
.ws6b{word-spacing:308.480000pt;}
.ws8a{word-spacing:333.013333pt;}
.ws7e{word-spacing:340.266667pt;}
.ws69{word-spacing:340.480000pt;}
.ws6f{word-spacing:340.493867pt;}
.ws3d{word-spacing:532.053333pt;}
.ws3c{word-spacing:553.386667pt;}
.ws40{word-spacing:558.720000pt;}
.ws3f{word-spacing:569.386667pt;}
.ws3e{word-spacing:580.053333pt;}
.ws89{word-spacing:683.733333pt;}
.ws7d{word-spacing:804.949333pt;}
.ws68{word-spacing:805.418667pt;}
.ws7f{word-spacing:2189.269333pt;}
.ws6e{word-spacing:2190.506667pt;}
.ws6c{word-spacing:2191.274667pt;}
.ws8c{word-spacing:2220.885333pt;}
._b{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._2{margin-left:-23.744533pt;}
._10{margin-left:-14.698667pt;}
._1d{margin-left:-6.986667pt;}
._5{margin-left:-5.994667pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.200000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.048533pt;}
._6{width:0.960000pt;}
._9{width:2.106667pt;}
._d{width:3.386667pt;}
._a{width:4.426667pt;}
._8{width:5.600000pt;}
._7{width:7.146667pt;}
._40{width:8.197333pt;}
._12{width:9.568000pt;}
._11{width:10.880000pt;}
._1c{width:11.893333pt;}
._f{width:14.741333pt;}
._e{width:15.765333pt;}
._2e{width:221.274667pt;}
._15{width:247.253333pt;}
._37{width:248.922667pt;}
._33{width:258.346667pt;}
._3e{width:268.970667pt;}
._31{width:290.346667pt;}
._30{width:306.346667pt;}
._2a{width:309.504000pt;}
._1b{width:320.128000pt;}
._14{width:324.864000pt;}
._29{width:329.813333pt;}
._2f{width:333.013333pt;}
._20{width:342.960000pt;}
._3b{width:344.400000pt;}
._3d{width:354.346667pt;}
._23{width:361.813333pt;}
._2d{width:364.629333pt;}
._24{width:367.146667pt;}
._22{width:372.480000pt;}
._3f{width:454.613333pt;}
._32{width:459.946667pt;}
._39{width:461.525333pt;}
._2c{width:468.053333pt;}
._1f{width:486.314667pt;}
._3c{width:507.946667pt;}
._3a{width:518.613333pt;}
._25{width:551.168000pt;}
._1a{width:569.386667pt;}
._19{width:580.053333pt;}
._1e{width:589.738667pt;}
._17{width:590.720000pt;}
._21{width:691.712000pt;}
._13{width:705.834667pt;}
._34{width:824.917333pt;}
._18{width:854.570667pt;}
._16{width:886.570667pt;}
._26{width:945.024000pt;}
._35{width:1189.930667pt;}
._27{width:1370.837333pt;}
._36{width:1555.712000pt;}
._2b{width:1774.336000pt;}
._28{width:1775.317333pt;}
._38{width:1898.581333pt;}
.fs6{font-size:24.000000pt;}
.fsb{font-size:25.600000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:33.600000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y98{bottom:73.767333pt;}
.y11b{bottom:73.998000pt;}
.y1d5{bottom:74.155733pt;}
.yab{bottom:74.365467pt;}
.y61{bottom:74.462533pt;}
.y19c{bottom:74.715867pt;}
.ye4{bottom:74.722667pt;}
.y1b3{bottom:74.729200pt;}
.y177{bottom:75.726667pt;}
.y136{bottom:76.374133pt;}
.y1c9{bottom:76.671600pt;}
.y114{bottom:76.785200pt;}
.y26{bottom:78.246000pt;}
.y219{bottom:79.345333pt;}
.ydd{bottom:79.590000pt;}
.y97{bottom:87.762000pt;}
.y11a{bottom:87.992667pt;}
.y1d4{bottom:88.150400pt;}
.yaa{bottom:88.360133pt;}
.ye3{bottom:88.717333pt;}
.y160{bottom:89.193067pt;}
.y1db{bottom:90.102533pt;}
.y176{bottom:90.169333pt;}
.y60{bottom:90.462533pt;}
.y19b{bottom:90.715867pt;}
.y1b2{bottom:90.729200pt;}
.y135{bottom:90.816800pt;}
.y1c8{bottom:91.114267pt;}
.y113{bottom:91.227867pt;}
.y25{bottom:91.576000pt;}
.y218{bottom:92.678667pt;}
.ydc{bottom:93.275333pt;}
.y96{bottom:101.756667pt;}
.y1d3{bottom:102.145067pt;}
.ya9{bottom:102.354800pt;}
.ye2{bottom:102.712000pt;}
.y15f{bottom:103.635733pt;}
.y175{bottom:104.612000pt;}
.y134{bottom:105.259467pt;}
.y1c7{bottom:105.556933pt;}
.y112{bottom:105.670533pt;}
.y217{bottom:106.012000pt;}
.y5f{bottom:106.462533pt;}
.y19a{bottom:106.715867pt;}
.y1b1{bottom:106.729200pt;}
.ydb{bottom:106.960667pt;}
.y95{bottom:115.751333pt;}
.y1d2{bottom:116.139733pt;}
.ye1{bottom:116.706667pt;}
.y15e{bottom:118.078400pt;}
.y174{bottom:119.054667pt;}
.y216{bottom:119.345333pt;}
.y133{bottom:119.702133pt;}
.y1c6{bottom:119.999600pt;}
.y111{bottom:120.113200pt;}
.yda{bottom:120.646000pt;}
.y5e{bottom:122.462533pt;}
.y199{bottom:122.715867pt;}
.y1b0{bottom:122.729200pt;}
.y94{bottom:129.746000pt;}
.y1d1{bottom:130.134400pt;}
.ye0{bottom:130.701333pt;}
.y15d{bottom:132.521067pt;}
.y215{bottom:132.678667pt;}
.y173{bottom:133.497333pt;}
.y132{bottom:134.144800pt;}
.yd9{bottom:134.331333pt;}
.y1c5{bottom:134.442267pt;}
.y110{bottom:134.555867pt;}
.y1da{bottom:138.102533pt;}
.y5d{bottom:138.462533pt;}
.y198{bottom:138.715867pt;}
.y1af{bottom:138.729200pt;}
.y93{bottom:143.740667pt;}
.y214{bottom:146.012000pt;}
.y15c{bottom:146.963733pt;}
.y10f{bottom:147.665200pt;}
.y2a{bottom:147.724400pt;}
.y172{bottom:147.940000pt;}
.yd8{bottom:148.016667pt;}
.y131{bottom:148.587467pt;}
.y1c4{bottom:148.884933pt;}
.y5c{bottom:154.462533pt;}
.y197{bottom:154.715867pt;}
.y1ae{bottom:154.729200pt;}
.y213{bottom:159.345333pt;}
.y15b{bottom:161.406400pt;}
.yd7{bottom:161.702000pt;}
.y171{bottom:162.382667pt;}
.y130{bottom:163.030133pt;}
.y1c3{bottom:163.327600pt;}
.y10e{bottom:163.460533pt;}
.y29{bottom:163.724400pt;}
.y5b{bottom:170.462533pt;}
.y196{bottom:170.715867pt;}
.y1ad{bottom:170.729200pt;}
.y212{bottom:172.678667pt;}
.yd6{bottom:175.387333pt;}
.y15a{bottom:175.849067pt;}
.y170{bottom:176.825333pt;}
.y12f{bottom:177.472800pt;}
.y1c2{bottom:177.770267pt;}
.y10d{bottom:177.903200pt;}
.y28{bottom:179.724400pt;}
.y211{bottom:186.012000pt;}
.y5a{bottom:186.462533pt;}
.y195{bottom:186.715867pt;}
.y1ac{bottom:186.729200pt;}
.yd5{bottom:189.072667pt;}
.y159{bottom:190.291733pt;}
.y16f{bottom:191.268000pt;}
.y12e{bottom:191.915467pt;}
.y1c1{bottom:192.212933pt;}
.y10c{bottom:192.345867pt;}
.y2c{bottom:195.724400pt;}
.y210{bottom:199.345333pt;}
.y1d9{bottom:202.102533pt;}
.y59{bottom:202.462533pt;}
.y194{bottom:202.715867pt;}
.y1ab{bottom:202.729200pt;}
.yd4{bottom:202.758000pt;}
.y158{bottom:204.734400pt;}
.y16e{bottom:205.710667pt;}
.y12d{bottom:206.358133pt;}
.y1c0{bottom:206.655600pt;}
.y10b{bottom:206.788533pt;}
.y27{bottom:211.364400pt;}
.y2b{bottom:211.724400pt;}
.y20f{bottom:212.678667pt;}
.yd3{bottom:216.443333pt;}
.y58{bottom:218.462533pt;}
.y193{bottom:218.715867pt;}
.y1aa{bottom:218.729200pt;}
.y157{bottom:219.177067pt;}
.y16d{bottom:220.153333pt;}
.y12c{bottom:220.800800pt;}
.y1bf{bottom:221.098267pt;}
.y10a{bottom:221.231200pt;}
.y20e{bottom:226.012000pt;}
.yd2{bottom:230.128667pt;}
.y156{bottom:233.619733pt;}
.y68{bottom:234.462533pt;}
.y16c{bottom:234.596000pt;}
.y192{bottom:234.715867pt;}
.y1a9{bottom:234.729200pt;}
.y12b{bottom:235.243467pt;}
.y1be{bottom:235.540933pt;}
.y109{bottom:235.673867pt;}
.y20d{bottom:239.345333pt;}
.yd1{bottom:243.814000pt;}
.y155{bottom:248.062400pt;}
.y16b{bottom:249.038667pt;}
.y1bd{bottom:249.983600pt;}
.y57{bottom:250.102533pt;}
.y67{bottom:250.462533pt;}
.y261{bottom:250.464533pt;}
.y191{bottom:250.715867pt;}
.y1a8{bottom:250.729200pt;}
.y20c{bottom:252.678667pt;}
.y12a{bottom:255.360800pt;}
.y108{bottom:255.791200pt;}
.yd0{bottom:257.499333pt;}
.y154{bottom:262.505067pt;}
.y20b{bottom:266.012000pt;}
.y56{bottom:266.102533pt;}
.y66{bottom:266.462533pt;}
.y190{bottom:266.715867pt;}
.y1a7{bottom:266.729200pt;}
.y16a{bottom:269.156000pt;}
.y1bc{bottom:270.100933pt;}
.y24{bottom:278.364667pt;}
.y20a{bottom:279.345333pt;}
.ycf{bottom:281.776667pt;}
.y65{bottom:282.462533pt;}
.y260{bottom:282.464533pt;}
.y153{bottom:282.622400pt;}
.y18f{bottom:282.715867pt;}
.y1a6{bottom:282.729200pt;}
.y129{bottom:284.169200pt;}
.y107{bottom:284.583333pt;}
.y209{bottom:292.678667pt;}
.y169{bottom:297.948133pt;}
.y55{bottom:297.982533pt;}
.y64{bottom:298.462533pt;}
.y25f{bottom:298.464533pt;}
.y18e{bottom:298.715867pt;}
.y1a5{bottom:298.729200pt;}
.y1bb{bottom:298.893067pt;}
.y128{bottom:301.502533pt;}
.y106{bottom:301.916667pt;}
.y23{bottom:302.671333pt;}
.y152{bottom:302.739733pt;}
.y208{bottom:306.012000pt;}
.yce{bottom:306.054000pt;}
.y1d8{bottom:314.102533pt;}
.y63{bottom:314.462533pt;}
.y18d{bottom:314.715867pt;}
.y1a4{bottom:314.729200pt;}
.y168{bottom:315.281467pt;}
.y1ba{bottom:316.226400pt;}
.y151{bottom:317.182400pt;}
.y22{bottom:318.671333pt;}
.y105{bottom:319.250000pt;}
.y207{bottom:319.345333pt;}
.ycd{bottom:330.331333pt;}
.y62{bottom:330.462533pt;}
.y25e{bottom:330.464533pt;}
.y18c{bottom:330.715867pt;}
.y1a3{bottom:330.729200pt;}
.y150{bottom:331.625067pt;}
.y206{bottom:332.678667pt;}
.y21{bottom:334.671333pt;}
.y13d{bottom:342.806133pt;}
.ycc{bottom:344.016667pt;}
.y205{bottom:346.012000pt;}
.y14f{bottom:346.067733pt;}
.y54{bottom:346.462533pt;}
.y25d{bottom:346.464533pt;}
.y125{bottom:346.595867pt;}
.y18b{bottom:346.715867pt;}
.y1a2{bottom:346.729200pt;}
.y20{bottom:350.671333pt;}
.y1ca{bottom:353.823600pt;}
.y13c{bottom:356.800800pt;}
.ycb{bottom:357.702000pt;}
.y167{bottom:358.712267pt;}
.y204{bottom:359.345333pt;}
.y104{bottom:359.831733pt;}
.y14e{bottom:360.510400pt;}
.y53{bottom:362.462533pt;}
.y25c{bottom:362.464533pt;}
.y124{bottom:362.595867pt;}
.y18a{bottom:362.715867pt;}
.y1a1{bottom:362.729200pt;}
.y1f{bottom:366.671333pt;}
.y13b{bottom:370.795467pt;}
.yca{bottom:371.387333pt;}
.y203{bottom:372.678667pt;}
.y166{bottom:372.706933pt;}
.y103{bottom:374.274400pt;}
.y14d{bottom:374.953067pt;}
.y52{bottom:378.462533pt;}
.y25b{bottom:378.464533pt;}
.y123{bottom:378.595867pt;}
.y189{bottom:378.715867pt;}
.y1a0{bottom:378.729200pt;}
.y1e{bottom:382.671333pt;}
.y13a{bottom:384.790133pt;}
.yc9{bottom:385.072667pt;}
.y202{bottom:386.012000pt;}
.y165{bottom:386.701600pt;}
.y102{bottom:388.717067pt;}
.y14c{bottom:389.395733pt;}
.y51{bottom:394.462533pt;}
.y122{bottom:394.595867pt;}
.y188{bottom:394.715867pt;}
.y19f{bottom:394.729200pt;}
.y1d{bottom:398.671333pt;}
.yc8{bottom:398.758000pt;}
.y139{bottom:398.784800pt;}
.y201{bottom:399.345333pt;}
.y164{bottom:400.696267pt;}
.y101{bottom:403.159733pt;}
.y14b{bottom:403.838400pt;}
.y50{bottom:410.462533pt;}
.y25a{bottom:410.464533pt;}
.y121{bottom:410.595867pt;}
.y187{bottom:410.715867pt;}
.yc7{bottom:412.443333pt;}
.y200{bottom:412.678667pt;}
.y138{bottom:412.779467pt;}
.y1c{bottom:414.671333pt;}
.y163{bottom:414.690933pt;}
.y100{bottom:417.602400pt;}
.y241{bottom:418.012000pt;}
.y14a{bottom:418.281067pt;}
.y1ff{bottom:426.012000pt;}
.yc6{bottom:426.128667pt;}
.y19e{bottom:426.369200pt;}
.y4f{bottom:426.462533pt;}
.y259{bottom:426.464533pt;}
.y120{bottom:426.595867pt;}
.ya8{bottom:426.609200pt;}
.y186{bottom:426.715867pt;}
.y137{bottom:426.774133pt;}
.y1b{bottom:430.671333pt;}
.y240{bottom:431.345333pt;}
.yff{bottom:432.045067pt;}
.y149{bottom:432.723733pt;}
.y1fe{bottom:439.345333pt;}
.yc5{bottom:439.814000pt;}
.y1d7{bottom:442.102533pt;}
.y19d{bottom:442.369200pt;}
.y4e{bottom:442.462533pt;}
.y79{bottom:442.595867pt;}
.ya7{bottom:442.609200pt;}
.y185{bottom:442.715867pt;}
.y92{bottom:442.855200pt;}
.y23f{bottom:444.678667pt;}
.yfe{bottom:446.487733pt;}
.y1a{bottom:446.671333pt;}
.y148{bottom:447.166400pt;}
.y1fd{bottom:452.678667pt;}
.y23e{bottom:458.012000pt;}
.y4d{bottom:458.462533pt;}
.y258{bottom:458.464533pt;}
.y78{bottom:458.595867pt;}
.ya6{bottom:458.609200pt;}
.y184{bottom:458.715867pt;}
.y91{bottom:458.855200pt;}
.yfd{bottom:460.930400pt;}
.y147{bottom:461.609067pt;}
.y19{bottom:462.671333pt;}
.yc4{bottom:464.091333pt;}
.y1fc{bottom:466.012000pt;}
.y23d{bottom:471.345333pt;}
.y1d0{bottom:474.342533pt;}
.y4c{bottom:474.462533pt;}
.y257{bottom:474.464533pt;}
.y77{bottom:474.595867pt;}
.y90{bottom:474.855200pt;}
.yfc{bottom:475.373067pt;}
.y146{bottom:476.051733pt;}
.y18{bottom:478.671333pt;}
.y1fb{bottom:479.345333pt;}
.y23c{bottom:484.678667pt;}
.ye6{bottom:485.421333pt;}
.yc3{bottom:488.368667pt;}
.yfb{bottom:489.815733pt;}
.ya5{bottom:490.249200pt;}
.y1cf{bottom:490.342533pt;}
.y183{bottom:490.355867pt;}
.y4b{bottom:490.462533pt;}
.y256{bottom:490.464533pt;}
.y76{bottom:490.595867pt;}
.y1fa{bottom:492.678667pt;}
.y17{bottom:494.671333pt;}
.y145{bottom:496.169067pt;}
.y23b{bottom:498.012000pt;}
.ye5{bottom:499.416000pt;}
.yfa{bottom:504.258400pt;}
.y1f9{bottom:506.012000pt;}
.ya4{bottom:506.249200pt;}
.y1ce{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.y8f{bottom:506.495200pt;}
.y75{bottom:506.595867pt;}
.y16{bottom:510.671333pt;}
.y23a{bottom:511.345333pt;}
.yc2{bottom:516.422533pt;}
.yf9{bottom:518.701067pt;}
.y1f8{bottom:519.345333pt;}
.y182{bottom:522.235867pt;}
.y1cd{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.y255{bottom:522.464533pt;}
.y74{bottom:522.595867pt;}
.y239{bottom:524.678667pt;}
.y144{bottom:524.961200pt;}
.y15{bottom:526.671333pt;}
.y119{bottom:531.945467pt;}
.y1f7{bottom:532.678667pt;}
.yc1{bottom:533.755867pt;}
.y238{bottom:538.012000pt;}
.y181{bottom:538.235867pt;}
.y48{bottom:538.462533pt;}
.y254{bottom:538.464533pt;}
.ya3{bottom:538.475867pt;}
.y73{bottom:538.595867pt;}
.y8e{bottom:538.721867pt;}
.yf8{bottom:538.818400pt;}
.y143{bottom:542.294533pt;}
.y14{bottom:542.671333pt;}
.y118{bottom:545.940133pt;}
.y1f6{bottom:546.012000pt;}
.y237{bottom:551.345333pt;}
.y1cc{bottom:553.982533pt;}
.y47{bottom:554.462533pt;}
.y253{bottom:554.464533pt;}
.ya2{bottom:554.475867pt;}
.y72{bottom:554.595867pt;}
.y8d{bottom:554.721867pt;}
.y13{bottom:558.671333pt;}
.yf7{bottom:558.935733pt;}
.y1f5{bottom:559.345333pt;}
.y142{bottom:559.627867pt;}
.y117{bottom:559.934800pt;}
.y236{bottom:564.678667pt;}
.y180{bottom:570.115867pt;}
.y46{bottom:570.462533pt;}
.ya1{bottom:570.475867pt;}
.y71{bottom:570.595867pt;}
.yc0{bottom:570.609200pt;}
.y8c{bottom:570.721867pt;}
.y1f4{bottom:572.678667pt;}
.yf6{bottom:573.378400pt;}
.y12{bottom:574.671333pt;}
.y235{bottom:578.012000pt;}
.y1f3{bottom:586.012000pt;}
.y45{bottom:586.462533pt;}
.y252{bottom:586.464533pt;}
.ya0{bottom:586.475867pt;}
.y70{bottom:586.595867pt;}
.ybf{bottom:586.609200pt;}
.y8b{bottom:586.721867pt;}
.yf5{bottom:587.821067pt;}
.y11{bottom:590.671333pt;}
.y234{bottom:591.345333pt;}
.y1f2{bottom:599.345333pt;}
.yf4{bottom:602.263733pt;}
.y44{bottom:602.462533pt;}
.y251{bottom:602.464533pt;}
.y9f{bottom:602.475867pt;}
.y6f{bottom:602.595867pt;}
.ybe{bottom:602.609200pt;}
.y8a{bottom:602.721867pt;}
.y233{bottom:604.678667pt;}
.y10{bottom:606.671333pt;}
.y141{bottom:607.751333pt;}
.y1f1{bottom:612.678667pt;}
.yf3{bottom:616.706400pt;}
.y232{bottom:618.012000pt;}
.y43{bottom:618.462533pt;}
.y250{bottom:618.464533pt;}
.y9e{bottom:618.475867pt;}
.y6e{bottom:618.595867pt;}
.ybd{bottom:618.609200pt;}
.y89{bottom:618.721867pt;}
.y140{bottom:621.746000pt;}
.yf{bottom:622.671333pt;}
.y1f0{bottom:626.012000pt;}
.yf2{bottom:631.149067pt;}
.y231{bottom:631.345333pt;}
.y42{bottom:634.462533pt;}
.y24f{bottom:634.464533pt;}
.y6d{bottom:634.595867pt;}
.ybc{bottom:634.609200pt;}
.y88{bottom:634.721867pt;}
.y13f{bottom:635.740667pt;}
.ye{bottom:638.671333pt;}
.y1ef{bottom:639.345333pt;}
.y230{bottom:644.678667pt;}
.yf1{bottom:645.591733pt;}
.y9d{bottom:650.115867pt;}
.y41{bottom:650.462533pt;}
.y24e{bottom:650.464533pt;}
.y6c{bottom:650.595867pt;}
.ybb{bottom:650.609200pt;}
.y87{bottom:650.721867pt;}
.y1ee{bottom:652.678667pt;}
.yd{bottom:654.671333pt;}
.y22f{bottom:658.012000pt;}
.yf0{bottom:660.034400pt;}
.y1ed{bottom:666.012000pt;}
.y9c{bottom:666.115867pt;}
.y40{bottom:666.462533pt;}
.y24d{bottom:666.464533pt;}
.y6b{bottom:666.595867pt;}
.yba{bottom:666.609200pt;}
.y22e{bottom:671.345333pt;}
.yef{bottom:674.477067pt;}
.y1ec{bottom:679.345333pt;}
.ydf{bottom:682.235867pt;}
.y86{bottom:682.361867pt;}
.y3f{bottom:682.462533pt;}
.y24c{bottom:682.464533pt;}
.yb0{bottom:682.595867pt;}
.y1b9{bottom:682.609200pt;}
.yc{bottom:684.124533pt;}
.y22d{bottom:684.678667pt;}
.yee{bottom:688.919733pt;}
.y1eb{bottom:692.678667pt;}
.y9b{bottom:697.982533pt;}
.y22c{bottom:698.012000pt;}
.y6a{bottom:698.235867pt;}
.yb9{bottom:698.249200pt;}
.y3e{bottom:698.462533pt;}
.y24b{bottom:698.464533pt;}
.yaf{bottom:698.595867pt;}
.y1b8{bottom:698.609200pt;}
.yed{bottom:703.362400pt;}
.y1ea{bottom:706.012000pt;}
.yb{bottom:706.638400pt;}
.y22b{bottom:711.345333pt;}
.yb8{bottom:714.249200pt;}
.y3d{bottom:714.462533pt;}
.y85{bottom:714.588533pt;}
.yae{bottom:714.595867pt;}
.yec{bottom:717.805067pt;}
.y1e9{bottom:719.345333pt;}
.y22a{bottom:724.678667pt;}
.y1b7{bottom:730.249200pt;}
.y3c{bottom:730.462533pt;}
.y24a{bottom:730.464533pt;}
.y84{bottom:730.588533pt;}
.y11f{bottom:730.595867pt;}
.y1e8{bottom:732.678667pt;}
.yeb{bottom:737.922400pt;}
.y229{bottom:738.012000pt;}
.ya{bottom:738.261600pt;}
.y1e7{bottom:746.012000pt;}
.yad{bottom:746.235867pt;}
.y1b6{bottom:746.249200pt;}
.y3b{bottom:746.462533pt;}
.y249{bottom:746.464533pt;}
.yb7{bottom:746.475867pt;}
.y83{bottom:746.588533pt;}
.y17f{bottom:746.595867pt;}
.y9{bottom:746.829867pt;}
.y228{bottom:751.345333pt;}
.y1e6{bottom:759.345333pt;}
.y11e{bottom:762.235867pt;}
.y8{bottom:762.261600pt;}
.y3a{bottom:762.462533pt;}
.yb6{bottom:762.475867pt;}
.y17e{bottom:762.595867pt;}
.y82{bottom:762.609200pt;}
.y227{bottom:764.678667pt;}
.yea{bottom:766.715867pt;}
.y1e5{bottom:772.678667pt;}
.y226{bottom:778.012000pt;}
.y11d{bottom:778.235867pt;}
.y39{bottom:778.462533pt;}
.y248{bottom:778.464533pt;}
.yb5{bottom:778.475867pt;}
.y17d{bottom:778.595867pt;}
.y81{bottom:778.609200pt;}
.ye9{bottom:784.049200pt;}
.y1e4{bottom:786.012000pt;}
.y7{bottom:789.183067pt;}
.y225{bottom:791.345333pt;}
.y38{bottom:794.462533pt;}
.y247{bottom:794.464533pt;}
.yb4{bottom:794.475867pt;}
.y17c{bottom:794.595867pt;}
.y80{bottom:794.609200pt;}
.y1e3{bottom:799.345333pt;}
.ye8{bottom:801.382533pt;}
.y224{bottom:804.678667pt;}
.y1b5{bottom:810.235867pt;}
.y37{bottom:810.462533pt;}
.yb3{bottom:810.475867pt;}
.y17b{bottom:810.595867pt;}
.y1e2{bottom:812.678667pt;}
.y223{bottom:818.012000pt;}
.ye7{bottom:818.715867pt;}
.y1e1{bottom:826.012000pt;}
.y1b4{bottom:826.235867pt;}
.y7f{bottom:826.249200pt;}
.y36{bottom:826.462533pt;}
.y246{bottom:826.464533pt;}
.yb2{bottom:826.475867pt;}
.y17a{bottom:826.595867pt;}
.y6{bottom:830.226133pt;}
.y222{bottom:831.345333pt;}
.y1e0{bottom:839.345333pt;}
.y35{bottom:842.462533pt;}
.y245{bottom:842.464533pt;}
.yb1{bottom:842.475867pt;}
.y221{bottom:844.678667pt;}
.y1df{bottom:852.678667pt;}
.y220{bottom:858.012000pt;}
.y179{bottom:858.235867pt;}
.y34{bottom:858.462533pt;}
.y7e{bottom:858.475867pt;}
.y5{bottom:862.635733pt;}
.y1de{bottom:866.012000pt;}
.y21f{bottom:871.345333pt;}
.y162{bottom:874.235867pt;}
.y33{bottom:874.462533pt;}
.y244{bottom:874.464533pt;}
.y7d{bottom:874.475867pt;}
.y1dd{bottom:879.345333pt;}
.y21e{bottom:884.678667pt;}
.y32{bottom:890.462533pt;}
.y243{bottom:890.464533pt;}
.y7c{bottom:890.475867pt;}
.y1dc{bottom:892.678667pt;}
.y4{bottom:895.045333pt;}
.y21d{bottom:898.012000pt;}
.y116{bottom:906.102533pt;}
.y127{bottom:906.115867pt;}
.y31{bottom:906.462533pt;}
.y7b{bottom:906.475867pt;}
.y21c{bottom:911.345333pt;}
.y9a{bottom:922.102533pt;}
.y242{bottom:922.104533pt;}
.y126{bottom:922.115867pt;}
.y30{bottom:922.462533pt;}
.y7a{bottom:922.475867pt;}
.y21b{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.549733pt;}
.y69{bottom:1006.594400pt;}
.y11c{bottom:1006.595333pt;}
.y13e{bottom:1006.597067pt;}
.y21a{bottom:1006.598667pt;}
.yac{bottom:1006.600133pt;}
.y115{bottom:1006.609200pt;}
.y1d6{bottom:1006.614400pt;}
.y99{bottom:1006.620667pt;}
.y1cb{bottom:1006.634267pt;}
.y178{bottom:1006.638667pt;}
.yde{bottom:1006.672667pt;}
.y161{bottom:1006.675733pt;}
.y2e{bottom:1009.857333pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:17.496094pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.121094pt;}
.h8{height:29.160156pt;}
.h11{height:29.645833pt;}
.h4{height:31.062500pt;}
.he{height:31.104167pt;}
.h13{height:31.958467pt;}
.h12{height:37.031250pt;}
.h15{height:37.049292pt;}
.hd{height:37.057292pt;}
.hf{height:38.177083pt;}
.ha{height:38.828125pt;}
.hb{height:38.880208pt;}
.h10{height:39.865150pt;}
.h14{height:39.963442pt;}
.h6{height:43.678785pt;}
.h3{height:50.476562pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:62.740133pt;}
.xb{left:68.031467pt;}
.x17{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x5{left:92.598400pt;}
.x3{left:94.866133pt;}
.xc{left:98.267733pt;}
.x20{left:109.606267pt;}
.x4{left:111.496000pt;}
.x7{left:117.170133pt;}
.xd{left:128.654400pt;}
.x6{left:189.223467pt;}
.x1c{left:195.689200pt;}
.x18{left:221.035867pt;}
.xa{left:404.481333pt;}
.xe{left:406.307733pt;}
.x12{left:425.182533pt;}
.x8{left:427.090133pt;}
.x1f{left:428.976533pt;}
.xf{left:436.547733pt;}
.x13{left:455.422533pt;}
.x1e{left:510.978133pt;}
.x15{left:525.924800pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x19{left:641.526800pt;}
.x10{left:647.459200pt;}
.x1d{left:660.424533pt;}
.x1b{left:661.437600pt;}
.x14{left:666.363867pt;}
}




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