
    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_5cf7cfb74223edc78c9ccc73.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_b6f156b4778b86f0c81d4b03.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_5368924cd49c18b9ac270c00.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_59269c4e03248a7fe706d989.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_33a9ffc0c4be6fe67c0270b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_cb412ac0323e9439f6785639.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079102;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_a69c69f6e66dcef27ba5190a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_5fdd69783966ca2c3f2c0859.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.050293;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_bd0e3cf8e698f391ae6eb30c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239258;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_39ffffec3430a3159c6b36f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_c7cdd5b712eddf6862ab47ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.192688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192688,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.192796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192796,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);}
.m6{transform:matrix(0.259747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259747,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.259892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259892,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);}
.v11{vertical-align:-76.320000px;}
.v1{vertical-align:-55.440000px;}
.v17{vertical-align:-31.922483px;}
.vc{vertical-align:-30.240000px;}
.v14{vertical-align:-25.200000px;}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-13.680000px;}
.vd{vertical-align:-12.240000px;}
.vb{vertical-align:-9.360000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v15{vertical-align:4.320000px;}
.v12{vertical-align:9.360000px;}
.vf{vertical-align:14.400000px;}
.v8{vertical-align:22.320000px;}
.v6{vertical-align:24.480000px;}
.v2{vertical-align:30.240000px;}
.va{vertical-align:33.120000px;}
.v16{vertical-align:38.880000px;}
.v9{vertical-align:41.040000px;}
.v10{vertical-align:42.480000px;}
.ve{vertical-align:51.840000px;}
.v13{vertical-align:56.880000px;}
.ls39{letter-spacing:-2.915061px;}
.ls15{letter-spacing:-1.176000px;}
.ls27{letter-spacing:-1.134000px;}
.ls38{letter-spacing:-1.066764px;}
.lsb{letter-spacing:-0.870000px;}
.ls11{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.305400px;}
.ls1d{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.152400px;}
.ls33{letter-spacing:-0.012240px;}
.lse{letter-spacing:-0.011520px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005760px;}
.ls32{letter-spacing:0.008640px;}
.lsd{letter-spacing:0.018000px;}
.ls20{letter-spacing:0.023040px;}
.ls37{letter-spacing:0.076442px;}
.ls28{letter-spacing:0.080400px;}
.ls3{letter-spacing:0.083520px;}
.ls14{letter-spacing:0.109200px;}
.ls18{letter-spacing:0.109440px;}
.ls1c{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.178560px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.262200px;}
.ls1b{letter-spacing:0.269400px;}
.ls2c{letter-spacing:0.285120px;}
.ls35{letter-spacing:0.299400px;}
.ls17{letter-spacing:0.305400px;}
.ls36{letter-spacing:0.351600px;}
.ls0{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.798000px;}
.ls19{letter-spacing:1.440000px;}
.ls2b{letter-spacing:1.800000px;}
.ls2d{letter-spacing:2.257200px;}
.ls8{letter-spacing:2.832480px;}
.ls1a{letter-spacing:3.600000px;}
.ls2a{letter-spacing:6.840000px;}
.ls13{letter-spacing:7.200000px;}
.ls7{letter-spacing:14.598720px;}
.ls6{letter-spacing:17.232480px;}
.ls4{letter-spacing:18.198720px;}
.ls2{letter-spacing:19.440000px;}
.ls1e{letter-spacing:33.984000px;}
.lsf{letter-spacing:59.321280px;}
.ls23{letter-spacing:90.600000px;}
.ls25{letter-spacing:90.660000px;}
.ls24{letter-spacing:90.720000px;}
.ls22{letter-spacing:90.780000px;}
.ls21{letter-spacing:102.840000px;}
.ls30{letter-spacing:144.394202px;}
.ls2f{letter-spacing:178.139520px;}
.ls31{letter-spacing:295.664598px;}
.ls2e{letter-spacing:509.736000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.ws8{word-spacing:-66.240000px;}
.ws17{word-spacing:-21.060000px;}
.ws13{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.930477px;}
.ws1e{word-spacing:-17.854035px;}
.ws14{word-spacing:-17.712000px;}
.wse{word-spacing:-16.865400px;}
.ws18{word-spacing:-16.822200px;}
.ws1b{word-spacing:-16.787271px;}
.wsb{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.407600px;}
.wsd{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.948000px;}
.wsa{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.690000px;}
.ws16{word-spacing:-15.426000px;}
.wsc{word-spacing:-15.384000px;}
.ws1c{word-spacing:-14.938974px;}
.ws5{word-spacing:-13.716000px;}
.ws6{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.410720px;}
.ws12{word-spacing:-12.329400px;}
.ws11{word-spacing:-12.060000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
.ws19{word-spacing:115.402488px;}
.ws1d{word-spacing:115.555372px;}
._1f{margin-left:-222.103677px;}
._1c{margin-left:-178.726602px;}
._1d{margin-left:-92.849691px;}
._1e{margin-left:-90.947617px;}
._1b{margin-left:-53.029578px;}
._19{margin-left:-8.255520px;}
._16{margin-left:-3.181440px;}
._20{margin-left:-2.112480px;}
._1{margin-left:-1.086000px;}
._2{width:1.448880px;}
._7{width:2.498400px;}
._5{width:3.510720px;}
._6{width:4.662960px;}
._c{width:5.843040px;}
._9{width:7.563600px;}
._8{width:8.677440px;}
._a{width:10.125840px;}
._17{width:11.217360px;}
._15{width:12.696960px;}
._13{width:14.136960px;}
._b{width:15.486240px;}
._14{width:17.834880px;}
._4{width:19.037040px;}
._e{width:21.058080px;}
._d{width:22.363440px;}
._f{width:23.622960px;}
._10{width:25.701120px;}
._12{width:30.006720px;}
._11{width:31.026480px;}
._1a{width:72.765840px;}
._18{width:140.100000px;}
._3{width:410.823360px;}
._0{width:1382.105280px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fse{font-size:41.623190px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.239880px;}
.fs0{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:56.880000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs3{font-size:66.240000px;}
.fsb{font-size:69.120000px;}
.fsf{font-size:71.416138px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fsd{font-size:94.651056px;}
.fsa{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y80{bottom:0.180000px;}
.y65{bottom:1.080000px;}
.y4b{bottom:3.960000px;}
.y67{bottom:4.140000px;}
.yd7{bottom:4.500000px;}
.y74{bottom:5.760000px;}
.y81{bottom:6.480000px;}
.y88{bottom:7.380000px;}
.y164{bottom:9.013300px;}
.y12d{bottom:9.255000px;}
.y89{bottom:10.620000px;}
.yed{bottom:13.500000px;}
.y12e{bottom:16.095000px;}
.y166{bottom:16.922755px;}
.y165{bottom:18.204869px;}
.y9c{bottom:18.900000px;}
.y8b{bottom:23.040000px;}
.yd5{bottom:23.445000px;}
.yd6{bottom:28.665000px;}
.y122{bottom:34.995000px;}
.yeb{bottom:42.120000px;}
.y132{bottom:53.175000px;}
.y123{bottom:61.815000px;}
.y5{bottom:65.160000px;}
.y12b{bottom:75.345000px;}
.y4{bottom:79.020000px;}
.y124{bottom:88.635000px;}
.y3{bottom:94.500000px;}
.y125{bottom:115.455000px;}
.y96{bottom:116.280000px;}
.y120{bottom:117.900000px;}
.y36{bottom:120.240000px;}
.y130{bottom:127.155000px;}
.y5c{bottom:133.740000px;}
.yd3{bottom:135.360000px;}
.y95{bottom:136.980000px;}
.y167{bottom:137.700000px;}
.y11f{bottom:138.060000px;}
.y35{bottom:139.140000px;}
.y126{bottom:142.275000px;}
.y7c{bottom:144.180000px;}
.y163{bottom:152.895000px;}
.yd2{bottom:154.260000px;}
.y5b{bottom:154.440000px;}
.y94{bottom:157.680000px;}
.y34{bottom:158.220000px;}
.y11e{bottom:159.480000px;}
.y162{bottom:161.820000px;}
.y7b{bottom:163.260000px;}
.y127{bottom:169.050000px;}
.yf9{bottom:172.980000px;}
.yd1{bottom:173.340000px;}
.y5a{bottom:175.140000px;}
.y33{bottom:177.120000px;}
.y93{bottom:177.840000px;}
.y11d{bottom:178.740000px;}
.y7a{bottom:182.160000px;}
.y161{bottom:190.980000px;}
.yf8{bottom:192.060000px;}
.yd0{bottom:192.240000px;}
.y59{bottom:195.300000px;}
.y128{bottom:195.870000px;}
.y32{bottom:196.020000px;}
.y92{bottom:196.920000px;}
.y11c{bottom:197.820000px;}
.y79{bottom:201.240000px;}
.y160{bottom:207.000000px;}
.yf7{bottom:210.240000px;}
.ycf{bottom:211.140000px;}
.y58{bottom:214.380000px;}
.y31{bottom:215.100000px;}
.y91{bottom:215.820000px;}
.y11b{bottom:216.720000px;}
.y15f{bottom:220.170000px;}
.y78{bottom:220.350000px;}
.y129{bottom:222.690000px;}
.yf6{bottom:230.070000px;}
.yce{bottom:230.250000px;}
.y57{bottom:233.310000px;}
.y30{bottom:234.030000px;}
.y90{bottom:234.930000px;}
.y11a{bottom:238.350000px;}
.y77{bottom:241.050000px;}
.ycd{bottom:249.150000px;}
.y12a{bottom:249.510000px;}
.yf5{bottom:249.870000px;}
.y56{bottom:252.390000px;}
.y2f{bottom:253.110000px;}
.y8f{bottom:253.830000px;}
.y15e{bottom:256.350000px;}
.y119{bottom:257.430000px;}
.y76{bottom:262.110000px;}
.ycc{bottom:268.230000px;}
.yf4{bottom:269.490000px;}
.y55{bottom:271.290000px;}
.y8e{bottom:272.730000px;}
.y15d{bottom:275.430000px;}
.y118{bottom:275.970000px;}
.y75{bottom:278.310000px;}
.y2e{bottom:282.270000px;}
.yab{bottom:284.610000px;}
.ycb{bottom:287.310000px;}
.yf3{bottom:289.290000px;}
.y54{bottom:290.190000px;}
.y8d{bottom:291.810000px;}
.y15c{bottom:294.330000px;}
.y117{bottom:295.410000px;}
.y73{bottom:297.210000px;}
.y2d{bottom:303.510000px;}
.yaa{bottom:303.690000px;}
.yca{bottom:308.010000px;}
.yf2{bottom:308.910000px;}
.y53{bottom:309.270000px;}
.y8c{bottom:310.710000px;}
.y15b{bottom:313.230000px;}
.y116{bottom:314.310000px;}
.ya9{bottom:322.590000px;}
.y2c{bottom:323.670000px;}
.y8a{bottom:325.650000px;}
.y52{bottom:328.170000px;}
.yf1{bottom:328.710000px;}
.yc9{bottom:329.070000px;}
.y15a{bottom:332.310000px;}
.y115{bottom:335.910000px;}
.ya8{bottom:341.670000px;}
.y2b{bottom:342.750000px;}
.y51{bottom:347.250000px;}
.yf0{bottom:348.510000px;}
.yc8{bottom:349.770000px;}
.y114{bottom:354.990000px;}
.ya7{bottom:360.750000px;}
.y2a{bottom:361.650000px;}
.y87{bottom:363.630000px;}
.y50{bottom:366.150000px;}
.yef{bottom:368.130000px;}
.y159{bottom:370.290000px;}
.yc7{bottom:370.470000px;}
.y113{bottom:373.530000px;}
.y29{bottom:380.730000px;}
.ya6{bottom:381.450000px;}
.y4f{bottom:385.050000px;}
.yee{bottom:387.930000px;}
.y158{bottom:389.190000px;}
.yc6{bottom:391.170000px;}
.y112{bottom:392.790000px;}
.y28{bottom:401.070000px;}
.ya5{bottom:402.510000px;}
.y4e{bottom:404.130000px;}
.y157{bottom:408.090000px;}
.yec{bottom:410.250000px;}
.yc5{bottom:411.690000px;}
.y111{bottom:411.870000px;}
.ya4{bottom:422.670000px;}
.y4d{bottom:423.030000px;}
.y27{bottom:426.630000px;}
.y156{bottom:427.170000px;}
.y110{bottom:433.470000px;}
.yc4{bottom:433.830000px;}
.ya3{bottom:441.750000px;}
.y4c{bottom:442.110000px;}
.y26{bottom:445.710000px;}
.y155{bottom:446.070000px;}
.yea{bottom:451.515000px;}
.y10f{bottom:452.235000px;}
.yc3{bottom:454.575000px;}
.y4a{bottom:457.095000px;}
.ya2{bottom:460.695000px;}
.y25{bottom:464.655000px;}
.y154{bottom:465.015000px;}
.y10e{bottom:471.495000px;}
.yc2{bottom:475.275000px;}
.y49{bottom:475.995000px;}
.ya1{bottom:481.395000px;}
.y24{bottom:483.555000px;}
.y153{bottom:485.355000px;}
.y10d{bottom:490.395000px;}
.yc1{bottom:495.975000px;}
.y23{bottom:502.635000px;}
.y152{bottom:504.255000px;}
.y10c{bottom:512.175000px;}
.ye9{bottom:516.315000px;}
.yc0{bottom:516.675000px;}
.ya0{bottom:520.095000px;}
.y22{bottom:521.535000px;}
.y72{bottom:524.055000px;}
.y151{bottom:524.595000px;}
.y10b{bottom:531.975000px;}
.ye8{bottom:536.655000px;}
.ybf{bottom:537.015000px;}
.y150{bottom:539.535000px;}
.y21{bottom:540.615000px;}
.y9f{bottom:542.415000px;}
.y71{bottom:543.135000px;}
.y14f{bottom:550.155000px;}
.y10a{bottom:551.415000px;}
.ye7{bottom:555.555000px;}
.ybe{bottom:558.075000px;}
.y20{bottom:559.515000px;}
.y70{bottom:562.035000px;}
.y9e{bottom:564.735000px;}
.y109{bottom:570.315000px;}
.ye6{bottom:574.635000px;}
.y1f{bottom:578.415000px;}
.y14e{bottom:580.755000px;}
.y6f{bottom:581.115000px;}
.y9d{bottom:587.235000px;}
.y182{bottom:587.955000px;}
.ye5{bottom:593.535000px;}
.y1e{bottom:597.495000px;}
.ybd{bottom:598.575000px;}
.y108{bottom:599.475000px;}
.y14d{bottom:599.655000px;}
.y6e{bottom:600.195000px;}
.y181{bottom:608.295000px;}
.y107{bottom:610.995000px;}
.ye4{bottom:612.435000px;}
.y86{bottom:614.775000px;}
.y1d{bottom:616.395000px;}
.y14c{bottom:618.555000px;}
.ybc{bottom:618.735000px;}
.y6d{bottom:620.895000px;}
.y9b{bottom:626.475000px;}
.y180{bottom:627.195000px;}
.y106{bottom:629.535000px;}
.ye3{bottom:631.515000px;}
.y85{bottom:633.675000px;}
.y1c{bottom:635.475000px;}
.y14b{bottom:637.635000px;}
.ybb{bottom:638.715000px;}
.y6c{bottom:641.955000px;}
.y17f{bottom:646.275000px;}
.y105{bottom:648.975000px;}
.ye2{bottom:650.415000px;}
.y84{bottom:652.755000px;}
.y1b{bottom:654.375000px;}
.y14a{bottom:656.535000px;}
.yba{bottom:657.795000px;}
.y6b{bottom:662.115000px;}
.y17e{bottom:665.175000px;}
.y104{bottom:667.875000px;}
.ye1{bottom:672.375000px;}
.y1a{bottom:673.455000px;}
.y149{bottom:675.255000px;}
.yb9{bottom:676.335000px;}
.y6a{bottom:681.015000px;}
.y17d{bottom:684.105000px;}
.y103{bottom:686.805000px;}
.y19{bottom:692.385000px;}
.y83{bottom:694.545000px;}
.yb8{bottom:695.805000px;}
.ye0{bottom:696.345000px;}
.y69{bottom:700.125000px;}
.y17c{bottom:703.185000px;}
.y102{bottom:705.885000px;}
.y82{bottom:710.745000px;}
.y18{bottom:711.285000px;}
.yb7{bottom:716.505000px;}
.ydf{bottom:717.585000px;}
.y68{bottom:719.025000px;}
.y148{bottom:721.005000px;}
.y17b{bottom:722.085000px;}
.y101{bottom:724.785000px;}
.y7f{bottom:729.645000px;}
.y17{bottom:730.365000px;}
.y66{bottom:733.965000px;}
.y147{bottom:735.225000px;}
.yb6{bottom:737.205000px;}
.yde{bottom:737.745000px;}
.y17a{bottom:741.165000px;}
.y100{bottom:744.945000px;}
.y16{bottom:749.265000px;}
.y64{bottom:753.045000px;}
.y146{bottom:754.125000px;}
.yb5{bottom:756.105000px;}
.ydd{bottom:756.645000px;}
.y179{bottom:760.065000px;}
.yff{bottom:764.025000px;}
.y15{bottom:768.345000px;}
.y145{bottom:773.205000px;}
.yb4{bottom:775.005000px;}
.ydc{bottom:775.725000px;}
.y178{bottom:778.965000px;}
.yfe{bottom:782.925000px;}
.y14{bottom:787.245000px;}
.y144{bottom:791.745000px;}
.yb3{bottom:794.085000px;}
.ydb{bottom:794.625000px;}
.y177{bottom:798.045000px;}
.y143{bottom:811.005000px;}
.yfd{bottom:812.265000px;}
.yb2{bottom:812.985000px;}
.yda{bottom:813.705000px;}
.y13{bottom:816.405000px;}
.y176{bottom:816.945000px;}
.y48{bottom:828.645000px;}
.y142{bottom:830.085000px;}
.yb1{bottom:832.065000px;}
.yd9{bottom:832.785000px;}
.yfc{bottom:833.505000px;}
.y175{bottom:836.385000px;}
.y12{bottom:843.045000px;}
.y47{bottom:848.985000px;}
.yb0{bottom:850.965000px;}
.y141{bottom:851.685000px;}
.yd8{bottom:853.485000px;}
.yfb{bottom:853.665000px;}
.y174{bottom:856.725000px;}
.y11{bottom:863.745000px;}
.yfa{bottom:868.605000px;}
.y121{bottom:869.580000px;}
.y46{bottom:870.045000px;}
.y140{bottom:870.765000px;}
.y173{bottom:877.785000px;}
.y13f{bottom:889.665000px;}
.y45{bottom:890.385000px;}
.yaf{bottom:890.745000px;}
.y10{bottom:891.645000px;}
.y172{bottom:898.125000px;}
.y13e{bottom:908.565000px;}
.yf{bottom:908.925000px;}
.y44{bottom:909.285000px;}
.yd4{bottom:909.645000px;}
.yae{bottom:911.805000px;}
.y171{bottom:917.070000px;}
.y13d{bottom:927.690000px;}
.yad{bottom:928.050000px;}
.y43{bottom:928.230000px;}
.y9a{bottom:932.910000px;}
.y170{bottom:936.510000px;}
.ye{bottom:938.310000px;}
.y12c{bottom:938.520000px;}
.y13c{bottom:946.230000px;}
.yac{bottom:946.950000px;}
.y42{bottom:947.310000px;}
.y99{bottom:955.410000px;}
.yd{bottom:955.590000px;}
.y16f{bottom:956.850000px;}
.y13b{bottom:965.670000px;}
.y41{bottom:966.210000px;}
.y98{bottom:977.730000px;}
.y16e{bottom:977.910000px;}
.y13a{bottom:984.570000px;}
.yc{bottom:984.750000px;}
.y40{bottom:985.290000px;}
.y16d{bottom:998.610000px;}
.y97{bottom:1000.230000px;}
.yb{bottom:1002.210000px;}
.y139{bottom:1003.470000px;}
.y3f{bottom:1004.190000px;}
.y63{bottom:1005.450000px;}
.y133{bottom:1010.160000px;}
.y12f{bottom:1011.600000px;}
.y16c{bottom:1014.945000px;}
.y3e{bottom:1023.270000px;}
.y16b{bottom:1023.990000px;}
.y62{bottom:1024.530000px;}
.y138{bottom:1025.250000px;}
.ya{bottom:1027.950000px;}
.y131{bottom:1042.380000px;}
.y3d{bottom:1043.430000px;}
.y137{bottom:1043.790000px;}
.y9{bottom:1052.610000px;}
.y61{bottom:1062.330000px;}
.y136{bottom:1063.230000px;}
.y3c{bottom:1063.410000px;}
.y16a{bottom:1068.090000px;}
.y8{bottom:1080.330000px;}
.y60{bottom:1081.410000px;}
.y135{bottom:1082.130000px;}
.y3b{bottom:1082.490000px;}
.y169{bottom:1086.990000px;}
.y5f{bottom:1100.310000px;}
.y3a{bottom:1102.650000px;}
.y7e{bottom:1103.730000px;}
.y168{bottom:1106.070000px;}
.y7{bottom:1116.510000px;}
.y5e{bottom:1119.390000px;}
.y39{bottom:1121.730000px;}
.y134{bottom:1122.450000px;}
.y7d{bottom:1122.810000px;}
.y6{bottom:1140.090000px;}
.y38{bottom:1141.710000px;}
.y2{bottom:1187.280000px;}
.y1{bottom:1201.320000px;}
.y37{bottom:1203.000000px;}
.y5d{bottom:1204.500000px;}
.hf{height:18.900000px;}
.h13{height:19.080000px;}
.h1f{height:19.116000px;}
.h1d{height:20.700000px;}
.h26{height:32.400000px;}
.h2e{height:34.200623px;}
.h9{height:35.314453px;}
.h17{height:37.980000px;}
.h30{height:40.850884px;}
.h21{height:40.985156px;}
.ha{height:47.344922px;}
.h6{height:48.616875px;}
.h11{height:50.312687px;}
.h2{height:50.312812px;}
.h8{height:52.971680px;}
.h1e{height:57.060000px;}
.h23{height:58.651172px;}
.h24{height:58.792500px;}
.h28{height:60.226875px;}
.h29{height:64.440000px;}
.h10{height:64.978594px;}
.hb{height:65.010937px;}
.h2f{height:65.719630px;}
.h1a{height:66.757500px;}
.hd{height:69.086250px;}
.h3{height:70.664062px;}
.h7{height:71.225156px;}
.h4{height:72.562500px;}
.h20{height:75.093750px;}
.h1b{height:80.464922px;}
.h5{height:84.898125px;}
.hc{height:87.624141px;}
.h2a{height:106.872891px;}
.h2b{height:125.156953px;}
.h2c{height:134.460703px;}
.h27{height:143.460000px;}
.h2d{height:144.558047px;}
.h25{height:178.740000px;}
.h19{height:209.730000px;}
.h14{height:222.870000px;}
.h16{height:246.990000px;}
.h1c{height:247.035000px;}
.h12{height:248.430000px;}
.h18{height:284.430000px;}
.h22{height:287.100000px;}
.he{height:348.150000px;}
.h15{height:370.110000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w14{width:54.360000px;}
.w13{width:83.700000px;}
.we{width:126.216000px;}
.w10{width:127.260000px;}
.w16{width:134.773159px;}
.w15{width:134.848759px;}
.wd{width:148.500000px;}
.w11{width:180.900000px;}
.w6{width:201.990000px;}
.w7{width:223.275000px;}
.wc{width:274.890000px;}
.w9{width:330.150000px;}
.w4{width:335.955000px;}
.w12{width:341.460000px;}
.w3{width:344.550000px;}
.wa{width:345.675000px;}
.w8{width:425.265000px;}
.w2{width:631.725000px;}
.wf{width:635.580000px;}
.w5{width:680.505000px;}
.wb{width:752.730000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:5.220000px;}
.x43{left:6.990000px;}
.x41{left:9.075000px;}
.x3f{left:16.380000px;}
.x30{left:19.260000px;}
.x24{left:21.060000px;}
.x2f{left:23.580000px;}
.x33{left:34.050000px;}
.x2e{left:35.460000px;}
.x49{left:45.975043px;}
.x35{left:48.990000px;}
.x20{left:52.425000px;}
.x31{left:55.260000px;}
.x36{left:57.060000px;}
.x34{left:61.200000px;}
.x3c{left:66.135000px;}
.x27{left:70.200000px;}
.x2d{left:72.180000px;}
.x3d{left:102.090000px;}
.xe{left:103.500000px;}
.x14{left:105.000000px;}
.x2{left:106.416000px;}
.x22{left:108.576000px;}
.x3a{left:111.456000px;}
.x5{left:120.636000px;}
.x48{left:122.771600px;}
.x3b{left:129.240000px;}
.x11{left:130.716000px;}
.xf{left:133.416000px;}
.x17{left:141.294000px;}
.x3e{left:145.980000px;}
.x10{left:160.410000px;}
.x13{left:178.419000px;}
.x8{left:181.290000px;}
.x1d{left:184.005000px;}
.x1f{left:187.230000px;}
.x37{left:194.070000px;}
.xb{left:200.910000px;}
.x21{left:212.625000px;}
.x6{left:230.790000px;}
.x2a{left:232.419000px;}
.x19{left:240.339000px;}
.x9{left:241.770000px;}
.x39{left:245.190000px;}
.x1c{left:255.819000px;}
.x29{left:261.795000px;}
.x42{left:277.380000px;}
.x1b{left:279.795000px;}
.x1a{left:285.879000px;}
.x45{left:295.815000px;}
.xd{left:306.255000px;}
.x2c{left:309.135000px;}
.x4c{left:312.555000px;}
.xc{left:319.575000px;}
.xa{left:322.275000px;}
.x23{left:324.759000px;}
.x18{left:329.835000px;}
.x2b{left:340.239000px;}
.x15{left:341.499000px;}
.x4d{left:359.565000px;}
.x44{left:368.355000px;}
.x40{left:369.900000px;}
.x47{left:388.140000px;}
.x46{left:405.075000px;}
.x4b{left:437.655000px;}
.x25{left:438.735000px;}
.x3{left:442.155000px;}
.x4{left:446.655000px;}
.x7{left:449.535000px;}
.x16{left:450.975000px;}
.x1e{left:457.275000px;}
.x32{left:458.355000px;}
.x4e{left:494.385000px;}
.x4a{left:523.005000px;}
.x28{left:558.645000px;}
.x12{left:626.514000px;}
.x1{left:720.150000px;}
.x38{left:766.230000px;}
@media print{
.v11{vertical-align:-67.840000pt;}
.v1{vertical-align:-49.280000pt;}
.v17{vertical-align:-28.375541pt;}
.vc{vertical-align:-26.880000pt;}
.v14{vertical-align:-22.400000pt;}
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-12.160000pt;}
.vd{vertical-align:-10.880000pt;}
.vb{vertical-align:-8.320000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v15{vertical-align:3.840000pt;}
.v12{vertical-align:8.320000pt;}
.vf{vertical-align:12.800000pt;}
.v8{vertical-align:19.840000pt;}
.v6{vertical-align:21.760000pt;}
.v2{vertical-align:26.880000pt;}
.va{vertical-align:29.440000pt;}
.v16{vertical-align:34.560000pt;}
.v9{vertical-align:36.480000pt;}
.v10{vertical-align:37.760000pt;}
.ve{vertical-align:46.080000pt;}
.v13{vertical-align:50.560000pt;}
.ls39{letter-spacing:-2.591165pt;}
.ls15{letter-spacing:-1.045333pt;}
.ls27{letter-spacing:-1.008000pt;}
.ls38{letter-spacing:-0.948235pt;}
.lsb{letter-spacing:-0.773333pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.135467pt;}
.ls33{letter-spacing:-0.010880pt;}
.lse{letter-spacing:-0.010240pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005120pt;}
.ls32{letter-spacing:0.007680pt;}
.lsd{letter-spacing:0.016000pt;}
.ls20{letter-spacing:0.020480pt;}
.ls37{letter-spacing:0.067948pt;}
.ls28{letter-spacing:0.071467pt;}
.ls3{letter-spacing:0.074240pt;}
.ls14{letter-spacing:0.097067pt;}
.ls18{letter-spacing:0.097280pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.158720pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.233067pt;}
.ls1b{letter-spacing:0.239467pt;}
.ls2c{letter-spacing:0.253440pt;}
.ls35{letter-spacing:0.266133pt;}
.ls17{letter-spacing:0.271467pt;}
.ls36{letter-spacing:0.312533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.709333pt;}
.ls19{letter-spacing:1.280000pt;}
.ls2b{letter-spacing:1.600000pt;}
.ls2d{letter-spacing:2.006400pt;}
.ls8{letter-spacing:2.517760pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls2a{letter-spacing:6.080000pt;}
.ls13{letter-spacing:6.400000pt;}
.ls7{letter-spacing:12.976640pt;}
.ls6{letter-spacing:15.317760pt;}
.ls4{letter-spacing:16.176640pt;}
.ls2{letter-spacing:17.280000pt;}
.ls1e{letter-spacing:30.208000pt;}
.lsf{letter-spacing:52.730027pt;}
.ls23{letter-spacing:80.533333pt;}
.ls25{letter-spacing:80.586667pt;}
.ls24{letter-spacing:80.640000pt;}
.ls22{letter-spacing:80.693333pt;}
.ls21{letter-spacing:91.413333pt;}
.ls30{letter-spacing:128.350402pt;}
.ls2f{letter-spacing:158.346240pt;}
.ls31{letter-spacing:262.812976pt;}
.ls2e{letter-spacing:453.098667pt;}
.ws10{word-spacing:-64.000000pt;}
.ws8{word-spacing:-58.880000pt;}
.ws17{word-spacing:-18.720000pt;}
.ws13{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.938201pt;}
.ws1e{word-spacing:-15.870253pt;}
.ws14{word-spacing:-15.744000pt;}
.wse{word-spacing:-14.991467pt;}
.ws18{word-spacing:-14.953067pt;}
.ws1b{word-spacing:-14.922018pt;}
.wsb{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.584533pt;}
.wsd{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.176000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.946667pt;}
.ws16{word-spacing:-13.712000pt;}
.wsc{word-spacing:-13.674667pt;}
.ws1c{word-spacing:-13.279088pt;}
.ws5{word-spacing:-12.192000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.920640pt;}
.ws12{word-spacing:-10.959467pt;}
.ws11{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
.ws19{word-spacing:102.579989pt;}
.ws1d{word-spacing:102.715886pt;}
._1f{margin-left:-197.425491pt;}
._1c{margin-left:-158.868090pt;}
._1d{margin-left:-82.533059pt;}
._1e{margin-left:-80.842326pt;}
._1b{margin-left:-47.137402pt;}
._19{margin-left:-7.338240pt;}
._16{margin-left:-2.827947pt;}
._20{margin-left:-1.877760pt;}
._1{margin-left:-0.965333pt;}
._2{width:1.287893pt;}
._7{width:2.220800pt;}
._5{width:3.120640pt;}
._6{width:4.144853pt;}
._c{width:5.193813pt;}
._9{width:6.723200pt;}
._8{width:7.713280pt;}
._a{width:9.000747pt;}
._17{width:9.970987pt;}
._15{width:11.286187pt;}
._13{width:12.566187pt;}
._b{width:13.765547pt;}
._14{width:15.853227pt;}
._4{width:16.921813pt;}
._e{width:18.718293pt;}
._d{width:19.878613pt;}
._f{width:20.998187pt;}
._10{width:22.845440pt;}
._12{width:26.672640pt;}
._11{width:27.579093pt;}
._1a{width:64.680747pt;}
._18{width:124.533333pt;}
._3{width:365.176320pt;}
._0{width:1228.538027pt;}
.fs6{font-size:32.000000pt;}
.fse{font-size:36.998391pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.879893pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:50.560000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs3{font-size:58.880000pt;}
.fsb{font-size:61.440000pt;}
.fsf{font-size:63.481012pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fsd{font-size:84.134272pt;}
.fsa{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:0.160000pt;}
.y65{bottom:0.960000pt;}
.y4b{bottom:3.520000pt;}
.y67{bottom:3.680000pt;}
.yd7{bottom:4.000000pt;}
.y74{bottom:5.120000pt;}
.y81{bottom:5.760000pt;}
.y88{bottom:6.560000pt;}
.y164{bottom:8.011822pt;}
.y12d{bottom:8.226667pt;}
.y89{bottom:9.440000pt;}
.yed{bottom:12.000000pt;}
.y12e{bottom:14.306667pt;}
.y166{bottom:15.042449pt;}
.y165{bottom:16.182106pt;}
.y9c{bottom:16.800000pt;}
.y8b{bottom:20.480000pt;}
.yd5{bottom:20.840000pt;}
.yd6{bottom:25.480000pt;}
.y122{bottom:31.106667pt;}
.yeb{bottom:37.440000pt;}
.y132{bottom:47.266667pt;}
.y123{bottom:54.946667pt;}
.y5{bottom:57.920000pt;}
.y12b{bottom:66.973333pt;}
.y4{bottom:70.240000pt;}
.y124{bottom:78.786667pt;}
.y3{bottom:84.000000pt;}
.y125{bottom:102.626667pt;}
.y96{bottom:103.360000pt;}
.y120{bottom:104.800000pt;}
.y36{bottom:106.880000pt;}
.y130{bottom:113.026667pt;}
.y5c{bottom:118.880000pt;}
.yd3{bottom:120.320000pt;}
.y95{bottom:121.760000pt;}
.y167{bottom:122.400000pt;}
.y11f{bottom:122.720000pt;}
.y35{bottom:123.680000pt;}
.y126{bottom:126.466667pt;}
.y7c{bottom:128.160000pt;}
.y163{bottom:135.906667pt;}
.yd2{bottom:137.120000pt;}
.y5b{bottom:137.280000pt;}
.y94{bottom:140.160000pt;}
.y34{bottom:140.640000pt;}
.y11e{bottom:141.760000pt;}
.y162{bottom:143.840000pt;}
.y7b{bottom:145.120000pt;}
.y127{bottom:150.266667pt;}
.yf9{bottom:153.760000pt;}
.yd1{bottom:154.080000pt;}
.y5a{bottom:155.680000pt;}
.y33{bottom:157.440000pt;}
.y93{bottom:158.080000pt;}
.y11d{bottom:158.880000pt;}
.y7a{bottom:161.920000pt;}
.y161{bottom:169.760000pt;}
.yf8{bottom:170.720000pt;}
.yd0{bottom:170.880000pt;}
.y59{bottom:173.600000pt;}
.y128{bottom:174.106667pt;}
.y32{bottom:174.240000pt;}
.y92{bottom:175.040000pt;}
.y11c{bottom:175.840000pt;}
.y79{bottom:178.880000pt;}
.y160{bottom:184.000000pt;}
.yf7{bottom:186.880000pt;}
.ycf{bottom:187.680000pt;}
.y58{bottom:190.560000pt;}
.y31{bottom:191.200000pt;}
.y91{bottom:191.840000pt;}
.y11b{bottom:192.640000pt;}
.y15f{bottom:195.706667pt;}
.y78{bottom:195.866667pt;}
.y129{bottom:197.946667pt;}
.yf6{bottom:204.506667pt;}
.yce{bottom:204.666667pt;}
.y57{bottom:207.386667pt;}
.y30{bottom:208.026667pt;}
.y90{bottom:208.826667pt;}
.y11a{bottom:211.866667pt;}
.y77{bottom:214.266667pt;}
.ycd{bottom:221.466667pt;}
.y12a{bottom:221.786667pt;}
.yf5{bottom:222.106667pt;}
.y56{bottom:224.346667pt;}
.y2f{bottom:224.986667pt;}
.y8f{bottom:225.626667pt;}
.y15e{bottom:227.866667pt;}
.y119{bottom:228.826667pt;}
.y76{bottom:232.986667pt;}
.ycc{bottom:238.426667pt;}
.yf4{bottom:239.546667pt;}
.y55{bottom:241.146667pt;}
.y8e{bottom:242.426667pt;}
.y15d{bottom:244.826667pt;}
.y118{bottom:245.306667pt;}
.y75{bottom:247.386667pt;}
.y2e{bottom:250.906667pt;}
.yab{bottom:252.986667pt;}
.ycb{bottom:255.386667pt;}
.yf3{bottom:257.146667pt;}
.y54{bottom:257.946667pt;}
.y8d{bottom:259.386667pt;}
.y15c{bottom:261.626667pt;}
.y117{bottom:262.586667pt;}
.y73{bottom:264.186667pt;}
.y2d{bottom:269.786667pt;}
.yaa{bottom:269.946667pt;}
.yca{bottom:273.786667pt;}
.yf2{bottom:274.586667pt;}
.y53{bottom:274.906667pt;}
.y8c{bottom:276.186667pt;}
.y15b{bottom:278.426667pt;}
.y116{bottom:279.386667pt;}
.ya9{bottom:286.746667pt;}
.y2c{bottom:287.706667pt;}
.y8a{bottom:289.466667pt;}
.y52{bottom:291.706667pt;}
.yf1{bottom:292.186667pt;}
.yc9{bottom:292.506667pt;}
.y15a{bottom:295.386667pt;}
.y115{bottom:298.586667pt;}
.ya8{bottom:303.706667pt;}
.y2b{bottom:304.666667pt;}
.y51{bottom:308.666667pt;}
.yf0{bottom:309.786667pt;}
.yc8{bottom:310.906667pt;}
.y114{bottom:315.546667pt;}
.ya7{bottom:320.666667pt;}
.y2a{bottom:321.466667pt;}
.y87{bottom:323.226667pt;}
.y50{bottom:325.466667pt;}
.yef{bottom:327.226667pt;}
.y159{bottom:329.146667pt;}
.yc7{bottom:329.306667pt;}
.y113{bottom:332.026667pt;}
.y29{bottom:338.426667pt;}
.ya6{bottom:339.066667pt;}
.y4f{bottom:342.266667pt;}
.yee{bottom:344.826667pt;}
.y158{bottom:345.946667pt;}
.yc6{bottom:347.706667pt;}
.y112{bottom:349.146667pt;}
.y28{bottom:356.506667pt;}
.ya5{bottom:357.786667pt;}
.y4e{bottom:359.226667pt;}
.y157{bottom:362.746667pt;}
.yec{bottom:364.666667pt;}
.yc5{bottom:365.946667pt;}
.y111{bottom:366.106667pt;}
.ya4{bottom:375.706667pt;}
.y4d{bottom:376.026667pt;}
.y27{bottom:379.226667pt;}
.y156{bottom:379.706667pt;}
.y110{bottom:385.306667pt;}
.yc4{bottom:385.626667pt;}
.ya3{bottom:392.666667pt;}
.y4c{bottom:392.986667pt;}
.y26{bottom:396.186667pt;}
.y155{bottom:396.506667pt;}
.yea{bottom:401.346667pt;}
.y10f{bottom:401.986667pt;}
.yc3{bottom:404.066667pt;}
.y4a{bottom:406.306667pt;}
.ya2{bottom:409.506667pt;}
.y25{bottom:413.026667pt;}
.y154{bottom:413.346667pt;}
.y10e{bottom:419.106667pt;}
.yc2{bottom:422.466667pt;}
.y49{bottom:423.106667pt;}
.ya1{bottom:427.906667pt;}
.y24{bottom:429.826667pt;}
.y153{bottom:431.426667pt;}
.y10d{bottom:435.906667pt;}
.yc1{bottom:440.866667pt;}
.y23{bottom:446.786667pt;}
.y152{bottom:448.226667pt;}
.y10c{bottom:455.266667pt;}
.ye9{bottom:458.946667pt;}
.yc0{bottom:459.266667pt;}
.ya0{bottom:462.306667pt;}
.y22{bottom:463.586667pt;}
.y72{bottom:465.826667pt;}
.y151{bottom:466.306667pt;}
.y10b{bottom:472.866667pt;}
.ye8{bottom:477.026667pt;}
.ybf{bottom:477.346667pt;}
.y150{bottom:479.586667pt;}
.y21{bottom:480.546667pt;}
.y9f{bottom:482.146667pt;}
.y71{bottom:482.786667pt;}
.y14f{bottom:489.026667pt;}
.y10a{bottom:490.146667pt;}
.ye7{bottom:493.826667pt;}
.ybe{bottom:496.066667pt;}
.y20{bottom:497.346667pt;}
.y70{bottom:499.586667pt;}
.y9e{bottom:501.986667pt;}
.y109{bottom:506.946667pt;}
.ye6{bottom:510.786667pt;}
.y1f{bottom:514.146667pt;}
.y14e{bottom:516.226667pt;}
.y6f{bottom:516.546667pt;}
.y9d{bottom:521.986667pt;}
.y182{bottom:522.626667pt;}
.ye5{bottom:527.586667pt;}
.y1e{bottom:531.106667pt;}
.ybd{bottom:532.066667pt;}
.y108{bottom:532.866667pt;}
.y14d{bottom:533.026667pt;}
.y6e{bottom:533.506667pt;}
.y181{bottom:540.706667pt;}
.y107{bottom:543.106667pt;}
.ye4{bottom:544.386667pt;}
.y86{bottom:546.466667pt;}
.y1d{bottom:547.906667pt;}
.y14c{bottom:549.826667pt;}
.ybc{bottom:549.986667pt;}
.y6d{bottom:551.906667pt;}
.y9b{bottom:556.866667pt;}
.y180{bottom:557.506667pt;}
.y106{bottom:559.586667pt;}
.ye3{bottom:561.346667pt;}
.y85{bottom:563.266667pt;}
.y1c{bottom:564.866667pt;}
.y14b{bottom:566.786667pt;}
.ybb{bottom:567.746667pt;}
.y6c{bottom:570.626667pt;}
.y17f{bottom:574.466667pt;}
.y105{bottom:576.866667pt;}
.ye2{bottom:578.146667pt;}
.y84{bottom:580.226667pt;}
.y1b{bottom:581.666667pt;}
.y14a{bottom:583.586667pt;}
.yba{bottom:584.706667pt;}
.y6b{bottom:588.546667pt;}
.y17e{bottom:591.266667pt;}
.y104{bottom:593.666667pt;}
.ye1{bottom:597.666667pt;}
.y1a{bottom:598.626667pt;}
.y149{bottom:600.226667pt;}
.yb9{bottom:601.186667pt;}
.y6a{bottom:605.346667pt;}
.y17d{bottom:608.093333pt;}
.y103{bottom:610.493333pt;}
.y19{bottom:615.453333pt;}
.y83{bottom:617.373333pt;}
.yb8{bottom:618.493333pt;}
.ye0{bottom:618.973333pt;}
.y69{bottom:622.333333pt;}
.y17c{bottom:625.053333pt;}
.y102{bottom:627.453333pt;}
.y82{bottom:631.773333pt;}
.y18{bottom:632.253333pt;}
.yb7{bottom:636.893333pt;}
.ydf{bottom:637.853333pt;}
.y68{bottom:639.133333pt;}
.y148{bottom:640.893333pt;}
.y17b{bottom:641.853333pt;}
.y101{bottom:644.253333pt;}
.y7f{bottom:648.573333pt;}
.y17{bottom:649.213333pt;}
.y66{bottom:652.413333pt;}
.y147{bottom:653.533333pt;}
.yb6{bottom:655.293333pt;}
.yde{bottom:655.773333pt;}
.y17a{bottom:658.813333pt;}
.y100{bottom:662.173333pt;}
.y16{bottom:666.013333pt;}
.y64{bottom:669.373333pt;}
.y146{bottom:670.333333pt;}
.yb5{bottom:672.093333pt;}
.ydd{bottom:672.573333pt;}
.y179{bottom:675.613333pt;}
.yff{bottom:679.133333pt;}
.y15{bottom:682.973333pt;}
.y145{bottom:687.293333pt;}
.yb4{bottom:688.893333pt;}
.ydc{bottom:689.533333pt;}
.y178{bottom:692.413333pt;}
.yfe{bottom:695.933333pt;}
.y14{bottom:699.773333pt;}
.y144{bottom:703.773333pt;}
.yb3{bottom:705.853333pt;}
.ydb{bottom:706.333333pt;}
.y177{bottom:709.373333pt;}
.y143{bottom:720.893333pt;}
.yfd{bottom:722.013333pt;}
.yb2{bottom:722.653333pt;}
.yda{bottom:723.293333pt;}
.y13{bottom:725.693333pt;}
.y176{bottom:726.173333pt;}
.y48{bottom:736.573333pt;}
.y142{bottom:737.853333pt;}
.yb1{bottom:739.613333pt;}
.yd9{bottom:740.253333pt;}
.yfc{bottom:740.893333pt;}
.y175{bottom:743.453333pt;}
.y12{bottom:749.373333pt;}
.y47{bottom:754.653333pt;}
.yb0{bottom:756.413333pt;}
.y141{bottom:757.053333pt;}
.yd8{bottom:758.653333pt;}
.yfb{bottom:758.813333pt;}
.y174{bottom:761.533333pt;}
.y11{bottom:767.773333pt;}
.yfa{bottom:772.093333pt;}
.y121{bottom:772.960000pt;}
.y46{bottom:773.373333pt;}
.y140{bottom:774.013333pt;}
.y173{bottom:780.253333pt;}
.y13f{bottom:790.813333pt;}
.y45{bottom:791.453333pt;}
.yaf{bottom:791.773333pt;}
.y10{bottom:792.573333pt;}
.y172{bottom:798.333333pt;}
.y13e{bottom:807.613333pt;}
.yf{bottom:807.933333pt;}
.y44{bottom:808.253333pt;}
.yd4{bottom:808.573333pt;}
.yae{bottom:810.493333pt;}
.y171{bottom:815.173333pt;}
.y13d{bottom:824.613333pt;}
.yad{bottom:824.933333pt;}
.y43{bottom:825.093333pt;}
.y9a{bottom:829.253333pt;}
.y170{bottom:832.453333pt;}
.ye{bottom:834.053333pt;}
.y12c{bottom:834.240000pt;}
.y13c{bottom:841.093333pt;}
.yac{bottom:841.733333pt;}
.y42{bottom:842.053333pt;}
.y99{bottom:849.253333pt;}
.yd{bottom:849.413333pt;}
.y16f{bottom:850.533333pt;}
.y13b{bottom:858.373333pt;}
.y41{bottom:858.853333pt;}
.y98{bottom:869.093333pt;}
.y16e{bottom:869.253333pt;}
.y13a{bottom:875.173333pt;}
.yc{bottom:875.333333pt;}
.y40{bottom:875.813333pt;}
.y16d{bottom:887.653333pt;}
.y97{bottom:889.093333pt;}
.yb{bottom:890.853333pt;}
.y139{bottom:891.973333pt;}
.y3f{bottom:892.613333pt;}
.y63{bottom:893.733333pt;}
.y133{bottom:897.920000pt;}
.y12f{bottom:899.200000pt;}
.y16c{bottom:902.173333pt;}
.y3e{bottom:909.573333pt;}
.y16b{bottom:910.213333pt;}
.y62{bottom:910.693333pt;}
.y138{bottom:911.333333pt;}
.ya{bottom:913.733333pt;}
.y131{bottom:926.560000pt;}
.y3d{bottom:927.493333pt;}
.y137{bottom:927.813333pt;}
.y9{bottom:935.653333pt;}
.y61{bottom:944.293333pt;}
.y136{bottom:945.093333pt;}
.y3c{bottom:945.253333pt;}
.y16a{bottom:949.413333pt;}
.y8{bottom:960.293333pt;}
.y60{bottom:961.253333pt;}
.y135{bottom:961.893333pt;}
.y3b{bottom:962.213333pt;}
.y169{bottom:966.213333pt;}
.y5f{bottom:978.053333pt;}
.y3a{bottom:980.133333pt;}
.y7e{bottom:981.093333pt;}
.y168{bottom:983.173333pt;}
.y7{bottom:992.453333pt;}
.y5e{bottom:995.013333pt;}
.y39{bottom:997.093333pt;}
.y134{bottom:997.733333pt;}
.y7d{bottom:998.053333pt;}
.y6{bottom:1013.413333pt;}
.y38{bottom:1014.853333pt;}
.y2{bottom:1055.360000pt;}
.y1{bottom:1067.840000pt;}
.y37{bottom:1069.333333pt;}
.y5d{bottom:1070.666667pt;}
.hf{height:16.800000pt;}
.h13{height:16.960000pt;}
.h1f{height:16.992000pt;}
.h1d{height:18.400000pt;}
.h26{height:28.800000pt;}
.h2e{height:30.400554pt;}
.h9{height:31.390625pt;}
.h17{height:33.760000pt;}
.h30{height:36.311897pt;}
.h21{height:36.431250pt;}
.ha{height:42.084375pt;}
.h6{height:43.215000pt;}
.h11{height:44.722389pt;}
.h2{height:44.722500pt;}
.h8{height:47.085938pt;}
.h1e{height:50.720000pt;}
.h23{height:52.134375pt;}
.h24{height:52.260000pt;}
.h28{height:53.535000pt;}
.h29{height:57.280000pt;}
.h10{height:57.758750pt;}
.hb{height:57.787500pt;}
.h2f{height:58.417449pt;}
.h1a{height:59.340000pt;}
.hd{height:61.410000pt;}
.h3{height:62.812500pt;}
.h7{height:63.311250pt;}
.h4{height:64.500000pt;}
.h20{height:66.750000pt;}
.h1b{height:71.524375pt;}
.h5{height:75.465000pt;}
.hc{height:77.888125pt;}
.h2a{height:94.998125pt;}
.h2b{height:111.250625pt;}
.h2c{height:119.520625pt;}
.h27{height:127.520000pt;}
.h2d{height:128.496042pt;}
.h25{height:158.880000pt;}
.h19{height:186.426667pt;}
.h14{height:198.106667pt;}
.h16{height:219.546667pt;}
.h1c{height:219.586667pt;}
.h12{height:220.826667pt;}
.h18{height:252.826667pt;}
.h22{height:255.200000pt;}
.he{height:309.466667pt;}
.h15{height:328.986667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w14{width:48.320000pt;}
.w13{width:74.400000pt;}
.we{width:112.192000pt;}
.w10{width:113.120000pt;}
.w16{width:119.798363pt;}
.w15{width:119.865563pt;}
.wd{width:132.000000pt;}
.w11{width:160.800000pt;}
.w6{width:179.546667pt;}
.w7{width:198.466667pt;}
.wc{width:244.346667pt;}
.w9{width:293.466667pt;}
.w4{width:298.626667pt;}
.w12{width:303.520000pt;}
.w3{width:306.266667pt;}
.wa{width:307.266667pt;}
.w8{width:378.013333pt;}
.w2{width:561.533333pt;}
.wf{width:564.960000pt;}
.w5{width:604.893333pt;}
.wb{width:669.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:4.640000pt;}
.x43{left:6.213333pt;}
.x41{left:8.066667pt;}
.x3f{left:14.560000pt;}
.x30{left:17.120000pt;}
.x24{left:18.720000pt;}
.x2f{left:20.960000pt;}
.x33{left:30.266667pt;}
.x2e{left:31.520000pt;}
.x49{left:40.866705pt;}
.x35{left:43.546667pt;}
.x20{left:46.600000pt;}
.x31{left:49.120000pt;}
.x36{left:50.720000pt;}
.x34{left:54.400000pt;}
.x3c{left:58.786667pt;}
.x27{left:62.400000pt;}
.x2d{left:64.160000pt;}
.x3d{left:90.746667pt;}
.xe{left:92.000000pt;}
.x14{left:93.333333pt;}
.x2{left:94.592000pt;}
.x22{left:96.512000pt;}
.x3a{left:99.072000pt;}
.x5{left:107.232000pt;}
.x48{left:109.130311pt;}
.x3b{left:114.880000pt;}
.x11{left:116.192000pt;}
.xf{left:118.592000pt;}
.x17{left:125.594667pt;}
.x3e{left:129.760000pt;}
.x10{left:142.586667pt;}
.x13{left:158.594667pt;}
.x8{left:161.146667pt;}
.x1d{left:163.560000pt;}
.x1f{left:166.426667pt;}
.x37{left:172.506667pt;}
.xb{left:178.586667pt;}
.x21{left:189.000000pt;}
.x6{left:205.146667pt;}
.x2a{left:206.594667pt;}
.x19{left:213.634667pt;}
.x9{left:214.906667pt;}
.x39{left:217.946667pt;}
.x1c{left:227.394667pt;}
.x29{left:232.706667pt;}
.x42{left:246.560000pt;}
.x1b{left:248.706667pt;}
.x1a{left:254.114667pt;}
.x45{left:262.946667pt;}
.xd{left:272.226667pt;}
.x2c{left:274.786667pt;}
.x4c{left:277.826667pt;}
.xc{left:284.066667pt;}
.xa{left:286.466667pt;}
.x23{left:288.674667pt;}
.x18{left:293.186667pt;}
.x2b{left:302.434667pt;}
.x15{left:303.554667pt;}
.x4d{left:319.613333pt;}
.x44{left:327.426667pt;}
.x40{left:328.800000pt;}
.x47{left:345.013333pt;}
.x46{left:360.066667pt;}
.x4b{left:389.026667pt;}
.x25{left:389.986667pt;}
.x3{left:393.026667pt;}
.x4{left:397.026667pt;}
.x7{left:399.586667pt;}
.x16{left:400.866667pt;}
.x1e{left:406.466667pt;}
.x32{left:407.426667pt;}
.x4e{left:439.453333pt;}
.x4a{left:464.893333pt;}
.x28{left:496.573333pt;}
.x12{left:556.901333pt;}
.x1{left:640.133333pt;}
.x38{left:681.093333pt;}
}




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