
    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_5ac50f80b2229000102292e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_49a7a7d94f55bc1b10139ddf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_ab5974a3c1b46d9bcad0cf64.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_4dff2c584303cd5eee63bd0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_f7a17eb306900c4dd37d75a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_b79ef09cded5cc731c1ee9ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_7525abd50bdb84d959d7ccfb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_6094318c4499c98c72fd00e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.390000;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_7ede544632fd20865c55e302.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694000;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_ff23f7d4836c05cefcb9ca71.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_5943ab0e5f649d13fdc012c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.696000;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_4f2984aff8062d83a25a4686.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999000;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_65a03a05a80c52c2589e1eb0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.905000;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_609a2f4e64643c4321fe41a4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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_574846ed138f3a6e02683d61.woff2')format("woff");}.fff{font-family:fff;line-height:0.710400;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_96b60211f857d85b6447fe9c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.106000;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_7771c601b20806a9caea1a5d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.542000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-26.034000px;}
.v4{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:26.028000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.984915px;}
.ls3{letter-spacing:2.988532px;}
.ls5{letter-spacing:2.990525px;}
.ls6{letter-spacing:14.226593px;}
.lsa{letter-spacing:19.905275px;}
.ls9{letter-spacing:19.965050px;}
.ls8{letter-spacing:20.861684px;}
.lsb{letter-spacing:23.372260px;}
.ls7{letter-spacing:24.374525px;}
.ls2{letter-spacing:29.887800px;}
.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;}
}
.ws3c{word-spacing:-19.092327px;}
.ws68{word-spacing:-16.605662px;}
.ws29{word-spacing:-15.278643px;}
.ws6c{word-spacing:-3.849549px;}
.ws6d{word-spacing:-3.335478px;}
.ws40{word-spacing:-2.893139px;}
.wsc0{word-spacing:-2.737722px;}
.wsb9{word-spacing:-2.713812px;}
.ws41{word-spacing:-2.498620px;}
.wsa9{word-spacing:-2.379069px;}
.wsae{word-spacing:-2.235607px;}
.ws86{word-spacing:-2.139966px;}
.wsaf{word-spacing:-1.900864px;}
.wsd4{word-spacing:-1.721537px;}
.wsc4{word-spacing:-1.661762px;}
.ws3d{word-spacing:-1.482435px;}
.ws22{word-spacing:-1.422659px;}
.wsda{word-spacing:-1.362884px;}
.ws79{word-spacing:-1.303108px;}
.ws24{word-spacing:-1.064006px;}
.ws93{word-spacing:-0.980320px;}
.wsa8{word-spacing:-0.944454px;}
.ws76{word-spacing:-0.884679px;}
.ws94{word-spacing:-0.824903px;}
.wsb2{word-spacing:-0.800993px;}
.ws5e{word-spacing:-0.765128px;}
.wsb3{word-spacing:-0.705352px;}
.ws83{word-spacing:-0.406474px;}
.ws34{word-spacing:-0.227147px;}
.ws3b{word-spacing:-0.107596px;}
.wsd6{word-spacing:-0.059776px;}
.ws2b{word-spacing:-0.047821px;}
.wsb{word-spacing:0.000000px;}
.wsad{word-spacing:0.011955px;}
.ws84{word-spacing:0.131506px;}
.ws53{word-spacing:0.490160px;}
.wsb8{word-spacing:0.549936px;}
.ws8b{word-spacing:0.573846px;}
.ws71{word-spacing:0.669487px;}
.wsc{word-spacing:0.789038px;}
.ws70{word-spacing:0.812948px;}
.ws1b{word-spacing:0.848814px;}
.wsa{word-spacing:0.908589px;}
.ws4d{word-spacing:1.147692px;}
.ws6e{word-spacing:1.267243px;}
.ws59{word-spacing:1.279198px;}
.wsbc{word-spacing:1.327018px;}
.wsac{word-spacing:1.386794px;}
.ws3f{word-spacing:1.446570px;}
.ws73{word-spacing:1.566121px;}
.wsab{word-spacing:1.590031px;}
.wsde{word-spacing:1.685672px;}
.wsb5{word-spacing:1.805223px;}
.ws30{word-spacing:1.924774px;}
.ws4{word-spacing:2.017440px;}
.ws32{word-spacing:2.044326px;}
.wsdb{word-spacing:2.163877px;}
.ws31{word-spacing:2.223652px;}
.wsb0{word-spacing:2.283428px;}
.wsc1{word-spacing:2.343204px;}
.ws54{word-spacing:2.402979px;}
.ws85{word-spacing:2.462755px;}
.ws88{word-spacing:2.582306px;}
.wsa3{word-spacing:2.642082px;}
.wsbd{word-spacing:2.701857px;}
.ws17{word-spacing:2.761633px;}
.ws23{word-spacing:2.821408px;}
.ws7{word-spacing:2.878214px;}
.ws1f{word-spacing:2.881184px;}
.ws97{word-spacing:2.940960px;}
.wscc{word-spacing:3.000735px;}
.wsb4{word-spacing:3.060511px;}
.ws74{word-spacing:3.203972px;}
.ws18{word-spacing:3.239838px;}
.wsd{word-spacing:3.299613px;}
.ws2e{word-spacing:3.359389px;}
.ws63{word-spacing:3.371344px;}
.ws96{word-spacing:3.383299px;}
.ws8e{word-spacing:3.419164px;}
.ws3a{word-spacing:3.478940px;}
.wsa7{word-spacing:3.658267px;}
.ws58{word-spacing:3.670222px;}
.ws9b{word-spacing:3.718042px;}
.ws95{word-spacing:3.777818px;}
.ws87{word-spacing:3.789773px;}
.ws35{word-spacing:3.801728px;}
.wsbe{word-spacing:3.837594px;}
.wsb1{word-spacing:3.897369px;}
.ws5d{word-spacing:3.909324px;}
.ws8d{word-spacing:3.921279px;}
.ws37{word-spacing:4.076696px;}
.ws7b{word-spacing:4.148427px;}
.ws19{word-spacing:4.196247px;}
.wsd5{word-spacing:4.256023px;}
.ws25{word-spacing:4.315798px;}
.ws72{word-spacing:4.375574px;}
.ws3e{word-spacing:4.387529px;}
.ws21{word-spacing:4.435350px;}
.wsbf{word-spacing:4.459260px;}
.ws2{word-spacing:4.483200px;}
.ws49{word-spacing:4.495125px;}
.ws27{word-spacing:4.614676px;}
.wsdf{word-spacing:4.626631px;}
.ws36{word-spacing:4.698362px;}
.ws6a{word-spacing:4.734228px;}
.ws1d{word-spacing:4.853779px;}
.wsa4{word-spacing:4.913554px;}
.ws16{word-spacing:4.973330px;}
.ws44{word-spacing:5.033106px;}
.wsdc{word-spacing:5.045061px;}
.ws46{word-spacing:5.092881px;}
.ws7c{word-spacing:5.152657px;}
.ws57{word-spacing:5.164612px;}
.ws7e{word-spacing:5.224387px;}
.ws12{word-spacing:5.379825px;}
.wsa2{word-spacing:5.391759px;}
.ws69{word-spacing:5.415669px;}
.ws1e{word-spacing:5.451535px;}
.ws6f{word-spacing:5.475445px;}
.ws4a{word-spacing:5.511310px;}
.ws20{word-spacing:5.630862px;}
.ws7a{word-spacing:5.657651px;}
.ws42{word-spacing:5.690637px;}
.ws2c{word-spacing:5.750413px;}
.ws45{word-spacing:5.774323px;}
.ws2d{word-spacing:5.810188px;}
.ws39{word-spacing:5.869964px;}
.ws15{word-spacing:5.929740px;}
.wsc9{word-spacing:6.049291px;}
.ws5f{word-spacing:6.061246px;}
.wsd0{word-spacing:6.101068px;}
.wscb{word-spacing:6.109066px;}
.ws26{word-spacing:6.121021px;}
.wsc7{word-spacing:6.180797px;}
.ws98{word-spacing:6.228618px;}
.ws4c{word-spacing:6.288393px;}
.ws64{word-spacing:6.348169px;}
.ws52{word-spacing:6.396912px;}
.ws66{word-spacing:6.407944px;}
.ws91{word-spacing:6.527496px;}
.ws7f{word-spacing:6.539451px;}
.ws28{word-spacing:6.587271px;}
.ws9{word-spacing:6.647047px;}
.ws80{word-spacing:6.659002px;}
.ws1a{word-spacing:6.706822px;}
.ws1c{word-spacing:6.886149px;}
.wsf{word-spacing:6.945925px;}
.ws3{word-spacing:7.182086px;}
.wsd1{word-spacing:7.244803px;}
.ws14{word-spacing:7.304578px;}
.ws78{word-spacing:7.364354px;}
.ws11{word-spacing:7.424130px;}
.ws67{word-spacing:7.483905px;}
.ws90{word-spacing:7.567591px;}
.ws8a{word-spacing:7.603456px;}
.wsa6{word-spacing:7.663232px;}
.ws82{word-spacing:7.675187px;}
.ws38{word-spacing:7.723008px;}
.ws8c{word-spacing:7.902334px;}
.wsa5{word-spacing:7.962110px;}
.ws92{word-spacing:8.021886px;}
.ws4e{word-spacing:8.081661px;}
.wsb7{word-spacing:8.141437px;}
.wsc3{word-spacing:8.260988px;}
.wsaa{word-spacing:8.440315px;}
.ws77{word-spacing:8.464225px;}
.wscd{word-spacing:8.500090px;}
.ws9e{word-spacing:8.559866px;}
.wsc8{word-spacing:8.631597px;}
.wsd7{word-spacing:8.739193px;}
.wsc5{word-spacing:8.798968px;}
.ws4b{word-spacing:8.810923px;}
.wse0{word-spacing:8.858744px;}
.wsdd{word-spacing:8.930475px;}
.wse{word-spacing:8.978295px;}
.ws10{word-spacing:9.097846px;}
.ws2a{word-spacing:9.109801px;}
.ws75{word-spacing:9.157622px;}
.ws6{word-spacing:9.172627px;}
.ws50{word-spacing:9.336949px;}
.wsb6{word-spacing:9.360859px;}
.ws5a{word-spacing:9.408679px;}
.ws9a{word-spacing:9.576051px;}
.wscf{word-spacing:9.647782px;}
.wsc6{word-spacing:9.815154px;}
.wse1{word-spacing:9.827109px;}
.ws13{word-spacing:10.114032px;}
.ws62{word-spacing:10.245538px;}
.ws5b{word-spacing:10.353134px;}
.wsd3{word-spacing:10.412910px;}
.ws2f{word-spacing:10.711788px;}
.ws61{word-spacing:10.783518px;}
.ws81{word-spacing:10.831339px;}
.ws8f{word-spacing:10.891114px;}
.ws48{word-spacing:10.903069px;}
.ws99{word-spacing:11.034576px;}
.wsd8{word-spacing:11.082396px;}
.ws6b{word-spacing:11.130217px;}
.ws4f{word-spacing:11.668197px;}
.ws9f{word-spacing:11.847524px;}
.ws5{word-spacing:11.916346px;}
.ws65{word-spacing:12.158357px;}
.wsa1{word-spacing:12.457235px;}
.ws51{word-spacing:12.505056px;}
.ws47{word-spacing:12.576786px;}
.ws56{word-spacing:12.756113px;}
.ws9d{word-spacing:12.803934px;}
.ws43{word-spacing:12.983260px;}
.wsbb{word-spacing:13.043036px;}
.wsca{word-spacing:13.114767px;}
.wsc2{word-spacing:13.282138px;}
.wsa0{word-spacing:13.951625px;}
.wsd2{word-spacing:14.178772px;}
.wsba{word-spacing:15.027586px;}
.ws89{word-spacing:16.043771px;}
.ws5c{word-spacing:16.163322px;}
.wsd9{word-spacing:19.845499px;}
.ws1{word-spacing:23.312640px;}
.wse2{word-spacing:23.910240px;}
.ws60{word-spacing:30.126902px;}
.ws0{word-spacing:31.091012px;}
.ws9c{word-spacing:31.322414px;}
.ws55{word-spacing:32.398375px;}
.wsce{word-spacing:34.550297px;}
.ws7d{word-spacing:35.267604px;}
.ws33{word-spacing:58.281600px;}
.ws8{word-spacing:69.937725px;}
._1c{margin-left:-23.886252px;}
._1b{margin-left:-22.648440px;}
._16{margin-left:-8.091257px;}
._3{margin-left:-6.559087px;}
._6{margin-left:-5.133098px;}
._f{margin-left:-3.985356px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.187882px;}
._7{width:1.295479px;}
._1{width:2.685602px;}
._20{width:4.482226px;}
._2d{width:6.212990px;}
._29{width:7.452392px;}
._24{width:14.294023px;}
._26{width:15.485236px;}
._17{width:17.282803px;}
._8{width:18.416986px;}
._1a{width:19.606250px;}
._13{width:20.929115px;}
._14{width:22.463696px;}
._23{width:23.472202px;}
._a{width:24.540706px;}
._b{width:25.763284px;}
._19{width:26.894746px;}
._c{width:27.910906px;}
._12{width:29.712376px;}
._5{width:31.561728px;}
._15{width:32.915537px;}
._18{width:34.311194px;}
._25{width:35.323080px;}
._1e{width:36.383731px;}
._e{width:38.368306px;}
._11{width:39.438745px;}
._21{width:40.742110px;}
._2{width:41.936714px;}
._2c{width:43.078598px;}
._d{width:44.301374px;}
._1f{width:47.242308px;}
._22{width:50.144124px;}
._9{width:51.803542px;}
._1d{width:55.117428px;}
._2b{width:56.647660px;}
._2a{width:59.062072px;}
._28{width:60.389142px;}
._27{width:80.697600px;}
._10{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5f{bottom:169.009500px;}
.y14{bottom:169.011000px;}
.y8a{bottom:213.841500px;}
.y95{bottom:214.203000px;}
.y13{bottom:215.448000px;}
.yfe{bottom:220.726500px;}
.ydc{bottom:222.018000px;}
.y6c{bottom:222.570000px;}
.yb8{bottom:222.928500px;}
.y111{bottom:223.392000px;}
.y5e{bottom:226.711500px;}
.y2c{bottom:230.890500px;}
.y4b{bottom:233.838000px;}
.y41{bottom:238.663500px;}
.y12f{bottom:239.065500px;}
.ya6{bottom:240.804000px;}
.y89{bottom:243.736500px;}
.y12{bottom:245.341500px;}
.y11e{bottom:245.853000px;}
.y79{bottom:246.078000px;}
.yc3{bottom:249.096000px;}
.yfd{bottom:250.621500px;}
.ydb{bottom:251.913000px;}
.y110{bottom:253.287000px;}
.y12e{bottom:253.321500px;}
.ya5{bottom:255.061500px;}
.y94{bottom:259.041000px;}
.yea{bottom:260.224500px;}
.y2b{bottom:260.784000px;}
.y40{bottom:260.796000px;}
.y4a{bottom:263.733000px;}
.y6b{bottom:267.408000px;}
.y78{bottom:268.212000px;}
.y5d{bottom:271.549500px;}
.y88{bottom:273.630000px;}
.y12d{bottom:275.871000px;}
.ya4{bottom:277.195500px;}
.yfc{bottom:280.515000px;}
.yda{bottom:281.806500px;}
.y10f{bottom:283.180500px;}
.y93{bottom:288.934500px;}
.y11{bottom:290.034000px;}
.ye9{bottom:290.119500px;}
.y3f{bottom:290.691000px;}
.y49{bottom:293.626500px;}
.y6a{bottom:297.301500px;}
.y77{bottom:298.105500px;}
.y87{bottom:303.523500px;}
.y2a{bottom:305.622000px;}
.y12c{bottom:305.764500px;}
.yfb{bottom:310.408500px;}
.yd9{bottom:311.700000px;}
.y10e{bottom:313.074000px;}
.y5c{bottom:316.387500px;}
.y92{bottom:318.828000px;}
.ye8{bottom:320.013000px;}
.y3e{bottom:320.584500px;}
.ya3{bottom:322.033500px;}
.y69{bottom:327.195000px;}
.y76{bottom:328.000500px;}
.y29{bottom:335.517000px;}
.y11d{bottom:335.529000px;}
.y12b{bottom:335.659500px;}
.y48{bottom:338.464500px;}
.yfa{bottom:340.303500px;}
.y5b{bottom:346.282500px;}
.y86{bottom:348.361500px;}
.y91{bottom:348.723000px;}
.ye7{bottom:349.906500px;}
.ya2{bottom:351.927000px;}
.yd8{bottom:356.538000px;}
.y68{bottom:357.090000px;}
.y10{bottom:357.394500px;}
.y75{bottom:357.894000px;}
.y10d{bottom:357.912000px;}
.y3d{bottom:365.422500px;}
.y12a{bottom:365.553000px;}
.y47{bottom:368.358000px;}
.ye6{bottom:379.801500px;}
.y28{bottom:380.355000px;}
.y11c{bottom:380.367000px;}
.ya1{bottom:381.820500px;}
.yf{bottom:384.798000px;}
.yf9{bottom:385.141500px;}
.yd7{bottom:386.433000px;}
.y74{bottom:387.787500px;}
.y10c{bottom:387.807000px;}
.y90{bottom:388.267500px;}
.y5a{bottom:391.120500px;}
.y3c{bottom:395.317500px;}
.y129{bottom:395.446500px;}
.y67{bottom:396.634500px;}
.yb7{bottom:396.771000px;}
.y85{bottom:397.969500px;}
.y46{bottom:398.253000px;}
.ye5{bottom:409.695000px;}
.y27{bottom:410.248500px;}
.ye{bottom:412.200000px;}
.yf8{bottom:415.035000px;}
.yd6{bottom:416.326500px;}
.y73{bottom:417.682500px;}
.y11b{bottom:425.205000px;}
.y3b{bottom:425.211000px;}
.y128{bottom:425.341500px;}
.ya0{bottom:426.658500px;}
.yb6{bottom:426.664500px;}
.y84{bottom:427.863000px;}
.y45{bottom:428.146500px;}
.y10b{bottom:432.645000px;}
.y59{bottom:435.958500px;}
.yd{bottom:439.603500px;}
.y26{bottom:440.143500px;}
.yf7{bottom:444.928500px;}
.yd5{bottom:446.221500px;}
.y72{bottom:447.576000px;}
.y8f{bottom:449.518500px;}
.y3a{bottom:455.104500px;}
.y127{bottom:455.235000px;}
.yb5{bottom:456.559500px;}
.y66{bottom:457.054500px;}
.ye4{bottom:460.500000px;}
.yc{bottom:467.007000px;}
.y25{bottom:470.037000px;}
.y11a{bottom:470.043000px;}
.y83{bottom:472.701000px;}
.yd4{bottom:476.115000px;}
.y9f{bottom:477.463500px;}
.y10a{bottom:477.483000px;}
.y44{bottom:481.353000px;}
.yf6{bottom:484.474500px;}
.y39{bottom:484.999500px;}
.y126{bottom:485.128500px;}
.y58{bottom:486.763500px;}
.ye3{bottom:490.393500px;}
.y71{bottom:492.414000px;}
.yb{bottom:494.409000px;}
.y24{bottom:499.930500px;}
.yb4{bottom:501.397500px;}
.y82{bottom:502.594500px;}
.yd3{bottom:506.008500px;}
.y9e{bottom:507.358500px;}
.y109{bottom:507.376500px;}
.y119{bottom:514.881000px;}
.y38{bottom:514.893000px;}
.y125{bottom:515.023500px;}
.y57{bottom:516.657000px;}
.ye2{bottom:520.288500px;}
.y70{bottom:522.307500px;}
.y23{bottom:529.825500px;}
.yb3{bottom:531.291000px;}
.y81{bottom:532.489500px;}
.ya{bottom:534.775500px;}
.y9d{bottom:537.252000px;}
.yf5{bottom:540.262500px;}
.y124{bottom:544.917000px;}
.y56{bottom:546.552000px;}
.ye1{bottom:550.182000px;}
.yd2{bottom:550.846500px;}
.y6f{bottom:552.202500px;}
.y108{bottom:552.214500px;}
.y37{bottom:559.585500px;}
.y118{bottom:559.719000px;}
.yb2{bottom:561.184500px;}
.y80{bottom:562.383000px;}
.yf4{bottom:570.156000px;}
.y22{bottom:574.663500px;}
.y123{bottom:574.810500px;}
.y55{bottom:576.445500px;}
.ye0{bottom:580.077000px;}
.yd1{bottom:580.741500px;}
.y9c{bottom:582.090000px;}
.y6e{bottom:582.096000px;}
.y9{bottom:584.595000px;}
.y107{bottom:597.052500px;}
.yf3{bottom:600.049500px;}
.y21{bottom:604.557000px;}
.y122{bottom:604.705500px;}
.yb1{bottom:606.022500px;}
.y54{bottom:606.339000px;}
.y7f{bottom:607.221000px;}
.yd0{bottom:610.635000px;}
.y9b{bottom:611.983500px;}
.y6d{bottom:611.991000px;}
.y36{bottom:626.946000px;}
.yf2{bottom:629.944500px;}
.ydf{bottom:630.882000px;}
.y20{bottom:634.450500px;}
.y121{bottom:634.599000px;}
.yb0{bottom:635.917500px;}
.y7e{bottom:637.116000px;}
.ycf{bottom:640.528500px;}
.y138{bottom:641.872500px;}
.y9a{bottom:641.878500px;}
.y106{bottom:641.890500px;}
.y8{bottom:644.377500px;}
.y53{bottom:651.177000px;}
.y65{bottom:656.829000px;}
.y35{bottom:656.841000px;}
.yf1{bottom:659.838000px;}
.yde{bottom:660.775500px;}
.y1f{bottom:664.345500px;}
.y120{bottom:664.494000px;}
.yaf{bottom:665.811000px;}
.y7d{bottom:667.009500px;}
.yce{bottom:670.423500px;}
.y137{bottom:671.766000px;}
.y99{bottom:671.772000px;}
.y105{bottom:671.784000px;}
.y7{bottom:679.254000px;}
.y52{bottom:681.072000px;}
.y64{bottom:686.722500px;}
.y34{bottom:686.734500px;}
.yf0{bottom:689.731500px;}
.y1e{bottom:694.239000px;}
.yae{bottom:695.706000px;}
.y43{bottom:696.634500px;}
.y7c{bottom:696.903000px;}
.y136{bottom:701.659500px;}
.y104{bottom:701.679000px;}
.y11f{bottom:709.186500px;}
.y51{bottom:710.965500px;}
.ydd{bottom:711.076500px;}
.yc2{bottom:712.440000px;}
.ycd{bottom:715.261500px;}
.y98{bottom:716.610000px;}
.y63{bottom:716.616000px;}
.y33{bottom:716.628000px;}
.yef{bottom:719.626500px;}
.y6{bottom:720.637500px;}
.y1d{bottom:724.132500px;}
.y135{bottom:731.554500px;}
.y103{bottom:731.572500px;}
.yad{bottom:740.544000px;}
.y7b{bottom:741.741000px;}
.yc1{bottom:742.333500px;}
.ycc{bottom:745.155000px;}
.y97{bottom:746.505000px;}
.y42{bottom:746.847000px;}
.y5{bottom:749.005500px;}
.y117{bottom:754.027500px;}
.y50{bottom:755.803500px;}
.y134{bottom:761.448000px;}
.y62{bottom:761.454000px;}
.y32{bottom:761.466000px;}
.y1c{bottom:768.825000px;}
.yee{bottom:770.431500px;}
.yac{bottom:770.437500px;}
.yc0{bottom:772.227000px;}
.ycb{bottom:775.048500px;}
.y96{bottom:776.398500px;}
.y102{bottom:776.410500px;}
.y4{bottom:790.390500px;}
.y133{bottom:791.343000px;}
.y61{bottom:791.349000px;}
.y116{bottom:798.865500px;}
.yed{bottom:800.325000px;}
.yab{bottom:800.331000px;}
.y4f{bottom:800.641500px;}
.ybf{bottom:802.122000px;}
.yca{bottom:804.943500px;}
.y8e{bottom:806.292000px;}
.y31{bottom:806.304000px;}
.y132{bottom:821.236500px;}
.y60{bottom:821.242500px;}
.y101{bottom:821.248500px;}
.y115{bottom:828.759000px;}
.yec{bottom:830.220000px;}
.y4e{bottom:830.535000px;}
.y3{bottom:833.703000px;}
.y1b{bottom:836.187000px;}
.yaa{bottom:845.169000px;}
.ybe{bottom:846.960000px;}
.yc9{bottom:849.781500px;}
.y131{bottom:851.130000px;}
.y7a{bottom:851.136000px;}
.y30{bottom:851.142000px;}
.y114{bottom:858.652500px;}
.yeb{bottom:860.113500px;}
.y4d{bottom:860.430000px;}
.y1a{bottom:866.080500px;}
.y100{bottom:866.086500px;}
.ya9{bottom:875.064000px;}
.ybd{bottom:876.853500px;}
.yc8{bottom:879.675000px;}
.y130{bottom:881.025000px;}
.y113{bottom:888.547500px;}
.y2{bottom:890.995500px;}
.y19{bottom:895.974000px;}
.y2f{bottom:895.980000px;}
.y4c{bottom:899.974500px;}
.ya8{bottom:904.957500px;}
.yc7{bottom:909.568500px;}
.y8d{bottom:910.918500px;}
.yff{bottom:910.924500px;}
.ybc{bottom:921.691500px;}
.y18{bottom:925.869000px;}
.y112{bottom:933.240000px;}
.yc6{bottom:939.463500px;}
.y8c{bottom:940.812000px;}
.y2e{bottom:940.818000px;}
.y1{bottom:945.801000px;}
.ya7{bottom:949.795500px;}
.ybb{bottom:951.586500px;}
.y17{bottom:955.762500px;}
.yc5{bottom:969.357000px;}
.y8b{bottom:970.707000px;}
.yba{bottom:981.480000px;}
.y2d{bottom:985.656000px;}
.y16{bottom:1000.600500px;}
.yc4{bottom:1014.049500px;}
.yb9{bottom:1021.024500px;}
.y15{bottom:1030.494000px;}
.ha{height:24.209280px;}
.h3{height:35.865450px;}
.h5{height:37.658880px;}
.h6{height:37.927872px;}
.hd{height:41.484266px;}
.h8{height:44.831700px;}
.hc{height:49.892047px;}
.h9{height:49.898047px;}
.hb{height:50.211840px;}
.h4{height:50.498765px;}
.h7{height:60.254040px;}
.h2{height:61.893450px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:138.369000px;}
.x1a{left:145.173000px;}
.x1{left:151.650000px;}
.xf{left:154.339500px;}
.x13{left:155.965500px;}
.xe{left:160.119000px;}
.x4{left:161.127000px;}
.x6{left:168.063000px;}
.xc{left:175.062000px;}
.x19{left:191.874000px;}
.xb{left:195.796500px;}
.x8{left:244.660500px;}
.x5{left:279.859500px;}
.x17{left:291.316500px;}
.x10{left:307.090500px;}
.x11{left:320.685000px;}
.x14{left:322.843500px;}
.x12{left:325.126500px;}
.x16{left:326.371500px;}
.x18{left:334.446000px;}
.x3{left:374.190000px;}
.x9{left:392.302500px;}
.x2{left:409.671000px;}
.xa{left:428.559000px;}
.x15{left:451.528500px;}
.xd{left:455.263500px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.v4{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:23.136000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.653258pt;}
.ls3{letter-spacing:2.656473pt;}
.ls5{letter-spacing:2.658245pt;}
.ls6{letter-spacing:12.645860pt;}
.lsa{letter-spacing:17.693578pt;}
.ls9{letter-spacing:17.746711pt;}
.ls8{letter-spacing:18.543719pt;}
.lsb{letter-spacing:20.775342pt;}
.ls7{letter-spacing:21.666245pt;}
.ls2{letter-spacing:26.566933pt;}
.ws3c{word-spacing:-16.970957pt;}
.ws68{word-spacing:-14.760588pt;}
.ws29{word-spacing:-13.581016pt;}
.ws6c{word-spacing:-3.421821pt;}
.ws6d{word-spacing:-2.964870pt;}
.ws40{word-spacing:-2.571679pt;}
.wsc0{word-spacing:-2.433531pt;}
.wsb9{word-spacing:-2.412278pt;}
.ws41{word-spacing:-2.220996pt;}
.wsa9{word-spacing:-2.114728pt;}
.wsae{word-spacing:-1.987207pt;}
.ws86{word-spacing:-1.902192pt;}
.wsaf{word-spacing:-1.689657pt;}
.wsd4{word-spacing:-1.530255pt;}
.wsc4{word-spacing:-1.477121pt;}
.ws3d{word-spacing:-1.317720pt;}
.ws22{word-spacing:-1.264586pt;}
.wsda{word-spacing:-1.211452pt;}
.ws79{word-spacing:-1.158318pt;}
.ws24{word-spacing:-0.945783pt;}
.ws93{word-spacing:-0.871395pt;}
.wsa8{word-spacing:-0.839515pt;}
.ws76{word-spacing:-0.786381pt;}
.ws94{word-spacing:-0.733247pt;}
.wsb2{word-spacing:-0.711994pt;}
.ws5e{word-spacing:-0.680113pt;}
.wsb3{word-spacing:-0.626980pt;}
.ws83{word-spacing:-0.361310pt;}
.ws34{word-spacing:-0.201909pt;}
.ws3b{word-spacing:-0.095641pt;}
.wsd6{word-spacing:-0.053134pt;}
.ws2b{word-spacing:-0.042507pt;}
.wsb{word-spacing:0.000000pt;}
.wsad{word-spacing:0.010627pt;}
.ws84{word-spacing:0.116895pt;}
.ws53{word-spacing:0.435698pt;}
.wsb8{word-spacing:0.488832pt;}
.ws8b{word-spacing:0.510085pt;}
.ws71{word-spacing:0.595099pt;}
.wsc{word-spacing:0.701367pt;}
.ws70{word-spacing:0.722621pt;}
.ws1b{word-spacing:0.754501pt;}
.wsa{word-spacing:0.807635pt;}
.ws4d{word-spacing:1.020170pt;}
.ws6e{word-spacing:1.126438pt;}
.ws59{word-spacing:1.137065pt;}
.wsbc{word-spacing:1.179572pt;}
.wsac{word-spacing:1.232706pt;}
.ws3f{word-spacing:1.285840pt;}
.ws73{word-spacing:1.392107pt;}
.wsab{word-spacing:1.413361pt;}
.wsde{word-spacing:1.498375pt;}
.wsb5{word-spacing:1.604643pt;}
.ws30{word-spacing:1.710911pt;}
.ws4{word-spacing:1.793280pt;}
.ws32{word-spacing:1.817178pt;}
.wsdb{word-spacing:1.923446pt;}
.ws31{word-spacing:1.976580pt;}
.wsb0{word-spacing:2.029714pt;}
.wsc1{word-spacing:2.082848pt;}
.ws54{word-spacing:2.135981pt;}
.ws85{word-spacing:2.189115pt;}
.ws88{word-spacing:2.295383pt;}
.wsa3{word-spacing:2.348517pt;}
.wsbd{word-spacing:2.401651pt;}
.ws17{word-spacing:2.454785pt;}
.ws23{word-spacing:2.507919pt;}
.ws7{word-spacing:2.558413pt;}
.ws1f{word-spacing:2.561052pt;}
.ws97{word-spacing:2.614186pt;}
.wscc{word-spacing:2.667320pt;}
.wsb4{word-spacing:2.720454pt;}
.ws74{word-spacing:2.847975pt;}
.ws18{word-spacing:2.879856pt;}
.wsd{word-spacing:2.932989pt;}
.ws2e{word-spacing:2.986123pt;}
.ws63{word-spacing:2.996750pt;}
.ws96{word-spacing:3.007377pt;}
.ws8e{word-spacing:3.039257pt;}
.ws3a{word-spacing:3.092391pt;}
.wsa7{word-spacing:3.251793pt;}
.ws58{word-spacing:3.262419pt;}
.ws9b{word-spacing:3.304927pt;}
.ws95{word-spacing:3.358060pt;}
.ws87{word-spacing:3.368687pt;}
.ws35{word-spacing:3.379314pt;}
.wsbe{word-spacing:3.411194pt;}
.wsb1{word-spacing:3.464328pt;}
.ws5d{word-spacing:3.474955pt;}
.ws8d{word-spacing:3.485582pt;}
.ws37{word-spacing:3.623730pt;}
.ws7b{word-spacing:3.687490pt;}
.ws19{word-spacing:3.729997pt;}
.wsd5{word-spacing:3.783131pt;}
.ws25{word-spacing:3.836265pt;}
.ws72{word-spacing:3.889399pt;}
.ws3e{word-spacing:3.900026pt;}
.ws21{word-spacing:3.942533pt;}
.wsbf{word-spacing:3.963786pt;}
.ws2{word-spacing:3.985067pt;}
.ws49{word-spacing:3.995667pt;}
.ws27{word-spacing:4.101935pt;}
.wsdf{word-spacing:4.112561pt;}
.ws36{word-spacing:4.176322pt;}
.ws6a{word-spacing:4.208202pt;}
.ws1d{word-spacing:4.314470pt;}
.wsa4{word-spacing:4.367604pt;}
.ws16{word-spacing:4.420738pt;}
.ws44{word-spacing:4.473872pt;}
.wsdc{word-spacing:4.484498pt;}
.ws46{word-spacing:4.527005pt;}
.ws7c{word-spacing:4.580139pt;}
.ws57{word-spacing:4.590766pt;}
.ws7e{word-spacing:4.643900pt;}
.ws12{word-spacing:4.782067pt;}
.wsa2{word-spacing:4.792675pt;}
.ws69{word-spacing:4.813928pt;}
.ws1e{word-spacing:4.845809pt;}
.ws6f{word-spacing:4.867062pt;}
.ws4a{word-spacing:4.898943pt;}
.ws20{word-spacing:5.005210pt;}
.ws7a{word-spacing:5.029023pt;}
.ws42{word-spacing:5.058344pt;}
.ws2c{word-spacing:5.111478pt;}
.ws45{word-spacing:5.132732pt;}
.ws2d{word-spacing:5.164612pt;}
.ws39{word-spacing:5.217746pt;}
.ws15{word-spacing:5.270880pt;}
.wsc9{word-spacing:5.377147pt;}
.ws5f{word-spacing:5.387774pt;}
.wsd0{word-spacing:5.423171pt;}
.wscb{word-spacing:5.430281pt;}
.ws26{word-spacing:5.440908pt;}
.wsc7{word-spacing:5.494042pt;}
.ws98{word-spacing:5.536549pt;}
.ws4c{word-spacing:5.589683pt;}
.ws64{word-spacing:5.642817pt;}
.ws52{word-spacing:5.686144pt;}
.ws66{word-spacing:5.695951pt;}
.ws91{word-spacing:5.802218pt;}
.ws7f{word-spacing:5.812845pt;}
.ws28{word-spacing:5.855352pt;}
.ws9{word-spacing:5.908486pt;}
.ws80{word-spacing:5.919113pt;}
.ws1a{word-spacing:5.961620pt;}
.ws1c{word-spacing:6.121021pt;}
.wsf{word-spacing:6.174155pt;}
.ws3{word-spacing:6.384077pt;}
.wsd1{word-spacing:6.439825pt;}
.ws14{word-spacing:6.492959pt;}
.ws78{word-spacing:6.546092pt;}
.ws11{word-spacing:6.599226pt;}
.ws67{word-spacing:6.652360pt;}
.ws90{word-spacing:6.726748pt;}
.ws8a{word-spacing:6.758628pt;}
.wsa6{word-spacing:6.811762pt;}
.ws82{word-spacing:6.822388pt;}
.ws38{word-spacing:6.864896pt;}
.ws8c{word-spacing:7.024297pt;}
.wsa5{word-spacing:7.077431pt;}
.ws92{word-spacing:7.130565pt;}
.ws4e{word-spacing:7.183699pt;}
.wsb7{word-spacing:7.236833pt;}
.wsc3{word-spacing:7.343100pt;}
.wsaa{word-spacing:7.502502pt;}
.ws77{word-spacing:7.523756pt;}
.wscd{word-spacing:7.555636pt;}
.ws9e{word-spacing:7.608770pt;}
.wsc8{word-spacing:7.672530pt;}
.wsd7{word-spacing:7.768171pt;}
.wsc5{word-spacing:7.821305pt;}
.ws4b{word-spacing:7.831932pt;}
.wse0{word-spacing:7.874439pt;}
.wsdd{word-spacing:7.938200pt;}
.wse{word-spacing:7.980707pt;}
.ws10{word-spacing:8.086975pt;}
.ws2a{word-spacing:8.097601pt;}
.ws75{word-spacing:8.140108pt;}
.ws6{word-spacing:8.153446pt;}
.ws50{word-spacing:8.299510pt;}
.wsb6{word-spacing:8.320764pt;}
.ws5a{word-spacing:8.363271pt;}
.ws9a{word-spacing:8.512045pt;}
.wscf{word-spacing:8.575806pt;}
.wsc6{word-spacing:8.724581pt;}
.wse1{word-spacing:8.735208pt;}
.ws13{word-spacing:8.990250pt;}
.ws62{word-spacing:9.107145pt;}
.ws5b{word-spacing:9.202786pt;}
.wsd3{word-spacing:9.255920pt;}
.ws2f{word-spacing:9.521589pt;}
.ws61{word-spacing:9.585350pt;}
.ws81{word-spacing:9.627857pt;}
.ws8f{word-spacing:9.680991pt;}
.ws48{word-spacing:9.691617pt;}
.ws99{word-spacing:9.808512pt;}
.wsd8{word-spacing:9.851019pt;}
.ws6b{word-spacing:9.893526pt;}
.ws4f{word-spacing:10.371731pt;}
.ws9f{word-spacing:10.531132pt;}
.ws5{word-spacing:10.592307pt;}
.ws65{word-spacing:10.807428pt;}
.wsa1{word-spacing:11.073098pt;}
.ws51{word-spacing:11.115605pt;}
.ws47{word-spacing:11.179366pt;}
.ws56{word-spacing:11.338767pt;}
.ws9d{word-spacing:11.381274pt;}
.ws43{word-spacing:11.540676pt;}
.wsbb{word-spacing:11.593810pt;}
.wsca{word-spacing:11.657570pt;}
.wsc2{word-spacing:11.806345pt;}
.wsa0{word-spacing:12.401444pt;}
.wsd2{word-spacing:12.603353pt;}
.wsba{word-spacing:13.357854pt;}
.ws89{word-spacing:14.261130pt;}
.ws5c{word-spacing:14.367398pt;}
.wsd9{word-spacing:17.640444pt;}
.ws1{word-spacing:20.722347pt;}
.wse2{word-spacing:21.253547pt;}
.ws60{word-spacing:26.779469pt;}
.ws0{word-spacing:27.636455pt;}
.ws9c{word-spacing:27.842146pt;}
.ws55{word-spacing:28.798556pt;}
.wsce{word-spacing:30.711375pt;}
.ws7d{word-spacing:31.348981pt;}
.ws33{word-spacing:51.805867pt;}
.ws8{word-spacing:62.166867pt;}
._1c{margin-left:-21.232224pt;}
._1b{margin-left:-20.131947pt;}
._16{margin-left:-7.192228pt;}
._3{margin-left:-5.830300pt;}
._6{margin-left:-4.562754pt;}
._f{margin-left:-3.542539pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-1.055895pt;}
._7{width:1.151537pt;}
._1{width:2.387202pt;}
._20{width:3.984201pt;}
._2d{width:5.522658pt;}
._29{width:6.624349pt;}
._24{width:12.705798pt;}
._26{width:13.764654pt;}
._17{width:15.362492pt;}
._8{width:16.370654pt;}
._1a{width:17.427778pt;}
._13{width:18.603658pt;}
._14{width:19.967730pt;}
._23{width:20.864179pt;}
._a{width:21.813961pt;}
._b{width:22.900697pt;}
._19{width:23.906441pt;}
._c{width:24.809694pt;}
._12{width:26.411001pt;}
._5{width:28.054869pt;}
._15{width:29.258255pt;}
._18{width:30.498839pt;}
._25{width:31.398293pt;}
._1e{width:32.341094pt;}
._e{width:34.105161pt;}
._11{width:35.056662pt;}
._21{width:36.215209pt;}
._2{width:37.277079pt;}
._2c{width:38.292087pt;}
._d{width:39.378999pt;}
._1f{width:41.993163pt;}
._22{width:44.572555pt;}
._9{width:46.047593pt;}
._1d{width:48.993269pt;}
._2b{width:50.353475pt;}
._2a{width:52.499619pt;}
._28{width:53.679237pt;}
._27{width:71.731200pt;}
._10{width:86.077200pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:150.230667pt;}
.y14{bottom:150.232000pt;}
.y8a{bottom:190.081333pt;}
.y95{bottom:190.402667pt;}
.y13{bottom:191.509333pt;}
.yfe{bottom:196.201333pt;}
.ydc{bottom:197.349333pt;}
.y6c{bottom:197.840000pt;}
.yb8{bottom:198.158667pt;}
.y111{bottom:198.570667pt;}
.y5e{bottom:201.521333pt;}
.y2c{bottom:205.236000pt;}
.y4b{bottom:207.856000pt;}
.y41{bottom:212.145333pt;}
.y12f{bottom:212.502667pt;}
.ya6{bottom:214.048000pt;}
.y89{bottom:216.654667pt;}
.y12{bottom:218.081333pt;}
.y11e{bottom:218.536000pt;}
.y79{bottom:218.736000pt;}
.yc3{bottom:221.418667pt;}
.yfd{bottom:222.774667pt;}
.ydb{bottom:223.922667pt;}
.y110{bottom:225.144000pt;}
.y12e{bottom:225.174667pt;}
.ya5{bottom:226.721333pt;}
.y94{bottom:230.258667pt;}
.yea{bottom:231.310667pt;}
.y2b{bottom:231.808000pt;}
.y40{bottom:231.818667pt;}
.y4a{bottom:234.429333pt;}
.y6b{bottom:237.696000pt;}
.y78{bottom:238.410667pt;}
.y5d{bottom:241.377333pt;}
.y88{bottom:243.226667pt;}
.y12d{bottom:245.218667pt;}
.ya4{bottom:246.396000pt;}
.yfc{bottom:249.346667pt;}
.yda{bottom:250.494667pt;}
.y10f{bottom:251.716000pt;}
.y93{bottom:256.830667pt;}
.y11{bottom:257.808000pt;}
.ye9{bottom:257.884000pt;}
.y3f{bottom:258.392000pt;}
.y49{bottom:261.001333pt;}
.y6a{bottom:264.268000pt;}
.y77{bottom:264.982667pt;}
.y87{bottom:269.798667pt;}
.y2a{bottom:271.664000pt;}
.y12c{bottom:271.790667pt;}
.yfb{bottom:275.918667pt;}
.yd9{bottom:277.066667pt;}
.y10e{bottom:278.288000pt;}
.y5c{bottom:281.233333pt;}
.y92{bottom:283.402667pt;}
.ye8{bottom:284.456000pt;}
.y3e{bottom:284.964000pt;}
.ya3{bottom:286.252000pt;}
.y69{bottom:290.840000pt;}
.y76{bottom:291.556000pt;}
.y29{bottom:298.237333pt;}
.y11d{bottom:298.248000pt;}
.y12b{bottom:298.364000pt;}
.y48{bottom:300.857333pt;}
.yfa{bottom:302.492000pt;}
.y5b{bottom:307.806667pt;}
.y86{bottom:309.654667pt;}
.y91{bottom:309.976000pt;}
.ye7{bottom:311.028000pt;}
.ya2{bottom:312.824000pt;}
.yd8{bottom:316.922667pt;}
.y68{bottom:317.413333pt;}
.y10{bottom:317.684000pt;}
.y75{bottom:318.128000pt;}
.y10d{bottom:318.144000pt;}
.y3d{bottom:324.820000pt;}
.y12a{bottom:324.936000pt;}
.y47{bottom:327.429333pt;}
.ye6{bottom:337.601333pt;}
.y28{bottom:338.093333pt;}
.y11c{bottom:338.104000pt;}
.ya1{bottom:339.396000pt;}
.yf{bottom:342.042667pt;}
.yf9{bottom:342.348000pt;}
.yd7{bottom:343.496000pt;}
.y74{bottom:344.700000pt;}
.y10c{bottom:344.717333pt;}
.y90{bottom:345.126667pt;}
.y5a{bottom:347.662667pt;}
.y3c{bottom:351.393333pt;}
.y129{bottom:351.508000pt;}
.y67{bottom:352.564000pt;}
.yb7{bottom:352.685333pt;}
.y85{bottom:353.750667pt;}
.y46{bottom:354.002667pt;}
.ye5{bottom:364.173333pt;}
.y27{bottom:364.665333pt;}
.ye{bottom:366.400000pt;}
.yf8{bottom:368.920000pt;}
.yd6{bottom:370.068000pt;}
.y73{bottom:371.273333pt;}
.y11b{bottom:377.960000pt;}
.y3b{bottom:377.965333pt;}
.y128{bottom:378.081333pt;}
.ya0{bottom:379.252000pt;}
.yb6{bottom:379.257333pt;}
.y84{bottom:380.322667pt;}
.y45{bottom:380.574667pt;}
.y10b{bottom:384.573333pt;}
.y59{bottom:387.518667pt;}
.yd{bottom:390.758667pt;}
.y26{bottom:391.238667pt;}
.yf7{bottom:395.492000pt;}
.yd5{bottom:396.641333pt;}
.y72{bottom:397.845333pt;}
.y8f{bottom:399.572000pt;}
.y3a{bottom:404.537333pt;}
.y127{bottom:404.653333pt;}
.yb5{bottom:405.830667pt;}
.y66{bottom:406.270667pt;}
.ye4{bottom:409.333333pt;}
.yc{bottom:415.117333pt;}
.y25{bottom:417.810667pt;}
.y11a{bottom:417.816000pt;}
.y83{bottom:420.178667pt;}
.yd4{bottom:423.213333pt;}
.y9f{bottom:424.412000pt;}
.y10a{bottom:424.429333pt;}
.y44{bottom:427.869333pt;}
.yf6{bottom:430.644000pt;}
.y39{bottom:431.110667pt;}
.y126{bottom:431.225333pt;}
.y58{bottom:432.678667pt;}
.ye3{bottom:435.905333pt;}
.y71{bottom:437.701333pt;}
.yb{bottom:439.474667pt;}
.y24{bottom:444.382667pt;}
.yb4{bottom:445.686667pt;}
.y82{bottom:446.750667pt;}
.yd3{bottom:449.785333pt;}
.y9e{bottom:450.985333pt;}
.y109{bottom:451.001333pt;}
.y119{bottom:457.672000pt;}
.y38{bottom:457.682667pt;}
.y125{bottom:457.798667pt;}
.y57{bottom:459.250667pt;}
.ye2{bottom:462.478667pt;}
.y70{bottom:464.273333pt;}
.y23{bottom:470.956000pt;}
.yb3{bottom:472.258667pt;}
.y81{bottom:473.324000pt;}
.ya{bottom:475.356000pt;}
.y9d{bottom:477.557333pt;}
.yf5{bottom:480.233333pt;}
.y124{bottom:484.370667pt;}
.y56{bottom:485.824000pt;}
.ye1{bottom:489.050667pt;}
.yd2{bottom:489.641333pt;}
.y6f{bottom:490.846667pt;}
.y108{bottom:490.857333pt;}
.y37{bottom:497.409333pt;}
.y118{bottom:497.528000pt;}
.yb2{bottom:498.830667pt;}
.y80{bottom:499.896000pt;}
.yf4{bottom:506.805333pt;}
.y22{bottom:510.812000pt;}
.y123{bottom:510.942667pt;}
.y55{bottom:512.396000pt;}
.ye0{bottom:515.624000pt;}
.yd1{bottom:516.214667pt;}
.y9c{bottom:517.413333pt;}
.y6e{bottom:517.418667pt;}
.y9{bottom:519.640000pt;}
.y107{bottom:530.713333pt;}
.yf3{bottom:533.377333pt;}
.y21{bottom:537.384000pt;}
.y122{bottom:537.516000pt;}
.yb1{bottom:538.686667pt;}
.y54{bottom:538.968000pt;}
.y7f{bottom:539.752000pt;}
.yd0{bottom:542.786667pt;}
.y9b{bottom:543.985333pt;}
.y6d{bottom:543.992000pt;}
.y36{bottom:557.285333pt;}
.yf2{bottom:559.950667pt;}
.ydf{bottom:560.784000pt;}
.y20{bottom:563.956000pt;}
.y121{bottom:564.088000pt;}
.yb0{bottom:565.260000pt;}
.y7e{bottom:566.325333pt;}
.ycf{bottom:569.358667pt;}
.y138{bottom:570.553333pt;}
.y9a{bottom:570.558667pt;}
.y106{bottom:570.569333pt;}
.y8{bottom:572.780000pt;}
.y53{bottom:578.824000pt;}
.y65{bottom:583.848000pt;}
.y35{bottom:583.858667pt;}
.yf1{bottom:586.522667pt;}
.yde{bottom:587.356000pt;}
.y1f{bottom:590.529333pt;}
.y120{bottom:590.661333pt;}
.yaf{bottom:591.832000pt;}
.y7d{bottom:592.897333pt;}
.yce{bottom:595.932000pt;}
.y137{bottom:597.125333pt;}
.y99{bottom:597.130667pt;}
.y105{bottom:597.141333pt;}
.y7{bottom:603.781333pt;}
.y52{bottom:605.397333pt;}
.y64{bottom:610.420000pt;}
.y34{bottom:610.430667pt;}
.yf0{bottom:613.094667pt;}
.y1e{bottom:617.101333pt;}
.yae{bottom:618.405333pt;}
.y43{bottom:619.230667pt;}
.y7c{bottom:619.469333pt;}
.y136{bottom:623.697333pt;}
.y104{bottom:623.714667pt;}
.y11f{bottom:630.388000pt;}
.y51{bottom:631.969333pt;}
.ydd{bottom:632.068000pt;}
.yc2{bottom:633.280000pt;}
.ycd{bottom:635.788000pt;}
.y98{bottom:636.986667pt;}
.y63{bottom:636.992000pt;}
.y33{bottom:637.002667pt;}
.yef{bottom:639.668000pt;}
.y6{bottom:640.566667pt;}
.y1d{bottom:643.673333pt;}
.y135{bottom:650.270667pt;}
.y103{bottom:650.286667pt;}
.yad{bottom:658.261333pt;}
.y7b{bottom:659.325333pt;}
.yc1{bottom:659.852000pt;}
.ycc{bottom:662.360000pt;}
.y97{bottom:663.560000pt;}
.y42{bottom:663.864000pt;}
.y5{bottom:665.782667pt;}
.y117{bottom:670.246667pt;}
.y50{bottom:671.825333pt;}
.y134{bottom:676.842667pt;}
.y62{bottom:676.848000pt;}
.y32{bottom:676.858667pt;}
.y1c{bottom:683.400000pt;}
.yee{bottom:684.828000pt;}
.yac{bottom:684.833333pt;}
.yc0{bottom:686.424000pt;}
.ycb{bottom:688.932000pt;}
.y96{bottom:690.132000pt;}
.y102{bottom:690.142667pt;}
.y4{bottom:702.569333pt;}
.y133{bottom:703.416000pt;}
.y61{bottom:703.421333pt;}
.y116{bottom:710.102667pt;}
.yed{bottom:711.400000pt;}
.yab{bottom:711.405333pt;}
.y4f{bottom:711.681333pt;}
.ybf{bottom:712.997333pt;}
.yca{bottom:715.505333pt;}
.y8e{bottom:716.704000pt;}
.y31{bottom:716.714667pt;}
.y132{bottom:729.988000pt;}
.y60{bottom:729.993333pt;}
.y101{bottom:729.998667pt;}
.y115{bottom:736.674667pt;}
.yec{bottom:737.973333pt;}
.y4e{bottom:738.253333pt;}
.y3{bottom:741.069333pt;}
.y1b{bottom:743.277333pt;}
.yaa{bottom:751.261333pt;}
.ybe{bottom:752.853333pt;}
.yc9{bottom:755.361333pt;}
.y131{bottom:756.560000pt;}
.y7a{bottom:756.565333pt;}
.y30{bottom:756.570667pt;}
.y114{bottom:763.246667pt;}
.yeb{bottom:764.545333pt;}
.y4d{bottom:764.826667pt;}
.y1a{bottom:769.849333pt;}
.y100{bottom:769.854667pt;}
.ya9{bottom:777.834667pt;}
.ybd{bottom:779.425333pt;}
.yc8{bottom:781.933333pt;}
.y130{bottom:783.133333pt;}
.y113{bottom:789.820000pt;}
.y2{bottom:791.996000pt;}
.y19{bottom:796.421333pt;}
.y2f{bottom:796.426667pt;}
.y4c{bottom:799.977333pt;}
.ya8{bottom:804.406667pt;}
.yc7{bottom:808.505333pt;}
.y8d{bottom:809.705333pt;}
.yff{bottom:809.710667pt;}
.ybc{bottom:819.281333pt;}
.y18{bottom:822.994667pt;}
.y112{bottom:829.546667pt;}
.yc6{bottom:835.078667pt;}
.y8c{bottom:836.277333pt;}
.y2e{bottom:836.282667pt;}
.y1{bottom:840.712000pt;}
.ya7{bottom:844.262667pt;}
.ybb{bottom:845.854667pt;}
.y17{bottom:849.566667pt;}
.yc5{bottom:861.650667pt;}
.y8b{bottom:862.850667pt;}
.yba{bottom:872.426667pt;}
.y2d{bottom:876.138667pt;}
.y16{bottom:889.422667pt;}
.yc4{bottom:901.377333pt;}
.yb9{bottom:907.577333pt;}
.y15{bottom:915.994667pt;}
.ha{height:21.519360pt;}
.h3{height:31.880400pt;}
.h5{height:33.474560pt;}
.h6{height:33.713664pt;}
.hd{height:36.874903pt;}
.h8{height:39.850400pt;}
.hc{height:44.348486pt;}
.h9{height:44.353820pt;}
.hb{height:44.632747pt;}
.h4{height:44.887791pt;}
.h7{height:53.559147pt;}
.h2{height:55.016400pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:122.994667pt;}
.x1a{left:129.042667pt;}
.x1{left:134.800000pt;}
.xf{left:137.190667pt;}
.x13{left:138.636000pt;}
.xe{left:142.328000pt;}
.x4{left:143.224000pt;}
.x6{left:149.389333pt;}
.xc{left:155.610667pt;}
.x19{left:170.554667pt;}
.xb{left:174.041333pt;}
.x8{left:217.476000pt;}
.x5{left:248.764000pt;}
.x17{left:258.948000pt;}
.x10{left:272.969333pt;}
.x11{left:285.053333pt;}
.x14{left:286.972000pt;}
.x12{left:289.001333pt;}
.x16{left:290.108000pt;}
.x18{left:297.285333pt;}
.x3{left:332.613333pt;}
.x9{left:348.713333pt;}
.x2{left:364.152000pt;}
.xa{left:380.941333pt;}
.x15{left:401.358667pt;}
.xd{left:404.678667pt;}
}




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