
    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_b73f02091ce52624595ebbd1.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_f3e4e8572e039aa41f759b92.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f31d6a4c7cab31ada9795a5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d190e14228b4276a4d10674f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a79c1ca4a2dc6c7631ea7bc0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005859;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_164ad5cf444288ecd4a1e205.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_a2984c81b4786cd15b669bae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6490d54ffe82af29eb0cbc82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_152f4925dcfaf10fe41ac784.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9b720a71078510b745bc4957.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_78115ddb130e56102bd7206d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.800781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bc0caea4c603bcb40a104f19.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cbe1eb553bb4591785e1b0f7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f72b1e2acae68d51ad10ab60.woff2')format("woff");}.fff{font-family:fff;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_96e658dcc02fae1413715df0.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.023040px;}
.lsf{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.192000px;}
.ls13{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.379920px;}
.lse{letter-spacing:2.286000px;}
.lsc{letter-spacing:6.588000px;}
.lsa{letter-spacing:25.308000px;}
.ls8{letter-spacing:28.062720px;}
.ls15{letter-spacing:52.668000px;}
.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;}
}
.wsa{word-spacing:-54.000000px;}
.wsd{word-spacing:-19.457280px;}
.ws7{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.860000px;}
.wse{word-spacing:-13.824000px;}
.ws0{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.374000px;}
.ws9{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.420000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._28{margin-left:-13.920000px;}
._2d{margin-left:-6.894000px;}
._21{margin-left:-5.238000px;}
._a{margin-left:-4.234080px;}
._4{margin-left:-2.726880px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._3{width:2.903040px;}
._5{width:4.422240px;}
._7{width:5.971008px;}
._6{width:7.561392px;}
._14{width:8.684880px;}
._8{width:9.866640px;}
._9{width:11.109840px;}
._c{width:12.474000px;}
._b{width:14.811840px;}
._1c{width:16.099680px;}
._16{width:17.226000px;}
._1a{width:18.438480px;}
._13{width:20.279520px;}
._12{width:21.600000px;}
._1f{width:22.961520px;}
._1e{width:24.084000px;}
._f{width:25.596000px;}
._1d{width:27.144000px;}
._d{width:28.458000px;}
._19{width:30.323520px;}
._e{width:31.698000px;}
._20{width:33.210000px;}
._22{width:34.265520px;}
._1b{width:35.532000px;}
._23{width:36.604320px;}
._29{width:37.663680px;}
._24{width:39.258000px;}
._2c{width:40.654320px;}
._18{width:41.904000px;}
._17{width:43.038000px;}
._11{width:46.632000px;}
._10{width:47.765520px;}
._15{width:51.786000px;}
._27{width:54.486000px;}
._2e{width:57.780000px;}
._25{width:63.342000px;}
._26{width:64.389840px;}
._2b{width:74.471280px;}
._2a{width:76.115520px;}
._2f{width:83.592000px;}
._30{width:84.983520px;}
._31{width:105.869520px;}
._32{width:107.136000px;}
._2{width:2934.060000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc6{color:rgb(35,31,32);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.y13{bottom:-12.855000px;}
.y3b{bottom:-6.660000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y21{bottom:6.990000px;}
.yfb{bottom:7.380000px;}
.y102{bottom:7.560000px;}
.yc4{bottom:9.720000px;}
.ye4{bottom:9.900000px;}
.yc8{bottom:10.080000px;}
.y1b{bottom:10.155000px;}
.ycd{bottom:10.260000px;}
.y12{bottom:11.265000px;}
.ye3{bottom:14.580000px;}
.y105{bottom:16.380000px;}
.yfc{bottom:18.180000px;}
.yc5{bottom:18.540000px;}
.ycb{bottom:18.900000px;}
.y109{bottom:20.700000px;}
.y103{bottom:20.880000px;}
.y10a{bottom:21.060000px;}
.y104{bottom:21.240000px;}
.y108{bottom:21.780000px;}
.y101{bottom:21.960000px;}
.yfe{bottom:22.140000px;}
.y8{bottom:22.500000px;}
.yff{bottom:22.680000px;}
.y106{bottom:23.760000px;}
.yc6{bottom:27.540000px;}
.yca{bottom:27.900000px;}
.ye7{bottom:28.080000px;}
.yc1{bottom:32.400000px;}
.yc2{bottom:32.760000px;}
.y7{bottom:41.040000px;}
.yf9{bottom:46.080000px;}
.ye1{bottom:46.260000px;}
.yf8{bottom:46.800000px;}
.yfd{bottom:48.600000px;}
.y6{bottom:56.880000px;}
.y38{bottom:61.920000px;}
.y16{bottom:73.725000px;}
.y37{bottom:81.720000px;}
.y159{bottom:83.700000px;}
.y90{bottom:86.220000px;}
.y186{bottom:93.600000px;}
.y12b{bottom:95.400000px;}
.yeb{bottom:99.900000px;}
.y158{bottom:101.700000px;}
.y185{bottom:111.420000px;}
.y8f{bottom:113.040000px;}
.y12a{bottom:113.220000px;}
.y23{bottom:118.620000px;}
.y157{bottom:119.520000px;}
.y184{bottom:129.240000px;}
.y34{bottom:130.350000px;}
.y8e{bottom:130.860000px;}
.y129{bottom:131.040000px;}
.y3a{bottom:131.760000px;}
.y156{bottom:137.340000px;}
.yf{bottom:145.230000px;}
.y183{bottom:147.060000px;}
.y8d{bottom:148.680000px;}
.y128{bottom:148.860000px;}
.yea{bottom:149.760000px;}
.y33{bottom:150.150000px;}
.y155{bottom:155.160000px;}
.y39{bottom:160.740000px;}
.y182{bottom:164.880000px;}
.y8c{bottom:166.500000px;}
.y127{bottom:166.680000px;}
.y32{bottom:170.130000px;}
.y154{bottom:172.980000px;}
.y181{bottom:182.880000px;}
.y126{bottom:184.140000px;}
.y8b{bottom:184.500000px;}
.y31{bottom:189.930000px;}
.y153{bottom:190.800000px;}
.ydf{bottom:194.040000px;}
.y36{bottom:200.340000px;}
.y180{bottom:200.700000px;}
.y125{bottom:202.140000px;}
.y8a{bottom:202.320000px;}
.y152{bottom:208.830000px;}
.y30{bottom:209.730000px;}
.y17f{bottom:218.550000px;}
.y89{bottom:220.170000px;}
.yde{bottom:220.890000px;}
.y151{bottom:226.650000px;}
.y35{bottom:229.170000px;}
.y124{bottom:229.350000px;}
.y2f{bottom:229.530000px;}
.y17e{bottom:236.370000px;}
.y88{bottom:237.990000px;}
.ydd{bottom:238.710000px;}
.y150{bottom:244.470000px;}
.y123{bottom:247.170000px;}
.y17d{bottom:254.190000px;}
.y87{bottom:255.810000px;}
.ydc{bottom:256.170000px;}
.y14f{bottom:262.290000px;}
.y122{bottom:264.990000px;}
.y17c{bottom:272.190000px;}
.y86{bottom:273.630000px;}
.y2c{bottom:278.310000px;}
.y14e{bottom:280.110000px;}
.y6b{bottom:280.470000px;}
.y121{bottom:282.810000px;}
.ydb{bottom:283.530000px;}
.y17b{bottom:290.010000px;}
.y85{bottom:291.630000px;}
.ye9{bottom:296.490000px;}
.y2b{bottom:298.110000px;}
.y120{bottom:300.810000px;}
.y6a{bottom:307.650000px;}
.y17a{bottom:307.830000px;}
.y84{bottom:309.450000px;}
.y14d{bottom:315.930000px;}
.y2a{bottom:317.910000px;}
.y11f{bottom:318.630000px;}
.ye8{bottom:324.030000px;}
.y69{bottom:325.470000px;}
.y179{bottom:325.650000px;}
.y83{bottom:327.270000px;}
.y14c{bottom:333.750000px;}
.y11e{bottom:336.450000px;}
.y29{bottom:337.755000px;}
.y68{bottom:343.290000px;}
.y178{bottom:343.470000px;}
.y82{bottom:345.090000px;}
.y2e{bottom:348.150000px;}
.ye6{bottom:351.570000px;}
.y11d{bottom:354.270000px;}
.y28{bottom:357.555000px;}
.y67{bottom:361.290000px;}
.y81{bottom:362.910000px;}
.y14b{bottom:369.030000px;}
.y11c{bottom:372.090000px;}
.y2d{bottom:376.950000px;}
.y27{bottom:377.535000px;}
.y66{bottom:379.110000px;}
.y177{bottom:379.290000px;}
.y80{bottom:380.550000px;}
.y14a{bottom:386.850000px;}
.y11b{bottom:389.910000px;}
.y65{bottom:396.930000px;}
.ye5{bottom:397.110000px;}
.y7f{bottom:407.730000px;}
.y11a{bottom:407.910000px;}
.y149{bottom:414.210000px;}
.y64{bottom:414.750000px;}
.y176{bottom:414.930000px;}
.y7e{bottom:425.550000px;}
.y119{bottom:425.730000px;}
.y24{bottom:426.135000px;}
.y148{bottom:432.030000px;}
.y63{bottom:432.570000px;}
.y175{bottom:432.750000px;}
.ye0{bottom:442.515000px;}
.y7d{bottom:443.415000px;}
.y118{bottom:443.595000px;}
.y147{bottom:449.895000px;}
.y62{bottom:450.435000px;}
.y174{bottom:450.615000px;}
.y7c{bottom:461.235000px;}
.y117{bottom:461.415000px;}
.y146{bottom:467.715000px;}
.y61{bottom:468.435000px;}
.ye2{bottom:470.235000px;}
.y7b{bottom:478.695000px;}
.y116{bottom:479.235000px;}
.y145{bottom:485.535000px;}
.y60{bottom:485.895000px;}
.y173{bottom:486.435000px;}
.y26{bottom:496.155000px;}
.y115{bottom:497.235000px;}
.y144{bottom:503.535000px;}
.y172{bottom:504.255000px;}
.y5f{bottom:506.055000px;}
.y114{bottom:515.055000px;}
.y143{bottom:521.355000px;}
.y171{bottom:522.075000px;}
.y7a{bottom:523.875000px;}
.yda{bottom:524.055000px;}
.y25{bottom:524.955000px;}
.y113{bottom:532.875000px;}
.y5e{bottom:538.815000px;}
.y142{bottom:539.175000px;}
.y170{bottom:539.895000px;}
.y79{bottom:541.695000px;}
.y22{bottom:544.755000px;}
.y112{bottom:550.695000px;}
.yb4{bottom:551.055000px;}
.y5d{bottom:556.635000px;}
.y141{bottom:556.995000px;}
.y16f{bottom:557.715000px;}
.y78{bottom:559.515000px;}
.y111{bottom:568.515000px;}
.yb3{bottom:568.875000px;}
.y5c{bottom:574.635000px;}
.y140{bottom:574.815000px;}
.y16e{bottom:575.715000px;}
.y77{bottom:577.335000px;}
.y110{bottom:586.335000px;}
.yb2{bottom:586.695000px;}
.yd9{bottom:586.875000px;}
.y5b{bottom:592.455000px;}
.y13f{bottom:592.635000px;}
.y16d{bottom:593.535000px;}
.y76{bottom:595.335000px;}
.y10f{bottom:603.975000px;}
.yb1{bottom:604.515000px;}
.yd8{bottom:604.695000px;}
.y19c{bottom:609.195000px;}
.y5a{bottom:610.275000px;}
.y13e{bottom:610.635000px;}
.y75{bottom:613.155000px;}
.y16c{bottom:613.335000px;}
.y10e{bottom:621.795000px;}
.yb0{bottom:622.335000px;}
.yd7{bottom:622.515000px;}
.y59{bottom:628.095000px;}
.y13d{bottom:628.455000px;}
.yd{bottom:629.175000px;}
.y74{bottom:630.975000px;}
.y19b{bottom:636.375000px;}
.yd6{bottom:640.515000px;}
.yaf{bottom:640.695000px;}
.y10d{bottom:641.955000px;}
.y58{bottom:645.915000px;}
.y16b{bottom:646.095000px;}
.y13c{bottom:646.275000px;}
.y73{bottom:648.795000px;}
.y19a{bottom:654.195000px;}
.y1a{bottom:654.840000px;}
.yd5{bottom:658.335000px;}
.yae{bottom:662.835000px;}
.y57{bottom:663.915000px;}
.y13b{bottom:664.095000px;}
.y72{bottom:666.615000px;}
.y199{bottom:672.015000px;}
.y10c{bottom:674.715000px;}
.yd4{bottom:676.185000px;}
.yad{bottom:680.505000px;}
.y56{bottom:681.765000px;}
.y13a{bottom:681.945000px;}
.y71{bottom:684.465000px;}
.y198{bottom:689.865000px;}
.y10b{bottom:692.565000px;}
.y19{bottom:693.285000px;}
.yd3{bottom:694.005000px;}
.y55{bottom:699.585000px;}
.y16a{bottom:699.765000px;}
.y139{bottom:699.945000px;}
.y70{bottom:702.465000px;}
.yac{bottom:707.685000px;}
.y197{bottom:707.865000px;}
.yd2{bottom:711.465000px;}
.y107{bottom:714.705000px;}
.y54{bottom:717.405000px;}
.y169{bottom:717.585000px;}
.y138{bottom:717.765000px;}
.y6f{bottom:720.285000px;}
.yab{bottom:725.505000px;}
.y196{bottom:725.685000px;}
.y15{bottom:725.940000px;}
.yd1{bottom:729.285000px;}
.y168{bottom:735.405000px;}
.y137{bottom:735.585000px;}
.y6e{bottom:738.105000px;}
.yaa{bottom:743.325000px;}
.y195{bottom:743.505000px;}
.y53{bottom:744.225000px;}
.y18{bottom:746.925000px;}
.y100{bottom:753.045000px;}
.y167{bottom:753.225000px;}
.y136{bottom:753.405000px;}
.y6d{bottom:755.925000px;}
.yd0{bottom:756.645000px;}
.ya9{bottom:761.145000px;}
.y194{bottom:761.325000px;}
.y52{bottom:762.045000px;}
.y166{bottom:771.045000px;}
.y135{bottom:771.225000px;}
.y17{bottom:773.385000px;}
.ycf{bottom:774.465000px;}
.ya8{bottom:779.145000px;}
.y51{bottom:780.045000px;}
.yce{bottom:787.425000px;}
.y134{bottom:789.045000px;}
.yf7{bottom:791.385000px;}
.y193{bottom:797.145000px;}
.y6c{bottom:797.505000px;}
.y50{bottom:797.865000px;}
.ya7{bottom:805.965000px;}
.y165{bottom:806.865000px;}
.ycc{bottom:814.965000px;}
.y4f{bottom:815.685000px;}
.y133{bottom:816.045000px;}
.yc{bottom:817.305000px;}
.ya6{bottom:823.785000px;}
.y164{bottom:824.685000px;}
.yfa{bottom:830.805000px;}
.y192{bottom:832.785000px;}
.y4e{bottom:833.505000px;}
.y132{bottom:833.865000px;}
.y14{bottom:835.845000px;}
.ya5{bottom:841.605000px;}
.y163{bottom:842.505000px;}
.yc9{bottom:842.685000px;}
.y191{bottom:850.605000px;}
.y4d{bottom:851.325000px;}
.y131{bottom:851.685000px;}
.ya4{bottom:859.425000px;}
.yf6{bottom:860.505000px;}
.y162{bottom:862.305000px;}
.y190{bottom:868.425000px;}
.y4c{bottom:869.325000px;}
.y130{bottom:869.505000px;}
.y11{bottom:871.380000px;}
.ya3{bottom:877.245000px;}
.yf5{bottom:878.325000px;}
.y18f{bottom:886.245000px;}
.y12f{bottom:887.325000px;}
.yc7{bottom:888.045000px;}
.ya2{bottom:895.245000px;}
.y4b{bottom:896.145000px;}
.y18e{bottom:904.245000px;}
.yf4{bottom:905.145000px;}
.y10{bottom:906.765000px;}
.ya1{bottom:913.110000px;}
.y4a{bottom:914.010000px;}
.yc0{bottom:915.810000px;}
.y18d{bottom:922.110000px;}
.yf3{bottom:923.190000px;}
.ya0{bottom:930.930000px;}
.y49{bottom:931.830000px;}
.y18c{bottom:939.930000px;}
.yf2{bottom:941.010000px;}
.yb{bottom:941.190000px;}
.ye{bottom:948.060000px;}
.y9f{bottom:948.750000px;}
.y48{bottom:949.650000px;}
.y20{bottom:957.240000px;}
.y18b{bottom:957.750000px;}
.yf1{bottom:958.830000px;}
.yc3{bottom:961.170000px;}
.y9e{bottom:966.570000px;}
.y47{bottom:967.470000px;}
.y18a{bottom:975.570000px;}
.yf0{bottom:976.650000px;}
.y9d{bottom:984.570000px;}
.y46{bottom:985.470000px;}
.y1f{bottom:990.870000px;}
.y189{bottom:993.570000px;}
.ybf{bottom:994.470000px;}
.y9c{bottom:1002.390000px;}
.y45{bottom:1003.290000px;}
.y188{bottom:1011.390000px;}
.ybe{bottom:1012.290000px;}
.yef{bottom:1012.470000px;}
.y1e{bottom:1017.150000px;}
.y9b{bottom:1020.210000px;}
.y12e{bottom:1021.470000px;}
.y187{bottom:1029.210000px;}
.y44{bottom:1030.110000px;}
.yee{bottom:1030.290000px;}
.y161{bottom:1038.030000px;}
.ybd{bottom:1039.110000px;}
.y12d{bottom:1039.290000px;}
.y1d{bottom:1043.610000px;}
.y9a{bottom:1047.030000px;}
.yed{bottom:1047.750000px;}
.y43{bottom:1047.930000px;}
.y160{bottom:1055.850000px;}
.ybc{bottom:1056.930000px;}
.y12c{bottom:1057.110000px;}
.y99{bottom:1064.850000px;}
.y42{bottom:1065.750000px;}
.y1c{bottom:1069.890000px;}
.y15f{bottom:1073.670000px;}
.ybb{bottom:1074.750000px;}
.yec{bottom:1074.930000px;}
.y98{bottom:1082.670000px;}
.y41{bottom:1083.750000px;}
.y15e{bottom:1091.310000px;}
.yba{bottom:1092.750000px;}
.y15c{bottom:1096.890000px;}
.y97{bottom:1100.670000px;}
.y40{bottom:1101.570000px;}
.y15d{bottom:1109.130000px;}
.yb9{bottom:1110.570000px;}
.ya{bottom:1114.350000px;}
.y96{bottom:1118.490000px;}
.y3f{bottom:1119.390000px;}
.y15b{bottom:1124.610000px;}
.yb8{bottom:1128.390000px;}
.y95{bottom:1136.310000px;}
.y3e{bottom:1137.210000px;}
.yb7{bottom:1145.880000px;}
.y15a{bottom:1152.180000px;}
.y94{bottom:1154.160000px;}
.y3d{bottom:1155.060000px;}
.yb6{bottom:1163.700000px;}
.y93{bottom:1171.980000px;}
.y3c{bottom:1174.860000px;}
.yb5{bottom:1183.860000px;}
.y92{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1219.680000px;}
.y91{bottom:1242.540000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h2f{height:23.400000px;}
.h23{height:26.820000px;}
.h25{height:26.856000px;}
.h27{height:27.000000px;}
.h2a{height:35.640000px;}
.h32{height:37.440000px;}
.h31{height:37.620000px;}
.h1d{height:37.705078px;}
.h21{height:38.100586px;}
.h30{height:38.700000px;}
.he{height:40.985156px;}
.h28{height:43.242188px;}
.h13{height:43.302656px;}
.h16{height:43.681992px;}
.h17{height:43.787250px;}
.h24{height:44.640000px;}
.h2b{height:44.676000px;}
.h2c{height:44.820000px;}
.h3{height:48.616875px;}
.h2d{height:49.140000px;}
.h26{height:50.118047px;}
.h20{height:50.273438px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.h1a{height:52.998047px;}
.h1e{height:53.709961px;}
.h1f{height:54.421875px;}
.h33{height:55.291992px;}
.h34{height:55.503491px;}
.h8{height:55.825312px;}
.h1c{height:56.214844px;}
.h15{height:58.621992px;}
.h18{height:58.651172px;}
.h10{height:59.580000px;}
.hf{height:60.372000px;}
.h2e{height:62.820000px;}
.h29{height:63.360000px;}
.hb{height:63.900000px;}
.h6{height:65.010937px;}
.hc{height:66.543750px;}
.h11{height:66.757500px;}
.h22{height:72.180000px;}
.h19{height:78.367500px;}
.h1b{height:80.949375px;}
.ha{height:84.898125px;}
.hd{height:85.680000px;}
.h12{height:132.480000px;}
.h9{height:160.560000px;}
.h14{height:448.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:26.451000px;}
.wa{width:31.665000px;}
.w11{width:34.020000px;}
.w26{width:47.160000px;}
.we{width:51.645000px;}
.wf{width:59.970000px;}
.w27{width:60.651000px;}
.w28{width:60.876000px;}
.w17{width:63.756000px;}
.w16{width:64.620000px;}
.w1a{width:67.320000px;}
.w25{width:67.680000px;}
.w1b{width:68.796000px;}
.w22{width:74.182500px;}
.w1e{width:77.040000px;}
.wd{width:79.365000px;}
.wc{width:79.401000px;}
.w10{width:82.296000px;}
.w9{width:82.785000px;}
.w2{width:85.320000px;}
.w14{width:88.740000px;}
.w20{width:95.220000px;}
.w18{width:101.340000px;}
.w19{width:102.636000px;}
.w15{width:106.416000px;}
.w1d{width:113.436000px;}
.w1c{width:115.956000px;}
.w1f{width:116.496000px;}
.w21{width:146.016000px;}
.w24{width:170.130000px;}
.wb{width:272.580000px;}
.w12{width:325.695000px;}
.w13{width:342.615000px;}
.w7{width:462.600000px;}
.w3{width:470.160000px;}
.w8{width:777.420000px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w6{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.x31{left:5.385000px;}
.x32{left:7.380000px;}
.x2b{left:8.625000px;}
.x48{left:9.750000px;}
.xa{left:10.800000px;}
.x28{left:12.585000px;}
.x47{left:14.040000px;}
.x34{left:15.825000px;}
.x37{left:17.640000px;}
.x40{left:19.620000px;}
.x45{left:22.140000px;}
.x2f{left:23.580000px;}
.x26{left:24.825000px;}
.x2d{left:26.100000px;}
.x3f{left:27.390000px;}
.x54{left:28.620000px;}
.x35{left:29.910000px;}
.x43{left:31.500000px;}
.x4b{left:33.480000px;}
.x46{left:34.554000px;}
.x4a{left:35.640000px;}
.x36{left:37.065000px;}
.x49{left:38.205000px;}
.x33{left:39.585000px;}
.x4c{left:41.076000px;}
.x56{left:46.264500px;}
.x55{left:48.240000px;}
.x52{left:50.040000px;}
.x53{left:51.840000px;}
.x5{left:54.000000px;}
.x18{left:56.340000px;}
.x60{left:57.960000px;}
.x1a{left:60.696000px;}
.x5d{left:63.216000px;}
.x11{left:65.160000px;}
.x17{left:67.140000px;}
.x19{left:69.156000px;}
.x5e{left:70.200000px;}
.x5f{left:71.820000px;}
.xb{left:73.800000px;}
.x1c{left:81.000000px;}
.x1b{left:91.836000px;}
.x2a{left:96.510000px;}
.x1{left:100.080000px;}
.x23{left:108.036000px;}
.x24{left:113.436000px;}
.x3a{left:118.485000px;}
.x57{left:121.176000px;}
.x3c{left:128.205000px;}
.x38{left:136.116000px;}
.x22{left:140.436000px;}
.x58{left:148.536000px;}
.x16{left:158.655000px;}
.x6{left:163.290000px;}
.x39{left:170.850000px;}
.x4d{left:172.290000px;}
.xd{left:208.650000px;}
.x5b{left:209.910000px;}
.xe{left:218.055000px;}
.x15{left:221.760000px;}
.x5c{left:257.790000px;}
.x3d{left:260.310000px;}
.x10{left:262.155000px;}
.x12{left:269.715000px;}
.xf{left:275.835000px;}
.x4e{left:286.455000px;}
.x59{left:319.395000px;}
.x14{left:336.495000px;}
.x7{left:356.655000px;}
.x13{left:362.775000px;}
.xc{left:364.215000px;}
.x3{left:367.920000px;}
.x5a{left:387.795000px;}
.x3e{left:432.795000px;}
.x25{left:458.220000px;}
.x4{left:462.960000px;}
.x1f{left:465.945000px;}
.x4f{left:481.425000px;}
.x1e{left:492.945000px;}
.x3b{left:497.265000px;}
.x20{left:519.945000px;}
.x27{left:541.740000px;}
.x21{left:552.345000px;}
.x29{left:574.320000px;}
.x50{left:577.365000px;}
.x41{left:599.505000px;}
.x2c{left:654.450000px;}
.x51{left:691.530000px;}
.x42{left:703.050000px;}
.x2e{left:734.550000px;}
.x44{left:771.090000px;}
.x30{left:786.930000px;}
.x1d{left:836.100000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.020480pt;}
.lsf{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.170667pt;}
.ls13{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.337707pt;}
.lse{letter-spacing:2.032000pt;}
.lsc{letter-spacing:5.856000pt;}
.lsa{letter-spacing:22.496000pt;}
.ls8{letter-spacing:24.944640pt;}
.ls15{letter-spacing:46.816000pt;}
.wsa{word-spacing:-48.000000pt;}
.wsd{word-spacing:-17.295360pt;}
.ws7{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.288000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.888000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.040000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._28{margin-left:-12.373333pt;}
._2d{margin-left:-6.128000pt;}
._21{margin-left:-4.656000pt;}
._a{margin-left:-3.763627pt;}
._4{margin-left:-2.423893pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._3{width:2.580480pt;}
._5{width:3.930880pt;}
._7{width:5.307563pt;}
._6{width:6.721237pt;}
._14{width:7.719893pt;}
._8{width:8.770347pt;}
._9{width:9.875413pt;}
._c{width:11.088000pt;}
._b{width:13.166080pt;}
._1c{width:14.310827pt;}
._16{width:15.312000pt;}
._1a{width:16.389760pt;}
._13{width:18.026240pt;}
._12{width:19.200000pt;}
._1f{width:20.410240pt;}
._1e{width:21.408000pt;}
._f{width:22.752000pt;}
._1d{width:24.128000pt;}
._d{width:25.296000pt;}
._19{width:26.954240pt;}
._e{width:28.176000pt;}
._20{width:29.520000pt;}
._22{width:30.458240pt;}
._1b{width:31.584000pt;}
._23{width:32.537173pt;}
._29{width:33.478827pt;}
._24{width:34.896000pt;}
._2c{width:36.137173pt;}
._18{width:37.248000pt;}
._17{width:38.256000pt;}
._11{width:41.450667pt;}
._10{width:42.458240pt;}
._15{width:46.032000pt;}
._27{width:48.432000pt;}
._2e{width:51.360000pt;}
._25{width:56.304000pt;}
._26{width:57.235413pt;}
._2b{width:66.196693pt;}
._2a{width:67.658240pt;}
._2f{width:74.304000pt;}
._30{width:75.540907pt;}
._31{width:94.106240pt;}
._32{width:95.232000pt;}
._2{width:2608.053333pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.y13{bottom:-11.426667pt;}
.y3b{bottom:-5.920000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y21{bottom:6.213333pt;}
.yfb{bottom:6.560000pt;}
.y102{bottom:6.720000pt;}
.yc4{bottom:8.640000pt;}
.ye4{bottom:8.800000pt;}
.yc8{bottom:8.960000pt;}
.y1b{bottom:9.026667pt;}
.ycd{bottom:9.120000pt;}
.y12{bottom:10.013333pt;}
.ye3{bottom:12.960000pt;}
.y105{bottom:14.560000pt;}
.yfc{bottom:16.160000pt;}
.yc5{bottom:16.480000pt;}
.ycb{bottom:16.800000pt;}
.y109{bottom:18.400000pt;}
.y103{bottom:18.560000pt;}
.y10a{bottom:18.720000pt;}
.y104{bottom:18.880000pt;}
.y108{bottom:19.360000pt;}
.y101{bottom:19.520000pt;}
.yfe{bottom:19.680000pt;}
.y8{bottom:20.000000pt;}
.yff{bottom:20.160000pt;}
.y106{bottom:21.120000pt;}
.yc6{bottom:24.480000pt;}
.yca{bottom:24.800000pt;}
.ye7{bottom:24.960000pt;}
.yc1{bottom:28.800000pt;}
.yc2{bottom:29.120000pt;}
.y7{bottom:36.480000pt;}
.yf9{bottom:40.960000pt;}
.ye1{bottom:41.120000pt;}
.yf8{bottom:41.600000pt;}
.yfd{bottom:43.200000pt;}
.y6{bottom:50.560000pt;}
.y38{bottom:55.040000pt;}
.y16{bottom:65.533333pt;}
.y37{bottom:72.640000pt;}
.y159{bottom:74.400000pt;}
.y90{bottom:76.640000pt;}
.y186{bottom:83.200000pt;}
.y12b{bottom:84.800000pt;}
.yeb{bottom:88.800000pt;}
.y158{bottom:90.400000pt;}
.y185{bottom:99.040000pt;}
.y8f{bottom:100.480000pt;}
.y12a{bottom:100.640000pt;}
.y23{bottom:105.440000pt;}
.y157{bottom:106.240000pt;}
.y184{bottom:114.880000pt;}
.y34{bottom:115.866667pt;}
.y8e{bottom:116.320000pt;}
.y129{bottom:116.480000pt;}
.y3a{bottom:117.120000pt;}
.y156{bottom:122.080000pt;}
.yf{bottom:129.093333pt;}
.y183{bottom:130.720000pt;}
.y8d{bottom:132.160000pt;}
.y128{bottom:132.320000pt;}
.yea{bottom:133.120000pt;}
.y33{bottom:133.466667pt;}
.y155{bottom:137.920000pt;}
.y39{bottom:142.880000pt;}
.y182{bottom:146.560000pt;}
.y8c{bottom:148.000000pt;}
.y127{bottom:148.160000pt;}
.y32{bottom:151.226667pt;}
.y154{bottom:153.760000pt;}
.y181{bottom:162.560000pt;}
.y126{bottom:163.680000pt;}
.y8b{bottom:164.000000pt;}
.y31{bottom:168.826667pt;}
.y153{bottom:169.600000pt;}
.ydf{bottom:172.480000pt;}
.y36{bottom:178.080000pt;}
.y180{bottom:178.400000pt;}
.y125{bottom:179.680000pt;}
.y8a{bottom:179.840000pt;}
.y152{bottom:185.626667pt;}
.y30{bottom:186.426667pt;}
.y17f{bottom:194.266667pt;}
.y89{bottom:195.706667pt;}
.yde{bottom:196.346667pt;}
.y151{bottom:201.466667pt;}
.y35{bottom:203.706667pt;}
.y124{bottom:203.866667pt;}
.y2f{bottom:204.026667pt;}
.y17e{bottom:210.106667pt;}
.y88{bottom:211.546667pt;}
.ydd{bottom:212.186667pt;}
.y150{bottom:217.306667pt;}
.y123{bottom:219.706667pt;}
.y17d{bottom:225.946667pt;}
.y87{bottom:227.386667pt;}
.ydc{bottom:227.706667pt;}
.y14f{bottom:233.146667pt;}
.y122{bottom:235.546667pt;}
.y17c{bottom:241.946667pt;}
.y86{bottom:243.226667pt;}
.y2c{bottom:247.386667pt;}
.y14e{bottom:248.986667pt;}
.y6b{bottom:249.306667pt;}
.y121{bottom:251.386667pt;}
.ydb{bottom:252.026667pt;}
.y17b{bottom:257.786667pt;}
.y85{bottom:259.226667pt;}
.ye9{bottom:263.546667pt;}
.y2b{bottom:264.986667pt;}
.y120{bottom:267.386667pt;}
.y6a{bottom:273.466667pt;}
.y17a{bottom:273.626667pt;}
.y84{bottom:275.066667pt;}
.y14d{bottom:280.826667pt;}
.y2a{bottom:282.586667pt;}
.y11f{bottom:283.226667pt;}
.ye8{bottom:288.026667pt;}
.y69{bottom:289.306667pt;}
.y179{bottom:289.466667pt;}
.y83{bottom:290.906667pt;}
.y14c{bottom:296.666667pt;}
.y11e{bottom:299.066667pt;}
.y29{bottom:300.226667pt;}
.y68{bottom:305.146667pt;}
.y178{bottom:305.306667pt;}
.y82{bottom:306.746667pt;}
.y2e{bottom:309.466667pt;}
.ye6{bottom:312.506667pt;}
.y11d{bottom:314.906667pt;}
.y28{bottom:317.826667pt;}
.y67{bottom:321.146667pt;}
.y81{bottom:322.586667pt;}
.y14b{bottom:328.026667pt;}
.y11c{bottom:330.746667pt;}
.y2d{bottom:335.066667pt;}
.y27{bottom:335.586667pt;}
.y66{bottom:336.986667pt;}
.y177{bottom:337.146667pt;}
.y80{bottom:338.266667pt;}
.y14a{bottom:343.866667pt;}
.y11b{bottom:346.586667pt;}
.y65{bottom:352.826667pt;}
.ye5{bottom:352.986667pt;}
.y7f{bottom:362.426667pt;}
.y11a{bottom:362.586667pt;}
.y149{bottom:368.186667pt;}
.y64{bottom:368.666667pt;}
.y176{bottom:368.826667pt;}
.y7e{bottom:378.266667pt;}
.y119{bottom:378.426667pt;}
.y24{bottom:378.786667pt;}
.y148{bottom:384.026667pt;}
.y63{bottom:384.506667pt;}
.y175{bottom:384.666667pt;}
.ye0{bottom:393.346667pt;}
.y7d{bottom:394.146667pt;}
.y118{bottom:394.306667pt;}
.y147{bottom:399.906667pt;}
.y62{bottom:400.386667pt;}
.y174{bottom:400.546667pt;}
.y7c{bottom:409.986667pt;}
.y117{bottom:410.146667pt;}
.y146{bottom:415.746667pt;}
.y61{bottom:416.386667pt;}
.ye2{bottom:417.986667pt;}
.y7b{bottom:425.506667pt;}
.y116{bottom:425.986667pt;}
.y145{bottom:431.586667pt;}
.y60{bottom:431.906667pt;}
.y173{bottom:432.386667pt;}
.y26{bottom:441.026667pt;}
.y115{bottom:441.986667pt;}
.y144{bottom:447.586667pt;}
.y172{bottom:448.226667pt;}
.y5f{bottom:449.826667pt;}
.y114{bottom:457.826667pt;}
.y143{bottom:463.426667pt;}
.y171{bottom:464.066667pt;}
.y7a{bottom:465.666667pt;}
.yda{bottom:465.826667pt;}
.y25{bottom:466.626667pt;}
.y113{bottom:473.666667pt;}
.y5e{bottom:478.946667pt;}
.y142{bottom:479.266667pt;}
.y170{bottom:479.906667pt;}
.y79{bottom:481.506667pt;}
.y22{bottom:484.226667pt;}
.y112{bottom:489.506667pt;}
.yb4{bottom:489.826667pt;}
.y5d{bottom:494.786667pt;}
.y141{bottom:495.106667pt;}
.y16f{bottom:495.746667pt;}
.y78{bottom:497.346667pt;}
.y111{bottom:505.346667pt;}
.yb3{bottom:505.666667pt;}
.y5c{bottom:510.786667pt;}
.y140{bottom:510.946667pt;}
.y16e{bottom:511.746667pt;}
.y77{bottom:513.186667pt;}
.y110{bottom:521.186667pt;}
.yb2{bottom:521.506667pt;}
.yd9{bottom:521.666667pt;}
.y5b{bottom:526.626667pt;}
.y13f{bottom:526.786667pt;}
.y16d{bottom:527.586667pt;}
.y76{bottom:529.186667pt;}
.y10f{bottom:536.866667pt;}
.yb1{bottom:537.346667pt;}
.yd8{bottom:537.506667pt;}
.y19c{bottom:541.506667pt;}
.y5a{bottom:542.466667pt;}
.y13e{bottom:542.786667pt;}
.y75{bottom:545.026667pt;}
.y16c{bottom:545.186667pt;}
.y10e{bottom:552.706667pt;}
.yb0{bottom:553.186667pt;}
.yd7{bottom:553.346667pt;}
.y59{bottom:558.306667pt;}
.y13d{bottom:558.626667pt;}
.yd{bottom:559.266667pt;}
.y74{bottom:560.866667pt;}
.y19b{bottom:565.666667pt;}
.yd6{bottom:569.346667pt;}
.yaf{bottom:569.506667pt;}
.y10d{bottom:570.626667pt;}
.y58{bottom:574.146667pt;}
.y16b{bottom:574.306667pt;}
.y13c{bottom:574.466667pt;}
.y73{bottom:576.706667pt;}
.y19a{bottom:581.506667pt;}
.y1a{bottom:582.080000pt;}
.yd5{bottom:585.186667pt;}
.yae{bottom:589.186667pt;}
.y57{bottom:590.146667pt;}
.y13b{bottom:590.306667pt;}
.y72{bottom:592.546667pt;}
.y199{bottom:597.346667pt;}
.y10c{bottom:599.746667pt;}
.yd4{bottom:601.053333pt;}
.yad{bottom:604.893333pt;}
.y56{bottom:606.013333pt;}
.y13a{bottom:606.173333pt;}
.y71{bottom:608.413333pt;}
.y198{bottom:613.213333pt;}
.y10b{bottom:615.613333pt;}
.y19{bottom:616.253333pt;}
.yd3{bottom:616.893333pt;}
.y55{bottom:621.853333pt;}
.y16a{bottom:622.013333pt;}
.y139{bottom:622.173333pt;}
.y70{bottom:624.413333pt;}
.yac{bottom:629.053333pt;}
.y197{bottom:629.213333pt;}
.yd2{bottom:632.413333pt;}
.y107{bottom:635.293333pt;}
.y54{bottom:637.693333pt;}
.y169{bottom:637.853333pt;}
.y138{bottom:638.013333pt;}
.y6f{bottom:640.253333pt;}
.yab{bottom:644.893333pt;}
.y196{bottom:645.053333pt;}
.y15{bottom:645.280000pt;}
.yd1{bottom:648.253333pt;}
.y168{bottom:653.693333pt;}
.y137{bottom:653.853333pt;}
.y6e{bottom:656.093333pt;}
.yaa{bottom:660.733333pt;}
.y195{bottom:660.893333pt;}
.y53{bottom:661.533333pt;}
.y18{bottom:663.933333pt;}
.y100{bottom:669.373333pt;}
.y167{bottom:669.533333pt;}
.y136{bottom:669.693333pt;}
.y6d{bottom:671.933333pt;}
.yd0{bottom:672.573333pt;}
.ya9{bottom:676.573333pt;}
.y194{bottom:676.733333pt;}
.y52{bottom:677.373333pt;}
.y166{bottom:685.373333pt;}
.y135{bottom:685.533333pt;}
.y17{bottom:687.453333pt;}
.ycf{bottom:688.413333pt;}
.ya8{bottom:692.573333pt;}
.y51{bottom:693.373333pt;}
.yce{bottom:699.933333pt;}
.y134{bottom:701.373333pt;}
.yf7{bottom:703.453333pt;}
.y193{bottom:708.573333pt;}
.y6c{bottom:708.893333pt;}
.y50{bottom:709.213333pt;}
.ya7{bottom:716.413333pt;}
.y165{bottom:717.213333pt;}
.ycc{bottom:724.413333pt;}
.y4f{bottom:725.053333pt;}
.y133{bottom:725.373333pt;}
.yc{bottom:726.493333pt;}
.ya6{bottom:732.253333pt;}
.y164{bottom:733.053333pt;}
.yfa{bottom:738.493333pt;}
.y192{bottom:740.253333pt;}
.y4e{bottom:740.893333pt;}
.y132{bottom:741.213333pt;}
.y14{bottom:742.973333pt;}
.ya5{bottom:748.093333pt;}
.y163{bottom:748.893333pt;}
.yc9{bottom:749.053333pt;}
.y191{bottom:756.093333pt;}
.y4d{bottom:756.733333pt;}
.y131{bottom:757.053333pt;}
.ya4{bottom:763.933333pt;}
.yf6{bottom:764.893333pt;}
.y162{bottom:766.493333pt;}
.y190{bottom:771.933333pt;}
.y4c{bottom:772.733333pt;}
.y130{bottom:772.893333pt;}
.y11{bottom:774.560000pt;}
.ya3{bottom:779.773333pt;}
.yf5{bottom:780.733333pt;}
.y18f{bottom:787.773333pt;}
.y12f{bottom:788.733333pt;}
.yc7{bottom:789.373333pt;}
.ya2{bottom:795.773333pt;}
.y4b{bottom:796.573333pt;}
.y18e{bottom:803.773333pt;}
.yf4{bottom:804.573333pt;}
.y10{bottom:806.013333pt;}
.ya1{bottom:811.653333pt;}
.y4a{bottom:812.453333pt;}
.yc0{bottom:814.053333pt;}
.y18d{bottom:819.653333pt;}
.yf3{bottom:820.613333pt;}
.ya0{bottom:827.493333pt;}
.y49{bottom:828.293333pt;}
.y18c{bottom:835.493333pt;}
.yf2{bottom:836.453333pt;}
.yb{bottom:836.613333pt;}
.ye{bottom:842.720000pt;}
.y9f{bottom:843.333333pt;}
.y48{bottom:844.133333pt;}
.y20{bottom:850.880000pt;}
.y18b{bottom:851.333333pt;}
.yf1{bottom:852.293333pt;}
.yc3{bottom:854.373333pt;}
.y9e{bottom:859.173333pt;}
.y47{bottom:859.973333pt;}
.y18a{bottom:867.173333pt;}
.yf0{bottom:868.133333pt;}
.y9d{bottom:875.173333pt;}
.y46{bottom:875.973333pt;}
.y1f{bottom:880.773333pt;}
.y189{bottom:883.173333pt;}
.ybf{bottom:883.973333pt;}
.y9c{bottom:891.013333pt;}
.y45{bottom:891.813333pt;}
.y188{bottom:899.013333pt;}
.ybe{bottom:899.813333pt;}
.yef{bottom:899.973333pt;}
.y1e{bottom:904.133333pt;}
.y9b{bottom:906.853333pt;}
.y12e{bottom:907.973333pt;}
.y187{bottom:914.853333pt;}
.y44{bottom:915.653333pt;}
.yee{bottom:915.813333pt;}
.y161{bottom:922.693333pt;}
.ybd{bottom:923.653333pt;}
.y12d{bottom:923.813333pt;}
.y1d{bottom:927.653333pt;}
.y9a{bottom:930.693333pt;}
.yed{bottom:931.333333pt;}
.y43{bottom:931.493333pt;}
.y160{bottom:938.533333pt;}
.ybc{bottom:939.493333pt;}
.y12c{bottom:939.653333pt;}
.y99{bottom:946.533333pt;}
.y42{bottom:947.333333pt;}
.y1c{bottom:951.013333pt;}
.y15f{bottom:954.373333pt;}
.ybb{bottom:955.333333pt;}
.yec{bottom:955.493333pt;}
.y98{bottom:962.373333pt;}
.y41{bottom:963.333333pt;}
.y15e{bottom:970.053333pt;}
.yba{bottom:971.333333pt;}
.y15c{bottom:975.013333pt;}
.y97{bottom:978.373333pt;}
.y40{bottom:979.173333pt;}
.y15d{bottom:985.893333pt;}
.yb9{bottom:987.173333pt;}
.ya{bottom:990.533333pt;}
.y96{bottom:994.213333pt;}
.y3f{bottom:995.013333pt;}
.y15b{bottom:999.653333pt;}
.yb8{bottom:1003.013333pt;}
.y95{bottom:1010.053333pt;}
.y3e{bottom:1010.853333pt;}
.yb7{bottom:1018.560000pt;}
.y15a{bottom:1024.160000pt;}
.y94{bottom:1025.920000pt;}
.y3d{bottom:1026.720000pt;}
.yb6{bottom:1034.400000pt;}
.y93{bottom:1041.760000pt;}
.y3c{bottom:1044.320000pt;}
.yb5{bottom:1052.320000pt;}
.y92{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1084.160000pt;}
.y91{bottom:1104.480000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h2f{height:20.800000pt;}
.h23{height:23.840000pt;}
.h25{height:23.872000pt;}
.h27{height:24.000000pt;}
.h2a{height:31.680000pt;}
.h32{height:33.280000pt;}
.h31{height:33.440000pt;}
.h1d{height:33.515625pt;}
.h21{height:33.867188pt;}
.h30{height:34.400000pt;}
.he{height:36.431250pt;}
.h28{height:38.437500pt;}
.h13{height:38.491250pt;}
.h16{height:38.828437pt;}
.h17{height:38.922000pt;}
.h24{height:39.680000pt;}
.h2b{height:39.712000pt;}
.h2c{height:39.840000pt;}
.h3{height:43.215000pt;}
.h2d{height:43.680000pt;}
.h26{height:44.549375pt;}
.h20{height:44.687500pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h1e{height:47.742188pt;}
.h1f{height:48.375000pt;}
.h33{height:49.148438pt;}
.h34{height:49.336436pt;}
.h8{height:49.622500pt;}
.h1c{height:49.968750pt;}
.h15{height:52.108438pt;}
.h18{height:52.134375pt;}
.h10{height:52.960000pt;}
.hf{height:53.664000pt;}
.h2e{height:55.840000pt;}
.h29{height:56.320000pt;}
.hb{height:56.800000pt;}
.h6{height:57.787500pt;}
.hc{height:59.150000pt;}
.h11{height:59.340000pt;}
.h22{height:64.160000pt;}
.h19{height:69.660000pt;}
.h1b{height:71.955000pt;}
.ha{height:75.465000pt;}
.hd{height:76.160000pt;}
.h12{height:117.760000pt;}
.h9{height:142.720000pt;}
.h14{height:399.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:23.512000pt;}
.wa{width:28.146667pt;}
.w11{width:30.240000pt;}
.w26{width:41.920000pt;}
.we{width:45.906667pt;}
.wf{width:53.306667pt;}
.w27{width:53.912000pt;}
.w28{width:54.112000pt;}
.w17{width:56.672000pt;}
.w16{width:57.440000pt;}
.w1a{width:59.840000pt;}
.w25{width:60.160000pt;}
.w1b{width:61.152000pt;}
.w22{width:65.940000pt;}
.w1e{width:68.480000pt;}
.wd{width:70.546667pt;}
.wc{width:70.578667pt;}
.w10{width:73.152000pt;}
.w9{width:73.586667pt;}
.w2{width:75.840000pt;}
.w14{width:78.880000pt;}
.w20{width:84.640000pt;}
.w18{width:90.080000pt;}
.w19{width:91.232000pt;}
.w15{width:94.592000pt;}
.w1d{width:100.832000pt;}
.w1c{width:103.072000pt;}
.w1f{width:103.552000pt;}
.w21{width:129.792000pt;}
.w24{width:151.226667pt;}
.wb{width:242.293333pt;}
.w12{width:289.506667pt;}
.w13{width:304.546667pt;}
.w7{width:411.200000pt;}
.w3{width:417.920000pt;}
.w8{width:691.040000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w6{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.x31{left:4.786667pt;}
.x32{left:6.560000pt;}
.x2b{left:7.666667pt;}
.x48{left:8.666667pt;}
.xa{left:9.600000pt;}
.x28{left:11.186667pt;}
.x47{left:12.480000pt;}
.x34{left:14.066667pt;}
.x37{left:15.680000pt;}
.x40{left:17.440000pt;}
.x45{left:19.680000pt;}
.x2f{left:20.960000pt;}
.x26{left:22.066667pt;}
.x2d{left:23.200000pt;}
.x3f{left:24.346667pt;}
.x54{left:25.440000pt;}
.x35{left:26.586667pt;}
.x43{left:28.000000pt;}
.x4b{left:29.760000pt;}
.x46{left:30.714667pt;}
.x4a{left:31.680000pt;}
.x36{left:32.946667pt;}
.x49{left:33.960000pt;}
.x33{left:35.186667pt;}
.x4c{left:36.512000pt;}
.x56{left:41.124000pt;}
.x55{left:42.880000pt;}
.x52{left:44.480000pt;}
.x53{left:46.080000pt;}
.x5{left:48.000000pt;}
.x18{left:50.080000pt;}
.x60{left:51.520000pt;}
.x1a{left:53.952000pt;}
.x5d{left:56.192000pt;}
.x11{left:57.920000pt;}
.x17{left:59.680000pt;}
.x19{left:61.472000pt;}
.x5e{left:62.400000pt;}
.x5f{left:63.840000pt;}
.xb{left:65.600000pt;}
.x1c{left:72.000000pt;}
.x1b{left:81.632000pt;}
.x2a{left:85.786667pt;}
.x1{left:88.960000pt;}
.x23{left:96.032000pt;}
.x24{left:100.832000pt;}
.x3a{left:105.320000pt;}
.x57{left:107.712000pt;}
.x3c{left:113.960000pt;}
.x38{left:120.992000pt;}
.x22{left:124.832000pt;}
.x58{left:132.032000pt;}
.x16{left:141.026667pt;}
.x6{left:145.146667pt;}
.x39{left:151.866667pt;}
.x4d{left:153.146667pt;}
.xd{left:185.466667pt;}
.x5b{left:186.586667pt;}
.xe{left:193.826667pt;}
.x15{left:197.120000pt;}
.x5c{left:229.146667pt;}
.x3d{left:231.386667pt;}
.x10{left:233.026667pt;}
.x12{left:239.746667pt;}
.xf{left:245.186667pt;}
.x4e{left:254.626667pt;}
.x59{left:283.906667pt;}
.x14{left:299.106667pt;}
.x7{left:317.026667pt;}
.x13{left:322.466667pt;}
.xc{left:323.746667pt;}
.x3{left:327.040000pt;}
.x5a{left:344.706667pt;}
.x3e{left:384.706667pt;}
.x25{left:407.306667pt;}
.x4{left:411.520000pt;}
.x1f{left:414.173333pt;}
.x4f{left:427.933333pt;}
.x1e{left:438.173333pt;}
.x3b{left:442.013333pt;}
.x20{left:462.173333pt;}
.x27{left:481.546667pt;}
.x21{left:490.973333pt;}
.x29{left:510.506667pt;}
.x50{left:513.213333pt;}
.x41{left:532.893333pt;}
.x2c{left:581.733333pt;}
.x51{left:614.693333pt;}
.x42{left:624.933333pt;}
.x2e{left:652.933333pt;}
.x44{left:685.413333pt;}
.x30{left:699.493333pt;}
.x1d{left:743.200000pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
}




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