
    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_d8cda70d2f19d6c7dbe143f1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_f02e94a38f1154a207ebe512.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_d6fd9d6d7f1d8b38813bf97d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_a8136dc87767fd2247e50f76.woff')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_34fe26cfe7cb46b7ab346943.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_72a740bf365ac362c322d00f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_21a7018d432648d3e817722f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.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);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.444600px;}
.ls9{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.lse{letter-spacing:-0.092400px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls7{letter-spacing:-0.063600px;}
.ls19{letter-spacing:-0.014760px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.lsf{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.098400px;}
.lsd{letter-spacing:0.143400px;}
.ls4{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.206640px;}
.ls0{letter-spacing:13.347360px;}
.ls18{letter-spacing:14.246640px;}
.ls15{letter-spacing:47.726640px;}
.ls14{letter-spacing:80.846640px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.369800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.wsd{word-spacing:-13.141800px;}
.ws9{word-spacing:-13.134000px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._5{margin-left:-3.492602px;}
._4{margin-left:-2.224200px;}
._0{margin-left:-1.110000px;}
._1{width:1.567920px;}
._8{width:2.663760px;}
._6{width:4.509000px;}
._7{width:5.577000px;}
._9{width:7.392960px;}
._2{width:8.416800px;}
._3{width:9.768840px;}
._a{width:11.723400px;}
._32{width:14.248440px;}
._10{width:15.270480px;}
._31{width:16.328519px;}
._b{width:17.362560px;}
._3f{width:18.757440px;}
._e{width:19.839600px;}
._f{width:21.102120px;}
._1c{width:22.304520px;}
._2a{width:23.987880px;}
._16{width:25.190280px;}
._13{width:26.272440px;}
._14{width:27.682800px;}
._4c{width:29.098080px;}
._20{width:30.540960px;}
._24{width:31.863600px;}
._d{width:33.667200px;}
._18{width:35.110080px;}
._39{width:36.973800px;}
._3c{width:38.116080px;}
._c{width:39.679200px;}
._1e{width:41.122080px;}
._41{width:42.625080px;}
._28{width:44.128080px;}
._12{width:45.495720px;}
._3b{width:46.908720px;}
._3d{width:48.020760px;}
._22{width:50.500800px;}
._2f{width:52.184160px;}
._1d{width:53.506800px;}
._15{width:55.310400px;}
._53{width:56.933640px;}
._4f{width:58.857480px;}
._2c{width:60.360480px;}
._4d{width:63.847440px;}
._49{width:65.290320px;}
._25{width:66.733200px;}
._4b{width:68.657040px;}
._11{width:70.881480px;}
._44{width:73.406520px;}
._30{width:74.669040px;}
._34{width:76.292280px;}
._26{width:77.554800px;}
._47{width:79.659000px;}
._52{width:83.927520px;}
._19{width:86.753160px;}
._1a{width:88.116960px;}
._3a{width:90.180000px;}
._17{width:92.569680px;}
._48{width:95.831280px;}
._2d{width:97.153920px;}
._2b{width:98.476560px;}
._50{width:103.346280px;}
._1b{width:108.997560px;}
._2e{width:110.741040px;}
._23{width:112.123800px;}
._4a{width:113.506560px;}
._33{width:115.670880px;}
._36{width:118.917360px;}
._46{width:122.945400px;}
._29{width:129.318120px;}
._42{width:132.925320px;}
._45{width:134.428320px;}
._43{width:145.009440px;}
._40{width:146.813040px;}
._38{width:151.682760px;}
._21{width:155.289960px;}
._55{width:158.536440px;}
._4e{width:160.760880px;}
._51{width:162.083520px;}
._27{width:203.566320px;}
._35{width:206.452080px;}
._37{width:239.999040px;}
._3e{width:286.471800px;}
._1f{width:346.772160px;}
._54{width:453.605400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:6.210000px;}
.y89{bottom:6.300000px;}
.y4c{bottom:7.830000px;}
.y48{bottom:7.920000px;}
.y7e{bottom:7.950000px;}
.y5e{bottom:12.330000px;}
.y128{bottom:15.030000px;}
.yef{bottom:20.970000px;}
.y8c{bottom:23.850000px;}
.y8d{bottom:23.940000px;}
.y98{bottom:24.030000px;}
.y4e{bottom:25.380000px;}
.y4b{bottom:25.470000px;}
.y5a{bottom:25.500000px;}
.y5d{bottom:29.880000px;}
.yee{bottom:38.520000px;}
.y95{bottom:41.400000px;}
.y8b{bottom:41.490000px;}
.y92{bottom:41.580000px;}
.y4a{bottom:43.020000px;}
.yf2{bottom:43.050000px;}
.y7b{bottom:43.110000px;}
.yd4{bottom:43.140000px;}
.y93{bottom:59.040000px;}
.y91{bottom:59.130000px;}
.ycd{bottom:60.570000px;}
.yd0{bottom:60.660000px;}
.yca{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y1b6{bottom:113.250000px;}
.y55{bottom:113.880000px;}
.y211{bottom:116.130000px;}
.y18f{bottom:117.480000px;}
.y13b{bottom:118.560000px;}
.y9a{bottom:119.550000px;}
.y11e{bottom:124.590000px;}
.y79{bottom:126.210000px;}
.yc5{bottom:127.650000px;}
.y1f3{bottom:133.320000px;}
.y210{bottom:133.680000px;}
.y13a{bottom:136.200000px;}
.y1b5{bottom:139.800000px;}
.y11d{bottom:142.140000px;}
.y1da{bottom:142.680000px;}
.y18e{bottom:144.030000px;}
.ye5{bottom:144.660000px;}
.yc4{bottom:145.200000px;}
.y1f2{bottom:150.870000px;}
.y139{bottom:153.750000px;}
.y1b4{bottom:157.440000px;}
.y54{bottom:158.790000px;}
.y11c{bottom:159.690000px;}
.y1d9{bottom:160.320000px;}
.ye4{bottom:162.210000px;}
.yc3{bottom:162.840000px;}
.y28{bottom:165.630000px;}
.y206{bottom:168.510000px;}
.yed{bottom:170.130000px;}
.y18d{bottom:170.580000px;}
.y78{bottom:171.120000px;}
.y138{bottom:171.300000px;}
.y1f1{bottom:177.510000px;}
.y1d8{bottom:177.870000px;}
.ye3{bottom:179.850000px;}
.y27{bottom:183.270000px;}
.y1b3{bottom:183.990000px;}
.y11b{bottom:186.330000px;}
.y167{bottom:188.130000px;}
.y137{bottom:188.940000px;}
.yc2{bottom:189.390000px;}
.y1f0{bottom:195.060000px;}
.y20f{bottom:195.510000px;}
.y99{bottom:196.590000px;}
.y18c{bottom:197.220000px;}
.ye2{bottom:197.400000px;}
.y26{bottom:200.820000px;}
.y53{bottom:203.700000px;}
.y1d7{bottom:204.510000px;}
.y166{bottom:205.680000px;}
.y136{bottom:206.490000px;}
.y1b2{bottom:210.540000px;}
.y1ef{bottom:212.610000px;}
.ye1{bottom:214.950000px;}
.y77{bottom:216.030000px;}
.y25{bottom:218.370000px;}
.y11a{bottom:221.880000px;}
.y1d6{bottom:222.060000px;}
.y165{bottom:223.320000px;}
.y18b{bottom:223.770000px;}
.y135{bottom:224.040000px;}
.yc1{bottom:224.940000px;}
.ye0{bottom:232.590000px;}
.y24{bottom:236.010000px;}
.y1b1{bottom:237.180000px;}
.y1ee{bottom:239.250000px;}
.y119{bottom:239.430000px;}
.y1d5{bottom:239.610000px;}
.y164{bottom:240.870000px;}
.yc0{bottom:242.580000px;}
.y52{bottom:248.610000px;}
.ydf{bottom:250.140000px;}
.yec{bottom:250.230000px;}
.y18a{bottom:250.410000px;}
.y134{bottom:250.680000px;}
.y23{bottom:253.560000px;}
.y97{bottom:256.080000px;}
.y1ed{bottom:256.800000px;}
.y118{bottom:257.070000px;}
.y163{bottom:258.510000px;}
.ybf{bottom:260.130000px;}
.y1b0{bottom:263.730000px;}
.y1d4{bottom:266.250000px;}
.yde{bottom:267.780000px;}
.y22{bottom:271.200000px;}
.y1ec{bottom:274.440000px;}
.y117{bottom:274.620000px;}
.y162{bottom:276.060000px;}
.y189{bottom:276.960000px;}
.ybe{bottom:277.680000px;}
.y76{bottom:278.580000px;}
.y1d3{bottom:283.800000px;}
.ydd{bottom:285.330000px;}
.y133{bottom:286.230000px;}
.y21{bottom:288.750000px;}
.y1af{bottom:290.370000px;}
.y116{bottom:292.260000px;}
.y51{bottom:293.520000px;}
.y161{bottom:293.610000px;}
.ybd{bottom:295.320000px;}
.y1eb{bottom:300.990000px;}
.y1d2{bottom:301.440000px;}
.ydc{bottom:302.880000px;}
.y188{bottom:303.510000px;}
.y132{bottom:303.870000px;}
.y20{bottom:306.300000px;}
.y1ae{bottom:307.920000px;}
.y115{bottom:309.810000px;}
.y20e{bottom:310.440000px;}
.y160{bottom:311.250000px;}
.ybc{bottom:312.870000px;}
.y1ea{bottom:318.540000px;}
.ydb{bottom:320.520000px;}
.y131{bottom:321.420000px;}
.y75{bottom:323.490000px;}
.y1f{bottom:323.940000px;}
.y114{bottom:327.360000px;}
.y1d1{bottom:327.990000px;}
.y15f{bottom:328.800000px;}
.y187{bottom:330.150000px;}
.yeb{bottom:330.330000px;}
.ybb{bottom:330.510000px;}
.y96{bottom:333.210000px;}
.y1ad{bottom:334.470000px;}
.y205{bottom:336.180000px;}
.yda{bottom:338.070000px;}
.y50{bottom:338.430000px;}
.y130{bottom:338.970000px;}
.y1e{bottom:341.490000px;}
.y113{bottom:345.000000px;}
.y1e9{bottom:345.180000px;}
.y1d0{bottom:345.540000px;}
.y15e{bottom:346.440000px;}
.yba{bottom:348.060000px;}
.y20d{bottom:354.540000px;}
.yd9{bottom:355.620000px;}
.y12f{bottom:356.610000px;}
.y186{bottom:356.700000px;}
.y1d{bottom:359.130000px;}
.y1ac{bottom:361.110000px;}
.y112{bottom:362.550000px;}
.y1e8{bottom:362.730000px;}
.y15d{bottom:363.990000px;}
.yb9{bottom:365.610000px;}
.y1cf{bottom:372.180000px;}
.yd8{bottom:373.260000px;}
.y185{bottom:374.340000px;}
.y111{bottom:380.190000px;}
.y1e7{bottom:380.370000px;}
.y15c{bottom:381.540000px;}
.y12e{bottom:383.160000px;}
.yb8{bottom:383.250000px;}
.y4f{bottom:383.340000px;}
.y1c{bottom:386.040000px;}
.y1ab{bottom:387.660000px;}
.y74{bottom:389.730000px;}
.yd7{bottom:390.810000px;}
.y110{bottom:397.740000px;}
.y204{bottom:397.920000px;}
.y15b{bottom:399.180000px;}
.yb7{bottom:400.800000px;}
.y184{bottom:400.890000px;}
.y1e6{bottom:406.920000px;}
.y1ce{bottom:407.370000px;}
.yd6{bottom:408.450000px;}
.y94{bottom:410.340000px;}
.y1aa{bottom:414.300000px;}
.y10f{bottom:415.290000px;}
.yb6{bottom:418.440000px;}
.y12d{bottom:418.800000px;}
.y1e5{bottom:424.470000px;}
.y73{bottom:425.370000px;}
.y15a{bottom:425.730000px;}
.y4d{bottom:428.340000px;}
.y10e{bottom:432.930000px;}
.y1cd{bottom:433.920000px;}
.y1b{bottom:434.550000px;}
.yd5{bottom:435.000000px;}
.yb5{bottom:435.990000px;}
.y183{bottom:436.080000px;}
.y12c{bottom:436.350000px;}
.y1a9{bottom:440.850000px;}
.y1e4{bottom:442.110000px;}
.y72{bottom:442.920000px;}
.y10d{bottom:450.480000px;}
.y1cc{bottom:451.470000px;}
.yb4{bottom:453.540000px;}
.y12b{bottom:453.900000px;}
.y71{bottom:460.470000px;}
.y159{bottom:461.370000px;}
.y182{bottom:462.630000px;}
.y1a8{bottom:467.400000px;}
.yd3{bottom:467.940000px;}
.y10c{bottom:468.120000px;}
.y1e3{bottom:468.660000px;}
.y1cb{bottom:469.110000px;}
.yb3{bottom:471.210000px;}
.y12a{bottom:471.570000px;}
.y1a{bottom:471.660000px;}
.y49{bottom:473.280000px;}
.y70{bottom:478.140000px;}
.y158{bottom:478.950000px;}
.y181{bottom:480.300000px;}
.y10b{bottom:485.700000px;}
.y203{bottom:486.330000px;}
.y90{bottom:487.410000px;}
.yb2{bottom:488.760000px;}
.y19{bottom:489.210000px;}
.yea{bottom:490.470000px;}
.y1a7{bottom:494.070000px;}
.y1e2{bottom:495.330000px;}
.y6f{bottom:495.690000px;}
.y157{bottom:496.500000px;}
.y129{bottom:498.120000px;}
.y10a{bottom:503.250000px;}
.y202{bottom:503.880000px;}
.yb1{bottom:506.400000px;}
.y18{bottom:506.850000px;}
.y1e1{bottom:512.880000px;}
.y6e{bottom:513.330000px;}
.y156{bottom:514.140000px;}
.y1a6{bottom:520.620000px;}
.y109{bottom:520.890000px;}
.yb0{bottom:523.950000px;}
.y17{bottom:524.400000px;}
.y201{bottom:530.430000px;}
.y6d{bottom:530.880000px;}
.y127{bottom:531.150000px;}
.y155{bottom:531.690000px;}
.y180{bottom:533.400000px;}
.y47{bottom:535.740000px;}
.y1a5{bottom:538.260000px;}
.y108{bottom:538.440000px;}
.y1e0{bottom:539.430000px;}
.y1ca{bottom:539.880000px;}
.yaf{bottom:541.500000px;}
.y16{bottom:541.950000px;}
.yd2{bottom:548.070000px;}
.y6c{bottom:548.430000px;}
.y154{bottom:549.330000px;}
.y107{bottom:556.080000px;}
.y1c9{bottom:557.430000px;}
.yae{bottom:559.140000px;}
.y15{bottom:559.590000px;}
.y17f{bottom:560.040000px;}
.y8e{bottom:564.540000px;}
.y1a4{bottom:564.810000px;}
.y200{bottom:565.620000px;}
.y126{bottom:565.710000px;}
.y6b{bottom:566.070000px;}
.y153{bottom:566.880000px;}
.ye9{bottom:570.570000px;}
.yad{bottom:576.690000px;}
.y14{bottom:577.140000px;}
.y106{bottom:582.630000px;}
.y6a{bottom:583.620000px;}
.y1c8{bottom:584.070000px;}
.y46{bottom:584.430000px;}
.y17e{bottom:586.590000px;}
.y1a3{bottom:591.360000px;}
.y1ff{bottom:592.260000px;}
.yac{bottom:594.330000px;}
.y13{bottom:594.780000px;}
.y69{bottom:601.260000px;}
.y1c7{bottom:601.620000px;}
.y152{bottom:602.070000px;}
.y17d{bottom:604.230000px;}
.y1fe{bottom:609.810000px;}
.y1df{bottom:610.260000px;}
.yd1{bottom:610.620000px;}
.yab{bottom:611.880000px;}
.y12{bottom:612.330000px;}
.y1a2{bottom:618.000000px;}
.y105{bottom:618.180000px;}
.y20c{bottom:619.260000px;}
.y151{bottom:619.620000px;}
.y45{bottom:620.070000px;}
.y17c{bottom:621.780000px;}
.y8a{bottom:624.030000px;}
.y68{bottom:627.810000px;}
.y125{bottom:628.170000px;}
.y1c6{bottom:628.260000px;}
.yaa{bottom:629.430000px;}
.y11{bottom:629.880000px;}
.y104{bottom:635.820000px;}
.y1fd{bottom:636.360000px;}
.y150{bottom:637.260000px;}
.y44{bottom:637.620000px;}
.y1a1{bottom:644.550000px;}
.y1c5{bottom:645.810000px;}
.ya9{bottom:647.070000px;}
.y10{bottom:647.520000px;}
.y17b{bottom:648.330000px;}
.ye8{bottom:650.670000px;}
.y103{bottom:653.370000px;}
.y1fc{bottom:654.000000px;}
.y1de{bottom:654.360000px;}
.y14f{bottom:654.810000px;}
.y43{bottom:655.260000px;}
.y1a0{bottom:662.190000px;}
.y67{bottom:663.360000px;}
.ya8{bottom:664.620000px;}
.yf{bottom:665.070000px;}
.y102{bottom:671.010000px;}
.y14e{bottom:672.360000px;}
.y42{bottom:672.810000px;}
.ycf{bottom:673.080000px;}
.y17a{bottom:674.970000px;}
.y1fb{bottom:680.550000px;}
.y66{bottom:681.000000px;}
.ya7{bottom:682.260000px;}
.ye{bottom:682.710000px;}
.y88{bottom:683.520000px;}
.y101{bottom:688.560000px;}
.y19f{bottom:688.740000px;}
.y1c4{bottom:690.000000px;}
.y124{bottom:690.720000px;}
.y179{bottom:692.520000px;}
.y1fa{bottom:698.190000px;}
.y65{bottom:698.550000px;}
.y14d{bottom:699.000000px;}
.y41{bottom:699.360000px;}
.yd{bottom:700.260000px;}
.y100{bottom:706.110000px;}
.y1c3{bottom:707.550000px;}
.ya6{bottom:708.810000px;}
.y19e{bottom:715.290000px;}
.y64{bottom:716.100000px;}
.ye7{bottom:717.000000px;}
.yc{bottom:717.810000px;}
.y178{bottom:719.160000px;}
.yff{bottom:723.750000px;}
.y1f9{bottom:724.740000px;}
.y20b{bottom:725.190000px;}
.y87{bottom:729.240000px;}
.y1c2{bottom:734.190000px;}
.y14c{bottom:734.550000px;}
.y40{bottom:735.000000px;}
.yb{bottom:735.450000px;}
.yfe{bottom:741.300000px;}
.y19d{bottom:741.930000px;}
.y63{bottom:743.010000px;}
.ya5{bottom:744.360000px;}
.y177{bottom:745.710000px;}
.y1f8{bottom:751.290000px;}
.y1c1{bottom:751.740000px;}
.y14b{bottom:752.190000px;}
.y3f{bottom:752.550000px;}
.ya{bottom:753.000000px;}
.yce{bottom:753.180000px;}
.yfd{bottom:758.940000px;}
.y19c{bottom:759.480000px;}
.ya4{bottom:762.000000px;}
.y176{bottom:763.260000px;}
.y86{bottom:764.790000px;}
.y1c0{bottom:769.290000px;}
.y14a{bottom:769.740000px;}
.y3e{bottom:770.190000px;}
.yfc{bottom:776.490000px;}
.y1f7{bottom:777.930000px;}
.ya3{bottom:779.550000px;}
.y9{bottom:779.910000px;}
.y85{bottom:782.430000px;}
.y19b{bottom:786.030000px;}
.y149{bottom:787.290000px;}
.y3d{bottom:787.740000px;}
.y62{bottom:788.730000px;}
.y175{bottom:789.900000px;}
.yfb{bottom:794.040000px;}
.y1bf{bottom:795.930000px;}
.ya2{bottom:797.190000px;}
.y84{bottom:799.980000px;}
.y19a{bottom:803.670000px;}
.y1f6{bottom:804.480000px;}
.y148{bottom:804.930000px;}
.y3c{bottom:805.290000px;}
.y174{bottom:807.450000px;}
.yfa{bottom:811.680000px;}
.y1be{bottom:813.480000px;}
.ya1{bottom:814.740000px;}
.ycc{bottom:815.730000px;}
.y61{bottom:816.000000px;}
.y83{bottom:817.530000px;}
.y199{bottom:821.220000px;}
.y1f5{bottom:822.030000px;}
.y147{bottom:822.480000px;}
.y3b{bottom:822.930000px;}
.y8{bottom:828.240000px;}
.yf9{bottom:829.230000px;}
.y1bd{bottom:831.030000px;}
.ye6{bottom:831.930000px;}
.ya0{bottom:832.290000px;}
.y173{bottom:834.360000px;}
.y82{bottom:835.170000px;}
.y146{bottom:840.030000px;}
.y3a{bottom:840.480000px;}
.y60{bottom:843.360000px;}
.yf8{bottom:846.780000px;}
.y198{bottom:847.860000px;}
.y1f4{bottom:848.670000px;}
.y9f{bottom:849.930000px;}
.y145{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.y123{bottom:860.640000px;}
.y81{bottom:861.720000px;}
.y7{bottom:863.790000px;}
.yf7{bottom:864.420000px;}
.y20a{bottom:866.670000px;}
.y9e{bottom:867.480000px;}
.y5f{bottom:870.720000px;}
.y197{bottom:874.410000px;}
.y144{bottom:875.220000px;}
.y38{bottom:875.670000px;}
.yf6{bottom:881.970000px;}
.y172{bottom:882.600000px;}
.y1dd{bottom:884.220000px;}
.y9d{bottom:885.030000px;}
.y143{bottom:892.860000px;}
.y80{bottom:894.750000px;}
.ycb{bottom:895.830000px;}
.y5c{bottom:898.080000px;}
.y6{bottom:899.610000px;}
.y196{bottom:900.960000px;}
.y1bc{bottom:901.860000px;}
.y37{bottom:902.220000px;}
.y9c{bottom:902.670000px;}
.y171{bottom:909.510000px;}
.y142{bottom:910.410000px;}
.y209{bottom:910.860000px;}
.yf5{bottom:917.160000px;}
.y1bb{bottom:919.410000px;}
.y9b{bottom:920.220000px;}
.y122{bottom:923.100000px;}
.y195{bottom:927.600000px;}
.y1dc{bottom:928.410000px;}
.yf4{bottom:934.710000px;}
.y5{bottom:935.610000px;}
.y141{bottom:936.960000px;}
.y36{bottom:937.860000px;}
.y1ba{bottom:945.960000px;}
.y170{bottom:946.860000px;}
.y5b{bottom:947.490000px;}
.y194{bottom:954.150000px;}
.y208{bottom:954.960000px;}
.y35{bottom:955.410000px;}
.y7f{bottom:957.210000px;}
.yc9{bottom:958.290000px;}
.yf3{bottom:961.350000px;}
.y1b9{bottom:963.600000px;}
.y4{bottom:971.700000px;}
.y140{bottom:972.600000px;}
.y34{bottom:972.960000px;}
.y193{bottom:980.790000px;}
.y13f{bottom:990.150000px;}
.y33{bottom:990.600000px;}
.y59{bottom:992.400000px;}
.yf1{bottom:994.290000px;}
.y16f{bottom:995.190000px;}
.y207{bottom:999.150000px;}
.y7d{bottom:1002.120000px;}
.y121{bottom:1003.200000px;}
.y192{bottom:1007.340000px;}
.y13e{bottom:1007.790000px;}
.y32{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.y16e{bottom:1012.770000px;}
.y1db{bottom:1016.820000px;}
.y13d{bottom:1025.370000px;}
.y31{bottom:1025.820000px;}
.y16d{bottom:1030.320000px;}
.y191{bottom:1033.920000px;}
.y1b8{bottom:1034.370000px;}
.y58{bottom:1037.340000px;}
.yc8{bottom:1038.420000px;}
.y13c{bottom:1042.920000px;}
.y30{bottom:1043.370000px;}
.y7c{bottom:1047.060000px;}
.y16c{bottom:1047.960000px;}
.y1b7{bottom:1051.920000px;}
.y190{bottom:1060.560000px;}
.y2f{bottom:1060.920000px;}
.y16b{bottom:1065.510000px;}
.y120{bottom:1069.560000px;}
.yf0{bottom:1074.420000px;}
.y2e{bottom:1078.560000px;}
.y57{bottom:1082.250000px;}
.y16a{bottom:1083.150000px;}
.yc7{bottom:1087.110000px;}
.y7a{bottom:1091.970000px;}
.y2d{bottom:1096.110000px;}
.y169{bottom:1100.700000px;}
.y11f{bottom:1105.110000px;}
.y56{bottom:1109.610000px;}
.y2c{bottom:1113.750000px;}
.yc6{bottom:1122.750000px;}
.y168{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h14{height:23.580000px;}
.h10{height:26.550000px;}
.ha{height:26.640000px;}
.h2{height:32.918906px;}
.h1c{height:33.750000px;}
.h3{height:39.155273px;}
.h12{height:44.100000px;}
.hc{height:44.130000px;}
.hd{height:44.190000px;}
.he{height:44.220000px;}
.hf{height:48.600000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h15{height:58.770000px;}
.hb{height:61.740000px;}
.h1d{height:61.793886px;}
.h13{height:61.830000px;}
.h9{height:62.585859px;}
.h11{height:68.582109px;}
.h4{height:72.985430px;}
.h16{height:76.320000px;}
.h17{height:76.350000px;}
.h18{height:76.410000px;}
.h1a{height:79.290000px;}
.h1b{height:79.380000px;}
.h19{height:79.410000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:85.140000px;}
.w5{width:91.980000px;}
.w13{width:120.090000px;}
.w10{width:126.120000px;}
.w6{width:138.900000px;}
.w9{width:147.720000px;}
.wc{width:148.440000px;}
.w3{width:173.910000px;}
.w15{width:199.020000px;}
.wd{width:201.870000px;}
.w16{width:202.500000px;}
.w7{width:228.870000px;}
.w11{width:231.210000px;}
.w14{width:231.840000px;}
.wa{width:256.590000px;}
.wb{width:257.070000px;}
.w8{width:293.700000px;}
.w12{width:311.070000px;}
.we{width:318.000000px;}
.w4{width:488.280000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x12{left:111.239987px;}
.xf{left:189.660000px;}
.x2{left:192.719987px;}
.xd{left:195.600000px;}
.x7{left:208.380000px;}
.x9{left:217.200000px;}
.x5{left:243.390000px;}
.xb{left:420.600000px;}
.x10{left:422.220000px;}
.xe{left:427.530000px;}
.x8{left:437.970000px;}
.xa{left:474.600000px;}
.x11{left:621.960000px;}
.x6{left:732.480000px;}
.xc{left:739.320000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.395200pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.lse{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls7{letter-spacing:-0.056533pt;}
.ls19{letter-spacing:-0.013120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.lsf{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.087467pt;}
.lsd{letter-spacing:0.127467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.183680pt;}
.ls0{letter-spacing:11.864320pt;}
.ls18{letter-spacing:12.663680pt;}
.ls15{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.884267pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.wsd{word-spacing:-11.681600pt;}
.ws9{word-spacing:-11.674667pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._5{margin-left:-3.104535pt;}
._4{margin-left:-1.977066pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.393707pt;}
._8{width:2.367787pt;}
._6{width:4.008000pt;}
._7{width:4.957333pt;}
._9{width:6.571520pt;}
._2{width:7.481600pt;}
._3{width:8.683413pt;}
._a{width:10.420800pt;}
._32{width:12.665280pt;}
._10{width:13.573760pt;}
._31{width:14.514239pt;}
._b{width:15.433387pt;}
._3f{width:16.673280pt;}
._e{width:17.635200pt;}
._f{width:18.757440pt;}
._1c{width:19.826240pt;}
._2a{width:21.322560pt;}
._16{width:22.391360pt;}
._13{width:23.353280pt;}
._14{width:24.606933pt;}
._4c{width:25.864960pt;}
._20{width:27.147520pt;}
._24{width:28.323200pt;}
._d{width:29.926400pt;}
._18{width:31.208960pt;}
._39{width:32.865600pt;}
._3c{width:33.880960pt;}
._c{width:35.270400pt;}
._1e{width:36.552960pt;}
._41{width:37.888960pt;}
._28{width:39.224960pt;}
._12{width:40.440640pt;}
._3b{width:41.696640pt;}
._3d{width:42.685120pt;}
._22{width:44.889600pt;}
._2f{width:46.385920pt;}
._1d{width:47.561600pt;}
._15{width:49.164800pt;}
._53{width:50.607680pt;}
._4f{width:52.317760pt;}
._2c{width:53.653760pt;}
._4d{width:56.753280pt;}
._49{width:58.035840pt;}
._25{width:59.318400pt;}
._4b{width:61.028480pt;}
._11{width:63.005760pt;}
._44{width:65.250240pt;}
._30{width:66.372480pt;}
._34{width:67.815360pt;}
._26{width:68.937600pt;}
._47{width:70.808000pt;}
._52{width:74.602240pt;}
._19{width:77.113920pt;}
._1a{width:78.326187pt;}
._3a{width:80.160000pt;}
._17{width:82.284160pt;}
._48{width:85.183360pt;}
._2d{width:86.359040pt;}
._2b{width:87.534720pt;}
._50{width:91.863360pt;}
._1b{width:96.886720pt;}
._2e{width:98.436480pt;}
._23{width:99.665600pt;}
._4a{width:100.894720pt;}
._33{width:102.818560pt;}
._36{width:105.704320pt;}
._46{width:109.284800pt;}
._29{width:114.949440pt;}
._42{width:118.155840pt;}
._45{width:119.491840pt;}
._43{width:128.897280pt;}
._40{width:130.500480pt;}
._38{width:134.829120pt;}
._21{width:138.035520pt;}
._55{width:140.921280pt;}
._4e{width:142.898560pt;}
._51{width:144.074240pt;}
._27{width:180.947840pt;}
._35{width:183.512960pt;}
._37{width:213.332480pt;}
._3e{width:254.641600pt;}
._1f{width:308.241920pt;}
._54{width:403.204800pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:5.520000pt;}
.y89{bottom:5.600000pt;}
.y4c{bottom:6.960000pt;}
.y48{bottom:7.040000pt;}
.y7e{bottom:7.066667pt;}
.y5e{bottom:10.960000pt;}
.y128{bottom:13.360000pt;}
.yef{bottom:18.640000pt;}
.y8c{bottom:21.200000pt;}
.y8d{bottom:21.280000pt;}
.y98{bottom:21.360000pt;}
.y4e{bottom:22.560000pt;}
.y4b{bottom:22.640000pt;}
.y5a{bottom:22.666667pt;}
.y5d{bottom:26.560000pt;}
.yee{bottom:34.240000pt;}
.y95{bottom:36.800000pt;}
.y8b{bottom:36.880000pt;}
.y92{bottom:36.960000pt;}
.y4a{bottom:38.240000pt;}
.yf2{bottom:38.266667pt;}
.y7b{bottom:38.320000pt;}
.yd4{bottom:38.346667pt;}
.y93{bottom:52.480000pt;}
.y91{bottom:52.560000pt;}
.ycd{bottom:53.840000pt;}
.yd0{bottom:53.920000pt;}
.yca{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y1b6{bottom:100.666667pt;}
.y55{bottom:101.226667pt;}
.y211{bottom:103.226667pt;}
.y18f{bottom:104.426667pt;}
.y13b{bottom:105.386667pt;}
.y9a{bottom:106.266667pt;}
.y11e{bottom:110.746667pt;}
.y79{bottom:112.186667pt;}
.yc5{bottom:113.466667pt;}
.y1f3{bottom:118.506667pt;}
.y210{bottom:118.826667pt;}
.y13a{bottom:121.066667pt;}
.y1b5{bottom:124.266667pt;}
.y11d{bottom:126.346667pt;}
.y1da{bottom:126.826667pt;}
.y18e{bottom:128.026667pt;}
.ye5{bottom:128.586667pt;}
.yc4{bottom:129.066667pt;}
.y1f2{bottom:134.106667pt;}
.y139{bottom:136.666667pt;}
.y1b4{bottom:139.946667pt;}
.y54{bottom:141.146667pt;}
.y11c{bottom:141.946667pt;}
.y1d9{bottom:142.506667pt;}
.ye4{bottom:144.186667pt;}
.yc3{bottom:144.746667pt;}
.y28{bottom:147.226667pt;}
.y206{bottom:149.786667pt;}
.yed{bottom:151.226667pt;}
.y18d{bottom:151.626667pt;}
.y78{bottom:152.106667pt;}
.y138{bottom:152.266667pt;}
.y1f1{bottom:157.786667pt;}
.y1d8{bottom:158.106667pt;}
.ye3{bottom:159.866667pt;}
.y27{bottom:162.906667pt;}
.y1b3{bottom:163.546667pt;}
.y11b{bottom:165.626667pt;}
.y167{bottom:167.226667pt;}
.y137{bottom:167.946667pt;}
.yc2{bottom:168.346667pt;}
.y1f0{bottom:173.386667pt;}
.y20f{bottom:173.786667pt;}
.y99{bottom:174.746667pt;}
.y18c{bottom:175.306667pt;}
.ye2{bottom:175.466667pt;}
.y26{bottom:178.506667pt;}
.y53{bottom:181.066667pt;}
.y1d7{bottom:181.786667pt;}
.y166{bottom:182.826667pt;}
.y136{bottom:183.546667pt;}
.y1b2{bottom:187.146667pt;}
.y1ef{bottom:188.986667pt;}
.ye1{bottom:191.066667pt;}
.y77{bottom:192.026667pt;}
.y25{bottom:194.106667pt;}
.y11a{bottom:197.226667pt;}
.y1d6{bottom:197.386667pt;}
.y165{bottom:198.506667pt;}
.y18b{bottom:198.906667pt;}
.y135{bottom:199.146667pt;}
.yc1{bottom:199.946667pt;}
.ye0{bottom:206.746667pt;}
.y24{bottom:209.786667pt;}
.y1b1{bottom:210.826667pt;}
.y1ee{bottom:212.666667pt;}
.y119{bottom:212.826667pt;}
.y1d5{bottom:212.986667pt;}
.y164{bottom:214.106667pt;}
.yc0{bottom:215.626667pt;}
.y52{bottom:220.986667pt;}
.ydf{bottom:222.346667pt;}
.yec{bottom:222.426667pt;}
.y18a{bottom:222.586667pt;}
.y134{bottom:222.826667pt;}
.y23{bottom:225.386667pt;}
.y97{bottom:227.626667pt;}
.y1ed{bottom:228.266667pt;}
.y118{bottom:228.506667pt;}
.y163{bottom:229.786667pt;}
.ybf{bottom:231.226667pt;}
.y1b0{bottom:234.426667pt;}
.y1d4{bottom:236.666667pt;}
.yde{bottom:238.026667pt;}
.y22{bottom:241.066667pt;}
.y1ec{bottom:243.946667pt;}
.y117{bottom:244.106667pt;}
.y162{bottom:245.386667pt;}
.y189{bottom:246.186667pt;}
.ybe{bottom:246.826667pt;}
.y76{bottom:247.626667pt;}
.y1d3{bottom:252.266667pt;}
.ydd{bottom:253.626667pt;}
.y133{bottom:254.426667pt;}
.y21{bottom:256.666667pt;}
.y1af{bottom:258.106667pt;}
.y116{bottom:259.786667pt;}
.y51{bottom:260.906667pt;}
.y161{bottom:260.986667pt;}
.ybd{bottom:262.506667pt;}
.y1eb{bottom:267.546667pt;}
.y1d2{bottom:267.946667pt;}
.ydc{bottom:269.226667pt;}
.y188{bottom:269.786667pt;}
.y132{bottom:270.106667pt;}
.y20{bottom:272.266667pt;}
.y1ae{bottom:273.706667pt;}
.y115{bottom:275.386667pt;}
.y20e{bottom:275.946667pt;}
.y160{bottom:276.666667pt;}
.ybc{bottom:278.106667pt;}
.y1ea{bottom:283.146667pt;}
.ydb{bottom:284.906667pt;}
.y131{bottom:285.706667pt;}
.y75{bottom:287.546667pt;}
.y1f{bottom:287.946667pt;}
.y114{bottom:290.986667pt;}
.y1d1{bottom:291.546667pt;}
.y15f{bottom:292.266667pt;}
.y187{bottom:293.466667pt;}
.yeb{bottom:293.626667pt;}
.ybb{bottom:293.786667pt;}
.y96{bottom:296.186667pt;}
.y1ad{bottom:297.306667pt;}
.y205{bottom:298.826667pt;}
.yda{bottom:300.506667pt;}
.y50{bottom:300.826667pt;}
.y130{bottom:301.306667pt;}
.y1e{bottom:303.546667pt;}
.y113{bottom:306.666667pt;}
.y1e9{bottom:306.826667pt;}
.y1d0{bottom:307.146667pt;}
.y15e{bottom:307.946667pt;}
.yba{bottom:309.386667pt;}
.y20d{bottom:315.146667pt;}
.yd9{bottom:316.106667pt;}
.y12f{bottom:316.986667pt;}
.y186{bottom:317.066667pt;}
.y1d{bottom:319.226667pt;}
.y1ac{bottom:320.986667pt;}
.y112{bottom:322.266667pt;}
.y1e8{bottom:322.426667pt;}
.y15d{bottom:323.546667pt;}
.yb9{bottom:324.986667pt;}
.y1cf{bottom:330.826667pt;}
.yd8{bottom:331.786667pt;}
.y185{bottom:332.746667pt;}
.y111{bottom:337.946667pt;}
.y1e7{bottom:338.106667pt;}
.y15c{bottom:339.146667pt;}
.y12e{bottom:340.586667pt;}
.yb8{bottom:340.666667pt;}
.y4f{bottom:340.746667pt;}
.y1c{bottom:343.146667pt;}
.y1ab{bottom:344.586667pt;}
.y74{bottom:346.426667pt;}
.yd7{bottom:347.386667pt;}
.y110{bottom:353.546667pt;}
.y204{bottom:353.706667pt;}
.y15b{bottom:354.826667pt;}
.yb7{bottom:356.266667pt;}
.y184{bottom:356.346667pt;}
.y1e6{bottom:361.706667pt;}
.y1ce{bottom:362.106667pt;}
.yd6{bottom:363.066667pt;}
.y94{bottom:364.746667pt;}
.y1aa{bottom:368.266667pt;}
.y10f{bottom:369.146667pt;}
.yb6{bottom:371.946667pt;}
.y12d{bottom:372.266667pt;}
.y1e5{bottom:377.306667pt;}
.y73{bottom:378.106667pt;}
.y15a{bottom:378.426667pt;}
.y4d{bottom:380.746667pt;}
.y10e{bottom:384.826667pt;}
.y1cd{bottom:385.706667pt;}
.y1b{bottom:386.266667pt;}
.yd5{bottom:386.666667pt;}
.yb5{bottom:387.546667pt;}
.y183{bottom:387.626667pt;}
.y12c{bottom:387.866667pt;}
.y1a9{bottom:391.866667pt;}
.y1e4{bottom:392.986667pt;}
.y72{bottom:393.706667pt;}
.y10d{bottom:400.426667pt;}
.y1cc{bottom:401.306667pt;}
.yb4{bottom:403.146667pt;}
.y12b{bottom:403.466667pt;}
.y71{bottom:409.306667pt;}
.y159{bottom:410.106667pt;}
.y182{bottom:411.226667pt;}
.y1a8{bottom:415.466667pt;}
.yd3{bottom:415.946667pt;}
.y10c{bottom:416.106667pt;}
.y1e3{bottom:416.586667pt;}
.y1cb{bottom:416.986667pt;}
.yb3{bottom:418.853333pt;}
.y12a{bottom:419.173333pt;}
.y1a{bottom:419.253333pt;}
.y49{bottom:420.693333pt;}
.y70{bottom:425.013333pt;}
.y158{bottom:425.733333pt;}
.y181{bottom:426.933333pt;}
.y10b{bottom:431.733333pt;}
.y203{bottom:432.293333pt;}
.y90{bottom:433.253333pt;}
.yb2{bottom:434.453333pt;}
.y19{bottom:434.853333pt;}
.yea{bottom:435.973333pt;}
.y1a7{bottom:439.173333pt;}
.y1e2{bottom:440.293333pt;}
.y6f{bottom:440.613333pt;}
.y157{bottom:441.333333pt;}
.y129{bottom:442.773333pt;}
.y10a{bottom:447.333333pt;}
.y202{bottom:447.893333pt;}
.yb1{bottom:450.133333pt;}
.y18{bottom:450.533333pt;}
.y1e1{bottom:455.893333pt;}
.y6e{bottom:456.293333pt;}
.y156{bottom:457.013333pt;}
.y1a6{bottom:462.773333pt;}
.y109{bottom:463.013333pt;}
.yb0{bottom:465.733333pt;}
.y17{bottom:466.133333pt;}
.y201{bottom:471.493333pt;}
.y6d{bottom:471.893333pt;}
.y127{bottom:472.133333pt;}
.y155{bottom:472.613333pt;}
.y180{bottom:474.133333pt;}
.y47{bottom:476.213333pt;}
.y1a5{bottom:478.453333pt;}
.y108{bottom:478.613333pt;}
.y1e0{bottom:479.493333pt;}
.y1ca{bottom:479.893333pt;}
.yaf{bottom:481.333333pt;}
.y16{bottom:481.733333pt;}
.yd2{bottom:487.173333pt;}
.y6c{bottom:487.493333pt;}
.y154{bottom:488.293333pt;}
.y107{bottom:494.293333pt;}
.y1c9{bottom:495.493333pt;}
.yae{bottom:497.013333pt;}
.y15{bottom:497.413333pt;}
.y17f{bottom:497.813333pt;}
.y8e{bottom:501.813333pt;}
.y1a4{bottom:502.053333pt;}
.y200{bottom:502.773333pt;}
.y126{bottom:502.853333pt;}
.y6b{bottom:503.173333pt;}
.y153{bottom:503.893333pt;}
.ye9{bottom:507.173333pt;}
.yad{bottom:512.613333pt;}
.y14{bottom:513.013333pt;}
.y106{bottom:517.893333pt;}
.y6a{bottom:518.773333pt;}
.y1c8{bottom:519.173333pt;}
.y46{bottom:519.493333pt;}
.y17e{bottom:521.413333pt;}
.y1a3{bottom:525.653333pt;}
.y1ff{bottom:526.453333pt;}
.yac{bottom:528.293333pt;}
.y13{bottom:528.693333pt;}
.y69{bottom:534.453333pt;}
.y1c7{bottom:534.773333pt;}
.y152{bottom:535.173333pt;}
.y17d{bottom:537.093333pt;}
.y1fe{bottom:542.053333pt;}
.y1df{bottom:542.453333pt;}
.yd1{bottom:542.773333pt;}
.yab{bottom:543.893333pt;}
.y12{bottom:544.293333pt;}
.y1a2{bottom:549.333333pt;}
.y105{bottom:549.493333pt;}
.y20c{bottom:550.453333pt;}
.y151{bottom:550.773333pt;}
.y45{bottom:551.173333pt;}
.y17c{bottom:552.693333pt;}
.y8a{bottom:554.693333pt;}
.y68{bottom:558.053333pt;}
.y125{bottom:558.373333pt;}
.y1c6{bottom:558.453333pt;}
.yaa{bottom:559.493333pt;}
.y11{bottom:559.893333pt;}
.y104{bottom:565.173333pt;}
.y1fd{bottom:565.653333pt;}
.y150{bottom:566.453333pt;}
.y44{bottom:566.773333pt;}
.y1a1{bottom:572.933333pt;}
.y1c5{bottom:574.053333pt;}
.ya9{bottom:575.173333pt;}
.y10{bottom:575.573333pt;}
.y17b{bottom:576.293333pt;}
.ye8{bottom:578.373333pt;}
.y103{bottom:580.773333pt;}
.y1fc{bottom:581.333333pt;}
.y1de{bottom:581.653333pt;}
.y14f{bottom:582.053333pt;}
.y43{bottom:582.453333pt;}
.y1a0{bottom:588.613333pt;}
.y67{bottom:589.653333pt;}
.ya8{bottom:590.773333pt;}
.yf{bottom:591.173333pt;}
.y102{bottom:596.453333pt;}
.y14e{bottom:597.653333pt;}
.y42{bottom:598.053333pt;}
.ycf{bottom:598.293333pt;}
.y17a{bottom:599.973333pt;}
.y1fb{bottom:604.933333pt;}
.y66{bottom:605.333333pt;}
.ya7{bottom:606.453333pt;}
.ye{bottom:606.853333pt;}
.y88{bottom:607.573333pt;}
.y101{bottom:612.053333pt;}
.y19f{bottom:612.213333pt;}
.y1c4{bottom:613.333333pt;}
.y124{bottom:613.973333pt;}
.y179{bottom:615.573333pt;}
.y1fa{bottom:620.613333pt;}
.y65{bottom:620.933333pt;}
.y14d{bottom:621.333333pt;}
.y41{bottom:621.653333pt;}
.yd{bottom:622.453333pt;}
.y100{bottom:627.653333pt;}
.y1c3{bottom:628.933333pt;}
.ya6{bottom:630.053333pt;}
.y19e{bottom:635.813333pt;}
.y64{bottom:636.533333pt;}
.ye7{bottom:637.333333pt;}
.yc{bottom:638.053333pt;}
.y178{bottom:639.253333pt;}
.yff{bottom:643.333333pt;}
.y1f9{bottom:644.213333pt;}
.y20b{bottom:644.613333pt;}
.y87{bottom:648.213333pt;}
.y1c2{bottom:652.613333pt;}
.y14c{bottom:652.933333pt;}
.y40{bottom:653.333333pt;}
.yb{bottom:653.733333pt;}
.yfe{bottom:658.933333pt;}
.y19d{bottom:659.493333pt;}
.y63{bottom:660.453333pt;}
.ya5{bottom:661.653333pt;}
.y177{bottom:662.853333pt;}
.y1f8{bottom:667.813333pt;}
.y1c1{bottom:668.213333pt;}
.y14b{bottom:668.613333pt;}
.y3f{bottom:668.933333pt;}
.ya{bottom:669.333333pt;}
.yce{bottom:669.493333pt;}
.yfd{bottom:674.613333pt;}
.y19c{bottom:675.093333pt;}
.ya4{bottom:677.333333pt;}
.y176{bottom:678.453333pt;}
.y86{bottom:679.813333pt;}
.y1c0{bottom:683.813333pt;}
.y14a{bottom:684.213333pt;}
.y3e{bottom:684.613333pt;}
.yfc{bottom:690.213333pt;}
.y1f7{bottom:691.493333pt;}
.ya3{bottom:692.933333pt;}
.y9{bottom:693.253333pt;}
.y85{bottom:695.493333pt;}
.y19b{bottom:698.693333pt;}
.y149{bottom:699.813333pt;}
.y3d{bottom:700.213333pt;}
.y62{bottom:701.093333pt;}
.y175{bottom:702.133333pt;}
.yfb{bottom:705.813333pt;}
.y1bf{bottom:707.493333pt;}
.ya2{bottom:708.613333pt;}
.y84{bottom:711.093333pt;}
.y19a{bottom:714.373333pt;}
.y1f6{bottom:715.093333pt;}
.y148{bottom:715.493333pt;}
.y3c{bottom:715.813333pt;}
.y174{bottom:717.733333pt;}
.yfa{bottom:721.493333pt;}
.y1be{bottom:723.093333pt;}
.ya1{bottom:724.213333pt;}
.ycc{bottom:725.093333pt;}
.y61{bottom:725.333333pt;}
.y83{bottom:726.693333pt;}
.y199{bottom:729.973333pt;}
.y1f5{bottom:730.693333pt;}
.y147{bottom:731.093333pt;}
.y3b{bottom:731.493333pt;}
.y8{bottom:736.213333pt;}
.yf9{bottom:737.093333pt;}
.y1bd{bottom:738.693333pt;}
.ye6{bottom:739.493333pt;}
.ya0{bottom:739.813333pt;}
.y173{bottom:741.653333pt;}
.y82{bottom:742.373333pt;}
.y146{bottom:746.693333pt;}
.y3a{bottom:747.093333pt;}
.y60{bottom:749.653333pt;}
.yf8{bottom:752.693333pt;}
.y198{bottom:753.653333pt;}
.y1f4{bottom:754.373333pt;}
.y9f{bottom:755.493333pt;}
.y145{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.y123{bottom:765.013333pt;}
.y81{bottom:765.973333pt;}
.y7{bottom:767.813333pt;}
.yf7{bottom:768.373333pt;}
.y20a{bottom:770.373333pt;}
.y9e{bottom:771.093333pt;}
.y5f{bottom:773.973333pt;}
.y197{bottom:777.253333pt;}
.y144{bottom:777.973333pt;}
.y38{bottom:778.373333pt;}
.yf6{bottom:783.973333pt;}
.y172{bottom:784.533333pt;}
.y1dd{bottom:785.973333pt;}
.y9d{bottom:786.693333pt;}
.y143{bottom:793.653333pt;}
.y80{bottom:795.333333pt;}
.ycb{bottom:796.293333pt;}
.y5c{bottom:798.293333pt;}
.y6{bottom:799.653333pt;}
.y196{bottom:800.853333pt;}
.y1bc{bottom:801.653333pt;}
.y37{bottom:801.973333pt;}
.y9c{bottom:802.373333pt;}
.y171{bottom:808.453333pt;}
.y142{bottom:809.253333pt;}
.y209{bottom:809.653333pt;}
.yf5{bottom:815.253333pt;}
.y1bb{bottom:817.253333pt;}
.y9b{bottom:817.973333pt;}
.y122{bottom:820.533333pt;}
.y195{bottom:824.533333pt;}
.y1dc{bottom:825.253333pt;}
.yf4{bottom:830.853333pt;}
.y5{bottom:831.653333pt;}
.y141{bottom:832.853333pt;}
.y36{bottom:833.653333pt;}
.y1ba{bottom:840.853333pt;}
.y170{bottom:841.653333pt;}
.y5b{bottom:842.213333pt;}
.y194{bottom:848.133333pt;}
.y208{bottom:848.853333pt;}
.y35{bottom:849.253333pt;}
.y7f{bottom:850.853333pt;}
.yc9{bottom:851.813333pt;}
.yf3{bottom:854.533333pt;}
.y1b9{bottom:856.533333pt;}
.y4{bottom:863.733333pt;}
.y140{bottom:864.533333pt;}
.y34{bottom:864.853333pt;}
.y193{bottom:871.813333pt;}
.y13f{bottom:880.133333pt;}
.y33{bottom:880.533333pt;}
.y59{bottom:882.133333pt;}
.yf1{bottom:883.813333pt;}
.y16f{bottom:884.613333pt;}
.y207{bottom:888.133333pt;}
.y7d{bottom:890.773333pt;}
.y121{bottom:891.733333pt;}
.y192{bottom:895.413333pt;}
.y13e{bottom:895.813333pt;}
.y32{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.y16e{bottom:900.240000pt;}
.y1db{bottom:903.840000pt;}
.y13d{bottom:911.440000pt;}
.y31{bottom:911.840000pt;}
.y16d{bottom:915.840000pt;}
.y191{bottom:919.040000pt;}
.y1b8{bottom:919.440000pt;}
.y58{bottom:922.080000pt;}
.yc8{bottom:923.040000pt;}
.y13c{bottom:927.040000pt;}
.y30{bottom:927.440000pt;}
.y7c{bottom:930.720000pt;}
.y16c{bottom:931.520000pt;}
.y1b7{bottom:935.040000pt;}
.y190{bottom:942.720000pt;}
.y2f{bottom:943.040000pt;}
.y16b{bottom:947.120000pt;}
.y120{bottom:950.720000pt;}
.yf0{bottom:955.040000pt;}
.y2e{bottom:958.720000pt;}
.y57{bottom:962.000000pt;}
.y16a{bottom:962.800000pt;}
.yc7{bottom:966.320000pt;}
.y7a{bottom:970.640000pt;}
.y2d{bottom:974.320000pt;}
.y169{bottom:978.400000pt;}
.y11f{bottom:982.320000pt;}
.y56{bottom:986.320000pt;}
.y2c{bottom:990.000000pt;}
.yc6{bottom:998.000000pt;}
.y168{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h14{height:20.960000pt;}
.h10{height:23.600000pt;}
.ha{height:23.680000pt;}
.h2{height:29.261250pt;}
.h1c{height:30.000000pt;}
.h3{height:34.804688pt;}
.h12{height:39.200000pt;}
.hc{height:39.226667pt;}
.hd{height:39.280000pt;}
.he{height:39.306667pt;}
.hf{height:43.200000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h15{height:52.240000pt;}
.hb{height:54.880000pt;}
.h1d{height:54.927899pt;}
.h13{height:54.960000pt;}
.h9{height:55.631875pt;}
.h11{height:60.961875pt;}
.h4{height:64.875937pt;}
.h16{height:67.840000pt;}
.h17{height:67.866667pt;}
.h18{height:67.920000pt;}
.h1a{height:70.480000pt;}
.h1b{height:70.560000pt;}
.h19{height:70.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:75.680000pt;}
.w5{width:81.760000pt;}
.w13{width:106.746667pt;}
.w10{width:112.106667pt;}
.w6{width:123.466667pt;}
.w9{width:131.306667pt;}
.wc{width:131.946667pt;}
.w3{width:154.586667pt;}
.w15{width:176.906667pt;}
.wd{width:179.440000pt;}
.w16{width:180.000000pt;}
.w7{width:203.440000pt;}
.w11{width:205.520000pt;}
.w14{width:206.080000pt;}
.wa{width:228.080000pt;}
.wb{width:228.506667pt;}
.w8{width:261.066667pt;}
.w12{width:276.506667pt;}
.we{width:282.666667pt;}
.w4{width:434.026667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x12{left:98.879988pt;}
.xf{left:168.586667pt;}
.x2{left:171.306655pt;}
.xd{left:173.866667pt;}
.x7{left:185.226667pt;}
.x9{left:193.066667pt;}
.x5{left:216.346667pt;}
.xb{left:373.866667pt;}
.x10{left:375.306667pt;}
.xe{left:380.026667pt;}
.x8{left:389.306667pt;}
.xa{left:421.866667pt;}
.x11{left:552.853333pt;}
.x6{left:651.093333pt;}
.xc{left:657.173333pt;}
.x3{left:711.413322pt;}
}




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