
    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_5e5ea7226041b08ad0cbf0d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_73b20b5cb5c4192c6e6113c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_d281e57fede8b4ae24b71548.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d61fc1ab357534e330a0dc99.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_1398a6f35998248af21f84d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_38b3cded7bd0fb193e38dec6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_6c001c29604725772d10903e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.513600px;}
.ls12{letter-spacing:-0.206400px;}
.ls2{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.206400px;}
.ls3{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.306600px;}
.lsf{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.900000px;}
.ls5{letter-spacing:5.940000px;}
.ls18{letter-spacing:9.000000px;}
.ls14{letter-spacing:12.420000px;}
.lse{letter-spacing:16.506720px;}
.ls17{letter-spacing:39.780000px;}
.lsc{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.wsd{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.426400px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1b{margin-left:-3.833280px;}
._1a{margin-left:-2.501280px;}
._0{margin-left:-1.080000px;}
._11{width:1.035840px;}
._1{width:2.220000px;}
._12{width:3.633360px;}
._19{width:4.710480px;}
._16{width:5.750400px;}
._15{width:6.812640px;}
._14{width:8.127360px;}
._13{width:9.322560px;}
._6{width:10.800000px;}
._17{width:11.941440px;}
._18{width:13.426080px;}
._1c{width:15.997440px;}
._1d{width:17.152560px;}
._f{width:18.948000px;}
._27{width:20.250480px;}
._23{width:21.589440px;}
._22{width:22.980240px;}
._26{width:24.090000px;}
._28{width:25.493280px;}
._20{width:30.238560px;}
._21{width:31.413840px;}
._29{width:40.158720px;}
._2a{width:44.507760px;}
._25{width:45.540000px;}
._2b{width:47.301840px;}
._1e{width:67.191120px;}
._1f{width:68.221200px;}
._7{width:76.284960px;}
._10{width:99.660000px;}
._24{width:109.620000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1bd{bottom:2.520000px;}
.y1c8{bottom:2.700000px;}
.yb9{bottom:5.760000px;}
.yc7{bottom:5.790000px;}
.yd4{bottom:5.805000px;}
.ye{bottom:5.940000px;}
.ybb{bottom:5.985000px;}
.y14c{bottom:6.300000px;}
.y14a{bottom:6.345000px;}
.y102{bottom:6.480000px;}
.y139{bottom:6.510000px;}
.yfc{bottom:6.660000px;}
.y110{bottom:6.690000px;}
.y190{bottom:7.020000px;}
.yb7{bottom:7.740000px;}
.yf4{bottom:8.820000px;}
.yef{bottom:9.000000px;}
.y159{bottom:11.160000px;}
.y15b{bottom:11.340000px;}
.y6{bottom:12.420000px;}
.y13f{bottom:12.600000px;}
.ye3{bottom:15.660000px;}
.y118{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.y147{bottom:19.080000px;}
.y1b7{bottom:21.240000px;}
.yf7{bottom:22.320000px;}
.yf2{bottom:22.500000px;}
.ye2{bottom:25.560000px;}
.y119{bottom:25.740000px;}
.y148{bottom:28.980000px;}
.yf6{bottom:32.220000px;}
.yf1{bottom:32.400000px;}
.yc{bottom:34.560000px;}
.y1bb{bottom:36.720000px;}
.y5{bottom:40.320000px;}
.y13e{bottom:40.500000px;}
.y1b6{bottom:41.220000px;}
.y1c6{bottom:45.540000px;}
.yb{bottom:55.080000px;}
.y1ba{bottom:56.520000px;}
.y1b5{bottom:61.020000px;}
.y1c5{bottom:65.340000px;}
.y4{bottom:68.400000px;}
.yd{bottom:71.820000px;}
.ya{bottom:75.420000px;}
.y1b9{bottom:76.500000px;}
.y1b4{bottom:80.820000px;}
.y1b8{bottom:96.300000px;}
.y3{bottom:96.330000px;}
.y13d{bottom:96.510000px;}
.y3c{bottom:97.200000px;}
.y6c{bottom:98.100000px;}
.y1a8{bottom:98.280000px;}
.y197{bottom:99.360000px;}
.y16c{bottom:100.620000px;}
.y112{bottom:102.060000px;}
.y1c3{bottom:102.240000px;}
.ye1{bottom:111.240000px;}
.y89{bottom:112.680000px;}
.y1e2{bottom:115.560000px;}
.y1b0{bottom:116.280000px;}
.y3b{bottom:117.000000px;}
.y6b{bottom:117.900000px;}
.y1a7{bottom:118.080000px;}
.y196{bottom:119.160000px;}
.y16b{bottom:121.140000px;}
.y1c2{bottom:122.040000px;}
.y111{bottom:124.020000px;}
.y2{bottom:125.670000px;}
.y13c{bottom:125.850000px;}
.y13a{bottom:130.140000px;}
.ye0{bottom:131.760000px;}
.y88{bottom:132.480000px;}
.y195{bottom:133.920000px;}
.y1e1{bottom:135.360000px;}
.y1af{bottom:136.260000px;}
.y3a{bottom:136.800000px;}
.y6a{bottom:137.700000px;}
.y1a6{bottom:138.060000px;}
.yb4{bottom:140.400000px;}
.y16a{bottom:141.840000px;}
.y10f{bottom:145.980000px;}
.y138{bottom:146.520000px;}
.ydf{bottom:152.310000px;}
.y87{bottom:152.490000px;}
.y1ae{bottom:152.670000px;}
.y194{bottom:154.650000px;}
.y1e0{bottom:155.190000px;}
.y39{bottom:156.630000px;}
.y69{bottom:157.530000px;}
.y1a5{bottom:157.890000px;}
.yb3{bottom:160.230000px;}
.y1c1{bottom:161.670000px;}
.y169{bottom:162.390000px;}
.y10e{bottom:168.150000px;}
.y137{bottom:169.950000px;}
.y86{bottom:172.290000px;}
.yde{bottom:173.010000px;}
.y1df{bottom:174.990000px;}
.y193{bottom:175.170000px;}
.y38{bottom:176.430000px;}
.y68{bottom:177.510000px;}
.y1a4{bottom:177.690000px;}
.yb2{bottom:180.030000px;}
.y1c0{bottom:181.650000px;}
.y168{bottom:182.910000px;}
.y10d{bottom:190.110000px;}
.y136{bottom:191.910000px;}
.y85{bottom:192.090000px;}
.ydd{bottom:193.530000px;}
.y192{bottom:195.870000px;}
.y37{bottom:196.410000px;}
.y1de{bottom:197.130000px;}
.y67{bottom:197.310000px;}
.y1a3{bottom:197.490000px;}
.yb1{bottom:199.830000px;}
.y1bf{bottom:201.450000px;}
.y167{bottom:203.610000px;}
.y84{bottom:211.890000px;}
.y10c{bottom:212.070000px;}
.y135{bottom:213.870000px;}
.ydc{bottom:214.050000px;}
.y1be{bottom:215.490000px;}
.y36{bottom:216.210000px;}
.y191{bottom:216.390000px;}
.y1dd{bottom:216.930000px;}
.y66{bottom:217.110000px;}
.y1a2{bottom:217.290000px;}
.yb0{bottom:219.630000px;}
.y166{bottom:224.130000px;}
.y83{bottom:231.690000px;}
.ydb{bottom:234.750000px;}
.y134{bottom:235.830000px;}
.y35{bottom:236.010000px;}
.y1dc{bottom:236.730000px;}
.y65{bottom:236.910000px;}
.y1a1{bottom:237.270000px;}
.yaf{bottom:239.610000px;}
.y165{bottom:244.650000px;}
.y82{bottom:251.670000px;}
.y1bc{bottom:255.090000px;}
.yda{bottom:255.270000px;}
.y34{bottom:255.810000px;}
.y64{bottom:256.710000px;}
.y1a0{bottom:257.070000px;}
.y133{bottom:257.790000px;}
.y10b{bottom:258.330000px;}
.yae{bottom:259.410000px;}
.y18f{bottom:259.770000px;}
.y164{bottom:265.350000px;}
.y81{bottom:271.470000px;}
.y33{bottom:275.610000px;}
.yd9{bottom:275.790000px;}
.y1db{bottom:276.510000px;}
.y63{bottom:276.690000px;}
.y19f{bottom:276.870000px;}
.y10a{bottom:278.130000px;}
.yad{bottom:279.210000px;}
.y132{bottom:279.930000px;}
.y18e{bottom:280.470000px;}
.y163{bottom:285.870000px;}
.y80{bottom:291.270000px;}
.y32{bottom:295.590000px;}
.y1da{bottom:296.310000px;}
.y62{bottom:296.490000px;}
.y19e{bottom:296.670000px;}
.y109{bottom:297.930000px;}
.yac{bottom:299.010000px;}
.y18d{bottom:300.990000px;}
.y131{bottom:301.890000px;}
.y162{bottom:306.570000px;}
.y7f{bottom:311.070000px;}
.y108{bottom:312.690000px;}
.y31{bottom:315.390000px;}
.y1d9{bottom:316.110000px;}
.y61{bottom:316.290000px;}
.y19d{bottom:316.470000px;}
.yd8{bottom:317.010000px;}
.yab{bottom:318.810000px;}
.y18c{bottom:321.510000px;}
.y130{bottom:323.850000px;}
.y7e{bottom:330.870000px;}
.y107{bottom:334.830000px;}
.y30{bottom:335.190000px;}
.y1d8{bottom:335.910000px;}
.y60{bottom:336.090000px;}
.y19c{bottom:336.450000px;}
.yd7{bottom:337.710000px;}
.yaa{bottom:338.790000px;}
.y18b{bottom:342.210000px;}
.y12f{bottom:345.810000px;}
.y7d{bottom:350.850000px;}
.y161{bottom:352.650000px;}
.y2f{bottom:354.990000px;}
.y5f{bottom:355.890000px;}
.y19b{bottom:356.250000px;}
.y106{bottom:356.970000px;}
.yd6{bottom:358.230000px;}
.ya9{bottom:358.590000px;}
.y18a{bottom:362.730000px;}
.y12e{bottom:367.770000px;}
.y7c{bottom:370.650000px;}
.y160{bottom:372.450000px;}
.y2e{bottom:374.790000px;}
.y1d7{bottom:375.690000px;}
.y5e{bottom:375.870000px;}
.y19a{bottom:376.050000px;}
.ya8{bottom:378.390000px;}
.yd5{bottom:378.750000px;}
.y105{bottom:379.110000px;}
.y189{bottom:383.430000px;}
.y12d{bottom:389.730000px;}
.y7b{bottom:390.450000px;}
.y15f{bottom:392.430000px;}
.y199{bottom:392.610000px;}
.y2d{bottom:394.770000px;}
.y1d6{bottom:395.490000px;}
.y5d{bottom:395.670000px;}
.ya7{bottom:398.190000px;}
.yd3{bottom:399.450000px;}
.y104{bottom:401.295000px;}
.y188{bottom:403.995000px;}
.y7a{bottom:410.295000px;}
.y12c{bottom:411.735000px;}
.y15e{bottom:412.275000px;}
.y2c{bottom:414.615000px;}
.y1d5{bottom:415.335000px;}
.y5c{bottom:415.515000px;}
.ya6{bottom:418.035000px;}
.yd2{bottom:420.015000px;}
.y103{bottom:423.435000px;}
.y187{bottom:424.515000px;}
.y15d{bottom:428.475000px;}
.y79{bottom:430.095000px;}
.y12b{bottom:433.695000px;}
.y2b{bottom:434.415000px;}
.y1d4{bottom:435.135000px;}
.y5b{bottom:435.315000px;}
.ya5{bottom:438.015000px;}
.yd1{bottom:440.535000px;}
.y186{bottom:445.215000px;}
.y101{bottom:445.575000px;}
.y78{bottom:450.075000px;}
.y2a{bottom:454.215000px;}
.y5a{bottom:455.115000px;}
.y12a{bottom:455.655000px;}
.ya4{bottom:457.815000px;}
.yd0{bottom:461.235000px;}
.y15c{bottom:461.775000px;}
.y185{bottom:465.735000px;}
.y100{bottom:467.535000px;}
.y77{bottom:469.875000px;}
.y1ad{bottom:473.475000px;}
.y29{bottom:474.015000px;}
.y1d3{bottom:474.915000px;}
.y59{bottom:475.095000px;}
.ya3{bottom:477.615000px;}
.ycf{bottom:481.755000px;}
.y184{bottom:486.255000px;}
.y76{bottom:489.675000px;}
.y15a{bottom:493.275000px;}
.y28{bottom:493.995000px;}
.y1d2{bottom:494.715000px;}
.y58{bottom:494.895000px;}
.ya2{bottom:497.415000px;}
.y129{bottom:499.575000px;}
.yce{bottom:502.275000px;}
.y183{bottom:506.955000px;}
.y75{bottom:509.475000px;}
.yff{bottom:511.815000px;}
.y97{bottom:512.175000px;}
.y1ac{bottom:513.255000px;}
.y27{bottom:513.795000px;}
.y1d1{bottom:514.515000px;}
.y57{bottom:514.695000px;}
.y1b3{bottom:517.035000px;}
.ya1{bottom:517.215000px;}
.y128{bottom:521.535000px;}
.ycd{bottom:522.975000px;}
.y158{bottom:526.575000px;}
.y182{bottom:527.475000px;}
.y74{bottom:529.275000px;}
.y26{bottom:531.075000px;}
.y56{bottom:531.975000px;}
.y1ab{bottom:533.055000px;}
.yfe{bottom:533.955000px;}
.y1d0{bottom:534.315000px;}
.ya0{bottom:537.195000px;}
.ycc{bottom:543.495000px;}
.y127{bottom:543.675000px;}
.y181{bottom:547.995000px;}
.y73{bottom:549.255000px;}
.y25{bottom:550.875000px;}
.y55{bottom:551.775000px;}
.y1aa{bottom:552.855000px;}
.y1cf{bottom:554.295000px;}
.yfd{bottom:556.095000px;}
.y9f{bottom:556.995000px;}
.ycb{bottom:564.195000px;}
.y157{bottom:565.455000px;}
.y126{bottom:565.635000px;}
.y24{bottom:568.155000px;}
.y180{bottom:568.695000px;}
.y72{bottom:569.055000px;}
.y1a9{bottom:569.415000px;}
.y54{bottom:571.575000px;}
.y1ce{bottom:574.095000px;}
.y9e{bottom:576.795000px;}
.yfb{bottom:578.235000px;}
.yca{bottom:584.715000px;}
.y156{bottom:585.255000px;}
.y125{bottom:587.595000px;}
.y23{bottom:587.955000px;}
.y71{bottom:588.855000px;}
.y17f{bottom:589.215000px;}
.y53{bottom:591.375000px;}
.y1cd{bottom:593.895000px;}
.y9d{bottom:596.595000px;}
.y155{bottom:605.055000px;}
.yc9{bottom:605.235000px;}
.yfa{bottom:606.135000px;}
.y22{bottom:607.755000px;}
.y70{bottom:608.655000px;}
.y17e{bottom:609.915000px;}
.y124{bottom:610.995000px;}
.y52{bottom:611.355000px;}
.y1cc{bottom:613.695000px;}
.y9c{bottom:616.395000px;}
.y154{bottom:625.035000px;}
.yc8{bottom:625.935000px;}
.y21{bottom:627.555000px;}
.y6f{bottom:628.455000px;}
.y17d{bottom:630.435000px;}
.y51{bottom:631.155000px;}
.y1b2{bottom:633.135000px;}
.y1cb{bottom:633.495000px;}
.y9b{bottom:636.375000px;}
.y153{bottom:639.795000px;}
.yf9{bottom:645.915000px;}
.yc6{bottom:646.455000px;}
.y20{bottom:647.355000px;}
.y6e{bottom:648.435000px;}
.y1b1{bottom:649.725000px;}
.y50{bottom:650.985000px;}
.y1ca{bottom:653.505000px;}
.y9a{bottom:656.205000px;}
.y123{bottom:658.725000px;}
.yf5{bottom:660.705000px;}
.y152{bottom:661.425000px;}
.yc5{bottom:667.005000px;}
.y1f{bottom:667.365000px;}
.y1c9{bottom:667.545000px;}
.y6d{bottom:668.265000px;}
.y4f{bottom:670.785000px;}
.y17c{bottom:671.685000px;}
.y99{bottom:673.485000px;}
.y122{bottom:678.525000px;}
.y151{bottom:683.025000px;}
.y1e{bottom:687.165000px;}
.y1c7{bottom:687.345000px;}
.yf8{bottom:687.525000px;}
.yc4{bottom:687.705000px;}
.y4e{bottom:688.065000px;}
.y96{bottom:690.585000px;}
.y98{bottom:690.765000px;}
.y17b{bottom:692.205000px;}
.y121{bottom:698.505000px;}
.y1d{bottom:706.965000px;}
.y4d{bottom:707.865000px;}
.yc3{bottom:708.225000px;}
.y198{bottom:710.205000px;}
.y95{bottom:710.565000px;}
.y17a{bottom:712.725000px;}
.y120{bottom:713.265000px;}
.yf0{bottom:714.525000px;}
.y150{bottom:723.345000px;}
.y1c{bottom:726.765000px;}
.y4c{bottom:727.665000px;}
.yc2{bottom:728.925000px;}
.y94{bottom:730.365000px;}
.y179{bottom:733.425000px;}
.y11f{bottom:735.225000px;}
.yf3{bottom:741.525000px;}
.y14f{bottom:744.945000px;}
.y1b{bottom:746.565000px;}
.y4b{bottom:747.645000px;}
.yc1{bottom:749.445000px;}
.y93{bottom:750.165000px;}
.y178{bottom:753.945000px;}
.y11e{bottom:757.185000px;}
.y1a{bottom:766.545000px;}
.y4a{bottom:767.445000px;}
.yee{bottom:768.345000px;}
.y92{bottom:769.965000px;}
.y177{bottom:774.465000px;}
.y11d{bottom:779.145000px;}
.y19{bottom:786.345000px;}
.y49{bottom:787.245000px;}
.y14e{bottom:788.145000px;}
.y91{bottom:789.765000px;}
.yc0{bottom:790.665000px;}
.y176{bottom:795.165000px;}
.yed{bottom:801.105000px;}
.y18{bottom:806.145000px;}
.y48{bottom:807.045000px;}
.y90{bottom:809.745000px;}
.ybf{bottom:811.185000px;}
.y175{bottom:815.685000px;}
.yec{bottom:820.905000px;}
.y11c{bottom:823.065000px;}
.y17{bottom:823.425000px;}
.y47{bottom:826.845000px;}
.y8f{bottom:829.545000px;}
.y14d{bottom:831.345000px;}
.ybe{bottom:831.705000px;}
.y174{bottom:836.385000px;}
.yeb{bottom:840.705000px;}
.y11b{bottom:845.025000px;}
.y46{bottom:846.825000px;}
.y16{bottom:848.445000px;}
.y8e{bottom:849.345000px;}
.ybd{bottom:852.405000px;}
.yea{bottom:860.505000px;}
.y45{bottom:866.625000px;}
.y11a{bottom:866.985000px;}
.y15{bottom:868.245000px;}
.y8d{bottom:869.145000px;}
.y14b{bottom:871.845000px;}
.ybc{bottom:872.925000px;}
.ye9{bottom:875.445000px;}
.y173{bottom:876.705000px;}
.y44{bottom:886.425000px;}
.y14{bottom:888.045000px;}
.y8c{bottom:888.945000px;}
.yba{bottom:893.445000px;}
.ye8{bottom:895.965000px;}
.y172{bottom:897.225000px;}
.y13{bottom:903.390000px;}
.y43{bottom:906.270000px;}
.y8b{bottom:908.970000px;}
.y117{bottom:910.950000px;}
.yb8{bottom:914.190000px;}
.y146{bottom:915.090000px;}
.ye7{bottom:916.530000px;}
.y171{bottom:917.970000px;}
.y12{bottom:925.170000px;}
.y42{bottom:926.070000px;}
.y8a{bottom:928.770000px;}
.yb6{bottom:934.710000px;}
.y149{bottom:935.610000px;}
.ye6{bottom:937.230000px;}
.y170{bottom:938.490000px;}
.y11{bottom:943.890000px;}
.y41{bottom:946.050000px;}
.y116{bottom:951.450000px;}
.ye5{bottom:957.750000px;}
.yb5{bottom:959.190000px;}
.y1c4{bottom:962.070000px;}
.y40{bottom:965.850000px;}
.y10{bottom:967.290000px;}
.y145{bottom:967.830000px;}
.y115{bottom:973.410000px;}
.ye4{bottom:978.270000px;}
.y16f{bottom:979.710000px;}
.y3f{bottom:985.650000px;}
.y144{bottom:987.810000px;}
.y114{bottom:995.370000px;}
.yf{bottom:998.970000px;}
.y16e{bottom:1000.230000px;}
.y3e{bottom:1005.450000px;}
.y143{bottom:1007.610000px;}
.y113{bottom:1017.330000px;}
.y16d{bottom:1020.930000px;}
.y3d{bottom:1025.250000px;}
.y142{bottom:1027.410000px;}
.y9{bottom:1043.250000px;}
.y141{bottom:1045.410000px;}
.y1{bottom:1060.890000px;}
.y13b{bottom:1062.870000px;}
.y7{bottom:1095.090000px;}
.y140{bottom:1097.250000px;}
.h6{height:2.581875px;}
.h13{height:19.800000px;}
.h15{height:19.836000px;}
.h11{height:19.980000px;}
.h14{height:20.016000px;}
.h27{height:20.880000px;}
.h25{height:20.916000px;}
.h1e{height:21.060000px;}
.h1b{height:21.240000px;}
.h1f{height:21.276000px;}
.hb{height:21.420000px;}
.h1c{height:21.456000px;}
.h2b{height:22.140000px;}
.h12{height:23.760000px;}
.h24{height:25.740000px;}
.h1a{height:26.100000px;}
.h18{height:26.280000px;}
.h28{height:30.780000px;}
.h29{height:30.960000px;}
.h7{height:33.480000px;}
.hf{height:34.855313px;}
.h17{height:39.600000px;}
.h21{height:39.636000px;}
.h20{height:39.780000px;}
.h23{height:46.260000px;}
.h2a{height:48.496641px;}
.h26{height:49.255313px;}
.h10{height:53.077852px;}
.h19{height:53.100000px;}
.he{height:53.573906px;}
.h1d{height:55.412578px;}
.h16{height:55.735313px;}
.h4{height:58.833281px;}
.hc{height:59.383125px;}
.h9{height:60.850547px;}
.h8{height:64.546875px;}
.ha{height:65.884219px;}
.h2e{height:79.380000px;}
.h3{height:79.936523px;}
.hd{height:85.052461px;}
.h2c{height:110.340000px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h22{height:146.916000px;}
.h2d{height:261.930000px;}
.h2f{height:274.710000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2a{width:2.340000px;}
.w5{width:9.900000px;}
.w9{width:43.020000px;}
.w7{width:43.056000px;}
.w8{width:43.200000px;}
.w20{width:64.296000px;}
.w1d{width:69.840000px;}
.w1c{width:69.876000px;}
.w24{width:73.620000px;}
.w13{width:76.500000px;}
.w14{width:76.536000px;}
.w1f{width:93.060000px;}
.w25{width:95.796000px;}
.w17{width:97.956000px;}
.w1a{width:99.900000px;}
.w19{width:99.936000px;}
.w10{width:102.240000px;}
.wf{width:107.640000px;}
.we{width:107.676000px;}
.w15{width:110.520000px;}
.w26{width:115.596000px;}
.w18{width:123.300000px;}
.wc{width:126.720000px;}
.w3{width:137.556000px;}
.w1b{width:144.576000px;}
.w23{width:148.176000px;}
.w1e{width:157.350000px;}
.w11{width:165.810000px;}
.wa{width:180.030000px;}
.wb{width:190.650000px;}
.w21{width:226.830000px;}
.w12{width:250.950000px;}
.wd{width:255.270000px;}
.w16{width:259.410000px;}
.w29{width:300.810000px;}
.w28{width:303.150000px;}
.w2c{width:325.110000px;}
.w22{width:328.575000px;}
.w2b{width:329.835000px;}
.w27{width:392.655000px;}
.w6{width:508.035000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:5.400000px;}
.x2{left:8.100000px;}
.x15{left:10.440000px;}
.x1{left:53.100000px;}
.x3d{left:54.719987px;}
.x2e{left:64.260000px;}
.x9{left:68.039987px;}
.xe{left:80.999987px;}
.x6{left:95.255987px;}
.x36{left:98.676000px;}
.x10{left:106.236000px;}
.xf{left:108.035987px;}
.x4{left:118.470000px;}
.xd{left:185.969987px;}
.x24{left:198.570000px;}
.xc{left:245.549987px;}
.x25{left:268.455000px;}
.x1c{left:272.235000px;}
.x7{left:282.854987px;}
.xb{left:288.074987px;}
.x39{left:300.285000px;}
.x3c{left:329.289000px;}
.xa{left:331.994987px;}
.x2c{left:333.075000px;}
.x26{left:338.295000px;}
.x19{left:361.515000px;}
.x38{left:363.129000px;}
.x20{left:365.655000px;}
.x2f{left:393.555000px;}
.x27{left:408.135000px;}
.x8{left:446.504987px;}
.x3b{left:448.845000px;}
.x21{left:463.605000px;}
.x16{left:468.285000px;}
.x28{left:478.005000px;}
.x37{left:491.325000px;}
.x1d{left:523.185000px;}
.x30{left:542.445000px;}
.x29{left:547.845000px;}
.x2d{left:559.905000px;}
.x1a{left:576.825000px;}
.x22{left:586.905000px;}
.x1e{left:599.685000px;}
.x11{left:614.265000px;}
.x2a{left:617.685000px;}
.x12{left:657.330000px;}
.x17{left:659.670000px;}
.x1f{left:676.230000px;}
.x1b{left:684.510000px;}
.x23{left:686.850000px;}
.x13{left:700.530000px;}
.x3{left:702.510000px;}
.x31{left:713.310000px;}
.x14{left:743.550000px;}
.x35{left:770.549987px;}
.x33{left:775.049987px;}
.x34{left:776.129987px;}
.x2b{left:780.630000px;}
.x3a{left:792.150000px;}
.x32{left:819.719987px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.456533pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.183467pt;}
.ls3{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.272533pt;}
.lsf{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls5{letter-spacing:5.280000pt;}
.ls18{letter-spacing:8.000000pt;}
.ls14{letter-spacing:11.040000pt;}
.lse{letter-spacing:14.672640pt;}
.ls17{letter-spacing:35.360000pt;}
.lsc{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.wsd{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.823467pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1b{margin-left:-3.407360pt;}
._1a{margin-left:-2.223360pt;}
._0{margin-left:-0.960000pt;}
._11{width:0.920747pt;}
._1{width:1.973333pt;}
._12{width:3.229653pt;}
._19{width:4.187093pt;}
._16{width:5.111467pt;}
._15{width:6.055680pt;}
._14{width:7.224320pt;}
._13{width:8.286720pt;}
._6{width:9.600000pt;}
._17{width:10.614613pt;}
._18{width:11.934293pt;}
._1c{width:14.219947pt;}
._1d{width:15.246720pt;}
._f{width:16.842667pt;}
._27{width:18.000427pt;}
._23{width:19.190613pt;}
._22{width:20.426880pt;}
._26{width:21.413333pt;}
._28{width:22.660693pt;}
._20{width:26.878720pt;}
._21{width:27.923413pt;}
._29{width:35.696640pt;}
._2a{width:39.562453pt;}
._25{width:40.480000pt;}
._2b{width:42.046080pt;}
._1e{width:59.725440pt;}
._1f{width:60.641067pt;}
._7{width:67.808853pt;}
._10{width:88.586667pt;}
._24{width:97.440000pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1bd{bottom:2.240000pt;}
.y1c8{bottom:2.400000pt;}
.yb9{bottom:5.120000pt;}
.yc7{bottom:5.146667pt;}
.yd4{bottom:5.160000pt;}
.ye{bottom:5.280000pt;}
.ybb{bottom:5.320000pt;}
.y14c{bottom:5.600000pt;}
.y14a{bottom:5.640000pt;}
.y102{bottom:5.760000pt;}
.y139{bottom:5.786667pt;}
.yfc{bottom:5.920000pt;}
.y110{bottom:5.946667pt;}
.y190{bottom:6.240000pt;}
.yb7{bottom:6.880000pt;}
.yf4{bottom:7.840000pt;}
.yef{bottom:8.000000pt;}
.y159{bottom:9.920000pt;}
.y15b{bottom:10.080000pt;}
.y6{bottom:11.040000pt;}
.y13f{bottom:11.200000pt;}
.ye3{bottom:13.920000pt;}
.y118{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.y147{bottom:16.960000pt;}
.y1b7{bottom:18.880000pt;}
.yf7{bottom:19.840000pt;}
.yf2{bottom:20.000000pt;}
.ye2{bottom:22.720000pt;}
.y119{bottom:22.880000pt;}
.y148{bottom:25.760000pt;}
.yf6{bottom:28.640000pt;}
.yf1{bottom:28.800000pt;}
.yc{bottom:30.720000pt;}
.y1bb{bottom:32.640000pt;}
.y5{bottom:35.840000pt;}
.y13e{bottom:36.000000pt;}
.y1b6{bottom:36.640000pt;}
.y1c6{bottom:40.480000pt;}
.yb{bottom:48.960000pt;}
.y1ba{bottom:50.240000pt;}
.y1b5{bottom:54.240000pt;}
.y1c5{bottom:58.080000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:63.840000pt;}
.ya{bottom:67.040000pt;}
.y1b9{bottom:68.000000pt;}
.y1b4{bottom:71.840000pt;}
.y1b8{bottom:85.600000pt;}
.y3{bottom:85.626667pt;}
.y13d{bottom:85.786667pt;}
.y3c{bottom:86.400000pt;}
.y6c{bottom:87.200000pt;}
.y1a8{bottom:87.360000pt;}
.y197{bottom:88.320000pt;}
.y16c{bottom:89.440000pt;}
.y112{bottom:90.720000pt;}
.y1c3{bottom:90.880000pt;}
.ye1{bottom:98.880000pt;}
.y89{bottom:100.160000pt;}
.y1e2{bottom:102.720000pt;}
.y1b0{bottom:103.360000pt;}
.y3b{bottom:104.000000pt;}
.y6b{bottom:104.800000pt;}
.y1a7{bottom:104.960000pt;}
.y196{bottom:105.920000pt;}
.y16b{bottom:107.680000pt;}
.y1c2{bottom:108.480000pt;}
.y111{bottom:110.240000pt;}
.y2{bottom:111.706667pt;}
.y13c{bottom:111.866667pt;}
.y13a{bottom:115.680000pt;}
.ye0{bottom:117.120000pt;}
.y88{bottom:117.760000pt;}
.y195{bottom:119.040000pt;}
.y1e1{bottom:120.320000pt;}
.y1af{bottom:121.120000pt;}
.y3a{bottom:121.600000pt;}
.y6a{bottom:122.400000pt;}
.y1a6{bottom:122.720000pt;}
.yb4{bottom:124.800000pt;}
.y16a{bottom:126.080000pt;}
.y10f{bottom:129.760000pt;}
.y138{bottom:130.240000pt;}
.ydf{bottom:135.386667pt;}
.y87{bottom:135.546667pt;}
.y1ae{bottom:135.706667pt;}
.y194{bottom:137.466667pt;}
.y1e0{bottom:137.946667pt;}
.y39{bottom:139.226667pt;}
.y69{bottom:140.026667pt;}
.y1a5{bottom:140.346667pt;}
.yb3{bottom:142.426667pt;}
.y1c1{bottom:143.706667pt;}
.y169{bottom:144.346667pt;}
.y10e{bottom:149.466667pt;}
.y137{bottom:151.066667pt;}
.y86{bottom:153.146667pt;}
.yde{bottom:153.786667pt;}
.y1df{bottom:155.546667pt;}
.y193{bottom:155.706667pt;}
.y38{bottom:156.826667pt;}
.y68{bottom:157.786667pt;}
.y1a4{bottom:157.946667pt;}
.yb2{bottom:160.026667pt;}
.y1c0{bottom:161.466667pt;}
.y168{bottom:162.586667pt;}
.y10d{bottom:168.986667pt;}
.y136{bottom:170.586667pt;}
.y85{bottom:170.746667pt;}
.ydd{bottom:172.026667pt;}
.y192{bottom:174.106667pt;}
.y37{bottom:174.586667pt;}
.y1de{bottom:175.226667pt;}
.y67{bottom:175.386667pt;}
.y1a3{bottom:175.546667pt;}
.yb1{bottom:177.626667pt;}
.y1bf{bottom:179.066667pt;}
.y167{bottom:180.986667pt;}
.y84{bottom:188.346667pt;}
.y10c{bottom:188.506667pt;}
.y135{bottom:190.106667pt;}
.ydc{bottom:190.266667pt;}
.y1be{bottom:191.546667pt;}
.y36{bottom:192.186667pt;}
.y191{bottom:192.346667pt;}
.y1dd{bottom:192.826667pt;}
.y66{bottom:192.986667pt;}
.y1a2{bottom:193.146667pt;}
.yb0{bottom:195.226667pt;}
.y166{bottom:199.226667pt;}
.y83{bottom:205.946667pt;}
.ydb{bottom:208.666667pt;}
.y134{bottom:209.626667pt;}
.y35{bottom:209.786667pt;}
.y1dc{bottom:210.426667pt;}
.y65{bottom:210.586667pt;}
.y1a1{bottom:210.906667pt;}
.yaf{bottom:212.986667pt;}
.y165{bottom:217.466667pt;}
.y82{bottom:223.706667pt;}
.y1bc{bottom:226.746667pt;}
.yda{bottom:226.906667pt;}
.y34{bottom:227.386667pt;}
.y64{bottom:228.186667pt;}
.y1a0{bottom:228.506667pt;}
.y133{bottom:229.146667pt;}
.y10b{bottom:229.626667pt;}
.yae{bottom:230.586667pt;}
.y18f{bottom:230.906667pt;}
.y164{bottom:235.866667pt;}
.y81{bottom:241.306667pt;}
.y33{bottom:244.986667pt;}
.yd9{bottom:245.146667pt;}
.y1db{bottom:245.786667pt;}
.y63{bottom:245.946667pt;}
.y19f{bottom:246.106667pt;}
.y10a{bottom:247.226667pt;}
.yad{bottom:248.186667pt;}
.y132{bottom:248.826667pt;}
.y18e{bottom:249.306667pt;}
.y163{bottom:254.106667pt;}
.y80{bottom:258.906667pt;}
.y32{bottom:262.746667pt;}
.y1da{bottom:263.386667pt;}
.y62{bottom:263.546667pt;}
.y19e{bottom:263.706667pt;}
.y109{bottom:264.826667pt;}
.yac{bottom:265.786667pt;}
.y18d{bottom:267.546667pt;}
.y131{bottom:268.346667pt;}
.y162{bottom:272.506667pt;}
.y7f{bottom:276.506667pt;}
.y108{bottom:277.946667pt;}
.y31{bottom:280.346667pt;}
.y1d9{bottom:280.986667pt;}
.y61{bottom:281.146667pt;}
.y19d{bottom:281.306667pt;}
.yd8{bottom:281.786667pt;}
.yab{bottom:283.386667pt;}
.y18c{bottom:285.786667pt;}
.y130{bottom:287.866667pt;}
.y7e{bottom:294.106667pt;}
.y107{bottom:297.626667pt;}
.y30{bottom:297.946667pt;}
.y1d8{bottom:298.586667pt;}
.y60{bottom:298.746667pt;}
.y19c{bottom:299.066667pt;}
.yd7{bottom:300.186667pt;}
.yaa{bottom:301.146667pt;}
.y18b{bottom:304.186667pt;}
.y12f{bottom:307.386667pt;}
.y7d{bottom:311.866667pt;}
.y161{bottom:313.466667pt;}
.y2f{bottom:315.546667pt;}
.y5f{bottom:316.346667pt;}
.y19b{bottom:316.666667pt;}
.y106{bottom:317.306667pt;}
.yd6{bottom:318.426667pt;}
.ya9{bottom:318.746667pt;}
.y18a{bottom:322.426667pt;}
.y12e{bottom:326.906667pt;}
.y7c{bottom:329.466667pt;}
.y160{bottom:331.066667pt;}
.y2e{bottom:333.146667pt;}
.y1d7{bottom:333.946667pt;}
.y5e{bottom:334.106667pt;}
.y19a{bottom:334.266667pt;}
.ya8{bottom:336.346667pt;}
.yd5{bottom:336.666667pt;}
.y105{bottom:336.986667pt;}
.y189{bottom:340.826667pt;}
.y12d{bottom:346.426667pt;}
.y7b{bottom:347.066667pt;}
.y15f{bottom:348.826667pt;}
.y199{bottom:348.986667pt;}
.y2d{bottom:350.906667pt;}
.y1d6{bottom:351.546667pt;}
.y5d{bottom:351.706667pt;}
.ya7{bottom:353.946667pt;}
.yd3{bottom:355.066667pt;}
.y104{bottom:356.706667pt;}
.y188{bottom:359.106667pt;}
.y7a{bottom:364.706667pt;}
.y12c{bottom:365.986667pt;}
.y15e{bottom:366.466667pt;}
.y2c{bottom:368.546667pt;}
.y1d5{bottom:369.186667pt;}
.y5c{bottom:369.346667pt;}
.ya6{bottom:371.586667pt;}
.yd2{bottom:373.346667pt;}
.y103{bottom:376.386667pt;}
.y187{bottom:377.346667pt;}
.y15d{bottom:380.866667pt;}
.y79{bottom:382.306667pt;}
.y12b{bottom:385.506667pt;}
.y2b{bottom:386.146667pt;}
.y1d4{bottom:386.786667pt;}
.y5b{bottom:386.946667pt;}
.ya5{bottom:389.346667pt;}
.yd1{bottom:391.586667pt;}
.y186{bottom:395.746667pt;}
.y101{bottom:396.066667pt;}
.y78{bottom:400.066667pt;}
.y2a{bottom:403.746667pt;}
.y5a{bottom:404.546667pt;}
.y12a{bottom:405.026667pt;}
.ya4{bottom:406.946667pt;}
.yd0{bottom:409.986667pt;}
.y15c{bottom:410.466667pt;}
.y185{bottom:413.986667pt;}
.y100{bottom:415.586667pt;}
.y77{bottom:417.666667pt;}
.y1ad{bottom:420.866667pt;}
.y29{bottom:421.346667pt;}
.y1d3{bottom:422.146667pt;}
.y59{bottom:422.306667pt;}
.ya3{bottom:424.546667pt;}
.ycf{bottom:428.226667pt;}
.y184{bottom:432.226667pt;}
.y76{bottom:435.266667pt;}
.y15a{bottom:438.466667pt;}
.y28{bottom:439.106667pt;}
.y1d2{bottom:439.746667pt;}
.y58{bottom:439.906667pt;}
.ya2{bottom:442.146667pt;}
.y129{bottom:444.066667pt;}
.yce{bottom:446.466667pt;}
.y183{bottom:450.626667pt;}
.y75{bottom:452.866667pt;}
.yff{bottom:454.946667pt;}
.y97{bottom:455.266667pt;}
.y1ac{bottom:456.226667pt;}
.y27{bottom:456.706667pt;}
.y1d1{bottom:457.346667pt;}
.y57{bottom:457.506667pt;}
.y1b3{bottom:459.586667pt;}
.ya1{bottom:459.746667pt;}
.y128{bottom:463.586667pt;}
.ycd{bottom:464.866667pt;}
.y158{bottom:468.066667pt;}
.y182{bottom:468.866667pt;}
.y74{bottom:470.466667pt;}
.y26{bottom:472.066667pt;}
.y56{bottom:472.866667pt;}
.y1ab{bottom:473.826667pt;}
.yfe{bottom:474.626667pt;}
.y1d0{bottom:474.946667pt;}
.ya0{bottom:477.506667pt;}
.ycc{bottom:483.106667pt;}
.y127{bottom:483.266667pt;}
.y181{bottom:487.106667pt;}
.y73{bottom:488.226667pt;}
.y25{bottom:489.666667pt;}
.y55{bottom:490.466667pt;}
.y1aa{bottom:491.426667pt;}
.y1cf{bottom:492.706667pt;}
.yfd{bottom:494.306667pt;}
.y9f{bottom:495.106667pt;}
.ycb{bottom:501.506667pt;}
.y157{bottom:502.626667pt;}
.y126{bottom:502.786667pt;}
.y24{bottom:505.026667pt;}
.y180{bottom:505.506667pt;}
.y72{bottom:505.826667pt;}
.y1a9{bottom:506.146667pt;}
.y54{bottom:508.066667pt;}
.y1ce{bottom:510.306667pt;}
.y9e{bottom:512.706667pt;}
.yfb{bottom:513.986667pt;}
.yca{bottom:519.746667pt;}
.y156{bottom:520.226667pt;}
.y125{bottom:522.306667pt;}
.y23{bottom:522.626667pt;}
.y71{bottom:523.426667pt;}
.y17f{bottom:523.746667pt;}
.y53{bottom:525.666667pt;}
.y1cd{bottom:527.906667pt;}
.y9d{bottom:530.306667pt;}
.y155{bottom:537.826667pt;}
.yc9{bottom:537.986667pt;}
.yfa{bottom:538.786667pt;}
.y22{bottom:540.226667pt;}
.y70{bottom:541.026667pt;}
.y17e{bottom:542.146667pt;}
.y124{bottom:543.106667pt;}
.y52{bottom:543.426667pt;}
.y1cc{bottom:545.506667pt;}
.y9c{bottom:547.906667pt;}
.y154{bottom:555.586667pt;}
.yc8{bottom:556.386667pt;}
.y21{bottom:557.826667pt;}
.y6f{bottom:558.626667pt;}
.y17d{bottom:560.386667pt;}
.y51{bottom:561.026667pt;}
.y1b2{bottom:562.786667pt;}
.y1cb{bottom:563.106667pt;}
.y9b{bottom:565.666667pt;}
.y153{bottom:568.706667pt;}
.yf9{bottom:574.146667pt;}
.yc6{bottom:574.626667pt;}
.y20{bottom:575.426667pt;}
.y6e{bottom:576.386667pt;}
.y1b1{bottom:577.533333pt;}
.y50{bottom:578.653333pt;}
.y1ca{bottom:580.893333pt;}
.y9a{bottom:583.293333pt;}
.y123{bottom:585.533333pt;}
.yf5{bottom:587.293333pt;}
.y152{bottom:587.933333pt;}
.yc5{bottom:592.893333pt;}
.y1f{bottom:593.213333pt;}
.y1c9{bottom:593.373333pt;}
.y6d{bottom:594.013333pt;}
.y4f{bottom:596.253333pt;}
.y17c{bottom:597.053333pt;}
.y99{bottom:598.653333pt;}
.y122{bottom:603.133333pt;}
.y151{bottom:607.133333pt;}
.y1e{bottom:610.813333pt;}
.y1c7{bottom:610.973333pt;}
.yf8{bottom:611.133333pt;}
.yc4{bottom:611.293333pt;}
.y4e{bottom:611.613333pt;}
.y96{bottom:613.853333pt;}
.y98{bottom:614.013333pt;}
.y17b{bottom:615.293333pt;}
.y121{bottom:620.893333pt;}
.y1d{bottom:628.413333pt;}
.y4d{bottom:629.213333pt;}
.yc3{bottom:629.533333pt;}
.y198{bottom:631.293333pt;}
.y95{bottom:631.613333pt;}
.y17a{bottom:633.533333pt;}
.y120{bottom:634.013333pt;}
.yf0{bottom:635.133333pt;}
.y150{bottom:642.973333pt;}
.y1c{bottom:646.013333pt;}
.y4c{bottom:646.813333pt;}
.yc2{bottom:647.933333pt;}
.y94{bottom:649.213333pt;}
.y179{bottom:651.933333pt;}
.y11f{bottom:653.533333pt;}
.yf3{bottom:659.133333pt;}
.y14f{bottom:662.173333pt;}
.y1b{bottom:663.613333pt;}
.y4b{bottom:664.573333pt;}
.yc1{bottom:666.173333pt;}
.y93{bottom:666.813333pt;}
.y178{bottom:670.173333pt;}
.y11e{bottom:673.053333pt;}
.y1a{bottom:681.373333pt;}
.y4a{bottom:682.173333pt;}
.yee{bottom:682.973333pt;}
.y92{bottom:684.413333pt;}
.y177{bottom:688.413333pt;}
.y11d{bottom:692.573333pt;}
.y19{bottom:698.973333pt;}
.y49{bottom:699.773333pt;}
.y14e{bottom:700.573333pt;}
.y91{bottom:702.013333pt;}
.yc0{bottom:702.813333pt;}
.y176{bottom:706.813333pt;}
.yed{bottom:712.093333pt;}
.y18{bottom:716.573333pt;}
.y48{bottom:717.373333pt;}
.y90{bottom:719.773333pt;}
.ybf{bottom:721.053333pt;}
.y175{bottom:725.053333pt;}
.yec{bottom:729.693333pt;}
.y11c{bottom:731.613333pt;}
.y17{bottom:731.933333pt;}
.y47{bottom:734.973333pt;}
.y8f{bottom:737.373333pt;}
.y14d{bottom:738.973333pt;}
.ybe{bottom:739.293333pt;}
.y174{bottom:743.453333pt;}
.yeb{bottom:747.293333pt;}
.y11b{bottom:751.133333pt;}
.y46{bottom:752.733333pt;}
.y16{bottom:754.173333pt;}
.y8e{bottom:754.973333pt;}
.ybd{bottom:757.693333pt;}
.yea{bottom:764.893333pt;}
.y45{bottom:770.333333pt;}
.y11a{bottom:770.653333pt;}
.y15{bottom:771.773333pt;}
.y8d{bottom:772.573333pt;}
.y14b{bottom:774.973333pt;}
.ybc{bottom:775.933333pt;}
.ye9{bottom:778.173333pt;}
.y173{bottom:779.293333pt;}
.y44{bottom:787.933333pt;}
.y14{bottom:789.373333pt;}
.y8c{bottom:790.173333pt;}
.yba{bottom:794.173333pt;}
.ye8{bottom:796.413333pt;}
.y172{bottom:797.533333pt;}
.y13{bottom:803.013333pt;}
.y43{bottom:805.573333pt;}
.y8b{bottom:807.973333pt;}
.y117{bottom:809.733333pt;}
.yb8{bottom:812.613333pt;}
.y146{bottom:813.413333pt;}
.ye7{bottom:814.693333pt;}
.y171{bottom:815.973333pt;}
.y12{bottom:822.373333pt;}
.y42{bottom:823.173333pt;}
.y8a{bottom:825.573333pt;}
.yb6{bottom:830.853333pt;}
.y149{bottom:831.653333pt;}
.ye6{bottom:833.093333pt;}
.y170{bottom:834.213333pt;}
.y11{bottom:839.013333pt;}
.y41{bottom:840.933333pt;}
.y116{bottom:845.733333pt;}
.ye5{bottom:851.333333pt;}
.yb5{bottom:852.613333pt;}
.y1c4{bottom:855.173333pt;}
.y40{bottom:858.533333pt;}
.y10{bottom:859.813333pt;}
.y145{bottom:860.293333pt;}
.y115{bottom:865.253333pt;}
.ye4{bottom:869.573333pt;}
.y16f{bottom:870.853333pt;}
.y3f{bottom:876.133333pt;}
.y144{bottom:878.053333pt;}
.y114{bottom:884.773333pt;}
.yf{bottom:887.973333pt;}
.y16e{bottom:889.093333pt;}
.y3e{bottom:893.733333pt;}
.y143{bottom:895.653333pt;}
.y113{bottom:904.293333pt;}
.y16d{bottom:907.493333pt;}
.y3d{bottom:911.333333pt;}
.y142{bottom:913.253333pt;}
.y9{bottom:927.333333pt;}
.y141{bottom:929.253333pt;}
.y1{bottom:943.013333pt;}
.y13b{bottom:944.773333pt;}
.y7{bottom:973.413333pt;}
.y140{bottom:975.333333pt;}
.h6{height:2.295000pt;}
.h13{height:17.600000pt;}
.h15{height:17.632000pt;}
.h11{height:17.760000pt;}
.h14{height:17.792000pt;}
.h27{height:18.560000pt;}
.h25{height:18.592000pt;}
.h1e{height:18.720000pt;}
.h1b{height:18.880000pt;}
.h1f{height:18.912000pt;}
.hb{height:19.040000pt;}
.h1c{height:19.072000pt;}
.h2b{height:19.680000pt;}
.h12{height:21.120000pt;}
.h24{height:22.880000pt;}
.h1a{height:23.200000pt;}
.h18{height:23.360000pt;}
.h28{height:27.360000pt;}
.h29{height:27.520000pt;}
.h7{height:29.760000pt;}
.hf{height:30.982500pt;}
.h17{height:35.200000pt;}
.h21{height:35.232000pt;}
.h20{height:35.360000pt;}
.h23{height:41.120000pt;}
.h2a{height:43.108125pt;}
.h26{height:43.782500pt;}
.h10{height:47.180312pt;}
.h19{height:47.200000pt;}
.he{height:47.621250pt;}
.h1d{height:49.255625pt;}
.h16{height:49.542500pt;}
.h4{height:52.296250pt;}
.hc{height:52.785000pt;}
.h9{height:54.089375pt;}
.h8{height:57.375000pt;}
.ha{height:58.563750pt;}
.h2e{height:70.560000pt;}
.h3{height:71.054688pt;}
.hd{height:75.602187pt;}
.h2c{height:98.080000pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h22{height:130.592000pt;}
.h2d{height:232.826667pt;}
.h2f{height:244.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2a{width:2.080000pt;}
.w5{width:8.800000pt;}
.w9{width:38.240000pt;}
.w7{width:38.272000pt;}
.w8{width:38.400000pt;}
.w20{width:57.152000pt;}
.w1d{width:62.080000pt;}
.w1c{width:62.112000pt;}
.w24{width:65.440000pt;}
.w13{width:68.000000pt;}
.w14{width:68.032000pt;}
.w1f{width:82.720000pt;}
.w25{width:85.152000pt;}
.w17{width:87.072000pt;}
.w1a{width:88.800000pt;}
.w19{width:88.832000pt;}
.w10{width:90.880000pt;}
.wf{width:95.680000pt;}
.we{width:95.712000pt;}
.w15{width:98.240000pt;}
.w26{width:102.752000pt;}
.w18{width:109.600000pt;}
.wc{width:112.640000pt;}
.w3{width:122.272000pt;}
.w1b{width:128.512000pt;}
.w23{width:131.712000pt;}
.w1e{width:139.866667pt;}
.w11{width:147.386667pt;}
.wa{width:160.026667pt;}
.wb{width:169.466667pt;}
.w21{width:201.626667pt;}
.w12{width:223.066667pt;}
.wd{width:226.906667pt;}
.w16{width:230.586667pt;}
.w29{width:267.386667pt;}
.w28{width:269.466667pt;}
.w2c{width:288.986667pt;}
.w22{width:292.066667pt;}
.w2b{width:293.186667pt;}
.w27{width:349.026667pt;}
.w6{width:451.586667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:4.800000pt;}
.x2{left:7.200000pt;}
.x15{left:9.280000pt;}
.x1{left:47.200000pt;}
.x3d{left:48.639988pt;}
.x2e{left:57.120000pt;}
.x9{left:60.479988pt;}
.xe{left:71.999988pt;}
.x6{left:84.671988pt;}
.x36{left:87.712000pt;}
.x10{left:94.432000pt;}
.xf{left:96.031988pt;}
.x4{left:105.306667pt;}
.xd{left:165.306655pt;}
.x24{left:176.506667pt;}
.xc{left:218.266655pt;}
.x25{left:238.626667pt;}
.x1c{left:241.986667pt;}
.x7{left:251.426655pt;}
.xb{left:256.066655pt;}
.x39{left:266.920000pt;}
.x3c{left:292.701333pt;}
.xa{left:295.106655pt;}
.x2c{left:296.066667pt;}
.x26{left:300.706667pt;}
.x19{left:321.346667pt;}
.x38{left:322.781333pt;}
.x20{left:325.026667pt;}
.x2f{left:349.826667pt;}
.x27{left:362.786667pt;}
.x8{left:396.893322pt;}
.x3b{left:398.973333pt;}
.x21{left:412.093333pt;}
.x16{left:416.253333pt;}
.x28{left:424.893333pt;}
.x37{left:436.733333pt;}
.x1d{left:465.053333pt;}
.x30{left:482.173333pt;}
.x29{left:486.973333pt;}
.x2d{left:497.693333pt;}
.x1a{left:512.733333pt;}
.x22{left:521.693333pt;}
.x1e{left:533.053333pt;}
.x11{left:546.013333pt;}
.x2a{left:549.053333pt;}
.x12{left:584.293333pt;}
.x17{left:586.373333pt;}
.x1f{left:601.093333pt;}
.x1b{left:608.453333pt;}
.x23{left:610.533333pt;}
.x13{left:622.693333pt;}
.x3{left:624.453333pt;}
.x31{left:634.053333pt;}
.x14{left:660.933333pt;}
.x35{left:684.933322pt;}
.x33{left:688.933322pt;}
.x34{left:689.893322pt;}
.x2b{left:693.893333pt;}
.x3a{left:704.133333pt;}
.x32{left:728.639988pt;}
.x5{left:737.120000pt;}
}




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