
    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_1c2cd8629b60435e15d14155.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f998cd1a7d765ec5063f621e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_80cd2daa3d12ed7ee8fe260f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3f63e0ffd40c08f2764f385f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_dbd28939ef8b04df44292ca9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_14022204097413da994087ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3491b14e706d11fa0a6f6b7b.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.230469;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_810c2149b48d34bdfb740825.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a9d5570145d502ced934c811.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ddbc1ae34891076fe3bbbc56.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a9d5570145d502ced934c811.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fbb94b35ff594931e6716c4a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a9d5570145d502ced934c811.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1c{vertical-align:-71.280000px;}
.v15{vertical-align:-69.840000px;}
.v14{vertical-align:-31.680000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-12.240000px;}
.v11{vertical-align:-10.080000px;}
.v1b{vertical-align:-8.640000px;}
.v10{vertical-align:-5.760000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.160000px;}
.v12{vertical-align:10.080000px;}
.v5{vertical-align:12.240000px;}
.v18{vertical-align:20.880000px;}
.v1a{vertical-align:22.320000px;}
.v16{vertical-align:24.480000px;}
.ve{vertical-align:25.920000px;}
.v1{vertical-align:27.360000px;}
.vf{vertical-align:29.520000px;}
.v19{vertical-align:35.280000px;}
.vb{vertical-align:40.320000px;}
.v13{vertical-align:41.760000px;}
.va{vertical-align:46.800000px;}
.v9{vertical-align:48.960000px;}
.v6{vertical-align:51.120000px;}
.v8{vertical-align:58.320000px;}
.v17{vertical-align:67.680000px;}
.vd{vertical-align:82.080000px;}
.ls8{letter-spacing:-0.460200px;}
.lsf{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.331200px;}
.ls36{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.076200px;}
.ls7{letter-spacing:-0.053400px;}
.ls2e{letter-spacing:-0.053280px;}
.ls3a{letter-spacing:-0.044640px;}
.ls38{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.012960px;}
.ls9{letter-spacing:0.053400px;}
.ls30{letter-spacing:0.093000px;}
.lsa{letter-spacing:0.106800px;}
.ls3f{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.206400px;}
.lse{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls35{letter-spacing:0.301200px;}
.ls3e{letter-spacing:0.336000px;}
.ls3b{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.378000px;}
.ls2a{letter-spacing:0.399600px;}
.ls1e{letter-spacing:0.555840px;}
.ls33{letter-spacing:0.612000px;}
.ls2f{letter-spacing:0.666000px;}
.ls37{letter-spacing:0.774000px;}
.ls40{letter-spacing:0.828000px;}
.ls28{letter-spacing:0.866160px;}
.ls31{letter-spacing:0.900000px;}
.ls32{letter-spacing:1.080000px;}
.ls3c{letter-spacing:1.119600px;}
.ls14{letter-spacing:1.692000px;}
.ls12{letter-spacing:1.828800px;}
.ls1f{letter-spacing:2.207520px;}
.ls2b{letter-spacing:2.460960px;}
.ls1a{letter-spacing:3.180960px;}
.ls2c{letter-spacing:3.342240px;}
.ls29{letter-spacing:4.062240px;}
.ls27{letter-spacing:4.174560px;}
.ls25{letter-spacing:8.310240px;}
.ls24{letter-spacing:10.044720px;}
.ls1b{letter-spacing:10.190160px;}
.ls23{letter-spacing:12.503520px;}
.ls1d{letter-spacing:13.679280px;}
.ls22{letter-spacing:14.166720px;}
.ls18{letter-spacing:16.559280px;}
.ls16{letter-spacing:17.279280px;}
.ls15{letter-spacing:19.740960px;}
.ls1{letter-spacing:23.940000px;}
.ls3d{letter-spacing:55.044000px;}
.ls1c{letter-spacing:56.207520px;}
.ls2d{letter-spacing:59.706720px;}
.ls11{letter-spacing:60.426720px;}
.ls26{letter-spacing:68.037840px;}
.ls21{letter-spacing:73.077840px;}
.ls17{letter-spacing:91.010160px;}
.ls19{letter-spacing:91.730160px;}
.ls3{letter-spacing:521.375400px;}
.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;}
}
.ws17{word-spacing:-16.020000px;}
.ws20{word-spacing:-15.606000px;}
.ws18{word-spacing:-15.552000px;}
.ws2{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.146400px;}
.ws21{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993400px;}
.ws8{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.886600px;}
.ws1d{word-spacing:-14.733600px;}
.ws2c{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.479800px;}
.wsc{word-spacing:-13.878000px;}
.ws2d{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.716000px;}
.ws2e{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.ws15{word-spacing:-13.240200px;}
.ws16{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.122000px;}
.ws19{word-spacing:-12.816000px;}
.ws0{word-spacing:-12.060000px;}
.ws22{word-spacing:-10.612800px;}
.ws1{word-spacing:-9.720000px;}
.ws27{word-spacing:-9.711360px;}
.ws1a{word-spacing:-9.187200px;}
.ws2b{word-spacing:-8.100000px;}
.ws23{word-spacing:-7.286400px;}
.ws29{word-spacing:-0.358560px;}
.ws11{word-spacing:-0.216000px;}
.ws10{word-spacing:0.000000px;}
.ws13{word-spacing:0.108000px;}
.ws12{word-spacing:0.378000px;}
.ws24{word-spacing:5.217120px;}
.ws1f{word-spacing:8.667360px;}
.ws2a{word-spacing:10.553760px;}
.ws1e{word-spacing:11.547360px;}
.wsa{word-spacing:11.959920px;}
.ws28{word-spacing:26.527680px;}
.ws1b{word-spacing:56.813760px;}
.ws1c{word-spacing:57.533760px;}
.ws25{word-spacing:97.557120px;}
.ws4{word-spacing:144.144000px;}
.ws26{word-spacing:353.697120px;}
._21{margin-left:-10.216800px;}
._22{margin-left:-8.776800px;}
._23{margin-left:-7.090279px;}
._29{margin-left:-4.858763px;}
._10{margin-left:-3.326517px;}
._a{margin-left:-2.290106px;}
._0{margin-left:-1.095036px;}
._1{width:1.018703px;}
._5{width:2.985097px;}
._4{width:4.183200px;}
._16{width:5.343891px;}
._2{width:6.872400px;}
._15{width:7.914122px;}
._7{width:8.964000px;}
._8{width:10.255453px;}
._b{width:11.710296px;}
._f{width:12.723017px;}
._9{width:13.936800px;}
._24{width:14.983624px;}
._12{width:16.195199px;}
._6{width:17.556719px;}
._d{width:18.982754px;}
._11{width:20.061926px;}
._1a{width:21.097762px;}
._14{width:22.249837px;}
._e{width:23.544000px;}
._3{width:25.275697px;}
._27{width:27.014303px;}
._2f{width:28.093026px;}
._1f{width:29.162880px;}
._1e{width:30.298320px;}
._20{width:31.332817px;}
._2c{width:33.477230px;}
._2b{width:35.019360px;}
._25{width:36.111613px;}
._1d{width:37.372800px;}
._13{width:39.142800px;}
._2a{width:40.932817px;}
._2d{width:41.958000px;}
._2e{width:43.422480px;}
._30{width:44.496000px;}
._26{width:48.748476px;}
._17{width:50.437739px;}
._18{width:51.811741px;}
._31{width:63.936000px;}
._c{width:78.285540px;}
._1c{width:90.144000px;}
._1b{width:144.144000px;}
._19{width:403.762429px;}
._28{width:848.998080px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.120000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y113{bottom:-7.560000px;}
.y0{bottom:0.000000px;}
.yae{bottom:0.180000px;}
.y8a{bottom:1.980000px;}
.yb0{bottom:3.060000px;}
.y10b{bottom:3.240000px;}
.y111{bottom:3.285000px;}
.y125{bottom:3.420000px;}
.y10c{bottom:3.600000px;}
.y112{bottom:3.645000px;}
.y52{bottom:4.428000px;}
.yd4{bottom:4.680000px;}
.y141{bottom:5.040000px;}
.yd3{bottom:5.220000px;}
.y88{bottom:6.480000px;}
.y116{bottom:8.685000px;}
.y98{bottom:10.080000px;}
.ydb{bottom:10.260000px;}
.yaf{bottom:10.800000px;}
.y89{bottom:11.700000px;}
.y99{bottom:12.600000px;}
.y85{bottom:16.560000px;}
.y8e{bottom:16.740000px;}
.y8b{bottom:16.920000px;}
.y13f{bottom:18.714000px;}
.y138{bottom:18.720000px;}
.y12b{bottom:18.750000px;}
.y124{bottom:18.900000px;}
.yaa{bottom:19.980000px;}
.y115{bottom:21.105000px;}
.yb1{bottom:22.320000px;}
.y87{bottom:25.200000px;}
.yab{bottom:27.360000px;}
.yad{bottom:30.780000px;}
.y14e{bottom:32.940000px;}
.y129{bottom:32.970000px;}
.y108{bottom:33.300000px;}
.y109{bottom:33.660000px;}
.y13e{bottom:34.194000px;}
.y144{bottom:34.200000px;}
.y12a{bottom:34.230000px;}
.y123{bottom:34.380000px;}
.y137{bottom:34.425000px;}
.y86{bottom:34.740000px;}
.yac{bottom:38.160000px;}
.y132{bottom:48.420000px;}
.y127{bottom:48.600000px;}
.y143{bottom:49.710000px;}
.y13d{bottom:49.854000px;}
.y122{bottom:49.860000px;}
.y136{bottom:49.905000px;}
.y107{bottom:50.580000px;}
.y51{bottom:52.452000px;}
.ycb{bottom:57.240000px;}
.y13b{bottom:63.894000px;}
.y151{bottom:63.900000px;}
.y134{bottom:63.945000px;}
.y146{bottom:64.080000px;}
.y149{bottom:64.125000px;}
.y13c{bottom:65.334000px;}
.y130{bottom:65.340000px;}
.y135{bottom:65.385000px;}
.y121{bottom:65.520000px;}
.y14c{bottom:79.380000px;}
.y11f{bottom:79.560000px;}
.y12f{bottom:80.820000px;}
.y120{bottom:81.000000px;}
.y12d{bottom:95.040000px;}
.y12e{bottom:96.480000px;}
.y140{bottom:115.236000px;}
.yca{bottom:115.776000px;}
.y2a{bottom:116.676000px;}
.y100{bottom:122.616000px;}
.y90{bottom:123.336000px;}
.yf0{bottom:124.416000px;}
.yc9{bottom:133.056000px;}
.y13a{bottom:137.016000px;}
.yff{bottom:139.896000px;}
.y8f{bottom:140.616000px;}
.yef{bottom:141.696000px;}
.yc8{bottom:150.330000px;}
.y50{bottom:150.510000px;}
.y8d{bottom:154.470000px;}
.yfe{bottom:156.990000px;}
.yee{bottom:158.790000px;}
.y29{bottom:161.130000px;}
.yc7{bottom:167.610000px;}
.y4f{bottom:167.790000px;}
.yfd{bottom:174.270000px;}
.yed{bottom:176.070000px;}
.y28{bottom:178.410000px;}
.yc6{bottom:184.890000px;}
.y4e{bottom:185.070000px;}
.yfc{bottom:191.550000px;}
.yec{bottom:193.350000px;}
.y27{bottom:195.690000px;}
.y105{bottom:197.505000px;}
.y8c{bottom:201.630000px;}
.yc5{bottom:201.990000px;}
.y4d{bottom:202.350000px;}
.yfb{bottom:208.830000px;}
.yeb{bottom:210.630000px;}
.y26{bottom:212.970000px;}
.y104{bottom:214.605000px;}
.y84{bottom:215.310000px;}
.y139{bottom:219.090000px;}
.yc4{bottom:219.270000px;}
.y4c{bottom:219.630000px;}
.yfa{bottom:226.110000px;}
.yea{bottom:227.910000px;}
.y25{bottom:230.250000px;}
.y103{bottom:231.885000px;}
.yc3{bottom:236.550000px;}
.y4b{bottom:236.910000px;}
.y159{bottom:240.150000px;}
.yf9{bottom:243.390000px;}
.ye9{bottom:245.010000px;}
.y24{bottom:247.350000px;}
.y102{bottom:249.165000px;}
.yc2{bottom:253.830000px;}
.y4a{bottom:254.010000px;}
.y158{bottom:255.630000px;}
.yf8{bottom:260.490000px;}
.y83{bottom:262.650000px;}
.yc1{bottom:271.110000px;}
.y49{bottom:271.290000px;}
.yf7{bottom:277.770000px;}
.y82{bottom:280.290000px;}
.ye8{bottom:280.650000px;}
.y23{bottom:282.990000px;}
.y133{bottom:285.690000px;}
.y157{bottom:286.770000px;}
.yc0{bottom:288.390000px;}
.y48{bottom:288.570000px;}
.y101{bottom:297.390000px;}
.y81{bottom:297.930000px;}
.ye7{bottom:300.990000px;}
.y156{bottom:302.250000px;}
.y110{bottom:304.230000px;}
.ybe{bottom:305.490000px;}
.y47{bottom:305.850000px;}
.ybf{bottom:308.235000px;}
.y80{bottom:315.075000px;}
.y155{bottom:318.135000px;}
.ye6{bottom:318.315000px;}
.y46{bottom:323.175000px;}
.ybd{bottom:323.535000px;}
.y10f{bottom:323.895000px;}
.y7f{bottom:332.355000px;}
.y154{bottom:335.415000px;}
.ye5{bottom:335.595000px;}
.y22{bottom:337.935000px;}
.y45{bottom:340.455000px;}
.ybc{bottom:340.815000px;}
.y10e{bottom:341.895000px;}
.y7e{bottom:349.635000px;}
.y153{bottom:352.515000px;}
.ye4{bottom:352.875000px;}
.y21{bottom:355.215000px;}
.y44{bottom:357.555000px;}
.ybb{bottom:358.095000px;}
.y10d{bottom:359.895000px;}
.y7d{bottom:366.915000px;}
.y131{bottom:367.815000px;}
.y152{bottom:369.615000px;}
.ye3{bottom:370.155000px;}
.y20{bottom:372.315000px;}
.y43{bottom:374.835000px;}
.yba{bottom:375.375000px;}
.y10a{bottom:377.895000px;}
.y7c{bottom:384.195000px;}
.ye2{bottom:387.255000px;}
.y1f{bottom:389.595000px;}
.y42{bottom:392.115000px;}
.yb8{bottom:393.015000px;}
.yb9{bottom:395.715000px;}
.y106{bottom:395.895000px;}
.y7b{bottom:401.475000px;}
.ye1{bottom:406.155000px;}
.y1e{bottom:406.875000px;}
.y41{bottom:409.395000px;}
.yb7{bottom:410.835000px;}
.y7a{bottom:418.575000px;}
.ye0{bottom:423.795000px;}
.y1d{bottom:424.155000px;}
.y40{bottom:426.675000px;}
.yb6{bottom:428.115000px;}
.y12c{bottom:434.415000px;}
.y79{bottom:435.855000px;}
.y150{bottom:436.215000px;}
.ydf{bottom:441.075000px;}
.y1c{bottom:441.435000px;}
.y3f{bottom:443.955000px;}
.yb5{bottom:445.395000px;}
.y78{bottom:453.135000px;}
.y1b{bottom:458.715000px;}
.yb4{bottom:459.255000px;}
.y3e{bottom:461.055000px;}
.yb3{bottom:466.815000px;}
.y76{bottom:470.775000px;}
.y77{bottom:473.475000px;}
.y1a{bottom:475.815000px;}
.yde{bottom:477.975000px;}
.y3d{bottom:478.335000px;}
.y75{bottom:488.595000px;}
.yb2{bottom:489.855000px;}
.ydd{bottom:491.655000px;}
.y19{bottom:493.095000px;}
.y3c{bottom:495.615000px;}
.ya9{bottom:503.895000px;}
.y74{bottom:505.875000px;}
.y18{bottom:510.375000px;}
.y3b{bottom:512.895000px;}
.y14f{bottom:518.295000px;}
.y73{bottom:523.155000px;}
.ydc{bottom:526.035000px;}
.y17{bottom:527.655000px;}
.y3a{bottom:530.175000px;}
.yda{bottom:539.715000px;}
.y72{bottom:540.435000px;}
.y16{bottom:544.935000px;}
.y39{bottom:547.275000px;}
.y128{bottom:547.635000px;}
.y71{bottom:557.715000px;}
.ya8{bottom:562.065000px;}
.y15{bottom:562.245000px;}
.y38{bottom:564.585000px;}
.y14d{bottom:569.445000px;}
.yd9{bottom:574.125000px;}
.y70{bottom:574.845000px;}
.yf6{bottom:576.105000px;}
.ya7{bottom:579.165000px;}
.y14{bottom:579.345000px;}
.y37{bottom:581.865000px;}
.yd8{bottom:587.805000px;}
.y6f{bottom:592.125000px;}
.yf5{bottom:593.385000px;}
.ya6{bottom:596.445000px;}
.y13{bottom:596.625000px;}
.y126{bottom:598.605000px;}
.y36{bottom:599.145000px;}
.y6e{bottom:609.405000px;}
.yd7{bottom:610.665000px;}
.ya5{bottom:613.725000px;}
.y12{bottom:613.905000px;}
.y35{bottom:616.425000px;}
.y14b{bottom:620.565000px;}
.yd6{bottom:624.345000px;}
.y6d{bottom:626.685000px;}
.yf4{bottom:627.765000px;}
.y11{bottom:631.185000px;}
.ya4{bottom:631.365000px;}
.y34{bottom:633.705000px;}
.y6c{bottom:643.965000px;}
.yf3{bottom:645.045000px;}
.yd5{bottom:647.205000px;}
.y10{bottom:648.465000px;}
.ya3{bottom:648.645000px;}
.y33{bottom:650.805000px;}
.yd2{bottom:660.885000px;}
.y6b{bottom:661.245000px;}
.yf2{bottom:662.325000px;}
.y11e{bottom:665.205000px;}
.yf{bottom:665.565000px;}
.ya2{bottom:665.745000px;}
.y32{bottom:668.085000px;}
.y6a{bottom:678.345000px;}
.ye{bottom:682.845000px;}
.ya1{bottom:683.385000px;}
.yd1{bottom:683.745000px;}
.y31{bottom:685.365000px;}
.y69{bottom:695.625000px;}
.yf1{bottom:697.965000px;}
.yd{bottom:700.125000px;}
.ya0{bottom:700.665000px;}
.yd0{bottom:701.025000px;}
.y30{bottom:702.645000px;}
.y68{bottom:712.905000px;}
.yc{bottom:717.405000px;}
.y9f{bottom:717.945000px;}
.y14a{bottom:718.125000px;}
.ycf{bottom:718.305000px;}
.y2f{bottom:719.925000px;}
.y67{bottom:730.185000px;}
.yb{bottom:734.685000px;}
.y9e{bottom:735.405000px;}
.yce{bottom:735.585000px;}
.y2e{bottom:737.205000px;}
.y9d{bottom:752.685000px;}
.ycd{bottom:752.865000px;}
.y2d{bottom:754.305000px;}
.ya{bottom:757.185000px;}
.y11d{bottom:765.465000px;}
.y66{bottom:765.825000px;}
.y9c{bottom:769.965000px;}
.y2c{bottom:771.585000px;}
.y11c{bottom:782.925000px;}
.y148{bottom:784.725000px;}
.y65{bottom:786.165000px;}
.y9{bottom:787.245000px;}
.y2b{bottom:788.865000px;}
.y64{bottom:803.265000px;}
.y9b{bottom:804.525000px;}
.y114{bottom:806.685000px;}
.y63{bottom:820.590000px;}
.y9a{bottom:823.650000px;}
.y8{bottom:834.450000px;}
.y62{bottom:837.870000px;}
.y7{bottom:855.150000px;}
.y147{bottom:866.850000px;}
.y61{bottom:872.430000px;}
.y6{bottom:875.850000px;}
.y97{bottom:876.570000px;}
.y60{bottom:889.710000px;}
.y96{bottom:893.850000px;}
.y5{bottom:896.550000px;}
.y5f{bottom:906.810000px;}
.y95{bottom:911.130000px;}
.y5e{bottom:924.090000px;}
.y94{bottom:928.410000px;}
.y4{bottom:931.110000px;}
.y145{bottom:933.450000px;}
.y5d{bottom:941.370000px;}
.y93{bottom:945.510000px;}
.y3{bottom:951.810000px;}
.y11b{bottom:958.650000px;}
.y92{bottom:962.790000px;}
.y11a{bottom:975.930000px;}
.y5c{bottom:977.010000px;}
.y91{bottom:980.070000px;}
.y119{bottom:993.210000px;}
.y2{bottom:993.930000px;}
.y5b{bottom:997.350000px;}
.y118{bottom:1010.310000px;}
.y5a{bottom:1014.630000px;}
.y142{bottom:1015.710000px;}
.y1{bottom:1018.050000px;}
.y59{bottom:1031.910000px;}
.y117{bottom:1045.950000px;}
.y58{bottom:1049.010000px;}
.y57{bottom:1066.320000px;}
.y56{bottom:1071.595500px;}
.y55{bottom:1091.395500px;}
.y54{bottom:1111.195500px;}
.ycc{bottom:1118.338560px;}
.y53{bottom:1130.995500px;}
.h27{height:17.100000px;}
.h32{height:17.280000px;}
.h28{height:17.316000px;}
.ha{height:18.684000px;}
.h22{height:19.260000px;}
.h24{height:30.780000px;}
.h23{height:30.816000px;}
.h14{height:35.100000px;}
.h5{height:38.139609px;}
.h9{height:38.158594px;}
.h13{height:43.560000px;}
.hf{height:43.740000px;}
.h21{height:44.149219px;}
.h2e{height:46.476000px;}
.h37{height:46.620000px;}
.h38{height:46.656000px;}
.hc{height:46.992000px;}
.h3{height:47.344922px;}
.h1b{height:47.432109px;}
.h35{height:52.971680px;}
.h2a{height:52.998047px;}
.hb{height:54.421875px;}
.h18{height:54.540000px;}
.h6{height:58.621992px;}
.h8{height:58.651172px;}
.h11{height:59.805703px;}
.h20{height:60.226875px;}
.h33{height:61.956000px;}
.h2d{height:62.100000px;}
.hd{height:62.327813px;}
.h4{height:66.757500px;}
.h2c{height:70.664062px;}
.h7{height:72.562500px;}
.h2{height:74.704922px;}
.h31{height:77.580000px;}
.h30{height:77.616000px;}
.h34{height:77.760000px;}
.h1{height:84.898125px;}
.he{height:85.584023px;}
.h17{height:87.744023px;}
.h1f{height:88.891172px;}
.h36{height:93.060000px;}
.h2b{height:93.240000px;}
.h26{height:94.500000px;}
.h1c{height:95.005898px;}
.h1e{height:95.085703px;}
.h16{height:98.971172px;}
.h1a{height:103.592109px;}
.h2f{height:108.720000px;}
.h12{height:116.971172px;}
.h15{height:134.544023px;}
.h10{height:136.704023px;}
.h1d{height:136.765898px;}
.h19{height:151.165898px;}
.h25{height:262.875000px;}
.h29{height:269.535000px;}
.h0{height:1188.000000px;}
.w4{width:4.320000px;}
.w5{width:4.500000px;}
.w9{width:24.840000px;}
.w8{width:25.020000px;}
.w14{width:27.396000px;}
.w10{width:102.780000px;}
.w12{width:104.220000px;}
.wb{width:110.910000px;}
.w11{width:118.656000px;}
.wd{width:177.690000px;}
.w3{width:297.435000px;}
.w15{width:315.750000px;}
.w16{width:315.930000px;}
.we{width:337.755000px;}
.w7{width:339.015000px;}
.wf{width:350.175000px;}
.w6{width:612.285000px;}
.w13{width:715.065000px;}
.wc{width:732.030000px;}
.wa{width:798.810000px;}
.w1{width:811.386000px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x11{left:-2.160000px;}
.x0{left:0.000000px;}
.x46{left:1.260000px;}
.x19{left:3.780000px;}
.x34{left:10.830000px;}
.x36{left:16.380000px;}
.x3c{left:17.820000px;}
.x39{left:20.340000px;}
.x3e{left:21.420000px;}
.x40{left:23.940000px;}
.x37{left:27.540000px;}
.x3f{left:35.100000px;}
.x3d{left:40.860000px;}
.x41{left:43.020000px;}
.x42{left:44.640000px;}
.x3a{left:48.060000px;}
.xd{left:54.000000px;}
.x1e{left:55.830000px;}
.xe{left:57.190500px;}
.x14{left:84.780000px;}
.xa{left:91.800000px;}
.x31{left:94.170000px;}
.x32{left:97.410000px;}
.x43{left:100.836000px;}
.x2f{left:101.910000px;}
.x1b{left:106.050000px;}
.x9{left:108.936000px;}
.x1{left:120.636000px;}
.x1f{left:121.890000px;}
.x47{left:123.696000px;}
.x15{left:133.410000px;}
.x20{left:160.410000px;}
.x17{left:174.630000px;}
.x16{left:185.250000px;}
.x21{left:202.575000px;}
.x22{left:220.035000px;}
.x1c{left:225.975000px;}
.x3{left:228.270000px;}
.x4{left:235.650000px;}
.x45{left:242.679000px;}
.x5{left:260.310000px;}
.x30{left:266.789986px;}
.x7{left:276.330000px;}
.xf{left:290.954973px;}
.x10{left:297.255000px;}
.x12{left:301.395000px;}
.x6{left:305.535000px;}
.x13{left:310.574986px;}
.x8{left:347.295000px;}
.x2{left:385.275000px;}
.x18{left:423.795000px;}
.x2e{left:437.940000px;}
.x1a{left:469.335000px;}
.x33{left:473.655000px;}
.xb{left:476.355000px;}
.x49{left:478.515000px;}
.x35{left:485.205000px;}
.xc{left:493.125000px;}
.x48{left:508.065000px;}
.x38{left:588.705000px;}
.x44{left:666.834000px;}
.x23{left:680.549986px;}
.x3b{left:708.090000px;}
.x29{left:725.549973px;}
.x2a{left:731.850000px;}
.x2b{left:735.990000px;}
.x2c{left:740.310000px;}
.x2d{left:748.589986px;}
.x24{left:792.329973px;}
.x25{left:798.630000px;}
.x26{left:802.770000px;}
.x27{left:807.090000px;}
.x1d{left:808.350000px;}
.x28{left:815.189986px;}
@media print{
.v1c{vertical-align:-63.360000pt;}
.v15{vertical-align:-62.080000pt;}
.v14{vertical-align:-28.160000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-10.880000pt;}
.v11{vertical-align:-8.960000pt;}
.v1b{vertical-align:-7.680000pt;}
.v10{vertical-align:-5.120000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.920000pt;}
.v12{vertical-align:8.960000pt;}
.v5{vertical-align:10.880000pt;}
.v18{vertical-align:18.560000pt;}
.v1a{vertical-align:19.840000pt;}
.v16{vertical-align:21.760000pt;}
.ve{vertical-align:23.040000pt;}
.v1{vertical-align:24.320000pt;}
.vf{vertical-align:26.240000pt;}
.v19{vertical-align:31.360000pt;}
.vb{vertical-align:35.840000pt;}
.v13{vertical-align:37.120000pt;}
.va{vertical-align:41.600000pt;}
.v9{vertical-align:43.520000pt;}
.v6{vertical-align:45.440000pt;}
.v8{vertical-align:51.840000pt;}
.v17{vertical-align:60.160000pt;}
.vd{vertical-align:72.960000pt;}
.ls8{letter-spacing:-0.409067pt;}
.lsf{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.294400pt;}
.ls36{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.067733pt;}
.ls7{letter-spacing:-0.047467pt;}
.ls2e{letter-spacing:-0.047360pt;}
.ls3a{letter-spacing:-0.039680pt;}
.ls38{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.011520pt;}
.ls9{letter-spacing:0.047467pt;}
.ls30{letter-spacing:0.082667pt;}
.lsa{letter-spacing:0.094933pt;}
.ls3f{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls35{letter-spacing:0.267733pt;}
.ls3e{letter-spacing:0.298667pt;}
.ls3b{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.336000pt;}
.ls2a{letter-spacing:0.355200pt;}
.ls1e{letter-spacing:0.494080pt;}
.ls33{letter-spacing:0.544000pt;}
.ls2f{letter-spacing:0.592000pt;}
.ls37{letter-spacing:0.688000pt;}
.ls40{letter-spacing:0.736000pt;}
.ls28{letter-spacing:0.769920pt;}
.ls31{letter-spacing:0.800000pt;}
.ls32{letter-spacing:0.960000pt;}
.ls3c{letter-spacing:0.995200pt;}
.ls14{letter-spacing:1.504000pt;}
.ls12{letter-spacing:1.625600pt;}
.ls1f{letter-spacing:1.962240pt;}
.ls2b{letter-spacing:2.187520pt;}
.ls1a{letter-spacing:2.827520pt;}
.ls2c{letter-spacing:2.970880pt;}
.ls29{letter-spacing:3.610880pt;}
.ls27{letter-spacing:3.710720pt;}
.ls25{letter-spacing:7.386880pt;}
.ls24{letter-spacing:8.928640pt;}
.ls1b{letter-spacing:9.057920pt;}
.ls23{letter-spacing:11.114240pt;}
.ls1d{letter-spacing:12.159360pt;}
.ls22{letter-spacing:12.592640pt;}
.ls18{letter-spacing:14.719360pt;}
.ls16{letter-spacing:15.359360pt;}
.ls15{letter-spacing:17.547520pt;}
.ls1{letter-spacing:21.280000pt;}
.ls3d{letter-spacing:48.928000pt;}
.ls1c{letter-spacing:49.962240pt;}
.ls2d{letter-spacing:53.072640pt;}
.ls11{letter-spacing:53.712640pt;}
.ls26{letter-spacing:60.478080pt;}
.ls21{letter-spacing:64.958080pt;}
.ls17{letter-spacing:80.897920pt;}
.ls19{letter-spacing:81.537920pt;}
.ls3{letter-spacing:463.444800pt;}
.ws17{word-spacing:-14.240000pt;}
.ws20{word-spacing:-13.872000pt;}
.ws18{word-spacing:-13.824000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.463467pt;}
.ws21{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327467pt;}
.ws8{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.232533pt;}
.ws1d{word-spacing:-13.096533pt;}
.ws2c{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.870933pt;}
.wsc{word-spacing:-12.336000pt;}
.ws2d{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.192000pt;}
.ws2e{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.ws15{word-spacing:-11.769067pt;}
.ws16{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.664000pt;}
.ws19{word-spacing:-11.392000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws22{word-spacing:-9.433600pt;}
.ws1{word-spacing:-8.640000pt;}
.ws27{word-spacing:-8.632320pt;}
.ws1a{word-spacing:-8.166400pt;}
.ws2b{word-spacing:-7.200000pt;}
.ws23{word-spacing:-6.476800pt;}
.ws29{word-spacing:-0.318720pt;}
.ws11{word-spacing:-0.192000pt;}
.ws10{word-spacing:0.000000pt;}
.ws13{word-spacing:0.096000pt;}
.ws12{word-spacing:0.336000pt;}
.ws24{word-spacing:4.637440pt;}
.ws1f{word-spacing:7.704320pt;}
.ws2a{word-spacing:9.381120pt;}
.ws1e{word-spacing:10.264320pt;}
.wsa{word-spacing:10.631040pt;}
.ws28{word-spacing:23.580160pt;}
.ws1b{word-spacing:50.501120pt;}
.ws1c{word-spacing:51.141120pt;}
.ws25{word-spacing:86.717440pt;}
.ws4{word-spacing:128.128000pt;}
.ws26{word-spacing:314.397440pt;}
._21{margin-left:-9.081600pt;}
._22{margin-left:-7.801600pt;}
._23{margin-left:-6.302470pt;}
._29{margin-left:-4.318900pt;}
._10{margin-left:-2.956904pt;}
._a{margin-left:-2.035650pt;}
._0{margin-left:-0.973365pt;}
._1{width:0.905514pt;}
._5{width:2.653420pt;}
._4{width:3.718400pt;}
._16{width:4.750125pt;}
._2{width:6.108800pt;}
._15{width:7.034775pt;}
._7{width:7.968000pt;}
._8{width:9.115958pt;}
._b{width:10.409152pt;}
._f{width:11.309348pt;}
._9{width:12.388267pt;}
._24{width:13.318777pt;}
._12{width:14.395732pt;}
._6{width:15.605972pt;}
._d{width:16.873559pt;}
._11{width:17.832823pt;}
._1a{width:18.753567pt;}
._14{width:19.777633pt;}
._e{width:20.928000pt;}
._3{width:22.467286pt;}
._27{width:24.012714pt;}
._2f{width:24.971578pt;}
._1f{width:25.922560pt;}
._1e{width:26.931840pt;}
._20{width:27.851393pt;}
._2c{width:29.757537pt;}
._2b{width:31.128320pt;}
._25{width:32.099211pt;}
._1d{width:33.220267pt;}
._13{width:34.793600pt;}
._2a{width:36.384726pt;}
._2d{width:37.296000pt;}
._2e{width:38.597760pt;}
._30{width:39.552000pt;}
._26{width:43.331978pt;}
._17{width:44.833546pt;}
._18{width:46.054881pt;}
._31{width:56.832000pt;}
._c{width:69.587147pt;}
._1c{width:80.128000pt;}
._1b{width:128.128000pt;}
._19{width:358.899937pt;}
._28{width:754.664960pt;}
.fs9{font-size:29.440000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y113{bottom:-6.720000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:0.160000pt;}
.y8a{bottom:1.760000pt;}
.yb0{bottom:2.720000pt;}
.y10b{bottom:2.880000pt;}
.y111{bottom:2.920000pt;}
.y125{bottom:3.040000pt;}
.y10c{bottom:3.200000pt;}
.y112{bottom:3.240000pt;}
.y52{bottom:3.936000pt;}
.yd4{bottom:4.160000pt;}
.y141{bottom:4.480000pt;}
.yd3{bottom:4.640000pt;}
.y88{bottom:5.760000pt;}
.y116{bottom:7.720000pt;}
.y98{bottom:8.960000pt;}
.ydb{bottom:9.120000pt;}
.yaf{bottom:9.600000pt;}
.y89{bottom:10.400000pt;}
.y99{bottom:11.200000pt;}
.y85{bottom:14.720000pt;}
.y8e{bottom:14.880000pt;}
.y8b{bottom:15.040000pt;}
.y13f{bottom:16.634667pt;}
.y138{bottom:16.640000pt;}
.y12b{bottom:16.666667pt;}
.y124{bottom:16.800000pt;}
.yaa{bottom:17.760000pt;}
.y115{bottom:18.760000pt;}
.yb1{bottom:19.840000pt;}
.y87{bottom:22.400000pt;}
.yab{bottom:24.320000pt;}
.yad{bottom:27.360000pt;}
.y14e{bottom:29.280000pt;}
.y129{bottom:29.306667pt;}
.y108{bottom:29.600000pt;}
.y109{bottom:29.920000pt;}
.y13e{bottom:30.394667pt;}
.y144{bottom:30.400000pt;}
.y12a{bottom:30.426667pt;}
.y123{bottom:30.560000pt;}
.y137{bottom:30.600000pt;}
.y86{bottom:30.880000pt;}
.yac{bottom:33.920000pt;}
.y132{bottom:43.040000pt;}
.y127{bottom:43.200000pt;}
.y143{bottom:44.186667pt;}
.y13d{bottom:44.314667pt;}
.y122{bottom:44.320000pt;}
.y136{bottom:44.360000pt;}
.y107{bottom:44.960000pt;}
.y51{bottom:46.624000pt;}
.ycb{bottom:50.880000pt;}
.y13b{bottom:56.794667pt;}
.y151{bottom:56.800000pt;}
.y134{bottom:56.840000pt;}
.y146{bottom:56.960000pt;}
.y149{bottom:57.000000pt;}
.y13c{bottom:58.074667pt;}
.y130{bottom:58.080000pt;}
.y135{bottom:58.120000pt;}
.y121{bottom:58.240000pt;}
.y14c{bottom:70.560000pt;}
.y11f{bottom:70.720000pt;}
.y12f{bottom:71.840000pt;}
.y120{bottom:72.000000pt;}
.y12d{bottom:84.480000pt;}
.y12e{bottom:85.760000pt;}
.y140{bottom:102.432000pt;}
.yca{bottom:102.912000pt;}
.y2a{bottom:103.712000pt;}
.y100{bottom:108.992000pt;}
.y90{bottom:109.632000pt;}
.yf0{bottom:110.592000pt;}
.yc9{bottom:118.272000pt;}
.y13a{bottom:121.792000pt;}
.yff{bottom:124.352000pt;}
.y8f{bottom:124.992000pt;}
.yef{bottom:125.952000pt;}
.yc8{bottom:133.626667pt;}
.y50{bottom:133.786667pt;}
.y8d{bottom:137.306667pt;}
.yfe{bottom:139.546667pt;}
.yee{bottom:141.146667pt;}
.y29{bottom:143.226667pt;}
.yc7{bottom:148.986667pt;}
.y4f{bottom:149.146667pt;}
.yfd{bottom:154.906667pt;}
.yed{bottom:156.506667pt;}
.y28{bottom:158.586667pt;}
.yc6{bottom:164.346667pt;}
.y4e{bottom:164.506667pt;}
.yfc{bottom:170.266667pt;}
.yec{bottom:171.866667pt;}
.y27{bottom:173.946667pt;}
.y105{bottom:175.560000pt;}
.y8c{bottom:179.226667pt;}
.yc5{bottom:179.546667pt;}
.y4d{bottom:179.866667pt;}
.yfb{bottom:185.626667pt;}
.yeb{bottom:187.226667pt;}
.y26{bottom:189.306667pt;}
.y104{bottom:190.760000pt;}
.y84{bottom:191.386667pt;}
.y139{bottom:194.746667pt;}
.yc4{bottom:194.906667pt;}
.y4c{bottom:195.226667pt;}
.yfa{bottom:200.986667pt;}
.yea{bottom:202.586667pt;}
.y25{bottom:204.666667pt;}
.y103{bottom:206.120000pt;}
.yc3{bottom:210.266667pt;}
.y4b{bottom:210.586667pt;}
.y159{bottom:213.466667pt;}
.yf9{bottom:216.346667pt;}
.ye9{bottom:217.786667pt;}
.y24{bottom:219.866667pt;}
.y102{bottom:221.480000pt;}
.yc2{bottom:225.626667pt;}
.y4a{bottom:225.786667pt;}
.y158{bottom:227.226667pt;}
.yf8{bottom:231.546667pt;}
.y83{bottom:233.466667pt;}
.yc1{bottom:240.986667pt;}
.y49{bottom:241.146667pt;}
.yf7{bottom:246.906667pt;}
.y82{bottom:249.146667pt;}
.ye8{bottom:249.466667pt;}
.y23{bottom:251.546667pt;}
.y133{bottom:253.946667pt;}
.y157{bottom:254.906667pt;}
.yc0{bottom:256.346667pt;}
.y48{bottom:256.506667pt;}
.y101{bottom:264.346667pt;}
.y81{bottom:264.826667pt;}
.ye7{bottom:267.546667pt;}
.y156{bottom:268.666667pt;}
.y110{bottom:270.426667pt;}
.ybe{bottom:271.546667pt;}
.y47{bottom:271.866667pt;}
.ybf{bottom:273.986667pt;}
.y80{bottom:280.066667pt;}
.y155{bottom:282.786667pt;}
.ye6{bottom:282.946667pt;}
.y46{bottom:287.266667pt;}
.ybd{bottom:287.586667pt;}
.y10f{bottom:287.906667pt;}
.y7f{bottom:295.426667pt;}
.y154{bottom:298.146667pt;}
.ye5{bottom:298.306667pt;}
.y22{bottom:300.386667pt;}
.y45{bottom:302.626667pt;}
.ybc{bottom:302.946667pt;}
.y10e{bottom:303.906667pt;}
.y7e{bottom:310.786667pt;}
.y153{bottom:313.346667pt;}
.ye4{bottom:313.666667pt;}
.y21{bottom:315.746667pt;}
.y44{bottom:317.826667pt;}
.ybb{bottom:318.306667pt;}
.y10d{bottom:319.906667pt;}
.y7d{bottom:326.146667pt;}
.y131{bottom:326.946667pt;}
.y152{bottom:328.546667pt;}
.ye3{bottom:329.026667pt;}
.y20{bottom:330.946667pt;}
.y43{bottom:333.186667pt;}
.yba{bottom:333.666667pt;}
.y10a{bottom:335.906667pt;}
.y7c{bottom:341.506667pt;}
.ye2{bottom:344.226667pt;}
.y1f{bottom:346.306667pt;}
.y42{bottom:348.546667pt;}
.yb8{bottom:349.346667pt;}
.yb9{bottom:351.746667pt;}
.y106{bottom:351.906667pt;}
.y7b{bottom:356.866667pt;}
.ye1{bottom:361.026667pt;}
.y1e{bottom:361.666667pt;}
.y41{bottom:363.906667pt;}
.yb7{bottom:365.186667pt;}
.y7a{bottom:372.066667pt;}
.ye0{bottom:376.706667pt;}
.y1d{bottom:377.026667pt;}
.y40{bottom:379.266667pt;}
.yb6{bottom:380.546667pt;}
.y12c{bottom:386.146667pt;}
.y79{bottom:387.426667pt;}
.y150{bottom:387.746667pt;}
.ydf{bottom:392.066667pt;}
.y1c{bottom:392.386667pt;}
.y3f{bottom:394.626667pt;}
.yb5{bottom:395.906667pt;}
.y78{bottom:402.786667pt;}
.y1b{bottom:407.746667pt;}
.yb4{bottom:408.226667pt;}
.y3e{bottom:409.826667pt;}
.yb3{bottom:414.946667pt;}
.y76{bottom:418.466667pt;}
.y77{bottom:420.866667pt;}
.y1a{bottom:422.946667pt;}
.yde{bottom:424.866667pt;}
.y3d{bottom:425.186667pt;}
.y75{bottom:434.306667pt;}
.yb2{bottom:435.426667pt;}
.ydd{bottom:437.026667pt;}
.y19{bottom:438.306667pt;}
.y3c{bottom:440.546667pt;}
.ya9{bottom:447.906667pt;}
.y74{bottom:449.666667pt;}
.y18{bottom:453.666667pt;}
.y3b{bottom:455.906667pt;}
.y14f{bottom:460.706667pt;}
.y73{bottom:465.026667pt;}
.ydc{bottom:467.586667pt;}
.y17{bottom:469.026667pt;}
.y3a{bottom:471.266667pt;}
.yda{bottom:479.746667pt;}
.y72{bottom:480.386667pt;}
.y16{bottom:484.386667pt;}
.y39{bottom:486.466667pt;}
.y128{bottom:486.786667pt;}
.y71{bottom:495.746667pt;}
.ya8{bottom:499.613333pt;}
.y15{bottom:499.773333pt;}
.y38{bottom:501.853333pt;}
.y14d{bottom:506.173333pt;}
.yd9{bottom:510.333333pt;}
.y70{bottom:510.973333pt;}
.yf6{bottom:512.093333pt;}
.ya7{bottom:514.813333pt;}
.y14{bottom:514.973333pt;}
.y37{bottom:517.213333pt;}
.yd8{bottom:522.493333pt;}
.y6f{bottom:526.333333pt;}
.yf5{bottom:527.453333pt;}
.ya6{bottom:530.173333pt;}
.y13{bottom:530.333333pt;}
.y126{bottom:532.093333pt;}
.y36{bottom:532.573333pt;}
.y6e{bottom:541.693333pt;}
.yd7{bottom:542.813333pt;}
.ya5{bottom:545.533333pt;}
.y12{bottom:545.693333pt;}
.y35{bottom:547.933333pt;}
.y14b{bottom:551.613333pt;}
.yd6{bottom:554.973333pt;}
.y6d{bottom:557.053333pt;}
.yf4{bottom:558.013333pt;}
.y11{bottom:561.053333pt;}
.ya4{bottom:561.213333pt;}
.y34{bottom:563.293333pt;}
.y6c{bottom:572.413333pt;}
.yf3{bottom:573.373333pt;}
.yd5{bottom:575.293333pt;}
.y10{bottom:576.413333pt;}
.ya3{bottom:576.573333pt;}
.y33{bottom:578.493333pt;}
.yd2{bottom:587.453333pt;}
.y6b{bottom:587.773333pt;}
.yf2{bottom:588.733333pt;}
.y11e{bottom:591.293333pt;}
.yf{bottom:591.613333pt;}
.ya2{bottom:591.773333pt;}
.y32{bottom:593.853333pt;}
.y6a{bottom:602.973333pt;}
.ye{bottom:606.973333pt;}
.ya1{bottom:607.453333pt;}
.yd1{bottom:607.773333pt;}
.y31{bottom:609.213333pt;}
.y69{bottom:618.333333pt;}
.yf1{bottom:620.413333pt;}
.yd{bottom:622.333333pt;}
.ya0{bottom:622.813333pt;}
.yd0{bottom:623.133333pt;}
.y30{bottom:624.573333pt;}
.y68{bottom:633.693333pt;}
.yc{bottom:637.693333pt;}
.y9f{bottom:638.173333pt;}
.y14a{bottom:638.333333pt;}
.ycf{bottom:638.493333pt;}
.y2f{bottom:639.933333pt;}
.y67{bottom:649.053333pt;}
.yb{bottom:653.053333pt;}
.y9e{bottom:653.693333pt;}
.yce{bottom:653.853333pt;}
.y2e{bottom:655.293333pt;}
.y9d{bottom:669.053333pt;}
.ycd{bottom:669.213333pt;}
.y2d{bottom:670.493333pt;}
.ya{bottom:673.053333pt;}
.y11d{bottom:680.413333pt;}
.y66{bottom:680.733333pt;}
.y9c{bottom:684.413333pt;}
.y2c{bottom:685.853333pt;}
.y11c{bottom:695.933333pt;}
.y148{bottom:697.533333pt;}
.y65{bottom:698.813333pt;}
.y9{bottom:699.773333pt;}
.y2b{bottom:701.213333pt;}
.y64{bottom:714.013333pt;}
.y9b{bottom:715.133333pt;}
.y114{bottom:717.053333pt;}
.y63{bottom:729.413333pt;}
.y9a{bottom:732.133333pt;}
.y8{bottom:741.733333pt;}
.y62{bottom:744.773333pt;}
.y7{bottom:760.133333pt;}
.y147{bottom:770.533333pt;}
.y61{bottom:775.493333pt;}
.y6{bottom:778.533333pt;}
.y97{bottom:779.173333pt;}
.y60{bottom:790.853333pt;}
.y96{bottom:794.533333pt;}
.y5{bottom:796.933333pt;}
.y5f{bottom:806.053333pt;}
.y95{bottom:809.893333pt;}
.y5e{bottom:821.413333pt;}
.y94{bottom:825.253333pt;}
.y4{bottom:827.653333pt;}
.y145{bottom:829.733333pt;}
.y5d{bottom:836.773333pt;}
.y93{bottom:840.453333pt;}
.y3{bottom:846.053333pt;}
.y11b{bottom:852.133333pt;}
.y92{bottom:855.813333pt;}
.y11a{bottom:867.493333pt;}
.y5c{bottom:868.453333pt;}
.y91{bottom:871.173333pt;}
.y119{bottom:882.853333pt;}
.y2{bottom:883.493333pt;}
.y5b{bottom:886.533333pt;}
.y118{bottom:898.053333pt;}
.y5a{bottom:901.893333pt;}
.y142{bottom:902.853333pt;}
.y1{bottom:904.933333pt;}
.y59{bottom:917.253333pt;}
.y117{bottom:929.733333pt;}
.y58{bottom:932.453333pt;}
.y57{bottom:947.840000pt;}
.y56{bottom:952.529333pt;}
.y55{bottom:970.129333pt;}
.y54{bottom:987.729333pt;}
.ycc{bottom:994.078720pt;}
.y53{bottom:1005.329333pt;}
.h27{height:15.200000pt;}
.h32{height:15.360000pt;}
.h28{height:15.392000pt;}
.ha{height:16.608000pt;}
.h22{height:17.120000pt;}
.h24{height:27.360000pt;}
.h23{height:27.392000pt;}
.h14{height:31.200000pt;}
.h5{height:33.901875pt;}
.h9{height:33.918750pt;}
.h13{height:38.720000pt;}
.hf{height:38.880000pt;}
.h21{height:39.243750pt;}
.h2e{height:41.312000pt;}
.h37{height:41.440000pt;}
.h38{height:41.472000pt;}
.hc{height:41.770667pt;}
.h3{height:42.084375pt;}
.h1b{height:42.161875pt;}
.h35{height:47.085938pt;}
.h2a{height:47.109375pt;}
.hb{height:48.375000pt;}
.h18{height:48.480000pt;}
.h6{height:52.108438pt;}
.h8{height:52.134375pt;}
.h11{height:53.160625pt;}
.h20{height:53.535000pt;}
.h33{height:55.072000pt;}
.h2d{height:55.200000pt;}
.hd{height:55.402500pt;}
.h4{height:59.340000pt;}
.h2c{height:62.812500pt;}
.h7{height:64.500000pt;}
.h2{height:66.404375pt;}
.h31{height:68.960000pt;}
.h30{height:68.992000pt;}
.h34{height:69.120000pt;}
.h1{height:75.465000pt;}
.he{height:76.074687pt;}
.h17{height:77.994687pt;}
.h1f{height:79.014375pt;}
.h36{height:82.720000pt;}
.h2b{height:82.880000pt;}
.h26{height:84.000000pt;}
.h1c{height:84.449687pt;}
.h1e{height:84.520625pt;}
.h16{height:87.974375pt;}
.h1a{height:92.081875pt;}
.h2f{height:96.640000pt;}
.h12{height:103.974375pt;}
.h15{height:119.594687pt;}
.h10{height:121.514687pt;}
.h1d{height:121.569688pt;}
.h19{height:134.369687pt;}
.h25{height:233.666667pt;}
.h29{height:239.586667pt;}
.h0{height:1056.000000pt;}
.w4{width:3.840000pt;}
.w5{width:4.000000pt;}
.w9{width:22.080000pt;}
.w8{width:22.240000pt;}
.w14{width:24.352000pt;}
.w10{width:91.360000pt;}
.w12{width:92.640000pt;}
.wb{width:98.586667pt;}
.w11{width:105.472000pt;}
.wd{width:157.946667pt;}
.w3{width:264.386667pt;}
.w15{width:280.666667pt;}
.w16{width:280.826667pt;}
.we{width:300.226667pt;}
.w7{width:301.346667pt;}
.wf{width:311.266667pt;}
.w6{width:544.253333pt;}
.w13{width:635.613333pt;}
.wc{width:650.693333pt;}
.wa{width:710.053333pt;}
.w1{width:721.232000pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x11{left:-1.920000pt;}
.x0{left:0.000000pt;}
.x46{left:1.120000pt;}
.x19{left:3.360000pt;}
.x34{left:9.626667pt;}
.x36{left:14.560000pt;}
.x3c{left:15.840000pt;}
.x39{left:18.080000pt;}
.x3e{left:19.040000pt;}
.x40{left:21.280000pt;}
.x37{left:24.480000pt;}
.x3f{left:31.200000pt;}
.x3d{left:36.320000pt;}
.x41{left:38.240000pt;}
.x42{left:39.680000pt;}
.x3a{left:42.720000pt;}
.xd{left:48.000000pt;}
.x1e{left:49.626667pt;}
.xe{left:50.836000pt;}
.x14{left:75.360000pt;}
.xa{left:81.600000pt;}
.x31{left:83.706667pt;}
.x32{left:86.586667pt;}
.x43{left:89.632000pt;}
.x2f{left:90.586667pt;}
.x1b{left:94.266667pt;}
.x9{left:96.832000pt;}
.x1{left:107.232000pt;}
.x1f{left:108.346667pt;}
.x47{left:109.952000pt;}
.x15{left:118.586667pt;}
.x20{left:142.586667pt;}
.x17{left:155.226667pt;}
.x16{left:164.666667pt;}
.x21{left:180.066667pt;}
.x22{left:195.586667pt;}
.x1c{left:200.866667pt;}
.x3{left:202.906667pt;}
.x4{left:209.466667pt;}
.x45{left:215.714667pt;}
.x5{left:231.386667pt;}
.x30{left:237.146655pt;}
.x7{left:245.626667pt;}
.xf{left:258.626642pt;}
.x10{left:264.226667pt;}
.x12{left:267.906667pt;}
.x6{left:271.586667pt;}
.x13{left:276.066655pt;}
.x8{left:308.706667pt;}
.x2{left:342.466667pt;}
.x18{left:376.706667pt;}
.x2e{left:389.280000pt;}
.x1a{left:417.186667pt;}
.x33{left:421.026667pt;}
.xb{left:423.426667pt;}
.x49{left:425.346667pt;}
.x35{left:431.293333pt;}
.xc{left:438.333333pt;}
.x48{left:451.613333pt;}
.x38{left:523.293333pt;}
.x44{left:592.741333pt;}
.x23{left:604.933321pt;}
.x3b{left:629.413333pt;}
.x29{left:644.933309pt;}
.x2a{left:650.533333pt;}
.x2b{left:654.213333pt;}
.x2c{left:658.053333pt;}
.x2d{left:665.413321pt;}
.x24{left:704.293309pt;}
.x25{left:709.893333pt;}
.x26{left:713.573333pt;}
.x27{left:717.413333pt;}
.x1d{left:718.533333pt;}
.x28{left:724.613321pt;}
}




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