
    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_21f4d708e11ee6a6c24aee13.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_3177055f72f2e661d15c297d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c5384abfc2dcde6653bb6f6a.woff')format("woff");}.ff3{font-family:ff3;line-height:2.979492;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_c7b2043d3f19ea31cad90bff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_0a52ce32f01055267e87d5e3.woff')format("woff");}.ff5{font-family:ff5;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;}
.m1{transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);-ms-transform:matrix(0.238106,0.000000,-0.076194,0.238106,0,0);-webkit-transform:matrix(0.238106,0.000000,-0.076194,0.238106,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);}
.m2{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);}
.vc{vertical-align:-62.634000px;}
.v4{vertical-align:-38.886000px;}
.v13{vertical-align:-36.000000px;}
.v11{vertical-align:-34.560000px;}
.vf{vertical-align:-28.800000px;}
.v6{vertical-align:-26.640000px;}
.v5{vertical-align:-23.434937px;}
.v12{vertical-align:-20.880000px;}
.vb{vertical-align:-18.714000px;}
.v3{vertical-align:-15.881580px;}
.va{vertical-align:-8.646000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.806000px;}
.v2{vertical-align:13.680000px;}
.v1{vertical-align:15.120000px;}
.ve{vertical-align:18.726000px;}
.vd{vertical-align:26.640000px;}
.v9{vertical-align:27.970731px;}
.v14{vertical-align:38.886000px;}
.v7{vertical-align:46.800000px;}
.v10{vertical-align:56.880000px;}
.ls1c{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.438000px;}
.lse{letter-spacing:1.419900px;}
.ls31{letter-spacing:2.037000px;}
.lsd{letter-spacing:2.139900px;}
.ls6{letter-spacing:2.364000px;}
.ls12{letter-spacing:2.398800px;}
.ls21{letter-spacing:2.751000px;}
.ls0{letter-spacing:2.757000px;}
.ls1b{letter-spacing:2.763000px;}
.ls19{letter-spacing:3.084000px;}
.lsf{letter-spacing:3.280261px;}
.ls32{letter-spacing:4.197000px;}
.ls1a{letter-spacing:4.558800px;}
.ls10{letter-spacing:4.686987px;}
.ls13{letter-spacing:4.689003px;}
.ls3{letter-spacing:5.006509px;}
.lsc{letter-spacing:5.019900px;}
.lsb{letter-spacing:5.291760px;}
.ls4{letter-spacing:5.315195px;}
.ls5{letter-spacing:6.970004px;}
.ls20{letter-spacing:13.659900px;}
.ls1{letter-spacing:17.877000px;}
.ls2d{letter-spacing:18.000000px;}
.ls16{letter-spacing:18.360000px;}
.ls2e{letter-spacing:18.924000px;}
.ls8{letter-spacing:20.037000px;}
.ls2{letter-spacing:20.757000px;}
.ls25{letter-spacing:22.923000px;}
.ls27{letter-spacing:22.968000px;}
.ls37{letter-spacing:23.637000px;}
.ls2c{letter-spacing:24.357000px;}
.ls38{letter-spacing:29.016000px;}
.ls2a{letter-spacing:29.730000px;}
.ls29{letter-spacing:29.736000px;}
.ls2b{letter-spacing:29.742000px;}
.ls28{letter-spacing:30.117000px;}
.ls1d{letter-spacing:30.601492px;}
.ls26{letter-spacing:32.277000px;}
.ls39{letter-spacing:32.283000px;}
.ls1e{letter-spacing:32.997000px;}
.ls18{letter-spacing:34.200000px;}
.ls35{letter-spacing:34.437000px;}
.ls33{letter-spacing:35.151000px;}
.ls36{letter-spacing:35.157000px;}
.ls34{letter-spacing:35.163000px;}
.ls9{letter-spacing:35.985900px;}
.ls30{letter-spacing:48.444000px;}
.ls3b{letter-spacing:48.831000px;}
.ls22{letter-spacing:50.277000px;}
.ls2f{letter-spacing:50.997000px;}
.ls11{letter-spacing:67.653900px;}
.ls23{letter-spacing:84.312000px;}
.ls14{letter-spacing:96.712800px;}
.ls7{letter-spacing:113.739900px;}
.lsa{letter-spacing:121.653900px;}
.ls1f{letter-spacing:131.046000px;}
.ls15{letter-spacing:594.864000px;}
.ls24{letter-spacing:647.280000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-55.944000px;}
.ws1b{word-spacing:-49.742544px;}
.ws5{word-spacing:-47.376000px;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws2{word-spacing:-38.870100px;}
.ws6{word-spacing:-38.801700px;}
.ws7{word-spacing:-38.792700px;}
.ws34{word-spacing:-38.660400px;}
.ws31{word-spacing:-38.655000px;}
.ws43{word-spacing:-38.649600px;}
.ws3f{word-spacing:-38.635200px;}
.ws3e{word-spacing:-38.588400px;}
.ws30{word-spacing:-38.582100px;}
.ws10{word-spacing:-38.427600px;}
.ws1f{word-spacing:-38.425200px;}
.ws24{word-spacing:-38.162400px;}
.ws4b{word-spacing:-38.160000px;}
.ws38{word-spacing:-38.159100px;}
.ws37{word-spacing:-38.156400px;}
.ws3b{word-spacing:-38.151900px;}
.ws28{word-spacing:-38.145600px;}
.ws4d{word-spacing:-38.142000px;}
.ws25{word-spacing:-38.140200px;}
.ws4{word-spacing:-38.066400px;}
.ws29{word-spacing:-37.948200px;}
.wsc{word-spacing:-37.944000px;}
.ws4e{word-spacing:-37.943100px;}
.ws44{word-spacing:-37.942200px;}
.ws22{word-spacing:-37.941300px;}
.ws1a{word-spacing:-37.940400px;}
.ws2a{word-spacing:-37.938600px;}
.ws9{word-spacing:-37.935900px;}
.ws45{word-spacing:-37.935000px;}
.ws8{word-spacing:-37.934100px;}
.ws13{word-spacing:-37.933800px;}
.ws36{word-spacing:-37.927200px;}
.ws1e{word-spacing:-37.715400px;}
.ws3a{word-spacing:-37.438200px;}
.ws39{word-spacing:-37.427400px;}
.ws27{word-spacing:-37.425600px;}
.ws41{word-spacing:-37.224000px;}
.wsa{word-spacing:-37.221000px;}
.ws40{word-spacing:-37.215000px;}
.ws2b{word-spacing:-37.000800px;}
.ws33{word-spacing:-36.993600px;}
.wsf{word-spacing:-36.991800px;}
.ws42{word-spacing:-36.991200px;}
.ws2c{word-spacing:-36.701400px;}
.ws23{word-spacing:-35.234302px;}
.ws48{word-spacing:-34.988400px;}
.ws49{word-spacing:-34.346400px;}
.ws11{word-spacing:-33.831900px;}
.ws12{word-spacing:-33.615000px;}
.ws1d{word-spacing:-33.558000px;}
.ws3{word-spacing:-33.547800px;}
.ws46{word-spacing:-32.823000px;}
.ws47{word-spacing:-32.184000px;}
.ws3c{word-spacing:-31.669200px;}
.ws3d{word-spacing:-31.466400px;}
.ws4a{word-spacing:-30.744000px;}
.ws17{word-spacing:-29.300400px;}
.ws19{word-spacing:-28.798200px;}
.ws20{word-spacing:-27.438600px;}
.wsd{word-spacing:-24.245100px;}
.wse{word-spacing:-23.324400px;}
.ws2e{word-spacing:-16.556400px;}
.ws16{word-spacing:-14.760000px;}
.ws26{word-spacing:-11.729100px;}
.ws15{word-spacing:-4.809600px;}
.ws35{word-spacing:-1.512000px;}
.ws2f{word-spacing:0.000000px;}
.ws32{word-spacing:0.648000px;}
.ws14{word-spacing:2.880600px;}
.ws18{word-spacing:5.040600px;}
.ws4c{word-spacing:8.136900px;}
.ws2d{word-spacing:13.608000px;}
.ws1c{word-spacing:60.264900px;}
.ws21{word-spacing:156.862200px;}
._f{margin-left:-7.611000px;}
._0{margin-left:-1.110600px;}
._4{width:1.040700px;}
._b{width:2.820000px;}
._9{width:4.754268px;}
._a{width:16.056000px;}
._1{width:18.144000px;}
._5{width:19.224000px;}
._d{width:20.901000px;}
._14{width:22.278000px;}
._6{width:23.319900px;}
._12{width:25.505700px;}
._17{width:26.640000px;}
._8{width:27.928800px;}
._10{width:29.016000px;}
._c{width:30.030000px;}
._13{width:31.680000px;}
._2{width:36.560100px;}
._e{width:40.744800px;}
._15{width:43.058100px;}
._7{width:52.755000px;}
._16{width:54.000000px;}
._11{width:83.520000px;}
._3{width:287.934000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.700000px;}
.fs4{font-size:51.000000px;}
.fs5{font-size:53.547571px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:75.596571px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y92{bottom:105.375000px;}
.y91{bottom:105.915000px;}
.y62{bottom:107.175000px;}
.y5f{bottom:107.355000px;}
.yf6{bottom:107.715000px;}
.y90{bottom:109.515000px;}
.yf4{bottom:111.315000px;}
.y5e{bottom:111.496500px;}
.y93{bottom:116.715000px;}
.yf5{bottom:117.975000px;}
.y61{bottom:118.515000px;}
.y60{bottom:118.696500px;}
.y8e{bottom:142.996500px;}
.y8c{bottom:143.355000px;}
.yf2{bottom:144.975000px;}
.yf0{bottom:145.155000px;}
.yef{bottom:145.696500px;}
.y8b{bottom:146.955000px;}
.y8d{bottom:147.136500px;}
.y5d{bottom:148.936500px;}
.yed{bottom:149.296500px;}
.y8f{bottom:154.155000px;}
.yee{bottom:155.775000px;}
.yf3{bottom:156.315000px;}
.yf1{bottom:156.496500px;}
.y5c{bottom:166.215000px;}
.y5b{bottom:169.815000px;}
.y89{bottom:180.436500px;}
.y88{bottom:180.975000px;}
.y87{bottom:184.575000px;}
.yec{bottom:186.915000px;}
.y8a{bottom:191.775000px;}
.y59{bottom:204.915000px;}
.y58{bottom:210.136500px;}
.y85{bottom:217.875000px;}
.y84{bottom:218.415000px;}
.yeb{bottom:219.315000px;}
.y5a{bottom:219.855000px;}
.y83{bottom:222.015000px;}
.yea{bottom:222.915000px;}
.y86{bottom:229.215000px;}
.y56{bottom:237.315000px;}
.y53{bottom:242.536500px;}
.y54{bottom:242.715000px;}
.y55{bottom:249.196500px;}
.y57{bottom:252.255000px;}
.ye9{bottom:255.496500px;}
.y82{bottom:255.675000px;}
.ye7{bottom:258.915000px;}
.ye8{bottom:259.096500px;}
.y81{bottom:259.275000px;}
.y4c{bottom:281.236500px;}
.y4e{bottom:281.955000px;}
.y4d{bottom:285.915000px;}
.y52{bottom:287.715000px;}
.y4a{bottom:287.896500px;}
.ye5{bottom:291.315000px;}
.y7e{bottom:291.675000px;}
.ye4{bottom:291.855000px;}
.y4b{bottom:294.375000px;}
.y50{bottom:294.555000px;}
.ye3{bottom:295.455000px;}
.y80{bottom:297.795000px;}
.y4f{bottom:298.155000px;}
.y7f{bottom:301.396500px;}
.ye6{bottom:302.475000px;}
.y51{bottom:303.555000px;}
.y7d{bottom:309.496500px;}
.y7c{bottom:313.096500px;}
.ye2{bottom:329.115000px;}
.y45{bottom:330.915000px;}
.ye1{bottom:332.715000px;}
.y47{bottom:333.975000px;}
.y46{bottom:337.396500px;}
.y44{bottom:337.575000px;}
.y49{bottom:339.736500px;}
.y48{bottom:342.255000px;}
.y7b{bottom:343.336500px;}
.ye0{bottom:365.115000px;}
.ydf{bottom:368.715000px;}
.y40{bottom:369.615000px;}
.y3d{bottom:369.975000px;}
.y3c{bottom:375.555000px;}
.y7a{bottom:377.175000px;}
.y79{bottom:380.775000px;}
.y42{bottom:382.215000px;}
.y3f{bottom:382.396500px;}
.y3e{bottom:384.915000px;}
.y41{bottom:385.815000px;}
.y43{bottom:391.215000px;}
.ydc{bottom:400.936500px;}
.yde{bottom:407.236500px;}
.ydd{bottom:410.836500px;}
.ydb{bottom:418.755000px;}
.y3b{bottom:420.015000px;}
.yda{bottom:422.355000px;}
.yd9{bottom:448.996500px;}
.yd8{bottom:452.596500px;}
.y3a{bottom:458.175000px;}
.yd7{bottom:486.436500px;}
.yd5{bottom:489.855000px;}
.yd6{bottom:490.036500px;}
.y37{bottom:490.396500px;}
.y36{bottom:492.375000px;}
.y35{bottom:495.975000px;}
.y39{bottom:502.636500px;}
.y38{bottom:505.336500px;}
.yd4{bottom:527.655000px;}
.yd1{bottom:527.836500px;}
.yd0{bottom:528.375000px;}
.y32{bottom:528.915000px;}
.y31{bottom:530.715000px;}
.ycf{bottom:531.975000px;}
.y30{bottom:534.315000px;}
.yd3{bottom:538.996500px;}
.yd2{bottom:539.175000px;}
.y34{bottom:541.155000px;}
.y33{bottom:543.675000px;}
.ycc{bottom:567.075000px;}
.ycb{bottom:567.615000px;}
.y2f{bottom:571.215000px;}
.yce{bottom:571.396500px;}
.ycd{bottom:578.415000px;}
.y2e{bottom:603.075000px;}
.y2d{bottom:605.775000px;}
.yca{bottom:608.655000px;}
.y29{bottom:614.775000px;}
.y2a{bottom:621.436500px;}
.y2c{bottom:622.695000px;}
.y2b{bottom:625.396500px;}
.yc5{bottom:625.575000px;}
.yc7{bottom:626.115000px;}
.yc4{bottom:629.715000px;}
.yc8{bottom:629.896500px;}
.yc9{bottom:636.375000px;}
.yc6{bottom:636.915000px;}
.y28{bottom:652.755000px;}
.y27{bottom:656.355000px;}
.yc2{bottom:663.195000px;}
.yc1{bottom:663.736500px;}
.yc0{bottom:667.336500px;}
.yc3{bottom:674.355000px;}
.y25{bottom:688.575000px;}
.y24{bottom:691.275000px;}
.y26{bottom:696.675000px;}
.y21{bottom:700.275000px;}
.ybf{bottom:704.415000px;}
.y23{bottom:708.195000px;}
.y22{bottom:710.715000px;}
.ybd{bottom:736.275000px;}
.ybb{bottom:736.815000px;}
.yba{bottom:740.415000px;}
.ybc{bottom:740.596500px;}
.y1d{bottom:744.015000px;}
.y20{bottom:744.195000px;}
.y1e{bottom:744.375000px;}
.ybe{bottom:747.615000px;}
.y1f{bottom:750.855000px;}
.y1a{bottom:770.475000px;}
.y1b{bottom:770.655000px;}
.yb8{bottom:773.895000px;}
.yb7{bottom:774.436500px;}
.yb6{bottom:778.036500px;}
.y1c{bottom:780.195000px;}
.yb9{bottom:785.236500px;}
.y16{bottom:794.596500px;}
.y19{bottom:796.215000px;}
.y15{bottom:796.395000px;}
.y18{bottom:799.815000px;}
.y14{bottom:799.996500px;}
.y17{bottom:809.536500px;}
.yb5{bottom:815.115000px;}
.y10b{bottom:830.775000px;}
.yb3{bottom:835.815000px;}
.yb4{bottom:835.996500px;}
.y13{bottom:839.775000px;}
.y10a{bottom:851.475000px;}
.y12{bottom:860.475000px;}
.yb1{bottom:868.215000px;}
.y109{bottom:872.175000px;}
.yb0{bottom:872.355000px;}
.yb2{bottom:879.555000px;}
.y11{bottom:892.875000px;}
.yf{bottom:896.295000px;}
.y10{bottom:896.475000px;}
.yaf{bottom:909.436500px;}
.y108{bottom:913.575000px;}
.ye{bottom:917.355000px;}
.y78{bottom:928.875000px;}
.y76{bottom:932.475000px;}
.y77{bottom:932.655000px;}
.y107{bottom:934.275000px;}
.yd{bottom:938.055000px;}
.yad{bottom:941.475000px;}
.ya8{bottom:941.655000px;}
.yac{bottom:942.015000px;}
.yae{bottom:942.195000px;}
.yab{bottom:945.615000px;}
.ya7{bottom:945.795000px;}
.ya9{bottom:952.815000px;}
.yaa{bottom:953.175000px;}
.y106{bottom:954.975000px;}
.y74{bottom:968.655000px;}
.yc{bottom:973.695000px;}
.y105{bottom:975.675000px;}
.y75{bottom:977.115000px;}
.ya6{bottom:986.655000px;}
.y71{bottom:1006.995000px;}
.yb{bottom:1009.515000px;}
.y104{bottom:1011.315000px;}
.y73{bottom:1015.095000px;}
.y72{bottom:1018.695000px;}
.ya4{bottom:1020.136500px;}
.ya0{bottom:1020.315000px;}
.ya5{bottom:1020.675000px;}
.y9f{bottom:1024.275000px;}
.ya2{bottom:1024.455000px;}
.y70{bottom:1029.136500px;}
.ya3{bottom:1030.936500px;}
.ya1{bottom:1031.475000px;}
.y6b{bottom:1044.255000px;}
.ya{bottom:1045.155000px;}
.y6a{bottom:1046.775000px;}
.y103{bottom:1047.136500px;}
.y6f{bottom:1051.636500px;}
.y6c{bottom:1051.815000px;}
.y68{bottom:1052.175000px;}
.y67{bottom:1055.775000px;}
.y6e{bottom:1055.955000px;}
.y9d{bottom:1058.115000px;}
.y9c{bottom:1062.255000px;}
.y6d{bottom:1062.975000px;}
.y69{bottom:1066.395000px;}
.y102{bottom:1069.275000px;}
.y9e{bottom:1069.455000px;}
.y9{bottom:1080.795000px;}
.y100{bottom:1090.515000px;}
.yfe{bottom:1094.655000px;}
.yff{bottom:1094.836500px;}
.y9a{bottom:1095.555000px;}
.y98{bottom:1095.736500px;}
.y97{bottom:1096.275000px;}
.y66{bottom:1099.695000px;}
.y95{bottom:1099.875000px;}
.y101{bottom:1101.855000px;}
.y96{bottom:1106.355000px;}
.y9b{bottom:1106.895000px;}
.y99{bottom:1107.075000px;}
.y8{bottom:1116.615000px;}
.yf8{bottom:1128.315000px;}
.yfc{bottom:1128.675000px;}
.yfd{bottom:1128.855000px;}
.y64{bottom:1131.736500px;}
.yfb{bottom:1132.275000px;}
.yf7{bottom:1132.455000px;}
.y7{bottom:1133.715000px;}
.y63{bottom:1135.875000px;}
.y6{bottom:1137.315000px;}
.y94{bottom:1137.495000px;}
.yf9{bottom:1139.475000px;}
.yfa{bottom:1139.836500px;}
.y65{bottom:1143.075000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h3{height:48.796875px;}
.h8{height:50.027344px;}
.h2{height:57.133008px;}
.hd{height:96.349805px;}
.h17{height:99.123891px;}
.h18{height:103.725375px;}
.h9{height:117.837891px;}
.hb{height:123.724174px;}
.h13{height:127.911891px;}
.h11{height:128.643891px;}
.h1b{height:137.559375px;}
.h24{height:138.273375px;}
.h21{height:138.279375px;}
.h1c{height:138.285375px;}
.h12{height:138.993375px;}
.h10{height:139.713375px;}
.hc{height:139.719375px;}
.h19{height:140.433375px;}
.h16{height:140.445375px;}
.h15{height:157.713375px;}
.ha{height:166.359375px;}
.h1a{height:167.073375px;}
.h25{height:167.085375px;}
.h6{height:174.669422px;}
.h1d{height:175.425387px;}
.h22{height:180.039375px;}
.hf{height:180.759375px;}
.h23{height:181.473375px;}
.h7{height:181.479375px;}
.h20{height:181.485375px;}
.h14{height:202.640153px;}
.h1f{height:205.245375px;}
.h26{height:205.959375px;}
.h1e{height:212.439375px;}
.he{height:213.159375px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:127.620000px;}
.x35{left:131.400000px;}
.x71{left:133.020000px;}
.xac{left:135.360000px;}
.xba{left:136.620000px;}
.x2d{left:137.880000px;}
.xa{left:138.960000px;}
.xae{left:142.200000px;}
.xb5{left:144.000000px;}
.x3{left:145.620000px;}
.x36{left:146.880000px;}
.x9c{left:150.660000px;}
.x6d{left:153.900000px;}
.x5{left:154.980000px;}
.x9d{left:157.500000px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.x6b{left:166.680000px;}
.x2e{left:168.660000px;}
.x72{left:174.060000px;}
.x37{left:175.500000px;}
.xad{left:176.760000px;}
.xdc{left:178.020000px;}
.x14{left:181.620000px;}
.x38{left:183.238500px;}
.x6c{left:184.320000px;}
.x2f{left:185.938500px;}
.xbb{left:187.380000px;}
.x30{left:191.520000px;}
.x9e{left:193.500000px;}
.x45{left:195.120000px;}
.x15{left:196.738500px;}
.x39{left:198.360000px;}
.x73{left:200.700000px;}
.x10{left:203.938500px;}
.x3a{left:205.020000px;}
.xb6{left:206.100000px;}
.xbc{left:209.880000px;}
.x11{left:212.760000px;}
.x9f{left:213.838500px;}
.x3b{left:215.280000px;}
.x16{left:218.160000px;}
.x6e{left:221.760000px;}
.x4d{left:224.460000px;}
.x17{left:225.720000px;}
.xa6{left:226.800000px;}
.x6f{left:229.500000px;}
.x74{left:230.938500px;}
.x18{left:232.738500px;}
.xbd{left:234.720000px;}
.x19{left:236.700000px;}
.x75{left:237.960000px;}
.xaf{left:239.038500px;}
.xa0{left:240.838500px;}
.x70{left:243.360000px;}
.x1a{left:244.438500px;}
.x12{left:245.880000px;}
.x76{left:246.960000px;}
.x1b{left:251.820000px;}
.x13{left:254.520000px;}
.x1c{left:258.838500px;}
.x40{left:260.460000px;}
.xa7{left:265.680000px;}
.x2a{left:266.760000px;}
.x3c{left:268.920000px;}
.x41{left:270.000000px;}
.x1d{left:271.080000px;}
.x3d{left:274.138500px;}
.x42{left:275.220000px;}
.x2b{left:277.020000px;}
.xa1{left:279.720000px;}
.x7e{left:281.700000px;}
.x8c{left:283.500000px;}
.xdf{left:285.480000px;}
.x8b{left:287.820000px;}
.x7f{left:290.520000px;}
.xb7{left:292.860000px;}
.x1e{left:294.120000px;}
.x43{left:295.560000px;}
.xbe{left:297.180000px;}
.x3e{left:298.260000px;}
.x77{left:299.700000px;}
.x44{left:300.960000px;}
.x3f{left:303.838500px;}
.x78{left:305.100000px;}
.xd9{left:312.300000px;}
.xa2{left:313.738500px;}
.x2c{left:318.600000px;}
.xa8{left:322.920000px;}
.xa3{left:325.438500px;}
.xcc{left:326.700000px;}
.xa9{left:334.620000px;}
.x8d{left:335.700000px;}
.xb8{left:337.680000px;}
.xd3{left:343.260000px;}
.x8e{left:344.520000px;}
.x4e{left:346.320000px;}
.x8f{left:352.260000px;}
.x4f{left:354.960000px;}
.x31{left:356.760000px;}
.xe0{left:358.738500px;}
.x50{left:361.800000px;}
.x32{left:364.500000px;}
.xe1{left:367.738500px;}
.x51{left:368.820000px;}
.xd4{left:373.500000px;}
.xbf{left:375.480000px;}
.x52{left:377.460000px;}
.xc0{left:380.880000px;}
.x53{left:384.300000px;}
.xe7{left:386.100000px;}
.x33{left:390.780000px;}
.x90{left:392.038500px;}
.xa4{left:396.720000px;}
.x34{left:398.520000px;}
.x91{left:400.680000px;}
.xb2{left:401.938500px;}
.x54{left:404.638500px;}
.xde{left:406.438500px;}
.xa5{left:408.420000px;}
.xcd{left:409.680000px;}
.xb3{left:410.760000px;}
.xc{left:412.200000px;}
.x55{left:413.638500px;}
.xb9{left:415.800000px;}
.xc5{left:417.600000px;}
.x56{left:418.860000px;}
.x80{left:420.300000px;}
.xd5{left:421.560000px;}
.x85{left:422.638500px;}
.xe5{left:423.720000px;}
.x57{left:425.160000px;}
.xd0{left:426.600000px;}
.x86{left:428.038500px;}
.x81{left:429.120000px;}
.x58{left:432.000000px;}
.xc6{left:433.080000px;}
.x46{left:434.520000px;}
.xd1{left:435.600000px;}
.xc1{left:439.200000px;}
.x87{left:441.538500px;}
.x47{left:443.520000px;}
.xc4{left:444.600000px;}
.x59{left:447.838500px;}
.xda{left:449.100000px;}
.x82{left:450.180000px;}
.x5a{left:453.060000px;}
.x92{left:454.680000px;}
.x79{left:456.480000px;}
.xb4{left:457.560000px;}
.x5b{left:459.360000px;}
.x93{left:460.800000px;}
.x7a{left:461.880000px;}
.xce{left:463.320000px;}
.x48{left:464.760000px;}
.x5c{left:466.200000px;}
.xc8{left:468.180000px;}
.x4{left:470.025000px;}
.x88{left:471.420000px;}
.x49{left:473.400000px;}
.x83{left:475.380000px;}
.x94{left:477.538500px;}
.x4a{left:480.600000px;}
.x5d{left:482.038500px;}
.xd2{left:483.838500px;}
.xdd{left:485.280000px;}
.x89{left:487.800000px;}
.xe6{left:489.238500px;}
.x29{left:490.500000px;}
.x5e{left:491.580000px;}
.x4b{left:493.380000px;}
.xcf{left:495.000000px;}
.x5f{left:497.160000px;}
.xb0{left:498.238500px;}
.xd6{left:500.760000px;}
.xe{left:502.020000px;}
.x60{left:503.280000px;}
.x84{left:505.260000px;}
.xb1{left:506.880000px;}
.x4c{left:509.400000px;}
.xc9{left:513.180000px;}
.xdb{left:515.700000px;}
.x8a{left:517.680000px;}
.xe2{left:520.200000px;}
.xca{left:522.180000px;}
.xc7{left:524.160000px;}
.x61{left:525.960000px;}
.xd7{left:527.760000px;}
.xe3{left:529.200000px;}
.x62{left:531.360000px;}
.xc2{left:533.700000px;}
.x63{left:537.660000px;}
.xd8{left:539.460000px;}
.xe8{left:540.900000px;}
.xc3{left:542.700000px;}
.x64{left:544.500000px;}
.xaa{left:548.100000px;}
.xcb{left:551.520000px;}
.xe4{left:553.500000px;}
.xab{left:559.260000px;}
.x6{left:561.960000px;}
.x65{left:564.838500px;}
.x7{left:570.780000px;}
.x66{left:573.838500px;}
.x67{left:580.860000px;}
.x68{left:587.700000px;}
.x8{left:591.838500px;}
.xb{left:593.100000px;}
.x69{left:596.700000px;}
.x9{left:600.660000px;}
.x6a{left:603.538500px;}
.x7b{left:608.580000px;}
.x1f{left:627.838500px;}
.x20{left:642.060000px;}
.xe9{left:651.780000px;}
.xea{left:660.780000px;}
.x21{left:676.980000px;}
.x7c{left:678.420000px;}
.x22{left:684.360000px;}
.x7d{left:688.500000px;}
.x23{left:691.560000px;}
.x24{left:695.520000px;}
.xd{left:699.660000px;}
.x95{left:701.820000px;}
.x25{left:703.260000px;}
.x26{left:710.638500px;}
.x27{left:717.660000px;}
.x96{left:734.400000px;}
.x97{left:743.038500px;}
.x28{left:751.138500px;}
.x98{left:774.180000px;}
.x99{left:783.000000px;}
.x9a{left:790.560000px;}
.x9b{left:799.378500px;}
@media print{
.vc{vertical-align:-55.674667pt;}
.v4{vertical-align:-34.565333pt;}
.v13{vertical-align:-32.000000pt;}
.v11{vertical-align:-30.720000pt;}
.vf{vertical-align:-25.600000pt;}
.v6{vertical-align:-23.680000pt;}
.v5{vertical-align:-20.831055pt;}
.v12{vertical-align:-18.560000pt;}
.vb{vertical-align:-16.634667pt;}
.v3{vertical-align:-14.116960pt;}
.va{vertical-align:-7.685333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.605333pt;}
.v2{vertical-align:12.160000pt;}
.v1{vertical-align:13.440000pt;}
.ve{vertical-align:16.645333pt;}
.vd{vertical-align:23.680000pt;}
.v9{vertical-align:24.862872pt;}
.v14{vertical-align:34.565333pt;}
.v7{vertical-align:41.600000pt;}
.v10{vertical-align:50.560000pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.389333pt;}
.lse{letter-spacing:1.262133pt;}
.ls31{letter-spacing:1.810667pt;}
.lsd{letter-spacing:1.902133pt;}
.ls6{letter-spacing:2.101333pt;}
.ls12{letter-spacing:2.132267pt;}
.ls21{letter-spacing:2.445333pt;}
.ls0{letter-spacing:2.450667pt;}
.ls1b{letter-spacing:2.456000pt;}
.ls19{letter-spacing:2.741333pt;}
.lsf{letter-spacing:2.915788pt;}
.ls32{letter-spacing:3.730667pt;}
.ls1a{letter-spacing:4.052267pt;}
.ls10{letter-spacing:4.166211pt;}
.ls13{letter-spacing:4.168003pt;}
.ls3{letter-spacing:4.450230pt;}
.lsc{letter-spacing:4.462133pt;}
.lsb{letter-spacing:4.703787pt;}
.ls4{letter-spacing:4.724618pt;}
.ls5{letter-spacing:6.195559pt;}
.ls20{letter-spacing:12.142133pt;}
.ls1{letter-spacing:15.890667pt;}
.ls2d{letter-spacing:16.000000pt;}
.ls16{letter-spacing:16.320000pt;}
.ls2e{letter-spacing:16.821333pt;}
.ls8{letter-spacing:17.810667pt;}
.ls2{letter-spacing:18.450667pt;}
.ls25{letter-spacing:20.376000pt;}
.ls27{letter-spacing:20.416000pt;}
.ls37{letter-spacing:21.010667pt;}
.ls2c{letter-spacing:21.650667pt;}
.ls38{letter-spacing:25.792000pt;}
.ls2a{letter-spacing:26.426667pt;}
.ls29{letter-spacing:26.432000pt;}
.ls2b{letter-spacing:26.437333pt;}
.ls28{letter-spacing:26.770667pt;}
.ls1d{letter-spacing:27.201326pt;}
.ls26{letter-spacing:28.690667pt;}
.ls39{letter-spacing:28.696000pt;}
.ls1e{letter-spacing:29.330667pt;}
.ls18{letter-spacing:30.400000pt;}
.ls35{letter-spacing:30.610667pt;}
.ls33{letter-spacing:31.245333pt;}
.ls36{letter-spacing:31.250667pt;}
.ls34{letter-spacing:31.256000pt;}
.ls9{letter-spacing:31.987467pt;}
.ls30{letter-spacing:43.061333pt;}
.ls3b{letter-spacing:43.405333pt;}
.ls22{letter-spacing:44.690667pt;}
.ls2f{letter-spacing:45.330667pt;}
.ls11{letter-spacing:60.136800pt;}
.ls23{letter-spacing:74.944000pt;}
.ls14{letter-spacing:85.966933pt;}
.ls7{letter-spacing:101.102133pt;}
.lsa{letter-spacing:108.136800pt;}
.ls1f{letter-spacing:116.485333pt;}
.ls15{letter-spacing:528.768000pt;}
.ls24{letter-spacing:575.360000pt;}
.wsb{word-spacing:-49.728000pt;}
.ws1b{word-spacing:-44.215595pt;}
.ws5{word-spacing:-42.112000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws2{word-spacing:-34.551200pt;}
.ws6{word-spacing:-34.490400pt;}
.ws7{word-spacing:-34.482400pt;}
.ws34{word-spacing:-34.364800pt;}
.ws31{word-spacing:-34.360000pt;}
.ws43{word-spacing:-34.355200pt;}
.ws3f{word-spacing:-34.342400pt;}
.ws3e{word-spacing:-34.300800pt;}
.ws30{word-spacing:-34.295200pt;}
.ws10{word-spacing:-34.157867pt;}
.ws1f{word-spacing:-34.155733pt;}
.ws24{word-spacing:-33.922133pt;}
.ws4b{word-spacing:-33.920000pt;}
.ws38{word-spacing:-33.919200pt;}
.ws37{word-spacing:-33.916800pt;}
.ws3b{word-spacing:-33.912800pt;}
.ws28{word-spacing:-33.907200pt;}
.ws4d{word-spacing:-33.904000pt;}
.ws25{word-spacing:-33.902400pt;}
.ws4{word-spacing:-33.836800pt;}
.ws29{word-spacing:-33.731733pt;}
.wsc{word-spacing:-33.728000pt;}
.ws4e{word-spacing:-33.727200pt;}
.ws44{word-spacing:-33.726400pt;}
.ws22{word-spacing:-33.725600pt;}
.ws1a{word-spacing:-33.724800pt;}
.ws2a{word-spacing:-33.723200pt;}
.ws9{word-spacing:-33.720800pt;}
.ws45{word-spacing:-33.720000pt;}
.ws8{word-spacing:-33.719200pt;}
.ws13{word-spacing:-33.718933pt;}
.ws36{word-spacing:-33.713067pt;}
.ws1e{word-spacing:-33.524800pt;}
.ws3a{word-spacing:-33.278400pt;}
.ws39{word-spacing:-33.268800pt;}
.ws27{word-spacing:-33.267200pt;}
.ws41{word-spacing:-33.088000pt;}
.wsa{word-spacing:-33.085333pt;}
.ws40{word-spacing:-33.080000pt;}
.ws2b{word-spacing:-32.889600pt;}
.ws33{word-spacing:-32.883200pt;}
.wsf{word-spacing:-32.881600pt;}
.ws42{word-spacing:-32.881067pt;}
.ws2c{word-spacing:-32.623467pt;}
.ws23{word-spacing:-31.319380pt;}
.ws48{word-spacing:-31.100800pt;}
.ws49{word-spacing:-30.530133pt;}
.ws11{word-spacing:-30.072800pt;}
.ws12{word-spacing:-29.880000pt;}
.ws1d{word-spacing:-29.829333pt;}
.ws3{word-spacing:-29.820267pt;}
.ws46{word-spacing:-29.176000pt;}
.ws47{word-spacing:-28.608000pt;}
.ws3c{word-spacing:-28.150400pt;}
.ws3d{word-spacing:-27.970133pt;}
.ws4a{word-spacing:-27.328000pt;}
.ws17{word-spacing:-26.044800pt;}
.ws19{word-spacing:-25.598400pt;}
.ws20{word-spacing:-24.389867pt;}
.wsd{word-spacing:-21.551200pt;}
.wse{word-spacing:-20.732800pt;}
.ws2e{word-spacing:-14.716800pt;}
.ws16{word-spacing:-13.120000pt;}
.ws26{word-spacing:-10.425867pt;}
.ws15{word-spacing:-4.275200pt;}
.ws35{word-spacing:-1.344000pt;}
.ws2f{word-spacing:0.000000pt;}
.ws32{word-spacing:0.576000pt;}
.ws14{word-spacing:2.560533pt;}
.ws18{word-spacing:4.480533pt;}
.ws4c{word-spacing:7.232800pt;}
.ws2d{word-spacing:12.096000pt;}
.ws1c{word-spacing:53.568800pt;}
.ws21{word-spacing:139.433067pt;}
._f{margin-left:-6.765333pt;}
._0{margin-left:-0.987200pt;}
._4{width:0.925067pt;}
._b{width:2.506667pt;}
._9{width:4.226016pt;}
._a{width:14.272000pt;}
._1{width:16.128000pt;}
._5{width:17.088000pt;}
._d{width:18.578667pt;}
._14{width:19.802667pt;}
._6{width:20.728800pt;}
._12{width:22.671733pt;}
._17{width:23.680000pt;}
._8{width:24.825600pt;}
._10{width:25.792000pt;}
._c{width:26.693333pt;}
._13{width:28.160000pt;}
._2{width:32.497867pt;}
._e{width:36.217600pt;}
._15{width:38.273867pt;}
._7{width:46.893333pt;}
._16{width:48.000000pt;}
._11{width:74.240000pt;}
._3{width:255.941333pt;}
.fs6{font-size:37.066667pt;}
.fs4{font-size:45.333333pt;}
.fs5{font-size:47.597841pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:67.196952pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y92{bottom:93.666667pt;}
.y91{bottom:94.146667pt;}
.y62{bottom:95.266667pt;}
.y5f{bottom:95.426667pt;}
.yf6{bottom:95.746667pt;}
.y90{bottom:97.346667pt;}
.yf4{bottom:98.946667pt;}
.y5e{bottom:99.108000pt;}
.y93{bottom:103.746667pt;}
.yf5{bottom:104.866667pt;}
.y61{bottom:105.346667pt;}
.y60{bottom:105.508000pt;}
.y8e{bottom:127.108000pt;}
.y8c{bottom:127.426667pt;}
.yf2{bottom:128.866667pt;}
.yf0{bottom:129.026667pt;}
.yef{bottom:129.508000pt;}
.y8b{bottom:130.626667pt;}
.y8d{bottom:130.788000pt;}
.y5d{bottom:132.388000pt;}
.yed{bottom:132.708000pt;}
.y8f{bottom:137.026667pt;}
.yee{bottom:138.466667pt;}
.yf3{bottom:138.946667pt;}
.yf1{bottom:139.108000pt;}
.y5c{bottom:147.746667pt;}
.y5b{bottom:150.946667pt;}
.y89{bottom:160.388000pt;}
.y88{bottom:160.866667pt;}
.y87{bottom:164.066667pt;}
.yec{bottom:166.146667pt;}
.y8a{bottom:170.466667pt;}
.y59{bottom:182.146667pt;}
.y58{bottom:186.788000pt;}
.y85{bottom:193.666667pt;}
.y84{bottom:194.146667pt;}
.yeb{bottom:194.946667pt;}
.y5a{bottom:195.426667pt;}
.y83{bottom:197.346667pt;}
.yea{bottom:198.146667pt;}
.y86{bottom:203.746667pt;}
.y56{bottom:210.946667pt;}
.y53{bottom:215.588000pt;}
.y54{bottom:215.746667pt;}
.y55{bottom:221.508000pt;}
.y57{bottom:224.226667pt;}
.ye9{bottom:227.108000pt;}
.y82{bottom:227.266667pt;}
.ye7{bottom:230.146667pt;}
.ye8{bottom:230.308000pt;}
.y81{bottom:230.466667pt;}
.y4c{bottom:249.988000pt;}
.y4e{bottom:250.626667pt;}
.y4d{bottom:254.146667pt;}
.y52{bottom:255.746667pt;}
.y4a{bottom:255.908000pt;}
.ye5{bottom:258.946667pt;}
.y7e{bottom:259.266667pt;}
.ye4{bottom:259.426667pt;}
.y4b{bottom:261.666667pt;}
.y50{bottom:261.826667pt;}
.ye3{bottom:262.626667pt;}
.y80{bottom:264.706667pt;}
.y4f{bottom:265.026667pt;}
.y7f{bottom:267.908000pt;}
.ye6{bottom:268.866667pt;}
.y51{bottom:269.826667pt;}
.y7d{bottom:275.108000pt;}
.y7c{bottom:278.308000pt;}
.ye2{bottom:292.546667pt;}
.y45{bottom:294.146667pt;}
.ye1{bottom:295.746667pt;}
.y47{bottom:296.866667pt;}
.y46{bottom:299.908000pt;}
.y44{bottom:300.066667pt;}
.y49{bottom:301.988000pt;}
.y48{bottom:304.226667pt;}
.y7b{bottom:305.188000pt;}
.ye0{bottom:324.546667pt;}
.ydf{bottom:327.746667pt;}
.y40{bottom:328.546667pt;}
.y3d{bottom:328.866667pt;}
.y3c{bottom:333.826667pt;}
.y7a{bottom:335.266667pt;}
.y79{bottom:338.466667pt;}
.y42{bottom:339.746667pt;}
.y3f{bottom:339.908000pt;}
.y3e{bottom:342.146667pt;}
.y41{bottom:342.946667pt;}
.y43{bottom:347.746667pt;}
.ydc{bottom:356.388000pt;}
.yde{bottom:361.988000pt;}
.ydd{bottom:365.188000pt;}
.ydb{bottom:372.226667pt;}
.y3b{bottom:373.346667pt;}
.yda{bottom:375.426667pt;}
.yd9{bottom:399.108000pt;}
.yd8{bottom:402.308000pt;}
.y3a{bottom:407.266667pt;}
.yd7{bottom:432.388000pt;}
.yd5{bottom:435.426667pt;}
.yd6{bottom:435.588000pt;}
.y37{bottom:435.908000pt;}
.y36{bottom:437.666667pt;}
.y35{bottom:440.866667pt;}
.y39{bottom:446.788000pt;}
.y38{bottom:449.188000pt;}
.yd4{bottom:469.026667pt;}
.yd1{bottom:469.188000pt;}
.yd0{bottom:469.666667pt;}
.y32{bottom:470.146667pt;}
.y31{bottom:471.746667pt;}
.ycf{bottom:472.866667pt;}
.y30{bottom:474.946667pt;}
.yd3{bottom:479.108000pt;}
.yd2{bottom:479.266667pt;}
.y34{bottom:481.026667pt;}
.y33{bottom:483.266667pt;}
.ycc{bottom:504.066667pt;}
.ycb{bottom:504.546667pt;}
.y2f{bottom:507.746667pt;}
.yce{bottom:507.908000pt;}
.ycd{bottom:514.146667pt;}
.y2e{bottom:536.066667pt;}
.y2d{bottom:538.466667pt;}
.yca{bottom:541.026667pt;}
.y29{bottom:546.466667pt;}
.y2a{bottom:552.388000pt;}
.y2c{bottom:553.506667pt;}
.y2b{bottom:555.908000pt;}
.yc5{bottom:556.066667pt;}
.yc7{bottom:556.546667pt;}
.yc4{bottom:559.746667pt;}
.yc8{bottom:559.908000pt;}
.yc9{bottom:565.666667pt;}
.yc6{bottom:566.146667pt;}
.y28{bottom:580.226667pt;}
.y27{bottom:583.426667pt;}
.yc2{bottom:589.506667pt;}
.yc1{bottom:589.988000pt;}
.yc0{bottom:593.188000pt;}
.yc3{bottom:599.426667pt;}
.y25{bottom:612.066667pt;}
.y24{bottom:614.466667pt;}
.y26{bottom:619.266667pt;}
.y21{bottom:622.466667pt;}
.ybf{bottom:626.146667pt;}
.y23{bottom:629.506667pt;}
.y22{bottom:631.746667pt;}
.ybd{bottom:654.466667pt;}
.ybb{bottom:654.946667pt;}
.yba{bottom:658.146667pt;}
.ybc{bottom:658.308000pt;}
.y1d{bottom:661.346667pt;}
.y20{bottom:661.506667pt;}
.y1e{bottom:661.666667pt;}
.ybe{bottom:664.546667pt;}
.y1f{bottom:667.426667pt;}
.y1a{bottom:684.866667pt;}
.y1b{bottom:685.026667pt;}
.yb8{bottom:687.906667pt;}
.yb7{bottom:688.388000pt;}
.yb6{bottom:691.588000pt;}
.y1c{bottom:693.506667pt;}
.yb9{bottom:697.988000pt;}
.y16{bottom:706.308000pt;}
.y19{bottom:707.746667pt;}
.y15{bottom:707.906667pt;}
.y18{bottom:710.946667pt;}
.y14{bottom:711.108000pt;}
.y17{bottom:719.588000pt;}
.yb5{bottom:724.546667pt;}
.y10b{bottom:738.466667pt;}
.yb3{bottom:742.946667pt;}
.yb4{bottom:743.108000pt;}
.y13{bottom:746.466667pt;}
.y10a{bottom:756.866667pt;}
.y12{bottom:764.866667pt;}
.yb1{bottom:771.746667pt;}
.y109{bottom:775.266667pt;}
.yb0{bottom:775.426667pt;}
.yb2{bottom:781.826667pt;}
.y11{bottom:793.666667pt;}
.yf{bottom:796.706667pt;}
.y10{bottom:796.866667pt;}
.yaf{bottom:808.388000pt;}
.y108{bottom:812.066667pt;}
.ye{bottom:815.426667pt;}
.y78{bottom:825.666667pt;}
.y76{bottom:828.866667pt;}
.y77{bottom:829.026667pt;}
.y107{bottom:830.466667pt;}
.yd{bottom:833.826667pt;}
.yad{bottom:836.866667pt;}
.ya8{bottom:837.026667pt;}
.yac{bottom:837.346667pt;}
.yae{bottom:837.506667pt;}
.yab{bottom:840.546667pt;}
.ya7{bottom:840.706667pt;}
.ya9{bottom:846.946667pt;}
.yaa{bottom:847.266667pt;}
.y106{bottom:848.866667pt;}
.y74{bottom:861.026667pt;}
.yc{bottom:865.506667pt;}
.y105{bottom:867.266667pt;}
.y75{bottom:868.546667pt;}
.ya6{bottom:877.026667pt;}
.y71{bottom:895.106667pt;}
.yb{bottom:897.346667pt;}
.y104{bottom:898.946667pt;}
.y73{bottom:902.306667pt;}
.y72{bottom:905.506667pt;}
.ya4{bottom:906.788000pt;}
.ya0{bottom:906.946667pt;}
.ya5{bottom:907.266667pt;}
.y9f{bottom:910.466667pt;}
.ya2{bottom:910.626667pt;}
.y70{bottom:914.788000pt;}
.ya3{bottom:916.388000pt;}
.ya1{bottom:916.866667pt;}
.y6b{bottom:928.226667pt;}
.ya{bottom:929.026667pt;}
.y6a{bottom:930.466667pt;}
.y103{bottom:930.788000pt;}
.y6f{bottom:934.788000pt;}
.y6c{bottom:934.946667pt;}
.y68{bottom:935.266667pt;}
.y67{bottom:938.466667pt;}
.y6e{bottom:938.626667pt;}
.y9d{bottom:940.546667pt;}
.y9c{bottom:944.226667pt;}
.y6d{bottom:944.866667pt;}
.y69{bottom:947.906667pt;}
.y102{bottom:950.466667pt;}
.y9e{bottom:950.626667pt;}
.y9{bottom:960.706667pt;}
.y100{bottom:969.346667pt;}
.yfe{bottom:973.026667pt;}
.yff{bottom:973.188000pt;}
.y9a{bottom:973.826667pt;}
.y98{bottom:973.988000pt;}
.y97{bottom:974.466667pt;}
.y66{bottom:977.506667pt;}
.y95{bottom:977.666667pt;}
.y101{bottom:979.426667pt;}
.y96{bottom:983.426667pt;}
.y9b{bottom:983.906667pt;}
.y99{bottom:984.066667pt;}
.y8{bottom:992.546667pt;}
.yf8{bottom:1002.946667pt;}
.yfc{bottom:1003.266667pt;}
.yfd{bottom:1003.426667pt;}
.y64{bottom:1005.988000pt;}
.yfb{bottom:1006.466667pt;}
.yf7{bottom:1006.626667pt;}
.y7{bottom:1007.746667pt;}
.y63{bottom:1009.666667pt;}
.y6{bottom:1010.946667pt;}
.y94{bottom:1011.106667pt;}
.yf9{bottom:1012.866667pt;}
.yfa{bottom:1013.188000pt;}
.y65{bottom:1016.066667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h3{height:43.375000pt;}
.h8{height:44.468750pt;}
.h2{height:50.784896pt;}
.hd{height:85.644271pt;}
.h17{height:88.110125pt;}
.h18{height:92.200333pt;}
.h9{height:104.744792pt;}
.hb{height:109.977043pt;}
.h13{height:113.699458pt;}
.h11{height:114.350125pt;}
.h1b{height:122.275000pt;}
.h24{height:122.909667pt;}
.h21{height:122.915000pt;}
.h1c{height:122.920333pt;}
.h12{height:123.549667pt;}
.h10{height:124.189667pt;}
.hc{height:124.195000pt;}
.h19{height:124.829667pt;}
.h16{height:124.840333pt;}
.h15{height:140.189667pt;}
.ha{height:147.875000pt;}
.h1a{height:148.509667pt;}
.h25{height:148.520333pt;}
.h6{height:155.261708pt;}
.h1d{height:155.933678pt;}
.h22{height:160.035000pt;}
.hf{height:160.675000pt;}
.h23{height:161.309667pt;}
.h7{height:161.315000pt;}
.h20{height:161.320333pt;}
.h14{height:180.124581pt;}
.h1f{height:182.440333pt;}
.h26{height:183.075000pt;}
.h1e{height:188.835000pt;}
.he{height:189.475000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:113.440000pt;}
.x35{left:116.800000pt;}
.x71{left:118.240000pt;}
.xac{left:120.320000pt;}
.xba{left:121.440000pt;}
.x2d{left:122.560000pt;}
.xa{left:123.520000pt;}
.xae{left:126.400000pt;}
.xb5{left:128.000000pt;}
.x3{left:129.440000pt;}
.x36{left:130.560000pt;}
.x9c{left:133.920000pt;}
.x6d{left:136.800000pt;}
.x5{left:137.760000pt;}
.x9d{left:140.000000pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.x6b{left:148.160000pt;}
.x2e{left:149.920000pt;}
.x72{left:154.720000pt;}
.x37{left:156.000000pt;}
.xad{left:157.120000pt;}
.xdc{left:158.240000pt;}
.x14{left:161.440000pt;}
.x38{left:162.878667pt;}
.x6c{left:163.840000pt;}
.x2f{left:165.278667pt;}
.xbb{left:166.560000pt;}
.x30{left:170.240000pt;}
.x9e{left:172.000000pt;}
.x45{left:173.440000pt;}
.x15{left:174.878667pt;}
.x39{left:176.320000pt;}
.x73{left:178.400000pt;}
.x10{left:181.278667pt;}
.x3a{left:182.240000pt;}
.xb6{left:183.200000pt;}
.xbc{left:186.560000pt;}
.x11{left:189.120000pt;}
.x9f{left:190.078667pt;}
.x3b{left:191.360000pt;}
.x16{left:193.920000pt;}
.x6e{left:197.120000pt;}
.x4d{left:199.520000pt;}
.x17{left:200.640000pt;}
.xa6{left:201.600000pt;}
.x6f{left:204.000000pt;}
.x74{left:205.278667pt;}
.x18{left:206.878667pt;}
.xbd{left:208.640000pt;}
.x19{left:210.400000pt;}
.x75{left:211.520000pt;}
.xaf{left:212.478667pt;}
.xa0{left:214.078667pt;}
.x70{left:216.320000pt;}
.x1a{left:217.278667pt;}
.x12{left:218.560000pt;}
.x76{left:219.520000pt;}
.x1b{left:223.840000pt;}
.x13{left:226.240000pt;}
.x1c{left:230.078667pt;}
.x40{left:231.520000pt;}
.xa7{left:236.160000pt;}
.x2a{left:237.120000pt;}
.x3c{left:239.040000pt;}
.x41{left:240.000000pt;}
.x1d{left:240.960000pt;}
.x3d{left:243.678667pt;}
.x42{left:244.640000pt;}
.x2b{left:246.240000pt;}
.xa1{left:248.640000pt;}
.x7e{left:250.400000pt;}
.x8c{left:252.000000pt;}
.xdf{left:253.760000pt;}
.x8b{left:255.840000pt;}
.x7f{left:258.240000pt;}
.xb7{left:260.320000pt;}
.x1e{left:261.440000pt;}
.x43{left:262.720000pt;}
.xbe{left:264.160000pt;}
.x3e{left:265.120000pt;}
.x77{left:266.400000pt;}
.x44{left:267.520000pt;}
.x3f{left:270.078667pt;}
.x78{left:271.200000pt;}
.xd9{left:277.600000pt;}
.xa2{left:278.878667pt;}
.x2c{left:283.200000pt;}
.xa8{left:287.040000pt;}
.xa3{left:289.278667pt;}
.xcc{left:290.400000pt;}
.xa9{left:297.440000pt;}
.x8d{left:298.400000pt;}
.xb8{left:300.160000pt;}
.xd3{left:305.120000pt;}
.x8e{left:306.240000pt;}
.x4e{left:307.840000pt;}
.x8f{left:313.120000pt;}
.x4f{left:315.520000pt;}
.x31{left:317.120000pt;}
.xe0{left:318.878667pt;}
.x50{left:321.600000pt;}
.x32{left:324.000000pt;}
.xe1{left:326.878667pt;}
.x51{left:327.840000pt;}
.xd4{left:332.000000pt;}
.xbf{left:333.760000pt;}
.x52{left:335.520000pt;}
.xc0{left:338.560000pt;}
.x53{left:341.600000pt;}
.xe7{left:343.200000pt;}
.x33{left:347.360000pt;}
.x90{left:348.478667pt;}
.xa4{left:352.640000pt;}
.x34{left:354.240000pt;}
.x91{left:356.160000pt;}
.xb2{left:357.278667pt;}
.x54{left:359.678667pt;}
.xde{left:361.278667pt;}
.xa5{left:363.040000pt;}
.xcd{left:364.160000pt;}
.xb3{left:365.120000pt;}
.xc{left:366.400000pt;}
.x55{left:367.678667pt;}
.xb9{left:369.600000pt;}
.xc5{left:371.200000pt;}
.x56{left:372.320000pt;}
.x80{left:373.600000pt;}
.xd5{left:374.720000pt;}
.x85{left:375.678667pt;}
.xe5{left:376.640000pt;}
.x57{left:377.920000pt;}
.xd0{left:379.200000pt;}
.x86{left:380.478667pt;}
.x81{left:381.440000pt;}
.x58{left:384.000000pt;}
.xc6{left:384.960000pt;}
.x46{left:386.240000pt;}
.xd1{left:387.200000pt;}
.xc1{left:390.400000pt;}
.x87{left:392.478667pt;}
.x47{left:394.240000pt;}
.xc4{left:395.200000pt;}
.x59{left:398.078667pt;}
.xda{left:399.200000pt;}
.x82{left:400.160000pt;}
.x5a{left:402.720000pt;}
.x92{left:404.160000pt;}
.x79{left:405.760000pt;}
.xb4{left:406.720000pt;}
.x5b{left:408.320000pt;}
.x93{left:409.600000pt;}
.x7a{left:410.560000pt;}
.xce{left:411.840000pt;}
.x48{left:413.120000pt;}
.x5c{left:414.400000pt;}
.xc8{left:416.160000pt;}
.x4{left:417.800000pt;}
.x88{left:419.040000pt;}
.x49{left:420.800000pt;}
.x83{left:422.560000pt;}
.x94{left:424.478667pt;}
.x4a{left:427.200000pt;}
.x5d{left:428.478667pt;}
.xd2{left:430.078667pt;}
.xdd{left:431.360000pt;}
.x89{left:433.600000pt;}
.xe6{left:434.878667pt;}
.x29{left:436.000000pt;}
.x5e{left:436.960000pt;}
.x4b{left:438.560000pt;}
.xcf{left:440.000000pt;}
.x5f{left:441.920000pt;}
.xb0{left:442.878667pt;}
.xd6{left:445.120000pt;}
.xe{left:446.240000pt;}
.x60{left:447.360000pt;}
.x84{left:449.120000pt;}
.xb1{left:450.560000pt;}
.x4c{left:452.800000pt;}
.xc9{left:456.160000pt;}
.xdb{left:458.400000pt;}
.x8a{left:460.160000pt;}
.xe2{left:462.400000pt;}
.xca{left:464.160000pt;}
.xc7{left:465.920000pt;}
.x61{left:467.520000pt;}
.xd7{left:469.120000pt;}
.xe3{left:470.400000pt;}
.x62{left:472.320000pt;}
.xc2{left:474.400000pt;}
.x63{left:477.920000pt;}
.xd8{left:479.520000pt;}
.xe8{left:480.800000pt;}
.xc3{left:482.400000pt;}
.x64{left:484.000000pt;}
.xaa{left:487.200000pt;}
.xcb{left:490.240000pt;}
.xe4{left:492.000000pt;}
.xab{left:497.120000pt;}
.x6{left:499.520000pt;}
.x65{left:502.078667pt;}
.x7{left:507.360000pt;}
.x66{left:510.078667pt;}
.x67{left:516.320000pt;}
.x68{left:522.400000pt;}
.x8{left:526.078667pt;}
.xb{left:527.200000pt;}
.x69{left:530.400000pt;}
.x9{left:533.920000pt;}
.x6a{left:536.478667pt;}
.x7b{left:540.960000pt;}
.x1f{left:558.078667pt;}
.x20{left:570.720000pt;}
.xe9{left:579.360000pt;}
.xea{left:587.360000pt;}
.x21{left:601.760000pt;}
.x7c{left:603.040000pt;}
.x22{left:608.320000pt;}
.x7d{left:612.000000pt;}
.x23{left:614.720000pt;}
.x24{left:618.240000pt;}
.xd{left:621.920000pt;}
.x95{left:623.840000pt;}
.x25{left:625.120000pt;}
.x26{left:631.678667pt;}
.x27{left:637.920000pt;}
.x96{left:652.800000pt;}
.x97{left:660.478667pt;}
.x28{left:667.678667pt;}
.x98{left:688.160000pt;}
.x99{left:696.000000pt;}
.x9a{left:702.720000pt;}
.x9b{left:710.558667pt;}
}




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