
    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_837c3977388ce89c0b3270f9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6485388954ef739e646443d8.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_2c5eecb171c8c06054777a01.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_9d8330e9fbb6a96a9db292c0.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_4e9a296c39f9dd94cdfac19e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_414a702020f124f4fd26b8d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9f719fbb9560459b22645667.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_db0c19a84a4612f0bc1781db.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909180;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_302ca3f3ae3a0bd8e7d825fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.715820;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_7a2bebb1ae847a21cec7533c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b3ce51b6a2582b47aa7e114c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4beaf1b96dc8b02d0dbdd1e3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6d119841170193d7fa2d3875.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.471800px;}
.v4{vertical-align:-3.410400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v7{vertical-align:2.723400px;}
.v8{vertical-align:16.476600px;}
.v1{vertical-align:22.655400px;}
.v6{vertical-align:24.447000px;}
.v5{vertical-align:27.000000px;}
.ls61{letter-spacing:-3.552000px;}
.ls14{letter-spacing:-0.720000px;}
.ls8f{letter-spacing:-0.360000px;}
.ls5f{letter-spacing:-0.240000px;}
.lsa7{letter-spacing:-0.192000px;}
.ls4e{letter-spacing:-0.180000px;}
.lsa9{letter-spacing:-0.144000px;}
.ls60{letter-spacing:-0.120000px;}
.lsa6{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.084000px;}
.ls3c{letter-spacing:-0.060000px;}
.lsa5{letter-spacing:-0.048000px;}
.ls4f{letter-spacing:-0.045000px;}
.ls13{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.003600px;}
.ls5e{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.004800px;}
.ls74{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls4a{letter-spacing:0.007200px;}
.ls59{letter-spacing:0.007800px;}
.ls5b{letter-spacing:0.008400px;}
.ls80{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.055800px;}
.ls57{letter-spacing:0.060000px;}
.ls7b{letter-spacing:0.096000px;}
.ls1f{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.180000px;}
.ls64{letter-spacing:0.186000px;}
.lsad{letter-spacing:0.192000px;}
.lsac{letter-spacing:0.228600px;}
.ls2{letter-spacing:0.240000px;}
.ls88{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.300000px;}
.ls79{letter-spacing:0.336000px;}
.ls40{letter-spacing:0.360000px;}
.ls95{letter-spacing:0.384000px;}
.ls45{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.432000px;}
.ls41{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.528000px;}
.lsd{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.576000px;}
.ls2d{letter-spacing:0.600000px;}
.ls9e{letter-spacing:0.624000px;}
.lsf{letter-spacing:0.660000px;}
.lsa1{letter-spacing:0.672000px;}
.ls16{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.780000px;}
.ls7{letter-spacing:0.816000px;}
.ls39{letter-spacing:0.840000px;}
.ls70{letter-spacing:0.864000px;}
.ls43{letter-spacing:0.900000px;}
.ls92{letter-spacing:0.912000px;}
.ls20{letter-spacing:0.960000px;}
.lsa8{letter-spacing:1.008000px;}
.ls31{letter-spacing:1.020000px;}
.ls3b{letter-spacing:1.080000px;}
.ls8d{letter-spacing:1.104000px;}
.ls37{letter-spacing:1.140000px;}
.ls97{letter-spacing:1.152000px;}
.ls2b{letter-spacing:1.200000px;}
.ls90{letter-spacing:1.248000px;}
.ls3a{letter-spacing:1.260000px;}
.ls6f{letter-spacing:1.296000px;}
.ls17{letter-spacing:1.320000px;}
.ls8b{letter-spacing:1.344000px;}
.ls34{letter-spacing:1.380000px;}
.ls8c{letter-spacing:1.392000px;}
.ls68{letter-spacing:1.428000px;}
.ls30{letter-spacing:1.440000px;}
.ls67{letter-spacing:1.446000px;}
.ls33{letter-spacing:1.500000px;}
.ls12{letter-spacing:1.560000px;}
.lsb{letter-spacing:1.620000px;}
.ls9b{letter-spacing:1.632000px;}
.ls46{letter-spacing:1.680000px;}
.ls91{letter-spacing:1.728000px;}
.ls28{letter-spacing:1.740000px;}
.ls25{letter-spacing:1.800000px;}
.ls9a{letter-spacing:1.824000px;}
.ls6c{letter-spacing:1.860000px;}
.ls99{letter-spacing:1.872000px;}
.ls4{letter-spacing:1.920000px;}
.lsa4{letter-spacing:1.968000px;}
.ls51{letter-spacing:1.980000px;}
.lsa2{letter-spacing:2.016000px;}
.ls26{letter-spacing:2.040000px;}
.ls83{letter-spacing:2.064000px;}
.ls2a{letter-spacing:2.100000px;}
.ls8a{letter-spacing:2.112000px;}
.ls66{letter-spacing:2.118000px;}
.lsc{letter-spacing:2.160000px;}
.ls78{letter-spacing:2.172000px;}
.ls9c{letter-spacing:2.208000px;}
.ls1a{letter-spacing:2.220000px;}
.ls36{letter-spacing:2.280000px;}
.ls85{letter-spacing:2.304000px;}
.ls1b{letter-spacing:2.340000px;}
.ls7a{letter-spacing:2.352000px;}
.ls1c{letter-spacing:2.400000px;}
.ls9f{letter-spacing:2.448000px;}
.ls29{letter-spacing:2.460000px;}
.ls7f{letter-spacing:2.496000px;}
.ls27{letter-spacing:2.520000px;}
.ls7d{letter-spacing:2.544000px;}
.ls38{letter-spacing:2.580000px;}
.ls7c{letter-spacing:2.592000px;}
.ls2f{letter-spacing:2.640000px;}
.ls3f{letter-spacing:2.700000px;}
.ls71{letter-spacing:2.760000px;}
.ls10{letter-spacing:2.820000px;}
.ls72{letter-spacing:2.880000px;}
.ls84{letter-spacing:2.928000px;}
.ls47{letter-spacing:2.940000px;}
.ls65{letter-spacing:2.970000px;}
.lsaa{letter-spacing:2.976000px;}
.ls35{letter-spacing:3.000000px;}
.ls18{letter-spacing:3.060000px;}
.ls8e{letter-spacing:3.120000px;}
.ls82{letter-spacing:3.168000px;}
.ls50{letter-spacing:3.180000px;}
.ls42{letter-spacing:3.240000px;}
.ls1d{letter-spacing:3.300000px;}
.ls63{letter-spacing:3.360000px;}
.lsa0{letter-spacing:3.408000px;}
.ls55{letter-spacing:3.420000px;}
.ls81{letter-spacing:3.456000px;}
.ls19{letter-spacing:3.540000px;}
.ls53{letter-spacing:3.600000px;}
.ls9d{letter-spacing:3.648000px;}
.ls56{letter-spacing:3.660000px;}
.ls73{letter-spacing:3.720000px;}
.ls96{letter-spacing:3.744000px;}
.ls2c{letter-spacing:3.780000px;}
.ls1e{letter-spacing:3.840000px;}
.ls32{letter-spacing:3.900000px;}
.ls52{letter-spacing:3.960000px;}
.lsab{letter-spacing:3.984000px;}
.ls11{letter-spacing:4.020000px;}
.ls86{letter-spacing:4.032000px;}
.ls3e{letter-spacing:4.140000px;}
.ls69{letter-spacing:4.260000px;}
.ls5{letter-spacing:4.416000px;}
.ls44{letter-spacing:4.560000px;}
.ls54{letter-spacing:4.740000px;}
.ls6a{letter-spacing:4.800000px;}
.ls87{letter-spacing:4.848000px;}
.ls6e{letter-spacing:4.920000px;}
.ls89{letter-spacing:5.088000px;}
.ls22{letter-spacing:5.220000px;}
.lsa3{letter-spacing:5.280000px;}
.ls93{letter-spacing:5.328000px;}
.ls62{letter-spacing:5.460000px;}
.ls98{letter-spacing:5.616000px;}
.lse{letter-spacing:5.700000px;}
.ls76{letter-spacing:5.820000px;}
.ls2e{letter-spacing:5.880000px;}
.ls6b{letter-spacing:5.940000px;}
.ls75{letter-spacing:6.540000px;}
.ls77{letter-spacing:6.660000px;}
.ls7e{letter-spacing:6.960000px;}
.ls6d{letter-spacing:8.220000px;}
.ls21{letter-spacing:8.520000px;}
.ls94{letter-spacing:9.696000px;}
.ls49{letter-spacing:88.554000px;}
.ls4b{letter-spacing:105.561600px;}
.ls4c{letter-spacing:145.719000px;}
.ls4d{letter-spacing:203.221200px;}
.ls5d{letter-spacing:252.420600px;}
.ls5c{letter-spacing:255.345000px;}
.ls58{letter-spacing:268.693200px;}
.ls5a{letter-spacing:287.365800px;}
.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;}
}
.ws48{word-spacing:-48.000000px;}
.ws5e{word-spacing:-24.900000px;}
.ws7a{word-spacing:-23.340000px;}
.ws5b{word-spacing:-22.620000px;}
.ws56{word-spacing:-21.600000px;}
.ws12{word-spacing:-20.220000px;}
.ws6f{word-spacing:-19.260000px;}
.ws13{word-spacing:-19.080000px;}
.ws55{word-spacing:-19.020000px;}
.ws94{word-spacing:-18.960000px;}
.ws7b{word-spacing:-18.840000px;}
.ws15{word-spacing:-18.420000px;}
.ws1{word-spacing:-18.348000px;}
.ws14{word-spacing:-18.180000px;}
.ws5c{word-spacing:-17.700000px;}
.ws5d{word-spacing:-17.640000px;}
.ws42{word-spacing:-17.460000px;}
.ws7e{word-spacing:-17.376000px;}
.ws6e{word-spacing:-17.220000px;}
.ws79{word-spacing:-17.160000px;}
.ws5a{word-spacing:-16.740000px;}
.ws43{word-spacing:-16.680000px;}
.wsb2{word-spacing:-16.512000px;}
.ws80{word-spacing:-16.464000px;}
.wsb1{word-spacing:-16.320000px;}
.ws7c{word-spacing:-15.936000px;}
.ws98{word-spacing:-15.072000px;}
.ws96{word-spacing:-14.976000px;}
.ws9c{word-spacing:-14.784000px;}
.ws99{word-spacing:-14.544000px;}
.ws9b{word-spacing:-14.352000px;}
.ws9e{word-spacing:-14.256000px;}
.ws7d{word-spacing:-14.208000px;}
.ws17{word-spacing:-14.178000px;}
.ws7f{word-spacing:-14.064000px;}
.ws9d{word-spacing:-14.016000px;}
.ws3{word-spacing:-13.920000px;}
.ws97{word-spacing:-13.776000px;}
.ws95{word-spacing:-13.632000px;}
.ws9a{word-spacing:-13.440000px;}
.ws2{word-spacing:-13.344000px;}
.ws93{word-spacing:-13.248000px;}
.ws33{word-spacing:-12.510000px;}
.ws57{word-spacing:-11.304000px;}
.ws0{word-spacing:-11.008800px;}
.ws58{word-spacing:-10.872000px;}
.ws59{word-spacing:-10.584000px;}
.wsb3{word-spacing:-10.152000px;}
.ws16{word-spacing:-10.008000px;}
.ws47{word-spacing:-9.792000px;}
.ws49{word-spacing:-8.006400px;}
.wsa1{word-spacing:-5.328000px;}
.wsa8{word-spacing:-3.648000px;}
.wsb5{word-spacing:-3.168000px;}
.ws5{word-spacing:-2.664000px;}
.ws8b{word-spacing:-2.640000px;}
.ws89{word-spacing:-2.592000px;}
.ws19{word-spacing:-2.400000px;}
.ws60{word-spacing:-2.340000px;}
.ws23{word-spacing:-2.220000px;}
.ws24{word-spacing:-2.160000px;}
.ws51{word-spacing:-2.100000px;}
.ws29{word-spacing:-1.740000px;}
.ws70{word-spacing:-1.680000px;}
.ws25{word-spacing:-1.500000px;}
.wsa7{word-spacing:-1.440000px;}
.ws8f{word-spacing:-1.344000px;}
.wsa0{word-spacing:-1.248000px;}
.ws20{word-spacing:-1.200000px;}
.ws7{word-spacing:-1.188000px;}
.ws84{word-spacing:-1.080000px;}
.ws1c{word-spacing:-0.960000px;}
.wsae{word-spacing:-0.912000px;}
.wsaa{word-spacing:-0.816000px;}
.ws41{word-spacing:-0.810000px;}
.wsa2{word-spacing:-0.720000px;}
.wsad{word-spacing:-0.672000px;}
.wsac{word-spacing:-0.528000px;}
.wsa4{word-spacing:-0.432000px;}
.ws4c{word-spacing:-0.420000px;}
.ws3b{word-spacing:-0.360000px;}
.ws50{word-spacing:-0.300000px;}
.ws3e{word-spacing:-0.240000px;}
.wsa{word-spacing:-0.144000px;}
.ws74{word-spacing:-0.060000px;}
.ws8a{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws9f{word-spacing:0.048000px;}
.ws6a{word-spacing:0.060000px;}
.ws6{word-spacing:0.084000px;}
.ws8e{word-spacing:0.096000px;}
.ws88{word-spacing:0.192000px;}
.ws3a{word-spacing:0.240000px;}
.ws2e{word-spacing:0.480000px;}
.ws91{word-spacing:0.528000px;}
.ws85{word-spacing:0.600000px;}
.ws54{word-spacing:0.624000px;}
.ws8d{word-spacing:0.672000px;}
.ws53{word-spacing:0.768000px;}
.ws2c{word-spacing:0.780000px;}
.ws1e{word-spacing:0.840000px;}
.ws31{word-spacing:1.020000px;}
.ws8c{word-spacing:1.104000px;}
.ws30{word-spacing:1.140000px;}
.wsd{word-spacing:1.152000px;}
.ws27{word-spacing:1.320000px;}
.wsf{word-spacing:1.440000px;}
.ws1a{word-spacing:1.560000px;}
.wsb4{word-spacing:1.584000px;}
.ws2a{word-spacing:1.620000px;}
.wsaf{word-spacing:1.632000px;}
.ws4b{word-spacing:1.680000px;}
.ws87{word-spacing:1.740000px;}
.wsb{word-spacing:1.872000px;}
.ws1d{word-spacing:1.920000px;}
.ws62{word-spacing:1.980000px;}
.ws40{word-spacing:2.160000px;}
.ws39{word-spacing:2.220000px;}
.wsa9{word-spacing:2.256000px;}
.ws26{word-spacing:2.280000px;}
.ws75{word-spacing:2.400000px;}
.ws81{word-spacing:2.460000px;}
.ws69{word-spacing:2.520000px;}
.ws18{word-spacing:2.580000px;}
.ws6c{word-spacing:2.592000px;}
.ws92{word-spacing:2.736000px;}
.ws3f{word-spacing:2.940000px;}
.ws1b{word-spacing:3.060000px;}
.wsa5{word-spacing:3.120000px;}
.ws78{word-spacing:3.168000px;}
.ws71{word-spacing:3.180000px;}
.wse{word-spacing:3.216000px;}
.ws76{word-spacing:3.300000px;}
.wsb0{word-spacing:3.408000px;}
.wsc{word-spacing:3.504000px;}
.ws2f{word-spacing:3.540000px;}
.ws90{word-spacing:3.600000px;}
.ws52{word-spacing:3.648000px;}
.ws2d{word-spacing:3.660000px;}
.ws63{word-spacing:3.780000px;}
.wsa6{word-spacing:3.840000px;}
.ws21{word-spacing:3.900000px;}
.ws6b{word-spacing:3.984000px;}
.ws82{word-spacing:4.020000px;}
.ws4f{word-spacing:4.080000px;}
.ws22{word-spacing:4.140000px;}
.wsab{word-spacing:4.224000px;}
.ws4a{word-spacing:4.260000px;}
.ws64{word-spacing:4.320000px;}
.ws9{word-spacing:4.368000px;}
.ws73{word-spacing:4.380000px;}
.ws8{word-spacing:4.416000px;}
.ws77{word-spacing:4.440000px;}
.ws86{word-spacing:4.446000px;}
.ws1f{word-spacing:4.500000px;}
.ws4e{word-spacing:4.560000px;}
.ws5f{word-spacing:4.680000px;}
.ws72{word-spacing:4.740000px;}
.ws2b{word-spacing:4.980000px;}
.ws4d{word-spacing:5.100000px;}
.ws83{word-spacing:5.160000px;}
.ws3c{word-spacing:5.220000px;}
.ws28{word-spacing:5.280000px;}
.ws3d{word-spacing:5.400000px;}
.ws10{word-spacing:5.460000px;}
.ws11{word-spacing:5.520000px;}
.wsb6{word-spacing:5.760000px;}
.wsa3{word-spacing:6.096000px;}
.ws61{word-spacing:6.960000px;}
.ws35{word-spacing:27.990000px;}
.ws38{word-spacing:40.005000px;}
.ws32{word-spacing:136.350000px;}
.ws36{word-spacing:185.289000px;}
.ws46{word-spacing:185.952000px;}
.ws37{word-spacing:188.211600px;}
.ws34{word-spacing:212.359200px;}
.ws66{word-spacing:233.472000px;}
.ws65{word-spacing:248.400000px;}
.ws6d{word-spacing:262.278000px;}
.ws44{word-spacing:263.376000px;}
.ws45{word-spacing:274.032000px;}
.ws68{word-spacing:331.728000px;}
.ws67{word-spacing:334.224000px;}
._c{margin-left:-2898.126000px;}
._19{margin-left:-2874.309000px;}
._23{margin-left:-1344.096000px;}
._8{margin-left:-13.344000px;}
._9{margin-left:-8.700000px;}
._20{margin-left:-7.522200px;}
._4{margin-left:-6.492000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.780000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.008000px;}
._5{width:1.008000px;}
._7{width:2.544000px;}
._6{width:4.368000px;}
._d{width:5.400000px;}
._a{width:6.480000px;}
._b{width:8.196000px;}
._1f{width:21.312000px;}
._15{width:52.515000px;}
._14{width:67.230000px;}
._18{width:68.630400px;}
._10{width:76.455000px;}
._11{width:102.555000px;}
._13{width:117.540000px;}
._17{width:130.050000px;}
._1e{width:189.648000px;}
._12{width:198.555600px;}
._1d{width:205.632000px;}
._16{width:211.914000px;}
._1c{width:232.608000px;}
._21{width:261.744000px;}
._f{width:309.105000px;}
._e{width:325.080000px;}
._1b{width:337.104000px;}
._22{width:350.064000px;}
._24{width:355.104000px;}
._1a{width:357.216000px;}
._25{width:377.298000px;}
._26{width:723.600000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:27.000000px;}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y11f{bottom:83.256300px;}
.y2c{bottom:83.493900px;}
.y143{bottom:83.509350px;}
.y193{bottom:83.517600px;}
.y93{bottom:83.647350px;}
.y131{bottom:83.655600px;}
.y146{bottom:83.914650px;}
.yd4{bottom:85.530000px;}
.y1ca{bottom:94.796700px;}
.y20a{bottom:94.938300px;}
.y145{bottom:99.658650px;}
.y11e{bottom:99.756300px;}
.y62{bottom:101.363850px;}
.y142{bottom:101.509350px;}
.y192{bottom:101.517600px;}
.y92{bottom:101.647350px;}
.y130{bottom:101.655600px;}
.y23{bottom:106.513200px;}
.y1c9{bottom:109.796700px;}
.y209{bottom:109.938300px;}
.yd3{bottom:110.929500px;}
.y144{bottom:115.402650px;}
.y11d{bottom:116.256300px;}
.y61{bottom:119.363850px;}
.y141{bottom:119.505600px;}
.y91{bottom:119.647350px;}
.y22{bottom:121.513200px;}
.yd2{bottom:124.429500px;}
.y1c8{bottom:124.796700px;}
.y208{bottom:124.938300px;}
.y164{bottom:130.800000px;}
.y11c{bottom:132.762600px;}
.y162{bottom:134.053500px;}
.y60{bottom:137.363850px;}
.y191{bottom:137.517600px;}
.y90{bottom:137.647350px;}
.y12f{bottom:137.655600px;}
.y15d{bottom:138.436050px;}
.y147{bottom:139.257000px;}
.y1c7{bottom:139.796700px;}
.yd1{bottom:139.931400px;}
.y207{bottom:139.938300px;}
.y15c{bottom:143.141400px;}
.yd0{bottom:153.431400px;}
.y15e{bottom:153.595650px;}
.y1c6{bottom:154.796700px;}
.y206{bottom:154.938300px;}
.y5f{bottom:155.363850px;}
.y140{bottom:155.505600px;}
.y190{bottom:155.517000px;}
.y8f{bottom:155.647350px;}
.y12e{bottom:155.655600px;}
.y11b{bottom:158.274600px;}
.y15b{bottom:159.641400px;}
.y153{bottom:165.146400px;}
.ycf{bottom:168.933300px;}
.y1c5{bottom:169.796700px;}
.y205{bottom:169.938300px;}
.y5e{bottom:173.363850px;}
.y13f{bottom:173.520600px;}
.y8e{bottom:173.647350px;}
.y11a{bottom:174.522600px;}
.y28{bottom:181.162800px;}
.yce{bottom:182.433300px;}
.y1c4{bottom:184.796700px;}
.y204{bottom:184.938300px;}
.y119{bottom:190.770600px;}
.y5d{bottom:191.363850px;}
.y12d{bottom:191.513850px;}
.y18f{bottom:191.517600px;}
.y8d{bottom:191.647350px;}
.ycd{bottom:197.935350px;}
.y27{bottom:199.162800px;}
.y15a{bottom:199.397400px;}
.y1c3{bottom:199.796700px;}
.y203{bottom:199.938300px;}
.y118{bottom:207.018600px;}
.y15f{bottom:208.489650px;}
.y5c{bottom:209.363850px;}
.y13e{bottom:209.370600px;}
.y12c{bottom:209.470350px;}
.y18e{bottom:209.517600px;}
.y8c{bottom:209.647350px;}
.ycc{bottom:211.435350px;}
.y1c2{bottom:214.796700px;}
.y202{bottom:214.938300px;}
.y26{bottom:217.162800px;}
.ycb{bottom:226.937250px;}
.y5b{bottom:227.363850px;}
.y13d{bottom:227.370600px;}
.y12b{bottom:227.513850px;}
.y18d{bottom:227.517600px;}
.y8b{bottom:227.647350px;}
.y1c1{bottom:229.796700px;}
.y201{bottom:229.938300px;}
.y25{bottom:235.162800px;}
.y117{bottom:238.530450px;}
.y163{bottom:239.086650px;}
.yca{bottom:240.437250px;}
.y159{bottom:243.653400px;}
.y1c0{bottom:244.796700px;}
.y200{bottom:244.938300px;}
.y5a{bottom:245.363850px;}
.y13c{bottom:245.370600px;}
.y12a{bottom:245.513850px;}
.y18c{bottom:245.517600px;}
.y8a{bottom:245.648850px;}
.y29{bottom:253.162800px;}
.yc9{bottom:255.937650px;}
.y1bf{bottom:259.796700px;}
.y1ff{bottom:259.938300px;}
.y160{bottom:263.352150px;}
.y59{bottom:263.363850px;}
.y13b{bottom:263.370600px;}
.y129{bottom:263.513850px;}
.y18b{bottom:263.517600px;}
.y89{bottom:263.648850px;}
.yc8{bottom:269.437650px;}
.y24{bottom:271.162800px;}
.y116{bottom:273.360600px;}
.y1be{bottom:274.796700px;}
.y1fe{bottom:274.938300px;}
.y58{bottom:281.363850px;}
.y13a{bottom:281.370600px;}
.y128{bottom:281.513850px;}
.y18a{bottom:281.517600px;}
.y88{bottom:281.648850px;}
.y158{bottom:288.653400px;}
.y1bd{bottom:289.796700px;}
.y1fd{bottom:289.938300px;}
.y115{bottom:292.860600px;}
.yc6{bottom:297.697650px;}
.y57{bottom:299.363850px;}
.y139{bottom:299.370600px;}
.y127{bottom:299.470350px;}
.y189{bottom:299.517600px;}
.y87{bottom:299.648850px;}
.yc5{bottom:304.447650px;}
.y1bc{bottom:304.796700px;}
.y1fc{bottom:304.938300px;}
.yc7{bottom:311.197650px;}
.y56{bottom:317.363850px;}
.y138{bottom:317.370600px;}
.y126{bottom:317.513850px;}
.y188{bottom:317.517600px;}
.y86{bottom:317.648850px;}
.y161{bottom:318.246150px;}
.y1bb{bottom:319.796700px;}
.y1fb{bottom:319.938300px;}
.y157{bottom:330.893400px;}
.y1ba{bottom:334.796700px;}
.y1fa{bottom:334.938300px;}
.y55{bottom:335.363850px;}
.y114{bottom:335.370600px;}
.y125{bottom:335.470350px;}
.y85{bottom:335.648850px;}
.yf0{bottom:335.655600px;}
.yc4{bottom:342.893850px;}
.y21{bottom:346.688550px;}
.y1b9{bottom:349.796700px;}
.y1f9{bottom:349.938300px;}
.y54{bottom:353.363850px;}
.y113{bottom:353.370600px;}
.y124{bottom:353.513850px;}
.y187{bottom:353.517600px;}
.y84{bottom:353.648850px;}
.yef{bottom:353.655600px;}
.yc3{bottom:362.393850px;}
.y1b8{bottom:364.796700px;}
.y1f8{bottom:364.938300px;}
.y53{bottom:371.363850px;}
.y112{bottom:371.370600px;}
.y123{bottom:371.513850px;}
.y186{bottom:371.517600px;}
.y83{bottom:371.648850px;}
.yee{bottom:371.655600px;}
.y156{bottom:374.897400px;}
.y20{bottom:379.544550px;}
.y1b7{bottom:379.796700px;}
.y1f7{bottom:379.938300px;}
.y52{bottom:389.363850px;}
.y111{bottom:389.370600px;}
.y122{bottom:389.513850px;}
.y185{bottom:389.517600px;}
.y82{bottom:389.648850px;}
.yed{bottom:389.655600px;}
.y1f{bottom:394.544550px;}
.y1b6{bottom:394.796700px;}
.y1f6{bottom:394.938300px;}
.y51{bottom:407.363850px;}
.y110{bottom:407.370600px;}
.ya0{bottom:407.513850px;}
.y184{bottom:407.517600px;}
.yc2{bottom:407.528850px;}
.y81{bottom:407.648850px;}
.yec{bottom:407.655600px;}
.y1e{bottom:409.544550px;}
.y1b5{bottom:409.796700px;}
.y1f5{bottom:409.938300px;}
.y155{bottom:419.897400px;}
.y1d{bottom:424.544550px;}
.y1b4{bottom:424.796700px;}
.y1f4{bottom:424.938300px;}
.y50{bottom:425.363850px;}
.y10f{bottom:425.370600px;}
.y9f{bottom:425.513850px;}
.y183{bottom:425.517600px;}
.yc1{bottom:425.528850px;}
.y80{bottom:425.648850px;}
.yeb{bottom:425.655600px;}
.y1c{bottom:439.544550px;}
.y1b3{bottom:439.796700px;}
.y1f3{bottom:439.938300px;}
.y4f{bottom:443.363850px;}
.y10e{bottom:443.370600px;}
.y9e{bottom:443.513850px;}
.y182{bottom:443.517600px;}
.yc0{bottom:443.528850px;}
.y7f{bottom:443.648850px;}
.yea{bottom:443.655600px;}
.y1b{bottom:454.544550px;}
.y1b2{bottom:454.796700px;}
.y1f2{bottom:454.938300px;}
.y4e{bottom:461.363850px;}
.y10d{bottom:461.370600px;}
.y9d{bottom:461.513850px;}
.y181{bottom:461.517600px;}
.ybf{bottom:461.528850px;}
.y7e{bottom:461.648850px;}
.ye9{bottom:461.655600px;}
.y154{bottom:464.153400px;}
.y1a{bottom:469.544550px;}
.y1b1{bottom:469.796700px;}
.y1f1{bottom:469.938300px;}
.y149{bottom:478.650300px;}
.y4d{bottom:479.363850px;}
.y10c{bottom:479.370600px;}
.y9c{bottom:479.513850px;}
.y180{bottom:479.517600px;}
.ybe{bottom:479.528850px;}
.y7d{bottom:479.648850px;}
.ye8{bottom:479.655600px;}
.y19{bottom:484.544550px;}
.y1b0{bottom:484.796700px;}
.y1f0{bottom:484.938300px;}
.y14d{bottom:493.919550px;}
.y4c{bottom:497.363850px;}
.y10b{bottom:497.370600px;}
.y9b{bottom:497.513850px;}
.y121{bottom:497.514000px;}
.y17f{bottom:497.517600px;}
.ybd{bottom:497.528850px;}
.y7c{bottom:497.648850px;}
.ye7{bottom:497.655600px;}
.y18{bottom:499.544550px;}
.y1af{bottom:499.796700px;}
.y1ef{bottom:499.938300px;}
.y17{bottom:514.544550px;}
.y1ae{bottom:514.796700px;}
.y1ee{bottom:514.938300px;}
.y4b{bottom:515.363850px;}
.y10a{bottom:515.370600px;}
.y9a{bottom:515.513850px;}
.y17e{bottom:515.517600px;}
.ybc{bottom:515.528850px;}
.y7b{bottom:515.648850px;}
.y152{bottom:521.147400px;}
.y16{bottom:529.544550px;}
.y1ad{bottom:529.796700px;}
.y1ed{bottom:529.938300px;}
.y4a{bottom:533.363850px;}
.y109{bottom:533.370600px;}
.y99{bottom:533.513850px;}
.y17d{bottom:533.517600px;}
.ybb{bottom:533.528850px;}
.y7a{bottom:533.648850px;}
.ye6{bottom:533.655600px;}
.y151{bottom:534.647400px;}
.y15{bottom:544.544550px;}
.y1ac{bottom:544.796700px;}
.y1ec{bottom:544.938300px;}
.y49{bottom:551.363850px;}
.y108{bottom:551.370600px;}
.y98{bottom:551.513850px;}
.yba{bottom:551.528850px;}
.y79{bottom:551.648850px;}
.ye5{bottom:551.655600px;}
.y14{bottom:559.544550px;}
.y1ab{bottom:559.796700px;}
.y1eb{bottom:559.938300px;}
.y150{bottom:568.403400px;}
.y48{bottom:569.363850px;}
.y107{bottom:569.370600px;}
.y97{bottom:569.513850px;}
.y17c{bottom:569.517600px;}
.yb9{bottom:569.528850px;}
.y13{bottom:574.544550px;}
.y1aa{bottom:574.796700px;}
.y1ea{bottom:574.938300px;}
.y47{bottom:587.363850px;}
.y137{bottom:587.370600px;}
.ye4{bottom:587.505600px;}
.y96{bottom:587.513850px;}
.y17b{bottom:587.517600px;}
.yb8{bottom:587.528850px;}
.y78{bottom:587.648850px;}
.y12{bottom:589.544550px;}
.y1a9{bottom:589.796700px;}
.y1e9{bottom:589.938300px;}
.y1a8{bottom:604.796700px;}
.y1e8{bottom:604.938300px;}
.y46{bottom:605.363850px;}
.y106{bottom:605.370600px;}
.ye3{bottom:605.505600px;}
.y120{bottom:605.513850px;}
.y17a{bottom:605.517600px;}
.yb7{bottom:605.528850px;}
.y77{bottom:605.648850px;}
.y14f{bottom:619.463400px;}
.y1a7{bottom:619.796700px;}
.y1e7{bottom:619.938300px;}
.y45{bottom:623.363850px;}
.y105{bottom:623.370600px;}
.ye2{bottom:623.505600px;}
.y95{bottom:623.513850px;}
.y179{bottom:623.517600px;}
.yb6{bottom:623.528850px;}
.y1a6{bottom:634.796700px;}
.y1e6{bottom:634.938300px;}
.y11{bottom:638.288550px;}
.y44{bottom:641.363850px;}
.y104{bottom:641.370600px;}
.y76{bottom:641.498850px;}
.ye1{bottom:641.505600px;}
.y178{bottom:641.517600px;}
.yb5{bottom:641.528850px;}
.y1a5{bottom:649.796700px;}
.y1e5{bottom:649.938300px;}
.y10{bottom:652.688550px;}
.y43{bottom:659.363850px;}
.y136{bottom:659.370600px;}
.y75{bottom:659.498850px;}
.ye0{bottom:659.513850px;}
.y177{bottom:659.517600px;}
.yb4{bottom:659.528850px;}
.y1a4{bottom:664.796700px;}
.y1e4{bottom:664.938300px;}
.yf{bottom:667.088550px;}
.y14e{bottom:670.403400px;}
.y103{bottom:677.235600px;}
.y42{bottom:677.363850px;}
.y135{bottom:677.370600px;}
.y74{bottom:677.498850px;}
.ydf{bottom:677.513850px;}
.yb3{bottom:677.528850px;}
.y1a3{bottom:679.796700px;}
.y1e3{bottom:679.938300px;}
.ye{bottom:694.244550px;}
.y1a2{bottom:694.796700px;}
.y1e2{bottom:694.938300px;}
.y41{bottom:695.363850px;}
.y134{bottom:695.370600px;}
.y73{bottom:695.498850px;}
.yde{bottom:695.513850px;}
.y176{bottom:695.517600px;}
.yb2{bottom:695.528850px;}
.y1a1{bottom:709.796700px;}
.y1e1{bottom:709.938300px;}
.y148{bottom:713.169300px;}
.y40{bottom:713.363850px;}
.y133{bottom:713.370600px;}
.y72{bottom:713.498850px;}
.ydd{bottom:713.513850px;}
.yb1{bottom:713.528850px;}
.y14c{bottom:722.226300px;}
.y1a0{bottom:724.796700px;}
.y1e0{bottom:724.938300px;}
.y3f{bottom:731.363850px;}
.y175{bottom:731.367600px;}
.y102{bottom:731.370600px;}
.y71{bottom:731.498850px;}
.ydc{bottom:731.513850px;}
.yb0{bottom:731.528850px;}
.yd{bottom:732.862500px;}
.y19f{bottom:739.796700px;}
.y1df{bottom:739.938300px;}
.yc{bottom:749.362500px;}
.y3e{bottom:749.363850px;}
.y174{bottom:749.367600px;}
.y101{bottom:749.370600px;}
.y70{bottom:749.498850px;}
.ydb{bottom:749.513850px;}
.yaf{bottom:749.528850px;}
.y19e{bottom:754.796700px;}
.y1de{bottom:754.938300px;}
.yb{bottom:765.862500px;}
.y3d{bottom:767.363850px;}
.y173{bottom:767.367600px;}
.y100{bottom:767.370600px;}
.y6f{bottom:767.498850px;}
.yda{bottom:767.513850px;}
.yae{bottom:767.528850px;}
.y19d{bottom:769.796700px;}
.y1dd{bottom:769.938300px;}
.y14b{bottom:774.738300px;}
.ya{bottom:778.244550px;}
.y1dc{bottom:784.938300px;}
.y3c{bottom:785.363850px;}
.y172{bottom:785.367600px;}
.yff{bottom:785.370600px;}
.y6e{bottom:785.498850px;}
.yd9{bottom:785.513850px;}
.yad{bottom:785.528850px;}
.y9{bottom:794.744550px;}
.y1db{bottom:799.938300px;}
.y19c{bottom:803.247600px;}
.y3b{bottom:803.363850px;}
.y171{bottom:803.367600px;}
.yfe{bottom:803.370600px;}
.y6d{bottom:803.498850px;}
.yd8{bottom:803.513850px;}
.yac{bottom:803.528850px;}
.y1da{bottom:814.938300px;}
.y8{bottom:815.362500px;}
.y3a{bottom:821.363850px;}
.y170{bottom:821.367600px;}
.yfd{bottom:821.370600px;}
.y6c{bottom:821.498850px;}
.yd7{bottom:821.513850px;}
.yab{bottom:821.528850px;}
.y14a{bottom:825.702300px;}
.y1d9{bottom:829.938300px;}
.y7{bottom:830.631300px;}
.y39{bottom:839.363850px;}
.y16f{bottom:839.367600px;}
.yfc{bottom:839.370600px;}
.y6b{bottom:839.498850px;}
.yd6{bottom:839.513850px;}
.yaa{bottom:839.528850px;}
.y1d8{bottom:844.938300px;}
.y6{bottom:853.879800px;}
.y38{bottom:857.363850px;}
.y16e{bottom:857.367600px;}
.yfb{bottom:857.370600px;}
.y19b{bottom:857.382600px;}
.y6a{bottom:857.498850px;}
.ya9{bottom:857.528850px;}
.y1d7{bottom:859.938300px;}
.y1d6{bottom:874.938300px;}
.y37{bottom:875.363850px;}
.y16d{bottom:875.367600px;}
.yfa{bottom:875.370600px;}
.y19a{bottom:875.382600px;}
.y69{bottom:875.498850px;}
.yd5{bottom:875.513850px;}
.ya8{bottom:875.528850px;}
.y5{bottom:881.263200px;}
.y1d5{bottom:889.938300px;}
.y36{bottom:893.363850px;}
.y16c{bottom:893.367600px;}
.yf9{bottom:893.370600px;}
.y68{bottom:893.498850px;}
.ya7{bottom:893.528850px;}
.y1d4{bottom:904.938300px;}
.y4{bottom:908.269200px;}
.y132{bottom:911.235600px;}
.y35{bottom:911.363850px;}
.y16b{bottom:911.367600px;}
.yf8{bottom:911.370600px;}
.y199{bottom:911.382600px;}
.y67{bottom:911.498850px;}
.ya6{bottom:911.528850px;}
.y1d3{bottom:919.938300px;}
.y34{bottom:929.363850px;}
.y16a{bottom:929.367600px;}
.yf7{bottom:929.370600px;}
.y198{bottom:929.382600px;}
.y66{bottom:929.498850px;}
.ya5{bottom:929.528850px;}
.y1d2{bottom:934.938300px;}
.y3{bottom:935.275200px;}
.y33{bottom:947.363850px;}
.y169{bottom:947.367600px;}
.yf6{bottom:947.370600px;}
.y197{bottom:947.382600px;}
.y65{bottom:947.498850px;}
.ya4{bottom:947.528850px;}
.y1d1{bottom:949.938300px;}
.y1d0{bottom:964.938300px;}
.y32{bottom:965.363850px;}
.y168{bottom:965.367600px;}
.yf5{bottom:965.370600px;}
.y196{bottom:965.382600px;}
.y64{bottom:965.498850px;}
.y1cf{bottom:979.938300px;}
.y2{bottom:979.943400px;}
.y31{bottom:983.363850px;}
.y167{bottom:983.367600px;}
.yf4{bottom:983.370600px;}
.ya3{bottom:983.528850px;}
.y1ce{bottom:994.938300px;}
.y30{bottom:1001.363850px;}
.y166{bottom:1001.367600px;}
.yf3{bottom:1001.370600px;}
.y195{bottom:1001.382600px;}
.y63{bottom:1001.498850px;}
.y1cd{bottom:1009.938300px;}
.y2f{bottom:1019.363850px;}
.yf2{bottom:1019.370600px;}
.ya2{bottom:1019.378850px;}
.y1cc{bottom:1024.938300px;}
.y2e{bottom:1037.363850px;}
.y165{bottom:1037.367600px;}
.yf1{bottom:1037.370600px;}
.ya1{bottom:1037.378850px;}
.y194{bottom:1037.382600px;}
.y1cb{bottom:1039.938300px;}
.y2b{bottom:1070.769450px;}
.y94{bottom:1086.066450px;}
.y2a{bottom:1086.069450px;}
.h7{height:20.995312px;}
.h1a{height:30.187500px;}
.h2{height:30.618164px;}
.h11{height:32.805176px;}
.h14{height:32.806976px;}
.h13{height:32.807576px;}
.h12{height:32.813576px;}
.h9{height:34.945312px;}
.hb{height:34.959188px;}
.ha{height:34.968750px;}
.h8{height:34.992188px;}
.h15{height:35.003588px;}
.he{height:37.179199px;}
.h16{height:37.471912px;}
.h19{height:38.812500px;}
.hc{height:43.681641px;}
.hf{height:43.710938px;}
.hd{height:43.740234px;}
.h1d{height:43.742634px;}
.h17{height:43.755234px;}
.h1c{height:43.989258px;}
.h6{height:51.517955px;}
.h5{height:51.523955px;}
.h3{height:52.417969px;}
.h10{height:59.805176px;}
.h4{height:61.154297px;}
.h1b{height:248.092500px;}
.h18{height:723.468000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:454.230000px;}
.w3{width:740.124000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:10.298250px;}
.x30{left:12.419700px;}
.x2f{left:20.631600px;}
.xb{left:76.535400px;}
.x21{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x14{left:99.921300px;}
.x5{left:102.462750px;}
.x33{left:106.299150px;}
.xc{left:110.540400px;}
.x3{left:125.427600px;}
.x32{left:127.559100px;}
.x7{left:131.816400px;}
.x1a{left:142.443450px;}
.x4{left:161.583600px;}
.x2e{left:189.940500px;}
.x23{left:208.711500px;}
.x6{left:212.876400px;}
.x24{left:216.668250px;}
.x26{left:228.759900px;}
.x2a{left:245.722650px;}
.x2b{left:251.722650px;}
.x28{left:333.771750px;}
.x2c{left:345.766650px;}
.x25{left:381.723900px;}
.x1c{left:408.353400px;}
.x1d{left:420.120900px;}
.x1e{left:422.730900px;}
.x1b{left:426.888450px;}
.x29{left:448.143750px;}
.xa{left:455.041500px;}
.xe{left:457.025400px;}
.x12{left:478.345350px;}
.x8{left:480.476400px;}
.x2d{left:486.742650px;}
.xf{left:491.045400px;}
.x15{left:508.686900px;}
.x13{left:512.365350px;}
.xd{left:525.215400px;}
.x16{left:568.390650px;}
.x31{left:574.867500px;}
.x17{left:585.276900px;}
.x20{left:591.631800px;}
.x22{left:600.691950px;}
.x11{left:663.492300px;}
.x2{left:704.338650px;}
.x34{left:717.130200px;}
.x10{left:724.221150px;}
.x19{left:743.092200px;}
.x1f{left:745.480950px;}
.x18{left:754.657200px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v4{vertical-align:-3.031467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v7{vertical-align:2.420800pt;}
.v8{vertical-align:14.645867pt;}
.v1{vertical-align:20.138133pt;}
.v6{vertical-align:21.730667pt;}
.v5{vertical-align:24.000000pt;}
.ls61{letter-spacing:-3.157333pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls8f{letter-spacing:-0.320000pt;}
.ls5f{letter-spacing:-0.213333pt;}
.lsa7{letter-spacing:-0.170667pt;}
.ls4e{letter-spacing:-0.160000pt;}
.lsa9{letter-spacing:-0.128000pt;}
.ls60{letter-spacing:-0.106667pt;}
.lsa6{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.074667pt;}
.ls3c{letter-spacing:-0.053333pt;}
.lsa5{letter-spacing:-0.042667pt;}
.ls4f{letter-spacing:-0.040000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.003200pt;}
.ls5e{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004267pt;}
.ls74{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls4a{letter-spacing:0.006400pt;}
.ls59{letter-spacing:0.006933pt;}
.ls5b{letter-spacing:0.007467pt;}
.ls80{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.049600pt;}
.ls57{letter-spacing:0.053333pt;}
.ls7b{letter-spacing:0.085333pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.160000pt;}
.ls64{letter-spacing:0.165333pt;}
.lsad{letter-spacing:0.170667pt;}
.lsac{letter-spacing:0.203200pt;}
.ls2{letter-spacing:0.213333pt;}
.ls88{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls79{letter-spacing:0.298667pt;}
.ls40{letter-spacing:0.320000pt;}
.ls95{letter-spacing:0.341333pt;}
.ls45{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.384000pt;}
.ls41{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.469333pt;}
.lsd{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.512000pt;}
.ls2d{letter-spacing:0.533333pt;}
.ls9e{letter-spacing:0.554667pt;}
.lsf{letter-spacing:0.586667pt;}
.lsa1{letter-spacing:0.597333pt;}
.ls16{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.693333pt;}
.ls7{letter-spacing:0.725333pt;}
.ls39{letter-spacing:0.746667pt;}
.ls70{letter-spacing:0.768000pt;}
.ls43{letter-spacing:0.800000pt;}
.ls92{letter-spacing:0.810667pt;}
.ls20{letter-spacing:0.853333pt;}
.lsa8{letter-spacing:0.896000pt;}
.ls31{letter-spacing:0.906667pt;}
.ls3b{letter-spacing:0.960000pt;}
.ls8d{letter-spacing:0.981333pt;}
.ls37{letter-spacing:1.013333pt;}
.ls97{letter-spacing:1.024000pt;}
.ls2b{letter-spacing:1.066667pt;}
.ls90{letter-spacing:1.109333pt;}
.ls3a{letter-spacing:1.120000pt;}
.ls6f{letter-spacing:1.152000pt;}
.ls17{letter-spacing:1.173333pt;}
.ls8b{letter-spacing:1.194667pt;}
.ls34{letter-spacing:1.226667pt;}
.ls8c{letter-spacing:1.237333pt;}
.ls68{letter-spacing:1.269333pt;}
.ls30{letter-spacing:1.280000pt;}
.ls67{letter-spacing:1.285333pt;}
.ls33{letter-spacing:1.333333pt;}
.ls12{letter-spacing:1.386667pt;}
.lsb{letter-spacing:1.440000pt;}
.ls9b{letter-spacing:1.450667pt;}
.ls46{letter-spacing:1.493333pt;}
.ls91{letter-spacing:1.536000pt;}
.ls28{letter-spacing:1.546667pt;}
.ls25{letter-spacing:1.600000pt;}
.ls9a{letter-spacing:1.621333pt;}
.ls6c{letter-spacing:1.653333pt;}
.ls99{letter-spacing:1.664000pt;}
.ls4{letter-spacing:1.706667pt;}
.lsa4{letter-spacing:1.749333pt;}
.ls51{letter-spacing:1.760000pt;}
.lsa2{letter-spacing:1.792000pt;}
.ls26{letter-spacing:1.813333pt;}
.ls83{letter-spacing:1.834667pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls8a{letter-spacing:1.877333pt;}
.ls66{letter-spacing:1.882667pt;}
.lsc{letter-spacing:1.920000pt;}
.ls78{letter-spacing:1.930667pt;}
.ls9c{letter-spacing:1.962667pt;}
.ls1a{letter-spacing:1.973333pt;}
.ls36{letter-spacing:2.026667pt;}
.ls85{letter-spacing:2.048000pt;}
.ls1b{letter-spacing:2.080000pt;}
.ls7a{letter-spacing:2.090667pt;}
.ls1c{letter-spacing:2.133333pt;}
.ls9f{letter-spacing:2.176000pt;}
.ls29{letter-spacing:2.186667pt;}
.ls7f{letter-spacing:2.218667pt;}
.ls27{letter-spacing:2.240000pt;}
.ls7d{letter-spacing:2.261333pt;}
.ls38{letter-spacing:2.293333pt;}
.ls7c{letter-spacing:2.304000pt;}
.ls2f{letter-spacing:2.346667pt;}
.ls3f{letter-spacing:2.400000pt;}
.ls71{letter-spacing:2.453333pt;}
.ls10{letter-spacing:2.506667pt;}
.ls72{letter-spacing:2.560000pt;}
.ls84{letter-spacing:2.602667pt;}
.ls47{letter-spacing:2.613333pt;}
.ls65{letter-spacing:2.640000pt;}
.lsaa{letter-spacing:2.645333pt;}
.ls35{letter-spacing:2.666667pt;}
.ls18{letter-spacing:2.720000pt;}
.ls8e{letter-spacing:2.773333pt;}
.ls82{letter-spacing:2.816000pt;}
.ls50{letter-spacing:2.826667pt;}
.ls42{letter-spacing:2.880000pt;}
.ls1d{letter-spacing:2.933333pt;}
.ls63{letter-spacing:2.986667pt;}
.lsa0{letter-spacing:3.029333pt;}
.ls55{letter-spacing:3.040000pt;}
.ls81{letter-spacing:3.072000pt;}
.ls19{letter-spacing:3.146667pt;}
.ls53{letter-spacing:3.200000pt;}
.ls9d{letter-spacing:3.242667pt;}
.ls56{letter-spacing:3.253333pt;}
.ls73{letter-spacing:3.306667pt;}
.ls96{letter-spacing:3.328000pt;}
.ls2c{letter-spacing:3.360000pt;}
.ls1e{letter-spacing:3.413333pt;}
.ls32{letter-spacing:3.466667pt;}
.ls52{letter-spacing:3.520000pt;}
.lsab{letter-spacing:3.541333pt;}
.ls11{letter-spacing:3.573333pt;}
.ls86{letter-spacing:3.584000pt;}
.ls3e{letter-spacing:3.680000pt;}
.ls69{letter-spacing:3.786667pt;}
.ls5{letter-spacing:3.925333pt;}
.ls44{letter-spacing:4.053333pt;}
.ls54{letter-spacing:4.213333pt;}
.ls6a{letter-spacing:4.266667pt;}
.ls87{letter-spacing:4.309333pt;}
.ls6e{letter-spacing:4.373333pt;}
.ls89{letter-spacing:4.522667pt;}
.ls22{letter-spacing:4.640000pt;}
.lsa3{letter-spacing:4.693333pt;}
.ls93{letter-spacing:4.736000pt;}
.ls62{letter-spacing:4.853333pt;}
.ls98{letter-spacing:4.992000pt;}
.lse{letter-spacing:5.066667pt;}
.ls76{letter-spacing:5.173333pt;}
.ls2e{letter-spacing:5.226667pt;}
.ls6b{letter-spacing:5.280000pt;}
.ls75{letter-spacing:5.813333pt;}
.ls77{letter-spacing:5.920000pt;}
.ls7e{letter-spacing:6.186667pt;}
.ls6d{letter-spacing:7.306667pt;}
.ls21{letter-spacing:7.573333pt;}
.ls94{letter-spacing:8.618667pt;}
.ls49{letter-spacing:78.714667pt;}
.ls4b{letter-spacing:93.832533pt;}
.ls4c{letter-spacing:129.528000pt;}
.ls4d{letter-spacing:180.641067pt;}
.ls5d{letter-spacing:224.373867pt;}
.ls5c{letter-spacing:226.973333pt;}
.ls58{letter-spacing:238.838400pt;}
.ls5a{letter-spacing:255.436267pt;}
.ws48{word-spacing:-42.666667pt;}
.ws5e{word-spacing:-22.133333pt;}
.ws7a{word-spacing:-20.746667pt;}
.ws5b{word-spacing:-20.106667pt;}
.ws56{word-spacing:-19.200000pt;}
.ws12{word-spacing:-17.973333pt;}
.ws6f{word-spacing:-17.120000pt;}
.ws13{word-spacing:-16.960000pt;}
.ws55{word-spacing:-16.906667pt;}
.ws94{word-spacing:-16.853333pt;}
.ws7b{word-spacing:-16.746667pt;}
.ws15{word-spacing:-16.373333pt;}
.ws1{word-spacing:-16.309333pt;}
.ws14{word-spacing:-16.160000pt;}
.ws5c{word-spacing:-15.733333pt;}
.ws5d{word-spacing:-15.680000pt;}
.ws42{word-spacing:-15.520000pt;}
.ws7e{word-spacing:-15.445333pt;}
.ws6e{word-spacing:-15.306667pt;}
.ws79{word-spacing:-15.253333pt;}
.ws5a{word-spacing:-14.880000pt;}
.ws43{word-spacing:-14.826667pt;}
.wsb2{word-spacing:-14.677333pt;}
.ws80{word-spacing:-14.634667pt;}
.wsb1{word-spacing:-14.506667pt;}
.ws7c{word-spacing:-14.165333pt;}
.ws98{word-spacing:-13.397333pt;}
.ws96{word-spacing:-13.312000pt;}
.ws9c{word-spacing:-13.141333pt;}
.ws99{word-spacing:-12.928000pt;}
.ws9b{word-spacing:-12.757333pt;}
.ws9e{word-spacing:-12.672000pt;}
.ws7d{word-spacing:-12.629333pt;}
.ws17{word-spacing:-12.602667pt;}
.ws7f{word-spacing:-12.501333pt;}
.ws9d{word-spacing:-12.458667pt;}
.ws3{word-spacing:-12.373333pt;}
.ws97{word-spacing:-12.245333pt;}
.ws95{word-spacing:-12.117333pt;}
.ws9a{word-spacing:-11.946667pt;}
.ws2{word-spacing:-11.861333pt;}
.ws93{word-spacing:-11.776000pt;}
.ws33{word-spacing:-11.120000pt;}
.ws57{word-spacing:-10.048000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws58{word-spacing:-9.664000pt;}
.ws59{word-spacing:-9.408000pt;}
.wsb3{word-spacing:-9.024000pt;}
.ws16{word-spacing:-8.896000pt;}
.ws47{word-spacing:-8.704000pt;}
.ws49{word-spacing:-7.116800pt;}
.wsa1{word-spacing:-4.736000pt;}
.wsa8{word-spacing:-3.242667pt;}
.wsb5{word-spacing:-2.816000pt;}
.ws5{word-spacing:-2.368000pt;}
.ws8b{word-spacing:-2.346667pt;}
.ws89{word-spacing:-2.304000pt;}
.ws19{word-spacing:-2.133333pt;}
.ws60{word-spacing:-2.080000pt;}
.ws23{word-spacing:-1.973333pt;}
.ws24{word-spacing:-1.920000pt;}
.ws51{word-spacing:-1.866667pt;}
.ws29{word-spacing:-1.546667pt;}
.ws70{word-spacing:-1.493333pt;}
.ws25{word-spacing:-1.333333pt;}
.wsa7{word-spacing:-1.280000pt;}
.ws8f{word-spacing:-1.194667pt;}
.wsa0{word-spacing:-1.109333pt;}
.ws20{word-spacing:-1.066667pt;}
.ws7{word-spacing:-1.056000pt;}
.ws84{word-spacing:-0.960000pt;}
.ws1c{word-spacing:-0.853333pt;}
.wsae{word-spacing:-0.810667pt;}
.wsaa{word-spacing:-0.725333pt;}
.ws41{word-spacing:-0.720000pt;}
.wsa2{word-spacing:-0.640000pt;}
.wsad{word-spacing:-0.597333pt;}
.wsac{word-spacing:-0.469333pt;}
.wsa4{word-spacing:-0.384000pt;}
.ws4c{word-spacing:-0.373333pt;}
.ws3b{word-spacing:-0.320000pt;}
.ws50{word-spacing:-0.266667pt;}
.ws3e{word-spacing:-0.213333pt;}
.wsa{word-spacing:-0.128000pt;}
.ws74{word-spacing:-0.053333pt;}
.ws8a{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.042667pt;}
.ws6a{word-spacing:0.053333pt;}
.ws6{word-spacing:0.074667pt;}
.ws8e{word-spacing:0.085333pt;}
.ws88{word-spacing:0.170667pt;}
.ws3a{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.426667pt;}
.ws91{word-spacing:0.469333pt;}
.ws85{word-spacing:0.533333pt;}
.ws54{word-spacing:0.554667pt;}
.ws8d{word-spacing:0.597333pt;}
.ws53{word-spacing:0.682667pt;}
.ws2c{word-spacing:0.693333pt;}
.ws1e{word-spacing:0.746667pt;}
.ws31{word-spacing:0.906667pt;}
.ws8c{word-spacing:0.981333pt;}
.ws30{word-spacing:1.013333pt;}
.wsd{word-spacing:1.024000pt;}
.ws27{word-spacing:1.173333pt;}
.wsf{word-spacing:1.280000pt;}
.ws1a{word-spacing:1.386667pt;}
.wsb4{word-spacing:1.408000pt;}
.ws2a{word-spacing:1.440000pt;}
.wsaf{word-spacing:1.450667pt;}
.ws4b{word-spacing:1.493333pt;}
.ws87{word-spacing:1.546667pt;}
.wsb{word-spacing:1.664000pt;}
.ws1d{word-spacing:1.706667pt;}
.ws62{word-spacing:1.760000pt;}
.ws40{word-spacing:1.920000pt;}
.ws39{word-spacing:1.973333pt;}
.wsa9{word-spacing:2.005333pt;}
.ws26{word-spacing:2.026667pt;}
.ws75{word-spacing:2.133333pt;}
.ws81{word-spacing:2.186667pt;}
.ws69{word-spacing:2.240000pt;}
.ws18{word-spacing:2.293333pt;}
.ws6c{word-spacing:2.304000pt;}
.ws92{word-spacing:2.432000pt;}
.ws3f{word-spacing:2.613333pt;}
.ws1b{word-spacing:2.720000pt;}
.wsa5{word-spacing:2.773333pt;}
.ws78{word-spacing:2.816000pt;}
.ws71{word-spacing:2.826667pt;}
.wse{word-spacing:2.858667pt;}
.ws76{word-spacing:2.933333pt;}
.wsb0{word-spacing:3.029333pt;}
.wsc{word-spacing:3.114667pt;}
.ws2f{word-spacing:3.146667pt;}
.ws90{word-spacing:3.200000pt;}
.ws52{word-spacing:3.242667pt;}
.ws2d{word-spacing:3.253333pt;}
.ws63{word-spacing:3.360000pt;}
.wsa6{word-spacing:3.413333pt;}
.ws21{word-spacing:3.466667pt;}
.ws6b{word-spacing:3.541333pt;}
.ws82{word-spacing:3.573333pt;}
.ws4f{word-spacing:3.626667pt;}
.ws22{word-spacing:3.680000pt;}
.wsab{word-spacing:3.754667pt;}
.ws4a{word-spacing:3.786667pt;}
.ws64{word-spacing:3.840000pt;}
.ws9{word-spacing:3.882667pt;}
.ws73{word-spacing:3.893333pt;}
.ws8{word-spacing:3.925333pt;}
.ws77{word-spacing:3.946667pt;}
.ws86{word-spacing:3.952000pt;}
.ws1f{word-spacing:4.000000pt;}
.ws4e{word-spacing:4.053333pt;}
.ws5f{word-spacing:4.160000pt;}
.ws72{word-spacing:4.213333pt;}
.ws2b{word-spacing:4.426667pt;}
.ws4d{word-spacing:4.533333pt;}
.ws83{word-spacing:4.586667pt;}
.ws3c{word-spacing:4.640000pt;}
.ws28{word-spacing:4.693333pt;}
.ws3d{word-spacing:4.800000pt;}
.ws10{word-spacing:4.853333pt;}
.ws11{word-spacing:4.906667pt;}
.wsb6{word-spacing:5.120000pt;}
.wsa3{word-spacing:5.418667pt;}
.ws61{word-spacing:6.186667pt;}
.ws35{word-spacing:24.880000pt;}
.ws38{word-spacing:35.560000pt;}
.ws32{word-spacing:121.200000pt;}
.ws36{word-spacing:164.701333pt;}
.ws46{word-spacing:165.290667pt;}
.ws37{word-spacing:167.299200pt;}
.ws34{word-spacing:188.763733pt;}
.ws66{word-spacing:207.530667pt;}
.ws65{word-spacing:220.800000pt;}
.ws6d{word-spacing:233.136000pt;}
.ws44{word-spacing:234.112000pt;}
.ws45{word-spacing:243.584000pt;}
.ws68{word-spacing:294.869333pt;}
.ws67{word-spacing:297.088000pt;}
._c{margin-left:-2576.112000pt;}
._19{margin-left:-2554.941333pt;}
._23{margin-left:-1194.752000pt;}
._8{margin-left:-11.861333pt;}
._9{margin-left:-7.733333pt;}
._20{margin-left:-6.686400pt;}
._4{margin-left:-5.770667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.360000pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.896000pt;}
._5{width:0.896000pt;}
._7{width:2.261333pt;}
._6{width:3.882667pt;}
._d{width:4.800000pt;}
._a{width:5.760000pt;}
._b{width:7.285333pt;}
._1f{width:18.944000pt;}
._15{width:46.680000pt;}
._14{width:59.760000pt;}
._18{width:61.004800pt;}
._10{width:67.960000pt;}
._11{width:91.160000pt;}
._13{width:104.480000pt;}
._17{width:115.600000pt;}
._1e{width:168.576000pt;}
._12{width:176.493867pt;}
._1d{width:182.784000pt;}
._16{width:188.368000pt;}
._1c{width:206.762667pt;}
._21{width:232.661333pt;}
._f{width:274.760000pt;}
._e{width:288.960000pt;}
._1b{width:299.648000pt;}
._22{width:311.168000pt;}
._24{width:315.648000pt;}
._1a{width:317.525333pt;}
._25{width:335.376000pt;}
._26{width:643.200000pt;}
.fsb{font-size:24.000000pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y11f{bottom:74.005600pt;}
.y2c{bottom:74.216800pt;}
.y143{bottom:74.230533pt;}
.y193{bottom:74.237867pt;}
.y93{bottom:74.353200pt;}
.y131{bottom:74.360533pt;}
.y146{bottom:74.590800pt;}
.yd4{bottom:76.026667pt;}
.y1ca{bottom:84.263733pt;}
.y20a{bottom:84.389600pt;}
.y145{bottom:88.585467pt;}
.y11e{bottom:88.672267pt;}
.y62{bottom:90.101200pt;}
.y142{bottom:90.230533pt;}
.y192{bottom:90.237867pt;}
.y92{bottom:90.353200pt;}
.y130{bottom:90.360533pt;}
.y23{bottom:94.678400pt;}
.y1c9{bottom:97.597067pt;}
.y209{bottom:97.722933pt;}
.yd3{bottom:98.604000pt;}
.y144{bottom:102.580133pt;}
.y11d{bottom:103.338933pt;}
.y61{bottom:106.101200pt;}
.y141{bottom:106.227200pt;}
.y91{bottom:106.353200pt;}
.y22{bottom:108.011733pt;}
.yd2{bottom:110.604000pt;}
.y1c8{bottom:110.930400pt;}
.y208{bottom:111.056267pt;}
.y164{bottom:116.266667pt;}
.y11c{bottom:118.011200pt;}
.y162{bottom:119.158667pt;}
.y60{bottom:122.101200pt;}
.y191{bottom:122.237867pt;}
.y90{bottom:122.353200pt;}
.y12f{bottom:122.360533pt;}
.y15d{bottom:123.054267pt;}
.y147{bottom:123.784000pt;}
.y1c7{bottom:124.263733pt;}
.yd1{bottom:124.383467pt;}
.y207{bottom:124.389600pt;}
.y15c{bottom:127.236800pt;}
.yd0{bottom:136.383467pt;}
.y15e{bottom:136.529467pt;}
.y1c6{bottom:137.597067pt;}
.y206{bottom:137.722933pt;}
.y5f{bottom:138.101200pt;}
.y140{bottom:138.227200pt;}
.y190{bottom:138.237333pt;}
.y8f{bottom:138.353200pt;}
.y12e{bottom:138.360533pt;}
.y11b{bottom:140.688533pt;}
.y15b{bottom:141.903467pt;}
.y153{bottom:146.796800pt;}
.ycf{bottom:150.162933pt;}
.y1c5{bottom:150.930400pt;}
.y205{bottom:151.056267pt;}
.y5e{bottom:154.101200pt;}
.y13f{bottom:154.240533pt;}
.y8e{bottom:154.353200pt;}
.y11a{bottom:155.131200pt;}
.y28{bottom:161.033600pt;}
.yce{bottom:162.162933pt;}
.y1c4{bottom:164.263733pt;}
.y204{bottom:164.389600pt;}
.y119{bottom:169.573867pt;}
.y5d{bottom:170.101200pt;}
.y12d{bottom:170.234533pt;}
.y18f{bottom:170.237867pt;}
.y8d{bottom:170.353200pt;}
.ycd{bottom:175.942533pt;}
.y27{bottom:177.033600pt;}
.y15a{bottom:177.242133pt;}
.y1c3{bottom:177.597067pt;}
.y203{bottom:177.722933pt;}
.y118{bottom:184.016533pt;}
.y15f{bottom:185.324133pt;}
.y5c{bottom:186.101200pt;}
.y13e{bottom:186.107200pt;}
.y12c{bottom:186.195867pt;}
.y18e{bottom:186.237867pt;}
.y8c{bottom:186.353200pt;}
.ycc{bottom:187.942533pt;}
.y1c2{bottom:190.930400pt;}
.y202{bottom:191.056267pt;}
.y26{bottom:193.033600pt;}
.ycb{bottom:201.722000pt;}
.y5b{bottom:202.101200pt;}
.y13d{bottom:202.107200pt;}
.y12b{bottom:202.234533pt;}
.y18d{bottom:202.237867pt;}
.y8b{bottom:202.353200pt;}
.y1c1{bottom:204.263733pt;}
.y201{bottom:204.389600pt;}
.y25{bottom:209.033600pt;}
.y117{bottom:212.027067pt;}
.y163{bottom:212.521467pt;}
.yca{bottom:213.722000pt;}
.y159{bottom:216.580800pt;}
.y1c0{bottom:217.597067pt;}
.y200{bottom:217.722933pt;}
.y5a{bottom:218.101200pt;}
.y13c{bottom:218.107200pt;}
.y12a{bottom:218.234533pt;}
.y18c{bottom:218.237867pt;}
.y8a{bottom:218.354533pt;}
.y29{bottom:225.033600pt;}
.yc9{bottom:227.500133pt;}
.y1bf{bottom:230.930400pt;}
.y1ff{bottom:231.056267pt;}
.y160{bottom:234.090800pt;}
.y59{bottom:234.101200pt;}
.y13b{bottom:234.107200pt;}
.y129{bottom:234.234533pt;}
.y18b{bottom:234.237867pt;}
.y89{bottom:234.354533pt;}
.yc8{bottom:239.500133pt;}
.y24{bottom:241.033600pt;}
.y116{bottom:242.987200pt;}
.y1be{bottom:244.263733pt;}
.y1fe{bottom:244.389600pt;}
.y58{bottom:250.101200pt;}
.y13a{bottom:250.107200pt;}
.y128{bottom:250.234533pt;}
.y18a{bottom:250.237867pt;}
.y88{bottom:250.354533pt;}
.y158{bottom:256.580800pt;}
.y1bd{bottom:257.597067pt;}
.y1fd{bottom:257.722933pt;}
.y115{bottom:260.320533pt;}
.yc6{bottom:264.620133pt;}
.y57{bottom:266.101200pt;}
.y139{bottom:266.107200pt;}
.y127{bottom:266.195867pt;}
.y189{bottom:266.237867pt;}
.y87{bottom:266.354533pt;}
.yc5{bottom:270.620133pt;}
.y1bc{bottom:270.930400pt;}
.y1fc{bottom:271.056267pt;}
.yc7{bottom:276.620133pt;}
.y56{bottom:282.101200pt;}
.y138{bottom:282.107200pt;}
.y126{bottom:282.234533pt;}
.y188{bottom:282.237867pt;}
.y86{bottom:282.354533pt;}
.y161{bottom:282.885467pt;}
.y1bb{bottom:284.263733pt;}
.y1fb{bottom:284.389600pt;}
.y157{bottom:294.127467pt;}
.y1ba{bottom:297.597067pt;}
.y1fa{bottom:297.722933pt;}
.y55{bottom:298.101200pt;}
.y114{bottom:298.107200pt;}
.y125{bottom:298.195867pt;}
.y85{bottom:298.354533pt;}
.yf0{bottom:298.360533pt;}
.yc4{bottom:304.794533pt;}
.y21{bottom:308.167600pt;}
.y1b9{bottom:310.930400pt;}
.y1f9{bottom:311.056267pt;}
.y54{bottom:314.101200pt;}
.y113{bottom:314.107200pt;}
.y124{bottom:314.234533pt;}
.y187{bottom:314.237867pt;}
.y84{bottom:314.354533pt;}
.yef{bottom:314.360533pt;}
.yc3{bottom:322.127867pt;}
.y1b8{bottom:324.263733pt;}
.y1f8{bottom:324.389600pt;}
.y53{bottom:330.101200pt;}
.y112{bottom:330.107200pt;}
.y123{bottom:330.234533pt;}
.y186{bottom:330.237867pt;}
.y83{bottom:330.354533pt;}
.yee{bottom:330.360533pt;}
.y156{bottom:333.242133pt;}
.y20{bottom:337.372933pt;}
.y1b7{bottom:337.597067pt;}
.y1f7{bottom:337.722933pt;}
.y52{bottom:346.101200pt;}
.y111{bottom:346.107200pt;}
.y122{bottom:346.234533pt;}
.y185{bottom:346.237867pt;}
.y82{bottom:346.354533pt;}
.yed{bottom:346.360533pt;}
.y1f{bottom:350.706267pt;}
.y1b6{bottom:350.930400pt;}
.y1f6{bottom:351.056267pt;}
.y51{bottom:362.101200pt;}
.y110{bottom:362.107200pt;}
.ya0{bottom:362.234533pt;}
.y184{bottom:362.237867pt;}
.yc2{bottom:362.247867pt;}
.y81{bottom:362.354533pt;}
.yec{bottom:362.360533pt;}
.y1e{bottom:364.039600pt;}
.y1b5{bottom:364.263733pt;}
.y1f5{bottom:364.389600pt;}
.y155{bottom:373.242133pt;}
.y1d{bottom:377.372933pt;}
.y1b4{bottom:377.597067pt;}
.y1f4{bottom:377.722933pt;}
.y50{bottom:378.101200pt;}
.y10f{bottom:378.107200pt;}
.y9f{bottom:378.234533pt;}
.y183{bottom:378.237867pt;}
.yc1{bottom:378.247867pt;}
.y80{bottom:378.354533pt;}
.yeb{bottom:378.360533pt;}
.y1c{bottom:390.706267pt;}
.y1b3{bottom:390.930400pt;}
.y1f3{bottom:391.056267pt;}
.y4f{bottom:394.101200pt;}
.y10e{bottom:394.107200pt;}
.y9e{bottom:394.234533pt;}
.y182{bottom:394.237867pt;}
.yc0{bottom:394.247867pt;}
.y7f{bottom:394.354533pt;}
.yea{bottom:394.360533pt;}
.y1b{bottom:404.039600pt;}
.y1b2{bottom:404.263733pt;}
.y1f2{bottom:404.389600pt;}
.y4e{bottom:410.101200pt;}
.y10d{bottom:410.107200pt;}
.y9d{bottom:410.234533pt;}
.y181{bottom:410.237867pt;}
.ybf{bottom:410.247867pt;}
.y7e{bottom:410.354533pt;}
.ye9{bottom:410.360533pt;}
.y154{bottom:412.580800pt;}
.y1a{bottom:417.372933pt;}
.y1b1{bottom:417.597067pt;}
.y1f1{bottom:417.722933pt;}
.y149{bottom:425.466933pt;}
.y4d{bottom:426.101200pt;}
.y10c{bottom:426.107200pt;}
.y9c{bottom:426.234533pt;}
.y180{bottom:426.237867pt;}
.ybe{bottom:426.247867pt;}
.y7d{bottom:426.354533pt;}
.ye8{bottom:426.360533pt;}
.y19{bottom:430.706267pt;}
.y1b0{bottom:430.930400pt;}
.y1f0{bottom:431.056267pt;}
.y14d{bottom:439.039600pt;}
.y4c{bottom:442.101200pt;}
.y10b{bottom:442.107200pt;}
.y9b{bottom:442.234533pt;}
.y121{bottom:442.234667pt;}
.y17f{bottom:442.237867pt;}
.ybd{bottom:442.247867pt;}
.y7c{bottom:442.354533pt;}
.ye7{bottom:442.360533pt;}
.y18{bottom:444.039600pt;}
.y1af{bottom:444.263733pt;}
.y1ef{bottom:444.389600pt;}
.y17{bottom:457.372933pt;}
.y1ae{bottom:457.597067pt;}
.y1ee{bottom:457.722933pt;}
.y4b{bottom:458.101200pt;}
.y10a{bottom:458.107200pt;}
.y9a{bottom:458.234533pt;}
.y17e{bottom:458.237867pt;}
.ybc{bottom:458.247867pt;}
.y7b{bottom:458.354533pt;}
.y152{bottom:463.242133pt;}
.y16{bottom:470.706267pt;}
.y1ad{bottom:470.930400pt;}
.y1ed{bottom:471.056267pt;}
.y4a{bottom:474.101200pt;}
.y109{bottom:474.107200pt;}
.y99{bottom:474.234533pt;}
.y17d{bottom:474.237867pt;}
.ybb{bottom:474.247867pt;}
.y7a{bottom:474.354533pt;}
.ye6{bottom:474.360533pt;}
.y151{bottom:475.242133pt;}
.y15{bottom:484.039600pt;}
.y1ac{bottom:484.263733pt;}
.y1ec{bottom:484.389600pt;}
.y49{bottom:490.101200pt;}
.y108{bottom:490.107200pt;}
.y98{bottom:490.234533pt;}
.yba{bottom:490.247867pt;}
.y79{bottom:490.354533pt;}
.ye5{bottom:490.360533pt;}
.y14{bottom:497.372933pt;}
.y1ab{bottom:497.597067pt;}
.y1eb{bottom:497.722933pt;}
.y150{bottom:505.247467pt;}
.y48{bottom:506.101200pt;}
.y107{bottom:506.107200pt;}
.y97{bottom:506.234533pt;}
.y17c{bottom:506.237867pt;}
.yb9{bottom:506.247867pt;}
.y13{bottom:510.706267pt;}
.y1aa{bottom:510.930400pt;}
.y1ea{bottom:511.056267pt;}
.y47{bottom:522.101200pt;}
.y137{bottom:522.107200pt;}
.ye4{bottom:522.227200pt;}
.y96{bottom:522.234533pt;}
.y17b{bottom:522.237867pt;}
.yb8{bottom:522.247867pt;}
.y78{bottom:522.354533pt;}
.y12{bottom:524.039600pt;}
.y1a9{bottom:524.263733pt;}
.y1e9{bottom:524.389600pt;}
.y1a8{bottom:537.597067pt;}
.y1e8{bottom:537.722933pt;}
.y46{bottom:538.101200pt;}
.y106{bottom:538.107200pt;}
.ye3{bottom:538.227200pt;}
.y120{bottom:538.234533pt;}
.y17a{bottom:538.237867pt;}
.yb7{bottom:538.247867pt;}
.y77{bottom:538.354533pt;}
.y14f{bottom:550.634133pt;}
.y1a7{bottom:550.930400pt;}
.y1e7{bottom:551.056267pt;}
.y45{bottom:554.101200pt;}
.y105{bottom:554.107200pt;}
.ye2{bottom:554.227200pt;}
.y95{bottom:554.234533pt;}
.y179{bottom:554.237867pt;}
.yb6{bottom:554.247867pt;}
.y1a6{bottom:564.263733pt;}
.y1e6{bottom:564.389600pt;}
.y11{bottom:567.367600pt;}
.y44{bottom:570.101200pt;}
.y104{bottom:570.107200pt;}
.y76{bottom:570.221200pt;}
.ye1{bottom:570.227200pt;}
.y178{bottom:570.237867pt;}
.yb5{bottom:570.247867pt;}
.y1a5{bottom:577.597067pt;}
.y1e5{bottom:577.722933pt;}
.y10{bottom:580.167600pt;}
.y43{bottom:586.101200pt;}
.y136{bottom:586.107200pt;}
.y75{bottom:586.221200pt;}
.ye0{bottom:586.234533pt;}
.y177{bottom:586.237867pt;}
.yb4{bottom:586.247867pt;}
.y1a4{bottom:590.930400pt;}
.y1e4{bottom:591.056267pt;}
.yf{bottom:592.967600pt;}
.y14e{bottom:595.914133pt;}
.y103{bottom:601.987200pt;}
.y42{bottom:602.101200pt;}
.y135{bottom:602.107200pt;}
.y74{bottom:602.221200pt;}
.ydf{bottom:602.234533pt;}
.yb3{bottom:602.247867pt;}
.y1a3{bottom:604.263733pt;}
.y1e3{bottom:604.389600pt;}
.ye{bottom:617.106267pt;}
.y1a2{bottom:617.597067pt;}
.y1e2{bottom:617.722933pt;}
.y41{bottom:618.101200pt;}
.y134{bottom:618.107200pt;}
.y73{bottom:618.221200pt;}
.yde{bottom:618.234533pt;}
.y176{bottom:618.237867pt;}
.yb2{bottom:618.247867pt;}
.y1a1{bottom:630.930400pt;}
.y1e1{bottom:631.056267pt;}
.y148{bottom:633.928267pt;}
.y40{bottom:634.101200pt;}
.y133{bottom:634.107200pt;}
.y72{bottom:634.221200pt;}
.ydd{bottom:634.234533pt;}
.yb1{bottom:634.247867pt;}
.y14c{bottom:641.978933pt;}
.y1a0{bottom:644.263733pt;}
.y1e0{bottom:644.389600pt;}
.y3f{bottom:650.101200pt;}
.y175{bottom:650.104533pt;}
.y102{bottom:650.107200pt;}
.y71{bottom:650.221200pt;}
.ydc{bottom:650.234533pt;}
.yb0{bottom:650.247867pt;}
.yd{bottom:651.433333pt;}
.y19f{bottom:657.597067pt;}
.y1df{bottom:657.722933pt;}
.yc{bottom:666.100000pt;}
.y3e{bottom:666.101200pt;}
.y174{bottom:666.104533pt;}
.y101{bottom:666.107200pt;}
.y70{bottom:666.221200pt;}
.ydb{bottom:666.234533pt;}
.yaf{bottom:666.247867pt;}
.y19e{bottom:670.930400pt;}
.y1de{bottom:671.056267pt;}
.yb{bottom:680.766667pt;}
.y3d{bottom:682.101200pt;}
.y173{bottom:682.104533pt;}
.y100{bottom:682.107200pt;}
.y6f{bottom:682.221200pt;}
.yda{bottom:682.234533pt;}
.yae{bottom:682.247867pt;}
.y19d{bottom:684.263733pt;}
.y1dd{bottom:684.389600pt;}
.y14b{bottom:688.656267pt;}
.ya{bottom:691.772933pt;}
.y1dc{bottom:697.722933pt;}
.y3c{bottom:698.101200pt;}
.y172{bottom:698.104533pt;}
.yff{bottom:698.107200pt;}
.y6e{bottom:698.221200pt;}
.yd9{bottom:698.234533pt;}
.yad{bottom:698.247867pt;}
.y9{bottom:706.439600pt;}
.y1db{bottom:711.056267pt;}
.y19c{bottom:713.997867pt;}
.y3b{bottom:714.101200pt;}
.y171{bottom:714.104533pt;}
.yfe{bottom:714.107200pt;}
.y6d{bottom:714.221200pt;}
.yd8{bottom:714.234533pt;}
.yac{bottom:714.247867pt;}
.y1da{bottom:724.389600pt;}
.y8{bottom:724.766667pt;}
.y3a{bottom:730.101200pt;}
.y170{bottom:730.104533pt;}
.yfd{bottom:730.107200pt;}
.y6c{bottom:730.221200pt;}
.yd7{bottom:730.234533pt;}
.yab{bottom:730.247867pt;}
.y14a{bottom:733.957600pt;}
.y1d9{bottom:737.722933pt;}
.y7{bottom:738.338933pt;}
.y39{bottom:746.101200pt;}
.y16f{bottom:746.104533pt;}
.yfc{bottom:746.107200pt;}
.y6b{bottom:746.221200pt;}
.yd6{bottom:746.234533pt;}
.yaa{bottom:746.247867pt;}
.y1d8{bottom:751.056267pt;}
.y6{bottom:759.004267pt;}
.y38{bottom:762.101200pt;}
.y16e{bottom:762.104533pt;}
.yfb{bottom:762.107200pt;}
.y19b{bottom:762.117867pt;}
.y6a{bottom:762.221200pt;}
.ya9{bottom:762.247867pt;}
.y1d7{bottom:764.389600pt;}
.y1d6{bottom:777.722933pt;}
.y37{bottom:778.101200pt;}
.y16d{bottom:778.104533pt;}
.yfa{bottom:778.107200pt;}
.y19a{bottom:778.117867pt;}
.y69{bottom:778.221200pt;}
.yd5{bottom:778.234533pt;}
.ya8{bottom:778.247867pt;}
.y5{bottom:783.345067pt;}
.y1d5{bottom:791.056267pt;}
.y36{bottom:794.101200pt;}
.y16c{bottom:794.104533pt;}
.yf9{bottom:794.107200pt;}
.y68{bottom:794.221200pt;}
.ya7{bottom:794.247867pt;}
.y1d4{bottom:804.389600pt;}
.y4{bottom:807.350400pt;}
.y132{bottom:809.987200pt;}
.y35{bottom:810.101200pt;}
.y16b{bottom:810.104533pt;}
.yf8{bottom:810.107200pt;}
.y199{bottom:810.117867pt;}
.y67{bottom:810.221200pt;}
.ya6{bottom:810.247867pt;}
.y1d3{bottom:817.722933pt;}
.y34{bottom:826.101200pt;}
.y16a{bottom:826.104533pt;}
.yf7{bottom:826.107200pt;}
.y198{bottom:826.117867pt;}
.y66{bottom:826.221200pt;}
.ya5{bottom:826.247867pt;}
.y1d2{bottom:831.056267pt;}
.y3{bottom:831.355733pt;}
.y33{bottom:842.101200pt;}
.y169{bottom:842.104533pt;}
.yf6{bottom:842.107200pt;}
.y197{bottom:842.117867pt;}
.y65{bottom:842.221200pt;}
.ya4{bottom:842.247867pt;}
.y1d1{bottom:844.389600pt;}
.y1d0{bottom:857.722933pt;}
.y32{bottom:858.101200pt;}
.y168{bottom:858.104533pt;}
.yf5{bottom:858.107200pt;}
.y196{bottom:858.117867pt;}
.y64{bottom:858.221200pt;}
.y1cf{bottom:871.056267pt;}
.y2{bottom:871.060800pt;}
.y31{bottom:874.101200pt;}
.y167{bottom:874.104533pt;}
.yf4{bottom:874.107200pt;}
.ya3{bottom:874.247867pt;}
.y1ce{bottom:884.389600pt;}
.y30{bottom:890.101200pt;}
.y166{bottom:890.104533pt;}
.yf3{bottom:890.107200pt;}
.y195{bottom:890.117867pt;}
.y63{bottom:890.221200pt;}
.y1cd{bottom:897.722933pt;}
.y2f{bottom:906.101200pt;}
.yf2{bottom:906.107200pt;}
.ya2{bottom:906.114533pt;}
.y1cc{bottom:911.056267pt;}
.y2e{bottom:922.101200pt;}
.y165{bottom:922.104533pt;}
.yf1{bottom:922.107200pt;}
.ya1{bottom:922.114533pt;}
.y194{bottom:922.117867pt;}
.y1cb{bottom:924.389600pt;}
.y2b{bottom:951.795067pt;}
.y94{bottom:965.392400pt;}
.y2a{bottom:965.395067pt;}
.h7{height:18.662500pt;}
.h1a{height:26.833333pt;}
.h2{height:27.216146pt;}
.h11{height:29.160156pt;}
.h14{height:29.161756pt;}
.h13{height:29.162290pt;}
.h12{height:29.167623pt;}
.h9{height:31.062500pt;}
.hb{height:31.074833pt;}
.ha{height:31.083333pt;}
.h8{height:31.104167pt;}
.h15{height:31.114300pt;}
.he{height:33.048177pt;}
.h16{height:33.308367pt;}
.h19{height:34.500000pt;}
.hc{height:38.828125pt;}
.hf{height:38.854167pt;}
.hd{height:38.880208pt;}
.h1d{height:38.882342pt;}
.h17{height:38.893542pt;}
.h1c{height:39.101562pt;}
.h6{height:45.793738pt;}
.h5{height:45.799071pt;}
.h3{height:46.593750pt;}
.h10{height:53.160156pt;}
.h4{height:54.359375pt;}
.h1b{height:220.526667pt;}
.h18{height:643.082667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:403.760000pt;}
.w3{width:657.888000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:9.154000pt;}
.x30{left:11.039733pt;}
.x2f{left:18.339200pt;}
.xb{left:68.031467pt;}
.x21{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x14{left:88.818933pt;}
.x5{left:91.078000pt;}
.x33{left:94.488133pt;}
.xc{left:98.258133pt;}
.x3{left:111.491200pt;}
.x32{left:113.385867pt;}
.x7{left:117.170133pt;}
.x1a{left:126.616400pt;}
.x4{left:143.629867pt;}
.x2e{left:168.836000pt;}
.x23{left:185.521333pt;}
.x6{left:189.223467pt;}
.x24{left:192.594000pt;}
.x26{left:203.342133pt;}
.x2a{left:218.420133pt;}
.x2b{left:223.753467pt;}
.x28{left:296.686000pt;}
.x2c{left:307.348133pt;}
.x25{left:339.310133pt;}
.x1c{left:362.980800pt;}
.x1d{left:373.440800pt;}
.x1e{left:375.760800pt;}
.x1b{left:379.456400pt;}
.x29{left:398.350000pt;}
.xa{left:404.481333pt;}
.xe{left:406.244800pt;}
.x12{left:425.195867pt;}
.x8{left:427.090133pt;}
.x2d{left:432.660133pt;}
.xf{left:436.484800pt;}
.x15{left:452.166133pt;}
.x13{left:455.435867pt;}
.xd{left:466.858133pt;}
.x16{left:505.236133pt;}
.x31{left:510.993333pt;}
.x17{left:520.246133pt;}
.x20{left:525.894933pt;}
.x22{left:533.948400pt;}
.x11{left:589.770933pt;}
.x2{left:626.078800pt;}
.x34{left:637.449067pt;}
.x10{left:643.752133pt;}
.x19{left:660.526400pt;}
.x1f{left:662.649733pt;}
.x18{left:670.806400pt;}
}




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