
    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_5d9fc1a0b62d1d08670d24b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1d594dfb01ec09c3d1ee7bfb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b9358253af95924ea87a1a77.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5246b5d9c8d62f5b8a8ade20.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_02ac958456bba238044df937.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_37337d7fe22065fb7e4467cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_af562052b998f1f8f1848eab.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_706f7c89280f1eaa7dc482b3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_84e3fa6be757ec5bb3bd5770.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f4eb4341f3708ba93f2b3ec4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940430;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:69.120000px;}
.ls18{letter-spacing:-0.774000px;}
.ls1d{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.206400px;}
.ls1f{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.206640px;}
.lsa{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:5.220000px;}
.ls13{letter-spacing:10.980000px;}
.ls17{letter-spacing:16.506720px;}
.ls1e{letter-spacing:41.706720px;}
.lse{letter-spacing:46.002720px;}
.ls4{letter-spacing:46.026720px;}
.ls1a{letter-spacing:62.820000px;}
.ls1b{letter-spacing:64.002720px;}
.ls1c{letter-spacing:64.026720px;}
.ls12{letter-spacing:90.666720px;}
.ls11{letter-spacing:91.386720px;}
.lsd{letter-spacing:93.060000px;}
.ls5{letter-spacing:93.180000px;}
.ls0{letter-spacing:150.660000px;}
.ls19{letter-spacing:426.396000px;}
.ls1{letter-spacing:532.956000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws3{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.328000px;}
.ws8{word-spacing:-14.220000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-0.059760px;}
.wsc{word-spacing:0.000000px;}
._a{margin-left:-1.001760px;}
._0{width:1.254960px;}
._6{width:2.804880px;}
._7{width:4.425840px;}
._1{width:5.976000px;}
._3{width:7.911120px;}
._2{width:8.964000px;}
._b{width:10.458000px;}
._8{width:12.131280px;}
._9{width:13.266720px;}
._d{width:15.955920px;}
._12{width:17.390160px;}
._11{width:18.943920px;}
._17{width:20.391840px;}
._f{width:21.573360px;}
._1c{width:23.007600px;}
._32{width:24.083280px;}
._4{width:25.099200px;}
._5{width:26.234640px;}
._10{width:28.266480px;}
._14{width:29.686560px;}
._13{width:31.134960px;}
._36{width:32.155920px;}
._16{width:33.226560px;}
._35{width:34.302240px;}
._e{width:35.497440px;}
._21{width:37.110960px;}
._20{width:38.126880px;}
._18{width:39.202560px;}
._22{width:40.573200px;}
._1d{width:41.772240px;}
._30{width:43.476960px;}
._2f{width:44.700480px;}
._27{width:46.114800px;}
._19{width:47.509200px;}
._29{width:48.704400px;}
._25{width:49.720320px;}
._26{width:50.796000px;}
._34{width:51.862800px;}
._28{width:52.891920px;}
._1b{width:54.909360px;}
._1a{width:56.096400px;}
._33{width:57.608640px;}
._15{width:58.983120px;}
._23{width:60.477120px;}
._24{width:61.604400px;}
._39{width:63.574560px;}
._3a{width:64.720080px;}
._38{width:65.736000px;}
._2b{width:67.349520px;}
._2a{width:68.365440px;}
._3b{width:69.500880px;}
._1e{width:71.174160px;}
._3c{width:72.787680px;}
._2d{width:74.939040px;}
._2e{width:76.134240px;}
._31{width:78.166080px;}
._c{width:88.683840px;}
._1f{width:92.867040px;}
._2c{width:126.480000px;}
._37{width:268.681440px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:2.880000px;}
.ycc{bottom:3.060000px;}
.y9c{bottom:3.240000px;}
.y100{bottom:3.285000px;}
.y133{bottom:3.420000px;}
.y12e{bottom:3.600000px;}
.y85{bottom:3.780000px;}
.ybb{bottom:4.140000px;}
.ybc{bottom:4.680000px;}
.y8a{bottom:4.860000px;}
.y9a{bottom:5.040000px;}
.ycf{bottom:5.400000px;}
.yfd{bottom:7.380000px;}
.yd8{bottom:11.700000px;}
.y86{bottom:12.420000px;}
.y88{bottom:13.320000px;}
.yc3{bottom:15.660000px;}
.yc6{bottom:17.820000px;}
.yc0{bottom:18.360000px;}
.ycb{bottom:18.540000px;}
.yd4{bottom:19.800000px;}
.y9b{bottom:20.340000px;}
.y151{bottom:20.385000px;}
.y136{bottom:20.520000px;}
.y132{bottom:20.700000px;}
.y12d{bottom:20.880000px;}
.y84{bottom:21.060000px;}
.y8c{bottom:23.220000px;}
.y91{bottom:24.300000px;}
.yfc{bottom:24.660000px;}
.yc5{bottom:33.300000px;}
.ybf{bottom:33.840000px;}
.yca{bottom:34.020000px;}
.yd3{bottom:35.280000px;}
.y96{bottom:40.680000px;}
.y90{bottom:41.580000px;}
.ybe{bottom:49.500000px;}
.yd2{bottom:50.940000px;}
.yd1{bottom:66.420000px;}
.y2{bottom:79.416000px;}
.y1{bottom:100.116000px;}
.y33{bottom:120.456000px;}
.y40{bottom:123.876000px;}
.yb9{bottom:127.836000px;}
.y12b{bottom:129.276000px;}
.yf9{bottom:130.536000px;}
.y180{bottom:131.076000px;}
.y32{bottom:136.476000px;}
.y80{bottom:138.096000px;}
.y3f{bottom:141.156000px;}
.y166{bottom:142.596000px;}
.y158{bottom:144.396000px;}
.yb8{bottom:145.116000px;}
.y122{bottom:145.296000px;}
.yf8{bottom:147.816000px;}
.y17f{bottom:148.356000px;}
.y31{bottom:148.536000px;}
.y1c4{bottom:150.870000px;}
.y7f{bottom:155.550000px;}
.y3e{bottom:158.430000px;}
.y165{bottom:159.690000px;}
.y157{bottom:161.490000px;}
.yb7{bottom:162.210000px;}
.y121{bottom:162.390000px;}
.y12a{bottom:164.550000px;}
.yf7{bottom:165.090000px;}
.y1c3{bottom:168.150000px;}
.y19f{bottom:169.050000px;}
.y3d{bottom:175.710000px;}
.y164{bottom:176.970000px;}
.y156{bottom:178.770000px;}
.yb6{bottom:179.490000px;}
.y120{bottom:179.670000px;}
.y17e{bottom:184.710000px;}
.y1c2{bottom:185.430000px;}
.y19e{bottom:186.330000px;}
.y3c{bottom:192.990000px;}
.y7e{bottom:193.710000px;}
.y155{bottom:196.050000px;}
.yb5{bottom:196.770000px;}
.y11f{bottom:196.950000px;}
.yf6{bottom:199.650000px;}
.y129{bottom:199.830000px;}
.y1c1{bottom:202.710000px;}
.y19d{bottom:203.610000px;}
.y3b{bottom:210.090000px;}
.y7d{bottom:210.990000px;}
.y163{bottom:212.250000px;}
.y154{bottom:213.330000px;}
.yb4{bottom:214.050000px;}
.y11e{bottom:214.230000px;}
.yf5{bottom:216.750000px;}
.y17d{bottom:219.990000px;}
.y19c{bottom:220.890000px;}
.y3a{bottom:227.370000px;}
.y7c{bottom:228.090000px;}
.y162{bottom:229.530000px;}
.y153{bottom:230.610000px;}
.yb3{bottom:231.330000px;}
.y11d{bottom:231.510000px;}
.y30{bottom:231.690000px;}
.yf4{bottom:234.030000px;}
.y128{bottom:235.110000px;}
.y17c{bottom:237.090000px;}
.y19b{bottom:238.170000px;}
.y39{bottom:244.650000px;}
.y7b{bottom:245.370000px;}
.y161{bottom:246.810000px;}
.y2f{bottom:248.610000px;}
.y11c{bottom:248.790000px;}
.yf3{bottom:251.310000px;}
.y17b{bottom:254.370000px;}
.y19a{bottom:255.270000px;}
.y38{bottom:261.930000px;}
.y7a{bottom:262.650000px;}
.y152{bottom:263.370000px;}
.y2e{bottom:264.090000px;}
.yb2{bottom:265.710000px;}
.y11b{bottom:265.890000px;}
.yf2{bottom:268.590000px;}
.y127{bottom:270.390000px;}
.y17a{bottom:271.650000px;}
.y199{bottom:272.550000px;}
.y37{bottom:279.210000px;}
.y2d{bottom:279.930000px;}
.y160{bottom:281.190000px;}
.y150{bottom:281.370000px;}
.yb1{bottom:282.990000px;}
.y11a{bottom:283.170000px;}
.yf1{bottom:285.870000px;}
.y126{bottom:287.490000px;}
.y1c0{bottom:288.975000px;}
.y198{bottom:289.875000px;}
.y5b{bottom:296.535000px;}
.y2c{bottom:297.255000px;}
.y15f{bottom:298.515000px;}
.y119{bottom:300.495000px;}
.yf0{bottom:303.195000px;}
.y179{bottom:303.735000px;}
.y125{bottom:304.815000px;}
.y1bf{bottom:306.255000px;}
.y197{bottom:307.155000px;}
.y5a{bottom:313.635000px;}
.y36{bottom:314.355000px;}
.y2b{bottom:314.535000px;}
.y15e{bottom:315.795000px;}
.y14f{bottom:316.515000px;}
.yb0{bottom:317.595000px;}
.y118{bottom:317.775000px;}
.yef{bottom:320.295000px;}
.y1be{bottom:323.355000px;}
.y196{bottom:324.435000px;}
.y59{bottom:330.915000px;}
.y2a{bottom:331.635000px;}
.y15d{bottom:333.075000px;}
.y14e{bottom:334.515000px;}
.yaf{bottom:334.875000px;}
.y117{bottom:335.055000px;}
.yee{bottom:337.575000px;}
.y124{bottom:340.095000px;}
.y1bd{bottom:340.635000px;}
.y195{bottom:341.715000px;}
.y58{bottom:348.195000px;}
.y29{bottom:348.915000px;}
.y15c{bottom:350.355000px;}
.yae{bottom:352.155000px;}
.y14d{bottom:352.515000px;}
.y123{bottom:354.135000px;}
.yed{bottom:354.855000px;}
.y1bc{bottom:357.915000px;}
.y194{bottom:358.995000px;}
.y57{bottom:365.475000px;}
.y28{bottom:366.195000px;}
.yad{bottom:369.255000px;}
.y116{bottom:369.435000px;}
.y14c{bottom:370.515000px;}
.yec{bottom:372.135000px;}
.y1bb{bottom:375.195000px;}
.y15b{bottom:382.395000px;}
.y56{bottom:382.755000px;}
.y27{bottom:383.475000px;}
.y79{bottom:384.195000px;}
.yac{bottom:386.535000px;}
.y14b{bottom:388.515000px;}
.yeb{bottom:389.415000px;}
.y1ba{bottom:392.475000px;}
.y193{bottom:397.155000px;}
.y55{bottom:399.855000px;}
.y26{bottom:400.755000px;}
.y78{bottom:401.475000px;}
.yab{bottom:403.815000px;}
.y115{bottom:404.715000px;}
.yea{bottom:406.515000px;}
.y1b9{bottom:409.755000px;}
.y54{bottom:417.135000px;}
.y25{bottom:417.855000px;}
.y77{bottom:418.755000px;}
.yaa{bottom:421.095000px;}
.y114{bottom:421.995000px;}
.ye9{bottom:423.795000px;}
.y192{bottom:426.315000px;}
.y1b8{bottom:426.855000px;}
.y14a{bottom:427.035000px;}
.y53{bottom:434.415000px;}
.y24{bottom:435.135000px;}
.y76{bottom:435.855000px;}
.ya9{bottom:438.375000px;}
.y113{bottom:439.275000px;}
.ye8{bottom:441.075000px;}
.y191{bottom:443.595000px;}
.y1b7{bottom:444.135000px;}
.y149{bottom:444.315000px;}
.y52{bottom:451.695000px;}
.y23{bottom:452.415000px;}
.y75{bottom:453.135000px;}
.ya8{bottom:455.475000px;}
.y112{bottom:456.555000px;}
.ye7{bottom:458.355000px;}
.y190{bottom:460.875000px;}
.y1b6{bottom:461.415000px;}
.y51{bottom:468.975000px;}
.y22{bottom:469.695000px;}
.y74{bottom:470.415000px;}
.ya7{bottom:472.755000px;}
.y111{bottom:473.655000px;}
.ye6{bottom:475.635000px;}
.y18f{bottom:478.155000px;}
.y1b5{bottom:478.695000px;}
.y148{bottom:478.875000px;}
.y50{bottom:486.255000px;}
.y21{bottom:486.975000px;}
.y73{bottom:487.695000px;}
.ya6{bottom:490.035000px;}
.y110{bottom:490.935000px;}
.ye5{bottom:492.915000px;}
.y1b4{bottom:495.975000px;}
.y18e{bottom:496.515000px;}
.y4f{bottom:503.355000px;}
.y20{bottom:504.255000px;}
.y72{bottom:504.975000px;}
.ya5{bottom:507.315000px;}
.y10f{bottom:508.215000px;}
.ye4{bottom:510.015000px;}
.y1b3{bottom:513.255000px;}
.y18d{bottom:513.615000px;}
.y147{bottom:514.155000px;}
.y4e{bottom:520.635000px;}
.y1f{bottom:521.355000px;}
.y71{bottom:522.255000px;}
.ya4{bottom:524.595000px;}
.y10e{bottom:525.495000px;}
.ye3{bottom:527.295000px;}
.y1b2{bottom:530.355000px;}
.y18c{bottom:530.895000px;}
.y146{bottom:531.255000px;}
.y4d{bottom:537.915000px;}
.y1e{bottom:538.635000px;}
.y70{bottom:539.355000px;}
.ya3{bottom:541.875000px;}
.y10d{bottom:542.775000px;}
.ye2{bottom:544.575000px;}
.y1b1{bottom:547.665000px;}
.y18b{bottom:548.205000px;}
.y145{bottom:548.565000px;}
.y4c{bottom:555.225000px;}
.y1d{bottom:555.945000px;}
.y6f{bottom:556.665000px;}
.ya2{bottom:559.005000px;}
.y10c{bottom:560.085000px;}
.ye1{bottom:561.885000px;}
.y1b0{bottom:564.945000px;}
.y18a{bottom:565.485000px;}
.y178{bottom:568.005000px;}
.y4b{bottom:572.505000px;}
.y1c{bottom:573.225000px;}
.y6e{bottom:573.945000px;}
.ya1{bottom:576.285000px;}
.y10b{bottom:577.185000px;}
.ye0{bottom:579.165000px;}
.y1af{bottom:582.225000px;}
.y144{bottom:583.845000px;}
.y177{bottom:585.285000px;}
.y4a{bottom:589.785000px;}
.y1b{bottom:590.505000px;}
.y6d{bottom:591.225000px;}
.ya0{bottom:593.565000px;}
.y10a{bottom:594.465000px;}
.ydf{bottom:596.445000px;}
.y1ae{bottom:599.505000px;}
.y143{bottom:601.125000px;}
.y176{bottom:602.385000px;}
.y49{bottom:606.885000px;}
.y1a{bottom:607.785000px;}
.y6c{bottom:608.505000px;}
.y9f{bottom:610.845000px;}
.y109{bottom:611.745000px;}
.yde{bottom:613.545000px;}
.y1ad{bottom:616.785000px;}
.y189{bottom:618.225000px;}
.y142{bottom:618.405000px;}
.y175{bottom:619.665000px;}
.y48{bottom:624.165000px;}
.y19{bottom:624.885000px;}
.y6b{bottom:625.785000px;}
.y9e{bottom:628.125000px;}
.y108{bottom:629.025000px;}
.ydd{bottom:630.825000px;}
.y1ac{bottom:633.885000px;}
.y141{bottom:635.505000px;}
.y174{bottom:636.945000px;}
.y47{bottom:641.445000px;}
.y18{bottom:642.165000px;}
.y9d{bottom:645.405000px;}
.y107{bottom:646.305000px;}
.ydc{bottom:648.105000px;}
.y1ab{bottom:651.165000px;}
.y140{bottom:652.785000px;}
.y173{bottom:654.225000px;}
.y46{bottom:658.725000px;}
.y17{bottom:659.445000px;}
.y95{bottom:660.165000px;}
.y6a{bottom:660.885000px;}
.ydb{bottom:665.385000px;}
.y1aa{bottom:668.445000px;}
.y13f{bottom:670.065000px;}
.y188{bottom:671.145000px;}
.y172{bottom:671.505000px;}
.y45{bottom:676.005000px;}
.y16{bottom:676.725000px;}
.y106{bottom:679.065000px;}
.yda{bottom:682.665000px;}
.y13e{bottom:687.345000px;}
.y187{bottom:688.425000px;}
.y171{bottom:688.605000px;}
.y44{bottom:693.105000px;}
.y15{bottom:694.005000px;}
.y99{bottom:695.265000px;}
.y105{bottom:697.065000px;}
.yd9{bottom:699.945000px;}
.y1a9{bottom:703.725000px;}
.y13d{bottom:704.625000px;}
.y186{bottom:705.705000px;}
.y170{bottom:705.885000px;}
.y69{bottom:710.385000px;}
.y14{bottom:711.105000px;}
.yd0{bottom:714.705000px;}
.y98{bottom:715.065000px;}
.y13c{bottom:721.905000px;}
.y185{bottom:722.805000px;}
.y16f{bottom:723.165000px;}
.y68{bottom:727.665000px;}
.y35{bottom:728.385000px;}
.y104{bottom:733.065000px;}
.y97{bottom:734.685000px;}
.y13b{bottom:739.005000px;}
.y184{bottom:740.085000px;}
.y16e{bottom:740.445000px;}
.y1a8{bottom:741.885000px;}
.y67{bottom:744.945000px;}
.y13{bottom:745.665000px;}
.yd7{bottom:749.805000px;}
.y103{bottom:751.065000px;}
.y8f{bottom:753.225000px;}
.y13a{bottom:756.285000px;}
.y16d{bottom:757.725000px;}
.y183{bottom:758.445000px;}
.y1a7{bottom:759.165000px;}
.y66{bottom:762.225000px;}
.y12{bottom:762.945000px;}
.y102{bottom:769.065000px;}
.yd6{bottom:770.865000px;}
.y94{bottom:772.845000px;}
.y139{bottom:773.565000px;}
.y16c{bottom:775.005000px;}
.y182{bottom:775.725000px;}
.y1a6{bottom:776.445000px;}
.y65{bottom:779.505000px;}
.y11{bottom:780.225000px;}
.y101{bottom:787.065000px;}
.y138{bottom:790.845000px;}
.yd5{bottom:791.745000px;}
.y93{bottom:792.465000px;}
.y181{bottom:793.005000px;}
.y1a5{bottom:793.725000px;}
.y64{bottom:796.605000px;}
.y10{bottom:797.505000px;}
.yff{bottom:805.065000px;}
.y16b{bottom:807.810000px;}
.y137{bottom:808.170000px;}
.y15a{bottom:808.890000px;}
.y1a4{bottom:811.050000px;}
.yc9{bottom:811.410000px;}
.y92{bottom:812.130000px;}
.y63{bottom:813.930000px;}
.yf{bottom:814.650000px;}
.yfe{bottom:823.110000px;}
.y159{bottom:826.170000px;}
.y1a3{bottom:828.150000px;}
.y8b{bottom:830.670000px;}
.y62{bottom:831.210000px;}
.ye{bottom:831.930000px;}
.yce{bottom:833.730000px;}
.y135{bottom:840.930000px;}
.yfb{bottom:841.110000px;}
.y16a{bottom:842.910000px;}
.y1a2{bottom:845.430000px;}
.y61{bottom:848.490000px;}
.yd{bottom:849.210000px;}
.y8e{bottom:850.290000px;}
.ycd{bottom:854.610000px;}
.y1a1{bottom:862.710000px;}
.y60{bottom:865.770000px;}
.y1c5{bottom:866.310000px;}
.yc{bottom:866.490000px;}
.y8d{bottom:869.910000px;}
.yc4{bottom:874.410000px;}
.y134{bottom:876.210000px;}
.y169{bottom:878.190000px;}
.y1a0{bottom:879.990000px;}
.y5f{bottom:883.050000px;}
.yb{bottom:883.770000px;}
.y87{bottom:888.450000px;}
.y131{bottom:894.210000px;}
.yc8{bottom:895.290000px;}
.y5e{bottom:900.150000px;}
.ya{bottom:901.050000px;}
.y89{bottom:908.070000px;}
.y168{bottom:913.470000px;}
.yc7{bottom:916.170000px;}
.y5d{bottom:917.430000px;}
.y9{bottom:918.150000px;}
.y83{bottom:926.610000px;}
.y130{bottom:929.670000px;}
.y5c{bottom:934.710000px;}
.y8{bottom:935.430000px;}
.ybd{bottom:935.970000px;}
.y12f{bottom:947.670000px;}
.y167{bottom:948.750000px;}
.y7{bottom:952.710000px;}
.y12c{bottom:965.670000px;}
.y82{bottom:966.210000px;}
.yfa{bottom:969.270000px;}
.y6{bottom:969.990000px;}
.yc2{bottom:978.990000px;}
.y81{bottom:983.490000px;}
.y5{bottom:987.270000px;}
.yba{bottom:998.790000px;}
.y4{bottom:1004.550000px;}
.y34{bottom:1021.650000px;}
.y3{bottom:1038.930000px;}
.y43{bottom:1080.180000px;}
.y42{bottom:1100.160000px;}
.y41{bottom:1119.960000px;}
.h1f{height:17.100000px;}
.h20{height:17.136000px;}
.h22{height:17.280000px;}
.h14{height:17.640000px;}
.he{height:17.820000px;}
.hf{height:18.900000px;}
.h12{height:18.936000px;}
.h18{height:19.080000px;}
.h1b{height:20.160000px;}
.h1c{height:21.600000px;}
.h15{height:34.380000px;}
.h24{height:34.416000px;}
.h23{height:34.560000px;}
.h21{height:34.740000px;}
.hc{height:35.640000px;}
.hd{height:37.440000px;}
.h1e{height:38.700000px;}
.ha{height:41.726953px;}
.h19{height:42.300000px;}
.h7{height:51.519375px;}
.h5{height:52.998047px;}
.h16{height:54.421875px;}
.h8{height:55.824609px;}
.h10{height:57.060000px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h26{height:59.439023px;}
.h3{height:60.226875px;}
.h1a{height:60.660000px;}
.hb{height:61.423863px;}
.h17{height:62.100000px;}
.h9{height:62.211094px;}
.h6{height:62.327813px;}
.h1{height:70.664062px;}
.h11{height:76.716000px;}
.h13{height:92.160000px;}
.h1d{height:95.976000px;}
.h25{height:127.771172px;}
.h0{height:1188.000000px;}
.we{width:70.236000px;}
.wd{width:73.620000px;}
.w3{width:74.520000px;}
.w14{width:76.896000px;}
.w9{width:79.200000px;}
.w6{width:81.576000px;}
.w1b{width:82.800000px;}
.w1a{width:83.016000px;}
.w1c{width:83.880000px;}
.wc{width:84.240000px;}
.wb{width:84.276000px;}
.w19{width:85.320000px;}
.w5{width:86.220000px;}
.w8{width:88.956000px;}
.wf{width:89.460000px;}
.w12{width:90.576000px;}
.w11{width:91.620000px;}
.w13{width:96.300000px;}
.w4{width:97.236000px;}
.w2{width:102.276000px;}
.w15{width:103.680000px;}
.w16{width:122.580000px;}
.w7{width:123.300000px;}
.w17{width:129.996000px;}
.w18{width:254.010000px;}
.w10{width:258.870000px;}
.wa{width:302.070000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3c{left:3.420000px;}
.x15{left:7.776000px;}
.x52{left:8.820000px;}
.x2e{left:9.900000px;}
.x2a{left:12.240000px;}
.x22{left:13.320000px;}
.x1e{left:15.300000px;}
.x3b{left:17.100000px;}
.x20{left:18.540000px;}
.x23{left:20.160000px;}
.x1c{left:21.960000px;}
.x16{left:23.256000px;}
.x44{left:24.300000px;}
.x2c{left:25.560000px;}
.x1b{left:27.036000px;}
.x19{left:29.385000px;}
.x21{left:32.436000px;}
.x27{left:34.920000px;}
.x1d{left:37.305000px;}
.x30{left:38.340000px;}
.x1f{left:41.085000px;}
.x47{left:43.740000px;}
.x2f{left:45.000000px;}
.x2b{left:49.860000px;}
.x2d{left:52.380000px;}
.x4b{left:53.640000px;}
.x49{left:57.420000px;}
.x4a{left:61.200000px;}
.x14{left:87.480000px;}
.x3f{left:94.314000px;}
.x3e{left:97.416000px;}
.x46{left:98.676000px;}
.x34{left:104.436000px;}
.x2{left:106.415986px;}
.x3{left:115.775986px;}
.x35{left:118.434000px;}
.x7{left:124.595986px;}
.xb{left:131.075986px;}
.x24{left:133.415986px;}
.x10{left:136.295986px;}
.x8{left:150.689986px;}
.x4{left:154.829986px;}
.x45{left:160.949986px;}
.xf{left:168.689986px;}
.x17{left:190.470000px;}
.x9{left:222.149986px;}
.x6{left:237.989986px;}
.x33{left:257.789986px;}
.x4d{left:263.189986px;}
.x18{left:265.890000px;}
.x5{left:268.769986px;}
.xa{left:314.534986px;}
.x48{left:352.695000px;}
.x40{left:357.015000px;}
.x1a{left:363.855000px;}
.x36{left:407.235000px;}
.x4e{left:439.635000px;}
.x1{left:449.174986px;}
.x53{left:450.794986px;}
.x32{left:458.174986px;}
.x25{left:459.975000px;}
.xd{left:485.174986px;}
.x37{left:492.405000px;}
.x13{left:496.004986px;}
.x12{left:500.144986px;}
.x11{left:504.284986px;}
.xc{left:512.204986px;}
.x4f{left:523.365000px;}
.xe{left:539.204986px;}
.x41{left:540.645000px;}
.x26{left:542.265000px;}
.x31{left:566.204986px;}
.x38{left:577.365000px;}
.x50{left:607.065000px;}
.x42{left:637.665000px;}
.x39{left:651.705000px;}
.x28{left:666.285000px;}
.x51{left:690.810000px;}
.x43{left:715.290000px;}
.x3a{left:722.670000px;}
.x29{left:756.150000px;}
.x4c{left:828.329986px;}
.x3d{left:840.749986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:61.440000pt;}
.ls18{letter-spacing:-0.688000pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls1f{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.183680pt;}
.lsa{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:4.640000pt;}
.ls13{letter-spacing:9.760000pt;}
.ls17{letter-spacing:14.672640pt;}
.ls1e{letter-spacing:37.072640pt;}
.lse{letter-spacing:40.891307pt;}
.ls4{letter-spacing:40.912640pt;}
.ls1a{letter-spacing:55.840000pt;}
.ls1b{letter-spacing:56.891307pt;}
.ls1c{letter-spacing:56.912640pt;}
.ls12{letter-spacing:80.592640pt;}
.ls11{letter-spacing:81.232640pt;}
.lsd{letter-spacing:82.720000pt;}
.ls5{letter-spacing:82.826667pt;}
.ls0{letter-spacing:133.920000pt;}
.ls19{letter-spacing:379.018667pt;}
.ls1{letter-spacing:473.738667pt;}
.ws10{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws3{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.736000pt;}
.ws8{word-spacing:-12.640000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-0.053120pt;}
.wsc{word-spacing:0.000000pt;}
._a{margin-left:-0.890453pt;}
._0{width:1.115520pt;}
._6{width:2.493227pt;}
._7{width:3.934080pt;}
._1{width:5.312000pt;}
._3{width:7.032107pt;}
._2{width:7.968000pt;}
._b{width:9.296000pt;}
._8{width:10.783360pt;}
._9{width:11.792640pt;}
._d{width:14.183040pt;}
._12{width:15.457920pt;}
._11{width:16.839040pt;}
._17{width:18.126080pt;}
._f{width:19.176320pt;}
._1c{width:20.451200pt;}
._32{width:21.407360pt;}
._4{width:22.310400pt;}
._5{width:23.319680pt;}
._10{width:25.125760pt;}
._14{width:26.388053pt;}
._13{width:27.675520pt;}
._36{width:28.583040pt;}
._16{width:29.534720pt;}
._35{width:30.490880pt;}
._e{width:31.553280pt;}
._21{width:32.987520pt;}
._20{width:33.890560pt;}
._18{width:34.846720pt;}
._22{width:36.065067pt;}
._1d{width:37.130880pt;}
._30{width:38.646187pt;}
._2f{width:39.733760pt;}
._27{width:40.990933pt;}
._19{width:42.230400pt;}
._29{width:43.292800pt;}
._25{width:44.195840pt;}
._26{width:45.152000pt;}
._34{width:46.100267pt;}
._28{width:47.015040pt;}
._1b{width:48.808320pt;}
._1a{width:49.863467pt;}
._33{width:51.207680pt;}
._15{width:52.429440pt;}
._23{width:53.757440pt;}
._24{width:54.759467pt;}
._39{width:56.510720pt;}
._3a{width:57.528960pt;}
._38{width:58.432000pt;}
._2b{width:59.866240pt;}
._2a{width:60.769280pt;}
._3b{width:61.778560pt;}
._1e{width:63.265920pt;}
._3c{width:64.700160pt;}
._2d{width:66.612480pt;}
._2e{width:67.674880pt;}
._31{width:69.480960pt;}
._c{width:78.830080pt;}
._1f{width:82.548480pt;}
._2c{width:112.426667pt;}
._37{width:238.827947pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:2.560000pt;}
.ycc{bottom:2.720000pt;}
.y9c{bottom:2.880000pt;}
.y100{bottom:2.920000pt;}
.y133{bottom:3.040000pt;}
.y12e{bottom:3.200000pt;}
.y85{bottom:3.360000pt;}
.ybb{bottom:3.680000pt;}
.ybc{bottom:4.160000pt;}
.y8a{bottom:4.320000pt;}
.y9a{bottom:4.480000pt;}
.ycf{bottom:4.800000pt;}
.yfd{bottom:6.560000pt;}
.yd8{bottom:10.400000pt;}
.y86{bottom:11.040000pt;}
.y88{bottom:11.840000pt;}
.yc3{bottom:13.920000pt;}
.yc6{bottom:15.840000pt;}
.yc0{bottom:16.320000pt;}
.ycb{bottom:16.480000pt;}
.yd4{bottom:17.600000pt;}
.y9b{bottom:18.080000pt;}
.y151{bottom:18.120000pt;}
.y136{bottom:18.240000pt;}
.y132{bottom:18.400000pt;}
.y12d{bottom:18.560000pt;}
.y84{bottom:18.720000pt;}
.y8c{bottom:20.640000pt;}
.y91{bottom:21.600000pt;}
.yfc{bottom:21.920000pt;}
.yc5{bottom:29.600000pt;}
.ybf{bottom:30.080000pt;}
.yca{bottom:30.240000pt;}
.yd3{bottom:31.360000pt;}
.y96{bottom:36.160000pt;}
.y90{bottom:36.960000pt;}
.ybe{bottom:44.000000pt;}
.yd2{bottom:45.280000pt;}
.yd1{bottom:59.040000pt;}
.y2{bottom:70.592000pt;}
.y1{bottom:88.992000pt;}
.y33{bottom:107.072000pt;}
.y40{bottom:110.112000pt;}
.yb9{bottom:113.632000pt;}
.y12b{bottom:114.912000pt;}
.yf9{bottom:116.032000pt;}
.y180{bottom:116.512000pt;}
.y32{bottom:121.312000pt;}
.y80{bottom:122.752000pt;}
.y3f{bottom:125.472000pt;}
.y166{bottom:126.752000pt;}
.y158{bottom:128.352000pt;}
.yb8{bottom:128.992000pt;}
.y122{bottom:129.152000pt;}
.yf8{bottom:131.392000pt;}
.y17f{bottom:131.872000pt;}
.y31{bottom:132.032000pt;}
.y1c4{bottom:134.106667pt;}
.y7f{bottom:138.266667pt;}
.y3e{bottom:140.826667pt;}
.y165{bottom:141.946667pt;}
.y157{bottom:143.546667pt;}
.yb7{bottom:144.186667pt;}
.y121{bottom:144.346667pt;}
.y12a{bottom:146.266667pt;}
.yf7{bottom:146.746667pt;}
.y1c3{bottom:149.466667pt;}
.y19f{bottom:150.266667pt;}
.y3d{bottom:156.186667pt;}
.y164{bottom:157.306667pt;}
.y156{bottom:158.906667pt;}
.yb6{bottom:159.546667pt;}
.y120{bottom:159.706667pt;}
.y17e{bottom:164.186667pt;}
.y1c2{bottom:164.826667pt;}
.y19e{bottom:165.626667pt;}
.y3c{bottom:171.546667pt;}
.y7e{bottom:172.186667pt;}
.y155{bottom:174.266667pt;}
.yb5{bottom:174.906667pt;}
.y11f{bottom:175.066667pt;}
.yf6{bottom:177.466667pt;}
.y129{bottom:177.626667pt;}
.y1c1{bottom:180.186667pt;}
.y19d{bottom:180.986667pt;}
.y3b{bottom:186.746667pt;}
.y7d{bottom:187.546667pt;}
.y163{bottom:188.666667pt;}
.y154{bottom:189.626667pt;}
.yb4{bottom:190.266667pt;}
.y11e{bottom:190.426667pt;}
.yf5{bottom:192.666667pt;}
.y17d{bottom:195.546667pt;}
.y19c{bottom:196.346667pt;}
.y3a{bottom:202.106667pt;}
.y7c{bottom:202.746667pt;}
.y162{bottom:204.026667pt;}
.y153{bottom:204.986667pt;}
.yb3{bottom:205.626667pt;}
.y11d{bottom:205.786667pt;}
.y30{bottom:205.946667pt;}
.yf4{bottom:208.026667pt;}
.y128{bottom:208.986667pt;}
.y17c{bottom:210.746667pt;}
.y19b{bottom:211.706667pt;}
.y39{bottom:217.466667pt;}
.y7b{bottom:218.106667pt;}
.y161{bottom:219.386667pt;}
.y2f{bottom:220.986667pt;}
.y11c{bottom:221.146667pt;}
.yf3{bottom:223.386667pt;}
.y17b{bottom:226.106667pt;}
.y19a{bottom:226.906667pt;}
.y38{bottom:232.826667pt;}
.y7a{bottom:233.466667pt;}
.y152{bottom:234.106667pt;}
.y2e{bottom:234.746667pt;}
.yb2{bottom:236.186667pt;}
.y11b{bottom:236.346667pt;}
.yf2{bottom:238.746667pt;}
.y127{bottom:240.346667pt;}
.y17a{bottom:241.466667pt;}
.y199{bottom:242.266667pt;}
.y37{bottom:248.186667pt;}
.y2d{bottom:248.826667pt;}
.y160{bottom:249.946667pt;}
.y150{bottom:250.106667pt;}
.yb1{bottom:251.546667pt;}
.y11a{bottom:251.706667pt;}
.yf1{bottom:254.106667pt;}
.y126{bottom:255.546667pt;}
.y1c0{bottom:256.866667pt;}
.y198{bottom:257.666667pt;}
.y5b{bottom:263.586667pt;}
.y2c{bottom:264.226667pt;}
.y15f{bottom:265.346667pt;}
.y119{bottom:267.106667pt;}
.yf0{bottom:269.506667pt;}
.y179{bottom:269.986667pt;}
.y125{bottom:270.946667pt;}
.y1bf{bottom:272.226667pt;}
.y197{bottom:273.026667pt;}
.y5a{bottom:278.786667pt;}
.y36{bottom:279.426667pt;}
.y2b{bottom:279.586667pt;}
.y15e{bottom:280.706667pt;}
.y14f{bottom:281.346667pt;}
.yb0{bottom:282.306667pt;}
.y118{bottom:282.466667pt;}
.yef{bottom:284.706667pt;}
.y1be{bottom:287.426667pt;}
.y196{bottom:288.386667pt;}
.y59{bottom:294.146667pt;}
.y2a{bottom:294.786667pt;}
.y15d{bottom:296.066667pt;}
.y14e{bottom:297.346667pt;}
.yaf{bottom:297.666667pt;}
.y117{bottom:297.826667pt;}
.yee{bottom:300.066667pt;}
.y124{bottom:302.306667pt;}
.y1bd{bottom:302.786667pt;}
.y195{bottom:303.746667pt;}
.y58{bottom:309.506667pt;}
.y29{bottom:310.146667pt;}
.y15c{bottom:311.426667pt;}
.yae{bottom:313.026667pt;}
.y14d{bottom:313.346667pt;}
.y123{bottom:314.786667pt;}
.yed{bottom:315.426667pt;}
.y1bc{bottom:318.146667pt;}
.y194{bottom:319.106667pt;}
.y57{bottom:324.866667pt;}
.y28{bottom:325.506667pt;}
.yad{bottom:328.226667pt;}
.y116{bottom:328.386667pt;}
.y14c{bottom:329.346667pt;}
.yec{bottom:330.786667pt;}
.y1bb{bottom:333.506667pt;}
.y15b{bottom:339.906667pt;}
.y56{bottom:340.226667pt;}
.y27{bottom:340.866667pt;}
.y79{bottom:341.506667pt;}
.yac{bottom:343.586667pt;}
.y14b{bottom:345.346667pt;}
.yeb{bottom:346.146667pt;}
.y1ba{bottom:348.866667pt;}
.y193{bottom:353.026667pt;}
.y55{bottom:355.426667pt;}
.y26{bottom:356.226667pt;}
.y78{bottom:356.866667pt;}
.yab{bottom:358.946667pt;}
.y115{bottom:359.746667pt;}
.yea{bottom:361.346667pt;}
.y1b9{bottom:364.226667pt;}
.y54{bottom:370.786667pt;}
.y25{bottom:371.426667pt;}
.y77{bottom:372.226667pt;}
.yaa{bottom:374.306667pt;}
.y114{bottom:375.106667pt;}
.ye9{bottom:376.706667pt;}
.y192{bottom:378.946667pt;}
.y1b8{bottom:379.426667pt;}
.y14a{bottom:379.586667pt;}
.y53{bottom:386.146667pt;}
.y24{bottom:386.786667pt;}
.y76{bottom:387.426667pt;}
.ya9{bottom:389.666667pt;}
.y113{bottom:390.466667pt;}
.ye8{bottom:392.066667pt;}
.y191{bottom:394.306667pt;}
.y1b7{bottom:394.786667pt;}
.y149{bottom:394.946667pt;}
.y52{bottom:401.506667pt;}
.y23{bottom:402.146667pt;}
.y75{bottom:402.786667pt;}
.ya8{bottom:404.866667pt;}
.y112{bottom:405.826667pt;}
.ye7{bottom:407.426667pt;}
.y190{bottom:409.666667pt;}
.y1b6{bottom:410.146667pt;}
.y51{bottom:416.866667pt;}
.y22{bottom:417.506667pt;}
.y74{bottom:418.146667pt;}
.ya7{bottom:420.226667pt;}
.y111{bottom:421.026667pt;}
.ye6{bottom:422.786667pt;}
.y18f{bottom:425.026667pt;}
.y1b5{bottom:425.506667pt;}
.y148{bottom:425.666667pt;}
.y50{bottom:432.226667pt;}
.y21{bottom:432.866667pt;}
.y73{bottom:433.506667pt;}
.ya6{bottom:435.586667pt;}
.y110{bottom:436.386667pt;}
.ye5{bottom:438.146667pt;}
.y1b4{bottom:440.866667pt;}
.y18e{bottom:441.346667pt;}
.y4f{bottom:447.426667pt;}
.y20{bottom:448.226667pt;}
.y72{bottom:448.866667pt;}
.ya5{bottom:450.946667pt;}
.y10f{bottom:451.746667pt;}
.ye4{bottom:453.346667pt;}
.y1b3{bottom:456.226667pt;}
.y18d{bottom:456.546667pt;}
.y147{bottom:457.026667pt;}
.y4e{bottom:462.786667pt;}
.y1f{bottom:463.426667pt;}
.y71{bottom:464.226667pt;}
.ya4{bottom:466.306667pt;}
.y10e{bottom:467.106667pt;}
.ye3{bottom:468.706667pt;}
.y1b2{bottom:471.426667pt;}
.y18c{bottom:471.906667pt;}
.y146{bottom:472.226667pt;}
.y4d{bottom:478.146667pt;}
.y1e{bottom:478.786667pt;}
.y70{bottom:479.426667pt;}
.ya3{bottom:481.666667pt;}
.y10d{bottom:482.466667pt;}
.ye2{bottom:484.066667pt;}
.y1b1{bottom:486.813333pt;}
.y18b{bottom:487.293333pt;}
.y145{bottom:487.613333pt;}
.y4c{bottom:493.533333pt;}
.y1d{bottom:494.173333pt;}
.y6f{bottom:494.813333pt;}
.ya2{bottom:496.893333pt;}
.y10c{bottom:497.853333pt;}
.ye1{bottom:499.453333pt;}
.y1b0{bottom:502.173333pt;}
.y18a{bottom:502.653333pt;}
.y178{bottom:504.893333pt;}
.y4b{bottom:508.893333pt;}
.y1c{bottom:509.533333pt;}
.y6e{bottom:510.173333pt;}
.ya1{bottom:512.253333pt;}
.y10b{bottom:513.053333pt;}
.ye0{bottom:514.813333pt;}
.y1af{bottom:517.533333pt;}
.y144{bottom:518.973333pt;}
.y177{bottom:520.253333pt;}
.y4a{bottom:524.253333pt;}
.y1b{bottom:524.893333pt;}
.y6d{bottom:525.533333pt;}
.ya0{bottom:527.613333pt;}
.y10a{bottom:528.413333pt;}
.ydf{bottom:530.173333pt;}
.y1ae{bottom:532.893333pt;}
.y143{bottom:534.333333pt;}
.y176{bottom:535.453333pt;}
.y49{bottom:539.453333pt;}
.y1a{bottom:540.253333pt;}
.y6c{bottom:540.893333pt;}
.y9f{bottom:542.973333pt;}
.y109{bottom:543.773333pt;}
.yde{bottom:545.373333pt;}
.y1ad{bottom:548.253333pt;}
.y189{bottom:549.533333pt;}
.y142{bottom:549.693333pt;}
.y175{bottom:550.813333pt;}
.y48{bottom:554.813333pt;}
.y19{bottom:555.453333pt;}
.y6b{bottom:556.253333pt;}
.y9e{bottom:558.333333pt;}
.y108{bottom:559.133333pt;}
.ydd{bottom:560.733333pt;}
.y1ac{bottom:563.453333pt;}
.y141{bottom:564.893333pt;}
.y174{bottom:566.173333pt;}
.y47{bottom:570.173333pt;}
.y18{bottom:570.813333pt;}
.y9d{bottom:573.693333pt;}
.y107{bottom:574.493333pt;}
.ydc{bottom:576.093333pt;}
.y1ab{bottom:578.813333pt;}
.y140{bottom:580.253333pt;}
.y173{bottom:581.533333pt;}
.y46{bottom:585.533333pt;}
.y17{bottom:586.173333pt;}
.y95{bottom:586.813333pt;}
.y6a{bottom:587.453333pt;}
.ydb{bottom:591.453333pt;}
.y1aa{bottom:594.173333pt;}
.y13f{bottom:595.613333pt;}
.y188{bottom:596.573333pt;}
.y172{bottom:596.893333pt;}
.y45{bottom:600.893333pt;}
.y16{bottom:601.533333pt;}
.y106{bottom:603.613333pt;}
.yda{bottom:606.813333pt;}
.y13e{bottom:610.973333pt;}
.y187{bottom:611.933333pt;}
.y171{bottom:612.093333pt;}
.y44{bottom:616.093333pt;}
.y15{bottom:616.893333pt;}
.y99{bottom:618.013333pt;}
.y105{bottom:619.613333pt;}
.yd9{bottom:622.173333pt;}
.y1a9{bottom:625.533333pt;}
.y13d{bottom:626.333333pt;}
.y186{bottom:627.293333pt;}
.y170{bottom:627.453333pt;}
.y69{bottom:631.453333pt;}
.y14{bottom:632.093333pt;}
.yd0{bottom:635.293333pt;}
.y98{bottom:635.613333pt;}
.y13c{bottom:641.693333pt;}
.y185{bottom:642.493333pt;}
.y16f{bottom:642.813333pt;}
.y68{bottom:646.813333pt;}
.y35{bottom:647.453333pt;}
.y104{bottom:651.613333pt;}
.y97{bottom:653.053333pt;}
.y13b{bottom:656.893333pt;}
.y184{bottom:657.853333pt;}
.y16e{bottom:658.173333pt;}
.y1a8{bottom:659.453333pt;}
.y67{bottom:662.173333pt;}
.y13{bottom:662.813333pt;}
.yd7{bottom:666.493333pt;}
.y103{bottom:667.613333pt;}
.y8f{bottom:669.533333pt;}
.y13a{bottom:672.253333pt;}
.y16d{bottom:673.533333pt;}
.y183{bottom:674.173333pt;}
.y1a7{bottom:674.813333pt;}
.y66{bottom:677.533333pt;}
.y12{bottom:678.173333pt;}
.y102{bottom:683.613333pt;}
.yd6{bottom:685.213333pt;}
.y94{bottom:686.973333pt;}
.y139{bottom:687.613333pt;}
.y16c{bottom:688.893333pt;}
.y182{bottom:689.533333pt;}
.y1a6{bottom:690.173333pt;}
.y65{bottom:692.893333pt;}
.y11{bottom:693.533333pt;}
.y101{bottom:699.613333pt;}
.y138{bottom:702.973333pt;}
.yd5{bottom:703.773333pt;}
.y93{bottom:704.413333pt;}
.y181{bottom:704.893333pt;}
.y1a5{bottom:705.533333pt;}
.y64{bottom:708.093333pt;}
.y10{bottom:708.893333pt;}
.yff{bottom:715.613333pt;}
.y16b{bottom:718.053333pt;}
.y137{bottom:718.373333pt;}
.y15a{bottom:719.013333pt;}
.y1a4{bottom:720.933333pt;}
.yc9{bottom:721.253333pt;}
.y92{bottom:721.893333pt;}
.y63{bottom:723.493333pt;}
.yf{bottom:724.133333pt;}
.yfe{bottom:731.653333pt;}
.y159{bottom:734.373333pt;}
.y1a3{bottom:736.133333pt;}
.y8b{bottom:738.373333pt;}
.y62{bottom:738.853333pt;}
.ye{bottom:739.493333pt;}
.yce{bottom:741.093333pt;}
.y135{bottom:747.493333pt;}
.yfb{bottom:747.653333pt;}
.y16a{bottom:749.253333pt;}
.y1a2{bottom:751.493333pt;}
.y61{bottom:754.213333pt;}
.yd{bottom:754.853333pt;}
.y8e{bottom:755.813333pt;}
.ycd{bottom:759.653333pt;}
.y1a1{bottom:766.853333pt;}
.y60{bottom:769.573333pt;}
.y1c5{bottom:770.053333pt;}
.yc{bottom:770.213333pt;}
.y8d{bottom:773.253333pt;}
.yc4{bottom:777.253333pt;}
.y134{bottom:778.853333pt;}
.y169{bottom:780.613333pt;}
.y1a0{bottom:782.213333pt;}
.y5f{bottom:784.933333pt;}
.yb{bottom:785.573333pt;}
.y87{bottom:789.733333pt;}
.y131{bottom:794.853333pt;}
.yc8{bottom:795.813333pt;}
.y5e{bottom:800.133333pt;}
.ya{bottom:800.933333pt;}
.y89{bottom:807.173333pt;}
.y168{bottom:811.973333pt;}
.yc7{bottom:814.373333pt;}
.y5d{bottom:815.493333pt;}
.y9{bottom:816.133333pt;}
.y83{bottom:823.653333pt;}
.y130{bottom:826.373333pt;}
.y5c{bottom:830.853333pt;}
.y8{bottom:831.493333pt;}
.ybd{bottom:831.973333pt;}
.y12f{bottom:842.373333pt;}
.y167{bottom:843.333333pt;}
.y7{bottom:846.853333pt;}
.y12c{bottom:858.373333pt;}
.y82{bottom:858.853333pt;}
.yfa{bottom:861.573333pt;}
.y6{bottom:862.213333pt;}
.yc2{bottom:870.213333pt;}
.y81{bottom:874.213333pt;}
.y5{bottom:877.573333pt;}
.yba{bottom:887.813333pt;}
.y4{bottom:892.933333pt;}
.y34{bottom:908.133333pt;}
.y3{bottom:923.493333pt;}
.y43{bottom:960.160000pt;}
.y42{bottom:977.920000pt;}
.y41{bottom:995.520000pt;}
.h1f{height:15.200000pt;}
.h20{height:15.232000pt;}
.h22{height:15.360000pt;}
.h14{height:15.680000pt;}
.he{height:15.840000pt;}
.hf{height:16.800000pt;}
.h12{height:16.832000pt;}
.h18{height:16.960000pt;}
.h1b{height:17.920000pt;}
.h1c{height:19.200000pt;}
.h15{height:30.560000pt;}
.h24{height:30.592000pt;}
.h23{height:30.720000pt;}
.h21{height:30.880000pt;}
.hc{height:31.680000pt;}
.hd{height:33.280000pt;}
.h1e{height:34.400000pt;}
.ha{height:37.090625pt;}
.h19{height:37.600000pt;}
.h7{height:45.795000pt;}
.h5{height:47.109375pt;}
.h16{height:48.375000pt;}
.h8{height:49.621875pt;}
.h10{height:50.720000pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h26{height:52.834688pt;}
.h3{height:53.535000pt;}
.h1a{height:53.920000pt;}
.hb{height:54.598989pt;}
.h17{height:55.200000pt;}
.h9{height:55.298750pt;}
.h6{height:55.402500pt;}
.h1{height:62.812500pt;}
.h11{height:68.192000pt;}
.h13{height:81.920000pt;}
.h1d{height:85.312000pt;}
.h25{height:113.574375pt;}
.h0{height:1056.000000pt;}
.we{width:62.432000pt;}
.wd{width:65.440000pt;}
.w3{width:66.240000pt;}
.w14{width:68.352000pt;}
.w9{width:70.400000pt;}
.w6{width:72.512000pt;}
.w1b{width:73.600000pt;}
.w1a{width:73.792000pt;}
.w1c{width:74.560000pt;}
.wc{width:74.880000pt;}
.wb{width:74.912000pt;}
.w19{width:75.840000pt;}
.w5{width:76.640000pt;}
.w8{width:79.072000pt;}
.wf{width:79.520000pt;}
.w12{width:80.512000pt;}
.w11{width:81.440000pt;}
.w13{width:85.600000pt;}
.w4{width:86.432000pt;}
.w2{width:90.912000pt;}
.w15{width:92.160000pt;}
.w16{width:108.960000pt;}
.w7{width:109.600000pt;}
.w17{width:115.552000pt;}
.w18{width:225.786667pt;}
.w10{width:230.106667pt;}
.wa{width:268.506667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:3.040000pt;}
.x15{left:6.912000pt;}
.x52{left:7.840000pt;}
.x2e{left:8.800000pt;}
.x2a{left:10.880000pt;}
.x22{left:11.840000pt;}
.x1e{left:13.600000pt;}
.x3b{left:15.200000pt;}
.x20{left:16.480000pt;}
.x23{left:17.920000pt;}
.x1c{left:19.520000pt;}
.x16{left:20.672000pt;}
.x44{left:21.600000pt;}
.x2c{left:22.720000pt;}
.x1b{left:24.032000pt;}
.x19{left:26.120000pt;}
.x21{left:28.832000pt;}
.x27{left:31.040000pt;}
.x1d{left:33.160000pt;}
.x30{left:34.080000pt;}
.x1f{left:36.520000pt;}
.x47{left:38.880000pt;}
.x2f{left:40.000000pt;}
.x2b{left:44.320000pt;}
.x2d{left:46.560000pt;}
.x4b{left:47.680000pt;}
.x49{left:51.040000pt;}
.x4a{left:54.400000pt;}
.x14{left:77.760000pt;}
.x3f{left:83.834667pt;}
.x3e{left:86.592000pt;}
.x46{left:87.712000pt;}
.x34{left:92.832000pt;}
.x2{left:94.591988pt;}
.x3{left:102.911988pt;}
.x35{left:105.274667pt;}
.x7{left:110.751988pt;}
.xb{left:116.511988pt;}
.x24{left:118.591988pt;}
.x10{left:121.151988pt;}
.x8{left:133.946655pt;}
.x4{left:137.626655pt;}
.x45{left:143.066655pt;}
.xf{left:149.946655pt;}
.x17{left:169.306667pt;}
.x9{left:197.466655pt;}
.x6{left:211.546655pt;}
.x33{left:229.146655pt;}
.x4d{left:233.946655pt;}
.x18{left:236.346667pt;}
.x5{left:238.906655pt;}
.xa{left:279.586655pt;}
.x48{left:313.506667pt;}
.x40{left:317.346667pt;}
.x1a{left:323.426667pt;}
.x36{left:361.986667pt;}
.x4e{left:390.786667pt;}
.x1{left:399.266655pt;}
.x53{left:400.706655pt;}
.x32{left:407.266655pt;}
.x25{left:408.866667pt;}
.xd{left:431.266655pt;}
.x37{left:437.693333pt;}
.x13{left:440.893321pt;}
.x12{left:444.573321pt;}
.x11{left:448.253321pt;}
.xc{left:455.293321pt;}
.x4f{left:465.213333pt;}
.xe{left:479.293321pt;}
.x41{left:480.573333pt;}
.x26{left:482.013333pt;}
.x31{left:503.293321pt;}
.x38{left:513.213333pt;}
.x50{left:539.613333pt;}
.x42{left:566.813333pt;}
.x39{left:579.293333pt;}
.x28{left:592.253333pt;}
.x51{left:614.053333pt;}
.x43{left:635.813333pt;}
.x3a{left:642.373333pt;}
.x29{left:672.133333pt;}
.x4c{left:736.293321pt;}
.x3d{left:747.333321pt;}
}




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