
    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_72f7480b4044b31e72be481a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_eef6ae5784f815ff8334dba9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_0b71e0e56eafb8993a5f640a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.110840;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_4563c5abc0c9ec66c75a632d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2727b58736929cbe0911856.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0e73b50e10c451eb6653b92f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.129395;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_d675db3e52b7eb9444fb4499.woff')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_6062dd9c89128e3514dc2cbb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.151855;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_1d41f3dc6bea639e70d7c8eb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_71b036bd2f7783541560d9a8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_85f71ba8ab2dbec23db91a97.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237180,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);}
.m3{transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256575,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v3{vertical-align:-69.120000px;}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-64.800000px;}
.v4{vertical-align:-48.240000px;}
.v5{vertical-align:-31.680000px;}
.v0{vertical-align:0.000000px;}
.ls55{letter-spacing:-42.071040px;}
.ls57{letter-spacing:-38.016000px;}
.ls4f{letter-spacing:-9.884160px;}
.ls62{letter-spacing:-8.870400px;}
.ls5a{letter-spacing:-7.856640px;}
.ls50{letter-spacing:-7.603200px;}
.ls64{letter-spacing:-7.096320px;}
.ls5c{letter-spacing:-6.779520px;}
.ls63{letter-spacing:-6.462720px;}
.ls4a{letter-spacing:-6.292800px;}
.ls51{letter-spacing:-5.765760px;}
.ls54{letter-spacing:-5.702400px;}
.lsa{letter-spacing:-4.872000px;}
.ls49{letter-spacing:-4.570560px;}
.ls4c{letter-spacing:-4.371840px;}
.ls53{letter-spacing:-3.991680px;}
.ls4d{letter-spacing:-3.908160px;}
.ls52{letter-spacing:-3.548160px;}
.ls48{letter-spacing:-3.240000px;}
.ls4e{letter-spacing:-2.280960px;}
.ls5b{letter-spacing:-2.027520px;}
.ls56{letter-spacing:-1.774080px;}
.ls67{letter-spacing:-1.203840px;}
.ls65{letter-spacing:-0.950400px;}
.ls66{letter-spacing:-0.570240px;}
.ls1a{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.414600px;}
.ls21{letter-spacing:-0.334200px;}
.ls60{letter-spacing:-0.316800px;}
.ls9{letter-spacing:-0.305400px;}
.ls3c{letter-spacing:-0.219000px;}
.ls1f{letter-spacing:-0.200400px;}
.ls58{letter-spacing:-0.190080px;}
.ls1c{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.170400px;}
.ls30{letter-spacing:-0.152400px;}
.ls3b{letter-spacing:-0.133800px;}
.ls28{letter-spacing:-0.132000px;}
.ls26{letter-spacing:-0.114000px;}
.ls20{letter-spacing:-0.051840px;}
.ls8{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.027275px;}
.lse{letter-spacing:0.033660px;}
.ls27{letter-spacing:0.051840px;}
.ls38{letter-spacing:0.109200px;}
.ls3e{letter-spacing:0.109440px;}
.ls44{letter-spacing:0.120000px;}
.ls5f{letter-spacing:0.126720px;}
.ls31{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.152640px;}
.ls1b{letter-spacing:0.166800px;}
.ls7{letter-spacing:0.172270px;}
.ls25{letter-spacing:0.259553px;}
.ls3f{letter-spacing:0.262080px;}
.ls4b{letter-spacing:0.264960px;}
.ls34{letter-spacing:0.305280px;}
.lsc{letter-spacing:0.305400px;}
.ls42{letter-spacing:0.334080px;}
.ls2b{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.406200px;}
.ls2a{letter-spacing:0.454200px;}
.ls11{letter-spacing:0.506880px;}
.ls3d{letter-spacing:0.513600px;}
.ls6{letter-spacing:0.514199px;}
.ls13{letter-spacing:0.519106px;}
.ls17{letter-spacing:0.520200px;}
.lsf{letter-spacing:0.547200px;}
.ls18{letter-spacing:0.549494px;}
.ls14{letter-spacing:0.552260px;}
.ls39{letter-spacing:0.553200px;}
.ls37{letter-spacing:0.568200px;}
.ls12{letter-spacing:0.585414px;}
.ls29{letter-spacing:0.586200px;}
.ls16{letter-spacing:0.600517px;}
.ls2f{letter-spacing:0.624000px;}
.ls24{letter-spacing:0.668923px;}
.ls43{letter-spacing:0.720000px;}
.ls5e{letter-spacing:0.823680px;}
.ls10{letter-spacing:0.870000px;}
.ls5{letter-spacing:0.873341px;}
.ls19{letter-spacing:0.959533px;}
.ls1e{letter-spacing:0.960000px;}
.ls59{letter-spacing:1.330560px;}
.ls41{letter-spacing:1.440000px;}
.ls61{letter-spacing:1.900800px;}
.ls3{letter-spacing:2.160000px;}
.ls47{letter-spacing:2.545920px;}
.ls5d{letter-spacing:3.548160px;}
.ls45{letter-spacing:4.440000px;}
.ls40{letter-spacing:7.200000px;}
.ls2c{letter-spacing:12.159222px;}
.ls15{letter-spacing:12.960000px;}
.ls35{letter-spacing:17.759067px;}
.ls1{letter-spacing:20.545920px;}
.ls3a{letter-spacing:25.020000px;}
.ls46{letter-spacing:33.505920px;}
.ls2{letter-spacing:376.200000px;}
.ls2d{letter-spacing:635.556000px;}
.ls33{letter-spacing:845.741280px;}
.ls23{letter-spacing:939.396000px;}
.ls32{letter-spacing:1003.260000px;}
.ls2e{letter-spacing:1109.100000px;}
.ls22{letter-spacing:2250.096000px;}
.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;}
}
.wsd{word-spacing:-63.360000px;}
.ws2a{word-spacing:-19.388160px;}
.ws9{word-spacing:-17.430000px;}
.ws29{word-spacing:-17.170560px;}
.ws8{word-spacing:-17.107200px;}
.ws1e{word-spacing:-17.073600px;}
.ws6{word-spacing:-16.865400px;}
.ws19{word-spacing:-16.712400px;}
.ws1a{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.408200px;}
.ws18{word-spacing:-16.407600px;}
.ws1d{word-spacing:-16.393200px;}
.ws7{word-spacing:-16.389600px;}
.ws10{word-spacing:-16.360200px;}
.ws11{word-spacing:-16.359600px;}
.ws16{word-spacing:-16.294200px;}
.ws2{word-spacing:-16.254600px;}
.wsf{word-spacing:-16.246200px;}
.ws17{word-spacing:-16.174200px;}
.ws5{word-spacing:-16.145400px;}
.wsb{word-spacing:-16.102200px;}
.wsc{word-spacing:-16.006800px;}
.ws15{word-spacing:-15.891840px;}
.ws1{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.788160px;}
.ws14{word-spacing:-15.726000px;}
.wse{word-spacing:-15.660000px;}
.ws28{word-spacing:-15.649920px;}
.ws1c{word-spacing:-15.621000px;}
.ws2b{word-spacing:-15.523200px;}
.ws13{word-spacing:-15.505800px;}
.ws27{word-spacing:-14.065920px;}
.ws0{word-spacing:-13.860000px;}
.ws21{word-spacing:-13.559040px;}
.ws24{word-spacing:-12.291840px;}
.ws1f{word-spacing:-11.989440px;}
.ws25{word-spacing:-11.848320px;}
.ws3{word-spacing:-10.968000px;}
.ws20{word-spacing:-10.267200px;}
.ws22{word-spacing:-5.955840px;}
.wsa{word-spacing:0.000000px;}
.ws23{word-spacing:35.256000px;}
.ws26{word-spacing:64.316736px;}
._3{margin-left:-7.748640px;}
._5{margin-left:-6.707520px;}
._d{margin-left:-5.682720px;}
._2{margin-left:-4.636800px;}
._0{margin-left:-3.421440px;}
._1{margin-left:-1.628640px;}
._6{width:1.013760px;}
._4{width:2.014560px;}
._a{width:3.388800px;}
._9{width:4.669920px;}
._7{width:6.019200px;}
._8{width:7.223040px;}
._b{width:8.851680px;}
._c{width:10.308960px;}
._e{width:12.291840px;}
._f{width:13.305600px;}
._10{width:14.826240px;}
._1a{width:16.928842px;}
._14{width:18.247680px;}
._15{width:19.324800px;}
._1b{width:21.542400px;}
._1c{width:22.717110px;}
._13{width:23.960902px;}
._11{width:25.017519px;}
._12{width:26.073335px;}
._1f{width:34.503840px;}
._1e{width:41.736384px;}
._1d{width:51.096000px;}
._17{width:58.953600px;}
._16{width:60.808320px;}
._18{width:68.942400px;}
._19{width:687.862080px;}
.fc5{color:rgb(32,33,34);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(42,42,42);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:12.240000px;}
.fs5{font-size:18.000000px;}
.fs4{font-size:36.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.420000px;}
.y5c{bottom:3.960000px;}
.yef{bottom:6.300000px;}
.y4d{bottom:9.000000px;}
.y63{bottom:12.420000px;}
.y61{bottom:12.600000px;}
.y5a{bottom:12.780000px;}
.y7b{bottom:21.060000px;}
.y66{bottom:21.240000px;}
.y45{bottom:21.420000px;}
.y41{bottom:21.600000px;}
.y5b{bottom:21.960000px;}
.yee{bottom:24.300000px;}
.y4c{bottom:27.180000px;}
.y100{bottom:30.240000px;}
.y107{bottom:30.450000px;}
.y60{bottom:30.600000px;}
.y6e{bottom:38.880000px;}
.y73{bottom:38.925000px;}
.y103{bottom:39.240000px;}
.y10a{bottom:39.450000px;}
.yfc{bottom:39.465000px;}
.y44{bottom:39.600000px;}
.ye1{bottom:39.630000px;}
.y3e{bottom:39.780000px;}
.y4b{bottom:45.360000px;}
.y69{bottom:47.700000px;}
.yff{bottom:48.240000px;}
.y106{bottom:48.270000px;}
.y47{bottom:51.480000px;}
.y7a{bottom:56.520000px;}
.y6d{bottom:56.700000px;}
.y102{bottom:57.240000px;}
.y109{bottom:57.270000px;}
.yfb{bottom:57.465000px;}
.yec{bottom:57.600000px;}
.y40{bottom:57.780000px;}
.y5e{bottom:57.825000px;}
.y4a{bottom:63.360000px;}
.y68{bottom:65.520000px;}
.yfe{bottom:66.240000px;}
.y51{bottom:66.780000px;}
.y6c{bottom:74.340000px;}
.y101{bottom:75.240000px;}
.y108{bottom:75.270000px;}
.yfa{bottom:75.465000px;}
.yeb{bottom:75.780000px;}
.y3f{bottom:75.960000px;}
.y49{bottom:81.540000px;}
.y50{bottom:84.960000px;}
.y75{bottom:91.980000px;}
.y6b{bottom:92.160000px;}
.yf9{bottom:93.285000px;}
.y55{bottom:93.960000px;}
.y48{bottom:99.540000px;}
.y6a{bottom:109.800000px;}
.y83{bottom:109.845000px;}
.yf8{bottom:111.285000px;}
.ye4{bottom:112.005000px;}
.y54{bottom:112.140000px;}
.y79{bottom:127.440000px;}
.y82{bottom:127.665000px;}
.yf7{bottom:129.285000px;}
.yea{bottom:130.185000px;}
.y53{bottom:130.320000px;}
.y78{bottom:145.260000px;}
.yf6{bottom:147.285000px;}
.ye9{bottom:148.185000px;}
.y89{bottom:148.320000px;}
.y52{bottom:148.350000px;}
.y77{bottom:162.900000px;}
.ye8{bottom:166.365000px;}
.y88{bottom:166.500000px;}
.y76{bottom:180.720000px;}
.ye7{bottom:184.545000px;}
.ye6{bottom:202.545000px;}
.y1{bottom:208.650000px;}
.ye5{bottom:220.725000px;}
.y64{bottom:227.550000px;}
.y33{bottom:230.070000px;}
.y85{bottom:232.050000px;}
.y62{bottom:232.230000px;}
.yab{bottom:233.670000px;}
.yd3{bottom:234.930000px;}
.y84{bottom:236.910000px;}
.yed{bottom:237.630000px;}
.y32{bottom:248.970000px;}
.y11c{bottom:251.130000px;}
.yaa{bottom:252.570000px;}
.yd2{bottom:254.190000px;}
.y31{bottom:267.870000px;}
.y11b{bottom:269.850000px;}
.ya9{bottom:271.650000px;}
.yd1{bottom:273.090000px;}
.ye3{bottom:280.110000px;}
.y30{bottom:286.950000px;}
.y11a{bottom:288.750000px;}
.y5f{bottom:289.830000px;}
.ya8{bottom:290.550000px;}
.yd0{bottom:292.170000px;}
.y81{bottom:293.430000px;}
.y2f{bottom:305.850000px;}
.y119{bottom:307.470000px;}
.ya7{bottom:309.630000px;}
.ycf{bottom:311.070000px;}
.y2e{bottom:324.930000px;}
.y118{bottom:326.370000px;}
.ya6{bottom:328.530000px;}
.yce{bottom:329.970000px;}
.y2d{bottom:343.830000px;}
.y117{bottom:345.090000px;}
.y5d{bottom:347.610000px;}
.ycd{bottom:349.050000px;}
.y2c{bottom:362.910000px;}
.y116{bottom:363.990000px;}
.ycc{bottom:366.330000px;}
.ya5{bottom:366.510000px;}
.ycb{bottom:378.390000px;}
.y2b{bottom:381.810000px;}
.y115{bottom:382.710000px;}
.ya4{bottom:385.410000px;}
.yca{bottom:397.335000px;}
.y2a{bottom:400.755000px;}
.y114{bottom:401.655000px;}
.ya3{bottom:404.535000px;}
.yc9{bottom:416.415000px;}
.y29{bottom:419.835000px;}
.y113{bottom:420.375000px;}
.y59{bottom:423.435000px;}
.yc8{bottom:435.315000px;}
.y28{bottom:438.735000px;}
.y112{bottom:439.275000px;}
.ya2{bottom:442.515000px;}
.yc7{bottom:454.215000px;}
.y27{bottom:457.815000px;}
.y111{bottom:457.995000px;}
.ya1{bottom:461.415000px;}
.y58{bottom:464.475000px;}
.y57{bottom:472.395000px;}
.yc6{bottom:473.295000px;}
.y26{bottom:476.715000px;}
.y110{bottom:476.895000px;}
.y56{bottom:489.675000px;}
.ya0{bottom:490.755000px;}
.yc5{bottom:492.195000px;}
.y25{bottom:495.615000px;}
.y4f{bottom:501.375000px;}
.y9f{bottom:509.655000px;}
.yc4{bottom:511.275000px;}
.y80{bottom:513.075000px;}
.y10f{bottom:514.515000px;}
.y24{bottom:514.695000px;}
.ye2{bottom:518.835000px;}
.y9e{bottom:528.735000px;}
.yc3{bottom:530.175000px;}
.y10e{bottom:533.235000px;}
.y23{bottom:533.595000px;}
.y7f{bottom:535.035000px;}
.y9d{bottom:547.635000px;}
.yc2{bottom:549.075000px;}
.y22{bottom:551.055000px;}
.y10d{bottom:552.135000px;}
.y7e{bottom:558.795000px;}
.y21{bottom:562.755000px;}
.y9c{bottom:566.715000px;}
.yc1{bottom:568.155000px;}
.y7d{bottom:570.495000px;}
.y10c{bottom:570.855000px;}
.y20{bottom:580.755000px;}
.y9b{bottom:585.615000px;}
.yc0{bottom:587.055000px;}
.y1f{bottom:598.935000px;}
.y9a{bottom:604.515000px;}
.y10b{bottom:605.955000px;}
.ybf{bottom:606.135000px;}
.ye0{bottom:612.795000px;}
.y105{bottom:613.515000px;}
.y1e{bottom:617.115000px;}
.y99{bottom:623.595000px;}
.y1d{bottom:635.115000px;}
.ybe{bottom:635.475000px;}
.y98{bottom:642.525000px;}
.y7c{bottom:646.665000px;}
.y1c{bottom:653.325000px;}
.ybd{bottom:654.405000px;}
.y74{bottom:658.365000px;}
.y97{bottom:661.605000px;}
.y4e{bottom:667.725000px;}
.y1b{bottom:671.325000px;}
.ydf{bottom:671.505000px;}
.ybc{bottom:673.305000px;}
.yde{bottom:679.245000px;}
.y96{bottom:680.505000px;}
.y1a{bottom:689.505000px;}
.ybb{bottom:692.385000px;}
.y95{bottom:699.405000px;}
.ydd{bottom:702.645000px;}
.y104{bottom:706.785000px;}
.y19{bottom:707.685000px;}
.yba{bottom:711.285000px;}
.y94{bottom:718.485000px;}
.ydc{bottom:721.725000px;}
.y46{bottom:725.505000px;}
.y18{bottom:725.685000px;}
.y130{bottom:728.565000px;}
.yb9{bottom:730.365000px;}
.y93{bottom:735.765000px;}
.ydb{bottom:740.625000px;}
.y17{bottom:743.865000px;}
.y12f{bottom:746.745000px;}
.y92{bottom:747.825000px;}
.yb8{bottom:749.265000px;}
.yda{bottom:759.705000px;}
.y16{bottom:761.865000px;}
.yfd{bottom:764.025000px;}
.y12e{bottom:764.925000px;}
.y91{bottom:766.725000px;}
.yb7{bottom:768.165000px;}
.yd9{bottom:778.605000px;}
.y15{bottom:780.045000px;}
.y12d{bottom:782.925000px;}
.y90{bottom:784.185000px;}
.yb6{bottom:787.245000px;}
.yd8{bottom:797.505000px;}
.y14{bottom:798.225000px;}
.y12c{bottom:801.105000px;}
.yb5{bottom:806.145000px;}
.y8f{bottom:813.345000px;}
.y13{bottom:816.225000px;}
.yd7{bottom:816.585000px;}
.y12b{bottom:819.105000px;}
.yb4{bottom:825.225000px;}
.y8e{bottom:825.405000px;}
.y12{bottom:834.405000px;}
.yd6{bottom:835.485000px;}
.y12a{bottom:837.285000px;}
.y43{bottom:843.225000px;}
.yb3{bottom:844.125000px;}
.y8d{bottom:844.305000px;}
.y11{bottom:852.585000px;}
.yd5{bottom:854.565000px;}
.y129{bottom:855.465000px;}
.y72{bottom:856.725000px;}
.yf5{bottom:857.085000px;}
.yb2{bottom:863.025000px;}
.y8c{bottom:863.385000px;}
.y10{bottom:870.585000px;}
.yd4{bottom:873.465000px;}
.y8b{bottom:882.285000px;}
.yf{bottom:888.765000px;}
.y128{bottom:891.645000px;}
.yb1{bottom:892.365000px;}
.y8a{bottom:899.790000px;}
.y3d{bottom:900.870000px;}
.ye{bottom:906.810000px;}
.y127{bottom:909.870000px;}
.y87{bottom:911.310000px;}
.yb0{bottom:911.490000px;}
.y71{bottom:913.290000px;}
.yd{bottom:924.990000px;}
.y126{bottom:927.870000px;}
.yaf{bottom:930.390000px;}
.y70{bottom:935.250000px;}
.yc{bottom:941.730000px;}
.y125{bottom:946.050000px;}
.yae{bottom:949.470000px;}
.yb{bottom:953.430000px;}
.y6f{bottom:957.390000px;}
.y124{bottom:964.050000px;}
.yad{bottom:968.370000px;}
.y67{bottom:969.090000px;}
.ya{bottom:971.610000px;}
.y123{bottom:982.230000px;}
.yac{bottom:987.270000px;}
.y3c{bottom:995.550000px;}
.y122{bottom:1000.410000px;}
.y3b{bottom:1001.670000px;}
.y9{bottom:1006.350000px;}
.y3a{bottom:1017.330000px;}
.y8{bottom:1018.410000px;}
.yf4{bottom:1022.190000px;}
.y39{bottom:1025.250000px;}
.y121{bottom:1036.590000px;}
.y7{bottom:1037.310000px;}
.yf3{bottom:1041.810000px;}
.y38{bottom:1044.330000px;}
.yf2{bottom:1049.550000px;}
.y120{bottom:1054.590000px;}
.y6{bottom:1054.770000px;}
.y37{bottom:1063.230000px;}
.yf1{bottom:1066.110000px;}
.y5{bottom:1066.650000px;}
.y11f{bottom:1072.770000px;}
.yf0{bottom:1077.810000px;}
.y36{bottom:1082.130000px;}
.y4{bottom:1085.190000px;}
.y86{bottom:1095.810000px;}
.y65{bottom:1096.530000px;}
.y35{bottom:1101.210000px;}
.y11e{bottom:1101.390000px;}
.y3{bottom:1102.650000px;}
.y34{bottom:1120.110000px;}
.y11d{bottom:1120.290000px;}
.y2{bottom:1120.830000px;}
.h29{height:5.653125px;}
.h1d{height:5.805000px;}
.h12{height:12.006914px;}
.h25{height:17.640000px;}
.h11{height:17.657227px;}
.h24{height:17.666016px;}
.h20{height:17.820000px;}
.h33{height:18.000000px;}
.h19{height:18.140625px;}
.ha{height:35.332031px;}
.h1e{height:35.460000px;}
.h2a{height:36.180000px;}
.h6{height:36.281250px;}
.h1a{height:36.720000px;}
.h31{height:39.060000px;}
.h1b{height:48.510000px;}
.h2{height:52.998047px;}
.h28{height:53.100000px;}
.h21{height:53.316000px;}
.h36{height:53.820000px;}
.h32{height:54.180000px;}
.h17{height:54.360000px;}
.h15{height:54.396000px;}
.h2b{height:56.275312px;}
.hc{height:56.646563px;}
.hb{height:56.801250px;}
.h4{height:58.651172px;}
.h7{height:58.833281px;}
.hd{height:59.383125px;}
.h8{height:62.153438px;}
.h9{height:62.184375px;}
.h14{height:63.855000px;}
.h2d{height:64.978594px;}
.he{height:65.010937px;}
.h3{height:65.124096px;}
.h5{height:66.757500px;}
.h2e{height:68.956875px;}
.h26{height:70.920000px;}
.h23{height:70.956000px;}
.h1c{height:72.576000px;}
.h35{height:89.820000px;}
.h37{height:89.856000px;}
.h2f{height:90.540000px;}
.h13{height:90.720000px;}
.h16{height:114.300000px;}
.h1f{height:124.200000px;}
.h27{height:141.876000px;}
.h34{height:161.670000px;}
.h18{height:163.110000px;}
.h2c{height:181.260000px;}
.h22{height:194.940000px;}
.h30{height:235.470000px;}
.h0{height:1097.674500px;}
.h1{height:1098.000000px;}
.h10{height:1263.000000px;}
.hf{height:1263.060000px;}
.w5{width:90.540000px;}
.w14{width:92.340000px;}
.w10{width:95.760000px;}
.wc{width:96.660000px;}
.w12{width:97.920000px;}
.wa{width:100.980000px;}
.w8{width:101.160000px;}
.w18{width:113.256000px;}
.w16{width:115.956000px;}
.w19{width:491.685000px;}
.w17{width:494.385000px;}
.w9{width:506.985000px;}
.wb{width:508.605000px;}
.w11{width:509.550000px;}
.wd{width:510.270000px;}
.w15{width:512.250000px;}
.w13{width:514.050000px;}
.w6{width:517.650000px;}
.wf{width:607.830000px;}
.we{width:610.350000px;}
.w7{width:611.610000px;}
.w0{width:880.968000px;}
.w1{width:881.250000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:1.620000px;}
.x13{left:2.880000px;}
.x24{left:4.500000px;}
.x3d{left:5.760000px;}
.x43{left:7.020000px;}
.x17{left:8.100000px;}
.x20{left:9.534000px;}
.x32{left:10.974000px;}
.x23{left:12.954000px;}
.x2d{left:14.394000px;}
.x2f{left:16.560000px;}
.x1a{left:17.994000px;}
.x34{left:19.434000px;}
.x31{left:20.694000px;}
.x4d{left:22.134000px;}
.x1b{left:23.445000px;}
.x3a{left:24.654000px;}
.x58{left:28.074000px;}
.x38{left:30.054000px;}
.x35{left:31.854000px;}
.x18{left:35.145000px;}
.x59{left:60.654000px;}
.x27{left:73.485000px;}
.x25{left:79.245000px;}
.x1c{left:80.325000px;}
.x57{left:83.154000px;}
.x26{left:86.625000px;}
.x14{left:87.654000px;}
.x3e{left:90.534000px;}
.x1e{left:94.185000px;}
.x54{left:95.940000px;}
.x3{left:135.097500px;}
.x4a{left:138.996000px;}
.x10{left:140.435987px;}
.x3c{left:141.516000px;}
.x42{left:142.776000px;}
.x2{left:145.711500px;}
.x5e{left:147.816000px;}
.x37{left:164.909987px;}
.xa{left:167.131500px;}
.x5c{left:172.289987px;}
.x4{left:173.431500px;}
.x16{left:177.375000px;}
.xb{left:186.391500px;}
.x9{left:188.191500px;}
.xd{left:193.951500px;}
.x15{left:234.750000px;}
.x49{left:236.595000px;}
.x4f{left:237.630000px;}
.x4b{left:240.150000px;}
.x3f{left:241.590000px;}
.x5{left:243.496500px;}
.x2e{left:245.415000px;}
.x5a{left:254.730000px;}
.x53{left:257.835000px;}
.x55{left:259.095000px;}
.x4c{left:288.075000px;}
.x3b{left:291.090000px;}
.x1f{left:305.355000px;}
.x46{left:324.435000px;}
.x56{left:334.695000px;}
.x48{left:338.880000px;}
.x28{left:357.420000px;}
.xe{left:372.736500px;}
.x2a{left:377.534987px;}
.x5d{left:381.134987px;}
.x29{left:388.334987px;}
.x21{left:402.369000px;}
.x22{left:417.669000px;}
.x45{left:422.400000px;}
.x30{left:425.595000px;}
.x1{left:431.086500px;}
.xf{left:436.424987px;}
.x51{left:438.944987px;}
.x6{left:441.346500px;}
.x2b{left:446.504987px;}
.x2c{left:450.464987px;}
.x7{left:457.006500px;}
.x5b{left:465.015000px;}
.x50{left:477.654000px;}
.x47{left:479.640000px;}
.x36{left:481.035000px;}
.x19{left:487.200000px;}
.x39{left:491.295000px;}
.x33{left:493.635000px;}
.x41{left:499.620000px;}
.x52{left:504.824987px;}
.x1d{left:506.280000px;}
.x40{left:548.214000px;}
.x8{left:583.051500px;}
.x12{left:705.209987px;}
.x4e{left:709.169987px;}
.xc{left:745.981500px;}
.x11{left:752.939987px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-57.600000pt;}
.v4{vertical-align:-42.880000pt;}
.v5{vertical-align:-28.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls55{letter-spacing:-37.396480pt;}
.ls57{letter-spacing:-33.792000pt;}
.ls4f{letter-spacing:-8.785920pt;}
.ls62{letter-spacing:-7.884800pt;}
.ls5a{letter-spacing:-6.983680pt;}
.ls50{letter-spacing:-6.758400pt;}
.ls64{letter-spacing:-6.307840pt;}
.ls5c{letter-spacing:-6.026240pt;}
.ls63{letter-spacing:-5.744640pt;}
.ls4a{letter-spacing:-5.593600pt;}
.ls51{letter-spacing:-5.125120pt;}
.ls54{letter-spacing:-5.068800pt;}
.lsa{letter-spacing:-4.330667pt;}
.ls49{letter-spacing:-4.062720pt;}
.ls4c{letter-spacing:-3.886080pt;}
.ls53{letter-spacing:-3.548160pt;}
.ls4d{letter-spacing:-3.473920pt;}
.ls52{letter-spacing:-3.153920pt;}
.ls48{letter-spacing:-2.880000pt;}
.ls4e{letter-spacing:-2.027520pt;}
.ls5b{letter-spacing:-1.802240pt;}
.ls56{letter-spacing:-1.576960pt;}
.ls67{letter-spacing:-1.070080pt;}
.ls65{letter-spacing:-0.844800pt;}
.ls66{letter-spacing:-0.506880pt;}
.ls1a{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls21{letter-spacing:-0.297067pt;}
.ls60{letter-spacing:-0.281600pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls3c{letter-spacing:-0.194667pt;}
.ls1f{letter-spacing:-0.178133pt;}
.ls58{letter-spacing:-0.168960pt;}
.ls1c{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.151467pt;}
.ls30{letter-spacing:-0.135467pt;}
.ls3b{letter-spacing:-0.118933pt;}
.ls28{letter-spacing:-0.117333pt;}
.ls26{letter-spacing:-0.101333pt;}
.ls20{letter-spacing:-0.046080pt;}
.ls8{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.024244pt;}
.lse{letter-spacing:0.029920pt;}
.ls27{letter-spacing:0.046080pt;}
.ls38{letter-spacing:0.097067pt;}
.ls3e{letter-spacing:0.097280pt;}
.ls44{letter-spacing:0.106667pt;}
.ls5f{letter-spacing:0.112640pt;}
.ls31{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.135680pt;}
.ls1b{letter-spacing:0.148267pt;}
.ls7{letter-spacing:0.153129pt;}
.ls25{letter-spacing:0.230714pt;}
.ls3f{letter-spacing:0.232960pt;}
.ls4b{letter-spacing:0.235520pt;}
.ls34{letter-spacing:0.271360pt;}
.lsc{letter-spacing:0.271467pt;}
.ls42{letter-spacing:0.296960pt;}
.ls2b{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.361067pt;}
.ls2a{letter-spacing:0.403733pt;}
.ls11{letter-spacing:0.450560pt;}
.ls3d{letter-spacing:0.456533pt;}
.ls6{letter-spacing:0.457066pt;}
.ls13{letter-spacing:0.461427pt;}
.ls17{letter-spacing:0.462400pt;}
.lsf{letter-spacing:0.486400pt;}
.ls18{letter-spacing:0.488439pt;}
.ls14{letter-spacing:0.490898pt;}
.ls39{letter-spacing:0.491733pt;}
.ls37{letter-spacing:0.505067pt;}
.ls12{letter-spacing:0.520368pt;}
.ls29{letter-spacing:0.521067pt;}
.ls16{letter-spacing:0.533793pt;}
.ls2f{letter-spacing:0.554667pt;}
.ls24{letter-spacing:0.594599pt;}
.ls43{letter-spacing:0.640000pt;}
.ls5e{letter-spacing:0.732160pt;}
.ls10{letter-spacing:0.773333pt;}
.ls5{letter-spacing:0.776303pt;}
.ls19{letter-spacing:0.852919pt;}
.ls1e{letter-spacing:0.853333pt;}
.ls59{letter-spacing:1.182720pt;}
.ls41{letter-spacing:1.280000pt;}
.ls61{letter-spacing:1.689600pt;}
.ls3{letter-spacing:1.920000pt;}
.ls47{letter-spacing:2.263040pt;}
.ls5d{letter-spacing:3.153920pt;}
.ls45{letter-spacing:3.946667pt;}
.ls40{letter-spacing:6.400000pt;}
.ls2c{letter-spacing:10.808198pt;}
.ls15{letter-spacing:11.520000pt;}
.ls35{letter-spacing:15.785837pt;}
.ls1{letter-spacing:18.263040pt;}
.ls3a{letter-spacing:22.240000pt;}
.ls46{letter-spacing:29.783040pt;}
.ls2{letter-spacing:334.400000pt;}
.ls2d{letter-spacing:564.938667pt;}
.ls33{letter-spacing:751.770027pt;}
.ls23{letter-spacing:835.018667pt;}
.ls32{letter-spacing:891.786667pt;}
.ls2e{letter-spacing:985.866667pt;}
.ls22{letter-spacing:2000.085333pt;}
.wsd{word-spacing:-56.320000pt;}
.ws2a{word-spacing:-17.233920pt;}
.ws9{word-spacing:-15.493333pt;}
.ws29{word-spacing:-15.262720pt;}
.ws8{word-spacing:-15.206400pt;}
.ws1e{word-spacing:-15.176533pt;}
.ws6{word-spacing:-14.991467pt;}
.ws19{word-spacing:-14.855467pt;}
.ws1a{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.585067pt;}
.ws18{word-spacing:-14.584533pt;}
.ws1d{word-spacing:-14.571733pt;}
.ws7{word-spacing:-14.568533pt;}
.ws10{word-spacing:-14.542400pt;}
.ws11{word-spacing:-14.541867pt;}
.ws16{word-spacing:-14.483733pt;}
.ws2{word-spacing:-14.448533pt;}
.wsf{word-spacing:-14.441067pt;}
.ws17{word-spacing:-14.377067pt;}
.ws5{word-spacing:-14.351467pt;}
.wsb{word-spacing:-14.313067pt;}
.wsc{word-spacing:-14.228267pt;}
.ws15{word-spacing:-14.126080pt;}
.ws1{word-spacing:-14.080000pt;}
.ws12{word-spacing:-14.033920pt;}
.ws14{word-spacing:-13.978667pt;}
.wse{word-spacing:-13.920000pt;}
.ws28{word-spacing:-13.911040pt;}
.ws1c{word-spacing:-13.885333pt;}
.ws2b{word-spacing:-13.798400pt;}
.ws13{word-spacing:-13.782933pt;}
.ws27{word-spacing:-12.503040pt;}
.ws0{word-spacing:-12.320000pt;}
.ws21{word-spacing:-12.052480pt;}
.ws24{word-spacing:-10.926080pt;}
.ws1f{word-spacing:-10.657280pt;}
.ws25{word-spacing:-10.531840pt;}
.ws3{word-spacing:-9.749333pt;}
.ws20{word-spacing:-9.126400pt;}
.ws22{word-spacing:-5.294080pt;}
.wsa{word-spacing:0.000000pt;}
.ws23{word-spacing:31.338667pt;}
.ws26{word-spacing:57.170432pt;}
._3{margin-left:-6.887680pt;}
._5{margin-left:-5.962240pt;}
._d{margin-left:-5.051307pt;}
._2{margin-left:-4.121600pt;}
._0{margin-left:-3.041280pt;}
._1{margin-left:-1.447680pt;}
._6{width:0.901120pt;}
._4{width:1.790720pt;}
._a{width:3.012267pt;}
._9{width:4.151040pt;}
._7{width:5.350400pt;}
._8{width:6.420480pt;}
._b{width:7.868160pt;}
._c{width:9.163520pt;}
._e{width:10.926080pt;}
._f{width:11.827200pt;}
._10{width:13.178880pt;}
._1a{width:15.047860pt;}
._14{width:16.220160pt;}
._15{width:17.177600pt;}
._1b{width:19.148800pt;}
._1c{width:20.192986pt;}
._13{width:21.298579pt;}
._11{width:22.237794pt;}
._12{width:23.176298pt;}
._1f{width:30.670080pt;}
._1e{width:37.099008pt;}
._1d{width:45.418667pt;}
._17{width:52.403200pt;}
._16{width:54.051840pt;}
._18{width:61.282133pt;}
._19{width:611.432960pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:10.880000pt;}
.fs5{font-size:16.000000pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:3.040000pt;}
.y5c{bottom:3.520000pt;}
.yef{bottom:5.600000pt;}
.y4d{bottom:8.000000pt;}
.y63{bottom:11.040000pt;}
.y61{bottom:11.200000pt;}
.y5a{bottom:11.360000pt;}
.y7b{bottom:18.720000pt;}
.y66{bottom:18.880000pt;}
.y45{bottom:19.040000pt;}
.y41{bottom:19.200000pt;}
.y5b{bottom:19.520000pt;}
.yee{bottom:21.600000pt;}
.y4c{bottom:24.160000pt;}
.y100{bottom:26.880000pt;}
.y107{bottom:27.066667pt;}
.y60{bottom:27.200000pt;}
.y6e{bottom:34.560000pt;}
.y73{bottom:34.600000pt;}
.y103{bottom:34.880000pt;}
.y10a{bottom:35.066667pt;}
.yfc{bottom:35.080000pt;}
.y44{bottom:35.200000pt;}
.ye1{bottom:35.226667pt;}
.y3e{bottom:35.360000pt;}
.y4b{bottom:40.320000pt;}
.y69{bottom:42.400000pt;}
.yff{bottom:42.880000pt;}
.y106{bottom:42.906667pt;}
.y47{bottom:45.760000pt;}
.y7a{bottom:50.240000pt;}
.y6d{bottom:50.400000pt;}
.y102{bottom:50.880000pt;}
.y109{bottom:50.906667pt;}
.yfb{bottom:51.080000pt;}
.yec{bottom:51.200000pt;}
.y40{bottom:51.360000pt;}
.y5e{bottom:51.400000pt;}
.y4a{bottom:56.320000pt;}
.y68{bottom:58.240000pt;}
.yfe{bottom:58.880000pt;}
.y51{bottom:59.360000pt;}
.y6c{bottom:66.080000pt;}
.y101{bottom:66.880000pt;}
.y108{bottom:66.906667pt;}
.yfa{bottom:67.080000pt;}
.yeb{bottom:67.360000pt;}
.y3f{bottom:67.520000pt;}
.y49{bottom:72.480000pt;}
.y50{bottom:75.520000pt;}
.y75{bottom:81.760000pt;}
.y6b{bottom:81.920000pt;}
.yf9{bottom:82.920000pt;}
.y55{bottom:83.520000pt;}
.y48{bottom:88.480000pt;}
.y6a{bottom:97.600000pt;}
.y83{bottom:97.640000pt;}
.yf8{bottom:98.920000pt;}
.ye4{bottom:99.560000pt;}
.y54{bottom:99.680000pt;}
.y79{bottom:113.280000pt;}
.y82{bottom:113.480000pt;}
.yf7{bottom:114.920000pt;}
.yea{bottom:115.720000pt;}
.y53{bottom:115.840000pt;}
.y78{bottom:129.120000pt;}
.yf6{bottom:130.920000pt;}
.ye9{bottom:131.720000pt;}
.y89{bottom:131.840000pt;}
.y52{bottom:131.866667pt;}
.y77{bottom:144.800000pt;}
.ye8{bottom:147.880000pt;}
.y88{bottom:148.000000pt;}
.y76{bottom:160.640000pt;}
.ye7{bottom:164.040000pt;}
.ye6{bottom:180.040000pt;}
.y1{bottom:185.466667pt;}
.ye5{bottom:196.200000pt;}
.y64{bottom:202.266667pt;}
.y33{bottom:204.506667pt;}
.y85{bottom:206.266667pt;}
.y62{bottom:206.426667pt;}
.yab{bottom:207.706667pt;}
.yd3{bottom:208.826667pt;}
.y84{bottom:210.586667pt;}
.yed{bottom:211.226667pt;}
.y32{bottom:221.306667pt;}
.y11c{bottom:223.226667pt;}
.yaa{bottom:224.506667pt;}
.yd2{bottom:225.946667pt;}
.y31{bottom:238.106667pt;}
.y11b{bottom:239.866667pt;}
.ya9{bottom:241.466667pt;}
.yd1{bottom:242.746667pt;}
.ye3{bottom:248.986667pt;}
.y30{bottom:255.066667pt;}
.y11a{bottom:256.666667pt;}
.y5f{bottom:257.626667pt;}
.ya8{bottom:258.266667pt;}
.yd0{bottom:259.706667pt;}
.y81{bottom:260.826667pt;}
.y2f{bottom:271.866667pt;}
.y119{bottom:273.306667pt;}
.ya7{bottom:275.226667pt;}
.ycf{bottom:276.506667pt;}
.y2e{bottom:288.826667pt;}
.y118{bottom:290.106667pt;}
.ya6{bottom:292.026667pt;}
.yce{bottom:293.306667pt;}
.y2d{bottom:305.626667pt;}
.y117{bottom:306.746667pt;}
.y5d{bottom:308.986667pt;}
.ycd{bottom:310.266667pt;}
.y2c{bottom:322.586667pt;}
.y116{bottom:323.546667pt;}
.ycc{bottom:325.626667pt;}
.ya5{bottom:325.786667pt;}
.ycb{bottom:336.346667pt;}
.y2b{bottom:339.386667pt;}
.y115{bottom:340.186667pt;}
.ya4{bottom:342.586667pt;}
.yca{bottom:353.186667pt;}
.y2a{bottom:356.226667pt;}
.y114{bottom:357.026667pt;}
.ya3{bottom:359.586667pt;}
.yc9{bottom:370.146667pt;}
.y29{bottom:373.186667pt;}
.y113{bottom:373.666667pt;}
.y59{bottom:376.386667pt;}
.yc8{bottom:386.946667pt;}
.y28{bottom:389.986667pt;}
.y112{bottom:390.466667pt;}
.ya2{bottom:393.346667pt;}
.yc7{bottom:403.746667pt;}
.y27{bottom:406.946667pt;}
.y111{bottom:407.106667pt;}
.ya1{bottom:410.146667pt;}
.y58{bottom:412.866667pt;}
.y57{bottom:419.906667pt;}
.yc6{bottom:420.706667pt;}
.y26{bottom:423.746667pt;}
.y110{bottom:423.906667pt;}
.y56{bottom:435.266667pt;}
.ya0{bottom:436.226667pt;}
.yc5{bottom:437.506667pt;}
.y25{bottom:440.546667pt;}
.y4f{bottom:445.666667pt;}
.y9f{bottom:453.026667pt;}
.yc4{bottom:454.466667pt;}
.y80{bottom:456.066667pt;}
.y10f{bottom:457.346667pt;}
.y24{bottom:457.506667pt;}
.ye2{bottom:461.186667pt;}
.y9e{bottom:469.986667pt;}
.yc3{bottom:471.266667pt;}
.y10e{bottom:473.986667pt;}
.y23{bottom:474.306667pt;}
.y7f{bottom:475.586667pt;}
.y9d{bottom:486.786667pt;}
.yc2{bottom:488.066667pt;}
.y22{bottom:489.826667pt;}
.y10d{bottom:490.786667pt;}
.y7e{bottom:496.706667pt;}
.y21{bottom:500.226667pt;}
.y9c{bottom:503.746667pt;}
.yc1{bottom:505.026667pt;}
.y7d{bottom:507.106667pt;}
.y10c{bottom:507.426667pt;}
.y20{bottom:516.226667pt;}
.y9b{bottom:520.546667pt;}
.yc0{bottom:521.826667pt;}
.y1f{bottom:532.386667pt;}
.y9a{bottom:537.346667pt;}
.y10b{bottom:538.626667pt;}
.ybf{bottom:538.786667pt;}
.ye0{bottom:544.706667pt;}
.y105{bottom:545.346667pt;}
.y1e{bottom:548.546667pt;}
.y99{bottom:554.306667pt;}
.y1d{bottom:564.546667pt;}
.ybe{bottom:564.866667pt;}
.y98{bottom:571.133333pt;}
.y7c{bottom:574.813333pt;}
.y1c{bottom:580.733333pt;}
.ybd{bottom:581.693333pt;}
.y74{bottom:585.213333pt;}
.y97{bottom:588.093333pt;}
.y4e{bottom:593.533333pt;}
.y1b{bottom:596.733333pt;}
.ydf{bottom:596.893333pt;}
.ybc{bottom:598.493333pt;}
.yde{bottom:603.773333pt;}
.y96{bottom:604.893333pt;}
.y1a{bottom:612.893333pt;}
.ybb{bottom:615.453333pt;}
.y95{bottom:621.693333pt;}
.ydd{bottom:624.573333pt;}
.y104{bottom:628.253333pt;}
.y19{bottom:629.053333pt;}
.yba{bottom:632.253333pt;}
.y94{bottom:638.653333pt;}
.ydc{bottom:641.533333pt;}
.y46{bottom:644.893333pt;}
.y18{bottom:645.053333pt;}
.y130{bottom:647.613333pt;}
.yb9{bottom:649.213333pt;}
.y93{bottom:654.013333pt;}
.ydb{bottom:658.333333pt;}
.y17{bottom:661.213333pt;}
.y12f{bottom:663.773333pt;}
.y92{bottom:664.733333pt;}
.yb8{bottom:666.013333pt;}
.yda{bottom:675.293333pt;}
.y16{bottom:677.213333pt;}
.yfd{bottom:679.133333pt;}
.y12e{bottom:679.933333pt;}
.y91{bottom:681.533333pt;}
.yb7{bottom:682.813333pt;}
.yd9{bottom:692.093333pt;}
.y15{bottom:693.373333pt;}
.y12d{bottom:695.933333pt;}
.y90{bottom:697.053333pt;}
.yb6{bottom:699.773333pt;}
.yd8{bottom:708.893333pt;}
.y14{bottom:709.533333pt;}
.y12c{bottom:712.093333pt;}
.yb5{bottom:716.573333pt;}
.y8f{bottom:722.973333pt;}
.y13{bottom:725.533333pt;}
.yd7{bottom:725.853333pt;}
.y12b{bottom:728.093333pt;}
.yb4{bottom:733.533333pt;}
.y8e{bottom:733.693333pt;}
.y12{bottom:741.693333pt;}
.yd6{bottom:742.653333pt;}
.y12a{bottom:744.253333pt;}
.y43{bottom:749.533333pt;}
.yb3{bottom:750.333333pt;}
.y8d{bottom:750.493333pt;}
.y11{bottom:757.853333pt;}
.yd5{bottom:759.613333pt;}
.y129{bottom:760.413333pt;}
.y72{bottom:761.533333pt;}
.yf5{bottom:761.853333pt;}
.yb2{bottom:767.133333pt;}
.y8c{bottom:767.453333pt;}
.y10{bottom:773.853333pt;}
.yd4{bottom:776.413333pt;}
.y8b{bottom:784.253333pt;}
.yf{bottom:790.013333pt;}
.y128{bottom:792.573333pt;}
.yb1{bottom:793.213333pt;}
.y8a{bottom:799.813333pt;}
.y3d{bottom:800.773333pt;}
.ye{bottom:806.053333pt;}
.y127{bottom:808.773333pt;}
.y87{bottom:810.053333pt;}
.yb0{bottom:810.213333pt;}
.y71{bottom:811.813333pt;}
.yd{bottom:822.213333pt;}
.y126{bottom:824.773333pt;}
.yaf{bottom:827.013333pt;}
.y70{bottom:831.333333pt;}
.yc{bottom:837.093333pt;}
.y125{bottom:840.933333pt;}
.yae{bottom:843.973333pt;}
.yb{bottom:847.493333pt;}
.y6f{bottom:851.013333pt;}
.y124{bottom:856.933333pt;}
.yad{bottom:860.773333pt;}
.y67{bottom:861.413333pt;}
.ya{bottom:863.653333pt;}
.y123{bottom:873.093333pt;}
.yac{bottom:877.573333pt;}
.y3c{bottom:884.933333pt;}
.y122{bottom:889.253333pt;}
.y3b{bottom:890.373333pt;}
.y9{bottom:894.533333pt;}
.y3a{bottom:904.293333pt;}
.y8{bottom:905.253333pt;}
.yf4{bottom:908.613333pt;}
.y39{bottom:911.333333pt;}
.y121{bottom:921.413333pt;}
.y7{bottom:922.053333pt;}
.yf3{bottom:926.053333pt;}
.y38{bottom:928.293333pt;}
.yf2{bottom:932.933333pt;}
.y120{bottom:937.413333pt;}
.y6{bottom:937.573333pt;}
.y37{bottom:945.093333pt;}
.yf1{bottom:947.653333pt;}
.y5{bottom:948.133333pt;}
.y11f{bottom:953.573333pt;}
.yf0{bottom:958.053333pt;}
.y36{bottom:961.893333pt;}
.y4{bottom:964.613333pt;}
.y86{bottom:974.053333pt;}
.y65{bottom:974.693333pt;}
.y35{bottom:978.853333pt;}
.y11e{bottom:979.013333pt;}
.y3{bottom:980.133333pt;}
.y34{bottom:995.653333pt;}
.y11d{bottom:995.813333pt;}
.y2{bottom:996.293333pt;}
.h29{height:5.025000pt;}
.h1d{height:5.160000pt;}
.h12{height:10.672812pt;}
.h25{height:15.680000pt;}
.h11{height:15.695312pt;}
.h24{height:15.703125pt;}
.h20{height:15.840000pt;}
.h33{height:16.000000pt;}
.h19{height:16.125000pt;}
.ha{height:31.406250pt;}
.h1e{height:31.520000pt;}
.h2a{height:32.160000pt;}
.h6{height:32.250000pt;}
.h1a{height:32.640000pt;}
.h31{height:34.720000pt;}
.h1b{height:43.120000pt;}
.h2{height:47.109375pt;}
.h28{height:47.200000pt;}
.h21{height:47.392000pt;}
.h36{height:47.840000pt;}
.h32{height:48.160000pt;}
.h17{height:48.320000pt;}
.h15{height:48.352000pt;}
.h2b{height:50.022500pt;}
.hc{height:50.352500pt;}
.hb{height:50.490000pt;}
.h4{height:52.134375pt;}
.h7{height:52.296250pt;}
.hd{height:52.785000pt;}
.h8{height:55.247500pt;}
.h9{height:55.275000pt;}
.h14{height:56.760000pt;}
.h2d{height:57.758750pt;}
.he{height:57.787500pt;}
.h3{height:57.888085pt;}
.h5{height:59.340000pt;}
.h2e{height:61.295000pt;}
.h26{height:63.040000pt;}
.h23{height:63.072000pt;}
.h1c{height:64.512000pt;}
.h35{height:79.840000pt;}
.h37{height:79.872000pt;}
.h2f{height:80.480000pt;}
.h13{height:80.640000pt;}
.h16{height:101.600000pt;}
.h1f{height:110.400000pt;}
.h27{height:126.112000pt;}
.h34{height:143.706667pt;}
.h18{height:144.986667pt;}
.h2c{height:161.120000pt;}
.h22{height:173.280000pt;}
.h30{height:209.306667pt;}
.h0{height:975.710667pt;}
.h1{height:976.000000pt;}
.h10{height:1122.666667pt;}
.hf{height:1122.720000pt;}
.w5{width:80.480000pt;}
.w14{width:82.080000pt;}
.w10{width:85.120000pt;}
.wc{width:85.920000pt;}
.w12{width:87.040000pt;}
.wa{width:89.760000pt;}
.w8{width:89.920000pt;}
.w18{width:100.672000pt;}
.w16{width:103.072000pt;}
.w19{width:437.053333pt;}
.w17{width:439.453333pt;}
.w9{width:450.653333pt;}
.wb{width:452.093333pt;}
.w11{width:452.933333pt;}
.wd{width:453.573333pt;}
.w15{width:455.333333pt;}
.w13{width:456.933333pt;}
.w6{width:460.133333pt;}
.wf{width:540.293333pt;}
.we{width:542.533333pt;}
.w7{width:543.653333pt;}
.w0{width:783.082667pt;}
.w1{width:783.333333pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:1.440000pt;}
.x13{left:2.560000pt;}
.x24{left:4.000000pt;}
.x3d{left:5.120000pt;}
.x43{left:6.240000pt;}
.x17{left:7.200000pt;}
.x20{left:8.474667pt;}
.x32{left:9.754667pt;}
.x23{left:11.514667pt;}
.x2d{left:12.794667pt;}
.x2f{left:14.720000pt;}
.x1a{left:15.994667pt;}
.x34{left:17.274667pt;}
.x31{left:18.394667pt;}
.x4d{left:19.674667pt;}
.x1b{left:20.840000pt;}
.x3a{left:21.914667pt;}
.x58{left:24.954667pt;}
.x38{left:26.714667pt;}
.x35{left:28.314667pt;}
.x18{left:31.240000pt;}
.x59{left:53.914667pt;}
.x27{left:65.320000pt;}
.x25{left:70.440000pt;}
.x1c{left:71.400000pt;}
.x57{left:73.914667pt;}
.x26{left:77.000000pt;}
.x14{left:77.914667pt;}
.x3e{left:80.474667pt;}
.x1e{left:83.720000pt;}
.x54{left:85.280000pt;}
.x3{left:120.086667pt;}
.x4a{left:123.552000pt;}
.x10{left:124.831988pt;}
.x3c{left:125.792000pt;}
.x42{left:126.912000pt;}
.x2{left:129.521333pt;}
.x5e{left:131.392000pt;}
.x37{left:146.586655pt;}
.xa{left:148.561333pt;}
.x5c{left:153.146655pt;}
.x4{left:154.161333pt;}
.x16{left:157.666667pt;}
.xb{left:165.681333pt;}
.x9{left:167.281333pt;}
.xd{left:172.401333pt;}
.x15{left:208.666667pt;}
.x49{left:210.306667pt;}
.x4f{left:211.226667pt;}
.x4b{left:213.466667pt;}
.x3f{left:214.746667pt;}
.x5{left:216.441333pt;}
.x2e{left:218.146667pt;}
.x5a{left:226.426667pt;}
.x53{left:229.186667pt;}
.x55{left:230.306667pt;}
.x4c{left:256.066667pt;}
.x3b{left:258.746667pt;}
.x1f{left:271.426667pt;}
.x46{left:288.386667pt;}
.x56{left:297.506667pt;}
.x48{left:301.226667pt;}
.x28{left:317.706667pt;}
.xe{left:331.321333pt;}
.x2a{left:335.586655pt;}
.x5d{left:338.786655pt;}
.x29{left:345.186655pt;}
.x21{left:357.661333pt;}
.x22{left:371.261333pt;}
.x45{left:375.466667pt;}
.x30{left:378.306667pt;}
.x1{left:383.188000pt;}
.xf{left:387.933322pt;}
.x51{left:390.173322pt;}
.x6{left:392.308000pt;}
.x2b{left:396.893322pt;}
.x2c{left:400.413322pt;}
.x7{left:406.228000pt;}
.x5b{left:413.346667pt;}
.x50{left:424.581333pt;}
.x47{left:426.346667pt;}
.x36{left:427.586667pt;}
.x19{left:433.066667pt;}
.x39{left:436.706667pt;}
.x33{left:438.786667pt;}
.x41{left:444.106667pt;}
.x52{left:448.733322pt;}
.x1d{left:450.026667pt;}
.x40{left:487.301333pt;}
.x8{left:518.268000pt;}
.x12{left:626.853322pt;}
.x4e{left:630.373322pt;}
.xc{left:663.094667pt;}
.x11{left:669.279988pt;}
}




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