
    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_09db213bcb3bb51ca037ce8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_a8225f511862a3286ed5da81.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012695;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_6365726e840d53922c11c5d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908691;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_05771f6b13c3d990b7ea6cfb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_660574f1a115607abe1d279a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.689453;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_0a1015ef369a73160229f7c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_278836d4874f9da8aed52655.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_755c14ddb24f73b5916d29d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.346191;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.489600px;}
.lsa{letter-spacing:-0.480000px;}
.ls23{letter-spacing:-0.290883px;}
.ls22{letter-spacing:-0.127989px;}
.ls2a{letter-spacing:-0.081447px;}
.lsc{letter-spacing:-0.067200px;}
.ls2c{letter-spacing:-0.058177px;}
.ls7{letter-spacing:-0.054366px;}
.ls1d{letter-spacing:-0.046541px;}
.ls21{letter-spacing:-0.034906px;}
.ls6{letter-spacing:-0.031066px;}
.ls1a{letter-spacing:-0.029088px;}
.ls3{letter-spacing:-0.023271px;}
.ls1e{letter-spacing:-0.017453px;}
.ls24{letter-spacing:-0.011635px;}
.ls18{letter-spacing:-0.005818px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.004800px;}
.lse{letter-spacing:0.005818px;}
.ls2{letter-spacing:0.011635px;}
.lsd{letter-spacing:0.017453px;}
.ls13{letter-spacing:0.023271px;}
.ls10{letter-spacing:0.029088px;}
.lsf{letter-spacing:0.034906px;}
.ls5{letter-spacing:0.038745px;}
.ls11{letter-spacing:0.040724px;}
.ls16{letter-spacing:0.046541px;}
.ls4{letter-spacing:0.048432px;}
.ls14{letter-spacing:0.052359px;}
.ls1b{letter-spacing:0.058177px;}
.ls17{letter-spacing:0.060998px;}
.ls12{letter-spacing:0.063994px;}
.ls15{letter-spacing:0.069812px;}
.ls20{letter-spacing:0.075630px;}
.ls19{letter-spacing:0.081447px;}
.ls0{letter-spacing:0.087177px;}
.ls2e{letter-spacing:0.087265px;}
.ls33{letter-spacing:0.093083px;}
.ls2d{letter-spacing:0.098900px;}
.ls2f{letter-spacing:0.110536px;}
.ls27{letter-spacing:0.116353px;}
.ls35{letter-spacing:1.745298px;}
.ls1c{letter-spacing:2.594676px;}
.ls32{letter-spacing:2.908830px;}
.ls25{letter-spacing:4.945011px;}
.ls30{letter-spacing:6.399426px;}
.ls2b{letter-spacing:8.726490px;}
.ls26{letter-spacing:9.308256px;}
.ls29{letter-spacing:13.962384px;}
.ls31{letter-spacing:18.907395px;}
.ls28{letter-spacing:25.888587px;}
.ls1f{letter-spacing:36.651258px;}
.ls34{letter-spacing:39.269205px;}
.ls8{letter-spacing:681.169880px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-96.950577px;}
.ws27{word-spacing:-94.827858px;}
.ws49{word-spacing:-84.065187px;}
.ws2{word-spacing:-77.634134px;}
.ws46{word-spacing:-72.138984px;}
.wsb2{word-spacing:-72.080807px;}
.ws5b{word-spacing:-67.775400px;}
.ws37{word-spacing:-67.484856px;}
.ws52{word-spacing:-66.903090px;}
.ws31{word-spacing:-63.121611px;}
.ws22{word-spacing:-60.771276px;}
.ws2e{word-spacing:-58.252230px;}
.ws1c{word-spacing:-58.246412px;}
.ws44{word-spacing:-58.240594px;}
.ws35{word-spacing:-58.234777px;}
.ws34{word-spacing:-58.228959px;}
.ws1f{word-spacing:-58.223141px;}
.ws16{word-spacing:-58.217324px;}
.ws40{word-spacing:-58.211506px;}
.ws1d{word-spacing:-58.205688px;}
.ws18{word-spacing:-58.199871px;}
.ws20{word-spacing:-58.194053px;}
.ws10{word-spacing:-58.188235px;}
.ws12{word-spacing:-58.182418px;}
.ws21{word-spacing:-58.176600px;}
.ws1e{word-spacing:-58.170782px;}
.ws5a{word-spacing:-58.164965px;}
.ws2b{word-spacing:-58.147512px;}
.ws23{word-spacing:-58.130059px;}
.ws2d{word-spacing:-58.048611px;}
.ws93{word-spacing:-51.718997px;}
.ws2f{word-spacing:-48.082960px;}
.ws30{word-spacing:-48.018966px;}
.ws7{word-spacing:-48.004800px;}
.ws6{word-spacing:-48.000000px;}
.ws8{word-spacing:-47.932800px;}
.ws56{word-spacing:-45.796620px;}
.ws55{word-spacing:-45.691902px;}
.ws54{word-spacing:-44.807617px;}
.ws53{word-spacing:-44.499281px;}
.ws41{word-spacing:-44.307299px;}
.ws45{word-spacing:-44.220034px;}
.ws33{word-spacing:-43.923333px;}
.ws29{word-spacing:-41.305386px;}
.ws2a{word-spacing:-41.212303px;}
.ws42{word-spacing:-40.456008px;}
.ws3f{word-spacing:-39.501911px;}
.ws91{word-spacing:-39.211028px;}
.ws3e{word-spacing:-38.989957px;}
.ws59{word-spacing:-37.233024px;}
.ws58{word-spacing:-37.209753px;}
.ws96{word-spacing:-35.720432px;}
.wsb7{word-spacing:-34.556900px;}
.ws8b{word-spacing:-32.927956px;}
.ws9a{word-spacing:-32.922138px;}
.ws63{word-spacing:-32.910503px;}
.ws7d{word-spacing:-32.898867px;}
.ws97{word-spacing:-32.893050px;}
.ws90{word-spacing:-32.887232px;}
.ws9b{word-spacing:-32.881414px;}
.ws17{word-spacing:-32.875597px;}
.ws9c{word-spacing:-32.869779px;}
.ws19{word-spacing:-32.863961px;}
.ws28{word-spacing:-32.858144px;}
.ws66{word-spacing:-32.852326px;}
.ws32{word-spacing:-32.846508px;}
.ws57{word-spacing:-32.840691px;}
.ws1a{word-spacing:-32.834873px;}
.ws11{word-spacing:-32.829055px;}
.ws38{word-spacing:-32.823238px;}
.ws1b{word-spacing:-32.817420px;}
.ws5e{word-spacing:-32.811602px;}
.ws36{word-spacing:-32.805785px;}
.ws7a{word-spacing:-32.799967px;}
.ws6d{word-spacing:-32.794149px;}
.ws6e{word-spacing:-32.782514px;}
.ws7e{word-spacing:-32.765061px;}
.wsa1{word-spacing:-32.753426px;}
.ws4b{word-spacing:-32.695249px;}
.ws47{word-spacing:-32.293831px;}
.ws13{word-spacing:-31.217564px;}
.ws15{word-spacing:-31.136116px;}
.ws2c{word-spacing:-25.894405px;}
.ws89{word-spacing:-23.311364px;}
.ws71{word-spacing:-23.014663px;}
.ws84{word-spacing:-22.863404px;}
.wsb4{word-spacing:-22.845951px;}
.wsa7{word-spacing:-22.747051px;}
.wsa6{word-spacing:-22.741233px;}
.ws83{word-spacing:-22.653968px;}
.wsb3{word-spacing:-22.648150px;}
.ws6c{word-spacing:-22.461985px;}
.wsa8{word-spacing:-22.444532px;}
.wsa9{word-spacing:-22.438715px;}
.ws6b{word-spacing:-22.153649px;}
.ws8c{word-spacing:-21.862766px;}
.ws60{word-spacing:-21.851131px;}
.ws5f{word-spacing:-21.775501px;}
.ws70{word-spacing:-21.554430px;}
.ws6f{word-spacing:-21.478801px;}
.ws26{word-spacing:-21.327542px;}
.wsa2{word-spacing:-20.978482px;}
.wsae{word-spacing:-20.897035px;}
.wsa3{word-spacing:-20.867946px;}
.ws80{word-spacing:-19.838221px;}
.ws85{word-spacing:-19.832403px;}
.ws98{word-spacing:-19.826585px;}
.ws7f{word-spacing:-19.820768px;}
.ws86{word-spacing:-19.727685px;}
.ws99{word-spacing:-19.721867px;}
.ws74{word-spacing:-19.564791px;}
.ws88{word-spacing:-19.529885px;}
.ws87{word-spacing:-19.518249px;}
.ws75{word-spacing:-19.419349px;}
.ws8d{word-spacing:-19.157554px;}
.ws77{word-spacing:-18.965572px;}
.ws76{word-spacing:-18.872489px;}
.ws81{word-spacing:-18.866671px;}
.ws9e{word-spacing:-18.767771px;}
.ws82{word-spacing:-18.756136px;}
.ws9d{word-spacing:-18.645600px;}
.ws62{word-spacing:-18.377988px;}
.ws61{word-spacing:-18.279088px;}
.wsac{word-spacing:-17.807857px;}
.wsad{word-spacing:-17.674051px;}
.ws78{word-spacing:-17.202821px;}
.ws79{word-spacing:-17.086467px;}
.wsb0{word-spacing:-16.615237px;}
.wsaf{word-spacing:-16.609419px;}
.ws7b{word-spacing:-16.248724px;}
.ws7c{word-spacing:-16.202183px;}
.ws8f{word-spacing:-16.068377px;}
.ws8e{word-spacing:-15.957841px;}
.ws95{word-spacing:-15.783312px;}
.ws94{word-spacing:-15.742588px;}
.ws43{word-spacing:-14.608144px;}
.ws4a{word-spacing:-14.602327px;}
.ws4c{word-spacing:-14.584874px;}
.ws14{word-spacing:-14.573238px;}
.ws48{word-spacing:-14.555785px;}
.ws65{word-spacing:-14.497609px;}
.ws64{word-spacing:-14.282355px;}
.ws92{word-spacing:-14.026378px;}
.wsb6{word-spacing:-13.991472px;}
.wsa5{word-spacing:-13.718042px;}
.wsb5{word-spacing:-13.636595px;}
.wsa4{word-spacing:-13.322441px;}
.ws5d{word-spacing:-12.571963px;}
.ws5c{word-spacing:-12.182180px;}
.wsb8{word-spacing:-10.809212px;}
.wsb9{word-spacing:-10.687041px;}
.ws9f{word-spacing:-9.075550px;}
.wsa0{word-spacing:-9.046461px;}
.ws68{word-spacing:-4.275980px;}
.ws67{word-spacing:-4.031638px;}
.ws73{word-spacing:-3.444055px;}
.ws72{word-spacing:-3.432419px;}
.wsaa{word-spacing:-2.658671px;}
.wsab{word-spacing:-2.583041px;}
.wse{word-spacing:-1.780800px;}
.wsd{word-spacing:-1.569600px;}
.wsf{word-spacing:-1.176000px;}
.ws3c{word-spacing:-0.040724px;}
.ws4d{word-spacing:-0.029088px;}
.ws51{word-spacing:-0.023271px;}
.ws3a{word-spacing:-0.017453px;}
.ws25{word-spacing:-0.011635px;}
.ws24{word-spacing:-0.005818px;}
.ws1{word-spacing:0.000000px;}
.ws4e{word-spacing:0.011635px;}
.ws9{word-spacing:0.019200px;}
.ws3{word-spacing:0.432000px;}
.ws69{word-spacing:0.843561px;}
.ws6a{word-spacing:0.930826px;}
.ws3d{word-spacing:1.000638px;}
.ws3b{word-spacing:2.309611px;}
.wsa{word-spacing:2.736000px;}
.wsb{word-spacing:3.129600px;}
.wsc{word-spacing:4.627200px;}
.ws4{word-spacing:5.563200px;}
.ws39{word-spacing:6.085272px;}
.wsb1{word-spacing:6.341249px;}
.ws4f{word-spacing:13.049011px;}
.ws50{word-spacing:16.877032px;}
.ws8a{word-spacing:22.345632px;}
.ws5{word-spacing:42.043200px;}
._1a{margin-left:-39.984622px;}
._1b{margin-left:-38.844671px;}
._8{margin-left:-37.337742px;}
._11{margin-left:-26.348182px;}
._16{margin-left:-19.541210px;}
._17{margin-left:-18.099050px;}
._f{margin-left:-14.677956px;}
._10{margin-left:-13.072282px;}
._e{margin-left:-9.948198px;}
._d{margin-left:-8.551960px;}
._0{margin-left:-7.056000px;}
._4{margin-left:-5.664000px;}
._3{margin-left:-4.176000px;}
._5{margin-left:-3.120000px;}
._2{margin-left:-1.728000px;}
._1{width:1.392000px;}
._7{width:2.751753px;}
._6{width:3.781479px;}
._a{width:5.235894px;}
._9{width:6.923015px;}
._b{width:8.726490px;}
._c{width:10.239081px;}
._14{width:12.130131px;}
._19{width:13.886909px;}
._15{width:15.306263px;}
._18{width:18.209276px;}
._12{width:27.633885px;}
._13{width:32.549808px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:48.000000px;}
.fs6{font-size:58.176600px;}
.fs0{font-size:67.775400px;}
.fs4{font-size:77.665200px;}
.fs2{font-size:87.264600px;}
.fs3{font-size:96.863400px;}
.fs1{font-size:116.352600px;}
.y0{bottom:0.000000px;}
.y12a{bottom:2.590500px;}
.y129{bottom:40.800110px;}
.y83{bottom:91.975420px;}
.y28{bottom:92.255345px;}
.y128{bottom:92.484219px;}
.yb5{bottom:100.337468px;}
.y44{bottom:107.902050px;}
.y82{bottom:108.555751px;}
.y127{bottom:109.209992px;}
.y27{bottom:111.825491px;}
.yb4{bottom:117.063241px;}
.ye6{bottom:117.063332px;}
.y15a{bottom:120.626513px;}
.y81{bottom:125.426965px;}
.y126{bottom:125.935764px;}
.y26{bottom:131.310919px;}
.yb3{bottom:133.643572px;}
.ye5{bottom:133.789105px;}
.y159{bottom:137.352286px;}
.y80{bottom:142.152737px;}
.y125{bottom:142.661537px;}
.yb2{bottom:150.369344px;}
.ye4{bottom:150.514877px;}
.y25{bottom:150.796346px;}
.y158{bottom:154.078058px;}
.y7f{bottom:158.733068px;}
.y124{bottom:159.387309px;}
.ye3{bottom:167.095208px;}
.yb1{bottom:167.240558px;}
.y24{bottom:170.366493px;}
.y157{bottom:170.803831px;}
.y7e{bottom:175.604282px;}
.y123{bottom:176.113082px;}
.y43{bottom:182.058266px;}
.yb0{bottom:183.966331px;}
.ye2{bottom:183.966422px;}
.y156{bottom:187.529603px;}
.y23{bottom:189.851921px;}
.y7d{bottom:192.330055px;}
.y122{bottom:192.838854px;}
.yaf{bottom:200.692103px;}
.ye1{bottom:200.692195px;}
.y155{bottom:204.255376px;}
.y42{bottom:204.387011px;}
.y7c{bottom:208.910386px;}
.y22{bottom:209.337348px;}
.y121{bottom:209.564627px;}
.yae{bottom:217.272434px;}
.ye0{bottom:217.272526px;}
.y154{bottom:220.981148px;}
.y7b{bottom:225.636158px;}
.y41{bottom:226.638091px;}
.y21{bottom:228.822775px;}
.y120{bottom:233.562474px;}
.yad{bottom:233.998207px;}
.ydf{bottom:233.998298px;}
.y153{bottom:237.706921px;}
.y7a{bottom:242.361931px;}
.y16e{bottom:246.871500px;}
.y20{bottom:248.392922px;}
.y40{bottom:248.966836px;}
.y11f{bottom:250.288247px;}
.yac{bottom:250.869421px;}
.yde{bottom:250.869512px;}
.y152{bottom:254.432693px;}
.y79{bottom:259.233145px;}
.y16d{bottom:266.068013px;}
.y11e{bottom:267.014019px;}
.yab{bottom:267.595193px;}
.ydd{bottom:267.595285px;}
.y1f{bottom:267.878350px;}
.y151{bottom:271.158466px;}
.y3f{bottom:271.295581px;}
.y78{bottom:275.813476px;}
.y11d{bottom:283.739792px;}
.y53{bottom:284.073000px;}
.yaa{bottom:284.175524px;}
.ydc{bottom:284.175616px;}
.y1e{bottom:287.363777px;}
.y150{bottom:287.884238px;}
.y16c{bottom:290.065861px;}
.y77{bottom:292.539248px;}
.y3e{bottom:293.546660px;}
.y11c{bottom:300.465564px;}
.ya9{bottom:300.901297px;}
.ydb{bottom:300.901388px;}
.yfb{bottom:301.046830px;}
.y14f{bottom:304.610011px;}
.y1d{bottom:306.933924px;}
.y76{bottom:309.410462px;}
.y16b{bottom:314.063708px;}
.y3d{bottom:315.875405px;}
.y11b{bottom:317.191337px;}
.ya8{bottom:317.772511px;}
.yda{bottom:317.772602px;}
.y14e{bottom:321.335783px;}
.y75{bottom:326.136235px;}
.y1c{bottom:326.419351px;}
.y16a{bottom:330.789481px;}
.y11a{bottom:333.917109px;}
.yfa{bottom:334.352933px;}
.ya7{bottom:334.498283px;}
.yd9{bottom:334.498375px;}
.y14d{bottom:338.061556px;}
.y3c{bottom:338.204150px;}
.y74{bottom:342.716566px;}
.y1b{bottom:345.904779px;}
.y169{bottom:347.515253px;}
.y119{bottom:350.642882px;}
.y52{bottom:350.685000px;}
.ya6{bottom:351.078614px;}
.yd8{bottom:351.078706px;}
.y14c{bottom:354.787328px;}
.y73{bottom:359.442338px;}
.y3b{bottom:360.455230px;}
.y168{bottom:364.241026px;}
.y1a{bottom:365.474926px;}
.y118{bottom:367.368654px;}
.ya5{bottom:367.804387px;}
.yd7{bottom:367.804478px;}
.yf9{bottom:367.949920px;}
.y51{bottom:370.029000px;}
.y14b{bottom:371.513101px;}
.y72{bottom:376.313552px;}
.y167{bottom:380.966798px;}
.y3a{bottom:382.783975px;}
.y117{bottom:384.094427px;}
.y50{bottom:384.429000px;}
.ya4{bottom:384.530159px;}
.yd6{bottom:384.675692px;}
.y19{bottom:384.960353px;}
.y14a{bottom:388.238873px;}
.y71{bottom:393.039325px;}
.y166{bottom:397.692571px;}
.y4f{bottom:398.829000px;}
.y116{bottom:400.820199px;}
.yf8{bottom:401.256023px;}
.ya3{bottom:401.401373px;}
.yd5{bottom:401.401465px;}
.y18{bottom:404.445781px;}
.y149{bottom:404.964646px;}
.y39{bottom:405.112720px;}
.y70{bottom:409.619656px;}
.y4e{bottom:413.229000px;}
.y165{bottom:414.418343px;}
.y115{bottom:417.545972px;}
.yd4{bottom:417.981796px;}
.ya2{bottom:418.127146px;}
.yf7{bottom:418.127237px;}
.y148{bottom:421.690418px;}
.y17{bottom:424.015927px;}
.y6f{bottom:426.345428px;}
.y38{bottom:427.363800px;}
.y4d{bottom:427.629000px;}
.y164{bottom:431.144116px;}
.y114{bottom:434.271744px;}
.ya1{bottom:434.707477px;}
.yd3{bottom:434.707568px;}
.yf6{bottom:434.853010px;}
.y147{bottom:438.416191px;}
.y6e{bottom:443.216642px;}
.y16{bottom:443.501355px;}
.y163{bottom:447.869888px;}
.y37{bottom:449.114243px;}
.y113{bottom:450.997517px;}
.ya0{bottom:451.433249px;}
.yf5{bottom:451.433341px;}
.yd2{bottom:451.578782px;}
.y146{bottom:455.141963px;}
.y6d{bottom:459.942415px;}
.y15{bottom:462.986783px;}
.y9f{bottom:468.304463px;}
.yd1{bottom:468.304555px;}
.y36{bottom:468.599671px;}
.y145{bottom:471.867736px;}
.y112{bottom:474.995364px;}
.y6c{bottom:476.522746px;}
.y14{bottom:482.556929px;}
.yd0{bottom:484.884886px;}
.y9e{bottom:485.030236px;}
.yf4{bottom:485.030327px;}
.y35{bottom:488.085098px;}
.y144{bottom:488.593508px;}
.y111{bottom:491.721137px;}
.y6b{bottom:493.321239px;}
.y4c{bottom:494.757000px;}
.y9d{bottom:501.537846px;}
.ycf{bottom:501.537937px;}
.y13{bottom:502.042357px;}
.y143{bottom:505.319281px;}
.y34{bottom:507.570526px;}
.y110{bottom:508.446909px;}
.y6a{bottom:510.047011px;}
.y4b{bottom:514.101000px;}
.y9c{bottom:518.263619px;}
.yf3{bottom:518.263710px;}
.yce{bottom:518.409152px;}
.y162{bottom:522.045053px;}
.y12{bottom:523.141372px;}
.y10f{bottom:525.172682px;}
.y69{bottom:526.627342px;}
.y33{bottom:527.140672px;}
.y142{bottom:529.317128px;}
.y9b{bottom:535.134833px;}
.ycd{bottom:535.134924px;}
.y161{bottom:538.770826px;}
.y10e{bottom:541.898454px;}
.y68{bottom:543.498556px;}
.y141{bottom:546.042901px;}
.y32{bottom:546.626100px;}
.y11{bottom:550.989600px;}
.ycc{bottom:551.715255px;}
.y9a{bottom:551.860605px;}
.yf2{bottom:551.860697px;}
.y160{bottom:555.496598px;}
.y10d{bottom:558.624227px;}
.y67{bottom:560.224329px;}
.y140{bottom:562.768673px;}
.y31{bottom:567.721647px;}
.y99{bottom:568.440936px;}
.yf1{bottom:568.441028px;}
.ycb{bottom:568.586469px;}
.y15f{bottom:572.222371px;}
.y10c{bottom:575.349999px;}
.y66{bottom:576.804660px;}
.y10{bottom:577.317172px;}
.y13f{bottom:579.494446px;}
.y98{bottom:585.166709px;}
.yca{bottom:585.312242px;}
.y15e{bottom:588.948143px;}
.y10b{bottom:592.075772px;}
.y65{bottom:593.530432px;}
.y30{bottom:595.642523px;}
.y13e{bottom:596.220218px;}
.yf{bottom:596.802600px;}
.yc9{bottom:601.892572px;}
.y97{bottom:602.037923px;}
.yf0{bottom:602.038014px;}
.y15d{bottom:605.673916px;}
.y10a{bottom:608.801544px;}
.y64{bottom:610.401646px;}
.y13d{bottom:612.945991px;}
.ye{bottom:617.456250px;}
.yc8{bottom:618.618345px;}
.y96{bottom:618.763695px;}
.y15c{bottom:622.326968px;}
.y2f{bottom:623.490750px;}
.y109{bottom:625.527317px;}
.y63{bottom:626.981977px;}
.y13c{bottom:629.599042px;}
.y95{bottom:635.344026px;}
.yc7{bottom:635.344117px;}
.y108{bottom:642.253089px;}
.y62{bottom:643.707750px;}
.yd{bottom:644.144655px;}
.y13b{bottom:646.324815px;}
.y2e{bottom:649.743750px;}
.y94{bottom:652.069799px;}
.yef{bottom:652.069890px;}
.yc6{bottom:652.215331px;}
.y107{bottom:658.978861px;}
.y61{bottom:660.578222px;}
.y13a{bottom:663.050588px;}
.y93{bottom:668.795571px;}
.yc5{bottom:668.941104px;}
.y2d{bottom:670.396178px;}
.y106{bottom:675.704634px;}
.y60{bottom:677.158553px;}
.yc{bottom:677.596027px;}
.y139{bottom:679.776360px;}
.yc4{bottom:685.521435px;}
.y92{bottom:685.666785px;}
.y105{bottom:692.430407px;}
.y5f{bottom:693.884325px;}
.y2c{bottom:695.484750px;}
.y138{bottom:696.502133px;}
.yee{bottom:702.247207px;}
.y91{bottom:702.392558px;}
.yc3{bottom:702.392649px;}
.y5e{bottom:710.755539px;}
.yb{bottom:711.047400px;}
.y137{bottom:713.227905px;}
.y104{bottom:716.428254px;}
.y90{bottom:718.972889px;}
.yed{bottom:718.972980px;}
.yc2{bottom:719.118421px;}
.y2b{bottom:722.173305px;}
.y5d{bottom:727.481312px;}
.y15b{bottom:729.953678px;}
.y8f{bottom:735.698661px;}
.yc1{bottom:735.698752px;}
.yec{bottom:735.844194px;}
.y136{bottom:737.225752px;}
.y103{bottom:740.426102px;}
.ya{bottom:741.731995px;}
.y5c{bottom:744.061643px;}
.y8e{bottom:752.424434px;}
.yc0{bottom:752.424525px;}
.yeb{bottom:752.569966px;}
.y135{bottom:753.951525px;}
.y2a{bottom:755.624677px;}
.y5b{bottom:760.932857px;}
.y9{bottom:761.302142px;}
.y4a{bottom:763.857000px;}
.y102{bottom:764.278508px;}
.yea{bottom:769.150297px;}
.y8d{bottom:769.295648px;}
.ybf{bottom:769.295739px;}
.y134{bottom:770.677297px;}
.y5a{bottom:777.658629px;}
.y49{bottom:778.257000px;}
.y8{bottom:780.787569px;}
.ye9{bottom:785.876070px;}
.y8c{bottom:786.021420px;}
.ybe{bottom:786.021511px;}
.y133{bottom:787.403070px;}
.y101{bottom:788.421797px;}
.y29{bottom:789.076050px;}
.y48{bottom:792.657000px;}
.y59{bottom:794.238960px;}
.y7{bottom:800.272997px;}
.y8b{bottom:802.601751px;}
.ybd{bottom:802.601842px;}
.ye8{bottom:802.747284px;}
.y132{bottom:804.128842px;}
.y47{bottom:807.057000px;}
.y58{bottom:810.964733px;}
.y100{bottom:812.419644px;}
.y8a{bottom:819.327524px;}
.ybc{bottom:819.473056px;}
.y6{bottom:819.758424px;}
.y131{bottom:820.854615px;}
.y46{bottom:821.457000px;}
.y57{bottom:827.835947px;}
.y45{bottom:835.857000px;}
.y89{bottom:836.053296px;}
.ye7{bottom:836.053387px;}
.ybb{bottom:836.198829px;}
.yff{bottom:836.272050px;}
.y130{bottom:837.580388px;}
.y5{bottom:839.328571px;}
.y56{bottom:844.416278px;}
.yba{bottom:852.779160px;}
.y88{bottom:852.924510px;}
.y12f{bottom:854.306160px;}
.y4{bottom:858.813998px;}
.yfe{bottom:860.712561px;}
.y55{bottom:861.142050px;}
.y87{bottom:869.650283px;}
.yb9{bottom:869.650374px;}
.y12e{bottom:871.031933px;}
.y3{bottom:878.299426px;}
.y86{bottom:886.230614px;}
.yb8{bottom:886.376147px;}
.yfd{bottom:887.466900px;}
.y12d{bottom:887.757705px;}
.y2{bottom:897.869573px;}
.y85{bottom:902.956386px;}
.yb7{bottom:902.956477px;}
.y12c{bottom:904.483477px;}
.yfc{bottom:913.937100px;}
.y1{bottom:917.355000px;}
.yb6{bottom:919.682250px;}
.y84{bottom:919.827600px;}
.y12b{bottom:921.209250px;}
.y54{bottom:955.919203px;}
.hd{height:13.200074px;}
.h9{height:33.351562px;}
.h8{height:35.320312px;}
.he{height:49.898438px;}
.hb{height:51.046558px;}
.ha{height:51.671502px;}
.hc{height:57.068745px;}
.h1{height:60.196998px;}
.h5{height:68.980956px;}
.h3{height:77.506986px;}
.h4{height:86.032483px;}
.h2{height:103.342470px;}
.h0{height:1020.000000px;}
.h6{height:1020.472500px;}
.h7{height:1020.750000px;}
.w2{width:6.000000px;}
.w3{width:12.000000px;}
.w1{width:722.835000px;}
.w0{width:723.000000px;}
.x0{left:0.000000px;}
.xd{left:85.039050px;}
.xf{left:103.807350px;}
.x7{left:109.770300px;}
.x3{left:121.638788px;}
.x5{left:133.986450px;}
.x11{left:230.340450px;}
.x12{left:242.702978px;}
.x2{left:246.921450px;}
.x4{left:256.665980px;}
.xb{left:289.186144px;}
.x10{left:293.171100px;}
.x6{left:328.221783px;}
.xe{left:330.620713px;}
.x9{left:351.570716px;}
.x1{left:361.238250px;}
.xa{left:379.569021px;}
.xc{left:467.846400px;}
.x14{left:602.999634px;}
.x13{left:608.999634px;}
.x8{left:612.778200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.435200pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls23{letter-spacing:-0.258563pt;}
.ls22{letter-spacing:-0.113768pt;}
.ls2a{letter-spacing:-0.072398pt;}
.lsc{letter-spacing:-0.059733pt;}
.ls2c{letter-spacing:-0.051713pt;}
.ls7{letter-spacing:-0.048325pt;}
.ls1d{letter-spacing:-0.041370pt;}
.ls21{letter-spacing:-0.031028pt;}
.ls6{letter-spacing:-0.027614pt;}
.ls1a{letter-spacing:-0.025856pt;}
.ls3{letter-spacing:-0.020685pt;}
.ls1e{letter-spacing:-0.015514pt;}
.ls24{letter-spacing:-0.010343pt;}
.ls18{letter-spacing:-0.005171pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.004267pt;}
.lse{letter-spacing:0.005171pt;}
.ls2{letter-spacing:0.010342pt;}
.lsd{letter-spacing:0.015514pt;}
.ls13{letter-spacing:0.020685pt;}
.ls10{letter-spacing:0.025856pt;}
.lsf{letter-spacing:0.031028pt;}
.ls5{letter-spacing:0.034440pt;}
.ls11{letter-spacing:0.036199pt;}
.ls16{letter-spacing:0.041370pt;}
.ls4{letter-spacing:0.043050pt;}
.ls14{letter-spacing:0.046541pt;}
.ls1b{letter-spacing:0.051713pt;}
.ls17{letter-spacing:0.054220pt;}
.ls12{letter-spacing:0.056884pt;}
.ls15{letter-spacing:0.062055pt;}
.ls20{letter-spacing:0.067226pt;}
.ls19{letter-spacing:0.072398pt;}
.ls0{letter-spacing:0.077491pt;}
.ls2e{letter-spacing:0.077569pt;}
.ls33{letter-spacing:0.082740pt;}
.ls2d{letter-spacing:0.087911pt;}
.ls2f{letter-spacing:0.098254pt;}
.ls27{letter-spacing:0.103425pt;}
.ls35{letter-spacing:1.551376pt;}
.ls1c{letter-spacing:2.306379pt;}
.ls32{letter-spacing:2.585627pt;}
.ls25{letter-spacing:4.395565pt;}
.ls30{letter-spacing:5.688379pt;}
.ls2b{letter-spacing:7.756880pt;}
.ls26{letter-spacing:8.274005pt;}
.ls29{letter-spacing:12.411008pt;}
.ls31{letter-spacing:16.806573pt;}
.ls28{letter-spacing:23.012077pt;}
.ls1f{letter-spacing:32.578896pt;}
.ls34{letter-spacing:34.905960pt;}
.ls8{letter-spacing:605.484338pt;}
.ws0{word-spacing:-86.178291pt;}
.ws27{word-spacing:-84.291429pt;}
.ws49{word-spacing:-74.724611pt;}
.ws2{word-spacing:-69.008119pt;}
.ws46{word-spacing:-64.123541pt;}
.wsb2{word-spacing:-64.071829pt;}
.ws5b{word-spacing:-60.244800pt;}
.ws37{word-spacing:-59.986539pt;}
.ws52{word-spacing:-59.469413pt;}
.ws31{word-spacing:-56.108099pt;}
.ws22{word-spacing:-54.018912pt;}
.ws2e{word-spacing:-51.779760pt;}
.ws1c{word-spacing:-51.774588pt;}
.ws44{word-spacing:-51.769417pt;}
.ws35{word-spacing:-51.764246pt;}
.ws34{word-spacing:-51.759075pt;}
.ws1f{word-spacing:-51.753903pt;}
.ws16{word-spacing:-51.748732pt;}
.ws40{word-spacing:-51.743561pt;}
.ws1d{word-spacing:-51.738390pt;}
.ws18{word-spacing:-51.733218pt;}
.ws20{word-spacing:-51.728047pt;}
.ws10{word-spacing:-51.722876pt;}
.ws12{word-spacing:-51.717705pt;}
.ws21{word-spacing:-51.712533pt;}
.ws1e{word-spacing:-51.707362pt;}
.ws5a{word-spacing:-51.702191pt;}
.ws2b{word-spacing:-51.686677pt;}
.ws23{word-spacing:-51.671163pt;}
.ws2d{word-spacing:-51.598766pt;}
.ws93{word-spacing:-45.972442pt;}
.ws2f{word-spacing:-42.740409pt;}
.ws30{word-spacing:-42.683525pt;}
.ws7{word-spacing:-42.670933pt;}
.ws6{word-spacing:-42.666667pt;}
.ws8{word-spacing:-42.606933pt;}
.ws56{word-spacing:-40.708106pt;}
.ws55{word-spacing:-40.615024pt;}
.ws54{word-spacing:-39.828993pt;}
.ws53{word-spacing:-39.554917pt;}
.ws41{word-spacing:-39.384265pt;}
.ws45{word-spacing:-39.306697pt;}
.ws33{word-spacing:-39.042963pt;}
.ws29{word-spacing:-36.715899pt;}
.ws2a{word-spacing:-36.633159pt;}
.ws42{word-spacing:-35.960896pt;}
.ws3f{word-spacing:-35.112810pt;}
.ws91{word-spacing:-34.854247pt;}
.ws3e{word-spacing:-34.657740pt;}
.ws59{word-spacing:-33.096021pt;}
.ws58{word-spacing:-33.075336pt;}
.ws96{word-spacing:-31.751495pt;}
.wsb7{word-spacing:-30.717245pt;}
.ws8b{word-spacing:-29.269294pt;}
.ws9a{word-spacing:-29.264123pt;}
.ws63{word-spacing:-29.253780pt;}
.ws7d{word-spacing:-29.243438pt;}
.ws97{word-spacing:-29.238266pt;}
.ws90{word-spacing:-29.233095pt;}
.ws9b{word-spacing:-29.227924pt;}
.ws17{word-spacing:-29.222753pt;}
.ws9c{word-spacing:-29.217581pt;}
.ws19{word-spacing:-29.212410pt;}
.ws28{word-spacing:-29.207239pt;}
.ws66{word-spacing:-29.202068pt;}
.ws32{word-spacing:-29.196896pt;}
.ws57{word-spacing:-29.191725pt;}
.ws1a{word-spacing:-29.186554pt;}
.ws11{word-spacing:-29.181383pt;}
.ws38{word-spacing:-29.176211pt;}
.ws1b{word-spacing:-29.171040pt;}
.ws5e{word-spacing:-29.165869pt;}
.ws36{word-spacing:-29.160698pt;}
.ws7a{word-spacing:-29.155526pt;}
.ws6d{word-spacing:-29.150355pt;}
.ws6e{word-spacing:-29.140013pt;}
.ws7e{word-spacing:-29.124499pt;}
.wsa1{word-spacing:-29.114156pt;}
.ws4b{word-spacing:-29.062444pt;}
.ws47{word-spacing:-28.705627pt;}
.ws13{word-spacing:-27.748945pt;}
.ws15{word-spacing:-27.676548pt;}
.ws2c{word-spacing:-23.017249pt;}
.ws89{word-spacing:-20.721212pt;}
.ws71{word-spacing:-20.457478pt;}
.ws84{word-spacing:-20.323026pt;}
.wsb4{word-spacing:-20.307512pt;}
.wsa7{word-spacing:-20.219601pt;}
.wsa6{word-spacing:-20.214429pt;}
.ws83{word-spacing:-20.136860pt;}
.wsb3{word-spacing:-20.131689pt;}
.ws6c{word-spacing:-19.966209pt;}
.wsa8{word-spacing:-19.950695pt;}
.wsa9{word-spacing:-19.945524pt;}
.ws6b{word-spacing:-19.692133pt;}
.ws8c{word-spacing:-19.433570pt;}
.ws60{word-spacing:-19.423228pt;}
.ws5f{word-spacing:-19.356001pt;}
.ws70{word-spacing:-19.159494pt;}
.ws6f{word-spacing:-19.092267pt;}
.ws26{word-spacing:-18.957815pt;}
.wsa2{word-spacing:-18.647540pt;}
.wsae{word-spacing:-18.575142pt;}
.wsa3{word-spacing:-18.549286pt;}
.ws80{word-spacing:-17.633974pt;}
.ws85{word-spacing:-17.628803pt;}
.ws98{word-spacing:-17.623631pt;}
.ws7f{word-spacing:-17.618460pt;}
.ws86{word-spacing:-17.535720pt;}
.ws99{word-spacing:-17.530549pt;}
.ws74{word-spacing:-17.390925pt;}
.ws88{word-spacing:-17.359897pt;}
.ws87{word-spacing:-17.349555pt;}
.ws75{word-spacing:-17.261644pt;}
.ws8d{word-spacing:-17.028937pt;}
.ws77{word-spacing:-16.858286pt;}
.ws76{word-spacing:-16.775546pt;}
.ws81{word-spacing:-16.770375pt;}
.ws9e{word-spacing:-16.682463pt;}
.ws82{word-spacing:-16.672121pt;}
.ws9d{word-spacing:-16.573867pt;}
.ws62{word-spacing:-16.335989pt;}
.ws61{word-spacing:-16.248078pt;}
.wsac{word-spacing:-15.829206pt;}
.wsad{word-spacing:-15.710268pt;}
.ws78{word-spacing:-15.291396pt;}
.ws79{word-spacing:-15.187971pt;}
.wsb0{word-spacing:-14.769100pt;}
.wsaf{word-spacing:-14.763928pt;}
.ws7b{word-spacing:-14.443311pt;}
.ws7c{word-spacing:-14.401941pt;}
.ws8f{word-spacing:-14.283002pt;}
.ws8e{word-spacing:-14.184748pt;}
.ws95{word-spacing:-14.029610pt;}
.ws94{word-spacing:-13.993412pt;}
.ws43{word-spacing:-12.985017pt;}
.ws4a{word-spacing:-12.979846pt;}
.ws4c{word-spacing:-12.964332pt;}
.ws14{word-spacing:-12.953990pt;}
.ws48{word-spacing:-12.938476pt;}
.ws65{word-spacing:-12.886763pt;}
.ws64{word-spacing:-12.695427pt;}
.ws92{word-spacing:-12.467892pt;}
.wsb6{word-spacing:-12.436864pt;}
.wsa5{word-spacing:-12.193815pt;}
.wsb5{word-spacing:-12.121418pt;}
.wsa4{word-spacing:-11.842170pt;}
.ws5d{word-spacing:-11.175078pt;}
.ws5c{word-spacing:-10.828604pt;}
.wsb8{word-spacing:-9.608189pt;}
.wsb9{word-spacing:-9.499592pt;}
.ws9f{word-spacing:-8.067155pt;}
.wsa0{word-spacing:-8.041299pt;}
.ws68{word-spacing:-3.800871pt;}
.ws67{word-spacing:-3.583679pt;}
.ws73{word-spacing:-3.061382pt;}
.ws72{word-spacing:-3.051039pt;}
.wsaa{word-spacing:-2.363263pt;}
.wsab{word-spacing:-2.296036pt;}
.wse{word-spacing:-1.582933pt;}
.wsd{word-spacing:-1.395200pt;}
.wsf{word-spacing:-1.045333pt;}
.ws3c{word-spacing:-0.036199pt;}
.ws4d{word-spacing:-0.025856pt;}
.ws51{word-spacing:-0.020685pt;}
.ws3a{word-spacing:-0.015514pt;}
.ws25{word-spacing:-0.010343pt;}
.ws24{word-spacing:-0.005171pt;}
.ws1{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.010343pt;}
.ws9{word-spacing:0.017067pt;}
.ws3{word-spacing:0.384000pt;}
.ws69{word-spacing:0.749832pt;}
.ws6a{word-spacing:0.827401pt;}
.ws3d{word-spacing:0.889456pt;}
.ws3b{word-spacing:2.052988pt;}
.wsa{word-spacing:2.432000pt;}
.wsb{word-spacing:2.781867pt;}
.wsc{word-spacing:4.113067pt;}
.ws4{word-spacing:4.945067pt;}
.ws39{word-spacing:5.409131pt;}
.wsb1{word-spacing:5.636666pt;}
.ws4f{word-spacing:11.599121pt;}
.ws50{word-spacing:15.001806pt;}
.ws8a{word-spacing:19.862784pt;}
.ws5{word-spacing:37.371733pt;}
._1a{margin-left:-35.541886pt;}
._1b{margin-left:-34.528596pt;}
._8{margin-left:-33.189104pt;}
._11{margin-left:-23.420606pt;}
._16{margin-left:-17.369964pt;}
._17{margin-left:-16.088045pt;}
._f{margin-left:-13.047072pt;}
._10{margin-left:-11.619806pt;}
._e{margin-left:-8.842843pt;}
._d{margin-left:-7.601743pt;}
._0{margin-left:-6.272000pt;}
._4{margin-left:-5.034667pt;}
._3{margin-left:-3.712000pt;}
._5{margin-left:-2.773333pt;}
._2{margin-left:-1.536000pt;}
._1{width:1.237333pt;}
._7{width:2.446003pt;}
._6{width:3.361315pt;}
._a{width:4.654128pt;}
._9{width:6.153791pt;}
._b{width:7.756880pt;}
._c{width:9.101406pt;}
._14{width:10.782339pt;}
._19{width:12.343919pt;}
._15{width:13.605568pt;}
._18{width:16.186023pt;}
._12{width:24.563453pt;}
._13{width:28.933162pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:51.712533pt;}
.fs0{font-size:60.244800pt;}
.fs4{font-size:69.035733pt;}
.fs2{font-size:77.568533pt;}
.fs3{font-size:86.100800pt;}
.fs1{font-size:103.424533pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:2.302667pt;}
.y129{bottom:36.266764pt;}
.y83{bottom:81.755929pt;}
.y28{bottom:82.004751pt;}
.y128{bottom:82.208195pt;}
.yb5{bottom:89.188861pt;}
.y44{bottom:95.912933pt;}
.y82{bottom:96.494001pt;}
.y127{bottom:97.075548pt;}
.y27{bottom:99.400437pt;}
.yb4{bottom:104.056214pt;}
.ye6{bottom:104.056295pt;}
.y15a{bottom:107.223567pt;}
.y81{bottom:111.490635pt;}
.y126{bottom:111.942901pt;}
.y26{bottom:116.720817pt;}
.yb3{bottom:118.794286pt;}
.ye5{bottom:118.923649pt;}
.y159{bottom:122.090921pt;}
.y80{bottom:126.357989pt;}
.y125{bottom:126.810255pt;}
.yb2{bottom:133.661639pt;}
.ye4{bottom:133.791002pt;}
.y25{bottom:134.041197pt;}
.y158{bottom:136.958274pt;}
.y7f{bottom:141.096061pt;}
.y124{bottom:141.677608pt;}
.ye3{bottom:148.529074pt;}
.yb1{bottom:148.658274pt;}
.y24{bottom:151.436883pt;}
.y157{bottom:151.825627pt;}
.y7e{bottom:156.092695pt;}
.y123{bottom:156.544961pt;}
.y43{bottom:161.829570pt;}
.yb0{bottom:163.525627pt;}
.ye2{bottom:163.525709pt;}
.y156{bottom:166.692981pt;}
.y23{bottom:168.757263pt;}
.y7d{bottom:170.960049pt;}
.y122{bottom:171.412315pt;}
.yaf{bottom:178.392981pt;}
.ye1{bottom:178.393062pt;}
.y155{bottom:181.560334pt;}
.y42{bottom:181.677343pt;}
.y7c{bottom:185.698121pt;}
.y22{bottom:186.077643pt;}
.y121{bottom:186.279668pt;}
.yae{bottom:193.131053pt;}
.ye0{bottom:193.131134pt;}
.y154{bottom:196.427687pt;}
.y7b{bottom:200.565474pt;}
.y41{bottom:201.456081pt;}
.y21{bottom:203.398023pt;}
.y120{bottom:207.611088pt;}
.yad{bottom:207.998406pt;}
.ydf{bottom:207.998487pt;}
.y153{bottom:211.295041pt;}
.y7a{bottom:215.432827pt;}
.y16e{bottom:219.441333pt;}
.y20{bottom:220.793709pt;}
.y40{bottom:221.303854pt;}
.y11f{bottom:222.478441pt;}
.yac{bottom:222.995041pt;}
.yde{bottom:222.995122pt;}
.y152{bottom:226.162394pt;}
.y79{bottom:230.429462pt;}
.y16d{bottom:236.504901pt;}
.y11e{bottom:237.345795pt;}
.yab{bottom:237.862394pt;}
.ydd{bottom:237.862475pt;}
.y1f{bottom:238.114089pt;}
.y151{bottom:241.029747pt;}
.y3f{bottom:241.151627pt;}
.y78{bottom:245.167534pt;}
.y11d{bottom:252.213148pt;}
.y53{bottom:252.509333pt;}
.yaa{bottom:252.600466pt;}
.ydc{bottom:252.600547pt;}
.y1e{bottom:255.434469pt;}
.y150{bottom:255.897101pt;}
.y16c{bottom:257.836321pt;}
.y77{bottom:260.034887pt;}
.y3e{bottom:260.930365pt;}
.y11c{bottom:267.080501pt;}
.ya9{bottom:267.467819pt;}
.ydb{bottom:267.467901pt;}
.yfb{bottom:267.597182pt;}
.y14f{bottom:270.764454pt;}
.y1d{bottom:272.830155pt;}
.y76{bottom:275.031522pt;}
.y16b{bottom:279.167741pt;}
.y3d{bottom:280.778138pt;}
.y11b{bottom:281.947855pt;}
.ya8{bottom:282.464454pt;}
.yda{bottom:282.464535pt;}
.y14e{bottom:285.631807pt;}
.y75{bottom:289.898875pt;}
.y1c{bottom:290.150535pt;}
.y16a{bottom:294.035094pt;}
.y11a{bottom:296.815208pt;}
.yfa{bottom:297.202607pt;}
.ya7{bottom:297.331807pt;}
.yd9{bottom:297.331889pt;}
.y14d{bottom:300.499161pt;}
.y3c{bottom:300.625911pt;}
.y74{bottom:304.636947pt;}
.y1b{bottom:307.470915pt;}
.y169{bottom:308.902447pt;}
.y119{bottom:311.682561pt;}
.y52{bottom:311.720000pt;}
.ya6{bottom:312.069879pt;}
.yd8{bottom:312.069961pt;}
.y14c{bottom:315.366514pt;}
.y73{bottom:319.504301pt;}
.y3b{bottom:320.404649pt;}
.y168{bottom:323.769801pt;}
.y1a{bottom:324.866601pt;}
.y118{bottom:326.549915pt;}
.ya5{bottom:326.937233pt;}
.yd7{bottom:326.937314pt;}
.yf9{bottom:327.066595pt;}
.y51{bottom:328.914667pt;}
.y14b{bottom:330.233867pt;}
.y72{bottom:334.500935pt;}
.y167{bottom:338.637154pt;}
.y3a{bottom:340.252422pt;}
.y117{bottom:341.417268pt;}
.y50{bottom:341.714667pt;}
.ya4{bottom:341.804586pt;}
.yd6{bottom:341.933949pt;}
.y19{bottom:342.186981pt;}
.y14a{bottom:345.101221pt;}
.y71{bottom:349.368289pt;}
.y166{bottom:353.504507pt;}
.y4f{bottom:354.514667pt;}
.y116{bottom:356.284621pt;}
.yf8{bottom:356.672021pt;}
.ya3{bottom:356.801221pt;}
.yd5{bottom:356.801302pt;}
.y18{bottom:359.507361pt;}
.y149{bottom:359.968574pt;}
.y39{bottom:360.100196pt;}
.y70{bottom:364.106361pt;}
.y4e{bottom:367.314667pt;}
.y165{bottom:368.371861pt;}
.y115{bottom:371.151975pt;}
.yd4{bottom:371.539374pt;}
.ya2{bottom:371.668574pt;}
.yf7{bottom:371.668655pt;}
.y148{bottom:374.835927pt;}
.y17{bottom:376.903047pt;}
.y6f{bottom:378.973714pt;}
.y38{bottom:379.878933pt;}
.y4d{bottom:380.114667pt;}
.y164{bottom:383.239214pt;}
.y114{bottom:386.019328pt;}
.ya1{bottom:386.406646pt;}
.yd3{bottom:386.406727pt;}
.yf6{bottom:386.536009pt;}
.y147{bottom:389.703281pt;}
.y6e{bottom:393.970349pt;}
.y16{bottom:394.223427pt;}
.y163{bottom:398.106567pt;}
.y37{bottom:399.212661pt;}
.y113{bottom:400.886681pt;}
.ya0{bottom:401.273999pt;}
.yf5{bottom:401.274081pt;}
.yd2{bottom:401.403362pt;}
.y146{bottom:404.570634pt;}
.y6d{bottom:408.837702pt;}
.y15{bottom:411.543807pt;}
.y9f{bottom:416.270634pt;}
.yd1{bottom:416.270715pt;}
.y36{bottom:416.533041pt;}
.y145{bottom:419.437987pt;}
.y112{bottom:422.218101pt;}
.y6c{bottom:423.575774pt;}
.y14{bottom:428.939493pt;}
.yd0{bottom:431.008787pt;}
.y9e{bottom:431.137987pt;}
.yf4{bottom:431.138069pt;}
.y35{bottom:433.853421pt;}
.y144{bottom:434.305341pt;}
.y111{bottom:437.085455pt;}
.y6b{bottom:438.507768pt;}
.y4c{bottom:439.784000pt;}
.y9d{bottom:445.811419pt;}
.ycf{bottom:445.811500pt;}
.y13{bottom:446.259873pt;}
.y143{bottom:449.172694pt;}
.y34{bottom:451.173801pt;}
.y110{bottom:451.952808pt;}
.y6a{bottom:453.375121pt;}
.y4b{bottom:456.978667pt;}
.y9c{bottom:460.678772pt;}
.yf3{bottom:460.678853pt;}
.yce{bottom:460.808135pt;}
.y162{bottom:464.040047pt;}
.y12{bottom:465.014553pt;}
.y10f{bottom:466.820161pt;}
.y69{bottom:468.113193pt;}
.y33{bottom:468.569487pt;}
.y142{bottom:470.504114pt;}
.y9b{bottom:475.675407pt;}
.ycd{bottom:475.675488pt;}
.y161{bottom:478.907401pt;}
.y10e{bottom:481.687515pt;}
.y68{bottom:483.109828pt;}
.y141{bottom:485.371467pt;}
.y32{bottom:485.889867pt;}
.y11{bottom:489.768533pt;}
.ycc{bottom:490.413560pt;}
.y9a{bottom:490.542760pt;}
.yf2{bottom:490.542841pt;}
.y160{bottom:493.774754pt;}
.y10d{bottom:496.554868pt;}
.y67{bottom:497.977181pt;}
.y140{bottom:500.238821pt;}
.y31{bottom:504.641464pt;}
.y99{bottom:505.280832pt;}
.yf1{bottom:505.280913pt;}
.ycb{bottom:505.410195pt;}
.y15f{bottom:508.642107pt;}
.y10c{bottom:511.422221pt;}
.y66{bottom:512.715253pt;}
.y10{bottom:513.170820pt;}
.y13f{bottom:515.106174pt;}
.y98{bottom:520.148185pt;}
.yca{bottom:520.277548pt;}
.y15e{bottom:523.509461pt;}
.y10b{bottom:526.289575pt;}
.y65{bottom:527.582607pt;}
.y30{bottom:529.460020pt;}
.y13e{bottom:529.973527pt;}
.yf{bottom:530.491200pt;}
.yc9{bottom:535.015620pt;}
.y97{bottom:535.144820pt;}
.yf0{bottom:535.144901pt;}
.y15d{bottom:538.376814pt;}
.y10a{bottom:541.156928pt;}
.y64{bottom:542.579241pt;}
.y13d{bottom:544.840881pt;}
.ye{bottom:548.850000pt;}
.yc8{bottom:549.882973pt;}
.y96{bottom:550.012173pt;}
.y15c{bottom:553.179527pt;}
.y2f{bottom:554.214000pt;}
.y109{bottom:556.024281pt;}
.y63{bottom:557.317313pt;}
.y13c{bottom:559.643593pt;}
.y95{bottom:564.750245pt;}
.yc7{bottom:564.750327pt;}
.y108{bottom:570.891635pt;}
.y62{bottom:572.184667pt;}
.yd{bottom:572.573027pt;}
.y13b{bottom:574.510947pt;}
.y2e{bottom:577.550000pt;}
.y94{bottom:579.617599pt;}
.yef{bottom:579.617680pt;}
.yc6{bottom:579.746961pt;}
.y107{bottom:585.758988pt;}
.y61{bottom:587.180641pt;}
.y13a{bottom:589.378300pt;}
.y93{bottom:594.484952pt;}
.yc5{bottom:594.614315pt;}
.y2d{bottom:595.907713pt;}
.y106{bottom:600.626341pt;}
.y60{bottom:601.918713pt;}
.yc{bottom:602.307580pt;}
.y139{bottom:604.245653pt;}
.yc4{bottom:609.352387pt;}
.y92{bottom:609.481587pt;}
.y105{bottom:615.493695pt;}
.y5f{bottom:616.786067pt;}
.y2c{bottom:618.208667pt;}
.y138{bottom:619.113007pt;}
.yee{bottom:624.219740pt;}
.y91{bottom:624.348940pt;}
.yc3{bottom:624.349021pt;}
.y5e{bottom:631.782701pt;}
.yb{bottom:632.042133pt;}
.y137{bottom:633.980360pt;}
.y104{bottom:636.825115pt;}
.y90{bottom:639.087012pt;}
.yed{bottom:639.087093pt;}
.yc2{bottom:639.216375pt;}
.y2b{bottom:641.931827pt;}
.y5d{bottom:646.650055pt;}
.y15b{bottom:648.847713pt;}
.y8f{bottom:653.954365pt;}
.yc1{bottom:653.954447pt;}
.yec{bottom:654.083728pt;}
.y136{bottom:655.311780pt;}
.y103{bottom:658.156535pt;}
.ya{bottom:659.317329pt;}
.y5c{bottom:661.388127pt;}
.y8e{bottom:668.821719pt;}
.yc0{bottom:668.821800pt;}
.yeb{bottom:668.951081pt;}
.y135{bottom:670.179133pt;}
.y2a{bottom:671.666380pt;}
.y5b{bottom:676.384761pt;}
.y9{bottom:676.713015pt;}
.y4a{bottom:678.984000pt;}
.y102{bottom:679.358673pt;}
.yea{bottom:683.689153pt;}
.y8d{bottom:683.818353pt;}
.ybf{bottom:683.818435pt;}
.y134{bottom:685.046487pt;}
.y5a{bottom:691.252115pt;}
.y49{bottom:691.784000pt;}
.y8{bottom:694.033395pt;}
.ye9{bottom:698.556507pt;}
.y8c{bottom:698.685707pt;}
.ybe{bottom:698.685788pt;}
.y133{bottom:699.913840pt;}
.y101{bottom:700.819375pt;}
.y29{bottom:701.400933pt;}
.y48{bottom:704.584000pt;}
.y59{bottom:705.990187pt;}
.y7{bottom:711.353775pt;}
.y8b{bottom:713.423779pt;}
.ybd{bottom:713.423860pt;}
.ye8{bottom:713.553141pt;}
.y132{bottom:714.781193pt;}
.y47{bottom:717.384000pt;}
.y58{bottom:720.857540pt;}
.y100{bottom:722.150795pt;}
.y8a{bottom:728.291132pt;}
.ybc{bottom:728.420495pt;}
.y6{bottom:728.674155pt;}
.y131{bottom:729.648547pt;}
.y46{bottom:730.184000pt;}
.y57{bottom:735.854175pt;}
.y45{bottom:742.984000pt;}
.y89{bottom:743.158485pt;}
.ye7{bottom:743.158567pt;}
.ybb{bottom:743.287848pt;}
.yff{bottom:743.352933pt;}
.y130{bottom:744.515900pt;}
.y5{bottom:746.069841pt;}
.y56{bottom:750.592247pt;}
.yba{bottom:758.025920pt;}
.y88{bottom:758.155120pt;}
.y12f{bottom:759.383253pt;}
.y4{bottom:763.390221pt;}
.yfe{bottom:765.077832pt;}
.y55{bottom:765.459600pt;}
.y87{bottom:773.022473pt;}
.yb9{bottom:773.022555pt;}
.y12e{bottom:774.250607pt;}
.y3{bottom:780.710601pt;}
.y86{bottom:787.760545pt;}
.yb8{bottom:787.889908pt;}
.yfd{bottom:788.859467pt;}
.y12d{bottom:789.117960pt;}
.y2{bottom:798.106287pt;}
.y85{bottom:802.627899pt;}
.yb7{bottom:802.627980pt;}
.y12c{bottom:803.985313pt;}
.yfc{bottom:812.388533pt;}
.y1{bottom:815.426667pt;}
.yb6{bottom:817.495333pt;}
.y84{bottom:817.624533pt;}
.y12b{bottom:818.852667pt;}
.y54{bottom:849.705958pt;}
.hd{height:11.733399pt;}
.h9{height:29.645833pt;}
.h8{height:31.395833pt;}
.he{height:44.354167pt;}
.hb{height:45.374718pt;}
.ha{height:45.930224pt;}
.hc{height:50.727773pt;}
.h1{height:53.508443pt;}
.h5{height:61.316406pt;}
.h3{height:68.895099pt;}
.h4{height:76.473318pt;}
.h2{height:91.859974pt;}
.h0{height:906.666667pt;}
.h6{height:907.086667pt;}
.h7{height:907.333333pt;}
.w2{width:5.333333pt;}
.w3{width:10.666667pt;}
.w1{width:642.520000pt;}
.w0{width:642.666667pt;}
.x0{left:0.000000pt;}
.xd{left:75.590267pt;}
.xf{left:92.273200pt;}
.x7{left:97.573600pt;}
.x3{left:108.123367pt;}
.x5{left:119.099067pt;}
.x11{left:204.747067pt;}
.x12{left:215.735980pt;}
.x2{left:219.485733pt;}
.x4{left:228.147538pt;}
.xb{left:257.054350pt;}
.x10{left:260.596533pt;}
.x6{left:291.752696pt;}
.xe{left:293.885078pt;}
.x9{left:312.507303pt;}
.x1{left:321.100667pt;}
.xa{left:337.394685pt;}
.xc{left:415.863467pt;}
.x14{left:535.999675pt;}
.x13{left:541.333008pt;}
.x8{left:544.691733pt;}
}




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