
    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_18e1ab2478417bc085e627f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015000;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_5becedadd12fca753c57454f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.687500;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_cb5299a7600ae3ea3e3681e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.917969;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_315f979c3b551ab96ad813b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.686523;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_756667f27a64e9934d02ac8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138672;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_057b8edae0897d013f0ea7b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_50a5cf78f8abc9e10a3421fa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a12fce82fa651fb869f02908.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.177246;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_caafe5d2f079eb0500002c63.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689941;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_3a8e8bc512ff84df6a5efc90.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.917969;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_37431c3a500f10dca7d91926.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2b8c29351199f676562dba26.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_46ccebc78be4d638124c07d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.145508;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.174000px;}
.v1{vertical-align:20.010000px;}
.ls62{letter-spacing:-7.583400px;}
.ls25{letter-spacing:-4.725000px;}
.ls1e{letter-spacing:-4.249800px;}
.lse{letter-spacing:-3.532620px;}
.ls3c{letter-spacing:-2.811600px;}
.lsd{letter-spacing:-2.445660px;}
.ls68{letter-spacing:-1.814400px;}
.ls4a{letter-spacing:-1.760400px;}
.ls45{letter-spacing:-1.504800px;}
.ls3e{letter-spacing:-1.485000px;}
.ls3d{letter-spacing:-0.924000px;}
.ls32{letter-spacing:-0.877800px;}
.ls29{letter-spacing:-0.594000px;}
.ls49{letter-spacing:-0.561000px;}
.ls2e{letter-spacing:-0.297000px;}
.ls31{letter-spacing:-0.264000px;}
.ls2f{letter-spacing:-0.139920px;}
.lsc{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.022800px;}
.ls67{letter-spacing:0.069960px;}
.ls2d{letter-spacing:0.104940px;}
.ls65{letter-spacing:0.112200px;}
.ls63{letter-spacing:0.132000px;}
.ls64{letter-spacing:0.138600px;}
.ls5{letter-spacing:0.157200px;}
.ls23{letter-spacing:0.157410px;}
.ls1a{letter-spacing:0.157800px;}
.ls2c{letter-spacing:0.165000px;}
.ls4{letter-spacing:0.174600px;}
.ls42{letter-spacing:0.174900px;}
.ls34{letter-spacing:0.178200px;}
.ls2a{letter-spacing:0.198000px;}
.ls35{letter-spacing:0.224400px;}
.ls2b{letter-spacing:0.231000px;}
.ls43{letter-spacing:0.237600px;}
.lsf{letter-spacing:0.243000px;}
.lsa{letter-spacing:0.248400px;}
.ls8{letter-spacing:0.253800px;}
.ls5e{letter-spacing:0.260400px;}
.ls7{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.275400px;}
.ls1c{letter-spacing:0.280800px;}
.ls17{letter-spacing:0.286200px;}
.ls60{letter-spacing:0.288000px;}
.ls61{letter-spacing:0.290400px;}
.ls9{letter-spacing:0.297000px;}
.ls5f{letter-spacing:0.300000px;}
.ls1f{letter-spacing:0.303600px;}
.ls18{letter-spacing:0.310200px;}
.ls38{letter-spacing:0.314400px;}
.ls40{letter-spacing:0.314820px;}
.ls5d{letter-spacing:0.316800px;}
.ls5b{letter-spacing:0.321000px;}
.ls52{letter-spacing:0.322236px;}
.ls3b{letter-spacing:0.322836px;}
.ls3{letter-spacing:0.330000px;}
.ls4e{letter-spacing:0.336600px;}
.ls14{letter-spacing:0.343200px;}
.ls21{letter-spacing:0.349800px;}
.ls5a{letter-spacing:0.356400px;}
.ls11{letter-spacing:0.363000px;}
.ls28{letter-spacing:0.419760px;}
.ls5c{letter-spacing:0.438000px;}
.ls53{letter-spacing:0.513000px;}
.ls4d{letter-spacing:0.523800px;}
.ls36{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.545400px;}
.ls50{letter-spacing:0.556200px;}
.ls51{letter-spacing:0.561600px;}
.ls37{letter-spacing:0.567000px;}
.ls48{letter-spacing:0.627000px;}
.ls58{letter-spacing:0.640200px;}
.ls2{letter-spacing:0.660000px;}
.ls47{letter-spacing:0.693000px;}
.ls4f{letter-spacing:0.765600px;}
.ls27{letter-spacing:0.792000px;}
.ls26{letter-spacing:0.825000px;}
.ls3f{letter-spacing:0.910800px;}
.ls12{letter-spacing:1.134000px;}
.ls13{letter-spacing:1.188000px;}
.lsb{letter-spacing:1.200000px;}
.ls55{letter-spacing:2.160000px;}
.ls57{letter-spacing:2.448600px;}
.ls22{letter-spacing:2.574000px;}
.ls3a{letter-spacing:2.604600px;}
.ls15{letter-spacing:2.626800px;}
.ls19{letter-spacing:2.640000px;}
.ls20{letter-spacing:2.700000px;}
.ls1d{letter-spacing:2.710800px;}
.ls41{letter-spacing:2.754000px;}
.ls16{letter-spacing:2.805000px;}
.ls59{letter-spacing:2.844600px;}
.ls10{letter-spacing:3.795000px;}
.ls33{letter-spacing:3.814800px;}
.ls24{letter-spacing:5.346000px;}
.ls54{letter-spacing:6.102000px;}
.ls46{letter-spacing:6.468000px;}
.ls44{letter-spacing:7.128000px;}
.ls56{letter-spacing:8.478000px;}
.ls30{letter-spacing:8.646000px;}
.ls4b{letter-spacing:9.558000px;}
.ls66{letter-spacing:13.296000px;}
.ls6{letter-spacing:40.770000px;}
.ls4c{letter-spacing:41.040000px;}
.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;}
}
.ws4{word-spacing:-19.500000px;}
.ws10{word-spacing:-17.292000px;}
.ws16{word-spacing:-17.160000px;}
.ws13{word-spacing:-16.863000px;}
.ws5{word-spacing:-16.830000px;}
.ws1a{word-spacing:-16.810200px;}
.ws1d{word-spacing:-16.790400px;}
.ws1f{word-spacing:-16.632000px;}
.ws8{word-spacing:-16.500000px;}
.ws15{word-spacing:-16.203000px;}
.ws1c{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.688000px;}
.ws21{word-spacing:-14.448000px;}
.ws18{word-spacing:-14.040000px;}
.ws19{word-spacing:-14.013000px;}
.wsb{word-spacing:-13.797000px;}
.wsc{word-spacing:-13.770000px;}
.wse{word-spacing:-13.743000px;}
.ws3{word-spacing:-13.650000px;}
.ws1b{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.117380px;}
.ws1{word-spacing:-9.450000px;}
.wsf{word-spacing:-9.164760px;}
.ws17{word-spacing:-9.094800px;}
.ws14{word-spacing:-8.919900px;}
.ws1e{word-spacing:-8.916600px;}
.ws20{word-spacing:-8.814960px;}
.ws9{word-spacing:-8.745000px;}
.ws11{word-spacing:-8.605080px;}
.ws12{word-spacing:-8.185320px;}
.wsd{word-spacing:-8.027910px;}
.ws6{word-spacing:-7.870500px;}
.ws0{word-spacing:-7.004340px;}
.ws7{word-spacing:0.000000px;}
._23{margin-left:-13.248000px;}
._16{margin-left:-11.736720px;}
._17{margin-left:-10.520760px;}
._14{margin-left:-9.307440px;}
._4{margin-left:-8.083800px;}
._0{margin-left:-6.609600px;}
._10{margin-left:-5.363880px;}
._3{margin-left:-4.040880px;}
._b{margin-left:-2.847840px;}
._1{margin-left:-1.544400px;}
._a{width:1.122000px;}
._2{width:2.454120px;}
._5{width:3.544440px;}
._8{width:4.580400px;}
._7{width:5.827560px;}
._d{width:7.065480px;}
._9{width:8.118000px;}
._6{width:9.174000px;}
._11{width:10.197000px;}
._15{width:11.286000px;}
._13{width:12.298920px;}
._1a{width:13.346880px;}
._12{width:14.936400px;}
._f{width:16.622400px;}
._18{width:17.897280px;}
._21{width:19.045800px;}
._22{width:20.347200px;}
._1f{width:21.855480px;}
._c{width:23.652000px;}
._1b{width:25.110000px;}
._1c{width:27.701760px;}
._20{width:28.863000px;}
._1d{width:30.996000px;}
._1e{width:32.022000px;}
._19{width:33.425760px;}
._e{width:40.500000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs2{font-size:37.800000px;}
.fs8{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:54.600000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:60.161250px;}
.y2{bottom:75.793800px;}
.y23{bottom:76.106100px;}
.y21{bottom:140.260500px;}
.y90{bottom:140.272500px;}
.y14c{bottom:140.278500px;}
.y101{bottom:140.290500px;}
.y48{bottom:140.296500px;}
.y13a{bottom:140.302500px;}
.y12e{bottom:140.308500px;}
.yb8{bottom:144.810000px;}
.y195{bottom:153.785400px;}
.yd9{bottom:154.510500px;}
.y20{bottom:154.516500px;}
.y8f{bottom:154.528500px;}
.y14b{bottom:154.534500px;}
.y100{bottom:154.546500px;}
.y47{bottom:154.552500px;}
.ye3{bottom:154.558500px;}
.yb7{bottom:159.060000px;}
.yd8{bottom:168.766500px;}
.y1f{bottom:168.772500px;}
.yb6{bottom:168.778500px;}
.y8e{bottom:168.784500px;}
.y14a{bottom:168.790500px;}
.yff{bottom:168.802500px;}
.y46{bottom:168.808500px;}
.y194{bottom:171.786900px;}
.ycc{bottom:173.310000px;}
.y63{bottom:183.016500px;}
.yd7{bottom:183.022500px;}
.y1e{bottom:183.028500px;}
.yb5{bottom:183.034500px;}
.y8d{bottom:183.040500px;}
.y149{bottom:183.046500px;}
.yfe{bottom:183.058500px;}
.y45{bottom:187.560000px;}
.y193{bottom:189.788400px;}
.y62{bottom:197.272500px;}
.yd6{bottom:197.278500px;}
.y1d{bottom:197.284500px;}
.yb4{bottom:197.290500px;}
.y8c{bottom:197.296500px;}
.y148{bottom:197.302500px;}
.y12d{bottom:197.308500px;}
.yfd{bottom:201.810000px;}
.y192{bottom:207.789900px;}
.y111{bottom:207.825900px;}
.y158{bottom:207.839400px;}
.y1af{bottom:208.727400px;}
.y61{bottom:211.528500px;}
.yd5{bottom:211.534500px;}
.y1c{bottom:211.540500px;}
.yb3{bottom:211.546500px;}
.y8b{bottom:211.552500px;}
.y147{bottom:211.558500px;}
.yfc{bottom:216.060000px;}
.y1ae{bottom:222.971400px;}
.y60{bottom:225.784500px;}
.yd4{bottom:225.790500px;}
.y191{bottom:225.791400px;}
.y1b{bottom:225.796500px;}
.yb2{bottom:225.802500px;}
.y8a{bottom:225.808500px;}
.y110{bottom:225.827400px;}
.y157{bottom:225.840900px;}
.yfb{bottom:230.310000px;}
.y1ad{bottom:237.215400px;}
.y139{bottom:240.010500px;}
.y5f{bottom:240.040500px;}
.yd3{bottom:240.046500px;}
.y1a{bottom:240.052500px;}
.yb1{bottom:240.058500px;}
.y190{bottom:243.792900px;}
.y10f{bottom:243.828900px;}
.y181{bottom:243.837900px;}
.ycb{bottom:243.839400px;}
.y156{bottom:243.842400px;}
.y89{bottom:244.560000px;}
.y1ac{bottom:251.459400px;}
.y138{bottom:254.266500px;}
.y5e{bottom:254.296500px;}
.yd2{bottom:254.302500px;}
.y19{bottom:254.308500px;}
.yb0{bottom:258.810000px;}
.y18f{bottom:261.794400px;}
.y10e{bottom:261.830400px;}
.y180{bottom:261.839400px;}
.yca{bottom:261.840900px;}
.y155{bottom:261.843900px;}
.y137{bottom:268.522500px;}
.yaf{bottom:268.546500px;}
.y5d{bottom:268.552500px;}
.yd1{bottom:268.558500px;}
.y18{bottom:273.060000px;}
.y18e{bottom:279.795900px;}
.y178{bottom:279.816900px;}
.y10d{bottom:279.831900px;}
.yfa{bottom:279.836400px;}
.y17f{bottom:279.840900px;}
.yc9{bottom:279.842400px;}
.y154{bottom:279.845400px;}
.y1ab{bottom:279.959400px;}
.y17{bottom:282.772500px;}
.y136{bottom:282.778500px;}
.ye2{bottom:282.796500px;}
.yae{bottom:282.802500px;}
.y5c{bottom:282.808500px;}
.y11c{bottom:287.310000px;}
.y1aa{bottom:294.203400px;}
.y16{bottom:297.028500px;}
.y135{bottom:297.034500px;}
.ye1{bottom:297.052500px;}
.yad{bottom:297.058500px;}
.y153{bottom:297.797400px;}
.y177{bottom:297.818400px;}
.y10c{bottom:297.833400px;}
.yf9{bottom:297.837900px;}
.y17e{bottom:297.842400px;}
.yc8{bottom:297.843900px;}
.y5b{bottom:301.560000px;}
.y1a9{bottom:308.447400px;}
.y15{bottom:311.284500px;}
.y134{bottom:311.290500px;}
.ye0{bottom:311.308500px;}
.y152{bottom:315.798900px;}
.yac{bottom:315.810000px;}
.y44{bottom:315.818400px;}
.y176{bottom:315.819900px;}
.y6d{bottom:315.831900px;}
.y10b{bottom:315.834900px;}
.yc7{bottom:315.837900px;}
.yf8{bottom:315.839400px;}
.y88{bottom:315.842400px;}
.y17d{bottom:315.843900px;}
.y172{bottom:315.845400px;}
.y14{bottom:325.540500px;}
.y133{bottom:325.546500px;}
.yd0{bottom:330.060000px;}
.y151{bottom:333.800400px;}
.y18d{bottom:333.816900px;}
.y17c{bottom:333.818400px;}
.y43{bottom:333.819900px;}
.y175{bottom:333.821400px;}
.y146{bottom:333.827400px;}
.y6c{bottom:333.833400px;}
.y10a{bottom:333.836400px;}
.yc6{bottom:333.839400px;}
.yf7{bottom:333.840900px;}
.y171{bottom:333.842400px;}
.y87{bottom:333.843900px;}
.y1a8{bottom:336.947400px;}
.y13{bottom:339.796500px;}
.y132{bottom:339.802500px;}
.y1a7{bottom:351.191400px;}
.y150{bottom:351.801900px;}
.y86{bottom:351.806400px;}
.y18c{bottom:351.818400px;}
.y17b{bottom:351.819900px;}
.y42{bottom:351.821400px;}
.y174{bottom:351.822900px;}
.y145{bottom:351.828900px;}
.y5a{bottom:351.833400px;}
.y6b{bottom:351.834900px;}
.y109{bottom:351.837900px;}
.yc5{bottom:351.840900px;}
.yf6{bottom:351.842400px;}
.y170{bottom:351.843900px;}
.y12{bottom:354.052500px;}
.y131{bottom:354.058500px;}
.y1a6{bottom:365.435400px;}
.y11{bottom:368.308500px;}
.y130{bottom:368.314500px;}
.y14f{bottom:369.803400px;}
.y16f{bottom:369.806400px;}
.y85{bottom:369.807900px;}
.y18b{bottom:369.819900px;}
.y17a{bottom:369.821400px;}
.y41{bottom:369.822900px;}
.ydf{bottom:369.824400px;}
.y144{bottom:369.830400px;}
.y59{bottom:369.834900px;}
.y6a{bottom:369.836400px;}
.yab{bottom:369.837900px;}
.y108{bottom:369.839400px;}
.yc4{bottom:369.842400px;}
.ycf{bottom:369.843900px;}
.y1a5{bottom:379.679400px;}
.y10{bottom:387.060000px;}
.y14e{bottom:387.804900px;}
.y16e{bottom:387.807900px;}
.y84{bottom:387.809400px;}
.y18a{bottom:387.821400px;}
.yf5{bottom:387.822900px;}
.y40{bottom:387.824400px;}
.yde{bottom:387.825900px;}
.y143{bottom:387.831900px;}
.y58{bottom:387.836400px;}
.y69{bottom:387.837900px;}
.yaa{bottom:387.839400px;}
.y107{bottom:387.840900px;}
.yc3{bottom:387.843900px;}
.y1a4{bottom:393.923400px;}
.y14d{bottom:405.806400px;}
.y16d{bottom:405.809400px;}
.y189{bottom:405.822900px;}
.yf4{bottom:405.824400px;}
.y3f{bottom:405.825900px;}
.ydd{bottom:405.827400px;}
.yc2{bottom:405.830400px;}
.y142{bottom:405.833400px;}
.y57{bottom:405.837900px;}
.y68{bottom:405.839400px;}
.ya9{bottom:405.840900px;}
.y106{bottom:405.842400px;}
.y12c{bottom:405.845400px;}
.y1a3{bottom:408.167400px;}
.y1a2{bottom:422.411400px;}
.y12f{bottom:423.807900px;}
.y16c{bottom:423.810900px;}
.y83{bottom:423.812400px;}
.y12b{bottom:423.821400px;}
.y188{bottom:423.824400px;}
.yf3{bottom:423.825900px;}
.y3e{bottom:423.827400px;}
.ydc{bottom:423.828900px;}
.yc1{bottom:423.831900px;}
.y141{bottom:423.834900px;}
.y56{bottom:423.839400px;}
.y67{bottom:423.840900px;}
.ya8{bottom:423.842400px;}
.y105{bottom:423.843900px;}
.yf{bottom:429.587850px;}
.y1a1{bottom:436.655400px;}
.y104{bottom:441.809400px;}
.y16b{bottom:441.812400px;}
.y82{bottom:441.813900px;}
.y12a{bottom:441.822900px;}
.y187{bottom:441.825900px;}
.yf2{bottom:441.827400px;}
.y3d{bottom:441.828900px;}
.ydb{bottom:441.830400px;}
.yc0{bottom:441.833400px;}
.y11b{bottom:441.836400px;}
.y55{bottom:441.840900px;}
.y66{bottom:441.842400px;}
.ya7{bottom:441.843900px;}
.ye{bottom:447.589350px;}
.y1a0{bottom:450.899400px;}
.y103{bottom:459.810900px;}
.y16a{bottom:459.813900px;}
.y129{bottom:459.824400px;}
.y186{bottom:459.827400px;}
.yf1{bottom:459.828900px;}
.y3c{bottom:459.830400px;}
.ya6{bottom:459.831900px;}
.ybf{bottom:459.834900px;}
.y11a{bottom:459.837900px;}
.y54{bottom:459.842400px;}
.y65{bottom:459.843900px;}
.yd{bottom:465.587850px;}
.y102{bottom:477.812400px;}
.y169{bottom:477.815400px;}
.y81{bottom:477.816900px;}
.y128{bottom:477.825900px;}
.y185{bottom:477.828900px;}
.yf0{bottom:477.830400px;}
.y3b{bottom:477.831900px;}
.ya5{bottom:477.833400px;}
.ybe{bottom:477.836400px;}
.y119{bottom:477.839400px;}
.y53{bottom:477.843900px;}
.y64{bottom:477.845400px;}
.y19f{bottom:479.399400px;}
.yc{bottom:483.589350px;}
.y19e{bottom:493.643400px;}
.y52{bottom:495.813900px;}
.y168{bottom:495.816900px;}
.y80{bottom:495.818400px;}
.y127{bottom:495.827400px;}
.y184{bottom:495.830400px;}
.yef{bottom:495.831900px;}
.y3a{bottom:495.833400px;}
.ya4{bottom:495.834900px;}
.ybd{bottom:495.837900px;}
.y118{bottom:495.840900px;}
.yce{bottom:495.843900px;}
.yb{bottom:501.583350px;}
.y19d{bottom:507.887400px;}
.y51{bottom:513.815400px;}
.y167{bottom:513.818400px;}
.y7f{bottom:513.819900px;}
.y126{bottom:513.828900px;}
.y183{bottom:513.831900px;}
.yee{bottom:513.833400px;}
.y39{bottom:513.834900px;}
.ya3{bottom:513.836400px;}
.ybc{bottom:513.839400px;}
.y117{bottom:513.842400px;}
.ycd{bottom:513.845400px;}
.ya{bottom:519.584850px;}
.y19c{bottom:522.131400px;}
.y50{bottom:531.816900px;}
.y166{bottom:531.819900px;}
.y7e{bottom:531.821400px;}
.y125{bottom:531.830400px;}
.y182{bottom:531.833400px;}
.yed{bottom:531.834900px;}
.y38{bottom:531.836400px;}
.ya2{bottom:531.837900px;}
.ybb{bottom:531.840900px;}
.y116{bottom:531.843900px;}
.y19b{bottom:536.375400px;}
.y9{bottom:537.586350px;}
.y4f{bottom:549.818400px;}
.y165{bottom:549.821400px;}
.y7d{bottom:549.822900px;}
.y124{bottom:549.831900px;}
.y140{bottom:549.834900px;}
.yec{bottom:549.836400px;}
.y37{bottom:549.837900px;}
.ya1{bottom:549.839400px;}
.yba{bottom:549.842400px;}
.y115{bottom:549.845400px;}
.y19a{bottom:550.619400px;}
.y199{bottom:564.863400px;}
.y4e{bottom:567.819900px;}
.y164{bottom:567.822900px;}
.y7c{bottom:567.824400px;}
.y114{bottom:567.833400px;}
.y13f{bottom:567.836400px;}
.yeb{bottom:567.837900px;}
.y36{bottom:567.839400px;}
.ya0{bottom:567.840900px;}
.yb9{bottom:567.843900px;}
.y8{bottom:573.589350px;}
.y198{bottom:579.107400px;}
.y4d{bottom:585.821400px;}
.y163{bottom:585.824400px;}
.y7b{bottom:585.825900px;}
.y113{bottom:585.834900px;}
.y13e{bottom:585.837900px;}
.yea{bottom:585.839400px;}
.y35{bottom:585.840900px;}
.y9f{bottom:585.842400px;}
.y7{bottom:591.590850px;}
.y197{bottom:593.351400px;}
.y4c{bottom:603.822900px;}
.y162{bottom:603.825900px;}
.y7a{bottom:603.827400px;}
.y112{bottom:603.836400px;}
.y13d{bottom:603.839400px;}
.ye9{bottom:603.840900px;}
.y34{bottom:603.842400px;}
.y9e{bottom:603.843900px;}
.y196{bottom:607.595400px;}
.y4b{bottom:621.824400px;}
.y161{bottom:621.827400px;}
.y79{bottom:621.828900px;}
.y9d{bottom:621.837900px;}
.y13c{bottom:621.840900px;}
.ye8{bottom:621.842400px;}
.y33{bottom:621.843900px;}
.yda{bottom:621.845400px;}
.y4a{bottom:639.825900px;}
.y160{bottom:639.828900px;}
.y78{bottom:639.830400px;}
.y9c{bottom:639.839400px;}
.y13b{bottom:639.842400px;}
.ye7{bottom:639.843900px;}
.y32{bottom:639.845400px;}
.y49{bottom:657.827400px;}
.ye6{bottom:657.828900px;}
.y15f{bottom:657.830400px;}
.y77{bottom:657.831900px;}
.y9b{bottom:657.840900px;}
.y31{bottom:657.843900px;}
.y173{bottom:657.845400px;}
.y30{bottom:675.828900px;}
.ye5{bottom:675.830400px;}
.y15e{bottom:675.831900px;}
.y76{bottom:675.833400px;}
.y9a{bottom:675.842400px;}
.y179{bottom:675.845400px;}
.y1bd{bottom:680.385900px;}
.y2f{bottom:693.830400px;}
.ye4{bottom:693.831900px;}
.y15d{bottom:693.833400px;}
.y75{bottom:693.834900px;}
.y99{bottom:693.843900px;}
.y1bc{bottom:694.629900px;}
.y1bb{bottom:708.873900px;}
.y2e{bottom:711.831900px;}
.y98{bottom:711.833400px;}
.y15c{bottom:711.834900px;}
.y74{bottom:711.836400px;}
.y123{bottom:711.840900px;}
.y6{bottom:717.590850px;}
.y1ba{bottom:723.117900px;}
.y2d{bottom:729.833400px;}
.y97{bottom:729.834900px;}
.y15b{bottom:729.836400px;}
.y73{bottom:729.837900px;}
.y122{bottom:729.842400px;}
.y1b9{bottom:737.361900px;}
.y2c{bottom:747.834900px;}
.y96{bottom:747.836400px;}
.y15a{bottom:747.837900px;}
.y72{bottom:747.839400px;}
.y121{bottom:747.843900px;}
.y5{bottom:747.844350px;}
.y1b8{bottom:751.605900px;}
.y2b{bottom:765.836400px;}
.y95{bottom:765.837900px;}
.y120{bottom:765.839400px;}
.y71{bottom:765.840900px;}
.y1b7{bottom:765.849900px;}
.y1b6{bottom:780.093900px;}
.y2a{bottom:783.837900px;}
.y94{bottom:783.839400px;}
.y11f{bottom:783.840900px;}
.y70{bottom:783.842400px;}
.y1b5{bottom:794.337900px;}
.y29{bottom:801.839400px;}
.y93{bottom:801.840900px;}
.y11e{bottom:801.842400px;}
.y6f{bottom:801.843900px;}
.y28{bottom:819.840900px;}
.y92{bottom:819.842400px;}
.y11d{bottom:819.843900px;}
.y6e{bottom:819.845400px;}
.y1b4{bottom:822.837900px;}
.y1b3{bottom:837.081900px;}
.y27{bottom:837.842400px;}
.y91{bottom:837.843900px;}
.y159{bottom:837.845400px;}
.y1b2{bottom:851.325900px;}
.y26{bottom:855.843900px;}
.y1b1{bottom:865.569900px;}
.y25{bottom:873.845400px;}
.y1b0{bottom:879.813900px;}
.y22{bottom:961.418400px;}
.y3{bottom:961.582800px;}
.y24{bottom:961.584600px;}
.y1{bottom:961.890750px;}
.hd{height:30.217219px;}
.h15{height:32.300227px;}
.h3{height:36.386719px;}
.h4{height:36.413086px;}
.h1b{height:37.177734px;}
.h21{height:39.872619px;}
.h26{height:44.953125px;}
.h9{height:45.439453px;}
.h2{height:45.480000px;}
.h5{height:48.199219px;}
.h19{height:48.247219px;}
.h1a{height:48.271219px;}
.h11{height:48.391219px;}
.he{height:50.282227px;}
.h6{height:52.596680px;}
.h24{height:55.869141px;}
.h8{height:58.910156px;}
.h13{height:58.916156px;}
.hc{height:58.922156px;}
.h20{height:58.928156px;}
.h1f{height:58.934156px;}
.ha{height:58.940156px;}
.h22{height:58.952156px;}
.h14{height:58.958156px;}
.h1e{height:58.964156px;}
.h17{height:58.970156px;}
.hf{height:58.976156px;}
.h16{height:58.988156px;}
.h1c{height:59.000156px;}
.h25{height:59.018156px;}
.h10{height:59.036156px;}
.h1d{height:59.054156px;}
.h12{height:59.066156px;}
.hb{height:61.456055px;}
.h23{height:61.468055px;}
.h18{height:61.492055px;}
.h7{height:69.621094px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:124.057500px;}
.x4{left:149.519700px;}
.x6{left:174.328500px;}
.x3{left:257.058300px;}
.x5{left:319.678500px;}
.x7{left:557.635650px;}
.x1{left:559.375650px;}
.x9{left:561.745650px;}
.x8{left:562.945650px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.154667pt;}
.v1{vertical-align:17.786667pt;}
.ls62{letter-spacing:-6.740800pt;}
.ls25{letter-spacing:-4.200000pt;}
.ls1e{letter-spacing:-3.777600pt;}
.lse{letter-spacing:-3.140107pt;}
.ls3c{letter-spacing:-2.499200pt;}
.lsd{letter-spacing:-2.173920pt;}
.ls68{letter-spacing:-1.612800pt;}
.ls4a{letter-spacing:-1.564800pt;}
.ls45{letter-spacing:-1.337600pt;}
.ls3e{letter-spacing:-1.320000pt;}
.ls3d{letter-spacing:-0.821333pt;}
.ls32{letter-spacing:-0.780267pt;}
.ls29{letter-spacing:-0.528000pt;}
.ls49{letter-spacing:-0.498667pt;}
.ls2e{letter-spacing:-0.264000pt;}
.ls31{letter-spacing:-0.234667pt;}
.ls2f{letter-spacing:-0.124373pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.020267pt;}
.ls67{letter-spacing:0.062187pt;}
.ls2d{letter-spacing:0.093280pt;}
.ls65{letter-spacing:0.099733pt;}
.ls63{letter-spacing:0.117333pt;}
.ls64{letter-spacing:0.123200pt;}
.ls5{letter-spacing:0.139733pt;}
.ls23{letter-spacing:0.139920pt;}
.ls1a{letter-spacing:0.140267pt;}
.ls2c{letter-spacing:0.146667pt;}
.ls4{letter-spacing:0.155200pt;}
.ls42{letter-spacing:0.155467pt;}
.ls34{letter-spacing:0.158400pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls35{letter-spacing:0.199467pt;}
.ls2b{letter-spacing:0.205333pt;}
.ls43{letter-spacing:0.211200pt;}
.lsf{letter-spacing:0.216000pt;}
.lsa{letter-spacing:0.220800pt;}
.ls8{letter-spacing:0.225600pt;}
.ls5e{letter-spacing:0.231467pt;}
.ls7{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.244800pt;}
.ls1c{letter-spacing:0.249600pt;}
.ls17{letter-spacing:0.254400pt;}
.ls60{letter-spacing:0.256000pt;}
.ls61{letter-spacing:0.258133pt;}
.ls9{letter-spacing:0.264000pt;}
.ls5f{letter-spacing:0.266667pt;}
.ls1f{letter-spacing:0.269867pt;}
.ls18{letter-spacing:0.275733pt;}
.ls38{letter-spacing:0.279467pt;}
.ls40{letter-spacing:0.279840pt;}
.ls5d{letter-spacing:0.281600pt;}
.ls5b{letter-spacing:0.285333pt;}
.ls52{letter-spacing:0.286432pt;}
.ls3b{letter-spacing:0.286965pt;}
.ls3{letter-spacing:0.293333pt;}
.ls4e{letter-spacing:0.299200pt;}
.ls14{letter-spacing:0.305067pt;}
.ls21{letter-spacing:0.310933pt;}
.ls5a{letter-spacing:0.316800pt;}
.ls11{letter-spacing:0.322667pt;}
.ls28{letter-spacing:0.373120pt;}
.ls5c{letter-spacing:0.389333pt;}
.ls53{letter-spacing:0.456000pt;}
.ls4d{letter-spacing:0.465600pt;}
.ls36{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.484800pt;}
.ls50{letter-spacing:0.494400pt;}
.ls51{letter-spacing:0.499200pt;}
.ls37{letter-spacing:0.504000pt;}
.ls48{letter-spacing:0.557333pt;}
.ls58{letter-spacing:0.569067pt;}
.ls2{letter-spacing:0.586667pt;}
.ls47{letter-spacing:0.616000pt;}
.ls4f{letter-spacing:0.680533pt;}
.ls27{letter-spacing:0.704000pt;}
.ls26{letter-spacing:0.733333pt;}
.ls3f{letter-spacing:0.809600pt;}
.ls12{letter-spacing:1.008000pt;}
.ls13{letter-spacing:1.056000pt;}
.lsb{letter-spacing:1.066667pt;}
.ls55{letter-spacing:1.920000pt;}
.ls57{letter-spacing:2.176533pt;}
.ls22{letter-spacing:2.288000pt;}
.ls3a{letter-spacing:2.315200pt;}
.ls15{letter-spacing:2.334933pt;}
.ls19{letter-spacing:2.346667pt;}
.ls20{letter-spacing:2.400000pt;}
.ls1d{letter-spacing:2.409600pt;}
.ls41{letter-spacing:2.448000pt;}
.ls16{letter-spacing:2.493333pt;}
.ls59{letter-spacing:2.528533pt;}
.ls10{letter-spacing:3.373333pt;}
.ls33{letter-spacing:3.390933pt;}
.ls24{letter-spacing:4.752000pt;}
.ls54{letter-spacing:5.424000pt;}
.ls46{letter-spacing:5.749333pt;}
.ls44{letter-spacing:6.336000pt;}
.ls56{letter-spacing:7.536000pt;}
.ls30{letter-spacing:7.685333pt;}
.ls4b{letter-spacing:8.496000pt;}
.ls66{letter-spacing:11.818667pt;}
.ls6{letter-spacing:36.240000pt;}
.ls4c{letter-spacing:36.480000pt;}
.ws4{word-spacing:-17.333333pt;}
.ws10{word-spacing:-15.370667pt;}
.ws16{word-spacing:-15.253333pt;}
.ws13{word-spacing:-14.989333pt;}
.ws5{word-spacing:-14.960000pt;}
.ws1a{word-spacing:-14.942400pt;}
.ws1d{word-spacing:-14.924800pt;}
.ws1f{word-spacing:-14.784000pt;}
.ws8{word-spacing:-14.666667pt;}
.ws15{word-spacing:-14.402667pt;}
.ws1c{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.056000pt;}
.ws21{word-spacing:-12.842667pt;}
.ws18{word-spacing:-12.480000pt;}
.ws19{word-spacing:-12.456000pt;}
.wsb{word-spacing:-12.264000pt;}
.wsc{word-spacing:-12.240000pt;}
.wse{word-spacing:-12.216000pt;}
.ws3{word-spacing:-12.133333pt;}
.ws1b{word-spacing:-12.000000pt;}
.ws2{word-spacing:-8.993227pt;}
.ws1{word-spacing:-8.400000pt;}
.wsf{word-spacing:-8.146453pt;}
.ws17{word-spacing:-8.084267pt;}
.ws14{word-spacing:-7.928800pt;}
.ws1e{word-spacing:-7.925867pt;}
.ws20{word-spacing:-7.835520pt;}
.ws9{word-spacing:-7.773333pt;}
.ws11{word-spacing:-7.648960pt;}
.ws12{word-spacing:-7.275840pt;}
.wsd{word-spacing:-7.135920pt;}
.ws6{word-spacing:-6.996000pt;}
.ws0{word-spacing:-6.226080pt;}
.ws7{word-spacing:0.000000pt;}
._23{margin-left:-11.776000pt;}
._16{margin-left:-10.432640pt;}
._17{margin-left:-9.351787pt;}
._14{margin-left:-8.273280pt;}
._4{margin-left:-7.185600pt;}
._0{margin-left:-5.875200pt;}
._10{margin-left:-4.767893pt;}
._3{margin-left:-3.591893pt;}
._b{margin-left:-2.531413pt;}
._1{margin-left:-1.372800pt;}
._a{width:0.997333pt;}
._2{width:2.181440pt;}
._5{width:3.150613pt;}
._8{width:4.071467pt;}
._7{width:5.180053pt;}
._d{width:6.280427pt;}
._9{width:7.216000pt;}
._6{width:8.154667pt;}
._11{width:9.064000pt;}
._15{width:10.032000pt;}
._13{width:10.932373pt;}
._1a{width:11.863893pt;}
._12{width:13.276800pt;}
._f{width:14.775467pt;}
._18{width:15.908693pt;}
._21{width:16.929600pt;}
._22{width:18.086400pt;}
._1f{width:19.427093pt;}
._c{width:21.024000pt;}
._1b{width:22.320000pt;}
._1c{width:24.623787pt;}
._20{width:25.656000pt;}
._1d{width:27.552000pt;}
._1e{width:28.464000pt;}
._19{width:29.711787pt;}
._e{width:36.000000pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs2{font-size:33.600000pt;}
.fs8{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:48.533333pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:53.476667pt;}
.y2{bottom:67.372267pt;}
.y23{bottom:67.649867pt;}
.y21{bottom:124.676000pt;}
.y90{bottom:124.686667pt;}
.y14c{bottom:124.692000pt;}
.y101{bottom:124.702667pt;}
.y48{bottom:124.708000pt;}
.y13a{bottom:124.713333pt;}
.y12e{bottom:124.718667pt;}
.yb8{bottom:128.720000pt;}
.y195{bottom:136.698133pt;}
.yd9{bottom:137.342667pt;}
.y20{bottom:137.348000pt;}
.y8f{bottom:137.358667pt;}
.y14b{bottom:137.364000pt;}
.y100{bottom:137.374667pt;}
.y47{bottom:137.380000pt;}
.ye3{bottom:137.385333pt;}
.yb7{bottom:141.386667pt;}
.yd8{bottom:150.014667pt;}
.y1f{bottom:150.020000pt;}
.yb6{bottom:150.025333pt;}
.y8e{bottom:150.030667pt;}
.y14a{bottom:150.036000pt;}
.yff{bottom:150.046667pt;}
.y46{bottom:150.052000pt;}
.y194{bottom:152.699467pt;}
.ycc{bottom:154.053333pt;}
.y63{bottom:162.681333pt;}
.yd7{bottom:162.686667pt;}
.y1e{bottom:162.692000pt;}
.yb5{bottom:162.697333pt;}
.y8d{bottom:162.702667pt;}
.y149{bottom:162.708000pt;}
.yfe{bottom:162.718667pt;}
.y45{bottom:166.720000pt;}
.y193{bottom:168.700800pt;}
.y62{bottom:175.353333pt;}
.yd6{bottom:175.358667pt;}
.y1d{bottom:175.364000pt;}
.yb4{bottom:175.369333pt;}
.y8c{bottom:175.374667pt;}
.y148{bottom:175.380000pt;}
.y12d{bottom:175.385333pt;}
.yfd{bottom:179.386667pt;}
.y192{bottom:184.702133pt;}
.y111{bottom:184.734133pt;}
.y158{bottom:184.746133pt;}
.y1af{bottom:185.535467pt;}
.y61{bottom:188.025333pt;}
.yd5{bottom:188.030667pt;}
.y1c{bottom:188.036000pt;}
.yb3{bottom:188.041333pt;}
.y8b{bottom:188.046667pt;}
.y147{bottom:188.052000pt;}
.yfc{bottom:192.053333pt;}
.y1ae{bottom:198.196800pt;}
.y60{bottom:200.697333pt;}
.yd4{bottom:200.702667pt;}
.y191{bottom:200.703467pt;}
.y1b{bottom:200.708000pt;}
.yb2{bottom:200.713333pt;}
.y8a{bottom:200.718667pt;}
.y110{bottom:200.735467pt;}
.y157{bottom:200.747467pt;}
.yfb{bottom:204.720000pt;}
.y1ad{bottom:210.858133pt;}
.y139{bottom:213.342667pt;}
.y5f{bottom:213.369333pt;}
.yd3{bottom:213.374667pt;}
.y1a{bottom:213.380000pt;}
.yb1{bottom:213.385333pt;}
.y190{bottom:216.704800pt;}
.y10f{bottom:216.736800pt;}
.y181{bottom:216.744800pt;}
.ycb{bottom:216.746133pt;}
.y156{bottom:216.748800pt;}
.y89{bottom:217.386667pt;}
.y1ac{bottom:223.519467pt;}
.y138{bottom:226.014667pt;}
.y5e{bottom:226.041333pt;}
.yd2{bottom:226.046667pt;}
.y19{bottom:226.052000pt;}
.yb0{bottom:230.053333pt;}
.y18f{bottom:232.706133pt;}
.y10e{bottom:232.738133pt;}
.y180{bottom:232.746133pt;}
.yca{bottom:232.747467pt;}
.y155{bottom:232.750133pt;}
.y137{bottom:238.686667pt;}
.yaf{bottom:238.708000pt;}
.y5d{bottom:238.713333pt;}
.yd1{bottom:238.718667pt;}
.y18{bottom:242.720000pt;}
.y18e{bottom:248.707467pt;}
.y178{bottom:248.726133pt;}
.y10d{bottom:248.739467pt;}
.yfa{bottom:248.743467pt;}
.y17f{bottom:248.747467pt;}
.yc9{bottom:248.748800pt;}
.y154{bottom:248.751467pt;}
.y1ab{bottom:248.852800pt;}
.y17{bottom:251.353333pt;}
.y136{bottom:251.358667pt;}
.ye2{bottom:251.374667pt;}
.yae{bottom:251.380000pt;}
.y5c{bottom:251.385333pt;}
.y11c{bottom:255.386667pt;}
.y1aa{bottom:261.514133pt;}
.y16{bottom:264.025333pt;}
.y135{bottom:264.030667pt;}
.ye1{bottom:264.046667pt;}
.yad{bottom:264.052000pt;}
.y153{bottom:264.708800pt;}
.y177{bottom:264.727467pt;}
.y10c{bottom:264.740800pt;}
.yf9{bottom:264.744800pt;}
.y17e{bottom:264.748800pt;}
.yc8{bottom:264.750133pt;}
.y5b{bottom:268.053333pt;}
.y1a9{bottom:274.175467pt;}
.y15{bottom:276.697333pt;}
.y134{bottom:276.702667pt;}
.ye0{bottom:276.718667pt;}
.y152{bottom:280.710133pt;}
.yac{bottom:280.720000pt;}
.y44{bottom:280.727467pt;}
.y176{bottom:280.728800pt;}
.y6d{bottom:280.739467pt;}
.y10b{bottom:280.742133pt;}
.yc7{bottom:280.744800pt;}
.yf8{bottom:280.746133pt;}
.y88{bottom:280.748800pt;}
.y17d{bottom:280.750133pt;}
.y172{bottom:280.751467pt;}
.y14{bottom:289.369333pt;}
.y133{bottom:289.374667pt;}
.yd0{bottom:293.386667pt;}
.y151{bottom:296.711467pt;}
.y18d{bottom:296.726133pt;}
.y17c{bottom:296.727467pt;}
.y43{bottom:296.728800pt;}
.y175{bottom:296.730133pt;}
.y146{bottom:296.735467pt;}
.y6c{bottom:296.740800pt;}
.y10a{bottom:296.743467pt;}
.yc6{bottom:296.746133pt;}
.yf7{bottom:296.747467pt;}
.y171{bottom:296.748800pt;}
.y87{bottom:296.750133pt;}
.y1a8{bottom:299.508800pt;}
.y13{bottom:302.041333pt;}
.y132{bottom:302.046667pt;}
.y1a7{bottom:312.170133pt;}
.y150{bottom:312.712800pt;}
.y86{bottom:312.716800pt;}
.y18c{bottom:312.727467pt;}
.y17b{bottom:312.728800pt;}
.y42{bottom:312.730133pt;}
.y174{bottom:312.731467pt;}
.y145{bottom:312.736800pt;}
.y5a{bottom:312.740800pt;}
.y6b{bottom:312.742133pt;}
.y109{bottom:312.744800pt;}
.yc5{bottom:312.747467pt;}
.yf6{bottom:312.748800pt;}
.y170{bottom:312.750133pt;}
.y12{bottom:314.713333pt;}
.y131{bottom:314.718667pt;}
.y1a6{bottom:324.831467pt;}
.y11{bottom:327.385333pt;}
.y130{bottom:327.390667pt;}
.y14f{bottom:328.714133pt;}
.y16f{bottom:328.716800pt;}
.y85{bottom:328.718133pt;}
.y18b{bottom:328.728800pt;}
.y17a{bottom:328.730133pt;}
.y41{bottom:328.731467pt;}
.ydf{bottom:328.732800pt;}
.y144{bottom:328.738133pt;}
.y59{bottom:328.742133pt;}
.y6a{bottom:328.743467pt;}
.yab{bottom:328.744800pt;}
.y108{bottom:328.746133pt;}
.yc4{bottom:328.748800pt;}
.ycf{bottom:328.750133pt;}
.y1a5{bottom:337.492800pt;}
.y10{bottom:344.053333pt;}
.y14e{bottom:344.715467pt;}
.y16e{bottom:344.718133pt;}
.y84{bottom:344.719467pt;}
.y18a{bottom:344.730133pt;}
.yf5{bottom:344.731467pt;}
.y40{bottom:344.732800pt;}
.yde{bottom:344.734133pt;}
.y143{bottom:344.739467pt;}
.y58{bottom:344.743467pt;}
.y69{bottom:344.744800pt;}
.yaa{bottom:344.746133pt;}
.y107{bottom:344.747467pt;}
.yc3{bottom:344.750133pt;}
.y1a4{bottom:350.154133pt;}
.y14d{bottom:360.716800pt;}
.y16d{bottom:360.719467pt;}
.y189{bottom:360.731467pt;}
.yf4{bottom:360.732800pt;}
.y3f{bottom:360.734133pt;}
.ydd{bottom:360.735467pt;}
.yc2{bottom:360.738133pt;}
.y142{bottom:360.740800pt;}
.y57{bottom:360.744800pt;}
.y68{bottom:360.746133pt;}
.ya9{bottom:360.747467pt;}
.y106{bottom:360.748800pt;}
.y12c{bottom:360.751467pt;}
.y1a3{bottom:362.815467pt;}
.y1a2{bottom:375.476800pt;}
.y12f{bottom:376.718133pt;}
.y16c{bottom:376.720800pt;}
.y83{bottom:376.722133pt;}
.y12b{bottom:376.730133pt;}
.y188{bottom:376.732800pt;}
.yf3{bottom:376.734133pt;}
.y3e{bottom:376.735467pt;}
.ydc{bottom:376.736800pt;}
.yc1{bottom:376.739467pt;}
.y141{bottom:376.742133pt;}
.y56{bottom:376.746133pt;}
.y67{bottom:376.747467pt;}
.ya8{bottom:376.748800pt;}
.y105{bottom:376.750133pt;}
.yf{bottom:381.855867pt;}
.y1a1{bottom:388.138133pt;}
.y104{bottom:392.719467pt;}
.y16b{bottom:392.722133pt;}
.y82{bottom:392.723467pt;}
.y12a{bottom:392.731467pt;}
.y187{bottom:392.734133pt;}
.yf2{bottom:392.735467pt;}
.y3d{bottom:392.736800pt;}
.ydb{bottom:392.738133pt;}
.yc0{bottom:392.740800pt;}
.y11b{bottom:392.743467pt;}
.y55{bottom:392.747467pt;}
.y66{bottom:392.748800pt;}
.ya7{bottom:392.750133pt;}
.ye{bottom:397.857200pt;}
.y1a0{bottom:400.799467pt;}
.y103{bottom:408.720800pt;}
.y16a{bottom:408.723467pt;}
.y129{bottom:408.732800pt;}
.y186{bottom:408.735467pt;}
.yf1{bottom:408.736800pt;}
.y3c{bottom:408.738133pt;}
.ya6{bottom:408.739467pt;}
.ybf{bottom:408.742133pt;}
.y11a{bottom:408.744800pt;}
.y54{bottom:408.748800pt;}
.y65{bottom:408.750133pt;}
.yd{bottom:413.855867pt;}
.y102{bottom:424.722133pt;}
.y169{bottom:424.724800pt;}
.y81{bottom:424.726133pt;}
.y128{bottom:424.734133pt;}
.y185{bottom:424.736800pt;}
.yf0{bottom:424.738133pt;}
.y3b{bottom:424.739467pt;}
.ya5{bottom:424.740800pt;}
.ybe{bottom:424.743467pt;}
.y119{bottom:424.746133pt;}
.y53{bottom:424.750133pt;}
.y64{bottom:424.751467pt;}
.y19f{bottom:426.132800pt;}
.yc{bottom:429.857200pt;}
.y19e{bottom:438.794133pt;}
.y52{bottom:440.723467pt;}
.y168{bottom:440.726133pt;}
.y80{bottom:440.727467pt;}
.y127{bottom:440.735467pt;}
.y184{bottom:440.738133pt;}
.yef{bottom:440.739467pt;}
.y3a{bottom:440.740800pt;}
.ya4{bottom:440.742133pt;}
.ybd{bottom:440.744800pt;}
.y118{bottom:440.747467pt;}
.yce{bottom:440.750133pt;}
.yb{bottom:445.851867pt;}
.y19d{bottom:451.455467pt;}
.y51{bottom:456.724800pt;}
.y167{bottom:456.727467pt;}
.y7f{bottom:456.728800pt;}
.y126{bottom:456.736800pt;}
.y183{bottom:456.739467pt;}
.yee{bottom:456.740800pt;}
.y39{bottom:456.742133pt;}
.ya3{bottom:456.743467pt;}
.ybc{bottom:456.746133pt;}
.y117{bottom:456.748800pt;}
.ycd{bottom:456.751467pt;}
.ya{bottom:461.853200pt;}
.y19c{bottom:464.116800pt;}
.y50{bottom:472.726133pt;}
.y166{bottom:472.728800pt;}
.y7e{bottom:472.730133pt;}
.y125{bottom:472.738133pt;}
.y182{bottom:472.740800pt;}
.yed{bottom:472.742133pt;}
.y38{bottom:472.743467pt;}
.ya2{bottom:472.744800pt;}
.ybb{bottom:472.747467pt;}
.y116{bottom:472.750133pt;}
.y19b{bottom:476.778133pt;}
.y9{bottom:477.854533pt;}
.y4f{bottom:488.727467pt;}
.y165{bottom:488.730133pt;}
.y7d{bottom:488.731467pt;}
.y124{bottom:488.739467pt;}
.y140{bottom:488.742133pt;}
.yec{bottom:488.743467pt;}
.y37{bottom:488.744800pt;}
.ya1{bottom:488.746133pt;}
.yba{bottom:488.748800pt;}
.y115{bottom:488.751467pt;}
.y19a{bottom:489.439467pt;}
.y199{bottom:502.100800pt;}
.y4e{bottom:504.728800pt;}
.y164{bottom:504.731467pt;}
.y7c{bottom:504.732800pt;}
.y114{bottom:504.740800pt;}
.y13f{bottom:504.743467pt;}
.yeb{bottom:504.744800pt;}
.y36{bottom:504.746133pt;}
.ya0{bottom:504.747467pt;}
.yb9{bottom:504.750133pt;}
.y8{bottom:509.857200pt;}
.y198{bottom:514.762133pt;}
.y4d{bottom:520.730133pt;}
.y163{bottom:520.732800pt;}
.y7b{bottom:520.734133pt;}
.y113{bottom:520.742133pt;}
.y13e{bottom:520.744800pt;}
.yea{bottom:520.746133pt;}
.y35{bottom:520.747467pt;}
.y9f{bottom:520.748800pt;}
.y7{bottom:525.858533pt;}
.y197{bottom:527.423467pt;}
.y4c{bottom:536.731467pt;}
.y162{bottom:536.734133pt;}
.y7a{bottom:536.735467pt;}
.y112{bottom:536.743467pt;}
.y13d{bottom:536.746133pt;}
.ye9{bottom:536.747467pt;}
.y34{bottom:536.748800pt;}
.y9e{bottom:536.750133pt;}
.y196{bottom:540.084800pt;}
.y4b{bottom:552.732800pt;}
.y161{bottom:552.735467pt;}
.y79{bottom:552.736800pt;}
.y9d{bottom:552.744800pt;}
.y13c{bottom:552.747467pt;}
.ye8{bottom:552.748800pt;}
.y33{bottom:552.750133pt;}
.yda{bottom:552.751467pt;}
.y4a{bottom:568.734133pt;}
.y160{bottom:568.736800pt;}
.y78{bottom:568.738133pt;}
.y9c{bottom:568.746133pt;}
.y13b{bottom:568.748800pt;}
.ye7{bottom:568.750133pt;}
.y32{bottom:568.751467pt;}
.y49{bottom:584.735467pt;}
.ye6{bottom:584.736800pt;}
.y15f{bottom:584.738133pt;}
.y77{bottom:584.739467pt;}
.y9b{bottom:584.747467pt;}
.y31{bottom:584.750133pt;}
.y173{bottom:584.751467pt;}
.y30{bottom:600.736800pt;}
.ye5{bottom:600.738133pt;}
.y15e{bottom:600.739467pt;}
.y76{bottom:600.740800pt;}
.y9a{bottom:600.748800pt;}
.y179{bottom:600.751467pt;}
.y1bd{bottom:604.787467pt;}
.y2f{bottom:616.738133pt;}
.ye4{bottom:616.739467pt;}
.y15d{bottom:616.740800pt;}
.y75{bottom:616.742133pt;}
.y99{bottom:616.750133pt;}
.y1bc{bottom:617.448800pt;}
.y1bb{bottom:630.110133pt;}
.y2e{bottom:632.739467pt;}
.y98{bottom:632.740800pt;}
.y15c{bottom:632.742133pt;}
.y74{bottom:632.743467pt;}
.y123{bottom:632.747467pt;}
.y6{bottom:637.858533pt;}
.y1ba{bottom:642.771467pt;}
.y2d{bottom:648.740800pt;}
.y97{bottom:648.742133pt;}
.y15b{bottom:648.743467pt;}
.y73{bottom:648.744800pt;}
.y122{bottom:648.748800pt;}
.y1b9{bottom:655.432800pt;}
.y2c{bottom:664.742133pt;}
.y96{bottom:664.743467pt;}
.y15a{bottom:664.744800pt;}
.y72{bottom:664.746133pt;}
.y121{bottom:664.750133pt;}
.y5{bottom:664.750533pt;}
.y1b8{bottom:668.094133pt;}
.y2b{bottom:680.743467pt;}
.y95{bottom:680.744800pt;}
.y120{bottom:680.746133pt;}
.y71{bottom:680.747467pt;}
.y1b7{bottom:680.755467pt;}
.y1b6{bottom:693.416800pt;}
.y2a{bottom:696.744800pt;}
.y94{bottom:696.746133pt;}
.y11f{bottom:696.747467pt;}
.y70{bottom:696.748800pt;}
.y1b5{bottom:706.078133pt;}
.y29{bottom:712.746133pt;}
.y93{bottom:712.747467pt;}
.y11e{bottom:712.748800pt;}
.y6f{bottom:712.750133pt;}
.y28{bottom:728.747467pt;}
.y92{bottom:728.748800pt;}
.y11d{bottom:728.750133pt;}
.y6e{bottom:728.751467pt;}
.y1b4{bottom:731.411467pt;}
.y1b3{bottom:744.072800pt;}
.y27{bottom:744.748800pt;}
.y91{bottom:744.750133pt;}
.y159{bottom:744.751467pt;}
.y1b2{bottom:756.734133pt;}
.y26{bottom:760.750133pt;}
.y1b1{bottom:769.395467pt;}
.y25{bottom:776.751467pt;}
.y1b0{bottom:782.056800pt;}
.y22{bottom:854.594133pt;}
.y3{bottom:854.740267pt;}
.y24{bottom:854.741867pt;}
.y1{bottom:855.014000pt;}
.hd{height:26.859750pt;}
.h15{height:28.711312pt;}
.h3{height:32.343750pt;}
.h4{height:32.367188pt;}
.h1b{height:33.046875pt;}
.h21{height:35.442328pt;}
.h26{height:39.958333pt;}
.h9{height:40.390625pt;}
.h2{height:40.426667pt;}
.h5{height:42.843750pt;}
.h19{height:42.886417pt;}
.h1a{height:42.907750pt;}
.h11{height:43.014417pt;}
.he{height:44.695312pt;}
.h6{height:46.752604pt;}
.h24{height:49.661458pt;}
.h8{height:52.364583pt;}
.h13{height:52.369917pt;}
.hc{height:52.375250pt;}
.h20{height:52.380583pt;}
.h1f{height:52.385917pt;}
.ha{height:52.391250pt;}
.h22{height:52.401917pt;}
.h14{height:52.407250pt;}
.h1e{height:52.412583pt;}
.h17{height:52.417917pt;}
.hf{height:52.423250pt;}
.h16{height:52.433917pt;}
.h1c{height:52.444583pt;}
.h25{height:52.460583pt;}
.h10{height:52.476583pt;}
.h1d{height:52.492583pt;}
.h12{height:52.503250pt;}
.hb{height:54.627604pt;}
.h23{height:54.638271pt;}
.h18{height:54.659604pt;}
.h7{height:61.885417pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:110.273333pt;}
.x4{left:132.906400pt;}
.x6{left:154.958667pt;}
.x3{left:228.496267pt;}
.x5{left:284.158667pt;}
.x7{left:495.676133pt;}
.x1{left:497.222800pt;}
.x9{left:499.329467pt;}
.x8{left:500.396133pt;}
}




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