
    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_dc3120807dd63f6e88a64923.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c751b9a650e9d3edfcef8325.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_f8a56f8f6b17d7addef8e09b.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e37fab89752aa1412485f392.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_9c4ac35bf8af8631771ecd08.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_2d1f6955a830909de8967307.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.430000px;}
.ls15{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.067200px;}
.ls1{letter-spacing:-0.032040px;}
.ls1b{letter-spacing:-0.021960px;}
.lsa{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.021960px;}
.lsf{letter-spacing:0.045360px;}
.ls6{letter-spacing:0.067200px;}
.ls18{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078600px;}
.ls2{letter-spacing:0.081600px;}
.ls3{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.450000px;}
.lsb{letter-spacing:0.540000px;}
.ls1d{letter-spacing:1.080000px;}
.ls17{letter-spacing:4.680000px;}
.ls1c{letter-spacing:6.480000px;}
.ls11{letter-spacing:32.400000px;}
.ls10{letter-spacing:33.984000px;}
.ls4{letter-spacing:39.645360px;}
.ls5{letter-spacing:49.005360px;}
.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;}
}
.ws1{word-spacing:-24.111600px;}
.ws0{word-spacing:-23.997960px;}
.wsc{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.712000px;}
.ws12{word-spacing:-17.640000px;}
.ws9{word-spacing:-17.010000px;}
.ws7{word-spacing:-16.650000px;}
.ws6{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.537200px;}
.wsa{word-spacing:-16.515360px;}
.ws4{word-spacing:-16.470000px;}
.ws5{word-spacing:-16.469994px;}
.ws11{word-spacing:-16.448040px;}
.ws3{word-spacing:-14.967480px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-9.134640px;}
._16{margin-left:-5.088480px;}
._9{margin-left:-3.755760px;}
._7{margin-left:-2.557680px;}
._3{margin-left:-1.014480px;}
._6{width:1.163640px;}
._a{width:2.181360px;}
._d{width:4.150440px;}
._b{width:6.126840px;}
._c{width:7.188480px;}
._13{width:8.432640px;}
._12{width:9.552600px;}
._17{width:11.183400px;}
._f{width:13.110120px;}
._e{width:14.295960px;}
._19{width:16.016040px;}
._3c{width:17.950680px;}
._1d{width:19.008000px;}
._1f{width:20.520000px;}
._1c{width:22.176000px;}
._35{width:23.184000px;}
._15{width:24.209640px;}
._14{width:25.297920px;}
._20{width:27.072000px;}
._26{width:28.872000px;}
._22{width:29.952000px;}
._21{width:31.032000px;}
._18{width:32.328000px;}
._1e{width:33.552000px;}
._1a{width:34.704000px;}
._1b{width:35.748360px;}
._25{width:38.520000px;}
._41{width:40.176000px;}
._3f{width:41.851440px;}
._24{width:42.912000px;}
._23{width:43.920000px;}
._3a{width:47.960640px;}
._38{width:53.231040px;}
._32{width:56.088000px;}
._31{width:57.168000px;}
._5{width:59.940000px;}
._33{width:67.680000px;}
._2d{width:70.248000px;}
._0{width:72.000000px;}
._40{width:75.672000px;}
._37{width:79.143840px;}
._27{width:90.144000px;}
._3e{width:92.808000px;}
._2c{width:96.048000px;}
._39{width:99.610560px;}
._2b{width:102.168000px;}
._2f{width:129.888000px;}
._2e{width:130.968000px;}
._28{width:134.352000px;}
._3d{width:154.225080px;}
._3b{width:155.872080px;}
._34{width:156.960000px;}
._10{width:179.460000px;}
._29{width:182.664000px;}
._1{width:184.770000px;}
._2{width:188.370000px;}
._11{width:195.930000px;}
._30{width:338.544000px;}
._2a{width:342.648000px;}
._4{width:1079.310000px;}
._36{width:1159.680000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y153{bottom:13.050000px;}
.y161{bottom:13.140000px;}
.yd6{bottom:14.130000px;}
.yd0{bottom:14.220000px;}
.y197{bottom:26.190000px;}
.y211{bottom:26.220000px;}
.y177{bottom:26.280000px;}
.y15a{bottom:41.490000px;}
.y160{bottom:41.580000px;}
.yd5{bottom:45.180000px;}
.ycf{bottom:45.270000px;}
.y1a3{bottom:57.240000px;}
.y1ea{bottom:57.270000px;}
.y1cd{bottom:57.330000px;}
.y203{bottom:57.360000px;}
.y30{bottom:57.420000px;}
.y186{bottom:69.300000px;}
.y210{bottom:69.330000px;}
.y159{bottom:69.930000px;}
.y15f{bottom:70.020000px;}
.yd4{bottom:76.230000px;}
.yda{bottom:76.320000px;}
.y2f{bottom:77.580000px;}
.y1a2{bottom:88.290000px;}
.y1d9{bottom:88.320000px;}
.y1cc{bottom:88.380000px;}
.y202{bottom:88.410000px;}
.y158{bottom:98.460000px;}
.y15e{bottom:98.490000px;}
.y1a8{bottom:100.380000px;}
.yd3{bottom:107.280000px;}
.yd9{bottom:107.370000px;}
.yde{bottom:107.400000px;}
.yb9{bottom:112.230000px;}
.y196{bottom:112.320000px;}
.y185{bottom:112.350000px;}
.yb0{bottom:117.180000px;}
.ycd{bottom:119.340000px;}
.y201{bottom:119.370000px;}
.yf5{bottom:121.230000px;}
.y154{bottom:122.220000px;}
.y220{bottom:124.830000px;}
.y1b6{bottom:125.460000px;}
.y167{bottom:126.900000px;}
.y157{bottom:126.930000px;}
.y15d{bottom:127.020000px;}
.y174{bottom:128.070000px;}
.y1b5{bottom:129.690000px;}
.y4e{bottom:131.310000px;}
.y1e9{bottom:131.340000px;}
.y1a1{bottom:131.430000px;}
.yaa{bottom:133.380000px;}
.y178{bottom:136.170000px;}
.y1b3{bottom:137.430000px;}
.yd2{bottom:138.330000px;}
.yd8{bottom:138.420000px;}
.y104{bottom:140.490000px;}
.y19d{bottom:141.030000px;}
.y96{bottom:143.280000px;}
.y1a0{bottom:143.400000px;}
.yaf{bottom:148.230000px;}
.ycc{bottom:150.390000px;}
.y1ce{bottom:154.440000px;}
.y10a{bottom:155.340000px;}
.y156{bottom:155.370000px;}
.y15c{bottom:155.460000px;}
.y21f{bottom:155.880000px;}
.y173{bottom:159.120000px;}
.yc0{bottom:160.290000px;}
.y1eb{bottom:160.830000px;}
.ydb{bottom:162.090000px;}
.yf7{bottom:162.360000px;}
.y1e8{bottom:162.390000px;}
.y1cb{bottom:162.480000px;}
.yf4{bottom:164.340000px;}
.ya9{bottom:164.430000px;}
.y87{bottom:167.310000px;}
.y1ed{bottom:167.760000px;}
.y1b2{bottom:168.480000px;}
.y143{bottom:169.380000px;}
.y11b{bottom:170.100000px;}
.y4d{bottom:171.810000px;}
.y19f{bottom:174.450000px;}
.y1da{bottom:178.470000px;}
.y6c{bottom:179.280000px;}
.y151{bottom:181.440000px;}
.y103{bottom:183.510000px;}
.y166{bottom:183.780000px;}
.y155{bottom:183.810000px;}
.y19c{bottom:184.140000px;}
.y95{bottom:186.390000px;}
.y1a7{bottom:186.420000px;}
.y21e{bottom:186.930000px;}
.ybf{bottom:191.340000px;}
.ycb{bottom:193.410000px;}
.y1e7{bottom:193.440000px;}
.y200{bottom:193.530000px;}
.ya8{bottom:195.480000px;}
.ye{bottom:197.550000px;}
.y86{bottom:198.360000px;}
.y195{bottom:198.450000px;}
.y184{bottom:198.480000px;}
.y1b1{bottom:199.530000px;}
.y142{bottom:200.430000px;}
.y11a{bottom:201.150000px;}
.y172{bottom:202.140000px;}
.y1ca{bottom:205.500000px;}
.yf3{bottom:207.360000px;}
.y12d{bottom:207.540000px;}
.y6b{bottom:210.330000px;}
.y204{bottom:211.590000px;}
.y4c{bottom:212.220000px;}
.y165{bottom:212.310000px;}
.y19b{bottom:215.100000px;}
.yb8{bottom:217.440000px;}
.ybe{bottom:222.390000px;}
.y150{bottom:224.460000px;}
.y1e6{bottom:224.490000px;}
.y1ff{bottom:224.580000px;}
.yd7{bottom:224.940000px;}
.ya7{bottom:226.560000px;}
.y85{bottom:229.440000px;}
.y21d{bottom:230.070000px;}
.y1b0{bottom:230.610000px;}
.y141{bottom:231.510000px;}
.yca{bottom:236.460000px;}
.yf2{bottom:238.440000px;}
.y164{bottom:240.750000px;}
.y6a{bottom:241.410000px;}
.y194{bottom:241.470000px;}
.y183{bottom:241.500000px;}
.y119{bottom:244.290000px;}
.y2e{bottom:244.740000px;}
.y171{bottom:245.280000px;}
.y19a{bottom:246.180000px;}
.yb7{bottom:248.520000px;}
.y12c{bottom:250.590000px;}
.yd{bottom:250.950000px;}
.y4b{bottom:252.750000px;}
.ybd{bottom:253.470000px;}
.y14f{bottom:255.540000px;}
.y1fe{bottom:255.630000px;}
.ya6{bottom:257.610000px;}
.y84{bottom:260.490000px;}
.y21c{bottom:261.120000px;}
.y1af{bottom:261.660000px;}
.y140{bottom:262.560000px;}
.yc9{bottom:267.510000px;}
.y163{bottom:269.190000px;}
.yf1{bottom:269.490000px;}
.y102{bottom:269.670000px;}
.y69{bottom:272.460000px;}
.y1a6{bottom:272.550000px;}
.y2d{bottom:273.180000px;}
.y118{bottom:275.340000px;}
.y199{bottom:277.230000px;}
.yb6{bottom:279.570000px;}
.y193{bottom:284.490000px;}
.yae{bottom:284.520000px;}
.y182{bottom:284.610000px;}
.y14e{bottom:286.590000px;}
.y1fd{bottom:286.680000px;}
.y170{bottom:288.300000px;}
.y83{bottom:291.540000px;}
.y4a{bottom:293.160000px;}
.y12b{bottom:293.610000px;}
.y226{bottom:298.200000px;}
.y1e5{bottom:298.560000px;}
.yf0{bottom:300.540000px;}
.ya5{bottom:300.630000px;}
.y2c{bottom:301.620000px;}
.y68{bottom:303.510000px;}
.y21b{bottom:304.140000px;}
.yc{bottom:304.410000px;}
.y1ae{bottom:304.680000px;}
.y13f{bottom:305.670000px;}
.yc8{bottom:310.620000px;}
.y101{bottom:312.690000px;}
.yad{bottom:315.570000px;}
.y14d{bottom:317.640000px;}
.y117{bottom:318.360000px;}
.y16f{bottom:319.350000px;}
.y198{bottom:320.340000px;}
.y152{bottom:322.230000px;}
.yb5{bottom:322.590000px;}
.y1c9{bottom:322.680000px;}
.y12a{bottom:324.660000px;}
.y192{bottom:327.540000px;}
.y181{bottom:327.630000px;}
.y1e4{bottom:329.610000px;}
.y1fc{bottom:329.700000px;}
.y2b{bottom:330.420000px;}
.y49{bottom:333.660000px;}
.y67{bottom:334.560000px;}
.y21a{bottom:335.190000px;}
.y1ad{bottom:335.730000px;}
.y13e{bottom:336.630000px;}
.y187{bottom:337.890000px;}
.yc7{bottom:341.670000px;}
.yef{bottom:343.560000px;}
.ya4{bottom:343.740000px;}
.yac{bottom:346.620000px;}
.y14c{bottom:348.690000px;}
.y116{bottom:349.410000px;}
.y16e{bottom:350.400000px;}
.yb4{bottom:353.640000px;}
.y100{bottom:355.710000px;}
.yb{bottom:357.780000px;}
.y1a5{bottom:358.590000px;}
.y2a{bottom:359.220000px;}
.y1e3{bottom:360.660000px;}
.y82{bottom:365.610000px;}
.y1c8{bottom:365.700000px;}
.y219{bottom:366.240000px;}
.y1ac{bottom:366.780000px;}
.y180{bottom:370.650000px;}
.yf6{bottom:372.630000px;}
.y1fb{bottom:372.720000px;}
.y48{bottom:374.070000px;}
.yee{bottom:374.610000px;}
.y66{bottom:377.670000px;}
.y13d{bottom:379.740000px;}
.yd1{bottom:381.000000px;}
.y16d{bottom:381.450000px;}
.yb3{bottom:384.690000px;}
.ya3{bottom:386.760000px;}
.y29{bottom:387.660000px;}
.y1b4{bottom:388.740000px;}
.y14b{bottom:391.710000px;}
.y115{bottom:392.430000px;}
.y81{bottom:396.660000px;}
.y20f{bottom:396.750000px;}
.y218{bottom:397.290000px;}
.y1ab{bottom:397.830000px;}
.yff{bottom:398.730000px;}
.y17f{bottom:401.700000px;}
.y224{bottom:403.680000px;}
.yed{bottom:405.660000px;}
.y65{bottom:408.630000px;}
.y1c7{bottom:408.720000px;}
.y13c{bottom:410.790000px;}
.ya{bottom:411.150000px;}
.y191{bottom:413.670000px;}
.y47{bottom:414.570000px;}
.yb2{bottom:415.740000px;}
.y1fa{bottom:415.830000px;}
.y28{bottom:416.100000px;}
.ya2{bottom:417.810000px;}
.ybc{bottom:420.690000px;}
.y14a{bottom:422.760000px;}
.y114{bottom:423.480000px;}
.y16c{bottom:424.470000px;}
.y80{bottom:427.710000px;}
.y223{bottom:434.730000px;}
.yec{bottom:436.710000px;}
.y64{bottom:439.680000px;}
.y20e{bottom:439.800000px;}
.y217{bottom:440.310000px;}
.y1aa{bottom:440.940000px;}
.yfe{bottom:441.840000px;}
.y27{bottom:444.540000px;}
.yb1{bottom:446.790000px;}
.y1f9{bottom:446.880000px;}
.y17e{bottom:447.420000px;}
.ya1{bottom:448.860000px;}
.ybb{bottom:451.740000px;}
.y1c6{bottom:451.830000px;}
.y149{bottom:453.810000px;}
.y113{bottom:454.530000px;}
.y46{bottom:455.070000px;}
.y16b{bottom:455.520000px;}
.y190{bottom:456.690000px;}
.y7f{bottom:458.760000px;}
.y129{bottom:460.830000px;}
.y9{bottom:464.520000px;}
.y225{bottom:465.780000px;}
.y1e2{bottom:465.870000px;}
.yeb{bottom:467.760000px;}
.y94{bottom:470.730000px;}
.yfd{bottom:472.890000px;}
.y26{bottom:473.070000px;}
.y109{bottom:477.840000px;}
.y1f8{bottom:477.960000px;}
.y63{bottom:482.790000px;}
.y20d{bottom:482.820000px;}
.y1c5{bottom:482.880000px;}
.y216{bottom:483.330000px;}
.y1a9{bottom:483.960000px;}
.y112{bottom:485.580000px;}
.y7e{bottom:489.810000px;}
.y17d{bottom:490.440000px;}
.ya0{bottom:491.880000px;}
.y45{bottom:495.480000px;}
.y148{bottom:496.830000px;}
.y1e1{bottom:496.950000px;}
.y16a{bottom:498.630000px;}
.yea{bottom:498.810000px;}
.y18f{bottom:499.800000px;}
.y212{bottom:500.970000px;}
.y25{bottom:501.510000px;}
.y93{bottom:501.780000px;}
.y13b{bottom:503.940000px;}
.y222{bottom:508.890000px;}
.y1d8{bottom:508.920000px;}
.y62{bottom:513.840000px;}
.y1c4{bottom:513.930000px;}
.yfc{bottom:515.910000px;}
.y111{bottom:516.630000px;}
.y8{bottom:517.980000px;}
.y7d{bottom:520.860000px;}
.y1f7{bottom:520.980000px;}
.y128{bottom:522.930000px;}
.y20c{bottom:525.840000px;}
.y1e0{bottom:528.000000px;}
.y24{bottom:529.950000px;}
.y92{bottom:532.830000px;}
.y215{bottom:532.920000px;}
.y17c{bottom:533.490000px;}
.y9f{bottom:534.990000px;}
.y44{bottom:535.980000px;}
.yce{bottom:536.970000px;}
.y147{bottom:539.940000px;}
.y1d7{bottom:539.970000px;}
.y169{bottom:540.480000px;}
.ye9{bottom:541.830000px;}
.y18e{bottom:542.820000px;}
.y61{bottom:544.890000px;}
.y1a4{bottom:545.340000px;}
.y13a{bottom:546.960000px;}
.y7c{bottom:551.910000px;}
.y1f6{bottom:552.030000px;}
.y168{bottom:556.590000px;}
.y20b{bottom:556.890000px;}
.y1c3{bottom:556.980000px;}
.y23{bottom:558.390000px;}
.yfb{bottom:558.930000px;}
.y110{bottom:559.650000px;}
.y91{bottom:563.880000px;}
.y43{bottom:564.420000px;}
.y127{bottom:566.040000px;}
.y146{bottom:570.990000px;}
.y1df{bottom:571.020000px;}
.y7{bottom:571.350000px;}
.ye8{bottom:572.880000px;}
.y60{bottom:575.940000px;}
.y214{bottom:575.970000px;}
.y17b{bottom:576.510000px;}
.y9e{bottom:578.010000px;}
.yc6{bottom:582.960000px;}
.y1d6{bottom:582.990000px;}
.y18d{bottom:585.840000px;}
.y22{bottom:586.920000px;}
.y12f{bottom:587.910000px;}
.y20a{bottom:587.940000px;}
.y1c2{bottom:588.030000px;}
.y10f{bottom:590.700000px;}
.y42{bottom:592.860000px;}
.y7b{bottom:594.930000px;}
.y1f5{bottom:595.050000px;}
.y126{bottom:597.090000px;}
.yfa{bottom:602.040000px;}
.ye7{bottom:603.930000px;}
.y5f{bottom:606.990000px;}
.y213{bottom:607.020000px;}
.y9d{bottom:609.060000px;}
.y221{bottom:614.010000px;}
.y1d5{bottom:614.040000px;}
.y21{bottom:615.360000px;}
.y12e{bottom:618.960000px;}
.y17a{bottom:619.620000px;}
.y41{bottom:621.300000px;}
.y6{bottom:624.720000px;}
.y90{bottom:625.980000px;}
.y125{bottom:628.140000px;}
.y18c{bottom:628.950000px;}
.y1c1{bottom:631.050000px;}
.y145{bottom:633.090000px;}
.y10e{bottom:633.810000px;}
.y5e{bottom:638.040000px;}
.y1f4{bottom:638.070000px;}
.y139{bottom:640.110000px;}
.y20{bottom:643.800000px;}
.yf9{bottom:645.060000px;}
.y1d4{bottom:645.090000px;}
.ye6{bottom:647.070000px;}
.y40{bottom:649.860000px;}
.y108{bottom:650.040000px;}
.y9c{bottom:652.110000px;}
.yc5{bottom:657.060000px;}
.y1c0{bottom:662.100000px;}
.y179{bottom:662.640000px;}
.y10d{bottom:664.890000px;}
.y5d{bottom:669.120000px;}
.y124{bottom:671.190000px;}
.y18b{bottom:671.970000px;}
.y1f{bottom:672.270000px;}
.y209{bottom:674.070000px;}
.yf8{bottom:676.140000px;}
.ye5{bottom:678.120000px;}
.y5{bottom:678.210000px;}
.y3f{bottom:678.300000px;}
.y7a{bottom:681.090000px;}
.y138{bottom:683.160000px;}
.yc4{bottom:688.110000px;}
.y1d3{bottom:688.200000px;}
.y9b{bottom:695.220000px;}
.y10c{bottom:695.940000px;}
.y162{bottom:699.720000px;}
.y8f{bottom:700.170000px;}
.y1e{bottom:700.980000px;}
.y1bf{bottom:705.120000px;}
.y3e{bottom:706.740000px;}
.y1de{bottom:707.190000px;}
.ye4{bottom:709.170000px;}
.y5c{bottom:712.140000px;}
.y1f3{bottom:712.230000px;}
.y123{bottom:714.210000px;}
.y18a{bottom:714.990000px;}
.y208{bottom:717.090000px;}
.yc3{bottom:719.160000px;}
.y79{bottom:724.110000px;}
.y137{bottom:726.180000px;}
.y4{bottom:726.360000px;}
.y1d{bottom:729.870000px;}
.y8e{bottom:731.220000px;}
.y10b{bottom:735.090000px;}
.y3d{bottom:735.180000px;}
.y1be{bottom:736.170000px;}
.y9a{bottom:738.240000px;}
.y5b{bottom:743.190000px;}
.y122{bottom:745.260000px;}
.yc2{bottom:750.210000px;}
.ye3{bottom:752.190000px;}
.y78{bottom:755.160000px;}
.y1f2{bottom:755.250000px;}
.y136{bottom:757.230000px;}
.y189{bottom:758.130000px;}
.y1c{bottom:758.310000px;}
.y207{bottom:760.200000px;}
.y8d{bottom:762.180000px;}
.y3c{bottom:763.620000px;}
.y5a{bottom:774.240000px;}
.y1bd{bottom:779.280000px;}
.y99{bottom:781.260000px;}
.ye2{bottom:783.240000px;}
.y77{bottom:786.210000px;}
.y1b{bottom:786.660000px;}
.y121{bottom:788.280000px;}
.y206{bottom:791.250000px;}
.yab{bottom:793.230000px;}
.y1f1{bottom:798.270000px;}
.y188{bottom:801.150000px;}
.y3b{bottom:804.120000px;}
.y59{bottom:805.290000px;}
.y98{bottom:812.310000px;}
.y1a{bottom:815.550000px;}
.y176{bottom:816.360000px;}
.y76{bottom:817.260000px;}
.y135{bottom:819.330000px;}
.y1bc{bottom:822.300000px;}
.yc1{bottom:824.280000px;}
.ye1{bottom:826.260000px;}
.y120{bottom:831.390000px;}
.y58{bottom:836.340000px;}
.y1f0{bottom:841.380000px;}
.y144{bottom:843.360000px;}
.y19{bottom:843.990000px;}
.y3a{bottom:844.620000px;}
.yba{bottom:848.310000px;}
.y134{bottom:850.380000px;}
.y1bb{bottom:853.350000px;}
.y97{bottom:855.330000px;}
.ye0{bottom:857.310000px;}
.y75{bottom:860.280000px;}
.y11f{bottom:862.440000px;}
.y57{bottom:867.390000px;}
.y18{bottom:872.430000px;}
.y39{bottom:873.060000px;}
.ydf{bottom:874.860000px;}
.y8c{bottom:879.360000px;}
.y1d2{bottom:879.450000px;}
.y133{bottom:881.430000px;}
.y1ef{bottom:884.400000px;}
.y107{bottom:886.380000px;}
.y1dd{bottom:886.470000px;}
.y74{bottom:891.330000px;}
.y11e{bottom:893.490000px;}
.y1ba{bottom:896.370000px;}
.y205{bottom:896.400000px;}
.y56{bottom:898.440000px;}
.y17{bottom:900.870000px;}
.y38{bottom:901.500000px;}
.y8b{bottom:910.410000px;}
.y175{bottom:917.430000px;}
.y73{bottom:922.380000px;}
.y1d1{bottom:922.500000px;}
.y132{bottom:924.540000px;}
.y1ee{bottom:927.450000px;}
.y16{bottom:929.310000px;}
.y55{bottom:929.490000px;}
.y1dc{bottom:929.520000px;}
.y37{bottom:929.940000px;}
.y11d{bottom:936.510000px;}
.y1b9{bottom:939.480000px;}
.y8a{bottom:941.460000px;}
.y72{bottom:953.430000px;}
.y1d0{bottom:953.550000px;}
.y15{bottom:957.840000px;}
.y36{bottom:958.380000px;}
.y54{bottom:960.540000px;}
.y1db{bottom:960.570000px;}
.y19e{bottom:964.590000px;}
.y131{bottom:967.560000px;}
.ydd{bottom:968.820000px;}
.y89{bottom:972.510000px;}
.y11c{bottom:979.530000px;}
.y1b8{bottom:982.530000px;}
.y71{bottom:984.480000px;}
.y1cf{bottom:984.600000px;}
.y15b{bottom:985.020000px;}
.y14{bottom:986.280000px;}
.y35{bottom:986.910000px;}
.y53{bottom:991.590000px;}
.y88{bottom:1003.560000px;}
.y130{bottom:1010.580000px;}
.y1b7{bottom:1013.580000px;}
.y13{bottom:1014.720000px;}
.y34{bottom:1015.350000px;}
.y70{bottom:1015.530000px;}
.y106{bottom:1022.640000px;}
.y3{bottom:1027.410000px;}
.y52{bottom:1034.610000px;}
.y12{bottom:1043.160000px;}
.y33{bottom:1043.790000px;}
.y6f{bottom:1046.580000px;}
.y105{bottom:1053.690000px;}
.y51{bottom:1065.660000px;}
.y11{bottom:1071.630000px;}
.y32{bottom:1072.260000px;}
.y6e{bottom:1077.660000px;}
.y2{bottom:1080.810000px;}
.ydc{bottom:1093.770000px;}
.y50{bottom:1096.740000px;}
.y10{bottom:1100.430000px;}
.y31{bottom:1100.790000px;}
.y6d{bottom:1108.710000px;}
.y1ec{bottom:1112.850000px;}
.y1{bottom:1134.180000px;}
.y4f{bottom:1139.760000px;}
.yf{bottom:1141.200000px;}
.h11{height:28.440000px;}
.h1b{height:43.020000px;}
.h16{height:43.110000px;}
.ha{height:62.100000px;}
.h9{height:64.546875px;}
.h6{height:64.657617px;}
.h5{height:65.526152px;}
.h3{height:66.394687px;}
.h4{height:67.714259px;}
.h10{height:70.628906px;}
.h8{height:70.664062px;}
.h22{height:71.613281px;}
.hb{height:72.562500px;}
.h7{height:74.004654px;}
.hf{height:93.150000px;}
.h2{height:96.870938px;}
.he{height:124.230000px;}
.h15{height:142.410000px;}
.hc{height:155.160000px;}
.hd{height:155.250000px;}
.h13{height:170.850000px;}
.h19{height:191.280000px;}
.h12{height:199.200000px;}
.h1c{height:258.330000px;}
.h14{height:284.580000px;}
.h1a{height:418.530000px;}
.h21{height:654.900000px;}
.h17{height:679.470000px;}
.h18{height:817.980000px;}
.h20{height:944.280000px;}
.h1f{height:977.400000px;}
.h1e{height:1001.430000px;}
.h1d{height:1030.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:72.270000px;}
.w9{width:108.540000px;}
.w8{width:108.570000px;}
.w7{width:112.500000px;}
.wa{width:116.400000px;}
.w3{width:211.590000px;}
.w4{width:211.620000px;}
.w5{width:211.710000px;}
.wc{width:317.820000px;}
.wd{width:350.130000px;}
.wb{width:636.360000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x2{left:127.649987px;}
.x1{left:154.649987px;}
.x3{left:181.649987px;}
.xb{left:201.450000px;}
.x4{left:208.649987px;}
.xc{left:314.760000px;}
.x9{left:340.680000px;}
.x6{left:393.179987px;}
.xd{left:424.050000px;}
.x7{left:438.179987px;}
.x5{left:442.409987px;}
.x11{left:447.000000px;}
.xe{left:533.310000px;}
.xa{left:553.020000px;}
.xf{left:650.430000px;}
.x10{left:759.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.160000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.059733pt;}
.ls1{letter-spacing:-0.028480pt;}
.ls1b{letter-spacing:-0.019520pt;}
.lsa{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.019520pt;}
.lsf{letter-spacing:0.040320pt;}
.ls6{letter-spacing:0.059733pt;}
.ls18{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069867pt;}
.ls2{letter-spacing:0.072533pt;}
.ls3{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.400000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls17{letter-spacing:4.160000pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls11{letter-spacing:28.800000pt;}
.ls10{letter-spacing:30.208000pt;}
.ls4{letter-spacing:35.240320pt;}
.ls5{letter-spacing:43.560320pt;}
.ws1{word-spacing:-21.432533pt;}
.ws0{word-spacing:-21.331520pt;}
.wsc{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws12{word-spacing:-15.680000pt;}
.ws9{word-spacing:-15.120000pt;}
.ws7{word-spacing:-14.800000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.699733pt;}
.wsa{word-spacing:-14.680320pt;}
.ws4{word-spacing:-14.640000pt;}
.ws5{word-spacing:-14.639995pt;}
.ws11{word-spacing:-14.620480pt;}
.ws3{word-spacing:-13.304427pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-8.119680pt;}
._16{margin-left:-4.523093pt;}
._9{margin-left:-3.338453pt;}
._7{margin-left:-2.273493pt;}
._3{margin-left:-0.901760pt;}
._6{width:1.034347pt;}
._a{width:1.938987pt;}
._d{width:3.689280pt;}
._b{width:5.446080pt;}
._c{width:6.389760pt;}
._13{width:7.495680pt;}
._12{width:8.491200pt;}
._17{width:9.940800pt;}
._f{width:11.653440pt;}
._e{width:12.707520pt;}
._19{width:14.236480pt;}
._3c{width:15.956160pt;}
._1d{width:16.896000pt;}
._1f{width:18.240000pt;}
._1c{width:19.712000pt;}
._35{width:20.608000pt;}
._15{width:21.519680pt;}
._14{width:22.487040pt;}
._20{width:24.064000pt;}
._26{width:25.664000pt;}
._22{width:26.624000pt;}
._21{width:27.584000pt;}
._18{width:28.736000pt;}
._1e{width:29.824000pt;}
._1a{width:30.848000pt;}
._1b{width:31.776320pt;}
._25{width:34.240000pt;}
._41{width:35.712000pt;}
._3f{width:37.201280pt;}
._24{width:38.144000pt;}
._23{width:39.040000pt;}
._3a{width:42.631680pt;}
._38{width:47.316480pt;}
._32{width:49.856000pt;}
._31{width:50.816000pt;}
._5{width:53.280000pt;}
._33{width:60.160000pt;}
._2d{width:62.442667pt;}
._0{width:64.000000pt;}
._40{width:67.264000pt;}
._37{width:70.350080pt;}
._27{width:80.128000pt;}
._3e{width:82.496000pt;}
._2c{width:85.376000pt;}
._39{width:88.542720pt;}
._2b{width:90.816000pt;}
._2f{width:115.456000pt;}
._2e{width:116.416000pt;}
._28{width:119.424000pt;}
._3d{width:137.088960pt;}
._3b{width:138.552960pt;}
._34{width:139.520000pt;}
._10{width:159.520000pt;}
._29{width:162.368000pt;}
._1{width:164.240000pt;}
._2{width:167.440000pt;}
._11{width:174.160000pt;}
._30{width:300.928000pt;}
._2a{width:304.576000pt;}
._4{width:959.386667pt;}
._36{width:1030.826667pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:11.600000pt;}
.y161{bottom:11.680000pt;}
.yd6{bottom:12.560000pt;}
.yd0{bottom:12.640000pt;}
.y197{bottom:23.280000pt;}
.y211{bottom:23.306667pt;}
.y177{bottom:23.360000pt;}
.y15a{bottom:36.880000pt;}
.y160{bottom:36.960000pt;}
.yd5{bottom:40.160000pt;}
.ycf{bottom:40.240000pt;}
.y1a3{bottom:50.880000pt;}
.y1ea{bottom:50.906667pt;}
.y1cd{bottom:50.960000pt;}
.y203{bottom:50.986667pt;}
.y30{bottom:51.040000pt;}
.y186{bottom:61.600000pt;}
.y210{bottom:61.626667pt;}
.y159{bottom:62.160000pt;}
.y15f{bottom:62.240000pt;}
.yd4{bottom:67.760000pt;}
.yda{bottom:67.840000pt;}
.y2f{bottom:68.960000pt;}
.y1a2{bottom:78.480000pt;}
.y1d9{bottom:78.506667pt;}
.y1cc{bottom:78.560000pt;}
.y202{bottom:78.586667pt;}
.y158{bottom:87.520000pt;}
.y15e{bottom:87.546667pt;}
.y1a8{bottom:89.226667pt;}
.yd3{bottom:95.360000pt;}
.yd9{bottom:95.440000pt;}
.yde{bottom:95.466667pt;}
.yb9{bottom:99.760000pt;}
.y196{bottom:99.840000pt;}
.y185{bottom:99.866667pt;}
.yb0{bottom:104.160000pt;}
.ycd{bottom:106.080000pt;}
.y201{bottom:106.106667pt;}
.yf5{bottom:107.760000pt;}
.y154{bottom:108.640000pt;}
.y220{bottom:110.960000pt;}
.y1b6{bottom:111.520000pt;}
.y167{bottom:112.800000pt;}
.y157{bottom:112.826667pt;}
.y15d{bottom:112.906667pt;}
.y174{bottom:113.840000pt;}
.y1b5{bottom:115.280000pt;}
.y4e{bottom:116.720000pt;}
.y1e9{bottom:116.746667pt;}
.y1a1{bottom:116.826667pt;}
.yaa{bottom:118.560000pt;}
.y178{bottom:121.040000pt;}
.y1b3{bottom:122.160000pt;}
.yd2{bottom:122.960000pt;}
.yd8{bottom:123.040000pt;}
.y104{bottom:124.880000pt;}
.y19d{bottom:125.360000pt;}
.y96{bottom:127.360000pt;}
.y1a0{bottom:127.466667pt;}
.yaf{bottom:131.760000pt;}
.ycc{bottom:133.680000pt;}
.y1ce{bottom:137.280000pt;}
.y10a{bottom:138.080000pt;}
.y156{bottom:138.106667pt;}
.y15c{bottom:138.186667pt;}
.y21f{bottom:138.560000pt;}
.y173{bottom:141.440000pt;}
.yc0{bottom:142.480000pt;}
.y1eb{bottom:142.960000pt;}
.ydb{bottom:144.080000pt;}
.yf7{bottom:144.320000pt;}
.y1e8{bottom:144.346667pt;}
.y1cb{bottom:144.426667pt;}
.yf4{bottom:146.080000pt;}
.ya9{bottom:146.160000pt;}
.y87{bottom:148.720000pt;}
.y1ed{bottom:149.120000pt;}
.y1b2{bottom:149.760000pt;}
.y143{bottom:150.560000pt;}
.y11b{bottom:151.200000pt;}
.y4d{bottom:152.720000pt;}
.y19f{bottom:155.066667pt;}
.y1da{bottom:158.640000pt;}
.y6c{bottom:159.360000pt;}
.y151{bottom:161.280000pt;}
.y103{bottom:163.120000pt;}
.y166{bottom:163.360000pt;}
.y155{bottom:163.386667pt;}
.y19c{bottom:163.680000pt;}
.y95{bottom:165.680000pt;}
.y1a7{bottom:165.706667pt;}
.y21e{bottom:166.160000pt;}
.ybf{bottom:170.080000pt;}
.ycb{bottom:171.920000pt;}
.y1e7{bottom:171.946667pt;}
.y200{bottom:172.026667pt;}
.ya8{bottom:173.760000pt;}
.ye{bottom:175.600000pt;}
.y86{bottom:176.320000pt;}
.y195{bottom:176.400000pt;}
.y184{bottom:176.426667pt;}
.y1b1{bottom:177.360000pt;}
.y142{bottom:178.160000pt;}
.y11a{bottom:178.800000pt;}
.y172{bottom:179.680000pt;}
.y1ca{bottom:182.666667pt;}
.yf3{bottom:184.320000pt;}
.y12d{bottom:184.480000pt;}
.y6b{bottom:186.960000pt;}
.y204{bottom:188.080000pt;}
.y4c{bottom:188.640000pt;}
.y165{bottom:188.720000pt;}
.y19b{bottom:191.200000pt;}
.yb8{bottom:193.280000pt;}
.ybe{bottom:197.680000pt;}
.y150{bottom:199.520000pt;}
.y1e6{bottom:199.546667pt;}
.y1ff{bottom:199.626667pt;}
.yd7{bottom:199.946667pt;}
.ya7{bottom:201.386667pt;}
.y85{bottom:203.946667pt;}
.y21d{bottom:204.506667pt;}
.y1b0{bottom:204.986667pt;}
.y141{bottom:205.786667pt;}
.yca{bottom:210.186667pt;}
.yf2{bottom:211.946667pt;}
.y164{bottom:214.000000pt;}
.y6a{bottom:214.586667pt;}
.y194{bottom:214.640000pt;}
.y183{bottom:214.666667pt;}
.y119{bottom:217.146667pt;}
.y2e{bottom:217.546667pt;}
.y171{bottom:218.026667pt;}
.y19a{bottom:218.826667pt;}
.yb7{bottom:220.906667pt;}
.y12c{bottom:222.746667pt;}
.yd{bottom:223.066667pt;}
.y4b{bottom:224.666667pt;}
.ybd{bottom:225.306667pt;}
.y14f{bottom:227.146667pt;}
.y1fe{bottom:227.226667pt;}
.ya6{bottom:228.986667pt;}
.y84{bottom:231.546667pt;}
.y21c{bottom:232.106667pt;}
.y1af{bottom:232.586667pt;}
.y140{bottom:233.386667pt;}
.yc9{bottom:237.786667pt;}
.y163{bottom:239.280000pt;}
.yf1{bottom:239.546667pt;}
.y102{bottom:239.706667pt;}
.y69{bottom:242.186667pt;}
.y1a6{bottom:242.266667pt;}
.y2d{bottom:242.826667pt;}
.y118{bottom:244.746667pt;}
.y199{bottom:246.426667pt;}
.yb6{bottom:248.506667pt;}
.y193{bottom:252.880000pt;}
.yae{bottom:252.906667pt;}
.y182{bottom:252.986667pt;}
.y14e{bottom:254.746667pt;}
.y1fd{bottom:254.826667pt;}
.y170{bottom:256.266667pt;}
.y83{bottom:259.146667pt;}
.y4a{bottom:260.586667pt;}
.y12b{bottom:260.986667pt;}
.y226{bottom:265.066667pt;}
.y1e5{bottom:265.386667pt;}
.yf0{bottom:267.146667pt;}
.ya5{bottom:267.226667pt;}
.y2c{bottom:268.106667pt;}
.y68{bottom:269.786667pt;}
.y21b{bottom:270.346667pt;}
.yc{bottom:270.586667pt;}
.y1ae{bottom:270.826667pt;}
.y13f{bottom:271.706667pt;}
.yc8{bottom:276.106667pt;}
.y101{bottom:277.946667pt;}
.yad{bottom:280.506667pt;}
.y14d{bottom:282.346667pt;}
.y117{bottom:282.986667pt;}
.y16f{bottom:283.866667pt;}
.y198{bottom:284.746667pt;}
.y152{bottom:286.426667pt;}
.yb5{bottom:286.746667pt;}
.y1c9{bottom:286.826667pt;}
.y12a{bottom:288.586667pt;}
.y192{bottom:291.146667pt;}
.y181{bottom:291.226667pt;}
.y1e4{bottom:292.986667pt;}
.y1fc{bottom:293.066667pt;}
.y2b{bottom:293.706667pt;}
.y49{bottom:296.586667pt;}
.y67{bottom:297.386667pt;}
.y21a{bottom:297.946667pt;}
.y1ad{bottom:298.426667pt;}
.y13e{bottom:299.226667pt;}
.y187{bottom:300.346667pt;}
.yc7{bottom:303.706667pt;}
.yef{bottom:305.386667pt;}
.ya4{bottom:305.546667pt;}
.yac{bottom:308.106667pt;}
.y14c{bottom:309.946667pt;}
.y116{bottom:310.586667pt;}
.y16e{bottom:311.466667pt;}
.yb4{bottom:314.346667pt;}
.y100{bottom:316.186667pt;}
.yb{bottom:318.026667pt;}
.y1a5{bottom:318.746667pt;}
.y2a{bottom:319.306667pt;}
.y1e3{bottom:320.586667pt;}
.y82{bottom:324.986667pt;}
.y1c8{bottom:325.066667pt;}
.y219{bottom:325.546667pt;}
.y1ac{bottom:326.026667pt;}
.y180{bottom:329.466667pt;}
.yf6{bottom:331.226667pt;}
.y1fb{bottom:331.306667pt;}
.y48{bottom:332.506667pt;}
.yee{bottom:332.986667pt;}
.y66{bottom:335.706667pt;}
.y13d{bottom:337.546667pt;}
.yd1{bottom:338.666667pt;}
.y16d{bottom:339.066667pt;}
.yb3{bottom:341.946667pt;}
.ya3{bottom:343.786667pt;}
.y29{bottom:344.586667pt;}
.y1b4{bottom:345.546667pt;}
.y14b{bottom:348.186667pt;}
.y115{bottom:348.826667pt;}
.y81{bottom:352.586667pt;}
.y20f{bottom:352.666667pt;}
.y218{bottom:353.146667pt;}
.y1ab{bottom:353.626667pt;}
.yff{bottom:354.426667pt;}
.y17f{bottom:357.066667pt;}
.y224{bottom:358.826667pt;}
.yed{bottom:360.586667pt;}
.y65{bottom:363.226667pt;}
.y1c7{bottom:363.306667pt;}
.y13c{bottom:365.146667pt;}
.ya{bottom:365.466667pt;}
.y191{bottom:367.706667pt;}
.y47{bottom:368.506667pt;}
.yb2{bottom:369.546667pt;}
.y1fa{bottom:369.626667pt;}
.y28{bottom:369.866667pt;}
.ya2{bottom:371.386667pt;}
.ybc{bottom:373.946667pt;}
.y14a{bottom:375.786667pt;}
.y114{bottom:376.426667pt;}
.y16c{bottom:377.306667pt;}
.y80{bottom:380.186667pt;}
.y223{bottom:386.426667pt;}
.yec{bottom:388.186667pt;}
.y64{bottom:390.826667pt;}
.y20e{bottom:390.933333pt;}
.y217{bottom:391.386667pt;}
.y1aa{bottom:391.946667pt;}
.yfe{bottom:392.746667pt;}
.y27{bottom:395.146667pt;}
.yb1{bottom:397.146667pt;}
.y1f9{bottom:397.226667pt;}
.y17e{bottom:397.706667pt;}
.ya1{bottom:398.986667pt;}
.ybb{bottom:401.546667pt;}
.y1c6{bottom:401.626667pt;}
.y149{bottom:403.386667pt;}
.y113{bottom:404.026667pt;}
.y46{bottom:404.506667pt;}
.y16b{bottom:404.906667pt;}
.y190{bottom:405.946667pt;}
.y7f{bottom:407.786667pt;}
.y129{bottom:409.626667pt;}
.y9{bottom:412.906667pt;}
.y225{bottom:414.026667pt;}
.y1e2{bottom:414.106667pt;}
.yeb{bottom:415.786667pt;}
.y94{bottom:418.426667pt;}
.yfd{bottom:420.346667pt;}
.y26{bottom:420.506667pt;}
.y109{bottom:424.746667pt;}
.y1f8{bottom:424.853333pt;}
.y63{bottom:429.146667pt;}
.y20d{bottom:429.173333pt;}
.y1c5{bottom:429.226667pt;}
.y216{bottom:429.626667pt;}
.y1a9{bottom:430.186667pt;}
.y112{bottom:431.626667pt;}
.y7e{bottom:435.386667pt;}
.y17d{bottom:435.946667pt;}
.ya0{bottom:437.226667pt;}
.y45{bottom:440.426667pt;}
.y148{bottom:441.626667pt;}
.y1e1{bottom:441.733333pt;}
.y16a{bottom:443.226667pt;}
.yea{bottom:443.386667pt;}
.y18f{bottom:444.266667pt;}
.y212{bottom:445.306667pt;}
.y25{bottom:445.786667pt;}
.y93{bottom:446.026667pt;}
.y13b{bottom:447.946667pt;}
.y222{bottom:452.346667pt;}
.y1d8{bottom:452.373333pt;}
.y62{bottom:456.746667pt;}
.y1c4{bottom:456.826667pt;}
.yfc{bottom:458.586667pt;}
.y111{bottom:459.226667pt;}
.y8{bottom:460.426667pt;}
.y7d{bottom:462.986667pt;}
.y1f7{bottom:463.093333pt;}
.y128{bottom:464.826667pt;}
.y20c{bottom:467.413333pt;}
.y1e0{bottom:469.333333pt;}
.y24{bottom:471.066667pt;}
.y92{bottom:473.626667pt;}
.y215{bottom:473.706667pt;}
.y17c{bottom:474.213333pt;}
.y9f{bottom:475.546667pt;}
.y44{bottom:476.426667pt;}
.yce{bottom:477.306667pt;}
.y147{bottom:479.946667pt;}
.y1d7{bottom:479.973333pt;}
.y169{bottom:480.426667pt;}
.ye9{bottom:481.626667pt;}
.y18e{bottom:482.506667pt;}
.y61{bottom:484.346667pt;}
.y1a4{bottom:484.746667pt;}
.y13a{bottom:486.186667pt;}
.y7c{bottom:490.586667pt;}
.y1f6{bottom:490.693333pt;}
.y168{bottom:494.746667pt;}
.y20b{bottom:495.013333pt;}
.y1c3{bottom:495.093333pt;}
.y23{bottom:496.346667pt;}
.yfb{bottom:496.826667pt;}
.y110{bottom:497.466667pt;}
.y91{bottom:501.226667pt;}
.y43{bottom:501.706667pt;}
.y127{bottom:503.146667pt;}
.y146{bottom:507.546667pt;}
.y1df{bottom:507.573333pt;}
.y7{bottom:507.866667pt;}
.ye8{bottom:509.226667pt;}
.y60{bottom:511.946667pt;}
.y214{bottom:511.973333pt;}
.y17b{bottom:512.453333pt;}
.y9e{bottom:513.786667pt;}
.yc6{bottom:518.186667pt;}
.y1d6{bottom:518.213333pt;}
.y18d{bottom:520.746667pt;}
.y22{bottom:521.706667pt;}
.y12f{bottom:522.586667pt;}
.y20a{bottom:522.613333pt;}
.y1c2{bottom:522.693333pt;}
.y10f{bottom:525.066667pt;}
.y42{bottom:526.986667pt;}
.y7b{bottom:528.826667pt;}
.y1f5{bottom:528.933333pt;}
.y126{bottom:530.746667pt;}
.yfa{bottom:535.146667pt;}
.ye7{bottom:536.826667pt;}
.y5f{bottom:539.546667pt;}
.y213{bottom:539.573333pt;}
.y9d{bottom:541.386667pt;}
.y221{bottom:545.786667pt;}
.y1d5{bottom:545.813333pt;}
.y21{bottom:546.986667pt;}
.y12e{bottom:550.186667pt;}
.y17a{bottom:550.773333pt;}
.y41{bottom:552.266667pt;}
.y6{bottom:555.306667pt;}
.y90{bottom:556.426667pt;}
.y125{bottom:558.346667pt;}
.y18c{bottom:559.066667pt;}
.y1c1{bottom:560.933333pt;}
.y145{bottom:562.746667pt;}
.y10e{bottom:563.386667pt;}
.y5e{bottom:567.146667pt;}
.y1f4{bottom:567.173333pt;}
.y139{bottom:568.986667pt;}
.y20{bottom:572.266667pt;}
.yf9{bottom:573.386667pt;}
.y1d4{bottom:573.413333pt;}
.ye6{bottom:575.173333pt;}
.y40{bottom:577.653333pt;}
.y108{bottom:577.813333pt;}
.y9c{bottom:579.653333pt;}
.yc5{bottom:584.053333pt;}
.y1c0{bottom:588.533333pt;}
.y179{bottom:589.013333pt;}
.y10d{bottom:591.013333pt;}
.y5d{bottom:594.773333pt;}
.y124{bottom:596.613333pt;}
.y18b{bottom:597.306667pt;}
.y1f{bottom:597.573333pt;}
.y209{bottom:599.173333pt;}
.yf8{bottom:601.013333pt;}
.ye5{bottom:602.773333pt;}
.y5{bottom:602.853333pt;}
.y3f{bottom:602.933333pt;}
.y7a{bottom:605.413333pt;}
.y138{bottom:607.253333pt;}
.yc4{bottom:611.653333pt;}
.y1d3{bottom:611.733333pt;}
.y9b{bottom:617.973333pt;}
.y10c{bottom:618.613333pt;}
.y162{bottom:621.973333pt;}
.y8f{bottom:622.373333pt;}
.y1e{bottom:623.093333pt;}
.y1bf{bottom:626.773333pt;}
.y3e{bottom:628.213333pt;}
.y1de{bottom:628.613333pt;}
.ye4{bottom:630.373333pt;}
.y5c{bottom:633.013333pt;}
.y1f3{bottom:633.093333pt;}
.y123{bottom:634.853333pt;}
.y18a{bottom:635.546667pt;}
.y208{bottom:637.413333pt;}
.yc3{bottom:639.253333pt;}
.y79{bottom:643.653333pt;}
.y137{bottom:645.493333pt;}
.y4{bottom:645.653333pt;}
.y1d{bottom:648.773333pt;}
.y8e{bottom:649.973333pt;}
.y10b{bottom:653.413333pt;}
.y3d{bottom:653.493333pt;}
.y1be{bottom:654.373333pt;}
.y9a{bottom:656.213333pt;}
.y5b{bottom:660.613333pt;}
.y122{bottom:662.453333pt;}
.yc2{bottom:666.853333pt;}
.ye3{bottom:668.613333pt;}
.y78{bottom:671.253333pt;}
.y1f2{bottom:671.333333pt;}
.y136{bottom:673.093333pt;}
.y189{bottom:673.893333pt;}
.y1c{bottom:674.053333pt;}
.y207{bottom:675.733333pt;}
.y8d{bottom:677.493333pt;}
.y3c{bottom:678.773333pt;}
.y5a{bottom:688.213333pt;}
.y1bd{bottom:692.693333pt;}
.y99{bottom:694.453333pt;}
.ye2{bottom:696.213333pt;}
.y77{bottom:698.853333pt;}
.y1b{bottom:699.253333pt;}
.y121{bottom:700.693333pt;}
.y206{bottom:703.333333pt;}
.yab{bottom:705.093333pt;}
.y1f1{bottom:709.573333pt;}
.y188{bottom:712.133333pt;}
.y3b{bottom:714.773333pt;}
.y59{bottom:715.813333pt;}
.y98{bottom:722.053333pt;}
.y1a{bottom:724.933333pt;}
.y176{bottom:725.653333pt;}
.y76{bottom:726.453333pt;}
.y135{bottom:728.293333pt;}
.y1bc{bottom:730.933333pt;}
.yc1{bottom:732.693333pt;}
.ye1{bottom:734.453333pt;}
.y120{bottom:739.013333pt;}
.y58{bottom:743.413333pt;}
.y1f0{bottom:747.893333pt;}
.y144{bottom:749.653333pt;}
.y19{bottom:750.213333pt;}
.y3a{bottom:750.773333pt;}
.yba{bottom:754.053333pt;}
.y134{bottom:755.893333pt;}
.y1bb{bottom:758.533333pt;}
.y97{bottom:760.293333pt;}
.ye0{bottom:762.053333pt;}
.y75{bottom:764.693333pt;}
.y11f{bottom:766.613333pt;}
.y57{bottom:771.013333pt;}
.y18{bottom:775.493333pt;}
.y39{bottom:776.053333pt;}
.ydf{bottom:777.653333pt;}
.y8c{bottom:781.653333pt;}
.y1d2{bottom:781.733333pt;}
.y133{bottom:783.493333pt;}
.y1ef{bottom:786.133333pt;}
.y107{bottom:787.893333pt;}
.y1dd{bottom:787.973333pt;}
.y74{bottom:792.293333pt;}
.y11e{bottom:794.213333pt;}
.y1ba{bottom:796.773333pt;}
.y205{bottom:796.800000pt;}
.y56{bottom:798.613333pt;}
.y17{bottom:800.773333pt;}
.y38{bottom:801.333333pt;}
.y8b{bottom:809.253333pt;}
.y175{bottom:815.493333pt;}
.y73{bottom:819.893333pt;}
.y1d1{bottom:820.000000pt;}
.y132{bottom:821.813333pt;}
.y1ee{bottom:824.400000pt;}
.y16{bottom:826.053333pt;}
.y55{bottom:826.213333pt;}
.y1dc{bottom:826.240000pt;}
.y37{bottom:826.613333pt;}
.y11d{bottom:832.453333pt;}
.y1b9{bottom:835.093333pt;}
.y8a{bottom:836.853333pt;}
.y72{bottom:847.493333pt;}
.y1d0{bottom:847.600000pt;}
.y15{bottom:851.413333pt;}
.y36{bottom:851.893333pt;}
.y54{bottom:853.813333pt;}
.y1db{bottom:853.840000pt;}
.y19e{bottom:857.413333pt;}
.y131{bottom:860.053333pt;}
.ydd{bottom:861.173333pt;}
.y89{bottom:864.453333pt;}
.y11c{bottom:870.693333pt;}
.y1b8{bottom:873.360000pt;}
.y71{bottom:875.093333pt;}
.y1cf{bottom:875.200000pt;}
.y15b{bottom:875.573333pt;}
.y14{bottom:876.693333pt;}
.y35{bottom:877.253333pt;}
.y53{bottom:881.413333pt;}
.y88{bottom:892.053333pt;}
.y130{bottom:898.293333pt;}
.y1b7{bottom:900.960000pt;}
.y13{bottom:901.973333pt;}
.y34{bottom:902.533333pt;}
.y70{bottom:902.693333pt;}
.y106{bottom:909.013333pt;}
.y3{bottom:913.253333pt;}
.y52{bottom:919.653333pt;}
.y12{bottom:927.253333pt;}
.y33{bottom:927.813333pt;}
.y6f{bottom:930.293333pt;}
.y105{bottom:936.613333pt;}
.y51{bottom:947.253333pt;}
.y11{bottom:952.560000pt;}
.y32{bottom:953.120000pt;}
.y6e{bottom:957.920000pt;}
.y2{bottom:960.720000pt;}
.ydc{bottom:972.240000pt;}
.y50{bottom:974.880000pt;}
.y10{bottom:978.160000pt;}
.y31{bottom:978.480000pt;}
.y6d{bottom:985.520000pt;}
.y1ec{bottom:989.200000pt;}
.y1{bottom:1008.160000pt;}
.y4f{bottom:1013.120000pt;}
.yf{bottom:1014.400000pt;}
.h11{height:25.280000pt;}
.h1b{height:38.240000pt;}
.h16{height:38.320000pt;}
.ha{height:55.200000pt;}
.h9{height:57.375000pt;}
.h6{height:57.473437pt;}
.h5{height:58.245469pt;}
.h3{height:59.017500pt;}
.h4{height:60.190452pt;}
.h10{height:62.781250pt;}
.h8{height:62.812500pt;}
.h22{height:63.656250pt;}
.hb{height:64.500000pt;}
.h7{height:65.781915pt;}
.hf{height:82.800000pt;}
.h2{height:86.107500pt;}
.he{height:110.426667pt;}
.h15{height:126.586667pt;}
.hc{height:137.920000pt;}
.hd{height:138.000000pt;}
.h13{height:151.866667pt;}
.h19{height:170.026667pt;}
.h12{height:177.066667pt;}
.h1c{height:229.626667pt;}
.h14{height:252.960000pt;}
.h1a{height:372.026667pt;}
.h21{height:582.133333pt;}
.h17{height:603.973333pt;}
.h18{height:727.093333pt;}
.h20{height:839.360000pt;}
.h1f{height:868.800000pt;}
.h1e{height:890.160000pt;}
.h1d{height:915.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:64.240000pt;}
.w9{width:96.480000pt;}
.w8{width:96.506667pt;}
.w7{width:100.000000pt;}
.wa{width:103.466667pt;}
.w3{width:188.080000pt;}
.w4{width:188.106667pt;}
.w5{width:188.186667pt;}
.wc{width:282.506667pt;}
.wd{width:311.226667pt;}
.wb{width:565.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x2{left:113.466655pt;}
.x1{left:137.466655pt;}
.x3{left:161.466655pt;}
.xb{left:179.066667pt;}
.x4{left:185.466655pt;}
.xc{left:279.786667pt;}
.x9{left:302.826667pt;}
.x6{left:349.493322pt;}
.xd{left:376.933333pt;}
.x7{left:389.493322pt;}
.x5{left:393.253322pt;}
.x11{left:397.333333pt;}
.xe{left:474.053333pt;}
.xa{left:491.573333pt;}
.xf{left:578.160000pt;}
.x10{left:675.280000pt;}
}




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