
    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_8deddabb09593a60b7c08b65.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951000;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_cc0ed0837c43f6f815b20bcc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.721000;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_67064d08d9d7675abe177cce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_44dc972e699a48a296123389.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.915000;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_23ce916840a2f89f9d594678.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_dab4c65a5342b85baeaf3e2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.068000;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_2c44390ce134d70e6130eadc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.055000;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_e53db110ab53b636f5c626a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.071000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f4ddaa2eae45f7755e566a99.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a5c57dd02cc2ef287587e564.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f02ea26394c7fd4171729bcd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cc0ed0837c43f6f815b20bcc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_67064d08d9d7675abe177cce.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.951000;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:ffe;src:url('chunks/assets/font_f02ea26394c7fd4171729bcd.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.064000;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:fff;src:url('chunks/assets/font_8cfd708505897012a50a355c.woff2')format("woff");}.fff{font-family:fff;line-height:0.977000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.357200px;}
.v2{vertical-align:17.982000px;}
.v4{vertical-align:27.000000px;}
.ls15{letter-spacing:-7.200000px;}
.ls16{letter-spacing:-2.400000px;}
.ls4{letter-spacing:-2.214000px;}
.ls2{letter-spacing:-1.512000px;}
.lsa{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.092000px;}
.lse{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.270000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:12.600000px;}
.lsf{letter-spacing:119.562947px;}
.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;}
}
.ws6e{word-spacing:-15.552000px;}
.ws0{word-spacing:-14.688000px;}
.ws21{word-spacing:-14.580000px;}
.ws89{word-spacing:-14.544000px;}
.ws22{word-spacing:-12.582000px;}
.ws1{word-spacing:-12.420000px;}
.wsbd{word-spacing:-11.664000px;}
.ws70{word-spacing:-11.502000px;}
.ws71{word-spacing:-11.184000px;}
.ws3{word-spacing:-10.224000px;}
.wsbf{word-spacing:-9.786000px;}
.ws2{word-spacing:-9.660000px;}
.wsbe{word-spacing:-8.784000px;}
.ws23{word-spacing:-7.335306px;}
.ws24{word-spacing:-5.705238px;}
.ws1f{word-spacing:-0.858000px;}
.wsd9{word-spacing:-0.768000px;}
.ws19{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.360000px;}
.wsda{word-spacing:-0.336000px;}
.ws6{word-spacing:0.000000px;}
.ws75{word-spacing:0.054000px;}
.ws8b{word-spacing:0.144000px;}
.ws8c{word-spacing:0.216000px;}
.ws14{word-spacing:0.270000px;}
.ws8a{word-spacing:0.288000px;}
.ws8d{word-spacing:0.360000px;}
.ws7c{word-spacing:0.486000px;}
.wsc1{word-spacing:0.576000px;}
.ws36{word-spacing:0.594000px;}
.wsc7{word-spacing:0.672000px;}
.ws1e{word-spacing:0.756000px;}
.ws6d{word-spacing:0.798000px;}
.ws5{word-spacing:0.864000px;}
.wsc6{word-spacing:0.912000px;}
.ws96{word-spacing:0.918000px;}
.wscf{word-spacing:0.960000px;}
.ws3a{word-spacing:1.026000px;}
.wse9{word-spacing:1.080000px;}
.ws39{word-spacing:1.134000px;}
.ws98{word-spacing:1.188000px;}
.ws69{word-spacing:1.242000px;}
.ws5a{word-spacing:1.350000px;}
.ws35{word-spacing:1.566000px;}
.ws82{word-spacing:1.620000px;}
.ws7a{word-spacing:1.728000px;}
.wse4{word-spacing:1.782000px;}
.ws95{word-spacing:1.836000px;}
.wsf5{word-spacing:1.890000px;}
.ws4b{word-spacing:1.944000px;}
.ws6c{word-spacing:1.974000px;}
.ws87{word-spacing:1.998000px;}
.wscd{word-spacing:2.208000px;}
.ws4{word-spacing:2.214000px;}
.ws8{word-spacing:2.256000px;}
.ws80{word-spacing:2.322000px;}
.wsd5{word-spacing:2.400000px;}
.ws48{word-spacing:2.430000px;}
.ws11{word-spacing:2.460000px;}
.ws42{word-spacing:2.484000px;}
.wscc{word-spacing:2.496000px;}
.ws18{word-spacing:2.520000px;}
.ws10{word-spacing:2.538000px;}
.wsf1{word-spacing:2.646000px;}
.wse{word-spacing:2.880000px;}
.wsf8{word-spacing:2.916000px;}
.ws2e{word-spacing:3.078000px;}
.wsbb{word-spacing:3.456000px;}
.wse8{word-spacing:3.510000px;}
.wsf0{word-spacing:3.564000px;}
.ws37{word-spacing:3.672000px;}
.ws81{word-spacing:3.780000px;}
.wsdf{word-spacing:3.996000px;}
.wsbc{word-spacing:4.104000px;}
.ws7{word-spacing:4.224000px;}
.wsd3{word-spacing:4.272000px;}
.wsf7{word-spacing:4.320000px;}
.wsde{word-spacing:4.536000px;}
.ws78{word-spacing:4.590000px;}
.ws9c{word-spacing:4.698000px;}
.wsce{word-spacing:4.800000px;}
.wsc8{word-spacing:4.848000px;}
.ws99{word-spacing:4.860000px;}
.wsca{word-spacing:4.944000px;}
.ws9{word-spacing:4.968000px;}
.ws94{word-spacing:5.022000px;}
.ws4f{word-spacing:5.076000px;}
.wsa3{word-spacing:5.454000px;}
.wsd{word-spacing:5.472000px;}
.ws86{word-spacing:5.508000px;}
.ws9f{word-spacing:5.562000px;}
.ws9e{word-spacing:5.616000px;}
.ws8e{word-spacing:5.670000px;}
.ws8f{word-spacing:5.724000px;}
.wsd4{word-spacing:5.760000px;}
.ws61{word-spacing:5.778000px;}
.ws67{word-spacing:5.832000px;}
.ws3e{word-spacing:5.994000px;}
.wsd7{word-spacing:6.000000px;}
.ws3c{word-spacing:6.102000px;}
.wsba{word-spacing:6.372000px;}
.ws97{word-spacing:6.588000px;}
.ws84{word-spacing:6.696000px;}
.ws32{word-spacing:6.750000px;}
.wsb6{word-spacing:6.804000px;}
.wsed{word-spacing:6.966000px;}
.ws9d{word-spacing:7.182000px;}
.wsc2{word-spacing:7.200000px;}
.wsee{word-spacing:7.236000px;}
.ws93{word-spacing:7.398000px;}
.ws38{word-spacing:7.452000px;}
.wsdc{word-spacing:7.506000px;}
.wsb9{word-spacing:7.560000px;}
.wsd0{word-spacing:7.584000px;}
.ws5e{word-spacing:7.614000px;}
.wsef{word-spacing:7.722000px;}
.ws5f{word-spacing:7.830000px;}
.ws56{word-spacing:8.046000px;}
.ws74{word-spacing:8.100000px;}
.ws46{word-spacing:8.154000px;}
.wsaf{word-spacing:8.316000px;}
.ws59{word-spacing:8.370000px;}
.ws77{word-spacing:8.478000px;}
.wsf6{word-spacing:8.586000px;}
.ws16{word-spacing:8.640000px;}
.wsc3{word-spacing:8.736000px;}
.ws4d{word-spacing:8.748000px;}
.wsb{word-spacing:8.856000px;}
.ws51{word-spacing:8.910000px;}
.wse3{word-spacing:9.180000px;}
.wsa{word-spacing:9.216000px;}
.wsea{word-spacing:9.234000px;}
.wsae{word-spacing:9.288000px;}
.ws28{word-spacing:9.342000px;}
.wsa4{word-spacing:9.666000px;}
.ws1a{word-spacing:9.720000px;}
.wsc4{word-spacing:9.744000px;}
.wsb8{word-spacing:10.044000px;}
.wsab{word-spacing:10.152000px;}
.ws3b{word-spacing:10.368000px;}
.wsaa{word-spacing:10.422000px;}
.wsa0{word-spacing:10.800000px;}
.ws30{word-spacing:10.854000px;}
.ws9b{word-spacing:11.070000px;}
.wsa5{word-spacing:11.124000px;}
.ws9a{word-spacing:11.178000px;}
.ws45{word-spacing:11.286000px;}
.ws1d{word-spacing:11.340000px;}
.ws2d{word-spacing:11.556000px;}
.ws5c{word-spacing:11.610000px;}
.ws53{word-spacing:11.718000px;}
.ws50{word-spacing:11.826000px;}
.ws7b{word-spacing:11.934000px;}
.ws6b{word-spacing:12.366000px;}
.ws43{word-spacing:12.474000px;}
.ws57{word-spacing:12.744000px;}
.ws40{word-spacing:12.852000px;}
.ws73{word-spacing:12.960000px;}
.wsa1{word-spacing:13.068000px;}
.ws1b{word-spacing:13.176000px;}
.ws3d{word-spacing:13.284000px;}
.wsd2{word-spacing:13.632000px;}
.ws90{word-spacing:13.662000px;}
.wsd6{word-spacing:13.728000px;}
.ws44{word-spacing:13.824000px;}
.wsf4{word-spacing:13.932000px;}
.ws27{word-spacing:13.986000px;}
.ws17{word-spacing:14.040000px;}
.wse0{word-spacing:14.094000px;}
.ws68{word-spacing:14.580000px;}
.ws4e{word-spacing:14.634000px;}
.wsb2{word-spacing:14.904000px;}
.ws2a{word-spacing:14.958000px;}
.wsa9{word-spacing:15.012000px;}
.ws47{word-spacing:15.390000px;}
.ws6a{word-spacing:15.714000px;}
.ws15{word-spacing:15.768000px;}
.ws7e{word-spacing:15.822000px;}
.wsdb{word-spacing:16.224000px;}
.ws4c{word-spacing:16.362000px;}
.ws79{word-spacing:16.524000px;}
.wsdd{word-spacing:16.902000px;}
.wsb3{word-spacing:17.442000px;}
.wsd8{word-spacing:17.760000px;}
.wse7{word-spacing:17.874000px;}
.wsa6{word-spacing:17.982000px;}
.ws92{word-spacing:18.090000px;}
.wsa8{word-spacing:18.144000px;}
.wscb{word-spacing:18.192000px;}
.wsf3{word-spacing:18.306000px;}
.ws1c{word-spacing:18.900000px;}
.ws13{word-spacing:18.954000px;}
.ws5d{word-spacing:19.170000px;}
.ws4a{word-spacing:19.278000px;}
.wsb4{word-spacing:19.332000px;}
.wsb5{word-spacing:19.386000px;}
.ws85{word-spacing:19.710000px;}
.ws34{word-spacing:19.872000px;}
.ws65{word-spacing:19.980000px;}
.wsc5{word-spacing:20.016000px;}
.ws64{word-spacing:20.304000px;}
.ws7f{word-spacing:20.412000px;}
.wsac{word-spacing:20.682000px;}
.ws55{word-spacing:21.006000px;}
.wsa7{word-spacing:21.060000px;}
.ws60{word-spacing:21.870000px;}
.ws33{word-spacing:22.086000px;}
.wsa2{word-spacing:22.302000px;}
.wsb7{word-spacing:23.112000px;}
.wse5{word-spacing:23.220000px;}
.ws2c{word-spacing:23.652000px;}
.ws26{word-spacing:23.706000px;}
.ws83{word-spacing:24.084000px;}
.ws12{word-spacing:24.138000px;}
.ws3f{word-spacing:24.300000px;}
.ws29{word-spacing:24.516000px;}
.wsd1{word-spacing:24.576000px;}
.ws2b{word-spacing:24.732000px;}
.ws25{word-spacing:25.434000px;}
.wsad{word-spacing:25.488000px;}
.wsc9{word-spacing:26.016000px;}
.ws31{word-spacing:26.838000px;}
.ws76{word-spacing:26.892000px;}
.ws7d{word-spacing:27.324000px;}
.wsc{word-spacing:27.432000px;}
.ws49{word-spacing:27.594000px;}
.ws41{word-spacing:28.026000px;}
.ws54{word-spacing:28.188000px;}
.ws66{word-spacing:28.566000px;}
.ws62{word-spacing:28.620000px;}
.ws63{word-spacing:29.970000px;}
.ws5b{word-spacing:30.510000px;}
.wseb{word-spacing:32.940000px;}
.wse2{word-spacing:33.372000px;}
.wsec{word-spacing:33.534000px;}
.wse1{word-spacing:34.236000px;}
.wsb0{word-spacing:34.452000px;}
.ws58{word-spacing:35.586000px;}
.ws2f{word-spacing:36.504000px;}
.ws52{word-spacing:36.612000px;}
.ws91{word-spacing:39.204000px;}
.wsf2{word-spacing:41.850000px;}
.wse6{word-spacing:42.174000px;}
.wsb1{word-spacing:44.496000px;}
.ws72{word-spacing:395.625600px;}
.ws6f{word-spacing:430.584600px;}
.ws88{word-spacing:637.558200px;}
.ws20{word-spacing:642.598200px;}
.wsc0{word-spacing:1091.752200px;}
._22{margin-left:-57.345600px;}
._26{margin-left:-54.292733px;}
._10{margin-left:-48.501200px;}
._5{margin-left:-42.693353px;}
._e{margin-left:-37.149333px;}
._11{margin-left:-35.407800px;}
._1a{margin-left:-33.991400px;}
._23{margin-left:-30.855333px;}
._b{margin-left:-28.032400px;}
._d{margin-left:-26.298000px;}
._c{margin-left:-24.107000px;}
._16{margin-left:-19.789400px;}
._17{margin-left:-15.763933px;}
._a{margin-left:-14.179400px;}
._9{margin-left:-11.070000px;}
._f{margin-left:-9.810000px;}
._8{margin-left:-8.606200px;}
._7{margin-left:-7.200000px;}
._4{margin-left:-5.422467px;}
._6{margin-left:-3.600000px;}
._3{margin-left:-2.134600px;}
._2{margin-left:-1.066467px;}
._1{width:1.309800px;}
._0{width:2.942400px;}
._24{width:7.200000px;}
._15{width:9.774000px;}
._1b{width:11.124000px;}
._13{width:12.690000px;}
._19{width:14.688000px;}
._14{width:16.956000px;}
._25{width:18.469000px;}
._18{width:20.844000px;}
._12{width:21.924000px;}
._28{width:35.588842px;}
._21{width:38.485895px;}
._27{width:54.020842px;}
._1f{width:119.562947px;}
._29{width:125.252842px;}
._1d{width:126.298200px;}
._20{width:130.645895px;}
._1c{width:1068.951867px;}
._1e{width:1082.439867px;}
.fc6{color:rgb(189,188,188);}
.fc3{color:rgb(252,252,251);}
.fc5{color:rgb(79,76,77);}
.fc2{color:rgb(83,80,81);}
.fc4{color:rgb(164,36,47);}
.fc1{color:rgb(166,47,46);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:24.486000px;}
.fs6{font-size:30.000000px;}
.fs8{font-size:31.482000px;}
.fs2{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs4{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:50.430750px;}
.y2{bottom:50.824050px;}
.y57{bottom:97.799400px;}
.ye5{bottom:97.996350px;}
.y5{bottom:98.055750px;}
.y54{bottom:98.165850px;}
.yba{bottom:104.946300px;}
.ya3{bottom:106.298850px;}
.ye4{bottom:109.996350px;}
.y53{bottom:110.165850px;}
.y4{bottom:111.555750px;}
.yb9{bottom:111.696300px;}
.y56{bottom:115.799400px;}
.ya2{bottom:119.798850px;}
.ye3{bottom:121.996350px;}
.y3{bottom:125.055750px;}
.y52{bottom:125.662350px;}
.ya1{bottom:133.298850px;}
.y55{bottom:133.799400px;}
.ye2{bottom:133.996350px;}
.yb7{bottom:140.610150px;}
.y9e{bottom:141.962700px;}
.yb6{bottom:147.360150px;}
.y20{bottom:151.799400px;}
.yb8{bottom:154.110150px;}
.y9d{bottom:155.462700px;}
.ye1{bottom:160.500300px;}
.ya0{bottom:168.962700px;}
.y1f{bottom:169.799400px;}
.ye0{bottom:172.500300px;}
.yb4{bottom:176.274000px;}
.yb3{bottom:183.024000px;}
.ydf{bottom:184.500300px;}
.y1e{bottom:187.799400px;}
.yb5{bottom:189.774000px;}
.y9f{bottom:191.126550px;}
.yde{bottom:196.500300px;}
.y1d{bottom:205.799400px;}
.yb2{bottom:211.937850px;}
.y9c{bottom:213.290400px;}
.yb1{bottom:218.687850px;}
.y1c{bottom:223.799400px;}
.y9b{bottom:226.790400px;}
.ydd{bottom:233.344050px;}
.y1b{bottom:241.799400px;}
.y97{bottom:246.536250px;}
.ydc{bottom:246.844050px;}
.yaf{bottom:247.601850px;}
.y9a{bottom:248.954250px;}
.yae{bottom:254.351850px;}
.y1a{bottom:259.799400px;}
.y96{bottom:260.036250px;}
.ydb{bottom:260.344050px;}
.yb0{bottom:261.101850px;}
.y99{bottom:271.118250px;}
.yda{bottom:273.844050px;}
.y50{bottom:277.799400px;}
.yad{bottom:283.265700px;}
.yd9{bottom:287.344050px;}
.y98{bottom:293.282100px;}
.y4f{bottom:295.799400px;}
.yd8{bottom:300.844050px;}
.yc{bottom:302.141850px;}
.yac{bottom:306.605550px;}
.y4e{bottom:313.799400px;}
.yd7{bottom:314.344050px;}
.y95{bottom:315.445950px;}
.yb{bottom:323.141850px;}
.yd6{bottom:327.844050px;}
.yab{bottom:329.945400px;}
.y92{bottom:330.859800px;}
.y4d{bottom:331.799400px;}
.y94{bottom:337.609800px;}
.yd5{bottom:341.343900px;}
.ya{bottom:344.141850px;}
.y91{bottom:344.359800px;}
.y4c{bottom:349.799400px;}
.yd4{bottom:354.843900px;}
.y93{bottom:359.773650px;}
.y9{bottom:365.141850px;}
.y4b{bottom:367.799400px;}
.yd3{bottom:368.343900px;}
.yd2{bottom:381.843900px;}
.y90{bottom:381.937500px;}
.y4a{bottom:385.799400px;}
.y8{bottom:386.141850px;}
.yd1{bottom:395.343900px;}
.y49{bottom:403.799400px;}
.y8f{bottom:404.101350px;}
.y7{bottom:407.141850px;}
.yd0{bottom:408.843900px;}
.y8b{bottom:415.183350px;}
.y51{bottom:421.799400px;}
.ycf{bottom:422.343900px;}
.y8e{bottom:426.265200px;}
.y6{bottom:428.141850px;}
.y8a{bottom:428.683350px;}
.yce{bottom:435.843900px;}
.y48{bottom:439.799400px;}
.y8d{bottom:448.429200px;}
.ycd{bottom:449.343900px;}
.y47{bottom:457.799400px;}
.y8c{bottom:461.929200px;}
.ycc{bottom:462.843900px;}
.y18{bottom:467.896500px;}
.y46{bottom:475.799400px;}
.ycb{bottom:476.343900px;}
.y89{bottom:484.092900px;}
.y17{bottom:484.396500px;}
.y45{bottom:493.799400px;}
.y88{bottom:497.592900px;}
.yca{bottom:498.595950px;}
.y16{bottom:500.896500px;}
.y85{bottom:506.256750px;}
.y44{bottom:511.799400px;}
.yc9{bottom:512.095950px;}
.y15{bottom:517.396500px;}
.y84{bottom:519.756750px;}
.y87{bottom:519.756900px;}
.yc8{bottom:525.595950px;}
.y43{bottom:529.799400px;}
.y14{bottom:533.896500px;}
.yc7{bottom:539.095950px;}
.y86{bottom:541.920750px;}
.y42{bottom:547.799400px;}
.yc6{bottom:552.595950px;}
.y13{bottom:562.396500px;}
.y83{bottom:564.084600px;}
.y41{bottom:565.799400px;}
.yc5{bottom:566.095950px;}
.yc4{bottom:579.595950px;}
.y40{bottom:583.799400px;}
.y12{bottom:586.396500px;}
.y82{bottom:587.424450px;}
.yc3{bottom:593.095950px;}
.y3f{bottom:601.799400px;}
.y81{bottom:602.424450px;}
.yc2{bottom:606.595950px;}
.y80{bottom:617.424450px;}
.y3e{bottom:619.799400px;}
.yc1{bottom:620.095950px;}
.yd{bottom:627.091050px;}
.yc0{bottom:633.595950px;}
.y3d{bottom:637.799400px;}
.y7f{bottom:640.764300px;}
.ybf{bottom:647.095950px;}
.y3c{bottom:655.799400px;}
.ybe{bottom:660.595950px;}
.yf{bottom:661.190250px;}
.y3b{bottom:673.799400px;}
.ybd{bottom:674.095950px;}
.ybc{bottom:687.595950px;}
.y3a{bottom:691.799400px;}
.y7e{bottom:693.648450px;}
.ybb{bottom:705.347850px;}
.y7c{bottom:707.148450px;}
.ye{bottom:709.190250px;}
.y39{bottom:709.799400px;}
.y7b{bottom:720.648450px;}
.y78{bottom:727.398450px;}
.y38{bottom:727.799400px;}
.y7a{bottom:734.148450px;}
.y37{bottom:745.799400px;}
.y79{bottom:747.648450px;}
.y7d{bottom:761.148450px;}
.y36{bottom:763.799400px;}
.y77{bottom:779.060400px;}
.y35{bottom:781.799400px;}
.y76{bottom:792.560400px;}
.y34{bottom:799.799400px;}
.y75{bottom:806.060400px;}
.y19{bottom:809.295450px;}
.y71{bottom:812.810400px;}
.y33{bottom:817.799400px;}
.y74{bottom:819.560400px;}
.y73{bottom:833.060400px;}
.y32{bottom:835.799400px;}
.y72{bottom:846.560400px;}
.y31{bottom:853.799400px;}
.y70{bottom:864.472200px;}
.y6b{bottom:871.222200px;}
.y30{bottom:871.799400px;}
.y6f{bottom:877.972200px;}
.y69{bottom:884.722200px;}
.y2f{bottom:889.799400px;}
.y6e{bottom:891.472200px;}
.y68{bottom:898.222200px;}
.y6d{bottom:904.972200px;}
.y2e{bottom:907.799400px;}
.y6a{bottom:911.722200px;}
.y6c{bottom:918.472200px;}
.y2d{bottom:925.799400px;}
.y67{bottom:936.384150px;}
.y63{bottom:943.134150px;}
.y2c{bottom:943.799400px;}
.y66{bottom:949.884150px;}
.yaa{bottom:950.427450px;}
.y61{bottom:956.634150px;}
.y2b{bottom:961.799400px;}
.y65{bottom:963.384150px;}
.y62{bottom:970.134150px;}
.ya9{bottom:974.427450px;}
.y64{bottom:976.884150px;}
.y2a{bottom:979.799400px;}
.yed{bottom:982.341000px;}
.y60{bottom:994.796100px;}
.y29{bottom:997.799400px;}
.ya8{bottom:998.427450px;}
.yec{bottom:1004.505000px;}
.y5f{bottom:1008.296100px;}
.yeb{bottom:1011.255000px;}
.y5c{bottom:1015.046100px;}
.y28{bottom:1015.799400px;}
.y5e{bottom:1021.796100px;}
.ya7{bottom:1022.427450px;}
.y27{bottom:1033.799400px;}
.y5d{bottom:1035.296100px;}
.yea{bottom:1040.168850px;}
.ya6{bottom:1046.427450px;}
.ye9{bottom:1046.918850px;}
.y26{bottom:1051.799400px;}
.y5b{bottom:1059.396300px;}
.y25{bottom:1069.799400px;}
.ya5{bottom:1070.427450px;}
.ye8{bottom:1075.832700px;}
.y5a{bottom:1086.690150px;}
.y24{bottom:1087.799400px;}
.ya4{bottom:1094.427450px;}
.ye7{bottom:1099.172550px;}
.y11{bottom:1100.719950px;}
.y59{bottom:1101.690150px;}
.y23{bottom:1105.799400px;}
.y10{bottom:1122.319950px;}
.ye6{bottom:1122.512400px;}
.y58{bottom:1122.795750px;}
.y22{bottom:1123.799400px;}
.y21{bottom:1173.358500px;}
.hf{height:18.119640px;}
.ha{height:22.200000px;}
.h10{height:31.080000px;}
.h4{height:34.608000px;}
.h11{height:35.520000px;}
.h15{height:36.624000px;}
.hb{height:39.960000px;}
.he{height:41.278680px;}
.h14{height:41.856000px;}
.h9{height:43.260000px;}
.h3{height:44.442000px;}
.h8{height:47.088000px;}
.h5{height:51.840000px;}
.hc{height:52.320000px;}
.h12{height:58.680000px;}
.h2{height:59.256000px;}
.h13{height:62.520000px;}
.h7{height:63.864000px;}
.hd{height:71.604000px;}
.h6{height:162.000000px;}
.h1{height:1233.000000px;}
.h0{height:1233.075000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:61.690200px;}
.x13{left:63.816150px;}
.x28{left:70.770600px;}
.x14{left:76.529550px;}
.x11{left:82.488150px;}
.x6{left:83.985150px;}
.xf{left:85.039350px;}
.x5{left:87.113700px;}
.x29{left:88.335450px;}
.x1d{left:89.666400px;}
.x18{left:97.789350px;}
.x1c{left:103.492800px;}
.x4{left:110.793300px;}
.x2f{left:116.301300px;}
.x2a{left:123.343650px;}
.x1a{left:129.555150px;}
.x3{left:132.804300px;}
.x27{left:157.586250px;}
.x1e{left:195.590700px;}
.x30{left:245.196900px;}
.x2e{left:249.798750px;}
.x2b{left:250.918650px;}
.xb{left:360.789300px;}
.x1b{left:372.576600px;}
.x9{left:383.684400px;}
.xa{left:394.320300px;}
.xc{left:419.853300px;}
.x15{left:446.457600px;}
.x1f{left:450.515550px;}
.x16{left:459.207600px;}
.x10{left:467.784750px;}
.x24{left:473.087550px;}
.x2d{left:480.467400px;}
.x23{left:496.480800px;}
.x2c{left:506.044950px;}
.x20{left:514.426500px;}
.x21{left:532.034250px;}
.x2{left:534.897600px;}
.x8{left:564.790050px;}
.x22{left:589.979250px;}
.x25{left:598.145700px;}
.xd{left:626.560200px;}
.x26{left:684.217800px;}
.x19{left:705.670800px;}
.x7{left:741.000150px;}
.x17{left:813.597300px;}
.x1{left:815.973150px;}
.xe{left:873.706800px;}
@media print{
.v3{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.206400pt;}
.v2{vertical-align:15.984000pt;}
.v4{vertical-align:24.000000pt;}
.ls15{letter-spacing:-6.400000pt;}
.ls16{letter-spacing:-2.133333pt;}
.ls4{letter-spacing:-1.968000pt;}
.ls2{letter-spacing:-1.344000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.970667pt;}
.lse{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:11.200000pt;}
.lsf{letter-spacing:106.278175pt;}
.ws6e{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.056000pt;}
.ws21{word-spacing:-12.960000pt;}
.ws89{word-spacing:-12.928000pt;}
.ws22{word-spacing:-11.184000pt;}
.ws1{word-spacing:-11.040000pt;}
.wsbd{word-spacing:-10.368000pt;}
.ws70{word-spacing:-10.224000pt;}
.ws71{word-spacing:-9.941333pt;}
.ws3{word-spacing:-9.088000pt;}
.wsbf{word-spacing:-8.698667pt;}
.ws2{word-spacing:-8.586667pt;}
.wsbe{word-spacing:-7.808000pt;}
.ws23{word-spacing:-6.520272pt;}
.ws24{word-spacing:-5.071323pt;}
.ws1f{word-spacing:-0.762667pt;}
.wsd9{word-spacing:-0.682667pt;}
.ws19{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.320000pt;}
.wsda{word-spacing:-0.298667pt;}
.ws6{word-spacing:0.000000pt;}
.ws75{word-spacing:0.048000pt;}
.ws8b{word-spacing:0.128000pt;}
.ws8c{word-spacing:0.192000pt;}
.ws14{word-spacing:0.240000pt;}
.ws8a{word-spacing:0.256000pt;}
.ws8d{word-spacing:0.320000pt;}
.ws7c{word-spacing:0.432000pt;}
.wsc1{word-spacing:0.512000pt;}
.ws36{word-spacing:0.528000pt;}
.wsc7{word-spacing:0.597333pt;}
.ws1e{word-spacing:0.672000pt;}
.ws6d{word-spacing:0.709333pt;}
.ws5{word-spacing:0.768000pt;}
.wsc6{word-spacing:0.810667pt;}
.ws96{word-spacing:0.816000pt;}
.wscf{word-spacing:0.853333pt;}
.ws3a{word-spacing:0.912000pt;}
.wse9{word-spacing:0.960000pt;}
.ws39{word-spacing:1.008000pt;}
.ws98{word-spacing:1.056000pt;}
.ws69{word-spacing:1.104000pt;}
.ws5a{word-spacing:1.200000pt;}
.ws35{word-spacing:1.392000pt;}
.ws82{word-spacing:1.440000pt;}
.ws7a{word-spacing:1.536000pt;}
.wse4{word-spacing:1.584000pt;}
.ws95{word-spacing:1.632000pt;}
.wsf5{word-spacing:1.680000pt;}
.ws4b{word-spacing:1.728000pt;}
.ws6c{word-spacing:1.754667pt;}
.ws87{word-spacing:1.776000pt;}
.wscd{word-spacing:1.962667pt;}
.ws4{word-spacing:1.968000pt;}
.ws8{word-spacing:2.005333pt;}
.ws80{word-spacing:2.064000pt;}
.wsd5{word-spacing:2.133333pt;}
.ws48{word-spacing:2.160000pt;}
.ws11{word-spacing:2.186667pt;}
.ws42{word-spacing:2.208000pt;}
.wscc{word-spacing:2.218667pt;}
.ws18{word-spacing:2.240000pt;}
.ws10{word-spacing:2.256000pt;}
.wsf1{word-spacing:2.352000pt;}
.wse{word-spacing:2.560000pt;}
.wsf8{word-spacing:2.592000pt;}
.ws2e{word-spacing:2.736000pt;}
.wsbb{word-spacing:3.072000pt;}
.wse8{word-spacing:3.120000pt;}
.wsf0{word-spacing:3.168000pt;}
.ws37{word-spacing:3.264000pt;}
.ws81{word-spacing:3.360000pt;}
.wsdf{word-spacing:3.552000pt;}
.wsbc{word-spacing:3.648000pt;}
.ws7{word-spacing:3.754667pt;}
.wsd3{word-spacing:3.797333pt;}
.wsf7{word-spacing:3.840000pt;}
.wsde{word-spacing:4.032000pt;}
.ws78{word-spacing:4.080000pt;}
.ws9c{word-spacing:4.176000pt;}
.wsce{word-spacing:4.266667pt;}
.wsc8{word-spacing:4.309333pt;}
.ws99{word-spacing:4.320000pt;}
.wsca{word-spacing:4.394667pt;}
.ws9{word-spacing:4.416000pt;}
.ws94{word-spacing:4.464000pt;}
.ws4f{word-spacing:4.512000pt;}
.wsa3{word-spacing:4.848000pt;}
.wsd{word-spacing:4.864000pt;}
.ws86{word-spacing:4.896000pt;}
.ws9f{word-spacing:4.944000pt;}
.ws9e{word-spacing:4.992000pt;}
.ws8e{word-spacing:5.040000pt;}
.ws8f{word-spacing:5.088000pt;}
.wsd4{word-spacing:5.120000pt;}
.ws61{word-spacing:5.136000pt;}
.ws67{word-spacing:5.184000pt;}
.ws3e{word-spacing:5.328000pt;}
.wsd7{word-spacing:5.333333pt;}
.ws3c{word-spacing:5.424000pt;}
.wsba{word-spacing:5.664000pt;}
.ws97{word-spacing:5.856000pt;}
.ws84{word-spacing:5.952000pt;}
.ws32{word-spacing:6.000000pt;}
.wsb6{word-spacing:6.048000pt;}
.wsed{word-spacing:6.192000pt;}
.ws9d{word-spacing:6.384000pt;}
.wsc2{word-spacing:6.400000pt;}
.wsee{word-spacing:6.432000pt;}
.ws93{word-spacing:6.576000pt;}
.ws38{word-spacing:6.624000pt;}
.wsdc{word-spacing:6.672000pt;}
.wsb9{word-spacing:6.720000pt;}
.wsd0{word-spacing:6.741333pt;}
.ws5e{word-spacing:6.768000pt;}
.wsef{word-spacing:6.864000pt;}
.ws5f{word-spacing:6.960000pt;}
.ws56{word-spacing:7.152000pt;}
.ws74{word-spacing:7.200000pt;}
.ws46{word-spacing:7.248000pt;}
.wsaf{word-spacing:7.392000pt;}
.ws59{word-spacing:7.440000pt;}
.ws77{word-spacing:7.536000pt;}
.wsf6{word-spacing:7.632000pt;}
.ws16{word-spacing:7.680000pt;}
.wsc3{word-spacing:7.765333pt;}
.ws4d{word-spacing:7.776000pt;}
.wsb{word-spacing:7.872000pt;}
.ws51{word-spacing:7.920000pt;}
.wse3{word-spacing:8.160000pt;}
.wsa{word-spacing:8.192000pt;}
.wsea{word-spacing:8.208000pt;}
.wsae{word-spacing:8.256000pt;}
.ws28{word-spacing:8.304000pt;}
.wsa4{word-spacing:8.592000pt;}
.ws1a{word-spacing:8.640000pt;}
.wsc4{word-spacing:8.661333pt;}
.wsb8{word-spacing:8.928000pt;}
.wsab{word-spacing:9.024000pt;}
.ws3b{word-spacing:9.216000pt;}
.wsaa{word-spacing:9.264000pt;}
.wsa0{word-spacing:9.600000pt;}
.ws30{word-spacing:9.648000pt;}
.ws9b{word-spacing:9.840000pt;}
.wsa5{word-spacing:9.888000pt;}
.ws9a{word-spacing:9.936000pt;}
.ws45{word-spacing:10.032000pt;}
.ws1d{word-spacing:10.080000pt;}
.ws2d{word-spacing:10.272000pt;}
.ws5c{word-spacing:10.320000pt;}
.ws53{word-spacing:10.416000pt;}
.ws50{word-spacing:10.512000pt;}
.ws7b{word-spacing:10.608000pt;}
.ws6b{word-spacing:10.992000pt;}
.ws43{word-spacing:11.088000pt;}
.ws57{word-spacing:11.328000pt;}
.ws40{word-spacing:11.424000pt;}
.ws73{word-spacing:11.520000pt;}
.wsa1{word-spacing:11.616000pt;}
.ws1b{word-spacing:11.712000pt;}
.ws3d{word-spacing:11.808000pt;}
.wsd2{word-spacing:12.117333pt;}
.ws90{word-spacing:12.144000pt;}
.wsd6{word-spacing:12.202667pt;}
.ws44{word-spacing:12.288000pt;}
.wsf4{word-spacing:12.384000pt;}
.ws27{word-spacing:12.432000pt;}
.ws17{word-spacing:12.480000pt;}
.wse0{word-spacing:12.528000pt;}
.ws68{word-spacing:12.960000pt;}
.ws4e{word-spacing:13.008000pt;}
.wsb2{word-spacing:13.248000pt;}
.ws2a{word-spacing:13.296000pt;}
.wsa9{word-spacing:13.344000pt;}
.ws47{word-spacing:13.680000pt;}
.ws6a{word-spacing:13.968000pt;}
.ws15{word-spacing:14.016000pt;}
.ws7e{word-spacing:14.064000pt;}
.wsdb{word-spacing:14.421333pt;}
.ws4c{word-spacing:14.544000pt;}
.ws79{word-spacing:14.688000pt;}
.wsdd{word-spacing:15.024000pt;}
.wsb3{word-spacing:15.504000pt;}
.wsd8{word-spacing:15.786667pt;}
.wse7{word-spacing:15.888000pt;}
.wsa6{word-spacing:15.984000pt;}
.ws92{word-spacing:16.080000pt;}
.wsa8{word-spacing:16.128000pt;}
.wscb{word-spacing:16.170667pt;}
.wsf3{word-spacing:16.272000pt;}
.ws1c{word-spacing:16.800000pt;}
.ws13{word-spacing:16.848000pt;}
.ws5d{word-spacing:17.040000pt;}
.ws4a{word-spacing:17.136000pt;}
.wsb4{word-spacing:17.184000pt;}
.wsb5{word-spacing:17.232000pt;}
.ws85{word-spacing:17.520000pt;}
.ws34{word-spacing:17.664000pt;}
.ws65{word-spacing:17.760000pt;}
.wsc5{word-spacing:17.792000pt;}
.ws64{word-spacing:18.048000pt;}
.ws7f{word-spacing:18.144000pt;}
.wsac{word-spacing:18.384000pt;}
.ws55{word-spacing:18.672000pt;}
.wsa7{word-spacing:18.720000pt;}
.ws60{word-spacing:19.440000pt;}
.ws33{word-spacing:19.632000pt;}
.wsa2{word-spacing:19.824000pt;}
.wsb7{word-spacing:20.544000pt;}
.wse5{word-spacing:20.640000pt;}
.ws2c{word-spacing:21.024000pt;}
.ws26{word-spacing:21.072000pt;}
.ws83{word-spacing:21.408000pt;}
.ws12{word-spacing:21.456000pt;}
.ws3f{word-spacing:21.600000pt;}
.ws29{word-spacing:21.792000pt;}
.wsd1{word-spacing:21.845333pt;}
.ws2b{word-spacing:21.984000pt;}
.ws25{word-spacing:22.608000pt;}
.wsad{word-spacing:22.656000pt;}
.wsc9{word-spacing:23.125333pt;}
.ws31{word-spacing:23.856000pt;}
.ws76{word-spacing:23.904000pt;}
.ws7d{word-spacing:24.288000pt;}
.wsc{word-spacing:24.384000pt;}
.ws49{word-spacing:24.528000pt;}
.ws41{word-spacing:24.912000pt;}
.ws54{word-spacing:25.056000pt;}
.ws66{word-spacing:25.392000pt;}
.ws62{word-spacing:25.440000pt;}
.ws63{word-spacing:26.640000pt;}
.ws5b{word-spacing:27.120000pt;}
.wseb{word-spacing:29.280000pt;}
.wse2{word-spacing:29.664000pt;}
.wsec{word-spacing:29.808000pt;}
.wse1{word-spacing:30.432000pt;}
.wsb0{word-spacing:30.624000pt;}
.ws58{word-spacing:31.632000pt;}
.ws2f{word-spacing:32.448000pt;}
.ws52{word-spacing:32.544000pt;}
.ws91{word-spacing:34.848000pt;}
.wsf2{word-spacing:37.200000pt;}
.wse6{word-spacing:37.488000pt;}
.wsb1{word-spacing:39.552000pt;}
.ws72{word-spacing:351.667200pt;}
.ws6f{word-spacing:382.741867pt;}
.ws88{word-spacing:566.718400pt;}
.ws20{word-spacing:571.198400pt;}
.wsc0{word-spacing:970.446400pt;}
._22{margin-left:-50.973867pt;}
._26{margin-left:-48.260207pt;}
._10{margin-left:-43.112178pt;}
._5{margin-left:-37.949647pt;}
._e{margin-left:-33.021630pt;}
._11{margin-left:-31.473600pt;}
._1a{margin-left:-30.214578pt;}
._23{margin-left:-27.426963pt;}
._b{margin-left:-24.917689pt;}
._d{margin-left:-23.376000pt;}
._c{margin-left:-21.428444pt;}
._16{margin-left:-17.590578pt;}
._17{margin-left:-14.012385pt;}
._a{margin-left:-12.603911pt;}
._9{margin-left:-9.840000pt;}
._f{margin-left:-8.720000pt;}
._8{margin-left:-7.649956pt;}
._7{margin-left:-6.400000pt;}
._4{margin-left:-4.819970pt;}
._6{margin-left:-3.200000pt;}
._3{margin-left:-1.897422pt;}
._2{margin-left:-0.947970pt;}
._1{width:1.164267pt;}
._0{width:2.615467pt;}
._24{width:6.400000pt;}
._15{width:8.688000pt;}
._1b{width:9.888000pt;}
._13{width:11.280000pt;}
._19{width:13.056000pt;}
._14{width:15.072000pt;}
._25{width:16.416889pt;}
._18{width:18.528000pt;}
._12{width:19.488000pt;}
._28{width:31.634526pt;}
._21{width:34.209684pt;}
._27{width:48.018526pt;}
._1f{width:106.278175pt;}
._29{width:111.335860pt;}
._1d{width:112.265067pt;}
._20{width:116.129684pt;}
._1c{width:950.179437pt;}
._1e{width:962.168770pt;}
.fs9{font-size:21.765333pt;}
.fs6{font-size:26.666667pt;}
.fs8{font-size:27.984000pt;}
.fs2{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs4{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:44.827333pt;}
.y2{bottom:45.176933pt;}
.y57{bottom:86.932800pt;}
.ye5{bottom:87.107867pt;}
.y5{bottom:87.160667pt;}
.y54{bottom:87.258533pt;}
.yba{bottom:93.285600pt;}
.ya3{bottom:94.487867pt;}
.ye4{bottom:97.774533pt;}
.y53{bottom:97.925200pt;}
.y4{bottom:99.160667pt;}
.yb9{bottom:99.285600pt;}
.y56{bottom:102.932800pt;}
.ya2{bottom:106.487867pt;}
.ye3{bottom:108.441200pt;}
.y3{bottom:111.160667pt;}
.y52{bottom:111.699867pt;}
.ya1{bottom:118.487867pt;}
.y55{bottom:118.932800pt;}
.ye2{bottom:119.107867pt;}
.yb7{bottom:124.986800pt;}
.y9e{bottom:126.189067pt;}
.yb6{bottom:130.986800pt;}
.y20{bottom:134.932800pt;}
.yb8{bottom:136.986800pt;}
.y9d{bottom:138.189067pt;}
.ye1{bottom:142.666933pt;}
.ya0{bottom:150.189067pt;}
.y1f{bottom:150.932800pt;}
.ye0{bottom:153.333600pt;}
.yb4{bottom:156.688000pt;}
.yb3{bottom:162.688000pt;}
.ydf{bottom:164.000267pt;}
.y1e{bottom:166.932800pt;}
.yb5{bottom:168.688000pt;}
.y9f{bottom:169.890267pt;}
.yde{bottom:174.666933pt;}
.y1d{bottom:182.932800pt;}
.yb2{bottom:188.389200pt;}
.y9c{bottom:189.591467pt;}
.yb1{bottom:194.389200pt;}
.y1c{bottom:198.932800pt;}
.y9b{bottom:201.591467pt;}
.ydd{bottom:207.416933pt;}
.y1b{bottom:214.932800pt;}
.y97{bottom:219.143333pt;}
.ydc{bottom:219.416933pt;}
.yaf{bottom:220.090533pt;}
.y9a{bottom:221.292667pt;}
.yae{bottom:226.090533pt;}
.y1a{bottom:230.932800pt;}
.y96{bottom:231.143333pt;}
.ydb{bottom:231.416933pt;}
.yb0{bottom:232.090533pt;}
.y99{bottom:240.994000pt;}
.yda{bottom:243.416933pt;}
.y50{bottom:246.932800pt;}
.yad{bottom:251.791733pt;}
.yd9{bottom:255.416933pt;}
.y98{bottom:260.695200pt;}
.y4f{bottom:262.932800pt;}
.yd8{bottom:267.416933pt;}
.yc{bottom:268.570533pt;}
.yac{bottom:272.538267pt;}
.y4e{bottom:278.932800pt;}
.yd7{bottom:279.416933pt;}
.y95{bottom:280.396400pt;}
.yb{bottom:287.237200pt;}
.yd6{bottom:291.416933pt;}
.yab{bottom:293.284800pt;}
.y92{bottom:294.097600pt;}
.y4d{bottom:294.932800pt;}
.y94{bottom:300.097600pt;}
.yd5{bottom:303.416800pt;}
.ya{bottom:305.903867pt;}
.y91{bottom:306.097600pt;}
.y4c{bottom:310.932800pt;}
.yd4{bottom:315.416800pt;}
.y93{bottom:319.798800pt;}
.y9{bottom:324.570533pt;}
.y4b{bottom:326.932800pt;}
.yd3{bottom:327.416800pt;}
.yd2{bottom:339.416800pt;}
.y90{bottom:339.500000pt;}
.y4a{bottom:342.932800pt;}
.y8{bottom:343.237200pt;}
.yd1{bottom:351.416800pt;}
.y49{bottom:358.932800pt;}
.y8f{bottom:359.201200pt;}
.y7{bottom:361.903867pt;}
.yd0{bottom:363.416800pt;}
.y8b{bottom:369.051867pt;}
.y51{bottom:374.932800pt;}
.ycf{bottom:375.416800pt;}
.y8e{bottom:378.902400pt;}
.y6{bottom:380.570533pt;}
.y8a{bottom:381.051867pt;}
.yce{bottom:387.416800pt;}
.y48{bottom:390.932800pt;}
.y8d{bottom:398.603733pt;}
.ycd{bottom:399.416800pt;}
.y47{bottom:406.932800pt;}
.y8c{bottom:410.603733pt;}
.ycc{bottom:411.416800pt;}
.y18{bottom:415.908000pt;}
.y46{bottom:422.932800pt;}
.ycb{bottom:423.416800pt;}
.y89{bottom:430.304800pt;}
.y17{bottom:430.574667pt;}
.y45{bottom:438.932800pt;}
.y88{bottom:442.304800pt;}
.yca{bottom:443.196400pt;}
.y16{bottom:445.241333pt;}
.y85{bottom:450.006000pt;}
.y44{bottom:454.932800pt;}
.yc9{bottom:455.196400pt;}
.y15{bottom:459.908000pt;}
.y84{bottom:462.006000pt;}
.y87{bottom:462.006133pt;}
.yc8{bottom:467.196400pt;}
.y43{bottom:470.932800pt;}
.y14{bottom:474.574667pt;}
.yc7{bottom:479.196400pt;}
.y86{bottom:481.707333pt;}
.y42{bottom:486.932800pt;}
.yc6{bottom:491.196400pt;}
.y13{bottom:499.908000pt;}
.y83{bottom:501.408533pt;}
.y41{bottom:502.932800pt;}
.yc5{bottom:503.196400pt;}
.yc4{bottom:515.196400pt;}
.y40{bottom:518.932800pt;}
.y12{bottom:521.241333pt;}
.y82{bottom:522.155067pt;}
.yc3{bottom:527.196400pt;}
.y3f{bottom:534.932800pt;}
.y81{bottom:535.488400pt;}
.yc2{bottom:539.196400pt;}
.y80{bottom:548.821733pt;}
.y3e{bottom:550.932800pt;}
.yc1{bottom:551.196400pt;}
.yd{bottom:557.414267pt;}
.yc0{bottom:563.196400pt;}
.y3d{bottom:566.932800pt;}
.y7f{bottom:569.568267pt;}
.ybf{bottom:575.196400pt;}
.y3c{bottom:582.932800pt;}
.ybe{bottom:587.196400pt;}
.yf{bottom:587.724667pt;}
.y3b{bottom:598.932800pt;}
.ybd{bottom:599.196400pt;}
.ybc{bottom:611.196400pt;}
.y3a{bottom:614.932800pt;}
.y7e{bottom:616.576400pt;}
.ybb{bottom:626.975867pt;}
.y7c{bottom:628.576400pt;}
.ye{bottom:630.391333pt;}
.y39{bottom:630.932800pt;}
.y7b{bottom:640.576400pt;}
.y78{bottom:646.576400pt;}
.y38{bottom:646.932800pt;}
.y7a{bottom:652.576400pt;}
.y37{bottom:662.932800pt;}
.y79{bottom:664.576400pt;}
.y7d{bottom:676.576400pt;}
.y36{bottom:678.932800pt;}
.y77{bottom:692.498133pt;}
.y35{bottom:694.932800pt;}
.y76{bottom:704.498133pt;}
.y34{bottom:710.932800pt;}
.y75{bottom:716.498133pt;}
.y19{bottom:719.373733pt;}
.y71{bottom:722.498133pt;}
.y33{bottom:726.932800pt;}
.y74{bottom:728.498133pt;}
.y73{bottom:740.498133pt;}
.y32{bottom:742.932800pt;}
.y72{bottom:752.498133pt;}
.y31{bottom:758.932800pt;}
.y70{bottom:768.419733pt;}
.y6b{bottom:774.419733pt;}
.y30{bottom:774.932800pt;}
.y6f{bottom:780.419733pt;}
.y69{bottom:786.419733pt;}
.y2f{bottom:790.932800pt;}
.y6e{bottom:792.419733pt;}
.y68{bottom:798.419733pt;}
.y6d{bottom:804.419733pt;}
.y2e{bottom:806.932800pt;}
.y6a{bottom:810.419733pt;}
.y6c{bottom:816.419733pt;}
.y2d{bottom:822.932800pt;}
.y67{bottom:832.341467pt;}
.y63{bottom:838.341467pt;}
.y2c{bottom:838.932800pt;}
.y66{bottom:844.341467pt;}
.yaa{bottom:844.824400pt;}
.y61{bottom:850.341467pt;}
.y2b{bottom:854.932800pt;}
.y65{bottom:856.341467pt;}
.y62{bottom:862.341467pt;}
.ya9{bottom:866.157733pt;}
.y64{bottom:868.341467pt;}
.y2a{bottom:870.932800pt;}
.yed{bottom:873.192000pt;}
.y60{bottom:884.263200pt;}
.y29{bottom:886.932800pt;}
.ya8{bottom:887.491067pt;}
.yec{bottom:892.893333pt;}
.y5f{bottom:896.263200pt;}
.yeb{bottom:898.893333pt;}
.y5c{bottom:902.263200pt;}
.y28{bottom:902.932800pt;}
.y5e{bottom:908.263200pt;}
.ya7{bottom:908.824400pt;}
.y27{bottom:918.932800pt;}
.y5d{bottom:920.263200pt;}
.yea{bottom:924.594533pt;}
.ya6{bottom:930.157733pt;}
.ye9{bottom:930.594533pt;}
.y26{bottom:934.932800pt;}
.y5b{bottom:941.685600pt;}
.y25{bottom:950.932800pt;}
.ya5{bottom:951.491067pt;}
.ye8{bottom:956.295733pt;}
.y5a{bottom:965.946800pt;}
.y24{bottom:966.932800pt;}
.ya4{bottom:972.824400pt;}
.ye7{bottom:977.042267pt;}
.y11{bottom:978.417733pt;}
.y59{bottom:979.280133pt;}
.y23{bottom:982.932800pt;}
.y10{bottom:997.617733pt;}
.ye6{bottom:997.788800pt;}
.y58{bottom:998.040667pt;}
.y22{bottom:998.932800pt;}
.y21{bottom:1042.985333pt;}
.hf{height:16.106347pt;}
.ha{height:19.733333pt;}
.h10{height:27.626667pt;}
.h4{height:30.762667pt;}
.h11{height:31.573333pt;}
.h15{height:32.554667pt;}
.hb{height:35.520000pt;}
.he{height:36.692160pt;}
.h14{height:37.205333pt;}
.h9{height:38.453333pt;}
.h3{height:39.504000pt;}
.h8{height:41.856000pt;}
.h5{height:46.080000pt;}
.hc{height:46.506667pt;}
.h12{height:52.160000pt;}
.h2{height:52.672000pt;}
.h13{height:55.573333pt;}
.h7{height:56.768000pt;}
.hd{height:63.648000pt;}
.h6{height:144.000000pt;}
.h1{height:1096.000000pt;}
.h0{height:1096.066667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:54.835733pt;}
.x13{left:56.725467pt;}
.x28{left:62.907200pt;}
.x14{left:68.026267pt;}
.x11{left:73.322800pt;}
.x6{left:74.653467pt;}
.xf{left:75.590533pt;}
.x5{left:77.434400pt;}
.x29{left:78.520400pt;}
.x1d{left:79.703467pt;}
.x18{left:86.923867pt;}
.x1c{left:91.993600pt;}
.x4{left:98.482933pt;}
.x2f{left:103.378933pt;}
.x2a{left:109.638800pt;}
.x1a{left:115.160133pt;}
.x3{left:118.048267pt;}
.x27{left:140.076667pt;}
.x1e{left:173.858400pt;}
.x30{left:217.952800pt;}
.x2e{left:222.043333pt;}
.x2b{left:223.038800pt;}
.xb{left:320.701600pt;}
.x1b{left:331.179200pt;}
.x9{left:341.052800pt;}
.xa{left:350.506933pt;}
.xc{left:373.202933pt;}
.x15{left:396.851200pt;}
.x1f{left:400.458267pt;}
.x16{left:408.184533pt;}
.x10{left:415.808667pt;}
.x24{left:420.522267pt;}
.x2d{left:427.082133pt;}
.x23{left:441.316267pt;}
.x2c{left:449.817733pt;}
.x20{left:457.268000pt;}
.x21{left:472.919333pt;}
.x2{left:475.464533pt;}
.x8{left:502.035600pt;}
.x22{left:524.426000pt;}
.x25{left:531.685067pt;}
.xd{left:556.942400pt;}
.x26{left:608.193600pt;}
.x19{left:627.262933pt;}
.x7{left:658.666800pt;}
.x17{left:723.197600pt;}
.x1{left:725.309467pt;}
.xe{left:776.628267pt;}
}




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