
    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_4cb0b8db726aa131a84b1a7d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_f5a4e4e5be924b6e8aa4298d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_8e754dfd109863885ffce272.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_d72a8f0d018038b08a406dd5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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_a8d7d60c7cf8dc9190d1398f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_ca9cd08d914b92408a968848.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_a9f45f6ac4ab8ec275698dac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_d47059cb12721ff80d4b8c75.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_f082b59bebead21b4ff7330e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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;}
.m4{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls3{letter-spacing:-4.800000px;}
.ls1{letter-spacing:-1.781340px;}
.ls4{letter-spacing:-0.594000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001374px;}
.ls6{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.180600px;}
.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;}
}
.ws3{word-spacing:-23.040000px;}
.ws6{word-spacing:-17.280000px;}
.ws57{word-spacing:-15.840000px;}
.ws8d{word-spacing:-15.246000px;}
.ws56{word-spacing:-15.240000px;}
.ws4{word-spacing:-14.580600px;}
.ws5{word-spacing:-14.400000px;}
.ws2{word-spacing:-14.058660px;}
.wscc{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.166044px;}
.wsb5{word-spacing:-12.192000px;}
.ws1a{word-spacing:-10.440000px;}
.ws39{word-spacing:-9.906000px;}
.wscb{word-spacing:-7.744572px;}
.ws6c{word-spacing:-4.859400px;}
.ws60{word-spacing:-4.140000px;}
.wsd{word-spacing:-4.079400px;}
.ws94{word-spacing:-3.420600px;}
.ws91{word-spacing:-3.000000px;}
.ws72{word-spacing:-2.940000px;}
.ws80{word-spacing:-2.880000px;}
.ws5e{word-spacing:-2.820000px;}
.wsc{word-spacing:-2.760600px;}
.ws3e{word-spacing:-2.700000px;}
.ws6b{word-spacing:-2.640600px;}
.ws7d{word-spacing:-2.580000px;}
.ws35{word-spacing:-2.520600px;}
.wsb{word-spacing:-2.460000px;}
.ws1e{word-spacing:-2.340000px;}
.wsbf{word-spacing:-2.304000px;}
.ws48{word-spacing:-2.279400px;}
.wscd{word-spacing:-2.256000px;}
.ws9e{word-spacing:-2.220000px;}
.ws34{word-spacing:-2.160000px;}
.wsac{word-spacing:-2.100000px;}
.wsad{word-spacing:-2.040000px;}
.ws25{word-spacing:-1.920000px;}
.ws8b{word-spacing:-1.860600px;}
.wsc0{word-spacing:-1.823520px;}
.ws30{word-spacing:-1.800000px;}
.ws53{word-spacing:-1.619400px;}
.wsb6{word-spacing:-1.560000px;}
.ws61{word-spacing:-1.499400px;}
.wsb7{word-spacing:-1.488480px;}
.ws73{word-spacing:-1.440000px;}
.ws9a{word-spacing:-1.320000px;}
.ws95{word-spacing:-1.260000px;}
.ws40{word-spacing:-1.200000px;}
.ws52{word-spacing:-1.140000px;}
.wsb9{word-spacing:-1.056000px;}
.ws75{word-spacing:-1.020000px;}
.ws9b{word-spacing:-0.960600px;}
.wsbd{word-spacing:-0.912000px;}
.ws2c{word-spacing:-0.900000px;}
.ws51{word-spacing:-0.780000px;}
.ws87{word-spacing:-0.660000px;}
.ws6e{word-spacing:-0.599400px;}
.ws58{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.480000px;}
.ws15{word-spacing:-0.420000px;}
.ws98{word-spacing:-0.360000px;}
.wsf{word-spacing:-0.240000px;}
.ws5f{word-spacing:-0.180600px;}
.wscf{word-spacing:-0.162000px;}
.wsbe{word-spacing:-0.096000px;}
.ws77{word-spacing:-0.060600px;}
.ws1{word-spacing:0.000000px;}
.wsc2{word-spacing:0.048480px;}
.ws71{word-spacing:0.060600px;}
.ws90{word-spacing:0.120000px;}
.ws85{word-spacing:0.180600px;}
.ws7c{word-spacing:0.240000px;}
.ws32{word-spacing:0.300000px;}
.ws3d{word-spacing:0.360000px;}
.ws41{word-spacing:0.420000px;}
.ws55{word-spacing:0.480000px;}
.wsb8{word-spacing:0.528000px;}
.ws66{word-spacing:0.540000px;}
.wsa4{word-spacing:0.660000px;}
.ws42{word-spacing:0.840600px;}
.wsa2{word-spacing:0.900000px;}
.ws74{word-spacing:0.960600px;}
.ws2a{word-spacing:1.140000px;}
.wsc6{word-spacing:1.152000px;}
.wsbc{word-spacing:1.199520px;}
.ws1b{word-spacing:1.200000px;}
.ws24{word-spacing:1.260000px;}
.ws3f{word-spacing:1.320000px;}
.ws47{word-spacing:1.379400px;}
.ws82{word-spacing:1.440000px;}
.ws46{word-spacing:1.499400px;}
.ws11{word-spacing:1.560000px;}
.wsbb{word-spacing:1.632000px;}
.ws31{word-spacing:1.680000px;}
.wsb1{word-spacing:1.740600px;}
.ws67{word-spacing:1.800000px;}
.ws8f{word-spacing:1.860600px;}
.ws81{word-spacing:1.980000px;}
.ws21{word-spacing:2.040000px;}
.ws2e{word-spacing:2.100000px;}
.ws96{word-spacing:2.160000px;}
.ws5d{word-spacing:2.220000px;}
.ws86{word-spacing:2.279400px;}
.ws79{word-spacing:2.340000px;}
.ws18{word-spacing:2.399400px;}
.wsca{word-spacing:2.447520px;}
.ws1c{word-spacing:2.460000px;}
.ws2b{word-spacing:2.580000px;}
.ws8a{word-spacing:2.640600px;}
.wsce{word-spacing:2.688000px;}
.wsab{word-spacing:2.700000px;}
.wsc8{word-spacing:2.736480px;}
.ws2d{word-spacing:2.760600px;}
.wsc5{word-spacing:2.784000px;}
.ws49{word-spacing:2.820000px;}
.wsa8{word-spacing:2.880000px;}
.ws2f{word-spacing:2.940000px;}
.ws62{word-spacing:3.000000px;}
.ws68{word-spacing:3.059400px;}
.ws5a{word-spacing:3.120000px;}
.ws7{word-spacing:3.179400px;}
.wsa7{word-spacing:3.299400px;}
.wsc7{word-spacing:3.312000px;}
.ws43{word-spacing:3.360000px;}
.wsc9{word-spacing:3.360480px;}
.ws63{word-spacing:3.420600px;}
.ws4a{word-spacing:3.480000px;}
.wsb0{word-spacing:3.600000px;}
.ws89{word-spacing:3.660000px;}
.wsa6{word-spacing:3.720000px;}
.ws54{word-spacing:3.780000px;}
.wsa0{word-spacing:3.840000px;}
.wsb2{word-spacing:3.900000px;}
.ws1f{word-spacing:4.020000px;}
.wse{word-spacing:4.079400px;}
.ws20{word-spacing:4.140000px;}
.ws8e{word-spacing:4.200600px;}
.ws59{word-spacing:4.260000px;}
.ws4f{word-spacing:4.380000px;}
.ws37{word-spacing:4.500000px;}
.wsaa{word-spacing:4.560000px;}
.wsc1{word-spacing:4.607520px;}
.ws84{word-spacing:4.680000px;}
.ws1d{word-spacing:4.800000px;}
.ws44{word-spacing:4.859400px;}
.ws6d{word-spacing:4.979400px;}
.ws7a{word-spacing:5.040000px;}
.ws83{word-spacing:5.100600px;}
.ws13{word-spacing:5.160000px;}
.ws65{word-spacing:5.280000px;}
.ws19{word-spacing:5.340000px;}
.ws23{word-spacing:5.400000px;}
.ws5c{word-spacing:5.460000px;}
.wsaf{word-spacing:5.580000px;}
.ws69{word-spacing:5.700000px;}
.ws4c{word-spacing:5.759400px;}
.ws16{word-spacing:5.880600px;}
.ws4d{word-spacing:5.940000px;}
.wsb4{word-spacing:6.000600px;}
.ws99{word-spacing:6.180000px;}
.ws26{word-spacing:6.240000px;}
.ws10{word-spacing:6.300000px;}
.wsb3{word-spacing:6.360000px;}
.ws3c{word-spacing:6.419400px;}
.ws14{word-spacing:6.539400px;}
.ws64{word-spacing:6.840000px;}
.ws12{word-spacing:6.900600px;}
.wsc3{word-spacing:6.912000px;}
.ws36{word-spacing:6.960000px;}
.ws45{word-spacing:7.020000px;}
.ws3b{word-spacing:7.080000px;}
.ws8{word-spacing:7.140000px;}
.wsba{word-spacing:7.199520px;}
.ws92{word-spacing:7.200000px;}
.ws38{word-spacing:7.260000px;}
.ws29{word-spacing:7.439400px;}
.ws3a{word-spacing:7.560600px;}
.ws9f{word-spacing:7.620000px;}
.ws4b{word-spacing:7.680600px;}
.ws50{word-spacing:7.740000px;}
.ws17{word-spacing:8.040000px;}
.ws9d{word-spacing:8.099400px;}
.ws6a{word-spacing:8.219400px;}
.ws5b{word-spacing:8.340600px;}
.ws93{word-spacing:8.400000px;}
.ws33{word-spacing:8.460600px;}
.ws78{word-spacing:8.580600px;}
.ws7e{word-spacing:8.640000px;}
.ws70{word-spacing:8.760000px;}
.ws4e{word-spacing:8.820000px;}
.ws88{word-spacing:8.879400px;}
.wsae{word-spacing:8.940000px;}
.ws27{word-spacing:9.660000px;}
.ws7b{word-spacing:9.899400px;}
.ws97{word-spacing:10.380000px;}
.wsa1{word-spacing:10.620000px;}
.ws9{word-spacing:10.679400px;}
.ws6f{word-spacing:11.760000px;}
.wsa{word-spacing:12.000000px;}
.ws8c{word-spacing:12.540000px;}
.ws76{word-spacing:13.020000px;}
.wsc4{word-spacing:13.056000px;}
.ws9c{word-spacing:13.080000px;}
.ws7f{word-spacing:13.139400px;}
.wsa3{word-spacing:13.500600px;}
.ws28{word-spacing:13.919400px;}
.wsa9{word-spacing:14.340000px;}
.wsa5{word-spacing:16.020000px;}
._d{margin-left:-19.901298px;}
._13{margin-left:-17.527156px;}
._16{margin-left:-15.493138px;}
._11{margin-left:-13.972817px;}
._17{margin-left:-12.043140px;}
._19{margin-left:-9.943211px;}
._15{margin-left:-8.047248px;}
._f{margin-left:-6.311986px;}
._18{margin-left:-4.473013px;}
._c{margin-left:-3.156016px;}
._14{margin-left:-2.111982px;}
._b{margin-left:-1.056000px;}
._7{width:1.775995px;}
._4{width:3.463191px;}
._5{width:4.824787px;}
._10{width:6.238809px;}
._e{width:8.316000px;}
._12{width:9.636000px;}
._0{width:11.721568px;}
._8{width:12.787165px;}
._6{width:17.286353px;}
._1{width:18.326579px;}
._9{width:22.436739px;}
._3{width:25.396731px;}
._a{width:40.551890px;}
._2{width:736.302239px;}
.fc8{color:rgb(29,29,27);}
.fc4{color:rgb(29,29,27);}
.fc5{color:rgb(74,74,73);}
.fc3{color:rgb(87,87,86);}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc7{color:rgb(135,135,135);}
.fc6{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.599920px;}
.fs10{font-size:31.482000px;}
.fs3{font-size:33.828480px;}
.fs6{font-size:37.211328px;}
.fs7{font-size:38.057040px;}
.fs9{font-size:39.000000px;}
.fs2{font-size:42.285600px;}
.fs1{font-size:46.514160px;}
.fs5{font-size:47.359872px;}
.fsf{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:59.199840px;}
.fsc{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.267615px;}
.y23{bottom:35.529000px;}
.y22{bottom:36.291450px;}
.y41{bottom:37.366950px;}
.y21{bottom:45.087021px;}
.y20{bottom:57.074989px;}
.y6a{bottom:68.075397px;}
.yfe{bottom:68.142002px;}
.yb7{bottom:68.684698px;}
.y1f{bottom:69.062956px;}
.yd8{bottom:70.959600px;}
.y92{bottom:72.867147px;}
.y121{bottom:75.777900px;}
.y159{bottom:76.175400px;}
.y1e{bottom:81.050924px;}
.y69{bottom:85.625399px;}
.yfd{bottom:86.142002px;}
.yb6{bottom:86.684698px;}
.y40{bottom:87.544345px;}
.yd7{bottom:88.959600px;}
.y158{bottom:90.575397px;}
.y91{bottom:90.867147px;}
.y1d{bottom:91.294610px;}
.y120{bottom:93.777900px;}
.y132{bottom:97.339645px;}
.y68{bottom:103.175400px;}
.y118{bottom:103.959595px;}
.yfc{bottom:104.142002px;}
.yb5{bottom:104.684704px;}
.y157{bottom:104.975395px;}
.y3f{bottom:105.094345px;}
.yd6{bottom:106.959595px;}
.y90{bottom:108.867153px;}
.y1c{bottom:110.703701px;}
.y11f{bottom:111.777900px;}
.y131{bottom:115.339645px;}
.y156{bottom:119.375404px;}
.y67{bottom:120.725402px;}
.y117{bottom:121.959595px;}
.y3e{bottom:122.644352px;}
.yb4{bottom:122.684704px;}
.yd5{bottom:124.959595px;}
.y8f{bottom:126.867153px;}
.yfb{bottom:128.520000px;}
.y11e{bottom:129.777900px;}
.y130{bottom:133.339645px;}
.y155{bottom:133.775402px;}
.y66{bottom:138.275402px;}
.y116{bottom:139.959595px;}
.y3d{bottom:140.194347px;}
.yb3{bottom:140.684704px;}
.yd4{bottom:142.959595px;}
.y8e{bottom:144.867153px;}
.y11d{bottom:147.777900px;}
.y154{bottom:148.175400px;}
.y12f{bottom:151.339645px;}
.y65{bottom:155.825400px;}
.y115{bottom:157.959595px;}
.yb2{bottom:158.684704px;}
.y153{bottom:162.575397px;}
.y8d{bottom:162.867153px;}
.yfa{bottom:165.777900px;}
.y3c{bottom:166.248299px;}
.y1b{bottom:167.091548px;}
.yd3{bottom:167.337605px;}
.y12e{bottom:169.339645px;}
.y64{bottom:173.375400px;}
.y114{bottom:175.959595px;}
.y1a{bottom:176.077238px;}
.y152{bottom:176.975395px;}
.y8c{bottom:180.867142px;}
.yb1{bottom:183.062553px;}
.yf9{bottom:183.777900px;}
.y19{bottom:184.322930px;}
.y12d{bottom:187.339645px;}
.y63{bottom:190.925400px;}
.y151{bottom:191.375404px;}
.y18{bottom:191.807482px;}
.y113{bottom:193.959595px;}
.y8b{bottom:198.867142px;}
.y17{bottom:199.302604px;}
.yf8{bottom:201.777900px;}
.yd2{bottom:204.595505px;}
.y12c{bottom:205.339645px;}
.y150{bottom:205.775391px;}
.y16{bottom:206.797727px;}
.y62{bottom:208.475395px;}
.y112{bottom:211.959595px;}
.y15{bottom:214.282278px;}
.y3b{bottom:215.636100px;}
.y8a{bottom:216.867142px;}
.yf7{bottom:219.777900px;}
.y14f{bottom:220.175400px;}
.yb0{bottom:220.320442px;}
.y14{bottom:221.777401px;}
.yd1{bottom:222.295509px;}
.y12b{bottom:223.339645px;}
.y61{bottom:226.025409px;}
.y111{bottom:229.959595px;}
.y3a{bottom:233.636100px;}
.y14e{bottom:234.575409px;}
.y89{bottom:234.867142px;}
.y13{bottom:237.190502px;}
.yf6{bottom:237.777900px;}
.yaf{bottom:238.320442px;}
.yd0{bottom:239.995491px;}
.y12a{bottom:241.339645px;}
.y60{bottom:243.575409px;}
.y110{bottom:247.959595px;}
.y14d{bottom:248.975395px;}
.y88{bottom:252.867142px;}
.yf5{bottom:255.777900px;}
.ycf{bottom:257.695496px;}
.y5f{bottom:261.125404px;}
.y14c{bottom:263.375404px;}
.yae{bottom:264.824409px;}
.y10f{bottom:265.959595px;}
.y129{bottom:267.843452px;}
.y39{bottom:268.643852px;}
.y87{bottom:270.867142px;}
.yf4{bottom:273.777900px;}
.yce{bottom:275.395500px;}
.y14b{bottom:277.775391px;}
.y5e{bottom:278.675404px;}
.y10e{bottom:283.959595px;}
.y38{bottom:286.643852px;}
.y86{bottom:288.867142px;}
.yf3{bottom:291.777900px;}
.y14a{bottom:292.175400px;}
.ycd{bottom:293.095509px;}
.y5d{bottom:296.225404px;}
.y12{bottom:300.851473px;}
.y10d{bottom:301.959595px;}
.y37{bottom:304.643852px;}
.y149{bottom:306.575409px;}
.y85{bottom:306.867142px;}
.yf2{bottom:309.777900px;}
.ycc{bottom:310.795509px;}
.y5c{bottom:313.775404px;}
.yad{bottom:314.212189px;}
.y128{bottom:317.231255px;}
.y10c{bottom:319.959595px;}
.y148{bottom:320.975395px;}
.y36{bottom:322.643852px;}
.y84{bottom:324.867142px;}
.yf1{bottom:327.777900px;}
.ycb{bottom:328.495491px;}
.y5b{bottom:331.325404px;}
.yac{bottom:332.212189px;}
.y127{bottom:335.231255px;}
.y147{bottom:335.375404px;}
.y35{bottom:340.643852px;}
.y83{bottom:342.867142px;}
.y10b{bottom:344.337593px;}
.y11c{bottom:345.777900px;}
.yca{bottom:346.195496px;}
.y5a{bottom:348.875404px;}
.y146{bottom:349.775391px;}
.yab{bottom:350.212189px;}
.yf0{bottom:352.155739px;}
.y126{bottom:353.231255px;}
.y34{bottom:358.643852px;}
.y82{bottom:360.867142px;}
.y11b{bottom:363.777900px;}
.yc9{bottom:363.895500px;}
.y145{bottom:364.175400px;}
.y59{bottom:366.425400px;}
.yaa{bottom:368.212189px;}
.y16e{bottom:370.195500px;}
.y125{bottom:371.231255px;}
.y33{bottom:376.643852px;}
.y144{bottom:378.575409px;}
.y81{bottom:378.867142px;}
.y10a{bottom:381.595505px;}
.y11a{bottom:381.777900px;}
.y58{bottom:383.975395px;}
.ya9{bottom:386.212189px;}
.yc8{bottom:387.973480px;}
.y124{bottom:389.231232px;}
.yef{bottom:389.413650px;}
.y143{bottom:392.975418px;}
.y32{bottom:394.643829px;}
.y80{bottom:396.867142px;}
.y16d{bottom:398.545500px;}
.y109{bottom:399.595505px;}
.y57{bottom:401.525391px;}
.ya8{bottom:404.212189px;}
.y119{bottom:406.155762px;}
.y123{bottom:407.231232px;}
.y142{bottom:407.375381px;}
.yee{bottom:407.413650px;}
.y31{bottom:412.643829px;}
.y7f{bottom:414.867142px;}
.y16c{bottom:414.901500px;}
.y108{bottom:417.595505px;}
.y56{bottom:419.075409px;}
.y141{bottom:421.775391px;}
.ya7{bottom:422.212189px;}
.yc7{bottom:425.231232px;}
.yed{bottom:425.413650px;}
.y30{bottom:430.643829px;}
.y16b{bottom:431.257500px;}
.y7e{bottom:432.867142px;}
.y107{bottom:435.595505px;}
.y140{bottom:436.175400px;}
.y55{bottom:436.625381px;}
.ya6{bottom:440.212189px;}
.yc6{bottom:443.231232px;}
.yec{bottom:443.413650px;}
.y11{bottom:446.324508px;}
.y16a{bottom:447.613500px;}
.y2f{bottom:448.643829px;}
.y13f{bottom:450.575409px;}
.y7d{bottom:450.867142px;}
.y106{bottom:453.595505px;}
.y54{bottom:454.175400px;}
.ya5{bottom:458.212189px;}
.yc5{bottom:461.231232px;}
.yeb{bottom:461.413650px;}
.y169{bottom:463.969500px;}
.y13e{bottom:464.975418px;}
.y2e{bottom:466.643829px;}
.y7c{bottom:468.867142px;}
.y10{bottom:469.433588px;}
.y105{bottom:471.595505px;}
.y53{bottom:471.725418px;}
.ya4{bottom:476.212189px;}
.yc4{bottom:479.231232px;}
.y13d{bottom:479.375381px;}
.yea{bottom:479.413650px;}
.y168{bottom:480.325500px;}
.yf{bottom:481.421556px;}
.y2d{bottom:484.643829px;}
.y7b{bottom:486.867142px;}
.y52{bottom:489.275391px;}
.y104{bottom:489.595505px;}
.y13c{bottom:493.775391px;}
.ya3{bottom:494.212189px;}
.y167{bottom:496.644000px;}
.yc3{bottom:497.231232px;}
.ye9{bottom:497.413650px;}
.y2c{bottom:502.643829px;}
.ye{bottom:504.752636px;}
.y7a{bottom:504.867142px;}
.y51{bottom:506.825409px;}
.y103{bottom:507.595505px;}
.y13b{bottom:508.175400px;}
.ya2{bottom:512.212189px;}
.yc2{bottom:515.231232px;}
.ye8{bottom:515.413650px;}
.yd{bottom:516.740603px;}
.y2b{bottom:520.643829px;}
.y13a{bottom:522.575409px;}
.y79{bottom:522.867142px;}
.y50{bottom:524.375381px;}
.yc{bottom:528.728571px;}
.ya1{bottom:530.212189px;}
.y102{bottom:531.973480px;}
.yc1{bottom:533.231232px;}
.ye7{bottom:533.413650px;}
.y139{bottom:536.975418px;}
.y2a{bottom:538.643829px;}
.yb{bottom:540.716539px;}
.y78{bottom:540.867142px;}
.ya0{bottom:548.212189px;}
.y4f{bottom:550.429367px;}
.y166{bottom:550.506000px;}
.yc0{bottom:551.231232px;}
.y138{bottom:551.375381px;}
.ye6{bottom:551.413650px;}
.ya{bottom:552.704506px;}
.y77{bottom:558.867142px;}
.y29{bottom:560.895905px;}
.y9{bottom:564.692474px;}
.y137{bottom:565.775391px;}
.y9f{bottom:566.212189px;}
.ybf{bottom:569.231232px;}
.ye5{bottom:569.413650px;}
.y8{bottom:576.669870px;}
.y76{bottom:576.867142px;}
.y165{bottom:578.856000px;}
.y136{bottom:580.175400px;}
.y9e{bottom:584.212189px;}
.ybe{bottom:587.231232px;}
.ye4{bottom:587.413650px;}
.y135{bottom:594.575409px;}
.y75{bottom:594.867142px;}
.y164{bottom:595.206000px;}
.y4e{bottom:599.817169px;}
.y9d{bottom:602.212189px;}
.ybd{bottom:605.231232px;}
.ye3{bottom:605.413650px;}
.y163{bottom:611.556000px;}
.y74{bottom:612.867142px;}
.y4d{bottom:617.367142px;}
.y134{bottom:617.479340px;}
.y9c{bottom:620.212189px;}
.ybc{bottom:623.231232px;}
.ye2{bottom:623.413650px;}
.y162{bottom:627.906000px;}
.y73{bottom:630.867142px;}
.y7{bottom:632.539719px;}
.y4c{bottom:634.917160px;}
.y9b{bottom:638.212189px;}
.ybb{bottom:641.231232px;}
.ye1{bottom:641.413650px;}
.y161{bottom:644.256000px;}
.y72{bottom:648.867142px;}
.y6{bottom:649.020532px;}
.y4b{bottom:652.467133px;}
.y9a{bottom:656.212189px;}
.yba{bottom:659.231232px;}
.ye0{bottom:659.413650px;}
.y160{bottom:660.606000px;}
.y28{bottom:663.935257px;}
.y5{bottom:665.501344px;}
.y71{bottom:666.867142px;}
.y4a{bottom:670.017169px;}
.y99{bottom:674.212189px;}
.yb9{bottom:677.231232px;}
.ydf{bottom:677.413650px;}
.y4{bottom:683.282439px;}
.y70{bottom:684.867142px;}
.y49{bottom:687.567169px;}
.y98{bottom:692.212189px;}
.y27{bottom:692.435257px;}
.y101{bottom:695.231232px;}
.yde{bottom:695.413650px;}
.yb8{bottom:701.609253px;}
.y15f{bottom:702.430350px;}
.y6f{bottom:702.867142px;}
.y3{bottom:704.256097px;}
.y48{bottom:705.117142px;}
.y97{bottom:710.212189px;}
.y100{bottom:713.231232px;}
.ydd{bottom:713.413650px;}
.y122{bottom:719.609253px;}
.y6e{bottom:720.867142px;}
.y26{bottom:720.935257px;}
.y47{bottom:722.667160px;}
.y2{bottom:725.240326px;}
.y96{bottom:728.212189px;}
.ydc{bottom:731.413650px;}
.yff{bottom:737.609253px;}
.y6d{bottom:738.867142px;}
.y46{bottom:740.217133px;}
.y95{bottom:746.212189px;}
.ydb{bottom:749.413650px;}
.y25{bottom:749.435257px;}
.y15e{bottom:751.818150px;}
.y6c{bottom:756.867142px;}
.y133{bottom:756.867188px;}
.y45{bottom:757.767150px;}
.y94{bottom:764.212189px;}
.y15d{bottom:766.218150px;}
.yda{bottom:767.413650px;}
.y6b{bottom:774.867188px;}
.y44{bottom:775.317169px;}
.y15c{bottom:780.618150px;}
.y24{bottom:788.565125px;}
.y93{bottom:790.716156px;}
.yd9{bottom:791.791626px;}
.y43{bottom:792.867188px;}
.y15b{bottom:795.018150px;}
.y15a{bottom:833.260800px;}
.y42{bottom:833.260803px;}
.h9{height:21.933541px;}
.h7{height:25.066904px;}
.h8{height:25.134561px;}
.hc{height:28.200267px;}
.h6{height:31.333630px;}
.ha{height:31.418201px;}
.h10{height:34.359000px;}
.h5{height:34.466993px;}
.hb{height:35.093665px;}
.h1a{height:41.562018px;}
.h18{height:42.288000px;}
.h3{height:43.867081px;}
.h4{height:43.985481px;}
.h16{height:46.224000px;}
.h19{height:47.574000px;}
.h17{height:49.302000px;}
.h13{height:51.360000px;}
.h14{height:52.860000px;}
.hf{height:56.496000px;}
.h11{height:60.732000px;}
.h15{height:61.632000px;}
.h12{height:82.176000px;}
.h2{height:889.995595px;}
.h1{height:890.250000px;}
.h0{height:890.520000px;}
.hd{height:892.914000px;}
.he{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.292000px;}
.w2{width:629.294299px;}
.w0{width:629.295000px;}
.x0{left:0.000000px;}
.x3{left:32.961625px;}
.x1{left:38.955609px;}
.x5{left:80.787449px;}
.x7{left:93.543303px;}
.xd{left:95.669249px;}
.x2{left:104.878859px;}
.xe{left:212.598000px;}
.xc{left:222.515099px;}
.xb{left:249.077705px;}
.x4{left:308.653166px;}
.x9{left:445.146606px;}
.x8{left:525.389236px;}
.xa{left:526.917755px;}
.x6{left:548.467941px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls3{letter-spacing:-4.266667pt;}
.ls1{letter-spacing:-1.583413pt;}
.ls4{letter-spacing:-0.528000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.001221pt;}
.ls6{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.160533pt;}
.ws3{word-spacing:-20.480000pt;}
.ws6{word-spacing:-15.360000pt;}
.ws57{word-spacing:-14.080000pt;}
.ws8d{word-spacing:-13.552000pt;}
.ws56{word-spacing:-13.546667pt;}
.ws4{word-spacing:-12.960533pt;}
.ws5{word-spacing:-12.800000pt;}
.ws2{word-spacing:-12.496587pt;}
.wscc{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.703151pt;}
.wsb5{word-spacing:-10.837333pt;}
.ws1a{word-spacing:-9.280000pt;}
.ws39{word-spacing:-8.805333pt;}
.wscb{word-spacing:-6.884064pt;}
.ws6c{word-spacing:-4.319467pt;}
.ws60{word-spacing:-3.680000pt;}
.wsd{word-spacing:-3.626133pt;}
.ws94{word-spacing:-3.040533pt;}
.ws91{word-spacing:-2.666667pt;}
.ws72{word-spacing:-2.613333pt;}
.ws80{word-spacing:-2.560000pt;}
.ws5e{word-spacing:-2.506667pt;}
.wsc{word-spacing:-2.453867pt;}
.ws3e{word-spacing:-2.400000pt;}
.ws6b{word-spacing:-2.347200pt;}
.ws7d{word-spacing:-2.293333pt;}
.ws35{word-spacing:-2.240533pt;}
.wsb{word-spacing:-2.186667pt;}
.ws1e{word-spacing:-2.080000pt;}
.wsbf{word-spacing:-2.048000pt;}
.ws48{word-spacing:-2.026133pt;}
.wscd{word-spacing:-2.005333pt;}
.ws9e{word-spacing:-1.973333pt;}
.ws34{word-spacing:-1.920000pt;}
.wsac{word-spacing:-1.866667pt;}
.wsad{word-spacing:-1.813333pt;}
.ws25{word-spacing:-1.706667pt;}
.ws8b{word-spacing:-1.653867pt;}
.wsc0{word-spacing:-1.620907pt;}
.ws30{word-spacing:-1.600000pt;}
.ws53{word-spacing:-1.439467pt;}
.wsb6{word-spacing:-1.386667pt;}
.ws61{word-spacing:-1.332800pt;}
.wsb7{word-spacing:-1.323093pt;}
.ws73{word-spacing:-1.280000pt;}
.ws9a{word-spacing:-1.173333pt;}
.ws95{word-spacing:-1.120000pt;}
.ws40{word-spacing:-1.066667pt;}
.ws52{word-spacing:-1.013333pt;}
.wsb9{word-spacing:-0.938667pt;}
.ws75{word-spacing:-0.906667pt;}
.ws9b{word-spacing:-0.853867pt;}
.wsbd{word-spacing:-0.810667pt;}
.ws2c{word-spacing:-0.800000pt;}
.ws51{word-spacing:-0.693333pt;}
.ws87{word-spacing:-0.586667pt;}
.ws6e{word-spacing:-0.532800pt;}
.ws58{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.426667pt;}
.ws15{word-spacing:-0.373333pt;}
.ws98{word-spacing:-0.320000pt;}
.wsf{word-spacing:-0.213333pt;}
.ws5f{word-spacing:-0.160533pt;}
.wscf{word-spacing:-0.144000pt;}
.wsbe{word-spacing:-0.085333pt;}
.ws77{word-spacing:-0.053867pt;}
.ws1{word-spacing:0.000000pt;}
.wsc2{word-spacing:0.043093pt;}
.ws71{word-spacing:0.053867pt;}
.ws90{word-spacing:0.106667pt;}
.ws85{word-spacing:0.160533pt;}
.ws7c{word-spacing:0.213333pt;}
.ws32{word-spacing:0.266667pt;}
.ws3d{word-spacing:0.320000pt;}
.ws41{word-spacing:0.373333pt;}
.ws55{word-spacing:0.426667pt;}
.wsb8{word-spacing:0.469333pt;}
.ws66{word-spacing:0.480000pt;}
.wsa4{word-spacing:0.586667pt;}
.ws42{word-spacing:0.747200pt;}
.wsa2{word-spacing:0.800000pt;}
.ws74{word-spacing:0.853867pt;}
.ws2a{word-spacing:1.013333pt;}
.wsc6{word-spacing:1.024000pt;}
.wsbc{word-spacing:1.066240pt;}
.ws1b{word-spacing:1.066667pt;}
.ws24{word-spacing:1.120000pt;}
.ws3f{word-spacing:1.173333pt;}
.ws47{word-spacing:1.226133pt;}
.ws82{word-spacing:1.280000pt;}
.ws46{word-spacing:1.332800pt;}
.ws11{word-spacing:1.386667pt;}
.wsbb{word-spacing:1.450667pt;}
.ws31{word-spacing:1.493333pt;}
.wsb1{word-spacing:1.547200pt;}
.ws67{word-spacing:1.600000pt;}
.ws8f{word-spacing:1.653867pt;}
.ws81{word-spacing:1.760000pt;}
.ws21{word-spacing:1.813333pt;}
.ws2e{word-spacing:1.866667pt;}
.ws96{word-spacing:1.920000pt;}
.ws5d{word-spacing:1.973333pt;}
.ws86{word-spacing:2.026133pt;}
.ws79{word-spacing:2.080000pt;}
.ws18{word-spacing:2.132800pt;}
.wsca{word-spacing:2.175573pt;}
.ws1c{word-spacing:2.186667pt;}
.ws2b{word-spacing:2.293333pt;}
.ws8a{word-spacing:2.347200pt;}
.wsce{word-spacing:2.389333pt;}
.wsab{word-spacing:2.400000pt;}
.wsc8{word-spacing:2.432427pt;}
.ws2d{word-spacing:2.453867pt;}
.wsc5{word-spacing:2.474667pt;}
.ws49{word-spacing:2.506667pt;}
.wsa8{word-spacing:2.560000pt;}
.ws2f{word-spacing:2.613333pt;}
.ws62{word-spacing:2.666667pt;}
.ws68{word-spacing:2.719467pt;}
.ws5a{word-spacing:2.773333pt;}
.ws7{word-spacing:2.826133pt;}
.wsa7{word-spacing:2.932800pt;}
.wsc7{word-spacing:2.944000pt;}
.ws43{word-spacing:2.986667pt;}
.wsc9{word-spacing:2.987093pt;}
.ws63{word-spacing:3.040533pt;}
.ws4a{word-spacing:3.093333pt;}
.wsb0{word-spacing:3.200000pt;}
.ws89{word-spacing:3.253333pt;}
.wsa6{word-spacing:3.306667pt;}
.ws54{word-spacing:3.360000pt;}
.wsa0{word-spacing:3.413333pt;}
.wsb2{word-spacing:3.466667pt;}
.ws1f{word-spacing:3.573333pt;}
.wse{word-spacing:3.626133pt;}
.ws20{word-spacing:3.680000pt;}
.ws8e{word-spacing:3.733867pt;}
.ws59{word-spacing:3.786667pt;}
.ws4f{word-spacing:3.893333pt;}
.ws37{word-spacing:4.000000pt;}
.wsaa{word-spacing:4.053333pt;}
.wsc1{word-spacing:4.095573pt;}
.ws84{word-spacing:4.160000pt;}
.ws1d{word-spacing:4.266667pt;}
.ws44{word-spacing:4.319467pt;}
.ws6d{word-spacing:4.426133pt;}
.ws7a{word-spacing:4.480000pt;}
.ws83{word-spacing:4.533867pt;}
.ws13{word-spacing:4.586667pt;}
.ws65{word-spacing:4.693333pt;}
.ws19{word-spacing:4.746667pt;}
.ws23{word-spacing:4.800000pt;}
.ws5c{word-spacing:4.853333pt;}
.wsaf{word-spacing:4.960000pt;}
.ws69{word-spacing:5.066667pt;}
.ws4c{word-spacing:5.119467pt;}
.ws16{word-spacing:5.227200pt;}
.ws4d{word-spacing:5.280000pt;}
.wsb4{word-spacing:5.333867pt;}
.ws99{word-spacing:5.493333pt;}
.ws26{word-spacing:5.546667pt;}
.ws10{word-spacing:5.600000pt;}
.wsb3{word-spacing:5.653333pt;}
.ws3c{word-spacing:5.706133pt;}
.ws14{word-spacing:5.812800pt;}
.ws64{word-spacing:6.080000pt;}
.ws12{word-spacing:6.133867pt;}
.wsc3{word-spacing:6.144000pt;}
.ws36{word-spacing:6.186667pt;}
.ws45{word-spacing:6.240000pt;}
.ws3b{word-spacing:6.293333pt;}
.ws8{word-spacing:6.346667pt;}
.wsba{word-spacing:6.399573pt;}
.ws92{word-spacing:6.400000pt;}
.ws38{word-spacing:6.453333pt;}
.ws29{word-spacing:6.612800pt;}
.ws3a{word-spacing:6.720533pt;}
.ws9f{word-spacing:6.773333pt;}
.ws4b{word-spacing:6.827200pt;}
.ws50{word-spacing:6.880000pt;}
.ws17{word-spacing:7.146667pt;}
.ws9d{word-spacing:7.199467pt;}
.ws6a{word-spacing:7.306133pt;}
.ws5b{word-spacing:7.413867pt;}
.ws93{word-spacing:7.466667pt;}
.ws33{word-spacing:7.520533pt;}
.ws78{word-spacing:7.627200pt;}
.ws7e{word-spacing:7.680000pt;}
.ws70{word-spacing:7.786667pt;}
.ws4e{word-spacing:7.840000pt;}
.ws88{word-spacing:7.892800pt;}
.wsae{word-spacing:7.946667pt;}
.ws27{word-spacing:8.586667pt;}
.ws7b{word-spacing:8.799467pt;}
.ws97{word-spacing:9.226667pt;}
.wsa1{word-spacing:9.440000pt;}
.ws9{word-spacing:9.492800pt;}
.ws6f{word-spacing:10.453333pt;}
.wsa{word-spacing:10.666667pt;}
.ws8c{word-spacing:11.146667pt;}
.ws76{word-spacing:11.573333pt;}
.wsc4{word-spacing:11.605333pt;}
.ws9c{word-spacing:11.626667pt;}
.ws7f{word-spacing:11.679467pt;}
.wsa3{word-spacing:12.000533pt;}
.ws28{word-spacing:12.372800pt;}
.wsa9{word-spacing:12.746667pt;}
.wsa5{word-spacing:14.240000pt;}
._d{margin-left:-17.690042pt;}
._13{margin-left:-15.579694pt;}
._16{margin-left:-13.771678pt;}
._11{margin-left:-12.420282pt;}
._17{margin-left:-10.705014pt;}
._19{margin-left:-8.838410pt;}
._15{margin-left:-7.153109pt;}
._f{margin-left:-5.610654pt;}
._18{margin-left:-3.976011pt;}
._c{margin-left:-2.805348pt;}
._14{margin-left:-1.877318pt;}
._b{margin-left:-0.938667pt;}
._7{width:1.578662pt;}
._4{width:3.078392pt;}
._5{width:4.288700pt;}
._10{width:5.545608pt;}
._e{width:7.392000pt;}
._12{width:8.565334pt;}
._0{width:10.419172pt;}
._8{width:11.366369pt;}
._6{width:15.365647pt;}
._1{width:16.290292pt;}
._9{width:19.943768pt;}
._3{width:22.574872pt;}
._a{width:36.046125pt;}
._2{width:654.490879pt;}
.fs4{font-size:26.311040pt;}
.fs10{font-size:27.984000pt;}
.fs3{font-size:30.069760pt;}
.fs6{font-size:33.076736pt;}
.fs7{font-size:33.828480pt;}
.fs9{font-size:34.666667pt;}
.fs2{font-size:37.587200pt;}
.fs1{font-size:41.345920pt;}
.fs5{font-size:42.097664pt;}
.fsf{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:52.622080pt;}
.fsc{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.237880pt;}
.y23{bottom:31.581333pt;}
.y22{bottom:32.259066pt;}
.y41{bottom:33.215067pt;}
.y21{bottom:40.077352pt;}
.y20{bottom:50.733323pt;}
.y6a{bottom:60.511464pt;}
.yfe{bottom:60.570669pt;}
.yb7{bottom:61.053065pt;}
.y1f{bottom:61.389294pt;}
.yd8{bottom:63.075200pt;}
.y92{bottom:64.770798pt;}
.y121{bottom:67.358133pt;}
.y159{bottom:67.711466pt;}
.y1e{bottom:72.045266pt;}
.y69{bottom:76.111465pt;}
.yfd{bottom:76.570669pt;}
.yb6{bottom:77.053065pt;}
.y40{bottom:77.817196pt;}
.yd7{bottom:79.075200pt;}
.y158{bottom:80.511464pt;}
.y91{bottom:80.770798pt;}
.y1d{bottom:81.150765pt;}
.y120{bottom:83.358133pt;}
.y132{bottom:86.524129pt;}
.y68{bottom:91.711466pt;}
.y118{bottom:92.408529pt;}
.yfc{bottom:92.570669pt;}
.yb5{bottom:93.053070pt;}
.y157{bottom:93.311462pt;}
.y3f{bottom:93.417196pt;}
.yd6{bottom:95.075195pt;}
.y90{bottom:96.770803pt;}
.y1c{bottom:98.403290pt;}
.y11f{bottom:99.358133pt;}
.y131{bottom:102.524129pt;}
.y156{bottom:106.111471pt;}
.y67{bottom:107.311469pt;}
.y117{bottom:108.408529pt;}
.y3e{bottom:109.017202pt;}
.yb4{bottom:109.053070pt;}
.yd5{bottom:111.075195pt;}
.y8f{bottom:112.770803pt;}
.yfb{bottom:114.240000pt;}
.y11e{bottom:115.358133pt;}
.y130{bottom:118.524129pt;}
.y155{bottom:118.911469pt;}
.y66{bottom:122.911469pt;}
.y116{bottom:124.408529pt;}
.y3d{bottom:124.617198pt;}
.yb3{bottom:125.053070pt;}
.yd4{bottom:127.075195pt;}
.y8e{bottom:128.770803pt;}
.y11d{bottom:131.358133pt;}
.y154{bottom:131.711466pt;}
.y12f{bottom:134.524129pt;}
.y65{bottom:138.511466pt;}
.y115{bottom:140.408529pt;}
.yb2{bottom:141.053070pt;}
.y153{bottom:144.511464pt;}
.y8d{bottom:144.770803pt;}
.yfa{bottom:147.358133pt;}
.y3c{bottom:147.776265pt;}
.y1b{bottom:148.525821pt;}
.yd3{bottom:148.744537pt;}
.y12e{bottom:150.524129pt;}
.y64{bottom:154.111466pt;}
.y114{bottom:156.408529pt;}
.y1a{bottom:156.513101pt;}
.y152{bottom:157.311462pt;}
.y8c{bottom:160.770793pt;}
.yb1{bottom:162.722270pt;}
.yf9{bottom:163.358133pt;}
.y19{bottom:163.842605pt;}
.y12d{bottom:166.524129pt;}
.y63{bottom:169.711466pt;}
.y151{bottom:170.111471pt;}
.y18{bottom:170.495539pt;}
.y113{bottom:172.408529pt;}
.y8b{bottom:176.770793pt;}
.y17{bottom:177.157870pt;}
.yf8{bottom:179.358133pt;}
.yd2{bottom:181.862671pt;}
.y12c{bottom:182.524129pt;}
.y150{bottom:182.911458pt;}
.y16{bottom:183.820202pt;}
.y62{bottom:185.311462pt;}
.y112{bottom:188.408529pt;}
.y15{bottom:190.473136pt;}
.y3b{bottom:191.676533pt;}
.y8a{bottom:192.770793pt;}
.yf7{bottom:195.358133pt;}
.y14f{bottom:195.711466pt;}
.yb0{bottom:195.840393pt;}
.y14{bottom:197.135467pt;}
.yd1{bottom:197.596008pt;}
.y12b{bottom:198.524129pt;}
.y61{bottom:200.911475pt;}
.y111{bottom:204.408529pt;}
.y3a{bottom:207.676533pt;}
.y14e{bottom:208.511475pt;}
.y89{bottom:208.770793pt;}
.y13{bottom:210.836002pt;}
.yf6{bottom:211.358133pt;}
.yaf{bottom:211.840393pt;}
.yd0{bottom:213.329325pt;}
.y12a{bottom:214.524129pt;}
.y60{bottom:216.511475pt;}
.y110{bottom:220.408529pt;}
.y14d{bottom:221.311462pt;}
.y88{bottom:224.770793pt;}
.yf5{bottom:227.358133pt;}
.ycf{bottom:229.062663pt;}
.y5f{bottom:232.111471pt;}
.y14c{bottom:234.111471pt;}
.yae{bottom:235.399475pt;}
.y10f{bottom:236.408529pt;}
.y129{bottom:238.083069pt;}
.y39{bottom:238.794535pt;}
.y87{bottom:240.770793pt;}
.yf4{bottom:243.358133pt;}
.yce{bottom:244.796000pt;}
.y14b{bottom:246.911458pt;}
.y5e{bottom:247.711471pt;}
.y10e{bottom:252.408529pt;}
.y38{bottom:254.794535pt;}
.y86{bottom:256.770793pt;}
.yf3{bottom:259.358133pt;}
.y14a{bottom:259.711466pt;}
.ycd{bottom:260.529342pt;}
.y5d{bottom:263.311471pt;}
.y12{bottom:267.423531pt;}
.y10d{bottom:268.408529pt;}
.y37{bottom:270.794535pt;}
.y149{bottom:272.511475pt;}
.y85{bottom:272.770793pt;}
.yf2{bottom:275.358133pt;}
.ycc{bottom:276.262675pt;}
.y5c{bottom:278.911471pt;}
.yad{bottom:279.299723pt;}
.y128{bottom:281.983337pt;}
.y10c{bottom:284.408529pt;}
.y148{bottom:285.311462pt;}
.y36{bottom:286.794535pt;}
.y84{bottom:288.770793pt;}
.yf1{bottom:291.358133pt;}
.ycb{bottom:291.995992pt;}
.y5b{bottom:294.511471pt;}
.yac{bottom:295.299723pt;}
.y127{bottom:297.983337pt;}
.y147{bottom:298.111471pt;}
.y35{bottom:302.794535pt;}
.y83{bottom:304.770793pt;}
.y10b{bottom:306.077861pt;}
.y11c{bottom:307.358133pt;}
.yca{bottom:307.729329pt;}
.y5a{bottom:310.111471pt;}
.y146{bottom:310.911458pt;}
.yab{bottom:311.299723pt;}
.yf0{bottom:313.027323pt;}
.y126{bottom:313.983337pt;}
.y34{bottom:318.794535pt;}
.y82{bottom:320.770793pt;}
.y11b{bottom:323.358133pt;}
.yc9{bottom:323.462667pt;}
.y145{bottom:323.711466pt;}
.y59{bottom:325.711466pt;}
.yaa{bottom:327.299723pt;}
.y16e{bottom:329.062667pt;}
.y125{bottom:329.983337pt;}
.y33{bottom:334.794535pt;}
.y144{bottom:336.511475pt;}
.y81{bottom:336.770793pt;}
.y10a{bottom:339.196004pt;}
.y11a{bottom:339.358133pt;}
.y58{bottom:341.311462pt;}
.ya9{bottom:343.299723pt;}
.yc8{bottom:344.865316pt;}
.y124{bottom:345.983317pt;}
.yef{bottom:346.145467pt;}
.y143{bottom:349.311483pt;}
.y32{bottom:350.794515pt;}
.y80{bottom:352.770793pt;}
.y16d{bottom:354.262667pt;}
.y109{bottom:355.196004pt;}
.y57{bottom:356.911458pt;}
.ya8{bottom:359.299723pt;}
.y119{bottom:361.027344pt;}
.y123{bottom:361.983317pt;}
.y142{bottom:362.111450pt;}
.yee{bottom:362.145467pt;}
.y31{bottom:366.794515pt;}
.y7f{bottom:368.770793pt;}
.y16c{bottom:368.801333pt;}
.y108{bottom:371.196004pt;}
.y56{bottom:372.511475pt;}
.y141{bottom:374.911458pt;}
.ya7{bottom:375.299723pt;}
.yc7{bottom:377.983317pt;}
.yed{bottom:378.145467pt;}
.y30{bottom:382.794515pt;}
.y16b{bottom:383.340000pt;}
.y7e{bottom:384.770793pt;}
.y107{bottom:387.196004pt;}
.y140{bottom:387.711466pt;}
.y55{bottom:388.111450pt;}
.ya6{bottom:391.299723pt;}
.yc6{bottom:393.983317pt;}
.yec{bottom:394.145467pt;}
.y11{bottom:396.732896pt;}
.y16a{bottom:397.878667pt;}
.y2f{bottom:398.794515pt;}
.y13f{bottom:400.511475pt;}
.y7d{bottom:400.770793pt;}
.y106{bottom:403.196004pt;}
.y54{bottom:403.711466pt;}
.ya5{bottom:407.299723pt;}
.yc5{bottom:409.983317pt;}
.yeb{bottom:410.145467pt;}
.y169{bottom:412.417333pt;}
.y13e{bottom:413.311483pt;}
.y2e{bottom:414.794515pt;}
.y7c{bottom:416.770793pt;}
.y10{bottom:417.274301pt;}
.y105{bottom:419.196004pt;}
.y53{bottom:419.311483pt;}
.ya4{bottom:423.299723pt;}
.yc4{bottom:425.983317pt;}
.y13d{bottom:426.111450pt;}
.yea{bottom:426.145467pt;}
.y168{bottom:426.956000pt;}
.yf{bottom:427.930272pt;}
.y2d{bottom:430.794515pt;}
.y7b{bottom:432.770793pt;}
.y52{bottom:434.911458pt;}
.y104{bottom:435.196004pt;}
.y13c{bottom:438.911458pt;}
.ya3{bottom:439.299723pt;}
.y167{bottom:441.461333pt;}
.yc3{bottom:441.983317pt;}
.ye9{bottom:442.145467pt;}
.y2c{bottom:446.794515pt;}
.ye{bottom:448.669010pt;}
.y7a{bottom:448.770793pt;}
.y51{bottom:450.511475pt;}
.y103{bottom:451.196004pt;}
.y13b{bottom:451.711466pt;}
.ya2{bottom:455.299723pt;}
.yc2{bottom:457.983317pt;}
.ye8{bottom:458.145467pt;}
.yd{bottom:459.324981pt;}
.y2b{bottom:462.794515pt;}
.y13a{bottom:464.511475pt;}
.y79{bottom:464.770793pt;}
.y50{bottom:466.111450pt;}
.yc{bottom:469.980952pt;}
.ya1{bottom:471.299723pt;}
.y102{bottom:472.865316pt;}
.yc1{bottom:473.983317pt;}
.ye7{bottom:474.145467pt;}
.y139{bottom:477.311483pt;}
.y2a{bottom:478.794515pt;}
.yb{bottom:480.636923pt;}
.y78{bottom:480.770793pt;}
.ya0{bottom:487.299723pt;}
.y4f{bottom:489.270549pt;}
.y166{bottom:489.338667pt;}
.yc0{bottom:489.983317pt;}
.y138{bottom:490.111450pt;}
.ye6{bottom:490.145467pt;}
.ya{bottom:491.292894pt;}
.y77{bottom:496.770793pt;}
.y29{bottom:498.574137pt;}
.y9{bottom:501.948866pt;}
.y137{bottom:502.911458pt;}
.y9f{bottom:503.299723pt;}
.ybf{bottom:505.983317pt;}
.ye5{bottom:506.145467pt;}
.y8{bottom:512.595440pt;}
.y76{bottom:512.770793pt;}
.y165{bottom:514.538667pt;}
.y136{bottom:515.711466pt;}
.y9e{bottom:519.299723pt;}
.ybe{bottom:521.983317pt;}
.ye4{bottom:522.145467pt;}
.y135{bottom:528.511475pt;}
.y75{bottom:528.770793pt;}
.y164{bottom:529.072000pt;}
.y4e{bottom:533.170817pt;}
.y9d{bottom:535.299723pt;}
.ybd{bottom:537.983317pt;}
.ye3{bottom:538.145467pt;}
.y163{bottom:543.605333pt;}
.y74{bottom:544.770793pt;}
.y4d{bottom:548.770793pt;}
.y134{bottom:548.870524pt;}
.y9c{bottom:551.299723pt;}
.ybc{bottom:553.983317pt;}
.ye2{bottom:554.145467pt;}
.y162{bottom:558.138667pt;}
.y73{bottom:560.770793pt;}
.y7{bottom:562.257528pt;}
.y4c{bottom:564.370809pt;}
.y9b{bottom:567.299723pt;}
.ybb{bottom:569.983317pt;}
.ye1{bottom:570.145467pt;}
.y161{bottom:572.672000pt;}
.y72{bottom:576.770793pt;}
.y6{bottom:576.907139pt;}
.y4b{bottom:579.970785pt;}
.y9a{bottom:583.299723pt;}
.yba{bottom:585.983317pt;}
.ye0{bottom:586.145467pt;}
.y160{bottom:587.205333pt;}
.y28{bottom:590.164673pt;}
.y5{bottom:591.556750pt;}
.y71{bottom:592.770793pt;}
.y4a{bottom:595.570817pt;}
.y99{bottom:599.299723pt;}
.yb9{bottom:601.983317pt;}
.ydf{bottom:602.145467pt;}
.y4{bottom:607.362168pt;}
.y70{bottom:608.770793pt;}
.y49{bottom:611.170817pt;}
.y98{bottom:615.299723pt;}
.y27{bottom:615.498006pt;}
.y101{bottom:617.983317pt;}
.yde{bottom:618.145467pt;}
.yb8{bottom:623.652669pt;}
.y15f{bottom:624.382533pt;}
.y6f{bottom:624.770793pt;}
.y3{bottom:626.005419pt;}
.y48{bottom:626.770793pt;}
.y97{bottom:631.299723pt;}
.y100{bottom:633.983317pt;}
.ydd{bottom:634.145467pt;}
.y122{bottom:639.652669pt;}
.y6e{bottom:640.770793pt;}
.y26{bottom:640.831340pt;}
.y47{bottom:642.370809pt;}
.y2{bottom:644.658067pt;}
.y96{bottom:647.299723pt;}
.ydc{bottom:650.145467pt;}
.yff{bottom:655.652669pt;}
.y6d{bottom:656.770793pt;}
.y46{bottom:657.970785pt;}
.y95{bottom:663.299723pt;}
.ydb{bottom:666.145467pt;}
.y25{bottom:666.164673pt;}
.y15e{bottom:668.282800pt;}
.y6c{bottom:672.770793pt;}
.y133{bottom:672.770833pt;}
.y45{bottom:673.570800pt;}
.y94{bottom:679.299723pt;}
.y15d{bottom:681.082800pt;}
.yda{bottom:682.145467pt;}
.y6b{bottom:688.770833pt;}
.y44{bottom:689.170817pt;}
.y15c{bottom:693.882800pt;}
.y24{bottom:700.946777pt;}
.y93{bottom:702.858805pt;}
.yd9{bottom:703.814779pt;}
.y43{bottom:704.770833pt;}
.y15b{bottom:706.682800pt;}
.y15a{bottom:740.676267pt;}
.y42{bottom:740.676270pt;}
.h9{height:19.496481pt;}
.h7{height:22.281692pt;}
.h8{height:22.341832pt;}
.hc{height:25.066904pt;}
.h6{height:27.852115pt;}
.ha{height:27.927290pt;}
.h10{height:30.541333pt;}
.h5{height:30.637327pt;}
.hb{height:31.194369pt;}
.h1a{height:36.944016pt;}
.h18{height:37.589333pt;}
.h3{height:38.992961pt;}
.h4{height:39.098205pt;}
.h16{height:41.088000pt;}
.h19{height:42.288000pt;}
.h17{height:43.824000pt;}
.h13{height:45.653333pt;}
.h14{height:46.986667pt;}
.hf{height:50.218667pt;}
.h11{height:53.984000pt;}
.h15{height:54.784000pt;}
.h12{height:73.045333pt;}
.h2{height:791.107195pt;}
.h1{height:791.333333pt;}
.h0{height:791.573333pt;}
.hd{height:793.701333pt;}
.he{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.370667pt;}
.w2{width:559.372710pt;}
.w0{width:559.373333pt;}
.x0{left:0.000000pt;}
.x3{left:29.299222pt;}
.x1{left:34.627208pt;}
.x5{left:71.811066pt;}
.x7{left:83.149602pt;}
.xd{left:85.039332pt;}
.x2{left:93.225653pt;}
.xe{left:188.976000pt;}
.xc{left:197.791199pt;}
.xb{left:221.402405pt;}
.x4{left:274.358370pt;}
.x9{left:395.685872pt;}
.x8{left:467.012655pt;}
.xa{left:468.371338pt;}
.x6{left:487.527059pt;}
}




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