
    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_9fb3de44288051832965e3bd.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_0310cb670bf742af94d851ff.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_821ec01ebbbe78f600a793f4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_72c89e8e3212248f38ac4f7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3130922bf3763dad2b2cba99.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e28e9730d4bf91c9ed782c5f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_064aeefa89a9646c0d0b8637.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_326d631decd4e409d6b0b608.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b04bb89be7f9e413427a5add.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_63d5358f54fbd0193926901b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.620000px;}
.ls46{letter-spacing:-1.776000px;}
.ls44{letter-spacing:-1.200000px;}
.ls3e{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.780000px;}
.ls56{letter-spacing:-0.540000px;}
.ls55{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.120000px;}
.ls80{letter-spacing:-0.096000px;}
.ls43{letter-spacing:-0.060000px;}
.lse{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.048000px;}
.ls22{letter-spacing:0.060000px;}
.ls67{letter-spacing:0.096000px;}
.ls31{letter-spacing:0.120000px;}
.ls71{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls7b{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.240000px;}
.ls49{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.300000px;}
.ls69{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls62{letter-spacing:0.384000px;}
.ls28{letter-spacing:0.420000px;}
.ls5a{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.480000px;}
.ls5e{letter-spacing:0.528000px;}
.ls1d{letter-spacing:0.540000px;}
.ls76{letter-spacing:0.576000px;}
.ls2d{letter-spacing:0.600000px;}
.ls74{letter-spacing:0.624000px;}
.lsd{letter-spacing:0.660000px;}
.ls75{letter-spacing:0.672000px;}
.ls26{letter-spacing:0.720000px;}
.ls65{letter-spacing:0.768000px;}
.ls4{letter-spacing:0.780000px;}
.ls64{letter-spacing:0.816000px;}
.ls1a{letter-spacing:0.840000px;}
.ls66{letter-spacing:0.864000px;}
.ls24{letter-spacing:0.900000px;}
.ls77{letter-spacing:0.912000px;}
.ls37{letter-spacing:0.960000px;}
.ls5c{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.020000px;}
.ls78{letter-spacing:1.056000px;}
.ls3b{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.104000px;}
.ls21{letter-spacing:1.140000px;}
.ls38{letter-spacing:1.200000px;}
.ls7d{letter-spacing:1.248000px;}
.ls6{letter-spacing:1.260000px;}
.ls7e{letter-spacing:1.296000px;}
.ls9{letter-spacing:1.320000px;}
.ls58{letter-spacing:1.344000px;}
.lsb{letter-spacing:1.380000px;}
.ls79{letter-spacing:1.392000px;}
.ls23{letter-spacing:1.440000px;}
.ls68{letter-spacing:1.488000px;}
.ls1{letter-spacing:1.500000px;}
.ls6f{letter-spacing:1.536000px;}
.ls14{letter-spacing:1.560000px;}
.ls73{letter-spacing:1.584000px;}
.ls15{letter-spacing:1.620000px;}
.ls5f{letter-spacing:1.632000px;}
.ls8{letter-spacing:1.680000px;}
.ls6d{letter-spacing:1.728000px;}
.ls27{letter-spacing:1.740000px;}
.ls3d{letter-spacing:1.800000px;}
.ls5b{letter-spacing:1.824000px;}
.lsc{letter-spacing:1.860000px;}
.ls84{letter-spacing:1.872000px;}
.ls2b{letter-spacing:1.920000px;}
.ls60{letter-spacing:1.968000px;}
.ls53{letter-spacing:1.980000px;}
.ls50{letter-spacing:2.040000px;}
.ls6a{letter-spacing:2.064000px;}
.ls2a{letter-spacing:2.100000px;}
.ls18{letter-spacing:2.160000px;}
.ls81{letter-spacing:2.208000px;}
.ls5{letter-spacing:2.220000px;}
.ls61{letter-spacing:2.256000px;}
.ls34{letter-spacing:2.280000px;}
.ls72{letter-spacing:2.304000px;}
.ls29{letter-spacing:2.340000px;}
.ls7{letter-spacing:2.400000px;}
.ls6b{letter-spacing:2.448000px;}
.ls20{letter-spacing:2.460000px;}
.ls7c{letter-spacing:2.496000px;}
.ls1f{letter-spacing:2.520000px;}
.ls6e{letter-spacing:2.544000px;}
.ls17{letter-spacing:2.580000px;}
.ls32{letter-spacing:2.640000px;}
.ls3f{letter-spacing:2.700000px;}
.ls33{letter-spacing:2.760000px;}
.ls36{letter-spacing:2.820000px;}
.ls35{letter-spacing:2.880000px;}
.ls1e{letter-spacing:2.940000px;}
.ls6c{letter-spacing:2.976000px;}
.ls16{letter-spacing:3.000000px;}
.ls13{letter-spacing:3.060000px;}
.ls25{letter-spacing:3.120000px;}
.ls83{letter-spacing:3.168000px;}
.ls4c{letter-spacing:3.300000px;}
.ls2{letter-spacing:3.420000px;}
.ls7a{letter-spacing:3.456000px;}
.ls3c{letter-spacing:3.540000px;}
.ls1c{letter-spacing:3.600000px;}
.ls4e{letter-spacing:3.840000px;}
.ls70{letter-spacing:3.888000px;}
.ls82{letter-spacing:3.936000px;}
.ls2f{letter-spacing:3.960000px;}
.ls85{letter-spacing:3.984000px;}
.ls52{letter-spacing:4.080000px;}
.ls1b{letter-spacing:4.140000px;}
.ls59{letter-spacing:4.224000px;}
.ls54{letter-spacing:4.260000px;}
.ls39{letter-spacing:4.320000px;}
.ls7f{letter-spacing:4.368000px;}
.ls51{letter-spacing:4.380000px;}
.ls3a{letter-spacing:4.800000px;}
.ls2c{letter-spacing:4.920000px;}
.ls48{letter-spacing:5.040000px;}
.ls63{letter-spacing:5.520000px;}
.ls4a{letter-spacing:5.940000px;}
.ls4b{letter-spacing:6.120000px;}
.ls30{letter-spacing:6.420000px;}
.ls47{letter-spacing:6.660000px;}
.ls40{letter-spacing:6.840000px;}
.ls57{letter-spacing:7.380000px;}
.ls45{letter-spacing:138.960000px;}
.ls42{letter-spacing:206.112000px;}
.ls41{letter-spacing:232.992000px;}
.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;}
}
.ws84{word-spacing:-19.080000px;}
.ws8e{word-spacing:-18.600000px;}
.ws36{word-spacing:-17.820000px;}
.ws16{word-spacing:-17.520000px;}
.ws88{word-spacing:-17.340000px;}
.ws87{word-spacing:-17.280000px;}
.ws4a{word-spacing:-16.920000px;}
.ws73{word-spacing:-16.740000px;}
.ws37{word-spacing:-16.680000px;}
.ws17{word-spacing:-16.620000px;}
.wsb6{word-spacing:-16.368000px;}
.ws8b{word-spacing:-16.200000px;}
.ws78{word-spacing:-16.140000px;}
.ws77{word-spacing:-16.020000px;}
.ws83{word-spacing:-15.900000px;}
.ws85{word-spacing:-15.600000px;}
.ws47{word-spacing:-15.540000px;}
.ws86{word-spacing:-15.180000px;}
.ws48{word-spacing:-15.000000px;}
.ws49{word-spacing:-14.940000px;}
.wsb3{word-spacing:-14.640000px;}
.wsca{word-spacing:-14.496000px;}
.wsb2{word-spacing:-14.304000px;}
.wsb1{word-spacing:-14.064000px;}
.ws94{word-spacing:-13.824000px;}
.ws1{word-spacing:-13.344000px;}
.ws90{word-spacing:-13.008000px;}
.ws92{word-spacing:-12.960000px;}
.wsb0{word-spacing:-12.576000px;}
.ws91{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.510000px;}
.ws93{word-spacing:-12.480000px;}
.ws8f{word-spacing:-12.432000px;}
.wsb5{word-spacing:-12.240000px;}
.wsaf{word-spacing:-12.096000px;}
.wsb4{word-spacing:-12.048000px;}
.ws56{word-spacing:-12.000000px;}
.ws34{word-spacing:-6.420000px;}
.wsa4{word-spacing:-5.520000px;}
.ws30{word-spacing:-4.920000px;}
.ws42{word-spacing:-4.860000px;}
.ws80{word-spacing:-4.380000px;}
.wsc8{word-spacing:-4.368000px;}
.ws41{word-spacing:-4.320000px;}
.ws8c{word-spacing:-4.260000px;}
.ws98{word-spacing:-4.224000px;}
.ws21{word-spacing:-4.140000px;}
.wscc{word-spacing:-3.984000px;}
.ws33{word-spacing:-3.960000px;}
.wsb8{word-spacing:-3.888000px;}
.ws7c{word-spacing:-3.840000px;}
.ws22{word-spacing:-3.600000px;}
.ws44{word-spacing:-3.540000px;}
.wsc2{word-spacing:-3.456000px;}
.ws6{word-spacing:-3.420000px;}
.ws7a{word-spacing:-3.300000px;}
.wscd{word-spacing:-3.168000px;}
.ws19{word-spacing:-3.120000px;}
.ws1c{word-spacing:-3.000000px;}
.wsad{word-spacing:-2.976000px;}
.ws24{word-spacing:-2.940000px;}
.ws3{word-spacing:-2.886000px;}
.ws3a{word-spacing:-2.880000px;}
.ws3d{word-spacing:-2.820000px;}
.ws38{word-spacing:-2.760000px;}
.ws4f{word-spacing:-2.700000px;}
.ws1d{word-spacing:-2.640000px;}
.ws7f{word-spacing:-2.580000px;}
.ws97{word-spacing:-2.544000px;}
.ws25{word-spacing:-2.520000px;}
.wsc4{word-spacing:-2.496000px;}
.ws7d{word-spacing:-2.460000px;}
.wsac{word-spacing:-2.448000px;}
.wsb{word-spacing:-2.400000px;}
.ws2c{word-spacing:-2.340000px;}
.wsa2{word-spacing:-2.304000px;}
.ws39{word-spacing:-2.280000px;}
.wsc9{word-spacing:-2.256000px;}
.ws9{word-spacing:-2.220000px;}
.wscb{word-spacing:-2.208000px;}
.ws1e{word-spacing:-2.160000px;}
.ws2e{word-spacing:-2.100000px;}
.wsab{word-spacing:-2.064000px;}
.ws7e{word-spacing:-2.040000px;}
.ws8a{word-spacing:-1.980000px;}
.wsa0{word-spacing:-1.968000px;}
.ws1f{word-spacing:-1.920000px;}
.wsc7{word-spacing:-1.872000px;}
.ws10{word-spacing:-1.860000px;}
.ws9b{word-spacing:-1.824000px;}
.ws45{word-spacing:-1.800000px;}
.ws2a{word-spacing:-1.740000px;}
.wsae{word-spacing:-1.728000px;}
.wsc{word-spacing:-1.680000px;}
.ws9f{word-spacing:-1.632000px;}
.ws1b{word-spacing:-1.620000px;}
.wsbb{word-spacing:-1.584000px;}
.ws15{word-spacing:-1.560000px;}
.wsb7{word-spacing:-1.536000px;}
.ws5{word-spacing:-1.500000px;}
.wsa9{word-spacing:-1.488000px;}
.wsf{word-spacing:-1.440000px;}
.wsc1{word-spacing:-1.392000px;}
.ws1a{word-spacing:-1.380000px;}
.ws96{word-spacing:-1.344000px;}
.wsd{word-spacing:-1.320000px;}
.wsc6{word-spacing:-1.296000px;}
.wsa{word-spacing:-1.260000px;}
.wsc5{word-spacing:-1.248000px;}
.ws2d{word-spacing:-1.200000px;}
.ws26{word-spacing:-1.140000px;}
.ws9d{word-spacing:-1.104000px;}
.ws43{word-spacing:-1.080000px;}
.wsc0{word-spacing:-1.056000px;}
.ws32{word-spacing:-1.020000px;}
.ws9c{word-spacing:-1.008000px;}
.ws2f{word-spacing:-0.960000px;}
.wsbf{word-spacing:-0.912000px;}
.ws28{word-spacing:-0.900000px;}
.wsa7{word-spacing:-0.864000px;}
.ws11{word-spacing:-0.840000px;}
.wsa5{word-spacing:-0.816000px;}
.ws8{word-spacing:-0.780000px;}
.wsa6{word-spacing:-0.768000px;}
.ws29{word-spacing:-0.720000px;}
.wsbd{word-spacing:-0.672000px;}
.ws13{word-spacing:-0.660000px;}
.wsbc{word-spacing:-0.624000px;}
.ws31{word-spacing:-0.600000px;}
.wsbe{word-spacing:-0.576000px;}
.ws23{word-spacing:-0.540000px;}
.ws9e{word-spacing:-0.528000px;}
.ws7{word-spacing:-0.480000px;}
.ws9a{word-spacing:-0.432000px;}
.ws2b{word-spacing:-0.420000px;}
.wsa3{word-spacing:-0.384000px;}
.ws20{word-spacing:-0.360000px;}
.wsaa{word-spacing:-0.336000px;}
.ws18{word-spacing:-0.300000px;}
.ws76{word-spacing:-0.288000px;}
.ws4{word-spacing:-0.240000px;}
.wsc3{word-spacing:-0.192000px;}
.wse{word-spacing:-0.180000px;}
.wsb9{word-spacing:-0.144000px;}
.ws35{word-spacing:-0.120000px;}
.wsa8{word-spacing:-0.096000px;}
.ws27{word-spacing:-0.060000px;}
.ws82{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws51{word-spacing:0.060000px;}
.wsba{word-spacing:0.096000px;}
.ws12{word-spacing:0.120000px;}
.ws14{word-spacing:0.180000px;}
.ws79{word-spacing:0.240000px;}
.ws89{word-spacing:0.360000px;}
.ws8d{word-spacing:0.540000px;}
.ws46{word-spacing:0.912000px;}
.ws74{word-spacing:0.960000px;}
.ws52{word-spacing:1.080000px;}
.ws3e{word-spacing:1.380000px;}
.ws75{word-spacing:1.680000px;}
.ws7b{word-spacing:2.160000px;}
.ws3c{word-spacing:2.220000px;}
.ws99{word-spacing:2.256000px;}
.ws53{word-spacing:2.448000px;}
.wsce{word-spacing:2.700000px;}
.ws3b{word-spacing:3.300000px;}
.wsa1{word-spacing:3.936000px;}
.ws81{word-spacing:3.984000px;}
.ws3f{word-spacing:4.920000px;}
.ws40{word-spacing:4.980000px;}
.ws50{word-spacing:5.460000px;}
.ws95{word-spacing:5.520000px;}
.ws64{word-spacing:114.960000px;}
.ws5b{word-spacing:119.376000px;}
.ws65{word-spacing:125.952000px;}
.ws5a{word-spacing:126.816000px;}
.ws63{word-spacing:135.264000px;}
.ws59{word-spacing:137.952000px;}
.ws5f{word-spacing:139.248000px;}
.ws57{word-spacing:141.936000px;}
.ws69{word-spacing:143.232000px;}
.ws72{word-spacing:144.432000px;}
.ws71{word-spacing:145.776000px;}
.ws55{word-spacing:145.968000px;}
.ws54{word-spacing:147.120000px;}
.ws4c{word-spacing:147.264000px;}
.ws66{word-spacing:147.456000px;}
.ws70{word-spacing:147.990000px;}
.ws5c{word-spacing:149.760000px;}
.ws6e{word-spacing:152.400000px;}
.ws6a{word-spacing:153.744000px;}
.ws5e{word-spacing:153.792000px;}
.ws68{word-spacing:154.608000px;}
.ws5d{word-spacing:155.088000px;}
.ws61{word-spacing:155.136000px;}
.ws6d{word-spacing:157.728000px;}
.ws6b{word-spacing:157.776000px;}
.ws6f{word-spacing:160.464000px;}
.ws6c{word-spacing:163.056000px;}
.ws60{word-spacing:231.072000px;}
.ws67{word-spacing:242.160000px;}
.ws62{word-spacing:243.072000px;}
.ws4d{word-spacing:254.160000px;}
.ws4e{word-spacing:266.160000px;}
.ws4b{word-spacing:274.176000px;}
.ws58{word-spacing:317.616000px;}
._f{margin-left:-2898.096000px;}
._63{margin-left:-2874.288000px;}
._a{margin-left:-7.740000px;}
._c{margin-left:-6.564600px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.260000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.139400px;}
._b{width:1.290000px;}
._6{width:2.310000px;}
._9{width:3.900000px;}
._4{width:5.220000px;}
._5{width:6.420000px;}
._8{width:7.500000px;}
._7{width:9.180000px;}
._d{width:10.500000px;}
._e{width:11.760000px;}
._3c{width:94.224000px;}
._3d{width:107.088000px;}
._68{width:108.720000px;}
._11{width:109.776000px;}
._42{width:114.960000px;}
._1b{width:116.544000px;}
._2f{width:117.936000px;}
._3a{width:119.280000px;}
._61{width:120.630000px;}
._25{width:126.960000px;}
._41{width:129.792000px;}
._1a{width:131.808000px;}
._49{width:134.118000px;}
._48{width:137.952000px;}
._19{width:138.960000px;}
._6c{width:140.448000px;}
._2a{width:142.080000px;}
._30{width:143.808000px;}
._12{width:145.920000px;}
._24{width:147.264000px;}
._2c{width:148.464000px;}
._4d{width:149.952000px;}
._34{width:151.104000px;}
._47{width:152.448000px;}
._44{width:154.560000px;}
._36{width:155.808000px;}
._4b{width:156.810000px;}
._27{width:157.968000px;}
._18{width:159.264000px;}
._3f{width:160.464000px;}
._29{width:161.808000px;}
._1d{width:163.104000px;}
._77{width:164.400000px;}
._15{width:165.792000px;}
._17{width:167.136000px;}
._85{width:168.480000px;}
._32{width:169.716000px;}
._20{width:171.120000px;}
._23{width:172.464000px;}
._71{width:176.778000px;}
._38{width:184.464000px;}
._73{width:187.878000px;}
._5a{width:206.112000px;}
._55{width:213.222000px;}
._59{width:223.769400px;}
._6e{width:229.062000px;}
._58{width:244.377600px;}
._33{width:246.912000px;}
._57{width:254.688000px;}
._7d{width:255.689400px;}
._6d{width:258.960000px;}
._4e{width:261.078000px;}
._1e{width:266.160000px;}
._53{width:274.566000px;}
._5c{width:278.160000px;}
._5b{width:284.160000px;}
._7e{width:289.680000px;}
._5e{width:290.832000px;}
._4c{width:297.174000px;}
._13{width:301.296000px;}
._54{width:302.345400px;}
._72{width:304.128000px;}
._26{width:307.782000px;}
._28{width:312.240000px;}
._40{width:314.454000px;}
._1c{width:317.616000px;}
._5d{width:318.816000px;}
._4f{width:322.848000px;}
._74{width:324.144000px;}
._21{width:325.632000px;}
._7b{width:326.784000px;}
._52{width:329.190000px;}
._1f{width:330.912000px;}
._14{width:334.265400px;}
._6f{width:337.440000px;}
._56{width:338.454000px;}
._31{width:340.512000px;}
._7c{width:342.534000px;}
._43{width:345.504000px;}
._67{width:346.896000px;}
._50{width:349.632000px;}
._51{width:352.224000px;}
._37{width:354.438000px;}
._70{width:356.160000px;}
._2b{width:357.504000px;}
._82{width:358.800000px;}
._16{width:361.254000px;}
._35{width:362.454000px;}
._22{width:364.320000px;}
._76{width:369.456000px;}
._2d{width:370.470000px;}
._39{width:372.144000px;}
._84{width:373.536000px;}
._7f{width:377.190000px;}
._10{width:378.264000px;}
._60{width:380.489400px;}
._5f{width:381.840000px;}
._81{width:385.488000px;}
._80{width:393.552000px;}
._3b{width:396.144000px;}
._64{width:397.584000px;}
._3e{width:399.846000px;}
._6a{width:404.208000px;}
._66{width:405.984000px;}
._46{width:411.894000px;}
._62{width:413.238000px;}
._69{width:414.816000px;}
._65{width:423.312000px;}
._79{width:425.472000px;}
._45{width:432.240000px;}
._4a{width:436.176000px;}
._88{width:444.240000px;}
._2e{width:445.488000px;}
._75{width:454.800000px;}
._86{width:472.272000px;}
._78{width:473.472000px;}
._87{width:476.256000px;}
._6b{width:484.224000px;}
._89{width:489.552000px;}
._83{width:493.536000px;}
._7a{width:497.424000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y129{bottom:83.661150px;}
.y11d{bottom:83.769600px;}
.y64{bottom:83.770350px;}
.y15f{bottom:83.772600px;}
.y115{bottom:83.811000px;}
.y16b{bottom:83.920350px;}
.y80{bottom:84.070350px;}
.y122{bottom:84.098100px;}
.y99{bottom:84.523350px;}
.y2b{bottom:88.141050px;}
.yb5{bottom:92.991600px;}
.yee{bottom:94.303200px;}
.y1a7{bottom:95.121900px;}
.y1e7{bottom:95.263500px;}
.y128{bottom:99.405150px;}
.y11c{bottom:99.513600px;}
.y121{bottom:99.842100px;}
.y98{bottom:100.267350px;}
.y114{bottom:100.311000px;}
.y63{bottom:101.770350px;}
.y15e{bottom:101.772600px;}
.y16a{bottom:101.920350px;}
.y7f{bottom:102.070350px;}
.yb4{bottom:109.239600px;}
.y1a6{bottom:110.121900px;}
.y1e6{bottom:110.263500px;}
.yed{bottom:110.551200px;}
.y127{bottom:115.149150px;}
.y11b{bottom:115.257600px;}
.y113{bottom:116.811000px;}
.y62{bottom:119.770350px;}
.y15d{bottom:119.772600px;}
.y169{bottom:119.920350px;}
.y7e{bottom:120.070350px;}
.y1a5{bottom:125.121900px;}
.y1e5{bottom:125.263500px;}
.yb3{bottom:125.487600px;}
.yec{bottom:126.799200px;}
.y112{bottom:133.311000px;}
.y197{bottom:137.650350px;}
.y61{bottom:137.770350px;}
.y15c{bottom:137.772600px;}
.y168{bottom:137.920350px;}
.y7d{bottom:138.070350px;}
.y1a4{bottom:140.121900px;}
.y1e4{bottom:140.263500px;}
.yb2{bottom:141.735600px;}
.yeb{bottom:143.047200px;}
.y111{bottom:149.811000px;}
.y1a3{bottom:155.121900px;}
.y1e3{bottom:155.263500px;}
.y196{bottom:155.650350px;}
.y60{bottom:155.770350px;}
.y15b{bottom:155.772600px;}
.y167{bottom:155.920350px;}
.y7c{bottom:156.070350px;}
.y28{bottom:157.861050px;}
.yb1{bottom:157.983600px;}
.yea{bottom:159.295200px;}
.y110{bottom:166.311000px;}
.y1a2{bottom:170.121900px;}
.y1e2{bottom:170.263500px;}
.y195{bottom:173.650350px;}
.y5f{bottom:173.770350px;}
.y15a{bottom:173.772600px;}
.y166{bottom:173.920350px;}
.y7b{bottom:174.070350px;}
.yb0{bottom:174.231600px;}
.ye9{bottom:175.543200px;}
.y27{bottom:175.861050px;}
.y1a1{bottom:185.121900px;}
.y1e1{bottom:185.263500px;}
.yaf{bottom:190.479600px;}
.y194{bottom:191.650350px;}
.y5e{bottom:191.770350px;}
.y159{bottom:191.772600px;}
.ye8{bottom:191.791200px;}
.y10f{bottom:191.823000px;}
.y165{bottom:191.920350px;}
.y7a{bottom:192.070350px;}
.y26{bottom:193.861050px;}
.y1a0{bottom:200.121900px;}
.y1e0{bottom:200.263500px;}
.yae{bottom:206.727600px;}
.ye7{bottom:208.039200px;}
.y10e{bottom:208.071000px;}
.y193{bottom:209.650350px;}
.y5d{bottom:209.770350px;}
.y158{bottom:209.772600px;}
.y164{bottom:209.920350px;}
.y79{bottom:210.070350px;}
.y25{bottom:211.861050px;}
.y19f{bottom:215.121900px;}
.y1df{bottom:215.263500px;}
.yad{bottom:222.975600px;}
.ye6{bottom:224.287200px;}
.y10d{bottom:224.319000px;}
.y192{bottom:227.650350px;}
.y5c{bottom:227.770350px;}
.y157{bottom:227.772600px;}
.y163{bottom:227.920350px;}
.y78{bottom:228.070350px;}
.y24{bottom:229.861050px;}
.y19e{bottom:230.121900px;}
.y1de{bottom:230.263500px;}
.ye5{bottom:240.535200px;}
.y10c{bottom:240.567000px;}
.y1dd{bottom:245.263500px;}
.y191{bottom:245.650350px;}
.y5b{bottom:245.770350px;}
.y156{bottom:245.772600px;}
.y77{bottom:246.070350px;}
.y23{bottom:247.861050px;}
.yac{bottom:254.859600px;}
.ye4{bottom:256.783200px;}
.y10b{bottom:256.815000px;}
.y1dc{bottom:260.263500px;}
.y19d{bottom:263.232600px;}
.y162{bottom:263.515350px;}
.y190{bottom:263.650350px;}
.y5a{bottom:263.770350px;}
.y155{bottom:263.772600px;}
.y76{bottom:264.070350px;}
.y22{bottom:265.861050px;}
.ye3{bottom:273.031200px;}
.y10a{bottom:273.063000px;}
.y1db{bottom:275.263500px;}
.y18f{bottom:281.650350px;}
.y59{bottom:281.770350px;}
.y154{bottom:281.772600px;}
.y75{bottom:282.070350px;}
.y21{bottom:283.861050px;}
.y125{bottom:288.801750px;}
.ye2{bottom:289.279200px;}
.y109{bottom:289.311000px;}
.yab{bottom:289.754700px;}
.y1da{bottom:290.263500px;}
.y18e{bottom:299.650350px;}
.y58{bottom:299.770350px;}
.y153{bottom:299.772600px;}
.y74{bottom:300.070350px;}
.y20{bottom:301.861050px;}
.y21a{bottom:305.263500px;}
.y1d9{bottom:305.265900px;}
.y108{bottom:305.559000px;}
.ye1{bottom:305.610600px;}
.yaa{bottom:309.254700px;}
.y18d{bottom:317.650350px;}
.y57{bottom:317.770350px;}
.y152{bottom:317.772600px;}
.y73{bottom:318.070350px;}
.y1f{bottom:319.861050px;}
.y219{bottom:320.263500px;}
.y1d8{bottom:320.265900px;}
.y107{bottom:321.807000px;}
.ye0{bottom:321.858600px;}
.ya9{bottom:328.754700px;}
.y218{bottom:335.263500px;}
.y1d7{bottom:335.265900px;}
.y19c{bottom:335.367600px;}
.y18c{bottom:335.650350px;}
.y56{bottom:335.770350px;}
.y151{bottom:335.772600px;}
.y72{bottom:336.070350px;}
.y1e{bottom:337.861050px;}
.y106{bottom:338.055000px;}
.ydf{bottom:338.106600px;}
.y217{bottom:350.263500px;}
.y1d6{bottom:350.265900px;}
.y18b{bottom:353.650350px;}
.y55{bottom:353.770350px;}
.y150{bottom:353.772600px;}
.y105{bottom:354.303000px;}
.yde{bottom:354.354600px;}
.y1d{bottom:355.861050px;}
.y216{bottom:365.263500px;}
.y1d5{bottom:365.265900px;}
.y104{bottom:370.551000px;}
.ydd{bottom:370.602600px;}
.y19b{bottom:371.367600px;}
.y18a{bottom:371.650350px;}
.y71{bottom:371.665350px;}
.y54{bottom:371.770350px;}
.y14f{bottom:371.772600px;}
.ya8{bottom:373.231950px;}
.y1c{bottom:373.861050px;}
.y215{bottom:380.263500px;}
.y1d4{bottom:380.265900px;}
.y103{bottom:386.799000px;}
.ydc{bottom:386.850600px;}
.ya7{bottom:388.975950px;}
.y189{bottom:389.650350px;}
.y53{bottom:389.770350px;}
.y14e{bottom:389.772600px;}
.y2a{bottom:391.861050px;}
.y214{bottom:395.263500px;}
.y1d3{bottom:395.265900px;}
.y102{bottom:403.047000px;}
.ydb{bottom:403.098600px;}
.y188{bottom:407.650350px;}
.y52{bottom:407.770350px;}
.y14d{bottom:407.772600px;}
.y70{bottom:407.920350px;}
.y1b{bottom:409.458150px;}
.y29{bottom:409.861050px;}
.y213{bottom:410.263500px;}
.y1d2{bottom:410.265900px;}
.y101{bottom:419.295000px;}
.yda{bottom:419.346600px;}
.y212{bottom:425.263500px;}
.y1d1{bottom:425.265900px;}
.y19a{bottom:425.367600px;}
.y187{bottom:425.650350px;}
.y51{bottom:425.770350px;}
.y14c{bottom:425.772600px;}
.y6f{bottom:425.920350px;}
.y11a{bottom:426.381600px;}
.yd9{bottom:435.594600px;}
.y100{bottom:435.614400px;}
.y211{bottom:440.263500px;}
.y1d0{bottom:440.265900px;}
.y119{bottom:442.125600px;}
.y186{bottom:443.650350px;}
.y50{bottom:443.770350px;}
.y14b{bottom:443.772600px;}
.y6e{bottom:443.920350px;}
.yd8{bottom:451.842600px;}
.yff{bottom:451.862400px;}
.y210{bottom:455.263500px;}
.y1cf{bottom:455.265900px;}
.y185{bottom:461.650350px;}
.y4f{bottom:461.770350px;}
.y14a{bottom:461.772600px;}
.y6d{bottom:461.920350px;}
.y124{bottom:466.257750px;}
.yd7{bottom:468.090600px;}
.yfe{bottom:468.110400px;}
.y20f{bottom:470.263500px;}
.y1ce{bottom:470.265900px;}
.y184{bottom:479.650350px;}
.y4e{bottom:479.770350px;}
.y149{bottom:479.772600px;}
.y6c{bottom:479.920350px;}
.yd6{bottom:484.338600px;}
.yfd{bottom:484.358400px;}
.y20e{bottom:485.263500px;}
.y1cd{bottom:485.265900px;}
.y1a{bottom:485.464200px;}
.y183{bottom:497.650350px;}
.y4d{bottom:497.770350px;}
.y148{bottom:497.772600px;}
.y6b{bottom:497.920350px;}
.y20d{bottom:500.263500px;}
.y1cc{bottom:500.265900px;}
.yd5{bottom:500.586600px;}
.yfc{bottom:500.606400px;}
.y19{bottom:512.809200px;}
.y20c{bottom:515.263500px;}
.y1cb{bottom:515.265900px;}
.y199{bottom:515.367600px;}
.y182{bottom:515.650350px;}
.y4c{bottom:515.770350px;}
.y147{bottom:515.772600px;}
.y6a{bottom:515.920350px;}
.yd4{bottom:516.834600px;}
.yfb{bottom:516.854400px;}
.y20b{bottom:530.263500px;}
.y1ca{bottom:530.265900px;}
.y18{bottom:530.809200px;}
.yd3{bottom:533.082600px;}
.yfa{bottom:533.102400px;}
.y181{bottom:533.650350px;}
.y4b{bottom:533.770350px;}
.y146{bottom:533.772600px;}
.y69{bottom:533.920350px;}
.y20a{bottom:545.263500px;}
.y1c9{bottom:545.265900px;}
.y17{bottom:548.809200px;}
.yd2{bottom:549.330600px;}
.yf9{bottom:549.350400px;}
.y180{bottom:551.650350px;}
.y4a{bottom:551.770350px;}
.y145{bottom:551.772600px;}
.y68{bottom:551.920350px;}
.y209{bottom:560.263500px;}
.y1c8{bottom:560.265900px;}
.yd1{bottom:565.578600px;}
.yf8{bottom:565.598400px;}
.y16{bottom:566.809200px;}
.y17f{bottom:569.650350px;}
.y49{bottom:569.770350px;}
.y144{bottom:569.772600px;}
.y208{bottom:575.263500px;}
.y1c7{bottom:575.265900px;}
.yd0{bottom:581.826600px;}
.yf7{bottom:581.846400px;}
.y15{bottom:584.809200px;}
.y67{bottom:587.515350px;}
.y17e{bottom:587.650350px;}
.y48{bottom:587.770350px;}
.y143{bottom:587.772600px;}
.y207{bottom:590.263500px;}
.y1c6{bottom:590.265900px;}
.ycf{bottom:598.074600px;}
.yf6{bottom:598.094400px;}
.y14{bottom:602.809200px;}
.y206{bottom:605.263500px;}
.y1c5{bottom:605.265900px;}
.y17d{bottom:605.650350px;}
.y47{bottom:605.770350px;}
.y142{bottom:605.772600px;}
.yce{bottom:614.322600px;}
.yf5{bottom:614.342400px;}
.y205{bottom:620.263500px;}
.y1c4{bottom:620.265900px;}
.y13{bottom:620.809200px;}
.y17c{bottom:623.650350px;}
.y46{bottom:623.770350px;}
.y141{bottom:623.772600px;}
.y97{bottom:623.905350px;}
.ycd{bottom:630.570600px;}
.yf4{bottom:630.590400px;}
.y123{bottom:632.596500px;}
.y204{bottom:635.263500px;}
.y1c3{bottom:635.265900px;}
.y12{bottom:638.809200px;}
.y17b{bottom:641.650350px;}
.y45{bottom:641.770350px;}
.y140{bottom:641.772600px;}
.y96{bottom:641.905350px;}
.yf3{bottom:646.838400px;}
.ycc{bottom:646.893450px;}
.y203{bottom:650.263500px;}
.y1c2{bottom:650.265900px;}
.y11{bottom:656.809200px;}
.y44{bottom:659.770350px;}
.y13f{bottom:659.772600px;}
.y95{bottom:659.905350px;}
.yf2{bottom:663.086400px;}
.ycb{bottom:663.141450px;}
.y202{bottom:665.263500px;}
.y1c1{bottom:665.265900px;}
.y10{bottom:674.809200px;}
.y17a{bottom:677.245350px;}
.y198{bottom:677.367600px;}
.y43{bottom:677.770350px;}
.y13e{bottom:677.772600px;}
.y94{bottom:677.905350px;}
.yf1{bottom:679.334400px;}
.yca{bottom:679.389450px;}
.y201{bottom:680.263500px;}
.y1c0{bottom:680.265900px;}
.yf{bottom:692.809200px;}
.y200{bottom:695.263500px;}
.y1bf{bottom:695.265900px;}
.yf0{bottom:695.582400px;}
.yc9{bottom:695.637450px;}
.y42{bottom:695.770350px;}
.y13d{bottom:695.772600px;}
.y93{bottom:695.905350px;}
.y1ff{bottom:710.263500px;}
.y1be{bottom:710.265900px;}
.ye{bottom:710.809200px;}
.yef{bottom:711.830400px;}
.yc8{bottom:711.885450px;}
.y41{bottom:713.770350px;}
.y13c{bottom:713.772600px;}
.y92{bottom:713.905350px;}
.y1fe{bottom:725.263500px;}
.y1bd{bottom:725.265900px;}
.yc7{bottom:728.133450px;}
.yd{bottom:728.809200px;}
.y40{bottom:731.770350px;}
.y13b{bottom:731.772600px;}
.y179{bottom:731.785350px;}
.y91{bottom:731.905350px;}
.y1fd{bottom:740.263500px;}
.y1bc{bottom:740.265900px;}
.yc6{bottom:744.381450px;}
.yc{bottom:746.809200px;}
.y3f{bottom:749.770350px;}
.y13a{bottom:749.772600px;}
.y178{bottom:749.785350px;}
.y90{bottom:749.905350px;}
.y1fc{bottom:755.263500px;}
.y1bb{bottom:755.265900px;}
.yc5{bottom:760.629450px;}
.yb{bottom:764.809200px;}
.y3e{bottom:767.770350px;}
.y139{bottom:767.772600px;}
.y177{bottom:767.785350px;}
.y8f{bottom:767.905350px;}
.y1fb{bottom:770.263500px;}
.y1ba{bottom:770.265900px;}
.yc4{bottom:776.877450px;}
.ya{bottom:782.809200px;}
.y1fa{bottom:785.263500px;}
.y1b9{bottom:785.265900px;}
.y120{bottom:785.365350px;}
.y3d{bottom:785.770350px;}
.y138{bottom:785.772600px;}
.y176{bottom:785.785350px;}
.y8e{bottom:785.905350px;}
.yc3{bottom:793.125450px;}
.y1f9{bottom:800.263500px;}
.y1b8{bottom:800.265900px;}
.y9{bottom:800.809200px;}
.y3c{bottom:803.770350px;}
.y137{bottom:803.772600px;}
.y175{bottom:803.785350px;}
.y8d{bottom:803.905350px;}
.yc2{bottom:809.373450px;}
.y1f8{bottom:815.263500px;}
.y1b7{bottom:815.265900px;}
.y11f{bottom:821.230350px;}
.y3b{bottom:821.770350px;}
.y136{bottom:821.772600px;}
.y174{bottom:821.785350px;}
.y8c{bottom:821.905350px;}
.yc1{bottom:825.621450px;}
.y1f7{bottom:830.263500px;}
.y1b6{bottom:830.265900px;}
.y3a{bottom:839.770350px;}
.y135{bottom:839.772600px;}
.y173{bottom:839.785350px;}
.y8b{bottom:839.905350px;}
.y9c{bottom:839.920350px;}
.ya6{bottom:839.935350px;}
.yc0{bottom:841.869450px;}
.y1f6{bottom:845.263500px;}
.y1b5{bottom:845.265900px;}
.y8{bottom:845.967300px;}
.y39{bottom:857.770350px;}
.y134{bottom:857.772600px;}
.y172{bottom:857.785350px;}
.y8a{bottom:857.905350px;}
.ya5{bottom:857.935350px;}
.ybf{bottom:858.117450px;}
.y7{bottom:858.418050px;}
.y1f5{bottom:860.263500px;}
.y1b4{bottom:860.265900px;}
.ybe{bottom:874.365450px;}
.y1f4{bottom:875.263500px;}
.y1b3{bottom:875.265900px;}
.y9b{bottom:875.515350px;}
.y38{bottom:875.770350px;}
.y133{bottom:875.772600px;}
.y171{bottom:875.785350px;}
.y89{bottom:875.905350px;}
.ya4{bottom:875.935350px;}
.y6{bottom:890.133600px;}
.y1f3{bottom:890.263500px;}
.y1b2{bottom:890.265900px;}
.ybd{bottom:890.613450px;}
.y37{bottom:893.770350px;}
.y132{bottom:893.772600px;}
.y170{bottom:893.785350px;}
.y88{bottom:893.905350px;}
.ya3{bottom:893.935350px;}
.y1f2{bottom:905.263500px;}
.y1b1{bottom:905.265900px;}
.ybc{bottom:906.861450px;}
.y36{bottom:911.770350px;}
.y131{bottom:911.772600px;}
.y16f{bottom:911.785350px;}
.y87{bottom:911.905350px;}
.y118{bottom:911.920350px;}
.ya2{bottom:911.935350px;}
.y1f1{bottom:920.263500px;}
.y1b0{bottom:920.265900px;}
.ybb{bottom:923.109450px;}
.y5{bottom:924.280950px;}
.y66{bottom:929.365350px;}
.y35{bottom:929.770350px;}
.y130{bottom:929.772600px;}
.y16e{bottom:929.785350px;}
.y86{bottom:929.905350px;}
.y117{bottom:929.920350px;}
.y1f0{bottom:935.263500px;}
.y1af{bottom:935.265900px;}
.yba{bottom:939.357450px;}
.ya1{bottom:947.530350px;}
.y34{bottom:947.770350px;}
.y12f{bottom:947.772600px;}
.y16d{bottom:947.785350px;}
.y85{bottom:947.905350px;}
.y1ef{bottom:950.263500px;}
.y1ae{bottom:950.265900px;}
.yb9{bottom:955.605450px;}
.y65{bottom:965.230350px;}
.y1ee{bottom:965.263500px;}
.y1ad{bottom:965.265900px;}
.y116{bottom:965.515350px;}
.y33{bottom:965.770350px;}
.y12e{bottom:965.772600px;}
.y16c{bottom:965.785350px;}
.y84{bottom:965.905350px;}
.y4{bottom:970.465200px;}
.yb8{bottom:971.853450px;}
.y1ed{bottom:980.263500px;}
.y1ac{bottom:980.265900px;}
.y32{bottom:983.770350px;}
.y12d{bottom:983.772600px;}
.ya0{bottom:983.785350px;}
.y1ec{bottom:995.263500px;}
.y1ab{bottom:995.265900px;}
.y83{bottom:1001.500350px;}
.y31{bottom:1001.770350px;}
.y12c{bottom:1001.772600px;}
.y9f{bottom:1001.785350px;}
.yb7{bottom:1002.993450px;}
.y3{bottom:1006.926000px;}
.y1eb{bottom:1010.263500px;}
.y1aa{bottom:1010.265900px;}
.y30{bottom:1019.770350px;}
.y161{bottom:1019.772600px;}
.y9e{bottom:1019.785350px;}
.y1ea{bottom:1025.263500px;}
.y1a9{bottom:1025.265900px;}
.y82{bottom:1037.365350px;}
.y12b{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.y160{bottom:1037.772600px;}
.y9d{bottom:1037.785350px;}
.y1e9{bottom:1040.263500px;}
.y1a8{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y81{bottom:1132.418700px;}
.y9a{bottom:1132.421700px;}
.y1e8{bottom:1132.423500px;}
.y12a{bottom:1132.425150px;}
.y126{bottom:1132.425750px;}
.y11e{bottom:1132.437600px;}
.yb6{bottom:1132.455600px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h7{height:28.412109px;}
.h2{height:30.597656px;}
.ha{height:32.761230px;}
.h6{height:32.805176px;}
.hf{height:33.351562px;}
.hc{height:34.945312px;}
.hb{height:34.992188px;}
.he{height:41.660156px;}
.h9{height:41.689453px;}
.h8{height:43.681641px;}
.hd{height:43.710938px;}
.h5{height:45.865723px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x15{left:78.661350px;}
.x16{left:85.009350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x17{left:99.921300px;}
.x1e{left:102.047400px;}
.x3{left:106.299150px;}
.xb{left:110.555400px;}
.x20{left:123.307050px;}
.x5{left:131.811000px;}
.x19{left:157.032000px;}
.x1d{left:194.270400px;}
.x18{left:198.875400px;}
.x4{left:212.876400px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x12{left:478.345350px;}
.x6{left:480.471000px;}
.x1f{left:482.603400px;}
.xe{left:491.105400px;}
.x21{left:503.863050px;}
.x13{left:512.365350px;}
.x7{left:514.491000px;}
.xd{left:525.275400px;}
.x1b{left:591.970350px;}
.x11{left:612.910350px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x1a{left:721.717650px;}
.xf{left:728.391600px;}
.x1c{left:743.868150px;}
.x14{left:749.651400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.440000pt;}
.ls46{letter-spacing:-1.578667pt;}
.ls44{letter-spacing:-1.066667pt;}
.ls3e{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls56{letter-spacing:-0.480000pt;}
.ls55{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.106667pt;}
.ls80{letter-spacing:-0.085333pt;}
.ls43{letter-spacing:-0.053333pt;}
.lse{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.042667pt;}
.ls22{letter-spacing:0.053333pt;}
.ls67{letter-spacing:0.085333pt;}
.ls31{letter-spacing:0.106667pt;}
.ls71{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls7b{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.213333pt;}
.ls49{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.266667pt;}
.ls69{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls62{letter-spacing:0.341333pt;}
.ls28{letter-spacing:0.373333pt;}
.ls5a{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls5e{letter-spacing:0.469333pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls76{letter-spacing:0.512000pt;}
.ls2d{letter-spacing:0.533333pt;}
.ls74{letter-spacing:0.554667pt;}
.lsd{letter-spacing:0.586667pt;}
.ls75{letter-spacing:0.597333pt;}
.ls26{letter-spacing:0.640000pt;}
.ls65{letter-spacing:0.682667pt;}
.ls4{letter-spacing:0.693333pt;}
.ls64{letter-spacing:0.725333pt;}
.ls1a{letter-spacing:0.746667pt;}
.ls66{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.800000pt;}
.ls77{letter-spacing:0.810667pt;}
.ls37{letter-spacing:0.853333pt;}
.ls5c{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:0.906667pt;}
.ls78{letter-spacing:0.938667pt;}
.ls3b{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:0.981333pt;}
.ls21{letter-spacing:1.013333pt;}
.ls38{letter-spacing:1.066667pt;}
.ls7d{letter-spacing:1.109333pt;}
.ls6{letter-spacing:1.120000pt;}
.ls7e{letter-spacing:1.152000pt;}
.ls9{letter-spacing:1.173333pt;}
.ls58{letter-spacing:1.194667pt;}
.lsb{letter-spacing:1.226667pt;}
.ls79{letter-spacing:1.237333pt;}
.ls23{letter-spacing:1.280000pt;}
.ls68{letter-spacing:1.322667pt;}
.ls1{letter-spacing:1.333333pt;}
.ls6f{letter-spacing:1.365333pt;}
.ls14{letter-spacing:1.386667pt;}
.ls73{letter-spacing:1.408000pt;}
.ls15{letter-spacing:1.440000pt;}
.ls5f{letter-spacing:1.450667pt;}
.ls8{letter-spacing:1.493333pt;}
.ls6d{letter-spacing:1.536000pt;}
.ls27{letter-spacing:1.546667pt;}
.ls3d{letter-spacing:1.600000pt;}
.ls5b{letter-spacing:1.621333pt;}
.lsc{letter-spacing:1.653333pt;}
.ls84{letter-spacing:1.664000pt;}
.ls2b{letter-spacing:1.706667pt;}
.ls60{letter-spacing:1.749333pt;}
.ls53{letter-spacing:1.760000pt;}
.ls50{letter-spacing:1.813333pt;}
.ls6a{letter-spacing:1.834667pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls18{letter-spacing:1.920000pt;}
.ls81{letter-spacing:1.962667pt;}
.ls5{letter-spacing:1.973333pt;}
.ls61{letter-spacing:2.005333pt;}
.ls34{letter-spacing:2.026667pt;}
.ls72{letter-spacing:2.048000pt;}
.ls29{letter-spacing:2.080000pt;}
.ls7{letter-spacing:2.133333pt;}
.ls6b{letter-spacing:2.176000pt;}
.ls20{letter-spacing:2.186667pt;}
.ls7c{letter-spacing:2.218667pt;}
.ls1f{letter-spacing:2.240000pt;}
.ls6e{letter-spacing:2.261333pt;}
.ls17{letter-spacing:2.293333pt;}
.ls32{letter-spacing:2.346667pt;}
.ls3f{letter-spacing:2.400000pt;}
.ls33{letter-spacing:2.453333pt;}
.ls36{letter-spacing:2.506667pt;}
.ls35{letter-spacing:2.560000pt;}
.ls1e{letter-spacing:2.613333pt;}
.ls6c{letter-spacing:2.645333pt;}
.ls16{letter-spacing:2.666667pt;}
.ls13{letter-spacing:2.720000pt;}
.ls25{letter-spacing:2.773333pt;}
.ls83{letter-spacing:2.816000pt;}
.ls4c{letter-spacing:2.933333pt;}
.ls2{letter-spacing:3.040000pt;}
.ls7a{letter-spacing:3.072000pt;}
.ls3c{letter-spacing:3.146667pt;}
.ls1c{letter-spacing:3.200000pt;}
.ls4e{letter-spacing:3.413333pt;}
.ls70{letter-spacing:3.456000pt;}
.ls82{letter-spacing:3.498667pt;}
.ls2f{letter-spacing:3.520000pt;}
.ls85{letter-spacing:3.541333pt;}
.ls52{letter-spacing:3.626667pt;}
.ls1b{letter-spacing:3.680000pt;}
.ls59{letter-spacing:3.754667pt;}
.ls54{letter-spacing:3.786667pt;}
.ls39{letter-spacing:3.840000pt;}
.ls7f{letter-spacing:3.882667pt;}
.ls51{letter-spacing:3.893333pt;}
.ls3a{letter-spacing:4.266667pt;}
.ls2c{letter-spacing:4.373333pt;}
.ls48{letter-spacing:4.480000pt;}
.ls63{letter-spacing:4.906667pt;}
.ls4a{letter-spacing:5.280000pt;}
.ls4b{letter-spacing:5.440000pt;}
.ls30{letter-spacing:5.706667pt;}
.ls47{letter-spacing:5.920000pt;}
.ls40{letter-spacing:6.080000pt;}
.ls57{letter-spacing:6.560000pt;}
.ls45{letter-spacing:123.520000pt;}
.ls42{letter-spacing:183.210667pt;}
.ls41{letter-spacing:207.104000pt;}
.ws84{word-spacing:-16.960000pt;}
.ws8e{word-spacing:-16.533333pt;}
.ws36{word-spacing:-15.840000pt;}
.ws16{word-spacing:-15.573333pt;}
.ws88{word-spacing:-15.413333pt;}
.ws87{word-spacing:-15.360000pt;}
.ws4a{word-spacing:-15.040000pt;}
.ws73{word-spacing:-14.880000pt;}
.ws37{word-spacing:-14.826667pt;}
.ws17{word-spacing:-14.773333pt;}
.wsb6{word-spacing:-14.549333pt;}
.ws8b{word-spacing:-14.400000pt;}
.ws78{word-spacing:-14.346667pt;}
.ws77{word-spacing:-14.240000pt;}
.ws83{word-spacing:-14.133333pt;}
.ws85{word-spacing:-13.866667pt;}
.ws47{word-spacing:-13.813333pt;}
.ws86{word-spacing:-13.493333pt;}
.ws48{word-spacing:-13.333333pt;}
.ws49{word-spacing:-13.280000pt;}
.wsb3{word-spacing:-13.013333pt;}
.wsca{word-spacing:-12.885333pt;}
.wsb2{word-spacing:-12.714667pt;}
.wsb1{word-spacing:-12.501333pt;}
.ws94{word-spacing:-12.288000pt;}
.ws1{word-spacing:-11.861333pt;}
.ws90{word-spacing:-11.562667pt;}
.ws92{word-spacing:-11.520000pt;}
.wsb0{word-spacing:-11.178667pt;}
.ws91{word-spacing:-11.136000pt;}
.ws0{word-spacing:-11.120000pt;}
.ws93{word-spacing:-11.093333pt;}
.ws8f{word-spacing:-11.050667pt;}
.wsb5{word-spacing:-10.880000pt;}
.wsaf{word-spacing:-10.752000pt;}
.wsb4{word-spacing:-10.709333pt;}
.ws56{word-spacing:-10.666667pt;}
.ws34{word-spacing:-5.706667pt;}
.wsa4{word-spacing:-4.906667pt;}
.ws30{word-spacing:-4.373333pt;}
.ws42{word-spacing:-4.320000pt;}
.ws80{word-spacing:-3.893333pt;}
.wsc8{word-spacing:-3.882667pt;}
.ws41{word-spacing:-3.840000pt;}
.ws8c{word-spacing:-3.786667pt;}
.ws98{word-spacing:-3.754667pt;}
.ws21{word-spacing:-3.680000pt;}
.wscc{word-spacing:-3.541333pt;}
.ws33{word-spacing:-3.520000pt;}
.wsb8{word-spacing:-3.456000pt;}
.ws7c{word-spacing:-3.413333pt;}
.ws22{word-spacing:-3.200000pt;}
.ws44{word-spacing:-3.146667pt;}
.wsc2{word-spacing:-3.072000pt;}
.ws6{word-spacing:-3.040000pt;}
.ws7a{word-spacing:-2.933333pt;}
.wscd{word-spacing:-2.816000pt;}
.ws19{word-spacing:-2.773333pt;}
.ws1c{word-spacing:-2.666667pt;}
.wsad{word-spacing:-2.645333pt;}
.ws24{word-spacing:-2.613333pt;}
.ws3{word-spacing:-2.565333pt;}
.ws3a{word-spacing:-2.560000pt;}
.ws3d{word-spacing:-2.506667pt;}
.ws38{word-spacing:-2.453333pt;}
.ws4f{word-spacing:-2.400000pt;}
.ws1d{word-spacing:-2.346667pt;}
.ws7f{word-spacing:-2.293333pt;}
.ws97{word-spacing:-2.261333pt;}
.ws25{word-spacing:-2.240000pt;}
.wsc4{word-spacing:-2.218667pt;}
.ws7d{word-spacing:-2.186667pt;}
.wsac{word-spacing:-2.176000pt;}
.wsb{word-spacing:-2.133333pt;}
.ws2c{word-spacing:-2.080000pt;}
.wsa2{word-spacing:-2.048000pt;}
.ws39{word-spacing:-2.026667pt;}
.wsc9{word-spacing:-2.005333pt;}
.ws9{word-spacing:-1.973333pt;}
.wscb{word-spacing:-1.962667pt;}
.ws1e{word-spacing:-1.920000pt;}
.ws2e{word-spacing:-1.866667pt;}
.wsab{word-spacing:-1.834667pt;}
.ws7e{word-spacing:-1.813333pt;}
.ws8a{word-spacing:-1.760000pt;}
.wsa0{word-spacing:-1.749333pt;}
.ws1f{word-spacing:-1.706667pt;}
.wsc7{word-spacing:-1.664000pt;}
.ws10{word-spacing:-1.653333pt;}
.ws9b{word-spacing:-1.621333pt;}
.ws45{word-spacing:-1.600000pt;}
.ws2a{word-spacing:-1.546667pt;}
.wsae{word-spacing:-1.536000pt;}
.wsc{word-spacing:-1.493333pt;}
.ws9f{word-spacing:-1.450667pt;}
.ws1b{word-spacing:-1.440000pt;}
.wsbb{word-spacing:-1.408000pt;}
.ws15{word-spacing:-1.386667pt;}
.wsb7{word-spacing:-1.365333pt;}
.ws5{word-spacing:-1.333333pt;}
.wsa9{word-spacing:-1.322667pt;}
.wsf{word-spacing:-1.280000pt;}
.wsc1{word-spacing:-1.237333pt;}
.ws1a{word-spacing:-1.226667pt;}
.ws96{word-spacing:-1.194667pt;}
.wsd{word-spacing:-1.173333pt;}
.wsc6{word-spacing:-1.152000pt;}
.wsa{word-spacing:-1.120000pt;}
.wsc5{word-spacing:-1.109333pt;}
.ws2d{word-spacing:-1.066667pt;}
.ws26{word-spacing:-1.013333pt;}
.ws9d{word-spacing:-0.981333pt;}
.ws43{word-spacing:-0.960000pt;}
.wsc0{word-spacing:-0.938667pt;}
.ws32{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.896000pt;}
.ws2f{word-spacing:-0.853333pt;}
.wsbf{word-spacing:-0.810667pt;}
.ws28{word-spacing:-0.800000pt;}
.wsa7{word-spacing:-0.768000pt;}
.ws11{word-spacing:-0.746667pt;}
.wsa5{word-spacing:-0.725333pt;}
.ws8{word-spacing:-0.693333pt;}
.wsa6{word-spacing:-0.682667pt;}
.ws29{word-spacing:-0.640000pt;}
.wsbd{word-spacing:-0.597333pt;}
.ws13{word-spacing:-0.586667pt;}
.wsbc{word-spacing:-0.554667pt;}
.ws31{word-spacing:-0.533333pt;}
.wsbe{word-spacing:-0.512000pt;}
.ws23{word-spacing:-0.480000pt;}
.ws9e{word-spacing:-0.469333pt;}
.ws7{word-spacing:-0.426667pt;}
.ws9a{word-spacing:-0.384000pt;}
.ws2b{word-spacing:-0.373333pt;}
.wsa3{word-spacing:-0.341333pt;}
.ws20{word-spacing:-0.320000pt;}
.wsaa{word-spacing:-0.298667pt;}
.ws18{word-spacing:-0.266667pt;}
.ws76{word-spacing:-0.256000pt;}
.ws4{word-spacing:-0.213333pt;}
.wsc3{word-spacing:-0.170667pt;}
.wse{word-spacing:-0.160000pt;}
.wsb9{word-spacing:-0.128000pt;}
.ws35{word-spacing:-0.106667pt;}
.wsa8{word-spacing:-0.085333pt;}
.ws27{word-spacing:-0.053333pt;}
.ws82{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws51{word-spacing:0.053333pt;}
.wsba{word-spacing:0.085333pt;}
.ws12{word-spacing:0.106667pt;}
.ws14{word-spacing:0.160000pt;}
.ws79{word-spacing:0.213333pt;}
.ws89{word-spacing:0.320000pt;}
.ws8d{word-spacing:0.480000pt;}
.ws46{word-spacing:0.810667pt;}
.ws74{word-spacing:0.853333pt;}
.ws52{word-spacing:0.960000pt;}
.ws3e{word-spacing:1.226667pt;}
.ws75{word-spacing:1.493333pt;}
.ws7b{word-spacing:1.920000pt;}
.ws3c{word-spacing:1.973333pt;}
.ws99{word-spacing:2.005333pt;}
.ws53{word-spacing:2.176000pt;}
.wsce{word-spacing:2.400000pt;}
.ws3b{word-spacing:2.933333pt;}
.wsa1{word-spacing:3.498667pt;}
.ws81{word-spacing:3.541333pt;}
.ws3f{word-spacing:4.373333pt;}
.ws40{word-spacing:4.426667pt;}
.ws50{word-spacing:4.853333pt;}
.ws95{word-spacing:4.906667pt;}
.ws64{word-spacing:102.186667pt;}
.ws5b{word-spacing:106.112000pt;}
.ws65{word-spacing:111.957333pt;}
.ws5a{word-spacing:112.725333pt;}
.ws63{word-spacing:120.234667pt;}
.ws59{word-spacing:122.624000pt;}
.ws5f{word-spacing:123.776000pt;}
.ws57{word-spacing:126.165333pt;}
.ws69{word-spacing:127.317333pt;}
.ws72{word-spacing:128.384000pt;}
.ws71{word-spacing:129.578667pt;}
.ws55{word-spacing:129.749333pt;}
.ws54{word-spacing:130.773333pt;}
.ws4c{word-spacing:130.901333pt;}
.ws66{word-spacing:131.072000pt;}
.ws70{word-spacing:131.546667pt;}
.ws5c{word-spacing:133.120000pt;}
.ws6e{word-spacing:135.466667pt;}
.ws6a{word-spacing:136.661333pt;}
.ws5e{word-spacing:136.704000pt;}
.ws68{word-spacing:137.429333pt;}
.ws5d{word-spacing:137.856000pt;}
.ws61{word-spacing:137.898667pt;}
.ws6d{word-spacing:140.202667pt;}
.ws6b{word-spacing:140.245333pt;}
.ws6f{word-spacing:142.634667pt;}
.ws6c{word-spacing:144.938667pt;}
.ws60{word-spacing:205.397333pt;}
.ws67{word-spacing:215.253333pt;}
.ws62{word-spacing:216.064000pt;}
.ws4d{word-spacing:225.920000pt;}
.ws4e{word-spacing:236.586667pt;}
.ws4b{word-spacing:243.712000pt;}
.ws58{word-spacing:282.325333pt;}
._f{margin-left:-2576.085333pt;}
._63{margin-left:-2554.922667pt;}
._a{margin-left:-6.880000pt;}
._c{margin-left:-5.835200pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.786667pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.012800pt;}
._b{width:1.146667pt;}
._6{width:2.053333pt;}
._9{width:3.466667pt;}
._4{width:4.640000pt;}
._5{width:5.706667pt;}
._8{width:6.666667pt;}
._7{width:8.160000pt;}
._d{width:9.333333pt;}
._e{width:10.453333pt;}
._3c{width:83.754667pt;}
._3d{width:95.189333pt;}
._68{width:96.640000pt;}
._11{width:97.578667pt;}
._42{width:102.186667pt;}
._1b{width:103.594667pt;}
._2f{width:104.832000pt;}
._3a{width:106.026667pt;}
._61{width:107.226667pt;}
._25{width:112.853333pt;}
._41{width:115.370667pt;}
._1a{width:117.162667pt;}
._49{width:119.216000pt;}
._48{width:122.624000pt;}
._19{width:123.520000pt;}
._6c{width:124.842667pt;}
._2a{width:126.293333pt;}
._30{width:127.829333pt;}
._12{width:129.706667pt;}
._24{width:130.901333pt;}
._2c{width:131.968000pt;}
._4d{width:133.290667pt;}
._34{width:134.314667pt;}
._47{width:135.509333pt;}
._44{width:137.386667pt;}
._36{width:138.496000pt;}
._4b{width:139.386667pt;}
._27{width:140.416000pt;}
._18{width:141.568000pt;}
._3f{width:142.634667pt;}
._29{width:143.829333pt;}
._1d{width:144.981333pt;}
._77{width:146.133333pt;}
._15{width:147.370667pt;}
._17{width:148.565333pt;}
._85{width:149.760000pt;}
._32{width:150.858667pt;}
._20{width:152.106667pt;}
._23{width:153.301333pt;}
._71{width:157.136000pt;}
._38{width:163.968000pt;}
._73{width:167.002667pt;}
._5a{width:183.210667pt;}
._55{width:189.530667pt;}
._59{width:198.906133pt;}
._6e{width:203.610667pt;}
._58{width:217.224533pt;}
._33{width:219.477333pt;}
._57{width:226.389333pt;}
._7d{width:227.279467pt;}
._6d{width:230.186667pt;}
._4e{width:232.069333pt;}
._1e{width:236.586667pt;}
._53{width:244.058667pt;}
._5c{width:247.253333pt;}
._5b{width:252.586667pt;}
._7e{width:257.493333pt;}
._5e{width:258.517333pt;}
._4c{width:264.154667pt;}
._13{width:267.818667pt;}
._54{width:268.751467pt;}
._72{width:270.336000pt;}
._26{width:273.584000pt;}
._28{width:277.546667pt;}
._40{width:279.514667pt;}
._1c{width:282.325333pt;}
._5d{width:283.392000pt;}
._4f{width:286.976000pt;}
._74{width:288.128000pt;}
._21{width:289.450667pt;}
._7b{width:290.474667pt;}
._52{width:292.613333pt;}
._1f{width:294.144000pt;}
._14{width:297.124800pt;}
._6f{width:299.946667pt;}
._56{width:300.848000pt;}
._31{width:302.677333pt;}
._7c{width:304.474667pt;}
._43{width:307.114667pt;}
._67{width:308.352000pt;}
._50{width:310.784000pt;}
._51{width:313.088000pt;}
._37{width:315.056000pt;}
._70{width:316.586667pt;}
._2b{width:317.781333pt;}
._82{width:318.933333pt;}
._16{width:321.114667pt;}
._35{width:322.181333pt;}
._22{width:323.840000pt;}
._76{width:328.405333pt;}
._2d{width:329.306667pt;}
._39{width:330.794667pt;}
._84{width:332.032000pt;}
._7f{width:335.280000pt;}
._10{width:336.234667pt;}
._60{width:338.212800pt;}
._5f{width:339.413333pt;}
._81{width:342.656000pt;}
._80{width:349.824000pt;}
._3b{width:352.128000pt;}
._64{width:353.408000pt;}
._3e{width:355.418667pt;}
._6a{width:359.296000pt;}
._66{width:360.874667pt;}
._46{width:366.128000pt;}
._62{width:367.322667pt;}
._69{width:368.725333pt;}
._65{width:376.277333pt;}
._79{width:378.197333pt;}
._45{width:384.213333pt;}
._4a{width:387.712000pt;}
._88{width:394.880000pt;}
._2e{width:395.989333pt;}
._75{width:404.266667pt;}
._86{width:419.797333pt;}
._78{width:420.864000pt;}
._87{width:423.338667pt;}
._6b{width:430.421333pt;}
._89{width:435.157333pt;}
._83{width:438.698667pt;}
._7a{width:442.154667pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y129{bottom:74.365467pt;}
.y11d{bottom:74.461867pt;}
.y64{bottom:74.462533pt;}
.y15f{bottom:74.464533pt;}
.y115{bottom:74.498667pt;}
.y16b{bottom:74.595867pt;}
.y80{bottom:74.729200pt;}
.y122{bottom:74.753867pt;}
.y99{bottom:75.131867pt;}
.y2b{bottom:78.347600pt;}
.yb5{bottom:82.659200pt;}
.yee{bottom:83.825067pt;}
.y1a7{bottom:84.552800pt;}
.y1e7{bottom:84.678667pt;}
.y128{bottom:88.360133pt;}
.y11c{bottom:88.456533pt;}
.y121{bottom:88.748533pt;}
.y98{bottom:89.126533pt;}
.y114{bottom:89.165333pt;}
.y63{bottom:90.462533pt;}
.y15e{bottom:90.464533pt;}
.y16a{bottom:90.595867pt;}
.y7f{bottom:90.729200pt;}
.yb4{bottom:97.101867pt;}
.y1a6{bottom:97.886133pt;}
.y1e6{bottom:98.012000pt;}
.yed{bottom:98.267733pt;}
.y127{bottom:102.354800pt;}
.y11b{bottom:102.451200pt;}
.y113{bottom:103.832000pt;}
.y62{bottom:106.462533pt;}
.y15d{bottom:106.464533pt;}
.y169{bottom:106.595867pt;}
.y7e{bottom:106.729200pt;}
.y1a5{bottom:111.219467pt;}
.y1e5{bottom:111.345333pt;}
.yb3{bottom:111.544533pt;}
.yec{bottom:112.710400pt;}
.y112{bottom:118.498667pt;}
.y197{bottom:122.355867pt;}
.y61{bottom:122.462533pt;}
.y15c{bottom:122.464533pt;}
.y168{bottom:122.595867pt;}
.y7d{bottom:122.729200pt;}
.y1a4{bottom:124.552800pt;}
.y1e4{bottom:124.678667pt;}
.yb2{bottom:125.987200pt;}
.yeb{bottom:127.153067pt;}
.y111{bottom:133.165333pt;}
.y1a3{bottom:137.886133pt;}
.y1e3{bottom:138.012000pt;}
.y196{bottom:138.355867pt;}
.y60{bottom:138.462533pt;}
.y15b{bottom:138.464533pt;}
.y167{bottom:138.595867pt;}
.y7c{bottom:138.729200pt;}
.y28{bottom:140.320933pt;}
.yb1{bottom:140.429867pt;}
.yea{bottom:141.595733pt;}
.y110{bottom:147.832000pt;}
.y1a2{bottom:151.219467pt;}
.y1e2{bottom:151.345333pt;}
.y195{bottom:154.355867pt;}
.y5f{bottom:154.462533pt;}
.y15a{bottom:154.464533pt;}
.y166{bottom:154.595867pt;}
.y7b{bottom:154.729200pt;}
.yb0{bottom:154.872533pt;}
.ye9{bottom:156.038400pt;}
.y27{bottom:156.320933pt;}
.y1a1{bottom:164.552800pt;}
.y1e1{bottom:164.678667pt;}
.yaf{bottom:169.315200pt;}
.y194{bottom:170.355867pt;}
.y5e{bottom:170.462533pt;}
.y159{bottom:170.464533pt;}
.ye8{bottom:170.481067pt;}
.y10f{bottom:170.509333pt;}
.y165{bottom:170.595867pt;}
.y7a{bottom:170.729200pt;}
.y26{bottom:172.320933pt;}
.y1a0{bottom:177.886133pt;}
.y1e0{bottom:178.012000pt;}
.yae{bottom:183.757867pt;}
.ye7{bottom:184.923733pt;}
.y10e{bottom:184.952000pt;}
.y193{bottom:186.355867pt;}
.y5d{bottom:186.462533pt;}
.y158{bottom:186.464533pt;}
.y164{bottom:186.595867pt;}
.y79{bottom:186.729200pt;}
.y25{bottom:188.320933pt;}
.y19f{bottom:191.219467pt;}
.y1df{bottom:191.345333pt;}
.yad{bottom:198.200533pt;}
.ye6{bottom:199.366400pt;}
.y10d{bottom:199.394667pt;}
.y192{bottom:202.355867pt;}
.y5c{bottom:202.462533pt;}
.y157{bottom:202.464533pt;}
.y163{bottom:202.595867pt;}
.y78{bottom:202.729200pt;}
.y24{bottom:204.320933pt;}
.y19e{bottom:204.552800pt;}
.y1de{bottom:204.678667pt;}
.ye5{bottom:213.809067pt;}
.y10c{bottom:213.837333pt;}
.y1dd{bottom:218.012000pt;}
.y191{bottom:218.355867pt;}
.y5b{bottom:218.462533pt;}
.y156{bottom:218.464533pt;}
.y77{bottom:218.729200pt;}
.y23{bottom:220.320933pt;}
.yac{bottom:226.541867pt;}
.ye4{bottom:228.251733pt;}
.y10b{bottom:228.280000pt;}
.y1dc{bottom:231.345333pt;}
.y19d{bottom:233.984533pt;}
.y162{bottom:234.235867pt;}
.y190{bottom:234.355867pt;}
.y5a{bottom:234.462533pt;}
.y155{bottom:234.464533pt;}
.y76{bottom:234.729200pt;}
.y22{bottom:236.320933pt;}
.ye3{bottom:242.694400pt;}
.y10a{bottom:242.722667pt;}
.y1db{bottom:244.678667pt;}
.y18f{bottom:250.355867pt;}
.y59{bottom:250.462533pt;}
.y154{bottom:250.464533pt;}
.y75{bottom:250.729200pt;}
.y21{bottom:252.320933pt;}
.y125{bottom:256.712667pt;}
.ye2{bottom:257.137067pt;}
.y109{bottom:257.165333pt;}
.yab{bottom:257.559733pt;}
.y1da{bottom:258.012000pt;}
.y18e{bottom:266.355867pt;}
.y58{bottom:266.462533pt;}
.y153{bottom:266.464533pt;}
.y74{bottom:266.729200pt;}
.y20{bottom:268.320933pt;}
.y21a{bottom:271.345333pt;}
.y1d9{bottom:271.347467pt;}
.y108{bottom:271.608000pt;}
.ye1{bottom:271.653867pt;}
.yaa{bottom:274.893067pt;}
.y18d{bottom:282.355867pt;}
.y57{bottom:282.462533pt;}
.y152{bottom:282.464533pt;}
.y73{bottom:282.729200pt;}
.y1f{bottom:284.320933pt;}
.y219{bottom:284.678667pt;}
.y1d8{bottom:284.680800pt;}
.y107{bottom:286.050667pt;}
.ye0{bottom:286.096533pt;}
.ya9{bottom:292.226400pt;}
.y218{bottom:298.012000pt;}
.y1d7{bottom:298.014133pt;}
.y19c{bottom:298.104533pt;}
.y18c{bottom:298.355867pt;}
.y56{bottom:298.462533pt;}
.y151{bottom:298.464533pt;}
.y72{bottom:298.729200pt;}
.y1e{bottom:300.320933pt;}
.y106{bottom:300.493333pt;}
.ydf{bottom:300.539200pt;}
.y217{bottom:311.345333pt;}
.y1d6{bottom:311.347467pt;}
.y18b{bottom:314.355867pt;}
.y55{bottom:314.462533pt;}
.y150{bottom:314.464533pt;}
.y105{bottom:314.936000pt;}
.yde{bottom:314.981867pt;}
.y1d{bottom:316.320933pt;}
.y216{bottom:324.678667pt;}
.y1d5{bottom:324.680800pt;}
.y104{bottom:329.378667pt;}
.ydd{bottom:329.424533pt;}
.y19b{bottom:330.104533pt;}
.y18a{bottom:330.355867pt;}
.y71{bottom:330.369200pt;}
.y54{bottom:330.462533pt;}
.y14f{bottom:330.464533pt;}
.ya8{bottom:331.761733pt;}
.y1c{bottom:332.320933pt;}
.y215{bottom:338.012000pt;}
.y1d4{bottom:338.014133pt;}
.y103{bottom:343.821333pt;}
.ydc{bottom:343.867200pt;}
.ya7{bottom:345.756400pt;}
.y189{bottom:346.355867pt;}
.y53{bottom:346.462533pt;}
.y14e{bottom:346.464533pt;}
.y2a{bottom:348.320933pt;}
.y214{bottom:351.345333pt;}
.y1d3{bottom:351.347467pt;}
.y102{bottom:358.264000pt;}
.ydb{bottom:358.309867pt;}
.y188{bottom:362.355867pt;}
.y52{bottom:362.462533pt;}
.y14d{bottom:362.464533pt;}
.y70{bottom:362.595867pt;}
.y1b{bottom:363.962800pt;}
.y29{bottom:364.320933pt;}
.y213{bottom:364.678667pt;}
.y1d2{bottom:364.680800pt;}
.y101{bottom:372.706667pt;}
.yda{bottom:372.752533pt;}
.y212{bottom:378.012000pt;}
.y1d1{bottom:378.014133pt;}
.y19a{bottom:378.104533pt;}
.y187{bottom:378.355867pt;}
.y51{bottom:378.462533pt;}
.y14c{bottom:378.464533pt;}
.y6f{bottom:378.595867pt;}
.y11a{bottom:379.005867pt;}
.yd9{bottom:387.195200pt;}
.y100{bottom:387.212800pt;}
.y211{bottom:391.345333pt;}
.y1d0{bottom:391.347467pt;}
.y119{bottom:393.000533pt;}
.y186{bottom:394.355867pt;}
.y50{bottom:394.462533pt;}
.y14b{bottom:394.464533pt;}
.y6e{bottom:394.595867pt;}
.yd8{bottom:401.637867pt;}
.yff{bottom:401.655467pt;}
.y210{bottom:404.678667pt;}
.y1cf{bottom:404.680800pt;}
.y185{bottom:410.355867pt;}
.y4f{bottom:410.462533pt;}
.y14a{bottom:410.464533pt;}
.y6d{bottom:410.595867pt;}
.y124{bottom:414.451333pt;}
.yd7{bottom:416.080533pt;}
.yfe{bottom:416.098133pt;}
.y20f{bottom:418.012000pt;}
.y1ce{bottom:418.014133pt;}
.y184{bottom:426.355867pt;}
.y4e{bottom:426.462533pt;}
.y149{bottom:426.464533pt;}
.y6c{bottom:426.595867pt;}
.yd6{bottom:430.523200pt;}
.yfd{bottom:430.540800pt;}
.y20e{bottom:431.345333pt;}
.y1cd{bottom:431.347467pt;}
.y1a{bottom:431.523733pt;}
.y183{bottom:442.355867pt;}
.y4d{bottom:442.462533pt;}
.y148{bottom:442.464533pt;}
.y6b{bottom:442.595867pt;}
.y20d{bottom:444.678667pt;}
.y1cc{bottom:444.680800pt;}
.yd5{bottom:444.965867pt;}
.yfc{bottom:444.983467pt;}
.y19{bottom:455.830400pt;}
.y20c{bottom:458.012000pt;}
.y1cb{bottom:458.014133pt;}
.y199{bottom:458.104533pt;}
.y182{bottom:458.355867pt;}
.y4c{bottom:458.462533pt;}
.y147{bottom:458.464533pt;}
.y6a{bottom:458.595867pt;}
.yd4{bottom:459.408533pt;}
.yfb{bottom:459.426133pt;}
.y20b{bottom:471.345333pt;}
.y1ca{bottom:471.347467pt;}
.y18{bottom:471.830400pt;}
.yd3{bottom:473.851200pt;}
.yfa{bottom:473.868800pt;}
.y181{bottom:474.355867pt;}
.y4b{bottom:474.462533pt;}
.y146{bottom:474.464533pt;}
.y69{bottom:474.595867pt;}
.y20a{bottom:484.678667pt;}
.y1c9{bottom:484.680800pt;}
.y17{bottom:487.830400pt;}
.yd2{bottom:488.293867pt;}
.yf9{bottom:488.311467pt;}
.y180{bottom:490.355867pt;}
.y4a{bottom:490.462533pt;}
.y145{bottom:490.464533pt;}
.y68{bottom:490.595867pt;}
.y209{bottom:498.012000pt;}
.y1c8{bottom:498.014133pt;}
.yd1{bottom:502.736533pt;}
.yf8{bottom:502.754133pt;}
.y16{bottom:503.830400pt;}
.y17f{bottom:506.355867pt;}
.y49{bottom:506.462533pt;}
.y144{bottom:506.464533pt;}
.y208{bottom:511.345333pt;}
.y1c7{bottom:511.347467pt;}
.yd0{bottom:517.179200pt;}
.yf7{bottom:517.196800pt;}
.y15{bottom:519.830400pt;}
.y67{bottom:522.235867pt;}
.y17e{bottom:522.355867pt;}
.y48{bottom:522.462533pt;}
.y143{bottom:522.464533pt;}
.y207{bottom:524.678667pt;}
.y1c6{bottom:524.680800pt;}
.ycf{bottom:531.621867pt;}
.yf6{bottom:531.639467pt;}
.y14{bottom:535.830400pt;}
.y206{bottom:538.012000pt;}
.y1c5{bottom:538.014133pt;}
.y17d{bottom:538.355867pt;}
.y47{bottom:538.462533pt;}
.y142{bottom:538.464533pt;}
.yce{bottom:546.064533pt;}
.yf5{bottom:546.082133pt;}
.y205{bottom:551.345333pt;}
.y1c4{bottom:551.347467pt;}
.y13{bottom:551.830400pt;}
.y17c{bottom:554.355867pt;}
.y46{bottom:554.462533pt;}
.y141{bottom:554.464533pt;}
.y97{bottom:554.582533pt;}
.ycd{bottom:560.507200pt;}
.yf4{bottom:560.524800pt;}
.y123{bottom:562.308000pt;}
.y204{bottom:564.678667pt;}
.y1c3{bottom:564.680800pt;}
.y12{bottom:567.830400pt;}
.y17b{bottom:570.355867pt;}
.y45{bottom:570.462533pt;}
.y140{bottom:570.464533pt;}
.y96{bottom:570.582533pt;}
.yf3{bottom:574.967467pt;}
.ycc{bottom:575.016400pt;}
.y203{bottom:578.012000pt;}
.y1c2{bottom:578.014133pt;}
.y11{bottom:583.830400pt;}
.y44{bottom:586.462533pt;}
.y13f{bottom:586.464533pt;}
.y95{bottom:586.582533pt;}
.yf2{bottom:589.410133pt;}
.ycb{bottom:589.459067pt;}
.y202{bottom:591.345333pt;}
.y1c1{bottom:591.347467pt;}
.y10{bottom:599.830400pt;}
.y17a{bottom:601.995867pt;}
.y198{bottom:602.104533pt;}
.y43{bottom:602.462533pt;}
.y13e{bottom:602.464533pt;}
.y94{bottom:602.582533pt;}
.yf1{bottom:603.852800pt;}
.yca{bottom:603.901733pt;}
.y201{bottom:604.678667pt;}
.y1c0{bottom:604.680800pt;}
.yf{bottom:615.830400pt;}
.y200{bottom:618.012000pt;}
.y1bf{bottom:618.014133pt;}
.yf0{bottom:618.295467pt;}
.yc9{bottom:618.344400pt;}
.y42{bottom:618.462533pt;}
.y13d{bottom:618.464533pt;}
.y93{bottom:618.582533pt;}
.y1ff{bottom:631.345333pt;}
.y1be{bottom:631.347467pt;}
.ye{bottom:631.830400pt;}
.yef{bottom:632.738133pt;}
.yc8{bottom:632.787067pt;}
.y41{bottom:634.462533pt;}
.y13c{bottom:634.464533pt;}
.y92{bottom:634.582533pt;}
.y1fe{bottom:644.678667pt;}
.y1bd{bottom:644.680800pt;}
.yc7{bottom:647.229733pt;}
.yd{bottom:647.830400pt;}
.y40{bottom:650.462533pt;}
.y13b{bottom:650.464533pt;}
.y179{bottom:650.475867pt;}
.y91{bottom:650.582533pt;}
.y1fd{bottom:658.012000pt;}
.y1bc{bottom:658.014133pt;}
.yc6{bottom:661.672400pt;}
.yc{bottom:663.830400pt;}
.y3f{bottom:666.462533pt;}
.y13a{bottom:666.464533pt;}
.y178{bottom:666.475867pt;}
.y90{bottom:666.582533pt;}
.y1fc{bottom:671.345333pt;}
.y1bb{bottom:671.347467pt;}
.yc5{bottom:676.115067pt;}
.yb{bottom:679.830400pt;}
.y3e{bottom:682.462533pt;}
.y139{bottom:682.464533pt;}
.y177{bottom:682.475867pt;}
.y8f{bottom:682.582533pt;}
.y1fb{bottom:684.678667pt;}
.y1ba{bottom:684.680800pt;}
.yc4{bottom:690.557733pt;}
.ya{bottom:695.830400pt;}
.y1fa{bottom:698.012000pt;}
.y1b9{bottom:698.014133pt;}
.y120{bottom:698.102533pt;}
.y3d{bottom:698.462533pt;}
.y138{bottom:698.464533pt;}
.y176{bottom:698.475867pt;}
.y8e{bottom:698.582533pt;}
.yc3{bottom:705.000400pt;}
.y1f9{bottom:711.345333pt;}
.y1b8{bottom:711.347467pt;}
.y9{bottom:711.830400pt;}
.y3c{bottom:714.462533pt;}
.y137{bottom:714.464533pt;}
.y175{bottom:714.475867pt;}
.y8d{bottom:714.582533pt;}
.yc2{bottom:719.443067pt;}
.y1f8{bottom:724.678667pt;}
.y1b7{bottom:724.680800pt;}
.y11f{bottom:729.982533pt;}
.y3b{bottom:730.462533pt;}
.y136{bottom:730.464533pt;}
.y174{bottom:730.475867pt;}
.y8c{bottom:730.582533pt;}
.yc1{bottom:733.885733pt;}
.y1f7{bottom:738.012000pt;}
.y1b6{bottom:738.014133pt;}
.y3a{bottom:746.462533pt;}
.y135{bottom:746.464533pt;}
.y173{bottom:746.475867pt;}
.y8b{bottom:746.582533pt;}
.y9c{bottom:746.595867pt;}
.ya6{bottom:746.609200pt;}
.yc0{bottom:748.328400pt;}
.y1f6{bottom:751.345333pt;}
.y1b5{bottom:751.347467pt;}
.y8{bottom:751.970933pt;}
.y39{bottom:762.462533pt;}
.y134{bottom:762.464533pt;}
.y172{bottom:762.475867pt;}
.y8a{bottom:762.582533pt;}
.ya5{bottom:762.609200pt;}
.ybf{bottom:762.771067pt;}
.y7{bottom:763.038267pt;}
.y1f5{bottom:764.678667pt;}
.y1b4{bottom:764.680800pt;}
.ybe{bottom:777.213733pt;}
.y1f4{bottom:778.012000pt;}
.y1b3{bottom:778.014133pt;}
.y9b{bottom:778.235867pt;}
.y38{bottom:778.462533pt;}
.y133{bottom:778.464533pt;}
.y171{bottom:778.475867pt;}
.y89{bottom:778.582533pt;}
.ya4{bottom:778.609200pt;}
.y6{bottom:791.229867pt;}
.y1f3{bottom:791.345333pt;}
.y1b2{bottom:791.347467pt;}
.ybd{bottom:791.656400pt;}
.y37{bottom:794.462533pt;}
.y132{bottom:794.464533pt;}
.y170{bottom:794.475867pt;}
.y88{bottom:794.582533pt;}
.ya3{bottom:794.609200pt;}
.y1f2{bottom:804.678667pt;}
.y1b1{bottom:804.680800pt;}
.ybc{bottom:806.099067pt;}
.y36{bottom:810.462533pt;}
.y131{bottom:810.464533pt;}
.y16f{bottom:810.475867pt;}
.y87{bottom:810.582533pt;}
.y118{bottom:810.595867pt;}
.ya2{bottom:810.609200pt;}
.y1f1{bottom:818.012000pt;}
.y1b0{bottom:818.014133pt;}
.ybb{bottom:820.541733pt;}
.y5{bottom:821.583067pt;}
.y66{bottom:826.102533pt;}
.y35{bottom:826.462533pt;}
.y130{bottom:826.464533pt;}
.y16e{bottom:826.475867pt;}
.y86{bottom:826.582533pt;}
.y117{bottom:826.595867pt;}
.y1f0{bottom:831.345333pt;}
.y1af{bottom:831.347467pt;}
.yba{bottom:834.984400pt;}
.ya1{bottom:842.249200pt;}
.y34{bottom:842.462533pt;}
.y12f{bottom:842.464533pt;}
.y16d{bottom:842.475867pt;}
.y85{bottom:842.582533pt;}
.y1ef{bottom:844.678667pt;}
.y1ae{bottom:844.680800pt;}
.yb9{bottom:849.427067pt;}
.y65{bottom:857.982533pt;}
.y1ee{bottom:858.012000pt;}
.y1ad{bottom:858.014133pt;}
.y116{bottom:858.235867pt;}
.y33{bottom:858.462533pt;}
.y12e{bottom:858.464533pt;}
.y16c{bottom:858.475867pt;}
.y84{bottom:858.582533pt;}
.y4{bottom:862.635733pt;}
.yb8{bottom:863.869733pt;}
.y1ed{bottom:871.345333pt;}
.y1ac{bottom:871.347467pt;}
.y32{bottom:874.462533pt;}
.y12d{bottom:874.464533pt;}
.ya0{bottom:874.475867pt;}
.y1ec{bottom:884.678667pt;}
.y1ab{bottom:884.680800pt;}
.y83{bottom:890.222533pt;}
.y31{bottom:890.462533pt;}
.y12c{bottom:890.464533pt;}
.y9f{bottom:890.475867pt;}
.yb7{bottom:891.549733pt;}
.y3{bottom:895.045333pt;}
.y1eb{bottom:898.012000pt;}
.y1aa{bottom:898.014133pt;}
.y30{bottom:906.462533pt;}
.y161{bottom:906.464533pt;}
.y9e{bottom:906.475867pt;}
.y1ea{bottom:911.345333pt;}
.y1a9{bottom:911.347467pt;}
.y82{bottom:922.102533pt;}
.y12b{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.y160{bottom:922.464533pt;}
.y9d{bottom:922.475867pt;}
.y1e9{bottom:924.678667pt;}
.y1a8{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y81{bottom:1006.594400pt;}
.y9a{bottom:1006.597067pt;}
.y1e8{bottom:1006.598667pt;}
.y12a{bottom:1006.600133pt;}
.y126{bottom:1006.600667pt;}
.y11e{bottom:1006.611200pt;}
.yb6{bottom:1006.627200pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:25.255208pt;}
.h2{height:27.197917pt;}
.ha{height:29.121094pt;}
.h6{height:29.160156pt;}
.hf{height:29.645833pt;}
.hc{height:31.062500pt;}
.hb{height:31.104167pt;}
.he{height:37.031250pt;}
.h9{height:37.057292pt;}
.h8{height:38.828125pt;}
.hd{height:38.854167pt;}
.h5{height:40.769531pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x15{left:69.921200pt;}
.x16{left:75.563867pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x17{left:88.818933pt;}
.x1e{left:90.708800pt;}
.x3{left:94.488133pt;}
.xb{left:98.271467pt;}
.x20{left:109.606267pt;}
.x5{left:117.165333pt;}
.x19{left:139.584000pt;}
.x1d{left:172.684800pt;}
.x18{left:176.778133pt;}
.x4{left:189.223467pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x12{left:425.195867pt;}
.x6{left:427.085333pt;}
.x1f{left:428.980800pt;}
.xe{left:436.538133pt;}
.x21{left:447.878267pt;}
.x13{left:455.435867pt;}
.x7{left:457.325333pt;}
.xd{left:466.911467pt;}
.x1b{left:526.195867pt;}
.x11{left:544.809200pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1a{left:641.526800pt;}
.xf{left:647.459200pt;}
.x1c{left:661.216133pt;}
.x14{left:666.356800pt;}
}




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