
    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_cdf74cf00ebd2df8154e6045.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5b9830cf4ac517850940e946.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_402139cd9ee3258b14d6fddc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ad5cb341d644a118ae196aa9.woff')format("woff");}.ff4{font-family:ff4;line-height:2.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1d5e38224ff72867ee016522.woff')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_d74dc274f4fd614d9fcb1b11.woff')format("woff");}.ff6{font-family:ff6;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;}
.m4{transform:matrix(0.000000,-0.249922,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249922,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249922,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.251698,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251698,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251698,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.v22{vertical-align:-134.100000px;}
.v4{vertical-align:-130.320000px;}
.v10{vertical-align:-115.200000px;}
.v21{vertical-align:-99.360000px;}
.v16{vertical-align:-93.600000px;}
.v18{vertical-align:-84.960000px;}
.v28{vertical-align:-82.800000px;}
.v1{vertical-align:-78.480000px;}
.v1b{vertical-align:-36.720000px;}
.v3{vertical-align:-27.360000px;}
.v19{vertical-align:-23.040000px;}
.v20{vertical-align:-20.880000px;}
.v1f{vertical-align:-17.280000px;}
.v9{vertical-align:-15.840000px;}
.v7{vertical-align:-14.400000px;}
.v27{vertical-align:-13.338861px;}
.v24{vertical-align:-5.760000px;}
.vd{vertical-align:-2.880000px;}
.v17{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.880000px;}
.v25{vertical-align:5.760000px;}
.v8{vertical-align:14.400000px;}
.va{vertical-align:15.840000px;}
.ve{vertical-align:17.280000px;}
.v26{vertical-align:26.288098px;}
.v2{vertical-align:27.360000px;}
.v1e{vertical-align:29.520000px;}
.vf{vertical-align:41.040000px;}
.v13{vertical-align:42.456000px;}
.v6{vertical-align:48.240000px;}
.v5{vertical-align:54.720000px;}
.v12{vertical-align:56.856000px;}
.v1a{vertical-align:59.760000px;}
.vb{vertical-align:62.640000px;}
.vc{vertical-align:65.520000px;}
.v1c{vertical-align:69.120000px;}
.v1d{vertical-align:72.720000px;}
.v23{vertical-align:103.860000px;}
.v15{vertical-align:137.520000px;}
.v14{vertical-align:144.696000px;}
.ls21{letter-spacing:-2.880000px;}
.ls60{letter-spacing:-1.008000px;}
.ls56{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.432000px;}
.ls53{letter-spacing:-0.341400px;}
.ls51{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.216000px;}
.ls44{letter-spacing:-0.205800px;}
.ls5c{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.078600px;}
.ls43{letter-spacing:-0.072000px;}
.ls5d{letter-spacing:-0.061423px;}
.ls20{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000003px;}
.ls30{letter-spacing:0.072000px;}
.ls45{letter-spacing:0.144000px;}
.ls55{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.224640px;}
.ls12{letter-spacing:0.288000px;}
.ls50{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.369600px;}
.ls5b{letter-spacing:0.378600px;}
.ls28{letter-spacing:0.432000px;}
.ls57{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.864000px;}
.ls58{letter-spacing:1.440000px;}
.ls17{letter-spacing:1.800000px;}
.ls13{letter-spacing:2.081520px;}
.ls5{letter-spacing:2.160000px;}
.ls8{letter-spacing:2.376000px;}
.ls3a{letter-spacing:2.448000px;}
.ls9{letter-spacing:2.520000px;}
.ls29{letter-spacing:2.801520px;}
.ls2f{letter-spacing:2.981520px;}
.lsa{letter-spacing:3.521520px;}
.ls37{letter-spacing:3.888000px;}
.ls3f{letter-spacing:3.960000px;}
.ls39{letter-spacing:4.057920px;}
.ls35{letter-spacing:4.176000px;}
.lsb{letter-spacing:4.241520px;}
.ls46{letter-spacing:4.245840px;}
.ls2{letter-spacing:4.320000px;}
.ls26{letter-spacing:4.608000px;}
.ls4a{letter-spacing:4.637520px;}
.ls1e{letter-spacing:4.770000px;}
.ls34{letter-spacing:5.040000px;}
.ls1b{letter-spacing:5.328000px;}
.ls4c{letter-spacing:6.401520px;}
.lsf{letter-spacing:9.281520px;}
.ls1a{letter-spacing:9.576000px;}
.ls19{letter-spacing:11.970000px;}
.ls59{letter-spacing:12.161520px;}
.ls5f{letter-spacing:12.456000px;}
.ls18{letter-spacing:12.528000px;}
.ls3e{letter-spacing:13.176000px;}
.ls2d{letter-spacing:13.320000px;}
.ls2b{letter-spacing:14.040000px;}
.ls4b{letter-spacing:15.480000px;}
.ls11{letter-spacing:15.761520px;}
.ls5a{letter-spacing:16.344000px;}
.ls4{letter-spacing:16.992000px;}
.ls3{letter-spacing:17.856000px;}
.lse{letter-spacing:18.641520px;}
.ls16{letter-spacing:19.361520px;}
.ls15{letter-spacing:19.656000px;}
.ls40{letter-spacing:19.776000px;}
.ls48{letter-spacing:19.800000px;}
.ls1d{letter-spacing:19.848000px;}
.ls10{letter-spacing:20.376000px;}
.ls32{letter-spacing:22.612320px;}
.ls36{letter-spacing:22.961520px;}
.ls4e{letter-spacing:23.141520px;}
.ls3b{letter-spacing:24.405840px;}
.ls2a{letter-spacing:42.734160px;}
.ls1c{letter-spacing:42.772320px;}
.ls3c{letter-spacing:43.488000px;}
.ls41{letter-spacing:44.377920px;}
.ls42{letter-spacing:72.432000px;}
.lsd{letter-spacing:80.136000px;}
.ls27{letter-spacing:82.224000px;}
.ls0{letter-spacing:82.980000px;}
.ls3d{letter-spacing:133.411680px;}
.ls2c{letter-spacing:170.064000px;}
.ls1f{letter-spacing:195.264000px;}
.ls2e{letter-spacing:244.224000px;}
.ls49{letter-spacing:251.256000px;}
.ls4d{letter-spacing:597.576000px;}
.ls5e{letter-spacing:607.656000px;}
.ls4f{letter-spacing:729.516000px;}
.ls47{letter-spacing:777.036000px;}
.lsc{letter-spacing:838.236000px;}
.ls14{letter-spacing:876.396000px;}
.ls31{letter-spacing:977.196000px;}
.ls38{letter-spacing:1062.156000px;}
.ls7{letter-spacing:1103.916000px;}
.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;}
}
.ws1a{word-spacing:-21.438600px;}
.ws11{word-spacing:-21.429600px;}
.ws15{word-spacing:-21.060000px;}
.ws13{word-spacing:-20.718600px;}
.ws25{word-spacing:-18.720000px;}
.ws1e{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.216000px;}
.wsf{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws24{word-spacing:-17.928000px;}
.ws1b{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws16{word-spacing:-17.568000px;}
.ws19{word-spacing:-17.280000px;}
.wse{word-spacing:-15.840003px;}
.ws3{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.768000px;}
.ws1c{word-spacing:-15.552000px;}
.ws12{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.500000px;}
.ws21{word-spacing:-13.330161px;}
.ws17{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.534400px;}
.ws8{word-spacing:-11.246400px;}
.ws4{word-spacing:-11.167800px;}
.ws23{word-spacing:-11.095704px;}
.wsb{word-spacing:-11.040600px;}
.ws1d{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws6{word-spacing:11.992440px;}
.ws1f{word-spacing:12.133440px;}
.ws5{word-spacing:12.592440px;}
.wsd{word-spacing:13.397760px;}
.ws26{word-spacing:13.592160px;}
.wsa{word-spacing:13.597920px;}
.ws22{word-spacing:66.758917px;}
.ws20{word-spacing:89.653971px;}
._19{margin-left:-18.004320px;}
._1c{margin-left:-15.914160px;}
._18{margin-left:-14.400000px;}
._1b{margin-left:-12.056880px;}
._1e{margin-left:-10.863606px;}
._f{margin-left:-9.000000px;}
._16{margin-left:-7.740000px;}
._17{margin-left:-5.660400px;}
._b{margin-left:-4.632000px;}
._3{margin-left:-3.480000px;}
._21{margin-left:-2.452080px;}
._0{margin-left:-1.432080px;}
._1{width:1.012080px;}
._13{width:2.100000px;}
._12{width:3.240000px;}
._2{width:4.464000px;}
._5{width:6.184080px;}
._4{width:7.200000px;}
._d{width:8.592000px;}
._c{width:9.688080px;}
._11{width:11.239920px;}
._e{width:12.364080px;}
._a{width:13.440000px;}
._20{width:14.603520px;}
._10{width:15.688080px;}
._7{width:16.716000px;}
._23{width:18.525120px;}
._9{width:19.656000px;}
._14{width:21.048000px;}
._8{width:22.176000px;}
._6{width:23.760000px;}
._28{width:24.760080px;}
._22{width:28.056000px;}
._25{width:31.911840px;}
._27{width:34.412160px;}
._26{width:39.528000px;}
._1d{width:50.521434px;}
._2c{width:60.091920px;}
._24{width:74.088000px;}
._29{width:79.123343px;}
._1f{width:93.010320px;}
._1a{width:96.367920px;}
._15{width:637.896000px;}
._2b{width:1204.116000px;}
._2a{width:1224.276000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:28.339807px;}
.fs11{font-size:29.030213px;}
.fsb{font-size:29.148848px;}
.fs9{font-size:33.775976px;}
.fsf{font-size:33.866984px;}
.fse{font-size:33.877574px;}
.fsa{font-size:34.005385px;}
.fsc{font-size:39.805352px;}
.fsd{font-size:39.912605px;}
.fs10{font-size:39.925086px;}
.fs6{font-size:40.075713px;}
.fs7{font-size:48.171164px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:0.180000px;}
.y11c{bottom:2.160000px;}
.y129{bottom:2.340000px;}
.yef{bottom:2.700000px;}
.yd1{bottom:3.960000px;}
.y11f{bottom:4.500000px;}
.ycb{bottom:16.560000px;}
.y12e{bottom:19.620000px;}
.ybe{bottom:19.833320px;}
.yb4{bottom:19.914371px;}
.y109{bottom:20.700000px;}
.yf4{bottom:24.660000px;}
.yb5{bottom:36.546336px;}
.yab{bottom:36.695686px;}
.yf3{bottom:45.360000px;}
.yd0{bottom:45.540000px;}
.yb6{bottom:47.322363px;}
.yac{bottom:50.647634px;}
.y107{bottom:66.060000px;}
.ycf{bottom:66.240000px;}
.yb3{bottom:73.094510px;}
.y4e{bottom:85.896000px;}
.y106{bottom:86.760000px;}
.yce{bottom:86.940000px;}
.yb7{bottom:90.315757px;}
.y153{bottom:90.936000px;}
.y136{bottom:96.876000px;}
.ybd{bottom:97.162336px;}
.ydf{bottom:97.236000px;}
.yad{bottom:101.402915px;}
.y116{bottom:102.816000px;}
.y7c{bottom:102.996000px;}
.y105{bottom:107.460000px;}
.ycd{bottom:107.640000px;}
.y4c{bottom:108.756000px;}
.y4d{bottom:109.476000px;}
.y152{bottom:111.636000px;}
.yea{bottom:117.036000px;}
.y135{bottom:117.576000px;}
.yde{bottom:117.936000px;}
.y115{bottom:123.516000px;}
.y7b{bottom:123.696000px;}
.y104{bottom:128.160000px;}
.ybb{bottom:129.283767px;}
.yb0{bottom:129.812100px;}
.y4b{bottom:129.816000px;}
.y27{bottom:131.076000px;}
.y151{bottom:132.336000px;}
.yb8{bottom:133.309150px;}
.ye9{bottom:137.736000px;}
.y134{bottom:138.276000px;}
.ydd{bottom:138.636000px;}
.yb2{bottom:139.213511px;}
.y114{bottom:140.256000px;}
.y26{bottom:143.136000px;}
.y7a{bottom:144.396000px;}
.y103{bottom:148.860000px;}
.y4a{bottom:150.870000px;}
.yae{bottom:152.255602px;}
.y150{bottom:153.030000px;}
.ye8{bottom:158.430000px;}
.y133{bottom:158.970000px;}
.ydc{bottom:159.330000px;}
.y113{bottom:160.950000px;}
.y79{bottom:165.090000px;}
.y102{bottom:169.560000px;}
.y49{bottom:171.570000px;}
.y14f{bottom:173.730000px;}
.y110{bottom:174.990000px;}
.yf0{bottom:175.005000px;}
.yb9{bottom:176.305967px;}
.ye7{bottom:179.130000px;}
.y132{bottom:179.670000px;}
.ydb{bottom:180.030000px;}
.yc0{bottom:181.137016px;}
.y25{bottom:181.650000px;}
.y78{bottom:185.790000px;}
.ya9{bottom:189.030000px;}
.y101{bottom:190.305000px;}
.y48{bottom:192.270000px;}
.y14e{bottom:194.430000px;}
.ybf{bottom:194.831309px;}
.ye6{bottom:196.590000px;}
.y131{bottom:200.370000px;}
.yda{bottom:200.730000px;}
.yaf{bottom:203.108289px;}
.y24{bottom:204.690000px;}
.y77{bottom:206.490000px;}
.y100{bottom:211.005000px;}
.ya8{bottom:211.890000px;}
.y47{bottom:212.970000px;}
.y14d{bottom:215.130000px;}
.ye5{bottom:218.010000px;}
.yba{bottom:219.300501px;}
.y130{bottom:221.070000px;}
.yd9{bottom:221.430000px;}
.y76{bottom:227.190000px;}
.y23{bottom:227.910000px;}
.ybc{bottom:231.182398px;}
.yff{bottom:231.705000px;}
.yb1{bottom:232.127152px;}
.ya7{bottom:232.950000px;}
.y46{bottom:233.670000px;}
.y126{bottom:235.290000px;}
.y14c{bottom:235.830000px;}
.y12f{bottom:237.810000px;}
.yd8{bottom:242.130000px;}
.y75{bottom:247.890000px;}
.y22{bottom:248.970000px;}
.y45{bottom:250.410000px;}
.yfe{bottom:252.405000px;}
.ya6{bottom:255.810000px;}
.y125{bottom:255.990000px;}
.y14b{bottom:256.530000px;}
.yd7{bottom:262.830000px;}
.y74{bottom:268.590000px;}
.y21{bottom:270.030000px;}
.yfd{bottom:273.105000px;}
.y124{bottom:276.690000px;}
.ya5{bottom:276.870000px;}
.y14a{bottom:277.230000px;}
.y12d{bottom:279.210000px;}
.yd6{bottom:283.530000px;}
.y73{bottom:289.290000px;}
.y20{bottom:290.730000px;}
.yfc{bottom:293.805000px;}
.y123{bottom:297.390000px;}
.ya4{bottom:297.930000px;}
.yd5{bottom:304.230000px;}
.y72{bottom:309.990000px;}
.y1f{bottom:311.430000px;}
.yfb{bottom:314.505000px;}
.y122{bottom:318.090000px;}
.y149{bottom:318.630000px;}
.ya3{bottom:321.150000px;}
.yd4{bottom:324.930000px;}
.y71{bottom:330.690000px;}
.y1e{bottom:331.770000px;}
.yfa{bottom:335.205000px;}
.y121{bottom:338.835000px;}
.y148{bottom:339.375000px;}
.ya2{bottom:344.415000px;}
.yd3{bottom:345.675000px;}
.y70{bottom:351.435000px;}
.y120{bottom:355.575000px;}
.yf9{bottom:355.905000px;}
.y147{bottom:359.895000px;}
.ya1{bottom:365.475000px;}
.yd2{bottom:366.375000px;}
.y146{bottom:371.955000px;}
.y6f{bottom:372.135000px;}
.y1d{bottom:372.675000px;}
.yf8{bottom:376.605000px;}
.ycc{bottom:383.115000px;}
.ya0{bottom:386.175000px;}
.y1c{bottom:393.015000px;}
.y6e{bottom:393.375000px;}
.y112{bottom:394.635000px;}
.y11e{bottom:396.975000px;}
.yf7{bottom:397.305000px;}
.y145{bottom:404.715000px;}
.y9f{bottom:406.875000px;}
.y111{bottom:415.335000px;}
.y6d{bottom:416.955000px;}
.y9e{bottom:427.575000px;}
.y10f{bottom:436.035000px;}
.y1b{bottom:437.475000px;}
.y6c{bottom:437.655000px;}
.y9d{bottom:448.635000px;}
.y12c{bottom:450.255000px;}
.y1a{bottom:458.175000px;}
.y6b{bottom:458.355000px;}
.y9c{bottom:469.335000px;}
.y144{bottom:469.695000px;}
.ye4{bottom:473.835000px;}
.y19{bottom:478.875000px;}
.y6a{bottom:479.055000px;}
.y9b{bottom:490.035000px;}
.y143{bottom:490.395000px;}
.ye2{bottom:495.255000px;}
.y69{bottom:499.755000px;}
.y18{bottom:500.115000px;}
.y44{bottom:502.815000px;}
.yca{bottom:507.495000px;}
.y9a{bottom:510.735000px;}
.y142{bottom:511.095000px;}
.y12b{bottom:512.355000px;}
.y17{bottom:517.395000px;}
.y68{bottom:520.455000px;}
.y43{bottom:522.075000px;}
.y41{bottom:528.555000px;}
.y99{bottom:531.795000px;}
.y42{bottom:540.435000px;}
.y67{bottom:541.155000px;}
.y3e{bottom:544.575000px;}
.y11d{bottom:549.975000px;}
.y141{bottom:552.495000px;}
.y98{bottom:552.855000px;}
.y40{bottom:555.375000px;}
.y16{bottom:562.035000px;}
.y66{bottom:562.395000px;}
.yf6{bottom:564.915000px;}
.y140{bottom:573.195000px;}
.y97{bottom:573.555000px;}
.y3f{bottom:573.735000px;}
.y15{bottom:582.915000px;}
.yf5{bottom:585.615000px;}
.y65{bottom:585.975000px;}
.y3d{bottom:586.515000px;}
.y11b{bottom:591.375000px;}
.y13f{bottom:593.895000px;}
.y96{bottom:594.255000px;}
.y14{bottom:603.975000px;}
.y64{bottom:606.345000px;}
.y3c{bottom:607.245000px;}
.y13e{bottom:614.625000px;}
.y95{bottom:614.985000px;}
.y13{bottom:625.065000px;}
.y10e{bottom:627.765000px;}
.y3b{bottom:628.305000px;}
.y13d{bottom:635.325000px;}
.y94{bottom:636.225000px;}
.y12{bottom:645.765000px;}
.y3a{bottom:649.005000px;}
.y63{bottom:650.805000px;}
.y13c{bottom:656.025000px;}
.y93{bottom:659.805000px;}
.y12a{bottom:663.585000px;}
.y11{bottom:667.005000px;}
.y39{bottom:669.705000px;}
.y62{bottom:671.505000px;}
.y13b{bottom:676.725000px;}
.y92{bottom:680.505000px;}
.y10d{bottom:689.865000px;}
.y10{bottom:690.585000px;}
.y61{bottom:692.205000px;}
.y13a{bottom:697.425000px;}
.y91{bottom:701.205000px;}
.y10c{bottom:710.565000px;}
.yf{bottom:711.285000px;}
.yc9{bottom:712.905000px;}
.y38{bottom:713.805000px;}
.y139{bottom:718.125000px;}
.y90{bottom:721.905000px;}
.y60{bottom:723.345000px;}
.ye{bottom:731.985000px;}
.yc8{bottom:733.605000px;}
.y37{bottom:734.505000px;}
.y138{bottom:738.825000px;}
.y8f{bottom:742.605000px;}
.y128{bottom:746.385000px;}
.y11a{bottom:746.565000px;}
.y5f{bottom:750.165000px;}
.ye1{bottom:751.245000px;}
.yc7{bottom:754.305000px;}
.y36{bottom:755.205000px;}
.y137{bottom:755.565000px;}
.yf2{bottom:756.645000px;}
.yd{bottom:759.525000px;}
.y8e{bottom:763.305000px;}
.y5e{bottom:770.865000px;}
.ye0{bottom:772.665000px;}
.yc{bottom:773.385000px;}
.yc6{bottom:775.545000px;}
.y35{bottom:775.905000px;}
.y8d{bottom:784.005000px;}
.y119{bottom:787.965000px;}
.y5d{bottom:791.565000px;}
.yc5{bottom:799.125000px;}
.yb{bottom:800.925000px;}
.y8c{bottom:804.705000px;}
.y5c{bottom:812.265000px;}
.ya{bottom:814.785000px;}
.yf1{bottom:818.745000px;}
.yc4{bottom:819.825000px;}
.y34{bottom:822.165000px;}
.y8b{bottom:825.405000px;}
.y5b{bottom:835.125000px;}
.yee{bottom:839.445000px;}
.yc3{bottom:840.525000px;}
.y9{bottom:842.325000px;}
.y33{bottom:842.865000px;}
.y8a{bottom:846.105000px;}
.y8{bottom:856.185000px;}
.yc2{bottom:861.225000px;}
.y32{bottom:863.565000px;}
.y89{bottom:866.805000px;}
.y5a{bottom:867.705000px;}
.y7{bottom:876.930000px;}
.yaa{bottom:877.919919px;}
.yc1{bottom:878.010000px;}
.y10b{bottom:881.610000px;}
.y31{bottom:884.670000px;}
.y88{bottom:887.550000px;}
.y59{bottom:894.570000px;}
.y6{bottom:897.630000px;}
.y127{bottom:899.610000px;}
.y30{bottom:905.370000px;}
.y87{bottom:908.250000px;}
.y57{bottom:917.430000px;}
.y58{bottom:918.150000px;}
.y10a{bottom:923.010000px;}
.y86{bottom:928.950000px;}
.y5{bottom:937.950000px;}
.y56{bottom:938.490000px;}
.y118{bottom:941.010000px;}
.y108{bottom:943.710000px;}
.y2f{bottom:949.470000px;}
.y85{bottom:949.650000px;}
.y4{bottom:953.430000px;}
.y55{bottom:959.550000px;}
.y2e{bottom:970.170000px;}
.y84{bottom:970.350000px;}
.y54{bottom:980.250000px;}
.y117{bottom:982.410000px;}
.y3{bottom:988.710000px;}
.y83{bottom:991.050000px;}
.y2d{bottom:991.230000px;}
.y82{bottom:1011.750000px;}
.y2c{bottom:1011.930000px;}
.y2{bottom:1012.830000px;}
.y53{bottom:1028.850000px;}
.y81{bottom:1032.450000px;}
.yed{bottom:1035.150000px;}
.y2b{bottom:1038.210000px;}
.y52{bottom:1049.550000px;}
.y2a{bottom:1050.270000px;}
.y80{bottom:1053.150000px;}
.yec{bottom:1055.850000px;}
.y51{bottom:1070.250000px;}
.y7f{bottom:1073.850000px;}
.y1{bottom:1074.210000px;}
.yeb{bottom:1076.550000px;}
.y29{bottom:1090.410000px;}
.y50{bottom:1090.950000px;}
.y7e{bottom:1094.550000px;}
.y28{bottom:1102.470000px;}
.y4f{bottom:1114.530000px;}
.y7d{bottom:1115.790000px;}
.h2a{height:20.700000px;}
.h1f{height:35.227288px;}
.h25{height:35.322206px;}
.h24{height:35.333251px;}
.h20{height:35.466554px;}
.h31{height:41.400000px;}
.h21{height:41.515738px;}
.h23{height:41.627600px;}
.h26{height:41.640617px;}
.h1d{height:41.797716px;}
.h7{height:47.344922px;}
.h4{height:52.998047px;}
.h1e{height:55.845632px;}
.h2d{height:62.100000px;}
.h1b{height:63.035156px;}
.h6{height:70.664062px;}
.h8{height:72.562500px;}
.h5{height:74.704922px;}
.h36{height:82.800000px;}
.h3{height:84.898125px;}
.h14{height:90.408516px;}
.h1a{height:100.695938px;}
.h19{height:103.575937px;}
.h2{height:105.996094px;}
.h28{height:124.380000px;}
.h9{height:127.335938px;}
.h18{height:130.215938px;}
.h16{height:130.935937px;}
.h38{height:151.230000px;}
.h33{height:153.000000px;}
.h34{height:153.030000px;}
.h37{height:153.210000px;}
.h35{height:155.190000px;}
.h15{height:156.855937px;}
.h2e{height:171.030000px;}
.hb{height:178.455937px;}
.hc{height:178.635937px;}
.h27{height:180.750000px;}
.h39{height:182.055938px;}
.hd{height:184.191937px;}
.hf{height:184.215937px;}
.h30{height:191.700000px;}
.h2c{height:191.730000px;}
.h13{height:200.055937px;}
.h32{height:212.970000px;}
.h17{height:217.335938px;}
.h10{height:227.928516px;}
.ha{height:230.295938px;}
.h11{height:232.455937px;}
.he{height:235.104516px;}
.h12{height:235.128516px;}
.h29{height:255.090000px;}
.h2b{height:255.270000px;}
.h22{height:256.352368px;}
.h1c{height:257.399983px;}
.h2f{height:414.030000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:217.830000px;}
.w7{width:220.530000px;}
.w5{width:236.730000px;}
.wa{width:322.275000px;}
.w4{width:326.165192px;}
.w3{width:328.503763px;}
.we{width:329.115000px;}
.wc{width:329.250000px;}
.wd{width:329.655000px;}
.w9{width:336.810000px;}
.w6{width:422.535000px;}
.wb{width:659.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:8.100000px;}
.x24{left:26.937099px;}
.x20{left:39.402877px;}
.x27{left:52.227924px;}
.x1f{left:55.386892px;}
.x2b{left:102.137110px;}
.x4{left:106.415987px;}
.x2{left:110.015987px;}
.x2a{left:133.491224px;}
.x3d{left:135.215987px;}
.x25{left:136.407621px;}
.x5{left:140.795987px;}
.x23{left:166.766208px;}
.x29{left:175.032158px;}
.x22{left:177.822871px;}
.x19{left:194.969987px;}
.xf{left:200.189987px;}
.x2d{left:228.639000px;}
.x35{left:236.025000px;}
.x33{left:237.270000px;}
.x31{left:240.339000px;}
.x1{left:254.729987px;}
.x1c{left:281.774987px;}
.x28{left:306.406754px;}
.x21{left:308.804600px;}
.xb{left:314.354987px;}
.x3a{left:320.979000px;}
.x3{left:322.814987px;}
.x39{left:324.075000px;}
.x37{left:325.299000px;}
.x32{left:328.395000px;}
.x2f{left:329.835000px;}
.x38{left:332.139000px;}
.x12{left:340.454987px;}
.xd{left:341.894987px;}
.x2e{left:343.155000px;}
.x10{left:351.434987px;}
.x1a{left:358.994987px;}
.x8{left:365.834987px;}
.xa{left:375.374987px;}
.x15{left:388.154987px;}
.x17{left:395.174987px;}
.x16{left:398.774987px;}
.x3c{left:408.854987px;}
.x14{left:416.594987px;}
.x13{left:420.194987px;}
.x26{left:434.939959px;}
.x6{left:436.034987px;}
.x36{left:443.235000px;}
.x7{left:464.114987px;}
.xc{left:473.864987px;}
.xe{left:476.384987px;}
.x9{left:488.984987px;}
.x3b{left:497.984987px;}
.x1b{left:524.804987px;}
.x1e{left:530.024987px;}
.x34{left:546.945000px;}
.x1d{left:573.584987px;}
.x11{left:575.744987px;}
.x18{left:667.949987px;}
.x2c{left:761.189987px;}
@media print{
.v22{vertical-align:-119.200000pt;}
.v4{vertical-align:-115.840000pt;}
.v10{vertical-align:-102.400000pt;}
.v21{vertical-align:-88.320000pt;}
.v16{vertical-align:-83.200000pt;}
.v18{vertical-align:-75.520000pt;}
.v28{vertical-align:-73.600000pt;}
.v1{vertical-align:-69.760000pt;}
.v1b{vertical-align:-32.640000pt;}
.v3{vertical-align:-24.320000pt;}
.v19{vertical-align:-20.480000pt;}
.v20{vertical-align:-18.560000pt;}
.v1f{vertical-align:-15.360000pt;}
.v9{vertical-align:-14.080000pt;}
.v7{vertical-align:-12.800000pt;}
.v27{vertical-align:-11.856765pt;}
.v24{vertical-align:-5.120000pt;}
.vd{vertical-align:-2.560000pt;}
.v17{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:2.560000pt;}
.v25{vertical-align:5.120000pt;}
.v8{vertical-align:12.800000pt;}
.va{vertical-align:14.080000pt;}
.ve{vertical-align:15.360000pt;}
.v26{vertical-align:23.367198pt;}
.v2{vertical-align:24.320000pt;}
.v1e{vertical-align:26.240000pt;}
.vf{vertical-align:36.480000pt;}
.v13{vertical-align:37.738667pt;}
.v6{vertical-align:42.880000pt;}
.v5{vertical-align:48.640000pt;}
.v12{vertical-align:50.538667pt;}
.v1a{vertical-align:53.120000pt;}
.vb{vertical-align:55.680000pt;}
.vc{vertical-align:58.240000pt;}
.v1c{vertical-align:61.440000pt;}
.v1d{vertical-align:64.640000pt;}
.v23{vertical-align:92.320000pt;}
.v15{vertical-align:122.240000pt;}
.v14{vertical-align:128.618667pt;}
.ls21{letter-spacing:-2.560000pt;}
.ls60{letter-spacing:-0.896000pt;}
.ls56{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.384000pt;}
.ls53{letter-spacing:-0.303467pt;}
.ls51{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls44{letter-spacing:-0.182933pt;}
.ls5c{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.069867pt;}
.ls43{letter-spacing:-0.064000pt;}
.ls5d{letter-spacing:-0.054598pt;}
.ls20{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000003pt;}
.ls30{letter-spacing:0.064000pt;}
.ls45{letter-spacing:0.128000pt;}
.ls55{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.199680pt;}
.ls12{letter-spacing:0.256000pt;}
.ls50{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.328533pt;}
.ls5b{letter-spacing:0.336533pt;}
.ls28{letter-spacing:0.384000pt;}
.ls57{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls58{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.600000pt;}
.ls13{letter-spacing:1.850240pt;}
.ls5{letter-spacing:1.920000pt;}
.ls8{letter-spacing:2.112000pt;}
.ls3a{letter-spacing:2.176000pt;}
.ls9{letter-spacing:2.240000pt;}
.ls29{letter-spacing:2.490240pt;}
.ls2f{letter-spacing:2.650240pt;}
.lsa{letter-spacing:3.130240pt;}
.ls37{letter-spacing:3.456000pt;}
.ls3f{letter-spacing:3.520000pt;}
.ls39{letter-spacing:3.607040pt;}
.ls35{letter-spacing:3.712000pt;}
.lsb{letter-spacing:3.770240pt;}
.ls46{letter-spacing:3.774080pt;}
.ls2{letter-spacing:3.840000pt;}
.ls26{letter-spacing:4.096000pt;}
.ls4a{letter-spacing:4.122240pt;}
.ls1e{letter-spacing:4.240000pt;}
.ls34{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:4.736000pt;}
.ls4c{letter-spacing:5.690240pt;}
.lsf{letter-spacing:8.250240pt;}
.ls1a{letter-spacing:8.512000pt;}
.ls19{letter-spacing:10.640000pt;}
.ls59{letter-spacing:10.810240pt;}
.ls5f{letter-spacing:11.072000pt;}
.ls18{letter-spacing:11.136000pt;}
.ls3e{letter-spacing:11.712000pt;}
.ls2d{letter-spacing:11.840000pt;}
.ls2b{letter-spacing:12.480000pt;}
.ls4b{letter-spacing:13.760000pt;}
.ls11{letter-spacing:14.010240pt;}
.ls5a{letter-spacing:14.528000pt;}
.ls4{letter-spacing:15.104000pt;}
.ls3{letter-spacing:15.872000pt;}
.lse{letter-spacing:16.570240pt;}
.ls16{letter-spacing:17.210240pt;}
.ls15{letter-spacing:17.472000pt;}
.ls40{letter-spacing:17.578667pt;}
.ls48{letter-spacing:17.600000pt;}
.ls1d{letter-spacing:17.642667pt;}
.ls10{letter-spacing:18.112000pt;}
.ls32{letter-spacing:20.099840pt;}
.ls36{letter-spacing:20.410240pt;}
.ls4e{letter-spacing:20.570240pt;}
.ls3b{letter-spacing:21.694080pt;}
.ls2a{letter-spacing:37.985920pt;}
.ls1c{letter-spacing:38.019840pt;}
.ls3c{letter-spacing:38.656000pt;}
.ls41{letter-spacing:39.447040pt;}
.ls42{letter-spacing:64.384000pt;}
.lsd{letter-spacing:71.232000pt;}
.ls27{letter-spacing:73.088000pt;}
.ls0{letter-spacing:73.760000pt;}
.ls3d{letter-spacing:118.588160pt;}
.ls2c{letter-spacing:151.168000pt;}
.ls1f{letter-spacing:173.568000pt;}
.ls2e{letter-spacing:217.088000pt;}
.ls49{letter-spacing:223.338667pt;}
.ls4d{letter-spacing:531.178667pt;}
.ls5e{letter-spacing:540.138667pt;}
.ls4f{letter-spacing:648.458667pt;}
.ls47{letter-spacing:690.698667pt;}
.lsc{letter-spacing:745.098667pt;}
.ls14{letter-spacing:779.018667pt;}
.ls31{letter-spacing:868.618667pt;}
.ls38{letter-spacing:944.138667pt;}
.ls7{letter-spacing:981.258667pt;}
.ws1a{word-spacing:-19.056533pt;}
.ws11{word-spacing:-19.048533pt;}
.ws15{word-spacing:-18.720000pt;}
.ws13{word-spacing:-18.416533pt;}
.ws25{word-spacing:-16.640000pt;}
.ws1e{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws24{word-spacing:-15.936000pt;}
.ws1b{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws16{word-spacing:-15.616000pt;}
.ws19{word-spacing:-15.360000pt;}
.wse{word-spacing:-14.080003pt;}
.ws3{word-spacing:-14.080000pt;}
.ws9{word-spacing:-14.016000pt;}
.ws1c{word-spacing:-13.824000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.000000pt;}
.ws21{word-spacing:-11.849032pt;}
.ws17{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.252800pt;}
.ws8{word-spacing:-9.996800pt;}
.ws4{word-spacing:-9.926933pt;}
.ws23{word-spacing:-9.862848pt;}
.wsb{word-spacing:-9.813867pt;}
.ws1d{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws6{word-spacing:10.659947pt;}
.ws1f{word-spacing:10.785280pt;}
.ws5{word-spacing:11.193280pt;}
.wsd{word-spacing:11.909120pt;}
.ws26{word-spacing:12.081920pt;}
.wsa{word-spacing:12.087040pt;}
.ws22{word-spacing:59.341260pt;}
.ws20{word-spacing:79.692419pt;}
._19{margin-left:-16.003840pt;}
._1c{margin-left:-14.145920pt;}
._18{margin-left:-12.800000pt;}
._1b{margin-left:-10.717227pt;}
._1e{margin-left:-9.656538pt;}
._f{margin-left:-8.000000pt;}
._16{margin-left:-6.880000pt;}
._17{margin-left:-5.031467pt;}
._b{margin-left:-4.117333pt;}
._3{margin-left:-3.093333pt;}
._21{margin-left:-2.179627pt;}
._0{margin-left:-1.272960pt;}
._1{width:0.899627pt;}
._13{width:1.866667pt;}
._12{width:2.880000pt;}
._2{width:3.968000pt;}
._5{width:5.496960pt;}
._4{width:6.400000pt;}
._d{width:7.637333pt;}
._c{width:8.611627pt;}
._11{width:9.991040pt;}
._e{width:10.990293pt;}
._a{width:11.946667pt;}
._20{width:12.980907pt;}
._10{width:13.944960pt;}
._7{width:14.858667pt;}
._23{width:16.466773pt;}
._9{width:17.472000pt;}
._14{width:18.709333pt;}
._8{width:19.712000pt;}
._6{width:21.120000pt;}
._28{width:22.008960pt;}
._22{width:24.938667pt;}
._25{width:28.366080pt;}
._27{width:30.588587pt;}
._26{width:35.136000pt;}
._1d{width:44.907942pt;}
._2c{width:53.415040pt;}
._24{width:65.856000pt;}
._29{width:70.331860pt;}
._1f{width:82.675840pt;}
._1a{width:85.660373pt;}
._15{width:567.018667pt;}
._2b{width:1070.325333pt;}
._2a{width:1088.245333pt;}
.fs8{font-size:25.190940pt;}
.fs11{font-size:25.804634pt;}
.fsb{font-size:25.910087pt;}
.fs9{font-size:30.023090pt;}
.fsf{font-size:30.103986pt;}
.fse{font-size:30.113399pt;}
.fsa{font-size:30.227009pt;}
.fsc{font-size:35.382535pt;}
.fsd{font-size:35.477871pt;}
.fs10{font-size:35.488965pt;}
.fs6{font-size:35.622856pt;}
.fs7{font-size:42.818812pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:0.160000pt;}
.y11c{bottom:1.920000pt;}
.y129{bottom:2.080000pt;}
.yef{bottom:2.400000pt;}
.yd1{bottom:3.520000pt;}
.y11f{bottom:4.000000pt;}
.ycb{bottom:14.720000pt;}
.y12e{bottom:17.440000pt;}
.ybe{bottom:17.629618pt;}
.yb4{bottom:17.701663pt;}
.y109{bottom:18.400000pt;}
.yf4{bottom:21.920000pt;}
.yb5{bottom:32.485632pt;}
.yab{bottom:32.618387pt;}
.yf3{bottom:40.320000pt;}
.yd0{bottom:40.480000pt;}
.yb6{bottom:42.064323pt;}
.yac{bottom:45.020119pt;}
.y107{bottom:58.720000pt;}
.ycf{bottom:58.880000pt;}
.yb3{bottom:64.972898pt;}
.y4e{bottom:76.352000pt;}
.y106{bottom:77.120000pt;}
.yce{bottom:77.280000pt;}
.yb7{bottom:80.280673pt;}
.y153{bottom:80.832000pt;}
.y136{bottom:86.112000pt;}
.ybd{bottom:86.366521pt;}
.ydf{bottom:86.432000pt;}
.yad{bottom:90.135924pt;}
.y116{bottom:91.392000pt;}
.y7c{bottom:91.552000pt;}
.y105{bottom:95.520000pt;}
.ycd{bottom:95.680000pt;}
.y4c{bottom:96.672000pt;}
.y4d{bottom:97.312000pt;}
.y152{bottom:99.232000pt;}
.yea{bottom:104.032000pt;}
.y135{bottom:104.512000pt;}
.yde{bottom:104.832000pt;}
.y115{bottom:109.792000pt;}
.y7b{bottom:109.952000pt;}
.y104{bottom:113.920000pt;}
.ybb{bottom:114.918904pt;}
.yb0{bottom:115.388533pt;}
.y4b{bottom:115.392000pt;}
.y27{bottom:116.512000pt;}
.y151{bottom:117.632000pt;}
.yb8{bottom:118.497022pt;}
.ye9{bottom:122.432000pt;}
.y134{bottom:122.912000pt;}
.ydd{bottom:123.232000pt;}
.yb2{bottom:123.745343pt;}
.y114{bottom:124.672000pt;}
.y26{bottom:127.232000pt;}
.y7a{bottom:128.352000pt;}
.y103{bottom:132.320000pt;}
.y4a{bottom:134.106667pt;}
.yae{bottom:135.338313pt;}
.y150{bottom:136.026667pt;}
.ye8{bottom:140.826667pt;}
.y133{bottom:141.306667pt;}
.ydc{bottom:141.626667pt;}
.y113{bottom:143.066667pt;}
.y79{bottom:146.746667pt;}
.y102{bottom:150.720000pt;}
.y49{bottom:152.506667pt;}
.y14f{bottom:154.426667pt;}
.y110{bottom:155.546667pt;}
.yf0{bottom:155.560000pt;}
.yb9{bottom:156.716415pt;}
.ye7{bottom:159.226667pt;}
.y132{bottom:159.706667pt;}
.ydb{bottom:160.026667pt;}
.yc0{bottom:161.010681pt;}
.y25{bottom:161.466667pt;}
.y78{bottom:165.146667pt;}
.ya9{bottom:168.026667pt;}
.y101{bottom:169.160000pt;}
.y48{bottom:170.906667pt;}
.y14e{bottom:172.826667pt;}
.ybf{bottom:173.183386pt;}
.ye6{bottom:174.746667pt;}
.y131{bottom:178.106667pt;}
.yda{bottom:178.426667pt;}
.yaf{bottom:180.540701pt;}
.y24{bottom:181.946667pt;}
.y77{bottom:183.546667pt;}
.y100{bottom:187.560000pt;}
.ya8{bottom:188.346667pt;}
.y47{bottom:189.306667pt;}
.y14d{bottom:191.226667pt;}
.ye5{bottom:193.786667pt;}
.yba{bottom:194.933779pt;}
.y130{bottom:196.506667pt;}
.yd9{bottom:196.826667pt;}
.y76{bottom:201.946667pt;}
.y23{bottom:202.586667pt;}
.ybc{bottom:205.495465pt;}
.yff{bottom:205.960000pt;}
.yb1{bottom:206.335246pt;}
.ya7{bottom:207.066667pt;}
.y46{bottom:207.706667pt;}
.y126{bottom:209.146667pt;}
.y14c{bottom:209.626667pt;}
.y12f{bottom:211.386667pt;}
.yd8{bottom:215.226667pt;}
.y75{bottom:220.346667pt;}
.y22{bottom:221.306667pt;}
.y45{bottom:222.586667pt;}
.yfe{bottom:224.360000pt;}
.ya6{bottom:227.386667pt;}
.y125{bottom:227.546667pt;}
.y14b{bottom:228.026667pt;}
.yd7{bottom:233.626667pt;}
.y74{bottom:238.746667pt;}
.y21{bottom:240.026667pt;}
.yfd{bottom:242.760000pt;}
.y124{bottom:245.946667pt;}
.ya5{bottom:246.106667pt;}
.y14a{bottom:246.426667pt;}
.y12d{bottom:248.186667pt;}
.yd6{bottom:252.026667pt;}
.y73{bottom:257.146667pt;}
.y20{bottom:258.426667pt;}
.yfc{bottom:261.160000pt;}
.y123{bottom:264.346667pt;}
.ya4{bottom:264.826667pt;}
.yd5{bottom:270.426667pt;}
.y72{bottom:275.546667pt;}
.y1f{bottom:276.826667pt;}
.yfb{bottom:279.560000pt;}
.y122{bottom:282.746667pt;}
.y149{bottom:283.226667pt;}
.ya3{bottom:285.466667pt;}
.yd4{bottom:288.826667pt;}
.y71{bottom:293.946667pt;}
.y1e{bottom:294.906667pt;}
.yfa{bottom:297.960000pt;}
.y121{bottom:301.186667pt;}
.y148{bottom:301.666667pt;}
.ya2{bottom:306.146667pt;}
.yd3{bottom:307.266667pt;}
.y70{bottom:312.386667pt;}
.y120{bottom:316.066667pt;}
.yf9{bottom:316.360000pt;}
.y147{bottom:319.906667pt;}
.ya1{bottom:324.866667pt;}
.yd2{bottom:325.666667pt;}
.y146{bottom:330.626667pt;}
.y6f{bottom:330.786667pt;}
.y1d{bottom:331.266667pt;}
.yf8{bottom:334.760000pt;}
.ycc{bottom:340.546667pt;}
.ya0{bottom:343.266667pt;}
.y1c{bottom:349.346667pt;}
.y6e{bottom:349.666667pt;}
.y112{bottom:350.786667pt;}
.y11e{bottom:352.866667pt;}
.yf7{bottom:353.160000pt;}
.y145{bottom:359.746667pt;}
.y9f{bottom:361.666667pt;}
.y111{bottom:369.186667pt;}
.y6d{bottom:370.626667pt;}
.y9e{bottom:380.066667pt;}
.y10f{bottom:387.586667pt;}
.y1b{bottom:388.866667pt;}
.y6c{bottom:389.026667pt;}
.y9d{bottom:398.786667pt;}
.y12c{bottom:400.226667pt;}
.y1a{bottom:407.266667pt;}
.y6b{bottom:407.426667pt;}
.y9c{bottom:417.186667pt;}
.y144{bottom:417.506667pt;}
.ye4{bottom:421.186667pt;}
.y19{bottom:425.666667pt;}
.y6a{bottom:425.826667pt;}
.y9b{bottom:435.586667pt;}
.y143{bottom:435.906667pt;}
.ye2{bottom:440.226667pt;}
.y69{bottom:444.226667pt;}
.y18{bottom:444.546667pt;}
.y44{bottom:446.946667pt;}
.yca{bottom:451.106667pt;}
.y9a{bottom:453.986667pt;}
.y142{bottom:454.306667pt;}
.y12b{bottom:455.426667pt;}
.y17{bottom:459.906667pt;}
.y68{bottom:462.626667pt;}
.y43{bottom:464.066667pt;}
.y41{bottom:469.826667pt;}
.y99{bottom:472.706667pt;}
.y42{bottom:480.386667pt;}
.y67{bottom:481.026667pt;}
.y3e{bottom:484.066667pt;}
.y11d{bottom:488.866667pt;}
.y141{bottom:491.106667pt;}
.y98{bottom:491.426667pt;}
.y40{bottom:493.666667pt;}
.y16{bottom:499.586667pt;}
.y66{bottom:499.906667pt;}
.yf6{bottom:502.146667pt;}
.y140{bottom:509.506667pt;}
.y97{bottom:509.826667pt;}
.y3f{bottom:509.986667pt;}
.y15{bottom:518.146667pt;}
.yf5{bottom:520.546667pt;}
.y65{bottom:520.866667pt;}
.y3d{bottom:521.346667pt;}
.y11b{bottom:525.666667pt;}
.y13f{bottom:527.906667pt;}
.y96{bottom:528.226667pt;}
.y14{bottom:536.866667pt;}
.y64{bottom:538.973333pt;}
.y3c{bottom:539.773333pt;}
.y13e{bottom:546.333333pt;}
.y95{bottom:546.653333pt;}
.y13{bottom:555.613333pt;}
.y10e{bottom:558.013333pt;}
.y3b{bottom:558.493333pt;}
.y13d{bottom:564.733333pt;}
.y94{bottom:565.533333pt;}
.y12{bottom:574.013333pt;}
.y3a{bottom:576.893333pt;}
.y63{bottom:578.493333pt;}
.y13c{bottom:583.133333pt;}
.y93{bottom:586.493333pt;}
.y12a{bottom:589.853333pt;}
.y11{bottom:592.893333pt;}
.y39{bottom:595.293333pt;}
.y62{bottom:596.893333pt;}
.y13b{bottom:601.533333pt;}
.y92{bottom:604.893333pt;}
.y10d{bottom:613.213333pt;}
.y10{bottom:613.853333pt;}
.y61{bottom:615.293333pt;}
.y13a{bottom:619.933333pt;}
.y91{bottom:623.293333pt;}
.y10c{bottom:631.613333pt;}
.yf{bottom:632.253333pt;}
.yc9{bottom:633.693333pt;}
.y38{bottom:634.493333pt;}
.y139{bottom:638.333333pt;}
.y90{bottom:641.693333pt;}
.y60{bottom:642.973333pt;}
.ye{bottom:650.653333pt;}
.yc8{bottom:652.093333pt;}
.y37{bottom:652.893333pt;}
.y138{bottom:656.733333pt;}
.y8f{bottom:660.093333pt;}
.y128{bottom:663.453333pt;}
.y11a{bottom:663.613333pt;}
.y5f{bottom:666.813333pt;}
.ye1{bottom:667.773333pt;}
.yc7{bottom:670.493333pt;}
.y36{bottom:671.293333pt;}
.y137{bottom:671.613333pt;}
.yf2{bottom:672.573333pt;}
.yd{bottom:675.133333pt;}
.y8e{bottom:678.493333pt;}
.y5e{bottom:685.213333pt;}
.ye0{bottom:686.813333pt;}
.yc{bottom:687.453333pt;}
.yc6{bottom:689.373333pt;}
.y35{bottom:689.693333pt;}
.y8d{bottom:696.893333pt;}
.y119{bottom:700.413333pt;}
.y5d{bottom:703.613333pt;}
.yc5{bottom:710.333333pt;}
.yb{bottom:711.933333pt;}
.y8c{bottom:715.293333pt;}
.y5c{bottom:722.013333pt;}
.ya{bottom:724.253333pt;}
.yf1{bottom:727.773333pt;}
.yc4{bottom:728.733333pt;}
.y34{bottom:730.813333pt;}
.y8b{bottom:733.693333pt;}
.y5b{bottom:742.333333pt;}
.yee{bottom:746.173333pt;}
.yc3{bottom:747.133333pt;}
.y9{bottom:748.733333pt;}
.y33{bottom:749.213333pt;}
.y8a{bottom:752.093333pt;}
.y8{bottom:761.053333pt;}
.yc2{bottom:765.533333pt;}
.y32{bottom:767.613333pt;}
.y89{bottom:770.493333pt;}
.y5a{bottom:771.293333pt;}
.y7{bottom:779.493333pt;}
.yaa{bottom:780.373261pt;}
.yc1{bottom:780.453333pt;}
.y10b{bottom:783.653333pt;}
.y31{bottom:786.373333pt;}
.y88{bottom:788.933333pt;}
.y59{bottom:795.173333pt;}
.y6{bottom:797.893333pt;}
.y127{bottom:799.653333pt;}
.y30{bottom:804.773333pt;}
.y87{bottom:807.333333pt;}
.y57{bottom:815.493333pt;}
.y58{bottom:816.133333pt;}
.y10a{bottom:820.453333pt;}
.y86{bottom:825.733333pt;}
.y5{bottom:833.733333pt;}
.y56{bottom:834.213333pt;}
.y118{bottom:836.453333pt;}
.y108{bottom:838.853333pt;}
.y2f{bottom:843.973333pt;}
.y85{bottom:844.133333pt;}
.y4{bottom:847.493333pt;}
.y55{bottom:852.933333pt;}
.y2e{bottom:862.373333pt;}
.y84{bottom:862.533333pt;}
.y54{bottom:871.333333pt;}
.y117{bottom:873.253333pt;}
.y3{bottom:878.853333pt;}
.y83{bottom:880.933333pt;}
.y2d{bottom:881.093333pt;}
.y82{bottom:899.333333pt;}
.y2c{bottom:899.493333pt;}
.y2{bottom:900.293333pt;}
.y53{bottom:914.533333pt;}
.y81{bottom:917.733333pt;}
.yed{bottom:920.133333pt;}
.y2b{bottom:922.853333pt;}
.y52{bottom:932.933333pt;}
.y2a{bottom:933.573333pt;}
.y80{bottom:936.133333pt;}
.yec{bottom:938.533333pt;}
.y51{bottom:951.333333pt;}
.y7f{bottom:954.533333pt;}
.y1{bottom:954.853333pt;}
.yeb{bottom:956.933333pt;}
.y29{bottom:969.253333pt;}
.y50{bottom:969.733333pt;}
.y7e{bottom:972.933333pt;}
.y28{bottom:979.973333pt;}
.y4f{bottom:990.693333pt;}
.y7d{bottom:991.813333pt;}
.h2a{height:18.400000pt;}
.h1f{height:31.313145pt;}
.h25{height:31.397516pt;}
.h24{height:31.407334pt;}
.h20{height:31.525826pt;}
.h31{height:36.800000pt;}
.h21{height:36.902878pt;}
.h23{height:37.002311pt;}
.h26{height:37.013882pt;}
.h1d{height:37.153525pt;}
.h7{height:42.084375pt;}
.h4{height:47.109375pt;}
.h1e{height:49.640561pt;}
.h2d{height:55.200000pt;}
.h1b{height:56.031250pt;}
.h6{height:62.812500pt;}
.h8{height:64.500000pt;}
.h5{height:66.404375pt;}
.h36{height:73.600000pt;}
.h3{height:75.465000pt;}
.h14{height:80.363125pt;}
.h1a{height:89.507500pt;}
.h19{height:92.067500pt;}
.h2{height:94.218750pt;}
.h28{height:110.560000pt;}
.h9{height:113.187500pt;}
.h18{height:115.747500pt;}
.h16{height:116.387500pt;}
.h38{height:134.426667pt;}
.h33{height:136.000000pt;}
.h34{height:136.026667pt;}
.h37{height:136.186667pt;}
.h35{height:137.946667pt;}
.h15{height:139.427500pt;}
.h2e{height:152.026667pt;}
.hb{height:158.627500pt;}
.hc{height:158.787500pt;}
.h27{height:160.666667pt;}
.h39{height:161.827500pt;}
.hd{height:163.726167pt;}
.hf{height:163.747500pt;}
.h30{height:170.400000pt;}
.h2c{height:170.426667pt;}
.h13{height:177.827500pt;}
.h32{height:189.306667pt;}
.h17{height:193.187500pt;}
.h10{height:202.603125pt;}
.ha{height:204.707500pt;}
.h11{height:206.627500pt;}
.he{height:208.981792pt;}
.h12{height:209.003125pt;}
.h29{height:226.746667pt;}
.h2b{height:226.906667pt;}
.h22{height:227.868772pt;}
.h1c{height:228.799984pt;}
.h2f{height:368.026667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:193.626667pt;}
.w7{width:196.026667pt;}
.w5{width:210.426667pt;}
.wa{width:286.466667pt;}
.w4{width:289.924615pt;}
.w3{width:292.003345pt;}
.we{width:292.546667pt;}
.wc{width:292.666667pt;}
.wd{width:293.026667pt;}
.w9{width:299.386667pt;}
.w6{width:375.586667pt;}
.wb{width:585.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:7.200000pt;}
.x24{left:23.944088pt;}
.x20{left:35.024780pt;}
.x27{left:46.424821pt;}
.x1f{left:49.232793pt;}
.x2b{left:90.788542pt;}
.x4{left:94.591988pt;}
.x2{left:97.791988pt;}
.x2a{left:118.658866pt;}
.x3d{left:120.191988pt;}
.x25{left:121.251219pt;}
.x5{left:125.151988pt;}
.x23{left:148.236629pt;}
.x29{left:155.584140pt;}
.x22{left:158.064774pt;}
.x19{left:173.306655pt;}
.xf{left:177.946655pt;}
.x2d{left:203.234667pt;}
.x35{left:209.800000pt;}
.x33{left:210.906667pt;}
.x31{left:213.634667pt;}
.x1{left:226.426655pt;}
.x1c{left:250.466655pt;}
.x28{left:272.361559pt;}
.x21{left:274.492978pt;}
.xb{left:279.426655pt;}
.x3a{left:285.314667pt;}
.x3{left:286.946655pt;}
.x39{left:288.066667pt;}
.x37{left:289.154667pt;}
.x32{left:291.906667pt;}
.x2f{left:293.186667pt;}
.x38{left:295.234667pt;}
.x12{left:302.626655pt;}
.xd{left:303.906655pt;}
.x2e{left:305.026667pt;}
.x10{left:312.386655pt;}
.x1a{left:319.106655pt;}
.x8{left:325.186655pt;}
.xa{left:333.666655pt;}
.x15{left:345.026655pt;}
.x17{left:351.266655pt;}
.x16{left:354.466655pt;}
.x3c{left:363.426655pt;}
.x14{left:370.306655pt;}
.x13{left:373.506655pt;}
.x26{left:386.613297pt;}
.x6{left:387.586655pt;}
.x36{left:393.986667pt;}
.x7{left:412.546655pt;}
.xc{left:421.213322pt;}
.xe{left:423.453322pt;}
.x9{left:434.653322pt;}
.x3b{left:442.653322pt;}
.x1b{left:466.493322pt;}
.x1e{left:471.133322pt;}
.x34{left:486.173333pt;}
.x1d{left:509.853322pt;}
.x11{left:511.773322pt;}
.x18{left:593.733322pt;}
.x2c{left:676.613322pt;}
}




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