
    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_06f3331376e8ed44987ea86c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_5c758234708d544a0dba2008.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_72a97e7ea51becb9992e875d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_30b8921a7656860349860e9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.718750;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_70824156c828c72cfa7fc2d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_5f19c03c291d1a8074d66640.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_25bdf5687c1e8cc16a76454b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_7ac19b702faf63db855532ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.031738;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_e81508968f60e09aec9a5c56.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710938;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_db1e10f9d3d46c4756f12806.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976111;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_9086b78695e525945cea6c6a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964844;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_39739bb463fb41d361c0cdc9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.022461;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_68333a2072e593f2832aae9c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.023926;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_2110e36865e58a8b7c95bded.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.770020;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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:41.811000px;}
.ls13{letter-spacing:-1.536000px;}
.ls16{letter-spacing:-0.960000px;}
.ls18{letter-spacing:-0.918000px;}
.ls1b{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.840000px;}
.ls6{letter-spacing:-0.691200px;}
.ls7{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.420000px;}
.ls1d{letter-spacing:-0.336000px;}
.ls8{letter-spacing:-0.300000px;}
.ls17{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.120000px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000600px;}
.lse{letter-spacing:0.001200px;}
.ls12{letter-spacing:0.001800px;}
.ls1{letter-spacing:0.002232px;}
.ls11{letter-spacing:0.002400px;}
.ls15{letter-spacing:0.003600px;}
.lsa{letter-spacing:0.004200px;}
.lsb{letter-spacing:0.012000px;}
.lsc{letter-spacing:0.012600px;}
.ls9{letter-spacing:0.013800px;}
.ls10{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.020400px;}
.ls3{letter-spacing:0.025200px;}
.ls5{letter-spacing:0.102000px;}
.ls1e{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.540000px;}
.ls0{letter-spacing:43.202232px;}
.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;}
}
.ws28{word-spacing:-17.928000px;}
.wsc5{word-spacing:-16.434000px;}
.ws3{word-spacing:-14.940000px;}
.ws53{word-spacing:-14.820000px;}
.ws55{word-spacing:-14.100000px;}
.ws5{word-spacing:-13.986000px;}
.ws54{word-spacing:-13.980000px;}
.wsce{word-spacing:-13.824000px;}
.ws4{word-spacing:-13.446000px;}
.wsc4{word-spacing:-13.392000px;}
.ws6{word-spacing:-12.366000px;}
.ws7{word-spacing:-12.150000px;}
.ws6e{word-spacing:-11.952000px;}
.ws6f{word-spacing:-11.904000px;}
.ws8{word-spacing:-10.992000px;}
.ws1{word-spacing:-10.896000px;}
.ws27{word-spacing:-10.800000px;}
.ws0{word-spacing:-9.618000px;}
.ws2{word-spacing:-9.201600px;}
.ws6d{word-spacing:-8.675040px;}
.wsec{word-spacing:-7.074000px;}
.ws5f{word-spacing:-5.820000px;}
.wsa3{word-spacing:-4.560000px;}
.wsb2{word-spacing:-4.374000px;}
.ws61{word-spacing:-4.080000px;}
.ws60{word-spacing:-4.020000px;}
.ws29{word-spacing:-3.300000px;}
.wsaa{word-spacing:-3.180000px;}
.wseb{word-spacing:-3.078000px;}
.ws3f{word-spacing:-2.700000px;}
.ws2b{word-spacing:-2.640000px;}
.ws33{word-spacing:-2.580000px;}
.ws8e{word-spacing:-2.520000px;}
.ws64{word-spacing:-2.400000px;}
.wsca{word-spacing:-2.322000px;}
.ws34{word-spacing:-2.280000px;}
.ws40{word-spacing:-2.160000px;}
.wsa4{word-spacing:-2.040000px;}
.wsd2{word-spacing:-1.998000px;}
.wsc9{word-spacing:-1.944000px;}
.ws98{word-spacing:-1.860000px;}
.wse8{word-spacing:-1.782000px;}
.ws42{word-spacing:-1.620000px;}
.ws1c{word-spacing:-1.566000px;}
.ws92{word-spacing:-1.560000px;}
.ws7a{word-spacing:-1.500000px;}
.ws12{word-spacing:-1.404000px;}
.ws35{word-spacing:-1.320000px;}
.wsb{word-spacing:-1.254000px;}
.wsd7{word-spacing:-1.242000px;}
.wscf{word-spacing:-1.188000px;}
.ws78{word-spacing:-1.140000px;}
.ws1f{word-spacing:-1.134000px;}
.ws90{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.026000px;}
.ws63{word-spacing:-1.020000px;}
.ws36{word-spacing:-0.960000px;}
.ws69{word-spacing:-0.900000px;}
.wsd0{word-spacing:-0.810000px;}
.ws7b{word-spacing:-0.780000px;}
.wse9{word-spacing:-0.648000px;}
.wsbc{word-spacing:-0.600000px;}
.wse5{word-spacing:-0.594000px;}
.wsa0{word-spacing:-0.540000px;}
.ws8d{word-spacing:-0.480000px;}
.wsda{word-spacing:-0.432000px;}
.wsac{word-spacing:-0.420000px;}
.wsa2{word-spacing:-0.360000px;}
.ws4b{word-spacing:-0.300000px;}
.ws2d{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws2c{word-spacing:-0.120000px;}
.wsa{word-spacing:-0.102000px;}
.wsde{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.ws49{word-spacing:0.060000px;}
.ws17{word-spacing:0.108000px;}
.ws3d{word-spacing:0.120000px;}
.wsb5{word-spacing:0.180000px;}
.ws3c{word-spacing:0.300000px;}
.ws23{word-spacing:0.324000px;}
.wsb3{word-spacing:0.336000px;}
.ws73{word-spacing:0.420000px;}
.ws38{word-spacing:0.480000px;}
.ws79{word-spacing:0.600000px;}
.ws9c{word-spacing:0.660000px;}
.wsd{word-spacing:0.691200px;}
.ws6a{word-spacing:0.780000px;}
.wsf{word-spacing:0.810000px;}
.ws5b{word-spacing:0.840000px;}
.wsab{word-spacing:0.900000px;}
.ws24{word-spacing:0.972000px;}
.ws65{word-spacing:1.080000px;}
.ws1a{word-spacing:1.134000px;}
.ws47{word-spacing:1.140000px;}
.wsdc{word-spacing:1.188000px;}
.ws3b{word-spacing:1.200000px;}
.ws43{word-spacing:1.260000px;}
.wsa9{word-spacing:1.320000px;}
.ws4c{word-spacing:1.440000px;}
.ws41{word-spacing:1.560000px;}
.ws39{word-spacing:1.740000px;}
.ws2e{word-spacing:1.860000px;}
.wsaf{word-spacing:1.920000px;}
.wsa1{word-spacing:1.980000px;}
.ws48{word-spacing:2.040000px;}
.ws22{word-spacing:2.052000px;}
.wsbd{word-spacing:2.100000px;}
.ws1e{word-spacing:2.106000px;}
.ws8b{word-spacing:2.160000px;}
.ws7c{word-spacing:2.220000px;}
.wsb1{word-spacing:2.268000px;}
.ws2a{word-spacing:2.400000px;}
.wsbe{word-spacing:2.520000px;}
.ws91{word-spacing:2.580000px;}
.wse4{word-spacing:2.646000px;}
.ws4f{word-spacing:2.700000px;}
.wsdf{word-spacing:2.754000px;}
.ws71{word-spacing:2.760000px;}
.wsa7{word-spacing:2.820000px;}
.ws13{word-spacing:2.862000px;}
.ws9d{word-spacing:2.880000px;}
.ws19{word-spacing:2.970000px;}
.ws1d{word-spacing:3.024000px;}
.wsd1{word-spacing:3.186000px;}
.ws45{word-spacing:3.240000px;}
.ws68{word-spacing:3.300000px;}
.wsad{word-spacing:3.360000px;}
.ws8f{word-spacing:3.480000px;}
.ws59{word-spacing:3.540000px;}
.ws37{word-spacing:3.600000px;}
.wsc3{word-spacing:3.888000px;}
.wsc2{word-spacing:3.942000px;}
.ws51{word-spacing:4.020000px;}
.ws56{word-spacing:4.140000px;}
.ws9f{word-spacing:4.158000px;}
.wsa5{word-spacing:4.200000px;}
.ws18{word-spacing:4.212000px;}
.wsc6{word-spacing:4.260000px;}
.ws3a{word-spacing:4.320000px;}
.wscb{word-spacing:4.374000px;}
.wse3{word-spacing:4.428000px;}
.ws5a{word-spacing:4.440000px;}
.ws58{word-spacing:4.500000px;}
.wsba{word-spacing:4.560000px;}
.ws99{word-spacing:4.680000px;}
.ws26{word-spacing:4.698000px;}
.ws9e{word-spacing:4.800000px;}
.wsc8{word-spacing:4.860000px;}
.ws52{word-spacing:4.920000px;}
.ws8c{word-spacing:5.040000px;}
.ws21{word-spacing:5.076000px;}
.wse{word-spacing:5.130000px;}
.wsc7{word-spacing:5.160000px;}
.ws20{word-spacing:5.184000px;}
.ws30{word-spacing:5.220000px;}
.wse6{word-spacing:5.238000px;}
.wsbb{word-spacing:5.280000px;}
.ws77{word-spacing:5.400000px;}
.ws31{word-spacing:5.520000px;}
.wse2{word-spacing:5.562000px;}
.ws7d{word-spacing:5.580000px;}
.ws6c{word-spacing:5.700000px;}
.ws11{word-spacing:5.778000px;}
.ws6b{word-spacing:5.940000px;}
.ws2f{word-spacing:6.000000px;}
.ws74{word-spacing:6.240000px;}
.wsb8{word-spacing:6.360000px;}
.ws44{word-spacing:6.420000px;}
.wsd6{word-spacing:6.696000px;}
.ws4a{word-spacing:6.720000px;}
.ws75{word-spacing:6.780000px;}
.ws15{word-spacing:6.804000px;}
.ws14{word-spacing:6.858000px;}
.ws32{word-spacing:7.080000px;}
.wsc1{word-spacing:7.128000px;}
.ws46{word-spacing:7.140000px;}
.wsc0{word-spacing:7.182000px;}
.ws5d{word-spacing:7.200000px;}
.ws7e{word-spacing:7.320000px;}
.ws3e{word-spacing:7.440000px;}
.ws72{word-spacing:7.500000px;}
.wsb4{word-spacing:7.620000px;}
.wsdb{word-spacing:7.668000px;}
.wsb0{word-spacing:7.680000px;}
.ws67{word-spacing:7.740000px;}
.ws76{word-spacing:8.220000px;}
.ws10{word-spacing:8.370000px;}
.ws66{word-spacing:8.520000px;}
.wsbf{word-spacing:8.580000px;}
.ws16{word-spacing:8.748000px;}
.ws4e{word-spacing:8.760000px;}
.ws5c{word-spacing:9.000000px;}
.ws5e{word-spacing:9.060000px;}
.ws9b{word-spacing:9.120000px;}
.wsd5{word-spacing:9.288000px;}
.wsae{word-spacing:9.720000px;}
.wsd4{word-spacing:10.854000px;}
.ws9a{word-spacing:10.920000px;}
.ws1b{word-spacing:11.070000px;}
.ws97{word-spacing:11.100000px;}
.wse0{word-spacing:12.096000px;}
.wsdd{word-spacing:12.366000px;}
.wsb6{word-spacing:12.480000px;}
.ws50{word-spacing:12.900000px;}
.wse7{word-spacing:13.770000px;}
.wsb7{word-spacing:13.980000px;}
.wsd8{word-spacing:14.040000px;}
.wscd{word-spacing:14.202000px;}
.wsb9{word-spacing:14.580000px;}
.ws62{word-spacing:14.880000px;}
.ws4d{word-spacing:14.940000px;}
.ws57{word-spacing:18.360000px;}
.wscc{word-spacing:18.846000px;}
.wsea{word-spacing:20.628000px;}
.wse1{word-spacing:20.790000px;}
.wsd9{word-spacing:26.568000px;}
.wsd3{word-spacing:29.538000px;}
.wsa6{word-spacing:34.440000px;}
.ws8a{word-spacing:191.613000px;}
.ws86{word-spacing:191.613600px;}
.ws87{word-spacing:222.294000px;}
.ws83{word-spacing:235.770600px;}
.ws96{word-spacing:251.140800px;}
.ws88{word-spacing:251.686200px;}
.ws84{word-spacing:251.709000px;}
.ws89{word-spacing:253.891200px;}
.ws85{word-spacing:280.844400px;}
.ws94{word-spacing:311.236800px;}
.wsa8{word-spacing:324.713400px;}
.ws81{word-spacing:344.461800px;}
.ws82{word-spacing:344.683800px;}
.ws93{word-spacing:393.093600px;}
.ws80{word-spacing:404.779800px;}
.ws95{word-spacing:411.214200px;}
.ws7f{word-spacing:586.000800px;}
.ws70{word-spacing:1129.912200px;}
._d{margin-left:-11.474400px;}
._2{margin-left:-8.129400px;}
._3{margin-left:-6.915600px;}
._c{margin-left:-5.837400px;}
._4{margin-left:-4.448400px;}
._6{margin-left:-3.319800px;}
._0{margin-left:-2.152200px;}
._1{margin-left:-1.050600px;}
._12{width:1.002000px;}
._5{width:2.009400px;}
._a{width:3.407400px;}
._b{width:4.695600px;}
._8{width:5.837400px;}
._9{width:7.165800px;}
._10{width:8.276400px;}
._f{width:10.170000px;}
._e{width:11.622000px;}
._49{width:12.912600px;}
._4b{width:14.763600px;}
._3f{width:16.548000px;}
._4c{width:28.906200px;}
._11{width:31.551600px;}
._7{width:36.369000px;}
._4a{width:43.873200px;}
._3c{width:56.919000px;}
._41{width:60.717000px;}
._30{width:63.396600px;}
._2d{width:84.078600px;}
._31{width:92.019600px;}
._34{width:98.644800px;}
._35{width:106.866000px;}
._27{width:114.236400px;}
._3d{width:120.620400px;}
._19{width:131.169000px;}
._32{width:133.525200px;}
._38{width:141.094200px;}
._1a{width:144.669000px;}
._33{width:148.796400px;}
._47{width:159.460800px;}
._20{width:167.048400px;}
._45{width:169.812600px;}
._26{width:178.095000px;}
._1d{width:180.525000px;}
._48{width:186.004200px;}
._3e{width:192.071400px;}
._24{width:194.024400px;}
._44{width:195.979800px;}
._28{width:200.670600px;}
._37{width:205.663800px;}
._1e{width:207.478200px;}
._13{width:209.914800px;}
._40{width:216.698400px;}
._36{width:218.419800px;}
._23{width:221.000400px;}
._1b{width:226.059600px;}
._16{width:228.869400px;}
._3a{width:230.515800px;}
._14{width:238.364400px;}
._17{width:242.493000px;}
._46{width:253.852200px;}
._3b{width:257.118600px;}
._42{width:264.188400px;}
._15{width:269.959800px;}
._2a{width:273.692400px;}
._39{width:277.090200px;}
._43{width:279.921000px;}
._2e{width:283.558800px;}
._29{width:285.448200px;}
._2b{width:294.115800px;}
._2c{width:306.161400px;}
._2f{width:445.363200px;}
._18{width:578.848200px;}
._25{width:885.721800px;}
._22{width:989.353800px;}
._1f{width:1059.001800px;}
._1c{width:1111.129800px;}
._21{width:1154.665800px;}
.fc1{color:rgb(137,35,43);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.036150px;}
.y68{bottom:113.078700px;}
.y94{bottom:113.078850px;}
.ya{bottom:117.197850px;}
.ye5{bottom:120.543300px;}
.y2c{bottom:130.004250px;}
.y9{bottom:131.597850px;}
.y67{bottom:134.078700px;}
.y93{bottom:134.078850px;}
.ye4{bottom:135.543300px;}
.y8{bottom:145.997850px;}
.y2b{bottom:149.804250px;}
.yfb{bottom:155.078700px;}
.y92{bottom:155.078850px;}
.y7{bottom:160.397850px;}
.ye3{bottom:160.450500px;}
.yf3{bottom:160.529400px;}
.y66{bottom:168.513450px;}
.yfa{bottom:176.078700px;}
.y91{bottom:176.078850px;}
.ye2{bottom:182.206350px;}
.y9c{bottom:190.441050px;}
.y2a{bottom:190.864200px;}
.yf9{bottom:197.078700px;}
.y90{bottom:197.078850px;}
.y65{bottom:200.811000px;}
.y37{bottom:203.413650px;}
.ye1{bottom:203.962200px;}
.y29{bottom:210.664050px;}
.ye7{bottom:211.441050px;}
.yf8{bottom:218.078700px;}
.y8f{bottom:218.078850px;}
.y36{bottom:221.413500px;}
.ye0{bottom:225.718200px;}
.y28{bottom:230.464200px;}
.yf7{bottom:239.078700px;}
.y8e{bottom:239.078850px;}
.y35{bottom:239.413500px;}
.yd3{bottom:245.397000px;}
.ydf{bottom:247.474050px;}
.y27{bottom:250.264200px;}
.yc3{bottom:255.077400px;}
.y34{bottom:257.413500px;}
.y64{bottom:260.078700px;}
.y8d{bottom:260.078850px;}
.yeb{bottom:268.168800px;}
.yd2{bottom:269.028600px;}
.yde{bottom:269.229900px;}
.y26{bottom:270.064200px;}
.yc2{bottom:270.077400px;}
.y33{bottom:275.413500px;}
.y63{bottom:281.078700px;}
.y8c{bottom:281.078850px;}
.yf2{bottom:286.529400px;}
.yea{bottom:287.968800px;}
.yd1{bottom:288.658500px;}
.y25{bottom:289.864200px;}
.ydd{bottom:290.985900px;}
.y32{bottom:293.413500px;}
.yc1{bottom:295.834800px;}
.y62{bottom:302.078700px;}
.y8b{bottom:302.078850px;}
.yd0{bottom:308.288400px;}
.y31{bottom:311.413500px;}
.ydc{bottom:312.741750px;}
.y24{bottom:318.168150px;}
.yc0{bottom:319.291500px;}
.y61{bottom:323.078700px;}
.y8a{bottom:323.078850px;}
.ycf{bottom:327.918300px;}
.ydb{bottom:334.497750px;}
.y23{bottom:337.968000px;}
.ybf{bottom:342.748200px;}
.yf6{bottom:344.078700px;}
.y89{bottom:344.078850px;}
.y30{bottom:346.421400px;}
.yce{bottom:347.548350px;}
.yda{bottom:356.553600px;}
.y22{bottom:357.768150px;}
.y60{bottom:358.440900px;}
.y2f{bottom:364.421400px;}
.yf5{bottom:365.078700px;}
.y88{bottom:365.078850px;}
.ybe{bottom:366.204900px;}
.ycd{bottom:367.178250px;}
.yd9{bottom:377.459100px;}
.y21{bottom:377.568000px;}
.y2e{bottom:382.421400px;}
.yf4{bottom:386.078700px;}
.y87{bottom:386.078850px;}
.ycc{bottom:386.808150px;}
.ybd{bottom:389.661600px;}
.yf1{bottom:391.529400px;}
.y20{bottom:397.368000px;}
.y2d{bottom:400.421400px;}
.ycb{bottom:406.438050px;}
.y5f{bottom:407.078700px;}
.y86{bottom:407.078850px;}
.yd8{bottom:408.791400px;}
.ybc{bottom:413.118300px;}
.y1f{bottom:417.168150px;}
.yca{bottom:426.067950px;}
.y5e{bottom:428.078700px;}
.y85{bottom:428.078850px;}
.yd7{bottom:428.591400px;}
.ybb{bottom:436.875000px;}
.y1e{bottom:436.968000px;}
.yc9{bottom:445.997850px;}
.yd6{bottom:448.391400px;}
.y5d{bottom:449.078700px;}
.y9b{bottom:449.078850px;}
.y1d{bottom:456.768150px;}
.y84{bottom:463.441050px;}
.yc8{bottom:464.777400px;}
.yba{bottom:469.057650px;}
.y5c{bottom:470.078700px;}
.y9a{bottom:470.078850px;}
.yf0{bottom:475.529400px;}
.y1c{bottom:485.071950px;}
.yb9{bottom:488.857650px;}
.y5b{bottom:491.078700px;}
.y99{bottom:491.078850px;}
.yc7{bottom:495.259350px;}
.y1b{bottom:504.872100px;}
.y5a{bottom:512.078700px;}
.y83{bottom:512.078850px;}
.yc6{bottom:515.059200px;}
.y1a{bottom:524.671950px;}
.y59{bottom:533.078700px;}
.y82{bottom:533.078850px;}
.yc5{bottom:534.859200px;}
.yef{bottom:538.529400px;}
.y19{bottom:544.471950px;}
.y58{bottom:554.078700px;}
.y81{bottom:554.078850px;}
.y18{bottom:564.271950px;}
.y57{bottom:575.078700px;}
.y80{bottom:575.078850px;}
.y17{bottom:584.071950px;}
.y56{bottom:596.078700px;}
.y7f{bottom:596.078850px;}
.ye6{bottom:602.184600px;}
.yd4{bottom:603.099150px;}
.y16{bottom:603.872100px;}
.y55{bottom:617.078700px;}
.y7e{bottom:617.078850px;}
.yac{bottom:622.839600px;}
.yb8{bottom:624.011100px;}
.y15{bottom:632.175900px;}
.y54{bottom:638.078700px;}
.y7d{bottom:638.078850px;}
.yb7{bottom:639.011100px;}
.yab{bottom:644.382900px;}
.y14{bottom:651.975900px;}
.yb6{bottom:654.011100px;}
.y53{bottom:659.078700px;}
.y7c{bottom:659.078850px;}
.yaa{bottom:665.926350px;}
.yb5{bottom:669.011100px;}
.y13{bottom:671.775900px;}
.y52{bottom:680.078700px;}
.y7b{bottom:680.078850px;}
.ya9{bottom:687.469500px;}
.y12{bottom:691.575900px;}
.yb4{bottom:694.768650px;}
.y51{bottom:701.078700px;}
.y7a{bottom:701.078850px;}
.ya8{bottom:709.012800px;}
.y11{bottom:711.375900px;}
.yb3{bottom:718.225350px;}
.y50{bottom:722.078700px;}
.y79{bottom:722.078850px;}
.ya7{bottom:730.556250px;}
.y10{bottom:731.175900px;}
.yb2{bottom:741.682050px;}
.y4f{bottom:743.078700px;}
.y78{bottom:743.078850px;}
.yf{bottom:750.975900px;}
.ya6{bottom:752.099550px;}
.y4e{bottom:764.078700px;}
.y77{bottom:764.078850px;}
.yb1{bottom:765.138750px;}
.ye{bottom:770.775900px;}
.ya5{bottom:773.642700px;}
.y4d{bottom:785.078700px;}
.y76{bottom:785.078850px;}
.yb0{bottom:788.595450px;}
.yd{bottom:790.576050px;}
.ya4{bottom:795.186150px;}
.y98{bottom:799.441050px;}
.y4c{bottom:806.078700px;}
.y75{bottom:806.078850px;}
.ye9{bottom:810.211800px;}
.yaf{bottom:812.052150px;}
.ya3{bottom:816.729450px;}
.yc{bottom:821.673450px;}
.y4b{bottom:827.078700px;}
.y74{bottom:827.078850px;}
.ye8{bottom:830.011800px;}
.yae{bottom:835.808850px;}
.ya2{bottom:838.272750px;}
.y4a{bottom:848.078700px;}
.y73{bottom:848.078850px;}
.yee{bottom:853.529250px;}
.ya1{bottom:859.816050px;}
.yad{bottom:867.991500px;}
.y49{bottom:869.078700px;}
.y72{bottom:869.078850px;}
.ya0{bottom:881.659350px;}
.y48{bottom:890.078700px;}
.yc4{bottom:890.078850px;}
.y9f{bottom:892.112100px;}
.y6{bottom:900.954900px;}
.y47{bottom:911.078700px;}
.y71{bottom:911.078850px;}
.y5{bottom:918.954900px;}
.y46{bottom:932.078700px;}
.y70{bottom:932.078850px;}
.y9e{bottom:933.897000px;}
.yed{bottom:937.009650px;}
.y45{bottom:953.078700px;}
.y97{bottom:953.078850px;}
.y4{bottom:953.962800px;}
.y6f{bottom:967.441050px;}
.yec{bottom:969.307200px;}
.y44{bottom:974.078700px;}
.y96{bottom:974.078850px;}
.y3{bottom:990.770700px;}
.y43{bottom:995.078700px;}
.y95{bottom:995.078850px;}
.y42{bottom:1016.078700px;}
.y6e{bottom:1016.078850px;}
.y2{bottom:1023.770700px;}
.y9d{bottom:1030.441050px;}
.y41{bottom:1037.078700px;}
.y6d{bottom:1037.078850px;}
.y40{bottom:1058.078700px;}
.y6c{bottom:1058.078850px;}
.y3f{bottom:1079.078700px;}
.y6b{bottom:1079.078850px;}
.yb{bottom:1084.303650px;}
.y6a{bottom:1100.078850px;}
.y3e{bottom:1111.570800px;}
.yd5{bottom:1112.010900px;}
.y69{bottom:1121.078850px;}
.y3a{bottom:1124.025600px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3d{bottom:1178.691750px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h12{height:38.226562px;}
.h13{height:38.250000px;}
.hd{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.hb{height:43.057617px;}
.ha{height:43.321289px;}
.hc{height:45.675024px;}
.h9{height:47.343750px;}
.hf{height:48.134766px;}
.h14{height:50.176758px;}
.h10{height:52.078125px;}
.h4{height:52.948242px;}
.he{height:56.812500px;}
.h11{height:80.037563px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.x10{left:112.252050px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x12{left:129.259950px;}
.xe{left:130.595700px;}
.x13{left:137.438100px;}
.x14{left:215.149650px;}
.x4{left:300.189000px;}
.x18{left:304.440900px;}
.xb{left:317.196900px;}
.xd{left:334.204800px;}
.x15{left:353.224500px;}
.x3{left:396.050700px;}
.x19{left:406.488150px;}
.xf{left:437.643750px;}
.x11{left:441.487500px;}
.x8{left:514.213800px;}
.x17{left:540.279300px;}
.x1a{left:570.369750px;}
.x16{left:584.725200px;}
.x9{left:691.588800px;}
.x1{left:801.157500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:37.165333pt;}
.ls13{letter-spacing:-1.365333pt;}
.ls16{letter-spacing:-0.853333pt;}
.ls18{letter-spacing:-0.816000pt;}
.ls1b{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.746667pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.373333pt;}
.ls1d{letter-spacing:-0.298667pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000533pt;}
.lse{letter-spacing:0.001067pt;}
.ls12{letter-spacing:0.001600pt;}
.ls1{letter-spacing:0.001984pt;}
.ls11{letter-spacing:0.002133pt;}
.ls15{letter-spacing:0.003200pt;}
.lsa{letter-spacing:0.003733pt;}
.lsb{letter-spacing:0.010667pt;}
.lsc{letter-spacing:0.011200pt;}
.ls9{letter-spacing:0.012267pt;}
.ls10{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.018133pt;}
.ls3{letter-spacing:0.022400pt;}
.ls5{letter-spacing:0.090667pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls0{letter-spacing:38.401984pt;}
.ws28{word-spacing:-15.936000pt;}
.wsc5{word-spacing:-14.608000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws53{word-spacing:-13.173333pt;}
.ws55{word-spacing:-12.533333pt;}
.ws5{word-spacing:-12.432000pt;}
.ws54{word-spacing:-12.426667pt;}
.wsce{word-spacing:-12.288000pt;}
.ws4{word-spacing:-11.952000pt;}
.wsc4{word-spacing:-11.904000pt;}
.ws6{word-spacing:-10.992000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws6e{word-spacing:-10.624000pt;}
.ws6f{word-spacing:-10.581333pt;}
.ws8{word-spacing:-9.770667pt;}
.ws1{word-spacing:-9.685333pt;}
.ws27{word-spacing:-9.600000pt;}
.ws0{word-spacing:-8.549333pt;}
.ws2{word-spacing:-8.179200pt;}
.ws6d{word-spacing:-7.711147pt;}
.wsec{word-spacing:-6.288000pt;}
.ws5f{word-spacing:-5.173333pt;}
.wsa3{word-spacing:-4.053333pt;}
.wsb2{word-spacing:-3.888000pt;}
.ws61{word-spacing:-3.626667pt;}
.ws60{word-spacing:-3.573333pt;}
.ws29{word-spacing:-2.933333pt;}
.wsaa{word-spacing:-2.826667pt;}
.wseb{word-spacing:-2.736000pt;}
.ws3f{word-spacing:-2.400000pt;}
.ws2b{word-spacing:-2.346667pt;}
.ws33{word-spacing:-2.293333pt;}
.ws8e{word-spacing:-2.240000pt;}
.ws64{word-spacing:-2.133333pt;}
.wsca{word-spacing:-2.064000pt;}
.ws34{word-spacing:-2.026667pt;}
.ws40{word-spacing:-1.920000pt;}
.wsa4{word-spacing:-1.813333pt;}
.wsd2{word-spacing:-1.776000pt;}
.wsc9{word-spacing:-1.728000pt;}
.ws98{word-spacing:-1.653333pt;}
.wse8{word-spacing:-1.584000pt;}
.ws42{word-spacing:-1.440000pt;}
.ws1c{word-spacing:-1.392000pt;}
.ws92{word-spacing:-1.386667pt;}
.ws7a{word-spacing:-1.333333pt;}
.ws12{word-spacing:-1.248000pt;}
.ws35{word-spacing:-1.173333pt;}
.wsb{word-spacing:-1.114667pt;}
.wsd7{word-spacing:-1.104000pt;}
.wscf{word-spacing:-1.056000pt;}
.ws78{word-spacing:-1.013333pt;}
.ws1f{word-spacing:-1.008000pt;}
.ws90{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.912000pt;}
.ws63{word-spacing:-0.906667pt;}
.ws36{word-spacing:-0.853333pt;}
.ws69{word-spacing:-0.800000pt;}
.wsd0{word-spacing:-0.720000pt;}
.ws7b{word-spacing:-0.693333pt;}
.wse9{word-spacing:-0.576000pt;}
.wsbc{word-spacing:-0.533333pt;}
.wse5{word-spacing:-0.528000pt;}
.wsa0{word-spacing:-0.480000pt;}
.ws8d{word-spacing:-0.426667pt;}
.wsda{word-spacing:-0.384000pt;}
.wsac{word-spacing:-0.373333pt;}
.wsa2{word-spacing:-0.320000pt;}
.ws4b{word-spacing:-0.266667pt;}
.ws2d{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws2c{word-spacing:-0.106667pt;}
.wsa{word-spacing:-0.090667pt;}
.wsde{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.ws49{word-spacing:0.053333pt;}
.ws17{word-spacing:0.096000pt;}
.ws3d{word-spacing:0.106667pt;}
.wsb5{word-spacing:0.160000pt;}
.ws3c{word-spacing:0.266667pt;}
.ws23{word-spacing:0.288000pt;}
.wsb3{word-spacing:0.298667pt;}
.ws73{word-spacing:0.373333pt;}
.ws38{word-spacing:0.426667pt;}
.ws79{word-spacing:0.533333pt;}
.ws9c{word-spacing:0.586667pt;}
.wsd{word-spacing:0.614400pt;}
.ws6a{word-spacing:0.693333pt;}
.wsf{word-spacing:0.720000pt;}
.ws5b{word-spacing:0.746667pt;}
.wsab{word-spacing:0.800000pt;}
.ws24{word-spacing:0.864000pt;}
.ws65{word-spacing:0.960000pt;}
.ws1a{word-spacing:1.008000pt;}
.ws47{word-spacing:1.013333pt;}
.wsdc{word-spacing:1.056000pt;}
.ws3b{word-spacing:1.066667pt;}
.ws43{word-spacing:1.120000pt;}
.wsa9{word-spacing:1.173333pt;}
.ws4c{word-spacing:1.280000pt;}
.ws41{word-spacing:1.386667pt;}
.ws39{word-spacing:1.546667pt;}
.ws2e{word-spacing:1.653333pt;}
.wsaf{word-spacing:1.706667pt;}
.wsa1{word-spacing:1.760000pt;}
.ws48{word-spacing:1.813333pt;}
.ws22{word-spacing:1.824000pt;}
.wsbd{word-spacing:1.866667pt;}
.ws1e{word-spacing:1.872000pt;}
.ws8b{word-spacing:1.920000pt;}
.ws7c{word-spacing:1.973333pt;}
.wsb1{word-spacing:2.016000pt;}
.ws2a{word-spacing:2.133333pt;}
.wsbe{word-spacing:2.240000pt;}
.ws91{word-spacing:2.293333pt;}
.wse4{word-spacing:2.352000pt;}
.ws4f{word-spacing:2.400000pt;}
.wsdf{word-spacing:2.448000pt;}
.ws71{word-spacing:2.453333pt;}
.wsa7{word-spacing:2.506667pt;}
.ws13{word-spacing:2.544000pt;}
.ws9d{word-spacing:2.560000pt;}
.ws19{word-spacing:2.640000pt;}
.ws1d{word-spacing:2.688000pt;}
.wsd1{word-spacing:2.832000pt;}
.ws45{word-spacing:2.880000pt;}
.ws68{word-spacing:2.933333pt;}
.wsad{word-spacing:2.986667pt;}
.ws8f{word-spacing:3.093333pt;}
.ws59{word-spacing:3.146667pt;}
.ws37{word-spacing:3.200000pt;}
.wsc3{word-spacing:3.456000pt;}
.wsc2{word-spacing:3.504000pt;}
.ws51{word-spacing:3.573333pt;}
.ws56{word-spacing:3.680000pt;}
.ws9f{word-spacing:3.696000pt;}
.wsa5{word-spacing:3.733333pt;}
.ws18{word-spacing:3.744000pt;}
.wsc6{word-spacing:3.786667pt;}
.ws3a{word-spacing:3.840000pt;}
.wscb{word-spacing:3.888000pt;}
.wse3{word-spacing:3.936000pt;}
.ws5a{word-spacing:3.946667pt;}
.ws58{word-spacing:4.000000pt;}
.wsba{word-spacing:4.053333pt;}
.ws99{word-spacing:4.160000pt;}
.ws26{word-spacing:4.176000pt;}
.ws9e{word-spacing:4.266667pt;}
.wsc8{word-spacing:4.320000pt;}
.ws52{word-spacing:4.373333pt;}
.ws8c{word-spacing:4.480000pt;}
.ws21{word-spacing:4.512000pt;}
.wse{word-spacing:4.560000pt;}
.wsc7{word-spacing:4.586667pt;}
.ws20{word-spacing:4.608000pt;}
.ws30{word-spacing:4.640000pt;}
.wse6{word-spacing:4.656000pt;}
.wsbb{word-spacing:4.693333pt;}
.ws77{word-spacing:4.800000pt;}
.ws31{word-spacing:4.906667pt;}
.wse2{word-spacing:4.944000pt;}
.ws7d{word-spacing:4.960000pt;}
.ws6c{word-spacing:5.066667pt;}
.ws11{word-spacing:5.136000pt;}
.ws6b{word-spacing:5.280000pt;}
.ws2f{word-spacing:5.333333pt;}
.ws74{word-spacing:5.546667pt;}
.wsb8{word-spacing:5.653333pt;}
.ws44{word-spacing:5.706667pt;}
.wsd6{word-spacing:5.952000pt;}
.ws4a{word-spacing:5.973333pt;}
.ws75{word-spacing:6.026667pt;}
.ws15{word-spacing:6.048000pt;}
.ws14{word-spacing:6.096000pt;}
.ws32{word-spacing:6.293333pt;}
.wsc1{word-spacing:6.336000pt;}
.ws46{word-spacing:6.346667pt;}
.wsc0{word-spacing:6.384000pt;}
.ws5d{word-spacing:6.400000pt;}
.ws7e{word-spacing:6.506667pt;}
.ws3e{word-spacing:6.613333pt;}
.ws72{word-spacing:6.666667pt;}
.wsb4{word-spacing:6.773333pt;}
.wsdb{word-spacing:6.816000pt;}
.wsb0{word-spacing:6.826667pt;}
.ws67{word-spacing:6.880000pt;}
.ws76{word-spacing:7.306667pt;}
.ws10{word-spacing:7.440000pt;}
.ws66{word-spacing:7.573333pt;}
.wsbf{word-spacing:7.626667pt;}
.ws16{word-spacing:7.776000pt;}
.ws4e{word-spacing:7.786667pt;}
.ws5c{word-spacing:8.000000pt;}
.ws5e{word-spacing:8.053333pt;}
.ws9b{word-spacing:8.106667pt;}
.wsd5{word-spacing:8.256000pt;}
.wsae{word-spacing:8.640000pt;}
.wsd4{word-spacing:9.648000pt;}
.ws9a{word-spacing:9.706667pt;}
.ws1b{word-spacing:9.840000pt;}
.ws97{word-spacing:9.866667pt;}
.wse0{word-spacing:10.752000pt;}
.wsdd{word-spacing:10.992000pt;}
.wsb6{word-spacing:11.093333pt;}
.ws50{word-spacing:11.466667pt;}
.wse7{word-spacing:12.240000pt;}
.wsb7{word-spacing:12.426667pt;}
.wsd8{word-spacing:12.480000pt;}
.wscd{word-spacing:12.624000pt;}
.wsb9{word-spacing:12.960000pt;}
.ws62{word-spacing:13.226667pt;}
.ws4d{word-spacing:13.280000pt;}
.ws57{word-spacing:16.320000pt;}
.wscc{word-spacing:16.752000pt;}
.wsea{word-spacing:18.336000pt;}
.wse1{word-spacing:18.480000pt;}
.wsd9{word-spacing:23.616000pt;}
.wsd3{word-spacing:26.256000pt;}
.wsa6{word-spacing:30.613333pt;}
.ws8a{word-spacing:170.322667pt;}
.ws86{word-spacing:170.323200pt;}
.ws87{word-spacing:197.594667pt;}
.ws83{word-spacing:209.573867pt;}
.ws96{word-spacing:223.236267pt;}
.ws88{word-spacing:223.721067pt;}
.ws84{word-spacing:223.741333pt;}
.ws89{word-spacing:225.681067pt;}
.ws85{word-spacing:249.639467pt;}
.ws94{word-spacing:276.654933pt;}
.wsa8{word-spacing:288.634133pt;}
.ws81{word-spacing:306.188267pt;}
.ws82{word-spacing:306.385600pt;}
.ws93{word-spacing:349.416533pt;}
.ws80{word-spacing:359.804267pt;}
.ws95{word-spacing:365.523733pt;}
.ws7f{word-spacing:520.889600pt;}
.ws70{word-spacing:1004.366400pt;}
._d{margin-left:-10.199467pt;}
._2{margin-left:-7.226133pt;}
._3{margin-left:-6.147200pt;}
._c{margin-left:-5.188800pt;}
._4{margin-left:-3.954133pt;}
._6{margin-left:-2.950933pt;}
._0{margin-left:-1.913067pt;}
._1{margin-left:-0.933867pt;}
._12{width:0.890667pt;}
._5{width:1.786133pt;}
._a{width:3.028800pt;}
._b{width:4.173867pt;}
._8{width:5.188800pt;}
._9{width:6.369600pt;}
._10{width:7.356800pt;}
._f{width:9.040000pt;}
._e{width:10.330667pt;}
._49{width:11.477867pt;}
._4b{width:13.123200pt;}
._3f{width:14.709333pt;}
._4c{width:25.694400pt;}
._11{width:28.045867pt;}
._7{width:32.328000pt;}
._4a{width:38.998400pt;}
._3c{width:50.594667pt;}
._41{width:53.970667pt;}
._30{width:56.352533pt;}
._2d{width:74.736533pt;}
._31{width:81.795200pt;}
._34{width:87.684267pt;}
._35{width:94.992000pt;}
._27{width:101.543467pt;}
._3d{width:107.218133pt;}
._19{width:116.594667pt;}
._32{width:118.689067pt;}
._38{width:125.417067pt;}
._1a{width:128.594667pt;}
._33{width:132.263467pt;}
._47{width:141.742933pt;}
._20{width:148.487467pt;}
._45{width:150.944533pt;}
._26{width:158.306667pt;}
._1d{width:160.466667pt;}
._48{width:165.337067pt;}
._3e{width:170.730133pt;}
._24{width:172.466133pt;}
._44{width:174.204267pt;}
._28{width:178.373867pt;}
._37{width:182.812267pt;}
._1e{width:184.425067pt;}
._13{width:186.590933pt;}
._40{width:192.620800pt;}
._36{width:194.150933pt;}
._23{width:196.444800pt;}
._1b{width:200.941867pt;}
._16{width:203.439467pt;}
._3a{width:204.902933pt;}
._14{width:211.879467pt;}
._17{width:215.549333pt;}
._46{width:225.646400pt;}
._3b{width:228.549867pt;}
._42{width:234.834133pt;}
._15{width:239.964267pt;}
._2a{width:243.282133pt;}
._39{width:246.302400pt;}
._43{width:248.818667pt;}
._2e{width:252.052267pt;}
._29{width:253.731733pt;}
._2b{width:261.436267pt;}
._2c{width:272.143467pt;}
._2f{width:395.878400pt;}
._18{width:514.531733pt;}
._25{width:787.308267pt;}
._22{width:879.425600pt;}
._1f{width:941.334933pt;}
._1c{width:987.670933pt;}
._21{width:1026.369600pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.698800pt;}
.y68{bottom:100.514400pt;}
.y94{bottom:100.514533pt;}
.ya{bottom:104.175867pt;}
.ye5{bottom:107.149600pt;}
.y2c{bottom:115.559333pt;}
.y9{bottom:116.975867pt;}
.y67{bottom:119.181067pt;}
.y93{bottom:119.181200pt;}
.ye4{bottom:120.482933pt;}
.y8{bottom:129.775867pt;}
.y2b{bottom:133.159333pt;}
.yfb{bottom:137.847733pt;}
.y92{bottom:137.847867pt;}
.y7{bottom:142.575867pt;}
.ye3{bottom:142.622667pt;}
.yf3{bottom:142.692800pt;}
.y66{bottom:149.789733pt;}
.yfa{bottom:156.514400pt;}
.y91{bottom:156.514533pt;}
.ye2{bottom:161.961200pt;}
.y9c{bottom:169.280933pt;}
.y2a{bottom:169.657067pt;}
.yf9{bottom:175.181067pt;}
.y90{bottom:175.181200pt;}
.y65{bottom:178.498667pt;}
.y37{bottom:180.812133pt;}
.ye1{bottom:181.299733pt;}
.y29{bottom:187.256933pt;}
.ye7{bottom:187.947600pt;}
.yf8{bottom:193.847733pt;}
.y8f{bottom:193.847867pt;}
.y36{bottom:196.812000pt;}
.ye0{bottom:200.638400pt;}
.y28{bottom:204.857067pt;}
.yf7{bottom:212.514400pt;}
.y8e{bottom:212.514533pt;}
.y35{bottom:212.812000pt;}
.yd3{bottom:218.130667pt;}
.ydf{bottom:219.976933pt;}
.y27{bottom:222.457067pt;}
.yc3{bottom:226.735467pt;}
.y34{bottom:228.812000pt;}
.y64{bottom:231.181067pt;}
.y8d{bottom:231.181200pt;}
.yeb{bottom:238.372267pt;}
.yd2{bottom:239.136533pt;}
.yde{bottom:239.315467pt;}
.y26{bottom:240.057067pt;}
.yc2{bottom:240.068800pt;}
.y33{bottom:244.812000pt;}
.y63{bottom:249.847733pt;}
.y8c{bottom:249.847867pt;}
.yf2{bottom:254.692800pt;}
.yea{bottom:255.972267pt;}
.yd1{bottom:256.585333pt;}
.y25{bottom:257.657067pt;}
.ydd{bottom:258.654133pt;}
.y32{bottom:260.812000pt;}
.yc1{bottom:262.964267pt;}
.y62{bottom:268.514400pt;}
.y8b{bottom:268.514533pt;}
.yd0{bottom:274.034133pt;}
.y31{bottom:276.812000pt;}
.ydc{bottom:277.992667pt;}
.y24{bottom:282.816133pt;}
.yc0{bottom:283.814667pt;}
.y61{bottom:287.181067pt;}
.y8a{bottom:287.181200pt;}
.ycf{bottom:291.482933pt;}
.ydb{bottom:297.331333pt;}
.y23{bottom:300.416000pt;}
.ybf{bottom:304.665067pt;}
.yf6{bottom:305.847733pt;}
.y89{bottom:305.847867pt;}
.y30{bottom:307.930133pt;}
.yce{bottom:308.931867pt;}
.yda{bottom:316.936533pt;}
.y22{bottom:318.016133pt;}
.y60{bottom:318.614133pt;}
.y2f{bottom:323.930133pt;}
.yf5{bottom:324.514400pt;}
.y88{bottom:324.514533pt;}
.ybe{bottom:325.515467pt;}
.ycd{bottom:326.380667pt;}
.yd9{bottom:335.519200pt;}
.y21{bottom:335.616000pt;}
.y2e{bottom:339.930133pt;}
.yf4{bottom:343.181067pt;}
.y87{bottom:343.181200pt;}
.ycc{bottom:343.829467pt;}
.ybd{bottom:346.365867pt;}
.yf1{bottom:348.026133pt;}
.y20{bottom:353.216000pt;}
.y2d{bottom:355.930133pt;}
.ycb{bottom:361.278267pt;}
.y5f{bottom:361.847733pt;}
.y86{bottom:361.847867pt;}
.yd8{bottom:363.370133pt;}
.ybc{bottom:367.216267pt;}
.y1f{bottom:370.816133pt;}
.yca{bottom:378.727067pt;}
.y5e{bottom:380.514400pt;}
.y85{bottom:380.514533pt;}
.yd7{bottom:380.970133pt;}
.ybb{bottom:388.333333pt;}
.y1e{bottom:388.416000pt;}
.yc9{bottom:396.442533pt;}
.yd6{bottom:398.570133pt;}
.y5d{bottom:399.181067pt;}
.y9b{bottom:399.181200pt;}
.y1d{bottom:406.016133pt;}
.y84{bottom:411.947600pt;}
.yc8{bottom:413.135467pt;}
.yba{bottom:416.940133pt;}
.y5c{bottom:417.847733pt;}
.y9a{bottom:417.847867pt;}
.yf0{bottom:422.692800pt;}
.y1c{bottom:431.175067pt;}
.yb9{bottom:434.540133pt;}
.y5b{bottom:436.514400pt;}
.y99{bottom:436.514533pt;}
.yc7{bottom:440.230533pt;}
.y1b{bottom:448.775200pt;}
.y5a{bottom:455.181067pt;}
.y83{bottom:455.181200pt;}
.yc6{bottom:457.830400pt;}
.y1a{bottom:466.375067pt;}
.y59{bottom:473.847733pt;}
.y82{bottom:473.847867pt;}
.yc5{bottom:475.430400pt;}
.yef{bottom:478.692800pt;}
.y19{bottom:483.975067pt;}
.y58{bottom:492.514400pt;}
.y81{bottom:492.514533pt;}
.y18{bottom:501.575067pt;}
.y57{bottom:511.181067pt;}
.y80{bottom:511.181200pt;}
.y17{bottom:519.175067pt;}
.y56{bottom:529.847733pt;}
.y7f{bottom:529.847867pt;}
.ye6{bottom:535.275200pt;}
.yd4{bottom:536.088133pt;}
.y16{bottom:536.775200pt;}
.y55{bottom:548.514400pt;}
.y7e{bottom:548.514533pt;}
.yac{bottom:553.635200pt;}
.yb8{bottom:554.676533pt;}
.y15{bottom:561.934133pt;}
.y54{bottom:567.181067pt;}
.y7d{bottom:567.181200pt;}
.yb7{bottom:568.009867pt;}
.yab{bottom:572.784800pt;}
.y14{bottom:579.534133pt;}
.yb6{bottom:581.343200pt;}
.y53{bottom:585.847733pt;}
.y7c{bottom:585.847867pt;}
.yaa{bottom:591.934533pt;}
.yb5{bottom:594.676533pt;}
.y13{bottom:597.134133pt;}
.y52{bottom:604.514400pt;}
.y7b{bottom:604.514533pt;}
.ya9{bottom:611.084000pt;}
.y12{bottom:614.734133pt;}
.yb4{bottom:617.572133pt;}
.y51{bottom:623.181067pt;}
.y7a{bottom:623.181200pt;}
.ya8{bottom:630.233600pt;}
.y11{bottom:632.334133pt;}
.yb3{bottom:638.422533pt;}
.y50{bottom:641.847733pt;}
.y79{bottom:641.847867pt;}
.ya7{bottom:649.383333pt;}
.y10{bottom:649.934133pt;}
.yb2{bottom:659.272933pt;}
.y4f{bottom:660.514400pt;}
.y78{bottom:660.514533pt;}
.yf{bottom:667.534133pt;}
.ya6{bottom:668.532933pt;}
.y4e{bottom:679.181067pt;}
.y77{bottom:679.181200pt;}
.yb1{bottom:680.123333pt;}
.ye{bottom:685.134133pt;}
.ya5{bottom:687.682400pt;}
.y4d{bottom:697.847733pt;}
.y76{bottom:697.847867pt;}
.yb0{bottom:700.973733pt;}
.yd{bottom:702.734267pt;}
.ya4{bottom:706.832133pt;}
.y98{bottom:710.614267pt;}
.y4c{bottom:716.514400pt;}
.y75{bottom:716.514533pt;}
.ye9{bottom:720.188267pt;}
.yaf{bottom:721.824133pt;}
.ya3{bottom:725.981733pt;}
.yc{bottom:730.376400pt;}
.y4b{bottom:735.181067pt;}
.y74{bottom:735.181200pt;}
.ye8{bottom:737.788267pt;}
.yae{bottom:742.941200pt;}
.ya2{bottom:745.131333pt;}
.y4a{bottom:753.847733pt;}
.y73{bottom:753.847867pt;}
.yee{bottom:758.692667pt;}
.ya1{bottom:764.280933pt;}
.yad{bottom:771.548000pt;}
.y49{bottom:772.514400pt;}
.y72{bottom:772.514533pt;}
.ya0{bottom:783.697200pt;}
.y48{bottom:791.181067pt;}
.yc4{bottom:791.181200pt;}
.y9f{bottom:792.988533pt;}
.y6{bottom:800.848800pt;}
.y47{bottom:809.847733pt;}
.y71{bottom:809.847867pt;}
.y5{bottom:816.848800pt;}
.y46{bottom:828.514400pt;}
.y70{bottom:828.514533pt;}
.y9e{bottom:830.130667pt;}
.yed{bottom:832.897467pt;}
.y45{bottom:847.181067pt;}
.y97{bottom:847.181200pt;}
.y4{bottom:847.966933pt;}
.y6f{bottom:859.947600pt;}
.yec{bottom:861.606400pt;}
.y44{bottom:865.847733pt;}
.y96{bottom:865.847867pt;}
.y3{bottom:880.685067pt;}
.y43{bottom:884.514400pt;}
.y95{bottom:884.514533pt;}
.y42{bottom:903.181067pt;}
.y6e{bottom:903.181200pt;}
.y2{bottom:910.018400pt;}
.y9d{bottom:915.947600pt;}
.y41{bottom:921.847733pt;}
.y6d{bottom:921.847867pt;}
.y40{bottom:940.514400pt;}
.y6c{bottom:940.514533pt;}
.y3f{bottom:959.181067pt;}
.y6b{bottom:959.181200pt;}
.yb{bottom:963.825467pt;}
.y6a{bottom:977.847867pt;}
.y3e{bottom:988.062933pt;}
.yd5{bottom:988.454133pt;}
.y69{bottom:996.514533pt;}
.y3a{bottom:999.133867pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3d{bottom:1047.726000pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h12{height:33.979167pt;}
.h13{height:34.000000pt;}
.hd{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.hb{height:38.273438pt;}
.ha{height:38.507812pt;}
.hc{height:40.600021pt;}
.h9{height:42.083333pt;}
.hf{height:42.786458pt;}
.h14{height:44.601562pt;}
.h10{height:46.291667pt;}
.h4{height:47.065104pt;}
.he{height:50.500000pt;}
.h11{height:71.144500pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.x10{left:99.779600pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x12{left:114.897733pt;}
.xe{left:116.085067pt;}
.x13{left:122.167200pt;}
.x14{left:191.244133pt;}
.x4{left:266.834667pt;}
.x18{left:270.614133pt;}
.xb{left:281.952800pt;}
.xd{left:297.070933pt;}
.x15{left:313.977333pt;}
.x3{left:352.045067pt;}
.x19{left:361.322800pt;}
.xf{left:389.016667pt;}
.x11{left:392.433333pt;}
.x8{left:457.078933pt;}
.x17{left:480.248267pt;}
.x1a{left:506.995333pt;}
.x16{left:519.755733pt;}
.x9{left:614.745600pt;}
.x1{left:712.140000pt;}
}




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