
    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_d66f8141fcb26765d02b9fa5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_8d707cdf90be51f0db33032c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_3818b05d907438b87abde826.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_50fd04e1163272034fa96ae5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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_b503e7a0aadaf0add6415fe8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.179000;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_80752b7b8c42edf46c50613b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;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_5bf709ff1ff6b8f28b50061f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.230000;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_a9785fbf0253a6e3bb2acdf3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.328000;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_3335007bb11281a18c2cbc05.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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);}
.m2{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,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:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.399963px;}
.v1{vertical-align:24.000000px;}
.ls38{letter-spacing:-1.530000px;}
.ls39{letter-spacing:-1.428000px;}
.ls37{letter-spacing:-0.480000px;}
.ls27{letter-spacing:-0.420000px;}
.ls5f{letter-spacing:-0.408000px;}
.ls23{letter-spacing:-0.360000px;}
.ls6f{letter-spacing:-0.306000px;}
.ls26{letter-spacing:-0.300000px;}
.ls6d{letter-spacing:-0.255000px;}
.ls22{letter-spacing:-0.240000px;}
.ls60{letter-spacing:-0.204000px;}
.ls24{letter-spacing:-0.180000px;}
.ls25{letter-spacing:-0.120000px;}
.ls6e{letter-spacing:-0.102000px;}
.ls30{letter-spacing:-0.060000px;}
.ls5e{letter-spacing:-0.051000px;}
.ls11{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000037px;}
.ls31{letter-spacing:0.000038px;}
.ls44{letter-spacing:0.030000px;}
.ls46{letter-spacing:0.051000px;}
.ls1a{letter-spacing:0.060000px;}
.ls3e{letter-spacing:0.090000px;}
.ls4a{letter-spacing:0.102000px;}
.lsa{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.178931px;}
.ls14{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.204000px;}
.ls13{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.240000px;}
.lse{letter-spacing:0.255000px;}
.ls47{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.270000px;}
.ls69{letter-spacing:0.280500px;}
.ls3d{letter-spacing:0.281986px;}
.ls4c{letter-spacing:0.288000px;}
.ls3f{letter-spacing:0.299994px;}
.ls2{letter-spacing:0.300000px;}
.ls51{letter-spacing:0.306000px;}
.ls7{letter-spacing:0.330000px;}
.ls6b{letter-spacing:0.357000px;}
.lsd{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.390000px;}
.ls6c{letter-spacing:0.408000px;}
.ls2d{letter-spacing:0.419971px;}
.ls1c{letter-spacing:0.420000px;}
.ls43{letter-spacing:0.450000px;}
.ls48{letter-spacing:0.459000px;}
.ls21{letter-spacing:0.480000px;}
.ls29{letter-spacing:0.510000px;}
.ls40{letter-spacing:0.516000px;}
.ls8{letter-spacing:0.540000px;}
.ls49{letter-spacing:0.561000px;}
.ls3{letter-spacing:0.570000px;}
.ls6{letter-spacing:0.600000px;}
.ls58{letter-spacing:0.612000px;}
.ls28{letter-spacing:0.630000px;}
.ls5d{letter-spacing:0.637500px;}
.ls5{letter-spacing:0.660000px;}
.ls5a{letter-spacing:0.663000px;}
.ls2f{letter-spacing:0.690000px;}
.ls6a{letter-spacing:0.714000px;}
.ls17{letter-spacing:0.720000px;}
.ls4b{letter-spacing:0.739500px;}
.ls5c{letter-spacing:0.765000px;}
.lsc{letter-spacing:0.780000px;}
.ls66{letter-spacing:0.790500px;}
.ls4f{letter-spacing:0.816000px;}
.ls4{letter-spacing:0.840000px;}
.ls62{letter-spacing:0.867000px;}
.ls2b{letter-spacing:0.870000px;}
.ls64{letter-spacing:0.892500px;}
.ls15{letter-spacing:0.900000px;}
.ls53{letter-spacing:0.918000px;}
.ls1f{letter-spacing:0.930000px;}
.ls2c{letter-spacing:0.960000px;}
.ls50{letter-spacing:0.969000px;}
.ls63{letter-spacing:0.994500px;}
.ls1b{letter-spacing:1.020000px;}
.ls16{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.110000px;}
.ls68{letter-spacing:1.122000px;}
.ls1e{letter-spacing:1.140000px;}
.ls4d{letter-spacing:1.173000px;}
.ls1d{letter-spacing:1.200000px;}
.ls59{letter-spacing:1.224000px;}
.ls12{letter-spacing:1.260000px;}
.ls3b{letter-spacing:1.320000px;}
.ls65{letter-spacing:1.377000px;}
.ls42{letter-spacing:1.380000px;}
.ls4e{letter-spacing:1.428000px;}
.ls5b{letter-spacing:1.453500px;}
.lsb{letter-spacing:1.470000px;}
.ls18{letter-spacing:1.560000px;}
.ls52{letter-spacing:1.632000px;}
.ls2a{letter-spacing:1.680000px;}
.ls54{letter-spacing:1.683000px;}
.ls61{letter-spacing:1.734000px;}
.ls20{letter-spacing:1.740000px;}
.ls55{letter-spacing:1.836000px;}
.ls67{letter-spacing:1.938000px;}
.ls2e{letter-spacing:1.980000px;}
.ls56{letter-spacing:1.989000px;}
.ls41{letter-spacing:2.040000px;}
.ls70{letter-spacing:2.142000px;}
.ls57{letter-spacing:2.448000px;}
.ls0{letter-spacing:3.990000px;}
.ls35{letter-spacing:148.002000px;}
.ls32{letter-spacing:175.128571px;}
.ls33{letter-spacing:184.452064px;}
.ls34{letter-spacing:186.450531px;}
.ls36{letter-spacing:750.006000px;}
.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;}
}
.ws16{word-spacing:-16.110000px;}
.ws3f{word-spacing:-16.020000px;}
.ws43{word-spacing:-15.780000px;}
.ws60{word-spacing:-15.540000px;}
.ws70{word-spacing:-15.390000px;}
.ws40{word-spacing:-15.300000px;}
.ws6f{word-spacing:-15.120000px;}
.ws6e{word-spacing:-15.000000px;}
.ws8b{word-spacing:-14.880000px;}
.ws17{word-spacing:-14.760000px;}
.ws18{word-spacing:-14.640000px;}
.ws9e{word-spacing:-13.719000px;}
.ws8d{word-spacing:-13.005000px;}
.ws66{word-spacing:-12.750000px;}
.ws42{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws5{word-spacing:-11.520000px;}
.ws41{word-spacing:-11.130000px;}
.ws1{word-spacing:-9.996000px;}
.ws8c{word-spacing:-9.843000px;}
.ws0{word-spacing:-9.408000px;}
.ws61{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws4e{word-spacing:-7.500000px;}
.ws7{word-spacing:-1.890000px;}
.ws27{word-spacing:-1.560000px;}
.ws11{word-spacing:-1.500000px;}
.wsa{word-spacing:-1.440000px;}
.ws33{word-spacing:-1.380000px;}
.ws5d{word-spacing:-1.320000px;}
.ws90{word-spacing:-1.275000px;}
.ws10{word-spacing:-1.260000px;}
.ws38{word-spacing:-1.200000px;}
.ws9c{word-spacing:-1.173000px;}
.ws58{word-spacing:-1.140000px;}
.wsb2{word-spacing:-1.122000px;}
.ws7d{word-spacing:-1.080000px;}
.ws2b{word-spacing:-1.020000px;}
.ws94{word-spacing:-0.969000px;}
.ws89{word-spacing:-0.960000px;}
.ws8f{word-spacing:-0.918000px;}
.ws36{word-spacing:-0.900000px;}
.ws19{word-spacing:-0.840000px;}
.wsb1{word-spacing:-0.816000px;}
.ws49{word-spacing:-0.780000px;}
.ws93{word-spacing:-0.765000px;}
.ws12{word-spacing:-0.720000px;}
.wsb5{word-spacing:-0.663000px;}
.ws4a{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.612000px;}
.ws5b{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.570000px;}
.wsac{word-spacing:-0.561000px;}
.ws20{word-spacing:-0.540000px;}
.ws52{word-spacing:-0.480000px;}
.ws32{word-spacing:-0.420000px;}
.ws9a{word-spacing:-0.408000px;}
.ws3d{word-spacing:-0.360000px;}
.ws4{word-spacing:-0.300000px;}
.wsa7{word-spacing:-0.255000px;}
.ws8a{word-spacing:-0.240000px;}
.wsae{word-spacing:-0.204000px;}
.ws1d{word-spacing:-0.180000px;}
.ws1f{word-spacing:-0.120000px;}
.ws6{word-spacing:-0.072000px;}
.ws30{word-spacing:-0.060000px;}
.wsaf{word-spacing:-0.051000px;}
.ws8{word-spacing:0.000000px;}
.wsab{word-spacing:0.051000px;}
.ws4c{word-spacing:0.060000px;}
.wsb6{word-spacing:0.102000px;}
.ws23{word-spacing:0.120000px;}
.ws47{word-spacing:0.180000px;}
.ws34{word-spacing:0.240000px;}
.ws46{word-spacing:0.300000px;}
.ws9f{word-spacing:0.306000px;}
.wsa0{word-spacing:0.357000px;}
.ws48{word-spacing:0.360000px;}
.ws80{word-spacing:0.420000px;}
.ws97{word-spacing:0.459000px;}
.ws56{word-spacing:0.480000px;}
.ws50{word-spacing:0.540000px;}
.wsb4{word-spacing:0.561000px;}
.ws57{word-spacing:0.600000px;}
.ws78{word-spacing:0.720000px;}
.ws75{word-spacing:0.840000px;}
.ws2c{word-spacing:0.900000px;}
.ws2d{word-spacing:0.960000px;}
.ws95{word-spacing:0.969000px;}
.ws5a{word-spacing:1.020000px;}
.wsb{word-spacing:1.080000px;}
.wse{word-spacing:1.140000px;}
.ws1c{word-spacing:1.200000px;}
.ws29{word-spacing:1.260000px;}
.ws96{word-spacing:1.275000px;}
.ws2f{word-spacing:1.320000px;}
.wsa8{word-spacing:1.326000px;}
.ws24{word-spacing:1.380000px;}
.ws3c{word-spacing:1.440000px;}
.wsc{word-spacing:1.500000px;}
.wsb3{word-spacing:1.530000px;}
.ws22{word-spacing:1.560000px;}
.ws25{word-spacing:1.620000px;}
.ws99{word-spacing:1.632000px;}
.ws5c{word-spacing:1.680000px;}
.ws98{word-spacing:1.734000px;}
.wsd{word-spacing:1.740000px;}
.ws6d{word-spacing:1.785000px;}
.ws72{word-spacing:1.800000px;}
.ws44{word-spacing:1.860000px;}
.ws6a{word-spacing:1.920000px;}
.wsa9{word-spacing:1.938000px;}
.wsf{word-spacing:1.980000px;}
.ws1a{word-spacing:2.040000px;}
.ws3b{word-spacing:2.100000px;}
.ws54{word-spacing:2.160000px;}
.ws1e{word-spacing:2.220000px;}
.ws2e{word-spacing:2.280000px;}
.ws82{word-spacing:2.295000px;}
.ws28{word-spacing:2.340000px;}
.ws3a{word-spacing:2.400000px;}
.ws88{word-spacing:2.460000px;}
.wsad{word-spacing:2.499000px;}
.wsaa{word-spacing:2.550000px;}
.ws9b{word-spacing:2.601000px;}
.ws4f{word-spacing:2.700000px;}
.ws4d{word-spacing:2.760000px;}
.ws31{word-spacing:2.820000px;}
.ws9d{word-spacing:2.856000px;}
.ws74{word-spacing:2.880000px;}
.ws5f{word-spacing:2.940000px;}
.wsa5{word-spacing:2.958000px;}
.ws55{word-spacing:3.000000px;}
.ws81{word-spacing:3.060000px;}
.ws21{word-spacing:3.120000px;}
.wsb0{word-spacing:3.162000px;}
.ws35{word-spacing:3.180000px;}
.ws2a{word-spacing:3.240000px;}
.ws77{word-spacing:3.300000px;}
.ws39{word-spacing:3.360000px;}
.ws59{word-spacing:3.420000px;}
.ws91{word-spacing:3.468000px;}
.ws86{word-spacing:3.540000px;}
.ws71{word-spacing:3.600000px;}
.ws37{word-spacing:3.660000px;}
.ws45{word-spacing:3.720000px;}
.wsa1{word-spacing:3.774000px;}
.ws76{word-spacing:3.780000px;}
.ws53{word-spacing:3.840000px;}
.wsb8{word-spacing:3.876000px;}
.ws1b{word-spacing:3.960000px;}
.ws5e{word-spacing:4.020000px;}
.ws8e{word-spacing:4.080000px;}
.wsa4{word-spacing:4.233000px;}
.ws73{word-spacing:4.260000px;}
.wsa2{word-spacing:4.488000px;}
.ws7f{word-spacing:4.500000px;}
.ws92{word-spacing:4.539000px;}
.ws87{word-spacing:4.560000px;}
.wsb7{word-spacing:4.845000px;}
.ws13{word-spacing:5.100000px;}
.ws6b{word-spacing:5.253000px;}
.wsa6{word-spacing:5.304000px;}
.ws26{word-spacing:5.520000px;}
.ws6c{word-spacing:5.967000px;}
.ws4b{word-spacing:6.000000px;}
.wsbc{word-spacing:6.477000px;}
.ws3e{word-spacing:6.540000px;}
.wsa3{word-spacing:6.681000px;}
.ws51{word-spacing:7.560000px;}
.wsb9{word-spacing:7.701000px;}
.ws7e{word-spacing:7.980000px;}
.wsba{word-spacing:8.619000px;}
.wsbb{word-spacing:10.404000px;}
.wsbd{word-spacing:13.668000px;}
.wsbe{word-spacing:17.799000px;}
.ws15{word-spacing:72.267000px;}
.ws84{word-spacing:75.531890px;}
.ws63{word-spacing:78.080994px;}
.ws83{word-spacing:84.487953px;}
.ws85{word-spacing:97.640975px;}
.ws65{word-spacing:106.946994px;}
.ws64{word-spacing:108.578994px;}
.ws62{word-spacing:138.770994px;}
.ws67{word-spacing:165.494994px;}
.ws69{word-spacing:190.994994px;}
.ws7b{word-spacing:197.828991px;}
.ws68{word-spacing:202.317000px;}
.ws7c{word-spacing:221.900991px;}
.ws7a{word-spacing:481.198794px;}
.ws79{word-spacing:534.595794px;}
._10{margin-left:-2959.377061px;}
._45{margin-left:-345.872527px;}
._40{margin-left:-317.958075px;}
._42{margin-left:-300.533275px;}
._b{margin-left:-72.675000px;}
._7{margin-left:-16.575000px;}
._6{margin-left:-9.480000px;}
._d{margin-left:-8.340009px;}
._11{margin-left:-6.348010px;}
._1{margin-left:-5.192700px;}
._13{margin-left:-4.021839px;}
._3{margin-left:-2.994000px;}
._0{margin-left:-1.632000px;}
._4{width:1.615839px;}
._f{width:3.588000px;}
._e{width:4.950000px;}
._15{width:6.947361px;}
._12{width:8.892000px;}
._49{width:11.883000px;}
._48{width:14.331000px;}
._14{width:15.687900px;}
._8{width:18.360000px;}
._2{width:39.545991px;}
._5{width:40.631403px;}
._a{width:54.621000px;}
._1e{width:62.066994px;}
._26{width:66.300000px;}
._19{width:67.596676px;}
._9{width:72.267000px;}
._24{width:76.244994px;}
._23{width:77.622000px;}
._31{width:79.101000px;}
._18{width:80.733000px;}
._30{width:87.567000px;}
._35{width:93.278994px;}
._25{width:94.605000px;}
._17{width:99.110315px;}
._43{width:103.172500px;}
._34{width:104.601000px;}
._44{width:108.954823px;}
._41{width:111.637567px;}
._2c{width:117.351000px;}
._46{width:125.822870px;}
._1b{width:130.813161px;}
._47{width:132.038654px;}
._1c{width:136.425000px;}
._16{width:179.418000px;}
._1f{width:189.567000px;}
._1d{width:204.519000px;}
._3d{width:211.140000px;}
._20{width:219.249000px;}
._32{width:241.026000px;}
._3a{width:255.847844px;}
._22{width:261.520839px;}
._3c{width:262.956000px;}
._3e{width:272.810276px;}
._21{width:325.482000px;}
._2a{width:347.973000px;}
._3b{width:349.911000px;}
._2e{width:356.439000px;}
._2d{width:359.295000px;}
._2f{width:367.761000px;}
._2b{width:384.795000px;}
._1a{width:385.984161px;}
._3f{width:465.254472px;}
._28{width:484.398000px;}
._29{width:495.261000px;}
._27{width:622.608000px;}
._39{width:626.739000px;}
._37{width:638.061000px;}
._38{width:655.044000px;}
._36{width:821.959839px;}
._33{width:885.921000px;}
._c{width:2033.421068px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:30.000000px;}
.fse{font-size:31.146600px;}
.fsb{font-size:31.149000px;}
.fs10{font-size:32.751000px;}
.fs8{font-size:35.699999px;}
.fsd{font-size:39.839400px;}
.fsc{font-size:39.840600px;}
.fsf{font-size:40.029000px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y208{bottom:3.233711px;}
.y1b1{bottom:3.233873px;}
.y25e{bottom:3.249023px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y2d{bottom:112.995150px;}
.y74{bottom:113.415298px;}
.y6f{bottom:113.415344px;}
.y15d{bottom:114.564297px;}
.ydc{bottom:114.735168px;}
.yaa{bottom:114.735306px;}
.yf1{bottom:114.874786px;}
.yf9{bottom:114.874947px;}
.y277{bottom:118.319560px;}
.y39{bottom:120.421500px;}
.y2b7{bottom:124.155325px;}
.y2c{bottom:127.989150px;}
.y73{bottom:132.165298px;}
.y6e{bottom:132.165344px;}
.y276{bottom:133.313560px;}
.y15c{bottom:133.314297px;}
.ydb{bottom:133.485168px;}
.ya9{bottom:133.485306px;}
.yf0{bottom:133.624786px;}
.yf8{bottom:133.624947px;}
.y2b6{bottom:139.149325px;}
.y38{bottom:140.515503px;}
.y275{bottom:148.307560px;}
.y2b{bottom:150.531150px;}
.y72{bottom:150.915298px;}
.y6d{bottom:150.915344px;}
.y15b{bottom:152.064297px;}
.yda{bottom:152.235168px;}
.ya8{bottom:152.235306px;}
.yef{bottom:152.374786px;}
.yf7{bottom:152.374947px;}
.y2b5{bottom:154.143325px;}
.y37{bottom:157.968753px;}
.y274{bottom:163.301560px;}
.y2a{bottom:165.525150px;}
.y2b4{bottom:169.137325px;}
.y6c{bottom:169.665344px;}
.y15a{bottom:170.814297px;}
.yd9{bottom:170.985168px;}
.ya7{bottom:170.985306px;}
.yee{bottom:171.124786px;}
.yf6{bottom:171.124947px;}
.y36{bottom:178.062756px;}
.y273{bottom:178.295560px;}
.y2b3{bottom:184.131325px;}
.y29{bottom:188.067150px;}
.y71{bottom:188.415298px;}
.y6b{bottom:188.415344px;}
.y159{bottom:189.564297px;}
.yd8{bottom:189.735168px;}
.ya6{bottom:189.735306px;}
.yed{bottom:189.874786px;}
.yf5{bottom:189.874947px;}
.y272{bottom:193.289560px;}
.y35{bottom:195.521995px;}
.y2b2{bottom:199.125325px;}
.y28{bottom:203.061150px;}
.y6a{bottom:207.165344px;}
.yd7{bottom:208.485168px;}
.ya5{bottom:208.485306px;}
.yec{bottom:208.624786px;}
.yf4{bottom:208.624947px;}
.y34{bottom:210.515995px;}
.y2b1{bottom:214.119325px;}
.y27{bottom:225.603150px;}
.y70{bottom:225.915298px;}
.y69{bottom:225.915344px;}
.yd6{bottom:227.235168px;}
.ya4{bottom:227.235306px;}
.yeb{bottom:227.374786px;}
.yf3{bottom:227.374947px;}
.y2b0{bottom:229.113325px;}
.y33{bottom:230.609848px;}
.y271{bottom:234.484810px;}
.y26{bottom:240.597150px;}
.y1ed{bottom:241.540489px;}
.y2af{bottom:244.107325px;}
.y68{bottom:244.665344px;}
.yd5{bottom:245.985168px;}
.ya3{bottom:245.985306px;}
.yea{bottom:246.124786px;}
.y134{bottom:246.124947px;}
.y32{bottom:248.063259px;}
.y270{bottom:249.478810px;}
.y2ae{bottom:259.101325px;}
.y25{bottom:263.139150px;}
.y67{bottom:263.415344px;}
.yd4{bottom:264.735168px;}
.ya2{bottom:264.735306px;}
.ye9{bottom:264.874786px;}
.yf2{bottom:264.874947px;}
.y1bb{bottom:268.144203px;}
.y31{bottom:268.157249px;}
.y2ad{bottom:274.095325px;}
.y24{bottom:278.133150px;}
.y26f{bottom:279.441310px;}
.y66{bottom:282.165344px;}
.yd3{bottom:283.485168px;}
.ya1{bottom:283.485306px;}
.ye8{bottom:283.624786px;}
.y13d{bottom:283.624947px;}
.y30{bottom:285.616500px;}
.y2ac{bottom:289.089325px;}
.y1bf{bottom:291.806694px;}
.y1e7{bottom:291.806733px;}
.y1f8{bottom:291.809681px;}
.y26e{bottom:294.435310px;}
.y2f{bottom:300.610500px;}
.y23{bottom:300.675150px;}
.y65{bottom:300.915344px;}
.yd2{bottom:302.235168px;}
.ya0{bottom:302.235306px;}
.ye7{bottom:302.374786px;}
.y13c{bottom:302.374947px;}
.y2ab{bottom:304.083325px;}
.y1bc{bottom:308.416191px;}
.y22{bottom:315.669150px;}
.y2aa{bottom:319.077325px;}
.y64{bottom:319.665344px;}
.y2e{bottom:320.704491px;}
.yd1{bottom:320.985168px;}
.y9f{bottom:320.985306px;}
.ye6{bottom:321.124786px;}
.y13b{bottom:321.124947px;}
.y1eb{bottom:323.548775px;}
.y1fc{bottom:323.551723px;}
.y1c4{bottom:323.558695px;}
.y26d{bottom:328.185310px;}
.y2a9{bottom:334.071325px;}
.y63{bottom:338.415344px;}
.y205{bottom:339.486019px;}
.y1d9{bottom:339.494482px;}
.y1e4{bottom:339.494495px;}
.y1f5{bottom:339.497443px;}
.y1cc{bottom:339.504427px;}
.yd0{bottom:339.735168px;}
.y9e{bottom:339.735306px;}
.ye5{bottom:339.874786px;}
.y13a{bottom:339.874947px;}
.y21{bottom:346.485900px;}
.y2a8{bottom:349.065325px;}
.y202{bottom:355.212612px;}
.y1d6{bottom:355.221076px;}
.y1e1{bottom:355.221088px;}
.y1f2{bottom:355.224037px;}
.y1c9{bottom:355.231021px;}
.y62{bottom:357.165344px;}
.ycf{bottom:358.485168px;}
.y9d{bottom:358.485306px;}
.ye4{bottom:358.624786px;}
.y139{bottom:358.624947px;}
.y2a7{bottom:364.059325px;}
.y26c{bottom:365.725072px;}
.y20{bottom:366.211349px;}
.y1d4{bottom:371.166796px;}
.y1df{bottom:371.166808px;}
.y200{bottom:371.168292px;}
.y1f0{bottom:371.169757px;}
.y1c7{bottom:371.176741px;}
.y2e8{bottom:371.512823px;}
.y61{bottom:375.915344px;}
.yce{bottom:377.235168px;}
.y9c{bottom:377.235306px;}
.ye3{bottom:377.374786px;}
.y138{bottom:377.374947px;}
.y2a6{bottom:379.053325px;}
.y26b{bottom:380.719072px;}
.y1f{bottom:384.961349px;}
.y2e7{bottom:386.506823px;}
.y1c1{bottom:386.903342px;}
.y2a5{bottom:394.047325px;}
.y60{bottom:394.665344px;}
.ycd{bottom:395.985168px;}
.y9b{bottom:395.985306px;}
.ye2{bottom:396.124786px;}
.y137{bottom:396.124947px;}
.y1fe{bottom:399.265663px;}
.y1ee{bottom:399.266396px;}
.y19a{bottom:399.306932px;}
.y259{bottom:400.777313px;}
.y249{bottom:400.780334px;}
.y2e6{bottom:401.500823px;}
.y1be{bottom:403.514548px;}
.y1e{bottom:403.711349px;}
.y2a4{bottom:409.041325px;}
.y5f{bottom:413.415344px;}
.y26a{bottom:414.430072px;}
.ycc{bottom:414.735168px;}
.y9a{bottom:414.735260px;}
.y119{bottom:414.735306px;}
.ye1{bottom:414.874786px;}
.y136{bottom:414.874947px;}
.y2e5{bottom:416.494823px;}
.y1c0{bottom:418.794782px;}
.y1e8{bottom:418.794820px;}
.y1f9{bottom:418.797769px;}
.y1d{bottom:422.461349px;}
.y2a3{bottom:424.035325px;}
.y269{bottom:429.424072px;}
.y2e4{bottom:431.488823px;}
.y5e{bottom:432.165344px;}
.ycb{bottom:433.485168px;}
.y99{bottom:433.485260px;}
.y133{bottom:433.485306px;}
.ye0{bottom:433.624786px;}
.y135{bottom:433.624947px;}
.y207{bottom:434.512947px;}
.y1db{bottom:434.521411px;}
.y1e6{bottom:434.521423px;}
.y1f7{bottom:434.524372px;}
.y1ce{bottom:434.531356px;}
.y2a2{bottom:439.029325px;}
.y2e3{bottom:446.482823px;}
.y1d1{bottom:450.467119px;}
.y1dc{bottom:450.467131px;}
.y1e9{bottom:450.467143px;}
.y1fa{bottom:450.470092px;}
.y1c2{bottom:450.477063px;}
.y5d{bottom:450.915344px;}
.yca{bottom:452.235168px;}
.y98{bottom:452.235260px;}
.y132{bottom:452.235306px;}
.ydf{bottom:452.374786px;}
.y2a1{bottom:454.023325px;}
.y1c{bottom:459.961349px;}
.y312{bottom:460.915823px;}
.y2e2{bottom:461.476823px;}
.y268{bottom:463.132645px;}
.y1d3{bottom:466.193725px;}
.y1de{bottom:466.193737px;}
.y1ff{bottom:466.195221px;}
.y1ef{bottom:466.196686px;}
.y1c6{bottom:466.203670px;}
.y2a0{bottom:469.017325px;}
.y5c{bottom:469.665344px;}
.yc9{bottom:470.985168px;}
.y97{bottom:470.985260px;}
.y131{bottom:470.985306px;}
.yde{bottom:471.124786px;}
.y311{bottom:475.909823px;}
.y2e1{bottom:476.470823px;}
.y267{bottom:481.882645px;}
.y203{bottom:482.130981px;}
.y1d7{bottom:482.139445px;}
.y1e2{bottom:482.139457px;}
.y1f3{bottom:482.142406px;}
.y1ca{bottom:482.149389px;}
.y29f{bottom:484.011325px;}
.y5b{bottom:488.415344px;}
.yc8{bottom:489.735168px;}
.y96{bottom:489.735260px;}
.y130{bottom:489.735306px;}
.ydd{bottom:489.874786px;}
.y2e0{bottom:491.464823px;}
.y158{bottom:496.186186px;}
.y1d0{bottom:497.945724px;}
.y29e{bottom:499.005325px;}
.y266{bottom:500.632645px;}
.y2df{bottom:506.458823px;}
.y310{bottom:506.752073px;}
.y5a{bottom:507.165344px;}
.yc7{bottom:508.485168px;}
.y95{bottom:508.485260px;}
.y12f{bottom:508.485306px;}
.y210{bottom:508.624786px;}
.y29d{bottom:513.999325px;}
.y1bd{bottom:514.482097px;}
.y157{bottom:514.979686px;}
.y1b{bottom:516.211395px;}
.y265{bottom:519.382645px;}
.y1ba{bottom:519.840435px;}
.y2de{bottom:521.452823px;}
.y30f{bottom:521.746073px;}
.y59{bottom:525.915344px;}
.yc6{bottom:527.235168px;}
.y94{bottom:527.235260px;}
.y12e{bottom:527.235306px;}
.y20f{bottom:527.374786px;}
.y29c{bottom:528.993325px;}
.y1ea{bottom:529.757509px;}
.y1fb{bottom:529.760458px;}
.y1c3{bottom:529.767429px;}
.y156{bottom:533.696686px;}
.y1b9{bottom:534.834435px;}
.y2dd{bottom:536.446823px;}
.y30e{bottom:536.740073px;}
.y264{bottom:538.132645px;}
.y29b{bottom:543.987325px;}
.y58{bottom:544.665344px;}
.y1d5{bottom:545.553810px;}
.y1e0{bottom:545.553822px;}
.y201{bottom:545.555306px;}
.y1f1{bottom:545.556771px;}
.y1c8{bottom:545.563754px;}
.yc5{bottom:545.985168px;}
.y93{bottom:545.985260px;}
.y12d{bottom:545.985306px;}
.y20e{bottom:546.124786px;}
.yff{bottom:547.375812px;}
.y1b8{bottom:549.828435px;}
.y2dc{bottom:551.440823px;}
.y30d{bottom:551.734073px;}
.y155{bottom:552.413686px;}
.y1a{bottom:553.711395px;}
.y263{bottom:556.882645px;}
.y29a{bottom:558.981325px;}
.y1d2{bottom:561.509486px;}
.y1dd{bottom:561.509499px;}
.y1ec{bottom:561.509511px;}
.y1fd{bottom:561.512460px;}
.y1c5{bottom:561.519431px;}
.yfe{bottom:562.381812px;}
.y57{bottom:563.415344px;}
.yc4{bottom:564.735168px;}
.y92{bottom:564.735260px;}
.y12c{bottom:564.735306px;}
.y1b7{bottom:564.822435px;}
.y20d{bottom:564.874786px;}
.y2db{bottom:566.434823px;}
.y30c{bottom:566.728073px;}
.y154{bottom:571.130686px;}
.y19{bottom:572.461395px;}
.y299{bottom:573.975325px;}
.y262{bottom:575.632645px;}
.y206{bottom:577.227638px;}
.y1da{bottom:577.236102px;}
.y1e5{bottom:577.236114px;}
.y1f6{bottom:577.239063px;}
.y1cd{bottom:577.246046px;}
.yfd{bottom:577.375812px;}
.y1b6{bottom:579.816435px;}
.y2da{bottom:581.428823px;}
.y30b{bottom:581.722073px;}
.y56{bottom:582.165344px;}
.yc3{bottom:583.485168px;}
.y91{bottom:583.485260px;}
.y12b{bottom:583.485306px;}
.y20c{bottom:583.624786px;}
.y298{bottom:588.969325px;}
.y153{bottom:589.847686px;}
.y18{bottom:591.211395px;}
.y1cf{bottom:593.191766px;}
.y261{bottom:594.382645px;}
.y1b5{bottom:594.810435px;}
.y2d9{bottom:596.422823px;}
.y30a{bottom:596.716073px;}
.yfc{bottom:597.469803px;}
.y55{bottom:600.915344px;}
.yc2{bottom:602.235168px;}
.y90{bottom:602.235260px;}
.y12a{bottom:602.235306px;}
.y20b{bottom:602.374786px;}
.y297{bottom:603.963325px;}
.y1b4{bottom:609.804435px;}
.y17{bottom:609.961395px;}
.y2d8{bottom:611.416823px;}
.y309{bottom:611.710073px;}
.y260{bottom:613.132645px;}
.y152{bottom:617.196436px;}
.y296{bottom:618.957325px;}
.y54{bottom:619.665344px;}
.y118{bottom:619.942050px;}
.yc1{bottom:620.985168px;}
.y8f{bottom:620.985260px;}
.y129{bottom:620.985306px;}
.y20a{bottom:621.124786px;}
.y1b3{bottom:624.798435px;}
.y204{bottom:624.845672px;}
.y1d8{bottom:624.854135px;}
.y1e3{bottom:624.854148px;}
.y1f4{bottom:624.857096px;}
.y1cb{bottom:624.864080px;}
.y2d7{bottom:626.410823px;}
.y308{bottom:626.704073px;}
.y16{bottom:628.711395px;}
.y295{bottom:633.951325px;}
.y53{bottom:638.415344px;}
.y117{bottom:638.735550px;}
.yc0{bottom:639.735168px;}
.y8e{bottom:639.735260px;}
.y128{bottom:639.735306px;}
.y1b2{bottom:639.792435px;}
.y209{bottom:639.874786px;}
.y2d6{bottom:641.404823px;}
.y151{bottom:641.612686px;}
.y307{bottom:641.698073px;}
.y15{bottom:647.461395px;}
.y294{bottom:648.945325px;}
.y25f{bottom:650.632645px;}
.y2d5{bottom:656.398823px;}
.y306{bottom:656.692073px;}
.y52{bottom:657.165344px;}
.y116{bottom:657.452550px;}
.ybf{bottom:658.485168px;}
.y8d{bottom:658.485260px;}
.y127{bottom:658.485306px;}
.y293{bottom:663.939325px;}
.y14{bottom:666.211395px;}
.y150{bottom:666.325195px;}
.y2d4{bottom:671.392823px;}
.y305{bottom:671.686073px;}
.y51{bottom:675.915344px;}
.y115{bottom:676.169550px;}
.ybe{bottom:677.235168px;}
.y8c{bottom:677.235260px;}
.y126{bottom:677.235306px;}
.y292{bottom:678.933325px;}
.y13{bottom:684.961395px;}
.y2d3{bottom:686.386823px;}
.y304{bottom:686.680073px;}
.y14f{bottom:687.906317px;}
.y248{bottom:690.296997px;}
.y199{bottom:691.810500px;}
.y291{bottom:693.927325px;}
.y50{bottom:694.665344px;}
.y114{bottom:694.886550px;}
.ybd{bottom:695.985168px;}
.y8b{bottom:695.985260px;}
.y125{bottom:695.985306px;}
.y2d2{bottom:701.380823px;}
.y303{bottom:701.674073px;}
.y12{bottom:703.711395px;}
.y14e{bottom:706.623317px;}
.y290{bottom:708.921325px;}
.y4f{bottom:713.415344px;}
.y113{bottom:713.603550px;}
.ybc{bottom:714.735168px;}
.y8a{bottom:714.735260px;}
.y124{bottom:714.735306px;}
.y2d1{bottom:716.374823px;}
.y302{bottom:716.668073px;}
.y165{bottom:719.477829px;}
.y211{bottom:719.914490px;}
.y11{bottom:722.461395px;}
.y28f{bottom:723.915325px;}
.y14d{bottom:725.340317px;}
.y2d0{bottom:731.368823px;}
.y301{bottom:731.662073px;}
.y4e{bottom:732.165344px;}
.y112{bottom:732.320550px;}
.ybb{bottom:733.485168px;}
.y89{bottom:733.485260px;}
.y123{bottom:733.485306px;}
.y28e{bottom:738.909325px;}
.y10{bottom:741.211395px;}
.y1a2{bottom:742.176241px;}
.y169{bottom:742.177368px;}
.y191{bottom:742.187354px;}
.y24e{bottom:743.523691px;}
.y215{bottom:743.536514px;}
.y23d{bottom:743.556542px;}
.y14c{bottom:744.057317px;}
.y2cf{bottom:746.362823px;}
.y300{bottom:746.656073px;}
.y4d{bottom:750.915344px;}
.y111{bottom:751.037550px;}
.yba{bottom:752.235168px;}
.y88{bottom:752.235260px;}
.y122{bottom:752.235306px;}
.y28d{bottom:753.903325px;}
.y168{bottom:758.730129px;}
.y213{bottom:759.865254px;}
.yf{bottom:759.961395px;}
.y2ce{bottom:761.356823px;}
.y2ff{bottom:761.650073px;}
.y14b{bottom:762.774317px;}
.y28c{bottom:768.897325px;}
.y4c{bottom:769.665344px;}
.y110{bottom:769.754550px;}
.yb9{bottom:770.985168px;}
.y87{bottom:770.985260px;}
.y121{bottom:770.985306px;}
.y19c{bottom:773.839555px;}
.y172{bottom:773.840695px;}
.y1ab{bottom:773.840929px;}
.y253{bottom:775.166617px;}
.y21b{bottom:775.189447px;}
.y242{bottom:775.199471px;}
.y2cd{bottom:776.350823px;}
.y2fe{bottom:776.644073px;}
.ye{bottom:778.711395px;}
.y14a{bottom:781.491317px;}
.y28b{bottom:783.891325px;}
.y4b{bottom:788.415344px;}
.y10f{bottom:788.471550px;}
.yb8{bottom:789.735168px;}
.y86{bottom:789.735260px;}
.y120{bottom:789.735306px;}
.y19f{bottom:789.745917px;}
.y1ae{bottom:789.747291px;}
.y176{bottom:789.757020px;}
.y183{bottom:789.757026px;}
.y18e{bottom:789.757030px;}
.y255{bottom:790.847977px;}
.y21e{bottom:790.860808px;}
.y22b{bottom:790.860812px;}
.y236{bottom:790.870823px;}
.y244{bottom:790.870826px;}
.y2cc{bottom:791.344823px;}
.y2fd{bottom:791.638073px;}
.yd{bottom:797.461395px;}
.y28a{bottom:798.885325px;}
.y1a1{bottom:805.502872px;}
.y1b0{bottom:805.504246px;}
.y178{bottom:805.513975px;}
.y185{bottom:805.513981px;}
.y190{bottom:805.513985px;}
.y2cb{bottom:806.338823px;}
.y2fc{bottom:806.632073px;}
.y250{bottom:806.659433px;}
.y217{bottom:806.672256px;}
.y228{bottom:806.682272px;}
.y233{bottom:806.682275px;}
.y23f{bottom:806.692284px;}
.y4a{bottom:807.165344px;}
.y10e{bottom:807.188550px;}
.yb7{bottom:808.485168px;}
.y85{bottom:808.485260px;}
.y11f{bottom:808.485306px;}
.y149{bottom:808.840067px;}
.y289{bottom:813.879325px;}
.yc{bottom:816.211395px;}
.y2ca{bottom:821.332823px;}
.y1a3{bottom:821.478954px;}
.y16a{bottom:821.480081px;}
.y17b{bottom:821.490057px;}
.y186{bottom:821.490061px;}
.y192{bottom:821.490067px;}
.y2fb{bottom:821.626073px;}
.y257{bottom:822.490903px;}
.y220{bottom:822.503734px;}
.y22d{bottom:822.503738px;}
.y238{bottom:822.513749px;}
.y246{bottom:822.513752px;}
.y10d{bottom:825.905550px;}
.y49{bottom:825.915344px;}
.yb6{bottom:827.235168px;}
.y84{bottom:827.235260px;}
.y11e{bottom:827.235306px;}
.y288{bottom:828.873325px;}
.y148{bottom:833.256317px;}
.y2c9{bottom:836.326823px;}
.y2fa{bottom:836.620073px;}
.y174{bottom:837.247012px;}
.y222{bottom:838.325195px;}
.y287{bottom:843.867325px;}
.y10c{bottom:844.622550px;}
.y48{bottom:844.665344px;}
.y83{bottom:845.985260px;}
.y11d{bottom:845.985306px;}
.y2c8{bottom:851.320823px;}
.y2f9{bottom:851.614073px;}
.y167{bottom:853.859172px;}
.y214{bottom:854.646648px;}
.y147{bottom:857.968689px;}
.y286{bottom:858.861325px;}
.yb{bottom:860.394153px;}
.y10b{bottom:863.339550px;}
.y47{bottom:863.415344px;}
.yb5{bottom:864.735168px;}
.y82{bottom:864.735260px;}
.y11c{bottom:864.735306px;}
.y2c7{bottom:866.314823px;}
.y2f8{bottom:866.608073px;}
.y1a7{bottom:869.118359px;}
.y16e{bottom:869.119487px;}
.y196{bottom:869.129472px;}
.y254{bottom:869.805178px;}
.y21d{bottom:869.818009px;}
.y243{bottom:869.828027px;}
.y285{bottom:873.855325px;}
.ya{bottom:875.388153px;}
.y146{bottom:879.549719px;}
.y2c6{bottom:881.308823px;}
.y2f7{bottom:881.602073px;}
.y10a{bottom:882.056550px;}
.y46{bottom:882.165344px;}
.y81{bottom:883.485260px;}
.y11b{bottom:883.485306px;}
.y19b{bottom:884.875305px;}
.y171{bottom:884.876445px;}
.y1aa{bottom:884.876678px;}
.y180{bottom:884.886414px;}
.y18b{bottom:884.886419px;}
.y24f{bottom:885.616634px;}
.y216{bottom:885.629457px;}
.y227{bottom:885.639473px;}
.y232{bottom:885.639477px;}
.y23e{bottom:885.649485px;}
.y284{bottom:888.849325px;}
.y2c5{bottom:896.302823px;}
.y2f6{bottom:896.596073px;}
.y145{bottom:898.266719px;}
.y109{bottom:900.773550px;}
.y1a0{bottom:900.781667px;}
.y1af{bottom:900.783040px;}
.y177{bottom:900.792770px;}
.y184{bottom:900.792776px;}
.y18f{bottom:900.792780px;}
.y45{bottom:900.915344px;}
.y256{bottom:901.448104px;}
.y21f{bottom:901.460935px;}
.y22c{bottom:901.460939px;}
.y237{bottom:901.470950px;}
.y245{bottom:901.470953px;}
.y80{bottom:902.235260px;}
.y11a{bottom:902.235306px;}
.y283{bottom:903.843325px;}
.y2c4{bottom:911.296823px;}
.y2f5{bottom:911.590073px;}
.y19e{bottom:916.538622px;}
.y1ad{bottom:916.539996px;}
.y175{bottom:916.549725px;}
.y182{bottom:916.549731px;}
.y18d{bottom:916.549735px;}
.y144{bottom:916.983719px;}
.y258{bottom:917.339615px;}
.y221{bottom:917.352446px;}
.y22e{bottom:917.352450px;}
.y239{bottom:917.362462px;}
.y247{bottom:917.362464px;}
.y9{bottom:917.988190px;}
.y282{bottom:918.837325px;}
.y108{bottom:919.490550px;}
.y44{bottom:919.665344px;}
.y7f{bottom:920.985260px;}
.yb4{bottom:920.985306px;}
.y2c3{bottom:926.290823px;}
.y2f4{bottom:926.584073px;}
.y19d{bottom:932.444982px;}
.y173{bottom:932.446122px;}
.y1ac{bottom:932.446355px;}
.y181{bottom:932.456090px;}
.y18c{bottom:932.456095px;}
.y252{bottom:933.161080px;}
.y219{bottom:933.173903px;}
.y22a{bottom:933.173912px;}
.y235{bottom:933.183923px;}
.y241{bottom:933.183924px;}
.y281{bottom:933.831325px;}
.y143{bottom:935.700719px;}
.y8{bottom:936.738190px;}
.y107{bottom:938.207550px;}
.y43{bottom:938.415344px;}
.y7e{bottom:939.735260px;}
.yb3{bottom:939.735306px;}
.y2c2{bottom:941.284823px;}
.y2f3{bottom:941.578073px;}
.y17a{bottom:948.213041px;}
.y280{bottom:948.825325px;}
.y21a{bottom:948.995365px;}
.y142{bottom:954.417719px;}
.y2c1{bottom:956.278823px;}
.y2f2{bottom:956.572073px;}
.y106{bottom:956.924550px;}
.y42{bottom:957.165344px;}
.y7d{bottom:958.485260px;}
.yb2{bottom:958.485306px;}
.y27f{bottom:963.819325px;}
.y166{bottom:964.827484px;}
.y212{bottom:965.099396px;}
.y164{bottom:970.150844px;}
.y2c0{bottom:971.272823px;}
.y2f1{bottom:971.566073px;}
.y141{bottom:973.134719px;}
.y105{bottom:975.641550px;}
.y41{bottom:975.915344px;}
.y7c{bottom:977.235260px;}
.yb1{bottom:977.235306px;}
.y27e{bottom:978.813325px;}
.y1a5{bottom:980.084386px;}
.y16c{bottom:980.085514px;}
.y194{bottom:980.095499px;}
.y25d{bottom:980.472422px;}
.y24d{bottom:980.475352px;}
.y226{bottom:980.488185px;}
.y7{bottom:981.424622px;}
.y163{bottom:985.144844px;}
.y2bf{bottom:986.266823px;}
.y2f0{bottom:986.560073px;}
.y27d{bottom:993.807325px;}
.y104{bottom:994.358550px;}
.y40{bottom:994.665344px;}
.y1a6{bottom:995.841343px;}
.y16d{bottom:995.842471px;}
.y17d{bottom:995.852444px;}
.y188{bottom:995.852449px;}
.y195{bottom:995.852456px;}
.y7b{bottom:995.985260px;}
.yb0{bottom:995.985306px;}
.y25a{bottom:996.293884px;}
.y24a{bottom:996.296814px;}
.y223{bottom:996.309647px;}
.y22f{bottom:996.309652px;}
.y23a{bottom:996.319663px;}
.y162{bottom:1000.138844px;}
.y140{bottom:1000.483469px;}
.y2be{bottom:1001.260823px;}
.y2ef{bottom:1001.554073px;}
.y6{bottom:1008.424622px;}
.y27c{bottom:1008.801325px;}
.y1a9{bottom:1011.817428px;}
.y170{bottom:1011.818556px;}
.y17f{bottom:1011.828524px;}
.y18a{bottom:1011.828529px;}
.y198{bottom:1011.828541px;}
.y25b{bottom:1012.115347px;}
.y24b{bottom:1012.118276px;}
.y224{bottom:1012.131110px;}
.y230{bottom:1012.131114px;}
.y23b{bottom:1012.141125px;}
.y103{bottom:1013.068777px;}
.y3f{bottom:1013.415344px;}
.y7a{bottom:1014.735260px;}
.yaf{bottom:1014.735306px;}
.y161{bottom:1015.132844px;}
.y2bd{bottom:1016.254823px;}
.y2ee{bottom:1016.548073px;}
.y27b{bottom:1023.795325px;}
.y13f{bottom:1024.899719px;}
.y1a8{bottom:1027.574385px;}
.y16f{bottom:1027.575513px;}
.y17e{bottom:1027.585482px;}
.y189{bottom:1027.585486px;}
.y197{bottom:1027.585499px;}
.y25c{bottom:1027.936809px;}
.y24c{bottom:1027.939738px;}
.y225{bottom:1027.952572px;}
.y231{bottom:1027.952576px;}
.y23c{bottom:1027.962587px;}
.y160{bottom:1030.126844px;}
.y2bc{bottom:1031.248823px;}
.y2ed{bottom:1031.542073px;}
.y102{bottom:1031.785777px;}
.y3e{bottom:1032.165344px;}
.y79{bottom:1033.485260px;}
.yae{bottom:1033.485306px;}
.y27a{bottom:1038.789325px;}
.y179{bottom:1043.491836px;}
.y21c{bottom:1043.774030px;}
.y15f{bottom:1045.120844px;}
.y2bb{bottom:1046.242823px;}
.y2ec{bottom:1046.536073px;}
.y13e{bottom:1049.612274px;}
.y3d{bottom:1050.915344px;}
.y78{bottom:1052.235260px;}
.yad{bottom:1052.235306px;}
.y279{bottom:1053.783325px;}
.y101{bottom:1059.861277px;}
.y15e{bottom:1060.114844px;}
.y2ba{bottom:1061.236823px;}
.y2eb{bottom:1061.530073px;}
.y3c{bottom:1069.665344px;}
.y77{bottom:1070.985260px;}
.yac{bottom:1070.985306px;}
.yfb{bottom:1075.108844px;}
.y1a4{bottom:1075.213775px;}
.y16b{bottom:1075.214903px;}
.y17c{bottom:1075.224878px;}
.y187{bottom:1075.224883px;}
.y193{bottom:1075.224888px;}
.y251{bottom:1075.254023px;}
.y218{bottom:1075.266846px;}
.y229{bottom:1075.266854px;}
.y234{bottom:1075.276865px;}
.y240{bottom:1075.276867px;}
.y5{bottom:1076.132080px;}
.y2b9{bottom:1076.230823px;}
.y2ea{bottom:1076.524073px;}
.y100{bottom:1084.277527px;}
.y278{bottom:1087.533325px;}
.y3b{bottom:1088.415344px;}
.y76{bottom:1089.735260px;}
.yab{bottom:1089.735306px;}
.yfa{bottom:1090.102844px;}
.y2b8{bottom:1091.224823px;}
.y2e9{bottom:1091.518073px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3a{bottom:1127.482361px;}
.y75{bottom:1127.482544px;}
.h15{height:21.840000px;}
.h1a{height:22.674725px;}
.h16{height:22.676472px;}
.h1d{height:23.842728px;}
.h19{height:29.003083px;}
.h17{height:29.003957px;}
.h1c{height:29.141112px;}
.hd{height:34.307699px;}
.h2{height:42.048000px;}
.h8{height:43.260000px;}
.h4{height:44.676000px;}
.hc{height:49.011000px;}
.h11{height:49.113000px;}
.hb{height:51.912000px;}
.h14{height:52.173000px;}
.h12{height:54.659662px;}
.h13{height:54.716791px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.h9{height:57.660000px;}
.ha{height:57.780000px;}
.hf{height:61.380000px;}
.h10{height:64.362183px;}
.he{height:64.680000px;}
.h7{height:64.824000px;}
.h6{height:92.448000px;}
.h1b{height:407.814011px;}
.h18{height:407.855988px;}
.h1e{height:409.367981px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w3{width:539.998489px;}
.w2{width:540.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x7{left:78.746400px;}
.x4{left:85.181849px;}
.x8{left:93.545402px;}
.x20{left:102.047253px;}
.xc{left:192.198761px;}
.xb{left:267.873894px;}
.x15{left:270.651009px;}
.x1e{left:273.286949px;}
.x11{left:276.377998px;}
.x16{left:280.196846px;}
.xd{left:283.535843px;}
.x17{left:286.419296px;}
.x18{left:343.928287px;}
.xe{left:357.051710px;}
.x19{left:393.418588px;}
.x12{left:415.514992px;}
.x1b{left:416.684074px;}
.xf{left:422.908222px;}
.x5{left:459.212723px;}
.x9{left:476.225400px;}
.x6{left:480.473272px;}
.x1f{left:484.725290px;}
.x1d{left:494.559608px;}
.x14{left:497.781029px;}
.x10{left:691.892033px;}
.x1a{left:693.072608px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.x1c{left:770.936999px;}
.x13{left:774.163829px;}
.xa{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.133301pt;}
.v1{vertical-align:21.333333pt;}
.ls38{letter-spacing:-1.360000pt;}
.ls39{letter-spacing:-1.269333pt;}
.ls37{letter-spacing:-0.426667pt;}
.ls27{letter-spacing:-0.373333pt;}
.ls5f{letter-spacing:-0.362667pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls6f{letter-spacing:-0.272000pt;}
.ls26{letter-spacing:-0.266667pt;}
.ls6d{letter-spacing:-0.226667pt;}
.ls22{letter-spacing:-0.213333pt;}
.ls60{letter-spacing:-0.181333pt;}
.ls24{letter-spacing:-0.160000pt;}
.ls25{letter-spacing:-0.106667pt;}
.ls6e{letter-spacing:-0.090667pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls5e{letter-spacing:-0.045333pt;}
.ls11{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000033pt;}
.ls31{letter-spacing:0.000034pt;}
.ls44{letter-spacing:0.026667pt;}
.ls46{letter-spacing:0.045333pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls3e{letter-spacing:0.080000pt;}
.ls4a{letter-spacing:0.090667pt;}
.lsa{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.159050pt;}
.ls14{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.181333pt;}
.ls13{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.226667pt;}
.ls47{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.240000pt;}
.ls69{letter-spacing:0.249333pt;}
.ls3d{letter-spacing:0.250654pt;}
.ls4c{letter-spacing:0.256000pt;}
.ls3f{letter-spacing:0.266661pt;}
.ls2{letter-spacing:0.266667pt;}
.ls51{letter-spacing:0.272000pt;}
.ls7{letter-spacing:0.293333pt;}
.ls6b{letter-spacing:0.317333pt;}
.lsd{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.346667pt;}
.ls6c{letter-spacing:0.362667pt;}
.ls2d{letter-spacing:0.373307pt;}
.ls1c{letter-spacing:0.373333pt;}
.ls43{letter-spacing:0.400000pt;}
.ls48{letter-spacing:0.408000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls29{letter-spacing:0.453333pt;}
.ls40{letter-spacing:0.458667pt;}
.ls8{letter-spacing:0.480000pt;}
.ls49{letter-spacing:0.498667pt;}
.ls3{letter-spacing:0.506667pt;}
.ls6{letter-spacing:0.533333pt;}
.ls58{letter-spacing:0.544000pt;}
.ls28{letter-spacing:0.560000pt;}
.ls5d{letter-spacing:0.566667pt;}
.ls5{letter-spacing:0.586667pt;}
.ls5a{letter-spacing:0.589333pt;}
.ls2f{letter-spacing:0.613333pt;}
.ls6a{letter-spacing:0.634667pt;}
.ls17{letter-spacing:0.640000pt;}
.ls4b{letter-spacing:0.657333pt;}
.ls5c{letter-spacing:0.680000pt;}
.lsc{letter-spacing:0.693333pt;}
.ls66{letter-spacing:0.702667pt;}
.ls4f{letter-spacing:0.725333pt;}
.ls4{letter-spacing:0.746667pt;}
.ls62{letter-spacing:0.770667pt;}
.ls2b{letter-spacing:0.773333pt;}
.ls64{letter-spacing:0.793333pt;}
.ls15{letter-spacing:0.800000pt;}
.ls53{letter-spacing:0.816000pt;}
.ls1f{letter-spacing:0.826667pt;}
.ls2c{letter-spacing:0.853333pt;}
.ls50{letter-spacing:0.861333pt;}
.ls63{letter-spacing:0.884000pt;}
.ls1b{letter-spacing:0.906667pt;}
.ls16{letter-spacing:0.960000pt;}
.ls19{letter-spacing:0.986667pt;}
.ls68{letter-spacing:0.997333pt;}
.ls1e{letter-spacing:1.013333pt;}
.ls4d{letter-spacing:1.042667pt;}
.ls1d{letter-spacing:1.066667pt;}
.ls59{letter-spacing:1.088000pt;}
.ls12{letter-spacing:1.120000pt;}
.ls3b{letter-spacing:1.173333pt;}
.ls65{letter-spacing:1.224000pt;}
.ls42{letter-spacing:1.226667pt;}
.ls4e{letter-spacing:1.269333pt;}
.ls5b{letter-spacing:1.292000pt;}
.lsb{letter-spacing:1.306667pt;}
.ls18{letter-spacing:1.386667pt;}
.ls52{letter-spacing:1.450667pt;}
.ls2a{letter-spacing:1.493333pt;}
.ls54{letter-spacing:1.496000pt;}
.ls61{letter-spacing:1.541333pt;}
.ls20{letter-spacing:1.546667pt;}
.ls55{letter-spacing:1.632000pt;}
.ls67{letter-spacing:1.722667pt;}
.ls2e{letter-spacing:1.760000pt;}
.ls56{letter-spacing:1.768000pt;}
.ls41{letter-spacing:1.813333pt;}
.ls70{letter-spacing:1.904000pt;}
.ls57{letter-spacing:2.176000pt;}
.ls0{letter-spacing:3.546667pt;}
.ls35{letter-spacing:131.557333pt;}
.ls32{letter-spacing:155.669841pt;}
.ls33{letter-spacing:163.957390pt;}
.ls34{letter-spacing:165.733805pt;}
.ls36{letter-spacing:666.672000pt;}
.ws16{word-spacing:-14.320000pt;}
.ws3f{word-spacing:-14.240000pt;}
.ws43{word-spacing:-14.026667pt;}
.ws60{word-spacing:-13.813333pt;}
.ws70{word-spacing:-13.680000pt;}
.ws40{word-spacing:-13.600000pt;}
.ws6f{word-spacing:-13.440000pt;}
.ws6e{word-spacing:-13.333333pt;}
.ws8b{word-spacing:-13.226667pt;}
.ws17{word-spacing:-13.120000pt;}
.ws18{word-spacing:-13.013333pt;}
.ws9e{word-spacing:-12.194667pt;}
.ws8d{word-spacing:-11.560000pt;}
.ws66{word-spacing:-11.333333pt;}
.ws42{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.240000pt;}
.ws41{word-spacing:-9.893333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws8c{word-spacing:-8.749333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws61{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws4e{word-spacing:-6.666667pt;}
.ws7{word-spacing:-1.680000pt;}
.ws27{word-spacing:-1.386667pt;}
.ws11{word-spacing:-1.333333pt;}
.wsa{word-spacing:-1.280000pt;}
.ws33{word-spacing:-1.226667pt;}
.ws5d{word-spacing:-1.173333pt;}
.ws90{word-spacing:-1.133333pt;}
.ws10{word-spacing:-1.120000pt;}
.ws38{word-spacing:-1.066667pt;}
.ws9c{word-spacing:-1.042667pt;}
.ws58{word-spacing:-1.013333pt;}
.wsb2{word-spacing:-0.997333pt;}
.ws7d{word-spacing:-0.960000pt;}
.ws2b{word-spacing:-0.906667pt;}
.ws94{word-spacing:-0.861333pt;}
.ws89{word-spacing:-0.853333pt;}
.ws8f{word-spacing:-0.816000pt;}
.ws36{word-spacing:-0.800000pt;}
.ws19{word-spacing:-0.746667pt;}
.wsb1{word-spacing:-0.725333pt;}
.ws49{word-spacing:-0.693333pt;}
.ws93{word-spacing:-0.680000pt;}
.ws12{word-spacing:-0.640000pt;}
.wsb5{word-spacing:-0.589333pt;}
.ws4a{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.544000pt;}
.ws5b{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.506667pt;}
.wsac{word-spacing:-0.498667pt;}
.ws20{word-spacing:-0.480000pt;}
.ws52{word-spacing:-0.426667pt;}
.ws32{word-spacing:-0.373333pt;}
.ws9a{word-spacing:-0.362667pt;}
.ws3d{word-spacing:-0.320000pt;}
.ws4{word-spacing:-0.266667pt;}
.wsa7{word-spacing:-0.226667pt;}
.ws8a{word-spacing:-0.213333pt;}
.wsae{word-spacing:-0.181333pt;}
.ws1d{word-spacing:-0.160000pt;}
.ws1f{word-spacing:-0.106667pt;}
.ws6{word-spacing:-0.064000pt;}
.ws30{word-spacing:-0.053333pt;}
.wsaf{word-spacing:-0.045333pt;}
.ws8{word-spacing:0.000000pt;}
.wsab{word-spacing:0.045333pt;}
.ws4c{word-spacing:0.053333pt;}
.wsb6{word-spacing:0.090667pt;}
.ws23{word-spacing:0.106667pt;}
.ws47{word-spacing:0.160000pt;}
.ws34{word-spacing:0.213333pt;}
.ws46{word-spacing:0.266667pt;}
.ws9f{word-spacing:0.272000pt;}
.wsa0{word-spacing:0.317333pt;}
.ws48{word-spacing:0.320000pt;}
.ws80{word-spacing:0.373333pt;}
.ws97{word-spacing:0.408000pt;}
.ws56{word-spacing:0.426667pt;}
.ws50{word-spacing:0.480000pt;}
.wsb4{word-spacing:0.498667pt;}
.ws57{word-spacing:0.533333pt;}
.ws78{word-spacing:0.640000pt;}
.ws75{word-spacing:0.746667pt;}
.ws2c{word-spacing:0.800000pt;}
.ws2d{word-spacing:0.853333pt;}
.ws95{word-spacing:0.861333pt;}
.ws5a{word-spacing:0.906667pt;}
.wsb{word-spacing:0.960000pt;}
.wse{word-spacing:1.013333pt;}
.ws1c{word-spacing:1.066667pt;}
.ws29{word-spacing:1.120000pt;}
.ws96{word-spacing:1.133333pt;}
.ws2f{word-spacing:1.173333pt;}
.wsa8{word-spacing:1.178667pt;}
.ws24{word-spacing:1.226667pt;}
.ws3c{word-spacing:1.280000pt;}
.wsc{word-spacing:1.333333pt;}
.wsb3{word-spacing:1.360000pt;}
.ws22{word-spacing:1.386667pt;}
.ws25{word-spacing:1.440000pt;}
.ws99{word-spacing:1.450667pt;}
.ws5c{word-spacing:1.493333pt;}
.ws98{word-spacing:1.541333pt;}
.wsd{word-spacing:1.546667pt;}
.ws6d{word-spacing:1.586667pt;}
.ws72{word-spacing:1.600000pt;}
.ws44{word-spacing:1.653333pt;}
.ws6a{word-spacing:1.706667pt;}
.wsa9{word-spacing:1.722667pt;}
.wsf{word-spacing:1.760000pt;}
.ws1a{word-spacing:1.813333pt;}
.ws3b{word-spacing:1.866667pt;}
.ws54{word-spacing:1.920000pt;}
.ws1e{word-spacing:1.973333pt;}
.ws2e{word-spacing:2.026667pt;}
.ws82{word-spacing:2.040000pt;}
.ws28{word-spacing:2.080000pt;}
.ws3a{word-spacing:2.133333pt;}
.ws88{word-spacing:2.186667pt;}
.wsad{word-spacing:2.221333pt;}
.wsaa{word-spacing:2.266667pt;}
.ws9b{word-spacing:2.312000pt;}
.ws4f{word-spacing:2.400000pt;}
.ws4d{word-spacing:2.453333pt;}
.ws31{word-spacing:2.506667pt;}
.ws9d{word-spacing:2.538667pt;}
.ws74{word-spacing:2.560000pt;}
.ws5f{word-spacing:2.613333pt;}
.wsa5{word-spacing:2.629333pt;}
.ws55{word-spacing:2.666667pt;}
.ws81{word-spacing:2.720000pt;}
.ws21{word-spacing:2.773333pt;}
.wsb0{word-spacing:2.810667pt;}
.ws35{word-spacing:2.826667pt;}
.ws2a{word-spacing:2.880000pt;}
.ws77{word-spacing:2.933333pt;}
.ws39{word-spacing:2.986667pt;}
.ws59{word-spacing:3.040000pt;}
.ws91{word-spacing:3.082667pt;}
.ws86{word-spacing:3.146667pt;}
.ws71{word-spacing:3.200000pt;}
.ws37{word-spacing:3.253333pt;}
.ws45{word-spacing:3.306667pt;}
.wsa1{word-spacing:3.354667pt;}
.ws76{word-spacing:3.360000pt;}
.ws53{word-spacing:3.413333pt;}
.wsb8{word-spacing:3.445333pt;}
.ws1b{word-spacing:3.520000pt;}
.ws5e{word-spacing:3.573333pt;}
.ws8e{word-spacing:3.626667pt;}
.wsa4{word-spacing:3.762667pt;}
.ws73{word-spacing:3.786667pt;}
.wsa2{word-spacing:3.989333pt;}
.ws7f{word-spacing:4.000000pt;}
.ws92{word-spacing:4.034667pt;}
.ws87{word-spacing:4.053333pt;}
.wsb7{word-spacing:4.306667pt;}
.ws13{word-spacing:4.533333pt;}
.ws6b{word-spacing:4.669333pt;}
.wsa6{word-spacing:4.714667pt;}
.ws26{word-spacing:4.906667pt;}
.ws6c{word-spacing:5.304000pt;}
.ws4b{word-spacing:5.333333pt;}
.wsbc{word-spacing:5.757333pt;}
.ws3e{word-spacing:5.813333pt;}
.wsa3{word-spacing:5.938667pt;}
.ws51{word-spacing:6.720000pt;}
.wsb9{word-spacing:6.845333pt;}
.ws7e{word-spacing:7.093333pt;}
.wsba{word-spacing:7.661333pt;}
.wsbb{word-spacing:9.248000pt;}
.wsbd{word-spacing:12.149333pt;}
.wsbe{word-spacing:15.821333pt;}
.ws15{word-spacing:64.237333pt;}
.ws84{word-spacing:67.139457pt;}
.ws63{word-spacing:69.405328pt;}
.ws83{word-spacing:75.100403pt;}
.ws85{word-spacing:86.791978pt;}
.ws65{word-spacing:95.063995pt;}
.ws64{word-spacing:96.514661pt;}
.ws62{word-spacing:123.351995pt;}
.ws67{word-spacing:147.106661pt;}
.ws69{word-spacing:169.773328pt;}
.ws7b{word-spacing:175.847992pt;}
.ws68{word-spacing:179.837333pt;}
.ws7c{word-spacing:197.245326pt;}
.ws7a{word-spacing:427.732261pt;}
.ws79{word-spacing:475.196261pt;}
._10{margin-left:-2630.557387pt;}
._45{margin-left:-307.442247pt;}
._40{margin-left:-282.629400pt;}
._42{margin-left:-267.140689pt;}
._b{margin-left:-64.600000pt;}
._7{margin-left:-14.733333pt;}
._6{margin-left:-8.426667pt;}
._d{margin-left:-7.413342pt;}
._11{margin-left:-5.642676pt;}
._1{margin-left:-4.615733pt;}
._13{margin-left:-3.574968pt;}
._3{margin-left:-2.661333pt;}
._0{margin-left:-1.450667pt;}
._4{width:1.436302pt;}
._f{width:3.189333pt;}
._e{width:4.400000pt;}
._15{width:6.175432pt;}
._12{width:7.904000pt;}
._49{width:10.562667pt;}
._48{width:12.738667pt;}
._14{width:13.944800pt;}
._8{width:16.320000pt;}
._2{width:35.151992pt;}
._5{width:36.116802pt;}
._a{width:48.552000pt;}
._1e{width:55.170661pt;}
._26{width:58.933333pt;}
._19{width:60.085934pt;}
._9{width:64.237333pt;}
._24{width:67.773328pt;}
._23{width:68.997333pt;}
._31{width:70.312000pt;}
._18{width:71.762667pt;}
._30{width:77.837333pt;}
._35{width:82.914661pt;}
._25{width:84.093333pt;}
._17{width:88.098058pt;}
._43{width:91.708889pt;}
._34{width:92.978667pt;}
._44{width:96.848732pt;}
._41{width:99.233393pt;}
._2c{width:104.312000pt;}
._46{width:111.842551pt;}
._1b{width:116.278365pt;}
._47{width:117.367693pt;}
._1c{width:121.266667pt;}
._16{width:159.482667pt;}
._1f{width:168.504000pt;}
._1d{width:181.794667pt;}
._3d{width:187.680000pt;}
._20{width:194.888000pt;}
._32{width:214.245333pt;}
._3a{width:227.420306pt;}
._22{width:232.462968pt;}
._3c{width:233.738667pt;}
._3e{width:242.498023pt;}
._21{width:289.317333pt;}
._2a{width:309.309333pt;}
._3b{width:311.032000pt;}
._2e{width:316.834667pt;}
._2d{width:319.373333pt;}
._2f{width:326.898667pt;}
._2b{width:342.040000pt;}
._1a{width:343.097032pt;}
._3f{width:413.559531pt;}
._28{width:430.576000pt;}
._29{width:440.232000pt;}
._27{width:553.429333pt;}
._39{width:557.101333pt;}
._37{width:567.165333pt;}
._38{width:582.261333pt;}
._36{width:730.630968pt;}
._33{width:787.485333pt;}
._c{width:1807.485394pt;}
.fsa{font-size:26.666667pt;}
.fse{font-size:27.685867pt;}
.fsb{font-size:27.688000pt;}
.fs10{font-size:29.112000pt;}
.fs8{font-size:31.733332pt;}
.fsd{font-size:35.412800pt;}
.fsc{font-size:35.413867pt;}
.fsf{font-size:35.581333pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y208{bottom:2.874410pt;}
.y1b1{bottom:2.874553pt;}
.y25e{bottom:2.888021pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y2d{bottom:100.440133pt;}
.y74{bottom:100.813599pt;}
.y6f{bottom:100.813639pt;}
.y15d{bottom:101.834930pt;}
.ydc{bottom:101.986816pt;}
.yaa{bottom:101.986938pt;}
.yf1{bottom:102.110921pt;}
.yf9{bottom:102.111064pt;}
.y277{bottom:105.172943pt;}
.y39{bottom:107.041333pt;}
.y2b7{bottom:110.360289pt;}
.y2c{bottom:113.768133pt;}
.y73{bottom:117.480265pt;}
.y6e{bottom:117.480306pt;}
.y276{bottom:118.500943pt;}
.y15c{bottom:118.501597pt;}
.ydb{bottom:118.653483pt;}
.ya9{bottom:118.653605pt;}
.yf0{bottom:118.777588pt;}
.yf8{bottom:118.777730pt;}
.y2b6{bottom:123.688289pt;}
.y38{bottom:124.902669pt;}
.y275{bottom:131.828943pt;}
.y2b{bottom:133.805467pt;}
.y72{bottom:134.146932pt;}
.y6d{bottom:134.146973pt;}
.y15b{bottom:135.168264pt;}
.yda{bottom:135.320150pt;}
.ya8{bottom:135.320272pt;}
.yef{bottom:135.444255pt;}
.yf7{bottom:135.444397pt;}
.y2b5{bottom:137.016289pt;}
.y37{bottom:140.416670pt;}
.y274{bottom:145.156943pt;}
.y2a{bottom:147.133467pt;}
.y2b4{bottom:150.344289pt;}
.y6c{bottom:150.813639pt;}
.y15a{bottom:151.834930pt;}
.yd9{bottom:151.986816pt;}
.ya7{bottom:151.986938pt;}
.yee{bottom:152.110921pt;}
.yf6{bottom:152.111064pt;}
.y36{bottom:158.278005pt;}
.y273{bottom:158.484943pt;}
.y2b3{bottom:163.672289pt;}
.y29{bottom:167.170800pt;}
.y71{bottom:167.480265pt;}
.y6b{bottom:167.480306pt;}
.y159{bottom:168.501597pt;}
.yd8{bottom:168.653483pt;}
.ya6{bottom:168.653605pt;}
.yed{bottom:168.777588pt;}
.yf5{bottom:168.777730pt;}
.y272{bottom:171.812943pt;}
.y35{bottom:173.797328pt;}
.y2b2{bottom:177.000289pt;}
.y28{bottom:180.498800pt;}
.y6a{bottom:184.146973pt;}
.yd7{bottom:185.320150pt;}
.ya5{bottom:185.320272pt;}
.yec{bottom:185.444255pt;}
.yf4{bottom:185.444397pt;}
.y34{bottom:187.125328pt;}
.y2b1{bottom:190.328289pt;}
.y27{bottom:200.536133pt;}
.y70{bottom:200.813599pt;}
.y69{bottom:200.813639pt;}
.yd6{bottom:201.986816pt;}
.ya4{bottom:201.986938pt;}
.yeb{bottom:202.110921pt;}
.yf3{bottom:202.111064pt;}
.y2b0{bottom:203.656289pt;}
.y33{bottom:204.986532pt;}
.y271{bottom:208.430943pt;}
.y26{bottom:213.864133pt;}
.y1ed{bottom:214.702657pt;}
.y2af{bottom:216.984289pt;}
.y68{bottom:217.480306pt;}
.yd5{bottom:218.653483pt;}
.ya3{bottom:218.653605pt;}
.yea{bottom:218.777588pt;}
.y134{bottom:218.777730pt;}
.y32{bottom:220.500674pt;}
.y270{bottom:221.758943pt;}
.y2ae{bottom:230.312289pt;}
.y25{bottom:233.901467pt;}
.y67{bottom:234.146973pt;}
.yd4{bottom:235.320150pt;}
.ya2{bottom:235.320272pt;}
.ye9{bottom:235.444255pt;}
.yf2{bottom:235.444397pt;}
.y1bb{bottom:238.350403pt;}
.y31{bottom:238.362000pt;}
.y2ad{bottom:243.640289pt;}
.y24{bottom:247.229467pt;}
.y26f{bottom:248.392276pt;}
.y66{bottom:250.813639pt;}
.yd3{bottom:251.986816pt;}
.ya1{bottom:251.986938pt;}
.ye8{bottom:252.110921pt;}
.y13d{bottom:252.111064pt;}
.y30{bottom:253.881333pt;}
.y2ac{bottom:256.968289pt;}
.y1bf{bottom:259.383728pt;}
.y1e7{bottom:259.383762pt;}
.y1f8{bottom:259.386383pt;}
.y26e{bottom:261.720276pt;}
.y2f{bottom:267.209333pt;}
.y23{bottom:267.266800pt;}
.y65{bottom:267.480306pt;}
.yd2{bottom:268.653483pt;}
.ya0{bottom:268.653605pt;}
.ye7{bottom:268.777588pt;}
.y13c{bottom:268.777730pt;}
.y2ab{bottom:270.296289pt;}
.y1bc{bottom:274.147725pt;}
.y22{bottom:280.594800pt;}
.y2aa{bottom:283.624289pt;}
.y64{bottom:284.146973pt;}
.y2e{bottom:285.070658pt;}
.yd1{bottom:285.320150pt;}
.y9f{bottom:285.320272pt;}
.ye6{bottom:285.444255pt;}
.y13b{bottom:285.444397pt;}
.y1eb{bottom:287.598911pt;}
.y1fc{bottom:287.601532pt;}
.y1c4{bottom:287.607729pt;}
.y26d{bottom:291.720276pt;}
.y2a9{bottom:296.952289pt;}
.y63{bottom:300.813639pt;}
.y205{bottom:301.765350pt;}
.y1d9{bottom:301.772873pt;}
.y1e4{bottom:301.772884pt;}
.y1f5{bottom:301.775505pt;}
.y1cc{bottom:301.781713pt;}
.yd0{bottom:301.986816pt;}
.y9e{bottom:301.986938pt;}
.ye5{bottom:302.110921pt;}
.y13a{bottom:302.111064pt;}
.y21{bottom:307.987467pt;}
.y2a8{bottom:310.280289pt;}
.y202{bottom:315.744544pt;}
.y1d6{bottom:315.752068pt;}
.y1e1{bottom:315.752079pt;}
.y1f2{bottom:315.754700pt;}
.y1c9{bottom:315.760907pt;}
.y62{bottom:317.480306pt;}
.ycf{bottom:318.653483pt;}
.y9d{bottom:318.653605pt;}
.ye4{bottom:318.777588pt;}
.y139{bottom:318.777730pt;}
.y2a7{bottom:323.608289pt;}
.y26c{bottom:325.088953pt;}
.y20{bottom:325.521200pt;}
.y1d4{bottom:329.926041pt;}
.y1df{bottom:329.926052pt;}
.y200{bottom:329.927371pt;}
.y1f0{bottom:329.928673pt;}
.y1c7{bottom:329.934881pt;}
.y2e8{bottom:330.233620pt;}
.y61{bottom:334.146973pt;}
.yce{bottom:335.320150pt;}
.y9c{bottom:335.320272pt;}
.ye3{bottom:335.444255pt;}
.y138{bottom:335.444397pt;}
.y2a6{bottom:336.936289pt;}
.y26b{bottom:338.416953pt;}
.y1f{bottom:342.187866pt;}
.y2e7{bottom:343.561620pt;}
.y1c1{bottom:343.914082pt;}
.y2a5{bottom:350.264289pt;}
.y60{bottom:350.813639pt;}
.ycd{bottom:351.986816pt;}
.y9b{bottom:351.986938pt;}
.ye2{bottom:352.110921pt;}
.y137{bottom:352.111064pt;}
.y1fe{bottom:354.902812pt;}
.y1ee{bottom:354.903463pt;}
.y19a{bottom:354.939495pt;}
.y259{bottom:356.246501pt;}
.y249{bottom:356.249186pt;}
.y2e6{bottom:356.889620pt;}
.y1be{bottom:358.679598pt;}
.y1e{bottom:358.854533pt;}
.y2a4{bottom:363.592289pt;}
.y5f{bottom:367.480306pt;}
.y26a{bottom:368.382286pt;}
.ycc{bottom:368.653483pt;}
.y9a{bottom:368.653564pt;}
.y119{bottom:368.653605pt;}
.ye1{bottom:368.777588pt;}
.y136{bottom:368.777730pt;}
.y2e5{bottom:370.217620pt;}
.y1c0{bottom:372.262028pt;}
.y1e8{bottom:372.262062pt;}
.y1f9{bottom:372.264683pt;}
.y1d{bottom:375.521200pt;}
.y2a3{bottom:376.920289pt;}
.y269{bottom:381.710286pt;}
.y2e4{bottom:383.545620pt;}
.y5e{bottom:384.146973pt;}
.ycb{bottom:385.320150pt;}
.y99{bottom:385.320231pt;}
.y133{bottom:385.320272pt;}
.ye0{bottom:385.444255pt;}
.y135{bottom:385.444397pt;}
.y207{bottom:386.233731pt;}
.y1db{bottom:386.241254pt;}
.y1e6{bottom:386.241265pt;}
.y1f7{bottom:386.243886pt;}
.y1ce{bottom:386.250094pt;}
.y2a2{bottom:390.248289pt;}
.y2e3{bottom:396.873620pt;}
.y1d1{bottom:400.415217pt;}
.y1dc{bottom:400.415227pt;}
.y1e9{bottom:400.415238pt;}
.y1fa{bottom:400.417859pt;}
.y1c2{bottom:400.424056pt;}
.y5d{bottom:400.813639pt;}
.yca{bottom:401.986816pt;}
.y98{bottom:401.986898pt;}
.y132{bottom:401.986938pt;}
.ydf{bottom:402.110921pt;}
.y2a1{bottom:403.576289pt;}
.y1c{bottom:408.854533pt;}
.y312{bottom:409.702954pt;}
.y2e2{bottom:410.201620pt;}
.y268{bottom:411.673462pt;}
.y1d3{bottom:414.394422pt;}
.y1de{bottom:414.394433pt;}
.y1ff{bottom:414.395752pt;}
.y1ef{bottom:414.397054pt;}
.y1c6{bottom:414.403262pt;}
.y2a0{bottom:416.904289pt;}
.y5c{bottom:417.480306pt;}
.yc9{bottom:418.653483pt;}
.y97{bottom:418.653564pt;}
.y131{bottom:418.653605pt;}
.yde{bottom:418.777588pt;}
.y311{bottom:423.030954pt;}
.y2e1{bottom:423.529620pt;}
.y267{bottom:428.340129pt;}
.y203{bottom:428.560872pt;}
.y1d7{bottom:428.568395pt;}
.y1e2{bottom:428.568406pt;}
.y1f3{bottom:428.571027pt;}
.y1ca{bottom:428.577235pt;}
.y29f{bottom:430.232289pt;}
.y5b{bottom:434.146973pt;}
.yc8{bottom:435.320150pt;}
.y96{bottom:435.320231pt;}
.y130{bottom:435.320272pt;}
.ydd{bottom:435.444255pt;}
.y2e0{bottom:436.857620pt;}
.y158{bottom:441.054388pt;}
.y1d0{bottom:442.618421pt;}
.y29e{bottom:443.560289pt;}
.y266{bottom:445.006795pt;}
.y2df{bottom:450.185620pt;}
.y310{bottom:450.446287pt;}
.y5a{bottom:450.813639pt;}
.yc7{bottom:451.986816pt;}
.y95{bottom:451.986898pt;}
.y12f{bottom:451.986938pt;}
.y210{bottom:452.110921pt;}
.y29d{bottom:456.888289pt;}
.y1bd{bottom:457.317419pt;}
.y157{bottom:457.759721pt;}
.y1b{bottom:458.854574pt;}
.y265{bottom:461.673462pt;}
.y1ba{bottom:462.080386pt;}
.y2de{bottom:463.513620pt;}
.y30f{bottom:463.774287pt;}
.y59{bottom:467.480306pt;}
.yc6{bottom:468.653483pt;}
.y94{bottom:468.653564pt;}
.y12e{bottom:468.653605pt;}
.y20f{bottom:468.777588pt;}
.y29c{bottom:470.216289pt;}
.y1ea{bottom:470.895564pt;}
.y1fb{bottom:470.898185pt;}
.y1c3{bottom:470.904382pt;}
.y156{bottom:474.397054pt;}
.y1b9{bottom:475.408386pt;}
.y2dd{bottom:476.841620pt;}
.y30e{bottom:477.102287pt;}
.y264{bottom:478.340129pt;}
.y29b{bottom:483.544289pt;}
.y58{bottom:484.146973pt;}
.y1d5{bottom:484.936720pt;}
.y1e0{bottom:484.936731pt;}
.y201{bottom:484.938050pt;}
.y1f1{bottom:484.939352pt;}
.y1c8{bottom:484.945559pt;}
.yc5{bottom:485.320150pt;}
.y93{bottom:485.320231pt;}
.y12d{bottom:485.320272pt;}
.y20e{bottom:485.444255pt;}
.yff{bottom:486.556277pt;}
.y1b8{bottom:488.736386pt;}
.y2dc{bottom:490.169620pt;}
.y30d{bottom:490.430287pt;}
.y155{bottom:491.034388pt;}
.y1a{bottom:492.187907pt;}
.y263{bottom:495.006795pt;}
.y29a{bottom:496.872289pt;}
.y1d2{bottom:499.119543pt;}
.y1dd{bottom:499.119554pt;}
.y1ec{bottom:499.119565pt;}
.y1fd{bottom:499.122186pt;}
.y1c5{bottom:499.128383pt;}
.yfe{bottom:499.894944pt;}
.y57{bottom:500.813639pt;}
.yc4{bottom:501.986816pt;}
.y92{bottom:501.986898pt;}
.y12c{bottom:501.986938pt;}
.y1b7{bottom:502.064386pt;}
.y20d{bottom:502.110921pt;}
.y2db{bottom:503.497620pt;}
.y30c{bottom:503.758287pt;}
.y154{bottom:507.671721pt;}
.y19{bottom:508.854574pt;}
.y299{bottom:510.200289pt;}
.y262{bottom:511.673462pt;}
.y206{bottom:513.091234pt;}
.y1da{bottom:513.098757pt;}
.y1e5{bottom:513.098768pt;}
.y1f6{bottom:513.101389pt;}
.y1cd{bottom:513.107597pt;}
.yfd{bottom:513.222944pt;}
.y1b6{bottom:515.392386pt;}
.y2da{bottom:516.825620pt;}
.y30b{bottom:517.086287pt;}
.y56{bottom:517.480306pt;}
.yc3{bottom:518.653483pt;}
.y91{bottom:518.653564pt;}
.y12b{bottom:518.653605pt;}
.y20c{bottom:518.777588pt;}
.y298{bottom:523.528289pt;}
.y153{bottom:524.309054pt;}
.y18{bottom:525.521240pt;}
.y1cf{bottom:527.281570pt;}
.y261{bottom:528.340129pt;}
.y1b5{bottom:528.720386pt;}
.y2d9{bottom:530.153620pt;}
.y30a{bottom:530.414287pt;}
.yfc{bottom:531.084269pt;}
.y55{bottom:534.146973pt;}
.yc2{bottom:535.320150pt;}
.y90{bottom:535.320231pt;}
.y12a{bottom:535.320272pt;}
.y20b{bottom:535.444255pt;}
.y297{bottom:536.856289pt;}
.y1b4{bottom:542.048386pt;}
.y17{bottom:542.187907pt;}
.y2d8{bottom:543.481620pt;}
.y309{bottom:543.742287pt;}
.y260{bottom:545.006795pt;}
.y152{bottom:548.619054pt;}
.y296{bottom:550.184289pt;}
.y54{bottom:550.813639pt;}
.y118{bottom:551.059600pt;}
.yc1{bottom:551.986816pt;}
.y8f{bottom:551.986898pt;}
.y129{bottom:551.986938pt;}
.y20a{bottom:552.110921pt;}
.y1b3{bottom:555.376386pt;}
.y204{bottom:555.418375pt;}
.y1d8{bottom:555.425898pt;}
.y1e3{bottom:555.425909pt;}
.y1f4{bottom:555.428530pt;}
.y1cb{bottom:555.434738pt;}
.y2d7{bottom:556.809620pt;}
.y308{bottom:557.070287pt;}
.y16{bottom:558.854574pt;}
.y295{bottom:563.512289pt;}
.y53{bottom:567.480306pt;}
.y117{bottom:567.764933pt;}
.yc0{bottom:568.653483pt;}
.y8e{bottom:568.653564pt;}
.y128{bottom:568.653605pt;}
.y1b2{bottom:568.704386pt;}
.y209{bottom:568.777588pt;}
.y2d6{bottom:570.137620pt;}
.y151{bottom:570.322388pt;}
.y307{bottom:570.398287pt;}
.y15{bottom:575.521240pt;}
.y294{bottom:576.840289pt;}
.y25f{bottom:578.340129pt;}
.y2d5{bottom:583.465620pt;}
.y306{bottom:583.726287pt;}
.y52{bottom:584.146973pt;}
.y116{bottom:584.402267pt;}
.ybf{bottom:585.320150pt;}
.y8d{bottom:585.320231pt;}
.y127{bottom:585.320272pt;}
.y293{bottom:590.168289pt;}
.y14{bottom:592.187907pt;}
.y150{bottom:592.289062pt;}
.y2d4{bottom:596.793620pt;}
.y305{bottom:597.054287pt;}
.y51{bottom:600.813639pt;}
.y115{bottom:601.039600pt;}
.ybe{bottom:601.986816pt;}
.y8c{bottom:601.986898pt;}
.y126{bottom:601.986938pt;}
.y292{bottom:603.496289pt;}
.y13{bottom:608.854574pt;}
.y2d3{bottom:610.121620pt;}
.y304{bottom:610.382287pt;}
.y14f{bottom:611.472282pt;}
.y248{bottom:613.597331pt;}
.y199{bottom:614.942667pt;}
.y291{bottom:616.824289pt;}
.y50{bottom:617.480306pt;}
.y114{bottom:617.676933pt;}
.ybd{bottom:618.653483pt;}
.y8b{bottom:618.653564pt;}
.y125{bottom:618.653605pt;}
.y2d2{bottom:623.449620pt;}
.y303{bottom:623.710287pt;}
.y12{bottom:625.521240pt;}
.y14e{bottom:628.109615pt;}
.y290{bottom:630.152289pt;}
.y4f{bottom:634.146973pt;}
.y113{bottom:634.314267pt;}
.ybc{bottom:635.320150pt;}
.y8a{bottom:635.320231pt;}
.y124{bottom:635.320272pt;}
.y2d1{bottom:636.777620pt;}
.y302{bottom:637.038287pt;}
.y165{bottom:639.535848pt;}
.y211{bottom:639.923991pt;}
.y11{bottom:642.187907pt;}
.y28f{bottom:643.480289pt;}
.y14d{bottom:644.746949pt;}
.y2d0{bottom:650.105620pt;}
.y301{bottom:650.366287pt;}
.y4e{bottom:650.813639pt;}
.y112{bottom:650.951600pt;}
.ybb{bottom:651.986816pt;}
.y89{bottom:651.986898pt;}
.y123{bottom:651.986938pt;}
.y28e{bottom:656.808289pt;}
.y10{bottom:658.854574pt;}
.y1a2{bottom:659.712214pt;}
.y169{bottom:659.713216pt;}
.y191{bottom:659.722092pt;}
.y24e{bottom:660.909948pt;}
.y215{bottom:660.921346pt;}
.y23d{bottom:660.939149pt;}
.y14c{bottom:661.384282pt;}
.y2cf{bottom:663.433620pt;}
.y300{bottom:663.694287pt;}
.y4d{bottom:667.480306pt;}
.y111{bottom:667.588933pt;}
.yba{bottom:668.653483pt;}
.y88{bottom:668.653564pt;}
.y122{bottom:668.653605pt;}
.y28d{bottom:670.136289pt;}
.y168{bottom:674.426781pt;}
.y213{bottom:675.435782pt;}
.yf{bottom:675.521240pt;}
.y2ce{bottom:676.761620pt;}
.y2ff{bottom:677.022287pt;}
.y14b{bottom:678.021615pt;}
.y28c{bottom:683.464289pt;}
.y4c{bottom:684.146973pt;}
.y110{bottom:684.226267pt;}
.yb9{bottom:685.320150pt;}
.y87{bottom:685.320231pt;}
.y121{bottom:685.320272pt;}
.y19c{bottom:687.857383pt;}
.y172{bottom:687.858396pt;}
.y1ab{bottom:687.858603pt;}
.y253{bottom:689.036993pt;}
.y21b{bottom:689.057287pt;}
.y242{bottom:689.066196pt;}
.y2cd{bottom:690.089620pt;}
.y2fe{bottom:690.350287pt;}
.ye{bottom:692.187907pt;}
.y14a{bottom:694.658949pt;}
.y28b{bottom:696.792289pt;}
.y4b{bottom:700.813639pt;}
.y10f{bottom:700.863600pt;}
.yb8{bottom:701.986816pt;}
.y86{bottom:701.986898pt;}
.y120{bottom:701.986938pt;}
.y19f{bottom:701.996371pt;}
.y1ae{bottom:701.997592pt;}
.y176{bottom:702.006240pt;}
.y183{bottom:702.006245pt;}
.y18e{bottom:702.006249pt;}
.y255{bottom:702.975980pt;}
.y21e{bottom:702.987385pt;}
.y22b{bottom:702.987389pt;}
.y236{bottom:702.996287pt;}
.y244{bottom:702.996290pt;}
.y2cc{bottom:703.417620pt;}
.y2fd{bottom:703.678287pt;}
.yd{bottom:708.854574pt;}
.y28a{bottom:710.120289pt;}
.y1a1{bottom:716.002553pt;}
.y1b0{bottom:716.003774pt;}
.y178{bottom:716.012422pt;}
.y185{bottom:716.012427pt;}
.y190{bottom:716.012431pt;}
.y2cb{bottom:716.745620pt;}
.y2fc{bottom:717.006287pt;}
.y250{bottom:717.030607pt;}
.y217{bottom:717.042005pt;}
.y228{bottom:717.050908pt;}
.y233{bottom:717.050912pt;}
.y23f{bottom:717.059808pt;}
.y4a{bottom:717.480306pt;}
.y10e{bottom:717.500933pt;}
.yb7{bottom:718.653483pt;}
.y85{bottom:718.653564pt;}
.y11f{bottom:718.653605pt;}
.y149{bottom:718.968949pt;}
.y289{bottom:723.448289pt;}
.yc{bottom:725.521240pt;}
.y2ca{bottom:730.073620pt;}
.y1a3{bottom:730.203514pt;}
.y16a{bottom:730.204517pt;}
.y17b{bottom:730.213384pt;}
.y186{bottom:730.213388pt;}
.y192{bottom:730.213393pt;}
.y2fb{bottom:730.334287pt;}
.y257{bottom:731.103025pt;}
.y220{bottom:731.114430pt;}
.y22d{bottom:731.114434pt;}
.y238{bottom:731.123333pt;}
.y246{bottom:731.123335pt;}
.y10d{bottom:734.138267pt;}
.y49{bottom:734.146973pt;}
.yb6{bottom:735.320150pt;}
.y84{bottom:735.320231pt;}
.y11e{bottom:735.320272pt;}
.y288{bottom:736.776289pt;}
.y148{bottom:740.672282pt;}
.y2c9{bottom:743.401620pt;}
.y2fa{bottom:743.662287pt;}
.y174{bottom:744.219566pt;}
.y222{bottom:745.177951pt;}
.y287{bottom:750.104289pt;}
.y10c{bottom:750.775600pt;}
.y48{bottom:750.813639pt;}
.y83{bottom:751.986898pt;}
.y11d{bottom:751.986938pt;}
.y2c8{bottom:756.729620pt;}
.y2f9{bottom:756.990287pt;}
.y167{bottom:758.985930pt;}
.y214{bottom:759.685910pt;}
.y147{bottom:762.638835pt;}
.y286{bottom:763.432289pt;}
.yb{bottom:764.794803pt;}
.y10b{bottom:767.412933pt;}
.y47{bottom:767.480306pt;}
.yb5{bottom:768.653483pt;}
.y82{bottom:768.653564pt;}
.y11c{bottom:768.653605pt;}
.y2c7{bottom:770.057620pt;}
.y2f8{bottom:770.318287pt;}
.y1a7{bottom:772.549652pt;}
.y16e{bottom:772.550655pt;}
.y196{bottom:772.559531pt;}
.y254{bottom:773.160158pt;}
.y21d{bottom:773.171564pt;}
.y243{bottom:773.180468pt;}
.y285{bottom:776.760289pt;}
.ya{bottom:778.122803pt;}
.y146{bottom:781.821973pt;}
.y2c6{bottom:783.385620pt;}
.y2f7{bottom:783.646287pt;}
.y10a{bottom:784.050267pt;}
.y46{bottom:784.146973pt;}
.y81{bottom:785.320231pt;}
.y11b{bottom:785.320272pt;}
.y19b{bottom:786.555827pt;}
.y171{bottom:786.556840pt;}
.y1aa{bottom:786.557048pt;}
.y180{bottom:786.565701pt;}
.y18b{bottom:786.565705pt;}
.y24f{bottom:787.214786pt;}
.y216{bottom:787.226184pt;}
.y227{bottom:787.235087pt;}
.y232{bottom:787.235090pt;}
.y23e{bottom:787.243987pt;}
.y284{bottom:790.088289pt;}
.y2c5{bottom:796.713620pt;}
.y2f6{bottom:796.974287pt;}
.y145{bottom:798.459306pt;}
.y109{bottom:800.687600pt;}
.y1a0{bottom:800.694815pt;}
.y1af{bottom:800.696036pt;}
.y177{bottom:800.704685pt;}
.y184{bottom:800.704689pt;}
.y18f{bottom:800.704694pt;}
.y45{bottom:800.813639pt;}
.y256{bottom:801.287204pt;}
.y21f{bottom:801.298609pt;}
.y22c{bottom:801.298613pt;}
.y237{bottom:801.307511pt;}
.y245{bottom:801.307514pt;}
.y80{bottom:801.986898pt;}
.y11a{bottom:801.986938pt;}
.y283{bottom:803.416289pt;}
.y2c4{bottom:810.041620pt;}
.y2f5{bottom:810.302287pt;}
.y19e{bottom:814.700998pt;}
.y1ad{bottom:814.702218pt;}
.y175{bottom:814.710867pt;}
.y182{bottom:814.710872pt;}
.y18d{bottom:814.710876pt;}
.y144{bottom:815.096639pt;}
.y258{bottom:815.412991pt;}
.y221{bottom:815.424397pt;}
.y22e{bottom:815.424400pt;}
.y239{bottom:815.433299pt;}
.y247{bottom:815.433301pt;}
.y9{bottom:815.989502pt;}
.y282{bottom:816.744289pt;}
.y108{bottom:817.324933pt;}
.y44{bottom:817.480306pt;}
.y7f{bottom:818.653564pt;}
.yb4{bottom:818.653605pt;}
.y2c3{bottom:823.369620pt;}
.y2f4{bottom:823.630287pt;}
.y19d{bottom:828.839984pt;}
.y173{bottom:828.840997pt;}
.y1ac{bottom:828.841205pt;}
.y181{bottom:828.849858pt;}
.y18c{bottom:828.849862pt;}
.y252{bottom:829.476516pt;}
.y219{bottom:829.487914pt;}
.y22a{bottom:829.487921pt;}
.y235{bottom:829.496820pt;}
.y241{bottom:829.496821pt;}
.y281{bottom:830.072289pt;}
.y143{bottom:831.733973pt;}
.y8{bottom:832.656169pt;}
.y107{bottom:833.962267pt;}
.y43{bottom:834.146973pt;}
.y7e{bottom:835.320231pt;}
.yb3{bottom:835.320272pt;}
.y2c2{bottom:836.697620pt;}
.y2f3{bottom:836.958287pt;}
.y17a{bottom:842.856036pt;}
.y280{bottom:843.400289pt;}
.y21a{bottom:843.551436pt;}
.y142{bottom:848.371306pt;}
.y2c1{bottom:850.025620pt;}
.y2f2{bottom:850.286287pt;}
.y106{bottom:850.599600pt;}
.y42{bottom:850.813639pt;}
.y7d{bottom:851.986898pt;}
.yb2{bottom:851.986938pt;}
.y27f{bottom:856.728289pt;}
.y166{bottom:857.624430pt;}
.y212{bottom:857.866130pt;}
.y164{bottom:862.356306pt;}
.y2c0{bottom:863.353620pt;}
.y2f1{bottom:863.614287pt;}
.y141{bottom:865.008639pt;}
.y105{bottom:867.236933pt;}
.y41{bottom:867.480306pt;}
.y7c{bottom:868.653564pt;}
.yb1{bottom:868.653605pt;}
.y27e{bottom:870.056289pt;}
.y1a5{bottom:871.186121pt;}
.y16c{bottom:871.187123pt;}
.y194{bottom:871.195999pt;}
.y25d{bottom:871.531042pt;}
.y24d{bottom:871.533646pt;}
.y226{bottom:871.545053pt;}
.y7{bottom:872.377441pt;}
.y163{bottom:875.684306pt;}
.y2bf{bottom:876.681620pt;}
.y2f0{bottom:876.942287pt;}
.y27d{bottom:883.384289pt;}
.y104{bottom:883.874267pt;}
.y40{bottom:884.146973pt;}
.y1a6{bottom:885.192305pt;}
.y16d{bottom:885.193307pt;}
.y17d{bottom:885.202172pt;}
.y188{bottom:885.202176pt;}
.y195{bottom:885.202183pt;}
.y7b{bottom:885.320231pt;}
.yb0{bottom:885.320272pt;}
.y25a{bottom:885.594564pt;}
.y24a{bottom:885.597168pt;}
.y223{bottom:885.608575pt;}
.y22f{bottom:885.608579pt;}
.y23a{bottom:885.617478pt;}
.y162{bottom:889.012306pt;}
.y140{bottom:889.318639pt;}
.y2be{bottom:890.009620pt;}
.y2ef{bottom:890.270287pt;}
.y6{bottom:896.377441pt;}
.y27c{bottom:896.712289pt;}
.y1a9{bottom:899.393269pt;}
.y170{bottom:899.394272pt;}
.y17f{bottom:899.403133pt;}
.y18a{bottom:899.403137pt;}
.y198{bottom:899.403148pt;}
.y25b{bottom:899.658086pt;}
.y24b{bottom:899.660690pt;}
.y224{bottom:899.672097pt;}
.y230{bottom:899.672101pt;}
.y23b{bottom:899.681000pt;}
.y103{bottom:900.505579pt;}
.y3f{bottom:900.813639pt;}
.y7a{bottom:901.986898pt;}
.yaf{bottom:901.986938pt;}
.y161{bottom:902.340306pt;}
.y2bd{bottom:903.337620pt;}
.y2ee{bottom:903.598287pt;}
.y27b{bottom:910.040289pt;}
.y13f{bottom:911.021973pt;}
.y1a8{bottom:913.399454pt;}
.y16f{bottom:913.400456pt;}
.y17e{bottom:913.409317pt;}
.y189{bottom:913.409321pt;}
.y197{bottom:913.409332pt;}
.y25c{bottom:913.721608pt;}
.y24c{bottom:913.724212pt;}
.y225{bottom:913.735619pt;}
.y231{bottom:913.735623pt;}
.y23c{bottom:913.744522pt;}
.y160{bottom:915.668306pt;}
.y2bc{bottom:916.665620pt;}
.y2ed{bottom:916.926287pt;}
.y102{bottom:917.142913pt;}
.y3e{bottom:917.480306pt;}
.y79{bottom:918.653564pt;}
.yae{bottom:918.653605pt;}
.y27a{bottom:923.368289pt;}
.y179{bottom:927.548298pt;}
.y21c{bottom:927.799138pt;}
.y15f{bottom:928.996306pt;}
.y2bb{bottom:929.993620pt;}
.y2ec{bottom:930.254287pt;}
.y13e{bottom:932.988688pt;}
.y3d{bottom:934.146973pt;}
.y78{bottom:935.320231pt;}
.yad{bottom:935.320272pt;}
.y279{bottom:936.696289pt;}
.y101{bottom:942.098913pt;}
.y15e{bottom:942.324306pt;}
.y2ba{bottom:943.321620pt;}
.y2eb{bottom:943.582287pt;}
.y3c{bottom:950.813639pt;}
.y77{bottom:951.986898pt;}
.yac{bottom:951.986938pt;}
.yfb{bottom:955.652306pt;}
.y1a4{bottom:955.745578pt;}
.y16b{bottom:955.746580pt;}
.y17c{bottom:955.755447pt;}
.y187{bottom:955.755451pt;}
.y193{bottom:955.755456pt;}
.y251{bottom:955.781354pt;}
.y218{bottom:955.792752pt;}
.y229{bottom:955.792759pt;}
.y234{bottom:955.801658pt;}
.y240{bottom:955.801659pt;}
.y5{bottom:956.561849pt;}
.y2b9{bottom:956.649620pt;}
.y2ea{bottom:956.910287pt;}
.y100{bottom:963.802246pt;}
.y278{bottom:966.696289pt;}
.y3b{bottom:967.480306pt;}
.y76{bottom:968.653564pt;}
.yab{bottom:968.653605pt;}
.yfa{bottom:968.980306pt;}
.y2b8{bottom:969.977620pt;}
.y2e9{bottom:970.238287pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3a{bottom:1002.206543pt;}
.y75{bottom:1002.206706pt;}
.h15{height:19.413333pt;}
.h1a{height:20.155311pt;}
.h16{height:20.156864pt;}
.h1d{height:21.193536pt;}
.h19{height:25.780518pt;}
.h17{height:25.781295pt;}
.h1c{height:25.903211pt;}
.hd{height:30.495732pt;}
.h2{height:37.376000pt;}
.h8{height:38.453333pt;}
.h4{height:39.712000pt;}
.hc{height:43.565333pt;}
.h11{height:43.656000pt;}
.hb{height:46.144000pt;}
.h14{height:46.376000pt;}
.h12{height:48.586367pt;}
.h13{height:48.637148pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.h9{height:51.253333pt;}
.ha{height:51.360000pt;}
.hf{height:54.560000pt;}
.h10{height:57.210829pt;}
.he{height:57.493333pt;}
.h7{height:57.621333pt;}
.h6{height:82.176000pt;}
.h1b{height:362.501343pt;}
.h18{height:362.538656pt;}
.h1e{height:363.882650pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w3{width:479.998657pt;}
.w2{width:480.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x7{left:69.996800pt;}
.x4{left:75.717199pt;}
.x8{left:83.151469pt;}
.x20{left:90.708669pt;}
.xc{left:170.843343pt;}
.xb{left:238.110128pt;}
.x15{left:240.578674pt;}
.x1e{left:242.921733pt;}
.x11{left:245.669332pt;}
.x16{left:249.063863pt;}
.xd{left:252.031860pt;}
.x17{left:254.594930pt;}
.x18{left:305.714033pt;}
.xe{left:317.379298pt;}
.x19{left:349.705412pt;}
.x12{left:369.346659pt;}
.x1b{left:370.385844pt;}
.xf{left:375.918419pt;}
.x5{left:408.189087pt;}
.x9{left:423.311467pt;}
.x6{left:427.087353pt;}
.x1f{left:430.866924pt;}
.x1d{left:439.608541pt;}
.x14{left:442.472026pt;}
.x10{left:615.015140pt;}
.x1a{left:616.064540pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.x1c{left:685.277332pt;}
.x13{left:688.145626pt;}
.xa{left:709.519613pt;}
}




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