
    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_5151a3d7f4011ae8b268caae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_011a70f9389c7b73800715e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.725000;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_7cfcd2695f7d07c27eb2590a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_6cb919703d794fc463c92da9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_46ed800f16e3cd67592bdb09.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_04feb35c0a6d4d97c2ec0062.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_d3b19ffcbaca6b1116998ab4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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_5fe44281cf46d7e4eaa401cb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ce1bd47d685fa15a1a43c941.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;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_ba7b00b4ee7e958930b1cf26.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_336f0eefa2ed9a7ff502b8c4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_bc84582197b501c920ce90da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.686000;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_26550a4055e997cbcfe04337.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;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_d15220c1d307d97671f9af92.woff2')format("woff");}.fff{font-family:fff;line-height:3.009000;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_02051179c282f389aa4a7c60.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.428000;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_403d0b83fa8989b1dc2ba51f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.046000;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.691406;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:ff13;src:url('chunks/assets/font_7c2e7ad001cf2021959e760c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.998000;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_a2595fe4a91f474fdc24841b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v18{vertical-align:-160.278000px;}
.v11{vertical-align:-67.770000px;}
.v8{vertical-align:-17.934000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:3.960000px;}
.v13{vertical-align:6.366000px;}
.va{vertical-align:12.078000px;}
.v2{vertical-align:16.548000px;}
.v5{vertical-align:23.754000px;}
.v1{vertical-align:26.106000px;}
.v17{vertical-align:28.260000px;}
.v4{vertical-align:30.162000px;}
.v14{vertical-align:35.868000px;}
.v10{vertical-align:40.380000px;}
.v12{vertical-align:43.206000px;}
.v9{vertical-align:49.842000px;}
.v15{vertical-align:64.506000px;}
.v6{vertical-align:67.770000px;}
.ve{vertical-align:71.730000px;}
.v7{vertical-align:83.952000px;}
.vf{vertical-align:107.598000px;}
.vb{vertical-align:139.500000px;}
.v16{vertical-align:144.180000px;}
.vc{vertical-align:220.692000px;}
.ls0{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.001050px;}
.ls6f{letter-spacing:0.001597px;}
.ls3e{letter-spacing:0.001610px;}
.ls13{letter-spacing:0.001611px;}
.lsd{letter-spacing:0.002012px;}
.ls47{letter-spacing:0.002147px;}
.ls62{letter-spacing:0.002149px;}
.ls3b{letter-spacing:0.002696px;}
.ls7a{letter-spacing:0.002700px;}
.ls3{letter-spacing:0.002706px;}
.ls72{letter-spacing:0.003056px;}
.ls43{letter-spacing:0.003962px;}
.ls35{letter-spacing:0.004322px;}
.ls5{letter-spacing:0.004338px;}
.ls68{letter-spacing:0.004344px;}
.ls25{letter-spacing:0.007611px;}
.ls5e{letter-spacing:0.502322px;}
.ls5a{letter-spacing:0.914012px;}
.ls37{letter-spacing:1.433412px;}
.ls40{letter-spacing:1.810884px;}
.ls41{letter-spacing:1.816884px;}
.ls54{letter-spacing:1.819611px;}
.ls59{letter-spacing:1.825611px;}
.ls8{letter-spacing:2.510012px;}
.ls10{letter-spacing:2.516012px;}
.ls77{letter-spacing:2.982960px;}
.ls2{letter-spacing:2.984915px;}
.ls4c{letter-spacing:2.986059px;}
.ls9{letter-spacing:2.988499px;}
.ls76{letter-spacing:2.988960px;}
.ls18{letter-spacing:2.990915px;}
.ls4f{letter-spacing:2.992059px;}
.ls15{letter-spacing:4.259644px;}
.ls12{letter-spacing:4.265644px;}
.ls73{letter-spacing:4.681597px;}
.lsb{letter-spacing:4.704621px;}
.ls84{letter-spacing:4.705622px;}
.lsc{letter-spacing:5.011059px;}
.ls6a{letter-spacing:9.092147px;}
.lse{letter-spacing:10.042177px;}
.ls4d{letter-spacing:10.226915px;}
.ls50{letter-spacing:10.232915px;}
.ls34{letter-spacing:10.904706px;}
.ls7b{letter-spacing:10.904712px;}
.ls29{letter-spacing:10.906344px;}
.ls33{letter-spacing:10.909050px;}
.ls1d{letter-spacing:10.910012px;}
.ls4a{letter-spacing:10.910706px;}
.ls7d{letter-spacing:10.910712px;}
.ls52{letter-spacing:10.911962px;}
.ls2e{letter-spacing:10.912344px;}
.ls38{letter-spacing:10.912438px;}
.ls30{letter-spacing:10.913429px;}
.ls23{letter-spacing:10.916012px;}
.ls1c{letter-spacing:11.410322px;}
.ls11{letter-spacing:11.416322px;}
.lsa{letter-spacing:13.418712px;}
.ls36{letter-spacing:13.892915px;}
.ls57{letter-spacing:13.894059px;}
.ls6d{letter-spacing:13.898915px;}
.ls5f{letter-spacing:14.540706px;}
.ls1b{letter-spacing:14.543412px;}
.ls5b{letter-spacing:14.546706px;}
.ls7f{letter-spacing:14.549412px;}
.ls6b{letter-spacing:14.726915px;}
.ls64{letter-spacing:15.029412px;}
.ls65{letter-spacing:15.032149px;}
.ls66{letter-spacing:15.035412px;}
.ls63{letter-spacing:15.038149px;}
.ls2d{letter-spacing:15.455412px;}
.ls5c{letter-spacing:15.977412px;}
.ls60{letter-spacing:15.983412px;}
.ls19{letter-spacing:16.042864px;}
.ls1a{letter-spacing:17.534915px;}
.ls51{letter-spacing:18.176706px;}
.ls32{letter-spacing:18.178350px;}
.ls27{letter-spacing:18.179412px;}
.ls26{letter-spacing:18.182706px;}
.ls44{letter-spacing:18.183962px;}
.ls1e{letter-spacing:18.774843px;}
.ls83{letter-spacing:19.225597px;}
.ls1f{letter-spacing:19.678864px;}
.ls4e{letter-spacing:20.000147px;}
.ls74{letter-spacing:20.095622px;}
.lsf{letter-spacing:20.141412px;}
.ls7{letter-spacing:20.147412px;}
.ls69{letter-spacing:20.856960px;}
.ls58{letter-spacing:20.956177px;}
.ls1{letter-spacing:21.170915px;}
.ls5d{letter-spacing:21.172059px;}
.ls75{letter-spacing:22.861597px;}
.ls14{letter-spacing:23.063644px;}
.ls6{letter-spacing:23.126915px;}
.ls82{letter-spacing:24.592177px;}
.ls79{letter-spacing:25.434960px;}
.ls78{letter-spacing:25.440960px;}
.ls22{letter-spacing:27.422915px;}
.ls17{letter-spacing:28.727644px;}
.ls4b{letter-spacing:28.953962px;}
.ls16{letter-spacing:29.596864px;}
.ls2a{letter-spacing:29.678706px;}
.ls2c{letter-spacing:29.684706px;}
.ls2f{letter-spacing:29.848864px;}
.ls53{letter-spacing:29.883657px;}
.ls49{letter-spacing:30.077412px;}
.ls67{letter-spacing:30.820059px;}
.ls4{letter-spacing:31.660177px;}
.ls31{letter-spacing:32.228700px;}
.ls71{letter-spacing:33.023412px;}
.ls48{letter-spacing:33.056915px;}
.ls20{letter-spacing:33.317412px;}
.ls70{letter-spacing:37.729622px;}
.ls45{letter-spacing:59.760050px;}
.ls55{letter-spacing:60.680706px;}
.ls3d{letter-spacing:65.420915px;}
.ls3c{letter-spacing:73.628700px;}
.ls3a{letter-spacing:89.306700px;}
.ls39{letter-spacing:92.294915px;}
.ls56{letter-spacing:149.979657px;}
.ls24{letter-spacing:304.236843px;}
.ls61{letter-spacing:469.556012px;}
.ls21{letter-spacing:490.104843px;}
.ls80{letter-spacing:496.804177px;}
.ls7c{letter-spacing:514.870177px;}
.ls28{letter-spacing:533.966012px;}
.ls46{letter-spacing:541.756350px;}
.ls2b{letter-spacing:577.526915px;}
.ls6e{letter-spacing:578.008438px;}
.ls7e{letter-spacing:593.698177px;}
.ls3f{letter-spacing:613.732350px;}
.ls81{letter-spacing:637.492177px;}
.ls42{letter-spacing:642.682350px;}
.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;}
}
.ws6a{word-spacing:-77.943338px;}
.ws65{word-spacing:-47.324343px;}
.ws57{word-spacing:-42.637126px;}
.ws64{word-spacing:-31.771663px;}
.ws58{word-spacing:-31.706208px;}
.ws66{word-spacing:-31.700835px;}
.ws96{word-spacing:-30.266835px;}
.wsa8{word-spacing:-28.106205px;}
.wsa5{word-spacing:-28.104174px;}
.wsd4{word-spacing:-25.781783px;}
.wsa4{word-spacing:-24.482887px;}
.wsa2{word-spacing:-24.452836px;}
.wsa3{word-spacing:-24.452381px;}
.wsa6{word-spacing:-24.435403px;}
.ws5a{word-spacing:-18.183288px;}
.ws9e{word-spacing:-3.652367px;}
.wsc3{word-spacing:-3.390548px;}
.ws9a{word-spacing:-2.801457px;}
.ws82{word-spacing:-2.605093px;}
.ws8a{word-spacing:-2.277820px;}
.ws16{word-spacing:-1.841088px;}
.ws1c{word-spacing:-1.754183px;}
.ws8f{word-spacing:-1.688729px;}
.ws85{word-spacing:-1.557819px;}
.wscb{word-spacing:-1.296001px;}
.ws77{word-spacing:-1.099637px;}
.ws83{word-spacing:-1.034183px;}
.ws6b{word-spacing:-0.837819px;}
.ws38{word-spacing:-0.772364px;}
.ws36{word-spacing:-0.706910px;}
.ws93{word-spacing:-0.510546px;}
.wscd{word-spacing:-0.379637px;}
.ws92{word-spacing:-0.325739px;}
.ws91{word-spacing:-0.314182px;}
.ws42{word-spacing:-0.183273px;}
.ws3f{word-spacing:-0.117818px;}
.ws71{word-spacing:-0.065455px;}
.ws15{word-spacing:-0.059776px;}
.ws7f{word-spacing:-0.052364px;}
.ws95{word-spacing:-0.047821px;}
.ws61{word-spacing:-0.017548px;}
.ws5{word-spacing:0.000000px;}
.ws52{word-spacing:0.013091px;}
.ws75{word-spacing:0.144000px;}
.ws7e{word-spacing:0.209455px;}
.ws12{word-spacing:0.549936px;}
.ws5b{word-spacing:0.602182px;}
.wsc1{word-spacing:0.667637px;}
.wsc{word-spacing:0.789038px;}
.wsc7{word-spacing:0.929455px;}
.ws8b{word-spacing:0.994910px;}
.ws8c{word-spacing:1.060365px;}
.wsab{word-spacing:1.125819px;}
.ws7d{word-spacing:1.256728px;}
.ws31{word-spacing:1.322183px;}
.wsc0{word-spacing:1.387638px;}
.ws94{word-spacing:1.518547px;}
.wsaf{word-spacing:1.584001px;}
.ws99{word-spacing:1.714911px;}
.wsb{word-spacing:1.745448px;}
.ws8e{word-spacing:1.911274px;}
.ws33{word-spacing:2.042184px;}
.ws7c{word-spacing:2.107638px;}
.ws9{word-spacing:2.163877px;}
.ws27{word-spacing:2.173093px;}
.ws37{word-spacing:2.304002px;}
.wse{word-spacing:2.343204px;}
.ws1a{word-spacing:2.500366px;}
.ws22{word-spacing:2.565820px;}
.wsb6{word-spacing:2.696730px;}
.ws28{word-spacing:2.762184px;}
.ws73{word-spacing:2.827639px;}
.wsc2{word-spacing:2.893093px;}
.ws19{word-spacing:3.024003px;}
.wsb4{word-spacing:3.089457px;}
.wsa{word-spacing:3.120286px;}
.wsc6{word-spacing:3.154912px;}
.ws1d{word-spacing:3.220366px;}
.wsc8{word-spacing:3.285821px;}
.ws14{word-spacing:3.299613px;}
.ws9c{word-spacing:3.351276px;}
.ws2a{word-spacing:3.416730px;}
.ws81{word-spacing:3.482185px;}
.ws2c{word-spacing:3.613094px;}
.ws78{word-spacing:3.678549px;}
.ws2b{word-spacing:3.744003px;}
.wsbc{word-spacing:3.809458px;}
.ws6{word-spacing:3.873485px;}
.ws23{word-spacing:3.940367px;}
.ws7{word-spacing:3.945216px;}
.wsa7{word-spacing:4.005822px;}
.ws41{word-spacing:4.071276px;}
.wsd{word-spacing:4.136472px;}
.wsb8{word-spacing:4.136731px;}
.ws80{word-spacing:4.202185px;}
.wsa1{word-spacing:4.258261px;}
.ws39{word-spacing:4.267640px;}
.wsa0{word-spacing:4.270209px;}
.wsc9{word-spacing:4.333095px;}
.ws79{word-spacing:4.335124px;}
.ws4e{word-spacing:4.398549px;}
.ws50{word-spacing:4.464004px;}
.ws29{word-spacing:4.529458px;}
.wsbe{word-spacing:4.594913px;}
.ws3e{word-spacing:4.660368px;}
.ws7a{word-spacing:4.725822px;}
.ws59{word-spacing:4.791277px;}
.wsbd{word-spacing:4.856731px;}
.ws8d{word-spacing:4.987641px;}
.ws40{word-spacing:5.118550px;}
.wsb3{word-spacing:5.184004px;}
.ws3b{word-spacing:5.249459px;}
.ws84{word-spacing:5.380368px;}
.ws13{word-spacing:5.391759px;}
.wsd3{word-spacing:5.412522px;}
.wsca{word-spacing:5.445823px;}
.ws55{word-spacing:5.511277px;}
.ws9d{word-spacing:5.576732px;}
.wsc4{word-spacing:5.707641px;}
.wsc5{word-spacing:5.838550px;}
.ws6d{word-spacing:5.904005px;}
.wsce{word-spacing:6.034914px;}
.ws47{word-spacing:6.165823px;}
.ws4c{word-spacing:6.231278px;}
.wsb2{word-spacing:6.362187px;}
.ws6f{word-spacing:6.427642px;}
.ws34{word-spacing:6.493096px;}
.ws46{word-spacing:6.558551px;}
.ws2f{word-spacing:6.624006px;}
.ws45{word-spacing:6.689460px;}
.wsac{word-spacing:6.754915px;}
.wsae{word-spacing:6.820369px;}
.ws35{word-spacing:6.951279px;}
.wsd0{word-spacing:7.016733px;}
.ws8{word-spacing:7.065476px;}
.ws5d{word-spacing:7.082188px;}
.ws24{word-spacing:7.147642px;}
.ws18{word-spacing:7.213097px;}
.ws21{word-spacing:7.344006px;}
.wsb7{word-spacing:7.409461px;}
.ws4b{word-spacing:7.474915px;}
.ws63{word-spacing:7.540370px;}
.ws2e{word-spacing:7.605825px;}
.ws74{word-spacing:7.671279px;}
.ws4a{word-spacing:7.736734px;}
.ws89{word-spacing:7.802188px;}
.ws60{word-spacing:7.867643px;}
.ws4f{word-spacing:7.998552px;}
.ws9f{word-spacing:8.064007px;}
.ws53{word-spacing:8.129461px;}
.ws3a{word-spacing:8.260371px;}
.wsd1{word-spacing:8.325825px;}
.ws1b{word-spacing:8.391280px;}
.ws88{word-spacing:8.587644px;}
.wsbb{word-spacing:8.653098px;}
.wsb1{word-spacing:8.718553px;}
.ws25{word-spacing:8.849462px;}
.ws7b{word-spacing:8.914917px;}
.ws11{word-spacing:8.918520px;}
.ws54{word-spacing:8.980371px;}
.wsb9{word-spacing:9.176735px;}
.ws72{word-spacing:9.438553px;}
.ws32{word-spacing:9.504008px;}
.ws44{word-spacing:9.569463px;}
.ws90{word-spacing:9.634917px;}
.wsf{word-spacing:9.695602px;}
.wsd2{word-spacing:9.700372px;}
.ws10{word-spacing:9.755378px;}
.ws48{word-spacing:10.027645px;}
.wsad{word-spacing:10.093099px;}
.ws51{word-spacing:10.224009px;}
.ws3{word-spacing:10.329240px;}
.ws2d{word-spacing:10.354918px;}
.ws20{word-spacing:10.420372px;}
.wsb5{word-spacing:10.682191px;}
.ws6c{word-spacing:10.747645px;}
.ws1e{word-spacing:10.813100px;}
.ws3d{word-spacing:10.878555px;}
.ws5e{word-spacing:11.009464px;}
.ws4d{word-spacing:11.074918px;}
.ws86{word-spacing:11.336737px;}
.ws87{word-spacing:11.467646px;}
.ws5f{word-spacing:11.860374px;}
.ws1f{word-spacing:11.925828px;}
.wsba{word-spacing:12.056737px;}
.ws76{word-spacing:12.122192px;}
.wsb0{word-spacing:12.187647px;}
.ws26{word-spacing:12.384010px;}
.ws97{word-spacing:12.514920px;}
.ws9b{word-spacing:12.842193px;}
.ws98{word-spacing:13.038556px;}
.ws30{word-spacing:13.104011px;}
.wsbf{word-spacing:13.234920px;}
.ws3c{word-spacing:13.431284px;}
.ws43{word-spacing:14.151285px;}
.wsaa{word-spacing:14.216739px;}
.wscf{word-spacing:16.049468px;}
.wscc{word-spacing:18.929470px;}
.ws5c{word-spacing:25.041679px;}
.ws67{word-spacing:26.554094px;}
.ws1{word-spacing:27.975090px;}
.ws0{word-spacing:31.091012px;}
.ws49{word-spacing:32.192873px;}
.ws56{word-spacing:38.218277px;}
.ws2{word-spacing:38.631358px;}
.ws4{word-spacing:41.833422px;}
.ws69{word-spacing:62.712010px;}
.ws68{word-spacing:62.718010px;}
.ws17{word-spacing:96.750773px;}
.ws6e{word-spacing:118.972600px;}
.wsa9{word-spacing:400.137061px;}
.ws62{word-spacing:475.017123px;}
.ws70{word-spacing:680.086385px;}
._5{margin-left:-51.439615px;}
._8{margin-left:-41.523545px;}
._35{margin-left:-37.185264px;}
._a{margin-left:-35.076557px;}
._28{margin-left:-33.229349px;}
._d{margin-left:-27.091481px;}
._2a{margin-left:-25.565044px;}
._3{margin-left:-10.122655px;}
._0{margin-left:-8.056807px;}
._2b{margin-left:-6.400402px;}
._6{margin-left:-5.164620px;}
._c{margin-left:-3.873485px;}
._1{margin-left:-2.788895px;}
._f{margin-left:-1.673717px;}
._e{width:1.673717px;}
._2{width:2.685602px;}
._4{width:3.718526px;}
._9{width:5.164620px;}
._30{width:6.639017px;}
._16{width:15.984004px;}
._25{width:17.541833px;}
._11{width:18.629429px;}
._19{width:20.371216px;}
._1c{width:21.378001px;}
._23{width:22.818002px;}
._15{width:24.528474px;}
._10{width:26.121937px;}
._18{width:27.818205px;}
._17{width:29.845334px;}
._1d{width:31.680026px;}
._14{width:32.816804px;}
._32{width:33.854177px;}
._20{width:34.992558px;}
._34{width:36.159042px;}
._22{width:37.545287px;}
._1f{width:38.943523px;}
._1e{width:41.105489px;}
._13{width:42.488522px;}
._26{width:43.559293px;}
._31{width:44.751440px;}
._12{width:45.788110px;}
._21{width:46.800039px;}
._2d{width:47.978222px;}
._1b{width:49.887618px;}
._1a{width:51.720833px;}
._2f{width:53.282494px;}
._7{width:54.405158px;}
._2e{width:57.469139px;}
._33{width:58.818032px;}
._2c{width:59.930761px;}
._24{width:96.836850px;}
._27{width:103.156450px;}
._b{width:158.239027px;}
._29{width:287.607512px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y161{bottom:-476.734500px;}
.y0{bottom:0.000000px;}
.ya{bottom:113.976000px;}
.y2f{bottom:137.449500px;}
.y9{bottom:146.853000px;}
.y160{bottom:157.222500px;}
.ya1{bottom:178.399500px;}
.y2e{bottom:182.281500px;}
.ya0{bottom:182.556000px;}
.y128{bottom:182.724000px;}
.y15f{bottom:190.098000px;}
.y11c{bottom:193.759500px;}
.y9f{bottom:198.723000px;}
.y9b{bottom:201.864000px;}
.y2d{bottom:202.605000px;}
.y99{bottom:202.854000px;}
.y9e{bottom:202.879500px;}
.y127{bottom:203.047500px;}
.y9a{bottom:211.428000px;}
.y11b{bottom:214.083000px;}
.y9d{bottom:219.046500px;}
.y8{bottom:222.249000px;}
.y2c{bottom:222.928500px;}
.y15e{bottom:222.975000px;}
.y9c{bottom:223.204500px;}
.y126{bottom:223.372500px;}
.ye4{bottom:228.297000px;}
.ye3{bottom:232.342500px;}
.y11a{bottom:234.408000px;}
.ya2{bottom:237.729000px;}
.y2b{bottom:243.252000px;}
.y51{bottom:243.253500px;}
.y125{bottom:243.696000px;}
.yfe{bottom:250.890000px;}
.y12f{bottom:252.120000px;}
.y119{bottom:254.731500px;}
.y98{bottom:258.024000px;}
.ye2{bottom:262.080000px;}
.y2a{bottom:263.577000px;}
.y124{bottom:264.019500px;}
.yfd{bottom:271.213500px;}
.y118{bottom:275.055000px;}
.y141{bottom:275.251500px;}
.y95{bottom:277.332000px;}
.y93{bottom:278.322000px;}
.y97{bottom:278.347500px;}
.ye1{bottom:282.405000px;}
.y29{bottom:283.900500px;}
.y94{bottom:286.896000px;}
.yfc{bottom:291.537000px;}
.y69{bottom:295.051500px;}
.y140{bottom:295.575000px;}
.y96{bottom:298.671000px;}
.y123{bottom:300.547500px;}
.ye0{bottom:302.728500px;}
.y28{bottom:304.224000px;}
.y12e{bottom:308.920500px;}
.y117{bottom:311.583000px;}
.y92{bottom:315.289500px;}
.y68{bottom:315.375000px;}
.y13f{bottom:315.898500px;}
.ydf{bottom:323.052000px;}
.y27{bottom:324.547500px;}
.y15d{bottom:325.444500px;}
.yfb{bottom:328.299000px;}
.y12d{bottom:329.244000px;}
.y67{bottom:335.700000px;}
.y90{bottom:343.957500px;}
.y26{bottom:344.871000px;}
.y50{bottom:344.872500px;}
.y15c{bottom:345.768000px;}
.y13e{bottom:347.898000px;}
.y12c{bottom:349.567500px;}
.y89{bottom:354.120000px;}
.y66{bottom:356.023500px;}
.yde{bottom:358.336500px;}
.y116{bottom:363.141000px;}
.y8f{bottom:364.282500px;}
.y8c{bottom:364.461000px;}
.yfa{bottom:365.061000px;}
.y25{bottom:365.196000px;}
.y15b{bottom:366.093000px;}
.y13d{bottom:368.221500px;}
.y122{bottom:370.038000px;}
.y86{bottom:373.428000px;}
.y8b{bottom:374.025000px;}
.y84{bottom:374.418000px;}
.y88{bottom:374.443500px;}
.y65{bottom:376.347000px;}
.ydd{bottom:378.660000px;}
.y85{bottom:382.992000px;}
.y7{bottom:383.028000px;}
.y115{bottom:383.464500px;}
.y8e{bottom:384.606000px;}
.yf9{bottom:385.384500px;}
.y24{bottom:385.519500px;}
.y13c{bottom:388.545000px;}
.y121{bottom:390.363000px;}
.y8a{bottom:391.957500px;}
.y87{bottom:394.767000px;}
.y64{bottom:396.670500px;}
.ydc{bottom:398.983500px;}
.y15a{bottom:399.865500px;}
.y114{bottom:403.789500px;}
.y8d{bottom:404.929500px;}
.yf8{bottom:405.709500px;}
.y23{bottom:405.843000px;}
.y6{bottom:407.476500px;}
.y120{bottom:410.686500px;}
.y63{bottom:416.994000px;}
.y91{bottom:418.260000px;}
.y159{bottom:420.189000px;}
.y13b{bottom:420.544500px;}
.yc7{bottom:422.047500px;}
.y113{bottom:424.113000px;}
.yf7{bottom:426.033000px;}
.y4f{bottom:426.166500px;}
.y5{bottom:431.925000px;}
.y62{bottom:437.319000px;}
.y158{bottom:440.512500px;}
.y13a{bottom:440.868000px;}
.y83{bottom:440.974500px;}
.y22{bottom:442.371000px;}
.y112{bottom:444.436500px;}
.yf6{bottom:446.356500px;}
.y4e{bottom:446.491500px;}
.y61{bottom:457.642500px;}
.y82{bottom:461.298000px;}
.y111{bottom:464.760000px;}
.y4d{bottom:466.815000px;}
.y139{bottom:472.866000px;}
.yc6{bottom:473.451000px;}
.y157{bottom:474.286500px;}
.yf5{bottom:476.394000px;}
.y60{bottom:477.966000px;}
.y110{bottom:485.083500px;}
.y4c{bottom:487.138500px;}
.y138{bottom:493.189500px;}
.y21{bottom:493.605000px;}
.yc5{bottom:493.774500px;}
.y156{bottom:494.610000px;}
.y81{bottom:498.060000px;}
.y5f{bottom:498.289500px;}
.y80{bottom:502.197000px;}
.y10f{bottom:505.408500px;}
.yf4{bottom:506.431500px;}
.y4b{bottom:507.462000px;}
.yc4{bottom:514.099500px;}
.y155{bottom:514.933500px;}
.y5e{bottom:518.613000px;}
.y20{bottom:520.041000px;}
.y10e{bottom:525.732000px;}
.y4a{bottom:527.785500px;}
.y137{bottom:529.719000px;}
.y11f{bottom:531.432000px;}
.yc3{bottom:534.423000px;}
.y7f{bottom:534.822000px;}
.yf3{bottom:536.469000px;}
.y1f{bottom:537.973500px;}
.y5d{bottom:538.936500px;}
.y10d{bottom:546.055500px;}
.y49{bottom:548.110500px;}
.y154{bottom:548.707500px;}
.y11e{bottom:551.755500px;}
.yc2{bottom:554.746500px;}
.y1e{bottom:555.906000px;}
.y5c{bottom:559.261500px;}
.y12b{bottom:560.065500px;}
.y7e{bottom:564.859500px;}
.y10c{bottom:566.379000px;}
.y7d{bottom:567.879000px;}
.y48{bottom:568.434000px;}
.y153{bottom:569.031000px;}
.y11d{bottom:572.079000px;}
.yf2{bottom:573.231000px;}
.y1d{bottom:573.840000px;}
.yc1{bottom:575.070000px;}
.y5b{bottom:579.585000px;}
.y12a{bottom:580.389000px;}
.y136{bottom:580.440000px;}
.ydb{bottom:583.368000px;}
.y10b{bottom:586.702500px;}
.y47{bottom:588.757500px;}
.y1c{bottom:591.772500px;}
.yc0{bottom:595.393500px;}
.y5a{bottom:599.908500px;}
.y129{bottom:600.712500px;}
.y152{bottom:602.805000px;}
.yda{bottom:603.691500px;}
.y7c{bottom:605.578500px;}
.y10a{bottom:607.027500px;}
.y46{bottom:609.081000px;}
.y1b{bottom:609.705000px;}
.yf1{bottom:609.993000px;}
.y59{bottom:620.232000px;}
.ybf{bottom:622.788000px;}
.y151{bottom:623.128500px;}
.yd9{bottom:624.015000px;}
.ybe{bottom:626.833500px;}
.y135{bottom:627.307500px;}
.y109{bottom:627.351000px;}
.y1a{bottom:627.637500px;}
.y45{bottom:629.404500px;}
.yf0{bottom:630.316500px;}
.y58{bottom:640.555500px;}
.y150{bottom:643.452000px;}
.y7b{bottom:644.233500px;}
.yd8{bottom:644.338500px;}
.y19{bottom:645.570000px;}
.y134{bottom:647.631000px;}
.y108{bottom:647.674500px;}
.y44{bottom:649.728000px;}
.yef{bottom:650.640000px;}
.y57{bottom:660.880500px;}
.y18{bottom:663.502500px;}
.y14f{bottom:663.775500px;}
.yd7{bottom:664.662000px;}
.y133{bottom:667.954500px;}
.y107{bottom:667.998000px;}
.y43{bottom:670.053000px;}
.yee{bottom:670.963500px;}
.ybd{bottom:672.658500px;}
.y4{bottom:675.498000px;}
.ybc{bottom:676.702500px;}
.y56{bottom:681.204000px;}
.y17{bottom:681.436500px;}
.y7a{bottom:682.888500px;}
.yd6{bottom:684.987000px;}
.y79{bottom:687.025500px;}
.y106{bottom:688.321500px;}
.y42{bottom:690.376500px;}
.yed{bottom:691.288500px;}
.ybb{bottom:697.027500px;}
.y14e{bottom:697.549500px;}
.y16{bottom:699.369000px;}
.y3{bottom:699.946500px;}
.y55{bottom:701.527500px;}
.yd5{bottom:705.310500px;}
.y105{bottom:708.646500px;}
.y41{bottom:710.700000px;}
.yec{bottom:711.612000px;}
.y15{bottom:717.301500px;}
.yba{bottom:717.351000px;}
.y14d{bottom:717.873000px;}
.y78{bottom:721.543500px;}
.yd4{bottom:725.634000px;}
.y104{bottom:728.970000px;}
.y40{bottom:731.023500px;}
.yeb{bottom:731.935500px;}
.y14{bottom:735.234000px;}
.y54{bottom:738.055500px;}
.y14c{bottom:738.196500px;}
.y77{bottom:741.867000px;}
.yd3{bottom:745.957500px;}
.y103{bottom:749.293500px;}
.y3f{bottom:751.347000px;}
.yea{bottom:752.259000px;}
.y13{bottom:753.166500px;}
.yb9{bottom:756.754500px;}
.yb8{bottom:760.800000px;}
.y76{bottom:762.192000px;}
.yd2{bottom:766.281000px;}
.y102{bottom:769.617000px;}
.y12{bottom:771.099000px;}
.y3e{bottom:771.672000px;}
.y14b{bottom:771.970500px;}
.ye9{bottom:772.582500px;}
.y75{bottom:782.515500px;}
.yd1{bottom:786.606000px;}
.y53{bottom:787.564500px;}
.y3d{bottom:791.995500px;}
.y14a{bottom:792.294000px;}
.y11{bottom:796.305000px;}
.yb7{bottom:798.472500px;}
.y74{bottom:802.839000px;}
.y101{bottom:806.145000px;}
.yd0{bottom:806.929500px;}
.y52{bottom:807.888000px;}
.y3c{bottom:812.319000px;}
.y149{bottom:812.617500px;}
.ye8{bottom:822.091500px;}
.y73{bottom:823.162500px;}
.ycf{bottom:827.253000px;}
.y3b{bottom:832.642500px;}
.yb6{bottom:834.976500px;}
.yb3{bottom:841.066500px;}
.ye7{bottom:842.415000px;}
.yb2{bottom:845.112000px;}
.y148{bottom:846.391500px;}
.yce{bottom:847.576500px;}
.yb4{bottom:851.143500px;}
.y3a{bottom:852.966000px;}
.y10{bottom:854.647500px;}
.yb5{bottom:855.300000px;}
.y100{bottom:855.654000px;}
.y132{bottom:861.360000px;}
.y72{bottom:861.817500px;}
.ye6{bottom:862.738500px;}
.y71{bottom:865.954500px;}
.y147{bottom:866.715000px;}
.ycd{bottom:867.900000px;}
.y39{bottom:873.291000px;}
.yff{bottom:875.977500px;}
.y131{bottom:881.683500px;}
.ye5{bottom:883.062000px;}
.y146{bottom:887.038500px;}
.ycc{bottom:888.223500px;}
.y2{bottom:889.932000px;}
.yf{bottom:891.334500px;}
.y38{bottom:893.614500px;}
.y70{bottom:900.474000px;}
.y130{bottom:902.008500px;}
.y145{bottom:907.362000px;}
.ycb{bottom:908.548500px;}
.yb1{bottom:908.893500px;}
.ye{bottom:912.256500px;}
.y37{bottom:913.938000px;}
.y6f{bottom:920.797500px;}
.yb0{bottom:925.060500px;}
.yca{bottom:928.872000px;}
.yaf{bottom:929.217000px;}
.y36{bottom:934.261500px;}
.y6e{bottom:941.121000px;}
.y144{bottom:941.136000px;}
.y1{bottom:947.616000px;}
.yc9{bottom:949.195500px;}
.yae{bottom:949.540500px;}
.y35{bottom:954.585000px;}
.yd{bottom:957.723000px;}
.y143{bottom:961.459500px;}
.y6d{bottom:962.169000px;}
.y6c{bottom:966.214500px;}
.yad{bottom:969.864000px;}
.y34{bottom:974.910000px;}
.y142{bottom:981.783000px;}
.yc8{bottom:985.723500px;}
.yc{bottom:990.600000px;}
.y6b{bottom:992.776500px;}
.yab{bottom:994.756500px;}
.y33{bottom:995.233500px;}
.yaa{bottom:998.802000px;}
.ya9{bottom:1015.354500px;}
.y32{bottom:1015.557000px;}
.ya5{bottom:1018.246500px;}
.ya8{bottom:1019.398500px;}
.ya4{bottom:1027.810500px;}
.y6a{bottom:1029.306000px;}
.ya7{bottom:1035.678000px;}
.y31{bottom:1035.880500px;}
.ya3{bottom:1036.179000px;}
.ya6{bottom:1039.723500px;}
.yac{bottom:1054.113000px;}
.y30{bottom:1056.204000px;}
.yb{bottom:1141.020000px;}
.h1a{height:2.988780px;}
.h22{height:31.800699px;}
.h25{height:33.187496px;}
.h34{height:39.810550px;}
.hb{height:41.723369px;}
.hc{height:44.831700px;}
.h8{height:45.184219px;}
.h32{height:45.687311px;}
.h1b{height:46.865494px;}
.he{height:49.090950px;}
.h17{height:52.830780px;}
.h1e{height:53.050950px;}
.ha{height:53.798400px;}
.h20{height:55.548699px;}
.h23{height:55.554699px;}
.h14{height:56.941496px;}
.h28{height:60.211496px;}
.h2d{height:60.217496px;}
.hd{height:60.254040px;}
.h3{height:60.598349px;}
.h18{height:61.168950px;}
.h10{height:63.349496px;}
.h30{height:65.266950px;}
.h15{height:65.632950px;}
.hf{height:65.638950px;}
.h27{height:65.716950px;}
.h11{height:70.758780px;}
.h16{height:70.764780px;}
.h12{height:71.736699px;}
.h21{height:72.180699px;}
.h2{height:72.201388px;}
.h4{height:72.304680px;}
.h9{height:73.027727px;}
.h26{height:73.567496px;}
.h6{height:73.750774px;}
.h24{height:74.724780px;}
.h29{height:76.393496px;}
.h2e{height:76.399496px;}
.h33{height:77.366008px;}
.h2b{height:77.794950px;}
.h31{height:86.940780px;}
.h2f{height:86.946780px;}
.h5{height:99.856774px;}
.h13{height:100.603496px;}
.h2a{height:122.808780px;}
.h19{height:142.488780px;}
.h1f{height:142.494780px;}
.h2c{height:147.168780px;}
.h1d{height:182.316780px;}
.h1c{height:223.680780px;}
.h0{height:1262.835000px;}
.h7{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:127.656000px;}
.x15{left:176.742000px;}
.x5a{left:184.924500px;}
.x4b{left:199.213500px;}
.x17{left:202.147500px;}
.x3{left:205.174500px;}
.x4{left:206.925000px;}
.xf{left:209.650500px;}
.x18{left:213.055500px;}
.xd{left:214.279500px;}
.x5{left:215.857500px;}
.x14{left:217.651500px;}
.x7{left:221.070000px;}
.x13{left:240.067500px;}
.x4c{left:258.685500px;}
.x5b{left:260.119500px;}
.x45{left:267.526500px;}
.x26{left:273.709500px;}
.x25{left:278.401500px;}
.x4d{left:282.549000px;}
.xe{left:285.454500px;}
.x46{left:291.390000px;}
.xa{left:298.759500px;}
.x31{left:307.687500px;}
.x58{left:310.408500px;}
.x1{left:317.652000px;}
.x21{left:320.176500px;}
.x54{left:323.580000px;}
.x20{left:324.870000px;}
.x57{left:327.522000px;}
.x2a{left:331.141500px;}
.x42{left:333.090000px;}
.xb{left:339.223500px;}
.x2b{left:341.514000px;}
.x5c{left:342.717000px;}
.x38{left:351.084000px;}
.x32{left:355.458000px;}
.x3c{left:358.321500px;}
.x27{left:362.655000px;}
.x1a{left:365.505000px;}
.x8{left:372.201000px;}
.x2{left:375.928500px;}
.x51{left:380.392500px;}
.x10{left:384.475500px;}
.x1b{left:388.294500px;}
.x3d{left:399.663000px;}
.x11{left:410.616000px;}
.x12{left:412.855500px;}
.x56{left:414.334500px;}
.x39{left:415.740000px;}
.x9{left:419.619000px;}
.x2c{left:421.302000px;}
.x3e{left:427.593000px;}
.x3a{left:436.287000px;}
.x59{left:437.551500px;}
.x3b{left:439.752000px;}
.x16{left:441.642000px;}
.x3f{left:463.369500px;}
.x52{left:471.937500px;}
.x2e{left:477.471000px;}
.x19{left:483.336000px;}
.x55{left:486.003000px;}
.x43{left:491.539500px;}
.x53{left:495.801000px;}
.x40{left:499.146000px;}
.x1c{left:501.063000px;}
.x22{left:508.944000px;}
.x2f{left:512.311500px;}
.x4a{left:513.753000px;}
.x44{left:515.403000px;}
.x41{left:520.068000px;}
.x1d{left:523.852500px;}
.x33{left:527.842500px;}
.x2d{left:529.524000px;}
.x6{left:532.015500px;}
.x47{left:536.800500px;}
.x23{left:543.786000px;}
.x1e{left:546.199500px;}
.x1f{left:548.310000px;}
.x34{left:549.639000px;}
.x35{left:551.719500px;}
.x28{left:555.412500px;}
.x48{left:567.018000px;}
.x36{left:570.702000px;}
.x4e{left:579.442500px;}
.x24{left:580.771500px;}
.x29{left:590.253000px;}
.x30{left:600.939000px;}
.x4f{left:602.125500px;}
.x49{left:613.563000px;}
.x50{left:625.989000px;}
.x37{left:693.814500px;}
@media print{
.v18{vertical-align:-142.469333pt;}
.v11{vertical-align:-60.240000pt;}
.v8{vertical-align:-15.941333pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:3.520000pt;}
.v13{vertical-align:5.658667pt;}
.va{vertical-align:10.736000pt;}
.v2{vertical-align:14.709333pt;}
.v5{vertical-align:21.114667pt;}
.v1{vertical-align:23.205333pt;}
.v17{vertical-align:25.120000pt;}
.v4{vertical-align:26.810667pt;}
.v14{vertical-align:31.882667pt;}
.v10{vertical-align:35.893333pt;}
.v12{vertical-align:38.405333pt;}
.v9{vertical-align:44.304000pt;}
.v15{vertical-align:57.338667pt;}
.v6{vertical-align:60.240000pt;}
.ve{vertical-align:63.760000pt;}
.v7{vertical-align:74.624000pt;}
.vf{vertical-align:95.642667pt;}
.vb{vertical-align:124.000000pt;}
.v16{vertical-align:128.160000pt;}
.vc{vertical-align:196.170667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000933pt;}
.ls6f{letter-spacing:0.001420pt;}
.ls3e{letter-spacing:0.001431pt;}
.ls13{letter-spacing:0.001432pt;}
.lsd{letter-spacing:0.001788pt;}
.ls47{letter-spacing:0.001908pt;}
.ls62{letter-spacing:0.001910pt;}
.ls3b{letter-spacing:0.002397pt;}
.ls7a{letter-spacing:0.002400pt;}
.ls3{letter-spacing:0.002405pt;}
.ls72{letter-spacing:0.002717pt;}
.ls43{letter-spacing:0.003521pt;}
.ls35{letter-spacing:0.003842pt;}
.ls5{letter-spacing:0.003856pt;}
.ls68{letter-spacing:0.003861pt;}
.ls25{letter-spacing:0.006765pt;}
.ls5e{letter-spacing:0.446509pt;}
.ls5a{letter-spacing:0.812455pt;}
.ls37{letter-spacing:1.274144pt;}
.ls40{letter-spacing:1.609675pt;}
.ls41{letter-spacing:1.615008pt;}
.ls54{letter-spacing:1.617432pt;}
.ls59{letter-spacing:1.622765pt;}
.ls8{letter-spacing:2.231121pt;}
.ls10{letter-spacing:2.236455pt;}
.ls77{letter-spacing:2.651520pt;}
.ls2{letter-spacing:2.653258pt;}
.ls4c{letter-spacing:2.654275pt;}
.ls9{letter-spacing:2.656444pt;}
.ls76{letter-spacing:2.656853pt;}
.ls18{letter-spacing:2.658591pt;}
.ls4f{letter-spacing:2.659608pt;}
.ls15{letter-spacing:3.786350pt;}
.ls12{letter-spacing:3.791684pt;}
.ls73{letter-spacing:4.161420pt;}
.lsb{letter-spacing:4.181885pt;}
.ls84{letter-spacing:4.182775pt;}
.lsc{letter-spacing:4.454275pt;}
.ls6a{letter-spacing:8.081908pt;}
.lse{letter-spacing:8.926379pt;}
.ls4d{letter-spacing:9.090591pt;}
.ls50{letter-spacing:9.095925pt;}
.ls34{letter-spacing:9.693072pt;}
.ls7b{letter-spacing:9.693077pt;}
.ls29{letter-spacing:9.694528pt;}
.ls33{letter-spacing:9.696933pt;}
.ls1d{letter-spacing:9.697788pt;}
.ls4a{letter-spacing:9.698405pt;}
.ls7d{letter-spacing:9.698411pt;}
.ls52{letter-spacing:9.699521pt;}
.ls2e{letter-spacing:9.699861pt;}
.ls38{letter-spacing:9.699945pt;}
.ls30{letter-spacing:9.700826pt;}
.ls23{letter-spacing:9.703121pt;}
.ls1c{letter-spacing:10.142509pt;}
.ls11{letter-spacing:10.147842pt;}
.lsa{letter-spacing:11.927744pt;}
.ls36{letter-spacing:12.349258pt;}
.ls57{letter-spacing:12.350275pt;}
.ls6d{letter-spacing:12.354591pt;}
.ls5f{letter-spacing:12.925072pt;}
.ls1b{letter-spacing:12.927477pt;}
.ls5b{letter-spacing:12.930405pt;}
.ls7f{letter-spacing:12.932811pt;}
.ls6b{letter-spacing:13.090591pt;}
.ls64{letter-spacing:13.359477pt;}
.ls65{letter-spacing:13.361910pt;}
.ls66{letter-spacing:13.364811pt;}
.ls63{letter-spacing:13.367244pt;}
.ls2d{letter-spacing:13.738144pt;}
.ls5c{letter-spacing:14.202144pt;}
.ls60{letter-spacing:14.207477pt;}
.ls19{letter-spacing:14.260323pt;}
.ls1a{letter-spacing:15.586591pt;}
.ls51{letter-spacing:16.157072pt;}
.ls32{letter-spacing:16.158533pt;}
.ls27{letter-spacing:16.159477pt;}
.ls26{letter-spacing:16.162405pt;}
.ls44{letter-spacing:16.163521pt;}
.ls1e{letter-spacing:16.688749pt;}
.ls83{letter-spacing:17.089420pt;}
.ls1f{letter-spacing:17.492323pt;}
.ls4e{letter-spacing:17.777908pt;}
.ls74{letter-spacing:17.862775pt;}
.lsf{letter-spacing:17.903477pt;}
.ls7{letter-spacing:17.908811pt;}
.ls69{letter-spacing:18.539520pt;}
.ls58{letter-spacing:18.627713pt;}
.ls1{letter-spacing:18.818591pt;}
.ls5d{letter-spacing:18.819608pt;}
.ls75{letter-spacing:20.321420pt;}
.ls14{letter-spacing:20.501017pt;}
.ls6{letter-spacing:20.557258pt;}
.ls82{letter-spacing:21.859713pt;}
.ls79{letter-spacing:22.608853pt;}
.ls78{letter-spacing:22.614187pt;}
.ls22{letter-spacing:24.375925pt;}
.ls17{letter-spacing:25.535684pt;}
.ls4b{letter-spacing:25.736855pt;}
.ls16{letter-spacing:26.308323pt;}
.ls2a{letter-spacing:26.381072pt;}
.ls2c{letter-spacing:26.386405pt;}
.ls2f{letter-spacing:26.532323pt;}
.ls53{letter-spacing:26.563251pt;}
.ls49{letter-spacing:26.735477pt;}
.ls67{letter-spacing:27.395608pt;}
.ls4{letter-spacing:28.142379pt;}
.ls31{letter-spacing:28.647733pt;}
.ls71{letter-spacing:29.354144pt;}
.ls48{letter-spacing:29.383925pt;}
.ls20{letter-spacing:29.615477pt;}
.ls70{letter-spacing:33.537441pt;}
.ls45{letter-spacing:53.120044pt;}
.ls55{letter-spacing:53.938405pt;}
.ls3d{letter-spacing:58.151925pt;}
.ls3c{letter-spacing:65.447733pt;}
.ls3a{letter-spacing:79.383733pt;}
.ls39{letter-spacing:82.039925pt;}
.ls56{letter-spacing:133.315251pt;}
.ls24{letter-spacing:270.432749pt;}
.ls61{letter-spacing:417.383121pt;}
.ls21{letter-spacing:435.648749pt;}
.ls80{letter-spacing:441.603713pt;}
.ls7c{letter-spacing:457.662379pt;}
.ls28{letter-spacing:474.636455pt;}
.ls46{letter-spacing:481.561200pt;}
.ls2b{letter-spacing:513.357258pt;}
.ls6e{letter-spacing:513.785279pt;}
.ls7e{letter-spacing:527.731713pt;}
.ls3f{letter-spacing:545.539867pt;}
.ls81{letter-spacing:566.659713pt;}
.ls42{letter-spacing:571.273200pt;}
.ws6a{word-spacing:-69.282967pt;}
.ws65{word-spacing:-42.066082pt;}
.ws57{word-spacing:-37.899668pt;}
.ws64{word-spacing:-28.241478pt;}
.ws58{word-spacing:-28.183296pt;}
.ws66{word-spacing:-28.178520pt;}
.ws96{word-spacing:-26.903853pt;}
.wsa8{word-spacing:-24.983294pt;}
.wsa5{word-spacing:-24.981488pt;}
.wsd4{word-spacing:-22.917140pt;}
.wsa4{word-spacing:-21.762566pt;}
.wsa2{word-spacing:-21.735855pt;}
.wsa3{word-spacing:-21.735450pt;}
.wsa6{word-spacing:-21.720358pt;}
.ws5a{word-spacing:-16.162923pt;}
.ws9e{word-spacing:-3.246548pt;}
.wsc3{word-spacing:-3.013821pt;}
.ws9a{word-spacing:-2.490184pt;}
.ws82{word-spacing:-2.315638pt;}
.ws8a{word-spacing:-2.024729pt;}
.ws16{word-spacing:-1.636523pt;}
.ws1c{word-spacing:-1.559274pt;}
.ws8f{word-spacing:-1.501092pt;}
.ws85{word-spacing:-1.384728pt;}
.wscb{word-spacing:-1.152001pt;}
.ws77{word-spacing:-0.977455pt;}
.ws83{word-spacing:-0.919273pt;}
.ws6b{word-spacing:-0.744728pt;}
.ws38{word-spacing:-0.686546pt;}
.ws36{word-spacing:-0.628364pt;}
.ws93{word-spacing:-0.453819pt;}
.wscd{word-spacing:-0.337455pt;}
.ws92{word-spacing:-0.289546pt;}
.ws91{word-spacing:-0.279273pt;}
.ws42{word-spacing:-0.162909pt;}
.ws3f{word-spacing:-0.104727pt;}
.ws71{word-spacing:-0.058182pt;}
.ws15{word-spacing:-0.053134pt;}
.ws7f{word-spacing:-0.046545pt;}
.ws95{word-spacing:-0.042507pt;}
.ws61{word-spacing:-0.015599pt;}
.ws5{word-spacing:0.000000pt;}
.ws52{word-spacing:0.011636pt;}
.ws75{word-spacing:0.128000pt;}
.ws7e{word-spacing:0.186182pt;}
.ws12{word-spacing:0.488832pt;}
.ws5b{word-spacing:0.535273pt;}
.wsc1{word-spacing:0.593455pt;}
.wsc{word-spacing:0.701367pt;}
.wsc7{word-spacing:0.826183pt;}
.ws8b{word-spacing:0.884364pt;}
.ws8c{word-spacing:0.942546pt;}
.wsab{word-spacing:1.000728pt;}
.ws7d{word-spacing:1.117092pt;}
.ws31{word-spacing:1.175274pt;}
.wsc0{word-spacing:1.233456pt;}
.ws94{word-spacing:1.349819pt;}
.wsaf{word-spacing:1.408001pt;}
.ws99{word-spacing:1.524365pt;}
.wsb{word-spacing:1.551509pt;}
.ws8e{word-spacing:1.698911pt;}
.ws33{word-spacing:1.815274pt;}
.ws7c{word-spacing:1.873456pt;}
.ws9{word-spacing:1.923446pt;}
.ws27{word-spacing:1.931638pt;}
.ws37{word-spacing:2.048002pt;}
.wse{word-spacing:2.082848pt;}
.ws1a{word-spacing:2.222547pt;}
.ws22{word-spacing:2.280729pt;}
.wsb6{word-spacing:2.397093pt;}
.ws28{word-spacing:2.455275pt;}
.ws73{word-spacing:2.513457pt;}
.wsc2{word-spacing:2.571639pt;}
.ws19{word-spacing:2.688002pt;}
.wsb4{word-spacing:2.746184pt;}
.wsa{word-spacing:2.773588pt;}
.wsc6{word-spacing:2.804366pt;}
.ws1d{word-spacing:2.862548pt;}
.wsc8{word-spacing:2.920730pt;}
.ws14{word-spacing:2.932989pt;}
.ws9c{word-spacing:2.978912pt;}
.ws2a{word-spacing:3.037093pt;}
.ws81{word-spacing:3.095275pt;}
.ws2c{word-spacing:3.211639pt;}
.ws78{word-spacing:3.269821pt;}
.ws2b{word-spacing:3.328003pt;}
.wsbc{word-spacing:3.386185pt;}
.ws6{word-spacing:3.443098pt;}
.ws23{word-spacing:3.502548pt;}
.ws7{word-spacing:3.506859pt;}
.wsa7{word-spacing:3.560730pt;}
.ws41{word-spacing:3.618912pt;}
.wsd{word-spacing:3.676864pt;}
.wsb8{word-spacing:3.677094pt;}
.ws80{word-spacing:3.735276pt;}
.wsa1{word-spacing:3.785121pt;}
.ws39{word-spacing:3.793458pt;}
.wsa0{word-spacing:3.795741pt;}
.wsc9{word-spacing:3.851640pt;}
.ws79{word-spacing:3.853443pt;}
.ws4e{word-spacing:3.909821pt;}
.ws50{word-spacing:3.968003pt;}
.ws29{word-spacing:4.026185pt;}
.wsbe{word-spacing:4.084367pt;}
.ws3e{word-spacing:4.142549pt;}
.ws7a{word-spacing:4.200731pt;}
.ws59{word-spacing:4.258913pt;}
.wsbd{word-spacing:4.317095pt;}
.ws8d{word-spacing:4.433458pt;}
.ws40{word-spacing:4.549822pt;}
.wsb3{word-spacing:4.608004pt;}
.ws3b{word-spacing:4.666186pt;}
.ws84{word-spacing:4.782549pt;}
.ws13{word-spacing:4.792675pt;}
.wsd3{word-spacing:4.811130pt;}
.wsca{word-spacing:4.840731pt;}
.ws55{word-spacing:4.898913pt;}
.ws9d{word-spacing:4.957095pt;}
.wsc4{word-spacing:5.073459pt;}
.wsc5{word-spacing:5.189823pt;}
.ws6d{word-spacing:5.248004pt;}
.wsce{word-spacing:5.364368pt;}
.ws47{word-spacing:5.480732pt;}
.ws4c{word-spacing:5.538914pt;}
.wsb2{word-spacing:5.655277pt;}
.ws6f{word-spacing:5.713459pt;}
.ws34{word-spacing:5.771641pt;}
.ws46{word-spacing:5.829823pt;}
.ws2f{word-spacing:5.888005pt;}
.ws45{word-spacing:5.946187pt;}
.wsac{word-spacing:6.004369pt;}
.wsae{word-spacing:6.062551pt;}
.ws35{word-spacing:6.178914pt;}
.wsd0{word-spacing:6.237096pt;}
.ws8{word-spacing:6.280423pt;}
.ws5d{word-spacing:6.295278pt;}
.ws24{word-spacing:6.353460pt;}
.ws18{word-spacing:6.411642pt;}
.ws21{word-spacing:6.528005pt;}
.wsb7{word-spacing:6.586187pt;}
.ws4b{word-spacing:6.644369pt;}
.ws63{word-spacing:6.702551pt;}
.ws2e{word-spacing:6.760733pt;}
.ws74{word-spacing:6.818915pt;}
.ws4a{word-spacing:6.877097pt;}
.ws89{word-spacing:6.935279pt;}
.ws60{word-spacing:6.993460pt;}
.ws4f{word-spacing:7.109824pt;}
.ws9f{word-spacing:7.168006pt;}
.ws53{word-spacing:7.226188pt;}
.ws3a{word-spacing:7.342552pt;}
.wsd1{word-spacing:7.400733pt;}
.ws1b{word-spacing:7.458915pt;}
.ws88{word-spacing:7.633461pt;}
.wsbb{word-spacing:7.691643pt;}
.wsb1{word-spacing:7.749825pt;}
.ws25{word-spacing:7.866188pt;}
.ws7b{word-spacing:7.924370pt;}
.ws11{word-spacing:7.927573pt;}
.ws54{word-spacing:7.982552pt;}
.wsb9{word-spacing:8.157098pt;}
.ws72{word-spacing:8.389825pt;}
.ws32{word-spacing:8.448007pt;}
.ws44{word-spacing:8.506189pt;}
.ws90{word-spacing:8.564371pt;}
.wsf{word-spacing:8.618313pt;}
.wsd2{word-spacing:8.622553pt;}
.ws10{word-spacing:8.671447pt;}
.ws48{word-spacing:8.913462pt;}
.wsad{word-spacing:8.971644pt;}
.ws51{word-spacing:9.088008pt;}
.ws3{word-spacing:9.181547pt;}
.ws2d{word-spacing:9.204371pt;}
.ws20{word-spacing:9.262553pt;}
.wsb5{word-spacing:9.495281pt;}
.ws6c{word-spacing:9.553463pt;}
.ws1e{word-spacing:9.611644pt;}
.ws3d{word-spacing:9.669826pt;}
.ws5e{word-spacing:9.786190pt;}
.ws4d{word-spacing:9.844372pt;}
.ws86{word-spacing:10.077099pt;}
.ws87{word-spacing:10.193463pt;}
.ws5f{word-spacing:10.542554pt;}
.ws1f{word-spacing:10.600736pt;}
.wsba{word-spacing:10.717100pt;}
.ws76{word-spacing:10.775282pt;}
.wsb0{word-spacing:10.833464pt;}
.ws26{word-spacing:11.008009pt;}
.ws97{word-spacing:11.124373pt;}
.ws9b{word-spacing:11.415282pt;}
.ws98{word-spacing:11.589828pt;}
.ws30{word-spacing:11.648010pt;}
.wsbf{word-spacing:11.764373pt;}
.ws3c{word-spacing:11.938919pt;}
.ws43{word-spacing:12.578920pt;}
.wsaa{word-spacing:12.637101pt;}
.wscf{word-spacing:14.266194pt;}
.wscc{word-spacing:16.826196pt;}
.ws5c{word-spacing:22.259270pt;}
.ws67{word-spacing:23.603639pt;}
.ws1{word-spacing:24.866747pt;}
.ws0{word-spacing:27.636455pt;}
.ws49{word-spacing:28.615887pt;}
.ws56{word-spacing:33.971802pt;}
.ws2{word-spacing:34.338985pt;}
.ws4{word-spacing:37.185264pt;}
.ws69{word-spacing:55.744009pt;}
.ws68{word-spacing:55.749342pt;}
.ws17{word-spacing:86.000687pt;}
.ws6e{word-spacing:105.753422pt;}
.wsa9{word-spacing:355.677387pt;}
.ws62{word-spacing:422.237443pt;}
.ws70{word-spacing:604.521231pt;}
._5{margin-left:-45.724102pt;}
._8{margin-left:-36.909818pt;}
._35{margin-left:-33.053568pt;}
._a{margin-left:-31.179162pt;}
._28{margin-left:-29.537199pt;}
._d{margin-left:-24.081316pt;}
._2a{margin-left:-22.724484pt;}
._3{margin-left:-8.997916pt;}
._0{margin-left:-7.161606pt;}
._2b{margin-left:-5.689246pt;}
._6{margin-left:-4.590773pt;}
._c{margin-left:-3.443098pt;}
._1{margin-left:-2.479018pt;}
._f{margin-left:-1.487748pt;}
._e{width:1.487748pt;}
._2{width:2.387202pt;}
._4{width:3.305357pt;}
._9{width:4.590773pt;}
._30{width:5.901349pt;}
._16{width:14.208003pt;}
._25{width:15.592740pt;}
._11{width:16.559492pt;}
._19{width:18.107748pt;}
._1c{width:19.002668pt;}
._23{width:20.282669pt;}
._15{width:21.803088pt;}
._10{width:23.219500pt;}
._18{width:24.727293pt;}
._17{width:26.529186pt;}
._1d{width:28.160023pt;}
._14{width:29.170493pt;}
._32{width:30.092602pt;}
._20{width:31.104496pt;}
._34{width:32.141371pt;}
._22{width:33.373589pt;}
._1f{width:34.616465pt;}
._1e{width:36.538212pt;}
._13{width:37.767575pt;}
._26{width:38.719371pt;}
._31{width:39.779058pt;}
._12{width:40.700542pt;}
._21{width:41.600035pt;}
._2d{width:42.647308pt;}
._1b{width:44.344549pt;}
._1a{width:45.974074pt;}
._2f{width:47.362217pt;}
._7{width:48.360140pt;}
._2e{width:51.083679pt;}
._33{width:52.282695pt;}
._2c{width:53.271787pt;}
._24{width:86.077200pt;}
._27{width:91.694622pt;}
._b{width:140.656913pt;}
._29{width:255.651122pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y161{bottom:-423.764000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:101.312000pt;}
.y2f{bottom:122.177333pt;}
.y9{bottom:130.536000pt;}
.y160{bottom:139.753333pt;}
.ya1{bottom:158.577333pt;}
.y2e{bottom:162.028000pt;}
.ya0{bottom:162.272000pt;}
.y128{bottom:162.421333pt;}
.y15f{bottom:168.976000pt;}
.y11c{bottom:172.230667pt;}
.y9f{bottom:176.642667pt;}
.y9b{bottom:179.434667pt;}
.y2d{bottom:180.093333pt;}
.y99{bottom:180.314667pt;}
.y9e{bottom:180.337333pt;}
.y127{bottom:180.486667pt;}
.y9a{bottom:187.936000pt;}
.y11b{bottom:190.296000pt;}
.y9d{bottom:194.708000pt;}
.y8{bottom:197.554667pt;}
.y2c{bottom:198.158667pt;}
.y15e{bottom:198.200000pt;}
.y9c{bottom:198.404000pt;}
.y126{bottom:198.553333pt;}
.ye4{bottom:202.930667pt;}
.ye3{bottom:206.526667pt;}
.y11a{bottom:208.362667pt;}
.ya2{bottom:211.314667pt;}
.y2b{bottom:216.224000pt;}
.y51{bottom:216.225333pt;}
.y125{bottom:216.618667pt;}
.yfe{bottom:223.013333pt;}
.y12f{bottom:224.106667pt;}
.y119{bottom:226.428000pt;}
.y98{bottom:229.354667pt;}
.ye2{bottom:232.960000pt;}
.y2a{bottom:234.290667pt;}
.y124{bottom:234.684000pt;}
.yfd{bottom:241.078667pt;}
.y118{bottom:244.493333pt;}
.y141{bottom:244.668000pt;}
.y95{bottom:246.517333pt;}
.y93{bottom:247.397333pt;}
.y97{bottom:247.420000pt;}
.ye1{bottom:251.026667pt;}
.y29{bottom:252.356000pt;}
.y94{bottom:255.018667pt;}
.yfc{bottom:259.144000pt;}
.y69{bottom:262.268000pt;}
.y140{bottom:262.733333pt;}
.y96{bottom:265.485333pt;}
.y123{bottom:267.153333pt;}
.ye0{bottom:269.092000pt;}
.y28{bottom:270.421333pt;}
.y12e{bottom:274.596000pt;}
.y117{bottom:276.962667pt;}
.y92{bottom:280.257333pt;}
.y68{bottom:280.333333pt;}
.y13f{bottom:280.798667pt;}
.ydf{bottom:287.157333pt;}
.y27{bottom:288.486667pt;}
.y15d{bottom:289.284000pt;}
.yfb{bottom:291.821333pt;}
.y12d{bottom:292.661333pt;}
.y67{bottom:298.400000pt;}
.y90{bottom:305.740000pt;}
.y26{bottom:306.552000pt;}
.y50{bottom:306.553333pt;}
.y15c{bottom:307.349333pt;}
.y13e{bottom:309.242667pt;}
.y12c{bottom:310.726667pt;}
.y89{bottom:314.773333pt;}
.y66{bottom:316.465333pt;}
.yde{bottom:318.521333pt;}
.y116{bottom:322.792000pt;}
.y8f{bottom:323.806667pt;}
.y8c{bottom:323.965333pt;}
.yfa{bottom:324.498667pt;}
.y25{bottom:324.618667pt;}
.y15b{bottom:325.416000pt;}
.y13d{bottom:327.308000pt;}
.y122{bottom:328.922667pt;}
.y86{bottom:331.936000pt;}
.y8b{bottom:332.466667pt;}
.y84{bottom:332.816000pt;}
.y88{bottom:332.838667pt;}
.y65{bottom:334.530667pt;}
.ydd{bottom:336.586667pt;}
.y85{bottom:340.437333pt;}
.y7{bottom:340.469333pt;}
.y115{bottom:340.857333pt;}
.y8e{bottom:341.872000pt;}
.yf9{bottom:342.564000pt;}
.y24{bottom:342.684000pt;}
.y13c{bottom:345.373333pt;}
.y121{bottom:346.989333pt;}
.y8a{bottom:348.406667pt;}
.y87{bottom:350.904000pt;}
.y64{bottom:352.596000pt;}
.ydc{bottom:354.652000pt;}
.y15a{bottom:355.436000pt;}
.y114{bottom:358.924000pt;}
.y8d{bottom:359.937333pt;}
.yf8{bottom:360.630667pt;}
.y23{bottom:360.749333pt;}
.y6{bottom:362.201333pt;}
.y120{bottom:365.054667pt;}
.y63{bottom:370.661333pt;}
.y91{bottom:371.786667pt;}
.y159{bottom:373.501333pt;}
.y13b{bottom:373.817333pt;}
.yc7{bottom:375.153333pt;}
.y113{bottom:376.989333pt;}
.yf7{bottom:378.696000pt;}
.y4f{bottom:378.814667pt;}
.y5{bottom:383.933333pt;}
.y62{bottom:388.728000pt;}
.y158{bottom:391.566667pt;}
.y13a{bottom:391.882667pt;}
.y83{bottom:391.977333pt;}
.y22{bottom:393.218667pt;}
.y112{bottom:395.054667pt;}
.yf6{bottom:396.761333pt;}
.y4e{bottom:396.881333pt;}
.y61{bottom:406.793333pt;}
.y82{bottom:410.042667pt;}
.y111{bottom:413.120000pt;}
.y4d{bottom:414.946667pt;}
.y139{bottom:420.325333pt;}
.yc6{bottom:420.845333pt;}
.y157{bottom:421.588000pt;}
.yf5{bottom:423.461333pt;}
.y60{bottom:424.858667pt;}
.y110{bottom:431.185333pt;}
.y4c{bottom:433.012000pt;}
.y138{bottom:438.390667pt;}
.y21{bottom:438.760000pt;}
.yc5{bottom:438.910667pt;}
.y156{bottom:439.653333pt;}
.y81{bottom:442.720000pt;}
.y5f{bottom:442.924000pt;}
.y80{bottom:446.397333pt;}
.y10f{bottom:449.252000pt;}
.yf4{bottom:450.161333pt;}
.y4b{bottom:451.077333pt;}
.yc4{bottom:456.977333pt;}
.y155{bottom:457.718667pt;}
.y5e{bottom:460.989333pt;}
.y20{bottom:462.258667pt;}
.y10e{bottom:467.317333pt;}
.y4a{bottom:469.142667pt;}
.y137{bottom:470.861333pt;}
.y11f{bottom:472.384000pt;}
.yc3{bottom:475.042667pt;}
.y7f{bottom:475.397333pt;}
.yf3{bottom:476.861333pt;}
.y1f{bottom:478.198667pt;}
.y5d{bottom:479.054667pt;}
.y10d{bottom:485.382667pt;}
.y49{bottom:487.209333pt;}
.y154{bottom:487.740000pt;}
.y11e{bottom:490.449333pt;}
.yc2{bottom:493.108000pt;}
.y1e{bottom:494.138667pt;}
.y5c{bottom:497.121333pt;}
.y12b{bottom:497.836000pt;}
.y7e{bottom:502.097333pt;}
.y10c{bottom:503.448000pt;}
.y7d{bottom:504.781333pt;}
.y48{bottom:505.274667pt;}
.y153{bottom:505.805333pt;}
.y11d{bottom:508.514667pt;}
.yf2{bottom:509.538667pt;}
.y1d{bottom:510.080000pt;}
.yc1{bottom:511.173333pt;}
.y5b{bottom:515.186667pt;}
.y12a{bottom:515.901333pt;}
.y136{bottom:515.946667pt;}
.ydb{bottom:518.549333pt;}
.y10b{bottom:521.513333pt;}
.y47{bottom:523.340000pt;}
.y1c{bottom:526.020000pt;}
.yc0{bottom:529.238667pt;}
.y5a{bottom:533.252000pt;}
.y129{bottom:533.966667pt;}
.y152{bottom:535.826667pt;}
.yda{bottom:536.614667pt;}
.y7c{bottom:538.292000pt;}
.y10a{bottom:539.580000pt;}
.y46{bottom:541.405333pt;}
.y1b{bottom:541.960000pt;}
.yf1{bottom:542.216000pt;}
.y59{bottom:551.317333pt;}
.ybf{bottom:553.589333pt;}
.y151{bottom:553.892000pt;}
.yd9{bottom:554.680000pt;}
.ybe{bottom:557.185333pt;}
.y135{bottom:557.606667pt;}
.y109{bottom:557.645333pt;}
.y1a{bottom:557.900000pt;}
.y45{bottom:559.470667pt;}
.yf0{bottom:560.281333pt;}
.y58{bottom:569.382667pt;}
.y150{bottom:571.957333pt;}
.y7b{bottom:572.652000pt;}
.yd8{bottom:572.745333pt;}
.y19{bottom:573.840000pt;}
.y134{bottom:575.672000pt;}
.y108{bottom:575.710667pt;}
.y44{bottom:577.536000pt;}
.yef{bottom:578.346667pt;}
.y57{bottom:587.449333pt;}
.y18{bottom:589.780000pt;}
.y14f{bottom:590.022667pt;}
.yd7{bottom:590.810667pt;}
.y133{bottom:593.737333pt;}
.y107{bottom:593.776000pt;}
.y43{bottom:595.602667pt;}
.yee{bottom:596.412000pt;}
.ybd{bottom:597.918667pt;}
.y4{bottom:600.442667pt;}
.ybc{bottom:601.513333pt;}
.y56{bottom:605.514667pt;}
.y17{bottom:605.721333pt;}
.y7a{bottom:607.012000pt;}
.yd6{bottom:608.877333pt;}
.y79{bottom:610.689333pt;}
.y106{bottom:611.841333pt;}
.y42{bottom:613.668000pt;}
.yed{bottom:614.478667pt;}
.ybb{bottom:619.580000pt;}
.y14e{bottom:620.044000pt;}
.y16{bottom:621.661333pt;}
.y3{bottom:622.174667pt;}
.y55{bottom:623.580000pt;}
.yd5{bottom:626.942667pt;}
.y105{bottom:629.908000pt;}
.y41{bottom:631.733333pt;}
.yec{bottom:632.544000pt;}
.y15{bottom:637.601333pt;}
.yba{bottom:637.645333pt;}
.y14d{bottom:638.109333pt;}
.y78{bottom:641.372000pt;}
.yd4{bottom:645.008000pt;}
.y104{bottom:647.973333pt;}
.y40{bottom:649.798667pt;}
.yeb{bottom:650.609333pt;}
.y14{bottom:653.541333pt;}
.y54{bottom:656.049333pt;}
.y14c{bottom:656.174667pt;}
.y77{bottom:659.437333pt;}
.yd3{bottom:663.073333pt;}
.y103{bottom:666.038667pt;}
.y3f{bottom:667.864000pt;}
.yea{bottom:668.674667pt;}
.y13{bottom:669.481333pt;}
.yb9{bottom:672.670667pt;}
.yb8{bottom:676.266667pt;}
.y76{bottom:677.504000pt;}
.yd2{bottom:681.138667pt;}
.y102{bottom:684.104000pt;}
.y12{bottom:685.421333pt;}
.y3e{bottom:685.930667pt;}
.y14b{bottom:686.196000pt;}
.ye9{bottom:686.740000pt;}
.y75{bottom:695.569333pt;}
.yd1{bottom:699.205333pt;}
.y53{bottom:700.057333pt;}
.y3d{bottom:703.996000pt;}
.y14a{bottom:704.261333pt;}
.y11{bottom:707.826667pt;}
.yb7{bottom:709.753333pt;}
.y74{bottom:713.634667pt;}
.y101{bottom:716.573333pt;}
.yd0{bottom:717.270667pt;}
.y52{bottom:718.122667pt;}
.y3c{bottom:722.061333pt;}
.y149{bottom:722.326667pt;}
.ye8{bottom:730.748000pt;}
.y73{bottom:731.700000pt;}
.ycf{bottom:735.336000pt;}
.y3b{bottom:740.126667pt;}
.yb6{bottom:742.201333pt;}
.yb3{bottom:747.614667pt;}
.ye7{bottom:748.813333pt;}
.yb2{bottom:751.210667pt;}
.y148{bottom:752.348000pt;}
.yce{bottom:753.401333pt;}
.yb4{bottom:756.572000pt;}
.y3a{bottom:758.192000pt;}
.y10{bottom:759.686667pt;}
.yb5{bottom:760.266667pt;}
.y100{bottom:760.581333pt;}
.y132{bottom:765.653333pt;}
.y72{bottom:766.060000pt;}
.ye6{bottom:766.878667pt;}
.y71{bottom:769.737333pt;}
.y147{bottom:770.413333pt;}
.ycd{bottom:771.466667pt;}
.y39{bottom:776.258667pt;}
.yff{bottom:778.646667pt;}
.y131{bottom:783.718667pt;}
.ye5{bottom:784.944000pt;}
.y146{bottom:788.478667pt;}
.ycc{bottom:789.532000pt;}
.y2{bottom:791.050667pt;}
.yf{bottom:792.297333pt;}
.y38{bottom:794.324000pt;}
.y70{bottom:800.421333pt;}
.y130{bottom:801.785333pt;}
.y145{bottom:806.544000pt;}
.ycb{bottom:807.598667pt;}
.yb1{bottom:807.905333pt;}
.ye{bottom:810.894667pt;}
.y37{bottom:812.389333pt;}
.y6f{bottom:818.486667pt;}
.yb0{bottom:822.276000pt;}
.yca{bottom:825.664000pt;}
.yaf{bottom:825.970667pt;}
.y36{bottom:830.454667pt;}
.y6e{bottom:836.552000pt;}
.y144{bottom:836.565333pt;}
.y1{bottom:842.325333pt;}
.yc9{bottom:843.729333pt;}
.yae{bottom:844.036000pt;}
.y35{bottom:848.520000pt;}
.yd{bottom:851.309333pt;}
.y143{bottom:854.630667pt;}
.y6d{bottom:855.261333pt;}
.y6c{bottom:858.857333pt;}
.yad{bottom:862.101333pt;}
.y34{bottom:866.586667pt;}
.y142{bottom:872.696000pt;}
.yc8{bottom:876.198667pt;}
.yc{bottom:880.533333pt;}
.y6b{bottom:882.468000pt;}
.yab{bottom:884.228000pt;}
.y33{bottom:884.652000pt;}
.yaa{bottom:887.824000pt;}
.ya9{bottom:902.537333pt;}
.y32{bottom:902.717333pt;}
.ya5{bottom:905.108000pt;}
.ya8{bottom:906.132000pt;}
.ya4{bottom:913.609333pt;}
.y6a{bottom:914.938667pt;}
.ya7{bottom:920.602667pt;}
.y31{bottom:920.782667pt;}
.ya3{bottom:921.048000pt;}
.ya6{bottom:924.198667pt;}
.yac{bottom:936.989333pt;}
.y30{bottom:938.848000pt;}
.yb{bottom:1014.240000pt;}
.h1a{height:2.656693pt;}
.h22{height:28.267288pt;}
.h25{height:29.499997pt;}
.h34{height:35.387155pt;}
.hb{height:37.087439pt;}
.hc{height:39.850400pt;}
.h8{height:40.163750pt;}
.h32{height:40.610943pt;}
.h1b{height:41.658217pt;}
.he{height:43.636400pt;}
.h17{height:46.960693pt;}
.h1e{height:47.156400pt;}
.ha{height:47.820800pt;}
.h20{height:49.376621pt;}
.h23{height:49.381955pt;}
.h14{height:50.614663pt;}
.h28{height:53.521330pt;}
.h2d{height:53.526663pt;}
.hd{height:53.559147pt;}
.h3{height:53.865199pt;}
.h18{height:54.372400pt;}
.h10{height:56.310663pt;}
.h30{height:58.015067pt;}
.h15{height:58.340400pt;}
.hf{height:58.345733pt;}
.h27{height:58.415067pt;}
.h11{height:62.896693pt;}
.h16{height:62.902027pt;}
.h12{height:63.765955pt;}
.h21{height:64.160621pt;}
.h2{height:64.179011pt;}
.h4{height:64.270827pt;}
.h9{height:64.913535pt;}
.h26{height:65.393330pt;}
.h6{height:65.556243pt;}
.h24{height:66.422027pt;}
.h29{height:67.905330pt;}
.h2e{height:67.910663pt;}
.h33{height:68.769785pt;}
.h2b{height:69.151067pt;}
.h31{height:77.280693pt;}
.h2f{height:77.286027pt;}
.h5{height:88.761577pt;}
.h13{height:89.425330pt;}
.h2a{height:109.163360pt;}
.h19{height:126.656693pt;}
.h1f{height:126.662027pt;}
.h2c{height:130.816693pt;}
.h1d{height:162.059360pt;}
.h1c{height:198.827360pt;}
.h0{height:1122.520000pt;}
.h7{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:113.472000pt;}
.x15{left:157.104000pt;}
.x5a{left:164.377333pt;}
.x4b{left:177.078667pt;}
.x17{left:179.686667pt;}
.x3{left:182.377333pt;}
.x4{left:183.933333pt;}
.xf{left:186.356000pt;}
.x18{left:189.382667pt;}
.xd{left:190.470667pt;}
.x5{left:191.873333pt;}
.x14{left:193.468000pt;}
.x7{left:196.506667pt;}
.x13{left:213.393333pt;}
.x4c{left:229.942667pt;}
.x5b{left:231.217333pt;}
.x45{left:237.801333pt;}
.x26{left:243.297333pt;}
.x25{left:247.468000pt;}
.x4d{left:251.154667pt;}
.xe{left:253.737333pt;}
.x46{left:259.013333pt;}
.xa{left:265.564000pt;}
.x31{left:273.500000pt;}
.x58{left:275.918667pt;}
.x1{left:282.357333pt;}
.x21{left:284.601333pt;}
.x54{left:287.626667pt;}
.x20{left:288.773333pt;}
.x57{left:291.130667pt;}
.x2a{left:294.348000pt;}
.x42{left:296.080000pt;}
.xb{left:301.532000pt;}
.x2b{left:303.568000pt;}
.x5c{left:304.637333pt;}
.x38{left:312.074667pt;}
.x32{left:315.962667pt;}
.x3c{left:318.508000pt;}
.x27{left:322.360000pt;}
.x1a{left:324.893333pt;}
.x8{left:330.845333pt;}
.x2{left:334.158667pt;}
.x51{left:338.126667pt;}
.x10{left:341.756000pt;}
.x1b{left:345.150667pt;}
.x3d{left:355.256000pt;}
.x11{left:364.992000pt;}
.x12{left:366.982667pt;}
.x56{left:368.297333pt;}
.x39{left:369.546667pt;}
.x9{left:372.994667pt;}
.x2c{left:374.490667pt;}
.x3e{left:380.082667pt;}
.x3a{left:387.810667pt;}
.x59{left:388.934667pt;}
.x3b{left:390.890667pt;}
.x16{left:392.570667pt;}
.x3f{left:411.884000pt;}
.x52{left:419.500000pt;}
.x2e{left:424.418667pt;}
.x19{left:429.632000pt;}
.x55{left:432.002667pt;}
.x43{left:436.924000pt;}
.x53{left:440.712000pt;}
.x40{left:443.685333pt;}
.x1c{left:445.389333pt;}
.x22{left:452.394667pt;}
.x2f{left:455.388000pt;}
.x4a{left:456.669333pt;}
.x44{left:458.136000pt;}
.x41{left:462.282667pt;}
.x1d{left:465.646667pt;}
.x33{left:469.193333pt;}
.x2d{left:470.688000pt;}
.x6{left:472.902667pt;}
.x47{left:477.156000pt;}
.x23{left:483.365333pt;}
.x1e{left:485.510667pt;}
.x1f{left:487.386667pt;}
.x34{left:488.568000pt;}
.x35{left:490.417333pt;}
.x28{left:493.700000pt;}
.x48{left:504.016000pt;}
.x36{left:507.290667pt;}
.x4e{left:515.060000pt;}
.x24{left:516.241333pt;}
.x29{left:524.669333pt;}
.x30{left:534.168000pt;}
.x4f{left:535.222667pt;}
.x49{left:545.389333pt;}
.x50{left:556.434667pt;}
.x37{left:616.724000pt;}
}




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