
    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_e0143fd04675819e02eff24b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_4bbb5b0f8dda0f549d6a76ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_e5cf172569c808d5acb242cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.701190;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_ceb76e1bea8336be8832a31a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_8f6326ec837b7bbd6a03a574.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.704000;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_e159a6d0d19ada24b1125dea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_4f4c34253acc14a828d2fe26.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_d2bac64862c5f947990e2262.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958000;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_a39175e0adaf21a432702614.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.414000;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_1b55ab3da974858c4e64014d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_8105e47fc1eee6bc01a0cb43.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_4766821c87d497ad4611aba7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_fabfa5ce18028bf6010d9bcd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1673c5c9d214a6556156dbb1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_86db4ac1fd60b05e5903762c.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bf538852ac86ee28c639ee22.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.545000;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:ff14;src:url('chunks/assets/font_3241148d0d3358b1be3d80e2.woff2')format("woff");}.ff14{font-family:ff14;line-height:2.399000;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:ff15;src:url('chunks/assets/font_4ab47096d8235c273450c23a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.456000;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:ff16;src:url('chunks/assets/font_8a3a733bc45b36141d25dee8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.454000;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:ff17;src:url('chunks/assets/font_506d55a226f195abfd26d708.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.923000;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;}
.m3{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);}
.m2{transform:matrix(0.117368,0.220737,-0.220737,0.117368,0,0);-ms-transform:matrix(0.117368,0.220737,-0.220737,0.117368,0,0);-webkit-transform:matrix(0.117368,0.220737,-0.220737,0.117368,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);}
.v13{vertical-align:-52.614000px;}
.v17{vertical-align:-15.180000px;}
.v4{vertical-align:-13.320000px;}
.v5{vertical-align:-11.154000px;}
.v2{vertical-align:-9.822000px;}
.v18{vertical-align:-5.976000px;}
.v6{vertical-align:-3.727332px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:13.974000px;}
.v10{vertical-align:17.736000px;}
.v1b{vertical-align:21.312000px;}
.v1{vertical-align:23.754000px;}
.v3{vertical-align:25.800000px;}
.vf{vertical-align:29.616000px;}
.v8{vertical-align:34.194000px;}
.vd{vertical-align:38.448000px;}
.v15{vertical-align:44.688000px;}
.v11{vertical-align:47.352000px;}
.v7{vertical-align:48.528000px;}
.v19{vertical-align:78.708000px;}
.v1a{vertical-align:95.586000px;}
.ve{vertical-align:97.734000px;}
.va{vertical-align:101.142000px;}
.vc{vertical-align:134.286000px;}
.v16{vertical-align:138.042000px;}
.vb{vertical-align:150.348000px;}
.v14{vertical-align:159.174000px;}
.v12{vertical-align:185.754000px;}
.ls11{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.000273px;}
.ls9d{letter-spacing:0.000357px;}
.ls65{letter-spacing:0.000440px;}
.ls77{letter-spacing:0.000474px;}
.ls3f{letter-spacing:0.001300px;}
.ls6e{letter-spacing:0.001809px;}
.ls3d{letter-spacing:0.002294px;}
.ls38{letter-spacing:0.002657px;}
.ls52{letter-spacing:0.003650px;}
.lsad{letter-spacing:0.005361px;}
.lsc6{letter-spacing:0.007726px;}
.ls98{letter-spacing:0.010339px;}
.lsbc{letter-spacing:0.011128px;}
.ls92{letter-spacing:0.016161px;}
.ls2f{letter-spacing:0.016548px;}
.lsc2{letter-spacing:0.016570px;}
.ls5{letter-spacing:0.019719px;}
.ls99{letter-spacing:0.021537px;}
.ls2d{letter-spacing:0.022370px;}
.ls31{letter-spacing:0.025029px;}
.ls85{letter-spacing:0.026650px;}
.ls9{letter-spacing:0.026818px;}
.ls90{letter-spacing:0.027364px;}
.ls7c{letter-spacing:0.031187px;}
.ls27{letter-spacing:0.033087px;}
.ls9c{letter-spacing:0.037649px;}
.ls7{letter-spacing:0.196364px;}
.ls5d{letter-spacing:0.430387px;}
.ls56{letter-spacing:1.911736px;}
.ls14{letter-spacing:1.936742px;}
.ls54{letter-spacing:1.952534px;}
.ls60{letter-spacing:1.959681px;}
.lsa2{letter-spacing:2.008474px;}
.ls43{letter-spacing:2.438861px;}
.ls93{letter-spacing:2.984746px;}
.ls2{letter-spacing:2.984915px;}
.ls28{letter-spacing:2.987860px;}
.lsd{letter-spacing:2.987971px;}
.ls17{letter-spacing:2.990915px;}
.ls49{letter-spacing:2.991543px;}
.ls4d{letter-spacing:2.993860px;}
.ls10{letter-spacing:3.796367px;}
.lsaf{letter-spacing:4.158086px;}
.lsca{letter-spacing:4.160410px;}
.lsa5{letter-spacing:4.173418px;}
.ls75{letter-spacing:4.173471px;}
.lsab{letter-spacing:4.178984px;}
.ls42{letter-spacing:4.259644px;}
.lsa1{letter-spacing:5.092915px;}
.ls13{letter-spacing:5.164646px;}
.ls5e{letter-spacing:7.170273px;}
.ls58{letter-spacing:7.643860px;}
.ls44{letter-spacing:11.907379px;}
.ls47{letter-spacing:11.953473px;}
.ls4e{letter-spacing:11.979110px;}
.lsc{letter-spacing:13.895971px;}
.lsb3{letter-spacing:14.936915px;}
.ls70{letter-spacing:14.939971px;}
.lsa9{letter-spacing:14.942915px;}
.ls71{letter-spacing:14.945971px;}
.ls45{letter-spacing:15.924326px;}
.ls50{letter-spacing:15.996058px;}
.ls95{letter-spacing:16.641638px;}
.lsb2{letter-spacing:17.072026px;}
.lsa8{letter-spacing:17.143757px;}
.ls40{letter-spacing:17.926053px;}
.ls4b{letter-spacing:17.928008px;}
.lsb{letter-spacing:18.130924px;}
.ls6{letter-spacing:18.196379px;}
.ls8{letter-spacing:18.392743px;}
.ls12{letter-spacing:18.937037px;}
.ls2a{letter-spacing:19.223962px;}
.lsb5{letter-spacing:19.439155px;}
.ls26{letter-spacing:19.582618px;}
.ls4f{letter-spacing:19.869542px;}
.ls69{letter-spacing:19.921473px;}
.ls32{letter-spacing:19.941274px;}
.lsa4{letter-spacing:20.228198px;}
.lsc7{letter-spacing:20.299930px;}
.ls1d{letter-spacing:20.371661px;}
.ls24{letter-spacing:20.443392px;}
.ls20{letter-spacing:20.658586px;}
.ls87{letter-spacing:20.945510px;}
.ls89{letter-spacing:21.017242px;}
.ls82{letter-spacing:21.088973px;}
.lse{letter-spacing:21.170915px;}
.ls33{letter-spacing:21.304166px;}
.ls88{letter-spacing:21.447629px;}
.ls81{letter-spacing:21.519360px;}
.ls94{letter-spacing:21.591091px;}
.lsc9{letter-spacing:21.734554px;}
.lsae{letter-spacing:21.878016px;}
.lsc8{letter-spacing:21.949747px;}
.lsa3{letter-spacing:22.164941px;}
.ls9e{letter-spacing:22.308403px;}
.ls8d{letter-spacing:22.380134px;}
.lsb1{letter-spacing:22.667059px;}
.ls8e{letter-spacing:22.882253px;}
.ls68{letter-spacing:22.910746px;}
.ls7e{letter-spacing:22.910915px;}
.ls53{letter-spacing:22.916915px;}
.lsa7{letter-spacing:22.953984px;}
.ls29{letter-spacing:22.982746px;}
.ls1c{letter-spacing:23.345971px;}
.ls86{letter-spacing:23.384371px;}
.lsa0{letter-spacing:23.456102px;}
.ls8a{letter-spacing:23.671296px;}
.ls8b{letter-spacing:23.743027px;}
.ls3e{letter-spacing:23.886490px;}
.ls4a{letter-spacing:23.910273px;}
.lsbf{letter-spacing:23.958221px;}
.ls34{letter-spacing:24.101683px;}
.ls9f{letter-spacing:24.173414px;}
.ls4{letter-spacing:24.414566px;}
.ls6d{letter-spacing:24.460339px;}
.ls3{letter-spacing:24.480020px;}
.lsf{letter-spacing:24.584746px;}
.ls30{letter-spacing:24.603802px;}
.ls22{letter-spacing:24.818995px;}
.ls21{letter-spacing:24.890726px;}
.lscb{letter-spacing:24.962458px;}
.ls1b{letter-spacing:24.992746px;}
.ls8f{letter-spacing:25.177651px;}
.ls91{letter-spacing:25.249382px;}
.ls35{letter-spacing:25.608038px;}
.ls8c{letter-spacing:25.679770px;}
.ls19{letter-spacing:26.038426px;}
.ls1a{letter-spacing:26.110157px;}
.ls23{letter-spacing:26.253619px;}
.ls67{letter-spacing:26.396746px;}
.ls7b{letter-spacing:26.396915px;}
.lsbe{letter-spacing:26.468813px;}
.lsbb{letter-spacing:26.612275px;}
.ls36{letter-spacing:26.755738px;}
.ls9b{letter-spacing:26.899200px;}
.ls6b{letter-spacing:26.900915px;}
.ls7a{letter-spacing:26.970931px;}
.ls78{letter-spacing:27.042662px;}
.lsb9{letter-spacing:27.186125px;}
.lsa{letter-spacing:27.229114px;}
.ls9a{letter-spacing:27.329587px;}
.lsb4{letter-spacing:27.401318px;}
.ls79{letter-spacing:27.473050px;}
.lsb8{letter-spacing:27.616512px;}
.ls84{letter-spacing:27.764915px;}
.lsc1{letter-spacing:27.842915px;}
.ls3a{letter-spacing:28.157860px;}
.lsaa{letter-spacing:28.166915px;}
.ls97{letter-spacing:28.620749px;}
.ls5c{letter-spacing:28.764211px;}
.ls7f{letter-spacing:28.979405px;}
.ls96{letter-spacing:29.051136px;}
.ls5b{letter-spacing:29.194598px;}
.lsba{letter-spacing:29.612915px;}
.lsc4{letter-spacing:29.696717px;}
.lsc0{letter-spacing:29.911910px;}
.ls18{letter-spacing:29.984746px;}
.ls73{letter-spacing:30.152915px;}
.lsc3{letter-spacing:30.198835px;}
.lsbd{letter-spacing:30.332746px;}
.ls1e{letter-spacing:30.485760px;}
.ls1f{letter-spacing:30.557491px;}
.ls83{letter-spacing:31.514746px;}
.ls6a{letter-spacing:31.876145px;}
.ls80{letter-spacing:31.922915px;}
.lsc5{letter-spacing:31.992115px;}
.ls16{letter-spacing:32.207309px;}
.ls5a{letter-spacing:32.278950px;}
.ls3b{letter-spacing:32.341473px;}
.ls2e{letter-spacing:32.618915px;}
.ls7d{letter-spacing:33.211546px;}
.ls1{letter-spacing:33.512755px;}
.ls15{letter-spacing:34.072320px;}
.ls25{letter-spacing:34.359245px;}
.ls6c{letter-spacing:35.076557px;}
.ls0{letter-spacing:35.345484px;}
.ls2c{letter-spacing:37.186180px;}
.ls37{letter-spacing:37.411473px;}
.lsb6{letter-spacing:37.945805px;}
.lsb7{letter-spacing:38.376192px;}
.lsac{letter-spacing:39.170746px;}
.ls76{letter-spacing:39.644746px;}
.ls48{letter-spacing:42.748664px;}
.ls51{letter-spacing:43.948664px;}
.ls3c{letter-spacing:53.717567px;}
.ls64{letter-spacing:64.090896px;}
.ls55{letter-spacing:69.473860px;}
.ls61{letter-spacing:69.479860px;}
.ls74{letter-spacing:99.584915px;}
.lsb0{letter-spacing:103.934746px;}
.lsa6{letter-spacing:111.128746px;}
.ls2b{letter-spacing:142.324846px;}
.ls5f{letter-spacing:150.413860px;}
.ls57{letter-spacing:153.389860px;}
.ls62{letter-spacing:286.451860px;}
.ls72{letter-spacing:423.214080px;}
.ls4c{letter-spacing:518.544845px;}
.ls63{letter-spacing:734.097101px;}
.ls59{letter-spacing:829.427866px;}
.ls66{letter-spacing:851.234150px;}
.ls41{letter-spacing:988.742861px;}
.ls6f{letter-spacing:1012.127232px;}
.ls39{letter-spacing:1142.104166px;}
.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;}
}
.ws81{word-spacing:-142.324846px;}
.wsa4{word-spacing:-56.789591px;}
.wsaf{word-spacing:-54.796746px;}
.wsc7{word-spacing:-51.789926px;}
.wsab{word-spacing:-47.988173px;}
.ws1b{word-spacing:-47.258221px;}
.ws2a{word-spacing:-45.664082px;}
.wse4{word-spacing:-45.118925px;}
.ws16{word-spacing:-42.637126px;}
.wsa2{word-spacing:-33.756703px;}
.wsa7{word-spacing:-33.684972px;}
.wsa1{word-spacing:-33.254584px;}
.wsb0{word-spacing:-33.211407px;}
.wsb3{word-spacing:-31.819960px;}
.wsa8{word-spacing:-31.102648px;}
.ws1e{word-spacing:-28.498933px;}
.wsbb{word-spacing:-23.140485px;}
.ws26{word-spacing:-19.510886px;}
.wsee{word-spacing:-18.262764px;}
.ws7{word-spacing:-18.183288px;}
.wsf4{word-spacing:-17.932800px;}
.ws88{word-spacing:-14.111859px;}
.wsb2{word-spacing:-7.531776px;}
.wsb7{word-spacing:-6.427116px;}
.wsaa{word-spacing:-6.283653px;}
.wsa3{word-spacing:-3.950718px;}
.wsdc{word-spacing:-3.873485px;}
.ws108{word-spacing:-3.801754px;}
.wsb1{word-spacing:-3.586560px;}
.wsea{word-spacing:-3.299635px;}
.wsd6{word-spacing:-2.869248px;}
.wsd5{word-spacing:-2.797517px;}
.ws112{word-spacing:-2.654054px;}
.ws10e{word-spacing:-2.582323px;}
.ws1f{word-spacing:-2.539638px;}
.wsda{word-spacing:-2.367130px;}
.ws6f{word-spacing:-2.008474px;}
.wsdf{word-spacing:-1.865011px;}
.ws5a{word-spacing:-1.793280px;}
.ws101{word-spacing:-1.649818px;}
.ws68{word-spacing:-1.506355px;}
.wsd{word-spacing:-1.492365px;}
.wse7{word-spacing:-1.219430px;}
.wsf9{word-spacing:-1.147699px;}
.wsfc{word-spacing:-1.004237px;}
.ws71{word-spacing:-0.932506px;}
.ws66{word-spacing:-0.860774px;}
.ws3b{word-spacing:-0.789043px;}
.ws23{word-spacing:-0.573850px;}
.ws24{word-spacing:-0.502118px;}
.ws7f{word-spacing:-0.286925px;}
.ws4a{word-spacing:-0.215194px;}
.ws107{word-spacing:-0.143462px;}
.wsde{word-spacing:-0.071731px;}
.ws21{word-spacing:0.000000px;}
.ws17{word-spacing:0.013091px;}
.wsc2{word-spacing:0.215194px;}
.ws2f{word-spacing:0.286925px;}
.ws8c{word-spacing:0.358656px;}
.ws59{word-spacing:0.394522px;}
.wsac{word-spacing:0.430387px;}
.ws72{word-spacing:0.502118px;}
.wse9{word-spacing:0.573850px;}
.ws6c{word-spacing:0.645581px;}
.ws3e{word-spacing:0.717312px;}
.ws34{word-spacing:0.789043px;}
.ws2e{word-spacing:0.860774px;}
.wsd0{word-spacing:0.932506px;}
.ws44{word-spacing:1.004237px;}
.wsb9{word-spacing:1.075968px;}
.ws38{word-spacing:1.147699px;}
.wsb{word-spacing:1.191274px;}
.ws9b{word-spacing:1.219430px;}
.ws9d{word-spacing:1.291162px;}
.ws30{word-spacing:1.362893px;}
.wsb5{word-spacing:1.434624px;}
.wsd8{word-spacing:1.506355px;}
.wsc9{word-spacing:1.578086px;}
.wsca{word-spacing:1.649818px;}
.wse{word-spacing:1.714911px;}
.wsff{word-spacing:1.721549px;}
.ws92{word-spacing:1.793280px;}
.wse8{word-spacing:1.865011px;}
.ws70{word-spacing:2.008474px;}
.wsf3{word-spacing:2.080205px;}
.ws5f{word-spacing:2.151936px;}
.ws5e{word-spacing:2.223667px;}
.ws41{word-spacing:2.295398px;}
.ws85{word-spacing:2.367130px;}
.wsfe{word-spacing:2.438861px;}
.ws2d{word-spacing:2.510592px;}
.wsa{word-spacing:2.565820px;}
.ws25{word-spacing:2.582323px;}
.ws98{word-spacing:2.654054px;}
.wse6{word-spacing:2.797517px;}
.ws6a{word-spacing:2.869248px;}
.wsd2{word-spacing:2.940979px;}
.ws8d{word-spacing:3.084442px;}
.ws8f{word-spacing:3.299635px;}
.ws1c{word-spacing:3.416730px;}
.wsc{word-spacing:3.482185px;}
.ws37{word-spacing:3.514829px;}
.ws1d{word-spacing:3.547639px;}
.ws76{word-spacing:3.586560px;}
.ws11{word-spacing:3.613094px;}
.ws61{word-spacing:3.658291px;}
.ws33{word-spacing:3.873485px;}
.ws97{word-spacing:3.945216px;}
.ws102{word-spacing:4.016947px;}
.ws2c{word-spacing:4.088678px;}
.ws32{word-spacing:4.160410px;}
.wsd9{word-spacing:4.232141px;}
.ws3c{word-spacing:4.303872px;}
.wsd1{word-spacing:4.519066px;}
.ws54{word-spacing:4.590797px;}
.ws1{word-spacing:4.648169px;}
.wsf5{word-spacing:4.734259px;}
.ws109{word-spacing:4.805990px;}
.ws60{word-spacing:4.877722px;}
.ws73{word-spacing:4.949453px;}
.wsdb{word-spacing:5.021184px;}
.ws10b{word-spacing:5.092915px;}
.ws67{word-spacing:5.164646px;}
.wscf{word-spacing:5.236378px;}
.ws39{word-spacing:5.308109px;}
.ws13{word-spacing:5.314914px;}
.ws78{word-spacing:5.379825px;}
.ws9f{word-spacing:5.379840px;}
.ws20{word-spacing:5.380368px;}
.ws83{word-spacing:5.451571px;}
.ws6e{word-spacing:5.523302px;}
.ws55{word-spacing:5.595034px;}
.ws3a{word-spacing:5.666765px;}
.wsec{word-spacing:5.738496px;}
.ws48{word-spacing:5.953690px;}
.wsf0{word-spacing:6.025421px;}
.wsa9{word-spacing:6.097152px;}
.ws5b{word-spacing:6.168883px;}
.wse5{word-spacing:6.240614px;}
.ws7e{word-spacing:6.384077px;}
.ws75{word-spacing:6.455775px;}
.ws50{word-spacing:6.455808px;}
.ws2b{word-spacing:6.527539px;}
.wsf{word-spacing:6.558551px;}
.ws63{word-spacing:6.599270px;}
.ws7b{word-spacing:6.671002px;}
.ws3{word-spacing:6.702551px;}
.ws3f{word-spacing:6.742733px;}
.wsae{word-spacing:6.809972px;}
.ws4f{word-spacing:6.886195px;}
.ws9e{word-spacing:6.957926px;}
.ws8e{word-spacing:7.029658px;}
.ws15{word-spacing:7.059282px;}
.wsa0{word-spacing:7.101389px;}
.ws49{word-spacing:7.173120px;}
.ws64{word-spacing:7.244851px;}
.ws1a{word-spacing:7.278552px;}
.wsdd{word-spacing:7.316582px;}
.wsf1{word-spacing:7.388314px;}
.ws14{word-spacing:7.409461px;}
.ws29{word-spacing:7.460045px;}
.wsfb{word-spacing:7.531776px;}
.ws86{word-spacing:7.603507px;}
.ws5{word-spacing:7.671279px;}
.ws7c{word-spacing:7.675238px;}
.ws46{word-spacing:7.746970px;}
.wse3{word-spacing:7.818701px;}
.ws4e{word-spacing:7.854566px;}
.ws47{word-spacing:7.890432px;}
.ws77{word-spacing:7.962163px;}
.ws40{word-spacing:8.033894px;}
.ws84{word-spacing:8.105626px;}
.wse2{word-spacing:8.177357px;}
.ws10d{word-spacing:8.249088px;}
.ws3d{word-spacing:8.464282px;}
.ws9{word-spacing:8.522189px;}
.ws79{word-spacing:8.607744px;}
.ws91{word-spacing:8.679475px;}
.ws56{word-spacing:8.751206px;}
.ws9c{word-spacing:8.795292px;}
.ws89{word-spacing:8.799282px;}
.wsa6{word-spacing:8.805282px;}
.wsfd{word-spacing:8.822938px;}
.wsba{word-spacing:8.826871px;}
.ws106{word-spacing:8.894669px;}
.ws110{word-spacing:8.966400px;}
.wsce{word-spacing:9.038131px;}
.ws18{word-spacing:9.045826px;}
.wsd7{word-spacing:9.109862px;}
.ws45{word-spacing:9.181594px;}
.wsad{word-spacing:9.253325px;}
.ws8b{word-spacing:9.325056px;}
.ws10{word-spacing:9.386190px;}
.wsc8{word-spacing:9.396787px;}
.wsb4{word-spacing:9.468518px;}
.wsfa{word-spacing:9.611981px;}
.ws8a{word-spacing:9.683712px;}
.ws69{word-spacing:9.827174px;}
.ws4d{word-spacing:9.898906px;}
.ws8{word-spacing:9.962190px;}
.ws6b{word-spacing:9.970637px;}
.ws51{word-spacing:10.042368px;}
.ws35{word-spacing:10.114099px;}
.wsf6{word-spacing:10.185830px;}
.ws12{word-spacing:10.224009px;}
.ws58{word-spacing:10.257562px;}
.ws95{word-spacing:10.329293px;}
.ws62{word-spacing:10.401024px;}
.ws100{word-spacing:10.544486px;}
.ws87{word-spacing:10.616218px;}
.ws9a{word-spacing:10.687949px;}
.ws6d{word-spacing:10.831411px;}
.ws4b{word-spacing:10.903142px;}
.ws82{word-spacing:10.974874px;}
.ws36{word-spacing:11.046605px;}
.ws28{word-spacing:11.118336px;}
.ws4{word-spacing:11.205828px;}
.wsf8{word-spacing:11.261798px;}
.ws53{word-spacing:11.512858px;}
.ws10f{word-spacing:11.620454px;}
.wsc4{word-spacing:11.692186px;}
.ws10c{word-spacing:11.835648px;}
.wsf2{word-spacing:11.907379px;}
.ws111{word-spacing:12.194304px;}
.wscd{word-spacing:12.337766px;}
.ws96{word-spacing:12.624691px;}
.wscc{word-spacing:12.696422px;}
.wscb{word-spacing:12.768154px;}
.ws80{word-spacing:12.839885px;}
.ws6{word-spacing:12.842193px;}
.ws65{word-spacing:12.911616px;}
.ws57{word-spacing:12.983347px;}
.ws27{word-spacing:13.198541px;}
.ws42{word-spacing:13.270272px;}
.ws43{word-spacing:13.342003px;}
.ws7d{word-spacing:13.413734px;}
.ws103{word-spacing:13.593062px;}
.ws4c{word-spacing:13.628928px;}
.wsc6{word-spacing:13.700659px;}
.wsed{word-spacing:13.701282px;}
.wsd4{word-spacing:13.772390px;}
.ws7a{word-spacing:13.987584px;}
.wsf7{word-spacing:14.059315px;}
.ws10a{word-spacing:14.346240px;}
.wse1{word-spacing:14.417971px;}
.wse0{word-spacing:14.489702px;}
.ws93{word-spacing:14.501292px;}
.ws5c{word-spacing:14.776627px;}
.wseb{word-spacing:14.991821px;}
.ws31{word-spacing:15.207014px;}
.wsc3{word-spacing:15.384055px;}
.wsb6{word-spacing:15.493939px;}
.wsb8{word-spacing:15.565670px;}
.ws19{word-spacing:16.119282px;}
.ws114{word-spacing:16.139520px;}
.ws90{word-spacing:16.282982px;}
.ws5d{word-spacing:17.215488px;}
.ws104{word-spacing:18.434918px;}
.ws113{word-spacing:18.506650px;}
.ws99{word-spacing:20.299930px;}
.wsef{word-spacing:20.371661px;}
.wsd3{word-spacing:20.945510px;}
.wsc5{word-spacing:22.105050px;}
.ws74{word-spacing:25.874746px;}
.ws2{word-spacing:27.032750px;}
.ws105{word-spacing:28.549018px;}
.ws52{word-spacing:30.055373px;}
.ws0{word-spacing:37.316475px;}
.wsbf{word-spacing:52.292045px;}
.wsbe{word-spacing:53.540168px;}
.ws94{word-spacing:69.937725px;}
.ws22{word-spacing:83.925075px;}
.wsa5{word-spacing:106.764718px;}
.wsc0{word-spacing:132.272333px;}
.wsc1{word-spacing:143.677594px;}
.wsbc{word-spacing:160.061000px;}
.wsbd{word-spacing:194.604871px;}
._24{margin-left:-142.324846px;}
._32{margin-left:-35.148288px;}
._31{margin-left:-27.448189px;}
._2f{margin-left:-8.091257px;}
._18{margin-left:-6.809702px;}
._c{margin-left:-5.498186px;}
._3{margin-left:-4.434838px;}
._0{margin-left:-3.223350px;}
._5{margin-left:-1.832729px;}
._6{width:1.832729px;}
._2{width:3.223350px;}
._2b{width:4.232141px;}
._28{width:5.738496px;}
._1d{width:9.933006px;}
._1c{width:11.586354px;}
._d{width:18.261833px;}
._11{width:20.165347px;}
._19{width:22.145885px;}
._33{width:23.214079px;}
._f{width:24.283657px;}
._2e{width:25.808899px;}
._7{width:26.901841px;}
._b{width:28.407296px;}
._4{width:30.109116px;}
._17{width:31.131341px;}
._9{width:32.318498px;}
._30{width:33.711950px;}
._12{width:35.076557px;}
._1a{width:36.080794px;}
._16{width:37.203377px;}
._14{width:39.093504px;}
._e{width:40.320034px;}
._26{width:41.567052px;}
._a{width:42.856688px;}
._25{width:44.116421px;}
._10{width:45.430552px;}
._2d{width:46.850252px;}
._23{width:47.951336px;}
._1f{width:49.247052px;}
._1{width:50.333850px;}
._34{width:51.473332px;}
._13{width:53.219789px;}
._2c{width:54.730906px;}
._8{width:56.601862px;}
._1e{width:58.245734px;}
._1b{width:59.432882px;}
._29{width:61.018135px;}
._15{width:65.765014px;}
._35{width:79.732812px;}
._21{width:90.402136px;}
._22{width:96.836850px;}
._20{width:116.203950px;}
._27{width:417.638545px;}
._2a{width:881.145765px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(25,25,25);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:18.199944px;}
.fsb{font-size:18.416610px;}
.fs9{font-size:19.716606px;}
.fse{font-size:23.833260px;}
.fsa{font-size:25.999920px;}
.fs8{font-size:28.166580px;}
.fsf{font-size:29.249910px;}
.fsc{font-size:30.333240px;}
.fs7{font-size:32.499900px;}
.fs6{font-size:34.666560px;}
.fs11{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs10{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:16.431916px;}
.ya4{bottom:17.292655px;}
.ya3{bottom:25.544583px;}
.ya6{bottom:35.554721px;}
.y23{bottom:63.168000px;}
.y99{bottom:65.062769px;}
.ya7{bottom:68.921285px;}
.y97{bottom:72.951781px;}
.ya2{bottom:91.778363px;}
.ya1{bottom:99.762844px;}
.ya8{bottom:102.287849px;}
.y111{bottom:102.520500px;}
.y22{bottom:108.000000px;}
.y1d8{bottom:109.390500px;}
.y9e{bottom:109.742683px;}
.ycb{bottom:109.884000px;}
.y93{bottom:110.748000px;}
.y4f{bottom:112.552500px;}
.y110{bottom:114.822000px;}
.y9a{bottom:115.498551px;}
.y9d{bottom:117.028077px;}
.y180{bottom:120.031500px;}
.yac{bottom:121.668792px;}
.yea{bottom:122.421000px;}
.y70{bottom:125.229000px;}
.yad{bottom:125.651037px;}
.y21{bottom:128.323500px;}
.y166{bottom:129.153000px;}
.y150{bottom:129.669000px;}
.y9c{bottom:130.001712px;}
.y1d7{bottom:131.058000px;}
.yca{bottom:131.553000px;}
.y92{bottom:132.415500px;}
.y4e{bottom:134.221500px;}
.ya9{bottom:135.654413px;}
.y9b{bottom:137.217072px;}
.y19e{bottom:138.580500px;}
.ya0{bottom:139.166603px;}
.y17f{bottom:141.700500px;}
.ye9{bottom:144.090000px;}
.y9f{bottom:144.630649px;}
.y6f{bottom:146.898000px;}
.y20{bottom:148.647000px;}
.y165{bottom:150.820500px;}
.y14f{bottom:151.338000px;}
.y1be{bottom:152.727000px;}
.y4d{bottom:155.890500px;}
.y10f{bottom:157.435500px;}
.y130{bottom:159.847500px;}
.y19d{bottom:160.249500px;}
.y181{bottom:163.368000px;}
.y17e{bottom:163.369500px;}
.yc9{bottom:164.803500px;}
.y98{bottom:165.162461px;}
.y91{bottom:165.666000px;}
.y6e{bottom:168.567000px;}
.y1f{bottom:168.972000px;}
.yaa{bottom:169.020977px;}
.y164{bottom:172.489500px;}
.y14e{bottom:173.005500px;}
.y1bd{bottom:174.396000px;}
.y4c{bottom:177.559500px;}
.ye8{bottom:179.257500px;}
.y12f{bottom:181.516500px;}
.ye7{bottom:183.691500px;}
.y17d{bottom:185.037000px;}
.y96{bottom:186.587004px;}
.y1e{bottom:189.295500px;}
.y6d{bottom:190.236000px;}
.y163{bottom:194.158500px;}
.y14d{bottom:194.674500px;}
.y1d6{bottom:196.065000px;}
.y19c{bottom:196.861500px;}
.y10e{bottom:196.885500px;}
.y4b{bottom:199.228500px;}
.yae{bottom:202.190951px;}
.yab{bottom:202.387541px;}
.y12e{bottom:203.184000px;}
.y95{bottom:204.940984px;}
.y17c{bottom:206.706000px;}
.y1d{bottom:209.619000px;}
.y1bc{bottom:211.009500px;}
.y6c{bottom:211.905000px;}
.y162{bottom:215.827500px;}
.y14c{bottom:216.343500px;}
.yc8{bottom:216.795000px;}
.y90{bottom:217.659000px;}
.y19b{bottom:218.530500px;}
.yaf{bottom:220.695988px;}
.y4a{bottom:220.896000px;}
.ye6{bottom:223.293000px;}
.y12d{bottom:224.853000px;}
.y17b{bottom:228.375000px;}
.y1c{bottom:229.942500px;}
.y1bb{bottom:232.677000px;}
.y6b{bottom:233.574000px;}
.y10d{bottom:236.334000px;}
.y161{bottom:237.496500px;}
.yc7{bottom:238.464000px;}
.y8f{bottom:239.328000px;}
.y49{bottom:242.565000px;}
.y12c{bottom:246.522000px;}
.y14b{bottom:249.594000px;}
.y17a{bottom:250.044000px;}
.y1b{bottom:250.266000px;}
.y1d5{bottom:254.346000px;}
.y19a{bottom:255.144000px;}
.y6a{bottom:255.241500px;}
.y10c{bottom:258.003000px;}
.y160{bottom:259.164000px;}
.ye5{bottom:259.908000px;}
.yc6{bottom:260.133000px;}
.y8e{bottom:260.997000px;}
.y48{bottom:264.234000px;}
.y1ba{bottom:269.290500px;}
.y1a{bottom:270.591000px;}
.y179{bottom:271.713000px;}
.ye4{bottom:272.209500px;}
.y199{bottom:276.811500px;}
.y69{bottom:276.910500px;}
.y10b{bottom:279.672000px;}
.y12b{bottom:279.772500px;}
.y15f{bottom:280.833000px;}
.yc5{bottom:281.802000px;}
.y8d{bottom:282.664500px;}
.y47{bottom:285.903000px;}
.y19{bottom:290.914500px;}
.y1b9{bottom:290.959500px;}
.y178{bottom:293.380500px;}
.y68{bottom:298.579500px;}
.y14a{bottom:301.233000px;}
.y15e{bottom:302.502000px;}
.yc4{bottom:303.471000px;}
.y8c{bottom:304.333500px;}
.y46{bottom:307.572000px;}
.y18{bottom:311.238000px;}
.y1d4{bottom:312.627000px;}
.y1b8{bottom:312.628500px;}
.y10a{bottom:312.922500px;}
.y177{bottom:315.049500px;}
.y198{bottom:316.239000px;}
.y149{bottom:317.574000px;}
.y67{bottom:320.248500px;}
.ye3{bottom:321.541500px;}
.y148{bottom:322.902000px;}
.y15d{bottom:324.171000px;}
.yc3{bottom:325.140000px;}
.y8b{bottom:326.002500px;}
.y45{bottom:329.241000px;}
.y17{bottom:331.561500px;}
.y12a{bottom:331.765500px;}
.y176{bottom:336.718500px;}
.y66{bottom:341.917500px;}
.y147{bottom:344.571000px;}
.y15c{bottom:345.840000px;}
.yc2{bottom:346.807500px;}
.y8a{bottom:347.671500px;}
.y1b7{bottom:349.240500px;}
.y44{bottom:350.908500px;}
.y16{bottom:351.885000px;}
.y129{bottom:353.434500px;}
.y109{bottom:357.580500px;}
.ye2{bottom:358.156500px;}
.y175{bottom:358.387500px;}
.y146{bottom:362.503500px;}
.y65{bottom:363.586500px;}
.y15b{bottom:367.509000px;}
.y145{bottom:367.831500px;}
.yc1{bottom:368.476500px;}
.y89{bottom:369.340500px;}
.ye1{bottom:370.458000px;}
.y1b6{bottom:370.909500px;}
.y15{bottom:372.210000px;}
.y43{bottom:372.577500px;}
.y128{bottom:375.102000px;}
.y174{bottom:380.056500px;}
.y64{bottom:385.254000px;}
.y1d3{bottom:385.852500px;}
.y15a{bottom:389.176500px;}
.y144{bottom:389.499000px;}
.y88{bottom:391.009500px;}
.y14{bottom:392.533500px;}
.y1b5{bottom:392.578500px;}
.y197{bottom:394.072500px;}
.y42{bottom:394.246500px;}
.y127{bottom:396.771000px;}
.y173{bottom:401.725500px;}
.yc0{bottom:401.727000px;}
.y63{bottom:406.923000px;}
.y159{bottom:410.845500px;}
.y143{bottom:411.168000px;}
.y87{bottom:412.677000px;}
.y13{bottom:412.857000px;}
.y196{bottom:415.741500px;}
.y41{bottom:415.915500px;}
.y108{bottom:417.457500px;}
.y126{bottom:418.440000px;}
.ye0{bottom:419.790000px;}
.y1d2{bottom:422.466000px;}
.y172{bottom:423.393000px;}
.y62{bottom:428.592000px;}
.y1b4{bottom:429.190500px;}
.y158{bottom:432.514500px;}
.y142{bottom:432.837000px;}
.y12{bottom:433.180500px;}
.y195{bottom:437.410500px;}
.y40{bottom:437.584500px;}
.y107{bottom:439.126500px;}
.y125{bottom:440.109000px;}
.y1d1{bottom:444.135000px;}
.y171{bottom:445.062000px;}
.y86{bottom:445.927500px;}
.y61{bottom:450.261000px;}
.y1b3{bottom:450.859500px;}
.y11{bottom:453.504000px;}
.ybf{bottom:453.720000px;}
.y157{bottom:454.183500px;}
.ydf{bottom:455.157000px;}
.y3f{bottom:459.253500px;}
.y106{bottom:460.795500px;}
.y124{bottom:461.778000px;}
.y141{bottom:466.087500px;}
.y170{bottom:466.731000px;}
.yde{bottom:467.458500px;}
.y60{bottom:471.930000px;}
.y10{bottom:473.829000px;}
.ybe{bottom:475.389000px;}
.y156{bottom:475.852500px;}
.y194{bottom:477.012000px;}
.y1d0{bottom:480.747000px;}
.y3e{bottom:480.921000px;}
.y105{bottom:482.464500px;}
.y123{bottom:483.445500px;}
.y1b2{bottom:487.471500px;}
.y16f{bottom:488.400000px;}
.y5f{bottom:493.597500px;}
.yf{bottom:494.152500px;}
.ybd{bottom:497.056500px;}
.y85{bottom:497.920500px;}
.y193{bottom:498.679500px;}
.y1cf{bottom:502.416000px;}
.y3d{bottom:502.590000px;}
.y122{bottom:505.114500px;}
.y1b1{bottom:509.140500px;}
.y16e{bottom:510.069000px;}
.ydd{bottom:510.225000px;}
.ye{bottom:514.476000px;}
.y5e{bottom:515.266500px;}
.y155{bottom:515.278500px;}
.y104{bottom:515.715000px;}
.y140{bottom:517.726500px;}
.ybc{bottom:518.725500px;}
.y84{bottom:519.589500px;}
.y192{bottom:520.348500px;}
.y121{bottom:522.120000px;}
.y3c{bottom:524.259000px;}
.y120{bottom:526.783500px;}
.y16d{bottom:531.738000px;}
.ydc{bottom:531.894000px;}
.yd{bottom:534.799500px;}
.y5d{bottom:536.935500px;}
.y1ce{bottom:539.028000px;}
.y13f{bottom:539.395500px;}
.ybb{bottom:540.394500px;}
.y83{bottom:541.258500px;}
.y191{bottom:542.017500px;}
.y11f{bottom:543.789000px;}
.y1b0{bottom:545.754000px;}
.y3b{bottom:545.928000px;}
.y11e{bottom:548.452500px;}
.y16c{bottom:553.405500px;}
.ydb{bottom:553.563000px;}
.yc{bottom:555.123000px;}
.y5c{bottom:558.604500px;}
.y1cd{bottom:560.697000px;}
.y13e{bottom:561.064500px;}
.yba{bottom:562.063500px;}
.y82{bottom:562.926000px;}
.y190{bottom:563.686500px;}
.y1af{bottom:567.423000px;}
.y3a{bottom:567.597000px;}
.y103{bottom:567.684000px;}
.y154{bottom:568.878000px;}
.y16b{bottom:575.074500px;}
.yda{bottom:575.230500px;}
.yb{bottom:575.448000px;}
.y1cc{bottom:582.366000px;}
.y13d{bottom:582.732000px;}
.yb9{bottom:583.732500px;}
.y18f{bottom:585.355500px;}
.y39{bottom:589.266000px;}
.y102{bottom:589.353000px;}
.y153{bottom:590.547000px;}
.y81{bottom:596.176500px;}
.y16a{bottom:596.743500px;}
.yd9{bottom:596.899500px;}
.y11d{bottom:599.760000px;}
.y1ae{bottom:604.035000px;}
.ya{bottom:604.062000px;}
.y13c{bottom:604.401000px;}
.y18e{bottom:607.023000px;}
.y5b{bottom:610.908000px;}
.y38{bottom:610.933500px;}
.y152{bottom:612.216000px;}
.y169{bottom:618.412500px;}
.yd8{bottom:618.568500px;}
.y1cb{bottom:618.979500px;}
.y101{bottom:621.081000px;}
.y11c{bottom:621.429000px;}
.y1ad{bottom:625.704000px;}
.y13b{bottom:626.070000px;}
.y18d{bottom:628.692000px;}
.y5a{bottom:632.577000px;}
.y37{bottom:632.602500px;}
.y151{bottom:633.885000px;}
.yb8{bottom:636.036000px;}
.y100{bottom:637.270500px;}
.y1ca{bottom:640.647000px;}
.y11b{bottom:643.098000px;}
.y1ac{bottom:647.373000px;}
.y13a{bottom:647.739000px;}
.y80{bottom:648.169500px;}
.y18c{bottom:650.361000px;}
.yd7{bottom:651.819000px;}
.y59{bottom:654.246000px;}
.y36{bottom:654.271500px;}
.yb7{bottom:657.705000px;}
.y9{bottom:658.449000px;}
.y1c9{bottom:662.316000px;}
.y11a{bottom:664.765500px;}
.y139{bottom:669.408000px;}
.y7f{bottom:669.838500px;}
.y168{bottom:670.716000px;}
.y18b{bottom:672.030000px;}
.y58{bottom:675.915000px;}
.y35{bottom:675.940500px;}
.y8{bottom:678.774000px;}
.yb6{bottom:679.374000px;}
.y1ab{bottom:683.985000px;}
.y119{bottom:686.434500px;}
.yff{bottom:690.495000px;}
.y138{bottom:691.077000px;}
.y7e{bottom:691.507500px;}
.y167{bottom:692.385000px;}
.y18a{bottom:693.699000px;}
.y57{bottom:697.584000px;}
.y34{bottom:697.609500px;}
.y1c8{bottom:698.929500px;}
.y7{bottom:699.097500px;}
.yb5{bottom:701.041500px;}
.yd6{bottom:703.812000px;}
.y1aa{bottom:705.654000px;}
.y137{bottom:712.744500px;}
.y7d{bottom:713.175000px;}
.y189{bottom:715.368000px;}
.yfc{bottom:715.885500px;}
.y56{bottom:719.251500px;}
.y33{bottom:719.277000px;}
.yd5{bottom:719.296500px;}
.y6{bottom:719.421000px;}
.y1c7{bottom:720.598500px;}
.yb4{bottom:722.710500px;}
.yfe{bottom:724.738500px;}
.yd4{bottom:725.479500px;}
.y1a9{bottom:727.323000px;}
.y7c{bottom:734.844000px;}
.y188{bottom:737.035500px;}
.yf9{bottom:737.038500px;}
.y5{bottom:739.744500px;}
.y55{bottom:740.920500px;}
.y32{bottom:740.946000px;}
.yb3{bottom:744.379500px;}
.y136{bottom:745.995000px;}
.yd3{bottom:747.148500px;}
.yfd{bottom:749.170500px;}
.yfb{bottom:754.075500px;}
.y7b{bottom:756.513000px;}
.y1c6{bottom:757.210500px;}
.y187{bottom:758.704500px;}
.yfa{bottom:759.454500px;}
.y54{bottom:762.589500px;}
.y31{bottom:762.615000px;}
.y1a8{bottom:763.935000px;}
.yb2{bottom:766.048500px;}
.yf8{bottom:774.531000px;}
.y1c5{bottom:778.879500px;}
.y186{bottom:780.373500px;}
.yd2{bottom:782.517000px;}
.y53{bottom:784.258500px;}
.y30{bottom:784.284000px;}
.y1a7{bottom:785.604000px;}
.yb1{bottom:787.717500px;}
.y135{bottom:792.447000px;}
.yd1{bottom:794.817000px;}
.y7a{bottom:795.940500px;}
.yf7{bottom:796.200000px;}
.y1c4{bottom:800.548500px;}
.y185{bottom:802.042500px;}
.y52{bottom:805.927500px;}
.y2f{bottom:805.953000px;}
.y1a6{bottom:807.273000px;}
.yb0{bottom:809.385000px;}
.y134{bottom:814.116000px;}
.y184{bottom:823.711500px;}
.y51{bottom:827.595000px;}
.y2e{bottom:827.622000px;}
.y79{bottom:828.817500px;}
.yf6{bottom:829.450500px;}
.y133{bottom:835.785000px;}
.y1c3{bottom:837.160500px;}
.yd0{bottom:837.583500px;}
.y1a5{bottom:843.885000px;}
.y183{bottom:845.380500px;}
.y94{bottom:845.998500px;}
.y50{bottom:849.264000px;}
.y2d{bottom:849.289500px;}
.y4{bottom:856.924500px;}
.y132{bottom:857.454000px;}
.y1c2{bottom:858.829500px;}
.ycf{bottom:859.252500px;}
.y1a4{bottom:865.554000px;}
.y182{bottom:867.048000px;}
.y2c{bottom:870.958500px;}
.y131{bottom:879.121500px;}
.y1c1{bottom:880.498500px;}
.yce{bottom:880.921500px;}
.yf5{bottom:881.421000px;}
.y78{bottom:888.717000px;}
.y2b{bottom:892.627500px;}
.y3{bottom:898.992000px;}
.y1a3{bottom:902.167500px;}
.yf4{bottom:903.090000px;}
.y77{bottom:910.386000px;}
.ycd{bottom:914.172000px;}
.y2a{bottom:914.296500px;}
.y1a2{bottom:923.835000px;}
.yf3{bottom:924.759000px;}
.y76{bottom:932.055000px;}
.y29{bottom:935.965500px;}
.y1c0{bottom:938.779500px;}
.y118{bottom:941.008500px;}
.y1a1{bottom:945.504000px;}
.yf0{bottom:950.148000px;}
.y2{bottom:952.230000px;}
.y75{bottom:953.724000px;}
.y28{bottom:957.634500px;}
.ycc{bottom:958.830000px;}
.yf2{bottom:959.001000px;}
.y1bf{bottom:960.448500px;}
.y117{bottom:962.677500px;}
.yed{bottom:971.301000px;}
.y74{bottom:975.393000px;}
.yf1{bottom:978.769500px;}
.y27{bottom:979.302000px;}
.y1a0{bottom:982.117500px;}
.y116{bottom:984.345000px;}
.yef{bottom:988.338000px;}
.y1{bottom:989.589000px;}
.yee{bottom:993.717000px;}
.y73{bottom:997.060500px;}
.y26{bottom:1000.971000px;}
.y115{bottom:1003.099500px;}
.y19f{bottom:1003.786500px;}
.yec{bottom:1007.148000px;}
.y114{bottom:1008.427500px;}
.y72{bottom:1018.729500px;}
.y25{bottom:1022.640000px;}
.yeb{bottom:1028.817000px;}
.y113{bottom:1029.175500px;}
.y71{bottom:1040.398500px;}
.y112{bottom:1050.844500px;}
.y24{bottom:1062.067500px;}
.h22{height:2.869248px;}
.h12{height:17.109031px;}
.h15{height:19.200941px;}
.hf{height:20.801019px;}
.h11{height:24.153926px;}
.h16{height:25.144089px;}
.he{height:26.166753px;}
.h17{height:27.173166px;}
.h14{height:27.429916px;}
.h13{height:28.179580px;}
.h10{height:29.715742px;}
.hd{height:30.192407px;}
.hc{height:32.205234px;}
.h21{height:35.865450px;}
.h4{height:45.687311px;}
.h3{height:46.865494px;}
.h5{height:49.090950px;}
.h8{height:53.798400px;}
.h7{height:59.619450px;}
.h6{height:61.665450px;}
.ha{height:61.893450px;}
.h2c{height:61.899450px;}
.h2{height:64.557900px;}
.h1d{height:65.481450px;}
.h20{height:65.487450px;}
.h2b{height:65.949450px;}
.h19{height:70.059450px;}
.h29{height:70.737450px;}
.h1f{height:71.534400px;}
.h25{height:72.452400px;}
.h9{height:77.469300px;}
.h1a{height:78.530400px;}
.h24{height:80.553450px;}
.h2e{height:83.205450px;}
.h2d{height:83.211450px;}
.h1e{height:83.217450px;}
.h1{height:87.650325px;}
.h2a{height:102.320400px;}
.h18{height:102.326400px;}
.h27{height:102.998400px;}
.h1b{height:104.011248px;}
.h28{height:114.573450px;}
.h1c{height:170.151450px;}
.h26{height:173.907450px;}
.h23{height:195.039450px;}
.hb{height:233.999280px;}
.h0{height:1188.000000px;}
.w1{width:701.997840px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:70.903228px;}
.x12{left:74.153218px;}
.x10{left:83.571687px;}
.x14{left:100.294071px;}
.x11{left:102.393023px;}
.xe{left:108.000000px;}
.x6{left:115.311000px;}
.x4d{left:116.779500px;}
.x5{left:122.386500px;}
.x7{left:123.724500px;}
.x8{left:125.143500px;}
.xf{left:134.338500px;}
.x1{left:138.306000px;}
.x4e{left:144.093000px;}
.xc{left:151.897500px;}
.xb{left:176.443500px;}
.x1c{left:232.112744px;}
.x32{left:234.816000px;}
.x43{left:245.011500px;}
.x2e{left:260.076000px;}
.x1d{left:269.030599px;}
.x4b{left:286.929000px;}
.x2{left:291.352500px;}
.x44{left:309.229500px;}
.x49{left:311.572500px;}
.x37{left:313.962000px;}
.x45{left:331.765500px;}
.x34{left:337.792500px;}
.x3e{left:343.239000px;}
.x41{left:350.697000px;}
.x35{left:352.372500px;}
.x15{left:363.921843px;}
.x4{left:371.938500px;}
.x3{left:378.084000px;}
.x16{left:379.668553px;}
.x39{left:382.860000px;}
.x38{left:387.219000px;}
.x9{left:394.204500px;}
.x1a{left:400.156862px;}
.x19{left:401.515256px;}
.x3f{left:403.036500px;}
.x1b{left:406.271752px;}
.x28{left:415.972500px;}
.xa{left:422.998500px;}
.x33{left:430.540500px;}
.x40{left:433.969500px;}
.x3a{left:435.348000px;}
.x42{left:446.427000px;}
.x17{left:448.426840px;}
.x4c{left:450.220500px;}
.x18{left:452.263315px;}
.xd{left:454.609500px;}
.x2f{left:459.910500px;}
.x29{left:476.607000px;}
.x3c{left:489.840000px;}
.x2a{left:497.151000px;}
.x36{left:508.389000px;}
.x3b{left:510.651000px;}
.x2c{left:514.954500px;}
.x4a{left:529.786500px;}
.x2d{left:535.498500px;}
.x25{left:545.030451px;}
.x24{left:547.325757px;}
.x23{left:550.893128px;}
.x1e{left:564.333191px;}
.x26{left:572.805923px;}
.x27{left:576.669289px;}
.x46{left:578.821500px;}
.x3d{left:599.161500px;}
.x1f{left:620.580776px;}
.x20{left:623.466760px;}
.x21{left:625.273754px;}
.x22{left:628.159738px;}
.x30{left:632.502000px;}
.x31{left:653.046000px;}
.x48{left:683.968500px;}
.x47{left:718.282500px;}
.x2b{left:764.427000px;}
@media print{
.v13{vertical-align:-46.768000pt;}
.v17{vertical-align:-13.493333pt;}
.v4{vertical-align:-11.840000pt;}
.v5{vertical-align:-9.914667pt;}
.v2{vertical-align:-8.730667pt;}
.v18{vertical-align:-5.312000pt;}
.v6{vertical-align:-3.313184pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:12.421333pt;}
.v10{vertical-align:15.765333pt;}
.v1b{vertical-align:18.944000pt;}
.v1{vertical-align:21.114667pt;}
.v3{vertical-align:22.933333pt;}
.vf{vertical-align:26.325333pt;}
.v8{vertical-align:30.394667pt;}
.vd{vertical-align:34.176000pt;}
.v15{vertical-align:39.722667pt;}
.v11{vertical-align:42.090667pt;}
.v7{vertical-align:43.136000pt;}
.v19{vertical-align:69.962667pt;}
.v1a{vertical-align:84.965333pt;}
.ve{vertical-align:86.874667pt;}
.va{vertical-align:89.904000pt;}
.vc{vertical-align:119.365333pt;}
.v16{vertical-align:122.704000pt;}
.vb{vertical-align:133.642667pt;}
.v14{vertical-align:141.488000pt;}
.v12{vertical-align:165.114667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.000242pt;}
.ls9d{letter-spacing:0.000317pt;}
.ls65{letter-spacing:0.000391pt;}
.ls77{letter-spacing:0.000422pt;}
.ls3f{letter-spacing:0.001155pt;}
.ls6e{letter-spacing:0.001608pt;}
.ls3d{letter-spacing:0.002039pt;}
.ls38{letter-spacing:0.002362pt;}
.ls52{letter-spacing:0.003244pt;}
.lsad{letter-spacing:0.004765pt;}
.lsc6{letter-spacing:0.006868pt;}
.ls98{letter-spacing:0.009190pt;}
.lsbc{letter-spacing:0.009892pt;}
.ls92{letter-spacing:0.014365pt;}
.ls2f{letter-spacing:0.014710pt;}
.lsc2{letter-spacing:0.014729pt;}
.ls5{letter-spacing:0.017528pt;}
.ls99{letter-spacing:0.019144pt;}
.ls2d{letter-spacing:0.019884pt;}
.ls31{letter-spacing:0.022248pt;}
.ls85{letter-spacing:0.023689pt;}
.ls9{letter-spacing:0.023838pt;}
.ls90{letter-spacing:0.024323pt;}
.ls7c{letter-spacing:0.027721pt;}
.ls27{letter-spacing:0.029411pt;}
.ls9c{letter-spacing:0.033466pt;}
.ls7{letter-spacing:0.174546pt;}
.ls5d{letter-spacing:0.382566pt;}
.ls56{letter-spacing:1.699321pt;}
.ls14{letter-spacing:1.721549pt;}
.ls54{letter-spacing:1.735586pt;}
.ls60{letter-spacing:1.741938pt;}
.lsa2{letter-spacing:1.785310pt;}
.ls43{letter-spacing:2.167876pt;}
.ls93{letter-spacing:2.653107pt;}
.ls2{letter-spacing:2.653258pt;}
.ls28{letter-spacing:2.655875pt;}
.lsd{letter-spacing:2.655975pt;}
.ls17{letter-spacing:2.658591pt;}
.ls49{letter-spacing:2.659149pt;}
.ls4d{letter-spacing:2.661209pt;}
.ls10{letter-spacing:3.374548pt;}
.lsaf{letter-spacing:3.696077pt;}
.lsca{letter-spacing:3.698142pt;}
.lsa5{letter-spacing:3.709705pt;}
.ls75{letter-spacing:3.709752pt;}
.lsab{letter-spacing:3.714652pt;}
.ls42{letter-spacing:3.786350pt;}
.lsa1{letter-spacing:4.527036pt;}
.ls13{letter-spacing:4.590797pt;}
.ls5e{letter-spacing:6.373576pt;}
.ls58{letter-spacing:6.794542pt;}
.ls44{letter-spacing:10.584337pt;}
.ls47{letter-spacing:10.625309pt;}
.ls4e{letter-spacing:10.648098pt;}
.lsc{letter-spacing:12.351975pt;}
.lsb3{letter-spacing:13.277258pt;}
.ls70{letter-spacing:13.279975pt;}
.lsa9{letter-spacing:13.282591pt;}
.ls71{letter-spacing:13.285308pt;}
.ls45{letter-spacing:14.154957pt;}
.ls50{letter-spacing:14.218718pt;}
.ls95{letter-spacing:14.792567pt;}
.lsb2{letter-spacing:15.175134pt;}
.lsa8{letter-spacing:15.238895pt;}
.ls40{letter-spacing:15.934269pt;}
.ls4b{letter-spacing:15.936007pt;}
.lsb{letter-spacing:16.116377pt;}
.ls6{letter-spacing:16.174559pt;}
.ls8{letter-spacing:16.349105pt;}
.ls12{letter-spacing:16.832922pt;}
.ls2a{letter-spacing:17.087966pt;}
.lsb5{letter-spacing:17.279249pt;}
.ls26{letter-spacing:17.406771pt;}
.ls4f{letter-spacing:17.661815pt;}
.ls69{letter-spacing:17.707976pt;}
.ls32{letter-spacing:17.725577pt;}
.lsa4{letter-spacing:17.980621pt;}
.lsc7{letter-spacing:18.044382pt;}
.ls1d{letter-spacing:18.108143pt;}
.ls24{letter-spacing:18.171904pt;}
.ls20{letter-spacing:18.363187pt;}
.ls87{letter-spacing:18.618231pt;}
.ls89{letter-spacing:18.681993pt;}
.ls82{letter-spacing:18.745754pt;}
.lse{letter-spacing:18.818591pt;}
.ls33{letter-spacing:18.937037pt;}
.ls88{letter-spacing:19.064559pt;}
.ls81{letter-spacing:19.128320pt;}
.ls94{letter-spacing:19.192081pt;}
.lsc9{letter-spacing:19.319603pt;}
.lsae{letter-spacing:19.447125pt;}
.lsc8{letter-spacing:19.510886pt;}
.lsa3{letter-spacing:19.702170pt;}
.ls9e{letter-spacing:19.829692pt;}
.ls8d{letter-spacing:19.893453pt;}
.lsb1{letter-spacing:20.148497pt;}
.ls8e{letter-spacing:20.339780pt;}
.ls68{letter-spacing:20.365107pt;}
.ls7e{letter-spacing:20.365258pt;}
.ls53{letter-spacing:20.370591pt;}
.lsa7{letter-spacing:20.403541pt;}
.ls29{letter-spacing:20.429107pt;}
.ls1c{letter-spacing:20.751975pt;}
.ls86{letter-spacing:20.786108pt;}
.lsa0{letter-spacing:20.849869pt;}
.ls8a{letter-spacing:21.041152pt;}
.ls8b{letter-spacing:21.104913pt;}
.ls3e{letter-spacing:21.232435pt;}
.ls4a{letter-spacing:21.253576pt;}
.lsbf{letter-spacing:21.296196pt;}
.ls34{letter-spacing:21.423718pt;}
.ls9f{letter-spacing:21.487479pt;}
.ls4{letter-spacing:21.701836pt;}
.ls6d{letter-spacing:21.742524pt;}
.ls3{letter-spacing:21.760018pt;}
.lsf{letter-spacing:21.853107pt;}
.ls30{letter-spacing:21.870046pt;}
.ls22{letter-spacing:22.061329pt;}
.ls21{letter-spacing:22.125090pt;}
.lscb{letter-spacing:22.188851pt;}
.ls1b{letter-spacing:22.215774pt;}
.ls8f{letter-spacing:22.380134pt;}
.ls91{letter-spacing:22.443895pt;}
.ls35{letter-spacing:22.762701pt;}
.ls8c{letter-spacing:22.826462pt;}
.ls19{letter-spacing:23.145267pt;}
.ls1a{letter-spacing:23.209028pt;}
.ls23{letter-spacing:23.336550pt;}
.ls67{letter-spacing:23.463774pt;}
.ls7b{letter-spacing:23.463925pt;}
.lsbe{letter-spacing:23.527834pt;}
.lsbb{letter-spacing:23.655356pt;}
.ls36{letter-spacing:23.782878pt;}
.ls9b{letter-spacing:23.910400pt;}
.ls6b{letter-spacing:23.911925pt;}
.ls7a{letter-spacing:23.974161pt;}
.ls78{letter-spacing:24.037922pt;}
.lsb9{letter-spacing:24.165444pt;}
.lsa{letter-spacing:24.203657pt;}
.ls9a{letter-spacing:24.292966pt;}
.lsb4{letter-spacing:24.356727pt;}
.ls79{letter-spacing:24.420489pt;}
.lsb8{letter-spacing:24.548011pt;}
.ls84{letter-spacing:24.679925pt;}
.lsc1{letter-spacing:24.749258pt;}
.ls3a{letter-spacing:25.029209pt;}
.lsaa{letter-spacing:25.037258pt;}
.ls97{letter-spacing:25.440666pt;}
.ls5c{letter-spacing:25.568188pt;}
.ls7f{letter-spacing:25.759471pt;}
.ls96{letter-spacing:25.823232pt;}
.ls5b{letter-spacing:25.950754pt;}
.lsba{letter-spacing:26.322591pt;}
.lsc4{letter-spacing:26.397082pt;}
.lsc0{letter-spacing:26.588365pt;}
.ls18{letter-spacing:26.653107pt;}
.ls73{letter-spacing:26.802591pt;}
.lsc3{letter-spacing:26.843409pt;}
.lsbd{letter-spacing:26.962441pt;}
.ls1e{letter-spacing:27.098453pt;}
.ls1f{letter-spacing:27.162214pt;}
.ls83{letter-spacing:28.013107pt;}
.ls6a{letter-spacing:28.334351pt;}
.ls80{letter-spacing:28.375925pt;}
.lsc5{letter-spacing:28.437436pt;}
.ls16{letter-spacing:28.628719pt;}
.ls5a{letter-spacing:28.692400pt;}
.ls3b{letter-spacing:28.747976pt;}
.ls2e{letter-spacing:28.994591pt;}
.ls7d{letter-spacing:29.521374pt;}
.ls1{letter-spacing:29.789116pt;}
.ls15{letter-spacing:30.286507pt;}
.ls25{letter-spacing:30.541551pt;}
.ls6c{letter-spacing:31.179162pt;}
.ls0{letter-spacing:31.418208pt;}
.ls2c{letter-spacing:33.054383pt;}
.ls37{letter-spacing:33.254642pt;}
.lsb6{letter-spacing:33.729604pt;}
.lsb7{letter-spacing:34.112171pt;}
.lsac{letter-spacing:34.818441pt;}
.ls76{letter-spacing:35.239774pt;}
.ls48{letter-spacing:37.998812pt;}
.ls51{letter-spacing:39.065479pt;}
.ls3c{letter-spacing:47.748949pt;}
.ls64{letter-spacing:56.969685pt;}
.ls55{letter-spacing:61.754542pt;}
.ls61{letter-spacing:61.759875pt;}
.ls74{letter-spacing:88.519925pt;}
.lsb0{letter-spacing:92.386441pt;}
.lsa6{letter-spacing:98.781107pt;}
.ls2b{letter-spacing:126.510974pt;}
.ls5f{letter-spacing:133.701209pt;}
.ls57{letter-spacing:136.346542pt;}
.ls62{letter-spacing:254.623875pt;}
.ls72{letter-spacing:376.190293pt;}
.ls4c{letter-spacing:460.928751pt;}
.ls63{letter-spacing:652.530756pt;}
.ls59{letter-spacing:737.269214pt;}
.ls66{letter-spacing:756.652578pt;}
.ls41{letter-spacing:878.882543pt;}
.ls6f{letter-spacing:899.668651pt;}
.ls39{letter-spacing:1015.203703pt;}
.ws81{word-spacing:-126.510974pt;}
.wsa4{word-spacing:-50.479636pt;}
.wsaf{word-spacing:-48.708218pt;}
.wsc7{word-spacing:-46.035490pt;}
.wsab{word-spacing:-42.656154pt;}
.ws1b{word-spacing:-42.007308pt;}
.ws2a{word-spacing:-40.590295pt;}
.wse4{word-spacing:-40.105711pt;}
.ws16{word-spacing:-37.899668pt;}
.wsa2{word-spacing:-30.005958pt;}
.wsa7{word-spacing:-29.942197pt;}
.wsa1{word-spacing:-29.559631pt;}
.wsb0{word-spacing:-29.521250pt;}
.wsb3{word-spacing:-28.284409pt;}
.wsa8{word-spacing:-27.646799pt;}
.ws1e{word-spacing:-25.332385pt;}
.wsbb{word-spacing:-20.569320pt;}
.ws26{word-spacing:-17.343010pt;}
.wsee{word-spacing:-16.233568pt;}
.ws7{word-spacing:-16.162923pt;}
.wsf4{word-spacing:-15.940267pt;}
.ws88{word-spacing:-12.543875pt;}
.wsb2{word-spacing:-6.694912pt;}
.wsb7{word-spacing:-5.712992pt;}
.wsaa{word-spacing:-5.585469pt;}
.wsa3{word-spacing:-3.511750pt;}
.wsdc{word-spacing:-3.443098pt;}
.ws108{word-spacing:-3.379337pt;}
.wsb1{word-spacing:-3.188053pt;}
.wsea{word-spacing:-2.933009pt;}
.wsd6{word-spacing:-2.550443pt;}
.wsd5{word-spacing:-2.486682pt;}
.ws112{word-spacing:-2.359159pt;}
.ws10e{word-spacing:-2.295398pt;}
.ws1f{word-spacing:-2.257456pt;}
.wsda{word-spacing:-2.104115pt;}
.ws6f{word-spacing:-1.785310pt;}
.wsdf{word-spacing:-1.657788pt;}
.ws5a{word-spacing:-1.594027pt;}
.ws101{word-spacing:-1.466505pt;}
.ws68{word-spacing:-1.338982pt;}
.wsd{word-spacing:-1.326547pt;}
.wse7{word-spacing:-1.083938pt;}
.wsf9{word-spacing:-1.020177pt;}
.wsfc{word-spacing:-0.892655pt;}
.ws71{word-spacing:-0.828894pt;}
.ws66{word-spacing:-0.765133pt;}
.ws3b{word-spacing:-0.701372pt;}
.ws23{word-spacing:-0.510089pt;}
.ws24{word-spacing:-0.446327pt;}
.ws7f{word-spacing:-0.255044pt;}
.ws4a{word-spacing:-0.191283pt;}
.ws107{word-spacing:-0.127522pt;}
.wsde{word-spacing:-0.063761pt;}
.ws21{word-spacing:0.000000pt;}
.ws17{word-spacing:0.011636pt;}
.wsc2{word-spacing:0.191283pt;}
.ws2f{word-spacing:0.255044pt;}
.ws8c{word-spacing:0.318805pt;}
.ws59{word-spacing:0.350686pt;}
.wsac{word-spacing:0.382566pt;}
.ws72{word-spacing:0.446327pt;}
.wse9{word-spacing:0.510089pt;}
.ws6c{word-spacing:0.573850pt;}
.ws3e{word-spacing:0.637611pt;}
.ws34{word-spacing:0.701372pt;}
.ws2e{word-spacing:0.765133pt;}
.wsd0{word-spacing:0.828894pt;}
.ws44{word-spacing:0.892655pt;}
.wsb9{word-spacing:0.956416pt;}
.ws38{word-spacing:1.020177pt;}
.wsb{word-spacing:1.058910pt;}
.ws9b{word-spacing:1.083938pt;}
.ws9d{word-spacing:1.147699pt;}
.ws30{word-spacing:1.211460pt;}
.wsb5{word-spacing:1.275221pt;}
.wsd8{word-spacing:1.338982pt;}
.wsc9{word-spacing:1.402743pt;}
.wsca{word-spacing:1.466505pt;}
.wse{word-spacing:1.524365pt;}
.wsff{word-spacing:1.530266pt;}
.ws92{word-spacing:1.594027pt;}
.wse8{word-spacing:1.657788pt;}
.ws70{word-spacing:1.785310pt;}
.wsf3{word-spacing:1.849071pt;}
.ws5f{word-spacing:1.912832pt;}
.ws5e{word-spacing:1.976593pt;}
.ws41{word-spacing:2.040354pt;}
.ws85{word-spacing:2.104115pt;}
.wsfe{word-spacing:2.167876pt;}
.ws2d{word-spacing:2.231637pt;}
.wsa{word-spacing:2.280729pt;}
.ws25{word-spacing:2.295398pt;}
.ws98{word-spacing:2.359159pt;}
.wse6{word-spacing:2.486682pt;}
.ws6a{word-spacing:2.550443pt;}
.wsd2{word-spacing:2.614204pt;}
.ws8d{word-spacing:2.741726pt;}
.ws8f{word-spacing:2.933009pt;}
.ws1c{word-spacing:3.037093pt;}
.wsc{word-spacing:3.095275pt;}
.ws37{word-spacing:3.124292pt;}
.ws1d{word-spacing:3.153457pt;}
.ws76{word-spacing:3.188053pt;}
.ws11{word-spacing:3.211639pt;}
.ws61{word-spacing:3.251814pt;}
.ws33{word-spacing:3.443098pt;}
.ws97{word-spacing:3.506859pt;}
.ws102{word-spacing:3.570620pt;}
.ws2c{word-spacing:3.634381pt;}
.ws32{word-spacing:3.698142pt;}
.wsd9{word-spacing:3.761903pt;}
.ws3c{word-spacing:3.825664pt;}
.wsd1{word-spacing:4.016947pt;}
.ws54{word-spacing:4.080708pt;}
.ws1{word-spacing:4.131706pt;}
.wsf5{word-spacing:4.208230pt;}
.ws109{word-spacing:4.271991pt;}
.ws60{word-spacing:4.335753pt;}
.ws73{word-spacing:4.399514pt;}
.wsdb{word-spacing:4.463275pt;}
.ws10b{word-spacing:4.527036pt;}
.ws67{word-spacing:4.590797pt;}
.wscf{word-spacing:4.654558pt;}
.ws39{word-spacing:4.718319pt;}
.ws13{word-spacing:4.724368pt;}
.ws78{word-spacing:4.782067pt;}
.ws9f{word-spacing:4.782080pt;}
.ws20{word-spacing:4.782549pt;}
.ws83{word-spacing:4.845841pt;}
.ws6e{word-spacing:4.909602pt;}
.ws55{word-spacing:4.973363pt;}
.ws3a{word-spacing:5.037124pt;}
.wsec{word-spacing:5.100885pt;}
.ws48{word-spacing:5.292169pt;}
.wsf0{word-spacing:5.355930pt;}
.wsa9{word-spacing:5.419691pt;}
.ws5b{word-spacing:5.483452pt;}
.wse5{word-spacing:5.547213pt;}
.ws7e{word-spacing:5.674735pt;}
.ws75{word-spacing:5.738467pt;}
.ws50{word-spacing:5.738496pt;}
.ws2b{word-spacing:5.802257pt;}
.wsf{word-spacing:5.829823pt;}
.ws63{word-spacing:5.866018pt;}
.ws7b{word-spacing:5.929779pt;}
.ws3{word-spacing:5.957823pt;}
.ws3f{word-spacing:5.993540pt;}
.wsae{word-spacing:6.053308pt;}
.ws4f{word-spacing:6.121062pt;}
.ws9e{word-spacing:6.184823pt;}
.ws8e{word-spacing:6.248585pt;}
.ws15{word-spacing:6.274917pt;}
.wsa0{word-spacing:6.312346pt;}
.ws49{word-spacing:6.376107pt;}
.ws64{word-spacing:6.439868pt;}
.ws1a{word-spacing:6.469824pt;}
.wsdd{word-spacing:6.503629pt;}
.wsf1{word-spacing:6.567390pt;}
.ws14{word-spacing:6.586187pt;}
.ws29{word-spacing:6.631151pt;}
.wsfb{word-spacing:6.694912pt;}
.ws86{word-spacing:6.758673pt;}
.ws5{word-spacing:6.818915pt;}
.ws7c{word-spacing:6.822434pt;}
.ws46{word-spacing:6.886195pt;}
.wse3{word-spacing:6.949956pt;}
.ws4e{word-spacing:6.981837pt;}
.ws47{word-spacing:7.013717pt;}
.ws77{word-spacing:7.077478pt;}
.ws40{word-spacing:7.141239pt;}
.ws84{word-spacing:7.205001pt;}
.wse2{word-spacing:7.268762pt;}
.ws10d{word-spacing:7.332523pt;}
.ws3d{word-spacing:7.523806pt;}
.ws9{word-spacing:7.575279pt;}
.ws79{word-spacing:7.651328pt;}
.ws91{word-spacing:7.715089pt;}
.ws56{word-spacing:7.778850pt;}
.ws9c{word-spacing:7.818037pt;}
.ws89{word-spacing:7.821584pt;}
.wsa6{word-spacing:7.826917pt;}
.wsfd{word-spacing:7.842611pt;}
.wsba{word-spacing:7.846107pt;}
.ws106{word-spacing:7.906372pt;}
.ws110{word-spacing:7.970133pt;}
.wsce{word-spacing:8.033894pt;}
.ws18{word-spacing:8.040734pt;}
.wsd7{word-spacing:8.097655pt;}
.ws45{word-spacing:8.161417pt;}
.wsad{word-spacing:8.225178pt;}
.ws8b{word-spacing:8.288939pt;}
.ws10{word-spacing:8.343280pt;}
.wsc8{word-spacing:8.352700pt;}
.wsb4{word-spacing:8.416461pt;}
.wsfa{word-spacing:8.543983pt;}
.ws8a{word-spacing:8.607744pt;}
.ws69{word-spacing:8.735266pt;}
.ws4d{word-spacing:8.799027pt;}
.ws8{word-spacing:8.855280pt;}
.ws6b{word-spacing:8.862788pt;}
.ws51{word-spacing:8.926549pt;}
.ws35{word-spacing:8.990310pt;}
.wsf6{word-spacing:9.054071pt;}
.ws12{word-spacing:9.088008pt;}
.ws58{word-spacing:9.117833pt;}
.ws95{word-spacing:9.181594pt;}
.ws62{word-spacing:9.245355pt;}
.ws100{word-spacing:9.372877pt;}
.ws87{word-spacing:9.436638pt;}
.ws9a{word-spacing:9.500399pt;}
.ws6d{word-spacing:9.627921pt;}
.ws4b{word-spacing:9.691682pt;}
.ws82{word-spacing:9.755443pt;}
.ws36{word-spacing:9.819204pt;}
.ws28{word-spacing:9.882965pt;}
.ws4{word-spacing:9.960736pt;}
.wsf8{word-spacing:10.010487pt;}
.ws53{word-spacing:10.233651pt;}
.ws10f{word-spacing:10.329293pt;}
.wsc4{word-spacing:10.393054pt;}
.ws10c{word-spacing:10.520576pt;}
.wsf2{word-spacing:10.584337pt;}
.ws111{word-spacing:10.839381pt;}
.wscd{word-spacing:10.966903pt;}
.ws96{word-spacing:11.221948pt;}
.wscc{word-spacing:11.285709pt;}
.wscb{word-spacing:11.349470pt;}
.ws80{word-spacing:11.413231pt;}
.ws6{word-spacing:11.415282pt;}
.ws65{word-spacing:11.476992pt;}
.ws57{word-spacing:11.540753pt;}
.ws27{word-spacing:11.732036pt;}
.ws42{word-spacing:11.795797pt;}
.ws43{word-spacing:11.859558pt;}
.ws7d{word-spacing:11.923319pt;}
.ws103{word-spacing:12.082722pt;}
.ws4c{word-spacing:12.114603pt;}
.wsc6{word-spacing:12.178364pt;}
.wsed{word-spacing:12.178917pt;}
.wsd4{word-spacing:12.242125pt;}
.ws7a{word-spacing:12.433408pt;}
.wsf7{word-spacing:12.497169pt;}
.ws10a{word-spacing:12.752213pt;}
.wse1{word-spacing:12.815974pt;}
.wse0{word-spacing:12.879735pt;}
.ws93{word-spacing:12.890037pt;}
.ws5c{word-spacing:13.134780pt;}
.wseb{word-spacing:13.326063pt;}
.ws31{word-spacing:13.517346pt;}
.wsc3{word-spacing:13.674716pt;}
.wsb6{word-spacing:13.772390pt;}
.wsb8{word-spacing:13.836151pt;}
.ws19{word-spacing:14.328250pt;}
.ws114{word-spacing:14.346240pt;}
.ws90{word-spacing:14.473762pt;}
.ws5d{word-spacing:15.302656pt;}
.ws104{word-spacing:16.386594pt;}
.ws113{word-spacing:16.450355pt;}
.ws99{word-spacing:18.044382pt;}
.wsef{word-spacing:18.108143pt;}
.wsd3{word-spacing:18.618231pt;}
.wsc5{word-spacing:19.648933pt;}
.ws74{word-spacing:22.999774pt;}
.ws2{word-spacing:24.029111pt;}
.ws105{word-spacing:25.376905pt;}
.ws52{word-spacing:26.715887pt;}
.ws0{word-spacing:33.170200pt;}
.wsbf{word-spacing:46.481818pt;}
.wsbe{word-spacing:47.591260pt;}
.ws94{word-spacing:62.166867pt;}
.ws22{word-spacing:74.600067pt;}
.wsa5{word-spacing:94.901972pt;}
.wsc0{word-spacing:117.575407pt;}
.wsc1{word-spacing:127.713417pt;}
.wsbc{word-spacing:142.276444pt;}
.wsbd{word-spacing:172.982107pt;}
._24{margin-left:-126.510974pt;}
._32{margin-left:-31.242923pt;}
._31{margin-left:-24.398390pt;}
._2f{margin-left:-7.192228pt;}
._18{margin-left:-6.053069pt;}
._c{margin-left:-4.887277pt;}
._3{margin-left:-3.942078pt;}
._0{margin-left:-2.865200pt;}
._5{margin-left:-1.629092pt;}
._6{width:1.629092pt;}
._2{width:2.865200pt;}
._2b{width:3.761903pt;}
._28{width:5.100885pt;}
._1d{width:8.829339pt;}
._1c{width:10.298981pt;}
._d{width:16.232741pt;}
._11{width:17.924753pt;}
._19{width:19.685231pt;}
._33{width:20.634737pt;}
._f{width:21.585473pt;}
._2e{width:22.941244pt;}
._7{width:23.912747pt;}
._b{width:25.250930pt;}
._4{width:26.763659pt;}
._17{width:27.672303pt;}
._9{width:28.727554pt;}
._30{width:29.966178pt;}
._12{width:31.179162pt;}
._1a{width:32.071817pt;}
._16{width:33.069668pt;}
._14{width:34.749781pt;}
._e{width:35.840030pt;}
._26{width:36.948490pt;}
._a{width:38.094834pt;}
._25{width:39.214596pt;}
._10{width:40.382712pt;}
._2d{width:41.644669pt;}
._23{width:42.623410pt;}
._1f{width:43.775157pt;}
._1{width:44.741200pt;}
._34{width:45.754073pt;}
._13{width:47.306479pt;}
._2c{width:48.649694pt;}
._8{width:50.312766pt;}
._1e{width:51.773986pt;}
._1b{width:52.829229pt;}
._29{width:54.238342pt;}
._15{width:58.457790pt;}
._35{width:70.873611pt;}
._21{width:80.357454pt;}
._22{width:86.077200pt;}
._20{width:103.292400pt;}
._27{width:371.234262pt;}
._2a{width:783.240680pt;}
.fsd{font-size:16.177728pt;}
.fsb{font-size:16.370320pt;}
.fs9{font-size:17.525872pt;}
.fse{font-size:21.185120pt;}
.fsa{font-size:23.111040pt;}
.fs8{font-size:25.036960pt;}
.fsf{font-size:25.999920pt;}
.fsc{font-size:26.962880pt;}
.fs7{font-size:28.888800pt;}
.fs6{font-size:30.814720pt;}
.fs11{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs10{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:14.606147pt;}
.ya4{bottom:15.371249pt;}
.ya3{bottom:22.706296pt;}
.ya6{bottom:31.604197pt;}
.y23{bottom:56.149333pt;}
.y99{bottom:57.833572pt;}
.ya7{bottom:61.263365pt;}
.y97{bottom:64.846027pt;}
.ya2{bottom:81.580768pt;}
.ya1{bottom:88.678084pt;}
.ya8{bottom:90.922533pt;}
.y111{bottom:91.129333pt;}
.y22{bottom:96.000000pt;}
.y1d8{bottom:97.236000pt;}
.y9e{bottom:97.549052pt;}
.ycb{bottom:97.674667pt;}
.y93{bottom:98.442667pt;}
.y4f{bottom:100.046667pt;}
.y110{bottom:102.064000pt;}
.y9a{bottom:102.665379pt;}
.y9d{bottom:104.024958pt;}
.y180{bottom:106.694667pt;}
.yac{bottom:108.150038pt;}
.yea{bottom:108.818667pt;}
.y70{bottom:111.314667pt;}
.yad{bottom:111.689811pt;}
.y21{bottom:114.065333pt;}
.y166{bottom:114.802667pt;}
.y150{bottom:115.261333pt;}
.y9c{bottom:115.557078pt;}
.y1d7{bottom:116.496000pt;}
.yca{bottom:116.936000pt;}
.y92{bottom:117.702667pt;}
.y4e{bottom:119.308000pt;}
.ya9{bottom:120.581701pt;}
.y9b{bottom:121.970731pt;}
.y19e{bottom:123.182667pt;}
.ya0{bottom:123.703647pt;}
.y17f{bottom:125.956000pt;}
.ye9{bottom:128.080000pt;}
.y9f{bottom:128.560577pt;}
.y6f{bottom:130.576000pt;}
.y20{bottom:132.130667pt;}
.y165{bottom:134.062667pt;}
.y14f{bottom:134.522667pt;}
.y1be{bottom:135.757333pt;}
.y4d{bottom:138.569333pt;}
.y10f{bottom:139.942667pt;}
.y130{bottom:142.086667pt;}
.y19d{bottom:142.444000pt;}
.y181{bottom:145.216000pt;}
.y17e{bottom:145.217333pt;}
.yc9{bottom:146.492000pt;}
.y98{bottom:146.811076pt;}
.y91{bottom:147.258667pt;}
.y6e{bottom:149.837333pt;}
.y1f{bottom:150.197333pt;}
.yaa{bottom:150.240869pt;}
.y164{bottom:153.324000pt;}
.y14e{bottom:153.782667pt;}
.y1bd{bottom:155.018667pt;}
.y4c{bottom:157.830667pt;}
.ye8{bottom:159.340000pt;}
.y12f{bottom:161.348000pt;}
.ye7{bottom:163.281333pt;}
.y17d{bottom:164.477333pt;}
.y96{bottom:165.855115pt;}
.y1e{bottom:168.262667pt;}
.y6d{bottom:169.098667pt;}
.y163{bottom:172.585333pt;}
.y14d{bottom:173.044000pt;}
.y1d6{bottom:174.280000pt;}
.y19c{bottom:174.988000pt;}
.y10e{bottom:175.009333pt;}
.y4b{bottom:177.092000pt;}
.yae{bottom:179.725290pt;}
.yab{bottom:179.900037pt;}
.y12e{bottom:180.608000pt;}
.y95{bottom:182.169764pt;}
.y17c{bottom:183.738667pt;}
.y1d{bottom:186.328000pt;}
.y1bc{bottom:187.564000pt;}
.y6c{bottom:188.360000pt;}
.y162{bottom:191.846667pt;}
.y14c{bottom:192.305333pt;}
.yc8{bottom:192.706667pt;}
.y90{bottom:193.474667pt;}
.y19b{bottom:194.249333pt;}
.yaf{bottom:196.174211pt;}
.y4a{bottom:196.352000pt;}
.ye6{bottom:198.482667pt;}
.y12d{bottom:199.869333pt;}
.y17b{bottom:203.000000pt;}
.y1c{bottom:204.393333pt;}
.y1bb{bottom:206.824000pt;}
.y6b{bottom:207.621333pt;}
.y10d{bottom:210.074667pt;}
.y161{bottom:211.108000pt;}
.yc7{bottom:211.968000pt;}
.y8f{bottom:212.736000pt;}
.y49{bottom:215.613333pt;}
.y12c{bottom:219.130667pt;}
.y14b{bottom:221.861333pt;}
.y17a{bottom:222.261333pt;}
.y1b{bottom:222.458667pt;}
.y1d5{bottom:226.085333pt;}
.y19a{bottom:226.794667pt;}
.y6a{bottom:226.881333pt;}
.y10c{bottom:229.336000pt;}
.y160{bottom:230.368000pt;}
.ye5{bottom:231.029333pt;}
.yc6{bottom:231.229333pt;}
.y8e{bottom:231.997333pt;}
.y48{bottom:234.874667pt;}
.y1ba{bottom:239.369333pt;}
.y1a{bottom:240.525333pt;}
.y179{bottom:241.522667pt;}
.ye4{bottom:241.964000pt;}
.y199{bottom:246.054667pt;}
.y69{bottom:246.142667pt;}
.y10b{bottom:248.597333pt;}
.y12b{bottom:248.686667pt;}
.y15f{bottom:249.629333pt;}
.yc5{bottom:250.490667pt;}
.y8d{bottom:251.257333pt;}
.y47{bottom:254.136000pt;}
.y19{bottom:258.590667pt;}
.y1b9{bottom:258.630667pt;}
.y178{bottom:260.782667pt;}
.y68{bottom:265.404000pt;}
.y14a{bottom:267.762667pt;}
.y15e{bottom:268.890667pt;}
.yc4{bottom:269.752000pt;}
.y8c{bottom:270.518667pt;}
.y46{bottom:273.397333pt;}
.y18{bottom:276.656000pt;}
.y1d4{bottom:277.890667pt;}
.y1b8{bottom:277.892000pt;}
.y10a{bottom:278.153333pt;}
.y177{bottom:280.044000pt;}
.y198{bottom:281.101333pt;}
.y149{bottom:282.288000pt;}
.y67{bottom:284.665333pt;}
.ye3{bottom:285.814667pt;}
.y148{bottom:287.024000pt;}
.y15d{bottom:288.152000pt;}
.yc3{bottom:289.013333pt;}
.y8b{bottom:289.780000pt;}
.y45{bottom:292.658667pt;}
.y17{bottom:294.721333pt;}
.y12a{bottom:294.902667pt;}
.y176{bottom:299.305333pt;}
.y66{bottom:303.926667pt;}
.y147{bottom:306.285333pt;}
.y15c{bottom:307.413333pt;}
.yc2{bottom:308.273333pt;}
.y8a{bottom:309.041333pt;}
.y1b7{bottom:310.436000pt;}
.y44{bottom:311.918667pt;}
.y16{bottom:312.786667pt;}
.y129{bottom:314.164000pt;}
.y109{bottom:317.849333pt;}
.ye2{bottom:318.361333pt;}
.y175{bottom:318.566667pt;}
.y146{bottom:322.225333pt;}
.y65{bottom:323.188000pt;}
.y15b{bottom:326.674667pt;}
.y145{bottom:326.961333pt;}
.yc1{bottom:327.534667pt;}
.y89{bottom:328.302667pt;}
.ye1{bottom:329.296000pt;}
.y1b6{bottom:329.697333pt;}
.y15{bottom:330.853333pt;}
.y43{bottom:331.180000pt;}
.y128{bottom:333.424000pt;}
.y174{bottom:337.828000pt;}
.y64{bottom:342.448000pt;}
.y1d3{bottom:342.980000pt;}
.y15a{bottom:345.934667pt;}
.y144{bottom:346.221333pt;}
.y88{bottom:347.564000pt;}
.y14{bottom:348.918667pt;}
.y1b5{bottom:348.958667pt;}
.y197{bottom:350.286667pt;}
.y42{bottom:350.441333pt;}
.y127{bottom:352.685333pt;}
.y173{bottom:357.089333pt;}
.yc0{bottom:357.090667pt;}
.y63{bottom:361.709333pt;}
.y159{bottom:365.196000pt;}
.y143{bottom:365.482667pt;}
.y87{bottom:366.824000pt;}
.y13{bottom:366.984000pt;}
.y196{bottom:369.548000pt;}
.y41{bottom:369.702667pt;}
.y108{bottom:371.073333pt;}
.y126{bottom:371.946667pt;}
.ye0{bottom:373.146667pt;}
.y1d2{bottom:375.525333pt;}
.y172{bottom:376.349333pt;}
.y62{bottom:380.970667pt;}
.y1b4{bottom:381.502667pt;}
.y158{bottom:384.457333pt;}
.y142{bottom:384.744000pt;}
.y12{bottom:385.049333pt;}
.y195{bottom:388.809333pt;}
.y40{bottom:388.964000pt;}
.y107{bottom:390.334667pt;}
.y125{bottom:391.208000pt;}
.y1d1{bottom:394.786667pt;}
.y171{bottom:395.610667pt;}
.y86{bottom:396.380000pt;}
.y61{bottom:400.232000pt;}
.y1b3{bottom:400.764000pt;}
.y11{bottom:403.114667pt;}
.ybf{bottom:403.306667pt;}
.y157{bottom:403.718667pt;}
.ydf{bottom:404.584000pt;}
.y3f{bottom:408.225333pt;}
.y106{bottom:409.596000pt;}
.y124{bottom:410.469333pt;}
.y141{bottom:414.300000pt;}
.y170{bottom:414.872000pt;}
.yde{bottom:415.518667pt;}
.y60{bottom:419.493333pt;}
.y10{bottom:421.181333pt;}
.ybe{bottom:422.568000pt;}
.y156{bottom:422.980000pt;}
.y194{bottom:424.010667pt;}
.y1d0{bottom:427.330667pt;}
.y3e{bottom:427.485333pt;}
.y105{bottom:428.857333pt;}
.y123{bottom:429.729333pt;}
.y1b2{bottom:433.308000pt;}
.y16f{bottom:434.133333pt;}
.y5f{bottom:438.753333pt;}
.yf{bottom:439.246667pt;}
.ybd{bottom:441.828000pt;}
.y85{bottom:442.596000pt;}
.y193{bottom:443.270667pt;}
.y1cf{bottom:446.592000pt;}
.y3d{bottom:446.746667pt;}
.y122{bottom:448.990667pt;}
.y1b1{bottom:452.569333pt;}
.y16e{bottom:453.394667pt;}
.ydd{bottom:453.533333pt;}
.ye{bottom:457.312000pt;}
.y5e{bottom:458.014667pt;}
.y155{bottom:458.025333pt;}
.y104{bottom:458.413333pt;}
.y140{bottom:460.201333pt;}
.ybc{bottom:461.089333pt;}
.y84{bottom:461.857333pt;}
.y192{bottom:462.532000pt;}
.y121{bottom:464.106667pt;}
.y3c{bottom:466.008000pt;}
.y120{bottom:468.252000pt;}
.y16d{bottom:472.656000pt;}
.ydc{bottom:472.794667pt;}
.yd{bottom:475.377333pt;}
.y5d{bottom:477.276000pt;}
.y1ce{bottom:479.136000pt;}
.y13f{bottom:479.462667pt;}
.ybb{bottom:480.350667pt;}
.y83{bottom:481.118667pt;}
.y191{bottom:481.793333pt;}
.y11f{bottom:483.368000pt;}
.y1b0{bottom:485.114667pt;}
.y3b{bottom:485.269333pt;}
.y11e{bottom:487.513333pt;}
.y16c{bottom:491.916000pt;}
.ydb{bottom:492.056000pt;}
.yc{bottom:493.442667pt;}
.y5c{bottom:496.537333pt;}
.y1cd{bottom:498.397333pt;}
.y13e{bottom:498.724000pt;}
.yba{bottom:499.612000pt;}
.y82{bottom:500.378667pt;}
.y190{bottom:501.054667pt;}
.y1af{bottom:504.376000pt;}
.y3a{bottom:504.530667pt;}
.y103{bottom:504.608000pt;}
.y154{bottom:505.669333pt;}
.y16b{bottom:511.177333pt;}
.yda{bottom:511.316000pt;}
.yb{bottom:511.509333pt;}
.y1cc{bottom:517.658667pt;}
.y13d{bottom:517.984000pt;}
.yb9{bottom:518.873333pt;}
.y18f{bottom:520.316000pt;}
.y39{bottom:523.792000pt;}
.y102{bottom:523.869333pt;}
.y153{bottom:524.930667pt;}
.y81{bottom:529.934667pt;}
.y16a{bottom:530.438667pt;}
.yd9{bottom:530.577333pt;}
.y11d{bottom:533.120000pt;}
.y1ae{bottom:536.920000pt;}
.ya{bottom:536.944000pt;}
.y13c{bottom:537.245333pt;}
.y18e{bottom:539.576000pt;}
.y5b{bottom:543.029333pt;}
.y38{bottom:543.052000pt;}
.y152{bottom:544.192000pt;}
.y169{bottom:549.700000pt;}
.yd8{bottom:549.838667pt;}
.y1cb{bottom:550.204000pt;}
.y101{bottom:552.072000pt;}
.y11c{bottom:552.381333pt;}
.y1ad{bottom:556.181333pt;}
.y13b{bottom:556.506667pt;}
.y18d{bottom:558.837333pt;}
.y5a{bottom:562.290667pt;}
.y37{bottom:562.313333pt;}
.y151{bottom:563.453333pt;}
.yb8{bottom:565.365333pt;}
.y100{bottom:566.462667pt;}
.y1ca{bottom:569.464000pt;}
.y11b{bottom:571.642667pt;}
.y1ac{bottom:575.442667pt;}
.y13a{bottom:575.768000pt;}
.y80{bottom:576.150667pt;}
.y18c{bottom:578.098667pt;}
.yd7{bottom:579.394667pt;}
.y59{bottom:581.552000pt;}
.y36{bottom:581.574667pt;}
.yb7{bottom:584.626667pt;}
.y9{bottom:585.288000pt;}
.y1c9{bottom:588.725333pt;}
.y11a{bottom:590.902667pt;}
.y139{bottom:595.029333pt;}
.y7f{bottom:595.412000pt;}
.y168{bottom:596.192000pt;}
.y18b{bottom:597.360000pt;}
.y58{bottom:600.813333pt;}
.y35{bottom:600.836000pt;}
.y8{bottom:603.354667pt;}
.yb6{bottom:603.888000pt;}
.y1ab{bottom:607.986667pt;}
.y119{bottom:610.164000pt;}
.yff{bottom:613.773333pt;}
.y138{bottom:614.290667pt;}
.y7e{bottom:614.673333pt;}
.y167{bottom:615.453333pt;}
.y18a{bottom:616.621333pt;}
.y57{bottom:620.074667pt;}
.y34{bottom:620.097333pt;}
.y1c8{bottom:621.270667pt;}
.y7{bottom:621.420000pt;}
.yb5{bottom:623.148000pt;}
.yd6{bottom:625.610667pt;}
.y1aa{bottom:627.248000pt;}
.y137{bottom:633.550667pt;}
.y7d{bottom:633.933333pt;}
.y189{bottom:635.882667pt;}
.yfc{bottom:636.342667pt;}
.y56{bottom:639.334667pt;}
.y33{bottom:639.357333pt;}
.yd5{bottom:639.374667pt;}
.y6{bottom:639.485333pt;}
.y1c7{bottom:640.532000pt;}
.yb4{bottom:642.409333pt;}
.yfe{bottom:644.212000pt;}
.yd4{bottom:644.870667pt;}
.y1a9{bottom:646.509333pt;}
.y7c{bottom:653.194667pt;}
.y188{bottom:655.142667pt;}
.yf9{bottom:655.145333pt;}
.y5{bottom:657.550667pt;}
.y55{bottom:658.596000pt;}
.y32{bottom:658.618667pt;}
.yb3{bottom:661.670667pt;}
.y136{bottom:663.106667pt;}
.yd3{bottom:664.132000pt;}
.yfd{bottom:665.929333pt;}
.yfb{bottom:670.289333pt;}
.y7b{bottom:672.456000pt;}
.y1c6{bottom:673.076000pt;}
.y187{bottom:674.404000pt;}
.yfa{bottom:675.070667pt;}
.y54{bottom:677.857333pt;}
.y31{bottom:677.880000pt;}
.y1a8{bottom:679.053333pt;}
.yb2{bottom:680.932000pt;}
.yf8{bottom:688.472000pt;}
.y1c5{bottom:692.337333pt;}
.y186{bottom:693.665333pt;}
.yd2{bottom:695.570667pt;}
.y53{bottom:697.118667pt;}
.y30{bottom:697.141333pt;}
.y1a7{bottom:698.314667pt;}
.yb1{bottom:700.193333pt;}
.y135{bottom:704.397333pt;}
.yd1{bottom:706.504000pt;}
.y7a{bottom:707.502667pt;}
.yf7{bottom:707.733333pt;}
.y1c4{bottom:711.598667pt;}
.y185{bottom:712.926667pt;}
.y52{bottom:716.380000pt;}
.y2f{bottom:716.402667pt;}
.y1a6{bottom:717.576000pt;}
.yb0{bottom:719.453333pt;}
.y134{bottom:723.658667pt;}
.y184{bottom:732.188000pt;}
.y51{bottom:735.640000pt;}
.y2e{bottom:735.664000pt;}
.y79{bottom:736.726667pt;}
.yf6{bottom:737.289333pt;}
.y133{bottom:742.920000pt;}
.y1c3{bottom:744.142667pt;}
.yd0{bottom:744.518667pt;}
.y1a5{bottom:750.120000pt;}
.y183{bottom:751.449333pt;}
.y94{bottom:751.998667pt;}
.y50{bottom:754.901333pt;}
.y2d{bottom:754.924000pt;}
.y4{bottom:761.710667pt;}
.y132{bottom:762.181333pt;}
.y1c2{bottom:763.404000pt;}
.ycf{bottom:763.780000pt;}
.y1a4{bottom:769.381333pt;}
.y182{bottom:770.709333pt;}
.y2c{bottom:774.185333pt;}
.y131{bottom:781.441333pt;}
.y1c1{bottom:782.665333pt;}
.yce{bottom:783.041333pt;}
.yf5{bottom:783.485333pt;}
.y78{bottom:789.970667pt;}
.y2b{bottom:793.446667pt;}
.y3{bottom:799.104000pt;}
.y1a3{bottom:801.926667pt;}
.yf4{bottom:802.746667pt;}
.y77{bottom:809.232000pt;}
.ycd{bottom:812.597333pt;}
.y2a{bottom:812.708000pt;}
.y1a2{bottom:821.186667pt;}
.yf3{bottom:822.008000pt;}
.y76{bottom:828.493333pt;}
.y29{bottom:831.969333pt;}
.y1c0{bottom:834.470667pt;}
.y118{bottom:836.452000pt;}
.y1a1{bottom:840.448000pt;}
.yf0{bottom:844.576000pt;}
.y2{bottom:846.426667pt;}
.y75{bottom:847.754667pt;}
.y28{bottom:851.230667pt;}
.ycc{bottom:852.293333pt;}
.yf2{bottom:852.445333pt;}
.y1bf{bottom:853.732000pt;}
.y117{bottom:855.713333pt;}
.yed{bottom:863.378667pt;}
.y74{bottom:867.016000pt;}
.yf1{bottom:870.017333pt;}
.y27{bottom:870.490667pt;}
.y1a0{bottom:872.993333pt;}
.y116{bottom:874.973333pt;}
.yef{bottom:878.522667pt;}
.y1{bottom:879.634667pt;}
.yee{bottom:883.304000pt;}
.y73{bottom:886.276000pt;}
.y26{bottom:889.752000pt;}
.y115{bottom:891.644000pt;}
.y19f{bottom:892.254667pt;}
.yec{bottom:895.242667pt;}
.y114{bottom:896.380000pt;}
.y72{bottom:905.537333pt;}
.y25{bottom:909.013333pt;}
.yeb{bottom:914.504000pt;}
.y113{bottom:914.822667pt;}
.y71{bottom:924.798667pt;}
.y112{bottom:934.084000pt;}
.y24{bottom:944.060000pt;}
.h22{height:2.550443pt;}
.h12{height:15.208027pt;}
.h15{height:17.067503pt;}
.hf{height:18.489795pt;}
.h11{height:21.470156pt;}
.h16{height:22.350302pt;}
.he{height:23.259336pt;}
.h17{height:24.153926pt;}
.h14{height:24.382147pt;}
.h13{height:25.048516pt;}
.h10{height:26.413993pt;}
.hd{height:26.837695pt;}
.hc{height:28.626875pt;}
.h21{height:31.880400pt;}
.h4{height:40.610943pt;}
.h3{height:41.658217pt;}
.h5{height:43.636400pt;}
.h8{height:47.820800pt;}
.h7{height:52.995067pt;}
.h6{height:54.813733pt;}
.ha{height:55.016400pt;}
.h2c{height:55.021733pt;}
.h2{height:57.384800pt;}
.h1d{height:58.205733pt;}
.h20{height:58.211067pt;}
.h2b{height:58.621733pt;}
.h19{height:62.275067pt;}
.h29{height:62.877733pt;}
.h1f{height:63.586133pt;}
.h25{height:64.402133pt;}
.h9{height:68.861600pt;}
.h1a{height:69.804800pt;}
.h24{height:71.603067pt;}
.h2e{height:73.960400pt;}
.h2d{height:73.965733pt;}
.h1e{height:73.971067pt;}
.h1{height:77.911400pt;}
.h2a{height:90.951467pt;}
.h18{height:90.956800pt;}
.h27{height:91.554133pt;}
.h1b{height:92.454443pt;}
.h28{height:101.843067pt;}
.h1c{height:151.245733pt;}
.h26{height:154.584400pt;}
.h23{height:173.368400pt;}
.hb{height:207.999360pt;}
.h0{height:1056.000000pt;}
.w1{width:623.998080pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:63.025091pt;}
.x12{left:65.913971pt;}
.x10{left:74.285944pt;}
.x14{left:89.150285pt;}
.x11{left:91.016020pt;}
.xe{left:96.000000pt;}
.x6{left:102.498667pt;}
.x4d{left:103.804000pt;}
.x5{left:108.788000pt;}
.x7{left:109.977333pt;}
.x8{left:111.238667pt;}
.xf{left:119.412000pt;}
.x1{left:122.938667pt;}
.x4e{left:128.082667pt;}
.xc{left:135.020000pt;}
.xb{left:156.838667pt;}
.x1c{left:206.322439pt;}
.x32{left:208.725333pt;}
.x43{left:217.788000pt;}
.x2e{left:231.178667pt;}
.x1d{left:239.138310pt;}
.x4b{left:255.048000pt;}
.x2{left:258.980000pt;}
.x44{left:274.870667pt;}
.x49{left:276.953333pt;}
.x37{left:279.077333pt;}
.x45{left:294.902667pt;}
.x34{left:300.260000pt;}
.x3e{left:305.101333pt;}
.x41{left:311.730667pt;}
.x35{left:313.220000pt;}
.x15{left:323.486083pt;}
.x4{left:330.612000pt;}
.x3{left:336.074667pt;}
.x16{left:337.483158pt;}
.x39{left:340.320000pt;}
.x38{left:344.194667pt;}
.x9{left:350.404000pt;}
.x1a{left:355.694988pt;}
.x19{left:356.902450pt;}
.x3f{left:358.254667pt;}
.x1b{left:361.130446pt;}
.x28{left:369.753333pt;}
.xa{left:375.998667pt;}
.x33{left:382.702667pt;}
.x40{left:385.750667pt;}
.x3a{left:386.976000pt;}
.x42{left:396.824000pt;}
.x17{left:398.601636pt;}
.x4c{left:400.196000pt;}
.x18{left:402.011835pt;}
.xd{left:404.097333pt;}
.x2f{left:408.809333pt;}
.x29{left:423.650667pt;}
.x3c{left:435.413333pt;}
.x2a{left:441.912000pt;}
.x36{left:451.901333pt;}
.x3b{left:453.912000pt;}
.x2c{left:457.737333pt;}
.x4a{left:470.921333pt;}
.x2d{left:475.998667pt;}
.x25{left:484.471512pt;}
.x24{left:486.511784pt;}
.x23{left:489.682781pt;}
.x1e{left:501.629503pt;}
.x26{left:509.160820pt;}
.x27{left:512.594924pt;}
.x46{left:514.508000pt;}
.x3d{left:532.588000pt;}
.x1f{left:551.627356pt;}
.x20{left:554.192676pt;}
.x21{left:555.798892pt;}
.x22{left:558.364212pt;}
.x30{left:562.224000pt;}
.x31{left:580.485333pt;}
.x48{left:607.972000pt;}
.x47{left:638.473333pt;}
.x2b{left:679.490667pt;}
}




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