
    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_f0a8f1db35ce3e0bfbcce3bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_bed4fb13ef27c854a3e126f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_45872e1802c0d3e88c0f2481.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.833984;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_e24293043d4fb2a91a21f521.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_d175e741470c5551807250b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_0d64c158a19a076dc9a7f729.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_c1ac70a98bcede1a17ec2317.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_fc45391a065414aecae050ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.530273;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_e7004d43b3f035626b3495f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_900d0d2adf9fbd8d4c6caa43.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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_ee1ce4463651fd2c36f11670.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.937500;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-24.900000px;}
.v11{vertical-align:-23.760000px;}
.vf{vertical-align:-22.320000px;}
.v3{vertical-align:-19.440000px;}
.v9{vertical-align:-17.280000px;}
.v6{vertical-align:-12.960000px;}
.v13{vertical-align:-10.800000px;}
.v10{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.728000px;}
.vd{vertical-align:5.760000px;}
.v7{vertical-align:12.960000px;}
.va{vertical-align:14.940000px;}
.v4{vertical-align:19.440000px;}
.v12{vertical-align:20.880000px;}
.vb{vertical-align:24.060000px;}
.v8{vertical-align:37.980000px;}
.vc{vertical-align:50.400000px;}
.v5{vertical-align:63.360000px;}
.v2{vertical-align:64.788000px;}
.ls38{letter-spacing:-1.902000px;}
.ls7{letter-spacing:-0.535800px;}
.ls2d{letter-spacing:-0.348000px;}
.ls3b{letter-spacing:-0.344400px;}
.ls2e{letter-spacing:-0.306000px;}
.ls36{letter-spacing:-0.302400px;}
.ls2f{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.286200px;}
.ls1b{letter-spacing:-0.270000px;}
.ls39{letter-spacing:-0.267000px;}
.ls2{letter-spacing:-0.237000px;}
.ls1e{letter-spacing:-0.234000px;}
.ls2c{letter-spacing:-0.229800px;}
.ls3d{letter-spacing:-0.217200px;}
.ls27{letter-spacing:-0.206400px;}
.ls25{letter-spacing:-0.184800px;}
.ls37{letter-spacing:-0.180600px;}
.ls23{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.115800px;}
.ls5{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.062400px;}
.ls17{letter-spacing:-0.018000px;}
.ls11{letter-spacing:-0.005046px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.008040px;}
.ls24{letter-spacing:0.030960px;}
.ls3a{letter-spacing:0.035280px;}
.ls18{letter-spacing:0.035700px;}
.ls16{letter-spacing:0.036000px;}
.ls34{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.067200px;}
.ls15{letter-spacing:0.090000px;}
.ls3c{letter-spacing:0.094800px;}
.ls21{letter-spacing:0.103200px;}
.ls35{letter-spacing:0.106800px;}
.ls30{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.130800px;}
.ls3{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.244200px;}
.ls32{letter-spacing:0.252000px;}
.ls2a{letter-spacing:0.253200px;}
.ls29{letter-spacing:0.253440px;}
.ls26{letter-spacing:0.256200px;}
.ls31{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.289200px;}
.ls33{letter-spacing:0.292800px;}
.ls1c{letter-spacing:0.306000px;}
.ls12{letter-spacing:0.327000px;}
.ls6{letter-spacing:0.396000px;}
.ls1f{letter-spacing:52.930080px;}
.ls8{letter-spacing:65.916000px;}
.ls22{letter-spacing:69.532128px;}
.ls20{letter-spacing:69.598080px;}
.lsb{letter-spacing:70.149600px;}
.lsa{letter-spacing:70.200000px;}
.ls9{letter-spacing:74.433600px;}
.ls4{letter-spacing:74.484000px;}
.ls1d{letter-spacing:97.560000px;}
.lsc{letter-spacing:172.093200px;}
.lsd{letter-spacing:257.185200px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(33,37,41),0 0.015em rgb(33,37,41),0.015em 0 rgb(33,37,41),0 -0.015em  rgb(33,37,41);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(33,37,41);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws56{word-spacing:-108.000000px;}
.ws15{word-spacing:-96.049200px;}
.ws12{word-spacing:-95.760000px;}
.ws1a{word-spacing:-95.644200px;}
.ws4d{word-spacing:-84.493200px;}
.ws29{word-spacing:-84.384000px;}
.ws4c{word-spacing:-84.370800px;}
.ws28{word-spacing:-84.240000px;}
.ws59{word-spacing:-79.200000px;}
.ws50{word-spacing:-71.712000px;}
.ws1e{word-spacing:-63.360000px;}
.ws13{word-spacing:-59.260560px;}
.ws48{word-spacing:-58.948560px;}
.ws1d{word-spacing:-54.000000px;}
.ws4{word-spacing:-50.019840px;}
.ws60{word-spacing:-49.982400px;}
.ws4b{word-spacing:-47.964240px;}
.ws1c{word-spacing:-47.844240px;}
.ws1f{word-spacing:-46.080000px;}
.ws0{word-spacing:-43.617600px;}
.ws1{word-spacing:-40.689600px;}
.ws14{word-spacing:-37.825200px;}
.ws18{word-spacing:-36.390240px;}
.ws1b{word-spacing:-32.785200px;}
.ws3b{word-spacing:-32.400000px;}
.ws61{word-spacing:-31.555200px;}
.ws64{word-spacing:-31.369200px;}
.ws6c{word-spacing:-31.357200px;}
.ws62{word-spacing:-31.315680px;}
.ws66{word-spacing:-31.307880px;}
.ws65{word-spacing:-31.299840px;}
.ws6a{word-spacing:-31.297680px;}
.ws63{word-spacing:-31.262400px;}
.ws6d{word-spacing:-31.082640px;}
.ws67{word-spacing:-31.081800px;}
.ws69{word-spacing:-30.995400px;}
.ws6b{word-spacing:-30.918000px;}
.ws68{word-spacing:-29.360400px;}
.ws17{word-spacing:-29.190240px;}
.ws23{word-spacing:-27.169194px;}
.wse{word-spacing:-24.804000px;}
.ws40{word-spacing:-24.440544px;}
.wsc{word-spacing:-24.408000px;}
.wsd{word-spacing:-24.300000px;}
.wsf{word-spacing:-23.904744px;}
.ws6e{word-spacing:-21.641760px;}
.ws24{word-spacing:-21.388104px;}
.ws16{word-spacing:-19.211040px;}
.ws3d{word-spacing:-19.141440px;}
.ws49{word-spacing:-19.091040px;}
.ws51{word-spacing:-19.070784px;}
.ws3c{word-spacing:-19.069200px;}
.wsa{word-spacing:-19.038240px;}
.ws4f{word-spacing:-18.732240px;}
.ws35{word-spacing:-16.272000px;}
.ws47{word-spacing:-14.970240px;}
.ws41{word-spacing:-14.319360px;}
.ws2f{word-spacing:-12.294000px;}
.ws2e{word-spacing:-12.258000px;}
.ws2c{word-spacing:-12.204000px;}
.ws2b{word-spacing:-12.186000px;}
.ws5e{word-spacing:-3.456000px;}
.ws5a{word-spacing:-2.700000px;}
.ws3e{word-spacing:-2.575440px;}
.ws21{word-spacing:-2.309760px;}
.ws45{word-spacing:-2.276928px;}
.ws3f{word-spacing:-2.227104px;}
.ws31{word-spacing:-2.222352px;}
.ws25{word-spacing:-1.917360px;}
.ws6{word-spacing:-1.320000px;}
.ws5{word-spacing:-1.248144px;}
.ws26{word-spacing:-0.648000px;}
.ws2d{word-spacing:-0.636000px;}
.ws30{word-spacing:-0.612000px;}
.ws7{word-spacing:-0.576000px;}
.ws36{word-spacing:-0.553920px;}
.ws32{word-spacing:-0.496080px;}
.ws22{word-spacing:-0.475902px;}
.ws11{word-spacing:-0.449280px;}
.ws27{word-spacing:-0.223200px;}
.ws9{word-spacing:0.000000px;}
.ws43{word-spacing:0.108000px;}
.ws44{word-spacing:0.204480px;}
.ws46{word-spacing:0.357120px;}
.ws5f{word-spacing:0.684000px;}
.ws10{word-spacing:0.770400px;}
.ws42{word-spacing:0.900000px;}
.ws3a{word-spacing:0.918000px;}
.ws39{word-spacing:0.972000px;}
.ws8{word-spacing:1.044000px;}
.ws19{word-spacing:95.569200px;}
.ws4a{word-spacing:95.689200px;}
.ws3{word-spacing:128.864880px;}
.ws57{word-spacing:143.479200px;}
.ws54{word-spacing:150.333600px;}
.ws55{word-spacing:154.142400px;}
.ws5d{word-spacing:180.000000px;}
.ws5c{word-spacing:185.292000px;}
.ws53{word-spacing:186.048000px;}
.ws58{word-spacing:197.582400px;}
.ws2{word-spacing:236.689200px;}
.ws20{word-spacing:257.484000px;}
.ws5b{word-spacing:260.172000px;}
.ws52{word-spacing:511.968000px;}
.ws38{word-spacing:553.236000px;}
.wsb{word-spacing:555.000000px;}
.ws37{word-spacing:970.020000px;}
.ws4e{word-spacing:1012.788960px;}
.ws33{word-spacing:2064.528000px;}
.ws2a{word-spacing:3220.608000px;}
.ws34{word-spacing:4270.964400px;}
._13{margin-left:-4774.981824px;}
._2e{margin-left:-11.119680px;}
._1a{margin-left:-9.720000px;}
._7{margin-left:-8.208000px;}
._24{margin-left:-6.748176px;}
._31{margin-left:-5.307120px;}
._3{margin-left:-4.292160px;}
._2{margin-left:-2.835408px;}
._0{margin-left:-1.440000px;}
._1{width:1.335168px;}
._a{width:3.184992px;}
._12{width:4.315728px;}
._17{width:11.184336px;}
._15{width:13.385664px;}
._16{width:14.742000px;}
._c{width:16.445520px;}
._21{width:17.964720px;}
._22{width:18.969168px;}
._d{width:21.347280px;}
._f{width:24.094800px;}
._9{width:25.688640px;}
._b{width:26.964000px;}
._10{width:34.522800px;}
._e{width:35.972400px;}
._5{width:37.637856px;}
._6{width:38.673648px;}
._11{width:63.165600px;}
._25{width:148.993728px;}
._4{width:180.017568px;}
._37{width:193.577088px;}
._36{width:209.424000px;}
._34{width:219.516000px;}
._33{width:247.896000px;}
._32{width:249.507120px;}
._26{width:257.913600px;}
._35{width:297.276000px;}
._19{width:517.440000px;}
._8{width:547.956240px;}
._27{width:568.066560px;}
._23{width:589.740240px;}
._2d{width:659.246928px;}
._30{width:708.294048px;}
._29{width:727.603008px;}
._28{width:749.882640px;}
._2f{width:764.039328px;}
._1c{width:774.132000px;}
._1b{width:840.092160px;}
._1d{width:851.096160px;}
._20{width:883.020000px;}
._1f{width:893.208000px;}
._14{width:902.256000px;}
._2b{width:915.178848px;}
._2a{width:924.309888px;}
._2c{width:980.479968px;}
._1e{width:983.604000px;}
._18{width:2082.471408px;}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(33,37,41);}
.fca{color:rgb(213,5,129);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(16,32,89);}
.fc2{color:transparent;}
.fc1{color:rgb(21,43,119);}
.fc9{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs18{font-size:41.760000px;}
.fsf{font-size:46.080000px;}
.fs5{font-size:48.240000px;}
.fsd{font-size:54.000000px;}
.fs15{font-size:54.144000px;}
.fs16{font-size:59.760000px;}
.fs12{font-size:61.200000px;}
.fs14{font-size:61.344000px;}
.fse{font-size:63.360000px;}
.fs1b{font-size:66.240000px;}
.fs1a{font-size:66.384000px;}
.fsc{font-size:69.840000px;}
.fs0{font-size:72.000000px;}
.fs19{font-size:72.144000px;}
.fs1c{font-size:79.200000px;}
.fs8{font-size:84.240000px;}
.fs13{font-size:84.384000px;}
.fsb{font-size:95.760000px;}
.fs11{font-size:95.904000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs10{font-size:120.240000px;}
.fs1d{font-size:120.384000px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fs4{font-size:156.240000px;}
.fs3{font-size:167.760000px;}
.fs17{font-size:174.384000px;}
.fs2{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.y1{bottom:7.848000px;}
.y5{bottom:11.844000px;}
.yc{bottom:12.204000px;}
.y47{bottom:12.384000px;}
.yb3{bottom:48.888000px;}
.y66{bottom:49.500000px;}
.ya1{bottom:55.692000px;}
.y8c{bottom:63.648000px;}
.yb2{bottom:65.088000px;}
.y65{bottom:65.700000px;}
.y52{bottom:68.652000px;}
.ya0{bottom:80.928000px;}
.y4e{bottom:81.288000px;}
.y54{bottom:82.008000px;}
.y51{bottom:90.288000px;}
.y9b{bottom:91.944000px;}
.y8b{bottom:94.248000px;}
.y5a{bottom:97.092000px;}
.y4d{bottom:97.488000px;}
.y5e{bottom:98.460000px;}
.y2a{bottom:99.324000px;}
.y8f{bottom:102.060000px;}
.y4{bottom:102.204000px;}
.yaf{bottom:104.400000px;}
.yab{bottom:104.475000px;}
.y6c{bottom:109.764000px;}
.y50{bottom:111.888000px;}
.ybe{bottom:113.508000px;}
.y64{bottom:114.192000px;}
.y53{bottom:114.408000px;}
.y8e{bottom:117.000000px;}
.y8a{bottom:124.848000px;}
.y9f{bottom:131.472000px;}
.y14{bottom:131.688000px;}
.y4f{bottom:133.488000px;}
.y25{bottom:135.612000px;}
.yae{bottom:140.760000px;}
.y59{bottom:140.904000px;}
.y5d{bottom:142.272000px;}
.y63{bottom:146.592000px;}
.y13{bottom:147.456000px;}
.ybd{bottom:149.508000px;}
.y9c{bottom:151.455000px;}
.y89{bottom:155.445000px;}
.y6b{bottom:156.210000px;}
.y24{bottom:169.095000px;}
.y88{bottom:175.245000px;}
.y62{bottom:178.995000px;}
.y9e{bottom:183.345000px;}
.y58{bottom:184.710000px;}
.ybc{bottom:185.505000px;}
.y5c{bottom:186.090000px;}
.ya{bottom:189.900000px;}
.y8d{bottom:192.060000px;}
.y23{bottom:203.115000px;}
.y2b{bottom:206.130000px;}
.y9d{bottom:208.545000px;}
.y6a{bottom:210.390000px;}
.y87{bottom:215.970000px;}
.y61{bottom:216.255000px;}
.y57{bottom:228.525000px;}
.y5b{bottom:229.890000px;}
.y27{bottom:237.570000px;}
.yb1{bottom:245.160000px;}
.yb0{bottom:247.860000px;}
.y69{bottom:253.230000px;}
.y60{bottom:264.885000px;}
.y22{bottom:268.635000px;}
.y99{bottom:281.520000px;}
.y3f{bottom:288.075000px;}
.y21{bottom:291.705000px;}
.y4c{bottom:293.115000px;}
.y9{bottom:297.750000px;}
.y68{bottom:299.700000px;}
.y3e{bottom:304.275000px;}
.ybb{bottom:308.670000px;}
.yc5{bottom:310.680000px;}
.y3d{bottom:320.475000px;}
.y20{bottom:323.565000px;}
.y98{bottom:324.150000px;}
.yc0{bottom:327.165000px;}
.y12{bottom:333.540000px;}
.y3c{bottom:336.675000px;}
.y81{bottom:336.885000px;}
.yaa{bottom:340.380000px;}
.y28{bottom:341.670000px;}
.yc4{bottom:343.110000px;}
.y1e{bottom:343.770000px;}
.yba{bottom:344.670000px;}
.y44{bottom:350.490000px;}
.ybf{bottom:355.965000px;}
.y67{bottom:360.180000px;}
.y97{bottom:366.735000px;}
.y3b{bottom:369.075000px;}
.yb9{bottom:380.670000px;}
.y3a{bottom:385.275000px;}
.y7d{bottom:385.665000px;}
.y29{bottom:385.815000px;}
.y1f{bottom:386.790000px;}
.yad{bottom:391.500000px;}
.y39{bottom:401.475000px;}
.y96{bottom:409.350000px;}
.y55{bottom:416.340000px;}
.yb8{bottom:416.670000px;}
.y9a{bottom:418.530000px;}
.y8{bottom:419.400000px;}
.y79{bottom:428.400000px;}
.y40{bottom:432.330000px;}
.y38{bottom:433.905000px;}
.y84{bottom:439.710000px;}
.y1c{bottom:440.175000px;}
.yac{bottom:444.675000px;}
.ya9{bottom:444.855000px;}
.y80{bottom:446.010000px;}
.yc3{bottom:447.120000px;}
.y37{bottom:450.105000px;}
.yc2{bottom:450.690000px;}
.y95{bottom:451.950000px;}
.y18{bottom:455.685000px;}
.y85{bottom:455.910000px;}
.y36{bottom:466.305000px;}
.y83{bottom:472.110000px;}
.y7{bottom:477.000000px;}
.y41{bottom:477.645000px;}
.y73{bottom:480.060000px;}
.y71{bottom:480.135000px;}
.y35{bottom:482.505000px;}
.yc1{bottom:483.090000px;}
.y94{bottom:494.565000px;}
.y34{bottom:498.705000px;}
.y72{bottom:498.960000px;}
.y70{bottom:499.035000px;}
.yb4{bottom:506.235000px;}
.y78{bottom:509.610000px;}
.y76{bottom:509.730000px;}
.y1d{bottom:512.715000px;}
.y10{bottom:513.720000px;}
.y43{bottom:515.265000px;}
.y17{bottom:528.225000px;}
.y33{bottom:531.105000px;}
.y7f{bottom:533.265000px;}
.y6{bottom:534.600000px;}
.y93{bottom:537.150000px;}
.y7b{bottom:539.610000px;}
.yb7{bottom:539.640000px;}
.ya5{bottom:540.465000px;}
.y26{bottom:540.870000px;}
.y4a{bottom:543.240000px;}
.y32{bottom:547.305000px;}
.y1b{bottom:548.430000px;}
.ya8{bottom:556.665000px;}
.y48{bottom:558.255000px;}
.yf{bottom:563.115000px;}
.y1a{bottom:563.370000px;}
.y31{bottom:563.505000px;}
.y7e{bottom:565.665000px;}
.ya4{bottom:572.865000px;}
.y49{bottom:575.640000px;}
.y30{bottom:579.750000px;}
.y92{bottom:579.780000px;}
.ya7{bottom:589.065000px;}
.y74{bottom:590.040000px;}
.y75{bottom:590.430000px;}
.y77{bottom:590.835000px;}
.y16{bottom:593.610000px;}
.y2f{bottom:595.950000px;}
.y3{bottom:598.830000px;}
.ya3{bottom:605.265000px;}
.y6e{bottom:609.375000px;}
.yb6{bottom:611.670000px;}
.y82{bottom:621.150000px;}
.ya6{bottom:621.465000px;}
.y86{bottom:621.510000px;}
.y56{bottom:622.290000px;}
.y91{bottom:622.365000px;}
.y15{bottom:622.770000px;}
.y5f{bottom:623.670000px;}
.y7a{bottom:624.450000px;}
.y2e{bottom:628.350000px;}
.ye{bottom:632.805000px;}
.ya2{bottom:637.665000px;}
.y19{bottom:638.385000px;}
.y6d{bottom:641.775000px;}
.y2d{bottom:644.550000px;}
.yb5{bottom:647.670000px;}
.y6f{bottom:648.000000px;}
.y2c{bottom:648.150000px;}
.y2{bottom:650.700000px;}
.y11{bottom:653.325000px;}
.y42{bottom:655.770000px;}
.yd{bottom:658.005000px;}
.y90{bottom:664.995000px;}
.y7c{bottom:671.325000px;}
.y4b{bottom:678.270000px;}
.y46{bottom:719.820000px;}
.yb{bottom:738.285000px;}
.y45{bottom:755.670000px;}
.h5{height:35.120039px;}
.h9{height:36.910195px;}
.h28{height:39.761719px;}
.h20{height:45.931641px;}
.h1b{height:53.709961px;}
.h1c{height:53.853187px;}
.h1{height:55.089844px;}
.h1d{height:59.439023px;}
.h27{height:60.328125px;}
.h2e{height:65.884219px;}
.h2d{height:67.824844px;}
.h2c{height:67.972289px;}
.h24{height:68.554688px;}
.h2a{height:71.613281px;}
.h2b{height:71.756508px;}
.h6{height:73.722656px;}
.ha{height:80.208984px;}
.h26{height:80.346094px;}
.h12{height:83.742188px;}
.h31{height:83.787539px;}
.h32{height:83.930766px;}
.h21{height:85.968984px;}
.h30{height:86.255508px;}
.he{height:91.177734px;}
.h15{height:91.314844px;}
.h1f{height:92.000039px;}
.h35{height:92.032031px;}
.h36{height:92.110219px;}
.h37{height:98.051133px;}
.h38{height:98.198578px;}
.hb{height:102.832031px;}
.hd{height:102.969141px;}
.h1a{height:104.109961px;}
.h19{height:107.419922px;}
.h22{height:109.012031px;}
.h8{height:110.179688px;}
.h7{height:110.289867px;}
.h29{height:110.583984px;}
.h39{height:110.731430px;}
.h11{height:111.656250px;}
.h14{height:114.486328px;}
.h4{height:128.359336px;}
.h2f{height:129.917812px;}
.h16{height:130.637812px;}
.h18{height:130.861125px;}
.h1e{height:133.427602px;}
.h25{height:137.109375px;}
.h17{height:137.417812px;}
.h3{height:147.089883px;}
.h2{height:147.200063px;}
.hf{height:148.502813px;}
.h13{height:152.466328px;}
.h34{height:167.484375px;}
.h23{height:167.632031px;}
.hc{height:169.348031px;}
.h10{height:211.862813px;}
.h33{height:226.980000px;}
.h0{height:810.000000px;}
.w4{width:124.200000px;}
.w2{width:131.400000px;}
.w3{width:155.340000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3a{left:10.799979px;}
.x7c{left:12.495000px;}
.x81{left:14.975979px;}
.xa{left:20.015979px;}
.x7e{left:21.600000px;}
.x6{left:23.615979px;}
.x20{left:24.731979px;}
.x5b{left:29.591979px;}
.x7{left:31.859979px;}
.x7d{left:46.439979px;}
.x82{left:59.543979px;}
.x5c{left:63.251979px;}
.x26{left:65.411979px;}
.x5e{left:70.991979px;}
.x5f{left:72.971979px;}
.x2a{left:77.327979px;}
.x68{left:80.207979px;}
.x6d{left:85.247979px;}
.x6e{left:88.847979px;}
.xe{left:96.371979px;}
.x67{left:112.607979px;}
.x65{left:118.367979px;}
.x1a{left:121.787979px;}
.x34{left:124.127979px;}
.x28{left:125.531979px;}
.xc{left:128.303979px;}
.x66{left:137.267979px;}
.x63{left:140.687979px;}
.x35{left:145.187979px;}
.x62{left:146.267979px;}
.x33{left:157.064979px;}
.x64{left:160.304979px;}
.x71{left:161.714979px;}
.x1b{left:179.024979px;}
.x24{left:181.949979px;}
.x7f{left:194.429979px;}
.x32{left:242.249979px;}
.x29{left:264.524979px;}
.x72{left:277.229979px;}
.x73{left:288.749979px;}
.x25{left:302.834979px;}
.x5d{left:305.429979px;}
.xd{left:326.849979px;}
.x13{left:332.459979px;}
.x14{left:339.914979px;}
.xb{left:344.849979px;}
.x4{left:354.164979px;}
.x27{left:355.499979px;}
.x74{left:371.774979px;}
.x1c{left:396.929979px;}
.x7b{left:439.560000px;}
.x2b{left:458.849979px;}
.x3f{left:460.004979px;}
.x40{left:467.024979px;}
.x3{left:496.154979px;}
.x6f{left:524.009979px;}
.x70{left:527.609979px;}
.x22{left:562.709979px;}
.x55{left:566.564979px;}
.x76{left:573.554979px;}
.x2{left:583.634979px;}
.x15{left:586.694979px;}
.x77{left:594.614979px;}
.x75{left:608.294979px;}
.xf{left:611.279979px;}
.x44{left:616.829979px;}
.x3b{left:622.904979px;}
.x31{left:629.669979px;}
.x43{left:640.769979px;}
.x8{left:644.864979px;}
.x9{left:650.804979px;}
.x3c{left:676.904979px;}
.x1d{left:680.729979px;}
.x23{left:689.189979px;}
.x54{left:697.934979px;}
.x4b{left:702.749979px;}
.x4a{left:709.769979px;}
.x4c{left:723.989979px;}
.x16{left:726.044979px;}
.x3d{left:730.904979px;}
.x41{left:733.424979px;}
.x2c{left:762.194979px;}
.x60{left:764.309979px;}
.x2d{left:767.774979px;}
.x4f{left:771.299979px;}
.x69{left:795.854979px;}
.x10{left:843.914979px;}
.x17{left:851.579979px;}
.x61{left:855.179979px;}
.x1f{left:858.419979px;}
.x2e{left:862.484979px;}
.x38{left:865.589979px;}
.x36{left:872.969979px;}
.x11{left:874.259979px;}
.x6b{left:876.059979px;}
.x37{left:888.269979px;}
.x52{left:901.829979px;}
.x21{left:904.349979px;}
.x18{left:905.579979px;}
.x51{left:909.569979px;}
.x19{left:932.579979px;}
.x12{left:965.129979px;}
.x48{left:977.189979px;}
.x49{left:978.764979px;}
.x39{left:980.999979px;}
.x53{left:1005.989979px;}
.x7a{left:1052.969979px;}
.x1e{left:1055.729979px;}
.x78{left:1061.279979px;}
.x79{left:1063.619979px;}
.x50{left:1069.589979px;}
.x86{left:1073.444979px;}
.x47{left:1076.789979px;}
.x83{left:1089.284979px;}
.x4e{left:1091.234979px;}
.x4d{left:1092.884979px;}
.x6c{left:1138.319979px;}
.x6a{left:1139.834979px;}
.x58{left:1143.719979px;}
.x1{left:1146.419979px;}
.x2f{left:1160.819979px;}
.x30{left:1164.059979px;}
.x46{left:1191.929979px;}
.x57{left:1201.529979px;}
.x45{left:1208.489979px;}
.x59{left:1209.959979px;}
.x84{left:1222.274979px;}
.x87{left:1223.534979px;}
.x85{left:1230.014979px;}
.x88{left:1231.274979px;}
.x42{left:1282.289979px;}
.x5a{left:1307.339979px;}
.x80{left:1315.259979px;}
.x56{left:1369.289979px;}
.x3e{left:1398.959979px;}
.x5{left:1402.559979px;}
@media print{
.ve{vertical-align:-22.133333pt;}
.v11{vertical-align:-21.120000pt;}
.vf{vertical-align:-19.840000pt;}
.v3{vertical-align:-17.280000pt;}
.v9{vertical-align:-15.360000pt;}
.v6{vertical-align:-11.520000pt;}
.v13{vertical-align:-9.600000pt;}
.v10{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.536000pt;}
.vd{vertical-align:5.120000pt;}
.v7{vertical-align:11.520000pt;}
.va{vertical-align:13.280000pt;}
.v4{vertical-align:17.280000pt;}
.v12{vertical-align:18.560000pt;}
.vb{vertical-align:21.386667pt;}
.v8{vertical-align:33.760000pt;}
.vc{vertical-align:44.800000pt;}
.v5{vertical-align:56.320000pt;}
.v2{vertical-align:57.589333pt;}
.ls38{letter-spacing:-1.690667pt;}
.ls7{letter-spacing:-0.476267pt;}
.ls2d{letter-spacing:-0.309333pt;}
.ls3b{letter-spacing:-0.306133pt;}
.ls2e{letter-spacing:-0.272000pt;}
.ls36{letter-spacing:-0.268800pt;}
.ls2f{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.254400pt;}
.ls1b{letter-spacing:-0.240000pt;}
.ls39{letter-spacing:-0.237333pt;}
.ls2{letter-spacing:-0.210667pt;}
.ls1e{letter-spacing:-0.208000pt;}
.ls2c{letter-spacing:-0.204267pt;}
.ls3d{letter-spacing:-0.193067pt;}
.ls27{letter-spacing:-0.183467pt;}
.ls25{letter-spacing:-0.164267pt;}
.ls37{letter-spacing:-0.160533pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.102933pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.055467pt;}
.ls17{letter-spacing:-0.016000pt;}
.ls11{letter-spacing:-0.004485pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.007147pt;}
.ls24{letter-spacing:0.027520pt;}
.ls3a{letter-spacing:0.031360pt;}
.ls18{letter-spacing:0.031733pt;}
.ls16{letter-spacing:0.032000pt;}
.ls34{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.059733pt;}
.ls15{letter-spacing:0.080000pt;}
.ls3c{letter-spacing:0.084267pt;}
.ls21{letter-spacing:0.091733pt;}
.ls35{letter-spacing:0.094933pt;}
.ls30{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.116267pt;}
.ls3{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.217067pt;}
.ls32{letter-spacing:0.224000pt;}
.ls2a{letter-spacing:0.225067pt;}
.ls29{letter-spacing:0.225280pt;}
.ls26{letter-spacing:0.227733pt;}
.ls31{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.257067pt;}
.ls33{letter-spacing:0.260267pt;}
.ls1c{letter-spacing:0.272000pt;}
.ls12{letter-spacing:0.290667pt;}
.ls6{letter-spacing:0.352000pt;}
.ls1f{letter-spacing:47.048960pt;}
.ls8{letter-spacing:58.592000pt;}
.ls22{letter-spacing:61.806336pt;}
.ls20{letter-spacing:61.864960pt;}
.lsb{letter-spacing:62.355200pt;}
.lsa{letter-spacing:62.400000pt;}
.ls9{letter-spacing:66.163200pt;}
.ls4{letter-spacing:66.208000pt;}
.ls1d{letter-spacing:86.720000pt;}
.lsc{letter-spacing:152.971733pt;}
.lsd{letter-spacing:228.609067pt;}
.ws56{word-spacing:-96.000000pt;}
.ws15{word-spacing:-85.377067pt;}
.ws12{word-spacing:-85.120000pt;}
.ws1a{word-spacing:-85.017067pt;}
.ws4d{word-spacing:-75.105067pt;}
.ws29{word-spacing:-75.008000pt;}
.ws4c{word-spacing:-74.996267pt;}
.ws28{word-spacing:-74.880000pt;}
.ws59{word-spacing:-70.400000pt;}
.ws50{word-spacing:-63.744000pt;}
.ws1e{word-spacing:-56.320000pt;}
.ws13{word-spacing:-52.676053pt;}
.ws48{word-spacing:-52.398720pt;}
.ws1d{word-spacing:-48.000000pt;}
.ws4{word-spacing:-44.462080pt;}
.ws60{word-spacing:-44.428800pt;}
.ws4b{word-spacing:-42.634880pt;}
.ws1c{word-spacing:-42.528213pt;}
.ws1f{word-spacing:-40.960000pt;}
.ws0{word-spacing:-38.771200pt;}
.ws1{word-spacing:-36.168533pt;}
.ws14{word-spacing:-33.622400pt;}
.ws18{word-spacing:-32.346880pt;}
.ws1b{word-spacing:-29.142400pt;}
.ws3b{word-spacing:-28.800000pt;}
.ws61{word-spacing:-28.049067pt;}
.ws64{word-spacing:-27.883733pt;}
.ws6c{word-spacing:-27.873067pt;}
.ws62{word-spacing:-27.836160pt;}
.ws66{word-spacing:-27.829227pt;}
.ws65{word-spacing:-27.822080pt;}
.ws6a{word-spacing:-27.820160pt;}
.ws63{word-spacing:-27.788800pt;}
.ws6d{word-spacing:-27.629013pt;}
.ws67{word-spacing:-27.628267pt;}
.ws69{word-spacing:-27.551467pt;}
.ws6b{word-spacing:-27.482667pt;}
.ws68{word-spacing:-26.098133pt;}
.ws17{word-spacing:-25.946880pt;}
.ws23{word-spacing:-24.150395pt;}
.wse{word-spacing:-22.048000pt;}
.ws40{word-spacing:-21.724928pt;}
.wsc{word-spacing:-21.696000pt;}
.wsd{word-spacing:-21.600000pt;}
.wsf{word-spacing:-21.248661pt;}
.ws6e{word-spacing:-19.237120pt;}
.ws24{word-spacing:-19.011648pt;}
.ws16{word-spacing:-17.076480pt;}
.ws3d{word-spacing:-17.014613pt;}
.ws49{word-spacing:-16.969813pt;}
.ws51{word-spacing:-16.951808pt;}
.ws3c{word-spacing:-16.950400pt;}
.wsa{word-spacing:-16.922880pt;}
.ws4f{word-spacing:-16.650880pt;}
.ws35{word-spacing:-14.464000pt;}
.ws47{word-spacing:-13.306880pt;}
.ws41{word-spacing:-12.728320pt;}
.ws2f{word-spacing:-10.928000pt;}
.ws2e{word-spacing:-10.896000pt;}
.ws2c{word-spacing:-10.848000pt;}
.ws2b{word-spacing:-10.832000pt;}
.ws5e{word-spacing:-3.072000pt;}
.ws5a{word-spacing:-2.400000pt;}
.ws3e{word-spacing:-2.289280pt;}
.ws21{word-spacing:-2.053120pt;}
.ws45{word-spacing:-2.023936pt;}
.ws3f{word-spacing:-1.979648pt;}
.ws31{word-spacing:-1.975424pt;}
.ws25{word-spacing:-1.704320pt;}
.ws6{word-spacing:-1.173333pt;}
.ws5{word-spacing:-1.109461pt;}
.ws26{word-spacing:-0.576000pt;}
.ws2d{word-spacing:-0.565333pt;}
.ws30{word-spacing:-0.544000pt;}
.ws7{word-spacing:-0.512000pt;}
.ws36{word-spacing:-0.492373pt;}
.ws32{word-spacing:-0.440960pt;}
.ws22{word-spacing:-0.423024pt;}
.ws11{word-spacing:-0.399360pt;}
.ws27{word-spacing:-0.198400pt;}
.ws9{word-spacing:0.000000pt;}
.ws43{word-spacing:0.096000pt;}
.ws44{word-spacing:0.181760pt;}
.ws46{word-spacing:0.317440pt;}
.ws5f{word-spacing:0.608000pt;}
.ws10{word-spacing:0.684800pt;}
.ws42{word-spacing:0.800000pt;}
.ws3a{word-spacing:0.816000pt;}
.ws39{word-spacing:0.864000pt;}
.ws8{word-spacing:0.928000pt;}
.ws19{word-spacing:84.950400pt;}
.ws4a{word-spacing:85.057067pt;}
.ws3{word-spacing:114.546560pt;}
.ws57{word-spacing:127.537067pt;}
.ws54{word-spacing:133.629867pt;}
.ws55{word-spacing:137.015467pt;}
.ws5d{word-spacing:160.000000pt;}
.ws5c{word-spacing:164.704000pt;}
.ws53{word-spacing:165.376000pt;}
.ws58{word-spacing:175.628800pt;}
.ws2{word-spacing:210.390400pt;}
.ws20{word-spacing:228.874667pt;}
.ws5b{word-spacing:231.264000pt;}
.ws52{word-spacing:455.082667pt;}
.ws38{word-spacing:491.765333pt;}
.wsb{word-spacing:493.333333pt;}
.ws37{word-spacing:862.240000pt;}
.ws4e{word-spacing:900.256853pt;}
.ws33{word-spacing:1835.136000pt;}
.ws2a{word-spacing:2862.762667pt;}
.ws34{word-spacing:3796.412800pt;}
._13{margin-left:-4244.428288pt;}
._2e{margin-left:-9.884160pt;}
._1a{margin-left:-8.640000pt;}
._7{margin-left:-7.296000pt;}
._24{margin-left:-5.998379pt;}
._31{margin-left:-4.717440pt;}
._3{margin-left:-3.815253pt;}
._2{margin-left:-2.520363pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.186816pt;}
._a{width:2.831104pt;}
._12{width:3.836203pt;}
._17{width:9.941632pt;}
._15{width:11.898368pt;}
._16{width:13.104000pt;}
._c{width:14.618240pt;}
._21{width:15.968640pt;}
._22{width:16.861483pt;}
._d{width:18.975360pt;}
._f{width:21.417600pt;}
._9{width:22.834347pt;}
._b{width:23.968000pt;}
._10{width:30.686933pt;}
._e{width:31.975467pt;}
._5{width:33.455872pt;}
._6{width:34.376576pt;}
._11{width:56.147200pt;}
._25{width:132.438869pt;}
._4{width:160.015616pt;}
._37{width:172.068523pt;}
._36{width:186.154667pt;}
._34{width:195.125333pt;}
._33{width:220.352000pt;}
._32{width:221.784107pt;}
._26{width:229.256533pt;}
._35{width:264.245333pt;}
._19{width:459.946667pt;}
._8{width:487.072213pt;}
._27{width:504.948053pt;}
._23{width:524.213547pt;}
._2d{width:585.997269pt;}
._30{width:629.594709pt;}
._29{width:646.758229pt;}
._28{width:666.562347pt;}
._2f{width:679.146069pt;}
._1c{width:688.117333pt;}
._1b{width:746.748587pt;}
._1d{width:756.529920pt;}
._20{width:784.906667pt;}
._1f{width:793.962667pt;}
._14{width:802.005333pt;}
._2b{width:813.492309pt;}
._2a{width:821.608789pt;}
._2c{width:871.537749pt;}
._1e{width:874.314667pt;}
._18{width:1851.085696pt;}
.fs18{font-size:37.120000pt;}
.fsf{font-size:40.960000pt;}
.fs5{font-size:42.880000pt;}
.fsd{font-size:48.000000pt;}
.fs15{font-size:48.128000pt;}
.fs16{font-size:53.120000pt;}
.fs12{font-size:54.400000pt;}
.fs14{font-size:54.528000pt;}
.fse{font-size:56.320000pt;}
.fs1b{font-size:58.880000pt;}
.fs1a{font-size:59.008000pt;}
.fsc{font-size:62.080000pt;}
.fs0{font-size:64.000000pt;}
.fs19{font-size:64.128000pt;}
.fs1c{font-size:70.400000pt;}
.fs8{font-size:74.880000pt;}
.fs13{font-size:75.008000pt;}
.fsb{font-size:85.120000pt;}
.fs11{font-size:85.248000pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs10{font-size:106.880000pt;}
.fs1d{font-size:107.008000pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fs4{font-size:138.880000pt;}
.fs3{font-size:149.120000pt;}
.fs17{font-size:155.008000pt;}
.fs2{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:6.976000pt;}
.y5{bottom:10.528000pt;}
.yc{bottom:10.848000pt;}
.y47{bottom:11.008000pt;}
.yb3{bottom:43.456000pt;}
.y66{bottom:44.000000pt;}
.ya1{bottom:49.504000pt;}
.y8c{bottom:56.576000pt;}
.yb2{bottom:57.856000pt;}
.y65{bottom:58.400000pt;}
.y52{bottom:61.024000pt;}
.ya0{bottom:71.936000pt;}
.y4e{bottom:72.256000pt;}
.y54{bottom:72.896000pt;}
.y51{bottom:80.256000pt;}
.y9b{bottom:81.728000pt;}
.y8b{bottom:83.776000pt;}
.y5a{bottom:86.304000pt;}
.y4d{bottom:86.656000pt;}
.y5e{bottom:87.520000pt;}
.y2a{bottom:88.288000pt;}
.y8f{bottom:90.720000pt;}
.y4{bottom:90.848000pt;}
.yaf{bottom:92.800000pt;}
.yab{bottom:92.866667pt;}
.y6c{bottom:97.568000pt;}
.y50{bottom:99.456000pt;}
.ybe{bottom:100.896000pt;}
.y64{bottom:101.504000pt;}
.y53{bottom:101.696000pt;}
.y8e{bottom:104.000000pt;}
.y8a{bottom:110.976000pt;}
.y9f{bottom:116.864000pt;}
.y14{bottom:117.056000pt;}
.y4f{bottom:118.656000pt;}
.y25{bottom:120.544000pt;}
.yae{bottom:125.120000pt;}
.y59{bottom:125.248000pt;}
.y5d{bottom:126.464000pt;}
.y63{bottom:130.304000pt;}
.y13{bottom:131.072000pt;}
.ybd{bottom:132.896000pt;}
.y9c{bottom:134.626667pt;}
.y89{bottom:138.173333pt;}
.y6b{bottom:138.853333pt;}
.y24{bottom:150.306667pt;}
.y88{bottom:155.773333pt;}
.y62{bottom:159.106667pt;}
.y9e{bottom:162.973333pt;}
.y58{bottom:164.186667pt;}
.ybc{bottom:164.893333pt;}
.y5c{bottom:165.413333pt;}
.ya{bottom:168.800000pt;}
.y8d{bottom:170.720000pt;}
.y23{bottom:180.546667pt;}
.y2b{bottom:183.226667pt;}
.y9d{bottom:185.373333pt;}
.y6a{bottom:187.013333pt;}
.y87{bottom:191.973333pt;}
.y61{bottom:192.226667pt;}
.y57{bottom:203.133333pt;}
.y5b{bottom:204.346667pt;}
.y27{bottom:211.173333pt;}
.yb1{bottom:217.920000pt;}
.yb0{bottom:220.320000pt;}
.y69{bottom:225.093333pt;}
.y60{bottom:235.453333pt;}
.y22{bottom:238.786667pt;}
.y99{bottom:250.240000pt;}
.y3f{bottom:256.066667pt;}
.y21{bottom:259.293333pt;}
.y4c{bottom:260.546667pt;}
.y9{bottom:264.666667pt;}
.y68{bottom:266.400000pt;}
.y3e{bottom:270.466667pt;}
.ybb{bottom:274.373333pt;}
.yc5{bottom:276.160000pt;}
.y3d{bottom:284.866667pt;}
.y20{bottom:287.613333pt;}
.y98{bottom:288.133333pt;}
.yc0{bottom:290.813333pt;}
.y12{bottom:296.480000pt;}
.y3c{bottom:299.266667pt;}
.y81{bottom:299.453333pt;}
.yaa{bottom:302.560000pt;}
.y28{bottom:303.706667pt;}
.yc4{bottom:304.986667pt;}
.y1e{bottom:305.573333pt;}
.yba{bottom:306.373333pt;}
.y44{bottom:311.546667pt;}
.ybf{bottom:316.413333pt;}
.y67{bottom:320.160000pt;}
.y97{bottom:325.986667pt;}
.y3b{bottom:328.066667pt;}
.yb9{bottom:338.373333pt;}
.y3a{bottom:342.466667pt;}
.y7d{bottom:342.813333pt;}
.y29{bottom:342.946667pt;}
.y1f{bottom:343.813333pt;}
.yad{bottom:348.000000pt;}
.y39{bottom:356.866667pt;}
.y96{bottom:363.866667pt;}
.y55{bottom:370.080000pt;}
.yb8{bottom:370.373333pt;}
.y9a{bottom:372.026667pt;}
.y8{bottom:372.800000pt;}
.y79{bottom:380.800000pt;}
.y40{bottom:384.293333pt;}
.y38{bottom:385.693333pt;}
.y84{bottom:390.853333pt;}
.y1c{bottom:391.266667pt;}
.yac{bottom:395.266667pt;}
.ya9{bottom:395.426667pt;}
.y80{bottom:396.453333pt;}
.yc3{bottom:397.440000pt;}
.y37{bottom:400.093333pt;}
.yc2{bottom:400.613333pt;}
.y95{bottom:401.733333pt;}
.y18{bottom:405.053333pt;}
.y85{bottom:405.253333pt;}
.y36{bottom:414.493333pt;}
.y83{bottom:419.653333pt;}
.y7{bottom:424.000000pt;}
.y41{bottom:424.573333pt;}
.y73{bottom:426.720000pt;}
.y71{bottom:426.786667pt;}
.y35{bottom:428.893333pt;}
.yc1{bottom:429.413333pt;}
.y94{bottom:439.613333pt;}
.y34{bottom:443.293333pt;}
.y72{bottom:443.520000pt;}
.y70{bottom:443.586667pt;}
.yb4{bottom:449.986667pt;}
.y78{bottom:452.986667pt;}
.y76{bottom:453.093333pt;}
.y1d{bottom:455.746667pt;}
.y10{bottom:456.640000pt;}
.y43{bottom:458.013333pt;}
.y17{bottom:469.533333pt;}
.y33{bottom:472.093333pt;}
.y7f{bottom:474.013333pt;}
.y6{bottom:475.200000pt;}
.y93{bottom:477.466667pt;}
.y7b{bottom:479.653333pt;}
.yb7{bottom:479.680000pt;}
.ya5{bottom:480.413333pt;}
.y26{bottom:480.773333pt;}
.y4a{bottom:482.880000pt;}
.y32{bottom:486.493333pt;}
.y1b{bottom:487.493333pt;}
.ya8{bottom:494.813333pt;}
.y48{bottom:496.226667pt;}
.yf{bottom:500.546667pt;}
.y1a{bottom:500.773333pt;}
.y31{bottom:500.893333pt;}
.y7e{bottom:502.813333pt;}
.ya4{bottom:509.213333pt;}
.y49{bottom:511.680000pt;}
.y30{bottom:515.333333pt;}
.y92{bottom:515.360000pt;}
.ya7{bottom:523.613333pt;}
.y74{bottom:524.480000pt;}
.y75{bottom:524.826667pt;}
.y77{bottom:525.186667pt;}
.y16{bottom:527.653333pt;}
.y2f{bottom:529.733333pt;}
.y3{bottom:532.293333pt;}
.ya3{bottom:538.013333pt;}
.y6e{bottom:541.666667pt;}
.yb6{bottom:543.706667pt;}
.y82{bottom:552.133333pt;}
.ya6{bottom:552.413333pt;}
.y86{bottom:552.453333pt;}
.y56{bottom:553.146667pt;}
.y91{bottom:553.213333pt;}
.y15{bottom:553.573333pt;}
.y5f{bottom:554.373333pt;}
.y7a{bottom:555.066667pt;}
.y2e{bottom:558.533333pt;}
.ye{bottom:562.493333pt;}
.ya2{bottom:566.813333pt;}
.y19{bottom:567.453333pt;}
.y6d{bottom:570.466667pt;}
.y2d{bottom:572.933333pt;}
.yb5{bottom:575.706667pt;}
.y6f{bottom:576.000000pt;}
.y2c{bottom:576.133333pt;}
.y2{bottom:578.400000pt;}
.y11{bottom:580.733333pt;}
.y42{bottom:582.906667pt;}
.yd{bottom:584.893333pt;}
.y90{bottom:591.106667pt;}
.y7c{bottom:596.733333pt;}
.y4b{bottom:602.906667pt;}
.y46{bottom:639.840000pt;}
.yb{bottom:656.253333pt;}
.y45{bottom:671.706667pt;}
.h5{height:31.217812pt;}
.h9{height:32.809062pt;}
.h28{height:35.343750pt;}
.h20{height:40.828125pt;}
.h1b{height:47.742188pt;}
.h1c{height:47.869500pt;}
.h1{height:48.968750pt;}
.h1d{height:52.834688pt;}
.h27{height:53.625000pt;}
.h2e{height:58.563750pt;}
.h2d{height:60.288750pt;}
.h2c{height:60.419812pt;}
.h24{height:60.937500pt;}
.h2a{height:63.656250pt;}
.h2b{height:63.783562pt;}
.h6{height:65.531250pt;}
.ha{height:71.296875pt;}
.h26{height:71.418750pt;}
.h12{height:74.437500pt;}
.h31{height:74.477812pt;}
.h32{height:74.605125pt;}
.h21{height:76.416875pt;}
.h30{height:76.671562pt;}
.he{height:81.046875pt;}
.h15{height:81.168750pt;}
.h1f{height:81.777812pt;}
.h35{height:81.806250pt;}
.h36{height:81.875750pt;}
.h37{height:87.156562pt;}
.h38{height:87.287625pt;}
.hb{height:91.406250pt;}
.hd{height:91.528125pt;}
.h1a{height:92.542187pt;}
.h19{height:95.484375pt;}
.h22{height:96.899583pt;}
.h8{height:97.937500pt;}
.h7{height:98.035438pt;}
.h29{height:98.296875pt;}
.h39{height:98.427937pt;}
.h11{height:99.250000pt;}
.h14{height:101.765625pt;}
.h4{height:114.097187pt;}
.h2f{height:115.482500pt;}
.h16{height:116.122500pt;}
.h18{height:116.321000pt;}
.h1e{height:118.602312pt;}
.h25{height:121.875000pt;}
.h17{height:122.149167pt;}
.h3{height:130.746563pt;}
.h2{height:130.844500pt;}
.hf{height:132.002500pt;}
.h13{height:135.525625pt;}
.h34{height:148.875000pt;}
.h23{height:149.006250pt;}
.hc{height:150.531583pt;}
.h10{height:188.322500pt;}
.h33{height:201.760000pt;}
.h0{height:720.000000pt;}
.w4{width:110.400000pt;}
.w2{width:116.800000pt;}
.w3{width:138.080000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:9.599981pt;}
.x7c{left:11.106667pt;}
.x81{left:13.311981pt;}
.xa{left:17.791981pt;}
.x7e{left:19.200000pt;}
.x6{left:20.991981pt;}
.x20{left:21.983981pt;}
.x5b{left:26.303981pt;}
.x7{left:28.319981pt;}
.x7d{left:41.279981pt;}
.x82{left:52.927981pt;}
.x5c{left:56.223981pt;}
.x26{left:58.143981pt;}
.x5e{left:63.103981pt;}
.x5f{left:64.863981pt;}
.x2a{left:68.735981pt;}
.x68{left:71.295981pt;}
.x6d{left:75.775981pt;}
.x6e{left:78.975981pt;}
.xe{left:85.663981pt;}
.x67{left:100.095981pt;}
.x65{left:105.215981pt;}
.x1a{left:108.255981pt;}
.x34{left:110.335981pt;}
.x28{left:111.583981pt;}
.xc{left:114.047981pt;}
.x66{left:122.015981pt;}
.x63{left:125.055981pt;}
.x35{left:129.055981pt;}
.x62{left:130.015981pt;}
.x33{left:139.613314pt;}
.x64{left:142.493314pt;}
.x71{left:143.746648pt;}
.x1b{left:159.133314pt;}
.x24{left:161.733314pt;}
.x7f{left:172.826648pt;}
.x32{left:215.333314pt;}
.x29{left:235.133314pt;}
.x72{left:246.426648pt;}
.x73{left:256.666648pt;}
.x25{left:269.186648pt;}
.x5d{left:271.493314pt;}
.xd{left:290.533314pt;}
.x13{left:295.519981pt;}
.x14{left:302.146648pt;}
.xb{left:306.533314pt;}
.x4{left:314.813314pt;}
.x27{left:315.999981pt;}
.x74{left:330.466648pt;}
.x1c{left:352.826648pt;}
.x7b{left:390.720000pt;}
.x2b{left:407.866648pt;}
.x3f{left:408.893314pt;}
.x40{left:415.133314pt;}
.x3{left:441.026648pt;}
.x6f{left:465.786648pt;}
.x70{left:468.986648pt;}
.x22{left:500.186648pt;}
.x55{left:503.613314pt;}
.x76{left:509.826648pt;}
.x2{left:518.786648pt;}
.x15{left:521.506648pt;}
.x77{left:528.546648pt;}
.x75{left:540.706648pt;}
.xf{left:543.359981pt;}
.x44{left:548.293314pt;}
.x3b{left:553.693314pt;}
.x31{left:559.706648pt;}
.x43{left:569.573314pt;}
.x8{left:573.213314pt;}
.x9{left:578.493314pt;}
.x3c{left:601.693314pt;}
.x1d{left:605.093314pt;}
.x23{left:612.613314pt;}
.x54{left:620.386648pt;}
.x4b{left:624.666648pt;}
.x4a{left:630.906648pt;}
.x4c{left:643.546648pt;}
.x16{left:645.373314pt;}
.x3d{left:649.693314pt;}
.x41{left:651.933314pt;}
.x2c{left:677.506648pt;}
.x60{left:679.386648pt;}
.x2d{left:682.466648pt;}
.x4f{left:685.599981pt;}
.x69{left:707.426648pt;}
.x10{left:750.146648pt;}
.x17{left:756.959981pt;}
.x61{left:760.159981pt;}
.x1f{left:763.039981pt;}
.x2e{left:766.653314pt;}
.x38{left:769.413314pt;}
.x36{left:775.973314pt;}
.x11{left:777.119981pt;}
.x6b{left:778.719981pt;}
.x37{left:789.573314pt;}
.x52{left:801.626648pt;}
.x21{left:803.866648pt;}
.x18{left:804.959981pt;}
.x51{left:808.506648pt;}
.x19{left:828.959981pt;}
.x12{left:857.893314pt;}
.x48{left:868.613314pt;}
.x49{left:870.013314pt;}
.x39{left:871.999981pt;}
.x53{left:894.213314pt;}
.x7a{left:935.973314pt;}
.x1e{left:938.426648pt;}
.x78{left:943.359981pt;}
.x79{left:945.439981pt;}
.x50{left:950.746648pt;}
.x86{left:954.173314pt;}
.x47{left:957.146648pt;}
.x83{left:968.253314pt;}
.x4e{left:969.986648pt;}
.x4d{left:971.453314pt;}
.x6c{left:1011.839981pt;}
.x6a{left:1013.186648pt;}
.x58{left:1016.639981pt;}
.x1{left:1019.039981pt;}
.x2f{left:1031.839981pt;}
.x30{left:1034.719981pt;}
.x46{left:1059.493314pt;}
.x57{left:1068.026648pt;}
.x45{left:1074.213314pt;}
.x59{left:1075.519981pt;}
.x84{left:1086.466648pt;}
.x87{left:1087.586648pt;}
.x85{left:1093.346648pt;}
.x88{left:1094.466648pt;}
.x42{left:1139.813314pt;}
.x5a{left:1162.079981pt;}
.x80{left:1169.119981pt;}
.x56{left:1217.146648pt;}
.x3e{left:1243.519981pt;}
.x5{left:1246.719981pt;}
}




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