
    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_121eb03077971fc3421e5d49.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;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_30c56e4e340517addca9539b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e9d9e2b65a8ec663f4da7cd2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_4ad5bd10d02a769886890b50.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e7d54c3f82a2048620e5f203.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_83c813ef310e1df64c09dee8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.934570;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_2cdbc7e0214a9d6267db3c78.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_ffaa1bcca023f14867d044e0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_ee95df7aa4341b1a4dcade79.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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_bdb1b9059a74d59019f748a2.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;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_75c1aba1f87893cee13a4271.woff')format("woff");}.ff10{font-family:ff10;line-height:0.916992;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:ff11;src:url('chunks/assets/font_1c4dd7f922cd7c5173c62bd8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.952148;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:ff12;src:url('chunks/assets/font_db2070eaffe5c797fdb2b403.woff')format("woff");}.ff12{font-family:ff12;line-height:0.722656;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:ff13;src:url('chunks/assets/font_04f70df55216f3f2b1e8c349.woff')format("woff");}.ff13{font-family:ff13;line-height:0.922363;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;}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021240px;}
.ls2{letter-spacing:0.073080px;}
.ls7{letter-spacing:0.929361px;}
.ls6{letter-spacing:1.461758px;}
.ls4{letter-spacing:3.692339px;}
.ls5{letter-spacing:3.718739px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws5{word-spacing:-14.645356px;}
.ws4{word-spacing:-13.715995px;}
.ws3{word-spacing:-13.013995px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._c{margin-left:-468.216941px;}
._4{margin-left:-277.545825px;}
._b{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._2{margin-left:-90.563177px;}
._a{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._38{margin-left:-3.909778px;}
._35{margin-left:-2.697796px;}
._3{margin-left:-1.684403px;}
._0{width:1.012502px;}
._10{width:2.326493px;}
._28{width:3.433606px;}
._e{width:4.560495px;}
._f{width:5.723389px;}
._1f{width:7.301996px;}
._16{width:9.031952px;}
._12{width:10.445747px;}
._13{width:11.525195px;}
._11{width:14.496837px;}
._1a{width:15.603355px;}
._19{width:16.882954px;}
._1b{width:17.893490px;}
._32{width:19.155308px;}
._d{width:20.460999px;}
._22{width:21.878742px;}
._2a{width:22.953592px;}
._14{width:23.966707px;}
._1e{width:25.124121px;}
._2d{width:26.508786px;}
._2e{width:27.553884px;}
._20{width:29.277952px;}
._21{width:30.408034px;}
._40{width:31.650135px;}
._15{width:33.094284px;}
._26{width:35.121433px;}
._37{width:36.864832px;}
._17{width:37.926545px;}
._18{width:39.025642px;}
._23{width:40.872002px;}
._29{width:42.437928px;}
._2b{width:44.180402px;}
._36{width:45.508341px;}
._27{width:47.246416px;}
._30{width:48.842560px;}
._1c{width:50.876815px;}
._34{width:53.345869px;}
._33{width:54.495952px;}
._3a{width:56.277745px;}
._39{width:57.384133px;}
._31{width:60.788846px;}
._2c{width:62.217000px;}
._2f{width:64.309658px;}
._1d{width:66.332141px;}
._24{width:68.541120px;}
._25{width:69.618301px;}
._3f{width:71.167236px;}
._41{width:76.806528px;}
._3b{width:79.369149px;}
._46{width:83.369023px;}
._45{width:84.373214px;}
._3e{width:94.182122px;}
._49{width:100.475952px;}
._48{width:101.490712px;}
._47{width:112.159673px;}
._42{width:116.259714px;}
._44{width:126.819539px;}
._43{width:127.862636px;}
._3c{width:128.923025px;}
._3d{width:130.545533px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fsa{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fse{font-size:41.759983px;}
.fsc{font-size:45.359982px;}
.fs5{font-size:48.239981px;}
.fsd{font-size:51.119980px;}
.fs8{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y4f{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y10a{bottom:3.058957px;}
.y10d{bottom:3.058969px;}
.y110{bottom:3.058982px;}
.y113{bottom:3.058994px;}
.y14d{bottom:3.059084px;}
.y1c{bottom:3.059093px;}
.y135{bottom:3.059156px;}
.y138{bottom:3.059166px;}
.y121{bottom:3.059217px;}
.y91{bottom:3.059249px;}
.yf{bottom:3.239038px;}
.y17{bottom:3.599076px;}
.y1a{bottom:3.599080px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y11{bottom:4.859046px;}
.y15{bottom:4.859064px;}
.y4a{bottom:6.478948px;}
.y7c{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y107{bottom:112.439955px;}
.y3a{bottom:117.119953px;}
.y12e{bottom:117.479953px;}
.y14b{bottom:118.019953px;}
.y79{bottom:121.619951px;}
.yb6{bottom:123.959950px;}
.y9c{bottom:125.039950px;}
.y48{bottom:128.099949px;}
.y169{bottom:130.619948px;}
.y18c{bottom:132.959947px;}
.ydd{bottom:136.019946px;}
.y106{bottom:136.199946px;}
.y39{bottom:137.819945px;}
.y12d{bottom:140.519944px;}
.y14a{bottom:141.419943px;}
.y78{bottom:144.659942px;}
.yb5{bottom:146.999941px;}
.y9b{bottom:148.079941px;}
.y47{bottom:151.139940px;}
.y168{bottom:153.659939px;}
.y18b{bottom:157.619937px;}
.y38{bottom:158.519937px;}
.ydc{bottom:159.059936px;}
.y105{bottom:159.779936px;}
.y12c{bottom:163.559935px;}
.y149{bottom:164.999934px;}
.y77{bottom:167.699933px;}
.yb4{bottom:170.039932px;}
.y9a{bottom:170.939932px;}
.y46{bottom:173.999930px;}
.y167{bottom:176.519929px;}
.y37{bottom:179.219928px;}
.ydb{bottom:182.099927px;}
.y104{bottom:183.359927px;}
.y12b{bottom:186.599925px;}
.y148{bottom:188.399925px;}
.y76{bottom:190.559924px;}
.y157{bottom:190.739924px;}
.yb3{bottom:193.079923px;}
.y99{bottom:193.979922px;}
.y45{bottom:197.039921px;}
.y166{bottom:199.559920px;}
.y36{bottom:199.919920px;}
.yda{bottom:204.959918px;}
.y18a{bottom:205.139918px;}
.y12a{bottom:206.939917px;}
.y103{bottom:207.119917px;}
.y147{bottom:211.799915px;}
.y75{bottom:213.599915px;}
.y156{bottom:213.779914px;}
.yb2{bottom:214.679914px;}
.y15b{bottom:215.939914px;}
.y98{bottom:217.019913px;}
.y44{bottom:220.079912px;}
.y35{bottom:220.619912px;}
.y165{bottom:222.599911px;}
.y129{bottom:227.459909px;}
.yd9{bottom:227.999909px;}
.y189{bottom:228.539909px;}
.y102{bottom:230.699908px;}
.y146{bottom:235.379906px;}
.yb1{bottom:236.459905px;}
.y74{bottom:236.639905px;}
.y15a{bottom:238.979904px;}
.y97{bottom:240.059904px;}
.y34{bottom:241.319903px;}
.y43{bottom:243.119903px;}
.y164{bottom:245.639902px;}
.y128{bottom:250.499900px;}
.yd8{bottom:251.039900px;}
.y188{bottom:253.019899px;}
.y101{bottom:254.459898px;}
.y145{bottom:258.779896px;}
.yb0{bottom:259.499896px;}
.y73{bottom:259.679896px;}
.y33{bottom:262.019895px;}
.y96{bottom:263.099895px;}
.y42{bottom:266.159894px;}
.y163{bottom:268.679893px;}
.yd7{bottom:272.279891px;}
.y127{bottom:273.359891px;}
.y187{bottom:277.499889px;}
.y100{bottom:278.039889px;}
.y144{bottom:282.179887px;}
.yaf{bottom:282.539887px;}
.y32{bottom:282.719887px;}
.y159{bottom:285.059886px;}
.y95{bottom:286.139886px;}
.y41{bottom:289.019884px;}
.y162{bottom:291.539883px;}
.yd6{bottom:293.159883px;}
.y126{bottom:296.399881px;}
.y186{bottom:300.539880px;}
.yff{bottom:301.619879px;}
.y31{bottom:303.419879px;}
.yae{bottom:305.579878px;}
.y72{bottom:305.759878px;}
.y158{bottom:306.839877px;}
.y94{bottom:308.999876px;}
.y40{bottom:312.059875px;}
.y161{bottom:314.579874px;}
.yd5{bottom:316.199874px;}
.y125{bottom:319.439872px;}
.y185{bottom:323.939870px;}
.y30{bottom:324.119870px;}
.yfe{bottom:325.379870px;}
.yad{bottom:328.439869px;}
.y3f{bottom:328.619869px;}
.y155{bottom:328.799868px;}
.y143{bottom:329.159868px;}
.y93{bottom:332.039867px;}
.y160{bottom:335.819866px;}
.yd4{bottom:339.239864px;}
.y124{bottom:342.479863px;}
.y2f{bottom:344.819862px;}
.y184{bottom:348.419861px;}
.yfd{bottom:348.959860px;}
.y3e{bottom:349.319860px;}
.yac{bottom:351.479859px;}
.y71{bottom:351.659859px;}
.y154{bottom:351.839859px;}
.y142{bottom:352.559859px;}
.y92{bottom:355.079858px;}
.y15f{bottom:356.879857px;}
.yd3{bottom:362.279855px;}
.y2e{bottom:365.519854px;}
.y3d{bottom:370.019852px;}
.yfc{bottom:372.539851px;}
.y183{bottom:373.079851px;}
.yab{bottom:374.519850px;}
.y70{bottom:374.699850px;}
.y90{bottom:375.060600px;}
.y141{bottom:375.959850px;}
.y15e{bottom:379.739848px;}
.yd2{bottom:385.319846px;}
.y123{bottom:388.559845px;}
.y3c{bottom:390.719844px;}
.y2d{bottom:392.519843px;}
.yfb{bottom:396.299841px;}
.yaa{bottom:397.559841px;}
.y6f{bottom:397.739841px;}
.y140{bottom:399.539840px;}
.y15d{bottom:402.779839px;}
.yd1{bottom:408.359837px;}
.y3b{bottom:411.419835px;}
.y2c{bottom:415.559834px;}
.yfa{bottom:419.879832px;}
.ya9{bottom:420.599832px;}
.y6e{bottom:420.779832px;}
.y182{bottom:422.039831px;}
.y13f{bottom:422.939831px;}
.y15c{bottom:423.299831px;}
.yd0{bottom:431.219828px;}
.y2b{bottom:431.759827px;}
.y122{bottom:434.459826px;}
.y2a{bottom:435.539826px;}
.ya8{bottom:443.639823px;}
.y6d{bottom:443.819822px;}
.y13e{bottom:446.339821px;}
.y181{bottom:446.699821px;}
.ycf{bottom:454.259818px;}
.y120{bottom:454.440600px;}
.y29{bottom:456.059818px;}
.ya7{bottom:466.499813px;}
.y6c{bottom:466.679813px;}
.y153{bottom:466.859813px;}
.yf9{bottom:467.219813px;}
.y13d{bottom:469.919812px;}
.y180{bottom:471.179812px;}
.yce{bottom:477.299809px;}
.y11f{bottom:477.479809px;}
.y28{bottom:479.099808px;}
.ya6{bottom:489.539804px;}
.y6b{bottom:489.719804px;}
.y152{bottom:489.899804px;}
.yf8{bottom:490.799804px;}
.y13c{bottom:493.319803px;}
.y17f{bottom:495.659802px;}
.ycd{bottom:500.339800px;}
.y27{bottom:502.139799px;}
.ya5{bottom:512.579795px;}
.y6a{bottom:512.759795px;}
.yf7{bottom:514.559794px;}
.y13b{bottom:516.719793px;}
.y17e{bottom:520.319792px;}
.ycc{bottom:523.379791px;}
.y26{bottom:524.999790px;}
.ya4{bottom:535.619786px;}
.y69{bottom:535.799786px;}
.yf6{bottom:538.139785px;}
.y13a{bottom:539.939784px;}
.y17d{bottom:544.799782px;}
.ycb{bottom:546.419781px;}
.y25{bottom:548.039781px;}
.ya3{bottom:558.659777px;}
.y68{bottom:558.839776px;}
.yf5{bottom:561.719775px;}
.y139{bottom:562.979775px;}
.yca{bottom:569.279772px;}
.y24{bottom:571.079772px;}
.ya2{bottom:581.519767px;}
.y67{bottom:581.699767px;}
.y151{bottom:581.879767px;}
.y137{bottom:582.960600px;}
.yf4{bottom:585.479766px;}
.y136{bottom:586.019766px;}
.yc9{bottom:592.319763px;}
.y17c{bottom:593.939762px;}
.y23{bottom:594.119762px;}
.ya1{bottom:604.559758px;}
.y66{bottom:604.739758px;}
.y150{bottom:604.919758px;}
.y134{bottom:606.000600px;}
.yf3{bottom:608.699757px;}
.y22{bottom:617.159753px;}
.y17b{bottom:618.419753px;}
.ya0{bottom:627.599749px;}
.y65{bottom:627.779749px;}
.yc8{bottom:630.119748px;}
.yf2{bottom:631.559747px;}
.y21{bottom:640.199744px;}
.y17a{bottom:642.899743px;}
.y9f{bottom:650.639740px;}
.y64{bottom:650.819740px;}
.yc7{bottom:653.339739px;}
.yf1{bottom:654.599738px;}
.y20{bottom:663.059735px;}
.y179{bottom:667.559733px;}
.y9e{bottom:673.679731px;}
.y63{bottom:673.859730px;}
.yc6{bottom:676.379729px;}
.yf0{bottom:677.639729px;}
.y1f{bottom:686.999725px;}
.y178{bottom:692.039723px;}
.y9d{bottom:696.719721px;}
.y62{bottom:696.899721px;}
.yc5{bottom:699.419720px;}
.yef{bottom:700.679720px;}
.y177{bottom:716.519713px;}
.y8f{bottom:719.579712px;}
.y61{bottom:719.759712px;}
.y14f{bottom:719.939712px;}
.y1e{bottom:720.659712px;}
.yc4{bottom:722.459711px;}
.yee{bottom:723.719711px;}
.y176{bottom:741.179704px;}
.y8e{bottom:742.619703px;}
.y60{bottom:742.799703px;}
.y14e{bottom:742.979703px;}
.y1d{bottom:743.699703px;}
.yc3{bottom:745.319702px;}
.yed{bottom:746.759701px;}
.y11e{bottom:747.659701px;}
.y1b{bottom:763.680600px;}
.y8d{bottom:765.659694px;}
.y5f{bottom:765.839694px;}
.yc2{bottom:768.359693px;}
.yec{bottom:769.619692px;}
.y11d{bottom:771.059692px;}
.y14c{bottom:785.820600px;}
.y8c{bottom:788.699685px;}
.y5e{bottom:788.879684px;}
.y175{bottom:790.139684px;}
.yc1{bottom:791.399683px;}
.yeb{bottom:792.659683px;}
.y11c{bottom:794.639682px;}
.y19{bottom:797.160600px;}
.y18{bottom:800.759680px;}
.y16{bottom:806.160600px;}
.y8b{bottom:811.739675px;}
.y5d{bottom:811.919675px;}
.yc0{bottom:814.439674px;}
.y174{bottom:814.799674px;}
.yea{bottom:815.699674px;}
.y11b{bottom:818.039673px;}
.y8a{bottom:834.779666px;}
.y5c{bottom:834.959666px;}
.y14{bottom:835.140600px;}
.ybf{bottom:837.479665px;}
.ye9{bottom:838.739665px;}
.y173{bottom:839.279664px;}
.y11a{bottom:841.439663px;}
.y89{bottom:857.639657px;}
.y13{bottom:857.819657px;}
.ybe{bottom:860.519656px;}
.ye8{bottom:861.779655px;}
.y172{bottom:863.759654px;}
.y119{bottom:865.019654px;}
.y133{bottom:866.819653px;}
.y10{bottom:880.500600px;}
.y88{bottom:880.679648px;}
.y5b{bottom:880.859648px;}
.ybd{bottom:883.379647px;}
.ye7{bottom:884.819646px;}
.y118{bottom:888.419645px;}
.y132{bottom:889.859644px;}
.y12{bottom:890.579644px;}
.ye{bottom:900.840600px;}
.y87{bottom:903.719639px;}
.y5a{bottom:903.899638px;}
.ybc{bottom:906.419637px;}
.ye6{bottom:907.679637px;}
.y117{bottom:911.819635px;}
.y131{bottom:912.899635px;}
.y86{bottom:926.759629px;}
.y59{bottom:926.939629px;}
.ybb{bottom:929.459628px;}
.ye5{bottom:930.719628px;}
.yd{bottom:934.319626px;}
.y116{bottom:935.219626px;}
.y130{bottom:935.939626px;}
.y171{bottom:937.559625px;}
.y85{bottom:949.799620px;}
.y58{bottom:949.979620px;}
.yba{bottom:952.499619px;}
.ye4{bottom:953.759618px;}
.y115{bottom:958.799616px;}
.y12f{bottom:958.979616px;}
.y170{bottom:962.039615px;}
.y84{bottom:972.839611px;}
.y57{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.yb9{bottom:975.539610px;}
.ye3{bottom:976.799609px;}
.y114{bottom:982.199607px;}
.y16f{bottom:986.519605px;}
.y83{bottom:995.699602px;}
.y56{bottom:995.879602px;}
.yb8{bottom:998.579601px;}
.yb{bottom:999.299600px;}
.ye2{bottom:999.839600px;}
.y16e{bottom:1011.179596px;}
.y112{bottom:1012.080600px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y82{bottom:1018.739593px;}
.y55{bottom:1018.919592px;}
.yb7{bottom:1020.179592px;}
.ye1{bottom:1021.979591px;}
.y111{bottom:1030.439588px;}
.y16d{bottom:1035.659586px;}
.y81{bottom:1041.779583px;}
.y54{bottom:1041.959583px;}
.y10f{bottom:1042.680600px;}
.ye0{bottom:1044.479582px;}
.y4e{bottom:1051.500600px;}
.y16c{bottom:1060.139576px;}
.y10e{bottom:1061.219576px;}
.y80{bottom:1064.819574px;}
.y53{bottom:1064.999574px;}
.y4d{bottom:1066.979573px;}
.ydf{bottom:1067.519573px;}
.y10c{bottom:1073.460600px;}
.y16b{bottom:1084.799566px;}
.y4c{bottom:1087.319565px;}
.y7f{bottom:1087.859565px;}
.y52{bottom:1088.039565px;}
.yde{bottom:1089.299564px;}
.y10b{bottom:1092.539563px;}
.y109{bottom:1104.960600px;}
.y4b{bottom:1107.659557px;}
.y16a{bottom:1109.279556px;}
.y7e{bottom:1110.719556px;}
.y51{bottom:1110.899556px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y49{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y108{bottom:1133.579547px;}
.y7d{bottom:1133.759546px;}
.y50{bottom:1133.939546px;}
.y7b{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y7a{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h21{height:12.060000px;}
.hb{height:13.500000px;}
.h16{height:15.120000px;}
.h27{height:15.300000px;}
.h29{height:15.480000px;}
.h13{height:18.720000px;}
.h9{height:18.773430px;}
.h15{height:18.900000px;}
.hd{height:20.160000px;}
.h11{height:20.340000px;}
.h5{height:20.520000px;}
.h1e{height:23.760000px;}
.h1{height:24.480000px;}
.h1a{height:25.913662px;}
.hf{height:25.951630px;}
.h1c{height:27.228505px;}
.h28{height:31.585065px;}
.h18{height:32.152136px;}
.hc{height:32.199245px;}
.h25{height:34.307916px;}
.h10{height:36.179986px;}
.h23{height:36.486196px;}
.h26{height:38.664477px;}
.h17{height:40.842757px;}
.h1b{height:43.185920px;}
.h19{height:45.199318px;}
.h6{height:47.988262px;}
.he{height:48.058575px;}
.h12{height:48.234356px;}
.h14{height:50.100449px;}
.h20{height:53.999978px;}
.h8{height:54.457009px;}
.h22{height:56.159978px;}
.h24{height:56.320290px;}
.h2{height:58.861031px;}
.h1f{height:63.179975px;}
.ha{height:63.917904px;}
.h1d{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w18{width:3.420000px;}
.w2b{width:3.780000px;}
.w2{width:4.680000px;}
.wb{width:4.860000px;}
.w24{width:5.040000px;}
.w33{width:5.220000px;}
.w2e{width:5.400000px;}
.w14{width:6.840000px;}
.w4{width:7.020000px;}
.w10{width:8.100000px;}
.w8{width:8.280000px;}
.w7{width:8.820000px;}
.wf{width:9.540000px;}
.w16{width:10.800000px;}
.we{width:12.240000px;}
.w6{width:12.420000px;}
.w32{width:12.960000px;}
.w5{width:24.840000px;}
.w27{width:25.920000px;}
.w2a{width:26.280000px;}
.w23{width:32.940000px;}
.w17{width:42.840000px;}
.w2d{width:46.440000px;}
.w19{width:47.880000px;}
.w1f{width:53.280000px;}
.w30{width:56.520000px;}
.w1c{width:57.060000px;}
.w35{width:61.200000px;}
.w22{width:63.360000px;}
.w1{width:73.980000px;}
.w1b{width:75.600000px;}
.w3{width:77.400000px;}
.w31{width:80.460000px;}
.w11{width:81.360000px;}
.wa{width:89.460000px;}
.w1a{width:92.520000px;}
.w21{width:103.680000px;}
.w29{width:105.840000px;}
.w1d{width:106.380000px;}
.wc{width:107.460000px;}
.w2f{width:112.320000px;}
.w9{width:113.040000px;}
.w20{width:115.740000px;}
.w1e{width:116.640000px;}
.w26{width:118.260000px;}
.w13{width:172.980000px;}
.w25{width:245.700000px;}
.w36{width:262.800000px;}
.w2c{width:277.380000px;}
.w28{width:283.500000px;}
.w34{width:298.620000px;}
.w12{width:329.940000px;}
.wd{width:344.880000px;}
.w15{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:107.999957px;}
.x24{left:111.779955px;}
.xb{left:116.100000px;}
.x30{left:122.039944px;}
.xd{left:130.679908px;}
.x2b{left:151.020000px;}
.x2c{left:154.440000px;}
.x32{left:165.240000px;}
.x46{left:169.380000px;}
.x20{left:188.460000px;}
.xe{left:200.339857px;}
.x2d{left:202.320000px;}
.xf{left:204.839853px;}
.xc{left:206.999917px;}
.x19{left:220.139912px;}
.x37{left:223.920000px;}
.x1a{left:225.000000px;}
.x3b{left:226.440000px;}
.x23{left:230.759908px;}
.x33{left:246.600000px;}
.x27{left:249.120000px;}
.x10{left:259.740421px;}
.x3c{left:285.120000px;}
.x34{left:287.459885px;}
.x2e{left:294.840000px;}
.x3d{left:311.040000px;}
.x1b{left:314.460000px;}
.x1c{left:319.320000px;}
.x38{left:349.920000px;}
.x2f{left:370.440000px;}
.xa{left:372.599851px;}
.x35{left:389.339844px;}
.x39{left:398.340000px;}
.x3e{left:423.539930px;}
.x1d{left:426.780000px;}
.x28{left:433.079827px;}
.x1e{left:451.620000px;}
.x26{left:462.600477px;}
.x31{left:476.639815px;}
.x45{left:488.160000px;}
.x11{left:493.920784px;}
.x36{left:499.680000px;}
.x12{left:507.240775px;}
.x3f{left:509.220000px;}
.x40{left:514.620000px;}
.x21{left:518.400000px;}
.x13{left:520.560767px;}
.x3a{left:532.620000px;}
.x14{left:533.700759px;}
.x15{left:538.200756px;}
.x1{left:549.000000px;}
.x25{left:553.499779px;}
.x29{left:571.310921px;}
.x2a{left:588.779764px;}
.x16{left:591.300737px;}
.x17{left:608.940666px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x18{left:666.359733px;}
.x41{left:683.460000px;}
.x22{left:691.380000px;}
.x4{left:705.060000px;}
.x5{left:722.340000px;}
.x6{left:747.180000px;}
.x7{left:759.600000px;}
.x42{left:763.920000px;}
.x43{left:769.320000px;}
.x8{left:772.020000px;}
.x1f{left:780.300000px;}
.x44{left:781.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018880pt;}
.ls2{letter-spacing:0.064960pt;}
.ls7{letter-spacing:0.826099pt;}
.ls6{letter-spacing:1.299340pt;}
.ls4{letter-spacing:3.282079pt;}
.ls5{letter-spacing:3.305545pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws5{word-spacing:-13.018094pt;}
.ws4{word-spacing:-12.191995pt;}
.ws3{word-spacing:-11.567995pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._c{margin-left:-416.192836pt;}
._4{margin-left:-246.707400pt;}
._b{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._2{margin-left:-80.500602pt;}
._a{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._38{margin-left:-3.475359pt;}
._35{margin-left:-2.398041pt;}
._3{margin-left:-1.497247pt;}
._0{width:0.900002pt;}
._10{width:2.067993pt;}
._28{width:3.052094pt;}
._e{width:4.053773pt;}
._f{width:5.087457pt;}
._1f{width:6.490663pt;}
._16{width:8.028401pt;}
._12{width:9.285109pt;}
._13{width:10.244618pt;}
._11{width:12.886078pt;}
._1a{width:13.869649pt;}
._19{width:15.007070pt;}
._1b{width:15.905325pt;}
._32{width:17.026941pt;}
._d{width:18.187555pt;}
._22{width:19.447771pt;}
._2a{width:20.403193pt;}
._14{width:21.303740pt;}
._1e{width:22.332552pt;}
._2d{width:23.563366pt;}
._2e{width:24.492341pt;}
._20{width:26.024846pt;}
._21{width:27.029364pt;}
._40{width:28.133453pt;}
._15{width:29.417141pt;}
._26{width:31.219051pt;}
._37{width:32.768739pt;}
._17{width:33.712484pt;}
._18{width:34.689459pt;}
._23{width:36.330669pt;}
._29{width:37.722602pt;}
._2b{width:39.271468pt;}
._36{width:40.451858pt;}
._27{width:41.996814pt;}
._30{width:43.415609pt;}
._1c{width:45.223835pt;}
._34{width:47.418551pt;}
._33{width:48.440846pt;}
._3a{width:50.024662pt;}
._39{width:51.008119pt;}
._31{width:54.034530pt;}
._2c{width:55.304000pt;}
._2f{width:57.164140pt;}
._1d{width:58.961903pt;}
._24{width:60.925440pt;}
._25{width:61.882934pt;}
._3f{width:63.259765pt;}
._41{width:68.272470pt;}
._3b{width:70.550355pt;}
._46{width:74.105798pt;}
._45{width:74.998412pt;}
._3e{width:83.717441pt;}
._49{width:89.311957pt;}
._48{width:90.213966pt;}
._47{width:99.697487pt;}
._42{width:103.341968pt;}
._44{width:112.728479pt;}
._43{width:113.655676pt;}
._3c{width:114.598244pt;}
._3d{width:116.040473pt;}
.fs3{font-size:15.999994pt;}
.fsa{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fse{font-size:37.119985pt;}
.fsc{font-size:40.319984pt;}
.fs5{font-size:42.879983pt;}
.fsd{font-size:45.439982pt;}
.fs8{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y4f{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:2.719073pt;}
.y10d{bottom:2.719084pt;}
.y110{bottom:2.719095pt;}
.y113{bottom:2.719106pt;}
.y14d{bottom:2.719186pt;}
.y1c{bottom:2.719194pt;}
.y135{bottom:2.719250pt;}
.y138{bottom:2.719258pt;}
.y121{bottom:2.719304pt;}
.y91{bottom:2.719332pt;}
.yf{bottom:2.879145pt;}
.y17{bottom:3.199179pt;}
.y1a{bottom:3.199182pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y11{bottom:4.319152pt;}
.y15{bottom:4.319168pt;}
.y4a{bottom:5.759065pt;}
.y7c{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y107{bottom:99.946627pt;}
.y3a{bottom:104.106625pt;}
.y12e{bottom:104.426625pt;}
.y14b{bottom:104.906625pt;}
.y79{bottom:108.106623pt;}
.yb6{bottom:110.186623pt;}
.y9c{bottom:111.146622pt;}
.y48{bottom:113.866621pt;}
.y169{bottom:116.106620pt;}
.y18c{bottom:118.186619pt;}
.ydd{bottom:120.906618pt;}
.y106{bottom:121.066618pt;}
.y39{bottom:122.506618pt;}
.y12d{bottom:124.906617pt;}
.y14a{bottom:125.706616pt;}
.y78{bottom:128.586615pt;}
.yb5{bottom:130.666614pt;}
.y9b{bottom:131.626614pt;}
.y47{bottom:134.346613pt;}
.y168{bottom:136.586612pt;}
.y18b{bottom:140.106611pt;}
.y38{bottom:140.906610pt;}
.ydc{bottom:141.386610pt;}
.y105{bottom:142.026610pt;}
.y12c{bottom:145.386609pt;}
.y149{bottom:146.666608pt;}
.y77{bottom:149.066607pt;}
.yb4{bottom:151.146606pt;}
.y9a{bottom:151.946606pt;}
.y46{bottom:154.666605pt;}
.y167{bottom:156.906604pt;}
.y37{bottom:159.306603pt;}
.ydb{bottom:161.866602pt;}
.y104{bottom:162.986601pt;}
.y12b{bottom:165.866600pt;}
.y148{bottom:167.466600pt;}
.y76{bottom:169.386599pt;}
.y157{bottom:169.546599pt;}
.yb3{bottom:171.626598pt;}
.y99{bottom:172.426598pt;}
.y45{bottom:175.146597pt;}
.y166{bottom:177.386596pt;}
.y36{bottom:177.706596pt;}
.yda{bottom:182.186594pt;}
.y18a{bottom:182.346594pt;}
.y12a{bottom:183.946593pt;}
.y103{bottom:184.106593pt;}
.y147{bottom:188.266591pt;}
.y75{bottom:189.866591pt;}
.y156{bottom:190.026591pt;}
.yb2{bottom:190.826590pt;}
.y15b{bottom:191.946590pt;}
.y98{bottom:192.906590pt;}
.y44{bottom:195.626588pt;}
.y35{bottom:196.106588pt;}
.y165{bottom:197.866588pt;}
.y129{bottom:202.186586pt;}
.yd9{bottom:202.666586pt;}
.y189{bottom:203.146585pt;}
.y102{bottom:205.066585pt;}
.y146{bottom:209.226583pt;}
.yb1{bottom:210.186583pt;}
.y74{bottom:210.346583pt;}
.y15a{bottom:212.426582pt;}
.y97{bottom:213.386581pt;}
.y34{bottom:214.506581pt;}
.y43{bottom:216.106580pt;}
.y164{bottom:218.346579pt;}
.y128{bottom:222.666578pt;}
.yd8{bottom:223.146577pt;}
.y188{bottom:224.906577pt;}
.y101{bottom:226.186576pt;}
.y145{bottom:230.026575pt;}
.yb0{bottom:230.666574pt;}
.y73{bottom:230.826574pt;}
.y33{bottom:232.906574pt;}
.y96{bottom:233.866573pt;}
.y42{bottom:236.586572pt;}
.y163{bottom:238.826571pt;}
.yd7{bottom:242.026570pt;}
.y127{bottom:242.986569pt;}
.y187{bottom:246.666568pt;}
.y100{bottom:247.146568pt;}
.y144{bottom:250.826566pt;}
.yaf{bottom:251.146566pt;}
.y32{bottom:251.306566pt;}
.y159{bottom:253.386565pt;}
.y95{bottom:254.346565pt;}
.y41{bottom:256.906564pt;}
.y162{bottom:259.146563pt;}
.yd6{bottom:260.586562pt;}
.y126{bottom:263.466561pt;}
.y186{bottom:267.146560pt;}
.yff{bottom:268.106559pt;}
.y31{bottom:269.706559pt;}
.yae{bottom:271.626558pt;}
.y72{bottom:271.786558pt;}
.y158{bottom:272.746558pt;}
.y94{bottom:274.666557pt;}
.y40{bottom:277.386556pt;}
.y161{bottom:279.626555pt;}
.yd5{bottom:281.066554pt;}
.y125{bottom:283.946553pt;}
.y185{bottom:287.946551pt;}
.y30{bottom:288.106551pt;}
.yfe{bottom:289.226551pt;}
.yad{bottom:291.946550pt;}
.y3f{bottom:292.106550pt;}
.y155{bottom:292.266550pt;}
.y143{bottom:292.586550pt;}
.y93{bottom:295.146549pt;}
.y160{bottom:298.506547pt;}
.yd4{bottom:301.546546pt;}
.y124{bottom:304.426545pt;}
.y2f{bottom:306.506544pt;}
.y184{bottom:309.706543pt;}
.yfd{bottom:310.186543pt;}
.y3e{bottom:310.506542pt;}
.yac{bottom:312.426542pt;}
.y71{bottom:312.586542pt;}
.y154{bottom:312.746542pt;}
.y142{bottom:313.386541pt;}
.y92{bottom:315.626540pt;}
.y15f{bottom:317.226540pt;}
.yd3{bottom:322.026538pt;}
.y2e{bottom:324.906537pt;}
.y3d{bottom:328.906535pt;}
.yfc{bottom:331.146534pt;}
.y183{bottom:331.626534pt;}
.yab{bottom:332.906534pt;}
.y70{bottom:333.066533pt;}
.y90{bottom:333.387200pt;}
.y141{bottom:334.186533pt;}
.y15e{bottom:337.546532pt;}
.yd2{bottom:342.506530pt;}
.y123{bottom:345.386529pt;}
.y3c{bottom:347.306528pt;}
.y2d{bottom:348.906527pt;}
.yfb{bottom:352.266526pt;}
.yaa{bottom:353.386525pt;}
.y6f{bottom:353.546525pt;}
.y140{bottom:355.146525pt;}
.y15d{bottom:358.026523pt;}
.yd1{bottom:362.986521pt;}
.y3b{bottom:365.706520pt;}
.y2c{bottom:369.386519pt;}
.yfa{bottom:373.226517pt;}
.ya9{bottom:373.866517pt;}
.y6e{bottom:374.026517pt;}
.y182{bottom:375.146517pt;}
.y13f{bottom:375.946516pt;}
.y15c{bottom:376.266516pt;}
.yd0{bottom:383.306513pt;}
.y2b{bottom:383.786513pt;}
.y122{bottom:386.186512pt;}
.y2a{bottom:387.146512pt;}
.ya8{bottom:394.346509pt;}
.y6d{bottom:394.506509pt;}
.y13e{bottom:396.746508pt;}
.y181{bottom:397.066508pt;}
.ycf{bottom:403.786505pt;}
.y120{bottom:403.947200pt;}
.y29{bottom:405.386505pt;}
.ya7{bottom:414.666501pt;}
.y6c{bottom:414.826501pt;}
.y153{bottom:414.986501pt;}
.yf9{bottom:415.306501pt;}
.y13d{bottom:417.706500pt;}
.y180{bottom:418.826499pt;}
.yce{bottom:424.266497pt;}
.y11f{bottom:424.426497pt;}
.y28{bottom:425.866496pt;}
.ya6{bottom:435.146493pt;}
.y6b{bottom:435.306493pt;}
.y152{bottom:435.466492pt;}
.yf8{bottom:436.266492pt;}
.y13c{bottom:438.506491pt;}
.y17f{bottom:440.586490pt;}
.ycd{bottom:444.746489pt;}
.y27{bottom:446.346488pt;}
.ya5{bottom:455.626484pt;}
.y6a{bottom:455.786484pt;}
.yf7{bottom:457.386484pt;}
.y13b{bottom:459.306483pt;}
.y17e{bottom:462.506482pt;}
.ycc{bottom:465.226481pt;}
.y26{bottom:466.666480pt;}
.ya4{bottom:476.106476pt;}
.y69{bottom:476.266476pt;}
.yf6{bottom:478.346475pt;}
.y13a{bottom:479.946475pt;}
.y17d{bottom:484.266473pt;}
.ycb{bottom:485.706472pt;}
.y25{bottom:487.146472pt;}
.ya3{bottom:496.586468pt;}
.y68{bottom:496.746468pt;}
.yf5{bottom:499.306467pt;}
.y139{bottom:500.426466pt;}
.yca{bottom:506.026464pt;}
.y24{bottom:507.626464pt;}
.ya2{bottom:516.906460pt;}
.y67{bottom:517.066460pt;}
.y151{bottom:517.226460pt;}
.y137{bottom:518.187200pt;}
.yf4{bottom:520.426458pt;}
.y136{bottom:520.906458pt;}
.yc9{bottom:526.506456pt;}
.y17c{bottom:527.946455pt;}
.y23{bottom:528.106455pt;}
.ya1{bottom:537.386452pt;}
.y66{bottom:537.546452pt;}
.y150{bottom:537.706452pt;}
.y134{bottom:538.667200pt;}
.yf3{bottom:541.066450pt;}
.y22{bottom:548.586447pt;}
.y17b{bottom:549.706447pt;}
.ya0{bottom:557.866444pt;}
.y65{bottom:558.026443pt;}
.yc8{bottom:560.106443pt;}
.yf2{bottom:561.386442pt;}
.y21{bottom:569.066439pt;}
.y17a{bottom:571.466438pt;}
.y9f{bottom:578.346435pt;}
.y64{bottom:578.506435pt;}
.yc7{bottom:580.746434pt;}
.yf1{bottom:581.866434pt;}
.y20{bottom:589.386431pt;}
.y179{bottom:593.386429pt;}
.y9e{bottom:598.826427pt;}
.y63{bottom:598.986427pt;}
.yc6{bottom:601.226426pt;}
.yf0{bottom:602.346426pt;}
.y1f{bottom:610.666422pt;}
.y178{bottom:615.146421pt;}
.y9d{bottom:619.306419pt;}
.y62{bottom:619.466419pt;}
.yc5{bottom:621.706418pt;}
.yef{bottom:622.826418pt;}
.y177{bottom:636.906412pt;}
.y8f{bottom:639.626411pt;}
.y61{bottom:639.786411pt;}
.y14f{bottom:639.946411pt;}
.y1e{bottom:640.586410pt;}
.yc4{bottom:642.186410pt;}
.yee{bottom:643.306409pt;}
.y176{bottom:658.826403pt;}
.y8e{bottom:660.106403pt;}
.y60{bottom:660.266403pt;}
.y14e{bottom:660.426402pt;}
.y1d{bottom:661.066402pt;}
.yc3{bottom:662.506402pt;}
.yed{bottom:663.786401pt;}
.y11e{bottom:664.586401pt;}
.y1b{bottom:678.827200pt;}
.y8d{bottom:680.586394pt;}
.y5f{bottom:680.746394pt;}
.yc2{bottom:682.986393pt;}
.yec{bottom:684.106393pt;}
.y11d{bottom:685.386393pt;}
.y14c{bottom:698.507200pt;}
.y8c{bottom:701.066386pt;}
.y5e{bottom:701.226386pt;}
.y175{bottom:702.346386pt;}
.yc1{bottom:703.466385pt;}
.yeb{bottom:704.586385pt;}
.y11c{bottom:706.346384pt;}
.y19{bottom:708.587200pt;}
.y18{bottom:711.786382pt;}
.y16{bottom:716.587200pt;}
.y8b{bottom:721.546378pt;}
.y5d{bottom:721.706378pt;}
.yc0{bottom:723.946377pt;}
.y174{bottom:724.266377pt;}
.yea{bottom:725.066377pt;}
.y11b{bottom:727.146376pt;}
.y8a{bottom:742.026370pt;}
.y5c{bottom:742.186370pt;}
.y14{bottom:742.347200pt;}
.ybf{bottom:744.426369pt;}
.ye9{bottom:745.546368pt;}
.y173{bottom:746.026368pt;}
.y11a{bottom:747.946367pt;}
.y89{bottom:762.346362pt;}
.y13{bottom:762.506362pt;}
.ybe{bottom:764.906361pt;}
.ye8{bottom:766.026360pt;}
.y172{bottom:767.786360pt;}
.y119{bottom:768.906359pt;}
.y133{bottom:770.506358pt;}
.y10{bottom:782.667200pt;}
.y88{bottom:782.826354pt;}
.y5b{bottom:782.986353pt;}
.ybd{bottom:785.226353pt;}
.ye7{bottom:786.506352pt;}
.y118{bottom:789.706351pt;}
.y132{bottom:790.986350pt;}
.y12{bottom:791.626350pt;}
.ye{bottom:800.747200pt;}
.y87{bottom:803.306345pt;}
.y5a{bottom:803.466345pt;}
.ybc{bottom:805.706344pt;}
.ye6{bottom:806.826344pt;}
.y117{bottom:810.506342pt;}
.y131{bottom:811.466342pt;}
.y86{bottom:823.786337pt;}
.y59{bottom:823.946337pt;}
.ybb{bottom:826.186336pt;}
.ye5{bottom:827.306336pt;}
.yd{bottom:830.506334pt;}
.y116{bottom:831.306334pt;}
.y130{bottom:831.946334pt;}
.y171{bottom:833.386333pt;}
.y85{bottom:844.266329pt;}
.y58{bottom:844.426329pt;}
.yba{bottom:846.666328pt;}
.ye4{bottom:847.786328pt;}
.y115{bottom:852.266326pt;}
.y12f{bottom:852.426326pt;}
.y170{bottom:855.146325pt;}
.y84{bottom:864.746321pt;}
.y57{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.yb9{bottom:867.146320pt;}
.ye3{bottom:868.266319pt;}
.y114{bottom:873.066317pt;}
.y16f{bottom:876.906316pt;}
.y83{bottom:885.066313pt;}
.y56{bottom:885.226313pt;}
.yb8{bottom:887.626312pt;}
.yb{bottom:888.266311pt;}
.ye2{bottom:888.746311pt;}
.y16e{bottom:898.826307pt;}
.y112{bottom:899.627200pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y82{bottom:905.546304pt;}
.y55{bottom:905.706304pt;}
.yb7{bottom:906.826304pt;}
.ye1{bottom:908.426303pt;}
.y111{bottom:915.946300pt;}
.y16d{bottom:920.586298pt;}
.y81{bottom:926.026296pt;}
.y54{bottom:926.186296pt;}
.y10f{bottom:926.827200pt;}
.ye0{bottom:928.426295pt;}
.y4e{bottom:934.667200pt;}
.y16c{bottom:942.346290pt;}
.y10e{bottom:943.306289pt;}
.y80{bottom:946.506288pt;}
.y53{bottom:946.666288pt;}
.y4d{bottom:948.426287pt;}
.ydf{bottom:948.906287pt;}
.y10c{bottom:954.187200pt;}
.y16b{bottom:964.266281pt;}
.y4c{bottom:966.506280pt;}
.y7f{bottom:966.986280pt;}
.y52{bottom:967.146280pt;}
.yde{bottom:968.266279pt;}
.y10b{bottom:971.146278pt;}
.y109{bottom:982.187200pt;}
.y4b{bottom:984.586273pt;}
.y16a{bottom:986.026272pt;}
.y7e{bottom:987.306272pt;}
.y51{bottom:987.466272pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y49{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y108{bottom:1007.626264pt;}
.y7d{bottom:1007.786264pt;}
.y50{bottom:1007.946263pt;}
.y7b{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y7a{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h21{height:10.720000pt;}
.hb{height:12.000000pt;}
.h16{height:13.440000pt;}
.h27{height:13.600000pt;}
.h29{height:13.760000pt;}
.h13{height:16.640000pt;}
.h9{height:16.687493pt;}
.h15{height:16.800000pt;}
.hd{height:17.920000pt;}
.h11{height:18.080000pt;}
.h5{height:18.240000pt;}
.h1e{height:21.120000pt;}
.h1{height:21.760000pt;}
.h1a{height:23.034366pt;}
.hf{height:23.068116pt;}
.h1c{height:24.203115pt;}
.h28{height:28.075614pt;}
.h18{height:28.579676pt;}
.hc{height:28.621551pt;}
.h25{height:30.495925pt;}
.h10{height:32.159987pt;}
.h23{height:32.432175pt;}
.h26{height:34.368424pt;}
.h17{height:36.304673pt;}
.h1b{height:38.387485pt;}
.h19{height:40.177171pt;}
.h6{height:42.656233pt;}
.he{height:42.718733pt;}
.h12{height:42.874983pt;}
.h14{height:44.533732pt;}
.h20{height:47.999981pt;}
.h8{height:48.406231pt;}
.h22{height:49.919980pt;}
.h24{height:50.062480pt;}
.h2{height:52.320917pt;}
.h1f{height:56.159978pt;}
.ha{height:56.815915pt;}
.h1d{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w18{width:3.040000pt;}
.w2b{width:3.360000pt;}
.w2{width:4.160000pt;}
.wb{width:4.320000pt;}
.w24{width:4.480000pt;}
.w33{width:4.640000pt;}
.w2e{width:4.800000pt;}
.w14{width:6.080000pt;}
.w4{width:6.240000pt;}
.w10{width:7.200000pt;}
.w8{width:7.360000pt;}
.w7{width:7.840000pt;}
.wf{width:8.480000pt;}
.w16{width:9.600000pt;}
.we{width:10.880000pt;}
.w6{width:11.040000pt;}
.w32{width:11.520000pt;}
.w5{width:22.080000pt;}
.w27{width:23.040000pt;}
.w2a{width:23.360000pt;}
.w23{width:29.280000pt;}
.w17{width:38.080000pt;}
.w2d{width:41.280000pt;}
.w19{width:42.560000pt;}
.w1f{width:47.360000pt;}
.w30{width:50.240000pt;}
.w1c{width:50.720000pt;}
.w35{width:54.400000pt;}
.w22{width:56.320000pt;}
.w1{width:65.760000pt;}
.w1b{width:67.200000pt;}
.w3{width:68.800000pt;}
.w31{width:71.520000pt;}
.w11{width:72.320000pt;}
.wa{width:79.520000pt;}
.w1a{width:82.240000pt;}
.w21{width:92.160000pt;}
.w29{width:94.080000pt;}
.w1d{width:94.560000pt;}
.wc{width:95.520000pt;}
.w2f{width:99.840000pt;}
.w9{width:100.480000pt;}
.w20{width:102.880000pt;}
.w1e{width:103.680000pt;}
.w26{width:105.120000pt;}
.w13{width:153.760000pt;}
.w25{width:218.400000pt;}
.w36{width:233.600000pt;}
.w2c{width:246.560000pt;}
.w28{width:252.000000pt;}
.w34{width:265.440000pt;}
.w12{width:293.280000pt;}
.wd{width:306.560000pt;}
.w15{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:95.999962pt;}
.x24{left:99.359960pt;}
.xb{left:103.200000pt;}
.x30{left:108.479950pt;}
.xd{left:116.159918pt;}
.x2b{left:134.240000pt;}
.x2c{left:137.280000pt;}
.x32{left:146.880000pt;}
.x46{left:150.560000pt;}
.x20{left:167.520000pt;}
.xe{left:178.079873pt;}
.x2d{left:179.840000pt;}
.xf{left:182.079870pt;}
.xc{left:183.999926pt;}
.x19{left:195.679922pt;}
.x37{left:199.040000pt;}
.x1a{left:200.000000pt;}
.x3b{left:201.280000pt;}
.x23{left:205.119918pt;}
.x33{left:219.200000pt;}
.x27{left:221.440000pt;}
.x10{left:230.880374pt;}
.x3c{left:253.440000pt;}
.x34{left:255.519898pt;}
.x2e{left:262.080000pt;}
.x3d{left:276.480000pt;}
.x1b{left:279.520000pt;}
.x1c{left:283.840000pt;}
.x38{left:311.040000pt;}
.x2f{left:329.280000pt;}
.xa{left:331.199868pt;}
.x35{left:346.079862pt;}
.x39{left:354.080000pt;}
.x3e{left:376.479938pt;}
.x1d{left:379.360000pt;}
.x28{left:384.959846pt;}
.x1e{left:401.440000pt;}
.x26{left:411.200424pt;}
.x31{left:423.679835pt;}
.x45{left:433.920000pt;}
.x11{left:439.040697pt;}
.x36{left:444.160000pt;}
.x12{left:450.880689pt;}
.x3f{left:452.640000pt;}
.x40{left:457.440000pt;}
.x21{left:460.800000pt;}
.x13{left:462.720681pt;}
.x3a{left:473.440000pt;}
.x14{left:474.400675pt;}
.x15{left:478.400672pt;}
.x1{left:488.000000pt;}
.x25{left:491.999803pt;}
.x29{left:507.831930pt;}
.x2a{left:523.359791pt;}
.x16{left:525.600655pt;}
.x17{left:541.280592pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x18{left:592.319763pt;}
.x41{left:607.520000pt;}
.x22{left:614.560000pt;}
.x4{left:626.720000pt;}
.x5{left:642.080000pt;}
.x6{left:664.160000pt;}
.x7{left:675.200000pt;}
.x42{left:679.040000pt;}
.x43{left:683.840000pt;}
.x8{left:686.240000pt;}
.x1f{left:693.600000pt;}
.x44{left:694.720000pt;}
}




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