
    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_a1323db89e111a21aa4c6c28.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_123807f87dad9cca650fffdd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a5e22b3afbb64da55137f991.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1241f1998fefc51ed0ff3204.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_1b9ece3e768d1dce3a5f4a22.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.856934;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_e796fcb3736af33ae9a03587.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7599cfc08519386184ba4129.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.737305;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_2f3c373e455d80f5a6e0c729.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.649414;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_e153f1a8b1f58a04bbee577b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_9c9836b70d0d06bb3b3370cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682129;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_10fd842da7d62524c91eb957.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.873535;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_89d356eae958f0e7027d26ab.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ffb0bed4952ea640942c1710.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.049805;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_4a1970b4385b818182a4397b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.706055;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_b71b13de463450c3ceff5aeb.woff2')format("woff");}.fff{font-family:fff;line-height:0.861816;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:ff10;src:url('chunks/assets/font_0cd23b4bf9d1c76b84bc23ba.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.718750;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:ff11;src:url('chunks/assets/font_0cfeaa8b658d40a7a8fb65b6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.664062;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:ff12;src:url('chunks/assets/font_526e6664e7d47ff58f09fe2b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.971191;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;}
.mc{transform:matrix(0.000000,-0.249914,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249914,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249914,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249932,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249932,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249932,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249940,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249940,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249940,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249941,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249941,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249941,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250372,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250372,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250372,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,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);}
.m7{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250087,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);}
.vb{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v8{vertical-align:-14.400000px;}
.v6{vertical-align:-10.800000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:14.400000px;}
.v1{vertical-align:20.880000px;}
.ve{vertical-align:22.320000px;}
.va{vertical-align:23.788800px;}
.v3{vertical-align:27.360000px;}
.v7{vertical-align:36.000000px;}
.vd{vertical-align:42.469920px;}
.v5{vertical-align:46.800000px;}
.vc{vertical-align:49.680000px;}
.vf{vertical-align:73.440000px;}
.ls3f{letter-spacing:-5.601211px;}
.ls3d{letter-spacing:-5.263344px;}
.ls39{letter-spacing:-5.049143px;}
.ls51{letter-spacing:-4.762982px;}
.ls37{letter-spacing:-4.744560px;}
.ls40{letter-spacing:-4.326010px;}
.ls3e{letter-spacing:-4.263025px;}
.ls52{letter-spacing:-3.900059px;}
.ls3a{letter-spacing:-3.892922px;}
.ls38{letter-spacing:-3.842861px;}
.ls1b{letter-spacing:-2.160000px;}
.ls6e{letter-spacing:-2.156803px;}
.ls21{letter-spacing:-1.512000px;}
.ls74{letter-spacing:-1.457280px;}
.ls30{letter-spacing:-1.440000px;}
.ls6b{letter-spacing:-1.342915px;}
.ls68{letter-spacing:-1.302566px;}
.ls5a{letter-spacing:-1.140480px;}
.ls4b{letter-spacing:-1.008000px;}
.ls34{letter-spacing:-0.950400px;}
.ls23{letter-spacing:-0.936000px;}
.ls75{letter-spacing:-0.823680px;}
.ls33{letter-spacing:-0.794880px;}
.ls22{letter-spacing:-0.792000px;}
.ls5b{letter-spacing:-0.760320px;}
.ls4a{letter-spacing:-0.720000px;}
.ls36{letter-spacing:-0.696960px;}
.ls7e{letter-spacing:-0.662400px;}
.ls7a{letter-spacing:-0.648000px;}
.ls43{letter-spacing:-0.570240px;}
.ls7d{letter-spacing:-0.463680px;}
.ls29{letter-spacing:-0.432000px;}
.ls83{letter-spacing:-0.397440px;}
.ls4f{letter-spacing:-0.380160px;}
.lsd{letter-spacing:-0.336960px;}
.ls67{letter-spacing:-0.332338px;}
.ls44{letter-spacing:-0.316800px;}
.lsf{letter-spacing:-0.288000px;}
.ls6c{letter-spacing:-0.284861px;}
.ls58{letter-spacing:-0.264960px;}
.ls11{letter-spacing:-0.216000px;}
.ls7c{letter-spacing:-0.198720px;}
.ls42{letter-spacing:-0.190080px;}
.ls65{letter-spacing:-0.168480px;}
.ls12{letter-spacing:-0.144000px;}
.ls81{letter-spacing:-0.132480px;}
.lsc{letter-spacing:-0.119520px;}
.ls19{letter-spacing:-0.084240px;}
.ls13{letter-spacing:-0.072000px;}
.ls57{letter-spacing:-0.066240px;}
.ls35{letter-spacing:-0.063360px;}
.lsa{letter-spacing:-0.059760px;}
.ls9{letter-spacing:0.000000px;}
.ls71{letter-spacing:0.022320px;}
.ls66{letter-spacing:0.059760px;}
.ls41{letter-spacing:0.066240px;}
.ls1a{letter-spacing:0.072000px;}
.ls80{letter-spacing:0.072864px;}
.lsb{letter-spacing:0.119520px;}
.ls7b{letter-spacing:0.132480px;}
.lse{letter-spacing:0.144000px;}
.ls5d{letter-spacing:0.168480px;}
.ls31{letter-spacing:0.187200px;}
.ls78{letter-spacing:0.223200px;}
.ls2{letter-spacing:0.233280px;}
.ls3{letter-spacing:0.264960px;}
.ls1{letter-spacing:0.265080px;}
.ls76{letter-spacing:0.288000px;}
.ls3c{letter-spacing:0.316800px;}
.ls82{letter-spacing:0.331200px;}
.ls72{letter-spacing:0.334080px;}
.ls18{letter-spacing:0.336960px;}
.ls6{letter-spacing:0.360000px;}
.ls69{letter-spacing:0.406941px;}
.ls10{letter-spacing:0.432000px;}
.ls61{letter-spacing:0.462960px;}
.ls5{letter-spacing:0.504000px;}
.ls27{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.747648px;}
.ls6d{letter-spacing:0.854582px;}
.ls6f{letter-spacing:1.220832px;}
.ls20{letter-spacing:1.440000px;}
.ls70{letter-spacing:1.447200px;}
.ls2a{letter-spacing:1.589760px;}
.ls50{letter-spacing:2.154240px;}
.ls7{letter-spacing:2.160000px;}
.ls79{letter-spacing:2.185920px;}
.ls6a{letter-spacing:2.278886px;}
.ls2c{letter-spacing:2.282400px;}
.ls53{letter-spacing:2.880000px;}
.ls2e{letter-spacing:3.177360px;}
.ls47{letter-spacing:3.600000px;}
.ls5c{letter-spacing:3.611520px;}
.ls1c{letter-spacing:4.320000px;}
.ls2f{letter-spacing:4.608000px;}
.ls45{letter-spacing:5.040000px;}
.ls28{letter-spacing:5.760000px;}
.ls8{letter-spacing:6.480000px;}
.ls16{letter-spacing:6.494400px;}
.ls5e{letter-spacing:7.200000px;}
.ls4e{letter-spacing:7.223040px;}
.ls7f{letter-spacing:7.352640px;}
.ls2b{letter-spacing:7.920000px;}
.ls1e{letter-spacing:8.640000px;}
.ls63{letter-spacing:9.097920px;}
.ls1f{letter-spacing:9.360000px;}
.ls26{letter-spacing:10.080000px;}
.ls49{letter-spacing:10.800000px;}
.ls4d{letter-spacing:11.520000px;}
.ls48{letter-spacing:12.960000px;}
.ls25{letter-spacing:13.680000px;}
.ls24{letter-spacing:14.400000px;}
.ls59{letter-spacing:15.120000px;}
.ls17{letter-spacing:15.840000px;}
.ls54{letter-spacing:18.282240px;}
.ls4{letter-spacing:19.440000px;}
.ls46{letter-spacing:20.160000px;}
.ls14{letter-spacing:21.228480px;}
.ls77{letter-spacing:21.600000px;}
.ls55{letter-spacing:21.925440px;}
.ls5f{letter-spacing:22.997520px;}
.ls60{letter-spacing:23.502960px;}
.ls1d{letter-spacing:26.640000px;}
.ls4c{letter-spacing:33.840000px;}
.ls73{letter-spacing:33.984000px;}
.ls15{letter-spacing:34.560000px;}
.ls62{letter-spacing:38.838960px;}
.ls2d{letter-spacing:59.392800px;}
.ls32{letter-spacing:106.930521px;}
.ls3b{letter-spacing:196.585898px;}
.ls64{letter-spacing:211.907236px;}
.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;}
}
.wsc6{word-spacing:-84.240000px;}
.ws6d{word-spacing:-72.000000px;}
.wsc4{word-spacing:-59.760000px;}
.wsc3{word-spacing:-59.111208px;}
.ws6c{word-spacing:-51.120000px;}
.wsc5{word-spacing:-30.042000px;}
.ws0{word-spacing:-23.940000px;}
.ws2c{word-spacing:-21.396960px;}
.ws2d{word-spacing:-20.975760px;}
.ws3{word-spacing:-20.723040px;}
.ws8b{word-spacing:-19.710589px;}
.ws2e{word-spacing:-18.720000px;}
.wsc7{word-spacing:-18.701280px;}
.wsc2{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.432000px;}
.wsdc{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws81{word-spacing:-17.767870px;}
.ws8{word-spacing:-17.712000px;}
.ws64{word-spacing:-17.568000px;}
.ws6b{word-spacing:-17.208000px;}
.ws6e{word-spacing:-17.064000px;}
.wsc{word-spacing:-16.560000px;}
.wsd7{word-spacing:-16.272000px;}
.ws4d{word-spacing:-15.840000px;}
.ws7e{word-spacing:-15.776640px;}
.wsba{word-spacing:-15.649920px;}
.wsdb{word-spacing:-15.459840px;}
.wsfc{word-spacing:-15.301440px;}
.wsb{word-spacing:-15.235200px;}
.wsbd{word-spacing:-15.079680px;}
.wsb9{word-spacing:-15.036480px;}
.wsd9{word-spacing:-15.016320px;}
.ws7c{word-spacing:-14.970240px;}
.wsb7{word-spacing:-14.904000px;}
.ws7d{word-spacing:-14.889600px;}
.ws2{word-spacing:-14.820480px;}
.wsb8{word-spacing:-14.705280px;}
.wse4{word-spacing:-14.506560px;}
.wsd8{word-spacing:-14.382720px;}
.wsfb{word-spacing:-14.307840px;}
.wsd{word-spacing:-13.560000px;}
.ws89{word-spacing:-13.026776px;}
.ws8a{word-spacing:-12.428818px;}
.ws78{word-spacing:-12.060000px;}
.ws80{word-spacing:-11.203834px;}
.wsc8{word-spacing:-10.397419px;}
.ws1{word-spacing:-9.720000px;}
.ws7b{word-spacing:-9.437760px;}
.wsca{word-spacing:-8.912074px;}
.ws27{word-spacing:-4.464000px;}
.ws16{word-spacing:-4.320000px;}
.wse0{word-spacing:-4.176000px;}
.ws17{word-spacing:-4.032000px;}
.ws4e{word-spacing:-3.744000px;}
.ws45{word-spacing:-3.600000px;}
.ws110{word-spacing:-3.510720px;}
.wsce{word-spacing:-3.500647px;}
.wse9{word-spacing:-3.384000px;}
.ws44{word-spacing:-3.312000px;}
.wsd3{word-spacing:-3.255552px;}
.wsf8{word-spacing:-3.179520px;}
.ws77{word-spacing:-3.024000px;}
.ws19{word-spacing:-2.880000px;}
.wsf9{word-spacing:-2.649600px;}
.ws76{word-spacing:-2.592000px;}
.wsfa{word-spacing:-2.450880px;}
.ws48{word-spacing:-2.304000px;}
.ws3e{word-spacing:-2.160000px;}
.wsd2{word-spacing:-2.116109px;}
.ws3f{word-spacing:-2.016000px;}
.ws120{word-spacing:-1.920960px;}
.ws15{word-spacing:-1.872000px;}
.wscf{word-spacing:-1.871929px;}
.ws11c{word-spacing:-1.854720px;}
.ws11d{word-spacing:-1.722240px;}
.ws118{word-spacing:-1.589760px;}
.ws5a{word-spacing:-1.584000px;}
.ws2f{word-spacing:-1.440000px;}
.wsd0{word-spacing:-1.302221px;}
.ws94{word-spacing:-1.296000px;}
.ws107{word-spacing:-1.192320px;}
.ws59{word-spacing:-1.152000px;}
.ws5d{word-spacing:-0.864000px;}
.ws82{word-spacing:-0.861120px;}
.ws14{word-spacing:-0.720000px;}
.ws104{word-spacing:-0.662400px;}
.ws5c{word-spacing:-0.576000px;}
.ws103{word-spacing:-0.529920px;}
.ws7a{word-spacing:-0.505440px;}
.ws23{word-spacing:-0.504000px;}
.ws21{word-spacing:-0.432000px;}
.ws11f{word-spacing:-0.331200px;}
.ws12{word-spacing:-0.264960px;}
.wsd6{word-spacing:-0.244166px;}
.wsf{word-spacing:-0.191520px;}
.ws25{word-spacing:-0.144000px;}
.wsee{word-spacing:-0.132480px;}
.ws43{word-spacing:-0.072000px;}
.ws8e{word-spacing:-0.066240px;}
.wsda{word-spacing:-0.041760px;}
.wse{word-spacing:0.000000px;}
.ws11{word-spacing:0.059760px;}
.ws8f{word-spacing:0.063360px;}
.wsf7{word-spacing:0.066240px;}
.wse1{word-spacing:0.072000px;}
.wsbb{word-spacing:0.132480px;}
.ws20{word-spacing:0.144000px;}
.ws90{word-spacing:0.190080px;}
.ws106{word-spacing:0.198720px;}
.ws52{word-spacing:0.216000px;}
.ws10{word-spacing:0.239040px;}
.ws10a{word-spacing:0.264960px;}
.ws18{word-spacing:0.288000px;}
.ws92{word-spacing:0.316800px;}
.wsef{word-spacing:0.331200px;}
.wsaa{word-spacing:0.380160px;}
.wsfd{word-spacing:0.397440px;}
.ws105{word-spacing:0.463680px;}
.ws91{word-spacing:0.570240px;}
.ws116{word-spacing:0.596160px;}
.wse7{word-spacing:0.648000px;}
.ws100{word-spacing:0.662400px;}
.ws84{word-spacing:0.696960px;}
.ws2b{word-spacing:0.720000px;}
.wsec{word-spacing:0.794880px;}
.ws83{word-spacing:0.927360px;}
.ws5b{word-spacing:0.936000px;}
.ws6a{word-spacing:1.008000px;}
.wsed{word-spacing:1.126080px;}
.wsc1{word-spacing:1.140480px;}
.wsd5{word-spacing:1.261526px;}
.ws1d{word-spacing:1.296000px;}
.ws37{word-spacing:1.440000px;}
.ws4f{word-spacing:1.512000px;}
.ws6f{word-spacing:1.584000px;}
.ws5f{word-spacing:1.728000px;}
.ws3d{word-spacing:2.016000px;}
.wsac{word-spacing:2.154240px;}
.ws3c{word-spacing:2.160000px;}
.ws87{word-spacing:2.233644px;}
.wsb0{word-spacing:2.237739px;}
.wsd1{word-spacing:2.319581px;}
.wse8{word-spacing:2.376000px;}
.ws10c{word-spacing:2.384640px;}
.ws1c{word-spacing:2.448000px;}
.ws8d{word-spacing:2.482137px;}
.ws10d{word-spacing:2.517120px;}
.wsbf{word-spacing:2.736000px;}
.wsb1{word-spacing:2.812181px;}
.ws24{word-spacing:2.880000px;}
.wsf1{word-spacing:2.980800px;}
.wsf2{word-spacing:3.113280px;}
.wsd4{word-spacing:3.133469px;}
.ws9f{word-spacing:3.168000px;}
.ws119{word-spacing:3.245760px;}
.ws9e{word-spacing:3.456000px;}
.wsf3{word-spacing:3.510720px;}
.ws51{word-spacing:3.600000px;}
.wscb{word-spacing:3.611520px;}
.wscc{word-spacing:3.674880px;}
.ws65{word-spacing:3.744000px;}
.ws50{word-spacing:3.888000px;}
.wsf5{word-spacing:3.974400px;}
.wsf0{word-spacing:4.040640px;}
.ws68{word-spacing:4.176000px;}
.wsf6{word-spacing:4.239360px;}
.wsad{word-spacing:4.308480px;}
.ws31{word-spacing:4.320000px;}
.wsf4{word-spacing:4.438080px;}
.ws11e{word-spacing:4.504320px;}
.ws75{word-spacing:4.608000px;}
.wsae{word-spacing:4.625280px;}
.ws85{word-spacing:4.744560px;}
.wsaf{word-spacing:4.762982px;}
.wscd{word-spacing:4.896000px;}
.ws2a{word-spacing:5.040000px;}
.ws86{word-spacing:5.049143px;}
.ws93{word-spacing:5.184000px;}
.ws67{word-spacing:5.328000px;}
.ws8c{word-spacing:5.601211px;}
.wsb4{word-spacing:5.616000px;}
.ws69{word-spacing:5.760000px;}
.ws96{word-spacing:5.976000px;}
.ws79{word-spacing:6.048000px;}
.ws1f{word-spacing:6.336000px;}
.ws40{word-spacing:6.480000px;}
.ws36{word-spacing:6.768000px;}
.ws34{word-spacing:7.056000px;}
.ws35{word-spacing:7.200000px;}
.wsa9{word-spacing:7.223040px;}
.ws95{word-spacing:7.272000px;}
.wsa8{word-spacing:7.286400px;}
.ws102{word-spacing:7.418880px;}
.ws101{word-spacing:7.485120px;}
.ws1e{word-spacing:7.488000px;}
.ws123{word-spacing:7.617600px;}
.ws70{word-spacing:7.920000px;}
.ws10b{word-spacing:8.147520px;}
.ws97{word-spacing:8.208000px;}
.ws115{word-spacing:8.280000px;}
.wsa6{word-spacing:8.496000px;}
.ws28{word-spacing:8.640000px;}
.wsea{word-spacing:8.743680px;}
.ws98{word-spacing:8.784000px;}
.wseb{word-spacing:8.809920px;}
.wsa7{word-spacing:8.928000px;}
.wsdd{word-spacing:9.216000px;}
.ws1a{word-spacing:9.360000px;}
.ws125{word-spacing:9.472320px;}
.ws124{word-spacing:9.604800px;}
.ws1b{word-spacing:9.648000px;}
.ws5e{word-spacing:9.936000px;}
.ws30{word-spacing:10.080000px;}
.ws66{word-spacing:10.368000px;}
.ws3b{word-spacing:10.800000px;}
.ws33{word-spacing:11.088000px;}
.ws32{word-spacing:11.376000px;}
.wsa5{word-spacing:11.520000px;}
.wsa0{word-spacing:11.592000px;}
.ws61{word-spacing:12.240000px;}
.ws62{word-spacing:12.528000px;}
.ws9c{word-spacing:12.816000px;}
.ws9d{word-spacing:13.176000px;}
.ws121{word-spacing:13.181760px;}
.wsa2{word-spacing:13.680000px;}
.wsa1{word-spacing:13.968000px;}
.wsfe{word-spacing:14.109120px;}
.ws55{word-spacing:14.256000px;}
.ws54{word-spacing:14.400000px;}
.ws56{word-spacing:14.688000px;}
.wsc0{word-spacing:14.976000px;}
.wsb3{word-spacing:15.120000px;}
.ws122{word-spacing:15.235200px;}
.ws63{word-spacing:15.408000px;}
.ws4c{word-spacing:15.840000px;}
.ws26{word-spacing:16.128000px;}
.wsbe{word-spacing:16.416000px;}
.wsde{word-spacing:16.560000px;}
.wse2{word-spacing:17.136000px;}
.wsbc{word-spacing:17.280000px;}
.ws108{word-spacing:17.487360px;}
.wse3{word-spacing:17.568000px;}
.ws109{word-spacing:17.686080px;}
.ws46{word-spacing:18.000000px;}
.ws10f{word-spacing:18.216000px;}
.ws47{word-spacing:18.288000px;}
.wsb2{word-spacing:18.720000px;}
.wsb6{word-spacing:18.864000px;}
.wsb5{word-spacing:19.008000px;}
.ws13{word-spacing:19.440000px;}
.ws22{word-spacing:19.728000px;}
.ws53{word-spacing:20.880000px;}
.wse5{word-spacing:21.600000px;}
.ws10e{word-spacing:21.660480px;}
.wsdf{word-spacing:22.896000px;}
.ws9a{word-spacing:23.040000px;}
.ws9b{word-spacing:23.328000px;}
.ws4a{word-spacing:23.760000px;}
.ws29{word-spacing:24.480000px;}
.wsff{word-spacing:24.707520px;}
.ws58{word-spacing:25.776000px;}
.ws3a{word-spacing:25.920000px;}
.ws57{word-spacing:26.208000px;}
.ws49{word-spacing:26.640000px;}
.ws71{word-spacing:26.856000px;}
.ws72{word-spacing:26.928000px;}
.ws99{word-spacing:29.088000px;}
.ws74{word-spacing:30.960000px;}
.ws73{word-spacing:31.248000px;}
.ws4b{word-spacing:31.680000px;}
.wse6{word-spacing:31.968000px;}
.wsa4{word-spacing:33.840000px;}
.ws39{word-spacing:34.416000px;}
.wsa3{word-spacing:34.560000px;}
.ws117{word-spacing:34.776000px;}
.ws38{word-spacing:34.848000px;}
.ws42{word-spacing:35.856000px;}
.ws41{word-spacing:36.288000px;}
.ws113{word-spacing:39.081600px;}
.ws111{word-spacing:39.280320px;}
.ws112{word-spacing:39.810240px;}
.ws114{word-spacing:40.207680px;}
.ws11a{word-spacing:45.573120px;}
.ws11b{word-spacing:46.301760px;}
.ws60{word-spacing:60.480000px;}
.ws7f{word-spacing:71.702163px;}
.wsab{word-spacing:137.693491px;}
.ws88{word-spacing:141.518162px;}
.wsc9{word-spacing:178.103754px;}
._98{margin-left:-2810.948112px;}
._51{margin-left:-2809.798272px;}
._6d{margin-left:-2807.492544px;}
._4f{margin-left:-2805.192864px;}
._6f{margin-left:-2802.025728px;}
._97{margin-left:-2800.762056px;}
._6b{margin-left:-2797.953624px;}
._41{margin-left:-2795.754384px;}
._85{margin-left:-2794.597632px;}
._4c{margin-left:-2793.488328px;}
._72{margin-left:-2792.016864px;}
._6a{margin-left:-2789.785296px;}
._38{margin-left:-2788.411248px;}
._4b{margin-left:-2786.969088px;}
._3d{margin-left:-2784.957192px;}
._40{margin-left:-2783.517408px;}
._45{margin-left:-2782.002816px;}
._9c{margin-left:-2780.807256px;}
._1c{margin-left:-2779.700544px;}
._44{margin-left:-2778.231240px;}
._39{margin-left:-2777.109408px;}
._4a{margin-left:-2775.013632px;}
._95{margin-left:-2773.650816px;}
._2d{margin-left:-2771.848224px;}
._1d{margin-left:-2770.521624px;}
._12{margin-left:-2768.894928px;}
._27{margin-left:-2766.018816px;}
._24{margin-left:-2761.878600px;}
._7b{margin-left:-2760.440328px;}
._29{margin-left:-2758.829184px;}
._34{margin-left:-2756.302704px;}
._19{margin-left:-2754.934272px;}
._e{margin-left:-2753.135568px;}
._1a{margin-left:-2751.400656px;}
._14{margin-left:-2749.426056px;}
._20{margin-left:-2747.341512px;}
._b{margin-left:-2744.998272px;}
._f{margin-left:-2742.975360px;}
._c{margin-left:-2741.620752px;}
._37{margin-left:-2739.987576px;}
._68{margin-left:-2738.703672px;}
._2a{margin-left:-2727.822168px;}
._2b{margin-left:-2726.160552px;}
._87{margin-left:-2717.263944px;}
._a6{margin-left:-2684.888136px;}
._7f{margin-left:-2681.064000px;}
._82{margin-left:-2668.875840px;}
._3a{margin-left:-2643.529608px;}
._58{margin-left:-2612.798208px;}
._79{margin-left:-2604.940416px;}
._5d{margin-left:-2600.516160px;}
._62{margin-left:-2593.296000px;}
._2{margin-left:-2591.778384px;}
._8b{margin-left:-2588.990400px;}
._74{margin-left:-2582.498880px;}
._8d{margin-left:-2559.596112px;}
._6{margin-left:-2551.010544px;}
._6c{margin-left:-2544.225624px;}
._7{margin-left:-2540.918160px;}
._76{margin-left:-2537.124480px;}
._3{margin-left:-2523.059640px;}
._a7{margin-left:-2487.033792px;}
._78{margin-left:-2485.987200px;}
._60{margin-left:-2483.867520px;}
._67{margin-left:-2472.118128px;}
._66{margin-left:-2438.815608px;}
._3e{margin-left:-2391.151896px;}
._8e{margin-left:-2380.534488px;}
._9d{margin-left:-2373.116112px;}
._7d{margin-left:-2360.176776px;}
._5{margin-left:-2355.441192px;}
._64{margin-left:-2327.607360px;}
._5c{margin-left:-2281.800096px;}
._a3{margin-left:-2250.403344px;}
._a1{margin-left:-2240.807832px;}
._2f{margin-left:-2214.287136px;}
._25{margin-left:-2181.347136px;}
._5e{margin-left:-2158.900992px;}
._83{margin-left:-2140.177536px;}
._71{margin-left:-2111.641848px;}
._55{margin-left:-2107.983816px;}
._48{margin-left:-2104.776000px;}
._80{margin-left:-2095.369848px;}
._59{margin-left:-2087.023104px;}
._8a{margin-left:-2026.640232px;}
._42{margin-left:-2014.563456px;}
._88{margin-left:-1965.027600px;}
._53{margin-left:-1963.798704px;}
._84{margin-left:-1958.227776px;}
._8f{margin-left:-1865.242368px;}
._3b{margin-left:-1861.857864px;}
._91{margin-left:-1843.855488px;}
._70{margin-left:-1837.761192px;}
._77{margin-left:-1832.799672px;}
._5a{margin-left:-1784.373840px;}
._4e{margin-left:-1781.495136px;}
._52{margin-left:-1750.083336px;}
._49{margin-left:-1670.160960px;}
._4{margin-left:-1646.509704px;}
._aa{margin-left:-1595.026512px;}
._36{margin-left:-1591.755408px;}
._47{margin-left:-1555.371144px;}
._63{margin-left:-1552.268160px;}
._3c{margin-left:-1546.450488px;}
._16{margin-left:-1537.098744px;}
._65{margin-left:-1533.985920px;}
._3f{margin-left:-1528.277760px;}
._69{margin-left:-1462.791600px;}
._a9{margin-left:-1423.218024px;}
._43{margin-left:-1412.498592px;}
._a8{margin-left:-1322.996184px;}
._15{margin-left:-1316.248776px;}
._8c{margin-left:-1303.813440px;}
._ab{margin-left:-1230.357960px;}
._17{margin-left:-1204.599744px;}
._5b{margin-left:-1141.644960px;}
._9f{margin-left:-1108.014696px;}
._a2{margin-left:-1075.107456px;}
._1f{margin-left:-1019.730816px;}
._90{margin-left:-982.454400px;}
._13{margin-left:-945.665400px;}
._56{margin-left:-936.564768px;}
._a4{margin-left:-934.433136px;}
._26{margin-left:-932.729112px;}
._ac{margin-left:-931.187880px;}
._86{margin-left:-883.512000px;}
._4d{margin-left:-875.152512px;}
._9b{margin-left:-819.998496px;}
._99{margin-left:-806.489280px;}
._31{margin-left:-795.753648px;}
._35{margin-left:-776.332296px;}
._18{margin-left:-761.691312px;}
._46{margin-left:-714.650112px;}
._96{margin-left:-706.894704px;}
._7c{margin-left:-694.260936px;}
._a0{margin-left:-691.015680px;}
._54{margin-left:-609.048000px;}
._32{margin-left:-594.388296px;}
._9e{margin-left:-559.488528px;}
._57{margin-left:-545.007672px;}
._75{margin-left:-525.966912px;}
._73{margin-left:-523.808208px;}
._8{margin-left:-488.557728px;}
._9a{margin-left:-332.458560px;}
._7a{margin-left:-227.520000px;}
._89{margin-left:-224.487360px;}
._30{margin-left:-190.638720px;}
._5f{margin-left:-6.391320px;}
._93{margin-left:-5.043277px;}
._23{margin-left:-3.960000px;}
._22{margin-left:-2.663568px;}
._1{margin-left:-1.225728px;}
._0{width:1.043784px;}
._a{width:2.163888px;}
._10{width:3.168000px;}
._2e{width:4.356216px;}
._50{width:6.269184px;}
._11{width:8.064000px;}
._d{width:9.797184px;}
._1e{width:10.951344px;}
._33{width:12.312000px;}
._28{width:14.619456px;}
._94{width:16.524216px;}
._a5{width:17.967600px;}
._9{width:19.296000px;}
._6e{width:23.836752px;}
._2c{width:26.640000px;}
._1b{width:34.382376px;}
._21{width:36.037080px;}
._61{width:169.874428px;}
._92{width:200.528581px;}
._7e{width:1100.213568px;}
._81{width:1114.587648px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:38.578200px;}
.fs3{font-size:38.880000px;}
.fs1c{font-size:40.694400px;}
.fs9{font-size:41.760000px;}
.fs15{font-size:42.796800px;}
.fs19{font-size:47.476800px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fsc{font-size:54.044400px;}
.fsd{font-size:54.124800px;}
.fs17{font-size:54.143400px;}
.fsb{font-size:59.307000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:60.000000px;}
.fs13{font-size:60.042600px;}
.fs12{font-size:60.057000px;}
.fsa{font-size:63.360000px;}
.fs10{font-size:63.818400px;}
.fse{font-size:63.913200px;}
.fs18{font-size:63.935400px;}
.fs11{font-size:65.791800px;}
.fs0{font-size:66.240000px;}
.fs14{font-size:70.901400px;}
.fs16{font-size:70.918200px;}
.fs5{font-size:72.000000px;}
.fs1b{font-size:81.388200px;}
.fs1a{font-size:81.410400px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:3.780000px;}
.y11b{bottom:15.660000px;}
.y94{bottom:16.554000px;}
.y92{bottom:16.554150px;}
.yf7{bottom:16.755600px;}
.ya2{bottom:18.364350px;}
.yc1{bottom:20.008950px;}
.y11d{bottom:21.600000px;}
.y11c{bottom:21.780000px;}
.yd8{bottom:21.960000px;}
.yd4{bottom:24.120000px;}
.y93{bottom:24.327300px;}
.ya3{bottom:26.987400px;}
.y87{bottom:41.889150px;}
.yb6{bottom:42.896700px;}
.y99{bottom:46.469550px;}
.yf5{bottom:53.602350px;}
.y88{bottom:53.691243px;}
.yb7{bottom:54.127596px;}
.yed{bottom:69.038400px;}
.y118{bottom:74.520000px;}
.y107{bottom:74.967300px;}
.ya0{bottom:83.197800px;}
.yb8{bottom:89.389903px;}
.y106{bottom:96.649050px;}
.y9f{bottom:99.645750px;}
.y89{bottom:103.212588px;}
.y28{bottom:111.594960px;}
.y9a{bottom:117.376662px;}
.yee{bottom:117.652800px;}
.y105{bottom:118.330650px;}
.yb9{bottom:124.801054px;}
.yc0{bottom:133.584300px;}
.ya4{bottom:134.457900px;}
.y104{bottom:140.012400px;}
.y95{bottom:140.925750px;}
.y8a{bottom:152.585665px;}
.yba{bottom:160.063361px;}
.y103{bottom:161.694150px;}
.yef{bottom:166.267050px;}
.y8e{bottom:171.154950px;}
.y102{bottom:183.375750px;}
.y1{bottom:184.856400px;}
.y9b{bottom:189.550267px;}
.y9e{bottom:189.869700px;}
.ybb{bottom:195.325668px;}
.yf6{bottom:197.440650px;}
.y8b{bottom:202.107010px;}
.y101{bottom:205.057500px;}
.ycf{bottom:206.100000px;}
.y124{bottom:208.440000px;}
.yeb{bottom:210.780000px;}
.y23{bottom:213.481440px;}
.yf0{bottom:214.881300px;}
.yc4{bottom:216.000000px;}
.y136{bottom:216.565200px;}
.y163{bottom:218.920320px;}
.y100{bottom:226.739100px;}
.yac{bottom:226.980000px;}
.y45{bottom:229.680000px;}
.y62{bottom:230.580000px;}
.ybc{bottom:230.587975px;}
.y80{bottom:234.720000px;}
.y6f{bottom:234.900000px;}
.y135{bottom:236.718720px;}
.yce{bottom:237.060000px;}
.y162{bottom:239.073840px;}
.y123{bottom:239.580000px;}
.y22{bottom:243.720000px;}
.yea{bottom:246.780000px;}
.yff{bottom:248.420700px;}
.y8c{bottom:251.480088px;}
.yc3{bottom:253.800000px;}
.yab{bottom:254.160000px;}
.y134{bottom:256.872240px;}
.ye9{bottom:257.400000px;}
.y161{bottom:259.227360px;}
.y90{bottom:260.403000px;}
.y44{bottom:260.820000px;}
.y61{bottom:261.720000px;}
.y9c{bottom:261.723872px;}
.yf1{bottom:263.495550px;}
.y21{bottom:264.592080px;}
.y7f{bottom:265.680000px;}
.ybd{bottom:265.999126px;}
.y6e{bottom:266.040000px;}
.ycd{bottom:268.200000px;}
.yfe{bottom:270.102300px;}
.y8f{bottom:275.229750px;}
.y133{bottom:277.025760px;}
.y122{bottom:277.740000px;}
.y160{bottom:279.380880px;}
.yaa{bottom:281.340000px;}
.y20{bottom:284.580000px;}
.yb5{bottom:286.290000px;}
.yc2{bottom:286.380000px;}
.y43{bottom:291.780000px;}
.yfd{bottom:291.784200px;}
.y60{bottom:292.680000px;}
.y7e{bottom:296.820000px;}
.y6d{bottom:297.000000px;}
.y132{bottom:297.543600px;}
.y15f{bottom:299.534400px;}
.ye8{bottom:300.240000px;}
.y8d{bottom:301.001433px;}
.ybe{bottom:301.261433px;}
.y1f{bottom:305.452080px;}
.ya9{bottom:308.520000px;}
.yf2{bottom:312.109800px;}
.yfc{bottom:313.465800px;}
.ycc{bottom:314.100000px;}
.y121{bottom:317.160000px;}
.ybf{bottom:317.406600px;}
.y91{bottom:317.550600px;}
.y15e{bottom:319.687920px;}
.y42{bottom:322.920000px;}
.y5f{bottom:323.820000px;}
.y1e{bottom:325.440000px;}
.y7d{bottom:327.780000px;}
.y6c{bottom:328.140000px;}
.ye7{bottom:331.200000px;}
.y9d{bottom:333.897476px;}
.yfb{bottom:335.147400px;}
.y120{bottom:335.160000px;}
.y131{bottom:335.880000px;}
.ya8{bottom:337.504320px;}
.y15d{bottom:339.841440px;}
.y1d{bottom:346.140000px;}
.ydc{bottom:348.480000px;}
.ycb{bottom:352.080000px;}
.ya1{bottom:352.272900px;}
.y11f{bottom:353.160000px;}
.y41{bottom:353.880000px;}
.y5e{bottom:354.780000px;}
.yfa{bottom:356.829150px;}
.y97{bottom:357.300000px;}
.yc5{bottom:358.560000px;}
.y6b{bottom:359.100000px;}
.y15c{bottom:359.994960px;}
.yf3{bottom:360.724050px;}
.y7c{bottom:361.080000px;}
.ye6{bottom:362.340000px;}
.ya7{bottom:363.238560px;}
.y11e{bottom:371.340000px;}
.yca{bottom:372.960000px;}
.y130{bottom:374.760000px;}
.y1c{bottom:377.101440px;}
.yf9{bottom:378.510900px;}
.y15b{bottom:380.148480px;}
.y86{bottom:381.690000px;}
.y96{bottom:381.780000px;}
.y40{bottom:385.020000px;}
.y5d{bottom:385.740000px;}
.ydb{bottom:387.900000px;}
.y6a{bottom:390.240000px;}
.y7b{bottom:392.580000px;}
.ye5{bottom:393.300000px;}
.y15a{bottom:400.136400px;}
.yf8{bottom:400.192500px;}
.y7a{bottom:401.580000px;}
.yb0{bottom:403.560000px;}
.yda{bottom:405.720000px;}
.y12f{bottom:406.260000px;}
.y1b{bottom:407.340000px;}
.yf4{bottom:409.338600px;}
.yc9{bottom:409.840560px;}
.y117{bottom:409.860000px;}
.y3f{bottom:415.980000px;}
.y5c{bottom:416.880000px;}
.y159{bottom:420.289920px;}
.y69{bottom:421.200000px;}
.yd9{bottom:423.900000px;}
.yaf{bottom:424.440000px;}
.ye4{bottom:428.762520px;}
.y79{bottom:437.040000px;}
.y12e{bottom:437.400000px;}
.y1a{bottom:438.480000px;}
.ye3{bottom:439.380000px;}
.y158{bottom:440.443440px;}
.yd7{bottom:441.900000px;}
.yc8{bottom:443.324880px;}
.y3e{bottom:447.120000px;}
.y5b{bottom:447.840000px;}
.y11a{bottom:448.200000px;}
.y68{bottom:452.340000px;}
.yae{bottom:456.836400px;}
.y157{bottom:460.596960px;}
.y78{bottom:468.000000px;}
.y12d{bottom:468.360000px;}
.y19{bottom:469.440000px;}
.y3d{bottom:478.080000px;}
.y5a{bottom:478.620000px;}
.yd3{bottom:480.420000px;}
.y119{bottom:480.600000px;}
.y156{bottom:480.750480px;}
.y67{bottom:483.300000px;}
.y77{bottom:499.140000px;}
.y12c{bottom:499.500000px;}
.y18{bottom:500.580000px;}
.yd5{bottom:500.760000px;}
.y155{bottom:500.904000px;}
.y3c{bottom:509.220000px;}
.ye2{bottom:509.760000px;}
.y59{bottom:512.100000px;}
.y66{bottom:514.440000px;}
.y154{bottom:521.057520px;}
.y116{bottom:522.000000px;}
.y76{bottom:530.100000px;}
.y12b{bottom:530.460000px;}
.y17{bottom:531.540000px;}
.y3b{bottom:540.180000px;}
.ye1{bottom:540.720000px;}
.y153{bottom:541.211040px;}
.yd2{bottom:542.160000px;}
.y115{bottom:544.139280px;}
.y65{bottom:545.400000px;}
.y58{bottom:546.119280px;}
.y83{bottom:555.660000px;}
.y75{bottom:560.880000px;}
.y152{bottom:561.364560px;}
.y12a{bottom:561.600000px;}
.y16{bottom:562.680000px;}
.yd1{bottom:563.040000px;}
.y3a{bottom:571.320000px;}
.ye0{bottom:571.860000px;}
.y114{bottom:574.560000px;}
.y57{bottom:576.540000px;}
.y151{bottom:581.518080px;}
.y82{bottom:589.500000px;}
.y74{bottom:592.200000px;}
.y129{bottom:592.560000px;}
.y15{bottom:593.640000px;}
.y150{bottom:601.506000px;}
.y39{bottom:602.280000px;}
.y113{bottom:605.520000px;}
.yd0{bottom:607.320000px;}
.y56{bottom:607.500000px;}
.ydf{bottom:609.660000px;}
.y14f{bottom:621.659520px;}
.y73{bottom:623.340000px;}
.y128{bottom:623.700000px;}
.y14{bottom:624.780000px;}
.yde{bottom:630.360000px;}
.y38{bottom:633.420000px;}
.y112{bottom:636.660000px;}
.y81{bottom:638.280000px;}
.y55{bottom:638.460000px;}
.y14e{bottom:641.813040px;}
.yb4{bottom:652.140000px;}
.y72{bottom:654.300000px;}
.y127{bottom:654.660000px;}
.y13{bottom:655.740000px;}
.y14d{bottom:661.966560px;}
.yec{bottom:662.839500px;}
.ydd{bottom:662.927040px;}
.y37{bottom:664.380000px;}
.y111{bottom:667.620000px;}
.y54{bottom:669.600000px;}
.yb3{bottom:673.020000px;}
.y14c{bottom:682.120080px;}
.y12{bottom:686.700000px;}
.y126{bottom:693.000000px;}
.yb2{bottom:693.720000px;}
.y71{bottom:694.440000px;}
.y36{bottom:695.520000px;}
.y110{bottom:698.760000px;}
.y64{bottom:700.200000px;}
.y53{bottom:700.560000px;}
.y14b{bottom:702.273600px;}
.ya6{bottom:712.985760px;}
.y11{bottom:717.840000px;}
.y14a{bottom:722.427120px;}
.yb1{bottom:726.302160px;}
.y35{bottom:726.480000px;}
.y10f{bottom:729.720000px;}
.y52{bottom:731.700000px;}
.y125{bottom:732.421440px;}
.y98{bottom:738.615000px;}
.ya5{bottom:738.720000px;}
.y85{bottom:740.692800px;}
.y149{bottom:742.580640px;}
.y10{bottom:748.800000px;}
.y34{bottom:757.620000px;}
.y10e{bottom:760.860000px;}
.yad{bottom:762.120000px;}
.y51{bottom:762.660000px;}
.y148{bottom:762.734160px;}
.y84{bottom:766.609200px;}
.yc7{bottom:778.664880px;}
.yf{bottom:779.940000px;}
.y147{bottom:782.887680px;}
.y33{bottom:788.580000px;}
.y10d{bottom:791.820000px;}
.y50{bottom:793.800000px;}
.y146{bottom:802.875600px;}
.ye{bottom:810.900000px;}
.yc6{bottom:812.331360px;}
.y32{bottom:819.720000px;}
.y10c{bottom:822.960000px;}
.y145{bottom:823.029120px;}
.y4f{bottom:824.760000px;}
.yd{bottom:842.040000px;}
.y144{bottom:843.182640px;}
.y31{bottom:850.680000px;}
.y10b{bottom:853.920000px;}
.y70{bottom:855.540000px;}
.y4e{bottom:855.900000px;}
.y143{bottom:863.336160px;}
.yc{bottom:873.000000px;}
.y30{bottom:881.820000px;}
.y142{bottom:883.489680px;}
.y10a{bottom:885.060000px;}
.y4d{bottom:886.860000px;}
.y141{bottom:903.643200px;}
.yb{bottom:906.300000px;}
.y2f{bottom:912.780000px;}
.y109{bottom:916.020000px;}
.y4c{bottom:918.000000px;}
.y140{bottom:923.796720px;}
.ya{bottom:930.240720px;}
.y2e{bottom:943.920000px;}
.y13f{bottom:943.950240px;}
.y108{bottom:948.240000px;}
.y4b{bottom:948.960000px;}
.y9{bottom:954.720000px;}
.y13e{bottom:964.103760px;}
.y8{bottom:971.820000px;}
.y2d{bottom:974.880000px;}
.y4a{bottom:980.100000px;}
.y13d{bottom:984.091680px;}
.y7{bottom:984.780750px;}
.y6{bottom:1004.040000px;}
.y13c{bottom:1004.245200px;}
.y2c{bottom:1006.020000px;}
.y49{bottom:1011.060000px;}
.y5{bottom:1022.217840px;}
.y13b{bottom:1024.398720px;}
.y2b{bottom:1036.980000px;}
.y48{bottom:1042.200000px;}
.y4{bottom:1043.100000px;}
.y13a{bottom:1044.552240px;}
.y139{bottom:1064.705760px;}
.y2a{bottom:1068.120000px;}
.y164{bottom:1069.905600px;}
.y3{bottom:1070.640000px;}
.y47{bottom:1073.160000px;}
.y138{bottom:1084.859280px;}
.y2{bottom:1098.360000px;}
.y29{bottom:1101.240000px;}
.y63{bottom:1103.940000px;}
.y46{bottom:1104.300000px;}
.y137{bottom:1105.012800px;}
.y27{bottom:1140.120000px;}
.y26{bottom:1197.867000px;}
.y25{bottom:1215.867000px;}
.y24{bottom:1233.867000px;}
.h2a{height:18.000000px;}
.h27{height:18.178500px;}
.h26{height:18.180000px;}
.h5{height:27.014766px;}
.h16{height:28.085984px;}
.h33{height:29.209359px;}
.h37{height:30.060000px;}
.h1d{height:31.157241px;}
.h30{height:34.077586px;}
.h38{height:36.180000px;}
.h28{height:36.361500px;}
.h24{height:38.520000px;}
.h13{height:39.345801px;}
.h14{height:39.404334px;}
.h20{height:39.417876px;}
.h12{height:43.177118px;}
.h1b{height:43.712655px;}
.h1a{height:43.723138px;}
.h29{height:44.024062px;}
.h25{height:45.478125px;}
.h17{height:46.461540px;}
.h15{height:46.530557px;}
.h21{height:46.546719px;}
.h2{height:47.545312px;}
.h9{height:47.578125px;}
.h4{height:47.894766px;}
.h19{height:47.898229px;}
.h23{height:48.224531px;}
.hb{height:48.796875px;}
.h36{height:49.895859px;}
.h7{height:50.027344px;}
.h1c{height:51.618158px;}
.h1e{height:51.630389px;}
.h3a{height:52.417969px;}
.h3b{height:52.526250px;}
.hc{height:53.085938px;}
.h10{height:53.763019px;}
.h39{height:53.775000px;}
.h32{height:56.590233px;}
.h31{height:56.605669px;}
.h34{height:56.736563px;}
.h6{height:57.092344px;}
.h22{height:60.046875px;}
.h8{height:60.878320px;}
.ha{height:61.329023px;}
.h3{height:64.899844px;}
.hf{height:79.980469px;}
.he{height:86.027344px;}
.h35{height:88.740000px;}
.h2c{height:92.497264px;}
.hd{height:103.586133px;}
.h2b{height:116.063789px;}
.h2d{height:125.586914px;}
.h2e{height:139.823789px;}
.h1f{height:344.323500px;}
.h11{height:344.325000px;}
.h18{height:381.976500px;}
.h2f{height:457.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:86.400000px;}
.we{width:86.580000px;}
.wb{width:118.981500px;}
.w5{width:130.861500px;}
.w8{width:148.860000px;}
.w9{width:178.018500px;}
.w7{width:196.200000px;}
.wd{width:259.380000px;}
.w2{width:492.148500px;}
.w4{width:493.050000px;}
.wc{width:518.758500px;}
.w6{width:523.078500px;}
.wa{width:544.434000px;}
.w3{width:546.900000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:14.940000px;}
.x34{left:20.700000px;}
.x46{left:21.780000px;}
.x45{left:25.200000px;}
.x4c{left:27.540000px;}
.x40{left:30.095250px;}
.x38{left:31.860000px;}
.x48{left:34.380000px;}
.x3a{left:38.520000px;}
.x39{left:40.680000px;}
.x1b{left:42.401850px;}
.x15{left:53.038350px;}
.x21{left:57.979800px;}
.x14{left:61.657993px;}
.xb{left:66.663000px;}
.x13{left:68.705030px;}
.x2b{left:70.252900px;}
.x20{left:72.366873px;}
.x12{left:75.752068px;}
.x2a{left:78.766950px;}
.xa{left:83.695680px;}
.x5{left:92.154960px;}
.x1f{left:93.918600px;}
.x3f{left:97.225500px;}
.x44{left:108.180000px;}
.x33{left:118.980000px;}
.x9{left:127.620000px;}
.xd{left:135.360000px;}
.x36{left:141.300000px;}
.x32{left:142.380000px;}
.x4d{left:154.606320px;}
.x2{left:158.760000px;}
.x7{left:166.680000px;}
.x8{left:169.020000px;}
.x2e{left:170.100000px;}
.x1e{left:173.040000px;}
.x3e{left:174.225000px;}
.x3{left:175.860000px;}
.x4e{left:181.642320px;}
.x2d{left:192.525600px;}
.x11{left:200.415000px;}
.x18{left:206.260350px;}
.x6{left:215.460000px;}
.x23{left:229.205550px;}
.x42{left:237.960000px;}
.x30{left:240.145200px;}
.x35{left:249.840000px;}
.x17{left:254.267850px;}
.x10{left:281.694240px;}
.x19{left:297.819750px;}
.x1a{left:302.419200px;}
.x16{left:305.725200px;}
.x47{left:324.540000px;}
.x24{left:330.950700px;}
.x25{left:336.061950px;}
.x4{left:389.160000px;}
.x2f{left:402.847200px;}
.x31{left:407.550240px;}
.x49{left:410.940000px;}
.xe{left:436.680000px;}
.x1d{left:437.760000px;}
.x1{left:442.260000px;}
.x2c{left:443.514450px;}
.xc{left:446.400000px;}
.x3d{left:447.480000px;}
.x3c{left:449.101800px;}
.x22{left:491.953800px;}
.x43{left:497.340000px;}
.x4a{left:583.740000px;}
.x37{left:594.900000px;}
.x27{left:653.397840px;}
.x4b{left:670.320000px;}
.x1c{left:692.460000px;}
.x29{left:705.779280px;}
.x28{left:717.120720px;}
.x3b{left:718.745760px;}
.x26{left:719.820000px;}
.xf{left:721.627200px;}
@media print{
.vb{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v8{vertical-align:-12.800000pt;}
.v6{vertical-align:-9.600000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:12.800000pt;}
.v1{vertical-align:18.560000pt;}
.ve{vertical-align:19.840000pt;}
.va{vertical-align:21.145600pt;}
.v3{vertical-align:24.320000pt;}
.v7{vertical-align:32.000000pt;}
.vd{vertical-align:37.751040pt;}
.v5{vertical-align:41.600000pt;}
.vc{vertical-align:44.160000pt;}
.vf{vertical-align:65.280000pt;}
.ls3f{letter-spacing:-4.978854pt;}
.ls3d{letter-spacing:-4.678528pt;}
.ls39{letter-spacing:-4.488127pt;}
.ls51{letter-spacing:-4.233762pt;}
.ls37{letter-spacing:-4.217387pt;}
.ls40{letter-spacing:-3.845342pt;}
.ls3e{letter-spacing:-3.789355pt;}
.ls52{letter-spacing:-3.466719pt;}
.ls3a{letter-spacing:-3.460375pt;}
.ls38{letter-spacing:-3.415876pt;}
.ls1b{letter-spacing:-1.920000pt;}
.ls6e{letter-spacing:-1.917158pt;}
.ls21{letter-spacing:-1.344000pt;}
.ls74{letter-spacing:-1.295360pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls6b{letter-spacing:-1.193702pt;}
.ls68{letter-spacing:-1.157837pt;}
.ls5a{letter-spacing:-1.013760pt;}
.ls4b{letter-spacing:-0.896000pt;}
.ls34{letter-spacing:-0.844800pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls75{letter-spacing:-0.732160pt;}
.ls33{letter-spacing:-0.706560pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls5b{letter-spacing:-0.675840pt;}
.ls4a{letter-spacing:-0.640000pt;}
.ls36{letter-spacing:-0.619520pt;}
.ls7e{letter-spacing:-0.588800pt;}
.ls7a{letter-spacing:-0.576000pt;}
.ls43{letter-spacing:-0.506880pt;}
.ls7d{letter-spacing:-0.412160pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls83{letter-spacing:-0.353280pt;}
.ls4f{letter-spacing:-0.337920pt;}
.lsd{letter-spacing:-0.299520pt;}
.ls67{letter-spacing:-0.295411pt;}
.ls44{letter-spacing:-0.281600pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls6c{letter-spacing:-0.253210pt;}
.ls58{letter-spacing:-0.235520pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls7c{letter-spacing:-0.176640pt;}
.ls42{letter-spacing:-0.168960pt;}
.ls65{letter-spacing:-0.149760pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls81{letter-spacing:-0.117760pt;}
.lsc{letter-spacing:-0.106240pt;}
.ls19{letter-spacing:-0.074880pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls57{letter-spacing:-0.058880pt;}
.ls35{letter-spacing:-0.056320pt;}
.lsa{letter-spacing:-0.053120pt;}
.ls9{letter-spacing:0.000000pt;}
.ls71{letter-spacing:0.019840pt;}
.ls66{letter-spacing:0.053120pt;}
.ls41{letter-spacing:0.058880pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls80{letter-spacing:0.064768pt;}
.lsb{letter-spacing:0.106240pt;}
.ls7b{letter-spacing:0.117760pt;}
.lse{letter-spacing:0.128000pt;}
.ls5d{letter-spacing:0.149760pt;}
.ls31{letter-spacing:0.166400pt;}
.ls78{letter-spacing:0.198400pt;}
.ls2{letter-spacing:0.207360pt;}
.ls3{letter-spacing:0.235520pt;}
.ls1{letter-spacing:0.235627pt;}
.ls76{letter-spacing:0.256000pt;}
.ls3c{letter-spacing:0.281600pt;}
.ls82{letter-spacing:0.294400pt;}
.ls72{letter-spacing:0.296960pt;}
.ls18{letter-spacing:0.299520pt;}
.ls6{letter-spacing:0.320000pt;}
.ls69{letter-spacing:0.361725pt;}
.ls10{letter-spacing:0.384000pt;}
.ls61{letter-spacing:0.411520pt;}
.ls5{letter-spacing:0.448000pt;}
.ls27{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.664576pt;}
.ls6d{letter-spacing:0.759629pt;}
.ls6f{letter-spacing:1.085184pt;}
.ls20{letter-spacing:1.280000pt;}
.ls70{letter-spacing:1.286400pt;}
.ls2a{letter-spacing:1.413120pt;}
.ls50{letter-spacing:1.914880pt;}
.ls7{letter-spacing:1.920000pt;}
.ls79{letter-spacing:1.943040pt;}
.ls6a{letter-spacing:2.025677pt;}
.ls2c{letter-spacing:2.028800pt;}
.ls53{letter-spacing:2.560000pt;}
.ls2e{letter-spacing:2.824320pt;}
.ls47{letter-spacing:3.200000pt;}
.ls5c{letter-spacing:3.210240pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls2f{letter-spacing:4.096000pt;}
.ls45{letter-spacing:4.480000pt;}
.ls28{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.760000pt;}
.ls16{letter-spacing:5.772800pt;}
.ls5e{letter-spacing:6.400000pt;}
.ls4e{letter-spacing:6.420480pt;}
.ls7f{letter-spacing:6.535680pt;}
.ls2b{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:7.680000pt;}
.ls63{letter-spacing:8.087040pt;}
.ls1f{letter-spacing:8.320000pt;}
.ls26{letter-spacing:8.960000pt;}
.ls49{letter-spacing:9.600000pt;}
.ls4d{letter-spacing:10.240000pt;}
.ls48{letter-spacing:11.520000pt;}
.ls25{letter-spacing:12.160000pt;}
.ls24{letter-spacing:12.800000pt;}
.ls59{letter-spacing:13.440000pt;}
.ls17{letter-spacing:14.080000pt;}
.ls54{letter-spacing:16.250880pt;}
.ls4{letter-spacing:17.280000pt;}
.ls46{letter-spacing:17.920000pt;}
.ls14{letter-spacing:18.869760pt;}
.ls77{letter-spacing:19.200000pt;}
.ls55{letter-spacing:19.489280pt;}
.ls5f{letter-spacing:20.442240pt;}
.ls60{letter-spacing:20.891520pt;}
.ls1d{letter-spacing:23.680000pt;}
.ls4c{letter-spacing:30.080000pt;}
.ls73{letter-spacing:30.208000pt;}
.ls15{letter-spacing:30.720000pt;}
.ls62{letter-spacing:34.523520pt;}
.ls2d{letter-spacing:52.793600pt;}
.ls32{letter-spacing:95.049352pt;}
.ls3b{letter-spacing:174.743021pt;}
.ls64{letter-spacing:188.361987pt;}
.wsc6{word-spacing:-74.880000pt;}
.ws6d{word-spacing:-64.000000pt;}
.wsc4{word-spacing:-53.120000pt;}
.wsc3{word-spacing:-52.543296pt;}
.ws6c{word-spacing:-45.440000pt;}
.wsc5{word-spacing:-26.704000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws2c{word-spacing:-19.019520pt;}
.ws2d{word-spacing:-18.645120pt;}
.ws3{word-spacing:-18.420480pt;}
.ws8b{word-spacing:-17.520524pt;}
.ws2e{word-spacing:-16.640000pt;}
.wsc7{word-spacing:-16.623360pt;}
.wsc2{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.384000pt;}
.wsdc{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws81{word-spacing:-15.793662pt;}
.ws8{word-spacing:-15.744000pt;}
.ws64{word-spacing:-15.616000pt;}
.ws6b{word-spacing:-15.296000pt;}
.ws6e{word-spacing:-15.168000pt;}
.wsc{word-spacing:-14.720000pt;}
.wsd7{word-spacing:-14.464000pt;}
.ws4d{word-spacing:-14.080000pt;}
.ws7e{word-spacing:-14.023680pt;}
.wsba{word-spacing:-13.911040pt;}
.wsdb{word-spacing:-13.742080pt;}
.wsfc{word-spacing:-13.601280pt;}
.wsb{word-spacing:-13.542400pt;}
.wsbd{word-spacing:-13.404160pt;}
.wsb9{word-spacing:-13.365760pt;}
.wsd9{word-spacing:-13.347840pt;}
.ws7c{word-spacing:-13.306880pt;}
.wsb7{word-spacing:-13.248000pt;}
.ws7d{word-spacing:-13.235200pt;}
.ws2{word-spacing:-13.173760pt;}
.wsb8{word-spacing:-13.071360pt;}
.wse4{word-spacing:-12.894720pt;}
.wsd8{word-spacing:-12.784640pt;}
.wsfb{word-spacing:-12.718080pt;}
.wsd{word-spacing:-12.053333pt;}
.ws89{word-spacing:-11.579357pt;}
.ws8a{word-spacing:-11.047838pt;}
.ws78{word-spacing:-10.720000pt;}
.ws80{word-spacing:-9.958963pt;}
.wsc8{word-spacing:-9.242150pt;}
.ws1{word-spacing:-8.640000pt;}
.ws7b{word-spacing:-8.389120pt;}
.wsca{word-spacing:-7.921843pt;}
.ws27{word-spacing:-3.968000pt;}
.ws16{word-spacing:-3.840000pt;}
.wse0{word-spacing:-3.712000pt;}
.ws17{word-spacing:-3.584000pt;}
.ws4e{word-spacing:-3.328000pt;}
.ws45{word-spacing:-3.200000pt;}
.ws110{word-spacing:-3.120640pt;}
.wsce{word-spacing:-3.111686pt;}
.wse9{word-spacing:-3.008000pt;}
.ws44{word-spacing:-2.944000pt;}
.wsd3{word-spacing:-2.893824pt;}
.wsf8{word-spacing:-2.826240pt;}
.ws77{word-spacing:-2.688000pt;}
.ws19{word-spacing:-2.560000pt;}
.wsf9{word-spacing:-2.355200pt;}
.ws76{word-spacing:-2.304000pt;}
.wsfa{word-spacing:-2.178560pt;}
.ws48{word-spacing:-2.048000pt;}
.ws3e{word-spacing:-1.920000pt;}
.wsd2{word-spacing:-1.880986pt;}
.ws3f{word-spacing:-1.792000pt;}
.ws120{word-spacing:-1.707520pt;}
.ws15{word-spacing:-1.664000pt;}
.wscf{word-spacing:-1.663937pt;}
.ws11c{word-spacing:-1.648640pt;}
.ws11d{word-spacing:-1.530880pt;}
.ws118{word-spacing:-1.413120pt;}
.ws5a{word-spacing:-1.408000pt;}
.ws2f{word-spacing:-1.280000pt;}
.wsd0{word-spacing:-1.157530pt;}
.ws94{word-spacing:-1.152000pt;}
.ws107{word-spacing:-1.059840pt;}
.ws59{word-spacing:-1.024000pt;}
.ws5d{word-spacing:-0.768000pt;}
.ws82{word-spacing:-0.765440pt;}
.ws14{word-spacing:-0.640000pt;}
.ws104{word-spacing:-0.588800pt;}
.ws5c{word-spacing:-0.512000pt;}
.ws103{word-spacing:-0.471040pt;}
.ws7a{word-spacing:-0.449280pt;}
.ws23{word-spacing:-0.448000pt;}
.ws21{word-spacing:-0.384000pt;}
.ws11f{word-spacing:-0.294400pt;}
.ws12{word-spacing:-0.235520pt;}
.wsd6{word-spacing:-0.217037pt;}
.wsf{word-spacing:-0.170240pt;}
.ws25{word-spacing:-0.128000pt;}
.wsee{word-spacing:-0.117760pt;}
.ws43{word-spacing:-0.064000pt;}
.ws8e{word-spacing:-0.058880pt;}
.wsda{word-spacing:-0.037120pt;}
.wse{word-spacing:0.000000pt;}
.ws11{word-spacing:0.053120pt;}
.ws8f{word-spacing:0.056320pt;}
.wsf7{word-spacing:0.058880pt;}
.wse1{word-spacing:0.064000pt;}
.wsbb{word-spacing:0.117760pt;}
.ws20{word-spacing:0.128000pt;}
.ws90{word-spacing:0.168960pt;}
.ws106{word-spacing:0.176640pt;}
.ws52{word-spacing:0.192000pt;}
.ws10{word-spacing:0.212480pt;}
.ws10a{word-spacing:0.235520pt;}
.ws18{word-spacing:0.256000pt;}
.ws92{word-spacing:0.281600pt;}
.wsef{word-spacing:0.294400pt;}
.wsaa{word-spacing:0.337920pt;}
.wsfd{word-spacing:0.353280pt;}
.ws105{word-spacing:0.412160pt;}
.ws91{word-spacing:0.506880pt;}
.ws116{word-spacing:0.529920pt;}
.wse7{word-spacing:0.576000pt;}
.ws100{word-spacing:0.588800pt;}
.ws84{word-spacing:0.619520pt;}
.ws2b{word-spacing:0.640000pt;}
.wsec{word-spacing:0.706560pt;}
.ws83{word-spacing:0.824320pt;}
.ws5b{word-spacing:0.832000pt;}
.ws6a{word-spacing:0.896000pt;}
.wsed{word-spacing:1.000960pt;}
.wsc1{word-spacing:1.013760pt;}
.wsd5{word-spacing:1.121357pt;}
.ws1d{word-spacing:1.152000pt;}
.ws37{word-spacing:1.280000pt;}
.ws4f{word-spacing:1.344000pt;}
.ws6f{word-spacing:1.408000pt;}
.ws5f{word-spacing:1.536000pt;}
.ws3d{word-spacing:1.792000pt;}
.wsac{word-spacing:1.914880pt;}
.ws3c{word-spacing:1.920000pt;}
.ws87{word-spacing:1.985461pt;}
.wsb0{word-spacing:1.989101pt;}
.wsd1{word-spacing:2.061850pt;}
.wse8{word-spacing:2.112000pt;}
.ws10c{word-spacing:2.119680pt;}
.ws1c{word-spacing:2.176000pt;}
.ws8d{word-spacing:2.206344pt;}
.ws10d{word-spacing:2.237440pt;}
.wsbf{word-spacing:2.432000pt;}
.wsb1{word-spacing:2.499716pt;}
.ws24{word-spacing:2.560000pt;}
.wsf1{word-spacing:2.649600pt;}
.wsf2{word-spacing:2.767360pt;}
.wsd4{word-spacing:2.785306pt;}
.ws9f{word-spacing:2.816000pt;}
.ws119{word-spacing:2.885120pt;}
.ws9e{word-spacing:3.072000pt;}
.wsf3{word-spacing:3.120640pt;}
.ws51{word-spacing:3.200000pt;}
.wscb{word-spacing:3.210240pt;}
.wscc{word-spacing:3.266560pt;}
.ws65{word-spacing:3.328000pt;}
.ws50{word-spacing:3.456000pt;}
.wsf5{word-spacing:3.532800pt;}
.wsf0{word-spacing:3.591680pt;}
.ws68{word-spacing:3.712000pt;}
.wsf6{word-spacing:3.768320pt;}
.wsad{word-spacing:3.829760pt;}
.ws31{word-spacing:3.840000pt;}
.wsf4{word-spacing:3.944960pt;}
.ws11e{word-spacing:4.003840pt;}
.ws75{word-spacing:4.096000pt;}
.wsae{word-spacing:4.111360pt;}
.ws85{word-spacing:4.217387pt;}
.wsaf{word-spacing:4.233762pt;}
.wscd{word-spacing:4.352000pt;}
.ws2a{word-spacing:4.480000pt;}
.ws86{word-spacing:4.488127pt;}
.ws93{word-spacing:4.608000pt;}
.ws67{word-spacing:4.736000pt;}
.ws8c{word-spacing:4.978854pt;}
.wsb4{word-spacing:4.992000pt;}
.ws69{word-spacing:5.120000pt;}
.ws96{word-spacing:5.312000pt;}
.ws79{word-spacing:5.376000pt;}
.ws1f{word-spacing:5.632000pt;}
.ws40{word-spacing:5.760000pt;}
.ws36{word-spacing:6.016000pt;}
.ws34{word-spacing:6.272000pt;}
.ws35{word-spacing:6.400000pt;}
.wsa9{word-spacing:6.420480pt;}
.ws95{word-spacing:6.464000pt;}
.wsa8{word-spacing:6.476800pt;}
.ws102{word-spacing:6.594560pt;}
.ws101{word-spacing:6.653440pt;}
.ws1e{word-spacing:6.656000pt;}
.ws123{word-spacing:6.771200pt;}
.ws70{word-spacing:7.040000pt;}
.ws10b{word-spacing:7.242240pt;}
.ws97{word-spacing:7.296000pt;}
.ws115{word-spacing:7.360000pt;}
.wsa6{word-spacing:7.552000pt;}
.ws28{word-spacing:7.680000pt;}
.wsea{word-spacing:7.772160pt;}
.ws98{word-spacing:7.808000pt;}
.wseb{word-spacing:7.831040pt;}
.wsa7{word-spacing:7.936000pt;}
.wsdd{word-spacing:8.192000pt;}
.ws1a{word-spacing:8.320000pt;}
.ws125{word-spacing:8.419840pt;}
.ws124{word-spacing:8.537600pt;}
.ws1b{word-spacing:8.576000pt;}
.ws5e{word-spacing:8.832000pt;}
.ws30{word-spacing:8.960000pt;}
.ws66{word-spacing:9.216000pt;}
.ws3b{word-spacing:9.600000pt;}
.ws33{word-spacing:9.856000pt;}
.ws32{word-spacing:10.112000pt;}
.wsa5{word-spacing:10.240000pt;}
.wsa0{word-spacing:10.304000pt;}
.ws61{word-spacing:10.880000pt;}
.ws62{word-spacing:11.136000pt;}
.ws9c{word-spacing:11.392000pt;}
.ws9d{word-spacing:11.712000pt;}
.ws121{word-spacing:11.717120pt;}
.wsa2{word-spacing:12.160000pt;}
.wsa1{word-spacing:12.416000pt;}
.wsfe{word-spacing:12.541440pt;}
.ws55{word-spacing:12.672000pt;}
.ws54{word-spacing:12.800000pt;}
.ws56{word-spacing:13.056000pt;}
.wsc0{word-spacing:13.312000pt;}
.wsb3{word-spacing:13.440000pt;}
.ws122{word-spacing:13.542400pt;}
.ws63{word-spacing:13.696000pt;}
.ws4c{word-spacing:14.080000pt;}
.ws26{word-spacing:14.336000pt;}
.wsbe{word-spacing:14.592000pt;}
.wsde{word-spacing:14.720000pt;}
.wse2{word-spacing:15.232000pt;}
.wsbc{word-spacing:15.360000pt;}
.ws108{word-spacing:15.544320pt;}
.wse3{word-spacing:15.616000pt;}
.ws109{word-spacing:15.720960pt;}
.ws46{word-spacing:16.000000pt;}
.ws10f{word-spacing:16.192000pt;}
.ws47{word-spacing:16.256000pt;}
.wsb2{word-spacing:16.640000pt;}
.wsb6{word-spacing:16.768000pt;}
.wsb5{word-spacing:16.896000pt;}
.ws13{word-spacing:17.280000pt;}
.ws22{word-spacing:17.536000pt;}
.ws53{word-spacing:18.560000pt;}
.wse5{word-spacing:19.200000pt;}
.ws10e{word-spacing:19.253760pt;}
.wsdf{word-spacing:20.352000pt;}
.ws9a{word-spacing:20.480000pt;}
.ws9b{word-spacing:20.736000pt;}
.ws4a{word-spacing:21.120000pt;}
.ws29{word-spacing:21.760000pt;}
.wsff{word-spacing:21.962240pt;}
.ws58{word-spacing:22.912000pt;}
.ws3a{word-spacing:23.040000pt;}
.ws57{word-spacing:23.296000pt;}
.ws49{word-spacing:23.680000pt;}
.ws71{word-spacing:23.872000pt;}
.ws72{word-spacing:23.936000pt;}
.ws99{word-spacing:25.856000pt;}
.ws74{word-spacing:27.520000pt;}
.ws73{word-spacing:27.776000pt;}
.ws4b{word-spacing:28.160000pt;}
.wse6{word-spacing:28.416000pt;}
.wsa4{word-spacing:30.080000pt;}
.ws39{word-spacing:30.592000pt;}
.wsa3{word-spacing:30.720000pt;}
.ws117{word-spacing:30.912000pt;}
.ws38{word-spacing:30.976000pt;}
.ws42{word-spacing:31.872000pt;}
.ws41{word-spacing:32.256000pt;}
.ws113{word-spacing:34.739200pt;}
.ws111{word-spacing:34.915840pt;}
.ws112{word-spacing:35.386880pt;}
.ws114{word-spacing:35.740160pt;}
.ws11a{word-spacing:40.509440pt;}
.ws11b{word-spacing:41.157120pt;}
.ws60{word-spacing:53.760000pt;}
.ws7f{word-spacing:63.735256pt;}
.wsab{word-spacing:122.394214pt;}
.ws88{word-spacing:125.793922pt;}
.wsc9{word-spacing:158.314448pt;}
._98{margin-left:-2498.620544pt;}
._51{margin-left:-2497.598464pt;}
._6d{margin-left:-2495.548928pt;}
._4f{margin-left:-2493.504768pt;}
._6f{margin-left:-2490.689536pt;}
._97{margin-left:-2489.566272pt;}
._6b{margin-left:-2487.069888pt;}
._41{margin-left:-2485.115008pt;}
._85{margin-left:-2484.086784pt;}
._4c{margin-left:-2483.100736pt;}
._72{margin-left:-2481.792768pt;}
._6a{margin-left:-2479.809152pt;}
._38{margin-left:-2478.587776pt;}
._4b{margin-left:-2477.305856pt;}
._3d{margin-left:-2475.517504pt;}
._40{margin-left:-2474.237696pt;}
._45{margin-left:-2472.891392pt;}
._9c{margin-left:-2471.828672pt;}
._1c{margin-left:-2470.844928pt;}
._44{margin-left:-2469.538880pt;}
._39{margin-left:-2468.541696pt;}
._4a{margin-left:-2466.678784pt;}
._95{margin-left:-2465.467392pt;}
._2d{margin-left:-2463.865088pt;}
._1d{margin-left:-2462.685888pt;}
._12{margin-left:-2461.239936pt;}
._27{margin-left:-2458.683392pt;}
._24{margin-left:-2455.003200pt;}
._7b{margin-left:-2453.724736pt;}
._29{margin-left:-2452.292608pt;}
._34{margin-left:-2450.046848pt;}
._19{margin-left:-2448.830464pt;}
._e{margin-left:-2447.231616pt;}
._1a{margin-left:-2445.689472pt;}
._14{margin-left:-2443.934272pt;}
._20{margin-left:-2442.081344pt;}
._b{margin-left:-2439.998464pt;}
._f{margin-left:-2438.200320pt;}
._c{margin-left:-2436.996224pt;}
._37{margin-left:-2435.544512pt;}
._68{margin-left:-2434.403264pt;}
._2a{margin-left:-2424.730816pt;}
._2b{margin-left:-2423.253824pt;}
._87{margin-left:-2415.345728pt;}
._a6{margin-left:-2386.567232pt;}
._7f{margin-left:-2383.168000pt;}
._82{margin-left:-2372.334080pt;}
._3a{margin-left:-2349.804096pt;}
._58{margin-left:-2322.487296pt;}
._79{margin-left:-2315.502592pt;}
._5d{margin-left:-2311.569920pt;}
._62{margin-left:-2305.152000pt;}
._2{margin-left:-2303.803008pt;}
._8b{margin-left:-2301.324800pt;}
._74{margin-left:-2295.554560pt;}
._8d{margin-left:-2275.196544pt;}
._6{margin-left:-2267.564928pt;}
._6c{margin-left:-2261.533888pt;}
._7{margin-left:-2258.593920pt;}
._76{margin-left:-2255.221760pt;}
._3{margin-left:-2242.719680pt;}
._a7{margin-left:-2210.696704pt;}
._78{margin-left:-2209.766400pt;}
._60{margin-left:-2207.882240pt;}
._67{margin-left:-2197.438336pt;}
._66{margin-left:-2167.836096pt;}
._3e{margin-left:-2125.468352pt;}
._8e{margin-left:-2116.030656pt;}
._9d{margin-left:-2109.436544pt;}
._7d{margin-left:-2097.934912pt;}
._5{margin-left:-2093.725504pt;}
._64{margin-left:-2068.984320pt;}
._5c{margin-left:-2028.266752pt;}
._a3{margin-left:-2000.358528pt;}
._a1{margin-left:-1991.829184pt;}
._2f{margin-left:-1968.255232pt;}
._25{margin-left:-1938.975232pt;}
._5e{margin-left:-1919.023104pt;}
._83{margin-left:-1902.380032pt;}
._71{margin-left:-1877.014976pt;}
._55{margin-left:-1873.763392pt;}
._48{margin-left:-1870.912000pt;}
._80{margin-left:-1862.550976pt;}
._59{margin-left:-1855.131648pt;}
._8a{margin-left:-1801.457984pt;}
._42{margin-left:-1790.723072pt;}
._88{margin-left:-1746.691200pt;}
._53{margin-left:-1745.598848pt;}
._84{margin-left:-1740.646912pt;}
._8f{margin-left:-1657.993216pt;}
._3b{margin-left:-1654.984768pt;}
._91{margin-left:-1638.982656pt;}
._70{margin-left:-1633.565504pt;}
._77{margin-left:-1629.155264pt;}
._5a{margin-left:-1586.110080pt;}
._4e{margin-left:-1583.551232pt;}
._52{margin-left:-1555.629632pt;}
._49{margin-left:-1484.587520pt;}
._4{margin-left:-1463.564181pt;}
._aa{margin-left:-1417.801344pt;}
._36{margin-left:-1414.893696pt;}
._47{margin-left:-1382.552128pt;}
._63{margin-left:-1379.793920pt;}
._3c{margin-left:-1374.622656pt;}
._16{margin-left:-1366.309995pt;}
._65{margin-left:-1363.543040pt;}
._3f{margin-left:-1358.469120pt;}
._69{margin-left:-1300.259200pt;}
._a9{margin-left:-1265.082688pt;}
._43{margin-left:-1255.554304pt;}
._a8{margin-left:-1175.996608pt;}
._15{margin-left:-1169.998912pt;}
._8c{margin-left:-1158.945280pt;}
._ab{margin-left:-1093.651520pt;}
._17{margin-left:-1070.755328pt;}
._5b{margin-left:-1014.795520pt;}
._9f{margin-left:-984.901952pt;}
._a2{margin-left:-955.651072pt;}
._1f{margin-left:-906.427392pt;}
._90{margin-left:-873.292800pt;}
._13{margin-left:-840.591467pt;}
._56{margin-left:-832.502016pt;}
._a4{margin-left:-830.607232pt;}
._26{margin-left:-829.092544pt;}
._ac{margin-left:-827.722560pt;}
._86{margin-left:-785.344000pt;}
._4d{margin-left:-777.913344pt;}
._9b{margin-left:-728.887552pt;}
._99{margin-left:-716.879360pt;}
._31{margin-left:-707.336576pt;}
._35{margin-left:-690.073152pt;}
._18{margin-left:-677.058944pt;}
._46{margin-left:-635.244544pt;}
._96{margin-left:-628.350848pt;}
._7c{margin-left:-617.120832pt;}
._a0{margin-left:-614.236160pt;}
._54{margin-left:-541.376000pt;}
._32{margin-left:-528.345152pt;}
._9e{margin-left:-497.323136pt;}
._57{margin-left:-484.451264pt;}
._75{margin-left:-467.526144pt;}
._73{margin-left:-465.607296pt;}
._8{margin-left:-434.273536pt;}
._9a{margin-left:-295.518720pt;}
._7a{margin-left:-202.240000pt;}
._89{margin-left:-199.544320pt;}
._30{margin-left:-169.456640pt;}
._5f{margin-left:-5.681173pt;}
._93{margin-left:-4.482913pt;}
._23{margin-left:-3.520000pt;}
._22{margin-left:-2.367616pt;}
._1{margin-left:-1.089536pt;}
._0{width:0.927808pt;}
._a{width:1.923456pt;}
._10{width:2.816000pt;}
._2e{width:3.872192pt;}
._50{width:5.572608pt;}
._11{width:7.168000pt;}
._d{width:8.708608pt;}
._1e{width:9.734528pt;}
._33{width:10.944000pt;}
._28{width:12.995072pt;}
._94{width:14.688192pt;}
._a5{width:15.971200pt;}
._9{width:17.152000pt;}
._6e{width:21.188224pt;}
._2c{width:23.680000pt;}
._1b{width:30.562112pt;}
._21{width:32.032960pt;}
._61{width:150.999491pt;}
._92{width:178.247628pt;}
._7e{width:977.967616pt;}
._81{width:990.744576pt;}
.fsf{font-size:34.291733pt;}
.fs3{font-size:34.560000pt;}
.fs1c{font-size:36.172800pt;}
.fs9{font-size:37.120000pt;}
.fs15{font-size:38.041600pt;}
.fs19{font-size:42.201600pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fsc{font-size:48.039467pt;}
.fsd{font-size:48.110933pt;}
.fs17{font-size:48.127467pt;}
.fsb{font-size:52.717333pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:53.333333pt;}
.fs13{font-size:53.371200pt;}
.fs12{font-size:53.384000pt;}
.fsa{font-size:56.320000pt;}
.fs10{font-size:56.727467pt;}
.fse{font-size:56.811733pt;}
.fs18{font-size:56.831467pt;}
.fs11{font-size:58.481600pt;}
.fs0{font-size:58.880000pt;}
.fs14{font-size:63.023467pt;}
.fs16{font-size:63.038400pt;}
.fs5{font-size:64.000000pt;}
.fs1b{font-size:72.345067pt;}
.fs1a{font-size:72.364800pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:3.360000pt;}
.y11b{bottom:13.920000pt;}
.y94{bottom:14.714667pt;}
.y92{bottom:14.714800pt;}
.yf7{bottom:14.893867pt;}
.ya2{bottom:16.323867pt;}
.yc1{bottom:17.785733pt;}
.y11d{bottom:19.200000pt;}
.y11c{bottom:19.360000pt;}
.yd8{bottom:19.520000pt;}
.yd4{bottom:21.440000pt;}
.y93{bottom:21.624267pt;}
.ya3{bottom:23.988800pt;}
.y87{bottom:37.234800pt;}
.yb6{bottom:38.130400pt;}
.y99{bottom:41.306267pt;}
.yf5{bottom:47.646533pt;}
.y88{bottom:47.725549pt;}
.yb7{bottom:48.113419pt;}
.yed{bottom:61.367467pt;}
.y118{bottom:66.240000pt;}
.y107{bottom:66.637600pt;}
.ya0{bottom:73.953600pt;}
.yb8{bottom:79.457692pt;}
.y106{bottom:85.910267pt;}
.y9f{bottom:88.574000pt;}
.y89{bottom:91.744523pt;}
.y28{bottom:99.195520pt;}
.y9a{bottom:104.334811pt;}
.yee{bottom:104.580267pt;}
.y105{bottom:105.182800pt;}
.yb9{bottom:110.934270pt;}
.yc0{bottom:118.741600pt;}
.ya4{bottom:119.518133pt;}
.y104{bottom:124.455467pt;}
.y95{bottom:125.267333pt;}
.y8a{bottom:135.631703pt;}
.yba{bottom:142.278543pt;}
.y103{bottom:143.728133pt;}
.yef{bottom:147.792933pt;}
.y8e{bottom:152.137733pt;}
.y102{bottom:163.000667pt;}
.y1{bottom:164.316800pt;}
.y9b{bottom:168.489126pt;}
.y9e{bottom:168.773067pt;}
.ybb{bottom:173.622816pt;}
.yf6{bottom:175.502800pt;}
.y8b{bottom:179.650676pt;}
.y101{bottom:182.273333pt;}
.ycf{bottom:183.200000pt;}
.y124{bottom:185.280000pt;}
.yeb{bottom:187.360000pt;}
.y23{bottom:189.761280pt;}
.yf0{bottom:191.005600pt;}
.yc4{bottom:192.000000pt;}
.y136{bottom:192.502400pt;}
.y163{bottom:194.595840pt;}
.y100{bottom:201.545867pt;}
.yac{bottom:201.760000pt;}
.y45{bottom:204.160000pt;}
.y62{bottom:204.960000pt;}
.ybc{bottom:204.967089pt;}
.y80{bottom:208.640000pt;}
.y6f{bottom:208.800000pt;}
.y135{bottom:210.416640pt;}
.yce{bottom:210.720000pt;}
.y162{bottom:212.510080pt;}
.y123{bottom:212.960000pt;}
.y22{bottom:216.640000pt;}
.yea{bottom:219.360000pt;}
.yff{bottom:220.818400pt;}
.y8c{bottom:223.537856pt;}
.yc3{bottom:225.600000pt;}
.yab{bottom:225.920000pt;}
.y134{bottom:228.330880pt;}
.ye9{bottom:228.800000pt;}
.y161{bottom:230.424320pt;}
.y90{bottom:231.469333pt;}
.y44{bottom:231.840000pt;}
.y61{bottom:232.640000pt;}
.y9c{bottom:232.643441pt;}
.yf1{bottom:234.218267pt;}
.y21{bottom:235.192960pt;}
.y7f{bottom:236.160000pt;}
.ybd{bottom:236.443667pt;}
.y6e{bottom:236.480000pt;}
.ycd{bottom:238.400000pt;}
.yfe{bottom:240.090933pt;}
.y8f{bottom:244.648667pt;}
.y133{bottom:246.245120pt;}
.y122{bottom:246.880000pt;}
.y160{bottom:248.338560pt;}
.yaa{bottom:250.080000pt;}
.y20{bottom:252.960000pt;}
.yb5{bottom:254.480000pt;}
.yc2{bottom:254.560000pt;}
.y43{bottom:259.360000pt;}
.yfd{bottom:259.363733pt;}
.y60{bottom:260.160000pt;}
.y7e{bottom:263.840000pt;}
.y6d{bottom:264.000000pt;}
.y132{bottom:264.483200pt;}
.y15f{bottom:266.252800pt;}
.ye8{bottom:266.880000pt;}
.y8d{bottom:267.556829pt;}
.ybe{bottom:267.787940pt;}
.y1f{bottom:271.512960pt;}
.ya9{bottom:274.240000pt;}
.yf2{bottom:277.430933pt;}
.yfc{bottom:278.636267pt;}
.ycc{bottom:279.200000pt;}
.y121{bottom:281.920000pt;}
.ybf{bottom:282.139200pt;}
.y91{bottom:282.267200pt;}
.y15e{bottom:284.167040pt;}
.y42{bottom:287.040000pt;}
.y5f{bottom:287.840000pt;}
.y1e{bottom:289.280000pt;}
.y7d{bottom:291.360000pt;}
.y6c{bottom:291.680000pt;}
.ye7{bottom:294.400000pt;}
.y9d{bottom:296.797757pt;}
.yfb{bottom:297.908800pt;}
.y120{bottom:297.920000pt;}
.y131{bottom:298.560000pt;}
.ya8{bottom:300.003840pt;}
.y15d{bottom:302.081280pt;}
.y1d{bottom:307.680000pt;}
.ydc{bottom:309.760000pt;}
.ycb{bottom:312.960000pt;}
.ya1{bottom:313.131467pt;}
.y11f{bottom:313.920000pt;}
.y41{bottom:314.560000pt;}
.y5e{bottom:315.360000pt;}
.yfa{bottom:317.181467pt;}
.y97{bottom:317.600000pt;}
.yc5{bottom:318.720000pt;}
.y6b{bottom:319.200000pt;}
.y15c{bottom:319.995520pt;}
.yf3{bottom:320.643600pt;}
.y7c{bottom:320.960000pt;}
.ye6{bottom:322.080000pt;}
.ya7{bottom:322.878720pt;}
.y11e{bottom:330.080000pt;}
.yca{bottom:331.520000pt;}
.y130{bottom:333.120000pt;}
.y1c{bottom:335.201280pt;}
.yf9{bottom:336.454133pt;}
.y15b{bottom:337.909760pt;}
.y86{bottom:339.280000pt;}
.y96{bottom:339.360000pt;}
.y40{bottom:342.240000pt;}
.y5d{bottom:342.880000pt;}
.ydb{bottom:344.800000pt;}
.y6a{bottom:346.880000pt;}
.y7b{bottom:348.960000pt;}
.ye5{bottom:349.600000pt;}
.y15a{bottom:355.676800pt;}
.yf8{bottom:355.726667pt;}
.y7a{bottom:356.960000pt;}
.yb0{bottom:358.720000pt;}
.yda{bottom:360.640000pt;}
.y12f{bottom:361.120000pt;}
.y1b{bottom:362.080000pt;}
.yf4{bottom:363.856533pt;}
.yc9{bottom:364.302720pt;}
.y117{bottom:364.320000pt;}
.y3f{bottom:369.760000pt;}
.y5c{bottom:370.560000pt;}
.y159{bottom:373.591040pt;}
.y69{bottom:374.400000pt;}
.yd9{bottom:376.800000pt;}
.yaf{bottom:377.280000pt;}
.ye4{bottom:381.122240pt;}
.y79{bottom:388.480000pt;}
.y12e{bottom:388.800000pt;}
.y1a{bottom:389.760000pt;}
.ye3{bottom:390.560000pt;}
.y158{bottom:391.505280pt;}
.yd7{bottom:392.800000pt;}
.yc8{bottom:394.066560pt;}
.y3e{bottom:397.440000pt;}
.y5b{bottom:398.080000pt;}
.y11a{bottom:398.400000pt;}
.y68{bottom:402.080000pt;}
.yae{bottom:406.076800pt;}
.y157{bottom:409.419520pt;}
.y78{bottom:416.000000pt;}
.y12d{bottom:416.320000pt;}
.y19{bottom:417.280000pt;}
.y3d{bottom:424.960000pt;}
.y5a{bottom:425.440000pt;}
.yd3{bottom:427.040000pt;}
.y119{bottom:427.200000pt;}
.y156{bottom:427.333760pt;}
.y67{bottom:429.600000pt;}
.y77{bottom:443.680000pt;}
.y12c{bottom:444.000000pt;}
.y18{bottom:444.960000pt;}
.yd5{bottom:445.120000pt;}
.y155{bottom:445.248000pt;}
.y3c{bottom:452.640000pt;}
.ye2{bottom:453.120000pt;}
.y59{bottom:455.200000pt;}
.y66{bottom:457.280000pt;}
.y154{bottom:463.162240pt;}
.y116{bottom:464.000000pt;}
.y76{bottom:471.200000pt;}
.y12b{bottom:471.520000pt;}
.y17{bottom:472.480000pt;}
.y3b{bottom:480.160000pt;}
.ye1{bottom:480.640000pt;}
.y153{bottom:481.076480pt;}
.yd2{bottom:481.920000pt;}
.y115{bottom:483.679360pt;}
.y65{bottom:484.800000pt;}
.y58{bottom:485.439360pt;}
.y83{bottom:493.920000pt;}
.y75{bottom:498.560000pt;}
.y152{bottom:498.990720pt;}
.y12a{bottom:499.200000pt;}
.y16{bottom:500.160000pt;}
.yd1{bottom:500.480000pt;}
.y3a{bottom:507.840000pt;}
.ye0{bottom:508.320000pt;}
.y114{bottom:510.720000pt;}
.y57{bottom:512.480000pt;}
.y151{bottom:516.904960pt;}
.y82{bottom:524.000000pt;}
.y74{bottom:526.400000pt;}
.y129{bottom:526.720000pt;}
.y15{bottom:527.680000pt;}
.y150{bottom:534.672000pt;}
.y39{bottom:535.360000pt;}
.y113{bottom:538.240000pt;}
.yd0{bottom:539.840000pt;}
.y56{bottom:540.000000pt;}
.ydf{bottom:541.920000pt;}
.y14f{bottom:552.586240pt;}
.y73{bottom:554.080000pt;}
.y128{bottom:554.400000pt;}
.y14{bottom:555.360000pt;}
.yde{bottom:560.320000pt;}
.y38{bottom:563.040000pt;}
.y112{bottom:565.920000pt;}
.y81{bottom:567.360000pt;}
.y55{bottom:567.520000pt;}
.y14e{bottom:570.500480pt;}
.yb4{bottom:579.680000pt;}
.y72{bottom:581.600000pt;}
.y127{bottom:581.920000pt;}
.y13{bottom:582.880000pt;}
.y14d{bottom:588.414720pt;}
.yec{bottom:589.190667pt;}
.ydd{bottom:589.268480pt;}
.y37{bottom:590.560000pt;}
.y111{bottom:593.440000pt;}
.y54{bottom:595.200000pt;}
.yb3{bottom:598.240000pt;}
.y14c{bottom:606.328960pt;}
.y12{bottom:610.400000pt;}
.y126{bottom:616.000000pt;}
.yb2{bottom:616.640000pt;}
.y71{bottom:617.280000pt;}
.y36{bottom:618.240000pt;}
.y110{bottom:621.120000pt;}
.y64{bottom:622.400000pt;}
.y53{bottom:622.720000pt;}
.y14b{bottom:624.243200pt;}
.ya6{bottom:633.765120pt;}
.y11{bottom:638.080000pt;}
.y14a{bottom:642.157440pt;}
.yb1{bottom:645.601920pt;}
.y35{bottom:645.760000pt;}
.y10f{bottom:648.640000pt;}
.y52{bottom:650.400000pt;}
.y125{bottom:651.041280pt;}
.y98{bottom:656.546667pt;}
.ya5{bottom:656.640000pt;}
.y85{bottom:658.393600pt;}
.y149{bottom:660.071680pt;}
.y10{bottom:665.600000pt;}
.y34{bottom:673.440000pt;}
.y10e{bottom:676.320000pt;}
.yad{bottom:677.440000pt;}
.y51{bottom:677.920000pt;}
.y148{bottom:677.985920pt;}
.y84{bottom:681.430400pt;}
.yc7{bottom:692.146560pt;}
.yf{bottom:693.280000pt;}
.y147{bottom:695.900160pt;}
.y33{bottom:700.960000pt;}
.y10d{bottom:703.840000pt;}
.y50{bottom:705.600000pt;}
.y146{bottom:713.667200pt;}
.ye{bottom:720.800000pt;}
.yc6{bottom:722.072320pt;}
.y32{bottom:728.640000pt;}
.y10c{bottom:731.520000pt;}
.y145{bottom:731.581440pt;}
.y4f{bottom:733.120000pt;}
.yd{bottom:748.480000pt;}
.y144{bottom:749.495680pt;}
.y31{bottom:756.160000pt;}
.y10b{bottom:759.040000pt;}
.y70{bottom:760.480000pt;}
.y4e{bottom:760.800000pt;}
.y143{bottom:767.409920pt;}
.yc{bottom:776.000000pt;}
.y30{bottom:783.840000pt;}
.y142{bottom:785.324160pt;}
.y10a{bottom:786.720000pt;}
.y4d{bottom:788.320000pt;}
.y141{bottom:803.238400pt;}
.yb{bottom:805.600000pt;}
.y2f{bottom:811.360000pt;}
.y109{bottom:814.240000pt;}
.y4c{bottom:816.000000pt;}
.y140{bottom:821.152640pt;}
.ya{bottom:826.880640pt;}
.y2e{bottom:839.040000pt;}
.y13f{bottom:839.066880pt;}
.y108{bottom:842.880000pt;}
.y4b{bottom:843.520000pt;}
.y9{bottom:848.640000pt;}
.y13e{bottom:856.981120pt;}
.y8{bottom:863.840000pt;}
.y2d{bottom:866.560000pt;}
.y4a{bottom:871.200000pt;}
.y13d{bottom:874.748160pt;}
.y7{bottom:875.360667pt;}
.y6{bottom:892.480000pt;}
.y13c{bottom:892.662400pt;}
.y2c{bottom:894.240000pt;}
.y49{bottom:898.720000pt;}
.y5{bottom:908.638080pt;}
.y13b{bottom:910.576640pt;}
.y2b{bottom:921.760000pt;}
.y48{bottom:926.400000pt;}
.y4{bottom:927.200000pt;}
.y13a{bottom:928.490880pt;}
.y139{bottom:946.405120pt;}
.y2a{bottom:949.440000pt;}
.y164{bottom:951.027200pt;}
.y3{bottom:951.680000pt;}
.y47{bottom:953.920000pt;}
.y138{bottom:964.319360pt;}
.y2{bottom:976.320000pt;}
.y29{bottom:978.880000pt;}
.y63{bottom:981.280000pt;}
.y46{bottom:981.600000pt;}
.y137{bottom:982.233600pt;}
.y27{bottom:1013.440000pt;}
.y26{bottom:1064.770667pt;}
.y25{bottom:1080.770667pt;}
.y24{bottom:1096.770667pt;}
.h2a{height:16.000000pt;}
.h27{height:16.158667pt;}
.h26{height:16.160000pt;}
.h5{height:24.013125pt;}
.h16{height:24.965320pt;}
.h33{height:25.963875pt;}
.h37{height:26.720000pt;}
.h1d{height:27.695325pt;}
.h30{height:30.291187pt;}
.h38{height:32.160000pt;}
.h28{height:32.321333pt;}
.h24{height:34.240000pt;}
.h13{height:34.974045pt;}
.h14{height:35.026075pt;}
.h20{height:35.038112pt;}
.h12{height:38.379660pt;}
.h1b{height:38.855693pt;}
.h1a{height:38.865012pt;}
.h29{height:39.132500pt;}
.h25{height:40.425000pt;}
.h17{height:41.299147pt;}
.h15{height:41.360495pt;}
.h21{height:41.374862pt;}
.h2{height:42.262500pt;}
.h9{height:42.291667pt;}
.h4{height:42.573125pt;}
.h19{height:42.576204pt;}
.h23{height:42.866250pt;}
.hb{height:43.375000pt;}
.h36{height:44.351875pt;}
.h7{height:44.468750pt;}
.h1c{height:45.882807pt;}
.h1e{height:45.893679pt;}
.h3a{height:46.593750pt;}
.h3b{height:46.690000pt;}
.hc{height:47.187500pt;}
.h10{height:47.789350pt;}
.h39{height:47.800000pt;}
.h32{height:50.302429pt;}
.h31{height:50.316150pt;}
.h34{height:50.432500pt;}
.h6{height:50.748750pt;}
.h22{height:53.375000pt;}
.h8{height:54.114063pt;}
.ha{height:54.514687pt;}
.h3{height:57.688750pt;}
.hf{height:71.093750pt;}
.he{height:76.468750pt;}
.h35{height:78.880000pt;}
.h2c{height:82.219790pt;}
.hd{height:92.076563pt;}
.h2b{height:103.167813pt;}
.h2d{height:111.632812pt;}
.h2e{height:124.287812pt;}
.h1f{height:306.065333pt;}
.h11{height:306.066667pt;}
.h18{height:339.534667pt;}
.h2f{height:406.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:76.800000pt;}
.we{width:76.960000pt;}
.wb{width:105.761333pt;}
.w5{width:116.321333pt;}
.w8{width:132.320000pt;}
.w9{width:158.238667pt;}
.w7{width:174.400000pt;}
.wd{width:230.560000pt;}
.w2{width:437.465333pt;}
.w4{width:438.266667pt;}
.wc{width:461.118667pt;}
.w6{width:464.958667pt;}
.wa{width:483.941333pt;}
.w3{width:486.133333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:13.280000pt;}
.x34{left:18.400000pt;}
.x46{left:19.360000pt;}
.x45{left:22.400000pt;}
.x4c{left:24.480000pt;}
.x40{left:26.751333pt;}
.x38{left:28.320000pt;}
.x48{left:30.560000pt;}
.x3a{left:34.240000pt;}
.x39{left:36.160000pt;}
.x1b{left:37.690533pt;}
.x15{left:47.145200pt;}
.x21{left:51.537600pt;}
.x14{left:54.807105pt;}
.xb{left:59.256000pt;}
.x13{left:61.071138pt;}
.x2b{left:62.447023pt;}
.x20{left:64.326109pt;}
.x12{left:67.335171pt;}
.x2a{left:70.015067pt;}
.xa{left:74.396160pt;}
.x5{left:81.915520pt;}
.x1f{left:83.483200pt;}
.x3f{left:86.422667pt;}
.x44{left:96.160000pt;}
.x33{left:105.760000pt;}
.x9{left:113.440000pt;}
.xd{left:120.320000pt;}
.x36{left:125.600000pt;}
.x32{left:126.560000pt;}
.x4d{left:137.427840pt;}
.x2{left:141.120000pt;}
.x7{left:148.160000pt;}
.x8{left:150.240000pt;}
.x2e{left:151.200000pt;}
.x1e{left:153.813333pt;}
.x3e{left:154.866667pt;}
.x3{left:156.320000pt;}
.x4e{left:161.459840pt;}
.x2d{left:171.133867pt;}
.x11{left:178.146667pt;}
.x18{left:183.342533pt;}
.x6{left:191.520000pt;}
.x23{left:203.738267pt;}
.x42{left:211.520000pt;}
.x30{left:213.462400pt;}
.x35{left:222.080000pt;}
.x17{left:226.015867pt;}
.x10{left:250.394880pt;}
.x19{left:264.728667pt;}
.x1a{left:268.817067pt;}
.x16{left:271.755733pt;}
.x47{left:288.480000pt;}
.x24{left:294.178400pt;}
.x25{left:298.721733pt;}
.x4{left:345.920000pt;}
.x2f{left:358.086400pt;}
.x31{left:362.266880pt;}
.x49{left:365.280000pt;}
.xe{left:388.160000pt;}
.x1d{left:389.120000pt;}
.x1{left:393.120000pt;}
.x2c{left:394.235067pt;}
.xc{left:396.800000pt;}
.x3d{left:397.760000pt;}
.x3c{left:399.201600pt;}
.x22{left:437.292267pt;}
.x43{left:442.080000pt;}
.x4a{left:518.880000pt;}
.x37{left:528.800000pt;}
.x27{left:580.798080pt;}
.x4b{left:595.840000pt;}
.x1c{left:615.520000pt;}
.x29{left:627.359360pt;}
.x28{left:637.440640pt;}
.x3b{left:638.885120pt;}
.x26{left:639.840000pt;}
.xf{left:641.446400pt;}
}




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