
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_6aebcd7f1dc956ce2d9a1161.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.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_960b3a535a8e22d1abb53fd2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8bea2d3fe79f6ab8b6059f81.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d6c1ae4f3c91049e11719322.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2cd892696fb73a619a5b29cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_37431e0870ba5fa11ea9f73a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_fbea0d25473cd2af1662e2e7.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.274800px;}
.ls7{letter-spacing:-0.206400px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.829440px;}
.ls10{letter-spacing:39.905280px;}
.ls0{letter-spacing:207.416640px;}
.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:-59.760000px;}
.wsd{word-spacing:-28.987200px;}
.ws9{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-14.993280px;}
.ws8{word-spacing:-13.939200px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-2.090880px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._7{width:3.312000px;}
._8{width:4.438080px;}
._4{width:6.292800px;}
._b{width:7.821120px;}
._5{width:8.851200px;}
._a{width:10.066560px;}
._c{width:11.851200px;}
._6{width:13.026240px;}
._3{width:14.506560px;}
._17{width:17.564160px;}
._e{width:18.717120px;}
._15{width:20.431680px;}
._14{width:21.778560px;}
._13{width:23.080320px;}
._21{width:24.508800px;}
._35{width:25.818720px;}
._1f{width:26.974560px;}
._1b{width:28.085760px;}
._36{width:29.489280px;}
._11{width:30.602880px;}
._12{width:32.504640px;}
._25{width:33.938400px;}
._d{width:35.107200px;}
._10{width:36.748800px;}
._f{width:37.756800px;}
._16{width:39.216000px;}
._33{width:40.882560px;}
._22{width:43.056000px;}
._23{width:44.480640px;}
._37{width:45.567360px;}
._38{width:46.661280px;}
._26{width:47.692800px;}
._20{width:48.885120px;}
._1a{width:50.342400px;}
._39{width:51.667200px;}
._3a{width:52.764480px;}
._3c{width:53.994240px;}
._1c{width:55.442880px;}
._1d{width:56.914560px;}
._1e{width:59.284800px;}
._34{width:63.524160px;}
._18{width:66.107520px;}
._19{width:67.152960px;}
._2d{width:70.369920px;}
._2e{width:71.517120px;}
._3d{width:73.092720px;}
._32{width:76.917120px;}
._2f{width:79.223040px;}
._28{width:88.165440px;}
._2a{width:99.412800px;}
._2b{width:100.765440px;}
._3b{width:102.010560px;}
._24{width:132.487920px;}
._31{width:137.712960px;}
._27{width:141.289920px;}
._30{width:154.272960px;}
._29{width:162.221760px;}
._2c{width:188.850240px;}
._2{width:961.680000px;}
.fc8{color:transparent;}
.fc7{color:rgb(51,51,204);}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc9{color:rgb(0,75,131);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y8f{bottom:12.234000px;}
.y8e{bottom:12.240000px;}
.y86{bottom:12.420000px;}
.y85{bottom:12.465000px;}
.y69{bottom:13.500000px;}
.yde{bottom:13.530000px;}
.y68{bottom:13.680000px;}
.y36{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y106{bottom:25.200000px;}
.y83{bottom:25.245000px;}
.y89{bottom:25.380000px;}
.yf2{bottom:25.560000px;}
.yec{bottom:25.740000px;}
.y77{bottom:27.720000px;}
.y95{bottom:27.750000px;}
.ya1{bottom:27.765000px;}
.y73{bottom:27.900000px;}
.ycf{bottom:28.074000px;}
.y66{bottom:28.080000px;}
.ydd{bottom:28.110000px;}
.y98{bottom:28.260000px;}
.y35{bottom:37.080000px;}
.yf5{bottom:38.160000px;}
.y84{bottom:38.205000px;}
.y88{bottom:38.340000px;}
.y81{bottom:38.745000px;}
.y76{bottom:41.940000px;}
.y96{bottom:41.970000px;}
.ya2{bottom:41.985000px;}
.y74{bottom:42.120000px;}
.yab{bottom:42.150000px;}
.y71{bottom:42.300000px;}
.yda{bottom:42.330000px;}
.y93{bottom:42.480000px;}
.y37{bottom:48.420000px;}
.y38{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y34{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.yc5{bottom:56.520000px;}
.ydc{bottom:56.550000px;}
.ye5{bottom:56.700000px;}
.y97{bottom:56.730000px;}
.ya3{bottom:56.745000px;}
.yb4{bottom:57.234000px;}
.yea{bottom:57.414000px;}
.y6c{bottom:57.420000px;}
.y108{bottom:64.980000px;}
.y8b{bottom:65.154000px;}
.yff{bottom:65.370000px;}
.yf7{bottom:65.385000px;}
.y5{bottom:68.976000px;}
.y7b{bottom:70.410000px;}
.yc7{bottom:70.425000px;}
.y79{bottom:70.560000px;}
.yca{bottom:71.280000px;}
.ye8{bottom:71.634000px;}
.y9b{bottom:71.640000px;}
.ycb{bottom:85.500000px;}
.yad{bottom:85.680000px;}
.ye9{bottom:85.854000px;}
.yb3{bottom:94.536000px;}
.ye7{bottom:95.976000px;}
.y63{bottom:96.696000px;}
.yd1{bottom:97.416000px;}
.y30{bottom:97.596000px;}
.yc9{bottom:99.720000px;}
.y111{bottom:99.756000px;}
.yc0{bottom:99.930000px;}
.yb9{bottom:100.080000px;}
.y110{bottom:100.296000px;}
.y91{bottom:103.176000px;}
.yb6{bottom:123.696000px;}
.y62{bottom:125.136000px;}
.y2f{bottom:126.036000px;}
.yce{bottom:126.756000px;}
.y10f{bottom:126.936000px;}
.y5b{bottom:128.196000px;}
.y90{bottom:131.616000px;}
.y8a{bottom:147.456000px;}
.yb5{bottom:152.850000px;}
.y61{bottom:153.570000px;}
.y2e{bottom:154.470000px;}
.yd0{bottom:155.910000px;}
.y5a{bottom:156.630000px;}
.y8d{bottom:174.090000px;}
.y5f{bottom:178.590000px;}
.y10e{bottom:180.210000px;}
.yb2{bottom:182.190000px;}
.y2d{bottom:182.910000px;}
.y59{bottom:185.250000px;}
.ycd{bottom:198.210000px;}
.y8c{bottom:200.550000px;}
.y10d{bottom:206.850000px;}
.y2c{bottom:211.350000px;}
.ye6{bottom:212.070000px;}
.y58{bottom:213.690000px;}
.yc8{bottom:214.230000px;}
.y87{bottom:227.190000px;}
.y10c{bottom:233.490000px;}
.y2b{bottom:239.790000px;}
.yb1{bottom:240.510000px;}
.ye4{bottom:241.230000px;}
.y57{bottom:242.130000px;}
.ycc{bottom:243.570000px;}
.y10a{bottom:260.130000px;}
.y2a{bottom:268.230000px;}
.y56{bottom:270.570000px;}
.y80{bottom:279.750000px;}
.y10b{bottom:286.770000px;}
.y29{bottom:296.850000px;}
.y55{bottom:299.010000px;}
.yc6{bottom:301.170000px;}
.y82{bottom:306.390000px;}
.yb0{bottom:311.430000px;}
.y28{bottom:325.335000px;}
.y54{bottom:327.495000px;}
.y107{bottom:339.915000px;}
.ye3{bottom:341.355000px;}
.y27{bottom:353.775000px;}
.y53{bottom:355.935000px;}
.yaf{bottom:356.655000px;}
.ye0{bottom:357.375000px;}
.y109{bottom:366.555000px;}
.y7f{bottom:372.135000px;}
.y26{bottom:382.215000px;}
.y52{bottom:384.375000px;}
.yae{bottom:385.815000px;}
.ye2{bottom:386.535000px;}
.yc3{bottom:387.435000px;}
.y7e{bottom:388.155000px;}
.y25{bottom:410.655000px;}
.y5e{bottom:412.455000px;}
.y51{bottom:412.815000px;}
.yc4{bottom:416.595000px;}
.y7d{bottom:417.315000px;}
.y105{bottom:419.115000px;}
.y24{bottom:438.735000px;}
.y31{bottom:439.095000px;}
.y50{bottom:441.435000px;}
.yac{bottom:443.595000px;}
.ye1{bottom:444.315000px;}
.y7c{bottom:446.475000px;}
.y4f{bottom:469.875000px;}
.y23{bottom:471.315000px;}
.y103{bottom:471.675000px;}
.yc2{bottom:487.335000px;}
.y104{bottom:498.135000px;}
.y4e{bottom:498.315000px;}
.y22{bottom:499.755000px;}
.ya9{bottom:501.195000px;}
.ydf{bottom:501.915000px;}
.ybf{bottom:503.535000px;}
.y7a{bottom:504.255000px;}
.y112{bottom:526.395000px;}
.y4d{bottom:526.755000px;}
.y21{bottom:528.195000px;}
.yaa{bottom:530.355000px;}
.yc1{bottom:532.695000px;}
.y102{bottom:537.195000px;}
.yfe{bottom:551.415000px;}
.y4c{bottom:555.195000px;}
.y20{bottom:556.635000px;}
.yd9{bottom:559.695000px;}
.y60{bottom:577.725000px;}
.y101{bottom:578.085000px;}
.y4b{bottom:583.665000px;}
.y1f{bottom:585.105000px;}
.ydb{bottom:588.885000px;}
.y78{bottom:590.325000px;}
.ya8{bottom:601.305000px;}
.y100{bottom:604.725000px;}
.y4a{bottom:612.105000px;}
.y1e{bottom:613.725000px;}
.ya5{bottom:617.325000px;}
.yfd{bottom:631.365000px;}
.y49{bottom:640.545000px;}
.y1d{bottom:642.165000px;}
.ya7{bottom:646.485000px;}
.ybe{bottom:648.105000px;}
.yd8{bottom:659.625000px;}
.y48{bottom:668.985000px;}
.y1c{bottom:670.605000px;}
.ya6{bottom:675.825000px;}
.y75{bottom:676.545000px;}
.yfb{bottom:683.925000px;}
.y47{bottom:697.605000px;}
.y1b{bottom:699.045000px;}
.yd7{bottom:704.985000px;}
.ybc{bottom:705.705000px;}
.yfc{bottom:710.385000px;}
.y46{bottom:726.045000px;}
.y1a{bottom:727.485000px;}
.ya4{bottom:733.425000px;}
.y70{bottom:734.145000px;}
.ybd{bottom:734.865000px;}
.yfa{bottom:749.085000px;}
.y45{bottom:754.485000px;}
.y19{bottom:755.925000px;}
.y9f{bottom:762.585000px;}
.y72{bottom:763.305000px;}
.yf6{bottom:763.665000px;}
.y44{bottom:782.925000px;}
.y18{bottom:784.365000px;}
.yf9{bottom:790.305000px;}
.ya0{bottom:791.925000px;}
.ybb{bottom:805.785000px;}
.y43{bottom:811.365000px;}
.yf8{bottom:816.945000px;}
.y17{bottom:818.745000px;}
.yb8{bottom:821.850000px;}
.y6f{bottom:834.630000px;}
.y42{bottom:839.850000px;}
.yf4{bottom:843.630000px;}
.y16{bottom:847.230000px;}
.yd6{bottom:849.570000px;}
.y6b{bottom:850.290000px;}
.yba{bottom:851.010000px;}
.y9e{bottom:862.710000px;}
.y113{bottom:867.930000px;}
.y41{bottom:868.290000px;}
.y15{bottom:869.910000px;}
.y9a{bottom:878.730000px;}
.y6e{bottom:879.450000px;}
.yf1{bottom:896.190000px;}
.y40{bottom:896.730000px;}
.y14{bottom:904.290000px;}
.y9d{bottom:907.890000px;}
.y6d{bottom:908.790000px;}
.yf3{bottom:922.830000px;}
.y3f{bottom:925.170000px;}
.y13{bottom:926.790000px;}
.y9c{bottom:937.230000px;}
.y6a{bottom:937.950000px;}
.yd5{bottom:949.650000px;}
.y3e{bottom:953.430000px;}
.y5d{bottom:953.790000px;}
.y12{bottom:961.170000px;}
.yf0{bottom:961.350000px;}
.yd4{bottom:965.670000px;}
.yb7{bottom:966.390000px;}
.y65{bottom:967.110000px;}
.yef{bottom:975.930000px;}
.y5c{bottom:981.870000px;}
.y3d{bottom:982.230000px;}
.y11{bottom:983.310000px;}
.y99{bottom:994.830000px;}
.y67{bottom:996.270000px;}
.yee{bottom:1002.570000px;}
.y3c{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y92{bottom:1023.990000px;}
.yeb{bottom:1029.210000px;}
.y4{bottom:1032.810000px;}
.y3b{bottom:1039.110000px;}
.yd3{bottom:1052.610000px;}
.y3{bottom:1052.790000px;}
.y94{bottom:1053.330000px;}
.yed{bottom:1055.850000px;}
.y3a{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.yd2{bottom:1081.800000px;}
.y64{bottom:1095.660000px;}
.y39{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1131.660000px;}
.h22{height:25.740000px;}
.h1f{height:25.920000px;}
.h31{height:25.956000px;}
.h13{height:28.440000px;}
.h2d{height:28.476000px;}
.h12{height:28.620000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.h37{height:47.901094px;}
.h1{height:48.045938px;}
.h34{height:51.660000px;}
.h1d{height:51.696000px;}
.h20{height:51.840000px;}
.h33{height:52.380000px;}
.h30{height:52.596000px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h17{height:56.880000px;}
.h24{height:56.916000px;}
.h1a{height:57.060000px;}
.h16{height:57.096000px;}
.h2c{height:57.600000px;}
.h11{height:57.780000px;}
.h2{height:58.621992px;}
.h1c{height:58.651172px;}
.h1e{height:59.038594px;}
.h32{height:60.226875px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h38{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h1b{height:78.336000px;}
.h19{height:85.356000px;}
.h18{height:85.500000px;}
.h27{height:86.040000px;}
.h2f{height:86.076000px;}
.h29{height:86.220000px;}
.h15{height:86.256000px;}
.h23{height:111.043849px;}
.hf{height:111.043854px;}
.h14{height:116.100000px;}
.h36{height:130.860000px;}
.h21{height:131.580000px;}
.h35{height:131.616000px;}
.h25{height:144.540000px;}
.h4{height:167.250000px;}
.h2b{height:172.290000px;}
.h26{height:172.980000px;}
.h2e{height:173.010000px;}
.h28{height:201.420000px;}
.h2a{height:201.450000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.wa3{width:24.120000px;}
.w41{width:24.660000px;}
.w61{width:24.840000px;}
.w57{width:25.020000px;}
.wac{width:25.740000px;}
.w76{width:26.280000px;}
.w90{width:26.856000px;}
.w98{width:29.880000px;}
.w6a{width:30.780000px;}
.we{width:33.120000px;}
.w59{width:34.056000px;}
.w92{width:34.560000px;}
.w21{width:37.800000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wbe{width:40.716000px;}
.w6c{width:41.220000px;}
.w6e{width:41.436000px;}
.w37{width:41.760000px;}
.w2c{width:42.300000px;}
.w94{width:42.336000px;}
.w38{width:42.660000px;}
.w89{width:43.380000px;}
.w11{width:43.740000px;}
.w10{width:43.956000px;}
.w81{width:44.316000px;}
.wa5{width:44.460000px;}
.w2f{width:45.360000px;}
.wb6{width:45.576000px;}
.w62{width:45.936000px;}
.w18{width:46.476000px;}
.w93{width:47.340000px;}
.wad{width:47.376000px;}
.w3a{width:47.916000px;}
.w24{width:48.600000px;}
.w78{width:50.400000px;}
.wa1{width:50.580000px;}
.w2e{width:51.480000px;}
.w6d{width:51.840000px;}
.wa4{width:52.020000px;}
.w22{width:52.200000px;}
.w23{width:52.380000px;}
.w19{width:53.100000px;}
.w17{width:53.280000px;}
.w35{width:53.640000px;}
.w44{width:54.000000px;}
.w4e{width:54.036000px;}
.w4c{width:54.180000px;}
.w2a{width:54.360000px;}
.w80{width:54.900000px;}
.w88{width:54.936000px;}
.w42{width:55.080000px;}
.w82{width:55.260000px;}
.w4a{width:55.440000px;}
.w58{width:55.620000px;}
.w74{width:57.060000px;}
.w91{width:57.420000px;}
.w1a{width:57.960000px;}
.w64{width:58.500000px;}
.w77{width:58.680000px;}
.wb8{width:58.860000px;}
.w99{width:60.120000px;}
.w36{width:60.876000px;}
.waf{width:61.020000px;}
.w7e{width:61.920000px;}
.w39{width:62.280000px;}
.w6b{width:62.316000px;}
.w55{width:62.640000px;}
.w2d{width:63.936000px;}
.w4d{width:64.980000px;}
.w4f{width:65.160000px;}
.wa2{width:66.276000px;}
.w20{width:66.780000px;}
.w69{width:67.176000px;}
.wb5{width:67.860000px;}
.w3b{width:68.580000px;}
.w2b{width:69.696000px;}
.w9b{width:70.560000px;}
.wab{width:70.920000px;}
.w7f{width:71.280000px;}
.w40{width:72.216000px;}
.w8a{width:72.540000px;}
.w43{width:72.900000px;}
.w12{width:72.936000px;}
.wf{width:73.080000px;}
.w6f{width:73.800000px;}
.wb7{width:74.340000px;}
.wc0{width:74.556000px;}
.w1f{width:74.700000px;}
.w75{width:75.060000px;}
.w30{width:75.456000px;}
.w63{width:76.500000px;}
.w9e{width:76.860000px;}
.wae{width:77.220000px;}
.w56{width:78.516000px;}
.wb2{width:78.660000px;}
.w60{width:79.956000px;}
.w3d{width:80.460000px;}
.w85{width:80.496000px;}
.w5d{width:80.640000px;}
.w52{width:81.180000px;}
.wa8{width:81.720000px;}
.wc{width:81.900000px;}
.w4b{width:81.936000px;}
.w8e{width:82.620000px;}
.w79{width:83.736000px;}
.w9a{width:83.916000px;}
.w50{width:84.096000px;}
.w25{width:84.816000px;}
.w8d{width:84.996000px;}
.w71{width:85.680000px;}
.wbf{width:86.760000px;}
.w5b{width:86.976000px;}
.w5a{width:87.120000px;}
.w8b{width:89.316000px;}
.w45{width:90.036000px;}
.w1c{width:90.900000px;}
.w83{width:92.016000px;}
.wd{width:93.600000px;}
.wa6{width:93.636000px;}
.w14{width:93.780000px;}
.w67{width:93.816000px;}
.w28{width:94.500000px;}
.w96{width:94.536000px;}
.w32{width:95.076000px;}
.wb9{width:95.976000px;}
.w65{width:97.596000px;}
.wb0{width:99.576000px;}
.w53{width:99.936000px;}
.w15{width:100.476000px;}
.w33{width:105.660000px;}
.w1d{width:106.200000px;}
.w9{width:106.920000px;}
.w27{width:106.956000px;}
.w7a{width:108.576000px;}
.w16{width:111.960000px;}
.w9c{width:115.056000px;}
.w8f{width:115.596000px;}
.w68{width:115.956000px;}
.w86{width:116.640000px;}
.w34{width:117.216000px;}
.w3e{width:117.360000px;}
.wb{width:117.576000px;}
.w9f{width:117.720000px;}
.wa{width:117.756000px;}
.w7c{width:118.836000px;}
.w47{width:119.880000px;}
.w48{width:119.916000px;}
.wb3{width:120.636000px;}
.wc1{width:121.140000px;}
.w29{width:121.536000px;}
.w5e{width:123.336000px;}
.wa9{width:125.316000px;}
.wbb{width:128.376000px;}
.w1e{width:134.136000px;}
.w72{width:135.216000px;}
.w87{width:143.856000px;}
.w3f{width:144.756000px;}
.w7d{width:147.996000px;}
.w49{width:150.150000px;}
.wa0{width:151.770000px;}
.wb4{width:155.550000px;}
.wc2{width:156.240000px;}
.w5f{width:156.810000px;}
.waa{width:161.310000px;}
.w73{width:174.450000px;}
.w54{width:174.990000px;}
.w97{width:186.510000px;}
.wbc{width:196.590000px;}
.wba{width:229.170000px;}
.wbd{width:252.930000px;}
.w70{width:281.955000px;}
.w46{width:285.015000px;}
.w8{width:286.635000px;}
.wa7{width:307.875000px;}
.w51{width:315.075000px;}
.w5c{width:318.135000px;}
.w7b{width:327.675000px;}
.wb1{width:331.275000px;}
.w1b{width:332.895000px;}
.w3c{width:344.055000px;}
.w9d{width:347.295000px;}
.w84{width:347.835000px;}
.w3{width:361.335000px;}
.w26{width:365.475000px;}
.w31{width:382.035000px;}
.w95{width:387.435000px;}
.w66{width:388.515000px;}
.w8c{width:412.455000px;}
.w13{width:498.885000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:8.280000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.x7f{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x79{left:284.250000px;}
.x7c{left:325.875000px;}
.x54{left:337.035000px;}
.x3a{left:340.095000px;}
.xf{left:341.715000px;}
.x70{left:362.955000px;}
.x58{left:364.035000px;}
.x41{left:370.155000px;}
.x47{left:373.215000px;}
.x14{left:375.555000px;}
.x5a{left:382.755000px;}
.x74{left:386.355000px;}
.x1d{left:387.975000px;}
.x73{left:389.415000px;}
.x3f{left:394.995000px;}
.x33{left:399.135000px;}
.x5f{left:402.915000px;}
.x5d{left:408.315000px;}
.x76{left:411.915000px;}
.x7a{left:413.355000px;}
.x25{left:420.555000px;}
.x55{left:423.435000px;}
.x37{left:424.515000px;}
.x22{left:426.675000px;}
.x62{left:428.475000px;}
.xc{left:429.734986px;}
.x2d{left:437.115000px;}
.x6a{left:442.515000px;}
.x4e{left:443.595000px;}
.x71{left:445.395000px;}
.x10{left:449.355000px;}
.x42{left:452.235000px;}
.x48{left:454.575000px;}
.x3b{left:460.875000px;}
.x2a{left:463.575000px;}
.x75{left:465.915000px;}
.x64{left:467.535000px;}
.x6c{left:473.115000px;}
.x51{left:475.095000px;}
.x1e{left:479.805000px;}
.x60{left:484.305000px;}
.x8{left:486.104986px;}
.x7d{left:488.805000px;}
.x15{left:494.025000px;}
.x67{left:495.105000px;}
.x4c{left:501.405000px;}
.x5e{left:509.145000px;}
.x77{left:512.205000px;}
.x40{left:515.805000px;}
.x5{left:521.025000px;}
.x38{left:524.805000px;}
.x26{left:528.225000px;}
.x23{left:532.905000px;}
.x4f{left:538.305000px;}
.x43{left:552.885000px;}
.x17{left:553.965000px;}
.x56{left:559.365000px;}
.x11{left:567.825000px;}
.x2b{left:571.245000px;}
.x31{left:576.285000px;}
.x49{left:578.625000px;}
.x52{left:580.245000px;}
.x3c{left:581.505000px;}
.x5b{left:583.665000px;}
.x1f{left:586.725000px;}
.x68{left:588.525000px;}
.x1a{left:594.465000px;}
.x34{left:598.425000px;}
.x61{left:601.665000px;}
.x7b{left:610.665000px;}
.x16{left:612.465000px;}
.x27{left:623.445000px;}
.x59{left:625.245000px;}
.x50{left:632.805000px;}
.x24{left:636.045000px;}
.x4d{left:637.845000px;}
.x2e{left:639.285000px;}
.x46{left:640.905000px;}
.x78{left:646.845000px;}
.x18{left:648.465000px;}
.x39{left:653.145000px;}
.x63{left:656.205000px;}
.x2c{left:669.525000px;}
.x53{left:674.970000px;}
.x69{left:679.650000px;}
.x6b{left:683.430000px;}
.x12{left:686.310000px;}
.x32{left:687.930000px;}
.x1b{left:695.850000px;}
.x7e{left:707.370000px;}
.x20{left:721.590000px;}
.x44{left:728.610000px;}
.x3d{left:732.390000px;}
.x72{left:733.470000px;}
.x57{left:734.550000px;}
.x4a{left:736.170000px;}
.x35{left:743.910000px;}
.x28{left:745.710000px;}
.x19{left:749.850000px;}
.x6e{left:750.930000px;}
.x65{left:752.910000px;}
.x6d{left:754.890000px;}
.x2f{left:757.230000px;}
.x13{left:769.110000px;}
.x3e{left:788.550000px;}
.x4b{left:790.530000px;}
.x45{left:791.970000px;}
.x5c{left:795.030000px;}
.x21{left:797.010000px;}
.x36{left:798.270000px;}
.x29{left:800.790000px;}
.x6f{left:802.230000px;}
.x1c{left:803.850000px;}
.x66{left:809.070000px;}
.x30{left:811.590000px;}
.xd{left:864.149986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.244267pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.737280pt;}
.ls10{letter-spacing:35.471360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws0{word-spacing:-53.120000pt;}
.wsd{word-spacing:-25.766400pt;}
.ws9{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.327360pt;}
.ws8{word-spacing:-12.390400pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-1.858560pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._7{width:2.944000pt;}
._8{width:3.944960pt;}
._4{width:5.593600pt;}
._b{width:6.952107pt;}
._5{width:7.867733pt;}
._a{width:8.948053pt;}
._c{width:10.534400pt;}
._6{width:11.578880pt;}
._3{width:12.894720pt;}
._17{width:15.612587pt;}
._e{width:16.637440pt;}
._15{width:18.161493pt;}
._14{width:19.358720pt;}
._13{width:20.515840pt;}
._21{width:21.785600pt;}
._35{width:22.949973pt;}
._1f{width:23.977387pt;}
._1b{width:24.965120pt;}
._36{width:26.212693pt;}
._11{width:27.202560pt;}
._12{width:28.893013pt;}
._25{width:30.167467pt;}
._d{width:31.206400pt;}
._10{width:32.665600pt;}
._f{width:33.561600pt;}
._16{width:34.858667pt;}
._33{width:36.340053pt;}
._22{width:38.272000pt;}
._23{width:39.538347pt;}
._37{width:40.504320pt;}
._38{width:41.476693pt;}
._26{width:42.393600pt;}
._20{width:43.453440pt;}
._1a{width:44.748800pt;}
._39{width:45.926400pt;}
._3a{width:46.901760pt;}
._3c{width:47.994880pt;}
._1c{width:49.282560pt;}
._1d{width:50.590720pt;}
._1e{width:52.697600pt;}
._34{width:56.465920pt;}
._18{width:58.762240pt;}
._19{width:59.691520pt;}
._2d{width:62.551040pt;}
._2e{width:63.570773pt;}
._3d{width:64.971307pt;}
._32{width:68.370773pt;}
._2f{width:70.420480pt;}
._28{width:78.369280pt;}
._2a{width:88.366933pt;}
._2b{width:89.569280pt;}
._3b{width:90.676053pt;}
._24{width:117.767040pt;}
._31{width:122.411520pt;}
._27{width:125.591040pt;}
._30{width:137.131520pt;}
._29{width:144.197120pt;}
._2c{width:167.866880pt;}
._2{width:854.826667pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y8f{bottom:10.874667pt;}
.y8e{bottom:10.880000pt;}
.y86{bottom:11.040000pt;}
.y85{bottom:11.080000pt;}
.y69{bottom:12.000000pt;}
.yde{bottom:12.026667pt;}
.y68{bottom:12.160000pt;}
.y36{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y106{bottom:22.400000pt;}
.y83{bottom:22.440000pt;}
.y89{bottom:22.560000pt;}
.yf2{bottom:22.720000pt;}
.yec{bottom:22.880000pt;}
.y77{bottom:24.640000pt;}
.y95{bottom:24.666667pt;}
.ya1{bottom:24.680000pt;}
.y73{bottom:24.800000pt;}
.ycf{bottom:24.954667pt;}
.y66{bottom:24.960000pt;}
.ydd{bottom:24.986667pt;}
.y98{bottom:25.120000pt;}
.y35{bottom:32.960000pt;}
.yf5{bottom:33.920000pt;}
.y84{bottom:33.960000pt;}
.y88{bottom:34.080000pt;}
.y81{bottom:34.440000pt;}
.y76{bottom:37.280000pt;}
.y96{bottom:37.306667pt;}
.ya2{bottom:37.320000pt;}
.y74{bottom:37.440000pt;}
.yab{bottom:37.466667pt;}
.y71{bottom:37.600000pt;}
.yda{bottom:37.626667pt;}
.y93{bottom:37.760000pt;}
.y37{bottom:43.040000pt;}
.y38{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y34{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.yc5{bottom:50.240000pt;}
.ydc{bottom:50.266667pt;}
.ye5{bottom:50.400000pt;}
.y97{bottom:50.426667pt;}
.ya3{bottom:50.440000pt;}
.yb4{bottom:50.874667pt;}
.yea{bottom:51.034667pt;}
.y6c{bottom:51.040000pt;}
.y108{bottom:57.760000pt;}
.y8b{bottom:57.914667pt;}
.yff{bottom:58.106667pt;}
.yf7{bottom:58.120000pt;}
.y5{bottom:61.312000pt;}
.y7b{bottom:62.586667pt;}
.yc7{bottom:62.600000pt;}
.y79{bottom:62.720000pt;}
.yca{bottom:63.360000pt;}
.ye8{bottom:63.674667pt;}
.y9b{bottom:63.680000pt;}
.ycb{bottom:76.000000pt;}
.yad{bottom:76.160000pt;}
.ye9{bottom:76.314667pt;}
.yb3{bottom:84.032000pt;}
.ye7{bottom:85.312000pt;}
.y63{bottom:85.952000pt;}
.yd1{bottom:86.592000pt;}
.y30{bottom:86.752000pt;}
.yc9{bottom:88.640000pt;}
.y111{bottom:88.672000pt;}
.yc0{bottom:88.826667pt;}
.yb9{bottom:88.960000pt;}
.y110{bottom:89.152000pt;}
.y91{bottom:91.712000pt;}
.yb6{bottom:109.952000pt;}
.y62{bottom:111.232000pt;}
.y2f{bottom:112.032000pt;}
.yce{bottom:112.672000pt;}
.y10f{bottom:112.832000pt;}
.y5b{bottom:113.952000pt;}
.y90{bottom:116.992000pt;}
.y8a{bottom:131.072000pt;}
.yb5{bottom:135.866667pt;}
.y61{bottom:136.506667pt;}
.y2e{bottom:137.306667pt;}
.yd0{bottom:138.586667pt;}
.y5a{bottom:139.226667pt;}
.y8d{bottom:154.746667pt;}
.y5f{bottom:158.746667pt;}
.y10e{bottom:160.186667pt;}
.yb2{bottom:161.946667pt;}
.y2d{bottom:162.586667pt;}
.y59{bottom:164.666667pt;}
.ycd{bottom:176.186667pt;}
.y8c{bottom:178.266667pt;}
.y10d{bottom:183.866667pt;}
.y2c{bottom:187.866667pt;}
.ye6{bottom:188.506667pt;}
.y58{bottom:189.946667pt;}
.yc8{bottom:190.426667pt;}
.y87{bottom:201.946667pt;}
.y10c{bottom:207.546667pt;}
.y2b{bottom:213.146667pt;}
.yb1{bottom:213.786667pt;}
.ye4{bottom:214.426667pt;}
.y57{bottom:215.226667pt;}
.ycc{bottom:216.506667pt;}
.y10a{bottom:231.226667pt;}
.y2a{bottom:238.426667pt;}
.y56{bottom:240.506667pt;}
.y80{bottom:248.666667pt;}
.y10b{bottom:254.906667pt;}
.y29{bottom:263.866667pt;}
.y55{bottom:265.786667pt;}
.yc6{bottom:267.706667pt;}
.y82{bottom:272.346667pt;}
.yb0{bottom:276.826667pt;}
.y28{bottom:289.186667pt;}
.y54{bottom:291.106667pt;}
.y107{bottom:302.146667pt;}
.ye3{bottom:303.426667pt;}
.y27{bottom:314.466667pt;}
.y53{bottom:316.386667pt;}
.yaf{bottom:317.026667pt;}
.ye0{bottom:317.666667pt;}
.y109{bottom:325.826667pt;}
.y7f{bottom:330.786667pt;}
.y26{bottom:339.746667pt;}
.y52{bottom:341.666667pt;}
.yae{bottom:342.946667pt;}
.ye2{bottom:343.586667pt;}
.yc3{bottom:344.386667pt;}
.y7e{bottom:345.026667pt;}
.y25{bottom:365.026667pt;}
.y5e{bottom:366.626667pt;}
.y51{bottom:366.946667pt;}
.yc4{bottom:370.306667pt;}
.y7d{bottom:370.946667pt;}
.y105{bottom:372.546667pt;}
.y24{bottom:389.986667pt;}
.y31{bottom:390.306667pt;}
.y50{bottom:392.386667pt;}
.yac{bottom:394.306667pt;}
.ye1{bottom:394.946667pt;}
.y7c{bottom:396.866667pt;}
.y4f{bottom:417.666667pt;}
.y23{bottom:418.946667pt;}
.y103{bottom:419.266667pt;}
.yc2{bottom:433.186667pt;}
.y104{bottom:442.786667pt;}
.y4e{bottom:442.946667pt;}
.y22{bottom:444.226667pt;}
.ya9{bottom:445.506667pt;}
.ydf{bottom:446.146667pt;}
.ybf{bottom:447.586667pt;}
.y7a{bottom:448.226667pt;}
.y112{bottom:467.906667pt;}
.y4d{bottom:468.226667pt;}
.y21{bottom:469.506667pt;}
.yaa{bottom:471.426667pt;}
.yc1{bottom:473.506667pt;}
.y102{bottom:477.506667pt;}
.yfe{bottom:490.146667pt;}
.y4c{bottom:493.506667pt;}
.y20{bottom:494.786667pt;}
.yd9{bottom:497.506667pt;}
.y60{bottom:513.533333pt;}
.y101{bottom:513.853333pt;}
.y4b{bottom:518.813333pt;}
.y1f{bottom:520.093333pt;}
.ydb{bottom:523.453333pt;}
.y78{bottom:524.733333pt;}
.ya8{bottom:534.493333pt;}
.y100{bottom:537.533333pt;}
.y4a{bottom:544.093333pt;}
.y1e{bottom:545.533333pt;}
.ya5{bottom:548.733333pt;}
.yfd{bottom:561.213333pt;}
.y49{bottom:569.373333pt;}
.y1d{bottom:570.813333pt;}
.ya7{bottom:574.653333pt;}
.ybe{bottom:576.093333pt;}
.yd8{bottom:586.333333pt;}
.y48{bottom:594.653333pt;}
.y1c{bottom:596.093333pt;}
.ya6{bottom:600.733333pt;}
.y75{bottom:601.373333pt;}
.yfb{bottom:607.933333pt;}
.y47{bottom:620.093333pt;}
.y1b{bottom:621.373333pt;}
.yd7{bottom:626.653333pt;}
.ybc{bottom:627.293333pt;}
.yfc{bottom:631.453333pt;}
.y46{bottom:645.373333pt;}
.y1a{bottom:646.653333pt;}
.ya4{bottom:651.933333pt;}
.y70{bottom:652.573333pt;}
.ybd{bottom:653.213333pt;}
.yfa{bottom:665.853333pt;}
.y45{bottom:670.653333pt;}
.y19{bottom:671.933333pt;}
.y9f{bottom:677.853333pt;}
.y72{bottom:678.493333pt;}
.yf6{bottom:678.813333pt;}
.y44{bottom:695.933333pt;}
.y18{bottom:697.213333pt;}
.yf9{bottom:702.493333pt;}
.ya0{bottom:703.933333pt;}
.ybb{bottom:716.253333pt;}
.y43{bottom:721.213333pt;}
.yf8{bottom:726.173333pt;}
.y17{bottom:727.773333pt;}
.yb8{bottom:730.533333pt;}
.y6f{bottom:741.893333pt;}
.y42{bottom:746.533333pt;}
.yf4{bottom:749.893333pt;}
.y16{bottom:753.093333pt;}
.yd6{bottom:755.173333pt;}
.y6b{bottom:755.813333pt;}
.yba{bottom:756.453333pt;}
.y9e{bottom:766.853333pt;}
.y113{bottom:771.493333pt;}
.y41{bottom:771.813333pt;}
.y15{bottom:773.253333pt;}
.y9a{bottom:781.093333pt;}
.y6e{bottom:781.733333pt;}
.yf1{bottom:796.613333pt;}
.y40{bottom:797.093333pt;}
.y14{bottom:803.813333pt;}
.y9d{bottom:807.013333pt;}
.y6d{bottom:807.813333pt;}
.yf3{bottom:820.293333pt;}
.y3f{bottom:822.373333pt;}
.y13{bottom:823.813333pt;}
.y9c{bottom:833.093333pt;}
.y6a{bottom:833.733333pt;}
.yd5{bottom:844.133333pt;}
.y3e{bottom:847.493333pt;}
.y5d{bottom:847.813333pt;}
.y12{bottom:854.373333pt;}
.yf0{bottom:854.533333pt;}
.yd4{bottom:858.373333pt;}
.yb7{bottom:859.013333pt;}
.y65{bottom:859.653333pt;}
.yef{bottom:867.493333pt;}
.y5c{bottom:872.773333pt;}
.y3d{bottom:873.093333pt;}
.y11{bottom:874.053333pt;}
.y99{bottom:884.293333pt;}
.y67{bottom:885.573333pt;}
.yee{bottom:891.173333pt;}
.y3c{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y92{bottom:910.213333pt;}
.yeb{bottom:914.853333pt;}
.y4{bottom:918.053333pt;}
.y3b{bottom:923.653333pt;}
.yd3{bottom:935.653333pt;}
.y3{bottom:935.813333pt;}
.y94{bottom:936.293333pt;}
.yed{bottom:938.533333pt;}
.y3a{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.yd2{bottom:961.600000pt;}
.y64{bottom:973.920000pt;}
.y39{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1005.920000pt;}
.h22{height:22.880000pt;}
.h1f{height:23.040000pt;}
.h31{height:23.072000pt;}
.h13{height:25.280000pt;}
.h2d{height:25.312000pt;}
.h12{height:25.440000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h37{height:42.578750pt;}
.h1{height:42.707500pt;}
.h34{height:45.920000pt;}
.h1d{height:45.952000pt;}
.h20{height:46.080000pt;}
.h33{height:46.560000pt;}
.h30{height:46.752000pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h17{height:50.560000pt;}
.h24{height:50.592000pt;}
.h1a{height:50.720000pt;}
.h16{height:50.752000pt;}
.h2c{height:51.200000pt;}
.h11{height:51.360000pt;}
.h2{height:52.108438pt;}
.h1c{height:52.134375pt;}
.h1e{height:52.478750pt;}
.h32{height:53.535000pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h38{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h1b{height:69.632000pt;}
.h19{height:75.872000pt;}
.h18{height:76.000000pt;}
.h27{height:76.480000pt;}
.h2f{height:76.512000pt;}
.h29{height:76.640000pt;}
.h15{height:76.672000pt;}
.h23{height:98.705643pt;}
.hf{height:98.705648pt;}
.h14{height:103.200000pt;}
.h36{height:116.320000pt;}
.h21{height:116.960000pt;}
.h35{height:116.992000pt;}
.h25{height:128.480000pt;}
.h4{height:148.666667pt;}
.h2b{height:153.146667pt;}
.h26{height:153.760000pt;}
.h2e{height:153.786667pt;}
.h28{height:179.040000pt;}
.h2a{height:179.066667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.wa3{width:21.440000pt;}
.w41{width:21.920000pt;}
.w61{width:22.080000pt;}
.w57{width:22.240000pt;}
.wac{width:22.880000pt;}
.w76{width:23.360000pt;}
.w90{width:23.872000pt;}
.w98{width:26.560000pt;}
.w6a{width:27.360000pt;}
.we{width:29.440000pt;}
.w59{width:30.272000pt;}
.w92{width:30.720000pt;}
.w21{width:33.600000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wbe{width:36.192000pt;}
.w6c{width:36.640000pt;}
.w6e{width:36.832000pt;}
.w37{width:37.120000pt;}
.w2c{width:37.600000pt;}
.w94{width:37.632000pt;}
.w38{width:37.920000pt;}
.w89{width:38.560000pt;}
.w11{width:38.880000pt;}
.w10{width:39.072000pt;}
.w81{width:39.392000pt;}
.wa5{width:39.520000pt;}
.w2f{width:40.320000pt;}
.wb6{width:40.512000pt;}
.w62{width:40.832000pt;}
.w18{width:41.312000pt;}
.w93{width:42.080000pt;}
.wad{width:42.112000pt;}
.w3a{width:42.592000pt;}
.w24{width:43.200000pt;}
.w78{width:44.800000pt;}
.wa1{width:44.960000pt;}
.w2e{width:45.760000pt;}
.w6d{width:46.080000pt;}
.wa4{width:46.240000pt;}
.w22{width:46.400000pt;}
.w23{width:46.560000pt;}
.w19{width:47.200000pt;}
.w17{width:47.360000pt;}
.w35{width:47.680000pt;}
.w44{width:48.000000pt;}
.w4e{width:48.032000pt;}
.w4c{width:48.160000pt;}
.w2a{width:48.320000pt;}
.w80{width:48.800000pt;}
.w88{width:48.832000pt;}
.w42{width:48.960000pt;}
.w82{width:49.120000pt;}
.w4a{width:49.280000pt;}
.w58{width:49.440000pt;}
.w74{width:50.720000pt;}
.w91{width:51.040000pt;}
.w1a{width:51.520000pt;}
.w64{width:52.000000pt;}
.w77{width:52.160000pt;}
.wb8{width:52.320000pt;}
.w99{width:53.440000pt;}
.w36{width:54.112000pt;}
.waf{width:54.240000pt;}
.w7e{width:55.040000pt;}
.w39{width:55.360000pt;}
.w6b{width:55.392000pt;}
.w55{width:55.680000pt;}
.w2d{width:56.832000pt;}
.w4d{width:57.760000pt;}
.w4f{width:57.920000pt;}
.wa2{width:58.912000pt;}
.w20{width:59.360000pt;}
.w69{width:59.712000pt;}
.wb5{width:60.320000pt;}
.w3b{width:60.960000pt;}
.w2b{width:61.952000pt;}
.w9b{width:62.720000pt;}
.wab{width:63.040000pt;}
.w7f{width:63.360000pt;}
.w40{width:64.192000pt;}
.w8a{width:64.480000pt;}
.w43{width:64.800000pt;}
.w12{width:64.832000pt;}
.wf{width:64.960000pt;}
.w6f{width:65.600000pt;}
.wb7{width:66.080000pt;}
.wc0{width:66.272000pt;}
.w1f{width:66.400000pt;}
.w75{width:66.720000pt;}
.w30{width:67.072000pt;}
.w63{width:68.000000pt;}
.w9e{width:68.320000pt;}
.wae{width:68.640000pt;}
.w56{width:69.792000pt;}
.wb2{width:69.920000pt;}
.w60{width:71.072000pt;}
.w3d{width:71.520000pt;}
.w85{width:71.552000pt;}
.w5d{width:71.680000pt;}
.w52{width:72.160000pt;}
.wa8{width:72.640000pt;}
.wc{width:72.800000pt;}
.w4b{width:72.832000pt;}
.w8e{width:73.440000pt;}
.w79{width:74.432000pt;}
.w9a{width:74.592000pt;}
.w50{width:74.752000pt;}
.w25{width:75.392000pt;}
.w8d{width:75.552000pt;}
.w71{width:76.160000pt;}
.wbf{width:77.120000pt;}
.w5b{width:77.312000pt;}
.w5a{width:77.440000pt;}
.w8b{width:79.392000pt;}
.w45{width:80.032000pt;}
.w1c{width:80.800000pt;}
.w83{width:81.792000pt;}
.wd{width:83.200000pt;}
.wa6{width:83.232000pt;}
.w14{width:83.360000pt;}
.w67{width:83.392000pt;}
.w28{width:84.000000pt;}
.w96{width:84.032000pt;}
.w32{width:84.512000pt;}
.wb9{width:85.312000pt;}
.w65{width:86.752000pt;}
.wb0{width:88.512000pt;}
.w53{width:88.832000pt;}
.w15{width:89.312000pt;}
.w33{width:93.920000pt;}
.w1d{width:94.400000pt;}
.w9{width:95.040000pt;}
.w27{width:95.072000pt;}
.w7a{width:96.512000pt;}
.w16{width:99.520000pt;}
.w9c{width:102.272000pt;}
.w8f{width:102.752000pt;}
.w68{width:103.072000pt;}
.w86{width:103.680000pt;}
.w34{width:104.192000pt;}
.w3e{width:104.320000pt;}
.wb{width:104.512000pt;}
.w9f{width:104.640000pt;}
.wa{width:104.672000pt;}
.w7c{width:105.632000pt;}
.w47{width:106.560000pt;}
.w48{width:106.592000pt;}
.wb3{width:107.232000pt;}
.wc1{width:107.680000pt;}
.w29{width:108.032000pt;}
.w5e{width:109.632000pt;}
.wa9{width:111.392000pt;}
.wbb{width:114.112000pt;}
.w1e{width:119.232000pt;}
.w72{width:120.192000pt;}
.w87{width:127.872000pt;}
.w3f{width:128.672000pt;}
.w7d{width:131.552000pt;}
.w49{width:133.466667pt;}
.wa0{width:134.906667pt;}
.wb4{width:138.266667pt;}
.wc2{width:138.880000pt;}
.w5f{width:139.386667pt;}
.waa{width:143.386667pt;}
.w73{width:155.066667pt;}
.w54{width:155.546667pt;}
.w97{width:165.786667pt;}
.wbc{width:174.746667pt;}
.wba{width:203.706667pt;}
.wbd{width:224.826667pt;}
.w70{width:250.626667pt;}
.w46{width:253.346667pt;}
.w8{width:254.786667pt;}
.wa7{width:273.666667pt;}
.w51{width:280.066667pt;}
.w5c{width:282.786667pt;}
.w7b{width:291.266667pt;}
.wb1{width:294.466667pt;}
.w1b{width:295.906667pt;}
.w3c{width:305.826667pt;}
.w9d{width:308.706667pt;}
.w84{width:309.186667pt;}
.w3{width:321.186667pt;}
.w26{width:324.866667pt;}
.w31{width:339.586667pt;}
.w95{width:344.386667pt;}
.w66{width:345.346667pt;}
.w8c{width:366.626667pt;}
.w13{width:443.453333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.360000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.x7f{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x79{left:252.666667pt;}
.x7c{left:289.666667pt;}
.x54{left:299.586667pt;}
.x3a{left:302.306667pt;}
.xf{left:303.746667pt;}
.x70{left:322.626667pt;}
.x58{left:323.586667pt;}
.x41{left:329.026667pt;}
.x47{left:331.746667pt;}
.x14{left:333.826667pt;}
.x5a{left:340.226667pt;}
.x74{left:343.426667pt;}
.x1d{left:344.866667pt;}
.x73{left:346.146667pt;}
.x3f{left:351.106667pt;}
.x33{left:354.786667pt;}
.x5f{left:358.146667pt;}
.x5d{left:362.946667pt;}
.x76{left:366.146667pt;}
.x7a{left:367.426667pt;}
.x25{left:373.826667pt;}
.x55{left:376.386667pt;}
.x37{left:377.346667pt;}
.x22{left:379.266667pt;}
.x62{left:380.866667pt;}
.xc{left:381.986655pt;}
.x2d{left:388.546667pt;}
.x6a{left:393.346667pt;}
.x4e{left:394.306667pt;}
.x71{left:395.906667pt;}
.x10{left:399.426667pt;}
.x42{left:401.986667pt;}
.x48{left:404.066667pt;}
.x3b{left:409.666667pt;}
.x2a{left:412.066667pt;}
.x75{left:414.146667pt;}
.x64{left:415.586667pt;}
.x6c{left:420.546667pt;}
.x51{left:422.306667pt;}
.x1e{left:426.493333pt;}
.x60{left:430.493333pt;}
.x8{left:432.093321pt;}
.x7d{left:434.493333pt;}
.x15{left:439.133333pt;}
.x67{left:440.093333pt;}
.x4c{left:445.693333pt;}
.x5e{left:452.573333pt;}
.x77{left:455.293333pt;}
.x40{left:458.493333pt;}
.x5{left:463.133333pt;}
.x38{left:466.493333pt;}
.x26{left:469.533333pt;}
.x23{left:473.693333pt;}
.x4f{left:478.493333pt;}
.x43{left:491.453333pt;}
.x17{left:492.413333pt;}
.x56{left:497.213333pt;}
.x11{left:504.733333pt;}
.x2b{left:507.773333pt;}
.x31{left:512.253333pt;}
.x49{left:514.333333pt;}
.x52{left:515.773333pt;}
.x3c{left:516.893333pt;}
.x5b{left:518.813333pt;}
.x1f{left:521.533333pt;}
.x68{left:523.133333pt;}
.x1a{left:528.413333pt;}
.x34{left:531.933333pt;}
.x61{left:534.813333pt;}
.x7b{left:542.813333pt;}
.x16{left:544.413333pt;}
.x27{left:554.173333pt;}
.x59{left:555.773333pt;}
.x50{left:562.493333pt;}
.x24{left:565.373333pt;}
.x4d{left:566.973333pt;}
.x2e{left:568.253333pt;}
.x46{left:569.693333pt;}
.x78{left:574.973333pt;}
.x18{left:576.413333pt;}
.x39{left:580.573333pt;}
.x63{left:583.293333pt;}
.x2c{left:595.133333pt;}
.x53{left:599.973333pt;}
.x69{left:604.133333pt;}
.x6b{left:607.493333pt;}
.x12{left:610.053333pt;}
.x32{left:611.493333pt;}
.x1b{left:618.533333pt;}
.x7e{left:628.773333pt;}
.x20{left:641.413333pt;}
.x44{left:647.653333pt;}
.x3d{left:651.013333pt;}
.x72{left:651.973333pt;}
.x57{left:652.933333pt;}
.x4a{left:654.373333pt;}
.x35{left:661.253333pt;}
.x28{left:662.853333pt;}
.x19{left:666.533333pt;}
.x6e{left:667.493333pt;}
.x65{left:669.253333pt;}
.x6d{left:671.013333pt;}
.x2f{left:673.093333pt;}
.x13{left:683.653333pt;}
.x3e{left:700.933333pt;}
.x4b{left:702.693333pt;}
.x45{left:703.973333pt;}
.x5c{left:706.693333pt;}
.x21{left:708.453333pt;}
.x36{left:709.573333pt;}
.x29{left:711.813333pt;}
.x6f{left:713.093333pt;}
.x1c{left:714.533333pt;}
.x66{left:719.173333pt;}
.x30{left:721.413333pt;}
.xd{left:768.133321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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