
    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_4a409acaae25472e448cf4b8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_80618508007373fa44f2e7a2.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c86630f0b5e0e6754802ee37.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_5653f2fbfd7d233c697a922a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_602d81f39087f92b64813a69.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_fb4a0206a50e4a4191047f9f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_cc8dec2920470f4108951851.woff')format("woff");}.ffa{font-family:ffa;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5b08aeff446bf2390f8f054d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.067383;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_76721004b8c225e7c7aaff77.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fec3217e1202e6174c086382.woff')format("woff");}.ffd{font-family:ffd;line-height:0.976562;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_d5e3d297e2ccedd52987d13d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_750ca31c9d9c2a20c04df548.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;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:ff10;src:url('chunks/assets/font_5cbd6bf95ea468658c887ca7.woff')format("woff");}.ff10{font-family:ff10;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.227256,0.000000,0.000001,0.250000,0,0);-ms-transform:matrix(0.227256,0.000000,0.000001,0.250000,0,0);-webkit-transform:matrix(0.227256,0.000000,0.000001,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);}
.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);}
.v2{vertical-align:-20.880000px;}
.v5{vertical-align:-12.240000px;}
.v3{vertical-align:-5.760000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.va{vertical-align:5.040000px;}
.v6{vertical-align:12.240000px;}
.vc{vertical-align:14.400000px;}
.v9{vertical-align:17.280000px;}
.vb{vertical-align:19.440000px;}
.vd{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:36.000000px;}
.ls34{letter-spacing:-4.062000px;}
.ls3b{letter-spacing:-3.960000px;}
.ls3c{letter-spacing:-1.800000px;}
.ls5{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.258000px;}
.ls2e{letter-spacing:-0.206400px;}
.ls35{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls29{letter-spacing:-0.052560px;}
.ls24{letter-spacing:-0.008640px;}
.ls36{letter-spacing:-0.004320px;}
.ls4{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.070560px;}
.ls2a{letter-spacing:0.087000px;}
.ls2b{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.111360px;}
.ls1a{letter-spacing:0.135360px;}
.ls19{letter-spacing:0.135600px;}
.ls6{letter-spacing:0.149760px;}
.ls30{letter-spacing:0.153600px;}
.ls28{letter-spacing:0.154800px;}
.lsf{letter-spacing:0.179280px;}
.ls18{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.214560px;}
.ls0{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls33{letter-spacing:0.298800px;}
.ls1d{letter-spacing:0.300960px;}
.ls1e{letter-spacing:0.315360px;}
.ls1{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.365760px;}
.ls3a{letter-spacing:0.439920px;}
.ls15{letter-spacing:0.444720px;}
.ls27{letter-spacing:0.462000px;}
.ls17{letter-spacing:0.468720px;}
.ls8{letter-spacing:0.513600px;}
.ls7{letter-spacing:0.666000px;}
.ls2c{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.900000px;}
.ls37{letter-spacing:0.979920px;}
.lsb{letter-spacing:1.080000px;}
.ls11{letter-spacing:2.332800px;}
.ls14{letter-spacing:2.460960px;}
.ls16{letter-spacing:3.180960px;}
.ls39{letter-spacing:16.506720px;}
.ls12{letter-spacing:19.020960px;}
.ls13{letter-spacing:19.740960px;}
.ls9{letter-spacing:46.026720px;}
.ls23{letter-spacing:49.626720px;}
.ls2{letter-spacing:57.029760px;}
.ls20{letter-spacing:91.526160px;}
.ls1c{letter-spacing:91.550160px;}
.ls1f{letter-spacing:92.270160px;}
.ls22{letter-spacing:134.586720px;}
.ls2f{letter-spacing:137.466720px;}
.lse{letter-spacing:151.146720px;}
.ls31{letter-spacing:154.026720px;}
.lsc{letter-spacing:167.706720px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws23{word-spacing:-15.453600px;}
.ws6{word-spacing:-15.300000px;}
.ws21{word-spacing:-15.238800px;}
.ws25{word-spacing:-15.199800px;}
.ws20{word-spacing:-15.093600px;}
.ws1f{word-spacing:-15.046800px;}
.ws26{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws22{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.580000px;}
.ws13{word-spacing:-13.302000px;}
.ws16{word-spacing:-13.234200px;}
.wsc{word-spacing:-13.147200px;}
.ws28{word-spacing:-13.140000px;}
.ws14{word-spacing:-13.094640px;}
.ws27{word-spacing:-10.980000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws24{word-spacing:-9.715680px;}
.wsa{word-spacing:-9.711360px;}
.ws1d{word-spacing:-9.649200px;}
.ws17{word-spacing:-9.187200px;}
.wsb{word-spacing:-8.929200px;}
.ws12{word-spacing:-2.646720px;}
.ws1e{word-spacing:-0.187920px;}
.ws7{word-spacing:0.000000px;}
.ws1b{word-spacing:0.532080px;}
.ws1c{word-spacing:4.754640px;}
.ws11{word-spacing:5.354640px;}
.wsf{word-spacing:7.514640px;}
.ws1a{word-spacing:8.028000px;}
.ws10{word-spacing:8.234640px;}
.wse{word-spacing:8.954640px;}
.wsd{word-spacing:11.114640px;}
.ws15{word-spacing:12.554640px;}
.ws18{word-spacing:109.193760px;}
.ws19{word-spacing:118.553760px;}
._19{margin-left:-8.451360px;}
._18{margin-left:-7.052160px;}
._6{margin-left:-5.961600px;}
._f{margin-left:-4.860720px;}
._7{margin-left:-3.594240px;}
._8{margin-left:-2.428320px;}
._2{margin-left:-1.008000px;}
._0{width:1.111680px;}
._9{width:2.864160px;}
._a{width:4.044720px;}
._10{width:5.062560px;}
._d{width:6.149760px;}
._b{width:7.880400px;}
._c{width:8.951760px;}
._e{width:10.090560px;}
._4{width:11.959680px;}
._17{width:13.820400px;}
._16{width:15.999840px;}
._15{width:17.748720px;}
._3{width:19.732320px;}
._5{width:20.968320px;}
._28{width:22.908960px;}
._29{width:24.122160px;}
._14{width:26.501040px;}
._13{width:27.788400px;}
._2a{width:30.161040px;}
._24{width:32.891760px;}
._23{width:34.321680px;}
._25{width:35.640720px;}
._26{width:36.754320px;}
._27{width:38.568720px;}
._1e{width:40.003200px;}
._1d{width:41.355840px;}
._1c{width:51.110640px;}
._1b{width:52.588800px;}
._11{width:57.846720px;}
._21{width:60.378720px;}
._20{width:99.759600px;}
._1f{width:116.233200px;}
._12{width:143.364240px;}
._1a{width:182.447280px;}
._22{width:199.508160px;}
._1{width:1100.028000px;}
.fc6{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:77.008470px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.y15b{bottom:4.960402px;}
.y3c{bottom:5.760000px;}
.yc5{bottom:5.940000px;}
.yfc{bottom:6.660000px;}
.yfe{bottom:6.840000px;}
.y7{bottom:8.100000px;}
.yce{bottom:8.640000px;}
.y3a{bottom:10.980000px;}
.yfa{bottom:12.780000px;}
.yc9{bottom:13.140000px;}
.y111{bottom:19.800000px;}
.y4a{bottom:25.560000px;}
.y117{bottom:25.590000px;}
.yc4{bottom:25.740000px;}
.y14b{bottom:25.785000px;}
.y159{bottom:26.850000px;}
.ycd{bottom:28.440000px;}
.y39{bottom:30.780000px;}
.yc8{bottom:32.940000px;}
.y6{bottom:36.000000px;}
.y115{bottom:39.600000px;}
.y118{bottom:39.630000px;}
.y113{bottom:39.780000px;}
.y49{bottom:45.360000px;}
.yc3{bottom:45.540000px;}
.y143{bottom:45.570000px;}
.ycc{bottom:48.240000px;}
.y38{bottom:50.760000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.y48{bottom:65.340000px;}
.y157{bottom:65.370000px;}
.y37{bottom:70.560000px;}
.yb1{bottom:79.776000px;}
.y29{bottom:80.316000px;}
.y4{bottom:81.720000px;}
.y47{bottom:85.140000px;}
.yd2{bottom:85.176000px;}
.yf8{bottom:86.616000px;}
.y36{bottom:90.390000px;}
.y12e{bottom:91.476000px;}
.y154{bottom:91.836000px;}
.y173{bottom:93.276000px;}
.y82{bottom:95.616000px;}
.yb0{bottom:99.576000px;}
.y28{bottom:100.296000px;}
.y46{bottom:104.970000px;}
.yd1{bottom:104.976000px;}
.yc2{bottom:105.120000px;}
.yf7{bottom:106.416000px;}
.y9{bottom:108.570000px;}
.y35{bottom:110.190000px;}
.y12d{bottom:111.276000px;}
.y153{bottom:111.636000px;}
.y172{bottom:113.076000px;}
.y81{bottom:115.416000px;}
.y3{bottom:118.110000px;}
.yaf{bottom:119.376000px;}
.y27{bottom:120.096000px;}
.y45{bottom:124.770000px;}
.yd0{bottom:124.776000px;}
.yf6{bottom:126.216000px;}
.y34{bottom:129.990000px;}
.y8{bottom:130.530000px;}
.y152{bottom:131.436000px;}
.y171{bottom:133.056000px;}
.y80{bottom:135.216000px;}
.yae{bottom:139.176000px;}
.y26{bottom:139.896000px;}
.y44{bottom:144.570000px;}
.ycf{bottom:144.576000px;}
.yf5{bottom:146.016000px;}
.y33{bottom:149.970000px;}
.y12c{bottom:151.050000px;}
.y151{bottom:151.230000px;}
.y170{bottom:152.850000px;}
.y7f{bottom:155.010000px;}
.yad{bottom:158.970000px;}
.ycb{bottom:159.330000px;}
.y25{bottom:159.690000px;}
.y43{bottom:164.550000px;}
.yf4{bottom:165.810000px;}
.y32{bottom:169.770000px;}
.y150{bottom:171.210000px;}
.y16f{bottom:172.650000px;}
.y7e{bottom:174.810000px;}
.yac{bottom:178.950000px;}
.y24{bottom:179.490000px;}
.y42{bottom:184.350000px;}
.yf3{bottom:185.790000px;}
.y14f{bottom:185.970000px;}
.y31{bottom:189.570000px;}
.y12a{bottom:191.370000px;}
.y16e{bottom:192.450000px;}
.y7d{bottom:194.790000px;}
.y23{bottom:199.470000px;}
.y41{bottom:204.150000px;}
.yf2{bottom:205.590000px;}
.yab{bottom:207.750000px;}
.y30{bottom:209.370000px;}
.y12b{bottom:211.350000px;}
.y16d{bottom:212.250000px;}
.y7c{bottom:214.590000px;}
.y22{bottom:219.270000px;}
.yca{bottom:221.610000px;}
.y40{bottom:223.950000px;}
.yf1{bottom:225.390000px;}
.y14e{bottom:225.570000px;}
.yaa{bottom:227.550000px;}
.y2f{bottom:229.170000px;}
.y16c{bottom:232.230000px;}
.y7b{bottom:234.390000px;}
.y129{bottom:237.630000px;}
.y21{bottom:239.070000px;}
.y3f{bottom:243.750000px;}
.yf0{bottom:245.190000px;}
.y14d{bottom:245.370000px;}
.ya9{bottom:247.350000px;}
.y2e{bottom:249.150000px;}
.y16b{bottom:252.030000px;}
.y7a{bottom:254.190000px;}
.y128{bottom:257.430000px;}
.y20{bottom:258.870000px;}
.y3e{bottom:263.730000px;}
.yef{bottom:264.990000px;}
.ya8{bottom:267.150000px;}
.y2d{bottom:268.950000px;}
.y16a{bottom:271.830000px;}
.y79{bottom:273.990000px;}
.y127{bottom:277.230000px;}
.y1f{bottom:278.670000px;}
.y3d{bottom:283.530000px;}
.yee{bottom:284.970000px;}
.y14c{bottom:285.150000px;}
.ya7{bottom:287.130000px;}
.y2c{bottom:288.750000px;}
.y169{bottom:291.630000px;}
.y78{bottom:293.970000px;}
.y126{bottom:297.210000px;}
.y1e{bottom:298.650000px;}
.yc7{bottom:300.990000px;}
.yed{bottom:304.770000px;}
.ya6{bottom:306.930000px;}
.y2b{bottom:308.550000px;}
.y168{bottom:311.430000px;}
.y77{bottom:313.770000px;}
.y125{bottom:317.010000px;}
.y1d{bottom:318.450000px;}
.yec{bottom:324.570000px;}
.y14a{bottom:324.750000px;}
.ya5{bottom:326.730000px;}
.y167{bottom:331.410000px;}
.y76{bottom:333.570000px;}
.y124{bottom:336.855000px;}
.y1c{bottom:338.295000px;}
.yeb{bottom:344.415000px;}
.yc6{bottom:348.015000px;}
.y166{bottom:351.255000px;}
.y75{bottom:353.415000px;}
.ya4{bottom:355.575000px;}
.y123{bottom:356.655000px;}
.y1b{bottom:358.095000px;}
.yea{bottom:364.215000px;}
.y149{bottom:364.575000px;}
.y165{bottom:371.055000px;}
.y74{bottom:373.215000px;}
.ya3{bottom:375.375000px;}
.y122{bottom:376.455000px;}
.y1a{bottom:377.895000px;}
.ye9{bottom:384.195000px;}
.y164{bottom:390.855000px;}
.y73{bottom:393.195000px;}
.ya2{bottom:395.355000px;}
.y121{bottom:396.435000px;}
.y19{bottom:397.875000px;}
.ye8{bottom:403.995000px;}
.y148{bottom:404.175000px;}
.yc1{bottom:407.415000px;}
.y163{bottom:410.655000px;}
.y72{bottom:412.995000px;}
.y120{bottom:416.235000px;}
.y18{bottom:417.675000px;}
.ye7{bottom:423.795000px;}
.ya1{bottom:424.155000px;}
.y162{bottom:430.635000px;}
.y71{bottom:432.795000px;}
.y11f{bottom:436.035000px;}
.y17{bottom:437.475000px;}
.ye6{bottom:443.595000px;}
.y147{bottom:443.775000px;}
.ya0{bottom:443.955000px;}
.y161{bottom:450.435000px;}
.y70{bottom:452.595000px;}
.y11e{bottom:455.835000px;}
.y16{bottom:457.275000px;}
.ye5{bottom:463.395000px;}
.y9f{bottom:463.755000px;}
.y160{bottom:470.235000px;}
.y6f{bottom:472.395000px;}
.y11d{bottom:475.635000px;}
.y15{bottom:477.075000px;}
.y9e{bottom:481.215000px;}
.ye4{bottom:483.375000px;}
.y146{bottom:483.555000px;}
.y9c{bottom:485.535000px;}
.y15f{bottom:490.035000px;}
.y6e{bottom:492.375000px;}
.y9d{bottom:493.095000px;}
.y11c{bottom:495.615000px;}
.y14{bottom:497.055000px;}
.ye3{bottom:503.175000px;}
.y145{bottom:503.355000px;}
.y9b{bottom:505.515000px;}
.y99{bottom:509.835000px;}
.y6d{bottom:512.175000px;}
.y11b{bottom:515.415000px;}
.y2a{bottom:516.315000px;}
.y9a{bottom:517.395000px;}
.ye2{bottom:522.975000px;}
.y144{bottom:523.875000px;}
.yc0{bottom:527.295000px;}
.y15e{bottom:529.815000px;}
.y6c{bottom:531.975000px;}
.y11a{bottom:535.215000px;}
.ye1{bottom:542.775000px;}
.y15d{bottom:549.615000px;}
.y119{bottom:549.975000px;}
.y6b{bottom:551.775000px;}
.ye0{bottom:562.575000px;}
.y15c{bottom:569.415000px;}
.y6a{bottom:571.575000px;}
.ybf{bottom:573.555000px;}
.ydf{bottom:582.555000px;}
.y142{bottom:583.455000px;}
.y156{bottom:584.175000px;}
.y116{bottom:589.755000px;}
.y69{bottom:591.555000px;}
.ybe{bottom:593.355000px;}
.yde{bottom:602.355000px;}
.y15a{bottom:606.540000px;}
.y68{bottom:611.385000px;}
.ybd{bottom:613.185000px;}
.ydd{bottom:622.185000px;}
.y114{bottom:629.385000px;}
.y67{bottom:631.185000px;}
.y98{bottom:631.365000px;}
.ybc{bottom:632.985000px;}
.ydc{bottom:641.985000px;}
.y141{bottom:643.065000px;}
.y158{bottom:643.785000px;}
.y66{bottom:650.985000px;}
.y97{bottom:651.345000px;}
.ybb{bottom:652.785000px;}
.ydb{bottom:661.785000px;}
.y155{bottom:664.305000px;}
.y112{bottom:668.985000px;}
.y65{bottom:670.785000px;}
.y96{bottom:671.145000px;}
.yba{bottom:672.765000px;}
.yda{bottom:681.765000px;}
.y64{bottom:690.765000px;}
.y95{bottom:691.125000px;}
.yb9{bottom:692.565000px;}
.yd9{bottom:701.565000px;}
.y140{bottom:702.465000px;}
.y110{bottom:708.765000px;}
.y63{bottom:710.565000px;}
.y94{bottom:710.925000px;}
.yb8{bottom:712.365000px;}
.yd8{bottom:721.365000px;}
.y10f{bottom:729.285000px;}
.y62{bottom:730.365000px;}
.y93{bottom:730.905000px;}
.yb7{bottom:741.165000px;}
.y61{bottom:750.165000px;}
.y92{bottom:751.245000px;}
.y10e{bottom:755.745000px;}
.yb6{bottom:760.965000px;}
.y13f{bottom:762.045000px;}
.y60{bottom:769.965000px;}
.y91{bottom:771.225000px;}
.y10d{bottom:775.545000px;}
.yb5{bottom:780.945000px;}
.y5f{bottom:789.945000px;}
.y90{bottom:791.025000px;}
.y10c{bottom:795.345000px;}
.yb4{bottom:800.745000px;}
.y5e{bottom:809.745000px;}
.y8f{bottom:810.825000px;}
.y10b{bottom:815.145000px;}
.y3b{bottom:819.105000px;}
.yb3{bottom:820.545000px;}
.y13d{bottom:822.165000px;}
.y5d{bottom:829.545000px;}
.y8e{bottom:830.625000px;}
.y10a{bottom:835.125000px;}
.yb2{bottom:840.345000px;}
.y13e{bottom:842.145000px;}
.y5c{bottom:849.345000px;}
.y8d{bottom:850.605000px;}
.y13{bottom:852.585000px;}
.y109{bottom:854.925000px;}
.yd7{bottom:860.145000px;}
.y13c{bottom:868.425000px;}
.y5b{bottom:869.145000px;}
.y8c{bottom:870.405000px;}
.y108{bottom:874.770000px;}
.y12{bottom:877.650000px;}
.yd6{bottom:880.170000px;}
.y13b{bottom:888.270000px;}
.y5a{bottom:889.170000px;}
.y8b{bottom:890.430000px;}
.y107{bottom:894.570000px;}
.y11{bottom:897.450000px;}
.yd5{bottom:899.970000px;}
.y13a{bottom:908.250000px;}
.y59{bottom:908.970000px;}
.y8a{bottom:910.410000px;}
.y106{bottom:914.370000px;}
.y10{bottom:917.250000px;}
.yd4{bottom:919.770000px;}
.y139{bottom:928.050000px;}
.y58{bottom:928.770000px;}
.y89{bottom:930.390000px;}
.yf{bottom:932.550000px;}
.y105{bottom:934.350000px;}
.yd3{bottom:939.570000px;}
.y138{bottom:947.850000px;}
.y57{bottom:948.570000px;}
.ye{bottom:953.790000px;}
.y104{bottom:954.150000px;}
.y88{bottom:959.370000px;}
.y137{bottom:967.650000px;}
.y56{bottom:968.370000px;}
.y103{bottom:973.950000px;}
.yd{bottom:977.190000px;}
.y87{bottom:979.350000px;}
.y136{bottom:987.450000px;}
.y55{bottom:988.350000px;}
.y102{bottom:993.750000px;}
.y86{bottom:999.150000px;}
.y135{bottom:1007.430000px;}
.y54{bottom:1008.150000px;}
.y101{bottom:1008.510000px;}
.yc{bottom:1009.050000px;}
.y85{bottom:1018.950000px;}
.y134{bottom:1027.230000px;}
.y53{bottom:1027.950000px;}
.y100{bottom:1029.390000px;}
.ya{bottom:1035.870000px;}
.y84{bottom:1038.750000px;}
.y133{bottom:1047.030000px;}
.y52{bottom:1047.750000px;}
.yff{bottom:1050.270000px;}
.y1{bottom:1052.250000px;}
.y83{bottom:1058.550000px;}
.y132{bottom:1066.830000px;}
.y51{bottom:1067.550000px;}
.yfd{bottom:1071.150000px;}
.y131{bottom:1081.590000px;}
.y50{bottom:1087.530000px;}
.yfb{bottom:1092.030000px;}
.y4f{bottom:1107.330000px;}
.yf9{bottom:1113.630000px;}
.y130{bottom:1121.370000px;}
.y4e{bottom:1127.130000px;}
.y4d{bottom:1146.960000px;}
.y12f{bottom:1161.000000px;}
.y4c{bottom:1166.760000px;}
.y4b{bottom:1195.740000px;}
.h28{height:19.425404px;}
.hf{height:19.800000px;}
.h23{height:19.980000px;}
.h1f{height:20.700000px;}
.h20{height:20.880000px;}
.h1e{height:26.856000px;}
.h14{height:35.357344px;}
.hb{height:37.771172px;}
.h17{height:39.600000px;}
.h22{height:39.636000px;}
.h21{height:39.780000px;}
.h26{height:39.816000px;}
.h18{height:42.164648px;}
.h1b{height:47.016000px;}
.h29{height:53.469748px;}
.hd{height:53.573906px;}
.h2b{height:58.621992px;}
.h9{height:58.651172px;}
.h1a{height:59.400000px;}
.h24{height:59.580000px;}
.h2a{height:59.614102px;}
.h25{height:59.616000px;}
.hc{height:60.226875px;}
.h16{height:61.423863px;}
.h11{height:62.211094px;}
.h1d{height:62.280000px;}
.ha{height:65.846250px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h6{height:70.664062px;}
.h3{height:73.722656px;}
.h15{height:75.931172px;}
.h1c{height:79.380000px;}
.h27{height:79.416000px;}
.h12{height:86.597578px;}
.h13{height:94.651172px;}
.h8{height:96.508125px;}
.h4{height:105.060586px;}
.h19{height:119.160000px;}
.h2{height:156.630000px;}
.h10{height:297.570000px;}
.he{height:322.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2d{width:24.825516px;}
.w26{width:42.156000px;}
.w28{width:66.600000px;}
.we{width:73.296000px;}
.w29{width:73.476000px;}
.w8{width:74.556000px;}
.w2a{width:79.920000px;}
.wd{width:83.700000px;}
.w13{width:86.400000px;}
.w15{width:87.120000px;}
.w1b{width:91.296000px;}
.w18{width:93.996000px;}
.w1d{width:94.500000px;}
.w12{width:98.496000px;}
.w11{width:98.640000px;}
.w14{width:101.016000px;}
.w1e{width:101.160000px;}
.wf{width:101.700000px;}
.w19{width:102.096000px;}
.wb{width:106.236000px;}
.w17{width:107.280000px;}
.w10{width:108.576000px;}
.w20{width:116.100000px;}
.wc{width:117.216000px;}
.w25{width:117.360000px;}
.w21{width:118.836000px;}
.w16{width:127.476000px;}
.w2{width:127.656000px;}
.w1f{width:131.796000px;}
.w9{width:138.060000px;}
.w24{width:154.830000px;}
.w4{width:157.140000px;}
.w1a{width:232.950000px;}
.w1c{width:234.930000px;}
.w2b{width:240.330000px;}
.w22{width:255.675000px;}
.w27{width:261.390000px;}
.w2c{width:266.610000px;}
.w6{width:285.555000px;}
.wa{width:361.695000px;}
.w7{width:494.715000px;}
.w3{width:499.785000px;}
.w23{width:506.775000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:2.647572px;}
.x6{left:8.100000px;}
.x3a{left:28.259987px;}
.x4{left:34.020000px;}
.x11{left:47.700000px;}
.x1{left:54.000000px;}
.x2b{left:65.340000px;}
.x24{left:68.580000px;}
.xc{left:80.999987px;}
.x38{left:82.259987px;}
.x30{left:106.776000px;}
.x23{left:108.035987px;}
.x39{left:109.295987px;}
.x7{left:110.385000px;}
.x2{left:115.950000px;}
.x35{left:117.036000px;}
.x12{left:122.256000px;}
.xb{left:123.695987px;}
.x2c{left:127.830000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x1d{left:144.936000px;}
.xf{left:146.915987px;}
.x16{left:162.029987px;}
.x17{left:164.370000px;}
.xd{left:167.069987px;}
.x25{left:170.670000px;}
.x3{left:181.650000px;}
.x1e{left:231.330000px;}
.x18{left:248.070000px;}
.x13{left:260.310000px;}
.x29{left:271.830000px;}
.xe{left:295.994987px;}
.x10{left:299.414987px;}
.x19{left:321.375000px;}
.x1f{left:332.355000px;}
.xa{left:342.795000px;}
.x31{left:368.175000px;}
.x26{left:403.635000px;}
.x20{left:419.475000px;}
.x1a{left:423.075000px;}
.x32{left:434.775000px;}
.x2d{left:475.845000px;}
.x27{left:494.925000px;}
.x33{left:508.245000px;}
.x1b{left:531.645000px;}
.x21{left:546.945000px;}
.x34{left:588.165000px;}
.x2e{left:593.205000px;}
.x2a{left:611.025000px;}
.x14{left:622.005000px;}
.x1c{left:630.285000px;}
.x22{left:654.225000px;}
.x9{left:681.450000px;}
.x2f{left:710.430000px;}
.x15{left:728.250000px;}
.x28{left:729.870000px;}
.x36{left:795.314919px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-10.880000pt;}
.v3{vertical-align:-5.120000pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.va{vertical-align:4.480000pt;}
.v6{vertical-align:10.880000pt;}
.vc{vertical-align:12.800000pt;}
.v9{vertical-align:15.360000pt;}
.vb{vertical-align:17.280000pt;}
.vd{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:32.000000pt;}
.ls34{letter-spacing:-3.610667pt;}
.ls3b{letter-spacing:-3.520000pt;}
.ls3c{letter-spacing:-1.600000pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.229333pt;}
.ls2e{letter-spacing:-0.183467pt;}
.ls35{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls29{letter-spacing:-0.046720pt;}
.ls24{letter-spacing:-0.007680pt;}
.ls36{letter-spacing:-0.003840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.062720pt;}
.ls2a{letter-spacing:0.077333pt;}
.ls2b{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.098987pt;}
.ls1a{letter-spacing:0.120320pt;}
.ls19{letter-spacing:0.120533pt;}
.ls6{letter-spacing:0.133120pt;}
.ls30{letter-spacing:0.136533pt;}
.ls28{letter-spacing:0.137600pt;}
.lsf{letter-spacing:0.159360pt;}
.ls18{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.190720pt;}
.ls0{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls33{letter-spacing:0.265600pt;}
.ls1d{letter-spacing:0.267520pt;}
.ls1e{letter-spacing:0.280320pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.325120pt;}
.ls3a{letter-spacing:0.391040pt;}
.ls15{letter-spacing:0.395307pt;}
.ls27{letter-spacing:0.410667pt;}
.ls17{letter-spacing:0.416640pt;}
.ls8{letter-spacing:0.456533pt;}
.ls7{letter-spacing:0.592000pt;}
.ls2c{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.800000pt;}
.ls37{letter-spacing:0.871040pt;}
.lsb{letter-spacing:0.960000pt;}
.ls11{letter-spacing:2.073600pt;}
.ls14{letter-spacing:2.187520pt;}
.ls16{letter-spacing:2.827520pt;}
.ls39{letter-spacing:14.672640pt;}
.ls12{letter-spacing:16.907520pt;}
.ls13{letter-spacing:17.547520pt;}
.ls9{letter-spacing:40.912640pt;}
.ls23{letter-spacing:44.112640pt;}
.ls2{letter-spacing:50.693120pt;}
.ls20{letter-spacing:81.356587pt;}
.ls1c{letter-spacing:81.377920pt;}
.ls1f{letter-spacing:82.017920pt;}
.ls22{letter-spacing:119.632640pt;}
.ls2f{letter-spacing:122.192640pt;}
.lse{letter-spacing:134.352640pt;}
.ls31{letter-spacing:136.912640pt;}
.lsc{letter-spacing:149.072640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws23{word-spacing:-13.736533pt;}
.ws6{word-spacing:-13.600000pt;}
.ws21{word-spacing:-13.545600pt;}
.ws25{word-spacing:-13.510933pt;}
.ws20{word-spacing:-13.416533pt;}
.ws1f{word-spacing:-13.374933pt;}
.ws26{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws22{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws13{word-spacing:-11.824000pt;}
.ws16{word-spacing:-11.763733pt;}
.wsc{word-spacing:-11.686400pt;}
.ws28{word-spacing:-11.680000pt;}
.ws14{word-spacing:-11.639680pt;}
.ws27{word-spacing:-9.760000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws24{word-spacing:-8.636160pt;}
.wsa{word-spacing:-8.632320pt;}
.ws1d{word-spacing:-8.577067pt;}
.ws17{word-spacing:-8.166400pt;}
.wsb{word-spacing:-7.937067pt;}
.ws12{word-spacing:-2.352640pt;}
.ws1e{word-spacing:-0.167040pt;}
.ws7{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.472960pt;}
.ws1c{word-spacing:4.226347pt;}
.ws11{word-spacing:4.759680pt;}
.wsf{word-spacing:6.679680pt;}
.ws1a{word-spacing:7.136000pt;}
.ws10{word-spacing:7.319680pt;}
.wse{word-spacing:7.959680pt;}
.wsd{word-spacing:9.879680pt;}
.ws15{word-spacing:11.159680pt;}
.ws18{word-spacing:97.061120pt;}
.ws19{word-spacing:105.381120pt;}
._19{margin-left:-7.512320pt;}
._18{margin-left:-6.268587pt;}
._6{margin-left:-5.299200pt;}
._f{margin-left:-4.320640pt;}
._7{margin-left:-3.194880pt;}
._8{margin-left:-2.158507pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.988160pt;}
._9{width:2.545920pt;}
._a{width:3.595307pt;}
._10{width:4.500053pt;}
._d{width:5.466453pt;}
._b{width:7.004800pt;}
._c{width:7.957120pt;}
._e{width:8.969387pt;}
._4{width:10.630827pt;}
._17{width:12.284800pt;}
._16{width:14.222080pt;}
._15{width:15.776640pt;}
._3{width:17.539840pt;}
._5{width:18.638507pt;}
._28{width:20.363520pt;}
._29{width:21.441920pt;}
._14{width:23.556480pt;}
._13{width:24.700800pt;}
._2a{width:26.809813pt;}
._24{width:29.237120pt;}
._23{width:30.508160pt;}
._25{width:31.680640pt;}
._26{width:32.670507pt;}
._27{width:34.283307pt;}
._1e{width:35.558400pt;}
._1d{width:36.760747pt;}
._1c{width:45.431680pt;}
._1b{width:46.745600pt;}
._11{width:51.419307pt;}
._21{width:53.669973pt;}
._20{width:88.675200pt;}
._1f{width:103.318400pt;}
._12{width:127.434880pt;}
._1a{width:162.175360pt;}
._22{width:177.340587pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:68.451974pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.y15b{bottom:4.409246pt;}
.y3c{bottom:5.120000pt;}
.yc5{bottom:5.280000pt;}
.yfc{bottom:5.920000pt;}
.yfe{bottom:6.080000pt;}
.y7{bottom:7.200000pt;}
.yce{bottom:7.680000pt;}
.y3a{bottom:9.760000pt;}
.yfa{bottom:11.360000pt;}
.yc9{bottom:11.680000pt;}
.y111{bottom:17.600000pt;}
.y4a{bottom:22.720000pt;}
.y117{bottom:22.746667pt;}
.yc4{bottom:22.880000pt;}
.y14b{bottom:22.920000pt;}
.y159{bottom:23.866667pt;}
.ycd{bottom:25.280000pt;}
.y39{bottom:27.360000pt;}
.yc8{bottom:29.280000pt;}
.y6{bottom:32.000000pt;}
.y115{bottom:35.200000pt;}
.y118{bottom:35.226667pt;}
.y113{bottom:35.360000pt;}
.y49{bottom:40.320000pt;}
.yc3{bottom:40.480000pt;}
.y143{bottom:40.506667pt;}
.ycc{bottom:42.880000pt;}
.y38{bottom:45.120000pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.y48{bottom:58.080000pt;}
.y157{bottom:58.106667pt;}
.y37{bottom:62.720000pt;}
.yb1{bottom:70.912000pt;}
.y29{bottom:71.392000pt;}
.y4{bottom:72.640000pt;}
.y47{bottom:75.680000pt;}
.yd2{bottom:75.712000pt;}
.yf8{bottom:76.992000pt;}
.y36{bottom:80.346667pt;}
.y12e{bottom:81.312000pt;}
.y154{bottom:81.632000pt;}
.y173{bottom:82.912000pt;}
.y82{bottom:84.992000pt;}
.yb0{bottom:88.512000pt;}
.y28{bottom:89.152000pt;}
.y46{bottom:93.306667pt;}
.yd1{bottom:93.312000pt;}
.yc2{bottom:93.440000pt;}
.yf7{bottom:94.592000pt;}
.y9{bottom:96.506667pt;}
.y35{bottom:97.946667pt;}
.y12d{bottom:98.912000pt;}
.y153{bottom:99.232000pt;}
.y172{bottom:100.512000pt;}
.y81{bottom:102.592000pt;}
.y3{bottom:104.986667pt;}
.yaf{bottom:106.112000pt;}
.y27{bottom:106.752000pt;}
.y45{bottom:110.906667pt;}
.yd0{bottom:110.912000pt;}
.yf6{bottom:112.192000pt;}
.y34{bottom:115.546667pt;}
.y8{bottom:116.026667pt;}
.y152{bottom:116.832000pt;}
.y171{bottom:118.272000pt;}
.y80{bottom:120.192000pt;}
.yae{bottom:123.712000pt;}
.y26{bottom:124.352000pt;}
.y44{bottom:128.506667pt;}
.ycf{bottom:128.512000pt;}
.yf5{bottom:129.792000pt;}
.y33{bottom:133.306667pt;}
.y12c{bottom:134.266667pt;}
.y151{bottom:134.426667pt;}
.y170{bottom:135.866667pt;}
.y7f{bottom:137.786667pt;}
.yad{bottom:141.306667pt;}
.ycb{bottom:141.626667pt;}
.y25{bottom:141.946667pt;}
.y43{bottom:146.266667pt;}
.yf4{bottom:147.386667pt;}
.y32{bottom:150.906667pt;}
.y150{bottom:152.186667pt;}
.y16f{bottom:153.466667pt;}
.y7e{bottom:155.386667pt;}
.yac{bottom:159.066667pt;}
.y24{bottom:159.546667pt;}
.y42{bottom:163.866667pt;}
.yf3{bottom:165.146667pt;}
.y14f{bottom:165.306667pt;}
.y31{bottom:168.506667pt;}
.y12a{bottom:170.106667pt;}
.y16e{bottom:171.066667pt;}
.y7d{bottom:173.146667pt;}
.y23{bottom:177.306667pt;}
.y41{bottom:181.466667pt;}
.yf2{bottom:182.746667pt;}
.yab{bottom:184.666667pt;}
.y30{bottom:186.106667pt;}
.y12b{bottom:187.866667pt;}
.y16d{bottom:188.666667pt;}
.y7c{bottom:190.746667pt;}
.y22{bottom:194.906667pt;}
.yca{bottom:196.986667pt;}
.y40{bottom:199.066667pt;}
.yf1{bottom:200.346667pt;}
.y14e{bottom:200.506667pt;}
.yaa{bottom:202.266667pt;}
.y2f{bottom:203.706667pt;}
.y16c{bottom:206.426667pt;}
.y7b{bottom:208.346667pt;}
.y129{bottom:211.226667pt;}
.y21{bottom:212.506667pt;}
.y3f{bottom:216.666667pt;}
.yf0{bottom:217.946667pt;}
.y14d{bottom:218.106667pt;}
.ya9{bottom:219.866667pt;}
.y2e{bottom:221.466667pt;}
.y16b{bottom:224.026667pt;}
.y7a{bottom:225.946667pt;}
.y128{bottom:228.826667pt;}
.y20{bottom:230.106667pt;}
.y3e{bottom:234.426667pt;}
.yef{bottom:235.546667pt;}
.ya8{bottom:237.466667pt;}
.y2d{bottom:239.066667pt;}
.y16a{bottom:241.626667pt;}
.y79{bottom:243.546667pt;}
.y127{bottom:246.426667pt;}
.y1f{bottom:247.706667pt;}
.y3d{bottom:252.026667pt;}
.yee{bottom:253.306667pt;}
.y14c{bottom:253.466667pt;}
.ya7{bottom:255.226667pt;}
.y2c{bottom:256.666667pt;}
.y169{bottom:259.226667pt;}
.y78{bottom:261.306667pt;}
.y126{bottom:264.186667pt;}
.y1e{bottom:265.466667pt;}
.yc7{bottom:267.546667pt;}
.yed{bottom:270.906667pt;}
.ya6{bottom:272.826667pt;}
.y2b{bottom:274.266667pt;}
.y168{bottom:276.826667pt;}
.y77{bottom:278.906667pt;}
.y125{bottom:281.786667pt;}
.y1d{bottom:283.066667pt;}
.yec{bottom:288.506667pt;}
.y14a{bottom:288.666667pt;}
.ya5{bottom:290.426667pt;}
.y167{bottom:294.586667pt;}
.y76{bottom:296.506667pt;}
.y124{bottom:299.426667pt;}
.y1c{bottom:300.706667pt;}
.yeb{bottom:306.146667pt;}
.yc6{bottom:309.346667pt;}
.y166{bottom:312.226667pt;}
.y75{bottom:314.146667pt;}
.ya4{bottom:316.066667pt;}
.y123{bottom:317.026667pt;}
.y1b{bottom:318.306667pt;}
.yea{bottom:323.746667pt;}
.y149{bottom:324.066667pt;}
.y165{bottom:329.826667pt;}
.y74{bottom:331.746667pt;}
.ya3{bottom:333.666667pt;}
.y122{bottom:334.626667pt;}
.y1a{bottom:335.906667pt;}
.ye9{bottom:341.506667pt;}
.y164{bottom:347.426667pt;}
.y73{bottom:349.506667pt;}
.ya2{bottom:351.426667pt;}
.y121{bottom:352.386667pt;}
.y19{bottom:353.666667pt;}
.ye8{bottom:359.106667pt;}
.y148{bottom:359.266667pt;}
.yc1{bottom:362.146667pt;}
.y163{bottom:365.026667pt;}
.y72{bottom:367.106667pt;}
.y120{bottom:369.986667pt;}
.y18{bottom:371.266667pt;}
.ye7{bottom:376.706667pt;}
.ya1{bottom:377.026667pt;}
.y162{bottom:382.786667pt;}
.y71{bottom:384.706667pt;}
.y11f{bottom:387.586667pt;}
.y17{bottom:388.866667pt;}
.ye6{bottom:394.306667pt;}
.y147{bottom:394.466667pt;}
.ya0{bottom:394.626667pt;}
.y161{bottom:400.386667pt;}
.y70{bottom:402.306667pt;}
.y11e{bottom:405.186667pt;}
.y16{bottom:406.466667pt;}
.ye5{bottom:411.906667pt;}
.y9f{bottom:412.226667pt;}
.y160{bottom:417.986667pt;}
.y6f{bottom:419.906667pt;}
.y11d{bottom:422.786667pt;}
.y15{bottom:424.066667pt;}
.y9e{bottom:427.746667pt;}
.ye4{bottom:429.666667pt;}
.y146{bottom:429.826667pt;}
.y9c{bottom:431.586667pt;}
.y15f{bottom:435.586667pt;}
.y6e{bottom:437.666667pt;}
.y9d{bottom:438.306667pt;}
.y11c{bottom:440.546667pt;}
.y14{bottom:441.826667pt;}
.ye3{bottom:447.266667pt;}
.y145{bottom:447.426667pt;}
.y9b{bottom:449.346667pt;}
.y99{bottom:453.186667pt;}
.y6d{bottom:455.266667pt;}
.y11b{bottom:458.146667pt;}
.y2a{bottom:458.946667pt;}
.y9a{bottom:459.906667pt;}
.ye2{bottom:464.866667pt;}
.y144{bottom:465.666667pt;}
.yc0{bottom:468.706667pt;}
.y15e{bottom:470.946667pt;}
.y6c{bottom:472.866667pt;}
.y11a{bottom:475.746667pt;}
.ye1{bottom:482.466667pt;}
.y15d{bottom:488.546667pt;}
.y119{bottom:488.866667pt;}
.y6b{bottom:490.466667pt;}
.ye0{bottom:500.066667pt;}
.y15c{bottom:506.146667pt;}
.y6a{bottom:508.066667pt;}
.ybf{bottom:509.826667pt;}
.ydf{bottom:517.826667pt;}
.y142{bottom:518.626667pt;}
.y156{bottom:519.266667pt;}
.y116{bottom:524.226667pt;}
.y69{bottom:525.826667pt;}
.ybe{bottom:527.426667pt;}
.yde{bottom:535.426667pt;}
.y15a{bottom:539.146667pt;}
.y68{bottom:543.453333pt;}
.ybd{bottom:545.053333pt;}
.ydd{bottom:553.053333pt;}
.y114{bottom:559.453333pt;}
.y67{bottom:561.053333pt;}
.y98{bottom:561.213333pt;}
.ybc{bottom:562.653333pt;}
.ydc{bottom:570.653333pt;}
.y141{bottom:571.613333pt;}
.y158{bottom:572.253333pt;}
.y66{bottom:578.653333pt;}
.y97{bottom:578.973333pt;}
.ybb{bottom:580.253333pt;}
.ydb{bottom:588.253333pt;}
.y155{bottom:590.493333pt;}
.y112{bottom:594.653333pt;}
.y65{bottom:596.253333pt;}
.y96{bottom:596.573333pt;}
.yba{bottom:598.013333pt;}
.yda{bottom:606.013333pt;}
.y64{bottom:614.013333pt;}
.y95{bottom:614.333333pt;}
.yb9{bottom:615.613333pt;}
.yd9{bottom:623.613333pt;}
.y140{bottom:624.413333pt;}
.y110{bottom:630.013333pt;}
.y63{bottom:631.613333pt;}
.y94{bottom:631.933333pt;}
.yb8{bottom:633.213333pt;}
.yd8{bottom:641.213333pt;}
.y10f{bottom:648.253333pt;}
.y62{bottom:649.213333pt;}
.y93{bottom:649.693333pt;}
.yb7{bottom:658.813333pt;}
.y61{bottom:666.813333pt;}
.y92{bottom:667.773333pt;}
.y10e{bottom:671.773333pt;}
.yb6{bottom:676.413333pt;}
.y13f{bottom:677.373333pt;}
.y60{bottom:684.413333pt;}
.y91{bottom:685.533333pt;}
.y10d{bottom:689.373333pt;}
.yb5{bottom:694.173333pt;}
.y5f{bottom:702.173333pt;}
.y90{bottom:703.133333pt;}
.y10c{bottom:706.973333pt;}
.yb4{bottom:711.773333pt;}
.y5e{bottom:719.773333pt;}
.y8f{bottom:720.733333pt;}
.y10b{bottom:724.573333pt;}
.y3b{bottom:728.093333pt;}
.yb3{bottom:729.373333pt;}
.y13d{bottom:730.813333pt;}
.y5d{bottom:737.373333pt;}
.y8e{bottom:738.333333pt;}
.y10a{bottom:742.333333pt;}
.yb2{bottom:746.973333pt;}
.y13e{bottom:748.573333pt;}
.y5c{bottom:754.973333pt;}
.y8d{bottom:756.093333pt;}
.y13{bottom:757.853333pt;}
.y109{bottom:759.933333pt;}
.yd7{bottom:764.573333pt;}
.y13c{bottom:771.933333pt;}
.y5b{bottom:772.573333pt;}
.y8c{bottom:773.693333pt;}
.y108{bottom:777.573333pt;}
.y12{bottom:780.133333pt;}
.yd6{bottom:782.373333pt;}
.y13b{bottom:789.573333pt;}
.y5a{bottom:790.373333pt;}
.y8b{bottom:791.493333pt;}
.y107{bottom:795.173333pt;}
.y11{bottom:797.733333pt;}
.yd5{bottom:799.973333pt;}
.y13a{bottom:807.333333pt;}
.y59{bottom:807.973333pt;}
.y8a{bottom:809.253333pt;}
.y106{bottom:812.773333pt;}
.y10{bottom:815.333333pt;}
.yd4{bottom:817.573333pt;}
.y139{bottom:824.933333pt;}
.y58{bottom:825.573333pt;}
.y89{bottom:827.013333pt;}
.yf{bottom:828.933333pt;}
.y105{bottom:830.533333pt;}
.yd3{bottom:835.173333pt;}
.y138{bottom:842.533333pt;}
.y57{bottom:843.173333pt;}
.ye{bottom:847.813333pt;}
.y104{bottom:848.133333pt;}
.y88{bottom:852.773333pt;}
.y137{bottom:860.133333pt;}
.y56{bottom:860.773333pt;}
.y103{bottom:865.733333pt;}
.yd{bottom:868.613333pt;}
.y87{bottom:870.533333pt;}
.y136{bottom:877.733333pt;}
.y55{bottom:878.533333pt;}
.y102{bottom:883.333333pt;}
.y86{bottom:888.133333pt;}
.y135{bottom:895.493333pt;}
.y54{bottom:896.133333pt;}
.y101{bottom:896.453333pt;}
.yc{bottom:896.933333pt;}
.y85{bottom:905.733333pt;}
.y134{bottom:913.093333pt;}
.y53{bottom:913.733333pt;}
.y100{bottom:915.013333pt;}
.ya{bottom:920.773333pt;}
.y84{bottom:923.333333pt;}
.y133{bottom:930.693333pt;}
.y52{bottom:931.333333pt;}
.yff{bottom:933.573333pt;}
.y1{bottom:935.333333pt;}
.y83{bottom:940.933333pt;}
.y132{bottom:948.293333pt;}
.y51{bottom:948.933333pt;}
.yfd{bottom:952.133333pt;}
.y131{bottom:961.413333pt;}
.y50{bottom:966.693333pt;}
.yfb{bottom:970.693333pt;}
.y4f{bottom:984.293333pt;}
.yf9{bottom:989.893333pt;}
.y130{bottom:996.773333pt;}
.y4e{bottom:1001.893333pt;}
.y4d{bottom:1019.520000pt;}
.y12f{bottom:1032.000000pt;}
.y4c{bottom:1037.120000pt;}
.y4b{bottom:1062.880000pt;}
.h28{height:17.267026pt;}
.hf{height:17.600000pt;}
.h23{height:17.760000pt;}
.h1f{height:18.400000pt;}
.h20{height:18.560000pt;}
.h1e{height:23.872000pt;}
.h14{height:31.428750pt;}
.hb{height:33.574375pt;}
.h17{height:35.200000pt;}
.h22{height:35.232000pt;}
.h21{height:35.360000pt;}
.h26{height:35.392000pt;}
.h18{height:37.479688pt;}
.h1b{height:41.792000pt;}
.h29{height:47.528665pt;}
.hd{height:47.621250pt;}
.h2b{height:52.108438pt;}
.h9{height:52.134375pt;}
.h1a{height:52.800000pt;}
.h24{height:52.960000pt;}
.h2a{height:52.990313pt;}
.h25{height:52.992000pt;}
.hc{height:53.535000pt;}
.h16{height:54.598989pt;}
.h11{height:55.298750pt;}
.h1d{height:55.360000pt;}
.ha{height:58.530000pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h6{height:62.812500pt;}
.h3{height:65.531250pt;}
.h15{height:67.494375pt;}
.h1c{height:70.560000pt;}
.h27{height:70.592000pt;}
.h12{height:76.975625pt;}
.h13{height:84.134375pt;}
.h8{height:85.785000pt;}
.h4{height:93.387187pt;}
.h19{height:105.920000pt;}
.h2{height:139.226667pt;}
.h10{height:264.506667pt;}
.he{height:286.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2d{width:22.067125pt;}
.w26{width:37.472000pt;}
.w28{width:59.200000pt;}
.we{width:65.152000pt;}
.w29{width:65.312000pt;}
.w8{width:66.272000pt;}
.w2a{width:71.040000pt;}
.wd{width:74.400000pt;}
.w13{width:76.800000pt;}
.w15{width:77.440000pt;}
.w1b{width:81.152000pt;}
.w18{width:83.552000pt;}
.w1d{width:84.000000pt;}
.w12{width:87.552000pt;}
.w11{width:87.680000pt;}
.w14{width:89.792000pt;}
.w1e{width:89.920000pt;}
.wf{width:90.400000pt;}
.w19{width:90.752000pt;}
.wb{width:94.432000pt;}
.w17{width:95.360000pt;}
.w10{width:96.512000pt;}
.w20{width:103.200000pt;}
.wc{width:104.192000pt;}
.w25{width:104.320000pt;}
.w21{width:105.632000pt;}
.w16{width:113.312000pt;}
.w2{width:113.472000pt;}
.w1f{width:117.152000pt;}
.w9{width:122.720000pt;}
.w24{width:137.626667pt;}
.w4{width:139.680000pt;}
.w1a{width:207.066667pt;}
.w1c{width:208.826667pt;}
.w2b{width:213.626667pt;}
.w22{width:227.266667pt;}
.w27{width:232.346667pt;}
.w2c{width:236.986667pt;}
.w6{width:253.826667pt;}
.wa{width:321.506667pt;}
.w7{width:439.746667pt;}
.w3{width:444.253333pt;}
.w23{width:450.466667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:2.353398pt;}
.x6{left:7.200000pt;}
.x3a{left:25.119988pt;}
.x4{left:30.240000pt;}
.x11{left:42.400000pt;}
.x1{left:48.000000pt;}
.x2b{left:58.080000pt;}
.x24{left:60.960000pt;}
.xc{left:71.999988pt;}
.x38{left:73.119988pt;}
.x30{left:94.912000pt;}
.x23{left:96.031988pt;}
.x39{left:97.151988pt;}
.x7{left:98.120000pt;}
.x2{left:103.066667pt;}
.x35{left:104.032000pt;}
.x12{left:108.672000pt;}
.xb{left:109.951988pt;}
.x2c{left:113.626667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x1d{left:128.832000pt;}
.xf{left:130.591988pt;}
.x16{left:144.026655pt;}
.x17{left:146.106667pt;}
.xd{left:148.506655pt;}
.x25{left:151.706667pt;}
.x3{left:161.466667pt;}
.x1e{left:205.626667pt;}
.x18{left:220.506667pt;}
.x13{left:231.386667pt;}
.x29{left:241.626667pt;}
.xe{left:263.106655pt;}
.x10{left:266.146655pt;}
.x19{left:285.666667pt;}
.x1f{left:295.426667pt;}
.xa{left:304.706667pt;}
.x31{left:327.266667pt;}
.x26{left:358.786667pt;}
.x20{left:372.866667pt;}
.x1a{left:376.066667pt;}
.x32{left:386.466667pt;}
.x2d{left:422.973333pt;}
.x27{left:439.933333pt;}
.x33{left:451.773333pt;}
.x1b{left:472.573333pt;}
.x21{left:486.173333pt;}
.x34{left:522.813333pt;}
.x2e{left:527.293333pt;}
.x2a{left:543.133333pt;}
.x14{left:552.893333pt;}
.x1c{left:560.253333pt;}
.x22{left:581.533333pt;}
.x9{left:605.733333pt;}
.x2f{left:631.493333pt;}
.x15{left:647.333333pt;}
.x28{left:648.773333pt;}
.x36{left:706.946594pt;}
}




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