
    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_afd5dc6d4e7773800b1a9912.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3b880796ea3589ddefde541f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0bd49bd5b4671c67c9cd6293.woff')format("woff");}.ff3{font-family:ff3;line-height:0.950000;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_584ab3147f47a3d45b6d6351.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_77422cc91df92eb9d7d410d2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1a31f89455df3ffbd027d28a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_3335b77a464e34243654170d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f2540e04303ae673466fb8be.woff')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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_92c6ea26aeda500763145902.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_202e9327e723116149bb1fbc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_16daed7db42b919cddde3a40.woff')format("woff");}.ffb{font-family:ffb;line-height:1.364258;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_c82e14d9f10680470b1f887b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_21c8386d385b11676d57c696.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-1.026000px;}
.lse{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.538800px;}
.ls1a{letter-spacing:-0.457800px;}
.ls17{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls19{letter-spacing:-0.262200px;}
.ls14{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.025800px;}
.lsd{letter-spacing:-0.018000px;}
.ls6{letter-spacing:-0.008400px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.126000px;}
.ls3{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.262080px;}
.ls11{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.305280px;}
.ls8{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.745920px;}
.lsb{letter-spacing:3.036000px;}
.lsf{letter-spacing:10.080000px;}
.ls12{letter-spacing:14.400000px;}
.lsa{letter-spacing:746.064000px;}
.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;}
}
.ws3{word-spacing:-77.734200px;}
.ws4{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.225280px;}
.wsd{word-spacing:-16.865400px;}
.wse{word-spacing:-16.822200px;}
.ws11{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.506480px;}
.wsf{word-spacing:-16.353480px;}
.ws14{word-spacing:-16.297800px;}
.wsc{word-spacing:-16.254600px;}
.ws16{word-spacing:-16.102200px;}
.ws13{word-spacing:-15.534000px;}
.ws15{word-spacing:-15.138000px;}
.ws9{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws1{word-spacing:-11.521200px;}
.ws17{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:0.162000px;}
._6{margin-left:-4.541144px;}
._5{margin-left:-3.226801px;}
._d{margin-left:-2.034042px;}
._0{margin-left:-1.012799px;}
._1{width:1.174318px;}
._2{width:2.988000px;}
._3{width:4.243199px;}
._4{width:5.438399px;}
._a{width:6.463684px;}
._9{width:7.948200px;}
._b{width:9.442200px;}
._13{width:10.574542px;}
._7{width:11.980802px;}
._8{width:13.469277px;}
._12{width:14.597616px;}
._2c{width:17.686212px;}
._e{width:18.745788px;}
._14{width:20.269175px;}
._1a{width:21.528000px;}
._16{width:23.116166px;}
._17{width:24.690114px;}
._1f{width:26.097032px;}
._20{width:27.472326px;}
._15{width:28.748425px;}
._11{width:30.205241px;}
._38{width:31.375572px;}
._28{width:32.392354px;}
._2a{width:33.707782px;}
._29{width:35.447040px;}
._21{width:36.829241px;}
._22{width:37.870744px;}
._2b{width:39.288354px;}
._36{width:40.289924px;}
._32{width:41.314098px;}
._19{width:42.393732px;}
._18{width:43.519812px;}
._2f{width:44.967007px;}
._2d{width:45.970825px;}
._2e{width:47.010738px;}
._1c{width:48.764354px;}
._1b{width:49.859521px;}
._1d{width:51.402041px;}
._1e{width:53.370572px;}
._34{width:54.789975px;}
._30{width:58.357374px;}
._31{width:59.795190px;}
._33{width:62.000574px;}
._26{width:64.120254px;}
._27{width:65.160829px;}
._35{width:66.240199px;}
._39{width:68.930135px;}
._37{width:70.165965px;}
._3a{width:71.190526px;}
._f{width:73.393920px;}
._10{width:75.097226px;}
._25{width:77.169666px;}
._3b{width:495.804000px;}
._24{width:497.232000px;}
._c{width:510.978000px;}
._3c{width:731.214000px;}
._23{width:747.597407px;}
.fc5{color:rgb(17,85,204);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.760000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:2.526000px;}
.y9{bottom:4.500000px;}
.y5{bottom:10.800000px;}
.y8{bottom:20.340000px;}
.yd{bottom:20.520000px;}
.y4{bottom:24.480000px;}
.ycc{bottom:25.380000px;}
.yb{bottom:27.000000px;}
.y7{bottom:36.180000px;}
.y3{bottom:38.340000px;}
.yc8{bottom:38.880000px;}
.y2a{bottom:40.799927px;}
.ycb{bottom:45.225000px;}
.yc1{bottom:50.940000px;}
.y2d{bottom:51.300000px;}
.y6{bottom:52.014000px;}
.y2{bottom:52.194000px;}
.yc7{bottom:58.680000px;}
.yca{bottom:65.025000px;}
.yf0{bottom:74.556000px;}
.yed{bottom:76.536000px;}
.y1a9{bottom:76.896000px;}
.ye8{bottom:78.696000px;}
.ya9{bottom:79.056000px;}
.y1a4{bottom:82.296000px;}
.y158{bottom:83.196000px;}
.yc0{bottom:84.456000px;}
.y74{bottom:86.616000px;}
.y5a{bottom:88.776000px;}
.yac{bottom:90.936000px;}
.y1d8{bottom:91.296000px;}
.y193{bottom:92.016000px;}
.y1ca{bottom:92.736000px;}
.y1e7{bottom:94.356000px;}
.y13c{bottom:95.256000px;}
.y10f{bottom:95.796000px;}
.yef{bottom:96.516000px;}
.y10a{bottom:96.876000px;}
.yec{bottom:98.316000px;}
.y1a8{bottom:98.676000px;}
.ye7{bottom:100.476000px;}
.ya8{bottom:100.836000px;}
.y1a3{bottom:104.076000px;}
.y1{bottom:104.256000px;}
.y157{bottom:104.976000px;}
.y177{bottom:106.236000px;}
.y73{bottom:108.396000px;}
.y59{bottom:110.556000px;}
.yab{bottom:112.896000px;}
.y1d7{bottom:113.076000px;}
.y1c9{bottom:114.516000px;}
.y1e6{bottom:116.136000px;}
.y13b{bottom:117.036000px;}
.ybf{bottom:118.296000px;}
.yeb{bottom:120.096000px;}
.y1a7{bottom:120.456000px;}
.ye6{bottom:122.256000px;}
.ya7{bottom:122.616000px;}
.y192{bottom:125.856000px;}
.y156{bottom:126.936000px;}
.y176{bottom:128.016000px;}
.y10e{bottom:129.636000px;}
.y72{bottom:130.356000px;}
.y109{bottom:130.716000px;}
.y58{bottom:132.516000px;}
.yaa{bottom:134.676000px;}
.y1e5{bottom:137.916000px;}
.y13a{bottom:138.816000px;}
.yea{bottom:141.876000px;}
.y1a6{bottom:142.236000px;}
.ye5{bottom:144.036000px;}
.y92{bottom:144.396000px;}
.y1d6{bottom:146.916000px;}
.y1a2{bottom:147.816000px;}
.y1c8{bottom:148.356000px;}
.y155{bottom:148.716000px;}
.y175{bottom:149.976000px;}
.y71{bottom:152.130000px;}
.y57{bottom:154.290000px;}
.ya6{bottom:156.450000px;}
.y191{bottom:159.690000px;}
.y10d{bottom:160.230000px;}
.y139{bottom:160.770000px;}
.yee{bottom:164.010000px;}
.y108{bottom:164.550000px;}
.ye4{bottom:165.990000px;}
.y91{bottom:166.350000px;}
.y1d5{bottom:168.870000px;}
.y1c7{bottom:170.130000px;}
.y154{bottom:170.490000px;}
.y174{bottom:171.750000px;}
.y70{bottom:173.910000px;}
.ye9{bottom:175.710000px;}
.y56{bottom:176.070000px;}
.ya5{bottom:178.230000px;}
.y190{bottom:181.470000px;}
.y138{bottom:182.550000px;}
.y1a5{bottom:185.970000px;}
.ye3{bottom:187.770000px;}
.y90{bottom:188.130000px;}
.y1d4{bottom:190.650000px;}
.y1c6{bottom:191.910000px;}
.y153{bottom:192.270000px;}
.y173{bottom:193.530000px;}
.y6f{bottom:195.690000px;}
.y55{bottom:197.850000px;}
.y105{bottom:198.390000px;}
.ya4{bottom:200.010000px;}
.y18f{bottom:203.430000px;}
.y137{bottom:204.330000px;}
.y19f{bottom:207.750000px;}
.ye2{bottom:209.550000px;}
.y8f{bottom:209.910000px;}
.y1d3{bottom:212.430000px;}
.y1c5{bottom:213.690000px;}
.y152{bottom:214.230000px;}
.y172{bottom:215.310000px;}
.y6e{bottom:217.470000px;}
.y54{bottom:219.810000px;}
.y104{bottom:220.170000px;}
.ya3{bottom:221.970000px;}
.y1e3{bottom:225.210000px;}
.y136{bottom:226.110000px;}
.y19e{bottom:229.530000px;}
.y8e{bottom:231.690000px;}
.y1d2{bottom:234.210000px;}
.y29{bottom:235.650000px;}
.y151{bottom:236.010000px;}
.y18e{bottom:237.090000px;}
.y6d{bottom:239.430000px;}
.ybe{bottom:241.590000px;}
.y103{bottom:241.950000px;}
.ye1{bottom:243.390000px;}
.ya2{bottom:243.750000px;}
.y1e2{bottom:246.990000px;}
.y135{bottom:247.890000px;}
.y171{bottom:249.150000px;}
.y19b{bottom:251.310000px;}
.y53{bottom:253.470000px;}
.y28{bottom:254.730000px;}
.y1d1{bottom:255.990000px;}
.y1c4{bottom:257.430000px;}
.y150{bottom:257.790000px;}
.y18d{bottom:259.050000px;}
.y6c{bottom:261.210000px;}
.ybd{bottom:263.370000px;}
.y102{bottom:263.730000px;}
.ye0{bottom:265.170000px;}
.ya1{bottom:265.530000px;}
.y134{bottom:269.850000px;}
.y170{bottom:270.930000px;}
.y19a{bottom:273.090000px;}
.y52{bottom:275.430000px;}
.y18c{bottom:280.830000px;}
.y6b{bottom:282.990000px;}
.ybc{bottom:285.150000px;}
.y101{bottom:285.690000px;}
.ydf{bottom:286.950000px;}
.y8d{bottom:287.310000px;}
.y1d0{bottom:289.830000px;}
.y27{bottom:290.550000px;}
.y1c3{bottom:291.270000px;}
.y133{bottom:291.630000px;}
.y16f{bottom:292.890000px;}
.y194{bottom:295.050000px;}
.y51{bottom:297.210000px;}
.y18b{bottom:302.610000px;}
.y6a{bottom:304.770000px;}
.ybb{bottom:306.930000px;}
.y100{bottom:307.470000px;}
.y26{bottom:307.650000px;}
.yde{bottom:308.910000px;}
.y8c{bottom:309.090000px;}
.y1cf{bottom:311.790000px;}
.y1c2{bottom:313.050000px;}
.y132{bottom:313.410000px;}
.y16e{bottom:314.670000px;}
.yae{bottom:316.830000px;}
.y50{bottom:319.035000px;}
.y18a{bottom:324.435000px;}
.y25{bottom:324.975000px;}
.y69{bottom:326.595000px;}
.yba{bottom:328.935000px;}
.yff{bottom:329.295000px;}
.ydd{bottom:330.735000px;}
.y8b{bottom:331.095000px;}
.y1ce{bottom:333.615000px;}
.y1c1{bottom:334.875000px;}
.y131{bottom:335.235000px;}
.y16d{bottom:336.495000px;}
.y199{bottom:338.655000px;}
.y4f{bottom:340.815000px;}
.y24{bottom:342.255000px;}
.y189{bottom:346.395000px;}
.y68{bottom:348.555000px;}
.yad{bottom:350.715000px;}
.yfe{bottom:351.075000px;}
.ydc{bottom:352.515000px;}
.y8a{bottom:352.875000px;}
.y1cd{bottom:355.395000px;}
.y1c0{bottom:356.655000px;}
.y130{bottom:357.195000px;}
.y16c{bottom:358.275000px;}
.y23{bottom:359.535000px;}
.y198{bottom:360.435000px;}
.y4e{bottom:362.595000px;}
.y188{bottom:368.175000px;}
.y67{bottom:370.335000px;}
.yb9{bottom:372.495000px;}
.yfd{bottom:373.035000px;}
.ydb{bottom:374.295000px;}
.y89{bottom:374.655000px;}
.y22{bottom:376.815000px;}
.y1cc{bottom:377.175000px;}
.y1bf{bottom:378.615000px;}
.y12f{bottom:378.975000px;}
.y16b{bottom:380.055000px;}
.y197{bottom:382.395000px;}
.y4d{bottom:384.555000px;}
.y187{bottom:389.955000px;}
.y66{bottom:392.115000px;}
.y21{bottom:394.095000px;}
.yb8{bottom:394.275000px;}
.yfc{bottom:394.815000px;}
.yda{bottom:396.255000px;}
.y88{bottom:396.435000px;}
.y1be{bottom:400.395000px;}
.y12e{bottom:400.755000px;}
.y1e1{bottom:402.015000px;}
.y196{bottom:404.175000px;}
.y4c{bottom:406.335000px;}
.y1cb{bottom:411.015000px;}
.y20{bottom:411.195000px;}
.y186{bottom:411.735000px;}
.y65{bottom:413.895000px;}
.yb7{bottom:416.055000px;}
.yfb{bottom:416.595000px;}
.yd9{bottom:418.035000px;}
.y87{bottom:418.395000px;}
.y12d{bottom:422.535000px;}
.y1e0{bottom:423.795000px;}
.y195{bottom:425.955000px;}
.y4b{bottom:428.115000px;}
.y1f{bottom:428.475000px;}
.y1bd{bottom:432.795000px;}
.y185{bottom:433.515000px;}
.y64{bottom:435.855000px;}
.yb6{bottom:438.015000px;}
.yfa{bottom:438.375000px;}
.yd8{bottom:439.815000px;}
.y86{bottom:440.175000px;}
.y12c{bottom:444.315000px;}
.y1df{bottom:445.575000px;}
.y1e{bottom:445.755000px;}
.y16a{bottom:447.735000px;}
.y4a{bottom:449.895000px;}
.y1e4{bottom:457.635000px;}
.yb5{bottom:459.795000px;}
.yf9{bottom:460.155000px;}
.yd7{bottom:461.595000px;}
.y85{bottom:461.955000px;}
.y1d{bottom:463.035000px;}
.y12b{bottom:466.275000px;}
.y184{bottom:467.355000px;}
.y63{bottom:469.515000px;}
.y49{bottom:471.855000px;}
.y1bc{bottom:472.755000px;}
.y1de{bottom:479.415000px;}
.y1c{bottom:480.315000px;}
.yb4{bottom:481.575000px;}
.yf8{bottom:482.115000px;}
.yd6{bottom:483.375000px;}
.y84{bottom:483.735000px;}
.y12a{bottom:488.055000px;}
.y183{bottom:489.315000px;}
.y169{bottom:491.475000px;}
.y48{bottom:493.635000px;}
.y1b{bottom:497.595000px;}
.y1dd{bottom:501.195000px;}
.yb3{bottom:503.355000px;}
.yf7{bottom:503.895000px;}
.yd5{bottom:505.335000px;}
.y83{bottom:505.515000px;}
.y14f{bottom:509.835000px;}
.y182{bottom:511.095000px;}
.y1bb{bottom:511.455000px;}
.y168{bottom:513.255000px;}
.y1a{bottom:514.695000px;}
.y47{bottom:515.415000px;}
.y129{bottom:521.895000px;}
.y1dc{bottom:522.975000px;}
.yb2{bottom:525.315000px;}
.yf6{bottom:525.675000px;}
.yd4{bottom:527.115000px;}
.y82{bottom:527.475000px;}
.y1ba{bottom:529.275000px;}
.y14e{bottom:531.615000px;}
.y19{bottom:531.975000px;}
.y181{bottom:532.875000px;}
.y19d{bottom:535.035000px;}
.y46{bottom:537.195000px;}
.y107{bottom:537.735000px;}
.y128{bottom:543.675000px;}
.y1db{bottom:544.935000px;}
.yb1{bottom:547.095000px;}
.yf5{bottom:547.455000px;}
.yd3{bottom:548.895000px;}
.y18{bottom:549.255000px;}
.y14d{bottom:553.575000px;}
.y180{bottom:554.655000px;}
.y19c{bottom:556.815000px;}
.y45{bottom:558.975000px;}
.y106{bottom:559.515000px;}
.y127{bottom:565.455000px;}
.y1da{bottom:566.715000px;}
.yb0{bottom:568.905000px;}
.yd2{bottom:570.705000px;}
.y81{bottom:571.065000px;}
.y14c{bottom:575.385000px;}
.y17f{bottom:576.465000px;}
.y1b9{bottom:577.005000px;}
.y1af{bottom:578.805000px;}
.y44{bottom:580.965000px;}
.yf4{bottom:581.325000px;}
.y17{bottom:581.505000px;}
.y126{bottom:587.265000px;}
.y1d9{bottom:588.525000px;}
.yaf{bottom:590.685000px;}
.yd1{bottom:592.665000px;}
.y80{bottom:592.845000px;}
.y14b{bottom:597.165000px;}
.y17e{bottom:598.425000px;}
.y10c{bottom:599.505000px;}
.y1ae{bottom:600.585000px;}
.y43{bottom:602.745000px;}
.y1b8{bottom:604.545000px;}
.y125{bottom:609.225000px;}
.y167{bottom:612.465000px;}
.y7f{bottom:614.805000px;}
.yf3{bottom:615.165000px;}
.y14a{bottom:618.945000px;}
.y1ad{bottom:622.365000px;}
.y42{bottom:624.525000px;}
.ya0{bottom:626.685000px;}
.y124{bottom:631.005000px;}
.y1b7{bottom:632.085000px;}
.y17d{bottom:632.265000px;}
.yd0{bottom:632.445000px;}
.y10b{bottom:633.345000px;}
.y166{bottom:634.425000px;}
.y7e{bottom:636.585000px;}
.y149{bottom:640.725000px;}
.y16{bottom:641.265000px;}
.y1ac{bottom:644.145000px;}
.y41{bottom:646.305000px;}
.y9f{bottom:648.465000px;}
.yf2{bottom:649.005000px;}
.y123{bottom:652.785000px;}
.y165{bottom:656.205000px;}
.y7d{bottom:658.365000px;}
.y1b6{bottom:659.625000px;}
.y148{bottom:662.685000px;}
.y15{bottom:663.765000px;}
.y17c{bottom:665.925000px;}
.y62{bottom:668.265000px;}
.y9e{bottom:670.425000px;}
.ycf{bottom:672.225000px;}
.y122{bottom:674.565000px;}
.y1b5{bottom:675.105000px;}
.y164{bottom:677.985000px;}
.yf1{bottom:679.245000px;}
.y40{bottom:680.145000px;}
.y147{bottom:684.465000px;}
.y17b{bottom:687.885000px;}
.y61{bottom:690.045000px;}
.y9d{bottom:692.205000px;}
.y14{bottom:693.825000px;}
.y121{bottom:696.525000px;}
.y163{bottom:699.765000px;}
.y3f{bottom:701.925000px;}
.y1b4{bottom:702.645000px;}
.y146{bottom:706.245000px;}
.yce{bottom:706.425000px;}
.y17a{bottom:709.665000px;}
.y60{bottom:711.825000px;}
.y9c{bottom:713.985000px;}
.y120{bottom:718.305000px;}
.y162{bottom:721.725000px;}
.y3e{bottom:723.885000px;}
.y179{bottom:731.445000px;}
.y1b3{bottom:732.525000px;}
.y5f{bottom:733.605000px;}
.y9b{bottom:735.765000px;}
.y11f{bottom:740.085000px;}
.ycd{bottom:740.985000px;}
.y161{bottom:743.505000px;}
.y3d{bottom:745.665000px;}
.y13{bottom:750.165000px;}
.y1b2{bottom:750.345000px;}
.y1ab{bottom:753.225000px;}
.y5e{bottom:755.385000px;}
.y9a{bottom:757.725000px;}
.y145{bottom:761.865000px;}
.y160{bottom:765.285000px;}
.y3c{bottom:767.445000px;}
.y11e{bottom:773.925000px;}
.y12{bottom:774.465000px;}
.y1aa{bottom:775.185000px;}
.yc9{bottom:775.365000px;}
.y5d{bottom:777.345000px;}
.y99{bottom:779.505000px;}
.y1b1{bottom:780.225000px;}
.y144{bottom:783.645000px;}
.y15f{bottom:787.065000px;}
.y3b{bottom:789.225000px;}
.y5c{bottom:799.125000px;}
.y98{bottom:801.285000px;}
.y11{bottom:804.885000px;}
.y143{bottom:805.605000px;}
.y11d{bottom:807.765000px;}
.y178{bottom:808.845000px;}
.y3a{bottom:811.185000px;}
.y5b{bottom:820.950000px;}
.y97{bottom:823.110000px;}
.y142{bottom:827.430000px;}
.y11c{bottom:829.590000px;}
.y1b0{bottom:830.850000px;}
.y39{bottom:833.010000px;}
.y15e{bottom:842.730000px;}
.y96{bottom:844.890000px;}
.y141{bottom:849.210000px;}
.y11b{bottom:851.370000px;}
.yc6{bottom:854.430000px;}
.y38{bottom:854.790000px;}
.y10{bottom:863.610000px;}
.y15d{bottom:864.690000px;}
.y95{bottom:866.850000px;}
.y140{bottom:870.990000px;}
.y11a{bottom:873.150000px;}
.y37{bottom:876.570000px;}
.y15c{bottom:886.470000px;}
.y94{bottom:888.630000px;}
.y13f{bottom:892.770000px;}
.yf{bottom:894.570000px;}
.y119{bottom:895.110000px;}
.y36{bottom:898.350000px;}
.y15b{bottom:908.250000px;}
.y7c{bottom:910.410000px;}
.y13e{bottom:914.730000px;}
.y118{bottom:916.890000px;}
.y35{bottom:920.310000px;}
.ye{bottom:925.710000px;}
.yc5{bottom:927.150000px;}
.y15a{bottom:930.030000px;}
.y7b{bottom:932.190000px;}
.y117{bottom:938.670000px;}
.y34{bottom:942.090000px;}
.y13d{bottom:948.570000px;}
.y159{bottom:951.810000px;}
.y7a{bottom:954.150000px;}
.y116{bottom:960.450000px;}
.yc4{bottom:961.710000px;}
.y33{bottom:963.870000px;}
.y1a1{bottom:973.770000px;}
.y79{bottom:975.930000px;}
.y115{bottom:982.230000px;}
.yc{bottom:984.570000px;}
.y32{bottom:985.650000px;}
.y1a0{bottom:995.550000px;}
.yc3{bottom:996.090000px;}
.y78{bottom:997.710000px;}
.y114{bottom:1004.190000px;}
.y31{bottom:1007.610000px;}
.y77{bottom:1019.490000px;}
.y113{bottom:1025.970000px;}
.y30{bottom:1029.390000px;}
.yc2{bottom:1031.370000px;}
.ya{bottom:1038.570000px;}
.y76{bottom:1041.270000px;}
.y2f{bottom:1051.170000px;}
.y112{bottom:1059.810000px;}
.y75{bottom:1063.230000px;}
.y111{bottom:1081.620000px;}
.y2e{bottom:1085.040000px;}
.y110{bottom:1101.600000px;}
.y93{bottom:1104.660000px;}
.y2c{bottom:1121.400000px;}
.h11{height:13.200074px;}
.h19{height:34.380000px;}
.h18{height:34.560000px;}
.h3{height:47.321367px;}
.h2{height:47.344922px;}
.h15{height:47.901094px;}
.h12{height:49.898438px;}
.h16{height:52.998047px;}
.hf{height:53.573906px;}
.h6{height:54.000000px;}
.h1d{height:54.596250px;}
.h13{height:56.320312px;}
.hb{height:58.651172px;}
.he{height:62.327813px;}
.h1{height:63.360000px;}
.h1c{height:64.978594px;}
.h10{height:65.010937px;}
.h17{height:65.884219px;}
.h14{height:66.757500px;}
.h5{height:68.220000px;}
.hd{height:69.086250px;}
.h1a{height:72.720000px;}
.h7{height:75.093750px;}
.hc{height:78.367500px;}
.h1b{height:79.056000px;}
.h9{height:81.210938px;}
.ha{height:82.676953px;}
.h4{height:95.436000px;}
.h8{height:112.640625px;}
.h0{height:1188.000000px;}
.w5{width:6.675000px;}
.w6{width:13.348500px;}
.w7{width:235.155000px;}
.w1{width:249.735000px;}
.w9{width:263.010000px;}
.w8{width:290.550000px;}
.w2{width:412.095000px;}
.w3{width:694.410000px;}
.w4{width:809.610000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x24{left:11.880000px;}
.x20{left:19.800000px;}
.x1d{left:27.000000px;}
.x23{left:29.700000px;}
.x21{left:44.820000px;}
.x1e{left:49.320000px;}
.x8{left:53.820000px;}
.xd{left:55.260000px;}
.x1{left:57.240000px;}
.x26{left:59.400000px;}
.x9{left:76.320000px;}
.x1f{left:91.440000px;}
.x22{left:94.320000px;}
.x25{left:102.825000px;}
.x1a{left:106.965000px;}
.x29{left:108.036000px;}
.x18{left:110.565000px;}
.x1c{left:114.885000px;}
.x12{left:117.570000px;}
.x19{left:120.600000px;}
.x16{left:122.265000px;}
.x17{left:124.380000px;}
.x1b{left:128.520000px;}
.x14{left:136.080000px;}
.xa{left:162.030000px;}
.x4{left:163.470000px;}
.x6{left:225.435000px;}
.xb{left:237.630000px;}
.x7{left:240.735000px;}
.x13{left:289.155000px;}
.x5{left:319.755000px;}
.x3{left:448.815000px;}
.x10{left:452.325760px;}
.xc{left:455.662491px;}
.xe{left:472.035000px;}
.x2b{left:499.065000px;}
.x2a{left:526.065000px;}
.x15{left:579.705000px;}
.xf{left:654.045000px;}
.x27{left:797.550000px;}
.x11{left:861.990000px;}
.x28{left:864.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.478933pt;}
.ls1a{letter-spacing:-0.406933pt;}
.ls17{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls19{letter-spacing:-0.233067pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.022933pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:-0.007467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.112000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.232960pt;}
.ls11{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.271360pt;}
.ls8{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.663040pt;}
.lsb{letter-spacing:2.698667pt;}
.lsf{letter-spacing:8.960000pt;}
.ls12{letter-spacing:12.800000pt;}
.lsa{letter-spacing:663.168000pt;}
.ws3{word-spacing:-69.097067pt;}
.ws4{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.311360pt;}
.wsd{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.953067pt;}
.ws11{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.672427pt;}
.wsf{word-spacing:-14.536427pt;}
.ws14{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.448533pt;}
.ws16{word-spacing:-14.313067pt;}
.ws13{word-spacing:-13.808000pt;}
.ws15{word-spacing:-13.456000pt;}
.ws9{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws1{word-spacing:-10.241067pt;}
.ws17{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:0.144000pt;}
._6{margin-left:-4.036572pt;}
._5{margin-left:-2.868268pt;}
._d{margin-left:-1.808038pt;}
._0{margin-left:-0.900266pt;}
._1{width:1.043838pt;}
._2{width:2.656000pt;}
._3{width:3.771732pt;}
._4{width:4.834132pt;}
._a{width:5.745497pt;}
._9{width:7.065066pt;}
._b{width:8.393066pt;}
._13{width:9.399593pt;}
._7{width:10.649602pt;}
._8{width:11.972690pt;}
._12{width:12.975658pt;}
._2c{width:15.721078pt;}
._e{width:16.662922pt;}
._14{width:18.017044pt;}
._1a{width:19.136000pt;}
._16{width:20.547703pt;}
._17{width:21.946768pt;}
._1f{width:23.197362pt;}
._20{width:24.419846pt;}
._15{width:25.554156pt;}
._11{width:26.849103pt;}
._38{width:27.889398pt;}
._28{width:28.793203pt;}
._2a{width:29.962473pt;}
._29{width:31.508480pt;}
._21{width:32.737103pt;}
._22{width:33.662883pt;}
._2b{width:34.922981pt;}
._36{width:35.813266pt;}
._32{width:36.723642pt;}
._19{width:37.683318pt;}
._18{width:38.684278pt;}
._2f{width:39.970673pt;}
._2d{width:40.862956pt;}
._2e{width:41.787322pt;}
._1c{width:43.346092pt;}
._1b{width:44.319574pt;}
._1d{width:45.690703pt;}
._1e{width:47.440509pt;}
._34{width:48.702200pt;}
._30{width:51.873221pt;}
._31{width:53.151280pt;}
._33{width:55.111621pt;}
._26{width:56.995781pt;}
._27{width:57.920737pt;}
._35{width:58.880177pt;}
._39{width:61.271231pt;}
._37{width:62.369747pt;}
._3a{width:63.280468pt;}
._f{width:65.239040pt;}
._10{width:66.753090pt;}
._25{width:68.595259pt;}
._3b{width:440.714667pt;}
._24{width:441.984000pt;}
._c{width:454.202667pt;}
._3c{width:649.968000pt;}
._23{width:664.531029pt;}
.fsa{font-size:37.120000pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:2.245333pt;}
.y9{bottom:4.000000pt;}
.y5{bottom:9.600000pt;}
.y8{bottom:18.080000pt;}
.yd{bottom:18.240000pt;}
.y4{bottom:21.760000pt;}
.ycc{bottom:22.560000pt;}
.yb{bottom:24.000000pt;}
.y7{bottom:32.160000pt;}
.y3{bottom:34.080000pt;}
.yc8{bottom:34.560000pt;}
.y2a{bottom:36.266602pt;}
.ycb{bottom:40.200000pt;}
.yc1{bottom:45.280000pt;}
.y2d{bottom:45.600000pt;}
.y6{bottom:46.234667pt;}
.y2{bottom:46.394667pt;}
.yc7{bottom:52.160000pt;}
.yca{bottom:57.800000pt;}
.yf0{bottom:66.272000pt;}
.yed{bottom:68.032000pt;}
.y1a9{bottom:68.352000pt;}
.ye8{bottom:69.952000pt;}
.ya9{bottom:70.272000pt;}
.y1a4{bottom:73.152000pt;}
.y158{bottom:73.952000pt;}
.yc0{bottom:75.072000pt;}
.y74{bottom:76.992000pt;}
.y5a{bottom:78.912000pt;}
.yac{bottom:80.832000pt;}
.y1d8{bottom:81.152000pt;}
.y193{bottom:81.792000pt;}
.y1ca{bottom:82.432000pt;}
.y1e7{bottom:83.872000pt;}
.y13c{bottom:84.672000pt;}
.y10f{bottom:85.152000pt;}
.yef{bottom:85.792000pt;}
.y10a{bottom:86.112000pt;}
.yec{bottom:87.392000pt;}
.y1a8{bottom:87.712000pt;}
.ye7{bottom:89.312000pt;}
.ya8{bottom:89.632000pt;}
.y1a3{bottom:92.512000pt;}
.y1{bottom:92.672000pt;}
.y157{bottom:93.312000pt;}
.y177{bottom:94.432000pt;}
.y73{bottom:96.352000pt;}
.y59{bottom:98.272000pt;}
.yab{bottom:100.352000pt;}
.y1d7{bottom:100.512000pt;}
.y1c9{bottom:101.792000pt;}
.y1e6{bottom:103.232000pt;}
.y13b{bottom:104.032000pt;}
.ybf{bottom:105.152000pt;}
.yeb{bottom:106.752000pt;}
.y1a7{bottom:107.072000pt;}
.ye6{bottom:108.672000pt;}
.ya7{bottom:108.992000pt;}
.y192{bottom:111.872000pt;}
.y156{bottom:112.832000pt;}
.y176{bottom:113.792000pt;}
.y10e{bottom:115.232000pt;}
.y72{bottom:115.872000pt;}
.y109{bottom:116.192000pt;}
.y58{bottom:117.792000pt;}
.yaa{bottom:119.712000pt;}
.y1e5{bottom:122.592000pt;}
.y13a{bottom:123.392000pt;}
.yea{bottom:126.112000pt;}
.y1a6{bottom:126.432000pt;}
.ye5{bottom:128.032000pt;}
.y92{bottom:128.352000pt;}
.y1d6{bottom:130.592000pt;}
.y1a2{bottom:131.392000pt;}
.y1c8{bottom:131.872000pt;}
.y155{bottom:132.192000pt;}
.y175{bottom:133.312000pt;}
.y71{bottom:135.226667pt;}
.y57{bottom:137.146667pt;}
.ya6{bottom:139.066667pt;}
.y191{bottom:141.946667pt;}
.y10d{bottom:142.426667pt;}
.y139{bottom:142.906667pt;}
.yee{bottom:145.786667pt;}
.y108{bottom:146.266667pt;}
.ye4{bottom:147.546667pt;}
.y91{bottom:147.866667pt;}
.y1d5{bottom:150.106667pt;}
.y1c7{bottom:151.226667pt;}
.y154{bottom:151.546667pt;}
.y174{bottom:152.666667pt;}
.y70{bottom:154.586667pt;}
.ye9{bottom:156.186667pt;}
.y56{bottom:156.506667pt;}
.ya5{bottom:158.426667pt;}
.y190{bottom:161.306667pt;}
.y138{bottom:162.266667pt;}
.y1a5{bottom:165.306667pt;}
.ye3{bottom:166.906667pt;}
.y90{bottom:167.226667pt;}
.y1d4{bottom:169.466667pt;}
.y1c6{bottom:170.586667pt;}
.y153{bottom:170.906667pt;}
.y173{bottom:172.026667pt;}
.y6f{bottom:173.946667pt;}
.y55{bottom:175.866667pt;}
.y105{bottom:176.346667pt;}
.ya4{bottom:177.786667pt;}
.y18f{bottom:180.826667pt;}
.y137{bottom:181.626667pt;}
.y19f{bottom:184.666667pt;}
.ye2{bottom:186.266667pt;}
.y8f{bottom:186.586667pt;}
.y1d3{bottom:188.826667pt;}
.y1c5{bottom:189.946667pt;}
.y152{bottom:190.426667pt;}
.y172{bottom:191.386667pt;}
.y6e{bottom:193.306667pt;}
.y54{bottom:195.386667pt;}
.y104{bottom:195.706667pt;}
.ya3{bottom:197.306667pt;}
.y1e3{bottom:200.186667pt;}
.y136{bottom:200.986667pt;}
.y19e{bottom:204.026667pt;}
.y8e{bottom:205.946667pt;}
.y1d2{bottom:208.186667pt;}
.y29{bottom:209.466667pt;}
.y151{bottom:209.786667pt;}
.y18e{bottom:210.746667pt;}
.y6d{bottom:212.826667pt;}
.ybe{bottom:214.746667pt;}
.y103{bottom:215.066667pt;}
.ye1{bottom:216.346667pt;}
.ya2{bottom:216.666667pt;}
.y1e2{bottom:219.546667pt;}
.y135{bottom:220.346667pt;}
.y171{bottom:221.466667pt;}
.y19b{bottom:223.386667pt;}
.y53{bottom:225.306667pt;}
.y28{bottom:226.426667pt;}
.y1d1{bottom:227.546667pt;}
.y1c4{bottom:228.826667pt;}
.y150{bottom:229.146667pt;}
.y18d{bottom:230.266667pt;}
.y6c{bottom:232.186667pt;}
.ybd{bottom:234.106667pt;}
.y102{bottom:234.426667pt;}
.ye0{bottom:235.706667pt;}
.ya1{bottom:236.026667pt;}
.y134{bottom:239.866667pt;}
.y170{bottom:240.826667pt;}
.y19a{bottom:242.746667pt;}
.y52{bottom:244.826667pt;}
.y18c{bottom:249.626667pt;}
.y6b{bottom:251.546667pt;}
.ybc{bottom:253.466667pt;}
.y101{bottom:253.946667pt;}
.ydf{bottom:255.066667pt;}
.y8d{bottom:255.386667pt;}
.y1d0{bottom:257.626667pt;}
.y27{bottom:258.266667pt;}
.y1c3{bottom:258.906667pt;}
.y133{bottom:259.226667pt;}
.y16f{bottom:260.346667pt;}
.y194{bottom:262.266667pt;}
.y51{bottom:264.186667pt;}
.y18b{bottom:268.986667pt;}
.y6a{bottom:270.906667pt;}
.ybb{bottom:272.826667pt;}
.y100{bottom:273.306667pt;}
.y26{bottom:273.466667pt;}
.yde{bottom:274.586667pt;}
.y8c{bottom:274.746667pt;}
.y1cf{bottom:277.146667pt;}
.y1c2{bottom:278.266667pt;}
.y132{bottom:278.586667pt;}
.y16e{bottom:279.706667pt;}
.yae{bottom:281.626667pt;}
.y50{bottom:283.586667pt;}
.y18a{bottom:288.386667pt;}
.y25{bottom:288.866667pt;}
.y69{bottom:290.306667pt;}
.yba{bottom:292.386667pt;}
.yff{bottom:292.706667pt;}
.ydd{bottom:293.986667pt;}
.y8b{bottom:294.306667pt;}
.y1ce{bottom:296.546667pt;}
.y1c1{bottom:297.666667pt;}
.y131{bottom:297.986667pt;}
.y16d{bottom:299.106667pt;}
.y199{bottom:301.026667pt;}
.y4f{bottom:302.946667pt;}
.y24{bottom:304.226667pt;}
.y189{bottom:307.906667pt;}
.y68{bottom:309.826667pt;}
.yad{bottom:311.746667pt;}
.yfe{bottom:312.066667pt;}
.ydc{bottom:313.346667pt;}
.y8a{bottom:313.666667pt;}
.y1cd{bottom:315.906667pt;}
.y1c0{bottom:317.026667pt;}
.y130{bottom:317.506667pt;}
.y16c{bottom:318.466667pt;}
.y23{bottom:319.586667pt;}
.y198{bottom:320.386667pt;}
.y4e{bottom:322.306667pt;}
.y188{bottom:327.266667pt;}
.y67{bottom:329.186667pt;}
.yb9{bottom:331.106667pt;}
.yfd{bottom:331.586667pt;}
.ydb{bottom:332.706667pt;}
.y89{bottom:333.026667pt;}
.y22{bottom:334.946667pt;}
.y1cc{bottom:335.266667pt;}
.y1bf{bottom:336.546667pt;}
.y12f{bottom:336.866667pt;}
.y16b{bottom:337.826667pt;}
.y197{bottom:339.906667pt;}
.y4d{bottom:341.826667pt;}
.y187{bottom:346.626667pt;}
.y66{bottom:348.546667pt;}
.y21{bottom:350.306667pt;}
.yb8{bottom:350.466667pt;}
.yfc{bottom:350.946667pt;}
.yda{bottom:352.226667pt;}
.y88{bottom:352.386667pt;}
.y1be{bottom:355.906667pt;}
.y12e{bottom:356.226667pt;}
.y1e1{bottom:357.346667pt;}
.y196{bottom:359.266667pt;}
.y4c{bottom:361.186667pt;}
.y1cb{bottom:365.346667pt;}
.y20{bottom:365.506667pt;}
.y186{bottom:365.986667pt;}
.y65{bottom:367.906667pt;}
.yb7{bottom:369.826667pt;}
.yfb{bottom:370.306667pt;}
.yd9{bottom:371.586667pt;}
.y87{bottom:371.906667pt;}
.y12d{bottom:375.586667pt;}
.y1e0{bottom:376.706667pt;}
.y195{bottom:378.626667pt;}
.y4b{bottom:380.546667pt;}
.y1f{bottom:380.866667pt;}
.y1bd{bottom:384.706667pt;}
.y185{bottom:385.346667pt;}
.y64{bottom:387.426667pt;}
.yb6{bottom:389.346667pt;}
.yfa{bottom:389.666667pt;}
.yd8{bottom:390.946667pt;}
.y86{bottom:391.266667pt;}
.y12c{bottom:394.946667pt;}
.y1df{bottom:396.066667pt;}
.y1e{bottom:396.226667pt;}
.y16a{bottom:397.986667pt;}
.y4a{bottom:399.906667pt;}
.y1e4{bottom:406.786667pt;}
.yb5{bottom:408.706667pt;}
.yf9{bottom:409.026667pt;}
.yd7{bottom:410.306667pt;}
.y85{bottom:410.626667pt;}
.y1d{bottom:411.586667pt;}
.y12b{bottom:414.466667pt;}
.y184{bottom:415.426667pt;}
.y63{bottom:417.346667pt;}
.y49{bottom:419.426667pt;}
.y1bc{bottom:420.226667pt;}
.y1de{bottom:426.146667pt;}
.y1c{bottom:426.946667pt;}
.yb4{bottom:428.066667pt;}
.yf8{bottom:428.546667pt;}
.yd6{bottom:429.666667pt;}
.y84{bottom:429.986667pt;}
.y12a{bottom:433.826667pt;}
.y183{bottom:434.946667pt;}
.y169{bottom:436.866667pt;}
.y48{bottom:438.786667pt;}
.y1b{bottom:442.306667pt;}
.y1dd{bottom:445.506667pt;}
.yb3{bottom:447.426667pt;}
.yf7{bottom:447.906667pt;}
.yd5{bottom:449.186667pt;}
.y83{bottom:449.346667pt;}
.y14f{bottom:453.186667pt;}
.y182{bottom:454.306667pt;}
.y1bb{bottom:454.626667pt;}
.y168{bottom:456.226667pt;}
.y1a{bottom:457.506667pt;}
.y47{bottom:458.146667pt;}
.y129{bottom:463.906667pt;}
.y1dc{bottom:464.866667pt;}
.yb2{bottom:466.946667pt;}
.yf6{bottom:467.266667pt;}
.yd4{bottom:468.546667pt;}
.y82{bottom:468.866667pt;}
.y1ba{bottom:470.466667pt;}
.y14e{bottom:472.546667pt;}
.y19{bottom:472.866667pt;}
.y181{bottom:473.666667pt;}
.y19d{bottom:475.586667pt;}
.y46{bottom:477.506667pt;}
.y107{bottom:477.986667pt;}
.y128{bottom:483.266667pt;}
.y1db{bottom:484.386667pt;}
.yb1{bottom:486.306667pt;}
.yf5{bottom:486.626667pt;}
.yd3{bottom:487.906667pt;}
.y18{bottom:488.226667pt;}
.y14d{bottom:492.066667pt;}
.y180{bottom:493.026667pt;}
.y19c{bottom:494.946667pt;}
.y45{bottom:496.866667pt;}
.y106{bottom:497.346667pt;}
.y127{bottom:502.626667pt;}
.y1da{bottom:503.746667pt;}
.yb0{bottom:505.693333pt;}
.yd2{bottom:507.293333pt;}
.y81{bottom:507.613333pt;}
.y14c{bottom:511.453333pt;}
.y17f{bottom:512.413333pt;}
.y1b9{bottom:512.893333pt;}
.y1af{bottom:514.493333pt;}
.y44{bottom:516.413333pt;}
.yf4{bottom:516.733333pt;}
.y17{bottom:516.893333pt;}
.y126{bottom:522.013333pt;}
.y1d9{bottom:523.133333pt;}
.yaf{bottom:525.053333pt;}
.yd1{bottom:526.813333pt;}
.y80{bottom:526.973333pt;}
.y14b{bottom:530.813333pt;}
.y17e{bottom:531.933333pt;}
.y10c{bottom:532.893333pt;}
.y1ae{bottom:533.853333pt;}
.y43{bottom:535.773333pt;}
.y1b8{bottom:537.373333pt;}
.y125{bottom:541.533333pt;}
.y167{bottom:544.413333pt;}
.y7f{bottom:546.493333pt;}
.yf3{bottom:546.813333pt;}
.y14a{bottom:550.173333pt;}
.y1ad{bottom:553.213333pt;}
.y42{bottom:555.133333pt;}
.ya0{bottom:557.053333pt;}
.y124{bottom:560.893333pt;}
.y1b7{bottom:561.853333pt;}
.y17d{bottom:562.013333pt;}
.yd0{bottom:562.173333pt;}
.y10b{bottom:562.973333pt;}
.y166{bottom:563.933333pt;}
.y7e{bottom:565.853333pt;}
.y149{bottom:569.533333pt;}
.y16{bottom:570.013333pt;}
.y1ac{bottom:572.573333pt;}
.y41{bottom:574.493333pt;}
.y9f{bottom:576.413333pt;}
.yf2{bottom:576.893333pt;}
.y123{bottom:580.253333pt;}
.y165{bottom:583.293333pt;}
.y7d{bottom:585.213333pt;}
.y1b6{bottom:586.333333pt;}
.y148{bottom:589.053333pt;}
.y15{bottom:590.013333pt;}
.y17c{bottom:591.933333pt;}
.y62{bottom:594.013333pt;}
.y9e{bottom:595.933333pt;}
.ycf{bottom:597.533333pt;}
.y122{bottom:599.613333pt;}
.y1b5{bottom:600.093333pt;}
.y164{bottom:602.653333pt;}
.yf1{bottom:603.773333pt;}
.y40{bottom:604.573333pt;}
.y147{bottom:608.413333pt;}
.y17b{bottom:611.453333pt;}
.y61{bottom:613.373333pt;}
.y9d{bottom:615.293333pt;}
.y14{bottom:616.733333pt;}
.y121{bottom:619.133333pt;}
.y163{bottom:622.013333pt;}
.y3f{bottom:623.933333pt;}
.y1b4{bottom:624.573333pt;}
.y146{bottom:627.773333pt;}
.yce{bottom:627.933333pt;}
.y17a{bottom:630.813333pt;}
.y60{bottom:632.733333pt;}
.y9c{bottom:634.653333pt;}
.y120{bottom:638.493333pt;}
.y162{bottom:641.533333pt;}
.y3e{bottom:643.453333pt;}
.y179{bottom:650.173333pt;}
.y1b3{bottom:651.133333pt;}
.y5f{bottom:652.093333pt;}
.y9b{bottom:654.013333pt;}
.y11f{bottom:657.853333pt;}
.ycd{bottom:658.653333pt;}
.y161{bottom:660.893333pt;}
.y3d{bottom:662.813333pt;}
.y13{bottom:666.813333pt;}
.y1b2{bottom:666.973333pt;}
.y1ab{bottom:669.533333pt;}
.y5e{bottom:671.453333pt;}
.y9a{bottom:673.533333pt;}
.y145{bottom:677.213333pt;}
.y160{bottom:680.253333pt;}
.y3c{bottom:682.173333pt;}
.y11e{bottom:687.933333pt;}
.y12{bottom:688.413333pt;}
.y1aa{bottom:689.053333pt;}
.yc9{bottom:689.213333pt;}
.y5d{bottom:690.973333pt;}
.y99{bottom:692.893333pt;}
.y1b1{bottom:693.533333pt;}
.y144{bottom:696.573333pt;}
.y15f{bottom:699.613333pt;}
.y3b{bottom:701.533333pt;}
.y5c{bottom:710.333333pt;}
.y98{bottom:712.253333pt;}
.y11{bottom:715.453333pt;}
.y143{bottom:716.093333pt;}
.y11d{bottom:718.013333pt;}
.y178{bottom:718.973333pt;}
.y3a{bottom:721.053333pt;}
.y5b{bottom:729.733333pt;}
.y97{bottom:731.653333pt;}
.y142{bottom:735.493333pt;}
.y11c{bottom:737.413333pt;}
.y1b0{bottom:738.533333pt;}
.y39{bottom:740.453333pt;}
.y15e{bottom:749.093333pt;}
.y96{bottom:751.013333pt;}
.y141{bottom:754.853333pt;}
.y11b{bottom:756.773333pt;}
.yc6{bottom:759.493333pt;}
.y38{bottom:759.813333pt;}
.y10{bottom:767.653333pt;}
.y15d{bottom:768.613333pt;}
.y95{bottom:770.533333pt;}
.y140{bottom:774.213333pt;}
.y11a{bottom:776.133333pt;}
.y37{bottom:779.173333pt;}
.y15c{bottom:787.973333pt;}
.y94{bottom:789.893333pt;}
.y13f{bottom:793.573333pt;}
.yf{bottom:795.173333pt;}
.y119{bottom:795.653333pt;}
.y36{bottom:798.533333pt;}
.y15b{bottom:807.333333pt;}
.y7c{bottom:809.253333pt;}
.y13e{bottom:813.093333pt;}
.y118{bottom:815.013333pt;}
.y35{bottom:818.053333pt;}
.ye{bottom:822.853333pt;}
.yc5{bottom:824.133333pt;}
.y15a{bottom:826.693333pt;}
.y7b{bottom:828.613333pt;}
.y117{bottom:834.373333pt;}
.y34{bottom:837.413333pt;}
.y13d{bottom:843.173333pt;}
.y159{bottom:846.053333pt;}
.y7a{bottom:848.133333pt;}
.y116{bottom:853.733333pt;}
.yc4{bottom:854.853333pt;}
.y33{bottom:856.773333pt;}
.y1a1{bottom:865.573333pt;}
.y79{bottom:867.493333pt;}
.y115{bottom:873.093333pt;}
.yc{bottom:875.173333pt;}
.y32{bottom:876.133333pt;}
.y1a0{bottom:884.933333pt;}
.yc3{bottom:885.413333pt;}
.y78{bottom:886.853333pt;}
.y114{bottom:892.613333pt;}
.y31{bottom:895.653333pt;}
.y77{bottom:906.213333pt;}
.y113{bottom:911.973333pt;}
.y30{bottom:915.013333pt;}
.yc2{bottom:916.773333pt;}
.ya{bottom:923.173333pt;}
.y76{bottom:925.573333pt;}
.y2f{bottom:934.373333pt;}
.y112{bottom:942.053333pt;}
.y75{bottom:945.093333pt;}
.y111{bottom:961.440000pt;}
.y2e{bottom:964.480000pt;}
.y110{bottom:979.200000pt;}
.y93{bottom:981.920000pt;}
.y2c{bottom:996.800000pt;}
.h11{height:11.733399pt;}
.h19{height:30.560000pt;}
.h18{height:30.720000pt;}
.h3{height:42.063437pt;}
.h2{height:42.084375pt;}
.h15{height:42.578750pt;}
.h12{height:44.354167pt;}
.h16{height:47.109375pt;}
.hf{height:47.621250pt;}
.h6{height:48.000000pt;}
.h1d{height:48.530000pt;}
.h13{height:50.062500pt;}
.hb{height:52.134375pt;}
.he{height:55.402500pt;}
.h1{height:56.320000pt;}
.h1c{height:57.758750pt;}
.h10{height:57.787500pt;}
.h17{height:58.563750pt;}
.h14{height:59.340000pt;}
.h5{height:60.640000pt;}
.hd{height:61.410000pt;}
.h1a{height:64.640000pt;}
.h7{height:66.750000pt;}
.hc{height:69.660000pt;}
.h1b{height:70.272000pt;}
.h9{height:72.187500pt;}
.ha{height:73.490625pt;}
.h4{height:84.832000pt;}
.h8{height:100.125000pt;}
.h0{height:1056.000000pt;}
.w5{width:5.933333pt;}
.w6{width:11.865333pt;}
.w7{width:209.026667pt;}
.w1{width:221.986667pt;}
.w9{width:233.786667pt;}
.w8{width:258.266667pt;}
.w2{width:366.306667pt;}
.w3{width:617.253333pt;}
.w4{width:719.653333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x24{left:10.560000pt;}
.x20{left:17.600000pt;}
.x1d{left:24.000000pt;}
.x23{left:26.400000pt;}
.x21{left:39.840000pt;}
.x1e{left:43.840000pt;}
.x8{left:47.840000pt;}
.xd{left:49.120000pt;}
.x1{left:50.880000pt;}
.x26{left:52.800000pt;}
.x9{left:67.840000pt;}
.x1f{left:81.280000pt;}
.x22{left:83.840000pt;}
.x25{left:91.400000pt;}
.x1a{left:95.080000pt;}
.x29{left:96.032000pt;}
.x18{left:98.280000pt;}
.x1c{left:102.120000pt;}
.x12{left:104.506667pt;}
.x19{left:107.200000pt;}
.x16{left:108.680000pt;}
.x17{left:110.560000pt;}
.x1b{left:114.240000pt;}
.x14{left:120.960000pt;}
.xa{left:144.026667pt;}
.x4{left:145.306667pt;}
.x6{left:200.386667pt;}
.xb{left:211.226667pt;}
.x7{left:213.986667pt;}
.x13{left:257.026667pt;}
.x5{left:284.226667pt;}
.x3{left:398.946667pt;}
.x10{left:402.067342pt;}
.xc{left:405.033325pt;}
.xe{left:419.586667pt;}
.x2b{left:443.613333pt;}
.x2a{left:467.613333pt;}
.x15{left:515.293333pt;}
.xf{left:581.373333pt;}
.x27{left:708.933333pt;}
.x11{left:766.213333pt;}
.x28{left:768.133333pt;}
}




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