
    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_094bce7ac42d34450632bed3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_dbb9f939f7034f2e50908fa1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.950684;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_ec2a3000711eab806d1262a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_9c33dc0afe2bb30f3ffe23ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120117;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_991411e943d670e3c337884c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ad629b36ea7858b456030bf3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_a260d47090476091dd8d4b80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.873535;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_58a2d9852bc0cbb2ed94283f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c15ae53f8b6d7fe044bafec1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.126035px;}
.ls3{letter-spacing:26.786149px;}
.ls8{letter-spacing:34.019986px;}
.ls9{letter-spacing:47.363021px;}
.ls2{letter-spacing:70.184852px;}
.ls1{letter-spacing:73.491091px;}
.ls6{letter-spacing:94.715962px;}
.ls4{letter-spacing:100.851080px;}
.lsa{letter-spacing:111.599955px;}
.ls5{letter-spacing:138.815944px;}
.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;}
}
.ws79{word-spacing:-43.446223px;}
.ws88{word-spacing:-35.310226px;}
.ws18{word-spacing:-32.831987px;}
.ws27{word-spacing:-27.414709px;}
.ws2e{word-spacing:-27.174229px;}
.ws26{word-spacing:-24.623990px;}
.ws7c{word-spacing:-21.833271px;}
.ws7b{word-spacing:-21.767787px;}
.ws7a{word-spacing:-21.641751px;}
.ws6a{word-spacing:-16.271993px;}
.ws4b{word-spacing:-14.970234px;}
.ws4a{word-spacing:-3.414935px;}
.ws43{word-spacing:-2.324118px;}
.ws1{word-spacing:-2.203315px;}
.ws1a{word-spacing:-1.604121px;}
.ws5d{word-spacing:-1.224000px;}
.ws1d{word-spacing:-0.971298px;}
.ws29{word-spacing:-0.884124px;}
.ws17{word-spacing:-0.843791px;}
.ws2d{word-spacing:-0.829422px;}
.ws69{word-spacing:-0.829415px;}
.ws53{word-spacing:-0.792000px;}
.ws8f{word-spacing:-0.699814px;}
.ws8d{word-spacing:-0.696205px;}
.ws40{word-spacing:-0.576000px;}
.ws1e{word-spacing:-0.534948px;}
.ws4d{word-spacing:-0.359586px;}
.ws61{word-spacing:-0.164128px;}
.wsb{word-spacing:-0.053946px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:0.072090px;}
.ws37{word-spacing:0.144000px;}
.ws76{word-spacing:0.288036px;}
.ws4c{word-spacing:0.360000px;}
.ws8e{word-spacing:0.429084px;}
.ws24{word-spacing:0.432000px;}
.ws78{word-spacing:0.467964px;}
.ws7d{word-spacing:0.555869px;}
.ws85{word-spacing:0.730734px;}
.wsc{word-spacing:0.792018px;}
.ws6e{word-spacing:1.007964px;}
.ws4e{word-spacing:1.080000px;}
.ws7e{word-spacing:1.275866px;}
.ws51{word-spacing:1.799999px;}
.ws71{word-spacing:1.908035px;}
.ws2{word-spacing:2.285764px;}
.ws82{word-spacing:2.303999px;}
.ws6f{word-spacing:2.448035px;}
.ws6{word-spacing:2.862053px;}
.ws65{word-spacing:3.065037px;}
.ws6c{word-spacing:3.167963px;}
.ws28{word-spacing:3.435857px;}
.ws3a{word-spacing:3.743999px;}
.ws5a{word-spacing:4.607998px;}
.ws39{word-spacing:6.623997px;}
.ws36{word-spacing:7.343997px;}
.ws60{word-spacing:7.755838px;}
.ws67{word-spacing:8.475834px;}
.ws8{word-spacing:8.712033px;}
.ws56{word-spacing:8.855996px;}
.ws5b{word-spacing:9.719996px;}
.ws1c{word-spacing:9.909215px;}
.ws46{word-spacing:9.915828px;}
.ws74{word-spacing:10.367996px;}
.ws23{word-spacing:11.082092px;}
.ws2b{word-spacing:11.355822px;}
.ws3{word-spacing:11.592067px;}
.ws63{word-spacing:12.075819px;}
.ws9{word-spacing:12.311995px;}
.ws8b{word-spacing:12.671215px;}
.ws5f{word-spacing:12.789322px;}
.ws64{word-spacing:12.795815px;}
.ws3c{word-spacing:13.823994px;}
.ws20{word-spacing:13.967958px;}
.ws84{word-spacing:14.322203px;}
.ws59{word-spacing:14.759994px;}
.ws19{word-spacing:15.675803px;}
.ws81{word-spacing:15.730512px;}
.ws3f{word-spacing:15.983994px;}
.ws80{word-spacing:16.450509px;}
.ws47{word-spacing:17.835793px;}
.ws41{word-spacing:17.890502px;}
.ws4f{word-spacing:18.359993px;}
.ws55{word-spacing:18.647993px;}
.ws83{word-spacing:18.863992px;}
.ws5c{word-spacing:19.079992px;}
.ws54{word-spacing:19.151992px;}
.ws8a{word-spacing:20.239946px;}
.ws34{word-spacing:20.303992px;}
.ws16{word-spacing:20.557450px;}
.ws13{word-spacing:20.756276px;}
.ws5{word-spacing:20.862028px;}
.ws6d{word-spacing:21.309039px;}
.ws44{word-spacing:22.875891px;}
.ws58{word-spacing:23.399991px;}
.wse{word-spacing:24.763634px;}
.wsd{word-spacing:25.271990px;}
.ws30{word-spacing:25.343990px;}
.ws32{word-spacing:26.063990px;}
.ws50{word-spacing:26.279989px;}
.ws6b{word-spacing:26.927953px;}
.ws52{word-spacing:26.999989px;}
.ws45{word-spacing:27.970458px;}
.ws57{word-spacing:28.295989px;}
.ws3b{word-spacing:28.943988px;}
.ws75{word-spacing:29.087952px;}
.ws5e{word-spacing:30.075860px;}
.ws1f{word-spacing:32.688023px;}
.ws4{word-spacing:33.911932px;}
.ws22{word-spacing:34.308022px;}
.ws7{word-spacing:36.287985px;}
.ws70{word-spacing:36.468021px;}
.ws12{word-spacing:39.476334px;}
.ws35{word-spacing:39.743984px;}
.ws49{word-spacing:40.875812px;}
.ws48{word-spacing:43.035803px;}
.ws10{word-spacing:47.501945px;}
.ws21{word-spacing:49.968016px;}
.ws3e{word-spacing:51.263979px;}
.ws33{word-spacing:52.703979px;}
.ws66{word-spacing:53.170588px;}
.ws2a{word-spacing:53.465055px;}
.ws7f{word-spacing:58.875853px;}
.ws15{word-spacing:60.906958px;}
.wsf{word-spacing:61.992029px;}
.ws2f{word-spacing:62.063975px;}
.ws89{word-spacing:66.749764px;}
.ws8c{word-spacing:66.882255px;}
.ws2c{word-spacing:68.949196px;}
.ws68{word-spacing:70.395802px;}
.ws42{word-spacing:71.115799px;}
.ws86{word-spacing:74.082260px;}
.ws1b{word-spacing:79.035885px;}
.ws72{word-spacing:81.647967px;}
.wsa{word-spacing:94.301944px;}
.ws77{word-spacing:94.788322px;}
.ws62{word-spacing:101.356267px;}
.ws31{word-spacing:109.583956px;}
.ws14{word-spacing:116.154299px;}
.ws87{word-spacing:160.002195px;}
.ws3d{word-spacing:173.663931px;}
.ws73{word-spacing:201.168280px;}
.ws38{word-spacing:237.023905px;}
.ws25{word-spacing:2098.115161px;}
._8{margin-left:-9.482802px;}
._4{margin-left:-7.452361px;}
._d{margin-left:-6.319585px;}
._10{margin-left:-4.668083px;}
._2{margin-left:-2.808751px;}
._0{margin-left:-1.008000px;}
._1{width:1.152000px;}
._3{width:2.369364px;}
._1c{width:4.142336px;}
._1e{width:15.937716px;}
._1d{width:17.207579px;}
._1f{width:18.289497px;}
._20{width:19.582344px;}
._2a{width:21.453003px;}
._21{width:24.047990px;}
._1b{width:25.884816px;}
._f{width:27.856027px;}
._25{width:30.370322px;}
._5{width:32.748592px;}
._15{width:33.771461px;}
._12{width:36.815636px;}
._7{width:38.753876px;}
._9{width:40.859838px;}
._e{width:41.976630px;}
._16{width:43.721900px;}
._a{width:47.032317px;}
._b{width:48.096161px;}
._6{width:49.751875px;}
._27{width:50.939019px;}
._23{width:52.776051px;}
._29{width:54.511262px;}
._11{width:59.945385px;}
._1a{width:67.189579px;}
._19{width:71.603764px;}
._14{width:85.247966px;}
._26{width:87.729840px;}
._17{width:90.370078px;}
._18{width:99.658613px;}
._24{width:107.424274px;}
._28{width:110.485336px;}
._c{width:132.273077px;}
._13{width:141.407943px;}
._22{width:196.792711px;}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(152,72,7);}
.fc7{color:rgb(37,64,97);}
.fc4{color:rgb(255,0,0);}
.fcb{color:rgb(99,37,35);}
.fc2{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fca{color:rgb(38,38,38);}
.fc6{color:rgb(137,137,137);}
.fc5{color:rgb(127,127,127);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:66.239974px;}
.fs9{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.fsa{font-size:95.759962px;}
.fs0{font-size:107.999957px;}
.fs2{font-size:120.239952px;}
.fs3{font-size:131.759947px;}
.fs1{font-size:143.999942px;}
.fs7{font-size:156.239938px;}
.fs5{font-size:161.999935px;}
.fsc{font-size:179.999928px;}
.fs6{font-size:192.239923px;}
.fsb{font-size:264.239894px;}
.y0{bottom:0.000000px;}
.yc0{bottom:49.380337px;}
.ye4{bottom:51.180337px;}
.y6d{bottom:54.780335px;}
.ya1{bottom:56.580334px;}
.y1e{bottom:62.880332px;}
.yb3{bottom:64.320331px;}
.y10{bottom:65.220331px;}
.y88{bottom:70.980329px;}
.y112{bottom:72.060328px;}
.ye3{bottom:72.780328px;}
.ye2{bottom:94.380319px;}
.yc1{bottom:103.380316px;}
.y92{bottom:113.100312px;}
.y127{bottom:113.280312px;}
.y48{bottom:118.140310px;}
.y56{bottom:118.320310px;}
.y9e{bottom:119.040309px;}
.yb2{bottom:124.620307px;}
.y11f{bottom:126.060307px;}
.y32{bottom:132.900304px;}
.y163{bottom:143.160300px;}
.y148{bottom:143.340300px;}
.yf{bottom:144.240299px;}
.y126{bottom:145.680299px;}
.y47{bottom:146.040299px;}
.yb1{bottom:146.220299px;}
.y7b{bottom:150.000297px;}
.y91{bottom:150.360297px;}
.y55{bottom:150.720297px;}
.y16c{bottom:154.860295px;}
.y11e{bottom:158.460294px;}
.y1d{bottom:159.360293px;}
.yfa{bottom:167.280290px;}
.yb0{bottom:167.820290px;}
.y46{bottom:173.940287px;}
.y31{bottom:176.100287px;}
.y133{bottom:176.640286px;}
.y162{bottom:177.720286px;}
.y125{bottom:178.080286px;}
.ye{bottom:178.440286px;}
.y38{bottom:180.420285px;}
.y147{bottom:180.780285px;}
.y7a{bottom:181.140285px;}
.y13c{bottom:182.220284px;}
.y54{bottom:183.120284px;}
.y90{bottom:187.620282px;}
.yaf{bottom:189.420281px;}
.y11d{bottom:190.860281px;}
.ybe{bottom:194.280279px;}
.y10a{bottom:194.820279px;}
.yf9{bottom:199.680277px;}
.y106{bottom:200.400277px;}
.y45{bottom:201.840276px;}
.y64{bottom:202.020276px;}
.y1c{bottom:203.100276px;}
.y16b{bottom:206.700274px;}
.y37{bottom:209.220273px;}
.y124{bottom:210.480273px;}
.yae{bottom:211.020273px;}
.y79{bottom:212.100272px;}
.y161{bottom:212.280272px;}
.y53{bottom:215.520271px;}
.yd{bottom:218.220270px;}
.y87{bottom:218.940269px;}
.y109{bottom:221.100269px;}
.y155{bottom:222.000268px;}
.ydd{bottom:222.720268px;}
.y11c{bottom:223.260268px;}
.y8f{bottom:224.700267px;}
.y105{bottom:226.680266px;}
.y30{bottom:227.940266px;}
.y44{bottom:229.740265px;}
.ybd{bottom:230.280265px;}
.yf8{bottom:232.080264px;}
.yad{bottom:232.620264px;}
.y36{bottom:238.020262px;}
.y74{bottom:239.460261px;}
.y132{bottom:242.160260px;}
.y1b{bottom:246.840258px;}
.y108{bottom:247.560258px;}
.y52{bottom:247.920258px;}
.y78{bottom:248.280258px;}
.yac{bottom:254.220255px;}
.ydc{bottom:255.120255px;}
.y146{bottom:255.660255px;}
.y43{bottom:257.640254px;}
.yc{bottom:258.000254px;}
.y16a{bottom:258.540254px;}
.y6c{bottom:259.080253px;}
.y86{bottom:260.340253px;}
.y154{bottom:260.880253px;}
.y9d{bottom:263.940251px;}
.yf7{bottom:264.480251px;}
.ybc{bottom:266.280250px;}
.y35{bottom:266.820250px;}
.yce{bottom:267.000250px;}
.y8e{bottom:268.080250px;}
.y2f{bottom:271.140249px;}
.y107{bottom:273.840247px;}
.y63{bottom:274.020247px;}
.yab{bottom:275.820247px;}
.y131{bottom:278.160246px;}
.y77{bottom:279.240245px;}
.y51{bottom:280.320245px;}
.y160{bottom:281.400244px;}
.ydb{bottom:287.520242px;}
.y13b{bottom:290.220241px;}
.y1a{bottom:290.580241px;}
.yb{bottom:292.020240px;}
.y145{bottom:293.100240px;}
.y153{bottom:293.280240px;}
.yf6{bottom:296.880238px;}
.yaa{bottom:297.420238px;}
.ycd{bottom:299.400237px;}
.y9c{bottom:299.940237px;}
.ybb{bottom:302.280236px;}
.y34{bottom:302.820236px;}
.y6b{bottom:303.900235px;}
.y8d{bottom:305.340235px;}
.yec{bottom:307.140234px;}
.y85{bottom:307.860234px;}
.y62{bottom:310.020233px;}
.y169{bottom:310.380233px;}
.y130{bottom:314.160231px;}
.y2e{bottom:314.340231px;}
.y76{bottom:315.420231px;}
.y15f{bottom:315.960231px;}
.ya9{bottom:319.020229px;}
.yda{bottom:319.920229px;}
.ya{bottom:326.040227px;}
.y104{bottom:328.200226px;}
.yf5{bottom:329.280225px;}
.y33{bottom:331.620224px;}
.ycc{bottom:331.800224px;}
.y152{bottom:332.160224px;}
.y19{bottom:334.320223px;}
.y9b{bottom:335.940223px;}
.yba{bottom:338.280222px;}
.yeb{bottom:339.540221px;}
.y93{bottom:339.720221px;}
.y144{bottom:339.900221px;}
.ya8{bottom:340.620221px;}
.y8c{bottom:342.420220px;}
.y84{bottom:344.940219px;}
.y61{bottom:346.020219px;}
.y69{bottom:346.380218px;}
.y12f{bottom:350.160217px;}
.y15e{bottom:350.520217px;}
.yd9{bottom:352.320216px;}
.ybf{bottom:352.860216px;}
.y103{bottom:354.660215px;}
.y2d{bottom:357.540214px;}
.y12a{bottom:361.320212px;}
.yf4{bottom:361.680212px;}
.y7c{bottom:362.040212px;}
.ya7{bottom:362.220212px;}
.y111{bottom:363.300212px;}
.ycb{bottom:364.200211px;}
.y151{bottom:364.560211px;}
.y123{bottom:364.740211px;}
.y9a{bottom:371.940208px;}
.yb9{bottom:374.280207px;}
.y143{bottom:377.340206px;}
.y18{bottom:378.060206px;}
.y8b{bottom:379.680205px;}
.y102{bottom:380.940205px;}
.y60{bottom:382.020204px;}
.y83{bottom:382.200204px;}
.y75{bottom:382.560204px;}
.ya6{bottom:383.820203px;}
.yd8{bottom:384.720203px;}
.y15d{bottom:385.080203px;}
.y12e{bottom:386.160203px;}
.y122{bottom:386.880202px;}
.y68{bottom:389.580201px;}
.yf3{bottom:394.080199px;}
.y2c{bottom:400.740197px;}
.y150{bottom:403.440196px;}
.yea{bottom:404.340195px;}
.ya5{bottom:405.420195px;}
.y101{bottom:407.400194px;}
.y99{bottom:407.940194px;}
.y4e{bottom:410.100193px;}
.yb8{bottom:410.280193px;}
.y168{bottom:414.060191px;}
.y142{bottom:414.780191px;}
.y121{bottom:415.680191px;}
.ye1{bottom:415.860191px;}
.y110{bottom:416.040191px;}
.y8a{bottom:416.760190px;}
.yd7{bottom:417.120190px;}
.y5f{bottom:418.020190px;}
.y82{bottom:419.280189px;}
.y15c{bottom:419.640189px;}
.y17{bottom:421.800188px;}
.y12d{bottom:422.160188px;}
.yf2{bottom:426.480186px;}
.ya4{bottom:427.020186px;}
.yca{bottom:429.000185px;}
.y67{bottom:432.780184px;}
.y100{bottom:433.680184px;}
.y89{bottom:435.840183px;}
.ye9{bottom:436.740182px;}
.y1{bottom:437.100182px;}
.y10f{bottom:442.320180px;}
.y4d{bottom:442.500180px;}
.y2b{bottom:443.940179px;}
.y120{bottom:444.480179px;}
.yb7{bottom:446.280178px;}
.ya3{bottom:448.620178px;}
.yd6{bottom:449.520177px;}
.y141{bottom:452.220176px;}
.y5e{bottom:454.020175px;}
.y15b{bottom:454.200175px;}
.y42{bottom:456.360174px;}
.y81{bottom:456.540174px;}
.yf1{bottom:458.880173px;}
.yc9{bottom:461.400172px;}
.y9{bottom:462.480172px;}
.y16{bottom:465.540171px;}
.y167{bottom:465.900171px;}
.ye8{bottom:469.140169px;}
.ya2{bottom:470.220169px;}
.y71{bottom:470.940169px;}
.y4c{bottom:474.900167px;}
.y66{bottom:475.980167px;}
.y73{bottom:478.860165px;}
.y98{bottom:479.940165px;}
.y14f{bottom:481.200165px;}
.y13a{bottom:481.740164px;}
.yd5{bottom:481.920164px;}
.yb6{bottom:482.280164px;}
.ye0{bottom:484.980163px;}
.y2a{bottom:487.140162px;}
.y41{bottom:487.320162px;}
.y15a{bottom:488.760161px;}
.y140{bottom:489.660161px;}
.y5d{bottom:490.020161px;}
.yf0{bottom:491.280160px;}
.y8{bottom:493.440160px;}
.y80{bottom:493.620160px;}
.yc8{bottom:493.800159px;}
.y24{bottom:498.840157px;}
.ye7{bottom:501.540156px;}
.y4b{bottom:507.300154px;}
.y15{bottom:509.280153px;}
.y72{bottom:509.820153px;}
.y139{bottom:513.240152px;}
.yd4{bottom:514.320151px;}
.y97{bottom:515.940151px;}
.y159{bottom:517.560150px;}
.y166{bottom:517.740150px;}
.y40{bottom:518.280150px;}
.y65{bottom:519.180149px;}
.y14e{bottom:520.080149px;}
.yef{bottom:523.680148px;}
.y5c{bottom:526.020147px;}
.y29{bottom:530.340145px;}
.y23{bottom:530.520145px;}
.y7f{bottom:530.880145px;}
.ye6{bottom:533.940143px;}
.y13f{bottom:537.900142px;}
.y117{bottom:538.260142px;}
.y4a{bottom:539.700141px;}
.ydf{bottom:542.580140px;}
.y138{bottom:545.640139px;}
.yd3{bottom:546.720138px;}
.y96{bottom:551.940136px;}
.y158{bottom:552.120136px;}
.y14{bottom:553.020136px;}
.yb5{bottom:554.280135px;}
.ya0{bottom:555.900135px;}
.yee{bottom:556.080135px;}
.yc7{bottom:558.600134px;}
.y14d{bottom:558.960133px;}
.y5b{bottom:562.020132px;}
.y22{bottom:562.200132px;}
.ye5{bottom:566.340130px;}
.y116{bottom:567.060130px;}
.y7e{bottom:568.140130px;}
.y165{bottom:569.580129px;}
.yff{bottom:571.200129px;}
.y49{bottom:572.100128px;}
.y28{bottom:573.540128px;}
.y137{bottom:578.040126px;}
.yd2{bottom:579.120125px;}
.y13e{bottom:581.100125px;}
.y157{bottom:586.680122px;}
.y95{bottom:587.940122px;}
.yed{bottom:588.480122px;}
.y50{bottom:589.920121px;}
.yb4{bottom:590.280121px;}
.yc6{bottom:591.000121px;}
.y12c{bottom:591.360120px;}
.y21{bottom:593.880119px;}
.y115{bottom:595.860119px;}
.y13{bottom:596.760118px;}
.y11b{bottom:596.940118px;}
.yfe{bottom:597.660118px;}
.y5a{bottom:598.020118px;}
.y6e{bottom:608.640114px;}
.y7d{bottom:611.520112px;}
.y9f{bottom:611.700112px;}
.y27{bottom:616.740110px;}
.y10e{bottom:617.280110px;}
.y7{bottom:621.060109px;}
.y156{bottom:621.240109px;}
.y164{bottom:621.420108px;}
.y70{bottom:623.220108px;}
.yc5{bottom:623.400108px;}
.y94{bottom:623.940107px;}
.y13d{bottom:624.300107px;}
.y114{bottom:624.660107px;}
.y20{bottom:625.560107px;}
.y11a{bottom:625.740107px;}
.y12b{bottom:627.360106px;}
.y14c{bottom:630.240105px;}
.y59{bottom:634.020103px;}
.y12{bottom:640.500101px;}
.y10d{bottom:643.740100px;}
.yd1{bottom:643.920099px;}
.yfd{bottom:650.400097px;}
.y6{bottom:652.020096px;}
.y113{bottom:653.460096px;}
.y6f{bottom:654.180095px;}
.y119{bottom:654.540095px;}
.yc4{bottom:655.800095px;}
.y1f{bottom:657.240094px;}
.y4{bottom:659.220093px;}
.y26{bottom:659.940093px;}
.y58{bottom:670.020089px;}
.yd0{bottom:676.320086px;}
.yfc{bottom:676.680086px;}
.y3a{bottom:681.720084px;}
.y5{bottom:682.980084px;}
.y118{bottom:683.340084px;}
.y11{bottom:684.240083px;}
.yc3{bottom:688.200082px;}
.y3f{bottom:694.680079px;}
.y10c{bottom:696.480078px;}
.yfb{bottom:698.280078px;}
.y14b{bottom:700.620077px;}
.y3{bottom:702.420076px;}
.y25{bottom:703.140076px;}
.y57{bottom:706.020075px;}
.ycf{bottom:708.720074px;}
.y39{bottom:712.680072px;}
.yc2{bottom:720.600069px;}
.y10b{bottom:722.760068px;}
.y136{bottom:724.020067px;}
.y3e{bottom:725.640067px;}
.yde{bottom:729.060065px;}
.y6a{bottom:735.000063px;}
.y14a{bottom:743.820059px;}
.y2{bottom:745.620059px;}
.y129{bottom:746.520058px;}
.y3d{bottom:756.600054px;}
.y135{bottom:767.220050px;}
.y149{bottom:787.020042px;}
.y3c{bottom:787.560042px;}
.y128{bottom:789.720041px;}
.y4f{bottom:807.720034px;}
.y134{bottom:810.420033px;}
.y3b{bottom:818.520030px;}
.h10{height:50.062480px;}
.he{height:51.679667px;}
.h14{height:52.417948px;}
.h1b{height:65.496068px;}
.h13{height:68.733957px;}
.hd{height:69.086222px;}
.h5{height:76.630399px;}
.h1{height:77.519500px;}
.hc{height:83.604342px;}
.hf{height:87.109770px;}
.hb{height:87.831527px;}
.h8{height:98.244101px;}
.h15{height:100.124960px;}
.h16{height:105.187458px;}
.h3{height:109.378433px;}
.h1a{height:112.144877px;}
.h19{height:112.907767px;}
.h2{height:114.820267px;}
.h4{height:119.857804px;}
.h18{height:129.199167px;}
.h17{height:130.078073px;}
.h7{height:130.992135px;}
.h9{height:137.984710px;}
.ha{height:142.126467px;}
.h6{height:147.366152px;}
.h1c{height:150.187440px;}
.h11{height:189.664377px;}
.h12{height:200.500232px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:103.485859px;}
.x2{left:109.245856px;}
.x19{left:112.305855px;}
.x36{left:132.105847px;}
.x32{left:137.145845px;}
.xd{left:142.905843px;}
.xf{left:146.505841px;}
.x7{left:149.565840px;}
.x1a{left:156.946437px;}
.x16{left:171.526431px;}
.x67{left:172.606431px;}
.x58{left:174.046430px;}
.x8{left:176.565829px;}
.x17{left:181.066428px;}
.xa{left:189.526424px;}
.x1d{left:192.046423px;}
.x2a{left:195.646422px;}
.x1c{left:196.906421px;}
.x28{left:201.946419px;}
.x15{left:208.966416px;}
.x3d{left:210.226416px;}
.x1e{left:211.486415px;}
.x59{left:215.626414px;}
.x29{left:216.706413px;}
.x5{left:219.046412px;}
.x41{left:220.126412px;}
.x35{left:221.926411px;}
.xb{left:224.086410px;}
.x68{left:225.526410px;}
.x40{left:227.146409px;}
.x2d{left:229.306408px;}
.x3f{left:230.926408px;}
.x9{left:234.706406px;}
.x6a{left:236.686405px;}
.x30{left:237.766405px;}
.x61{left:240.466404px;}
.x2c{left:243.166403px;}
.x6{left:246.046402px;}
.x4f{left:247.846401px;}
.x27{left:249.646400px;}
.x31{left:251.446399px;}
.x52{left:254.146398px;}
.x50{left:257.746397px;}
.x69{left:259.006396px;}
.x25{left:263.866394px;}
.x22{left:265.486394px;}
.x6f{left:267.466393px;}
.x51{left:273.946390px;}
.x3e{left:275.926390px;}
.x2b{left:285.106386px;}
.x26{left:290.866384px;}
.x23{left:292.486383px;}
.x65{left:302.386379px;}
.x1f{left:304.906378px;}
.x63{left:306.166378px;}
.x6d{left:308.326377px;}
.x4{left:312.645775px;}
.x4e{left:314.806374px;}
.x1{left:316.426373px;}
.x66{left:317.866373px;}
.x2e{left:322.726371px;}
.x37{left:341.626363px;}
.x64{left:343.426363px;}
.x5f{left:386.446345px;}
.x24{left:408.946336px;}
.x53{left:423.886330px;}
.x60{left:435.046326px;}
.x20{left:457.006317px;}
.x33{left:478.966308px;}
.x62{left:486.526305px;}
.x38{left:493.186303px;}
.x39{left:497.506301px;}
.xc{left:512.806295px;}
.x6b{left:524.506290px;}
.x6c{left:528.106289px;}
.x1b{left:531.886287px;}
.xe{left:538.366285px;}
.x3a{left:558.526277px;}
.x2f{left:565.906274px;}
.x3c{left:581.026268px;}
.x3b{left:625.306250px;}
.x21{left:645.286242px;}
.x5c{left:655.906238px;}
.x5a{left:657.526237px;}
.x6e{left:659.326236px;}
.x12{left:687.046225px;}
.x10{left:690.106224px;}
.x5b{left:700.546220px;}
.x13{left:702.706219px;}
.x5d{left:705.406218px;}
.x5e{left:725.386210px;}
.x11{left:729.526208px;}
.x18{left:756.526197px;}
.x54{left:761.386195px;}
.x47{left:770.386192px;}
.x34{left:772.186191px;}
.x48{left:773.986190px;}
.x14{left:775.786190px;}
.x45{left:777.226189px;}
.x56{left:783.166187px;}
.x46{left:785.866186px;}
.x55{left:792.706183px;}
.x4b{left:810.526176px;}
.x4c{left:817.546173px;}
.x43{left:819.166172px;}
.x4a{left:824.566170px;}
.x42{left:836.266165px;}
.x49{left:837.346165px;}
.x44{left:842.926163px;}
.x4d{left:859.126156px;}
.x57{left:904.126138px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.112031pt;}
.ls3{letter-spacing:23.809910pt;}
.ls8{letter-spacing:30.239988pt;}
.ls9{letter-spacing:42.100463pt;}
.ls2{letter-spacing:62.386535pt;}
.ls1{letter-spacing:65.325414pt;}
.ls6{letter-spacing:84.191966pt;}
.ls4{letter-spacing:89.645404pt;}
.lsa{letter-spacing:99.199960pt;}
.ls5{letter-spacing:123.391951pt;}
.ws79{word-spacing:-38.618865pt;}
.ws88{word-spacing:-31.386867pt;}
.ws18{word-spacing:-29.183988pt;}
.ws27{word-spacing:-24.368630pt;}
.ws2e{word-spacing:-24.154870pt;}
.ws26{word-spacing:-21.887991pt;}
.ws7c{word-spacing:-19.407352pt;}
.ws7b{word-spacing:-19.349144pt;}
.ws7a{word-spacing:-19.237112pt;}
.ws6a{word-spacing:-14.463994pt;}
.ws4b{word-spacing:-13.306875pt;}
.ws4a{word-spacing:-3.035498pt;}
.ws43{word-spacing:-2.065883pt;}
.ws1{word-spacing:-1.958502pt;}
.ws1a{word-spacing:-1.425886pt;}
.ws5d{word-spacing:-1.088000pt;}
.ws1d{word-spacing:-0.863376pt;}
.ws29{word-spacing:-0.785888pt;}
.ws17{word-spacing:-0.750036pt;}
.ws2d{word-spacing:-0.737264pt;}
.ws69{word-spacing:-0.737258pt;}
.ws53{word-spacing:-0.704000pt;}
.ws8f{word-spacing:-0.622057pt;}
.ws8d{word-spacing:-0.618849pt;}
.ws40{word-spacing:-0.512000pt;}
.ws1e{word-spacing:-0.475509pt;}
.ws4d{word-spacing:-0.319632pt;}
.ws61{word-spacing:-0.145891pt;}
.wsb{word-spacing:-0.047952pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:0.064080pt;}
.ws37{word-spacing:0.128000pt;}
.ws76{word-spacing:0.256032pt;}
.ws4c{word-spacing:0.320000pt;}
.ws8e{word-spacing:0.381408pt;}
.ws24{word-spacing:0.384000pt;}
.ws78{word-spacing:0.415968pt;}
.ws7d{word-spacing:0.494106pt;}
.ws85{word-spacing:0.649542pt;}
.wsc{word-spacing:0.704016pt;}
.ws6e{word-spacing:0.895968pt;}
.ws4e{word-spacing:0.960000pt;}
.ws7e{word-spacing:1.134103pt;}
.ws51{word-spacing:1.599999pt;}
.ws71{word-spacing:1.696031pt;}
.ws2{word-spacing:2.031790pt;}
.ws82{word-spacing:2.047999pt;}
.ws6f{word-spacing:2.176031pt;}
.ws6{word-spacing:2.544047pt;}
.ws65{word-spacing:2.724477pt;}
.ws6c{word-spacing:2.815967pt;}
.ws28{word-spacing:3.054095pt;}
.ws3a{word-spacing:3.327999pt;}
.ws5a{word-spacing:4.095998pt;}
.ws39{word-spacing:5.887998pt;}
.ws36{word-spacing:6.527997pt;}
.ws60{word-spacing:6.894078pt;}
.ws67{word-spacing:7.534075pt;}
.ws8{word-spacing:7.744029pt;}
.ws56{word-spacing:7.871997pt;}
.ws5b{word-spacing:8.639997pt;}
.ws1c{word-spacing:8.808191pt;}
.ws46{word-spacing:8.814069pt;}
.ws74{word-spacing:9.215996pt;}
.ws23{word-spacing:9.850748pt;}
.ws2b{word-spacing:10.094064pt;}
.ws3{word-spacing:10.304060pt;}
.ws63{word-spacing:10.734061pt;}
.ws9{word-spacing:10.943996pt;}
.ws8b{word-spacing:11.263302pt;}
.ws5f{word-spacing:11.368287pt;}
.ws64{word-spacing:11.374058pt;}
.ws3c{word-spacing:12.287995pt;}
.ws20{word-spacing:12.415963pt;}
.ws84{word-spacing:12.730847pt;}
.ws59{word-spacing:13.119995pt;}
.ws19{word-spacing:13.934047pt;}
.ws81{word-spacing:13.982677pt;}
.ws3f{word-spacing:14.207994pt;}
.ws80{word-spacing:14.622674pt;}
.ws47{word-spacing:15.854038pt;}
.ws41{word-spacing:15.902669pt;}
.ws4f{word-spacing:16.319993pt;}
.ws55{word-spacing:16.575993pt;}
.ws83{word-spacing:16.767993pt;}
.ws5c{word-spacing:16.959993pt;}
.ws54{word-spacing:17.023993pt;}
.ws8a{word-spacing:17.991064pt;}
.ws34{word-spacing:18.047993pt;}
.ws16{word-spacing:18.273289pt;}
.ws13{word-spacing:18.450023pt;}
.ws5{word-spacing:18.544025pt;}
.ws6d{word-spacing:18.941368pt;}
.ws44{word-spacing:20.334126pt;}
.ws58{word-spacing:20.799992pt;}
.wse{word-spacing:22.012119pt;}
.wsd{word-spacing:22.463991pt;}
.ws30{word-spacing:22.527991pt;}
.ws32{word-spacing:23.167991pt;}
.ws50{word-spacing:23.359991pt;}
.ws6b{word-spacing:23.935958pt;}
.ws52{word-spacing:23.999990pt;}
.ws45{word-spacing:24.862629pt;}
.ws57{word-spacing:25.151990pt;}
.ws3b{word-spacing:25.727990pt;}
.ws75{word-spacing:25.855958pt;}
.ws5e{word-spacing:26.734097pt;}
.ws1f{word-spacing:29.056020pt;}
.ws4{word-spacing:30.143940pt;}
.ws22{word-spacing:30.496020pt;}
.ws7{word-spacing:32.255987pt;}
.ws70{word-spacing:32.416019pt;}
.ws12{word-spacing:35.090075pt;}
.ws35{word-spacing:35.327986pt;}
.ws49{word-spacing:36.334055pt;}
.ws48{word-spacing:38.254047pt;}
.ws10{word-spacing:42.223951pt;}
.ws21{word-spacing:44.416014pt;}
.ws3e{word-spacing:45.567982pt;}
.ws33{word-spacing:46.847981pt;}
.ws66{word-spacing:47.262745pt;}
.ws2a{word-spacing:47.524494pt;}
.ws7f{word-spacing:52.334092pt;}
.ws15{word-spacing:54.139518pt;}
.wsf{word-spacing:55.104026pt;}
.ws2f{word-spacing:55.167978pt;}
.ws89{word-spacing:59.333123pt;}
.ws8c{word-spacing:59.450893pt;}
.ws2c{word-spacing:61.288174pt;}
.ws68{word-spacing:62.574047pt;}
.ws42{word-spacing:63.214044pt;}
.ws86{word-spacing:65.850898pt;}
.ws1b{word-spacing:70.254120pt;}
.ws72{word-spacing:72.575971pt;}
.wsa{word-spacing:83.823950pt;}
.ws77{word-spacing:84.256286pt;}
.ws62{word-spacing:90.094460pt;}
.ws31{word-spacing:97.407961pt;}
.ws14{word-spacing:103.248266pt;}
.ws87{word-spacing:142.224174pt;}
.ws3d{word-spacing:154.367938pt;}
.ws73{word-spacing:178.816248pt;}
.ws38{word-spacing:210.687916pt;}
.ws25{word-spacing:1864.991254pt;}
._8{margin-left:-8.429157pt;}
._4{margin-left:-6.624321pt;}
._d{margin-left:-5.617409pt;}
._10{margin-left:-4.149407pt;}
._2{margin-left:-2.496668pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.024000pt;}
._3{width:2.106101pt;}
._1c{width:3.682077pt;}
._1e{width:14.166858pt;}
._1d{width:15.295626pt;}
._1f{width:16.257331pt;}
._20{width:17.406528pt;}
._2a{width:19.069336pt;}
._21{width:21.375991pt;}
._1b{width:23.008725pt;}
._f{width:24.760913pt;}
._25{width:26.995842pt;}
._5{width:29.109860pt;}
._15{width:30.019076pt;}
._12{width:32.725010pt;}
._7{width:34.447889pt;}
._9{width:36.319856pt;}
._e{width:37.312560pt;}
._16{width:38.863911pt;}
._a{width:41.806504pt;}
._b{width:42.752143pt;}
._6{width:44.223889pt;}
._27{width:45.279128pt;}
._23{width:46.912045pt;}
._29{width:48.454455pt;}
._11{width:53.284786pt;}
._1a{width:59.724071pt;}
._19{width:63.647790pt;}
._14{width:75.775970pt;}
._26{width:77.982080pt;}
._17{width:80.328958pt;}
._18{width:88.585433pt;}
._24{width:95.488244pt;}
._28{width:98.209188pt;}
._c{width:117.576068pt;}
._13{width:125.695950pt;}
._22{width:174.926854pt;}
.fs8{font-size:58.879976pt;}
.fs9{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.fsa{font-size:85.119966pt;}
.fs0{font-size:95.999962pt;}
.fs2{font-size:106.879957pt;}
.fs3{font-size:117.119953pt;}
.fs1{font-size:127.999949pt;}
.fs7{font-size:138.879944pt;}
.fs5{font-size:143.999942pt;}
.fsc{font-size:159.999936pt;}
.fs6{font-size:170.879932pt;}
.fsb{font-size:234.879906pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:43.893633pt;}
.ye4{bottom:45.493632pt;}
.y6d{bottom:48.693631pt;}
.ya1{bottom:50.293631pt;}
.y1e{bottom:55.893628pt;}
.yb3{bottom:57.173628pt;}
.y10{bottom:57.973627pt;}
.y88{bottom:63.093625pt;}
.y112{bottom:64.053625pt;}
.ye3{bottom:64.693625pt;}
.ye2{bottom:83.893617pt;}
.yc1{bottom:91.893614pt;}
.y92{bottom:100.533610pt;}
.y127{bottom:100.693610pt;}
.y48{bottom:105.013609pt;}
.y56{bottom:105.173609pt;}
.y9e{bottom:105.813608pt;}
.yb2{bottom:110.773606pt;}
.y11f{bottom:112.053606pt;}
.y32{bottom:118.133603pt;}
.y163{bottom:127.253600pt;}
.y148{bottom:127.413600pt;}
.yf{bottom:128.213599pt;}
.y126{bottom:129.493599pt;}
.y47{bottom:129.813599pt;}
.yb1{bottom:129.973599pt;}
.y7b{bottom:133.333597pt;}
.y91{bottom:133.653597pt;}
.y55{bottom:133.973597pt;}
.y16c{bottom:137.653596pt;}
.y11e{bottom:140.853594pt;}
.y1d{bottom:141.653594pt;}
.yfa{bottom:148.693591pt;}
.yb0{bottom:149.173591pt;}
.y46{bottom:154.613589pt;}
.y31{bottom:156.533588pt;}
.y133{bottom:157.013588pt;}
.y162{bottom:157.973587pt;}
.y125{bottom:158.293587pt;}
.ye{bottom:158.613587pt;}
.y38{bottom:160.373587pt;}
.y147{bottom:160.693586pt;}
.y7a{bottom:161.013586pt;}
.y13c{bottom:161.973586pt;}
.y54{bottom:162.773586pt;}
.y90{bottom:166.773584pt;}
.yaf{bottom:168.373583pt;}
.y11d{bottom:169.653583pt;}
.ybe{bottom:172.693582pt;}
.y10a{bottom:173.173581pt;}
.yf9{bottom:177.493580pt;}
.y106{bottom:178.133579pt;}
.y45{bottom:179.413579pt;}
.y64{bottom:179.573579pt;}
.y1c{bottom:180.533578pt;}
.y16b{bottom:183.733577pt;}
.y37{bottom:185.973576pt;}
.y124{bottom:187.093576pt;}
.yae{bottom:187.573576pt;}
.y79{bottom:188.533575pt;}
.y161{bottom:188.693575pt;}
.y53{bottom:191.573574pt;}
.yd{bottom:193.973573pt;}
.y87{bottom:194.613573pt;}
.y109{bottom:196.533572pt;}
.y155{bottom:197.333572pt;}
.ydd{bottom:197.973571pt;}
.y11c{bottom:198.453571pt;}
.y8f{bottom:199.733571pt;}
.y105{bottom:201.493570pt;}
.y30{bottom:202.613570pt;}
.y44{bottom:204.213569pt;}
.ybd{bottom:204.693569pt;}
.yf8{bottom:206.293568pt;}
.yad{bottom:206.773568pt;}
.y36{bottom:211.573566pt;}
.y74{bottom:212.853566pt;}
.y132{bottom:215.253565pt;}
.y1b{bottom:219.413563pt;}
.y108{bottom:220.053563pt;}
.y52{bottom:220.373563pt;}
.y78{bottom:220.693562pt;}
.yac{bottom:225.973560pt;}
.ydc{bottom:226.773560pt;}
.y146{bottom:227.253560pt;}
.y43{bottom:229.013559pt;}
.yc{bottom:229.333559pt;}
.y16a{bottom:229.813559pt;}
.y6c{bottom:230.293559pt;}
.y86{bottom:231.413558pt;}
.y154{bottom:231.893558pt;}
.y9d{bottom:234.613557pt;}
.yf7{bottom:235.093557pt;}
.ybc{bottom:236.693556pt;}
.y35{bottom:237.173556pt;}
.yce{bottom:237.333556pt;}
.y8e{bottom:238.293555pt;}
.y2f{bottom:241.013554pt;}
.y107{bottom:243.413553pt;}
.y63{bottom:243.573553pt;}
.yab{bottom:245.173553pt;}
.y131{bottom:247.253552pt;}
.y77{bottom:248.213551pt;}
.y51{bottom:249.173551pt;}
.y160{bottom:250.133551pt;}
.ydb{bottom:255.573548pt;}
.y13b{bottom:257.973547pt;}
.y1a{bottom:258.293547pt;}
.yb{bottom:259.573547pt;}
.y145{bottom:260.533546pt;}
.y153{bottom:260.693546pt;}
.yf6{bottom:263.893545pt;}
.yaa{bottom:264.373545pt;}
.ycd{bottom:266.133544pt;}
.y9c{bottom:266.613544pt;}
.ybb{bottom:268.693543pt;}
.y34{bottom:269.173543pt;}
.y6b{bottom:270.133543pt;}
.y8d{bottom:271.413542pt;}
.yec{bottom:273.013541pt;}
.y85{bottom:273.653541pt;}
.y62{bottom:275.573540pt;}
.y169{bottom:275.893540pt;}
.y130{bottom:279.253539pt;}
.y2e{bottom:279.413539pt;}
.y76{bottom:280.373539pt;}
.y15f{bottom:280.853538pt;}
.ya9{bottom:283.573537pt;}
.yda{bottom:284.373537pt;}
.ya{bottom:289.813535pt;}
.y104{bottom:291.733534pt;}
.yf5{bottom:292.693534pt;}
.y33{bottom:294.773533pt;}
.ycc{bottom:294.933533pt;}
.y152{bottom:295.253533pt;}
.y19{bottom:297.173532pt;}
.y9b{bottom:298.613531pt;}
.yba{bottom:300.693530pt;}
.yeb{bottom:301.813530pt;}
.y93{bottom:301.973530pt;}
.y144{bottom:302.133530pt;}
.ya8{bottom:302.773530pt;}
.y8c{bottom:304.373529pt;}
.y84{bottom:306.613528pt;}
.y61{bottom:307.573528pt;}
.y69{bottom:307.893528pt;}
.y12f{bottom:311.253526pt;}
.y15e{bottom:311.573526pt;}
.yd9{bottom:313.173525pt;}
.ybf{bottom:313.653525pt;}
.y103{bottom:315.253525pt;}
.y2d{bottom:317.813524pt;}
.y12a{bottom:321.173522pt;}
.yf4{bottom:321.493522pt;}
.y7c{bottom:321.813522pt;}
.ya7{bottom:321.973522pt;}
.y111{bottom:322.933521pt;}
.ycb{bottom:323.733521pt;}
.y151{bottom:324.053521pt;}
.y123{bottom:324.213521pt;}
.y9a{bottom:330.613518pt;}
.yb9{bottom:332.693518pt;}
.y143{bottom:335.413517pt;}
.y18{bottom:336.053516pt;}
.y8b{bottom:337.493516pt;}
.y102{bottom:338.613515pt;}
.y60{bottom:339.573515pt;}
.y83{bottom:339.733515pt;}
.y75{bottom:340.053515pt;}
.ya6{bottom:341.173514pt;}
.yd8{bottom:341.973514pt;}
.y15d{bottom:342.293514pt;}
.y12e{bottom:343.253513pt;}
.y122{bottom:343.893513pt;}
.y68{bottom:346.293512pt;}
.yf3{bottom:350.293511pt;}
.y2c{bottom:356.213508pt;}
.y150{bottom:358.613507pt;}
.yea{bottom:359.413507pt;}
.ya5{bottom:360.373507pt;}
.y101{bottom:362.133506pt;}
.y99{bottom:362.613506pt;}
.y4e{bottom:364.533505pt;}
.yb8{bottom:364.693505pt;}
.y168{bottom:368.053503pt;}
.y142{bottom:368.693503pt;}
.y121{bottom:369.493503pt;}
.ye1{bottom:369.653503pt;}
.y110{bottom:369.813503pt;}
.y8a{bottom:370.453502pt;}
.yd7{bottom:370.773502pt;}
.y5f{bottom:371.573502pt;}
.y82{bottom:372.693502pt;}
.y15c{bottom:373.013501pt;}
.y17{bottom:374.933501pt;}
.y12d{bottom:375.253501pt;}
.yf2{bottom:379.093499pt;}
.ya4{bottom:379.573499pt;}
.yca{bottom:381.333498pt;}
.y67{bottom:384.693497pt;}
.y100{bottom:385.493496pt;}
.y89{bottom:387.413496pt;}
.ye9{bottom:388.213495pt;}
.y1{bottom:388.533495pt;}
.y10f{bottom:393.173493pt;}
.y4d{bottom:393.333493pt;}
.y2b{bottom:394.613493pt;}
.y120{bottom:395.093493pt;}
.yb7{bottom:396.693492pt;}
.ya3{bottom:398.773491pt;}
.yd6{bottom:399.573491pt;}
.y141{bottom:401.973490pt;}
.y5e{bottom:403.573489pt;}
.y15b{bottom:403.733489pt;}
.y42{bottom:405.653488pt;}
.y81{bottom:405.813488pt;}
.yf1{bottom:407.893488pt;}
.yc9{bottom:410.133487pt;}
.y9{bottom:411.093486pt;}
.y16{bottom:413.813485pt;}
.y167{bottom:414.133485pt;}
.ye8{bottom:417.013484pt;}
.ya2{bottom:417.973483pt;}
.y71{bottom:418.613483pt;}
.y4c{bottom:422.133482pt;}
.y66{bottom:423.093481pt;}
.y73{bottom:425.653480pt;}
.y98{bottom:426.613480pt;}
.y14f{bottom:427.733480pt;}
.y13a{bottom:428.213479pt;}
.yd5{bottom:428.373479pt;}
.yb6{bottom:428.693479pt;}
.ye0{bottom:431.093478pt;}
.y2a{bottom:433.013477pt;}
.y41{bottom:433.173477pt;}
.y15a{bottom:434.453477pt;}
.y140{bottom:435.253477pt;}
.y5d{bottom:435.573476pt;}
.yf0{bottom:436.693476pt;}
.y8{bottom:438.613475pt;}
.y80{bottom:438.773475pt;}
.yc8{bottom:438.933475pt;}
.y24{bottom:443.413473pt;}
.ye7{bottom:445.813472pt;}
.y4b{bottom:450.933470pt;}
.y15{bottom:452.693470pt;}
.y72{bottom:453.173469pt;}
.y139{bottom:456.213468pt;}
.yd4{bottom:457.173468pt;}
.y97{bottom:458.613467pt;}
.y159{bottom:460.053467pt;}
.y166{bottom:460.213467pt;}
.y40{bottom:460.693466pt;}
.y65{bottom:461.493466pt;}
.y14e{bottom:462.293466pt;}
.yef{bottom:465.493464pt;}
.y5c{bottom:467.573464pt;}
.y29{bottom:471.413462pt;}
.y23{bottom:471.573462pt;}
.y7f{bottom:471.893462pt;}
.ye6{bottom:474.613461pt;}
.y13f{bottom:478.133459pt;}
.y117{bottom:478.453459pt;}
.y4a{bottom:479.733459pt;}
.ydf{bottom:482.293458pt;}
.y138{bottom:485.013457pt;}
.yd3{bottom:485.973456pt;}
.y96{bottom:490.613454pt;}
.y158{bottom:490.773454pt;}
.y14{bottom:491.573454pt;}
.yb5{bottom:492.693454pt;}
.ya0{bottom:494.133453pt;}
.yee{bottom:494.293453pt;}
.yc7{bottom:496.533452pt;}
.y14d{bottom:496.853452pt;}
.y5b{bottom:499.573451pt;}
.y22{bottom:499.733451pt;}
.ye5{bottom:503.413449pt;}
.y116{bottom:504.053449pt;}
.y7e{bottom:505.013449pt;}
.y165{bottom:506.293448pt;}
.yff{bottom:507.733448pt;}
.y49{bottom:508.533447pt;}
.y28{bottom:509.813447pt;}
.y137{bottom:513.813445pt;}
.yd2{bottom:514.773445pt;}
.y13e{bottom:516.533444pt;}
.y157{bottom:521.493442pt;}
.y95{bottom:522.613442pt;}
.yed{bottom:523.093441pt;}
.y50{bottom:524.373441pt;}
.yb4{bottom:524.693441pt;}
.yc6{bottom:525.333441pt;}
.y12c{bottom:525.653440pt;}
.y21{bottom:527.893440pt;}
.y115{bottom:529.653439pt;}
.y13{bottom:530.453438pt;}
.y11b{bottom:530.613438pt;}
.yfe{bottom:531.253438pt;}
.y5a{bottom:531.573438pt;}
.y6e{bottom:541.013434pt;}
.y7d{bottom:543.573433pt;}
.y9f{bottom:543.733433pt;}
.y27{bottom:548.213431pt;}
.y10e{bottom:548.693431pt;}
.y7{bottom:552.053430pt;}
.y156{bottom:552.213430pt;}
.y164{bottom:552.373430pt;}
.y70{bottom:553.973429pt;}
.yc5{bottom:554.133429pt;}
.y94{bottom:554.613429pt;}
.y13d{bottom:554.933429pt;}
.y114{bottom:555.253429pt;}
.y20{bottom:556.053428pt;}
.y11a{bottom:556.213428pt;}
.y12b{bottom:557.653428pt;}
.y14c{bottom:560.213427pt;}
.y59{bottom:563.573425pt;}
.y12{bottom:569.333423pt;}
.y10d{bottom:572.213422pt;}
.yd1{bottom:572.373422pt;}
.yfd{bottom:578.133419pt;}
.y6{bottom:579.573419pt;}
.y113{bottom:580.853418pt;}
.y6f{bottom:581.493418pt;}
.y119{bottom:581.813418pt;}
.yc4{bottom:582.933417pt;}
.y1f{bottom:584.213417pt;}
.y4{bottom:585.973416pt;}
.y26{bottom:586.613416pt;}
.y58{bottom:595.573412pt;}
.yd0{bottom:601.173410pt;}
.yfc{bottom:601.493410pt;}
.y3a{bottom:605.973408pt;}
.y5{bottom:607.093408pt;}
.y118{bottom:607.413408pt;}
.y11{bottom:608.213407pt;}
.yc3{bottom:611.733406pt;}
.y3f{bottom:617.493404pt;}
.y10c{bottom:619.093403pt;}
.yfb{bottom:620.693402pt;}
.y14b{bottom:622.773402pt;}
.y3{bottom:624.373401pt;}
.y25{bottom:625.013401pt;}
.y57{bottom:627.573400pt;}
.ycf{bottom:629.973399pt;}
.y39{bottom:633.493397pt;}
.yc2{bottom:640.533394pt;}
.y10b{bottom:642.453394pt;}
.y136{bottom:643.573393pt;}
.y3e{bottom:645.013393pt;}
.yde{bottom:648.053391pt;}
.y6a{bottom:653.333389pt;}
.y14a{bottom:661.173386pt;}
.y2{bottom:662.773386pt;}
.y129{bottom:663.573385pt;}
.y3d{bottom:672.533382pt;}
.y135{bottom:681.973378pt;}
.y149{bottom:699.573371pt;}
.y3c{bottom:700.053371pt;}
.y128{bottom:701.973370pt;}
.y4f{bottom:717.973363pt;}
.y134{bottom:720.373363pt;}
.y3b{bottom:727.573360pt;}
.h10{height:44.499982pt;}
.he{height:45.937482pt;}
.h14{height:46.593731pt;}
.h1b{height:58.218727pt;}
.h13{height:61.096851pt;}
.hd{height:61.409975pt;}
.h5{height:68.115910pt;}
.h1{height:68.906222pt;}
.hc{height:74.314970pt;}
.hf{height:77.430907pt;}
.hb{height:78.072469pt;}
.h8{height:87.328090pt;}
.h15{height:88.999964pt;}
.h16{height:93.499963pt;}
.h3{height:97.225274pt;}
.h1a{height:99.684335pt;}
.h19{height:100.362460pt;}
.h2{height:102.062459pt;}
.h4{height:106.540270pt;}
.h18{height:114.843704pt;}
.h17{height:115.624954pt;}
.h7{height:116.437453pt;}
.h9{height:122.653076pt;}
.ha{height:126.334637pt;}
.h6{height:130.992135pt;}
.h1c{height:133.499947pt;}
.h11{height:168.590558pt;}
.h12{height:178.222429pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:91.987430pt;}
.x2{left:97.107428pt;}
.x19{left:99.827427pt;}
.x36{left:117.427420pt;}
.x32{left:121.907418pt;}
.xd{left:127.027416pt;}
.xf{left:130.227415pt;}
.x7{left:132.947413pt;}
.x1a{left:139.507944pt;}
.x16{left:152.467939pt;}
.x67{left:153.427939pt;}
.x58{left:154.707938pt;}
.x8{left:156.947404pt;}
.x17{left:160.947936pt;}
.xa{left:168.467933pt;}
.x1d{left:170.707932pt;}
.x2a{left:173.907930pt;}
.x1c{left:175.027930pt;}
.x28{left:179.507928pt;}
.x15{left:185.747926pt;}
.x3d{left:186.867925pt;}
.x1e{left:187.987925pt;}
.x59{left:191.667923pt;}
.x29{left:192.627923pt;}
.x5{left:194.707922pt;}
.x41{left:195.667922pt;}
.x35{left:197.267921pt;}
.xb{left:199.187920pt;}
.x68{left:200.467920pt;}
.x40{left:201.907919pt;}
.x2d{left:203.827918pt;}
.x3f{left:205.267918pt;}
.x9{left:208.627917pt;}
.x6a{left:210.387916pt;}
.x30{left:211.347915pt;}
.x61{left:213.747915pt;}
.x2c{left:216.147914pt;}
.x6{left:218.707913pt;}
.x4f{left:220.307912pt;}
.x27{left:221.907911pt;}
.x31{left:223.507911pt;}
.x52{left:225.907910pt;}
.x50{left:229.107908pt;}
.x69{left:230.227908pt;}
.x25{left:234.547906pt;}
.x22{left:235.987906pt;}
.x6f{left:237.747905pt;}
.x51{left:243.507903pt;}
.x3e{left:245.267902pt;}
.x2b{left:253.427899pt;}
.x26{left:258.547897pt;}
.x23{left:259.987896pt;}
.x65{left:268.787892pt;}
.x1f{left:271.027892pt;}
.x63{left:272.147891pt;}
.x6d{left:274.067890pt;}
.x4{left:277.907356pt;}
.x4e{left:279.827888pt;}
.x1{left:281.267887pt;}
.x66{left:282.547887pt;}
.x2e{left:286.867885pt;}
.x37{left:303.667879pt;}
.x64{left:305.267878pt;}
.x5f{left:343.507863pt;}
.x24{left:363.507855pt;}
.x53{left:376.787849pt;}
.x60{left:386.707845pt;}
.x20{left:406.227838pt;}
.x33{left:425.747830pt;}
.x62{left:432.467827pt;}
.x38{left:438.387825pt;}
.x39{left:442.227823pt;}
.xc{left:455.827818pt;}
.x6b{left:466.227814pt;}
.x6c{left:469.427812pt;}
.x1b{left:472.787811pt;}
.xe{left:478.547809pt;}
.x3a{left:496.467801pt;}
.x2f{left:503.027799pt;}
.x3c{left:516.467793pt;}
.x3b{left:555.827778pt;}
.x21{left:573.587771pt;}
.x5c{left:583.027767pt;}
.x5a{left:584.467766pt;}
.x6e{left:586.067766pt;}
.x12{left:610.707756pt;}
.x10{left:613.427755pt;}
.x5b{left:622.707751pt;}
.x13{left:624.627750pt;}
.x5d{left:627.027749pt;}
.x5e{left:644.787742pt;}
.x11{left:648.467741pt;}
.x18{left:672.467731pt;}
.x54{left:676.787729pt;}
.x47{left:684.787726pt;}
.x34{left:686.387725pt;}
.x48{left:687.987725pt;}
.x14{left:689.587724pt;}
.x45{left:690.867724pt;}
.x56{left:696.147722pt;}
.x46{left:698.547721pt;}
.x55{left:704.627718pt;}
.x4b{left:720.467712pt;}
.x4c{left:726.707709pt;}
.x43{left:728.147709pt;}
.x4a{left:732.947707pt;}
.x42{left:743.347703pt;}
.x49{left:744.307702pt;}
.x44{left:749.267700pt;}
.x4d{left:763.667695pt;}
.x57{left:803.667679pt;}
}




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