
    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_5f6fbef91934bebd4baf5e42.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_49b168fcfd000114c7b08d03.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3ff6accddd7cd25843ed2836.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_8149848ad4ef73085d85e26f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1aa34adaf89344b07cb079b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b6cf7ec57373f3db5ff293a4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d6913526677237973d892b3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5108a0e8ce9bc58d923ed643.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7fc9d3c85a0928b398b2c68f.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.864000px;}
.lsb{letter-spacing:2.106720px;}
.ls0{letter-spacing:2.880000px;}
.ls8{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.480000px;}
.ls5{letter-spacing:7.200000px;}
.ls1b{letter-spacing:9.360000px;}
.ls11{letter-spacing:11.520000px;}
.lsa{letter-spacing:11.664000px;}
.ls12{letter-spacing:17.424000px;}
.ls1{letter-spacing:23.760000px;}
.ls13{letter-spacing:24.480000px;}
.ls16{letter-spacing:30.384000px;}
.ls17{letter-spacing:38.880000px;}
.ls7{letter-spacing:54.840000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws4{word-spacing:-59.760000px;}
.wsa{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.496000px;}
.ws6{word-spacing:-17.208000px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:0.000000px;}
._23{margin-left:-9.936000px;}
._29{margin-left:-5.222880px;}
._11{margin-left:-2.160000px;}
._1{margin-left:-1.080000px;}
._0{width:1.224000px;}
._12{width:2.232000px;}
._2{width:3.240000px;}
._19{width:5.073120px;}
._d{width:6.276000px;}
._c{width:7.320000px;}
._13{width:8.568000px;}
._f{width:10.056000px;}
._e{width:11.232000px;}
._b{width:12.312000px;}
._a{width:13.608000px;}
._9{width:14.616000px;}
._18{width:16.533120px;}
._1f{width:19.056000px;}
._5{width:20.088000px;}
._6{width:21.156000px;}
._20{width:22.404000px;}
._10{width:23.832000px;}
._4{width:24.900000px;}
._3{width:26.064000px;}
._15{width:27.249120px;}
._17{width:28.800000px;}
._16{width:30.062880px;}
._21{width:31.176000px;}
._1b{width:32.400000px;}
._1a{width:33.585120px;}
._14{width:35.424000px;}
._26{width:37.296000px;}
._22{width:38.556000px;}
._1d{width:39.960000px;}
._1e{width:41.184000px;}
._28{width:42.636000px;}
._27{width:43.704000px;}
._8{width:45.876000px;}
._7{width:47.088000px;}
._24{width:50.328000px;}
._25{width:51.948000px;}
._2b{width:54.684000px;}
._35{width:56.124000px;}
._2a{width:57.384000px;}
._2c{width:59.232000px;}
._2d{width:60.756000px;}
._2f{width:61.946400px;}
._44{width:63.691680px;}
._34{width:65.808000px;}
._45{width:69.230880px;}
._3d{width:70.344000px;}
._46{width:71.901120px;}
._38{width:73.512000px;}
._39{width:74.808000px;}
._3e{width:75.888000px;}
._2e{width:79.272000px;}
._36{width:94.032000px;}
._3c{width:101.448000px;}
._41{width:103.176000px;}
._3b{width:147.384000px;}
._32{width:189.720000px;}
._37{width:230.328000px;}
._3f{width:244.944000px;}
._40{width:303.552000px;}
._42{width:304.560000px;}
._43{width:305.784000px;}
._3a{width:403.056000px;}
._33{width:524.448000px;}
._30{width:1236.024000px;}
._31{width:1255.824000px;}
._1c{width:2159.760000px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc5{color:rgb(32,32,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y40{bottom:4.500000px;}
.y3d{bottom:4.545000px;}
.yc1{bottom:7.020000px;}
.yc8{bottom:7.380000px;}
.yd7{bottom:7.425000px;}
.y3f{bottom:25.200000px;}
.y3c{bottom:25.245000px;}
.yeb{bottom:31.134000px;}
.ydf{bottom:31.140000px;}
.yd6{bottom:31.185000px;}
.yc7{bottom:31.320000px;}
.yde{bottom:54.900000px;}
.yca{bottom:55.074000px;}
.yc6{bottom:55.080000px;}
.yd5{bottom:55.125000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.ydd{bottom:78.660000px;}
.yea{bottom:78.834000px;}
.yc5{bottom:78.840000px;}
.ycd{bottom:78.870000px;}
.yd4{bottom:78.885000px;}
.ye9{bottom:102.594000px;}
.yc4{bottom:102.600000px;}
.ycc{bottom:102.630000px;}
.yd3{bottom:102.645000px;}
.yc9{bottom:104.256000px;}
.yec{bottom:108.396000px;}
.y43{bottom:110.016000px;}
.yb9{bottom:111.456000px;}
.y32{bottom:113.976000px;}
.ye6{bottom:125.856000px;}
.ye8{bottom:126.354000px;}
.ydc{bottom:126.360000px;}
.yd2{bottom:126.405000px;}
.ye4{bottom:126.540000px;}
.yc3{bottom:126.585000px;}
.y98{bottom:131.256000px;}
.y64{bottom:132.156000px;}
.y74{bottom:133.956000px;}
.yb8{bottom:135.216000px;}
.y31{bottom:137.736000px;}
.ydb{bottom:150.120000px;}
.yd1{bottom:150.165000px;}
.ye7{bottom:150.294000px;}
.ye3{bottom:150.300000px;}
.y42{bottom:152.130000px;}
.y97{bottom:155.190000px;}
.y63{bottom:156.090000px;}
.y73{bottom:157.710000px;}
.yb7{bottom:158.970000px;}
.y30{bottom:161.490000px;}
.yda{bottom:173.880000px;}
.ye2{bottom:174.090000px;}
.yd0{bottom:174.105000px;}
.yc2{bottom:176.430000px;}
.y96{bottom:178.950000px;}
.y62{bottom:179.850000px;}
.y72{bottom:181.470000px;}
.yb6{bottom:182.730000px;}
.y2f{bottom:185.430000px;}
.y41{bottom:194.250000px;}
.yd9{bottom:197.820000px;}
.ye1{bottom:197.850000px;}
.ycf{bottom:197.865000px;}
.y95{bottom:202.710000px;}
.y61{bottom:203.610000px;}
.y71{bottom:205.230000px;}
.yb5{bottom:206.670000px;}
.y2e{bottom:209.190000px;}
.y94{bottom:226.110000px;}
.y60{bottom:227.370000px;}
.y70{bottom:229.170000px;}
.yb4{bottom:230.430000px;}
.y2d{bottom:232.590000px;}
.ybb{bottom:232.950000px;}
.y3e{bottom:236.550000px;}
.y93{bottom:250.410000px;}
.y5f{bottom:251.310000px;}
.y6f{bottom:252.930000px;}
.yb3{bottom:254.190000px;}
.y2c{bottom:256.350000px;}
.yba{bottom:256.710000px;}
.y92{bottom:274.170000px;}
.y5e{bottom:275.070000px;}
.y6e{bottom:276.690000px;}
.yb2{bottom:277.950000px;}
.y3b{bottom:278.670000px;}
.y2b{bottom:280.650000px;}
.yed{bottom:282.135000px;}
.ye5{bottom:293.295000px;}
.y91{bottom:297.975000px;}
.y5d{bottom:298.875000px;}
.y6d{bottom:300.495000px;}
.yb1{bottom:301.935000px;}
.y2a{bottom:304.455000px;}
.yc0{bottom:320.115000px;}
.y90{bottom:321.735000px;}
.y5c{bottom:322.635000px;}
.y6c{bottom:324.435000px;}
.yb0{bottom:325.695000px;}
.y29{bottom:328.215000px;}
.y8f{bottom:345.495000px;}
.y5b{bottom:346.575000px;}
.y6b{bottom:349.455000px;}
.ybf{bottom:351.615000px;}
.y28{bottom:351.975000px;}
.y8e{bottom:369.435000px;}
.y5a{bottom:370.335000px;}
.yaf{bottom:373.215000px;}
.y6a{bottom:374.655000px;}
.y27{bottom:375.915000px;}
.y8d{bottom:393.195000px;}
.y59{bottom:394.095000px;}
.yae{bottom:397.155000px;}
.y26{bottom:399.675000px;}
.ye0{bottom:412.995000px;}
.y8c{bottom:416.955000px;}
.y58{bottom:417.855000px;}
.yad{bottom:420.915000px;}
.y25{bottom:423.435000px;}
.y8b{bottom:440.715000px;}
.y57{bottom:441.795000px;}
.yac{bottom:444.675000px;}
.y24{bottom:447.195000px;}
.y8a{bottom:464.655000px;}
.y56{bottom:465.555000px;}
.yab{bottom:468.435000px;}
.y23{bottom:471.135000px;}
.y89{bottom:488.415000px;}
.y55{bottom:489.315000px;}
.yaa{bottom:492.195000px;}
.y22{bottom:494.895000px;}
.y88{bottom:512.175000px;}
.y54{bottom:513.075000px;}
.ya9{bottom:516.135000px;}
.y21{bottom:518.655000px;}
.y87{bottom:535.935000px;}
.y53{bottom:537.015000px;}
.ya8{bottom:539.895000px;}
.ybe{bottom:542.055000px;}
.y20{bottom:542.415000px;}
.y86{bottom:559.875000px;}
.y52{bottom:560.775000px;}
.ya7{bottom:563.655000px;}
.ybd{bottom:566.025000px;}
.y1f{bottom:566.385000px;}
.y85{bottom:583.665000px;}
.y51{bottom:584.565000px;}
.ya6{bottom:587.445000px;}
.ybc{bottom:589.785000px;}
.y1e{bottom:590.145000px;}
.y50{bottom:608.325000px;}
.y84{bottom:608.685000px;}
.ya5{bottom:611.385000px;}
.y1d{bottom:613.905000px;}
.yd8{bottom:628.125000px;}
.y4f{bottom:632.265000px;}
.y83{bottom:633.885000px;}
.ya4{bottom:635.145000px;}
.y69{bottom:637.305000px;}
.y1c{bottom:637.665000px;}
.y4e{bottom:656.025000px;}
.y82{bottom:657.645000px;}
.ya3{bottom:658.905000px;}
.y1b{bottom:661.065000px;}
.y3a{bottom:661.425000px;}
.y4d{bottom:679.785000px;}
.y81{bottom:681.405000px;}
.ya2{bottom:682.665000px;}
.y68{bottom:685.005000px;}
.y1a{bottom:685.365000px;}
.y4c{bottom:703.545000px;}
.y80{bottom:705.165000px;}
.ya1{bottom:706.605000px;}
.y19{bottom:709.125000px;}
.y4b{bottom:727.305000px;}
.y7f{bottom:728.745000px;}
.ya0{bottom:730.365000px;}
.y18{bottom:732.885000px;}
.y4a{bottom:751.245000px;}
.y7e{bottom:752.865000px;}
.y9f{bottom:754.125000px;}
.y39{bottom:756.285000px;}
.y17{bottom:756.645000px;}
.y49{bottom:775.005000px;}
.y7d{bottom:776.625000px;}
.y9e{bottom:777.885000px;}
.y38{bottom:780.225000px;}
.y16{bottom:780.585000px;}
.y48{bottom:798.765000px;}
.y7c{bottom:800.385000px;}
.y9d{bottom:801.825000px;}
.y37{bottom:803.985000px;}
.y15{bottom:804.345000px;}
.y47{bottom:822.525000px;}
.y7b{bottom:824.325000px;}
.y9c{bottom:825.585000px;}
.y14{bottom:828.105000px;}
.yce{bottom:843.045000px;}
.y46{bottom:846.465000px;}
.y7a{bottom:848.130000px;}
.y9b{bottom:849.390000px;}
.y13{bottom:851.910000px;}
.y45{bottom:870.270000px;}
.y79{bottom:871.890000px;}
.y9a{bottom:873.150000px;}
.y12{bottom:875.850000px;}
.y44{bottom:886.650000px;}
.y78{bottom:897.090000px;}
.y11{bottom:899.610000px;}
.y77{bottom:920.850000px;}
.y10{bottom:923.370000px;}
.y99{bottom:944.610000px;}
.y76{bottom:945.870000px;}
.yf{bottom:946.770000px;}
.y67{bottom:947.130000px;}
.y75{bottom:969.810000px;}
.ye{bottom:971.070000px;}
.yd{bottom:994.830000px;}
.yc{bottom:1018.230000px;}
.y36{bottom:1018.590000px;}
.y66{bottom:1041.990000px;}
.yb{bottom:1042.350000px;}
.ycb{bottom:1058.010000px;}
.ya{bottom:1066.290000px;}
.y9{bottom:1089.690000px;}
.y35{bottom:1090.050000px;}
.y8{bottom:1113.450000px;}
.y34{bottom:1113.810000px;}
.y7{bottom:1137.240000px;}
.y65{bottom:1137.600000px;}
.y6{bottom:1161.180000px;}
.y33{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.hf{height:23.760000px;}
.hd{height:41.400000px;}
.hc{height:41.436000px;}
.ha{height:50.273438px;}
.h6{height:50.800781px;}
.h9{height:59.343750px;}
.hb{height:61.423863px;}
.h17{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h11{height:71.460000px;}
.h4{height:72.562500px;}
.he{height:74.004654px;}
.h15{height:118.980000px;}
.h12{height:119.016000px;}
.h10{height:142.956000px;}
.h16{height:166.710000px;}
.h14{height:214.200000px;}
.h13{height:214.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.020000px;}
.w8{width:84.240000px;}
.w7{width:110.520000px;}
.w9{width:137.376000px;}
.w4{width:161.130000px;}
.w6{width:180.030000px;}
.w5{width:193.170000px;}
.wa{width:456.555000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:7.740000px;}
.x2{left:9.180000px;}
.x25{left:10.260000px;}
.x17{left:12.780000px;}
.x19{left:15.120000px;}
.x13{left:17.820000px;}
.x21{left:23.400000px;}
.x16{left:25.740000px;}
.x20{left:27.360000px;}
.x1f{left:33.660000px;}
.x1b{left:36.540000px;}
.x1e{left:39.600000px;}
.x14{left:68.040000px;}
.x22{left:74.160000px;}
.x1d{left:81.000000px;}
.x1c{left:87.480000px;}
.x10{left:127.655987px;}
.x6{left:132.335987px;}
.x24{left:138.636000px;}
.x12{left:154.830000px;}
.x7{left:156.269987px;}
.x3{left:159.689987px;}
.x11{left:170.129987px;}
.xf{left:180.749987px;}
.x23{left:223.409987px;}
.xb{left:235.649987px;}
.xa{left:261.389987px;}
.xd{left:281.189987px;}
.x15{left:316.875000px;}
.x8{left:337.214987px;}
.xe{left:354.314987px;}
.x26{left:361.875000px;}
.xc{left:416.234987px;}
.x9{left:429.914987px;}
.x1{left:439.815000px;}
.x5{left:478.514987px;}
.x18{left:510.765000px;}
.x1a{left:691.530000px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.768000pt;}
.lsb{letter-spacing:1.872640pt;}
.ls0{letter-spacing:2.560000pt;}
.ls8{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls5{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:8.320000pt;}
.ls11{letter-spacing:10.240000pt;}
.lsa{letter-spacing:10.368000pt;}
.ls12{letter-spacing:15.488000pt;}
.ls1{letter-spacing:21.120000pt;}
.ls13{letter-spacing:21.760000pt;}
.ls16{letter-spacing:27.008000pt;}
.ls17{letter-spacing:34.560000pt;}
.ls7{letter-spacing:48.746667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-53.120000pt;}
.wsa{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.552000pt;}
.ws6{word-spacing:-15.296000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:0.000000pt;}
._23{margin-left:-8.832000pt;}
._29{margin-left:-4.642560pt;}
._11{margin-left:-1.920000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.088000pt;}
._12{width:1.984000pt;}
._2{width:2.880000pt;}
._19{width:4.509440pt;}
._d{width:5.578667pt;}
._c{width:6.506667pt;}
._13{width:7.616000pt;}
._f{width:8.938667pt;}
._e{width:9.984000pt;}
._b{width:10.944000pt;}
._a{width:12.096000pt;}
._9{width:12.992000pt;}
._18{width:14.696107pt;}
._1f{width:16.938667pt;}
._5{width:17.856000pt;}
._6{width:18.805333pt;}
._20{width:19.914667pt;}
._10{width:21.184000pt;}
._4{width:22.133333pt;}
._3{width:23.168000pt;}
._15{width:24.221440pt;}
._17{width:25.600000pt;}
._16{width:26.722560pt;}
._21{width:27.712000pt;}
._1b{width:28.800000pt;}
._1a{width:29.853440pt;}
._14{width:31.488000pt;}
._26{width:33.152000pt;}
._22{width:34.272000pt;}
._1d{width:35.520000pt;}
._1e{width:36.608000pt;}
._28{width:37.898667pt;}
._27{width:38.848000pt;}
._8{width:40.778667pt;}
._7{width:41.856000pt;}
._24{width:44.736000pt;}
._25{width:46.176000pt;}
._2b{width:48.608000pt;}
._35{width:49.888000pt;}
._2a{width:51.008000pt;}
._2c{width:52.650667pt;}
._2d{width:54.005333pt;}
._2f{width:55.063467pt;}
._44{width:56.614827pt;}
._34{width:58.496000pt;}
._45{width:61.538560pt;}
._3d{width:62.528000pt;}
._46{width:63.912107pt;}
._38{width:65.344000pt;}
._39{width:66.496000pt;}
._3e{width:67.456000pt;}
._2e{width:70.464000pt;}
._36{width:83.584000pt;}
._3c{width:90.176000pt;}
._41{width:91.712000pt;}
._3b{width:131.008000pt;}
._32{width:168.640000pt;}
._37{width:204.736000pt;}
._3f{width:217.728000pt;}
._40{width:269.824000pt;}
._42{width:270.720000pt;}
._43{width:271.808000pt;}
._3a{width:358.272000pt;}
._33{width:466.176000pt;}
._30{width:1098.688000pt;}
._31{width:1116.288000pt;}
._1c{width:1919.786667pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y40{bottom:4.000000pt;}
.y3d{bottom:4.040000pt;}
.yc1{bottom:6.240000pt;}
.yc8{bottom:6.560000pt;}
.yd7{bottom:6.600000pt;}
.y3f{bottom:22.400000pt;}
.y3c{bottom:22.440000pt;}
.yeb{bottom:27.674667pt;}
.ydf{bottom:27.680000pt;}
.yd6{bottom:27.720000pt;}
.yc7{bottom:27.840000pt;}
.yde{bottom:48.800000pt;}
.yca{bottom:48.954667pt;}
.yc6{bottom:48.960000pt;}
.yd5{bottom:49.000000pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.ydd{bottom:69.920000pt;}
.yea{bottom:70.074667pt;}
.yc5{bottom:70.080000pt;}
.ycd{bottom:70.106667pt;}
.yd4{bottom:70.120000pt;}
.ye9{bottom:91.194667pt;}
.yc4{bottom:91.200000pt;}
.ycc{bottom:91.226667pt;}
.yd3{bottom:91.240000pt;}
.yc9{bottom:92.672000pt;}
.yec{bottom:96.352000pt;}
.y43{bottom:97.792000pt;}
.yb9{bottom:99.072000pt;}
.y32{bottom:101.312000pt;}
.ye6{bottom:111.872000pt;}
.ye8{bottom:112.314667pt;}
.ydc{bottom:112.320000pt;}
.yd2{bottom:112.360000pt;}
.ye4{bottom:112.480000pt;}
.yc3{bottom:112.520000pt;}
.y98{bottom:116.672000pt;}
.y64{bottom:117.472000pt;}
.y74{bottom:119.072000pt;}
.yb8{bottom:120.192000pt;}
.y31{bottom:122.432000pt;}
.ydb{bottom:133.440000pt;}
.yd1{bottom:133.480000pt;}
.ye7{bottom:133.594667pt;}
.ye3{bottom:133.600000pt;}
.y42{bottom:135.226667pt;}
.y97{bottom:137.946667pt;}
.y63{bottom:138.746667pt;}
.y73{bottom:140.186667pt;}
.yb7{bottom:141.306667pt;}
.y30{bottom:143.546667pt;}
.yda{bottom:154.560000pt;}
.ye2{bottom:154.746667pt;}
.yd0{bottom:154.760000pt;}
.yc2{bottom:156.826667pt;}
.y96{bottom:159.066667pt;}
.y62{bottom:159.866667pt;}
.y72{bottom:161.306667pt;}
.yb6{bottom:162.426667pt;}
.y2f{bottom:164.826667pt;}
.y41{bottom:172.666667pt;}
.yd9{bottom:175.840000pt;}
.ye1{bottom:175.866667pt;}
.ycf{bottom:175.880000pt;}
.y95{bottom:180.186667pt;}
.y61{bottom:180.986667pt;}
.y71{bottom:182.426667pt;}
.yb5{bottom:183.706667pt;}
.y2e{bottom:185.946667pt;}
.y94{bottom:200.986667pt;}
.y60{bottom:202.106667pt;}
.y70{bottom:203.706667pt;}
.yb4{bottom:204.826667pt;}
.y2d{bottom:206.746667pt;}
.ybb{bottom:207.066667pt;}
.y3e{bottom:210.266667pt;}
.y93{bottom:222.586667pt;}
.y5f{bottom:223.386667pt;}
.y6f{bottom:224.826667pt;}
.yb3{bottom:225.946667pt;}
.y2c{bottom:227.866667pt;}
.yba{bottom:228.186667pt;}
.y92{bottom:243.706667pt;}
.y5e{bottom:244.506667pt;}
.y6e{bottom:245.946667pt;}
.yb2{bottom:247.066667pt;}
.y3b{bottom:247.706667pt;}
.y2b{bottom:249.466667pt;}
.yed{bottom:250.786667pt;}
.ye5{bottom:260.706667pt;}
.y91{bottom:264.866667pt;}
.y5d{bottom:265.666667pt;}
.y6d{bottom:267.106667pt;}
.yb1{bottom:268.386667pt;}
.y2a{bottom:270.626667pt;}
.yc0{bottom:284.546667pt;}
.y90{bottom:285.986667pt;}
.y5c{bottom:286.786667pt;}
.y6c{bottom:288.386667pt;}
.yb0{bottom:289.506667pt;}
.y29{bottom:291.746667pt;}
.y8f{bottom:307.106667pt;}
.y5b{bottom:308.066667pt;}
.y6b{bottom:310.626667pt;}
.ybf{bottom:312.546667pt;}
.y28{bottom:312.866667pt;}
.y8e{bottom:328.386667pt;}
.y5a{bottom:329.186667pt;}
.yaf{bottom:331.746667pt;}
.y6a{bottom:333.026667pt;}
.y27{bottom:334.146667pt;}
.y8d{bottom:349.506667pt;}
.y59{bottom:350.306667pt;}
.yae{bottom:353.026667pt;}
.y26{bottom:355.266667pt;}
.ye0{bottom:367.106667pt;}
.y8c{bottom:370.626667pt;}
.y58{bottom:371.426667pt;}
.yad{bottom:374.146667pt;}
.y25{bottom:376.386667pt;}
.y8b{bottom:391.746667pt;}
.y57{bottom:392.706667pt;}
.yac{bottom:395.266667pt;}
.y24{bottom:397.506667pt;}
.y8a{bottom:413.026667pt;}
.y56{bottom:413.826667pt;}
.yab{bottom:416.386667pt;}
.y23{bottom:418.786667pt;}
.y89{bottom:434.146667pt;}
.y55{bottom:434.946667pt;}
.yaa{bottom:437.506667pt;}
.y22{bottom:439.906667pt;}
.y88{bottom:455.266667pt;}
.y54{bottom:456.066667pt;}
.ya9{bottom:458.786667pt;}
.y21{bottom:461.026667pt;}
.y87{bottom:476.386667pt;}
.y53{bottom:477.346667pt;}
.ya8{bottom:479.906667pt;}
.ybe{bottom:481.826667pt;}
.y20{bottom:482.146667pt;}
.y86{bottom:497.666667pt;}
.y52{bottom:498.466667pt;}
.ya7{bottom:501.026667pt;}
.ybd{bottom:503.133333pt;}
.y1f{bottom:503.453333pt;}
.y85{bottom:518.813333pt;}
.y51{bottom:519.613333pt;}
.ya6{bottom:522.173333pt;}
.ybc{bottom:524.253333pt;}
.y1e{bottom:524.573333pt;}
.y50{bottom:540.733333pt;}
.y84{bottom:541.053333pt;}
.ya5{bottom:543.453333pt;}
.y1d{bottom:545.693333pt;}
.yd8{bottom:558.333333pt;}
.y4f{bottom:562.013333pt;}
.y83{bottom:563.453333pt;}
.ya4{bottom:564.573333pt;}
.y69{bottom:566.493333pt;}
.y1c{bottom:566.813333pt;}
.y4e{bottom:583.133333pt;}
.y82{bottom:584.573333pt;}
.ya3{bottom:585.693333pt;}
.y1b{bottom:587.613333pt;}
.y3a{bottom:587.933333pt;}
.y4d{bottom:604.253333pt;}
.y81{bottom:605.693333pt;}
.ya2{bottom:606.813333pt;}
.y68{bottom:608.893333pt;}
.y1a{bottom:609.213333pt;}
.y4c{bottom:625.373333pt;}
.y80{bottom:626.813333pt;}
.ya1{bottom:628.093333pt;}
.y19{bottom:630.333333pt;}
.y4b{bottom:646.493333pt;}
.y7f{bottom:647.773333pt;}
.ya0{bottom:649.213333pt;}
.y18{bottom:651.453333pt;}
.y4a{bottom:667.773333pt;}
.y7e{bottom:669.213333pt;}
.y9f{bottom:670.333333pt;}
.y39{bottom:672.253333pt;}
.y17{bottom:672.573333pt;}
.y49{bottom:688.893333pt;}
.y7d{bottom:690.333333pt;}
.y9e{bottom:691.453333pt;}
.y38{bottom:693.533333pt;}
.y16{bottom:693.853333pt;}
.y48{bottom:710.013333pt;}
.y7c{bottom:711.453333pt;}
.y9d{bottom:712.733333pt;}
.y37{bottom:714.653333pt;}
.y15{bottom:714.973333pt;}
.y47{bottom:731.133333pt;}
.y7b{bottom:732.733333pt;}
.y9c{bottom:733.853333pt;}
.y14{bottom:736.093333pt;}
.yce{bottom:749.373333pt;}
.y46{bottom:752.413333pt;}
.y7a{bottom:753.893333pt;}
.y9b{bottom:755.013333pt;}
.y13{bottom:757.253333pt;}
.y45{bottom:773.573333pt;}
.y79{bottom:775.013333pt;}
.y9a{bottom:776.133333pt;}
.y12{bottom:778.533333pt;}
.y44{bottom:788.133333pt;}
.y78{bottom:797.413333pt;}
.y11{bottom:799.653333pt;}
.y77{bottom:818.533333pt;}
.y10{bottom:820.773333pt;}
.y99{bottom:839.653333pt;}
.y76{bottom:840.773333pt;}
.yf{bottom:841.573333pt;}
.y67{bottom:841.893333pt;}
.y75{bottom:862.053333pt;}
.ye{bottom:863.173333pt;}
.yd{bottom:884.293333pt;}
.yc{bottom:905.093333pt;}
.y36{bottom:905.413333pt;}
.y66{bottom:926.213333pt;}
.yb{bottom:926.533333pt;}
.ycb{bottom:940.453333pt;}
.ya{bottom:947.813333pt;}
.y9{bottom:968.613333pt;}
.y35{bottom:968.933333pt;}
.y8{bottom:989.733333pt;}
.y34{bottom:990.053333pt;}
.y7{bottom:1010.880000pt;}
.y65{bottom:1011.200000pt;}
.y6{bottom:1032.160000pt;}
.y33{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.hf{height:21.120000pt;}
.hd{height:36.800000pt;}
.hc{height:36.832000pt;}
.ha{height:44.687500pt;}
.h6{height:45.156250pt;}
.h9{height:52.750000pt;}
.hb{height:54.598989pt;}
.h17{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h11{height:63.520000pt;}
.h4{height:64.500000pt;}
.he{height:65.781915pt;}
.h15{height:105.760000pt;}
.h12{height:105.792000pt;}
.h10{height:127.072000pt;}
.h16{height:148.186667pt;}
.h14{height:190.400000pt;}
.h13{height:190.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.240000pt;}
.w8{width:74.880000pt;}
.w7{width:98.240000pt;}
.w9{width:122.112000pt;}
.w4{width:143.226667pt;}
.w6{width:160.026667pt;}
.w5{width:171.706667pt;}
.wa{width:405.826667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.880000pt;}
.x2{left:8.160000pt;}
.x25{left:9.120000pt;}
.x17{left:11.360000pt;}
.x19{left:13.440000pt;}
.x13{left:15.840000pt;}
.x21{left:20.800000pt;}
.x16{left:22.880000pt;}
.x20{left:24.320000pt;}
.x1f{left:29.920000pt;}
.x1b{left:32.480000pt;}
.x1e{left:35.200000pt;}
.x14{left:60.480000pt;}
.x22{left:65.920000pt;}
.x1d{left:72.000000pt;}
.x1c{left:77.760000pt;}
.x10{left:113.471988pt;}
.x6{left:117.631988pt;}
.x24{left:123.232000pt;}
.x12{left:137.626667pt;}
.x7{left:138.906655pt;}
.x3{left:141.946655pt;}
.x11{left:151.226655pt;}
.xf{left:160.666655pt;}
.x23{left:198.586655pt;}
.xb{left:209.466655pt;}
.xa{left:232.346655pt;}
.xd{left:249.946655pt;}
.x15{left:281.666667pt;}
.x8{left:299.746655pt;}
.xe{left:314.946655pt;}
.x26{left:321.666667pt;}
.xc{left:369.986655pt;}
.x9{left:382.146655pt;}
.x1{left:390.946667pt;}
.x5{left:425.346655pt;}
.x18{left:454.013333pt;}
.x1a{left:614.693333pt;}
.x4{left:737.253322pt;}
}




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