
    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_3dde2fc6f217027e915f0be3.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fee336a495ae0eed6093131f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bbfbcf163599dcd7b5ef4a44.woff')format("woff");}.ff4{font-family:ff4;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: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_b5d46b45d3bce416e56dc326.woff')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_4166d8b1bdf1c4686c4a959d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_5e05332919208c5528251e2c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9ac1299223d30acf6d0ff125.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e137b472d74ee1e0e9d57cce.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_0f44a478be8e14bc0b1409e7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_834ad05b3e7ab4d68c3d07e7.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f19c1e41a540ec502e715af5.woff')format("woff");}.fff{font-family:fff;line-height:0.957520;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_96349ae6d7bf08f8b79d40f0.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_10df556362ecaa20d5ae3df7.woff')format("woff");}.ff11{font-family:ff11;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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m8{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);}
.ma{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);}
.m0{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);}
.m6{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);}
.m1{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);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879999px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.073080px;}
.ls5{letter-spacing:0.195300px;}
.ls6{letter-spacing:0.254220px;}
.ls8{letter-spacing:0.308220px;}
.ls1{letter-spacing:0.340926px;}
.ls7{letter-spacing:0.341340px;}
.ls9{letter-spacing:1.513439px;}
.lsa{letter-spacing:1.749059px;}
.ls4{letter-spacing:10.778036px;}
.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;}
}
.ws1{word-spacing:-22.407831px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.179034px;}
.ws6{word-spacing:-13.715995px;}
.ws5{word-spacing:-13.013995px;}
.ws2{word-spacing:-10.342076px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-669.958298px;}
._4{margin-left:-607.253359px;}
._c{margin-left:-468.238573px;}
._7{margin-left:-334.459233px;}
._9{margin-left:-86.459546px;}
._a{margin-left:-68.459234px;}
._8{margin-left:-52.559242px;}
._b{margin-left:-34.559225px;}
._2{margin-left:-25.559162px;}
._6{margin-left:-16.559201px;}
._3{margin-left:-2.100096px;}
._1{margin-left:-1.025158px;}
._0{width:1.224998px;}
._10{width:2.234047px;}
._17{width:3.515051px;}
._16{width:4.875088px;}
._2a{width:5.958003px;}
._19{width:7.011046px;}
._e{width:8.014611px;}
._15{width:9.534114px;}
._14{width:10.553864px;}
._2e{width:11.916366px;}
._36{width:13.593569px;}
._d{width:14.773056px;}
._22{width:15.879983px;}
._18{width:17.006596px;}
._29{width:18.499285px;}
._31{width:19.841675px;}
._1f{width:21.077189px;}
._20{width:22.621770px;}
._1e{width:24.220085px;}
._1d{width:25.423643px;}
._13{width:26.908886px;}
._38{width:27.962730px;}
._30{width:28.991861px;}
._23{width:30.118079px;}
._12{width:31.907460px;}
._11{width:33.153012px;}
._32{width:34.401257px;}
._3d{width:35.422211px;}
._28{width:36.479388px;}
._2f{width:38.125342px;}
._1c{width:39.422335px;}
._1b{width:40.429586px;}
._33{width:42.555876px;}
._34{width:43.855649px;}
._2d{width:45.862819px;}
._3b{width:47.755623px;}
._25{width:48.910482px;}
._26{width:49.941942px;}
._37{width:51.893426px;}
._27{width:52.999876px;}
._3a{width:54.781238px;}
._3f{width:56.848981px;}
._3e{width:58.202555px;}
._24{width:61.966477px;}
._3c{width:63.405057px;}
._35{width:70.596993px;}
._40{width:71.655243px;}
._2c{width:73.343703px;}
._2b{width:74.729830px;}
._41{width:78.185901px;}
._1a{width:87.691345px;}
._39{width:100.986096px;}
._21{width:126.567267px;}
._f{width:311.489689px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsb{font-size:23.759990px;}
.fs8{font-size:33.119987px;}
.fse{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fs10{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fsf{font-size:51.119980px;}
.fsa{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsd{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y46{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.ye4{bottom:3.059054px;}
.ye6{bottom:3.059061px;}
.ye8{bottom:3.059068px;}
.yea{bottom:3.059074px;}
.yec{bottom:3.059081px;}
.y20{bottom:3.059116px;}
.yb8{bottom:3.059127px;}
.yba{bottom:3.059134px;}
.ybc{bottom:3.059141px;}
.ybf{bottom:3.059148px;}
.yc2{bottom:3.059154px;}
.y28{bottom:3.059160px;}
.yc7{bottom:3.059167px;}
.yca{bottom:3.059174px;}
.ycd{bottom:3.059180px;}
.ycf{bottom:3.059187px;}
.yd1{bottom:3.059194px;}
.ya8{bottom:3.059246px;}
.yaa{bottom:3.059256px;}
.y14{bottom:3.239049px;}
.y25{bottom:3.419149px;}
.y41{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y22{bottom:4.319116px;}
.y4{bottom:4.320028px;}
.y16{bottom:4.859056px;}
.y1b{bottom:4.859074px;}
.y78{bottom:58.440277px;}
.y6{bottom:58.620277px;}
.y76{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y77{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.y75{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.y10a{bottom:112.799955px;}
.y134{bottom:113.699955px;}
.y3e{bottom:121.079952px;}
.y73{bottom:130.619948px;}
.ye2{bottom:131.699947px;}
.ya6{bottom:132.959947px;}
.yb2{bottom:133.139947px;}
.y109{bottom:135.839946px;}
.y133{bottom:136.199946px;}
.y3d{bottom:144.119942px;}
.y72{bottom:153.479939px;}
.ye1{bottom:154.739938px;}
.ya5{bottom:155.999938px;}
.yb1{bottom:156.179938px;}
.y132{bottom:158.519937px;}
.y108{bottom:158.699937px;}
.y3c{bottom:167.159933px;}
.y71{bottom:176.519929px;}
.ye0{bottom:177.779929px;}
.ya4{bottom:179.039928px;}
.yb0{bottom:179.219928px;}
.y131{bottom:180.839928px;}
.y107{bottom:181.739927px;}
.y3b{bottom:190.199924px;}
.y70{bottom:199.559920px;}
.yaf{bottom:200.819920px;}
.ya3{bottom:201.899919px;}
.y130{bottom:203.159919px;}
.y106{bottom:204.779918px;}
.y3a{bottom:213.239915px;}
.y158{bottom:218.459913px;}
.y6f{bottom:222.599911px;}
.ydf{bottom:223.679911px;}
.ya2{bottom:224.939910px;}
.y12f{bottom:225.659910px;}
.y105{bottom:227.819909px;}
.y39{bottom:236.099906px;}
.y157{bottom:242.939903px;}
.y6e{bottom:245.639902px;}
.yde{bottom:246.719901px;}
.ya1{bottom:247.979901px;}
.y104{bottom:250.859900px;}
.y38{bottom:252.299899px;}
.y37{bottom:256.079898px;}
.y156{bottom:267.419893px;}
.y6d{bottom:268.679893px;}
.ydd{bottom:269.759892px;}
.y12e{bottom:270.299892px;}
.ya0{bottom:271.019892px;}
.y103{bottom:273.899890px;}
.y36{bottom:276.599889px;}
.y6c{bottom:291.539883px;}
.yae{bottom:291.719883px;}
.y155{bottom:291.899883px;}
.y9f{bottom:292.619883px;}
.ydc{bottom:292.799883px;}
.y102{bottom:296.759881px;}
.y35{bottom:299.639880px;}
.y9e{bottom:314.399874px;}
.y6b{bottom:314.579874px;}
.yad{bottom:314.759874px;}
.ydb{bottom:315.119874px;}
.y154{bottom:316.559873px;}
.y101{bottom:319.799872px;}
.y34{bottom:322.679871px;}
.yda{bottom:336.179866px;}
.y9d{bottom:337.439865px;}
.y6a{bottom:337.619865px;}
.yac{bottom:337.799865px;}
.y153{bottom:341.039864px;}
.y100{bottom:342.839863px;}
.y33{bottom:345.719862px;}
.yd9{bottom:356.699857px;}
.ya9{bottom:358.140600px;}
.y12d{bottom:359.759856px;}
.y9c{bottom:360.479856px;}
.y69{bottom:360.659856px;}
.yab{bottom:361.199856px;}
.y152{bottom:365.519854px;}
.yff{bottom:365.879854px;}
.y32{bottom:368.579853px;}
.yd8{bottom:377.219849px;}
.ya7{bottom:381.360600px;}
.y12c{bottom:382.259847px;}
.y9b{bottom:383.519847px;}
.y68{bottom:383.699847px;}
.yfe{bottom:388.919844px;}
.y151{bottom:390.179844px;}
.y31{bottom:391.619843px;}
.yd7{bottom:397.559841px;}
.y12b{bottom:404.579838px;}
.y9a{bottom:406.559837px;}
.y67{bottom:406.739837px;}
.yfd{bottom:411.959835px;}
.y30{bottom:414.659834px;}
.yd6{bottom:418.079833px;}
.y12a{bottom:426.899829px;}
.y99{bottom:429.419828px;}
.y66{bottom:429.599828px;}
.yfc{bottom:434.819826px;}
.y2f{bottom:437.699825px;}
.yd5{bottom:438.419825px;}
.y150{bottom:439.139824px;}
.y129{bottom:449.219820px;}
.y98{bottom:452.459819px;}
.y65{bottom:452.639819px;}
.yfb{bottom:457.859817px;}
.yd4{bottom:458.939816px;}
.y2e{bottom:460.739816px;}
.y14f{bottom:460.919816px;}
.y128{bottom:471.719811px;}
.y97{bottom:475.499810px;}
.y64{bottom:475.679810px;}
.yd3{bottom:479.459808px;}
.yfa{bottom:480.899808px;}
.y14e{bottom:482.879807px;}
.y2d{bottom:483.599807px;}
.y127{bottom:494.039802px;}
.y96{bottom:498.539801px;}
.y63{bottom:498.719801px;}
.yd2{bottom:499.799800px;}
.yf9{bottom:503.939798px;}
.y2c{bottom:506.639797px;}
.y14d{bottom:507.359797px;}
.yd0{bottom:512.940600px;}
.y126{bottom:516.359793px;}
.y95{bottom:521.579791px;}
.y62{bottom:521.759791px;}
.yf8{bottom:526.979789px;}
.yce{bottom:529.320600px;}
.y2b{bottom:529.679788px;}
.y14c{bottom:531.839787px;}
.y125{bottom:538.859784px;}
.y94{bottom:544.619782px;}
.y61{bottom:544.799782px;}
.ycc{bottom:545.880600px;}
.yf7{bottom:549.839780px;}
.y2a{bottom:552.719779px;}
.y14b{bottom:556.499777px;}
.y124{bottom:561.179776px;}
.yc9{bottom:562.260600px;}
.y93{bottom:567.479773px;}
.y60{bottom:567.659773px;}
.ycb{bottom:569.099772px;}
.yf6{bottom:572.879771px;}
.y29{bottom:575.759770px;}
.yc6{bottom:578.820600px;}
.y14a{bottom:580.979768px;}
.y123{bottom:583.499767px;}
.yc8{bottom:585.659766px;}
.y92{bottom:590.519764px;}
.y5f{bottom:590.699764px;}
.yc4{bottom:595.200600px;}
.y27{bottom:595.740600px;}
.yf5{bottom:595.919762px;}
.yc5{bottom:602.039759px;}
.y149{bottom:605.459758px;}
.y122{bottom:605.819758px;}
.yc1{bottom:611.760600px;}
.y91{bottom:613.559755px;}
.y5e{bottom:613.739755px;}
.yc3{bottom:618.599753px;}
.yf4{bottom:618.959752px;}
.y24{bottom:623.820600px;}
.y26{bottom:627.239749px;}
.ybe{bottom:628.140600px;}
.y121{bottom:628.319749px;}
.y148{bottom:630.119748px;}
.yc0{bottom:634.979746px;}
.y90{bottom:636.599745px;}
.y5d{bottom:636.779745px;}
.yf3{bottom:641.999743px;}
.ybb{bottom:644.700600px;}
.y120{bottom:650.639740px;}
.ybd{bottom:651.539739px;}
.y147{bottom:653.159739px;}
.y8f{bottom:659.639736px;}
.y5c{bottom:659.819736px;}
.yb9{bottom:662.160600px;}
.y23{bottom:664.859734px;}
.yf2{bottom:665.039734px;}
.y11f{bottom:672.959731px;}
.y146{bottom:676.379729px;}
.yb7{bottom:679.800600px;}
.y8e{bottom:682.499727px;}
.y5b{bottom:682.679727px;}
.yf1{bottom:687.899725px;}
.y11e{bottom:695.279722px;}
.y145{bottom:701.039720px;}
.y21{bottom:704.460600px;}
.y8d{bottom:705.539718px;}
.y5a{bottom:705.719718px;}
.y1f{bottom:705.720600px;}
.yb6{bottom:708.419717px;}
.yf0{bottom:710.939716px;}
.y11d{bottom:717.779713px;}
.y1e{bottom:724.979710px;}
.y144{bottom:725.519710px;}
.y8c{bottom:728.579709px;}
.y59{bottom:728.759708px;}
.yb5{bottom:731.279707px;}
.yef{bottom:733.979706px;}
.y11c{bottom:740.099704px;}
.y143{bottom:749.999700px;}
.y8b{bottom:751.619699px;}
.y58{bottom:751.799699px;}
.yb4{bottom:754.319698px;}
.yee{bottom:757.019697px;}
.y1d{bottom:758.999696px;}
.y11b{bottom:762.419695px;}
.y8a{bottom:774.659690px;}
.y57{bottom:774.839690px;}
.yb3{bottom:776.099690px;}
.yed{bottom:780.059688px;}
.y1c{bottom:783.659687px;}
.y11a{bottom:784.919686px;}
.yeb{bottom:794.280600px;}
.y89{bottom:797.699681px;}
.y56{bottom:797.879681px;}
.y142{bottom:799.139680px;}
.y119{bottom:807.239677px;}
.y1a{bottom:809.400600px;}
.ye9{bottom:810.840600px;}
.y19{bottom:820.199672px;}
.y88{bottom:820.559672px;}
.y55{bottom:820.739672px;}
.y141{bottom:823.619671px;}
.ye7{bottom:827.220600px;}
.y118{bottom:829.559668px;}
.y18{bottom:832.079667px;}
.y87{bottom:843.599663px;}
.y54{bottom:843.779662px;}
.ye5{bottom:843.780600px;}
.y140{bottom:848.279661px;}
.y117{bottom:851.879659px;}
.y15{bottom:854.760600px;}
.ye3{bottom:861.420600px;}
.y17{bottom:864.839654px;}
.y86{bottom:866.639653px;}
.y53{bottom:866.819653px;}
.y13f{bottom:872.759651px;}
.y116{bottom:874.379650px;}
.y13{bottom:874.920600px;}
.y85{bottom:889.679644px;}
.y52{bottom:889.859644px;}
.y115{bottom:896.699641px;}
.y13e{bottom:897.419641px;}
.y12{bottom:908.579637px;}
.y84{bottom:912.719635px;}
.y51{bottom:912.899635px;}
.y114{bottom:919.019632px;}
.y13d{bottom:921.899631px;}
.y83{bottom:935.759626px;}
.y50{bottom:935.939626px;}
.y113{bottom:941.519623px;}
.y13c{bottom:946.379621px;}
.y11{bottom:949.259620px;}
.y82{bottom:958.619617px;}
.y4f{bottom:958.799616px;}
.y112{bottom:963.839614px;}
.y13b{bottom:971.039612px;}
.y81{bottom:981.659607px;}
.y4e{bottom:981.839607px;}
.y111{bottom:986.159606px;}
.y10{bottom:990.119604px;}
.y13a{bottom:995.519602px;}
.y80{bottom:1004.699598px;}
.y4d{bottom:1004.879598px;}
.y110{bottom:1008.479597px;}
.yf{bottom:1013.519595px;}
.y139{bottom:1019.999592px;}
.y7f{bottom:1027.739589px;}
.y4c{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.y10f{bottom:1030.979588px;}
.y138{bottom:1044.659582px;}
.y7e{bottom:1050.779580px;}
.y4b{bottom:1050.959580px;}
.y10e{bottom:1053.299579px;}
.y137{bottom:1069.139572px;}
.y45{bottom:1073.280600px;}
.y7d{bottom:1073.819570px;}
.y4a{bottom:1073.999570px;}
.y10d{bottom:1075.619570px;}
.y44{bottom:1082.279567px;}
.y136{bottom:1093.619563px;}
.y7c{bottom:1096.679561px;}
.y49{bottom:1096.859561px;}
.y10c{bottom:1097.939561px;}
.y43{bottom:1103.519559px;}
.y135{bottom:1118.279553px;}
.y7b{bottom:1119.719552px;}
.y48{bottom:1119.899552px;}
.y10b{bottom:1120.439552px;}
.y42{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.y7a{bottom:1142.759543px;}
.y47{bottom:1142.939543px;}
.y40{bottom:1145.280600px;}
.y3f{bottom:1149.059540px;}
.y74{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.y79{bottom:1195.680600px;}
.y7{bottom:1195.860600px;}
.h26{height:2.880000px;}
.hb{height:8.169958px;}
.he{height:13.500000px;}
.h19{height:15.120000px;}
.h29{height:15.300000px;}
.h2a{height:15.480000px;}
.h20{height:15.859330px;}
.h1b{height:16.380000px;}
.h1e{height:17.100000px;}
.h10{height:20.160000px;}
.h15{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h24{height:21.780000px;}
.h14{height:22.171632px;}
.h17{height:24.439209px;}
.h21{height:25.913662px;}
.h12{height:25.951630px;}
.h2b{height:27.228505px;}
.h2d{height:31.585065px;}
.hf{height:32.199245px;}
.h1d{height:33.588971px;}
.h28{height:36.486196px;}
.h13{height:36.886626px;}
.h2c{height:38.664477px;}
.h18{height:40.005336px;}
.h1a{height:40.842757px;}
.h25{height:41.290999px;}
.h22{height:43.185920px;}
.h1f{height:45.199318px;}
.h8{height:47.988262px;}
.h11{height:48.058575px;}
.h16{height:48.199199px;}
.h27{height:49.907793px;}
.h1c{height:50.132792px;}
.ha{height:54.457009px;}
.h23{height:55.054665px;}
.h5{height:56.228532px;}
.hc{height:63.917904px;}
.hd{height:67.548728px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.wb{width:4.320000px;}
.wf{width:4.500000px;}
.w42{width:5.040000px;}
.w16{width:5.220000px;}
.w1b{width:5.760000px;}
.w1{width:6.480000px;}
.w11{width:7.740000px;}
.w7{width:8.280000px;}
.w49{width:8.640000px;}
.w3a{width:9.540000px;}
.w19{width:9.900000px;}
.w18{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.w36{width:12.780000px;}
.wd{width:12.960000px;}
.w1d{width:14.400000px;}
.w3{width:16.020000px;}
.w28{width:17.460000px;}
.w32{width:18.720000px;}
.w2c{width:19.080000px;}
.w31{width:19.260000px;}
.w24{width:19.980000px;}
.w3b{width:25.380000px;}
.w38{width:26.640000px;}
.w3e{width:26.820000px;}
.w3d{width:28.440000px;}
.w27{width:31.860000px;}
.w35{width:33.120000px;}
.w4{width:33.480000px;}
.w2b{width:36.180000px;}
.w30{width:36.360000px;}
.w2f{width:36.540000px;}
.w29{width:36.720000px;}
.w34{width:36.900000px;}
.w2a{width:37.080000px;}
.w21{width:37.440000px;}
.w2d{width:37.620000px;}
.w26{width:38.160000px;}
.w2e{width:38.700000px;}
.w33{width:39.240000px;}
.w4c{width:39.420000px;}
.w37{width:42.120000px;}
.w1a{width:43.200000px;}
.w22{width:45.000000px;}
.w23{width:45.180000px;}
.w25{width:45.720000px;}
.w3f{width:48.960000px;}
.w48{width:54.720000px;}
.w43{width:55.080000px;}
.w4a{width:55.620000px;}
.w44{width:59.040000px;}
.w46{width:65.520000px;}
.w12{width:65.700000px;}
.w1f{width:68.760000px;}
.we{width:77.940000px;}
.w4b{width:80.640000px;}
.w3c{width:84.600000px;}
.w39{width:93.600000px;}
.w17{width:97.740000px;}
.w45{width:100.800000px;}
.w14{width:102.060000px;}
.w20{width:114.840000px;}
.w40{width:115.380000px;}
.w4d{width:117.180000px;}
.w2{width:119.700000px;}
.w47{width:126.360000px;}
.w9{width:139.500000px;}
.w8{width:170.640000px;}
.w15{width:192.060000px;}
.w41{width:226.080000px;}
.wc{width:230.400000px;}
.w1c{width:269.820000px;}
.w13{width:279.720000px;}
.w1e{width:304.740000px;}
.w10{width:324.900000px;}
.wa{width:335.340000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2c{left:1.073844px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x23{left:113.400000px;}
.x2f{left:116.459953px;}
.x5{left:120.240000px;}
.x4a{left:125.460000px;}
.x54{left:126.720000px;}
.x43{left:127.980000px;}
.x2{left:137.699962px;}
.x58{left:141.120000px;}
.x5d{left:150.120000px;}
.x3{left:155.700000px;}
.x66{left:156.960000px;}
.x6d{left:163.080000px;}
.x4{left:171.899931px;}
.x6f{left:173.520000px;}
.x2a{left:174.599930px;}
.x3b{left:176.760000px;}
.xa{left:185.219926px;}
.x27{left:187.200000px;}
.x28{left:191.340000px;}
.x5f{left:201.600000px;}
.x55{left:216.720000px;}
.x44{left:217.800000px;}
.x4e{left:219.060000px;}
.x52{left:220.140000px;}
.x57{left:222.480000px;}
.x3e{left:224.280000px;}
.x5e{left:229.680000px;}
.x59{left:236.520000px;}
.x6{left:239.940000px;}
.x60{left:243.000000px;}
.x5a{left:249.300000px;}
.x4b{left:254.339898px;}
.x56{left:255.419898px;}
.x4f{left:257.219897px;}
.x3c{left:258.480000px;}
.xb{left:259.740316px;}
.x3f{left:261.720000px;}
.x45{left:263.519895px;}
.x61{left:268.380000px;}
.x20{left:279.899888px;}
.x21{left:297.720000px;}
.x53{left:298.800000px;}
.x40{left:300.420000px;}
.x46{left:301.500000px;}
.x5b{left:322.920000px;}
.x51{left:336.599865px;}
.x47{left:339.659864px;}
.x31{left:342.539863px;}
.x41{left:345.420000px;}
.x67{left:358.380000px;}
.x1f{left:367.019853px;}
.x70{left:369.360000px;}
.x3d{left:373.320000px;}
.x4c{left:375.480000px;}
.x48{left:377.640000px;}
.x2b{left:387.900000px;}
.x5c{left:395.820000px;}
.x62{left:398.340000px;}
.x49{left:409.499836px;}
.x4d{left:411.659835px;}
.x50{left:412.919835px;}
.x42{left:418.500000px;}
.xc{left:427.680106px;}
.xd{left:432.180102px;}
.x33{left:435.959826px;}
.x22{left:437.219825px;}
.x73{left:442.800000px;}
.x24{left:448.200000px;}
.x25{left:452.520000px;}
.x30{left:462.600512px;}
.x39{left:476.999809px;}
.x3a{left:482.040000px;}
.x2d{left:489.960000px;}
.x6e{left:499.140000px;}
.x37{left:505.980000px;}
.x38{left:511.740000px;}
.xe{left:516.060050px;}
.xf{left:529.380042px;}
.x10{left:542.700033px;}
.x35{left:556.199778px;}
.x74{left:559.980000px;}
.x11{left:564.659960px;}
.x12{left:569.159957px;}
.x13{left:582.479948px;}
.x34{left:589.679764px;}
.x14{left:595.619941px;}
.x15{left:608.939932px;}
.x16{left:613.439928px;}
.x68{left:624.420000px;}
.x17{left:631.079858px;}
.x18{left:635.399856px;}
.x19{left:648.719847px;}
.x1a{left:653.039845px;}
.x1b{left:657.539841px;}
.x63{left:658.980000px;}
.x1c{left:666.359733px;}
.x71{left:668.880000px;}
.x69{left:670.680000px;}
.x6a{left:675.720000px;}
.x72{left:677.520000px;}
.x26{left:682.920000px;}
.x2e{left:687.240000px;}
.x7{left:697.320000px;}
.x8{left:730.800000px;}
.x64{left:734.760000px;}
.x9{left:741.960000px;}
.x6b{left:745.200000px;}
.x6c{left:750.240000px;}
.x65{left:760.680000px;}
.x32{left:779.580000px;}
.x29{left:781.559687px;}
.x1d{left:783.539686px;}
.x36{left:784.979686px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.064960pt;}
.ls5{letter-spacing:0.173600pt;}
.ls6{letter-spacing:0.225973pt;}
.ls8{letter-spacing:0.273973pt;}
.ls1{letter-spacing:0.303046pt;}
.ls7{letter-spacing:0.303413pt;}
.ls9{letter-spacing:1.345279pt;}
.lsa{letter-spacing:1.554719pt;}
.ls4{letter-spacing:9.580476pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.492475pt;}
.ws6{word-spacing:-12.191995pt;}
.ws5{word-spacing:-11.567995pt;}
.ws2{word-spacing:-9.192956pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-595.518487pt;}
._4{margin-left:-539.780764pt;}
._c{margin-left:-416.212065pt;}
._7{margin-left:-297.297096pt;}
._9{margin-left:-76.852930pt;}
._a{margin-left:-60.852653pt;}
._8{margin-left:-46.719326pt;}
._b{margin-left:-30.719311pt;}
._2{margin-left:-22.719255pt;}
._6{margin-left:-14.719290pt;}
._3{margin-left:-1.866752pt;}
._1{margin-left:-0.911251pt;}
._0{width:1.088887pt;}
._10{width:1.985819pt;}
._17{width:3.124490pt;}
._16{width:4.333412pt;}
._2a{width:5.296003pt;}
._19{width:6.232041pt;}
._e{width:7.124099pt;}
._15{width:8.474768pt;}
._14{width:9.381213pt;}
._2e{width:10.592325pt;}
._36{width:12.083172pt;}
._d{width:13.131605pt;}
._22{width:14.115540pt;}
._18{width:15.116974pt;}
._29{width:16.443809pt;}
._31{width:17.637044pt;}
._1f{width:18.735279pt;}
._20{width:20.108240pt;}
._1e{width:21.528965pt;}
._1d{width:22.598793pt;}
._13{width:23.919010pt;}
._38{width:24.855760pt;}
._30{width:25.770543pt;}
._23{width:26.771626pt;}
._12{width:28.362187pt;}
._11{width:29.469344pt;}
._32{width:30.578895pt;}
._3d{width:31.486410pt;}
._28{width:32.426123pt;}
._2f{width:33.889193pt;}
._1c{width:35.042076pt;}
._1b{width:35.937409pt;}
._33{width:37.827446pt;}
._34{width:38.982799pt;}
._2d{width:40.766951pt;}
._3b{width:42.449443pt;}
._25{width:43.475984pt;}
._26{width:44.392837pt;}
._37{width:46.127490pt;}
._27{width:47.111001pt;}
._3a{width:48.694434pt;}
._3f{width:50.532428pt;}
._3e{width:51.735605pt;}
._24{width:55.081313pt;}
._3c{width:56.360050pt;}
._35{width:62.752882pt;}
._40{width:63.693550pt;}
._2c{width:65.194403pt;}
._2b{width:66.426516pt;}
._41{width:69.498579pt;}
._1a{width:77.947862pt;}
._39{width:89.765419pt;}
._21{width:112.504237pt;}
._f{width:276.879724pt;}
.fsc{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsb{font-size:21.119992pt;}
.fs8{font-size:29.439988pt;}
.fse{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fs10{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fsf{font-size:45.439982pt;}
.fsa{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsd{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y46{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.ye4{bottom:2.719159pt;}
.ye6{bottom:2.719166pt;}
.ye8{bottom:2.719171pt;}
.yea{bottom:2.719177pt;}
.yec{bottom:2.719183pt;}
.y20{bottom:2.719215pt;}
.yb8{bottom:2.719224pt;}
.yba{bottom:2.719230pt;}
.ybc{bottom:2.719236pt;}
.ybf{bottom:2.719242pt;}
.yc2{bottom:2.719248pt;}
.y28{bottom:2.719254pt;}
.yc7{bottom:2.719260pt;}
.yca{bottom:2.719266pt;}
.ycd{bottom:2.719271pt;}
.ycf{bottom:2.719277pt;}
.yd1{bottom:2.719283pt;}
.ya8{bottom:2.719330pt;}
.yaa{bottom:2.719338pt;}
.y14{bottom:2.879154pt;}
.y25{bottom:3.039244pt;}
.y41{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y22{bottom:3.839215pt;}
.y4{bottom:3.840025pt;}
.y16{bottom:4.319161pt;}
.y1b{bottom:4.319177pt;}
.y78{bottom:51.946913pt;}
.y6{bottom:52.106912pt;}
.y76{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y77{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.y75{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.y10a{bottom:100.266627pt;}
.y134{bottom:101.066626pt;}
.y3e{bottom:107.626624pt;}
.y73{bottom:116.106620pt;}
.ye2{bottom:117.066620pt;}
.ya6{bottom:118.186619pt;}
.yb2{bottom:118.346619pt;}
.y109{bottom:120.746618pt;}
.y133{bottom:121.066618pt;}
.y3d{bottom:128.106615pt;}
.y72{bottom:136.426612pt;}
.ye1{bottom:137.546612pt;}
.ya5{bottom:138.666611pt;}
.yb1{bottom:138.826611pt;}
.y132{bottom:140.906610pt;}
.y108{bottom:141.066610pt;}
.y3c{bottom:148.586607pt;}
.y71{bottom:156.906604pt;}
.ye0{bottom:158.026603pt;}
.ya4{bottom:159.146603pt;}
.yb0{bottom:159.306603pt;}
.y131{bottom:160.746602pt;}
.y107{bottom:161.546602pt;}
.y3b{bottom:169.066599pt;}
.y70{bottom:177.386596pt;}
.yaf{bottom:178.506595pt;}
.ya3{bottom:179.466595pt;}
.y130{bottom:180.586594pt;}
.y106{bottom:182.026594pt;}
.y3a{bottom:189.546591pt;}
.y158{bottom:194.186589pt;}
.y6f{bottom:197.866588pt;}
.ydf{bottom:198.826587pt;}
.ya2{bottom:199.946587pt;}
.y12f{bottom:200.586586pt;}
.y105{bottom:202.506586pt;}
.y39{bottom:209.866583pt;}
.y157{bottom:215.946580pt;}
.y6e{bottom:218.346579pt;}
.yde{bottom:219.306579pt;}
.ya1{bottom:220.426578pt;}
.y104{bottom:222.986577pt;}
.y38{bottom:224.266577pt;}
.y37{bottom:227.626576pt;}
.y156{bottom:237.706572pt;}
.y6d{bottom:238.826571pt;}
.ydd{bottom:239.786571pt;}
.y12e{bottom:240.266571pt;}
.ya0{bottom:240.906570pt;}
.y103{bottom:243.466569pt;}
.y36{bottom:245.866568pt;}
.y6c{bottom:259.146563pt;}
.yae{bottom:259.306563pt;}
.y155{bottom:259.466563pt;}
.y9f{bottom:260.106563pt;}
.ydc{bottom:260.266563pt;}
.y102{bottom:263.786561pt;}
.y35{bottom:266.346560pt;}
.y9e{bottom:279.466555pt;}
.y6b{bottom:279.626555pt;}
.yad{bottom:279.786555pt;}
.ydb{bottom:280.106555pt;}
.y154{bottom:281.386554pt;}
.y101{bottom:284.266553pt;}
.y34{bottom:286.826552pt;}
.yda{bottom:298.826547pt;}
.y9d{bottom:299.946547pt;}
.y6a{bottom:300.106547pt;}
.yac{bottom:300.266547pt;}
.y153{bottom:303.146545pt;}
.y100{bottom:304.746545pt;}
.y33{bottom:307.306544pt;}
.yd9{bottom:317.066540pt;}
.ya9{bottom:318.347200pt;}
.y12d{bottom:319.786539pt;}
.y9c{bottom:320.426538pt;}
.y69{bottom:320.586538pt;}
.yab{bottom:321.066538pt;}
.y152{bottom:324.906537pt;}
.yff{bottom:325.226537pt;}
.y32{bottom:327.626536pt;}
.yd8{bottom:335.306533pt;}
.ya7{bottom:338.987200pt;}
.y12c{bottom:339.786531pt;}
.y9b{bottom:340.906530pt;}
.y68{bottom:341.066530pt;}
.yfe{bottom:345.706528pt;}
.y151{bottom:346.826528pt;}
.y31{bottom:348.106527pt;}
.yd7{bottom:353.386525pt;}
.y12b{bottom:359.626523pt;}
.y9a{bottom:361.386522pt;}
.y67{bottom:361.546522pt;}
.yfd{bottom:366.186520pt;}
.y30{bottom:368.586519pt;}
.yd6{bottom:371.626518pt;}
.y12a{bottom:379.466515pt;}
.y99{bottom:381.706514pt;}
.y66{bottom:381.866514pt;}
.yfc{bottom:386.506512pt;}
.y2f{bottom:389.066511pt;}
.yd5{bottom:389.706511pt;}
.y150{bottom:390.346511pt;}
.y129{bottom:399.306507pt;}
.y98{bottom:402.186506pt;}
.y65{bottom:402.346506pt;}
.yfb{bottom:406.986504pt;}
.yd4{bottom:407.946503pt;}
.y2e{bottom:409.546503pt;}
.y14f{bottom:409.706503pt;}
.y128{bottom:419.306499pt;}
.y97{bottom:422.666498pt;}
.y64{bottom:422.826498pt;}
.yd3{bottom:426.186496pt;}
.yfa{bottom:427.466496pt;}
.y14e{bottom:429.226495pt;}
.y2d{bottom:429.866495pt;}
.y127{bottom:439.146491pt;}
.y96{bottom:443.146489pt;}
.y63{bottom:443.306489pt;}
.yd2{bottom:444.266489pt;}
.yf9{bottom:447.946487pt;}
.y2c{bottom:450.346487pt;}
.y14d{bottom:450.986486pt;}
.yd0{bottom:455.947200pt;}
.y126{bottom:458.986483pt;}
.y95{bottom:463.626481pt;}
.y62{bottom:463.786481pt;}
.yf8{bottom:468.426479pt;}
.yce{bottom:470.507200pt;}
.y2b{bottom:470.826478pt;}
.y14c{bottom:472.746478pt;}
.y125{bottom:478.986475pt;}
.y94{bottom:484.106473pt;}
.y61{bottom:484.266473pt;}
.ycc{bottom:485.227200pt;}
.yf7{bottom:488.746471pt;}
.y2a{bottom:491.306470pt;}
.y14b{bottom:494.666469pt;}
.y124{bottom:498.826467pt;}
.yc9{bottom:499.787200pt;}
.y93{bottom:504.426465pt;}
.y60{bottom:504.586465pt;}
.ycb{bottom:505.866464pt;}
.yf6{bottom:509.226463pt;}
.y29{bottom:511.786462pt;}
.yc6{bottom:514.507200pt;}
.y14a{bottom:516.426460pt;}
.y123{bottom:518.666459pt;}
.yc8{bottom:520.586458pt;}
.y92{bottom:524.906457pt;}
.y5f{bottom:525.066457pt;}
.yc4{bottom:529.067200pt;}
.y27{bottom:529.547200pt;}
.yf5{bottom:529.706455pt;}
.yc5{bottom:535.146453pt;}
.y149{bottom:538.186451pt;}
.y122{bottom:538.506451pt;}
.yc1{bottom:543.787200pt;}
.y91{bottom:545.386449pt;}
.y5e{bottom:545.546448pt;}
.yc3{bottom:549.866447pt;}
.yf4{bottom:550.186447pt;}
.y24{bottom:554.507200pt;}
.y26{bottom:557.546444pt;}
.ybe{bottom:558.347200pt;}
.y121{bottom:558.506443pt;}
.y148{bottom:560.106443pt;}
.yc0{bottom:564.426441pt;}
.y90{bottom:565.866440pt;}
.y5d{bottom:566.026440pt;}
.yf3{bottom:570.666438pt;}
.ybb{bottom:573.067200pt;}
.y120{bottom:578.346435pt;}
.ybd{bottom:579.146435pt;}
.y147{bottom:580.586434pt;}
.y8f{bottom:586.346432pt;}
.y5c{bottom:586.506432pt;}
.yb9{bottom:588.587200pt;}
.y23{bottom:590.986430pt;}
.yf2{bottom:591.146430pt;}
.y11f{bottom:598.186427pt;}
.y146{bottom:601.226426pt;}
.yb7{bottom:604.267200pt;}
.y8e{bottom:606.666424pt;}
.y5b{bottom:606.826424pt;}
.yf1{bottom:611.466422pt;}
.y11e{bottom:618.026419pt;}
.y145{bottom:623.146417pt;}
.y21{bottom:626.187200pt;}
.y8d{bottom:627.146416pt;}
.y5a{bottom:627.306416pt;}
.y1f{bottom:627.307200pt;}
.yb6{bottom:629.706415pt;}
.yf0{bottom:631.946414pt;}
.y11d{bottom:638.026411pt;}
.y1e{bottom:644.426409pt;}
.y144{bottom:644.906409pt;}
.y8c{bottom:647.626408pt;}
.y59{bottom:647.786408pt;}
.yb5{bottom:650.026407pt;}
.yef{bottom:652.426406pt;}
.y11c{bottom:657.866404pt;}
.y143{bottom:666.666400pt;}
.y8b{bottom:668.106399pt;}
.y58{bottom:668.266399pt;}
.yb4{bottom:670.506398pt;}
.yee{bottom:672.906398pt;}
.y1d{bottom:674.666397pt;}
.y11b{bottom:677.706396pt;}
.y8a{bottom:688.586391pt;}
.y57{bottom:688.746391pt;}
.yb3{bottom:689.866391pt;}
.yed{bottom:693.386389pt;}
.y1c{bottom:696.586388pt;}
.y11a{bottom:697.706388pt;}
.yeb{bottom:706.027200pt;}
.y89{bottom:709.066383pt;}
.y56{bottom:709.226383pt;}
.y142{bottom:710.346383pt;}
.y119{bottom:717.546380pt;}
.y1a{bottom:719.467200pt;}
.ye9{bottom:720.747200pt;}
.y19{bottom:729.066375pt;}
.y88{bottom:729.386375pt;}
.y55{bottom:729.546375pt;}
.y141{bottom:732.106374pt;}
.ye7{bottom:735.307200pt;}
.y118{bottom:737.386372pt;}
.y18{bottom:739.626371pt;}
.y87{bottom:749.866367pt;}
.y54{bottom:750.026367pt;}
.ye5{bottom:750.027200pt;}
.y140{bottom:754.026365pt;}
.y117{bottom:757.226364pt;}
.y15{bottom:759.787200pt;}
.ye3{bottom:765.707200pt;}
.y17{bottom:768.746359pt;}
.y86{bottom:770.346359pt;}
.y53{bottom:770.506358pt;}
.y13f{bottom:775.786356pt;}
.y116{bottom:777.226356pt;}
.y13{bottom:777.707200pt;}
.y85{bottom:790.826350pt;}
.y52{bottom:790.986350pt;}
.y115{bottom:797.066348pt;}
.y13e{bottom:797.706348pt;}
.y12{bottom:807.626344pt;}
.y84{bottom:811.306342pt;}
.y51{bottom:811.466342pt;}
.y114{bottom:816.906340pt;}
.y13d{bottom:819.466339pt;}
.y83{bottom:831.786334pt;}
.y50{bottom:831.946334pt;}
.y113{bottom:836.906332pt;}
.y13c{bottom:841.226330pt;}
.y11{bottom:843.786329pt;}
.y82{bottom:852.106326pt;}
.y4f{bottom:852.266326pt;}
.y112{bottom:856.746324pt;}
.y13b{bottom:863.146321pt;}
.y81{bottom:872.586318pt;}
.y4e{bottom:872.746318pt;}
.y111{bottom:876.586316pt;}
.y10{bottom:880.106315pt;}
.y13a{bottom:884.906313pt;}
.y80{bottom:893.066309pt;}
.y4d{bottom:893.226309pt;}
.y110{bottom:896.426308pt;}
.yf{bottom:900.906306pt;}
.y139{bottom:906.666304pt;}
.y7f{bottom:913.546301pt;}
.y4c{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.y10f{bottom:916.426300pt;}
.y138{bottom:928.586295pt;}
.y7e{bottom:934.026293pt;}
.y4b{bottom:934.186293pt;}
.y10e{bottom:936.266292pt;}
.y137{bottom:950.346287pt;}
.y45{bottom:954.027200pt;}
.y7d{bottom:954.506285pt;}
.y4a{bottom:954.666285pt;}
.y10d{bottom:956.106284pt;}
.y44{bottom:962.026282pt;}
.y136{bottom:972.106278pt;}
.y7c{bottom:974.826277pt;}
.y49{bottom:974.986277pt;}
.y10c{bottom:975.946276pt;}
.y43{bottom:980.906274pt;}
.y135{bottom:994.026269pt;}
.y7b{bottom:995.306269pt;}
.y48{bottom:995.466268pt;}
.y10b{bottom:995.946268pt;}
.y42{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.y7a{bottom:1015.786260pt;}
.y47{bottom:1015.946260pt;}
.y40{bottom:1018.027200pt;}
.y3f{bottom:1021.386258pt;}
.y74{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.y79{bottom:1062.827200pt;}
.y7{bottom:1062.987200pt;}
.h26{height:2.560000pt;}
.hb{height:7.262185pt;}
.he{height:12.000000pt;}
.h19{height:13.440000pt;}
.h29{height:13.600000pt;}
.h2a{height:13.760000pt;}
.h20{height:14.097182pt;}
.h1b{height:14.560000pt;}
.h1e{height:15.200000pt;}
.h10{height:17.920000pt;}
.h15{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h24{height:19.360000pt;}
.h14{height:19.708117pt;}
.h17{height:21.723741pt;}
.h21{height:23.034366pt;}
.h12{height:23.068116pt;}
.h2b{height:24.203115pt;}
.h2d{height:28.075614pt;}
.hf{height:28.621551pt;}
.h1d{height:29.856863pt;}
.h28{height:32.432175pt;}
.h13{height:32.788112pt;}
.h2c{height:34.368424pt;}
.h18{height:35.560298pt;}
.h1a{height:36.304673pt;}
.h25{height:36.703110pt;}
.h22{height:38.387485pt;}
.h1f{height:40.177171pt;}
.h8{height:42.656233pt;}
.h11{height:42.718733pt;}
.h16{height:42.843733pt;}
.h27{height:44.362482pt;}
.h1c{height:44.562482pt;}
.ha{height:48.406231pt;}
.h23{height:48.937480pt;}
.h5{height:49.980918pt;}
.hc{height:56.815915pt;}
.hd{height:60.043314pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.wb{width:3.840000pt;}
.wf{width:4.000000pt;}
.w42{width:4.480000pt;}
.w16{width:4.640000pt;}
.w1b{width:5.120000pt;}
.w1{width:5.760000pt;}
.w11{width:6.880000pt;}
.w7{width:7.360000pt;}
.w49{width:7.680000pt;}
.w3a{width:8.480000pt;}
.w19{width:8.800000pt;}
.w18{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.w36{width:11.360000pt;}
.wd{width:11.520000pt;}
.w1d{width:12.800000pt;}
.w3{width:14.240000pt;}
.w28{width:15.520000pt;}
.w32{width:16.640000pt;}
.w2c{width:16.960000pt;}
.w31{width:17.120000pt;}
.w24{width:17.760000pt;}
.w3b{width:22.560000pt;}
.w38{width:23.680000pt;}
.w3e{width:23.840000pt;}
.w3d{width:25.280000pt;}
.w27{width:28.320000pt;}
.w35{width:29.440000pt;}
.w4{width:29.760000pt;}
.w2b{width:32.160000pt;}
.w30{width:32.320000pt;}
.w2f{width:32.480000pt;}
.w29{width:32.640000pt;}
.w34{width:32.800000pt;}
.w2a{width:32.960000pt;}
.w21{width:33.280000pt;}
.w2d{width:33.440000pt;}
.w26{width:33.920000pt;}
.w2e{width:34.400000pt;}
.w33{width:34.880000pt;}
.w4c{width:35.040000pt;}
.w37{width:37.440000pt;}
.w1a{width:38.400000pt;}
.w22{width:40.000000pt;}
.w23{width:40.160000pt;}
.w25{width:40.640000pt;}
.w3f{width:43.520000pt;}
.w48{width:48.640000pt;}
.w43{width:48.960000pt;}
.w4a{width:49.440000pt;}
.w44{width:52.480000pt;}
.w46{width:58.240000pt;}
.w12{width:58.400000pt;}
.w1f{width:61.120000pt;}
.we{width:69.280000pt;}
.w4b{width:71.680000pt;}
.w3c{width:75.200000pt;}
.w39{width:83.200000pt;}
.w17{width:86.880000pt;}
.w45{width:89.600000pt;}
.w14{width:90.720000pt;}
.w20{width:102.080000pt;}
.w40{width:102.560000pt;}
.w4d{width:104.160000pt;}
.w2{width:106.400000pt;}
.w47{width:112.320000pt;}
.w9{width:124.000000pt;}
.w8{width:151.680000pt;}
.w15{width:170.720000pt;}
.w41{width:200.960000pt;}
.wc{width:204.800000pt;}
.w1c{width:239.840000pt;}
.w13{width:248.640000pt;}
.w1e{width:270.880000pt;}
.w10{width:288.800000pt;}
.wa{width:298.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2c{left:0.954528pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x23{left:100.800000pt;}
.x2f{left:103.519959pt;}
.x5{left:106.880000pt;}
.x4a{left:111.520000pt;}
.x54{left:112.640000pt;}
.x43{left:113.760000pt;}
.x2{left:122.399966pt;}
.x58{left:125.440000pt;}
.x5d{left:133.440000pt;}
.x3{left:138.400000pt;}
.x66{left:139.520000pt;}
.x6d{left:144.960000pt;}
.x4{left:152.799939pt;}
.x6f{left:154.240000pt;}
.x2a{left:155.199938pt;}
.x3b{left:157.120000pt;}
.xa{left:164.639934pt;}
.x27{left:166.400000pt;}
.x28{left:170.080000pt;}
.x5f{left:179.200000pt;}
.x55{left:192.640000pt;}
.x44{left:193.600000pt;}
.x4e{left:194.720000pt;}
.x52{left:195.680000pt;}
.x57{left:197.760000pt;}
.x3e{left:199.360000pt;}
.x5e{left:204.160000pt;}
.x59{left:210.240000pt;}
.x6{left:213.280000pt;}
.x60{left:216.000000pt;}
.x5a{left:221.600000pt;}
.x4b{left:226.079910pt;}
.x56{left:227.039909pt;}
.x4f{left:228.639909pt;}
.x3c{left:229.760000pt;}
.xb{left:230.880281pt;}
.x3f{left:232.640000pt;}
.x45{left:234.239906pt;}
.x61{left:238.560000pt;}
.x20{left:248.799900pt;}
.x21{left:264.640000pt;}
.x53{left:265.600000pt;}
.x40{left:267.040000pt;}
.x46{left:268.000000pt;}
.x5b{left:287.040000pt;}
.x51{left:299.199880pt;}
.x47{left:301.919879pt;}
.x31{left:304.479878pt;}
.x41{left:307.040000pt;}
.x67{left:318.560000pt;}
.x1f{left:326.239870pt;}
.x70{left:328.320000pt;}
.x3d{left:331.840000pt;}
.x4c{left:333.760000pt;}
.x48{left:335.680000pt;}
.x2b{left:344.800000pt;}
.x5c{left:351.840000pt;}
.x62{left:354.080000pt;}
.x49{left:363.999854pt;}
.x4d{left:365.919854pt;}
.x50{left:367.039853pt;}
.x42{left:372.000000pt;}
.xc{left:380.160094pt;}
.xd{left:384.160091pt;}
.x33{left:387.519845pt;}
.x22{left:388.639845pt;}
.x73{left:393.600000pt;}
.x24{left:398.400000pt;}
.x25{left:402.240000pt;}
.x30{left:411.200455pt;}
.x39{left:423.999830pt;}
.x3a{left:428.480000pt;}
.x2d{left:435.520000pt;}
.x6e{left:443.680000pt;}
.x37{left:449.760000pt;}
.x38{left:454.880000pt;}
.xe{left:458.720045pt;}
.xf{left:470.560037pt;}
.x10{left:482.400029pt;}
.x35{left:494.399802pt;}
.x74{left:497.760000pt;}
.x11{left:501.919965pt;}
.x12{left:505.919962pt;}
.x13{left:517.759954pt;}
.x34{left:524.159790pt;}
.x14{left:529.439947pt;}
.x15{left:541.279939pt;}
.x16{left:545.279936pt;}
.x68{left:555.040000pt;}
.x17{left:560.959873pt;}
.x18{left:564.799872pt;}
.x19{left:576.639864pt;}
.x1a{left:580.479862pt;}
.x1b{left:584.479859pt;}
.x63{left:585.760000pt;}
.x1c{left:592.319763pt;}
.x71{left:594.560000pt;}
.x69{left:596.160000pt;}
.x6a{left:600.640000pt;}
.x72{left:602.240000pt;}
.x26{left:607.040000pt;}
.x2e{left:610.880000pt;}
.x7{left:619.840000pt;}
.x8{left:649.600000pt;}
.x64{left:653.120000pt;}
.x9{left:659.520000pt;}
.x6b{left:662.400000pt;}
.x6c{left:666.880000pt;}
.x65{left:676.160000pt;}
.x32{left:692.960000pt;}
.x29{left:694.719722pt;}
.x1d{left:696.479721pt;}
.x36{left:697.759721pt;}
}




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