
    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_a40137d06c1cc4f29a8071a1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_137506aceedcb0f281eae4ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_f531530560d8d28b0f8aa41e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_02aa960ed179b07488efc756.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_598d674977b7be4cfbd52c69.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a6ea399fa7bc43a71e5f813b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_044205d6000efc2673a34f8b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_5dd59dbab9882886f0948749.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_c6f0b274afe070ea28af4e6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_325224c1fa8e3e726af0f459.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0081824137c750a444208db9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_17011a83b1331650ad63e4f6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.800781;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);}
.m2{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.029637px;}
.v1{vertical-align:27.000000px;}
.ls7{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.310856px;}
.ls9{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.224334px;}
.lsa{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.088076px;}
.ls5{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.007461px;}
.lsb{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.009360px;}
.ls14{letter-spacing:0.046007px;}
.ls6{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.117089px;}
.ls4{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.224438px;}
.lsf{letter-spacing:0.232935px;}
.ls1b{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.310856px;}
.lsd{letter-spacing:0.341320px;}
.ls1a{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.591120px;}
.ls3{letter-spacing:54.984000px;}
.lse{letter-spacing:55.389948px;}
.ls18{letter-spacing:195.150000px;}
.lsc{letter-spacing:849.231120px;}
.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;}
}
.ws6{word-spacing:-48.528000px;}
.ws0{word-spacing:-18.984000px;}
.ws5{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.640000px;}
.wsc{word-spacing:-13.211372px;}
.wsf{word-spacing:-12.946523px;}
.wsd{word-spacing:-12.900516px;}
.ws11{word-spacing:-12.676182px;}
.ws10{word-spacing:-12.589661px;}
.ws12{word-spacing:-11.979360px;}
.ws4{word-spacing:-11.970000px;}
.wse{word-spacing:-8.385647px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._24{margin-left:-5.472000px;}
._3{margin-left:-4.284000px;}
._a{margin-left:-3.060000px;}
._1{margin-left:-1.996800px;}
._6{width:1.060800px;}
._d{width:2.121600px;}
._e{width:3.388800px;}
._14{width:4.420800px;}
._0{width:5.587200px;}
._11{width:6.912000px;}
._12{width:8.083200px;}
._13{width:9.340800px;}
._25{width:10.344000px;}
._c{width:11.352000px;}
._b{width:12.360000px;}
._10{width:13.872000px;}
._9{width:15.072000px;}
._8{width:16.320000px;}
._7{width:19.584000px;}
._1d{width:20.952000px;}
._19{width:22.368000px;}
._18{width:23.664000px;}
._16{width:25.032000px;}
._15{width:26.184000px;}
._f{width:28.080000px;}
._1e{width:29.736000px;}
._1c{width:30.816000px;}
._1a{width:36.648000px;}
._1b{width:38.016000px;}
._17{width:50.760000px;}
._21{width:120.144000px;}
._23{width:174.432000px;}
._22{width:198.000000px;}
._4{width:274.680000px;}
._1f{width:795.720000px;}
._20{width:801.000000px;}
._5{width:846.120000px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,77,120);}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(33,37,41);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:33.572428px;}
.fs8{font-size:41.654680px;}
.fs4{font-size:47.880000px;}
.fs7{font-size:51.602066px;}
.fs9{font-size:57.197471px;}
.fsd{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:67.144857px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:72.740261px;}
.fsc{font-size:83.880000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.yc7{bottom:-46.037747px;}
.yc6{bottom:-15.853647px;}
.yb7{bottom:-14.299368px;}
.yba{bottom:-14.143940px;}
.ydb{bottom:-11.812560px;}
.yd8{bottom:-11.812521px;}
.yca{bottom:-10.258242px;}
.yd5{bottom:-3.108558px;}
.y0{bottom:0.000000px;}
.yc5{bottom:1.243423px;}
.yb6{bottom:2.797702px;}
.ye3{bottom:3.263986px;}
.ydd{bottom:3.574842px;}
.ydf{bottom:3.730270px;}
.y97{bottom:3.870000px;}
.y13e{bottom:3.900000px;}
.yb9{bottom:4.196424px;}
.ye1{bottom:5.284549px;}
.ye5{bottom:6.217116px;}
.y16a{bottom:6.300000px;}
.yda{bottom:6.527843px;}
.yd7{bottom:6.838828px;}
.yc{bottom:8.040000px;}
.yc9{bottom:8.237679px;}
.y10c{bottom:8.280000px;}
.yb0{bottom:8.703963px;}
.y115{bottom:12.690000px;}
.y10f{bottom:12.780000px;}
.y146{bottom:14.130000px;}
.yff{bottom:14.220000px;}
.yd4{bottom:14.610223px;}
.y143{bottom:15.930000px;}
.y16f{bottom:16.200000px;}
.y123{bottom:16.380000px;}
.yc4{bottom:18.806777px;}
.y11e{bottom:18.810000px;}
.yb5{bottom:19.894772px;}
.y9f{bottom:24.570000px;}
.y168{bottom:24.600000px;}
.y10a{bottom:28.980000px;}
.y111{bottom:29.010000px;}
.y11c{bottom:29.160000px;}
.y141{bottom:31.080000px;}
.y114{bottom:33.420000px;}
.yd3{bottom:33.423477px;}
.y10e{bottom:33.480000px;}
.yfe{bottom:34.920000px;}
.y159{bottom:36.000000px;}
.y164{bottom:36.450000px;}
.y16e{bottom:36.900000px;}
.y121{bottom:37.080000px;}
.yc3{bottom:37.620030px;}
.yb4{bottom:37.963267px;}
.y11d{bottom:39.510000px;}
.y105{bottom:45.270000px;}
.yfd{bottom:45.300000px;}
.y10b{bottom:49.680000px;}
.y112{bottom:49.710000px;}
.yd2{bottom:52.230254px;}
.y113{bottom:54.120000px;}
.y10d{bottom:54.180000px;}
.y11f{bottom:54.450000px;}
.y11a{bottom:55.620000px;}
.y103{bottom:55.980000px;}
.yb3{bottom:55.992904px;}
.yc2{bottom:56.115951px;}
.y158{bottom:56.700000px;}
.y163{bottom:57.180000px;}
.y16d{bottom:57.600000px;}
.y122{bottom:57.780000px;}
.y106{bottom:65.970000px;}
.y1c{bottom:69.510000px;}
.y124{bottom:70.380000px;}
.y108{bottom:70.830000px;}
.yd1{bottom:71.037031px;}
.yb2{bottom:73.245402px;}
.yc1{bottom:73.679305px;}
.y102{bottom:76.680000px;}
.y157{bottom:77.400000px;}
.y16{bottom:77.715000px;}
.y162{bottom:77.880000px;}
.y16c{bottom:78.300000px;}
.yd0{bottom:89.532952px;}
.y1b{bottom:91.590000px;}
.yc0{bottom:92.019798px;}
.y101{bottom:97.380000px;}
.y156{bottom:98.100000px;}
.y161{bottom:98.580000px;}
.y15{bottom:99.795000px;}
.y118{bottom:102.330000px;}
.ycf{bottom:107.096306px;}
.ybf{bottom:109.583152px;}
.y11{bottom:111.855000px;}
.y1a{bottom:113.670000px;}
.y179{bottom:114.390000px;}
.y155{bottom:118.800000px;}
.y160{bottom:119.280000px;}
.yfb{bottom:120.600000px;}
.y36{bottom:122.400000px;}
.y117{bottom:123.030000px;}
.yce{bottom:125.928987px;}
.ybe{bottom:128.571262px;}
.y10{bottom:133.935000px;}
.y13f{bottom:134.370000px;}
.y19{bottom:135.750000px;}
.y69{bottom:137.340000px;}
.y15f{bottom:139.980000px;}
.ycd{bottom:144.735764px;}
.ybd{bottom:146.911755px;}
.y91{bottom:148.770000px;}
.yfa{bottom:151.020000px;}
.y13d{bottom:151.920000px;}
.y89{bottom:152.190000px;}
.y5a{bottom:152.370000px;}
.y178{bottom:153.630000px;}
.y17{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y18{bottom:157.830000px;}
.y15e{bottom:160.680000px;}
.y7e{bottom:160.770000px;}
.ycc{bottom:163.076257px;}
.y93{bottom:163.740000px;}
.ybc{bottom:164.008825px;}
.y35{bottom:170.490000px;}
.y13c{bottom:172.650000px;}
.y131{bottom:175.170000px;}
.y68{bottom:178.770000px;}
.y177{bottom:186.870000px;}
.y6c{bottom:190.200000px;}
.y87{bottom:193.620000px;}
.y59{bottom:193.800000px;}
.y7d{bottom:202.170000px;}
.y34{bottom:205.140000px;}
.y176{bottom:209.190000px;}
.y125{bottom:209.730000px;}
.y13b{bottom:214.050000px;}
.y130{bottom:216.570000px;}
.y67{bottom:220.170000px;}
.y173{bottom:226.830000px;}
.y120{bottom:227.370000px;}
.y6b{bottom:231.600000px;}
.y13a{bottom:234.750000px;}
.y86{bottom:235.020000px;}
.y58{bottom:235.200000px;}
.y7c{bottom:243.570000px;}
.y92{bottom:246.540000px;}
.yac{bottom:249.960000px;}
.y33{bottom:253.290000px;}
.y139{bottom:255.450000px;}
.y12f{bottom:257.970000px;}
.y66{bottom:261.570000px;}
.y175{bottom:268.950000px;}
.y8f{bottom:273.000000px;}
.y138{bottom:276.150000px;}
.y85{bottom:276.420000px;}
.y57{bottom:276.600000px;}
.y7b{bottom:284.970000px;}
.yab{bottom:285.690000px;}
.y32{bottom:287.940000px;}
.y12e{bottom:299.370000px;}
.y65{bottom:302.970000px;}
.y174{bottom:311.070000px;}
.y8e{bottom:314.400000px;}
.y116{bottom:315.300000px;}
.y137{bottom:317.550000px;}
.y84{bottom:317.820000px;}
.y56{bottom:318.000000px;}
.yaa{bottom:321.330000px;}
.y7a{bottom:326.370000px;}
.y6a{bottom:329.340000px;}
.y88{bottom:330.780000px;}
.y31{bottom:336.090000px;}
.y136{bottom:338.250000px;}
.y12d{bottom:340.770000px;}
.y64{bottom:344.370000px;}
.ya{bottom:344.680500px;}
.ya9{bottom:353.190000px;}
.y172{bottom:353.280000px;}
.yad{bottom:355.239368px;}
.y8d{bottom:355.800000px;}
.y135{bottom:358.950000px;}
.y83{bottom:359.220000px;}
.y55{bottom:359.400000px;}
.yd9{bottom:365.031378px;}
.yb8{bottom:366.430230px;}
.y79{bottom:367.770000px;}
.y30{bottom:370.740000px;}
.yf4{bottom:376.770000px;}
.y134{bottom:379.650000px;}
.y63{bottom:385.770000px;}
.yd{bottom:386.490000px;}
.y11b{bottom:387.300000px;}
.yde{bottom:393.629984px;}
.y171{bottom:394.680000px;}
.y9{bottom:395.689500px;}
.y8c{bottom:397.200000px;}
.y54{bottom:400.800000px;}
.y133{bottom:401.070000px;}
.y78{bottom:409.170000px;}
.y90{bottom:412.140000px;}
.y82{bottom:413.580000px;}
.y16b{bottom:416.100000px;}
.yf3{bottom:418.170000px;}
.y2f{bottom:418.890000px;}
.y132{bottom:422.580000px;}
.y62{bottom:427.170000px;}
.yb{bottom:434.850000px;}
.y12c{bottom:438.600000px;}
.y53{bottom:442.200000px;}
.y8{bottom:446.698500px;}
.ybb{bottom:450.392257px;}
.y77{bottom:450.570000px;}
.ycb{bottom:453.189959px;}
.y2e{bottom:453.540000px;}
.y170{bottom:458.220000px;}
.yf2{bottom:459.570000px;}
.y61{bottom:468.570000px;}
.y119{bottom:470.820000px;}
.y12b{bottom:480.000000px;}
.y52{bottom:483.600000px;}
.y12{bottom:488.055000px;}
.y76{bottom:491.970000px;}
.y8b{bottom:494.940000px;}
.y7{bottom:497.707500px;}
.y169{bottom:500.340000px;}
.yf1{bottom:500.970000px;}
.y2d{bottom:501.690000px;}
.y60{bottom:509.970000px;}
.y12a{bottom:521.310000px;}
.yf9{bottom:521.850000px;}
.y15d{bottom:524.190000px;}
.y45{bottom:524.550000px;}
.y51{bottom:525.000000px;}
.y75{bottom:533.370000px;}
.y8a{bottom:536.340000px;}
.y13{bottom:538.230000px;}
.yf0{bottom:542.370000px;}
.y2c{bottom:543.090000px;}
.y6{bottom:548.716500px;}
.y5f{bottom:551.370000px;}
.y110{bottom:554.430000px;}
.yf8{bottom:556.140000px;}
.y44{bottom:558.930000px;}
.y129{bottom:562.710000px;}
.y50{bottom:566.310000px;}
.y167{bottom:566.400000px;}
.y74{bottom:574.800000px;}
.y2b{bottom:577.770000px;}
.yef{bottom:583.800000px;}
.y1d{bottom:589.605000px;}
.yf7{bottom:590.550000px;}
.y5e{bottom:592.800000px;}
.y43{bottom:593.250000px;}
.y5{bottom:599.725500px;}
.y128{bottom:604.140000px;}
.y4f{bottom:607.740000px;}
.y166{bottom:608.550000px;}
.y42{bottom:615.660000px;}
.y73{bottom:616.200000px;}
.y2a{bottom:619.170000px;}
.ya8{bottom:622.860000px;}
.yf6{bottom:624.840000px;}
.yee{bottom:625.200000px;}
.y14e{bottom:625.470000px;}
.y107{bottom:626.100000px;}
.ye{bottom:631.920000px;}
.y5d{bottom:634.200000px;}
.ye0{bottom:634.606710px;}
.y41{bottom:637.980000px;}
.y4e{bottom:649.140000px;}
.y165{bottom:650.670000px;}
.yf5{bottom:655.350000px;}
.ya7{bottom:657.150000px;}
.y72{bottom:657.600000px;}
.y40{bottom:660.300000px;}
.y29{bottom:660.570000px;}
.yed{bottom:666.600000px;}
.y14d{bottom:666.870000px;}
.y5c{bottom:675.600000px;}
.ya6{bottom:679.470000px;}
.y3f{bottom:682.620000px;}
.y14c{bottom:684.420000px;}
.y4d{bottom:690.540000px;}
.y15c{bottom:692.880000px;}
.yc8{bottom:694.757311px;}
.yd6{bottom:697.555013px;}
.y109{bottom:697.830000px;}
.y71{bottom:699.000000px;}
.ya5{bottom:701.790000px;}
.y28{bottom:701.970000px;}
.yae{bottom:707.661897px;}
.yec{bottom:708.000000px;}
.y14b{bottom:715.470000px;}
.y3e{bottom:717.000000px;}
.ya2{bottom:719.430000px;}
.ydc{bottom:727.578504px;}
.y4c{bottom:731.940000px;}
.y154{bottom:735.000000px;}
.y70{bottom:740.400000px;}
.ya4{bottom:740.850000px;}
.y27{bottom:743.370000px;}
.y14a{bottom:746.520000px;}
.yeb{bottom:749.400000px;}
.y81{bottom:758.400000px;}
.ya3{bottom:762.270000px;}
.y3d{bottom:773.340000px;}
.y15b{bottom:777.120000px;}
.y149{bottom:777.570000px;}
.y4{bottom:778.225500px;}
.y100{bottom:781.350000px;}
.y6f{bottom:781.800000px;}
.y26{bottom:784.770000px;}
.ya1{bottom:789.270000px;}
.yea{bottom:790.800000px;}
.y4b{bottom:798.900000px;}
.y80{bottom:799.800000px;}
.ye2{bottom:802.183900px;}
.y148{bottom:808.620000px;}
.y9e{bottom:810.780000px;}
.y3c{bottom:814.740000px;}
.y14{bottom:815.670000px;}
.y15a{bottom:819.330000px;}
.y6e{bottom:823.200000px;}
.y25{bottom:826.170000px;}
.ya0{bottom:832.200000px;}
.yb1{bottom:837.155180px;}
.y4a{bottom:840.300000px;}
.y147{bottom:840.480000px;}
.y7f{bottom:841.200000px;}
.y3b{bottom:856.140000px;}
.y9d{bottom:857.850000px;}
.y153{bottom:861.450000px;}
.y104{bottom:864.870000px;}
.y24{bottom:867.570000px;}
.y145{bottom:871.530000px;}
.ye9{bottom:873.510000px;}
.y9c{bottom:878.550000px;}
.y5b{bottom:882.510000px;}
.y49{bottom:882.960000px;}
.y3a{bottom:897.540000px;}
.y9b{bottom:899.250000px;}
.y144{bottom:902.490000px;}
.y152{bottom:902.850000px;}
.y3{bottom:905.716500px;}
.y127{bottom:908.970000px;}
.ye8{bottom:914.910000px;}
.y9a{bottom:919.950000px;}
.y23{bottom:923.910000px;}
.y151{bottom:924.270000px;}
.y48{bottom:924.360000px;}
.y142{bottom:933.540000px;}
.y39{bottom:938.940000px;}
.y96{bottom:941.370000px;}
.yfc{bottom:948.480000px;}
.y126{bottom:950.370000px;}
.yaf{bottom:952.210690px;}
.ye7{bottom:956.310000px;}
.y99{bottom:962.880000px;}
.y2{bottom:964.228500px;}
.y6d{bottom:965.310000px;}
.y140{bottom:965.400000px;}
.ye4{bottom:965.422062px;}
.y150{bottom:966.390000px;}
.y47{bottom:967.020000px;}
.y22{bottom:980.340000px;}
.y98{bottom:984.300000px;}
.y1{bottom:989.716500px;}
.y94{bottom:1006.740000px;}
.y46{bottom:1008.540000px;}
.ye6{bottom:1009.800000px;}
.y21{bottom:1021.770000px;}
.y14f{bottom:1027.440000px;}
.y38{bottom:1028.520000px;}
.y95{bottom:1028.790000px;}
.y20{bottom:1063.170000px;}
.y37{bottom:1069.920000px;}
.y1f{bottom:1096.470000px;}
.y1e{bottom:1117.170000px;}
.h2f{height:15.387363px;}
.h2a{height:15.698219px;}
.h2c{height:15.853647px;}
.h22{height:16.319930px;}
.h2e{height:17.407926px;}
.h30{height:18.340493px;}
.h29{height:18.651349px;}
.h28{height:18.962205px;}
.h26{height:20.361056px;}
.h15{height:20.700000px;}
.h3d{height:20.730000px;}
.h1d{height:20.827340px;}
.h45{height:23.130000px;}
.h17{height:24.930000px;}
.h19{height:26.280000px;}
.h13{height:26.310000px;}
.h41{height:30.960000px;}
.h3f{height:31.050000px;}
.h3e{height:31.080000px;}
.h4{height:33.000000px;}
.h3c{height:41.400000px;}
.h42{height:41.430000px;}
.h14{height:42.210000px;}
.h16{height:46.350000px;}
.hc{height:46.991602px;}
.h1a{height:47.700000px;}
.h40{height:48.142969px;}
.h1e{height:50.644606px;}
.h25{height:50.979140px;}
.h2d{height:52.005207px;}
.h10{height:52.066406px;}
.h20{height:53.038792px;}
.h23{height:56.136189px;}
.h21{height:56.890258px;}
.h3{height:58.406250px;}
.h33{height:62.130000px;}
.h47{height:65.526152px;}
.h11{height:66.394687px;}
.h2{height:66.750000px;}
.h2b{height:67.669426px;}
.h5{height:67.740234px;}
.h18{height:69.120000px;}
.h12{height:69.240000px;}
.hf{height:70.628906px;}
.ha{height:70.664062px;}
.h38{height:70.950000px;}
.h37{height:71.010000px;}
.h3a{height:71.280000px;}
.hd{height:72.562500px;}
.h1c{height:73.308545px;}
.hb{height:73.991602px;}
.he{height:74.004654px;}
.h32{height:82.323633px;}
.h35{height:82.800000px;}
.h31{height:84.535312px;}
.h1f{height:85.361008px;}
.h3b{height:87.210000px;}
.h46{height:107.370000px;}
.h7{height:115.215000px;}
.h36{height:154.530000px;}
.h34{height:166.320000px;}
.h43{height:167.850000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h27{height:175.193158px;}
.h24{height:176.125726px;}
.h44{height:210.090000px;}
.h39{height:238.320000px;}
.h1b{height:724.758967px;}
.h9{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w13{width:17.730000px;}
.w37{width:20.880000px;}
.wd{width:29.280000px;}
.wf{width:37.260000px;}
.w2d{width:52.140000px;}
.w12{width:53.400000px;}
.w2c{width:54.000000px;}
.w39{width:55.620000px;}
.w11{width:61.560000px;}
.w28{width:69.240000px;}
.w2f{width:72.270000px;}
.w30{width:72.990000px;}
.w31{width:73.080000px;}
.w32{width:73.110000px;}
.w38{width:83.460000px;}
.w33{width:87.300000px;}
.w36{width:101.010000px;}
.w3a{width:104.220000px;}
.w3b{width:104.250000px;}
.w2b{width:106.140000px;}
.w2a{width:108.360000px;}
.w29{width:112.950000px;}
.w10{width:114.960000px;}
.w3d{width:118.440000px;}
.w24{width:131.130000px;}
.w3c{width:132.120000px;}
.w21{width:138.134874px;}
.w1f{width:140.778852px;}
.w1e{width:141.400964px;}
.w20{width:142.334133px;}
.w22{width:152.793398px;}
.w34{width:159.960000px;}
.w23{width:168.780000px;}
.wc{width:179.460000px;}
.we{width:179.550000px;}
.w3e{width:191.640000px;}
.w26{width:194.340000px;}
.w16{width:203.340030px;}
.w14{width:215.580000px;}
.wb{width:233.310000px;}
.w17{width:249.842933px;}
.w1d{width:289.191542px;}
.w18{width:289.217463px;}
.w1c{width:289.347070px;}
.w1b{width:289.347072px;}
.w1a{width:289.684047px;}
.w19{width:289.839577px;}
.w8{width:301.170000px;}
.w27{width:305.400000px;}
.w25{width:320.610000px;}
.w6{width:366.465000px;}
.w2e{width:402.720000px;}
.w2{width:494.625000px;}
.w35{width:514.650000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w15{width:701.302124px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.wa{width:917.999986px;}
.w9{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x27{left:8.100000px;}
.x3e{left:9.331686px;}
.x36{left:11.700000px;}
.x29{left:14.400000px;}
.x35{left:16.200000px;}
.x31{left:18.630000px;}
.x33{left:21.150000px;}
.x58{left:22.680000px;}
.x3a{left:23.760000px;}
.x30{left:25.200000px;}
.x54{left:26.640000px;}
.x39{left:29.700000px;}
.x2c{left:30.960000px;}
.x38{left:32.220000px;}
.x52{left:33.480000px;}
.x56{left:35.010000px;}
.x68{left:39.540000px;}
.x43{left:42.148115px;}
.x3c{left:43.547858px;}
.x46{left:44.667670px;}
.x44{left:46.813958px;}
.x69{left:50.520000px;}
.x26{left:54.000000px;}
.x2f{left:55.170000px;}
.x37{left:57.420000px;}
.x34{left:71.730000px;}
.x60{left:102.870000px;}
.xb{left:107.999986px;}
.x1c{left:113.039986px;}
.x1a{left:116.279986px;}
.xd{left:119.519986px;}
.x18{left:123.029986px;}
.x45{left:124.485970px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x20{left:134.999986px;}
.x50{left:154.559986px;}
.xc{left:160.049986px;}
.x21{left:162.029986px;}
.x1e{left:171.569986px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x63{left:207.210000px;}
.x5f{left:215.039986px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x4f{left:229.079986px;}
.x61{left:262.830000px;}
.x48{left:266.519986px;}
.x28{left:287.310000px;}
.x4a{left:301.529986px;}
.x4b{left:316.289986px;}
.x4e{left:318.539986px;}
.x49{left:351.569986px;}
.x4c{left:353.910000px;}
.xe{left:362.999986px;}
.x64{left:367.050000px;}
.x11{left:369.569986px;}
.x12{left:372.989986px;}
.x14{left:374.789986px;}
.x17{left:378.749986px;}
.x5e{left:384.689986px;}
.x16{left:387.299986px;}
.x10{left:390.269986px;}
.x42{left:391.618446px;}
.x13{left:401.249986px;}
.x5d{left:405.749986px;}
.x15{left:408.719986px;}
.x1b{left:413.039986px;}
.x47{left:415.739986px;}
.x1f{left:418.979986px;}
.x25{left:420.509986px;}
.x65{left:422.670000px;}
.x1d{left:425.999986px;}
.x22{left:428.969986px;}
.x24{left:431.039986px;}
.x19{left:437.519986px;}
.xf{left:459.029986px;}
.x2a{left:466.770000px;}
.x51{left:482.640000px;}
.x2b{left:496.050000px;}
.x59{left:510.720000px;}
.x40{left:515.613224px;}
.x41{left:517.168509px;}
.x3f{left:519.501427px;}
.x66{left:526.920000px;}
.x3d{left:542.986166px;}
.x5a{left:582.990000px;}
.x53{left:595.590000px;}
.x5b{left:655.980000px;}
.x67{left:659.040000px;}
.x4d{left:674.520000px;}
.x2d{left:675.600000px;}
.x55{left:703.950000px;}
.x2e{left:712.860000px;}
.x5c{left:729.060000px;}
.x57{left:757.950000px;}
.x32{left:774.420000px;}
.x62{left:777.480000px;}
.x23{left:792.059986px;}
.xa{left:801.089986px;}
.x3b{left:810.089986px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.026344pt;}
.v1{vertical-align:24.000000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.276316pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.199408pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.078290pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.006632pt;}
.lsb{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.008320pt;}
.ls14{letter-spacing:0.040895pt;}
.ls6{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.104079pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.199500pt;}
.lsf{letter-spacing:0.207053pt;}
.ls1b{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.276316pt;}
.lsd{letter-spacing:0.303395pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.525440pt;}
.ls3{letter-spacing:48.874667pt;}
.lse{letter-spacing:49.235509pt;}
.ls18{letter-spacing:173.466667pt;}
.lsc{letter-spacing:754.872107pt;}
.ws6{word-spacing:-43.136000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws5{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.680000pt;}
.wsc{word-spacing:-11.743442pt;}
.wsf{word-spacing:-11.508021pt;}
.wsd{word-spacing:-11.467126pt;}
.ws11{word-spacing:-11.267717pt;}
.ws10{word-spacing:-11.190809pt;}
.ws12{word-spacing:-10.648320pt;}
.ws4{word-spacing:-10.640000pt;}
.wse{word-spacing:-7.453908pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._24{margin-left:-4.864000pt;}
._3{margin-left:-3.808000pt;}
._a{margin-left:-2.720000pt;}
._1{margin-left:-1.774933pt;}
._6{width:0.942933pt;}
._d{width:1.885867pt;}
._e{width:3.012267pt;}
._14{width:3.929600pt;}
._0{width:4.966400pt;}
._11{width:6.144000pt;}
._12{width:7.185067pt;}
._13{width:8.302933pt;}
._25{width:9.194667pt;}
._c{width:10.090667pt;}
._b{width:10.986667pt;}
._10{width:12.330667pt;}
._9{width:13.397333pt;}
._8{width:14.506667pt;}
._7{width:17.408000pt;}
._1d{width:18.624000pt;}
._19{width:19.882667pt;}
._18{width:21.034667pt;}
._16{width:22.250667pt;}
._15{width:23.274667pt;}
._f{width:24.960000pt;}
._1e{width:26.432000pt;}
._1c{width:27.392000pt;}
._1a{width:32.576000pt;}
._1b{width:33.792000pt;}
._17{width:45.120000pt;}
._21{width:106.794667pt;}
._23{width:155.050667pt;}
._22{width:176.000000pt;}
._4{width:244.160000pt;}
._1f{width:707.306667pt;}
._20{width:712.000000pt;}
._5{width:752.106667pt;}
.fsa{font-size:29.842159pt;}
.fs8{font-size:37.026382pt;}
.fs4{font-size:42.560000pt;}
.fs7{font-size:45.868503pt;}
.fs9{font-size:50.842196pt;}
.fsd{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:59.684317pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:64.658010pt;}
.fsc{font-size:74.560000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.yc7{bottom:-40.922441pt;}
.yc6{bottom:-14.092130pt;}
.yb7{bottom:-12.710549pt;}
.yba{bottom:-12.572391pt;}
.ydb{bottom:-10.500053pt;}
.yd8{bottom:-10.500019pt;}
.yca{bottom:-9.118437pt;}
.yd5{bottom:-2.763163pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:1.105265pt;}
.yb6{bottom:2.486847pt;}
.ye3{bottom:2.901321pt;}
.ydd{bottom:3.177637pt;}
.ydf{bottom:3.315795pt;}
.y97{bottom:3.440000pt;}
.y13e{bottom:3.466667pt;}
.yb9{bottom:3.730155pt;}
.ye1{bottom:4.697377pt;}
.ye5{bottom:5.526326pt;}
.y16a{bottom:5.600000pt;}
.yda{bottom:5.802527pt;}
.yd7{bottom:6.078958pt;}
.yc{bottom:7.146667pt;}
.yc9{bottom:7.322381pt;}
.y10c{bottom:7.360000pt;}
.yb0{bottom:7.736856pt;}
.y115{bottom:11.280000pt;}
.y10f{bottom:11.360000pt;}
.y146{bottom:12.560000pt;}
.yff{bottom:12.640000pt;}
.yd4{bottom:12.986865pt;}
.y143{bottom:14.160000pt;}
.y16f{bottom:14.400000pt;}
.y123{bottom:14.560000pt;}
.yc4{bottom:16.717135pt;}
.y11e{bottom:16.720000pt;}
.yb5{bottom:17.684242pt;}
.y9f{bottom:21.840000pt;}
.y168{bottom:21.866667pt;}
.y10a{bottom:25.760000pt;}
.y111{bottom:25.786667pt;}
.y11c{bottom:25.920000pt;}
.y141{bottom:27.626667pt;}
.y114{bottom:29.706667pt;}
.yd3{bottom:29.709757pt;}
.y10e{bottom:29.760000pt;}
.yfe{bottom:31.040000pt;}
.y159{bottom:32.000000pt;}
.y164{bottom:32.400000pt;}
.y16e{bottom:32.800000pt;}
.y121{bottom:32.960000pt;}
.yc3{bottom:33.440027pt;}
.yb4{bottom:33.745126pt;}
.y11d{bottom:35.120000pt;}
.y105{bottom:40.240000pt;}
.yfd{bottom:40.266667pt;}
.y10b{bottom:44.160000pt;}
.y112{bottom:44.186667pt;}
.yd2{bottom:46.426892pt;}
.y113{bottom:48.106667pt;}
.y10d{bottom:48.160000pt;}
.y11f{bottom:48.400000pt;}
.y11a{bottom:49.440000pt;}
.y103{bottom:49.760000pt;}
.yb3{bottom:49.771470pt;}
.yc2{bottom:49.880846pt;}
.y158{bottom:50.400000pt;}
.y163{bottom:50.826667pt;}
.y16d{bottom:51.200000pt;}
.y122{bottom:51.360000pt;}
.y106{bottom:58.640000pt;}
.y1c{bottom:61.786667pt;}
.y124{bottom:62.560000pt;}
.y108{bottom:62.960000pt;}
.yd1{bottom:63.144027pt;}
.yb2{bottom:65.107024pt;}
.yc1{bottom:65.492716pt;}
.y102{bottom:68.160000pt;}
.y157{bottom:68.800000pt;}
.y16{bottom:69.080000pt;}
.y162{bottom:69.226667pt;}
.y16c{bottom:69.600000pt;}
.yd0{bottom:79.584846pt;}
.y1b{bottom:81.413333pt;}
.yc0{bottom:81.795376pt;}
.y101{bottom:86.560000pt;}
.y156{bottom:87.200000pt;}
.y161{bottom:87.626667pt;}
.y15{bottom:88.706667pt;}
.y118{bottom:90.960000pt;}
.ycf{bottom:95.196716pt;}
.ybf{bottom:97.407246pt;}
.y11{bottom:99.426667pt;}
.y1a{bottom:101.040000pt;}
.y179{bottom:101.680000pt;}
.y155{bottom:105.600000pt;}
.y160{bottom:106.026667pt;}
.yfb{bottom:107.200000pt;}
.y36{bottom:108.800000pt;}
.y117{bottom:109.360000pt;}
.yce{bottom:111.936878pt;}
.ybe{bottom:114.285566pt;}
.y10{bottom:119.053333pt;}
.y13f{bottom:119.440000pt;}
.y19{bottom:120.666667pt;}
.y69{bottom:122.080000pt;}
.y15f{bottom:124.426667pt;}
.ycd{bottom:128.654013pt;}
.ybd{bottom:130.588227pt;}
.y91{bottom:132.240000pt;}
.yfa{bottom:134.240000pt;}
.y13d{bottom:135.040000pt;}
.y89{bottom:135.280000pt;}
.y5a{bottom:135.440000pt;}
.y178{bottom:136.560000pt;}
.y17{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y18{bottom:140.293333pt;}
.y15e{bottom:142.826667pt;}
.y7e{bottom:142.906667pt;}
.ycc{bottom:144.956673pt;}
.y93{bottom:145.546667pt;}
.ybc{bottom:145.785622pt;}
.y35{bottom:151.546667pt;}
.y13c{bottom:153.466667pt;}
.y131{bottom:155.706667pt;}
.y68{bottom:158.906667pt;}
.y177{bottom:166.106667pt;}
.y6c{bottom:169.066667pt;}
.y87{bottom:172.106667pt;}
.y59{bottom:172.266667pt;}
.y7d{bottom:179.706667pt;}
.y34{bottom:182.346667pt;}
.y176{bottom:185.946667pt;}
.y125{bottom:186.426667pt;}
.y13b{bottom:190.266667pt;}
.y130{bottom:192.506667pt;}
.y67{bottom:195.706667pt;}
.y173{bottom:201.626667pt;}
.y120{bottom:202.106667pt;}
.y6b{bottom:205.866667pt;}
.y13a{bottom:208.666667pt;}
.y86{bottom:208.906667pt;}
.y58{bottom:209.066667pt;}
.y7c{bottom:216.506667pt;}
.y92{bottom:219.146667pt;}
.yac{bottom:222.186667pt;}
.y33{bottom:225.146667pt;}
.y139{bottom:227.066667pt;}
.y12f{bottom:229.306667pt;}
.y66{bottom:232.506667pt;}
.y175{bottom:239.066667pt;}
.y8f{bottom:242.666667pt;}
.y138{bottom:245.466667pt;}
.y85{bottom:245.706667pt;}
.y57{bottom:245.866667pt;}
.y7b{bottom:253.306667pt;}
.yab{bottom:253.946667pt;}
.y32{bottom:255.946667pt;}
.y12e{bottom:266.106667pt;}
.y65{bottom:269.306667pt;}
.y174{bottom:276.506667pt;}
.y8e{bottom:279.466667pt;}
.y116{bottom:280.266667pt;}
.y137{bottom:282.266667pt;}
.y84{bottom:282.506667pt;}
.y56{bottom:282.666667pt;}
.yaa{bottom:285.626667pt;}
.y7a{bottom:290.106667pt;}
.y6a{bottom:292.746667pt;}
.y88{bottom:294.026667pt;}
.y31{bottom:298.746667pt;}
.y136{bottom:300.666667pt;}
.y12d{bottom:302.906667pt;}
.y64{bottom:306.106667pt;}
.ya{bottom:306.382667pt;}
.ya9{bottom:313.946667pt;}
.y172{bottom:314.026667pt;}
.yad{bottom:315.768327pt;}
.y8d{bottom:316.266667pt;}
.y135{bottom:319.066667pt;}
.y83{bottom:319.306667pt;}
.y55{bottom:319.466667pt;}
.yd9{bottom:324.472336pt;}
.yb8{bottom:325.715760pt;}
.y79{bottom:326.906667pt;}
.y30{bottom:329.546667pt;}
.yf4{bottom:334.906667pt;}
.y134{bottom:337.466667pt;}
.y63{bottom:342.906667pt;}
.yd{bottom:343.546667pt;}
.y11b{bottom:344.266667pt;}
.yde{bottom:349.893319pt;}
.y171{bottom:350.826667pt;}
.y9{bottom:351.724000pt;}
.y8c{bottom:353.066667pt;}
.y54{bottom:356.266667pt;}
.y133{bottom:356.506667pt;}
.y78{bottom:363.706667pt;}
.y90{bottom:366.346667pt;}
.y82{bottom:367.626667pt;}
.y16b{bottom:369.866667pt;}
.yf3{bottom:371.706667pt;}
.y2f{bottom:372.346667pt;}
.y132{bottom:375.626667pt;}
.y62{bottom:379.706667pt;}
.yb{bottom:386.533333pt;}
.y12c{bottom:389.866667pt;}
.y53{bottom:393.066667pt;}
.y8{bottom:397.065333pt;}
.ybb{bottom:400.348672pt;}
.y77{bottom:400.506667pt;}
.ycb{bottom:402.835519pt;}
.y2e{bottom:403.146667pt;}
.y170{bottom:407.306667pt;}
.yf2{bottom:408.506667pt;}
.y61{bottom:416.506667pt;}
.y119{bottom:418.506667pt;}
.y12b{bottom:426.666667pt;}
.y52{bottom:429.866667pt;}
.y12{bottom:433.826667pt;}
.y76{bottom:437.306667pt;}
.y8b{bottom:439.946667pt;}
.y7{bottom:442.406667pt;}
.y169{bottom:444.746667pt;}
.yf1{bottom:445.306667pt;}
.y2d{bottom:445.946667pt;}
.y60{bottom:453.306667pt;}
.y12a{bottom:463.386667pt;}
.yf9{bottom:463.866667pt;}
.y15d{bottom:465.946667pt;}
.y45{bottom:466.266667pt;}
.y51{bottom:466.666667pt;}
.y75{bottom:474.106667pt;}
.y8a{bottom:476.746667pt;}
.y13{bottom:478.426667pt;}
.yf0{bottom:482.106667pt;}
.y2c{bottom:482.746667pt;}
.y6{bottom:487.748000pt;}
.y5f{bottom:490.106667pt;}
.y110{bottom:492.826667pt;}
.yf8{bottom:494.346667pt;}
.y44{bottom:496.826667pt;}
.y129{bottom:500.186667pt;}
.y50{bottom:503.386667pt;}
.y167{bottom:503.466667pt;}
.y74{bottom:510.933333pt;}
.y2b{bottom:513.573333pt;}
.yef{bottom:518.933333pt;}
.y1d{bottom:524.093333pt;}
.yf7{bottom:524.933333pt;}
.y5e{bottom:526.933333pt;}
.y43{bottom:527.333333pt;}
.y5{bottom:533.089333pt;}
.y128{bottom:537.013333pt;}
.y4f{bottom:540.213333pt;}
.y166{bottom:540.933333pt;}
.y42{bottom:547.253333pt;}
.y73{bottom:547.733333pt;}
.y2a{bottom:550.373333pt;}
.ya8{bottom:553.653333pt;}
.yf6{bottom:555.413333pt;}
.yee{bottom:555.733333pt;}
.y14e{bottom:555.973333pt;}
.y107{bottom:556.533333pt;}
.ye{bottom:561.706667pt;}
.y5d{bottom:563.733333pt;}
.ye0{bottom:564.094853pt;}
.y41{bottom:567.093333pt;}
.y4e{bottom:577.013333pt;}
.y165{bottom:578.373333pt;}
.yf5{bottom:582.533333pt;}
.ya7{bottom:584.133333pt;}
.y72{bottom:584.533333pt;}
.y40{bottom:586.933333pt;}
.y29{bottom:587.173333pt;}
.yed{bottom:592.533333pt;}
.y14d{bottom:592.773333pt;}
.y5c{bottom:600.533333pt;}
.ya6{bottom:603.973333pt;}
.y3f{bottom:606.773333pt;}
.y14c{bottom:608.373333pt;}
.y4d{bottom:613.813333pt;}
.y15c{bottom:615.893333pt;}
.yc8{bottom:617.562054pt;}
.yd6{bottom:620.048900pt;}
.y109{bottom:620.293333pt;}
.y71{bottom:621.333333pt;}
.ya5{bottom:623.813333pt;}
.y28{bottom:623.973333pt;}
.yae{bottom:629.032798pt;}
.yec{bottom:629.333333pt;}
.y14b{bottom:635.973333pt;}
.y3e{bottom:637.333333pt;}
.ya2{bottom:639.493333pt;}
.ydc{bottom:646.736448pt;}
.y4c{bottom:650.613333pt;}
.y154{bottom:653.333333pt;}
.y70{bottom:658.133333pt;}
.ya4{bottom:658.533333pt;}
.y27{bottom:660.773333pt;}
.y14a{bottom:663.573333pt;}
.yeb{bottom:666.133333pt;}
.y81{bottom:674.133333pt;}
.ya3{bottom:677.573333pt;}
.y3d{bottom:687.413333pt;}
.y15b{bottom:690.773333pt;}
.y149{bottom:691.173333pt;}
.y4{bottom:691.756000pt;}
.y100{bottom:694.533333pt;}
.y6f{bottom:694.933333pt;}
.y26{bottom:697.573333pt;}
.ya1{bottom:701.573333pt;}
.yea{bottom:702.933333pt;}
.y4b{bottom:710.133333pt;}
.y80{bottom:710.933333pt;}
.ye2{bottom:713.052356pt;}
.y148{bottom:718.773333pt;}
.y9e{bottom:720.693333pt;}
.y3c{bottom:724.213333pt;}
.y14{bottom:725.040000pt;}
.y15a{bottom:728.293333pt;}
.y6e{bottom:731.733333pt;}
.y25{bottom:734.373333pt;}
.ya0{bottom:739.733333pt;}
.yb1{bottom:744.137938pt;}
.y4a{bottom:746.933333pt;}
.y147{bottom:747.093333pt;}
.y7f{bottom:747.733333pt;}
.y3b{bottom:761.013333pt;}
.y9d{bottom:762.533333pt;}
.y153{bottom:765.733333pt;}
.y104{bottom:768.773333pt;}
.y24{bottom:771.173333pt;}
.y145{bottom:774.693333pt;}
.ye9{bottom:776.453333pt;}
.y9c{bottom:780.933333pt;}
.y5b{bottom:784.453333pt;}
.y49{bottom:784.853333pt;}
.y3a{bottom:797.813333pt;}
.y9b{bottom:799.333333pt;}
.y144{bottom:802.213333pt;}
.y152{bottom:802.533333pt;}
.y3{bottom:805.081333pt;}
.y127{bottom:807.973333pt;}
.ye8{bottom:813.253333pt;}
.y9a{bottom:817.733333pt;}
.y23{bottom:821.253333pt;}
.y151{bottom:821.573333pt;}
.y48{bottom:821.653333pt;}
.y142{bottom:829.813333pt;}
.y39{bottom:834.613333pt;}
.y96{bottom:836.773333pt;}
.yfc{bottom:843.093333pt;}
.y126{bottom:844.773333pt;}
.yaf{bottom:846.409502pt;}
.ye7{bottom:850.053333pt;}
.y99{bottom:855.893333pt;}
.y2{bottom:857.092000pt;}
.y6d{bottom:858.053333pt;}
.y140{bottom:858.133333pt;}
.ye4{bottom:858.152944pt;}
.y150{bottom:859.013333pt;}
.y47{bottom:859.573333pt;}
.y22{bottom:871.413333pt;}
.y98{bottom:874.933333pt;}
.y1{bottom:879.748000pt;}
.y94{bottom:894.880000pt;}
.y46{bottom:896.480000pt;}
.ye6{bottom:897.600000pt;}
.y21{bottom:908.240000pt;}
.y14f{bottom:913.280000pt;}
.y38{bottom:914.240000pt;}
.y95{bottom:914.480000pt;}
.y20{bottom:945.040000pt;}
.y37{bottom:951.040000pt;}
.y1f{bottom:974.640000pt;}
.y1e{bottom:993.040000pt;}
.h2f{height:13.677656pt;}
.h2a{height:13.953972pt;}
.h2c{height:14.092130pt;}
.h22{height:14.506605pt;}
.h2e{height:15.473712pt;}
.h30{height:16.302661pt;}
.h29{height:16.578977pt;}
.h28{height:16.855293pt;}
.h26{height:18.098717pt;}
.h15{height:18.400000pt;}
.h3d{height:18.426667pt;}
.h1d{height:18.513191pt;}
.h45{height:20.560000pt;}
.h17{height:22.160000pt;}
.h19{height:23.360000pt;}
.h13{height:23.386667pt;}
.h41{height:27.520000pt;}
.h3f{height:27.600000pt;}
.h3e{height:27.626667pt;}
.h4{height:29.333333pt;}
.h3c{height:36.800000pt;}
.h42{height:36.826667pt;}
.h14{height:37.520000pt;}
.h16{height:41.200000pt;}
.hc{height:41.770312pt;}
.h1a{height:42.400000pt;}
.h40{height:42.793750pt;}
.h1e{height:45.017427pt;}
.h25{height:45.314791pt;}
.h2d{height:46.226851pt;}
.h10{height:46.281250pt;}
.h20{height:47.145593pt;}
.h23{height:49.898835pt;}
.h21{height:50.569118pt;}
.h3{height:51.916667pt;}
.h33{height:55.226667pt;}
.h47{height:58.245469pt;}
.h11{height:59.017500pt;}
.h2{height:59.333333pt;}
.h2b{height:60.150601pt;}
.h5{height:60.213542pt;}
.h18{height:61.440000pt;}
.h12{height:61.546667pt;}
.hf{height:62.781250pt;}
.ha{height:62.812500pt;}
.h38{height:63.066667pt;}
.h37{height:63.120000pt;}
.h3a{height:63.360000pt;}
.hd{height:64.500000pt;}
.h1c{height:65.163151pt;}
.hb{height:65.770312pt;}
.he{height:65.781915pt;}
.h32{height:73.176562pt;}
.h35{height:73.600000pt;}
.h31{height:75.142500pt;}
.h1f{height:75.876451pt;}
.h3b{height:77.520000pt;}
.h46{height:95.440000pt;}
.h7{height:102.413333pt;}
.h36{height:137.360000pt;}
.h34{height:147.840000pt;}
.h43{height:149.200000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h27{height:155.727252pt;}
.h24{height:156.556201pt;}
.h44{height:186.746667pt;}
.h39{height:211.840000pt;}
.h1b{height:644.230193pt;}
.h9{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w13{width:15.760000pt;}
.w37{width:18.560000pt;}
.wd{width:26.026667pt;}
.wf{width:33.120000pt;}
.w2d{width:46.346667pt;}
.w12{width:47.466667pt;}
.w2c{width:48.000000pt;}
.w39{width:49.440000pt;}
.w11{width:54.720000pt;}
.w28{width:61.546667pt;}
.w2f{width:64.240000pt;}
.w30{width:64.880000pt;}
.w31{width:64.960000pt;}
.w32{width:64.986667pt;}
.w38{width:74.186667pt;}
.w33{width:77.600000pt;}
.w36{width:89.786667pt;}
.w3a{width:92.640000pt;}
.w3b{width:92.666667pt;}
.w2b{width:94.346667pt;}
.w2a{width:96.320000pt;}
.w29{width:100.400000pt;}
.w10{width:102.186667pt;}
.w3d{width:105.280000pt;}
.w24{width:116.560000pt;}
.w3c{width:117.440000pt;}
.w21{width:122.786555pt;}
.w1f{width:125.136757pt;}
.w1e{width:125.689746pt;}
.w20{width:126.519229pt;}
.w22{width:135.816354pt;}
.w34{width:142.186667pt;}
.w23{width:150.026667pt;}
.wc{width:159.520000pt;}
.we{width:159.600000pt;}
.w3e{width:170.346667pt;}
.w26{width:172.746667pt;}
.w16{width:180.746694pt;}
.w14{width:191.626667pt;}
.wb{width:207.386667pt;}
.w17{width:222.082607pt;}
.w1d{width:257.059148pt;}
.w18{width:257.082189pt;}
.w1c{width:257.197395pt;}
.w1b{width:257.197397pt;}
.w1a{width:257.496931pt;}
.w19{width:257.635180pt;}
.w8{width:267.706667pt;}
.w27{width:271.466667pt;}
.w25{width:284.986667pt;}
.w6{width:325.746667pt;}
.w2e{width:357.973333pt;}
.w2{width:439.666667pt;}
.w35{width:457.466667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w15{width:623.379666pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.wa{width:815.999988pt;}
.w9{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x27{left:7.200000pt;}
.x3e{left:8.294832pt;}
.x36{left:10.400000pt;}
.x29{left:12.800000pt;}
.x35{left:14.400000pt;}
.x31{left:16.560000pt;}
.x33{left:18.800000pt;}
.x58{left:20.160000pt;}
.x3a{left:21.120000pt;}
.x30{left:22.400000pt;}
.x54{left:23.680000pt;}
.x39{left:26.400000pt;}
.x2c{left:27.520000pt;}
.x38{left:28.640000pt;}
.x52{left:29.760000pt;}
.x56{left:31.120000pt;}
.x68{left:35.146667pt;}
.x43{left:37.464991pt;}
.x3c{left:38.709207pt;}
.x46{left:39.704596pt;}
.x44{left:41.612407pt;}
.x69{left:44.906667pt;}
.x26{left:48.000000pt;}
.x2f{left:49.040000pt;}
.x37{left:51.040000pt;}
.x34{left:63.760000pt;}
.x60{left:91.440000pt;}
.xb{left:95.999988pt;}
.x1c{left:100.479988pt;}
.x1a{left:103.359988pt;}
.xd{left:106.239988pt;}
.x18{left:109.359988pt;}
.x45{left:110.654195pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x20{left:119.999988pt;}
.x50{left:137.386655pt;}
.xc{left:142.266655pt;}
.x21{left:144.026655pt;}
.x1e{left:152.506655pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x63{left:184.186667pt;}
.x5f{left:191.146655pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x4f{left:203.626655pt;}
.x61{left:233.626667pt;}
.x48{left:236.906655pt;}
.x28{left:255.386667pt;}
.x4a{left:268.026655pt;}
.x4b{left:281.146655pt;}
.x4e{left:283.146655pt;}
.x49{left:312.506655pt;}
.x4c{left:314.586667pt;}
.xe{left:322.666655pt;}
.x64{left:326.266667pt;}
.x11{left:328.506655pt;}
.x12{left:331.546655pt;}
.x14{left:333.146655pt;}
.x17{left:336.666655pt;}
.x5e{left:341.946655pt;}
.x16{left:344.266655pt;}
.x10{left:346.906655pt;}
.x42{left:348.105285pt;}
.x13{left:356.666655pt;}
.x5d{left:360.666655pt;}
.x15{left:363.306655pt;}
.x1b{left:367.146655pt;}
.x47{left:369.546655pt;}
.x1f{left:372.426655pt;}
.x25{left:373.786655pt;}
.x65{left:375.706667pt;}
.x1d{left:378.666655pt;}
.x22{left:381.306655pt;}
.x24{left:383.146655pt;}
.x19{left:388.906655pt;}
.xf{left:408.026655pt;}
.x2a{left:414.906667pt;}
.x51{left:429.013333pt;}
.x2b{left:440.933333pt;}
.x59{left:453.973333pt;}
.x40{left:458.322865pt;}
.x41{left:459.705342pt;}
.x3f{left:461.779047pt;}
.x66{left:468.373333pt;}
.x3d{left:482.654370pt;}
.x5a{left:518.213333pt;}
.x53{left:529.413333pt;}
.x5b{left:583.093333pt;}
.x67{left:585.813333pt;}
.x4d{left:599.573333pt;}
.x2d{left:600.533333pt;}
.x55{left:625.733333pt;}
.x2e{left:633.653333pt;}
.x5c{left:648.053333pt;}
.x57{left:673.733333pt;}
.x32{left:688.373333pt;}
.x62{left:691.093333pt;}
.x23{left:704.053321pt;}
.xa{left:712.079988pt;}
.x3b{left:720.079988pt;}
}




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