
    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_bf15015ba3f4980acb28e302.woff2')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_852de65b6ccccfb1b8bb1e35.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7ed19936ae83494b2fa172c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239258;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_6a2c388c97735c375beaf1f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242883,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247359,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-55.334520px;}
.v5{vertical-align:-53.952000px;}
.v6{vertical-align:-47.956584px;}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:36.000000px;}
.v7{vertical-align:53.952000px;}
.v3{vertical-align:60.000000px;}
.ls1d{letter-spacing:-1.728000px;}
.ls1c{letter-spacing:-1.512000px;}
.ls1b{letter-spacing:-1.458000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.096000px;}
.ls10{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.396000px;}
.lsc{letter-spacing:0.528000px;}
.ls2{letter-spacing:0.636000px;}
.lse{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.858000px;}
.lsb{letter-spacing:0.990000px;}
.ls12{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.392000px;}
.ls13{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.500000px;}
.ls0{letter-spacing:1.512000px;}
.lsd{letter-spacing:1.536000px;}
.ls15{letter-spacing:1.566000px;}
.ls9{letter-spacing:1.716000px;}
.ls7{letter-spacing:1.914000px;}
.ls6{letter-spacing:2.046000px;}
.ls16{letter-spacing:2.970000px;}
.ls17{letter-spacing:3.024000px;}
.ls1a{letter-spacing:4.379400px;}
.ls18{letter-spacing:4.482000px;}
.ls19{letter-spacing:4.536000px;}
.ls5{letter-spacing:64.440606px;}
.ls3{letter-spacing:275.229156px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-45.000000px;}
.ws8{word-spacing:-16.500000px;}
.wsb{word-spacing:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.488000px;}
.ws3{word-spacing:-12.768000px;}
.wsc{word-spacing:-12.042000px;}
.ws5{word-spacing:-12.000000px;}
.wsd{word-spacing:-11.988000px;}
.wse{word-spacing:-11.772000px;}
.ws7{word-spacing:-8.064000px;}
.ws3c{word-spacing:-7.705800px;}
.ws28{word-spacing:-7.506000px;}
.ws30{word-spacing:-6.517800px;}
.ws2c{word-spacing:-6.112800px;}
.ws19{word-spacing:-5.994000px;}
.ws29{word-spacing:-5.626800px;}
.ws33{word-spacing:-4.492800px;}
.ws18{word-spacing:-4.482000px;}
.ws27{word-spacing:-3.753000px;}
.ws1e{word-spacing:-3.024000px;}
.ws2d{word-spacing:-2.997000px;}
.ws32{word-spacing:-2.338200px;}
.ws2f{word-spacing:-2.241000px;}
.ws16{word-spacing:-1.512000px;}
.ws31{word-spacing:-1.458000px;}
.ws17{word-spacing:-0.756000px;}
.ws2b{word-spacing:-0.097200px;}
.ws2{word-spacing:0.000000px;}
.ws1a{word-spacing:0.729000px;}
.ws20{word-spacing:0.756000px;}
.ws13{word-spacing:0.768000px;}
.ws11{word-spacing:1.392000px;}
.ws12{word-spacing:1.488000px;}
.ws1f{word-spacing:1.512000px;}
.wsf{word-spacing:1.914000px;}
.ws26{word-spacing:2.138400px;}
.ws23{word-spacing:2.241000px;}
.ws38{word-spacing:2.673000px;}
.ws1c{word-spacing:2.997000px;}
.ws2a{word-spacing:3.024000px;}
.ws21{word-spacing:3.753000px;}
.ws3d{word-spacing:4.320000px;}
.ws24{word-spacing:4.363200px;}
.ws1d{word-spacing:4.395600px;}
.ws25{word-spacing:4.482000px;}
.ws3f{word-spacing:4.509000px;}
.ws15{word-spacing:5.238000px;}
.ws40{word-spacing:5.853600px;}
.ws1b{word-spacing:5.994000px;}
.ws37{word-spacing:6.750000px;}
.ws22{word-spacing:7.506000px;}
.ws3e{word-spacing:9.018000px;}
.ws14{word-spacing:10.476000px;}
.ws3b{word-spacing:11.869200px;}
.ws2e{word-spacing:11.988000px;}
.ws36{word-spacing:13.500000px;}
.ws39{word-spacing:15.012000px;}
.ws3a{word-spacing:16.524000px;}
.ws34{word-spacing:17.982000px;}
.ws35{word-spacing:19.494000px;}
.ws6{word-spacing:109.536000px;}
.ws41{word-spacing:135.000000px;}
.ws42{word-spacing:163.458000px;}
.ws4{word-spacing:205.718016px;}
.ws10{word-spacing:1841.966400px;}
._2e{margin-left:-12.000000px;}
._2f{margin-left:-10.512000px;}
._e{margin-left:-8.477952px;}
._5{margin-left:-7.392000px;}
._13{margin-left:-6.000000px;}
._8{margin-left:-4.968000px;}
._7{margin-left:-3.132000px;}
._6{margin-left:-2.112000px;}
._9{margin-left:-1.092000px;}
._1{width:1.056000px;}
._0{width:2.112000px;}
._3{width:3.240000px;}
._4{width:4.344000px;}
._d{width:5.448000px;}
._18{width:6.612000px;}
._12{width:7.836000px;}
._10{width:9.360000px;}
._11{width:10.656000px;}
._17{width:12.240000px;}
._c{width:13.608000px;}
._16{width:17.352000px;}
._14{width:18.648000px;}
._30{width:20.028000px;}
._19{width:21.300000px;}
._32{width:65.328000px;}
._3a{width:78.630000px;}
._3d{width:80.142000px;}
._1d{width:121.536000px;}
._28{width:123.024000px;}
._27{width:130.560000px;}
._1b{width:132.048000px;}
._3f{width:135.654000px;}
._a{width:136.752000px;}
._36{width:141.768000px;}
._39{width:147.588000px;}
._3c{width:149.100000px;}
._38{width:159.042000px;}
._3b{width:162.546000px;}
._3e{width:164.004000px;}
._40{width:178.470000px;}
._34{width:212.888166px;}
._21{width:234.192000px;}
._f{width:247.579008px;}
._1c{width:302.892000px;}
._25{width:350.028000px;}
._1e{width:358.284000px;}
._37{width:363.696000px;}
._26{width:376.716000px;}
._2a{width:426.492000px;}
._2b{width:435.516000px;}
._20{width:453.228000px;}
._1f{width:490.524000px;}
._23{width:510.300000px;}
._22{width:515.052000px;}
._33{width:527.200110px;}
._29{width:531.036000px;}
._24{width:541.644000px;}
._1a{width:549.708000px;}
._2c{width:556.668000px;}
._35{width:747.667596px;}
._2{width:1751.316000px;}
._31{width:1844.580000px;}
._2d{width:1854.444000px;}
._15{width:1868.580000px;}
._b{width:1879.500000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.256000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:51.072000px;}
.fs8{font-size:53.952000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:54.528000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y110{bottom:79.500000px;}
.y1{bottom:88.875000px;}
.y10c{bottom:127.500000px;}
.yfe{bottom:129.750000px;}
.y3c{bottom:130.125000px;}
.y191{bottom:131.250000px;}
.y7b{bottom:132.375000px;}
.y10{bottom:133.125000px;}
.y10b{bottom:142.500000px;}
.ya8{bottom:143.250000px;}
.yfd{bottom:144.750000px;}
.y3b{bottom:145.125000px;}
.y7a{bottom:147.375000px;}
.yf{bottom:148.125000px;}
.ycc{bottom:150.375000px;}
.y10a{bottom:157.500000px;}
.yfc{bottom:159.750000px;}
.y3a{bottom:160.125000px;}
.y79{bottom:162.375000px;}
.y109{bottom:172.500000px;}
.yfb{bottom:174.750000px;}
.y39{bottom:175.125000px;}
.ye{bottom:175.875000px;}
.y78{bottom:177.375000px;}
.ya7{bottom:180.000000px;}
.y108{bottom:187.500000px;}
.yfa{bottom:189.750000px;}
.y38{bottom:190.125000px;}
.y77{bottom:192.375000px;}
.ya6{bottom:198.375000px;}
.y107{bottom:202.500000px;}
.yf9{bottom:204.750000px;}
.y37{bottom:205.125000px;}
.y76{bottom:207.375000px;}
.y1b0{bottom:211.875000px;}
.ycb{bottom:216.375000px;}
.ya5{bottom:216.750000px;}
.y106{bottom:217.500000px;}
.yf8{bottom:219.750000px;}
.y36{bottom:220.125000px;}
.y75{bottom:222.375000px;}
.y132{bottom:227.934000px;}
.yca{bottom:228.375000px;}
.y105{bottom:232.500000px;}
.y1af{bottom:233.625000px;}
.yf7{bottom:234.750000px;}
.y35{bottom:235.125000px;}
.y74{bottom:237.375000px;}
.yc9{bottom:240.375000px;}
.y131{bottom:241.422000px;}
.y18f{bottom:242.250000px;}
.y1ae{bottom:247.125000px;}
.y104{bottom:247.500000px;}
.yf6{bottom:249.750000px;}
.y34{bottom:250.125000px;}
.y69{bottom:252.375000px;}
.ya4{bottom:259.125000px;}
.y1ad{bottom:260.625000px;}
.y103{bottom:262.500000px;}
.yf5{bottom:264.750000px;}
.y33{bottom:265.125000px;}
.y68{bottom:267.375000px;}
.y130{bottom:268.398000px;}
.y1ac{bottom:274.125000px;}
.yc8{bottom:276.375000px;}
.yd{bottom:276.750000px;}
.y102{bottom:277.500000px;}
.y32{bottom:280.125000px;}
.y67{bottom:282.375000px;}
.yc7{bottom:288.375000px;}
.ya3{bottom:289.125000px;}
.yc{bottom:291.750000px;}
.y13a{bottom:292.376292px;}
.yf4{bottom:292.500000px;}
.y31{bottom:295.125000px;}
.y12f{bottom:295.374000px;}
.y1ab{bottom:296.250000px;}
.y66{bottom:297.375000px;}
.yc6{bottom:300.375000px;}
.yb{bottom:306.750000px;}
.y101{bottom:307.500000px;}
.y8a{bottom:310.125000px;}
.y139{bottom:311.858865px;}
.y65{bottom:312.375000px;}
.y1aa{bottom:318.000000px;}
.y12e{bottom:322.350000px;}
.y100{bottom:322.500000px;}
.y89{bottom:325.125000px;}
.y64{bottom:327.375000px;}
.y190{bottom:328.454934px;}
.y1a9{bottom:331.500000px;}
.ya2{bottom:334.125000px;}
.ya{bottom:334.875000px;}
.yf3{bottom:337.500000px;}
.y73{bottom:340.125000px;}
.y63{bottom:342.375000px;}
.ya1{bottom:349.125000px;}
.y12d{bottom:349.326000px;}
.yf2{bottom:352.500000px;}
.y1a8{bottom:353.625000px;}
.y72{bottom:355.125000px;}
.y62{bottom:357.375000px;}
.y1a7{bottom:367.125000px;}
.yf1{bottom:367.500000px;}
.y71{bottom:370.125000px;}
.y61{bottom:372.375000px;}
.y12c{bottom:376.302000px;}
.y18e{bottom:378.000000px;}
.y1a6{bottom:380.625000px;}
.yf0{bottom:382.500000px;}
.y70{bottom:385.125000px;}
.y30{bottom:387.375000px;}
.y146{bottom:387.783287px;}
.y1a5{bottom:394.125000px;}
.yef{bottom:397.500000px;}
.y18d{bottom:399.750000px;}
.y6f{bottom:400.125000px;}
.y2f{bottom:402.375000px;}
.y12b{bottom:403.278000px;}
.y145{bottom:405.767427px;}
.yee{bottom:412.500000px;}
.y60{bottom:415.125000px;}
.y1a4{bottom:416.250000px;}
.y12a{bottom:416.766000px;}
.y2e{bottom:417.375000px;}
.yc5{bottom:420.375000px;}
.yb1{bottom:421.125000px;}
.y144{bottom:425.250000px;}
.yed{bottom:427.500000px;}
.y6e{bottom:430.125000px;}
.y129{bottom:430.254000px;}
.y90{bottom:432.375000px;}
.yb0{bottom:436.125000px;}
.y1a3{bottom:438.000000px;}
.y2d{bottom:438.375000px;}
.yec{bottom:442.500000px;}
.y18c{bottom:444.000000px;}
.y6d{bottom:445.125000px;}
.y8f{bottom:447.375000px;}
.y2c{bottom:450.375000px;}
.yaf{bottom:451.125000px;}
.y9{bottom:456.375000px;}
.y128{bottom:457.230000px;}
.yeb{bottom:457.500000px;}
.y6c{bottom:460.125000px;}
.y2b{bottom:462.375000px;}
.yae{bottom:466.125000px;}
.y8{bottom:471.375000px;}
.yea{bottom:472.500000px;}
.y138{bottom:473.714865px;}
.y5f{bottom:475.125000px;}
.y2a{bottom:477.375000px;}
.y18b{bottom:479.250000px;}
.yad{bottom:481.125000px;}
.y1a2{bottom:481.875000px;}
.y127{bottom:484.206000px;}
.ye9{bottom:487.500000px;}
.y137{bottom:488.701719px;}
.y5e{bottom:490.125000px;}
.y8e{bottom:492.375000px;}
.y18a{bottom:492.750000px;}
.y10f{bottom:501.750000px;}
.yff{bottom:502.500000px;}
.y136{bottom:503.688573px;}
.y1a1{bottom:504.000000px;}
.y5d{bottom:505.125000px;}
.y178{bottom:505.126950px;}
.y189{bottom:506.250000px;}
.y1cc{bottom:507.000000px;}
.y161{bottom:507.751350px;}
.y29{bottom:510.375000px;}
.yac{bottom:511.125000px;}
.y126{bottom:511.182000px;}
.ye8{bottom:517.500000px;}
.y177{bottom:518.626950px;}
.y188{bottom:519.750000px;}
.y5c{bottom:520.125000px;}
.y7{bottom:520.500000px;}
.y160{bottom:521.251350px;}
.y28{bottom:522.375000px;}
.yab{bottom:526.125000px;}
.y176{bottom:532.126950px;}
.ye7{bottom:532.500000px;}
.y1cb{bottom:534.000000px;}
.y5b{bottom:535.125000px;}
.y27{bottom:537.375000px;}
.y125{bottom:538.158000px;}
.y1a0{bottom:539.625000px;}
.yaa{bottom:541.125000px;}
.y15f{bottom:546.376200px;}
.y6{bottom:547.500000px;}
.y5a{bottom:550.125000px;}
.y88{bottom:552.375000px;}
.y19f{bottom:553.125000px;}
.y175{bottom:553.876800px;}
.ya9{bottom:556.125000px;}
.y15e{bottom:559.876200px;}
.ye6{bottom:562.500000px;}
.y59{bottom:565.125000px;}
.y124{bottom:565.134000px;}
.y19e{bottom:566.625000px;}
.y26{bottom:567.375000px;}
.y174{bottom:567.376800px;}
.y1ca{bottom:569.625000px;}
.y15d{bottom:573.376200px;}
.y10e{bottom:573.750000px;}
.y5{bottom:574.500000px;}
.ye5{bottom:577.500000px;}
.y123{bottom:578.622000px;}
.y58{bottom:580.125000px;}
.y173{bottom:580.876800px;}
.y25{bottom:582.375000px;}
.y15c{bottom:586.876200px;}
.y19d{bottom:588.375000px;}
.y1c9{bottom:591.750000px;}
.y172{bottom:594.376800px;}
.y57{bottom:595.125000px;}
.y87{bottom:597.375000px;}
.y187{bottom:599.250000px;}
.y4{bottom:601.500000px;}
.y122{bottom:605.598000px;}
.yc4{bottom:606.375000px;}
.y56{bottom:610.125000px;}
.y19c{bottom:610.500000px;}
.y15b{bottom:611.625750px;}
.y86{bottom:612.375000px;}
.y186{bottom:612.750000px;}
.y1c8{bottom:613.500000px;}
.y171{bottom:616.501950px;}
.yc3{bottom:618.375000px;}
.y121{bottom:619.086000px;}
.y55{bottom:625.125000px;}
.y15a{bottom:625.125750px;}
.ya0{bottom:626.250000px;}
.y13f{bottom:626.578584px;}
.y1c7{bottom:627.000000px;}
.y85{bottom:627.375000px;}
.y170{bottom:630.001950px;}
.yc2{bottom:630.375000px;}
.y19b{bottom:632.250000px;}
.y159{bottom:638.625750px;}
.y13e{bottom:640.066584px;}
.y54{bottom:640.125000px;}
.y1c6{bottom:640.500000px;}
.y84{bottom:642.375000px;}
.y120{bottom:646.062000px;}
.y24{bottom:650.990037px;}
.y16f{bottom:651.751800px;}
.y13d{bottom:653.554584px;}
.y1c5{bottom:654.000000px;}
.y19a{bottom:654.375000px;}
.y53{bottom:655.125000px;}
.y83{bottom:657.375000px;}
.yc1{bottom:660.375000px;}
.y9f{bottom:663.000000px;}
.y158{bottom:663.750600px;}
.y16e{bottom:665.251800px;}
.y52{bottom:670.125000px;}
.y82{bottom:672.375000px;}
.y11f{bottom:673.038000px;}
.y1c4{bottom:676.125000px;}
.y199{bottom:676.500000px;}
.y157{bottom:677.250600px;}
.y16d{bottom:678.751800px;}
.y9e{bottom:681.375000px;}
.y23{bottom:684.708630px;}
.y6b{bottom:685.125000px;}
.y11e{bottom:686.526000px;}
.y185{bottom:687.012000px;}
.y81{bottom:687.375000px;}
.y1c3{bottom:689.625000px;}
.y198{bottom:690.000000px;}
.y9d{bottom:699.750000px;}
.y51{bottom:700.125000px;}
.y184{bottom:700.500000px;}
.y16c{bottom:700.876950px;}
.y156{bottom:702.000150px;}
.y80{bottom:702.375000px;}
.ye4{bottom:702.750000px;}
.y1c2{bottom:703.125000px;}
.y197{bottom:711.750000px;}
.y11d{bottom:713.502000px;}
.y16b{bottom:714.376950px;}
.ye3{bottom:714.750000px;}
.y50{bottom:715.125000px;}
.y155{bottom:715.500150px;}
.y1c1{bottom:716.625000px;}
.y7f{bottom:717.375000px;}
.y9c{bottom:718.125000px;}
.y22{bottom:723.352578px;}
.y1b{bottom:723.375000px;}
.y196{bottom:725.250000px;}
.yc0{bottom:726.375000px;}
.ye2{bottom:726.750000px;}
.y16a{bottom:727.876950px;}
.y4f{bottom:730.125000px;}
.y7e{bottom:732.375000px;}
.y9b{bottom:736.500000px;}
.ybf{bottom:738.375000px;}
.ye1{bottom:738.750000px;}
.y154{bottom:740.625000px;}
.y169{bottom:741.376950px;}
.y1c0{bottom:743.625000px;}
.y4e{bottom:745.125000px;}
.y1f{bottom:745.862142px;}
.y7d{bottom:747.375000px;}
.ybe{bottom:750.375000px;}
.ye0{bottom:753.750000px;}
.y11c{bottom:753.966000px;}
.y153{bottom:754.125000px;}
.y9a{bottom:754.875000px;}
.y168{bottom:754.876950px;}
.y1e{bottom:758.618571px;}
.y4d{bottom:760.125000px;}
.y7c{bottom:762.375000px;}
.y1bf{bottom:765.375000px;}
.y13c{bottom:765.954724px;}
.y21{bottom:768.750000px;}
.y1d{bottom:771.375000px;}
.y99{bottom:773.250000px;}
.y4c{bottom:775.125000px;}
.y152{bottom:776.250150px;}
.y167{bottom:777.002100px;}
.y8d{bottom:777.375000px;}
.y11b{bottom:780.942000px;}
.y183{bottom:781.522854px;}
.y13b{bottom:783.938865px;}
.y1be{bottom:787.500000px;}
.ydf{bottom:789.750000px;}
.y151{bottom:789.750150px;}
.y4b{bottom:790.125000px;}
.y166{bottom:790.502100px;}
.y195{bottom:791.250000px;}
.y98{bottom:791.625000px;}
.y8c{bottom:792.375000px;}
.y1c{bottom:792.784242px;}
.y143{bottom:797.274000px;}
.yde{bottom:801.750000px;}
.y150{bottom:803.250150px;}
.y165{bottom:804.002100px;}
.y4a{bottom:805.125000px;}
.y182{bottom:807.000000px;}
.y8b{bottom:807.375000px;}
.y11a{bottom:807.918000px;}
.y1bd{bottom:809.625000px;}
.y97{bottom:810.000000px;}
.y142{bottom:810.762000px;}
.y20{bottom:811.144128px;}
.ybd{bottom:813.375000px;}
.ydd{bottom:813.750000px;}
.y49{bottom:820.125000px;}
.y119{bottom:821.406000px;}
.y141{bottom:824.250000px;}
.y14f{bottom:825.000000px;}
.ybc{bottom:825.375000px;}
.ydc{bottom:825.750000px;}
.y164{bottom:825.751950px;}
.y96{bottom:828.375000px;}
.y1bc{bottom:831.375000px;}
.y48{bottom:835.125000px;}
.ybb{bottom:837.375000px;}
.ydb{bottom:837.750000px;}
.y14e{bottom:838.500000px;}
.y163{bottom:839.251950px;}
.y1bb{bottom:844.875000px;}
.y118{bottom:848.382000px;}
.yda{bottom:849.750000px;}
.y47{bottom:850.125000px;}
.y14d{bottom:852.000000px;}
.y95{bottom:852.375000px;}
.y181{bottom:852.750000px;}
.y162{bottom:852.751950px;}
.y135{bottom:857.373859px;}
.yd9{bottom:861.750000px;}
.y117{bottom:861.870000px;}
.y193{bottom:862.887000px;}
.y6a{bottom:865.125000px;}
.y1ba{bottom:867.000000px;}
.yba{bottom:867.375000px;}
.yd8{bottom:873.750000px;}
.y14c{bottom:874.125150px;}
.y180{bottom:874.875000px;}
.y192{bottom:876.375000px;}
.y134{bottom:876.856432px;}
.y46{bottom:880.125000px;}
.y1b9{bottom:880.500000px;}
.y94{bottom:882.375000px;}
.yb9{bottom:885.375000px;}
.y116{bottom:888.846000px;}
.y1a{bottom:891.375000px;}
.yd7{bottom:891.750000px;}
.y133{bottom:894.840573px;}
.y45{bottom:895.125000px;}
.yb8{bottom:897.375000px;}
.y1b8{bottom:902.250000px;}
.y115{bottom:902.334000px;}
.y19{bottom:903.375000px;}
.yd6{bottom:903.750000px;}
.yb7{bottom:909.375000px;}
.y44{bottom:910.125000px;}
.y18{bottom:915.375000px;}
.yd5{bottom:915.750000px;}
.y17f{bottom:918.750000px;}
.yb6{bottom:921.375000px;}
.y1b7{bottom:924.375000px;}
.y43{bottom:925.125000px;}
.y17{bottom:927.375000px;}
.yd4{bottom:927.750000px;}
.y114{bottom:929.310000px;}
.y93{bottom:930.375000px;}
.y17e{bottom:932.250000px;}
.yb5{bottom:933.375000px;}
.yd3{bottom:939.750000px;}
.y42{bottom:940.125000px;}
.y92{bottom:942.375000px;}
.yb4{bottom:945.375000px;}
.y17d{bottom:945.750000px;}
.y1b6{bottom:946.500000px;}
.yd2{bottom:951.750000px;}
.y41{bottom:955.125000px;}
.y113{bottom:956.286000px;}
.y91{bottom:957.375000px;}
.y17c{bottom:959.250000px;}
.yd1{bottom:963.750000px;}
.y1b5{bottom:968.250000px;}
.y112{bottom:969.774000px;}
.y40{bottom:970.125000px;}
.y194{bottom:970.875000px;}
.y16{bottom:972.375000px;}
.y17b{bottom:972.750000px;}
.yd0{bottom:978.750000px;}
.y140{bottom:980.250000px;}
.y3f{bottom:985.125000px;}
.y17a{bottom:986.250000px;}
.y15{bottom:987.375000px;}
.y1b4{bottom:990.375000px;}
.y111{bottom:996.750000px;}
.y14b{bottom:998.624850px;}
.y3e{bottom:1000.125000px;}
.y14a{bottom:1012.124850px;}
.y1b3{bottom:1012.125000px;}
.ycf{bottom:1014.750000px;}
.y3d{bottom:1015.125000px;}
.y149{bottom:1025.624850px;}
.y1b2{bottom:1025.625000px;}
.yce{bottom:1026.750000px;}
.y14{bottom:1030.125000px;}
.yb3{bottom:1032.375000px;}
.y3{bottom:1035.375000px;}
.ycd{bottom:1038.750000px;}
.y148{bottom:1039.124850px;}
.y179{bottom:1039.125000px;}
.y13{bottom:1045.125000px;}
.yb2{bottom:1047.375000px;}
.y1b1{bottom:1047.750000px;}
.y12{bottom:1060.125000px;}
.y147{bottom:1061.250000px;}
.y10d{bottom:1062.375000px;}
.y2{bottom:1078.500000px;}
.y11{bottom:1107.375000px;}
.hd{height:31.657500px;}
.ha{height:47.085938px;}
.h1{height:47.109375px;}
.hb{height:48.375000px;}
.h9{height:50.124375px;}
.h12{height:52.924594px;}
.he{height:52.950938px;}
.h11{height:52.971680px;}
.h10{height:52.998047px;}
.h14{height:53.516250px;}
.hf{height:54.421875px;}
.h5{height:58.886719px;}
.h4{height:60.468750px;}
.h8{height:64.775391px;}
.h6{height:66.515625px;}
.h13{height:106.902938px;}
.h3{height:108.843750px;}
.h7{height:118.886719px;}
.h2{height:181.406250px;}
.hc{height:216.750000px;}
.h0{height:1188.000000px;}
.w1{width:343.875000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2e{left:93.190650px;}
.x1{left:97.687500px;}
.x1c{left:102.589000px;}
.x7{left:110.437500px;}
.x13{left:112.312500px;}
.xb{left:115.215078px;}
.xa{left:122.308500px;}
.xc{left:132.238812px;}
.x11{left:137.812500px;}
.x19{left:146.812500px;}
.x6{left:161.062500px;}
.x44{left:182.437500px;}
.xd{left:186.147702px;}
.x39{left:192.562500px;}
.xe{left:196.080711px;}
.x12{left:208.312500px;}
.x34{left:217.500000px;}
.x3b{left:224.812500px;}
.x3a{left:239.812500px;}
.xf{left:242.898711px;}
.x5{left:248.812500px;}
.x15{left:249.937500px;}
.x10{left:252.187500px;}
.x18{left:255.187500px;}
.x31{left:269.062500px;}
.x37{left:273.018573px;}
.x43{left:274.125000px;}
.x1a{left:280.744500px;}
.x2{left:288.937500px;}
.x36{left:294.000000px;}
.x33{left:306.187500px;}
.x40{left:316.687500px;}
.x17{left:317.812500px;}
.x14{left:332.812500px;}
.x3{left:339.562500px;}
.x9{left:367.742133px;}
.x3d{left:371.062500px;}
.x1b{left:375.187500px;}
.x8{left:376.254000px;}
.x30{left:416.062500px;}
.x3e{left:419.250000px;}
.x32{left:422.062500px;}
.x3c{left:423.937500px;}
.x16{left:438.187500px;}
.x4{left:476.062500px;}
.x41{left:479.625000px;}
.x3f{left:489.687287px;}
.x2f{left:492.956700px;}
.x42{left:503.603714px;}
.x38{left:517.518573px;}
.x35{left:599.659719px;}
.x20{left:601.983669px;}
.x27{left:604.752000px;}
.x22{left:606.351806px;}
.x21{left:607.807578px;}
.x25{left:613.631487px;}
.x1d{left:626.735078px;}
.x24{left:628.191260px;}
.x1f{left:638.382896px;}
.x23{left:639.839078px;}
.x1e{left:642.750623px;}
.x26{left:644.206805px;}
.x28{left:686.260500px;}
.x2a{left:693.540182px;}
.x2c{left:702.269818px;}
.x2b{left:709.549500px;}
.x2d{left:711.005682px;}
.x29{left:712.467681px;}
@media print{
.v4{vertical-align:-49.186240pt;}
.v5{vertical-align:-47.957333pt;}
.v6{vertical-align:-42.628075pt;}
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:32.000000pt;}
.v7{vertical-align:47.957333pt;}
.v3{vertical-align:53.333333pt;}
.ls1d{letter-spacing:-1.536000pt;}
.ls1c{letter-spacing:-1.344000pt;}
.ls1b{letter-spacing:-1.296000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.085333pt;}
.ls10{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.352000pt;}
.lsc{letter-spacing:0.469333pt;}
.ls2{letter-spacing:0.565333pt;}
.lse{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.762667pt;}
.lsb{letter-spacing:0.880000pt;}
.ls12{letter-spacing:0.896000pt;}
.lsf{letter-spacing:1.237333pt;}
.ls13{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.333333pt;}
.ls0{letter-spacing:1.344000pt;}
.lsd{letter-spacing:1.365333pt;}
.ls15{letter-spacing:1.392000pt;}
.ls9{letter-spacing:1.525333pt;}
.ls7{letter-spacing:1.701333pt;}
.ls6{letter-spacing:1.818667pt;}
.ls16{letter-spacing:2.640000pt;}
.ls17{letter-spacing:2.688000pt;}
.ls1a{letter-spacing:3.892800pt;}
.ls18{letter-spacing:3.984000pt;}
.ls19{letter-spacing:4.032000pt;}
.ls5{letter-spacing:57.280539pt;}
.ls3{letter-spacing:244.648139pt;}
.ws0{word-spacing:-40.000000pt;}
.ws8{word-spacing:-14.666667pt;}
.wsb{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.989333pt;}
.ws3{word-spacing:-11.349333pt;}
.wsc{word-spacing:-10.704000pt;}
.ws5{word-spacing:-10.666667pt;}
.wsd{word-spacing:-10.656000pt;}
.wse{word-spacing:-10.464000pt;}
.ws7{word-spacing:-7.168000pt;}
.ws3c{word-spacing:-6.849600pt;}
.ws28{word-spacing:-6.672000pt;}
.ws30{word-spacing:-5.793600pt;}
.ws2c{word-spacing:-5.433600pt;}
.ws19{word-spacing:-5.328000pt;}
.ws29{word-spacing:-5.001600pt;}
.ws33{word-spacing:-3.993600pt;}
.ws18{word-spacing:-3.984000pt;}
.ws27{word-spacing:-3.336000pt;}
.ws1e{word-spacing:-2.688000pt;}
.ws2d{word-spacing:-2.664000pt;}
.ws32{word-spacing:-2.078400pt;}
.ws2f{word-spacing:-1.992000pt;}
.ws16{word-spacing:-1.344000pt;}
.ws31{word-spacing:-1.296000pt;}
.ws17{word-spacing:-0.672000pt;}
.ws2b{word-spacing:-0.086400pt;}
.ws2{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.648000pt;}
.ws20{word-spacing:0.672000pt;}
.ws13{word-spacing:0.682667pt;}
.ws11{word-spacing:1.237333pt;}
.ws12{word-spacing:1.322667pt;}
.ws1f{word-spacing:1.344000pt;}
.wsf{word-spacing:1.701333pt;}
.ws26{word-spacing:1.900800pt;}
.ws23{word-spacing:1.992000pt;}
.ws38{word-spacing:2.376000pt;}
.ws1c{word-spacing:2.664000pt;}
.ws2a{word-spacing:2.688000pt;}
.ws21{word-spacing:3.336000pt;}
.ws3d{word-spacing:3.840000pt;}
.ws24{word-spacing:3.878400pt;}
.ws1d{word-spacing:3.907200pt;}
.ws25{word-spacing:3.984000pt;}
.ws3f{word-spacing:4.008000pt;}
.ws15{word-spacing:4.656000pt;}
.ws40{word-spacing:5.203200pt;}
.ws1b{word-spacing:5.328000pt;}
.ws37{word-spacing:6.000000pt;}
.ws22{word-spacing:6.672000pt;}
.ws3e{word-spacing:8.016000pt;}
.ws14{word-spacing:9.312000pt;}
.ws3b{word-spacing:10.550400pt;}
.ws2e{word-spacing:10.656000pt;}
.ws36{word-spacing:12.000000pt;}
.ws39{word-spacing:13.344000pt;}
.ws3a{word-spacing:14.688000pt;}
.ws34{word-spacing:15.984000pt;}
.ws35{word-spacing:17.328000pt;}
.ws6{word-spacing:97.365333pt;}
.ws41{word-spacing:120.000000pt;}
.ws42{word-spacing:145.296000pt;}
.ws4{word-spacing:182.860459pt;}
.ws10{word-spacing:1637.303467pt;}
._2e{margin-left:-10.666667pt;}
._2f{margin-left:-9.344000pt;}
._e{margin-left:-7.535957pt;}
._5{margin-left:-6.570667pt;}
._13{margin-left:-5.333333pt;}
._8{margin-left:-4.416000pt;}
._7{margin-left:-2.784000pt;}
._6{margin-left:-1.877333pt;}
._9{margin-left:-0.970667pt;}
._1{width:0.938667pt;}
._0{width:1.877333pt;}
._3{width:2.880000pt;}
._4{width:3.861333pt;}
._d{width:4.842667pt;}
._18{width:5.877333pt;}
._12{width:6.965333pt;}
._10{width:8.320000pt;}
._11{width:9.472000pt;}
._17{width:10.880000pt;}
._c{width:12.096000pt;}
._16{width:15.424000pt;}
._14{width:16.576000pt;}
._30{width:17.802667pt;}
._19{width:18.933333pt;}
._32{width:58.069333pt;}
._3a{width:69.893333pt;}
._3d{width:71.237333pt;}
._1d{width:108.032000pt;}
._28{width:109.354667pt;}
._27{width:116.053333pt;}
._1b{width:117.376000pt;}
._3f{width:120.581333pt;}
._a{width:121.557333pt;}
._36{width:126.016000pt;}
._39{width:131.189333pt;}
._3c{width:132.533333pt;}
._38{width:141.370667pt;}
._3b{width:144.485333pt;}
._3e{width:145.781333pt;}
._40{width:158.640000pt;}
._34{width:189.233925pt;}
._21{width:208.170667pt;}
._f{width:220.070229pt;}
._1c{width:269.237333pt;}
._25{width:311.136000pt;}
._1e{width:318.474667pt;}
._37{width:323.285333pt;}
._26{width:334.858667pt;}
._2a{width:379.104000pt;}
._2b{width:387.125333pt;}
._20{width:402.869333pt;}
._1f{width:436.021333pt;}
._23{width:453.600000pt;}
._22{width:457.824000pt;}
._33{width:468.622320pt;}
._29{width:472.032000pt;}
._24{width:481.461333pt;}
._1a{width:488.629333pt;}
._2c{width:494.816000pt;}
._35{width:664.593419pt;}
._2{width:1556.725333pt;}
._31{width:1639.626667pt;}
._2d{width:1648.394667pt;}
._15{width:1660.960000pt;}
._b{width:1670.666667pt;}
.fs7{font-size:28.672000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:45.397333pt;}
.fs8{font-size:47.957333pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:48.469333pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:70.666667pt;}
.y1{bottom:79.000000pt;}
.y10c{bottom:113.333333pt;}
.yfe{bottom:115.333333pt;}
.y3c{bottom:115.666667pt;}
.y191{bottom:116.666667pt;}
.y7b{bottom:117.666667pt;}
.y10{bottom:118.333333pt;}
.y10b{bottom:126.666667pt;}
.ya8{bottom:127.333333pt;}
.yfd{bottom:128.666667pt;}
.y3b{bottom:129.000000pt;}
.y7a{bottom:131.000000pt;}
.yf{bottom:131.666667pt;}
.ycc{bottom:133.666667pt;}
.y10a{bottom:140.000000pt;}
.yfc{bottom:142.000000pt;}
.y3a{bottom:142.333333pt;}
.y79{bottom:144.333333pt;}
.y109{bottom:153.333333pt;}
.yfb{bottom:155.333333pt;}
.y39{bottom:155.666667pt;}
.ye{bottom:156.333333pt;}
.y78{bottom:157.666667pt;}
.ya7{bottom:160.000000pt;}
.y108{bottom:166.666667pt;}
.yfa{bottom:168.666667pt;}
.y38{bottom:169.000000pt;}
.y77{bottom:171.000000pt;}
.ya6{bottom:176.333333pt;}
.y107{bottom:180.000000pt;}
.yf9{bottom:182.000000pt;}
.y37{bottom:182.333333pt;}
.y76{bottom:184.333333pt;}
.y1b0{bottom:188.333333pt;}
.ycb{bottom:192.333333pt;}
.ya5{bottom:192.666667pt;}
.y106{bottom:193.333333pt;}
.yf8{bottom:195.333333pt;}
.y36{bottom:195.666667pt;}
.y75{bottom:197.666667pt;}
.y132{bottom:202.608000pt;}
.yca{bottom:203.000000pt;}
.y105{bottom:206.666667pt;}
.y1af{bottom:207.666667pt;}
.yf7{bottom:208.666667pt;}
.y35{bottom:209.000000pt;}
.y74{bottom:211.000000pt;}
.yc9{bottom:213.666667pt;}
.y131{bottom:214.597333pt;}
.y18f{bottom:215.333333pt;}
.y1ae{bottom:219.666667pt;}
.y104{bottom:220.000000pt;}
.yf6{bottom:222.000000pt;}
.y34{bottom:222.333333pt;}
.y69{bottom:224.333333pt;}
.ya4{bottom:230.333333pt;}
.y1ad{bottom:231.666667pt;}
.y103{bottom:233.333333pt;}
.yf5{bottom:235.333333pt;}
.y33{bottom:235.666667pt;}
.y68{bottom:237.666667pt;}
.y130{bottom:238.576000pt;}
.y1ac{bottom:243.666667pt;}
.yc8{bottom:245.666667pt;}
.yd{bottom:246.000000pt;}
.y102{bottom:246.666667pt;}
.y32{bottom:249.000000pt;}
.y67{bottom:251.000000pt;}
.yc7{bottom:256.333333pt;}
.ya3{bottom:257.000000pt;}
.yc{bottom:259.333333pt;}
.y13a{bottom:259.890037pt;}
.yf4{bottom:260.000000pt;}
.y31{bottom:262.333333pt;}
.y12f{bottom:262.554667pt;}
.y1ab{bottom:263.333333pt;}
.y66{bottom:264.333333pt;}
.yc6{bottom:267.000000pt;}
.yb{bottom:272.666667pt;}
.y101{bottom:273.333333pt;}
.y8a{bottom:275.666667pt;}
.y139{bottom:277.207880pt;}
.y65{bottom:277.666667pt;}
.y1aa{bottom:282.666667pt;}
.y12e{bottom:286.533333pt;}
.y100{bottom:286.666667pt;}
.y89{bottom:289.000000pt;}
.y64{bottom:291.000000pt;}
.y190{bottom:291.959941pt;}
.y1a9{bottom:294.666667pt;}
.ya2{bottom:297.000000pt;}
.ya{bottom:297.666667pt;}
.yf3{bottom:300.000000pt;}
.y73{bottom:302.333333pt;}
.y63{bottom:304.333333pt;}
.ya1{bottom:310.333333pt;}
.y12d{bottom:310.512000pt;}
.yf2{bottom:313.333333pt;}
.y1a8{bottom:314.333333pt;}
.y72{bottom:315.666667pt;}
.y62{bottom:317.666667pt;}
.y1a7{bottom:326.333333pt;}
.yf1{bottom:326.666667pt;}
.y71{bottom:329.000000pt;}
.y61{bottom:331.000000pt;}
.y12c{bottom:334.490667pt;}
.y18e{bottom:336.000000pt;}
.y1a6{bottom:338.333333pt;}
.yf0{bottom:340.000000pt;}
.y70{bottom:342.333333pt;}
.y30{bottom:344.333333pt;}
.y146{bottom:344.696255pt;}
.y1a5{bottom:350.333333pt;}
.yef{bottom:353.333333pt;}
.y18d{bottom:355.333333pt;}
.y6f{bottom:355.666667pt;}
.y2f{bottom:357.666667pt;}
.y12b{bottom:358.469333pt;}
.y145{bottom:360.682157pt;}
.yee{bottom:366.666667pt;}
.y60{bottom:369.000000pt;}
.y1a4{bottom:370.000000pt;}
.y12a{bottom:370.458667pt;}
.y2e{bottom:371.000000pt;}
.yc5{bottom:373.666667pt;}
.yb1{bottom:374.333333pt;}
.y144{bottom:378.000000pt;}
.yed{bottom:380.000000pt;}
.y6e{bottom:382.333333pt;}
.y129{bottom:382.448000pt;}
.y90{bottom:384.333333pt;}
.yb0{bottom:387.666667pt;}
.y1a3{bottom:389.333333pt;}
.y2d{bottom:389.666667pt;}
.yec{bottom:393.333333pt;}
.y18c{bottom:394.666667pt;}
.y6d{bottom:395.666667pt;}
.y8f{bottom:397.666667pt;}
.y2c{bottom:400.333333pt;}
.yaf{bottom:401.000000pt;}
.y9{bottom:405.666667pt;}
.y128{bottom:406.426667pt;}
.yeb{bottom:406.666667pt;}
.y6c{bottom:409.000000pt;}
.y2b{bottom:411.000000pt;}
.yae{bottom:414.333333pt;}
.y8{bottom:419.000000pt;}
.yea{bottom:420.000000pt;}
.y138{bottom:421.079880pt;}
.y5f{bottom:422.333333pt;}
.y2a{bottom:424.333333pt;}
.y18b{bottom:426.000000pt;}
.yad{bottom:427.666667pt;}
.y1a2{bottom:428.333333pt;}
.y127{bottom:430.405333pt;}
.ye9{bottom:433.333333pt;}
.y137{bottom:434.401528pt;}
.y5e{bottom:435.666667pt;}
.y8e{bottom:437.666667pt;}
.y18a{bottom:438.000000pt;}
.y10f{bottom:446.000000pt;}
.yff{bottom:446.666667pt;}
.y136{bottom:447.723176pt;}
.y1a1{bottom:448.000000pt;}
.y5d{bottom:449.000000pt;}
.y178{bottom:449.001733pt;}
.y189{bottom:450.000000pt;}
.y1cc{bottom:450.666667pt;}
.y161{bottom:451.334533pt;}
.y29{bottom:453.666667pt;}
.yac{bottom:454.333333pt;}
.y126{bottom:454.384000pt;}
.ye8{bottom:460.000000pt;}
.y177{bottom:461.001733pt;}
.y188{bottom:462.000000pt;}
.y5c{bottom:462.333333pt;}
.y7{bottom:462.666667pt;}
.y160{bottom:463.334533pt;}
.y28{bottom:464.333333pt;}
.yab{bottom:467.666667pt;}
.y176{bottom:473.001733pt;}
.ye7{bottom:473.333333pt;}
.y1cb{bottom:474.666667pt;}
.y5b{bottom:475.666667pt;}
.y27{bottom:477.666667pt;}
.y125{bottom:478.362667pt;}
.y1a0{bottom:479.666667pt;}
.yaa{bottom:481.000000pt;}
.y15f{bottom:485.667733pt;}
.y6{bottom:486.666667pt;}
.y5a{bottom:489.000000pt;}
.y88{bottom:491.000000pt;}
.y19f{bottom:491.666667pt;}
.y175{bottom:492.334933pt;}
.ya9{bottom:494.333333pt;}
.y15e{bottom:497.667733pt;}
.ye6{bottom:500.000000pt;}
.y59{bottom:502.333333pt;}
.y124{bottom:502.341333pt;}
.y19e{bottom:503.666667pt;}
.y26{bottom:504.333333pt;}
.y174{bottom:504.334933pt;}
.y1ca{bottom:506.333333pt;}
.y15d{bottom:509.667733pt;}
.y10e{bottom:510.000000pt;}
.y5{bottom:510.666667pt;}
.ye5{bottom:513.333333pt;}
.y123{bottom:514.330667pt;}
.y58{bottom:515.666667pt;}
.y173{bottom:516.334933pt;}
.y25{bottom:517.666667pt;}
.y15c{bottom:521.667733pt;}
.y19d{bottom:523.000000pt;}
.y1c9{bottom:526.000000pt;}
.y172{bottom:528.334933pt;}
.y57{bottom:529.000000pt;}
.y87{bottom:531.000000pt;}
.y187{bottom:532.666667pt;}
.y4{bottom:534.666667pt;}
.y122{bottom:538.309333pt;}
.yc4{bottom:539.000000pt;}
.y56{bottom:542.333333pt;}
.y19c{bottom:542.666667pt;}
.y15b{bottom:543.667333pt;}
.y86{bottom:544.333333pt;}
.y186{bottom:544.666667pt;}
.y1c8{bottom:545.333333pt;}
.y171{bottom:548.001733pt;}
.yc3{bottom:549.666667pt;}
.y121{bottom:550.298667pt;}
.y55{bottom:555.666667pt;}
.y15a{bottom:555.667333pt;}
.ya0{bottom:556.666667pt;}
.y13f{bottom:556.958741pt;}
.y1c7{bottom:557.333333pt;}
.y85{bottom:557.666667pt;}
.y170{bottom:560.001733pt;}
.yc2{bottom:560.333333pt;}
.y19b{bottom:562.000000pt;}
.y159{bottom:567.667333pt;}
.y13e{bottom:568.948075pt;}
.y54{bottom:569.000000pt;}
.y1c6{bottom:569.333333pt;}
.y84{bottom:571.000000pt;}
.y120{bottom:574.277333pt;}
.y24{bottom:578.657811pt;}
.y16f{bottom:579.334933pt;}
.y13d{bottom:580.937408pt;}
.y1c5{bottom:581.333333pt;}
.y19a{bottom:581.666667pt;}
.y53{bottom:582.333333pt;}
.y83{bottom:584.333333pt;}
.yc1{bottom:587.000000pt;}
.y9f{bottom:589.333333pt;}
.y158{bottom:590.000533pt;}
.y16e{bottom:591.334933pt;}
.y52{bottom:595.666667pt;}
.y82{bottom:597.666667pt;}
.y11f{bottom:598.256000pt;}
.y1c4{bottom:601.000000pt;}
.y199{bottom:601.333333pt;}
.y157{bottom:602.000533pt;}
.y16d{bottom:603.334933pt;}
.y9e{bottom:605.666667pt;}
.y23{bottom:608.629893pt;}
.y6b{bottom:609.000000pt;}
.y11e{bottom:610.245333pt;}
.y185{bottom:610.677333pt;}
.y81{bottom:611.000000pt;}
.y1c3{bottom:613.000000pt;}
.y198{bottom:613.333333pt;}
.y9d{bottom:622.000000pt;}
.y51{bottom:622.333333pt;}
.y184{bottom:622.666667pt;}
.y16c{bottom:623.001733pt;}
.y156{bottom:624.000133pt;}
.y80{bottom:624.333333pt;}
.ye4{bottom:624.666667pt;}
.y1c2{bottom:625.000000pt;}
.y197{bottom:632.666667pt;}
.y11d{bottom:634.224000pt;}
.y16b{bottom:635.001733pt;}
.ye3{bottom:635.333333pt;}
.y50{bottom:635.666667pt;}
.y155{bottom:636.000133pt;}
.y1c1{bottom:637.000000pt;}
.y7f{bottom:637.666667pt;}
.y9c{bottom:638.333333pt;}
.y22{bottom:642.980069pt;}
.y1b{bottom:643.000000pt;}
.y196{bottom:644.666667pt;}
.yc0{bottom:645.666667pt;}
.ye2{bottom:646.000000pt;}
.y16a{bottom:647.001733pt;}
.y4f{bottom:649.000000pt;}
.y7e{bottom:651.000000pt;}
.y9b{bottom:654.666667pt;}
.ybf{bottom:656.333333pt;}
.ye1{bottom:656.666667pt;}
.y154{bottom:658.333333pt;}
.y169{bottom:659.001733pt;}
.y1c0{bottom:661.000000pt;}
.y4e{bottom:662.333333pt;}
.y1f{bottom:662.988571pt;}
.y7d{bottom:664.333333pt;}
.ybe{bottom:667.000000pt;}
.ye0{bottom:670.000000pt;}
.y11c{bottom:670.192000pt;}
.y153{bottom:670.333333pt;}
.y9a{bottom:671.000000pt;}
.y168{bottom:671.001733pt;}
.y1e{bottom:674.327619pt;}
.y4d{bottom:675.666667pt;}
.y7c{bottom:677.666667pt;}
.y1bf{bottom:680.333333pt;}
.y13c{bottom:680.848644pt;}
.y21{bottom:683.333333pt;}
.y1d{bottom:685.666667pt;}
.y99{bottom:687.333333pt;}
.y4c{bottom:689.000000pt;}
.y152{bottom:690.000133pt;}
.y167{bottom:690.668533pt;}
.y8d{bottom:691.000000pt;}
.y11b{bottom:694.170667pt;}
.y183{bottom:694.686981pt;}
.y13b{bottom:696.834547pt;}
.y1be{bottom:700.000000pt;}
.ydf{bottom:702.000000pt;}
.y151{bottom:702.000133pt;}
.y4b{bottom:702.333333pt;}
.y166{bottom:702.668533pt;}
.y195{bottom:703.333333pt;}
.y98{bottom:703.666667pt;}
.y8c{bottom:704.333333pt;}
.y1c{bottom:704.697104pt;}
.y143{bottom:708.688000pt;}
.yde{bottom:712.666667pt;}
.y150{bottom:714.000133pt;}
.y165{bottom:714.668533pt;}
.y4a{bottom:715.666667pt;}
.y182{bottom:717.333333pt;}
.y8b{bottom:717.666667pt;}
.y11a{bottom:718.149333pt;}
.y1bd{bottom:719.666667pt;}
.y97{bottom:720.000000pt;}
.y142{bottom:720.677333pt;}
.y20{bottom:721.017003pt;}
.ybd{bottom:723.000000pt;}
.ydd{bottom:723.333333pt;}
.y49{bottom:729.000000pt;}
.y119{bottom:730.138667pt;}
.y141{bottom:732.666667pt;}
.y14f{bottom:733.333333pt;}
.ybc{bottom:733.666667pt;}
.ydc{bottom:734.000000pt;}
.y164{bottom:734.001733pt;}
.y96{bottom:736.333333pt;}
.y1bc{bottom:739.000000pt;}
.y48{bottom:742.333333pt;}
.ybb{bottom:744.333333pt;}
.ydb{bottom:744.666667pt;}
.y14e{bottom:745.333333pt;}
.y163{bottom:746.001733pt;}
.y1bb{bottom:751.000000pt;}
.y118{bottom:754.117333pt;}
.yda{bottom:755.333333pt;}
.y47{bottom:755.666667pt;}
.y14d{bottom:757.333333pt;}
.y95{bottom:757.666667pt;}
.y181{bottom:758.000000pt;}
.y162{bottom:758.001733pt;}
.y135{bottom:762.110097pt;}
.yd9{bottom:766.000000pt;}
.y117{bottom:766.106667pt;}
.y193{bottom:767.010667pt;}
.y6a{bottom:769.000000pt;}
.y1ba{bottom:770.666667pt;}
.yba{bottom:771.000000pt;}
.yd8{bottom:776.666667pt;}
.y14c{bottom:777.000133pt;}
.y180{bottom:777.666667pt;}
.y192{bottom:779.000000pt;}
.y134{bottom:779.427940pt;}
.y46{bottom:782.333333pt;}
.y1b9{bottom:782.666667pt;}
.y94{bottom:784.333333pt;}
.yb9{bottom:787.000000pt;}
.y116{bottom:790.085333pt;}
.y1a{bottom:792.333333pt;}
.yd7{bottom:792.666667pt;}
.y133{bottom:795.413843pt;}
.y45{bottom:795.666667pt;}
.yb8{bottom:797.666667pt;}
.y1b8{bottom:802.000000pt;}
.y115{bottom:802.074667pt;}
.y19{bottom:803.000000pt;}
.yd6{bottom:803.333333pt;}
.yb7{bottom:808.333333pt;}
.y44{bottom:809.000000pt;}
.y18{bottom:813.666667pt;}
.yd5{bottom:814.000000pt;}
.y17f{bottom:816.666667pt;}
.yb6{bottom:819.000000pt;}
.y1b7{bottom:821.666667pt;}
.y43{bottom:822.333333pt;}
.y17{bottom:824.333333pt;}
.yd4{bottom:824.666667pt;}
.y114{bottom:826.053333pt;}
.y93{bottom:827.000000pt;}
.y17e{bottom:828.666667pt;}
.yb5{bottom:829.666667pt;}
.yd3{bottom:835.333333pt;}
.y42{bottom:835.666667pt;}
.y92{bottom:837.666667pt;}
.yb4{bottom:840.333333pt;}
.y17d{bottom:840.666667pt;}
.y1b6{bottom:841.333333pt;}
.yd2{bottom:846.000000pt;}
.y41{bottom:849.000000pt;}
.y113{bottom:850.032000pt;}
.y91{bottom:851.000000pt;}
.y17c{bottom:852.666667pt;}
.yd1{bottom:856.666667pt;}
.y1b5{bottom:860.666667pt;}
.y112{bottom:862.021333pt;}
.y40{bottom:862.333333pt;}
.y194{bottom:863.000000pt;}
.y16{bottom:864.333333pt;}
.y17b{bottom:864.666667pt;}
.yd0{bottom:870.000000pt;}
.y140{bottom:871.333333pt;}
.y3f{bottom:875.666667pt;}
.y17a{bottom:876.666667pt;}
.y15{bottom:877.666667pt;}
.y1b4{bottom:880.333333pt;}
.y111{bottom:886.000000pt;}
.y14b{bottom:887.666533pt;}
.y3e{bottom:889.000000pt;}
.y14a{bottom:899.666533pt;}
.y1b3{bottom:899.666667pt;}
.ycf{bottom:902.000000pt;}
.y3d{bottom:902.333333pt;}
.y149{bottom:911.666533pt;}
.y1b2{bottom:911.666667pt;}
.yce{bottom:912.666667pt;}
.y14{bottom:915.666667pt;}
.yb3{bottom:917.666667pt;}
.y3{bottom:920.333333pt;}
.ycd{bottom:923.333333pt;}
.y148{bottom:923.666533pt;}
.y179{bottom:923.666667pt;}
.y13{bottom:929.000000pt;}
.yb2{bottom:931.000000pt;}
.y1b1{bottom:931.333333pt;}
.y12{bottom:942.333333pt;}
.y147{bottom:943.333333pt;}
.y10d{bottom:944.333333pt;}
.y2{bottom:958.666667pt;}
.y11{bottom:984.333333pt;}
.hd{height:28.140000pt;}
.ha{height:41.854167pt;}
.h1{height:41.875000pt;}
.hb{height:43.000000pt;}
.h9{height:44.555000pt;}
.h12{height:47.044083pt;}
.he{height:47.067500pt;}
.h11{height:47.085938pt;}
.h10{height:47.109375pt;}
.h14{height:47.570000pt;}
.hf{height:48.375000pt;}
.h5{height:52.343750pt;}
.h4{height:53.750000pt;}
.h8{height:57.578125pt;}
.h6{height:59.125000pt;}
.h13{height:95.024833pt;}
.h3{height:96.750000pt;}
.h7{height:105.677083pt;}
.h2{height:161.250000pt;}
.hc{height:192.666667pt;}
.h0{height:1056.000000pt;}
.w1{width:305.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:82.836133pt;}
.x1{left:86.833333pt;}
.x1c{left:91.190223pt;}
.x7{left:98.166667pt;}
.x13{left:99.833333pt;}
.xb{left:102.413403pt;}
.xa{left:108.718667pt;}
.xc{left:117.545611pt;}
.x11{left:122.500000pt;}
.x19{left:130.500000pt;}
.x6{left:143.166667pt;}
.x44{left:162.166667pt;}
.xd{left:165.464624pt;}
.x39{left:171.166667pt;}
.xe{left:174.293965pt;}
.x12{left:185.166667pt;}
.x34{left:193.333333pt;}
.x3b{left:199.833333pt;}
.x3a{left:213.166667pt;}
.xf{left:215.909965pt;}
.x5{left:221.166667pt;}
.x15{left:222.166667pt;}
.x10{left:224.166667pt;}
.x18{left:226.833333pt;}
.x31{left:239.166667pt;}
.x37{left:242.683176pt;}
.x43{left:243.666667pt;}
.x1a{left:249.550667pt;}
.x2{left:256.833333pt;}
.x36{left:261.333333pt;}
.x33{left:272.166667pt;}
.x40{left:281.500000pt;}
.x17{left:282.500000pt;}
.x14{left:295.833333pt;}
.x3{left:301.833333pt;}
.x9{left:326.881896pt;}
.x3d{left:329.833333pt;}
.x1b{left:333.500000pt;}
.x8{left:334.448000pt;}
.x30{left:369.833333pt;}
.x3e{left:372.666667pt;}
.x32{left:375.166667pt;}
.x3c{left:376.833333pt;}
.x16{left:389.500000pt;}
.x4{left:423.166667pt;}
.x41{left:426.333333pt;}
.x3f{left:435.277588pt;}
.x2f{left:438.183733pt;}
.x42{left:447.647745pt;}
.x38{left:460.016509pt;}
.x35{left:533.030861pt;}
.x20{left:535.096595pt;}
.x27{left:537.557333pt;}
.x22{left:538.979383pt;}
.x21{left:540.273403pt;}
.x25{left:545.450211pt;}
.x1d{left:557.097847pt;}
.x24{left:558.392231pt;}
.x1f{left:567.451463pt;}
.x23{left:568.745847pt;}
.x1e{left:571.333887pt;}
.x26{left:572.628271pt;}
.x28{left:610.009333pt;}
.x2a{left:616.480161pt;}
.x2c{left:624.239839pt;}
.x2b{left:630.710667pt;}
.x2d{left:632.005051pt;}
.x29{left:633.304605pt;}
}




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