
    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_f9b6bf36df4f15e55d739735.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f691c8a3c193c16b244647d5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_45b2080f1af85bf92d2c3053.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_e78794af0dd3b4c00abefaee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.819824;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-71.824320px;}
.v2{vertical-align:-20.880000px;}
.v5{vertical-align:-12.250800px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.250800px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls25{letter-spacing:-1.126080px;}
.ls1e{letter-spacing:-1.075680px;}
.ls4e{letter-spacing:-0.861120px;}
.ls20{letter-spacing:-0.728640px;}
.ls23{letter-spacing:-0.596160px;}
.ls19{letter-spacing:-0.537840px;}
.ls24{letter-spacing:-0.463680px;}
.ls21{letter-spacing:-0.397440px;}
.ls1a{letter-spacing:-0.358560px;}
.ls1f{letter-spacing:-0.331200px;}
.ls60{letter-spacing:-0.264960px;}
.ls1b{letter-spacing:-0.239040px;}
.ls18{letter-spacing:-0.132480px;}
.ls43{letter-spacing:-0.066240px;}
.ls1c{letter-spacing:-0.059760px;}
.ls17{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.033120px;}
.ls50{letter-spacing:0.086112px;}
.ls51{letter-spacing:0.092736px;}
.ls1d{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132480px;}
.ls4a{letter-spacing:0.158976px;}
.ls3{letter-spacing:0.179280px;}
.ls1{letter-spacing:0.209160px;}
.ls4{letter-spacing:0.221112px;}
.ls9{letter-spacing:0.239040px;}
.ls26{letter-spacing:0.264960px;}
.ls4b{letter-spacing:0.291456px;}
.ls22{letter-spacing:0.331200px;}
.ls3f{letter-spacing:0.340632px;}
.ls2{letter-spacing:0.358560px;}
.ls49{letter-spacing:0.397440px;}
.ls3c{letter-spacing:0.443808px;}
.ls61{letter-spacing:0.463680px;}
.lsd{letter-spacing:0.483552px;}
.ls36{letter-spacing:0.556416px;}
.ls4c{letter-spacing:0.596160px;}
.ls5a{letter-spacing:0.622656px;}
.ls4d{letter-spacing:0.708768px;}
.ls59{letter-spacing:0.722016px;}
.lsc{letter-spacing:0.728640px;}
.ls58{letter-spacing:0.907488px;}
.ls52{letter-spacing:1.391040px;}
.ls53{letter-spacing:1.424160px;}
.ls12{letter-spacing:1.457280px;}
.ls11{letter-spacing:2.185920px;}
.ls30{letter-spacing:2.676096px;}
.ls3b{letter-spacing:2.828448px;}
.ls29{letter-spacing:2.848320px;}
.ls2a{letter-spacing:2.854944px;}
.ls27{letter-spacing:3.490848px;}
.ls34{letter-spacing:3.576960px;}
.ls42{letter-spacing:3.623328px;}
.ls3d{letter-spacing:4.212864px;}
.ls57{letter-spacing:4.279104px;}
.lsb{letter-spacing:4.305600px;}
.lse{letter-spacing:4.351968px;}
.ls13{letter-spacing:4.371840px;}
.ls39{letter-spacing:4.391712px;}
.ls3a{letter-spacing:4.438080px;}
.ls2d{letter-spacing:5.034240px;}
.ls2e{letter-spacing:5.762880px;}
.ls3e{letter-spacing:5.916240px;}
.ls15{letter-spacing:6.299424px;}
.ls62{letter-spacing:6.392160px;}
.ls35{letter-spacing:6.465024px;}
.ls14{letter-spacing:6.491520px;}
.ls5{letter-spacing:6.633360px;}
.ls46{letter-spacing:6.763104px;}
.ls47{letter-spacing:6.816096px;}
.ls55{letter-spacing:6.915456px;}
.ls38{letter-spacing:7.087680px;}
.ls2c{letter-spacing:7.220160px;}
.ls6{letter-spacing:7.350480px;}
.ls41{letter-spacing:7.410240px;}
.ls56{letter-spacing:7.902432px;}
.ls45{letter-spacing:7.948800px;}
.ls40{letter-spacing:8.127360px;}
.lsf{letter-spacing:8.611200px;}
.ls54{letter-spacing:8.617824px;}
.ls10{letter-spacing:8.670816px;}
.ls2b{letter-spacing:9.326592px;}
.ls16{letter-spacing:9.339840px;}
.ls5b{letter-spacing:10.068480px;}
.ls5d{letter-spacing:10.075104px;}
.ls7{letter-spacing:10.278720px;}
.ls5c{letter-spacing:10.777248px;}
.ls2f{letter-spacing:10.797120px;}
.ls28{letter-spacing:11.525760px;}
.ls37{letter-spacing:12.983040px;}
.ls48{letter-spacing:13.638816px;}
.ls33{letter-spacing:14.387328px;}
.ls8{letter-spacing:14.581440px;}
.ls5f{letter-spacing:15.102720px;}
.ls5e{letter-spacing:15.129216px;}
.ls32{letter-spacing:21.488256px;}
.ls31{letter-spacing:21.594240px;}
.lsa{letter-spacing:34.113600px;}
.ls4f{letter-spacing:68.400000px;}
.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;}
}
.ws74{word-spacing:-66.240000px;}
.ws75{word-spacing:-66.173760px;}
.ws13{word-spacing:-17.288640px;}
.ws54{word-spacing:-16.891200px;}
.ws53{word-spacing:-16.824960px;}
.ws10{word-spacing:-16.692480px;}
.wsc{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.427520px;}
.ws91{word-spacing:-16.295040px;}
.wsb{word-spacing:-16.228800px;}
.wse{word-spacing:-16.162560px;}
.ws11{word-spacing:-16.096320px;}
.wsf{word-spacing:-15.963840px;}
.wsd{word-spacing:-15.831360px;}
.ws12{word-spacing:-15.433920px;}
.ws4{word-spacing:-15.298560px;}
.ws7{word-spacing:-15.179040px;}
.ws8{word-spacing:-15.059520px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.880240px;}
.ws6{word-spacing:-14.700960px;}
.wsa{word-spacing:-14.581440px;}
.ws3{word-spacing:-14.402160px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws67{word-spacing:-4.438080px;}
.ws65{word-spacing:-4.305600px;}
.ws23{word-spacing:-3.764880px;}
.ws58{word-spacing:-3.709440px;}
.ws59{word-spacing:-3.576960px;}
.ws22{word-spacing:-3.525840px;}
.ws24{word-spacing:-3.346560px;}
.ws35{word-spacing:-3.179520px;}
.ws34{word-spacing:-2.980800px;}
.ws33{word-spacing:-2.848320px;}
.ws1d{word-spacing:-2.808720px;}
.ws5e{word-spacing:-2.517120px;}
.ws3f{word-spacing:-2.318400px;}
.ws86{word-spacing:-2.252160px;}
.ws40{word-spacing:-2.185920px;}
.ws20{word-spacing:-2.091600px;}
.ws1e{word-spacing:-1.613520px;}
.ws4b{word-spacing:-1.589760px;}
.ws4c{word-spacing:-1.457280px;}
.ws7a{word-spacing:-1.374480px;}
.ws80{word-spacing:-1.059840px;}
.ws7c{word-spacing:-0.896400px;}
.ws2e{word-spacing:-0.861120px;}
.ws36{word-spacing:-0.728640px;}
.ws8c{word-spacing:-0.397440px;}
.ws18{word-spacing:-0.358560px;}
.ws57{word-spacing:-0.331200px;}
.ws51{word-spacing:-0.264960px;}
.ws14{word-spacing:-0.191520px;}
.ws17{word-spacing:-0.179280px;}
.ws16{word-spacing:-0.132480px;}
.ws21{word-spacing:-0.119520px;}
.ws15{word-spacing:0.000000px;}
.ws1a{word-spacing:0.059760px;}
.ws41{word-spacing:0.132480px;}
.ws78{word-spacing:0.239040px;}
.ws85{word-spacing:0.331200px;}
.ws19{word-spacing:0.358560px;}
.ws44{word-spacing:0.397440px;}
.ws55{word-spacing:0.418320px;}
.ws89{word-spacing:0.463680px;}
.ws38{word-spacing:0.596160px;}
.ws2f{word-spacing:0.728640px;}
.ws52{word-spacing:1.059840px;}
.ws7b{word-spacing:1.075680px;}
.ws88{word-spacing:1.126080px;}
.ws30{word-spacing:1.324800px;}
.ws60{word-spacing:1.457280px;}
.ws81{word-spacing:1.854720px;}
.ws87{word-spacing:1.920960px;}
.ws3d{word-spacing:2.053440px;}
.ws4a{word-spacing:2.185920px;}
.ws1c{word-spacing:2.211120px;}
.ws84{word-spacing:2.318400px;}
.ws1b{word-spacing:2.689200px;}
.ws37{word-spacing:2.782080px;}
.ws5c{word-spacing:2.914560px;}
.ws83{word-spacing:3.312000px;}
.ws2d{word-spacing:3.444480px;}
.ws8a{word-spacing:3.510720px;}
.ws2c{word-spacing:3.576960px;}
.ws3e{word-spacing:3.643200px;}
.ws76{word-spacing:3.908160px;}
.ws39{word-spacing:3.974400px;}
.ws3c{word-spacing:4.173120px;}
.ws3a{word-spacing:4.305600px;}
.ws56{word-spacing:4.901760px;}
.ws3b{word-spacing:5.034240px;}
.ws63{word-spacing:5.630400px;}
.ws62{word-spacing:5.762880px;}
.ws77{word-spacing:5.796720px;}
.ws79{word-spacing:5.976000px;}
.ws27{word-spacing:6.274800px;}
.ws48{word-spacing:6.359040px;}
.ws5f{word-spacing:6.491520px;}
.ws26{word-spacing:6.513840px;}
.ws49{word-spacing:6.888960px;}
.ws25{word-spacing:6.991920px;}
.ws7d{word-spacing:7.051680px;}
.ws46{word-spacing:7.087680px;}
.ws66{word-spacing:7.220160px;}
.ws7e{word-spacing:7.290720px;}
.ws28{word-spacing:7.470000px;}
.ws8d{word-spacing:7.617600px;}
.ws47{word-spacing:7.816320px;}
.ws45{word-spacing:7.948800px;}
.ws7f{word-spacing:8.187120px;}
.ws42{word-spacing:8.478720px;}
.ws8e{word-spacing:8.544960px;}
.ws43{word-spacing:8.611200px;}
.ws72{word-spacing:8.677440px;}
.ws50{word-spacing:9.207360px;}
.ws5d{word-spacing:9.339840px;}
.ws4d{word-spacing:9.737280px;}
.ws2a{word-spacing:9.920160px;}
.ws4f{word-spacing:9.936000px;}
.ws4e{word-spacing:10.068480px;}
.ws1f{word-spacing:10.159200px;}
.ws29{word-spacing:10.338480px;}
.ws97{word-spacing:10.465920px;}
.ws32{word-spacing:10.664640px;}
.ws31{word-spacing:10.797120px;}
.ws8f{word-spacing:10.929600px;}
.ws73{word-spacing:11.393280px;}
.ws5a{word-spacing:11.525760px;}
.ws5b{word-spacing:12.121920px;}
.ws6b{word-spacing:12.254400px;}
.ws6c{word-spacing:12.850560px;}
.ws6d{word-spacing:12.983040px;}
.ws71{word-spacing:13.579200px;}
.ws70{word-spacing:13.711680px;}
.ws6f{word-spacing:14.241600px;}
.ws6e{word-spacing:14.374080px;}
.ws2b{word-spacing:14.461920px;}
.ws96{word-spacing:14.970240px;}
.ws82{word-spacing:15.102720px;}
.ws8b{word-spacing:17.156160px;}
.ws94{word-spacing:19.474560px;}
.ws95{word-spacing:20.004480px;}
.ws93{word-spacing:20.136960px;}
.ws6a{word-spacing:20.733120px;}
.ws64{word-spacing:20.865600px;}
.ws69{word-spacing:21.461760px;}
.ws68{word-spacing:21.594240px;}
.ws61{word-spacing:22.190400px;}
.ws90{word-spacing:23.647680px;}
.ws92{word-spacing:24.376320px;}
._c{margin-left:-7.861032px;}
._f{margin-left:-5.150160px;}
._5{margin-left:-4.123440px;}
._3{margin-left:-2.557224px;}
._1{margin-left:-1.086336px;}
._0{width:1.091664px;}
._2{width:2.145384px;}
._9{width:3.349008px;}
._6{width:4.419864px;}
._b{width:5.604264px;}
._8{width:6.981696px;}
._7{width:8.876160px;}
._4{width:10.060992px;}
._a{width:11.131632px;}
._d{width:13.711680px;}
._10{width:20.396592px;}
._e{width:44.308800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:46.260000px;}
.y6a{bottom:64.260000px;}
.ye3{bottom:90.321840px;}
.y134{bottom:90.366480px;}
.y121{bottom:92.620800px;}
.ybd{bottom:93.084480px;}
.y99{bottom:93.366000px;}
.y2b{bottom:95.919120px;}
.y69{bottom:96.230880px;}
.y2d{bottom:99.180000px;}
.ye2{bottom:108.322560px;}
.y133{bottom:108.367200px;}
.y120{bottom:110.621520px;}
.ybc{bottom:111.085200px;}
.y98{bottom:111.366720px;}
.y2a{bottom:113.919840px;}
.yf3{bottom:114.231600px;}
.y68{bottom:114.413760px;}
.y176{bottom:117.493920px;}
.ye1{bottom:126.323280px;}
.y11f{bottom:128.622240px;}
.ybb{bottom:129.085920px;}
.y97{bottom:129.367440px;}
.yf2{bottom:132.414480px;}
.y175{bottom:135.494640px;}
.y29{bottom:137.865600px;}
.y67{bottom:138.359520px;}
.ye0{bottom:144.324000px;}
.y11e{bottom:146.622960px;}
.y96{bottom:147.368160px;}
.y14b{bottom:150.315840px;}
.yba{bottom:153.031680px;}
.y28{bottom:155.866320px;}
.y66{bottom:156.360240px;}
.ydf{bottom:162.324720px;}
.y174{bottom:162.487440px;}
.y11d{bottom:164.623680px;}
.y95{bottom:165.368880px;}
.y14a{bottom:168.316560px;}
.yb9{bottom:171.032400px;}
.y27{bottom:173.867040px;}
.y65{bottom:174.360960px;}
.yde{bottom:180.325440px;}
.y173{bottom:180.488160px;}
.y94{bottom:183.369600px;}
.y11c{bottom:188.569440px;}
.yb8{bottom:189.033120px;}
.y26{bottom:191.867760px;}
.y64{bottom:192.361680px;}
.y149{bottom:195.309360px;}
.ydd{bottom:198.326160px;}
.y93{bottom:201.370320px;}
.y11b{bottom:206.570160px;}
.yb7{bottom:207.033840px;}
.y172{bottom:207.480960px;}
.y25{bottom:209.868480px;}
.y63{bottom:210.362400px;}
.ydc{bottom:216.326880px;}
.y131{bottom:219.371040px;}
.y148{bottom:222.302160px;}
.y11a{bottom:224.570880px;}
.yb6{bottom:225.034560px;}
.y92{bottom:225.316080px;}
.y171{bottom:225.481680px;}
.y24{bottom:227.869200px;}
.y62{bottom:228.363120px;}
.ydb{bottom:234.327600px;}
.y130{bottom:237.371760px;}
.y147{bottom:240.302880px;}
.y119{bottom:242.571600px;}
.yb5{bottom:243.035280px;}
.y91{bottom:243.316800px;}
.y23{bottom:245.869920px;}
.y61{bottom:246.363840px;}
.y170{bottom:252.474480px;}
.y12f{bottom:255.372480px;}
.yda{bottom:258.273360px;}
.y118{bottom:260.572320px;}
.yb4{bottom:261.036000px;}
.y90{bottom:261.317520px;}
.y22{bottom:263.870640px;}
.y60{bottom:264.364560px;}
.y146{bottom:267.295680px;}
.y16f{bottom:270.475200px;}
.y12e{bottom:273.373200px;}
.yd9{bottom:276.274080px;}
.y117{bottom:278.573040px;}
.yb3{bottom:279.036720px;}
.y8f{bottom:279.318240px;}
.y21{bottom:281.871360px;}
.y5f{bottom:282.365280px;}
.y145{bottom:285.296400px;}
.yf1{bottom:288.310320px;}
.yd8{bottom:294.274800px;}
.y116{bottom:296.573760px;}
.yb2{bottom:297.037440px;}
.y8e{bottom:297.318960px;}
.y16e{bottom:297.468000px;}
.y20{bottom:299.872080px;}
.y5e{bottom:300.366000px;}
.yf0{bottom:306.311040px;}
.yd7{bottom:312.275520px;}
.y144{bottom:312.289200px;}
.y115{bottom:314.574480px;}
.yb1{bottom:315.038160px;}
.y8d{bottom:315.319680px;}
.y1f{bottom:317.872800px;}
.y5d{bottom:318.366720px;}
.yef{bottom:324.311760px;}
.y16d{bottom:324.460800px;}
.yd6{bottom:330.276240px;}
.yb0{bottom:333.038880px;}
.y8c{bottom:333.320400px;}
.y1e{bottom:335.873520px;}
.y5c{bottom:336.367440px;}
.y114{bottom:338.520240px;}
.y143{bottom:339.282000px;}
.yee{bottom:342.312480px;}
.yd5{bottom:348.276960px;}
.yaf{bottom:351.039600px;}
.y12d{bottom:351.321120px;}
.y16c{bottom:351.453600px;}
.y1d{bottom:353.874240px;}
.y5b{bottom:354.368160px;}
.y113{bottom:356.520960px;}
.y8b{bottom:357.266160px;}
.y142{bottom:357.282720px;}
.yed{bottom:360.313200px;}
.yd4{bottom:366.277680px;}
.yae{bottom:369.040320px;}
.y12c{bottom:369.321840px;}
.y16b{bottom:369.454320px;}
.y1c{bottom:372.057120px;}
.y5a{bottom:372.368880px;}
.y112{bottom:374.521680px;}
.y8a{bottom:375.266880px;}
.yec{bottom:378.313920px;}
.y141{bottom:384.275520px;}
.yd3{bottom:384.278400px;}
.y12b{bottom:387.322560px;}
.y59{bottom:390.369600px;}
.y111{bottom:392.522400px;}
.yad{bottom:393.168240px;}
.y89{bottom:393.267600px;}
.y1b{bottom:396.002880px;}
.yeb{bottom:396.314640px;}
.y16a{bottom:396.447120px;}
.y140{bottom:402.276240px;}
.yd2{bottom:402.279120px;}
.y58{bottom:408.370320px;}
.y110{bottom:410.523120px;}
.y88{bottom:411.268320px;}
.y1a{bottom:414.003600px;}
.yea{bottom:414.315360px;}
.yac{bottom:417.114000px;}
.yd1{bottom:420.279840px;}
.y169{bottom:423.439920px;}
.y57{bottom:426.371040px;}
.y10f{bottom:428.523840px;}
.y87{bottom:429.269040px;}
.y19{bottom:432.004320px;}
.ye9{bottom:432.316080px;}
.yab{bottom:435.114720px;}
.yd0{bottom:438.280560px;}
.y168{bottom:441.440640px;}
.y56{bottom:444.371760px;}
.y10e{bottom:446.524560px;}
.y86{bottom:447.269760px;}
.y18{bottom:450.005040px;}
.ye8{bottom:450.316800px;}
.ycf{bottom:456.281280px;}
.y55{bottom:462.372480px;}
.y10d{bottom:464.525280px;}
.y85{bottom:465.270480px;}
.y17{bottom:468.005760px;}
.yaa{bottom:468.234720px;}
.ye7{bottom:468.317520px;}
.y167{bottom:468.433440px;}
.yce{bottom:474.282000px;}
.y10c{bottom:482.526000px;}
.y84{bottom:483.271200px;}
.y16{bottom:486.006480px;}
.y54{bottom:486.318240px;}
.y166{bottom:486.434160px;}
.ycd{bottom:492.282720px;}
.ya9{bottom:492.362640px;}
.y10b{bottom:500.526720px;}
.y83{bottom:501.271920px;}
.y15{bottom:504.007200px;}
.y53{bottom:504.318960px;}
.ycc{bottom:510.283440px;}
.y165{bottom:513.426960px;}
.ya8{bottom:516.308400px;}
.y10a{bottom:518.527440px;}
.y82{bottom:519.272640px;}
.y52{bottom:522.319680px;}
.ycb{bottom:528.466320px;}
.y14{bottom:531.000000px;}
.y164{bottom:531.427680px;}
.y109{bottom:536.528160px;}
.y81{bottom:537.273360px;}
.y12a{bottom:537.455520px;}
.ya7{bottom:540.254160px;}
.y51{bottom:540.320400px;}
.yca{bottom:552.412080px;}
.y108{bottom:554.528880px;}
.y80{bottom:555.274080px;}
.y50{bottom:558.321120px;}
.y163{bottom:558.420480px;}
.y129{bottom:561.401280px;}
.ya6{bottom:564.382080px;}
.yc9{bottom:570.412800px;}
.y107{bottom:572.529600px;}
.y7f{bottom:573.274800px;}
.y4f{bottom:576.321840px;}
.y162{bottom:576.421200px;}
.y128{bottom:579.402000px;}
.y13{bottom:584.973000px;}
.ya5{bottom:588.327840px;}
.yc8{bottom:588.413520px;}
.y106{bottom:590.530320px;}
.y7e{bottom:591.275520px;}
.y4e{bottom:594.322560px;}
.y127{bottom:597.402720px;}
.y161{bottom:603.414000px;}
.yc7{bottom:606.414240px;}
.y105{bottom:608.531040px;}
.y7d{bottom:609.276240px;}
.ya4{bottom:612.273600px;}
.y4d{bottom:612.323280px;}
.y126{bottom:615.403440px;}
.y12{bottom:620.978400px;}
.y160{bottom:621.414720px;}
.y132{bottom:623.880000px;}
.y104{bottom:626.531760px;}
.y7c{bottom:627.276960px;}
.y4c{bottom:630.324000px;}
.yc6{bottom:630.360000px;}
.y125{bottom:633.404160px;}
.ya3{bottom:636.401520px;}
.y11{bottom:638.981100px;}
.y103{bottom:644.532480px;}
.y7b{bottom:645.459840px;}
.y4b{bottom:648.324720px;}
.y15f{bottom:648.407520px;}
.y124{bottom:651.404880px;}
.yc5{bottom:654.291900px;}
.y10{bottom:656.983800px;}
.ya2{bottom:660.347280px;}
.y102{bottom:662.533200px;}
.y4a{bottom:666.325440px;}
.y15e{bottom:666.408240px;}
.y7a{bottom:669.405600px;}
.yc4{bottom:672.294600px;}
.yf{bottom:674.986500px;}
.y101{bottom:680.533920px;}
.ya1{bottom:684.293040px;}
.y79{bottom:687.406320px;}
.y49{bottom:690.271200px;}
.yc3{bottom:690.297300px;}
.ye{bottom:692.989200px;}
.y15d{bottom:693.401040px;}
.y100{bottom:698.534640px;}
.y78{bottom:705.407040px;}
.y48{bottom:708.271920px;}
.ya0{bottom:708.420960px;}
.yd{bottom:710.991900px;}
.y15c{bottom:711.401760px;}
.yff{bottom:716.535360px;}
.y77{bottom:723.407760px;}
.yc2{bottom:726.256080px;}
.y47{bottom:726.272640px;}
.yc{bottom:728.994600px;}
.y9f{bottom:732.366720px;}
.yfe{bottom:734.536080px;}
.y15b{bottom:738.394560px;}
.y76{bottom:741.408480px;}
.y46{bottom:744.273360px;}
.yc1{bottom:744.438960px;}
.yb{bottom:746.997300px;}
.y123{bottom:750.400560px;}
.yfd{bottom:752.536800px;}
.y9e{bottom:756.312480px;}
.y15a{bottom:756.395280px;}
.y75{bottom:759.409200px;}
.y45{bottom:762.274080px;}
.ya{bottom:765.000000px;}
.yc0{bottom:768.384720px;}
.yfc{bottom:770.537520px;}
.y74{bottom:777.409920px;}
.y44{bottom:780.274800px;}
.y9d{bottom:780.440400px;}
.y159{bottom:783.388080px;}
.y122{bottom:786.402000px;}
.yfb{bottom:788.720400px;}
.ybf{bottom:792.330480px;}
.y13f{bottom:795.410640px;}
.ye6{bottom:798.275520px;}
.y43{bottom:798.457680px;}
.y158{bottom:801.388800px;}
.y9c{bottom:804.386160px;}
.y73{bottom:804.402720px;}
.yfa{bottom:812.666160px;}
.y13e{bottom:813.411360px;}
.ye5{bottom:816.276240px;}
.ybe{bottom:816.458400px;}
.y9{bottom:818.994240px;}
.y42{bottom:822.403440px;}
.y9b{bottom:828.331920px;}
.y157{bottom:828.381600px;}
.y13d{bottom:831.412080px;}
.ye4{bottom:834.459120px;}
.yf9{bottom:836.611920px;}
.y41{bottom:840.404160px;}
.y8{bottom:844.377300px;}
.y156{bottom:846.382320px;}
.y9a{bottom:852.459840px;}
.yf8{bottom:854.612640px;}
.y13c{bottom:855.357840px;}
.y40{bottom:858.404880px;}
.y7{bottom:867.600000px;}
.y13b{bottom:873.358560px;}
.y155{bottom:873.375120px;}
.y3f{bottom:876.405600px;}
.y6{bottom:880.377300px;}
.y13a{bottom:891.359280px;}
.y154{bottom:891.375840px;}
.y3e{bottom:894.406320px;}
.y5{bottom:903.600000px;}
.y139{bottom:909.360000px;}
.y153{bottom:909.376560px;}
.y72{bottom:912.407040px;}
.y3d{bottom:918.352080px;}
.y4{bottom:925.380000px;}
.y138{bottom:927.360720px;}
.y152{bottom:927.377280px;}
.y71{bottom:930.407760px;}
.y3c{bottom:936.352800px;}
.y137{bottom:945.361440px;}
.y70{bottom:948.408480px;}
.y3b{bottom:954.353520px;}
.y151{bottom:954.370080px;}
.y136{bottom:963.362160px;}
.y6f{bottom:966.409200px;}
.y3a{bottom:972.354240px;}
.y178{bottom:972.360000px;}
.y150{bottom:972.370800px;}
.y3{bottom:981.198000px;}
.y135{bottom:981.362880px;}
.y6e{bottom:984.409920px;}
.y39{bottom:990.354960px;}
.y14f{bottom:990.371520px;}
.y6d{bottom:1002.410640px;}
.y38{bottom:1008.355680px;}
.y14e{bottom:1008.372240px;}
.y2{bottom:1008.729000px;}
.yf7{bottom:1020.394800px;}
.y6c{bottom:1020.411360px;}
.y37{bottom:1026.356400px;}
.y14d{bottom:1035.365040px;}
.y1{bottom:1036.260000px;}
.yf6{bottom:1044.340560px;}
.y36{bottom:1044.357120px;}
.y14c{bottom:1053.365760px;}
.y35{bottom:1062.357840px;}
.y2c{bottom:1067.580000px;}
.yf5{bottom:1068.468480px;}
.y177{bottom:1071.366480px;}
.y34{bottom:1080.358560px;}
.yf4{bottom:1092.414240px;}
.y33{bottom:1098.359280px;}
.y32{bottom:1116.360000px;}
.y2f{bottom:1129.677120px;}
.y31{bottom:1134.360000px;}
.y2e{bottom:1147.860000px;}
.y30{bottom:1163.700000px;}
.h4{height:38.139609px;}
.h5{height:58.621992px;}
.h6{height:58.645032px;}
.h8{height:58.651172px;}
.hc{height:59.019609px;}
.h7{height:60.226875px;}
.ha{height:65.010937px;}
.hd{height:66.757500px;}
.h3{height:68.324766px;}
.h9{height:69.086250px;}
.h2{height:96.508125px;}
.hb{height:114.120000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:743.940000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:74.520000px;}
.x1{left:84.960000px;}
.x12{left:92.334240px;}
.x11{left:99.720000px;}
.x8{left:106.200000px;}
.xc{left:115.248240px;}
.x2{left:127.419840px;}
.xb{left:142.075440px;}
.xf{left:151.733520px;}
.xa{left:174.060000px;}
.xe{left:191.295180px;}
.x5{left:279.900000px;}
.x10{left:297.858960px;}
.x4{left:300.240000px;}
.x7{left:317.520000px;}
.x6{left:418.854960px;}
.x13{left:421.911360px;}
.x9{left:435.060000px;}
.xd{left:467.694720px;}
@media print{
.v4{vertical-align:-63.843840pt;}
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-10.889600pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.889600pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls25{letter-spacing:-1.000960pt;}
.ls1e{letter-spacing:-0.956160pt;}
.ls4e{letter-spacing:-0.765440pt;}
.ls20{letter-spacing:-0.647680pt;}
.ls23{letter-spacing:-0.529920pt;}
.ls19{letter-spacing:-0.478080pt;}
.ls24{letter-spacing:-0.412160pt;}
.ls21{letter-spacing:-0.353280pt;}
.ls1a{letter-spacing:-0.318720pt;}
.ls1f{letter-spacing:-0.294400pt;}
.ls60{letter-spacing:-0.235520pt;}
.ls1b{letter-spacing:-0.212480pt;}
.ls18{letter-spacing:-0.117760pt;}
.ls43{letter-spacing:-0.058880pt;}
.ls1c{letter-spacing:-0.053120pt;}
.ls17{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.029440pt;}
.ls50{letter-spacing:0.076544pt;}
.ls51{letter-spacing:0.082432pt;}
.ls1d{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117760pt;}
.ls4a{letter-spacing:0.141312pt;}
.ls3{letter-spacing:0.159360pt;}
.ls1{letter-spacing:0.185920pt;}
.ls4{letter-spacing:0.196544pt;}
.ls9{letter-spacing:0.212480pt;}
.ls26{letter-spacing:0.235520pt;}
.ls4b{letter-spacing:0.259072pt;}
.ls22{letter-spacing:0.294400pt;}
.ls3f{letter-spacing:0.302784pt;}
.ls2{letter-spacing:0.318720pt;}
.ls49{letter-spacing:0.353280pt;}
.ls3c{letter-spacing:0.394496pt;}
.ls61{letter-spacing:0.412160pt;}
.lsd{letter-spacing:0.429824pt;}
.ls36{letter-spacing:0.494592pt;}
.ls4c{letter-spacing:0.529920pt;}
.ls5a{letter-spacing:0.553472pt;}
.ls4d{letter-spacing:0.630016pt;}
.ls59{letter-spacing:0.641792pt;}
.lsc{letter-spacing:0.647680pt;}
.ls58{letter-spacing:0.806656pt;}
.ls52{letter-spacing:1.236480pt;}
.ls53{letter-spacing:1.265920pt;}
.ls12{letter-spacing:1.295360pt;}
.ls11{letter-spacing:1.943040pt;}
.ls30{letter-spacing:2.378752pt;}
.ls3b{letter-spacing:2.514176pt;}
.ls29{letter-spacing:2.531840pt;}
.ls2a{letter-spacing:2.537728pt;}
.ls27{letter-spacing:3.102976pt;}
.ls34{letter-spacing:3.179520pt;}
.ls42{letter-spacing:3.220736pt;}
.ls3d{letter-spacing:3.744768pt;}
.ls57{letter-spacing:3.803648pt;}
.lsb{letter-spacing:3.827200pt;}
.lse{letter-spacing:3.868416pt;}
.ls13{letter-spacing:3.886080pt;}
.ls39{letter-spacing:3.903744pt;}
.ls3a{letter-spacing:3.944960pt;}
.ls2d{letter-spacing:4.474880pt;}
.ls2e{letter-spacing:5.122560pt;}
.ls3e{letter-spacing:5.258880pt;}
.ls15{letter-spacing:5.599488pt;}
.ls62{letter-spacing:5.681920pt;}
.ls35{letter-spacing:5.746688pt;}
.ls14{letter-spacing:5.770240pt;}
.ls5{letter-spacing:5.896320pt;}
.ls46{letter-spacing:6.011648pt;}
.ls47{letter-spacing:6.058752pt;}
.ls55{letter-spacing:6.147072pt;}
.ls38{letter-spacing:6.300160pt;}
.ls2c{letter-spacing:6.417920pt;}
.ls6{letter-spacing:6.533760pt;}
.ls41{letter-spacing:6.586880pt;}
.ls56{letter-spacing:7.024384pt;}
.ls45{letter-spacing:7.065600pt;}
.ls40{letter-spacing:7.224320pt;}
.lsf{letter-spacing:7.654400pt;}
.ls54{letter-spacing:7.660288pt;}
.ls10{letter-spacing:7.707392pt;}
.ls2b{letter-spacing:8.290304pt;}
.ls16{letter-spacing:8.302080pt;}
.ls5b{letter-spacing:8.949760pt;}
.ls5d{letter-spacing:8.955648pt;}
.ls7{letter-spacing:9.136640pt;}
.ls5c{letter-spacing:9.579776pt;}
.ls2f{letter-spacing:9.597440pt;}
.ls28{letter-spacing:10.245120pt;}
.ls37{letter-spacing:11.540480pt;}
.ls48{letter-spacing:12.123392pt;}
.ls33{letter-spacing:12.788736pt;}
.ls8{letter-spacing:12.961280pt;}
.ls5f{letter-spacing:13.424640pt;}
.ls5e{letter-spacing:13.448192pt;}
.ls32{letter-spacing:19.100672pt;}
.ls31{letter-spacing:19.194880pt;}
.lsa{letter-spacing:30.323200pt;}
.ls4f{letter-spacing:60.800000pt;}
.ws74{word-spacing:-58.880000pt;}
.ws75{word-spacing:-58.821120pt;}
.ws13{word-spacing:-15.367680pt;}
.ws54{word-spacing:-15.014400pt;}
.ws53{word-spacing:-14.955520pt;}
.ws10{word-spacing:-14.837760pt;}
.wsc{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.602240pt;}
.ws91{word-spacing:-14.484480pt;}
.wsb{word-spacing:-14.425600pt;}
.wse{word-spacing:-14.366720pt;}
.ws11{word-spacing:-14.307840pt;}
.wsf{word-spacing:-14.190080pt;}
.wsd{word-spacing:-14.072320pt;}
.ws12{word-spacing:-13.719040pt;}
.ws4{word-spacing:-13.598720pt;}
.ws7{word-spacing:-13.492480pt;}
.ws8{word-spacing:-13.386240pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.226880pt;}
.ws6{word-spacing:-13.067520pt;}
.wsa{word-spacing:-12.961280pt;}
.ws3{word-spacing:-12.801920pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws67{word-spacing:-3.944960pt;}
.ws65{word-spacing:-3.827200pt;}
.ws23{word-spacing:-3.346560pt;}
.ws58{word-spacing:-3.297280pt;}
.ws59{word-spacing:-3.179520pt;}
.ws22{word-spacing:-3.134080pt;}
.ws24{word-spacing:-2.974720pt;}
.ws35{word-spacing:-2.826240pt;}
.ws34{word-spacing:-2.649600pt;}
.ws33{word-spacing:-2.531840pt;}
.ws1d{word-spacing:-2.496640pt;}
.ws5e{word-spacing:-2.237440pt;}
.ws3f{word-spacing:-2.060800pt;}
.ws86{word-spacing:-2.001920pt;}
.ws40{word-spacing:-1.943040pt;}
.ws20{word-spacing:-1.859200pt;}
.ws1e{word-spacing:-1.434240pt;}
.ws4b{word-spacing:-1.413120pt;}
.ws4c{word-spacing:-1.295360pt;}
.ws7a{word-spacing:-1.221760pt;}
.ws80{word-spacing:-0.942080pt;}
.ws7c{word-spacing:-0.796800pt;}
.ws2e{word-spacing:-0.765440pt;}
.ws36{word-spacing:-0.647680pt;}
.ws8c{word-spacing:-0.353280pt;}
.ws18{word-spacing:-0.318720pt;}
.ws57{word-spacing:-0.294400pt;}
.ws51{word-spacing:-0.235520pt;}
.ws14{word-spacing:-0.170240pt;}
.ws17{word-spacing:-0.159360pt;}
.ws16{word-spacing:-0.117760pt;}
.ws21{word-spacing:-0.106240pt;}
.ws15{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.053120pt;}
.ws41{word-spacing:0.117760pt;}
.ws78{word-spacing:0.212480pt;}
.ws85{word-spacing:0.294400pt;}
.ws19{word-spacing:0.318720pt;}
.ws44{word-spacing:0.353280pt;}
.ws55{word-spacing:0.371840pt;}
.ws89{word-spacing:0.412160pt;}
.ws38{word-spacing:0.529920pt;}
.ws2f{word-spacing:0.647680pt;}
.ws52{word-spacing:0.942080pt;}
.ws7b{word-spacing:0.956160pt;}
.ws88{word-spacing:1.000960pt;}
.ws30{word-spacing:1.177600pt;}
.ws60{word-spacing:1.295360pt;}
.ws81{word-spacing:1.648640pt;}
.ws87{word-spacing:1.707520pt;}
.ws3d{word-spacing:1.825280pt;}
.ws4a{word-spacing:1.943040pt;}
.ws1c{word-spacing:1.965440pt;}
.ws84{word-spacing:2.060800pt;}
.ws1b{word-spacing:2.390400pt;}
.ws37{word-spacing:2.472960pt;}
.ws5c{word-spacing:2.590720pt;}
.ws83{word-spacing:2.944000pt;}
.ws2d{word-spacing:3.061760pt;}
.ws8a{word-spacing:3.120640pt;}
.ws2c{word-spacing:3.179520pt;}
.ws3e{word-spacing:3.238400pt;}
.ws76{word-spacing:3.473920pt;}
.ws39{word-spacing:3.532800pt;}
.ws3c{word-spacing:3.709440pt;}
.ws3a{word-spacing:3.827200pt;}
.ws56{word-spacing:4.357120pt;}
.ws3b{word-spacing:4.474880pt;}
.ws63{word-spacing:5.004800pt;}
.ws62{word-spacing:5.122560pt;}
.ws77{word-spacing:5.152640pt;}
.ws79{word-spacing:5.312000pt;}
.ws27{word-spacing:5.577600pt;}
.ws48{word-spacing:5.652480pt;}
.ws5f{word-spacing:5.770240pt;}
.ws26{word-spacing:5.790080pt;}
.ws49{word-spacing:6.123520pt;}
.ws25{word-spacing:6.215040pt;}
.ws7d{word-spacing:6.268160pt;}
.ws46{word-spacing:6.300160pt;}
.ws66{word-spacing:6.417920pt;}
.ws7e{word-spacing:6.480640pt;}
.ws28{word-spacing:6.640000pt;}
.ws8d{word-spacing:6.771200pt;}
.ws47{word-spacing:6.947840pt;}
.ws45{word-spacing:7.065600pt;}
.ws7f{word-spacing:7.277440pt;}
.ws42{word-spacing:7.536640pt;}
.ws8e{word-spacing:7.595520pt;}
.ws43{word-spacing:7.654400pt;}
.ws72{word-spacing:7.713280pt;}
.ws50{word-spacing:8.184320pt;}
.ws5d{word-spacing:8.302080pt;}
.ws4d{word-spacing:8.655360pt;}
.ws2a{word-spacing:8.817920pt;}
.ws4f{word-spacing:8.832000pt;}
.ws4e{word-spacing:8.949760pt;}
.ws1f{word-spacing:9.030400pt;}
.ws29{word-spacing:9.189760pt;}
.ws97{word-spacing:9.303040pt;}
.ws32{word-spacing:9.479680pt;}
.ws31{word-spacing:9.597440pt;}
.ws8f{word-spacing:9.715200pt;}
.ws73{word-spacing:10.127360pt;}
.ws5a{word-spacing:10.245120pt;}
.ws5b{word-spacing:10.775040pt;}
.ws6b{word-spacing:10.892800pt;}
.ws6c{word-spacing:11.422720pt;}
.ws6d{word-spacing:11.540480pt;}
.ws71{word-spacing:12.070400pt;}
.ws70{word-spacing:12.188160pt;}
.ws6f{word-spacing:12.659200pt;}
.ws6e{word-spacing:12.776960pt;}
.ws2b{word-spacing:12.855040pt;}
.ws96{word-spacing:13.306880pt;}
.ws82{word-spacing:13.424640pt;}
.ws8b{word-spacing:15.249920pt;}
.ws94{word-spacing:17.310720pt;}
.ws95{word-spacing:17.781760pt;}
.ws93{word-spacing:17.899520pt;}
.ws6a{word-spacing:18.429440pt;}
.ws64{word-spacing:18.547200pt;}
.ws69{word-spacing:19.077120pt;}
.ws68{word-spacing:19.194880pt;}
.ws61{word-spacing:19.724800pt;}
.ws90{word-spacing:21.020160pt;}
.ws92{word-spacing:21.667840pt;}
._c{margin-left:-6.987584pt;}
._f{margin-left:-4.577920pt;}
._5{margin-left:-3.665280pt;}
._3{margin-left:-2.273088pt;}
._1{margin-left:-0.965632pt;}
._0{width:0.970368pt;}
._2{width:1.907008pt;}
._9{width:2.976896pt;}
._6{width:3.928768pt;}
._b{width:4.981568pt;}
._8{width:6.205952pt;}
._7{width:7.889920pt;}
._4{width:8.943104pt;}
._a{width:9.894784pt;}
._d{width:12.188160pt;}
._10{width:18.130304pt;}
._e{width:39.385600pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:41.120000pt;}
.y6a{bottom:57.120000pt;}
.ye3{bottom:80.286080pt;}
.y134{bottom:80.325760pt;}
.y121{bottom:82.329600pt;}
.ybd{bottom:82.741760pt;}
.y99{bottom:82.992000pt;}
.y2b{bottom:85.261440pt;}
.y69{bottom:85.538560pt;}
.y2d{bottom:88.160000pt;}
.ye2{bottom:96.286720pt;}
.y133{bottom:96.326400pt;}
.y120{bottom:98.330240pt;}
.ybc{bottom:98.742400pt;}
.y98{bottom:98.992640pt;}
.y2a{bottom:101.262080pt;}
.yf3{bottom:101.539200pt;}
.y68{bottom:101.701120pt;}
.y176{bottom:104.439040pt;}
.ye1{bottom:112.287360pt;}
.y11f{bottom:114.330880pt;}
.ybb{bottom:114.743040pt;}
.y97{bottom:114.993280pt;}
.yf2{bottom:117.701760pt;}
.y175{bottom:120.439680pt;}
.y29{bottom:122.547200pt;}
.y67{bottom:122.986240pt;}
.ye0{bottom:128.288000pt;}
.y11e{bottom:130.331520pt;}
.y96{bottom:130.993920pt;}
.y14b{bottom:133.614080pt;}
.yba{bottom:136.028160pt;}
.y28{bottom:138.547840pt;}
.y66{bottom:138.986880pt;}
.ydf{bottom:144.288640pt;}
.y174{bottom:144.433280pt;}
.y11d{bottom:146.332160pt;}
.y95{bottom:146.994560pt;}
.y14a{bottom:149.614720pt;}
.yb9{bottom:152.028800pt;}
.y27{bottom:154.548480pt;}
.y65{bottom:154.987520pt;}
.yde{bottom:160.289280pt;}
.y173{bottom:160.433920pt;}
.y94{bottom:162.995200pt;}
.y11c{bottom:167.617280pt;}
.yb8{bottom:168.029440pt;}
.y26{bottom:170.549120pt;}
.y64{bottom:170.988160pt;}
.y149{bottom:173.608320pt;}
.ydd{bottom:176.289920pt;}
.y93{bottom:178.995840pt;}
.y11b{bottom:183.617920pt;}
.yb7{bottom:184.030080pt;}
.y172{bottom:184.427520pt;}
.y25{bottom:186.549760pt;}
.y63{bottom:186.988800pt;}
.ydc{bottom:192.290560pt;}
.y131{bottom:194.996480pt;}
.y148{bottom:197.601920pt;}
.y11a{bottom:199.618560pt;}
.yb6{bottom:200.030720pt;}
.y92{bottom:200.280960pt;}
.y171{bottom:200.428160pt;}
.y24{bottom:202.550400pt;}
.y62{bottom:202.989440pt;}
.ydb{bottom:208.291200pt;}
.y130{bottom:210.997120pt;}
.y147{bottom:213.602560pt;}
.y119{bottom:215.619200pt;}
.yb5{bottom:216.031360pt;}
.y91{bottom:216.281600pt;}
.y23{bottom:218.551040pt;}
.y61{bottom:218.990080pt;}
.y170{bottom:224.421760pt;}
.y12f{bottom:226.997760pt;}
.yda{bottom:229.576320pt;}
.y118{bottom:231.619840pt;}
.yb4{bottom:232.032000pt;}
.y90{bottom:232.282240pt;}
.y22{bottom:234.551680pt;}
.y60{bottom:234.990720pt;}
.y146{bottom:237.596160pt;}
.y16f{bottom:240.422400pt;}
.y12e{bottom:242.998400pt;}
.yd9{bottom:245.576960pt;}
.y117{bottom:247.620480pt;}
.yb3{bottom:248.032640pt;}
.y8f{bottom:248.282880pt;}
.y21{bottom:250.552320pt;}
.y5f{bottom:250.991360pt;}
.y145{bottom:253.596800pt;}
.yf1{bottom:256.275840pt;}
.yd8{bottom:261.577600pt;}
.y116{bottom:263.621120pt;}
.yb2{bottom:264.033280pt;}
.y8e{bottom:264.283520pt;}
.y16e{bottom:264.416000pt;}
.y20{bottom:266.552960pt;}
.y5e{bottom:266.992000pt;}
.yf0{bottom:272.276480pt;}
.yd7{bottom:277.578240pt;}
.y144{bottom:277.590400pt;}
.y115{bottom:279.621760pt;}
.yb1{bottom:280.033920pt;}
.y8d{bottom:280.284160pt;}
.y1f{bottom:282.553600pt;}
.y5d{bottom:282.992640pt;}
.yef{bottom:288.277120pt;}
.y16d{bottom:288.409600pt;}
.yd6{bottom:293.578880pt;}
.yb0{bottom:296.034560pt;}
.y8c{bottom:296.284800pt;}
.y1e{bottom:298.554240pt;}
.y5c{bottom:298.993280pt;}
.y114{bottom:300.906880pt;}
.y143{bottom:301.584000pt;}
.yee{bottom:304.277760pt;}
.yd5{bottom:309.579520pt;}
.yaf{bottom:312.035200pt;}
.y12d{bottom:312.285440pt;}
.y16c{bottom:312.403200pt;}
.y1d{bottom:314.554880pt;}
.y5b{bottom:314.993920pt;}
.y113{bottom:316.907520pt;}
.y8b{bottom:317.569920pt;}
.y142{bottom:317.584640pt;}
.yed{bottom:320.278400pt;}
.yd4{bottom:325.580160pt;}
.yae{bottom:328.035840pt;}
.y12c{bottom:328.286080pt;}
.y16b{bottom:328.403840pt;}
.y1c{bottom:330.717440pt;}
.y5a{bottom:330.994560pt;}
.y112{bottom:332.908160pt;}
.y8a{bottom:333.570560pt;}
.yec{bottom:336.279040pt;}
.y141{bottom:341.578240pt;}
.yd3{bottom:341.580800pt;}
.y12b{bottom:344.286720pt;}
.y59{bottom:346.995200pt;}
.y111{bottom:348.908800pt;}
.yad{bottom:349.482880pt;}
.y89{bottom:349.571200pt;}
.y1b{bottom:352.002560pt;}
.yeb{bottom:352.279680pt;}
.y16a{bottom:352.397440pt;}
.y140{bottom:357.578880pt;}
.yd2{bottom:357.581440pt;}
.y58{bottom:362.995840pt;}
.y110{bottom:364.909440pt;}
.y88{bottom:365.571840pt;}
.y1a{bottom:368.003200pt;}
.yea{bottom:368.280320pt;}
.yac{bottom:370.768000pt;}
.yd1{bottom:373.582080pt;}
.y169{bottom:376.391040pt;}
.y57{bottom:378.996480pt;}
.y10f{bottom:380.910080pt;}
.y87{bottom:381.572480pt;}
.y19{bottom:384.003840pt;}
.ye9{bottom:384.280960pt;}
.yab{bottom:386.768640pt;}
.yd0{bottom:389.582720pt;}
.y168{bottom:392.391680pt;}
.y56{bottom:394.997120pt;}
.y10e{bottom:396.910720pt;}
.y86{bottom:397.573120pt;}
.y18{bottom:400.004480pt;}
.ye8{bottom:400.281600pt;}
.ycf{bottom:405.583360pt;}
.y55{bottom:410.997760pt;}
.y10d{bottom:412.911360pt;}
.y85{bottom:413.573760pt;}
.y17{bottom:416.005120pt;}
.yaa{bottom:416.208640pt;}
.ye7{bottom:416.282240pt;}
.y167{bottom:416.385280pt;}
.yce{bottom:421.584000pt;}
.y10c{bottom:428.912000pt;}
.y84{bottom:429.574400pt;}
.y16{bottom:432.005760pt;}
.y54{bottom:432.282880pt;}
.y166{bottom:432.385920pt;}
.ycd{bottom:437.584640pt;}
.ya9{bottom:437.655680pt;}
.y10b{bottom:444.912640pt;}
.y83{bottom:445.575040pt;}
.y15{bottom:448.006400pt;}
.y53{bottom:448.283520pt;}
.ycc{bottom:453.585280pt;}
.y165{bottom:456.379520pt;}
.ya8{bottom:458.940800pt;}
.y10a{bottom:460.913280pt;}
.y82{bottom:461.575680pt;}
.y52{bottom:464.284160pt;}
.ycb{bottom:469.747840pt;}
.y14{bottom:472.000000pt;}
.y164{bottom:472.380160pt;}
.y109{bottom:476.913920pt;}
.y81{bottom:477.576320pt;}
.y12a{bottom:477.738240pt;}
.ya7{bottom:480.225920pt;}
.y51{bottom:480.284800pt;}
.yca{bottom:491.032960pt;}
.y108{bottom:492.914560pt;}
.y80{bottom:493.576960pt;}
.y50{bottom:496.285440pt;}
.y163{bottom:496.373760pt;}
.y129{bottom:499.023360pt;}
.ya6{bottom:501.672960pt;}
.yc9{bottom:507.033600pt;}
.y107{bottom:508.915200pt;}
.y7f{bottom:509.577600pt;}
.y4f{bottom:512.286080pt;}
.y162{bottom:512.374400pt;}
.y128{bottom:515.024000pt;}
.y13{bottom:519.976000pt;}
.ya5{bottom:522.958080pt;}
.yc8{bottom:523.034240pt;}
.y106{bottom:524.915840pt;}
.y7e{bottom:525.578240pt;}
.y4e{bottom:528.286720pt;}
.y127{bottom:531.024640pt;}
.y161{bottom:536.368000pt;}
.yc7{bottom:539.034880pt;}
.y105{bottom:540.916480pt;}
.y7d{bottom:541.578880pt;}
.ya4{bottom:544.243200pt;}
.y4d{bottom:544.287360pt;}
.y126{bottom:547.025280pt;}
.y12{bottom:551.980800pt;}
.y160{bottom:552.368640pt;}
.y132{bottom:554.560000pt;}
.y104{bottom:556.917120pt;}
.y7c{bottom:557.579520pt;}
.y4c{bottom:560.288000pt;}
.yc6{bottom:560.320000pt;}
.y125{bottom:563.025920pt;}
.ya3{bottom:565.690240pt;}
.y11{bottom:567.983200pt;}
.y103{bottom:572.917760pt;}
.y7b{bottom:573.742080pt;}
.y4b{bottom:576.288640pt;}
.y15f{bottom:576.362240pt;}
.y124{bottom:579.026560pt;}
.yc5{bottom:581.592800pt;}
.y10{bottom:583.985600pt;}
.ya2{bottom:586.975360pt;}
.y102{bottom:588.918400pt;}
.y4a{bottom:592.289280pt;}
.y15e{bottom:592.362880pt;}
.y7a{bottom:595.027200pt;}
.yc4{bottom:597.595200pt;}
.yf{bottom:599.988000pt;}
.y101{bottom:604.919040pt;}
.ya1{bottom:608.260480pt;}
.y79{bottom:611.027840pt;}
.y49{bottom:613.574400pt;}
.yc3{bottom:613.597600pt;}
.ye{bottom:615.990400pt;}
.y15d{bottom:616.356480pt;}
.y100{bottom:620.919680pt;}
.y78{bottom:627.028480pt;}
.y48{bottom:629.575040pt;}
.ya0{bottom:629.707520pt;}
.yd{bottom:631.992800pt;}
.y15c{bottom:632.357120pt;}
.yff{bottom:636.920320pt;}
.y77{bottom:643.029120pt;}
.yc2{bottom:645.560960pt;}
.y47{bottom:645.575680pt;}
.yc{bottom:647.995200pt;}
.y9f{bottom:650.992640pt;}
.yfe{bottom:652.920960pt;}
.y15b{bottom:656.350720pt;}
.y76{bottom:659.029760pt;}
.y46{bottom:661.576320pt;}
.yc1{bottom:661.723520pt;}
.yb{bottom:663.997600pt;}
.y123{bottom:667.022720pt;}
.yfd{bottom:668.921600pt;}
.y9e{bottom:672.277760pt;}
.y15a{bottom:672.351360pt;}
.y75{bottom:675.030400pt;}
.y45{bottom:677.576960pt;}
.ya{bottom:680.000000pt;}
.yc0{bottom:683.008640pt;}
.yfc{bottom:684.922240pt;}
.y74{bottom:691.031040pt;}
.y44{bottom:693.577600pt;}
.y9d{bottom:693.724800pt;}
.y159{bottom:696.344960pt;}
.y122{bottom:699.024000pt;}
.yfb{bottom:701.084800pt;}
.ybf{bottom:704.293760pt;}
.y13f{bottom:707.031680pt;}
.ye6{bottom:709.578240pt;}
.y43{bottom:709.740160pt;}
.y158{bottom:712.345600pt;}
.y9c{bottom:715.009920pt;}
.y73{bottom:715.024640pt;}
.yfa{bottom:722.369920pt;}
.y13e{bottom:723.032320pt;}
.ye5{bottom:725.578880pt;}
.ybe{bottom:725.740800pt;}
.y9{bottom:727.994880pt;}
.y42{bottom:731.025280pt;}
.y9b{bottom:736.295040pt;}
.y157{bottom:736.339200pt;}
.y13d{bottom:739.032960pt;}
.ye4{bottom:741.741440pt;}
.yf9{bottom:743.655040pt;}
.y41{bottom:747.025920pt;}
.y8{bottom:750.557600pt;}
.y156{bottom:752.339840pt;}
.y9a{bottom:757.742080pt;}
.yf8{bottom:759.655680pt;}
.y13c{bottom:760.318080pt;}
.y40{bottom:763.026560pt;}
.y7{bottom:771.200000pt;}
.y13b{bottom:776.318720pt;}
.y155{bottom:776.333440pt;}
.y3f{bottom:779.027200pt;}
.y6{bottom:782.557600pt;}
.y13a{bottom:792.319360pt;}
.y154{bottom:792.334080pt;}
.y3e{bottom:795.027840pt;}
.y5{bottom:803.200000pt;}
.y139{bottom:808.320000pt;}
.y153{bottom:808.334720pt;}
.y72{bottom:811.028480pt;}
.y3d{bottom:816.312960pt;}
.y4{bottom:822.560000pt;}
.y138{bottom:824.320640pt;}
.y152{bottom:824.335360pt;}
.y71{bottom:827.029120pt;}
.y3c{bottom:832.313600pt;}
.y137{bottom:840.321280pt;}
.y70{bottom:843.029760pt;}
.y3b{bottom:848.314240pt;}
.y151{bottom:848.328960pt;}
.y136{bottom:856.321920pt;}
.y6f{bottom:859.030400pt;}
.y3a{bottom:864.314880pt;}
.y178{bottom:864.320000pt;}
.y150{bottom:864.329600pt;}
.y3{bottom:872.176000pt;}
.y135{bottom:872.322560pt;}
.y6e{bottom:875.031040pt;}
.y39{bottom:880.315520pt;}
.y14f{bottom:880.330240pt;}
.y6d{bottom:891.031680pt;}
.y38{bottom:896.316160pt;}
.y14e{bottom:896.330880pt;}
.y2{bottom:896.648000pt;}
.yf7{bottom:907.017600pt;}
.y6c{bottom:907.032320pt;}
.y37{bottom:912.316800pt;}
.y14d{bottom:920.324480pt;}
.y1{bottom:921.120000pt;}
.yf6{bottom:928.302720pt;}
.y36{bottom:928.317440pt;}
.y14c{bottom:936.325120pt;}
.y35{bottom:944.318080pt;}
.y2c{bottom:948.960000pt;}
.yf5{bottom:949.749760pt;}
.y177{bottom:952.325760pt;}
.y34{bottom:960.318720pt;}
.yf4{bottom:971.034880pt;}
.y33{bottom:976.319360pt;}
.y32{bottom:992.320000pt;}
.y2f{bottom:1004.157440pt;}
.y31{bottom:1008.320000pt;}
.y2e{bottom:1020.320000pt;}
.y30{bottom:1034.400000pt;}
.h4{height:33.901875pt;}
.h5{height:52.108438pt;}
.h6{height:52.128918pt;}
.h8{height:52.134375pt;}
.hc{height:52.461875pt;}
.h7{height:53.535000pt;}
.ha{height:57.787500pt;}
.hd{height:59.340000pt;}
.h3{height:60.733125pt;}
.h9{height:61.410000pt;}
.h2{height:85.785000pt;}
.hb{height:101.440000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:661.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:66.240000pt;}
.x1{left:75.520000pt;}
.x12{left:82.074880pt;}
.x11{left:88.640000pt;}
.x8{left:94.400000pt;}
.xc{left:102.442880pt;}
.x2{left:113.262080pt;}
.xb{left:126.289280pt;}
.xf{left:134.874240pt;}
.xa{left:154.720000pt;}
.xe{left:170.040160pt;}
.x5{left:248.800000pt;}
.x10{left:264.763520pt;}
.x4{left:266.880000pt;}
.x7{left:282.240000pt;}
.x6{left:372.315520pt;}
.x13{left:375.032320pt;}
.x9{left:386.720000pt;}
.xd{left:415.728640pt;}
}




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