
    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_54489a4cde9b800a53e54ee3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_de44b5e3826c868e6d2798c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.667000;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_ae86aa8563f9ac94164aa2d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104000;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_30e768ab2be60b1304208765.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_05bc33252256159f87c09939.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895000;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_f3a2fdae9827373c9acd1257.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.878418;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_b50c54383258f177b932c5ac.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3abdf5042c888f1e7cf3c7dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_8517fbc2fc269983bf44cd88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.840332;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_54489a4cde9b800a53e54ee3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.931000;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_ae86aa8563f9ac94164aa2d3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104000;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_de44b5e3826c868e6d2798c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.667000;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_5f4e1b6c917d4eebd2a90cf3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.882324;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;}
.m8{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249928,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v1{vertical-align:-3.599999px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.007200px;}
.ls6{letter-spacing:0.007209px;}
.lsb{letter-spacing:0.112980px;}
.ls7{letter-spacing:0.158280px;}
.ls2{letter-spacing:0.182940px;}
.ls8{letter-spacing:0.266940px;}
.lsc{letter-spacing:0.290940px;}
.ls1{letter-spacing:0.347940px;}
.ls0{letter-spacing:0.365820px;}
.lsa{letter-spacing:0.367260px;}
.ls9{letter-spacing:0.367296px;}
.ls5{letter-spacing:0.723780px;}
.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;}
}
.ws16{word-spacing:-46.433501px;}
.ws2{word-spacing:-39.720224px;}
.ws4{word-spacing:-16.559993px;}
.ws17{word-spacing:-15.307290px;}
.ws15{word-spacing:-14.939994px;}
.wsf{word-spacing:-14.793834px;}
.ws0{word-spacing:-13.499995px;}
.ws1{word-spacing:-12.779995px;}
.ws18{word-spacing:-12.059995px;}
.ws14{word-spacing:-10.439996px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:1.809750px;}
.ws12{word-spacing:17.033561px;}
.ws6{word-spacing:18.102154px;}
.ws8{word-spacing:27.014557px;}
.wsd{word-spacing:34.936107px;}
.ws5{word-spacing:38.265986px;}
.wsb{word-spacing:46.187725px;}
.ws10{word-spacing:84.329588px;}
.ws7{word-spacing:84.563213px;}
.wsc{word-spacing:93.205471px;}
.ws13{word-spacing:103.235517px;}
.wsa{word-spacing:231.474404px;}
.wse{word-spacing:247.317144px;}
.ws11{word-spacing:516.461032px;}
._1c{margin-left:-4.794647px;}
._0{margin-left:-1.159958px;}
._1{width:1.153769px;}
._5{width:2.189987px;}
._6{width:3.249081px;}
._7{width:4.757097px;}
._3{width:6.642016px;}
._2{width:8.235875px;}
._e{width:9.301244px;}
._4{width:10.344449px;}
._8{width:11.566173px;}
._c{width:12.600135px;}
._a{width:14.016925px;}
._9{width:15.172341px;}
._27{width:16.925621px;}
._11{width:17.937589px;}
._d{width:19.216897px;}
._18{width:20.258680px;}
._25{width:21.617633px;}
._b{width:22.760863px;}
._16{width:24.145192px;}
._26{width:25.160008px;}
._19{width:26.175387px;}
._14{width:27.332999px;}
._15{width:28.659559px;}
._28{width:29.725171px;}
._2c{width:31.022062px;}
._17{width:32.897485px;}
._f{width:34.234584px;}
._12{width:36.417269px;}
._13{width:37.815566px;}
._10{width:39.511556px;}
._2e{width:40.591843px;}
._30{width:43.536165px;}
._2b{width:45.428997px;}
._2d{width:46.626632px;}
._2f{width:47.693131px;}
._2a{width:49.298643px;}
._29{width:50.694823px;}
._1d{width:81.984455px;}
._1a{width:84.082035px;}
._1f{width:86.962299px;}
._21{width:89.906126px;}
._23{width:183.784393px;}
._24{width:381.613459px;}
._1e{width:414.325605px;}
._1b{width:423.267040px;}
._22{width:430.888933px;}
._20{width:444.151095px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,8,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.759998px;}
.fs3{font-size:23.759990px;}
.fs2{font-size:30.239988px;}
.fse{font-size:41.759983px;}
.fsb{font-size:44.381502px;}
.fs8{font-size:44.997102px;}
.fsa{font-size:47.998061px;}
.fs4{font-size:48.239981px;}
.fs5{font-size:51.119980px;}
.fsd{font-size:53.257659px;}
.fs1{font-size:53.999978px;}
.fsc{font-size:59.175336px;}
.fsf{font-size:59.759976px;}
.fs9{font-size:59.999016px;}
.fs6{font-size:66.239974px;}
.fs0{font-size:69.119972px;}
.y0{bottom:0.000000px;}
.y16d{bottom:1.620168px;}
.y120{bottom:2.519985px;}
.y124{bottom:2.519991px;}
.y128{bottom:2.519997px;}
.y12a{bottom:2.520002px;}
.y12e{bottom:2.520008px;}
.y130{bottom:2.520013px;}
.y132{bottom:2.520019px;}
.y134{bottom:2.520024px;}
.y138{bottom:2.520030px;}
.y13c{bottom:2.520035px;}
.y140{bottom:2.520041px;}
.y146{bottom:2.520075px;}
.y14b{bottom:2.520080px;}
.y14d{bottom:2.520086px;}
.y14f{bottom:2.520091px;}
.y152{bottom:2.520097px;}
.y154{bottom:2.520102px;}
.y156{bottom:2.520108px;}
.y15d{bottom:2.520113px;}
.y15f{bottom:2.520119px;}
.y15b{bottom:2.520125px;}
.y166{bottom:2.520158px;}
.y169{bottom:2.520164px;}
.y16b{bottom:2.520170px;}
.y170{bottom:2.520176px;}
.y172{bottom:2.520181px;}
.y122{bottom:2.699981px;}
.y8f{bottom:2.700028px;}
.y126{bottom:2.879992px;}
.y12c{bottom:2.880003px;}
.y136{bottom:2.880025px;}
.y13a{bottom:2.880031px;}
.y13e{bottom:2.880036px;}
.y158{bottom:2.880113px;}
.y92{bottom:3.240032px;}
.ya1{bottom:3.240076px;}
.y94{bottom:3.600027px;}
.ybc{bottom:3.600028px;}
.y9c{bottom:3.600076px;}
.ybe{bottom:3.600077px;}
.yb{bottom:59.641176px;}
.ya{bottom:73.321171px;}
.y9{bottom:87.181165px;}
.y65{bottom:95.281462px;}
.y8{bottom:99.781160px;}
.yec{bottom:104.281458px;}
.y8b{bottom:104.821458px;}
.y119{bottom:106.081458px;}
.y7{bottom:107.881157px;}
.yba{bottom:108.241457px;}
.y64{bottom:114.181454px;}
.y6{bottom:120.481152px;}
.yeb{bottom:121.561451px;}
.y118{bottom:123.361451px;}
.y8a{bottom:123.721451px;}
.yb9{bottom:127.321449px;}
.y63{bottom:133.261447px;}
.yea{bottom:138.841444px;}
.y117{bottom:140.461444px;}
.y89{bottom:142.621443px;}
.yb8{bottom:146.221442px;}
.y3b{bottom:148.561141px;}
.y62{bottom:152.161439px;}
.ye9{bottom:156.121438px;}
.y116{bottom:157.741437px;}
.y88{bottom:161.701435px;}
.y3a{bottom:163.321435px;}
.yb7{bottom:165.121434px;}
.y61{bottom:171.061432px;}
.ye8{bottom:173.221431px;}
.y115{bottom:175.021430px;}
.y39{bottom:177.901429px;}
.y87{bottom:180.601428px;}
.yb6{bottom:182.761427px;}
.yb5{bottom:184.201426px;}
.y60{bottom:190.141424px;}
.ye7{bottom:190.501424px;}
.y114{bottom:192.301423px;}
.y38{bottom:192.661423px;}
.y86{bottom:199.681420px;}
.yb4{bottom:203.101419px;}
.y37{bottom:207.241417px;}
.ye6{bottom:207.781417px;}
.y5f{bottom:209.041416px;}
.y113{bottom:209.581416px;}
.y85{bottom:218.581413px;}
.y36{bottom:222.001411px;}
.yb3{bottom:222.181411px;}
.ye5{bottom:225.061410px;}
.y112{bottom:226.681409px;}
.y5e{bottom:228.121409px;}
.y35{bottom:236.581405px;}
.y84{bottom:237.481405px;}
.yb2{bottom:241.081404px;}
.ye4{bottom:242.341403px;}
.y111{bottom:243.961402px;}
.y5d{bottom:247.021401px;}
.y34{bottom:251.341399px;}
.y83{bottom:256.561397px;}
.ye3{bottom:259.621396px;}
.yb1{bottom:259.981396px;}
.y110{bottom:261.241396px;}
.y174{bottom:262.501395px;}
.y33{bottom:265.921394px;}
.y82{bottom:275.461390px;}
.ye2{bottom:276.721389px;}
.y10f{bottom:278.521389px;}
.yb0{bottom:279.061388px;}
.y173{bottom:279.781388px;}
.y32{bottom:280.681388px;}
.y5c{bottom:285.001386px;}
.ye1{bottom:294.001382px;}
.y171{bottom:294.541200px;}
.y81{bottom:294.541382px;}
.y31{bottom:295.261382px;}
.y10e{bottom:295.801382px;}
.yaf{bottom:297.961381px;}
.y5b{bottom:303.901378px;}
.y16f{bottom:308.221200px;}
.y30{bottom:309.841376px;}
.ye0{bottom:311.281375px;}
.y10d{bottom:313.081375px;}
.y80{bottom:313.441375px;}
.yae{bottom:317.041373px;}
.y16a{bottom:322.801200px;}
.y5a{bottom:322.981371px;}
.y2f{bottom:324.601370px;}
.y16e{bottom:325.321370px;}
.y16c{bottom:328.201200px;}
.ydf{bottom:328.561369px;}
.y10c{bottom:330.181368px;}
.y7f{bottom:332.341367px;}
.yad{bottom:335.941366px;}
.y168{bottom:337.381200px;}
.y2e{bottom:339.181364px;}
.y164{bottom:339.901364px;}
.y59{bottom:341.881363px;}
.yde{bottom:345.841362px;}
.y167{bottom:347.281361px;}
.y10b{bottom:347.461361px;}
.y7e{bottom:351.421359px;}
.y165{bottom:351.961200px;}
.y2d{bottom:353.941358px;}
.yac{bottom:354.841358px;}
.y58{bottom:360.961356px;}
.ydd{bottom:362.941355px;}
.y10a{bottom:364.741354px;}
.y2c{bottom:368.521353px;}
.y163{bottom:369.781352px;}
.y7d{bottom:370.321352px;}
.yab{bottom:373.921350px;}
.y57{bottom:379.861348px;}
.ydc{bottom:380.221348px;}
.y109{bottom:382.021347px;}
.y2b{bottom:383.281347px;}
.y162{bottom:387.061345px;}
.y7c{bottom:389.401344px;}
.yaa{bottom:392.821343px;}
.ydb{bottom:397.501341px;}
.y2a{bottom:398.761340px;}
.y108{bottom:399.301340px;}
.y161{bottom:404.161338px;}
.y7b{bottom:408.301337px;}
.ya9{bottom:411.901335px;}
.yda{bottom:414.781334px;}
.y107{bottom:416.581333px;}
.y29{bottom:417.841333px;}
.y160{bottom:421.441331px;}
.y7a{bottom:427.201329px;}
.ya8{bottom:430.801328px;}
.yd9{bottom:432.061327px;}
.y106{bottom:433.681327px;}
.y28{bottom:435.841326px;}
.y15a{bottom:436.201200px;}
.y56{bottom:436.741325px;}
.y79{bottom:446.281321px;}
.yd8{bottom:449.341320px;}
.ya7{bottom:449.881320px;}
.y15e{bottom:450.061200px;}
.y27{bottom:450.421320px;}
.y105{bottom:450.961320px;}
.y159{bottom:452.581319px;}
.y55{bottom:455.821318px;}
.y157{bottom:463.561200px;}
.y15c{bottom:463.921200px;}
.y26{bottom:465.181314px;}
.yd7{bottom:466.441313px;}
.y104{bottom:468.241313px;}
.ya6{bottom:468.781312px;}
.y54{bottom:474.721310px;}
.y155{bottom:477.601200px;}
.y25{bottom:479.761308px;}
.yd6{bottom:483.721307px;}
.y78{bottom:484.261306px;}
.y103{bottom:485.521306px;}
.ya5{bottom:487.681305px;}
.y153{bottom:491.461200px;}
.y53{bottom:493.621303px;}
.y24{bottom:494.521302px;}
.yd5{bottom:501.001300px;}
.y102{bottom:502.801299px;}
.y77{bottom:503.161299px;}
.y151{bottom:505.321200px;}
.ya4{bottom:506.761297px;}
.y150{bottom:507.841297px;}
.y23{bottom:509.101296px;}
.y52{bottom:512.701295px;}
.yd4{bottom:518.281293px;}
.y14e{bottom:519.001200px;}
.y101{bottom:520.081292px;}
.y76{bottom:522.061291px;}
.y22{bottom:523.861290px;}
.ya3{bottom:525.661290px;}
.y51{bottom:531.601287px;}
.y14c{bottom:532.861200px;}
.y149{bottom:535.381286px;}
.yd3{bottom:535.561286px;}
.y100{bottom:537.181285px;}
.y21{bottom:538.441285px;}
.ya2{bottom:540.961284px;}
.y75{bottom:541.141284px;}
.y14a{bottom:546.541200px;}
.y9d{bottom:548.521281px;}
.y148{bottom:549.061280px;}
.y50{bottom:550.681280px;}
.yd2{bottom:552.841279px;}
.ybd{bottom:553.021200px;}
.y20{bottom:553.201279px;}
.yff{bottom:554.461278px;}
.y9b{bottom:556.621200px;}
.ya0{bottom:556.981200px;}
.y9f{bottom:559.681276px;}
.y74{bottom:560.041276px;}
.y9e{bottom:560.221276px;}
.y145{bottom:561.121200px;}
.y147{bottom:563.641275px;}
.y1f{bottom:567.781273px;}
.y4f{bottom:569.581272px;}
.yd1{bottom:569.941272px;}
.yfe{bottom:571.741271px;}
.y9a{bottom:576.241270px;}
.y144{bottom:578.941268px;}
.y73{bottom:579.121268px;}
.y1e{bottom:582.361267px;}
.yd0{bottom:587.221265px;}
.y4e{bottom:588.481265px;}
.yfd{bottom:589.021264px;}
.y99{bottom:592.081263px;}
.y143{bottom:596.221262px;}
.y1d{bottom:597.121261px;}
.y72{bottom:598.021261px;}
.ycf{bottom:604.501258px;}
.yfc{bottom:606.301257px;}
.y4d{bottom:607.561257px;}
.y98{bottom:610.981256px;}
.y1c{bottom:611.701255px;}
.y142{bottom:613.501255px;}
.y71{bottom:617.101253px;}
.yce{bottom:621.781251px;}
.yfb{bottom:623.401251px;}
.y1b{bottom:626.461249px;}
.y97{bottom:629.881248px;}
.y141{bottom:630.781248px;}
.y70{bottom:636.001246px;}
.ycd{bottom:639.061244px;}
.yfa{bottom:640.681244px;}
.y1a{bottom:641.041244px;}
.y13f{bottom:645.541200px;}
.y4c{bottom:645.541242px;}
.y96{bottom:648.961240px;}
.y6f{bottom:654.901238px;}
.y19{bottom:655.801238px;}
.y13d{bottom:656.341200px;}
.ycc{bottom:656.341237px;}
.yf9{bottom:657.961237px;}
.y13b{bottom:659.221200px;}
.y4b{bottom:664.441234px;}
.y91{bottom:667.861200px;}
.y8c{bottom:667.861233px;}
.y139{bottom:670.201200px;}
.y18{bottom:670.381232px;}
.y137{bottom:673.081200px;}
.ycb{bottom:673.441231px;}
.y6e{bottom:673.981230px;}
.yf8{bottom:675.241230px;}
.y8e{bottom:676.321200px;}
.ybb{bottom:676.501200px;}
.y93{bottom:679.201200px;}
.y95{bottom:682.801227px;}
.y4a{bottom:683.341227px;}
.y135{bottom:684.061200px;}
.y17{bottom:685.141226px;}
.y133{bottom:686.941200px;}
.y8d{bottom:688.921224px;}
.yca{bottom:690.721224px;}
.yf7{bottom:692.521223px;}
.y90{bottom:692.701223px;}
.y6d{bottom:692.881223px;}
.y16{bottom:699.721220px;}
.y131{bottom:700.621200px;}
.y49{bottom:702.421219px;}
.yc9{bottom:708.001217px;}
.yf6{bottom:709.801216px;}
.y6c{bottom:711.961215px;}
.y12f{bottom:714.481200px;}
.y15{bottom:714.481214px;}
.y48{bottom:720.421212px;}
.yc8{bottom:725.281210px;}
.yf5{bottom:726.901209px;}
.y12d{bottom:728.341200px;}
.y14{bottom:729.061208px;}
.y6b{bottom:730.861208px;}
.y47{bottom:735.181206px;}
.y12b{bottom:739.141200px;}
.y129{bottom:742.021200px;}
.yc7{bottom:742.561203px;}
.y13{bottom:743.641203px;}
.yf4{bottom:744.181202px;}
.y46{bottom:749.761200px;}
.y127{bottom:755.881200px;}
.y12{bottom:758.401197px;}
.yc6{bottom:759.661196px;}
.yf3{bottom:761.461195px;}
.y45{bottom:764.521194px;}
.y125{bottom:766.861200px;}
.y6a{bottom:768.841192px;}
.y123{bottom:769.741200px;}
.y11{bottom:772.981191px;}
.yc5{bottom:776.941189px;}
.yf2{bottom:778.741189px;}
.y44{bottom:779.101188px;}
.y11f{bottom:784.141200px;}
.yc0{bottom:786.301185px;}
.y10{bottom:787.741185px;}
.y43{bottom:793.861182px;}
.yc4{bottom:794.221182px;}
.y121{bottom:795.301200px;}
.yf1{bottom:796.021182px;}
.y11e{bottom:801.961179px;}
.yf{bottom:802.321179px;}
.y69{bottom:806.821177px;}
.y42{bottom:808.441177px;}
.yc3{bottom:811.501175px;}
.yf0{bottom:813.301175px;}
.ye{bottom:817.261173px;}
.y11d{bottom:819.241172px;}
.y41{bottom:823.021171px;}
.y68{bottom:825.721170px;}
.yc2{bottom:828.781168px;}
.yef{bottom:830.401168px;}
.yc{bottom:832.741167px;}
.yd{bottom:834.001166px;}
.y11c{bottom:836.521165px;}
.y40{bottom:837.781165px;}
.ybf{bottom:843.181163px;}
.y67{bottom:844.621162px;}
.yc1{bottom:846.061162px;}
.y5{bottom:846.961161px;}
.yee{bottom:847.681161px;}
.y3f{bottom:852.361159px;}
.y11b{bottom:854.161158px;}
.y4{bottom:856.861157px;}
.y66{bottom:863.701155px;}
.yed{bottom:864.961154px;}
.y3e{bottom:867.121153px;}
.y3{bottom:872.341151px;}
.y11a{bottom:873.241151px;}
.y2{bottom:887.821145px;}
.y3d{bottom:888.361145px;}
.y1{bottom:904.381138px;}
.y3c{bottom:907.621137px;}
.h23{height:2.700000px;}
.h25{height:2.880000px;}
.he{height:3.839061px;}
.h29{height:8.460000px;}
.h11{height:12.780000px;}
.h24{height:13.320000px;}
.h22{height:13.500000px;}
.h27{height:13.680000px;}
.h13{height:16.560000px;}
.h15{height:16.920000px;}
.h1c{height:18.000000px;}
.h1f{height:18.360000px;}
.h5{height:21.051352px;}
.h2a{height:21.561111px;}
.h26{height:22.286871px;}
.h4{height:26.792629px;}
.h28{height:32.152136px;}
.h7{height:34.395106px;}
.ha{height:35.068306px;}
.h9{height:36.448545px;}
.h1e{height:36.999345px;}
.h2{height:38.501985px;}
.h18{height:39.322011px;}
.h1b{height:39.449154px;}
.h10{height:39.867432px;}
.h1a{height:40.594281px;}
.h14{height:41.159325px;}
.h21{height:42.608863px;}
.h6{height:42.740623px;}
.hc{height:44.130920px;}
.h16{height:44.459141px;}
.h8{height:45.292302px;}
.hf{height:45.440622px;}
.hd{height:47.229101px;}
.h3{height:47.843981px;}
.h1{height:49.282540px;}
.h19{height:52.429348px;}
.h20{height:52.947339px;}
.h12{height:53.159128px;}
.h1d{height:54.812311px;}
.h17{height:55.575260px;}
.hb{height:58.688617px;}
.h0{height:973.500000px;}
.w10{width:3.060000px;}
.w33{width:3.780000px;}
.w16{width:3.960000px;}
.w36{width:5.220000px;}
.wc{width:5.400000px;}
.wa{width:5.580000px;}
.we{width:5.940000px;}
.w24{width:6.300000px;}
.w9{width:7.560000px;}
.w29{width:7.920000px;}
.wb{width:8.280000px;}
.w2e{width:10.980000px;}
.w18{width:12.060000px;}
.w32{width:12.240000px;}
.w35{width:13.860000px;}
.w1e{width:14.940000px;}
.w23{width:15.120000px;}
.w2b{width:18.000000px;}
.w20{width:18.720000px;}
.w8{width:19.260000px;}
.w31{width:21.780000px;}
.w1c{width:24.660000px;}
.w22{width:24.840000px;}
.w2c{width:27.000000px;}
.wf{width:27.540000px;}
.w2{width:30.060000px;}
.w27{width:30.780000px;}
.w15{width:32.760000px;}
.w37{width:32.940000px;}
.w1b{width:35.280000px;}
.w1a{width:35.460000px;}
.w25{width:37.980000px;}
.w2a{width:39.060000px;}
.w11{width:39.240000px;}
.w13{width:39.420000px;}
.w2f{width:40.680000px;}
.w14{width:40.860000px;}
.w17{width:41.400000px;}
.w2d{width:42.300000px;}
.w19{width:42.840000px;}
.w12{width:44.100000px;}
.wd{width:44.640000px;}
.w6{width:50.580000px;}
.w1f{width:52.920000px;}
.w28{width:55.800000px;}
.w34{width:57.240000px;}
.w30{width:74.340000px;}
.w21{width:74.700000px;}
.w1d{width:77.940000px;}
.w26{width:83.340000px;}
.w1{width:160.560000px;}
.w7{width:164.520000px;}
.w4{width:167.940000px;}
.w3{width:171.180000px;}
.w5{width:179.820000px;}
.w0{width:688.500000px;}
.x0{left:0.000000px;}
.x1{left:93.239963px;}
.x35{left:99.720000px;}
.x6b{left:102.779959px;}
.x31{left:111.779955px;}
.x7{left:114.841970px;}
.x5{left:116.999953px;}
.x32{left:122.219951px;}
.x41{left:132.480000px;}
.x4a{left:135.000000px;}
.x42{left:136.440000px;}
.x69{left:140.400000px;}
.x77{left:141.480000px;}
.x36{left:144.360000px;}
.xd{left:148.680000px;}
.x68{left:151.380000px;}
.x4d{left:152.640000px;}
.x9{left:159.300000px;}
.x3{left:163.979934px;}
.x4{left:167.939933px;}
.xe{left:169.559932px;}
.x51{left:172.440000px;}
.x4e{left:174.420000px;}
.x6d{left:175.500000px;}
.x43{left:177.660000px;}
.x5b{left:191.340000px;}
.x2e{left:193.139923px;}
.x78{left:195.480000px;}
.x2f{left:196.559921px;}
.x37{left:198.540000px;}
.x10{left:208.799893px;}
.x52{left:210.420000px;}
.x4c{left:213.120000px;}
.x33{left:217.979913px;}
.x4f{left:219.600000px;}
.xc{left:221.039912px;}
.x4b{left:223.200000px;}
.x8{left:226.979909px;}
.x34{left:231.839907px;}
.xa{left:233.639907px;}
.x50{left:237.600000px;}
.x49{left:241.200000px;}
.xb{left:244.260000px;}
.x79{left:250.200000px;}
.xf{left:253.979898px;}
.x6a{left:256.500000px;}
.x61{left:258.300000px;}
.x22{left:259.920000px;}
.x6e{left:261.180000px;}
.x5c{left:265.500000px;}
.x67{left:266.940000px;}
.x7a{left:268.200000px;}
.x20{left:273.779884px;}
.x1e{left:285.479886px;}
.x1c{left:291.599883px;}
.x25{left:298.439881px;}
.x38{left:300.600000px;}
.x44{left:301.860000px;}
.x39{left:303.660000px;}
.x23{left:305.639878px;}
.x26{left:306.899877px;}
.x30{left:313.019875px;}
.x11{left:319.859872px;}
.x62{left:321.120000px;}
.x72{left:324.180000px;}
.x53{left:325.260000px;}
.x21{left:329.759868px;}
.x6f{left:331.380000px;}
.x5d{left:333.540000px;}
.x6{left:335.159866px;}
.x1f{left:341.819819px;}
.x3a{left:342.900000px;}
.x70{left:347.220000px;}
.x2{left:349.379860px;}
.x17{left:353.340000px;}
.x13{left:365.220000px;}
.x54{left:366.840000px;}
.x3b{left:372.780000px;}
.x1d{left:373.860000px;}
.x18{left:376.199850px;}
.x71{left:394.920000px;}
.x55{left:397.620000px;}
.x56{left:401.400000px;}
.x45{left:410.040000px;}
.x5e{left:412.020000px;}
.x1a{left:415.439855px;}
.x3c{left:416.880000px;}
.x3d{left:419.940000px;}
.x46{left:422.100000px;}
.x24{left:424.439830px;}
.x27{left:426.599829px;}
.x16{left:427.679829px;}
.x12{left:434.879826px;}
.x14{left:442.259823px;}
.x15{left:452.880000px;}
.x57{left:457.200000px;}
.x3e{left:459.360000px;}
.x19{left:464.759814px;}
.x6c{left:477.359809px;}
.x63{left:486.720000px;}
.x3f{left:491.940000px;}
.x58{left:496.260000px;}
.x5f{left:500.220000px;}
.x73{left:501.660000px;}
.x59{left:504.180000px;}
.x74{left:505.440000px;}
.x64{left:513.720000px;}
.x75{left:519.300000px;}
.x47{left:527.400000px;}
.x1b{left:533.159787px;}
.x40{left:535.860000px;}
.x48{left:539.460000px;}
.x65{left:543.420000px;}
.x5a{left:554.039778px;}
.x60{left:556.920000px;}
.x76{left:560.700000px;}
.x66{left:570.420000px;}
.x2a{left:574.920000px;}
.x28{left:576.000000px;}
.x2b{left:580.500000px;}
.x2c{left:588.780000px;}
.x2d{left:594.180000px;}
.x29{left:595.260000px;}
@media print{
.v1{vertical-align:-3.199999pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.006400pt;}
.ls6{letter-spacing:0.006408pt;}
.lsb{letter-spacing:0.100427pt;}
.ls7{letter-spacing:0.140693pt;}
.ls2{letter-spacing:0.162613pt;}
.ls8{letter-spacing:0.237280pt;}
.lsc{letter-spacing:0.258613pt;}
.ls1{letter-spacing:0.309280pt;}
.ls0{letter-spacing:0.325173pt;}
.lsa{letter-spacing:0.326453pt;}
.ls9{letter-spacing:0.326485pt;}
.ls5{letter-spacing:0.643360pt;}
.ws16{word-spacing:-41.274223pt;}
.ws2{word-spacing:-35.306866pt;}
.ws4{word-spacing:-14.719994pt;}
.ws17{word-spacing:-13.606480pt;}
.ws15{word-spacing:-13.279995pt;}
.wsf{word-spacing:-13.150075pt;}
.ws0{word-spacing:-11.999995pt;}
.ws1{word-spacing:-11.359995pt;}
.ws18{word-spacing:-10.719996pt;}
.ws14{word-spacing:-9.279996pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:1.608667pt;}
.ws12{word-spacing:15.140943pt;}
.ws6{word-spacing:16.090804pt;}
.ws8{word-spacing:24.012940pt;}
.wsd{word-spacing:31.054317pt;}
.ws5{word-spacing:34.014209pt;}
.wsb{word-spacing:41.055756pt;}
.ws10{word-spacing:74.959634pt;}
.ws7{word-spacing:75.167301pt;}
.wsc{word-spacing:82.849308pt;}
.ws13{word-spacing:91.764904pt;}
.wsa{word-spacing:205.755026pt;}
.wse{word-spacing:219.837461pt;}
.ws11{word-spacing:459.076473pt;}
._1c{margin-left:-4.261909pt;}
._0{margin-left:-1.031074pt;}
._1{width:1.025572pt;}
._5{width:1.946656pt;}
._6{width:2.888072pt;}
._7{width:4.228531pt;}
._3{width:5.904014pt;}
._2{width:7.320778pt;}
._e{width:8.267772pt;}
._4{width:9.195066pt;}
._8{width:10.281043pt;}
._c{width:11.200120pt;}
._a{width:12.459489pt;}
._9{width:13.486525pt;}
._27{width:15.044996pt;}
._11{width:15.944523pt;}
._d{width:17.081686pt;}
._18{width:18.007716pt;}
._25{width:19.215673pt;}
._b{width:20.231879pt;}
._16{width:21.462393pt;}
._26{width:22.364452pt;}
._19{width:23.267011pt;}
._14{width:24.295999pt;}
._15{width:25.475164pt;}
._28{width:26.422375pt;}
._2c{width:27.575167pt;}
._17{width:29.242209pt;}
._f{width:30.430741pt;}
._12{width:32.370906pt;}
._13{width:33.613836pt;}
._10{width:35.121383pt;}
._2e{width:36.081639pt;}
._30{width:38.698814pt;}
._2b{width:40.381331pt;}
._2d{width:41.445895pt;}
._2f{width:42.393894pt;}
._2a{width:43.821016pt;}
._29{width:45.062065pt;}
._1d{width:72.875071pt;}
._1a{width:74.739586pt;}
._1f{width:77.299822pt;}
._21{width:79.916556pt;}
._23{width:163.363904pt;}
._24{width:339.211964pt;}
._1e{width:368.289427pt;}
._1b{width:376.237369pt;}
._22{width:383.012385pt;}
._20{width:394.800973pt;}
.fs7{font-size:5.119998pt;}
.fs3{font-size:21.119992pt;}
.fs2{font-size:26.879989pt;}
.fse{font-size:37.119985pt;}
.fsb{font-size:39.450224pt;}
.fs8{font-size:39.997424pt;}
.fsa{font-size:42.664943pt;}
.fs4{font-size:42.879983pt;}
.fs5{font-size:45.439982pt;}
.fsd{font-size:47.340141pt;}
.fs1{font-size:47.999981pt;}
.fsc{font-size:52.600299pt;}
.fsf{font-size:53.119979pt;}
.fs9{font-size:53.332459pt;}
.fs6{font-size:58.879976pt;}
.fs0{font-size:61.439975pt;}
.y0{bottom:0.000000pt;}
.y16d{bottom:1.440149pt;}
.y120{bottom:2.239987pt;}
.y124{bottom:2.239992pt;}
.y128{bottom:2.239997pt;}
.y12a{bottom:2.240002pt;}
.y12e{bottom:2.240007pt;}
.y130{bottom:2.240012pt;}
.y132{bottom:2.240017pt;}
.y134{bottom:2.240022pt;}
.y138{bottom:2.240026pt;}
.y13c{bottom:2.240031pt;}
.y140{bottom:2.240036pt;}
.y146{bottom:2.240066pt;}
.y14b{bottom:2.240071pt;}
.y14d{bottom:2.240076pt;}
.y14f{bottom:2.240081pt;}
.y152{bottom:2.240086pt;}
.y154{bottom:2.240091pt;}
.y156{bottom:2.240096pt;}
.y15d{bottom:2.240101pt;}
.y15f{bottom:2.240106pt;}
.y15b{bottom:2.240111pt;}
.y166{bottom:2.240141pt;}
.y169{bottom:2.240146pt;}
.y16b{bottom:2.240151pt;}
.y170{bottom:2.240156pt;}
.y172{bottom:2.240161pt;}
.y122{bottom:2.399983pt;}
.y8f{bottom:2.400025pt;}
.y126{bottom:2.559993pt;}
.y12c{bottom:2.560003pt;}
.y136{bottom:2.560022pt;}
.y13a{bottom:2.560027pt;}
.y13e{bottom:2.560032pt;}
.y158{bottom:2.560101pt;}
.y92{bottom:2.880028pt;}
.ya1{bottom:2.880067pt;}
.y94{bottom:3.200024pt;}
.ybc{bottom:3.200025pt;}
.y9c{bottom:3.200067pt;}
.ybe{bottom:3.200069pt;}
.yb{bottom:53.014379pt;}
.ya{bottom:65.174374pt;}
.y9{bottom:77.494369pt;}
.y65{bottom:84.694633pt;}
.y8{bottom:88.694365pt;}
.yec{bottom:92.694630pt;}
.y8b{bottom:93.174629pt;}
.y119{bottom:94.294629pt;}
.y7{bottom:95.894362pt;}
.yba{bottom:96.214628pt;}
.y64{bottom:101.494626pt;}
.y6{bottom:107.094357pt;}
.yeb{bottom:108.054623pt;}
.y118{bottom:109.654623pt;}
.y8a{bottom:109.974623pt;}
.yb9{bottom:113.174621pt;}
.y63{bottom:118.454619pt;}
.yea{bottom:123.414617pt;}
.y117{bottom:124.854617pt;}
.y89{bottom:126.774616pt;}
.yb8{bottom:129.974615pt;}
.y3b{bottom:132.054347pt;}
.y62{bottom:135.254613pt;}
.ye9{bottom:138.774611pt;}
.y116{bottom:140.214611pt;}
.y88{bottom:143.734609pt;}
.y3a{bottom:145.174609pt;}
.yb7{bottom:146.774608pt;}
.y61{bottom:152.054606pt;}
.ye8{bottom:153.974605pt;}
.y115{bottom:155.574604pt;}
.y39{bottom:158.134603pt;}
.y87{bottom:160.534602pt;}
.yb6{bottom:162.454602pt;}
.yb5{bottom:163.734601pt;}
.y60{bottom:169.014599pt;}
.ye7{bottom:169.334599pt;}
.y114{bottom:170.934598pt;}
.y38{bottom:171.254598pt;}
.y86{bottom:177.494596pt;}
.yb4{bottom:180.534594pt;}
.y37{bottom:184.214593pt;}
.ye6{bottom:184.694593pt;}
.y5f{bottom:185.814592pt;}
.y113{bottom:186.294592pt;}
.y85{bottom:194.294589pt;}
.y36{bottom:197.334588pt;}
.yb3{bottom:197.494588pt;}
.ye5{bottom:200.054587pt;}
.y112{bottom:201.494586pt;}
.y5e{bottom:202.774586pt;}
.y35{bottom:210.294583pt;}
.y84{bottom:211.094582pt;}
.yb2{bottom:214.294581pt;}
.ye4{bottom:215.414581pt;}
.y111{bottom:216.854580pt;}
.y5d{bottom:219.574579pt;}
.y34{bottom:223.414577pt;}
.y83{bottom:228.054575pt;}
.ye3{bottom:230.774574pt;}
.yb1{bottom:231.094574pt;}
.y110{bottom:232.214574pt;}
.y174{bottom:233.334573pt;}
.y33{bottom:236.374572pt;}
.y82{bottom:244.854569pt;}
.ye2{bottom:245.974568pt;}
.y10f{bottom:247.574568pt;}
.yb0{bottom:248.054567pt;}
.y173{bottom:248.694567pt;}
.y32{bottom:249.494567pt;}
.y5c{bottom:253.334565pt;}
.ye1{bottom:261.334562pt;}
.y171{bottom:261.814400pt;}
.y81{bottom:261.814562pt;}
.y31{bottom:262.454562pt;}
.y10e{bottom:262.934561pt;}
.yaf{bottom:264.854561pt;}
.y5b{bottom:270.134559pt;}
.y16f{bottom:273.974400pt;}
.y30{bottom:275.414557pt;}
.ye0{bottom:276.694556pt;}
.y10d{bottom:278.294555pt;}
.y80{bottom:278.614555pt;}
.yae{bottom:281.814554pt;}
.y16a{bottom:286.934400pt;}
.y5a{bottom:287.094552pt;}
.y2f{bottom:288.534551pt;}
.y16e{bottom:289.174551pt;}
.y16c{bottom:291.734400pt;}
.ydf{bottom:292.054550pt;}
.y10c{bottom:293.494549pt;}
.y7f{bottom:295.414549pt;}
.yad{bottom:298.614547pt;}
.y168{bottom:299.894400pt;}
.y2e{bottom:301.494546pt;}
.y164{bottom:302.134546pt;}
.y59{bottom:303.894545pt;}
.yde{bottom:307.414544pt;}
.y167{bottom:308.694543pt;}
.y10b{bottom:308.854543pt;}
.y7e{bottom:312.374542pt;}
.y165{bottom:312.854400pt;}
.y2d{bottom:314.614541pt;}
.yac{bottom:315.414541pt;}
.y58{bottom:320.854538pt;}
.ydd{bottom:322.614538pt;}
.y10a{bottom:324.214537pt;}
.y2c{bottom:327.574536pt;}
.y163{bottom:328.694535pt;}
.y7d{bottom:329.174535pt;}
.yab{bottom:332.374534pt;}
.y57{bottom:337.654532pt;}
.ydc{bottom:337.974531pt;}
.y109{bottom:339.574531pt;}
.y2b{bottom:340.694530pt;}
.y162{bottom:344.054529pt;}
.y7c{bottom:346.134528pt;}
.yaa{bottom:349.174527pt;}
.ydb{bottom:353.334525pt;}
.y2a{bottom:354.454525pt;}
.y108{bottom:354.934525pt;}
.y161{bottom:359.254523pt;}
.y7b{bottom:362.934521pt;}
.ya9{bottom:366.134520pt;}
.yda{bottom:368.694519pt;}
.y107{bottom:370.294519pt;}
.y29{bottom:371.414518pt;}
.y160{bottom:374.614517pt;}
.y7a{bottom:379.734515pt;}
.ya8{bottom:382.934513pt;}
.yd9{bottom:384.054513pt;}
.y106{bottom:385.494512pt;}
.y28{bottom:387.414512pt;}
.y15a{bottom:387.734400pt;}
.y56{bottom:388.214511pt;}
.y79{bottom:396.694508pt;}
.yd8{bottom:399.414507pt;}
.ya7{bottom:399.894507pt;}
.y15e{bottom:400.054400pt;}
.y27{bottom:400.374507pt;}
.y105{bottom:400.854506pt;}
.y159{bottom:402.294506pt;}
.y55{bottom:405.174505pt;}
.y157{bottom:412.054400pt;}
.y15c{bottom:412.374400pt;}
.y26{bottom:413.494501pt;}
.yd7{bottom:414.614501pt;}
.y104{bottom:416.214500pt;}
.ya6{bottom:416.694500pt;}
.y54{bottom:421.974498pt;}
.y155{bottom:424.534400pt;}
.y25{bottom:426.454496pt;}
.yd6{bottom:429.974495pt;}
.y78{bottom:430.454494pt;}
.y103{bottom:431.574494pt;}
.ya5{bottom:433.494493pt;}
.y153{bottom:436.854400pt;}
.y53{bottom:438.774491pt;}
.y24{bottom:439.574491pt;}
.yd5{bottom:445.334489pt;}
.y102{bottom:446.934488pt;}
.y77{bottom:447.254488pt;}
.y151{bottom:449.174400pt;}
.ya4{bottom:450.454486pt;}
.y150{bottom:451.414486pt;}
.y23{bottom:452.534486pt;}
.y52{bottom:455.734484pt;}
.yd4{bottom:460.694482pt;}
.y14e{bottom:461.334400pt;}
.y101{bottom:462.294482pt;}
.y76{bottom:464.054481pt;}
.y22{bottom:465.654480pt;}
.ya3{bottom:467.254480pt;}
.y51{bottom:472.534478pt;}
.y14c{bottom:473.654400pt;}
.y149{bottom:475.894476pt;}
.yd3{bottom:476.054476pt;}
.y100{bottom:477.494476pt;}
.y21{bottom:478.614475pt;}
.ya2{bottom:480.854474pt;}
.y75{bottom:481.014474pt;}
.y14a{bottom:485.814400pt;}
.y9d{bottom:487.574472pt;}
.y148{bottom:488.054471pt;}
.y50{bottom:489.494471pt;}
.yd2{bottom:491.414470pt;}
.ybd{bottom:491.574400pt;}
.y20{bottom:491.734470pt;}
.yff{bottom:492.854470pt;}
.y9b{bottom:494.774400pt;}
.ya0{bottom:495.094400pt;}
.y9f{bottom:497.494468pt;}
.y74{bottom:497.814468pt;}
.y9e{bottom:497.974467pt;}
.y145{bottom:498.774400pt;}
.y147{bottom:501.014466pt;}
.y1f{bottom:504.694465pt;}
.y4f{bottom:506.294464pt;}
.yd1{bottom:506.614464pt;}
.yfe{bottom:508.214463pt;}
.y9a{bottom:512.214462pt;}
.y144{bottom:514.614461pt;}
.y73{bottom:514.774461pt;}
.y1e{bottom:517.654460pt;}
.yd0{bottom:521.974458pt;}
.y4e{bottom:523.094457pt;}
.yfd{bottom:523.574457pt;}
.y99{bottom:526.294456pt;}
.y143{bottom:529.974455pt;}
.y1d{bottom:530.774454pt;}
.y72{bottom:531.574454pt;}
.ycf{bottom:537.334452pt;}
.yfc{bottom:538.934451pt;}
.y4d{bottom:540.054451pt;}
.y98{bottom:543.094449pt;}
.y1c{bottom:543.734449pt;}
.y142{bottom:545.334449pt;}
.y71{bottom:548.534447pt;}
.yce{bottom:552.694446pt;}
.yfb{bottom:554.134445pt;}
.y1b{bottom:556.854444pt;}
.y97{bottom:559.894443pt;}
.y141{bottom:560.694442pt;}
.y70{bottom:565.334441pt;}
.ycd{bottom:568.054439pt;}
.yfa{bottom:569.494439pt;}
.y1a{bottom:569.814439pt;}
.y13f{bottom:573.814400pt;}
.y4c{bottom:573.814437pt;}
.y96{bottom:576.854436pt;}
.y6f{bottom:582.134434pt;}
.y19{bottom:582.934433pt;}
.y13d{bottom:583.414400pt;}
.ycc{bottom:583.414433pt;}
.yf9{bottom:584.854433pt;}
.y13b{bottom:585.974400pt;}
.y4b{bottom:590.614430pt;}
.y91{bottom:593.654400pt;}
.y8c{bottom:593.654429pt;}
.y139{bottom:595.734400pt;}
.y18{bottom:595.894428pt;}
.y137{bottom:598.294400pt;}
.ycb{bottom:598.614427pt;}
.y6e{bottom:599.094427pt;}
.yf8{bottom:600.214427pt;}
.y8e{bottom:601.174400pt;}
.ybb{bottom:601.334400pt;}
.y93{bottom:603.734400pt;}
.y95{bottom:606.934424pt;}
.y4a{bottom:607.414424pt;}
.y135{bottom:608.054400pt;}
.y17{bottom:609.014423pt;}
.y133{bottom:610.614400pt;}
.y8d{bottom:612.374422pt;}
.yca{bottom:613.974421pt;}
.yf7{bottom:615.574420pt;}
.y90{bottom:615.734420pt;}
.y6d{bottom:615.894420pt;}
.y16{bottom:621.974418pt;}
.y131{bottom:622.774400pt;}
.y49{bottom:624.374417pt;}
.yc9{bottom:629.334415pt;}
.yf6{bottom:630.934414pt;}
.y6c{bottom:632.854414pt;}
.y12f{bottom:635.094400pt;}
.y15{bottom:635.094413pt;}
.y48{bottom:640.374411pt;}
.yc8{bottom:644.694409pt;}
.yf5{bottom:646.134408pt;}
.y12d{bottom:647.414400pt;}
.y14{bottom:648.054407pt;}
.y6b{bottom:649.654407pt;}
.y47{bottom:653.494405pt;}
.y12b{bottom:657.014400pt;}
.y129{bottom:659.574400pt;}
.yc7{bottom:660.054403pt;}
.y13{bottom:661.014402pt;}
.yf4{bottom:661.494402pt;}
.y46{bottom:666.454400pt;}
.y127{bottom:671.894400pt;}
.y12{bottom:674.134397pt;}
.yc6{bottom:675.254397pt;}
.yf3{bottom:676.854396pt;}
.y45{bottom:679.574395pt;}
.y125{bottom:681.654400pt;}
.y6a{bottom:683.414393pt;}
.y123{bottom:684.214400pt;}
.y11{bottom:687.094392pt;}
.yc5{bottom:690.614390pt;}
.yf2{bottom:692.214390pt;}
.y44{bottom:692.534390pt;}
.y11f{bottom:697.014400pt;}
.yc0{bottom:698.934387pt;}
.y10{bottom:700.214387pt;}
.y43{bottom:705.654384pt;}
.yc4{bottom:705.974384pt;}
.y121{bottom:706.934400pt;}
.yf1{bottom:707.574384pt;}
.y11e{bottom:712.854382pt;}
.yf{bottom:713.174381pt;}
.y69{bottom:717.174380pt;}
.y42{bottom:718.614379pt;}
.yc3{bottom:721.334378pt;}
.yf0{bottom:722.934377pt;}
.ye{bottom:726.454376pt;}
.y11d{bottom:728.214375pt;}
.y41{bottom:731.574374pt;}
.y68{bottom:733.974373pt;}
.yc2{bottom:736.694372pt;}
.yef{bottom:738.134371pt;}
.yc{bottom:740.214371pt;}
.yd{bottom:741.334370pt;}
.y11c{bottom:743.574369pt;}
.y40{bottom:744.694369pt;}
.ybf{bottom:749.494367pt;}
.y67{bottom:750.774366pt;}
.yc1{bottom:752.054366pt;}
.y5{bottom:752.854366pt;}
.yee{bottom:753.494365pt;}
.y3f{bottom:757.654364pt;}
.y11b{bottom:759.254363pt;}
.y4{bottom:761.654362pt;}
.y66{bottom:767.734360pt;}
.yed{bottom:768.854359pt;}
.y3e{bottom:770.774358pt;}
.y3{bottom:775.414357pt;}
.y11a{bottom:776.214356pt;}
.y2{bottom:789.174351pt;}
.y3d{bottom:789.654351pt;}
.y1{bottom:803.894345pt;}
.y3c{bottom:806.774344pt;}
.h23{height:2.400000pt;}
.h25{height:2.560000pt;}
.he{height:3.412499pt;}
.h29{height:7.520000pt;}
.h11{height:11.360000pt;}
.h24{height:11.840000pt;}
.h22{height:12.000000pt;}
.h27{height:12.160000pt;}
.h13{height:14.720000pt;}
.h15{height:15.040000pt;}
.h1c{height:16.000000pt;}
.h1f{height:16.320000pt;}
.h5{height:18.712313pt;}
.h2a{height:19.165432pt;}
.h26{height:19.810552pt;}
.h4{height:23.815670pt;}
.h28{height:28.579676pt;}
.h7{height:30.573428pt;}
.ha{height:31.171828pt;}
.h9{height:32.398707pt;}
.h1e{height:32.888307pt;}
.h2{height:34.223986pt;}
.h18{height:34.952899pt;}
.h1b{height:35.065915pt;}
.h10{height:35.437718pt;}
.h1a{height:36.083805pt;}
.h14{height:36.586067pt;}
.h21{height:37.874545pt;}
.h6{height:37.991665pt;}
.hc{height:39.227484pt;}
.h16{height:39.519237pt;}
.h8{height:40.259824pt;}
.hf{height:40.391664pt;}
.hd{height:41.981423pt;}
.h3{height:42.527983pt;}
.h1{height:43.806702pt;}
.h19{height:46.603865pt;}
.h20{height:47.064301pt;}
.h12{height:47.252558pt;}
.h1d{height:48.722054pt;}
.h17{height:49.400231pt;}
.hb{height:52.167659pt;}
.h0{height:865.333333pt;}
.w10{width:2.720000pt;}
.w33{width:3.360000pt;}
.w16{width:3.520000pt;}
.w36{width:4.640000pt;}
.wc{width:4.800000pt;}
.wa{width:4.960000pt;}
.we{width:5.280000pt;}
.w24{width:5.600000pt;}
.w9{width:6.720000pt;}
.w29{width:7.040000pt;}
.wb{width:7.360000pt;}
.w2e{width:9.760000pt;}
.w18{width:10.720000pt;}
.w32{width:10.880000pt;}
.w35{width:12.320000pt;}
.w1e{width:13.280000pt;}
.w23{width:13.440000pt;}
.w2b{width:16.000000pt;}
.w20{width:16.640000pt;}
.w8{width:17.120000pt;}
.w31{width:19.360000pt;}
.w1c{width:21.920000pt;}
.w22{width:22.080000pt;}
.w2c{width:24.000000pt;}
.wf{width:24.480000pt;}
.w2{width:26.720000pt;}
.w27{width:27.360000pt;}
.w15{width:29.120000pt;}
.w37{width:29.280000pt;}
.w1b{width:31.360000pt;}
.w1a{width:31.520000pt;}
.w25{width:33.760000pt;}
.w2a{width:34.720000pt;}
.w11{width:34.880000pt;}
.w13{width:35.040000pt;}
.w2f{width:36.160000pt;}
.w14{width:36.320000pt;}
.w17{width:36.800000pt;}
.w2d{width:37.600000pt;}
.w19{width:38.080000pt;}
.w12{width:39.200000pt;}
.wd{width:39.680000pt;}
.w6{width:44.960000pt;}
.w1f{width:47.040000pt;}
.w28{width:49.600000pt;}
.w34{width:50.880000pt;}
.w30{width:66.080000pt;}
.w21{width:66.400000pt;}
.w1d{width:69.280000pt;}
.w26{width:74.080000pt;}
.w1{width:142.720000pt;}
.w7{width:146.240000pt;}
.w4{width:149.280000pt;}
.w3{width:152.160000pt;}
.w5{width:159.840000pt;}
.w0{width:612.000000pt;}
.x0{left:0.000000pt;}
.x1{left:82.879967pt;}
.x35{left:88.640000pt;}
.x6b{left:91.359963pt;}
.x31{left:99.359960pt;}
.x7{left:102.081751pt;}
.x5{left:103.999958pt;}
.x32{left:108.639957pt;}
.x41{left:117.760000pt;}
.x4a{left:120.000000pt;}
.x42{left:121.280000pt;}
.x69{left:124.800000pt;}
.x77{left:125.760000pt;}
.x36{left:128.320000pt;}
.xd{left:132.160000pt;}
.x68{left:134.560000pt;}
.x4d{left:135.680000pt;}
.x9{left:141.600000pt;}
.x3{left:145.759942pt;}
.x4{left:149.279940pt;}
.xe{left:150.719940pt;}
.x51{left:153.280000pt;}
.x4e{left:155.040000pt;}
.x6d{left:156.000000pt;}
.x43{left:157.920000pt;}
.x5b{left:170.080000pt;}
.x2e{left:171.679931pt;}
.x78{left:173.760000pt;}
.x2f{left:174.719930pt;}
.x37{left:176.480000pt;}
.x10{left:185.599905pt;}
.x52{left:187.040000pt;}
.x4c{left:189.440000pt;}
.x33{left:193.759922pt;}
.x4f{left:195.200000pt;}
.xc{left:196.479921pt;}
.x4b{left:198.400000pt;}
.x8{left:201.759919pt;}
.x34{left:206.079918pt;}
.xa{left:207.679917pt;}
.x50{left:211.200000pt;}
.x49{left:214.400000pt;}
.xb{left:217.120000pt;}
.x79{left:222.400000pt;}
.xf{left:225.759910pt;}
.x6a{left:228.000000pt;}
.x61{left:229.600000pt;}
.x22{left:231.040000pt;}
.x6e{left:232.160000pt;}
.x5c{left:236.000000pt;}
.x67{left:237.280000pt;}
.x7a{left:238.400000pt;}
.x20{left:243.359897pt;}
.x1e{left:253.759898pt;}
.x1c{left:259.199896pt;}
.x25{left:265.279894pt;}
.x38{left:267.200000pt;}
.x44{left:268.320000pt;}
.x39{left:269.920000pt;}
.x23{left:271.679891pt;}
.x26{left:272.799891pt;}
.x30{left:278.239889pt;}
.x11{left:284.319886pt;}
.x62{left:285.440000pt;}
.x72{left:288.160000pt;}
.x53{left:289.120000pt;}
.x21{left:293.119883pt;}
.x6f{left:294.560000pt;}
.x5d{left:296.480000pt;}
.x6{left:297.919881pt;}
.x1f{left:303.839839pt;}
.x3a{left:304.800000pt;}
.x70{left:308.640000pt;}
.x2{left:310.559876pt;}
.x17{left:314.080000pt;}
.x13{left:324.640000pt;}
.x54{left:326.080000pt;}
.x3b{left:331.360000pt;}
.x1d{left:332.320000pt;}
.x18{left:334.399866pt;}
.x71{left:351.040000pt;}
.x55{left:353.440000pt;}
.x56{left:356.800000pt;}
.x45{left:364.480000pt;}
.x5e{left:366.240000pt;}
.x1a{left:369.279871pt;}
.x3c{left:370.560000pt;}
.x3d{left:373.280000pt;}
.x46{left:375.200000pt;}
.x24{left:377.279849pt;}
.x27{left:379.199848pt;}
.x16{left:380.159848pt;}
.x12{left:386.559845pt;}
.x14{left:393.119843pt;}
.x15{left:402.560000pt;}
.x57{left:406.400000pt;}
.x3e{left:408.320000pt;}
.x19{left:413.119835pt;}
.x6c{left:424.319830pt;}
.x63{left:432.640000pt;}
.x3f{left:437.280000pt;}
.x58{left:441.120000pt;}
.x5f{left:444.640000pt;}
.x73{left:445.920000pt;}
.x59{left:448.160000pt;}
.x74{left:449.280000pt;}
.x64{left:456.640000pt;}
.x75{left:461.600000pt;}
.x47{left:468.800000pt;}
.x1b{left:473.919810pt;}
.x40{left:476.320000pt;}
.x48{left:479.520000pt;}
.x65{left:483.040000pt;}
.x5a{left:492.479803pt;}
.x60{left:495.040000pt;}
.x76{left:498.400000pt;}
.x66{left:507.040000pt;}
.x2a{left:511.040000pt;}
.x28{left:512.000000pt;}
.x2b{left:516.000000pt;}
.x2c{left:523.360000pt;}
.x2d{left:528.160000pt;}
.x29{left:529.120000pt;}
}




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