
    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_4a34c4ccc4dae328ba66e08e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e9b5a4aef8501b1575e113a3.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_c63a9c40bf70beaf6e3e7b41.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4fdd036eb33995d9a6321385.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_5e93dadb7cb810ef365d54c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_6e8fc99abd3b5d7425c237b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7bcd1d6c0984d46daaaf939f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7aef9d19ab562376741acada.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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.109200px;}
.ls4{letter-spacing:-0.025920px;}
.ls3{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.lse{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.648000px;}
.ls13{letter-spacing:0.720000px;}
.ls7{letter-spacing:33.960000px;}
.ls5{letter-spacing:117.360000px;}
.ls1{letter-spacing:845.765280px;}
.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:-19.440000px;}
.ws9{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.305520px;}
.ws3{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-2.220000px;}
._1{margin-left:-1.095120px;}
._0{width:1.068000px;}
._2{width:2.196000px;}
.fc2{color:transparent;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:3.960000px;}
.yd0{bottom:4.005000px;}
.y8b{bottom:7.020000px;}
.ye4{bottom:16.194000px;}
.y4e{bottom:16.200000px;}
.yf6{bottom:16.230000px;}
.y108{bottom:16.245000px;}
.y48{bottom:16.380000px;}
.yed{bottom:16.425000px;}
.y8d{bottom:18.900000px;}
.y76{bottom:19.260000px;}
.y4a{bottom:22.140000px;}
.y8e{bottom:22.320000px;}
.yb2{bottom:24.480000px;}
.y43{bottom:24.660000px;}
.y8a{bottom:30.780000px;}
.y75{bottom:36.000000px;}
.y49{bottom:42.840000px;}
.y5f{bottom:43.020000px;}
.y5b{bottom:45.360000px;}
.y89{bottom:54.540000px;}
.y4c{bottom:64.260000px;}
.y103{bottom:70.740000px;}
.ye8{bottom:91.440000px;}
.y46{bottom:92.340000px;}
.y5d{bottom:92.520000px;}
.ye7{bottom:112.140000px;}
.y61{bottom:113.805000px;}
.ya3{bottom:116.136000px;}
.yf2{bottom:118.830000px;}
.yfc{bottom:118.845000px;}
.ya5{bottom:119.016000px;}
.y28{bottom:124.416000px;}
.y101{bottom:125.856000px;}
.y72{bottom:132.336000px;}
.ydd{bottom:138.276000px;}
.yf1{bottom:139.530000px;}
.yfb{bottom:139.545000px;}
.yd5{bottom:140.436000px;}
.y9d{bottom:146.376000px;}
.y41{bottom:152.310000px;}
.ya2{bottom:157.530000px;}
.y10c{bottom:158.250000px;}
.yf0{bottom:160.230000px;}
.yfa{bottom:160.245000px;}
.y59{bottom:161.130000px;}
.y87{bottom:163.110000px;}
.yd4{bottom:166.170000px;}
.y10d{bottom:166.350000px;}
.ybe{bottom:167.070000px;}
.y71{bottom:173.730000px;}
.y100{bottom:173.910000px;}
.yb0{bottom:182.730000px;}
.y27{bottom:183.810000px;}
.ye3{bottom:186.150000px;}
.ydf{bottom:187.599000px;}
.y9c{bottom:187.770000px;}
.y40{bottom:193.710000px;}
.ya1{bottom:198.930000px;}
.yd3{bottom:201.810000px;}
.y58{bottom:202.530000px;}
.y86{bottom:204.510000px;}
.yde{bottom:208.299000px;}
.yaf{bottom:208.470000px;}
.y70{bottom:215.130000px;}
.yff{bottom:221.790000px;}
.y13{bottom:226.830000px;}
.y9b{bottom:229.170000px;}
.ye2{bottom:234.210000px;}
.y3f{bottom:235.110000px;}
.yd2{bottom:237.450000px;}
.ya0{bottom:240.330000px;}
.y26{bottom:243.210000px;}
.y57{bottom:243.930000px;}
.yae{bottom:244.110000px;}
.y85{bottom:245.910000px;}
.y39{bottom:248.610000px;}
.ybd{bottom:249.870000px;}
.y6f{bottom:256.530000px;}
.yf9{bottom:269.850000px;}
.y9a{bottom:270.570000px;}
.y12{bottom:271.650000px;}
.yd1{bottom:273.270000px;}
.y3e{bottom:276.510000px;}
.yad{bottom:279.750000px;}
.y9f{bottom:281.730000px;}
.ye1{bottom:282.270000px;}
.y56{bottom:285.330000px;}
.y84{bottom:287.310000px;}
.ybc{bottom:291.270000px;}
.y6e{bottom:297.930000px;}
.y25{bottom:302.610000px;}
.y9e{bottom:307.470000px;}
.y38{bottom:308.010000px;}
.ycf{bottom:308.910000px;}
.y99{bottom:312.015000px;}
.yac{bottom:315.615000px;}
.y11{bottom:316.515000px;}
.y3d{bottom:317.955000px;}
.y55{bottom:326.775000px;}
.y83{bottom:328.755000px;}
.ye0{bottom:330.195000px;}
.ybb{bottom:332.715000px;}
.y6d{bottom:339.375000px;}
.yce{bottom:346.215000px;}
.yab{bottom:351.255000px;}
.y98{bottom:353.415000px;}
.y3c{bottom:359.355000px;}
.y24{bottom:362.055000px;}
.y10{bottom:363.495000px;}
.yfe{bottom:365.835000px;}
.y37{bottom:367.455000px;}
.y54{bottom:368.175000px;}
.y82{bottom:370.155000px;}
.yba{bottom:374.115000px;}
.ydc{bottom:379.695000px;}
.y6c{bottom:380.775000px;}
.ycd{bottom:383.295000px;}
.yaa{bottom:386.895000px;}
.y97{bottom:394.815000px;}
.y3b{bottom:400.755000px;}
.y53{bottom:409.575000px;}
.y81{bottom:411.555000px;}
.yf{bottom:411.735000px;}
.yfd{bottom:413.895000px;}
.yb9{bottom:415.515000px;}
.ydb{bottom:416.955000px;}
.y6b{bottom:422.175000px;}
.ya9{bottom:422.715000px;}
.y23{bottom:424.155000px;}
.y36{bottom:426.855000px;}
.y96{bottom:436.215000px;}
.y3a{bottom:442.155000px;}
.y52{bottom:450.975000px;}
.y80{bottom:452.955000px;}
.yb8{bottom:456.915000px;}
.ya8{bottom:459.795000px;}
.ye{bottom:459.975000px;}
.yf8{bottom:461.955000px;}
.y6a{bottom:463.575000px;}
.y95{bottom:477.615000px;}
.yb7{bottom:482.655000px;}
.y22{bottom:483.555000px;}
.y35{bottom:488.955000px;}
.yda{bottom:490.575000px;}
.y51{bottom:492.375000px;}
.y7f{bottom:494.355000px;}
.ya7{bottom:497.055000px;}
.ycc{bottom:498.315000px;}
.y69{bottom:504.975000px;}
.yd{bottom:508.395000px;}
.yf7{bottom:509.835000px;}
.yb6{bottom:518.295000px;}
.y94{bottom:519.015000px;}
.y21{bottom:524.955000px;}
.yd9{bottom:531.975000px;}
.y50{bottom:533.775000px;}
.ya6{bottom:534.315000px;}
.y7e{bottom:535.755000px;}
.ycb{bottom:539.715000px;}
.y68{bottom:546.375000px;}
.y34{bottom:548.355000px;}
.yb5{bottom:554.115000px;}
.yc{bottom:556.635000px;}
.yef{bottom:557.895000px;}
.y93{bottom:560.445000px;}
.y7d{bottom:561.525000px;}
.y20{bottom:566.385000px;}
.yd8{bottom:573.405000px;}
.y4f{bottom:575.205000px;}
.yca{bottom:581.145000px;}
.y67{bottom:587.805000px;}
.y33{bottom:589.785000px;}
.y4b{bottom:600.945000px;}
.y92{bottom:601.845000px;}
.yb{bottom:604.905000px;}
.yf5{bottom:605.985000px;}
.y1f{bottom:607.785000px;}
.yd7{bottom:612.285000px;}
.y7c{bottom:617.865000px;}
.yc9{bottom:622.545000px;}
.yb4{bottom:625.425000px;}
.y66{bottom:629.205000px;}
.y32{bottom:631.185000px;}
.y91{bottom:643.245000px;}
.y4d{bottom:649.005000px;}
.y1e{bottom:649.185000px;}
.yd6{bottom:650.265000px;}
.ya{bottom:653.325000px;}
.yf4{bottom:653.865000px;}
.yb3{bottom:662.685000px;}
.yc8{bottom:663.945000px;}
.y65{bottom:670.605000px;}
.y31{bottom:672.585000px;}
.y7b{bottom:674.385000px;}
.y10b{bottom:684.285000px;}
.y90{bottom:684.645000px;}
.y1d{bottom:690.585000px;}
.y45{bottom:698.505000px;}
.yb1{bottom:699.945000px;}
.y9{bottom:701.565000px;}
.yf3{bottom:701.925000px;}
.yc7{bottom:705.345000px;}
.y64{bottom:712.005000px;}
.y30{bottom:713.985000px;}
.ya4{bottom:720.465000px;}
.y10a{bottom:725.685000px;}
.y8f{bottom:726.045000px;}
.y7a{bottom:730.725000px;}
.y1c{bottom:731.985000px;}
.y60{bottom:737.745000px;}
.yc6{bottom:746.745000px;}
.y8{bottom:749.805000px;}
.yee{bottom:749.985000px;}
.y109{bottom:751.425000px;}
.y8c{bottom:751.785000px;}
.y2f{bottom:755.385000px;}
.y1b{bottom:773.385000px;}
.y47{bottom:774.465000px;}
.y63{bottom:785.625000px;}
.y79{bottom:787.065000px;}
.yc5{bottom:788.145000px;}
.y2e{bottom:796.785000px;}
.yec{bottom:797.865000px;}
.y107{bottom:799.485000px;}
.y7{bottom:806.145000px;}
.yc4{bottom:813.930000px;}
.y1a{bottom:814.830000px;}
.y78{bottom:822.930000px;}
.y42{bottom:824.010000px;}
.y62{bottom:835.170000px;}
.y2d{bottom:838.230000px;}
.yeb{bottom:845.970000px;}
.y106{bottom:847.410000px;}
.yc3{bottom:849.570000px;}
.y19{bottom:856.230000px;}
.y77{bottom:858.570000px;}
.y6{bottom:868.290000px;}
.y2c{bottom:879.630000px;}
.y5c{bottom:884.670000px;}
.yc2{bottom:885.210000px;}
.ye6{bottom:894.030000px;}
.y105{bottom:895.470000px;}
.y74{bottom:895.830000px;}
.y18{bottom:897.630000px;}
.y2b{bottom:921.030000px;}
.y5{bottom:930.390000px;}
.y17{bottom:939.030000px;}
.yea{bottom:941.910000px;}
.y102{bottom:943.530000px;}
.y73{bottom:948.210000px;}
.yc1{bottom:956.670000px;}
.y5e{bottom:960.810000px;}
.y2a{bottom:962.430000px;}
.y16{bottom:980.430000px;}
.ye9{bottom:989.970000px;}
.y104{bottom:991.410000px;}
.y4{bottom:992.490000px;}
.yc0{bottom:993.930000px;}
.y88{bottom:1001.130000px;}
.y29{bottom:1003.830000px;}
.y5a{bottom:1010.310000px;}
.y15{bottom:1021.830000px;}
.ybf{bottom:1031.010000px;}
.ye5{bottom:1039.470000px;}
.y3{bottom:1054.590000px;}
.y14{bottom:1063.260000px;}
.y2{bottom:1153.620000px;}
.y1{bottom:1172.520000px;}
.h16{height:20.700000px;}
.h1e{height:20.736000px;}
.hf{height:32.940000px;}
.h20{height:32.976000px;}
.hc{height:33.120000px;}
.h14{height:33.156000px;}
.h15{height:36.000000px;}
.h1d{height:41.220000px;}
.ha{height:41.400000px;}
.h1c{height:41.436000px;}
.hd{height:59.580000px;}
.h12{height:59.760000px;}
.h1a{height:62.100000px;}
.h10{height:62.136000px;}
.h9{height:64.546875px;}
.h1{height:69.086250px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h17{height:71.316000px;}
.h5{height:72.562500px;}
.h8{height:75.093750px;}
.h4{height:76.317188px;}
.he{height:81.000000px;}
.h3{height:82.676953px;}
.h2{height:108.843750px;}
.hb{height:109.080000px;}
.h11{height:109.260000px;}
.h21{height:128.880000px;}
.h23{height:128.916000px;}
.h13{height:130.536000px;}
.h22{height:176.970000px;}
.h1f{height:225.030000px;}
.h18{height:232.770000px;}
.h1b{height:585.075000px;}
.h19{height:686.445000px;}
.h0{height:1188.000000px;}
.w17{width:37.440000px;}
.w18{width:55.656000px;}
.wa{width:76.500000px;}
.w9{width:77.760000px;}
.w19{width:83.700000px;}
.w1d{width:85.500000px;}
.w13{width:88.920000px;}
.w7{width:91.260000px;}
.w6{width:91.296000px;}
.w8{width:91.440000px;}
.w14{width:95.616000px;}
.w24{width:95.940000px;}
.w23{width:95.976000px;}
.w26{width:120.240000px;}
.wf{width:121.500000px;}
.w11{width:132.120000px;}
.w12{width:132.156000px;}
.w29{width:132.300000px;}
.w10{width:132.336000px;}
.w28{width:132.516000px;}
.w20{width:135.180000px;}
.w1f{width:135.576000px;}
.w3{width:154.260000px;}
.w4{width:182.550000px;}
.w5{width:182.730000px;}
.wc{width:184.530000px;}
.w27{width:186.870000px;}
.w1e{width:209.190000px;}
.w16{width:226.290000px;}
.wd{width:253.830000px;}
.w15{width:261.570000px;}
.we{width:264.270000px;}
.w22{width:343.290000px;}
.w1a{width:351.030000px;}
.w1b{width:351.075000px;}
.w21{width:631.185000px;}
.w1c{width:701.025000px;}
.w2{width:702.105000px;}
.wb{width:702.645000px;}
.w25{width:704.445000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:7.560000px;}
.x1a{left:33.120000px;}
.x18{left:57.990000px;}
.x16{left:62.145000px;}
.x33{left:80.999986px;}
.x20{left:98.820000px;}
.x2{left:108.035986px;}
.x4{left:113.975986px;}
.xa{left:121.895986px;}
.x5{left:134.855986px;}
.xd{left:141.875986px;}
.x3{left:162.389986px;}
.x1e{left:185.790000px;}
.x2c{left:193.530000px;}
.x24{left:196.950000px;}
.x35{left:228.270000px;}
.x15{left:262.290000px;}
.x1f{left:292.575000px;}
.x8{left:294.014986px;}
.x7{left:318.854986px;}
.x2a{left:342.759000px;}
.x1b{left:353.595000px;}
.x9{left:365.114986px;}
.x25{left:369.615000px;}
.xb{left:391.034986px;}
.x2d{left:402.735000px;}
.x32{left:408.494986px;}
.x22{left:414.075000px;}
.x36{left:415.155000px;}
.x13{left:416.954986px;}
.x10{left:422.534986px;}
.x11{left:429.554986px;}
.x34{left:430.994986px;}
.xc{left:440.534986px;}
.xf{left:442.514986px;}
.x17{left:444.855000px;}
.x30{left:451.335000px;}
.x6{left:459.074986px;}
.xe{left:475.994986px;}
.x1c{left:536.145000px;}
.x2e{left:538.305000px;}
.x21{left:546.405000px;}
.x37{left:547.665000px;}
.x26{left:595.905000px;}
.x39{left:599.324986px;}
.x19{left:627.585000px;}
.x27{left:633.345000px;}
.x31{left:643.245000px;}
.x2f{left:673.485000px;}
.x23{left:678.525000px;}
.x38{left:679.965000px;}
.x28{left:689.010000px;}
.x2b{left:693.834000px;}
.x1d{left:718.890000px;}
.x29{left:772.710000px;}
.x12{left:791.789986px;}
.x1{left:800.969986px;}
.x3a{left:810.149986px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:-0.023040pt;}
.ls3{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.lse{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls7{letter-spacing:30.186667pt;}
.ls5{letter-spacing:104.320000pt;}
.ls1{letter-spacing:751.791360pt;}
.ws0{word-spacing:-17.280000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.271573pt;}
.ws3{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-1.973333pt;}
._1{margin-left:-0.973440pt;}
._0{width:0.949333pt;}
._2{width:1.952000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:3.520000pt;}
.yd0{bottom:3.560000pt;}
.y8b{bottom:6.240000pt;}
.ye4{bottom:14.394667pt;}
.y4e{bottom:14.400000pt;}
.yf6{bottom:14.426667pt;}
.y108{bottom:14.440000pt;}
.y48{bottom:14.560000pt;}
.yed{bottom:14.600000pt;}
.y8d{bottom:16.800000pt;}
.y76{bottom:17.120000pt;}
.y4a{bottom:19.680000pt;}
.y8e{bottom:19.840000pt;}
.yb2{bottom:21.760000pt;}
.y43{bottom:21.920000pt;}
.y8a{bottom:27.360000pt;}
.y75{bottom:32.000000pt;}
.y49{bottom:38.080000pt;}
.y5f{bottom:38.240000pt;}
.y5b{bottom:40.320000pt;}
.y89{bottom:48.480000pt;}
.y4c{bottom:57.120000pt;}
.y103{bottom:62.880000pt;}
.ye8{bottom:81.280000pt;}
.y46{bottom:82.080000pt;}
.y5d{bottom:82.240000pt;}
.ye7{bottom:99.680000pt;}
.y61{bottom:101.160000pt;}
.ya3{bottom:103.232000pt;}
.yf2{bottom:105.626667pt;}
.yfc{bottom:105.640000pt;}
.ya5{bottom:105.792000pt;}
.y28{bottom:110.592000pt;}
.y101{bottom:111.872000pt;}
.y72{bottom:117.632000pt;}
.ydd{bottom:122.912000pt;}
.yf1{bottom:124.026667pt;}
.yfb{bottom:124.040000pt;}
.yd5{bottom:124.832000pt;}
.y9d{bottom:130.112000pt;}
.y41{bottom:135.386667pt;}
.ya2{bottom:140.026667pt;}
.y10c{bottom:140.666667pt;}
.yf0{bottom:142.426667pt;}
.yfa{bottom:142.440000pt;}
.y59{bottom:143.226667pt;}
.y87{bottom:144.986667pt;}
.yd4{bottom:147.706667pt;}
.y10d{bottom:147.866667pt;}
.ybe{bottom:148.506667pt;}
.y71{bottom:154.426667pt;}
.y100{bottom:154.586667pt;}
.yb0{bottom:162.426667pt;}
.y27{bottom:163.386667pt;}
.ye3{bottom:165.466667pt;}
.ydf{bottom:166.754667pt;}
.y9c{bottom:166.906667pt;}
.y40{bottom:172.186667pt;}
.ya1{bottom:176.826667pt;}
.yd3{bottom:179.386667pt;}
.y58{bottom:180.026667pt;}
.y86{bottom:181.786667pt;}
.yde{bottom:185.154667pt;}
.yaf{bottom:185.306667pt;}
.y70{bottom:191.226667pt;}
.yff{bottom:197.146667pt;}
.y13{bottom:201.626667pt;}
.y9b{bottom:203.706667pt;}
.ye2{bottom:208.186667pt;}
.y3f{bottom:208.986667pt;}
.yd2{bottom:211.066667pt;}
.ya0{bottom:213.626667pt;}
.y26{bottom:216.186667pt;}
.y57{bottom:216.826667pt;}
.yae{bottom:216.986667pt;}
.y85{bottom:218.586667pt;}
.y39{bottom:220.986667pt;}
.ybd{bottom:222.106667pt;}
.y6f{bottom:228.026667pt;}
.yf9{bottom:239.866667pt;}
.y9a{bottom:240.506667pt;}
.y12{bottom:241.466667pt;}
.yd1{bottom:242.906667pt;}
.y3e{bottom:245.786667pt;}
.yad{bottom:248.666667pt;}
.y9f{bottom:250.426667pt;}
.ye1{bottom:250.906667pt;}
.y56{bottom:253.626667pt;}
.y84{bottom:255.386667pt;}
.ybc{bottom:258.906667pt;}
.y6e{bottom:264.826667pt;}
.y25{bottom:268.986667pt;}
.y9e{bottom:273.306667pt;}
.y38{bottom:273.786667pt;}
.ycf{bottom:274.586667pt;}
.y99{bottom:277.346667pt;}
.yac{bottom:280.546667pt;}
.y11{bottom:281.346667pt;}
.y3d{bottom:282.626667pt;}
.y55{bottom:290.466667pt;}
.y83{bottom:292.226667pt;}
.ye0{bottom:293.506667pt;}
.ybb{bottom:295.746667pt;}
.y6d{bottom:301.666667pt;}
.yce{bottom:307.746667pt;}
.yab{bottom:312.226667pt;}
.y98{bottom:314.146667pt;}
.y3c{bottom:319.426667pt;}
.y24{bottom:321.826667pt;}
.y10{bottom:323.106667pt;}
.yfe{bottom:325.186667pt;}
.y37{bottom:326.626667pt;}
.y54{bottom:327.266667pt;}
.y82{bottom:329.026667pt;}
.yba{bottom:332.546667pt;}
.ydc{bottom:337.506667pt;}
.y6c{bottom:338.466667pt;}
.ycd{bottom:340.706667pt;}
.yaa{bottom:343.906667pt;}
.y97{bottom:350.946667pt;}
.y3b{bottom:356.226667pt;}
.y53{bottom:364.066667pt;}
.y81{bottom:365.826667pt;}
.yf{bottom:365.986667pt;}
.yfd{bottom:367.906667pt;}
.yb9{bottom:369.346667pt;}
.ydb{bottom:370.626667pt;}
.y6b{bottom:375.266667pt;}
.ya9{bottom:375.746667pt;}
.y23{bottom:377.026667pt;}
.y36{bottom:379.426667pt;}
.y96{bottom:387.746667pt;}
.y3a{bottom:393.026667pt;}
.y52{bottom:400.866667pt;}
.y80{bottom:402.626667pt;}
.yb8{bottom:406.146667pt;}
.ya8{bottom:408.706667pt;}
.ye{bottom:408.866667pt;}
.yf8{bottom:410.626667pt;}
.y6a{bottom:412.066667pt;}
.y95{bottom:424.546667pt;}
.yb7{bottom:429.026667pt;}
.y22{bottom:429.826667pt;}
.y35{bottom:434.626667pt;}
.yda{bottom:436.066667pt;}
.y51{bottom:437.666667pt;}
.y7f{bottom:439.426667pt;}
.ya7{bottom:441.826667pt;}
.ycc{bottom:442.946667pt;}
.y69{bottom:448.866667pt;}
.yd{bottom:451.906667pt;}
.yf7{bottom:453.186667pt;}
.yb6{bottom:460.706667pt;}
.y94{bottom:461.346667pt;}
.y21{bottom:466.626667pt;}
.yd9{bottom:472.866667pt;}
.y50{bottom:474.466667pt;}
.ya6{bottom:474.946667pt;}
.y7e{bottom:476.226667pt;}
.ycb{bottom:479.746667pt;}
.y68{bottom:485.666667pt;}
.y34{bottom:487.426667pt;}
.yb5{bottom:492.546667pt;}
.yc{bottom:494.786667pt;}
.yef{bottom:495.906667pt;}
.y93{bottom:498.173333pt;}
.y7d{bottom:499.133333pt;}
.y20{bottom:503.453333pt;}
.yd8{bottom:509.693333pt;}
.y4f{bottom:511.293333pt;}
.yca{bottom:516.573333pt;}
.y67{bottom:522.493333pt;}
.y33{bottom:524.253333pt;}
.y4b{bottom:534.173333pt;}
.y92{bottom:534.973333pt;}
.yb{bottom:537.693333pt;}
.yf5{bottom:538.653333pt;}
.y1f{bottom:540.253333pt;}
.yd7{bottom:544.253333pt;}
.y7c{bottom:549.213333pt;}
.yc9{bottom:553.373333pt;}
.yb4{bottom:555.933333pt;}
.y66{bottom:559.293333pt;}
.y32{bottom:561.053333pt;}
.y91{bottom:571.773333pt;}
.y4d{bottom:576.893333pt;}
.y1e{bottom:577.053333pt;}
.yd6{bottom:578.013333pt;}
.ya{bottom:580.733333pt;}
.yf4{bottom:581.213333pt;}
.yb3{bottom:589.053333pt;}
.yc8{bottom:590.173333pt;}
.y65{bottom:596.093333pt;}
.y31{bottom:597.853333pt;}
.y7b{bottom:599.453333pt;}
.y10b{bottom:608.253333pt;}
.y90{bottom:608.573333pt;}
.y1d{bottom:613.853333pt;}
.y45{bottom:620.893333pt;}
.yb1{bottom:622.173333pt;}
.y9{bottom:623.613333pt;}
.yf3{bottom:623.933333pt;}
.yc7{bottom:626.973333pt;}
.y64{bottom:632.893333pt;}
.y30{bottom:634.653333pt;}
.ya4{bottom:640.413333pt;}
.y10a{bottom:645.053333pt;}
.y8f{bottom:645.373333pt;}
.y7a{bottom:649.533333pt;}
.y1c{bottom:650.653333pt;}
.y60{bottom:655.773333pt;}
.yc6{bottom:663.773333pt;}
.y8{bottom:666.493333pt;}
.yee{bottom:666.653333pt;}
.y109{bottom:667.933333pt;}
.y8c{bottom:668.253333pt;}
.y2f{bottom:671.453333pt;}
.y1b{bottom:687.453333pt;}
.y47{bottom:688.413333pt;}
.y63{bottom:698.333333pt;}
.y79{bottom:699.613333pt;}
.yc5{bottom:700.573333pt;}
.y2e{bottom:708.253333pt;}
.yec{bottom:709.213333pt;}
.y107{bottom:710.653333pt;}
.y7{bottom:716.573333pt;}
.yc4{bottom:723.493333pt;}
.y1a{bottom:724.293333pt;}
.y78{bottom:731.493333pt;}
.y42{bottom:732.453333pt;}
.y62{bottom:742.373333pt;}
.y2d{bottom:745.093333pt;}
.yeb{bottom:751.973333pt;}
.y106{bottom:753.253333pt;}
.yc3{bottom:755.173333pt;}
.y19{bottom:761.093333pt;}
.y77{bottom:763.173333pt;}
.y6{bottom:771.813333pt;}
.y2c{bottom:781.893333pt;}
.y5c{bottom:786.373333pt;}
.yc2{bottom:786.853333pt;}
.ye6{bottom:794.693333pt;}
.y105{bottom:795.973333pt;}
.y74{bottom:796.293333pt;}
.y18{bottom:797.893333pt;}
.y2b{bottom:818.693333pt;}
.y5{bottom:827.013333pt;}
.y17{bottom:834.693333pt;}
.yea{bottom:837.253333pt;}
.y102{bottom:838.693333pt;}
.y73{bottom:842.853333pt;}
.yc1{bottom:850.373333pt;}
.y5e{bottom:854.053333pt;}
.y2a{bottom:855.493333pt;}
.y16{bottom:871.493333pt;}
.ye9{bottom:879.973333pt;}
.y104{bottom:881.253333pt;}
.y4{bottom:882.213333pt;}
.yc0{bottom:883.493333pt;}
.y88{bottom:889.893333pt;}
.y29{bottom:892.293333pt;}
.y5a{bottom:898.053333pt;}
.y15{bottom:908.293333pt;}
.ybf{bottom:916.453333pt;}
.ye5{bottom:923.973333pt;}
.y3{bottom:937.413333pt;}
.y14{bottom:945.120000pt;}
.y2{bottom:1025.440000pt;}
.y1{bottom:1042.240000pt;}
.h16{height:18.400000pt;}
.h1e{height:18.432000pt;}
.hf{height:29.280000pt;}
.h20{height:29.312000pt;}
.hc{height:29.440000pt;}
.h14{height:29.472000pt;}
.h15{height:32.000000pt;}
.h1d{height:36.640000pt;}
.ha{height:36.800000pt;}
.h1c{height:36.832000pt;}
.hd{height:52.960000pt;}
.h12{height:53.120000pt;}
.h1a{height:55.200000pt;}
.h10{height:55.232000pt;}
.h9{height:57.375000pt;}
.h1{height:61.410000pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h17{height:63.392000pt;}
.h5{height:64.500000pt;}
.h8{height:66.750000pt;}
.h4{height:67.837500pt;}
.he{height:72.000000pt;}
.h3{height:73.490625pt;}
.h2{height:96.750000pt;}
.hb{height:96.960000pt;}
.h11{height:97.120000pt;}
.h21{height:114.560000pt;}
.h23{height:114.592000pt;}
.h13{height:116.032000pt;}
.h22{height:157.306667pt;}
.h1f{height:200.026667pt;}
.h18{height:206.906667pt;}
.h1b{height:520.066667pt;}
.h19{height:610.173333pt;}
.h0{height:1056.000000pt;}
.w17{width:33.280000pt;}
.w18{width:49.472000pt;}
.wa{width:68.000000pt;}
.w9{width:69.120000pt;}
.w19{width:74.400000pt;}
.w1d{width:76.000000pt;}
.w13{width:79.040000pt;}
.w7{width:81.120000pt;}
.w6{width:81.152000pt;}
.w8{width:81.280000pt;}
.w14{width:84.992000pt;}
.w24{width:85.280000pt;}
.w23{width:85.312000pt;}
.w26{width:106.880000pt;}
.wf{width:108.000000pt;}
.w11{width:117.440000pt;}
.w12{width:117.472000pt;}
.w29{width:117.600000pt;}
.w10{width:117.632000pt;}
.w28{width:117.792000pt;}
.w20{width:120.160000pt;}
.w1f{width:120.512000pt;}
.w3{width:137.120000pt;}
.w4{width:162.266667pt;}
.w5{width:162.426667pt;}
.wc{width:164.026667pt;}
.w27{width:166.106667pt;}
.w1e{width:185.946667pt;}
.w16{width:201.146667pt;}
.wd{width:225.626667pt;}
.w15{width:232.506667pt;}
.we{width:234.906667pt;}
.w22{width:305.146667pt;}
.w1a{width:312.026667pt;}
.w1b{width:312.066667pt;}
.w21{width:561.053333pt;}
.w1c{width:623.133333pt;}
.w2{width:624.093333pt;}
.wb{width:624.573333pt;}
.w25{width:626.173333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.720000pt;}
.x1a{left:29.440000pt;}
.x18{left:51.546667pt;}
.x16{left:55.240000pt;}
.x33{left:71.999988pt;}
.x20{left:87.840000pt;}
.x2{left:96.031988pt;}
.x4{left:101.311988pt;}
.xa{left:108.351988pt;}
.x5{left:119.871988pt;}
.xd{left:126.111988pt;}
.x3{left:144.346655pt;}
.x1e{left:165.146667pt;}
.x2c{left:172.026667pt;}
.x24{left:175.066667pt;}
.x35{left:202.906667pt;}
.x15{left:233.146667pt;}
.x1f{left:260.066667pt;}
.x8{left:261.346655pt;}
.x7{left:283.426655pt;}
.x2a{left:304.674667pt;}
.x1b{left:314.306667pt;}
.x9{left:324.546655pt;}
.x25{left:328.546667pt;}
.xb{left:347.586655pt;}
.x2d{left:357.986667pt;}
.x32{left:363.106655pt;}
.x22{left:368.066667pt;}
.x36{left:369.026667pt;}
.x13{left:370.626655pt;}
.x10{left:375.586655pt;}
.x11{left:381.826655pt;}
.x34{left:383.106655pt;}
.xc{left:391.586655pt;}
.xf{left:393.346655pt;}
.x17{left:395.426667pt;}
.x30{left:401.186667pt;}
.x6{left:408.066655pt;}
.xe{left:423.106655pt;}
.x1c{left:476.573333pt;}
.x2e{left:478.493333pt;}
.x21{left:485.693333pt;}
.x37{left:486.813333pt;}
.x26{left:529.693333pt;}
.x39{left:532.733321pt;}
.x19{left:557.853333pt;}
.x27{left:562.973333pt;}
.x31{left:571.773333pt;}
.x2f{left:598.653333pt;}
.x23{left:603.133333pt;}
.x38{left:604.413333pt;}
.x28{left:612.453333pt;}
.x2b{left:616.741333pt;}
.x1d{left:639.013333pt;}
.x29{left:686.853333pt;}
.x12{left:703.813321pt;}
.x1{left:711.973321pt;}
.x3a{left:720.133321pt;}
}




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