
    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_9016ab6f4681ee4a04a7fdea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_ef6442dba33a5442f6209e8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8b2e4e79e3417b984958a973.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_e39360b32294d55bbc5c2a42.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_a1c4c91de915df4c53389d82.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986816;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-47.520000px;}
.v3{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:101.820000px;}
.ls8{letter-spacing:-0.392400px;}
.ls9{letter-spacing:-0.314400px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000006px;}
.ls14{letter-spacing:0.015840px;}
.ls17{letter-spacing:0.066600px;}
.ls18{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.183600px;}
.lsd{letter-spacing:0.261600px;}
.ls4{letter-spacing:0.296400px;}
.ls5{letter-spacing:0.440400px;}
.ls3{letter-spacing:0.466560px;}
.ls7{letter-spacing:26.280000px;}
.ls1d{letter-spacing:39.600000px;}
.ls21{letter-spacing:39.780000px;}
.ls1b{letter-spacing:45.720000px;}
.ls1f{letter-spacing:46.368000px;}
.ls20{letter-spacing:46.560000px;}
.ls11{letter-spacing:103.233600px;}
.ls27{letter-spacing:103.257600px;}
.ls10{letter-spacing:103.284000px;}
.ls26{letter-spacing:103.308000px;}
.ls1a{letter-spacing:107.340000px;}
.ls1e{letter-spacing:111.525600px;}
.ls16{letter-spacing:111.549600px;}
.ls1c{letter-spacing:111.576000px;}
.ls15{letter-spacing:111.600000px;}
.lsf{letter-spacing:115.833600px;}
.lse{letter-spacing:115.884000px;}
.ls23{letter-spacing:119.841600px;}
.ls25{letter-spacing:119.865600px;}
.ls22{letter-spacing:119.892000px;}
.ls24{letter-spacing:119.916000px;}
.ls13{letter-spacing:157.257600px;}
.ls12{letter-spacing:157.308000px;}
.ls2{letter-spacing:157.353600px;}
.ls1{letter-spacing:157.404000px;}
.lsb{letter-spacing:173.865600px;}
.lsa{letter-spacing:173.916000px;}
.ls6{letter-spacing:182.460000px;}
.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;}
}
.ws19{word-spacing:-72.969984px;}
.ws1c{word-spacing:-46.341504px;}
.ws11{word-spacing:-45.982080px;}
.ws10{word-spacing:-45.966240px;}
.ws1a{word-spacing:-45.124998px;}
.ws1b{word-spacing:-42.809760px;}
.ws18{word-spacing:-39.783744px;}
.ws13{word-spacing:-39.456000px;}
.wsa{word-spacing:-36.365760px;}
.wse{word-spacing:-36.141696px;}
.wsd{word-spacing:-36.102240px;}
.ws1{word-spacing:-23.081760px;}
.ws16{word-spacing:-20.340000px;}
.ws6{word-spacing:-18.590160px;}
.ws4{word-spacing:-18.446160px;}
.ws9{word-spacing:-18.149760px;}
.ws7{word-spacing:-1.627200px;}
.ws5{word-spacing:-1.563840px;}
.ws2{word-spacing:-0.843840px;}
.ws3{word-spacing:-0.839040px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.149040px;}
.ws15{word-spacing:67.272000px;}
.ws14{word-spacing:67.355880px;}
.wsc{word-spacing:79.502400px;}
.wsb{word-spacing:79.588080px;}
.ws8{word-spacing:727.726992px;}
.ws12{word-spacing:1026.229920px;}
.wsf{word-spacing:1309.912080px;}
._d{margin-left:-9.900000px;}
._e{margin-left:-8.100000px;}
._c{margin-left:-7.020000px;}
._b{margin-left:-2.944656px;}
._5{margin-left:-1.586304px;}
._0{width:1.198800px;}
._1{width:2.397600px;}
._8{width:3.602304px;}
._3{width:28.879488px;}
._2{width:29.886912px;}
._4{width:31.565952px;}
._a{width:41.654880px;}
._6{width:239.508384px;}
._f{width:616.511040px;}
._9{width:1717.904400px;}
._7{width:1874.424480px;}
.fc5{color:rgb(33,63,126);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc3{color:rgb(102,102,217);}
.fc1{color:rgb(255,254,249);}
.fc0{color:rgb(25,47,95);}
.fsa{font-size:7.200000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs16{font-size:90.000000px;}
.fs17{font-size:90.144000px;}
.fs8{font-size:95.760000px;}
.fs9{font-size:95.904000px;}
.fsd{font-size:120.240000px;}
.fs10{font-size:120.384000px;}
.fse{font-size:131.760000px;}
.fsf{font-size:131.904000px;}
.fs11{font-size:144.000000px;}
.fs12{font-size:144.144000px;}
.fs13{font-size:156.240000px;}
.fs14{font-size:156.384000px;}
.fs19{font-size:164.689774px;}
.fs4{font-size:167.760000px;}
.fs2{font-size:167.904000px;}
.fs18{font-size:174.240000px;}
.fs7{font-size:192.240000px;}
.fs15{font-size:192.384000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs3{font-size:264.384000px;}
.fsc{font-size:275.760000px;}
.fsb{font-size:275.904000px;}
.y0{bottom:0.000000px;}
.y31{bottom:20.514000px;}
.y2f{bottom:20.565000px;}
.y88{bottom:112.032000px;}
.y2d{bottom:114.696000px;}
.y50{bottom:119.592000px;}
.y91{bottom:122.292000px;}
.y4{bottom:125.532000px;}
.y61{bottom:132.408000px;}
.y30{bottom:134.316000px;}
.y2c{bottom:137.736000px;}
.y3c{bottom:138.528000px;}
.y87{bottom:149.508000px;}
.y5c{bottom:151.665000px;}
.y90{bottom:152.565000px;}
.y16{bottom:154.545000px;}
.yd1{bottom:154.725000px;}
.y2e{bottom:156.270000px;}
.ya9{bottom:158.370000px;}
.y99{bottom:159.015000px;}
.y1b{bottom:159.945000px;}
.y3b{bottom:160.485000px;}
.y4f{bottom:162.465000px;}
.ydb{bottom:164.955000px;}
.y77{bottom:167.865000px;}
.yc8{bottom:170.205000px;}
.ye{bottom:175.035000px;}
.y60{bottom:175.065000px;}
.y2b{bottom:175.710000px;}
.y5b{bottom:176.865000px;}
.y1a{bottom:179.565000px;}
.y3a{bottom:182.445000px;}
.y7e{bottom:183.165000px;}
.y6a{bottom:184.605000px;}
.y15{bottom:185.145000px;}
.y86{bottom:186.945000px;}
.y4e{bottom:190.185000px;}
.yc7{bottom:195.405000px;}
.y8f{bottom:197.925000px;}
.y76{bottom:198.105000px;}
.y2a{bottom:198.750000px;}
.y6d{bottom:200.085000px;}
.yda{bottom:202.395000px;}
.y39{bottom:204.405000px;}
.y14{bottom:210.345000px;}
.y7d{bottom:213.405000px;}
.yd0{bottom:215.025000px;}
.y5a{bottom:217.005000px;}
.y5f{bottom:217.905000px;}
.y98{bottom:219.495000px;}
.yd{bottom:220.395000px;}
.ycd{bottom:223.305000px;}
.y85{bottom:224.385000px;}
.y38{bottom:226.365000px;}
.y8e{bottom:228.165000px;}
.y75{bottom:228.345000px;}
.y69{bottom:229.965000px;}
.y4d{bottom:232.845000px;}
.yc6{bottom:235.545000px;}
.yb3{bottom:236.160000px;}
.y29{bottom:236.730000px;}
.ya8{bottom:238.755000px;}
.yd9{bottom:239.835000px;}
.y59{bottom:242.205000px;}
.ya1{bottom:243.615000px;}
.y7c{bottom:243.645000px;}
.y6c{bottom:245.445000px;}
.y37{bottom:248.145000px;}
.y3{bottom:248.910000px;}
.y8d{bottom:258.405000px;}
.y74{bottom:258.585000px;}
.y28{bottom:259.770000px;}
.ycf{bottom:260.385000px;}
.y4c{bottom:260.565000px;}
.ycc{bottom:263.445000px;}
.yc{bottom:265.755000px;}
.yc5{bottom:268.305000px;}
.y36{bottom:270.105000px;}
.yb2{bottom:275.040000px;}
.y68{bottom:275.325000px;}
.y84{bottom:276.945000px;}
.y97{bottom:279.825000px;}
.y58{bottom:282.345000px;}
.ya0{bottom:282.495000px;}
.y7b{bottom:288.825000px;}
.y45{bottom:290.625000px;}
.y35{bottom:292.065000px;}
.yd8{bottom:292.245000px;}
.y27{bottom:297.975000px;}
.y4b{bottom:303.225000px;}
.y8c{bottom:303.585000px;}
.y73{bottom:303.765000px;}
.y6b{bottom:305.745000px;}
.ybc{bottom:306.255000px;}
.y57{bottom:307.545000px;}
.yc4{bottom:308.445000px;}
.yb{bottom:311.145000px;}
.y44{bottom:312.405000px;}
.y2{bottom:313.740000px;}
.yb1{bottom:313.950000px;}
.y34{bottom:314.070000px;}
.y83{bottom:314.385000px;}
.y7a{bottom:319.110000px;}
.ya7{bottom:319.140000px;}
.y67{bottom:320.730000px;}
.y9f{bottom:321.375000px;}
.y13{bottom:323.280000px;}
.y19{bottom:323.430000px;}
.yd7{bottom:329.685000px;}
.y4a{bottom:330.990000px;}
.y56{bottom:332.790000px;}
.yc3{bottom:333.690000px;}
.y8b{bottom:333.870000px;}
.y72{bottom:334.050000px;}
.y43{bottom:334.365000px;}
.y26{bottom:335.955000px;}
.y33{bottom:336.030000px;}
.y96{bottom:340.125000px;}
.ycb{bottom:343.950000px;}
.ybb{bottom:345.135000px;}
.y64{bottom:351.150000px;}
.yb0{bottom:352.830000px;}
.y18{bottom:354.030000px;}
.y12{bottom:354.060000px;}
.y42{bottom:356.370000px;}
.y32{bottom:357.990000px;}
.y25{bottom:358.995000px;}
.y9e{bottom:360.285000px;}
.y8a{bottom:364.110000px;}
.y79{bottom:364.290000px;}
.yce{bottom:366.090000px;}
.y82{bottom:366.810000px;}
.ya{bottom:371.625000px;}
.y55{bottom:373.110000px;}
.y49{bottom:373.830000px;}
.yc2{bottom:374.010000px;}
.ydd{bottom:376.170000px;}
.y3f{bottom:378.330000px;}
.y1{bottom:378.540000px;}
.y17{bottom:379.230000px;}
.y71{bottom:379.410000px;}
.y66{bottom:381.210000px;}
.yd6{bottom:382.245000px;}
.yba{bottom:384.015000px;}
.yca{bottom:384.090000px;}
.y89{bottom:394.350000px;}
.y3d{bottom:396.795000px;}
.y24{bottom:396.975000px;}
.y54{bottom:398.310000px;}
.y95{bottom:399.165000px;}
.yc1{bottom:399.210000px;}
.ya6{bottom:399.495000px;}
.y3e{bottom:400.290000px;}
.y81{bottom:404.250000px;}
.yaf{bottom:406.830000px;}
.y78{bottom:409.650000px;}
.y63{bottom:411.450000px;}
.y5e{bottom:416.490000px;}
.y9{bottom:416.985000px;}
.yd5{bottom:419.685000px;}
.y23{bottom:420.015000px;}
.y41{bottom:422.250000px;}
.yb9{bottom:422.895000px;}
.yc0{bottom:424.410000px;}
.y70{bottom:424.590000px;}
.y65{bottom:426.570000px;}
.y9d{bottom:438.045000px;}
.y53{bottom:438.450000px;}
.y80{bottom:441.690000px;}
.y94{bottom:445.650000px;}
.y6f{bottom:454.830000px;}
.y22{bottom:458.205000px;}
.y48{bottom:459.150000px;}
.y8{bottom:462.345000px;}
.y11{bottom:463.110000px;}
.y52{bottom:463.650000px;}
.ybf{bottom:464.550000px;}
.y62{bottom:471.930000px;}
.yd4{bottom:472.110000px;}
.yb8{bottom:476.745000px;}
.y40{bottom:477.105000px;}
.y7f{bottom:479.130000px;}
.ya5{bottom:479.880000px;}
.y21{bottom:481.245000px;}
.y6e{bottom:485.070000px;}
.y47{bottom:486.870000px;}
.y51{bottom:488.850000px;}
.ybe{bottom:489.750000px;}
.y9c{bottom:491.865000px;}
.y93{bottom:492.090000px;}
.y7{bottom:507.750000px;}
.y10{bottom:508.470000px;}
.yd3{bottom:509.550000px;}
.yae{bottom:514.515000px;}
.yb7{bottom:515.625000px;}
.y20{bottom:519.225000px;}
.ybd{bottom:527.580000px;}
.y9b{bottom:530.745000px;}
.y5d{bottom:533.055000px;}
.y92{bottom:539.790000px;}
.y1f{bottom:542.265000px;}
.y46{bottom:544.935000px;}
.yd2{bottom:546.990000px;}
.y6{bottom:553.110000px;}
.yad{bottom:553.395000px;}
.yf{bottom:553.860000px;}
.yb6{bottom:554.505000px;}
.ya4{bottom:560.265000px;}
.yc9{bottom:566.460000px;}
.y1e{bottom:580.245000px;}
.y9a{bottom:583.170000px;}
.yac{bottom:592.275000px;}
.yb5{bottom:593.385000px;}
.y1d{bottom:603.285000px;}
.yab{bottom:631.155000px;}
.ya3{bottom:640.620000px;}
.y5{bottom:667.875000px;}
.ydc{bottom:672.375000px;}
.yb4{bottom:688.245000px;}
.y1c{bottom:691.455000px;}
.yaa{bottom:694.080000px;}
.ya2{bottom:721.005000px;}
.hd{height:7.161328px;}
.he{height:22.140000px;}
.hc{height:22.176000px;}
.h7{height:49.744687px;}
.h6{height:63.262266px;}
.h9{height:71.913516px;}
.hb{height:72.007031px;}
.ha{height:72.021656px;}
.h1e{height:89.516602px;}
.h1f{height:89.659828px;}
.h15{height:90.297422px;}
.h16{height:90.405563px;}
.h11{height:90.414844px;}
.h12{height:98.948672px;}
.h14{height:99.056812px;}
.h13{height:99.077344px;}
.h19{height:108.140625px;}
.h1a{height:108.248766px;}
.h21{height:108.281250px;}
.h22{height:108.389531px;}
.h1b{height:117.332578px;}
.h1c{height:117.440719px;}
.h23{height:123.678160px;}
.h5{height:125.983828px;}
.h3{height:126.091969px;}
.h17{height:126.147656px;}
.h18{height:126.255938px;}
.h20{height:131.020313px;}
.h8{height:144.555469px;}
.h1d{height:144.663750px;}
.h1{height:180.288281px;}
.h2{height:180.396562px;}
.h4{height:198.804375px;}
.h10{height:207.089297px;}
.hf{height:207.197438px;}
.h0{height:810.000000px;}
.w2{width:85.680000px;}
.w3{width:127.296000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6{left:63.179979px;}
.x26{left:65.555979px;}
.x11{left:71.820000px;}
.x18{left:83.591979px;}
.x1d{left:90.647979px;}
.x1{left:97.595979px;}
.x3{left:109.799979px;}
.x27{left:119.555979px;}
.x2b{left:124.847979px;}
.x17{left:130.103979px;}
.x1e{left:131.147979px;}
.x2c{left:134.567979px;}
.x2e{left:136.367979px;}
.x19{left:137.591979px;}
.x1f{left:144.575979px;}
.x29{left:150.509979px;}
.x3b{left:156.929979px;}
.x4{left:163.829979px;}
.x10{left:168.150000px;}
.x24{left:170.609979px;}
.x20{left:184.109979px;}
.x2f{left:191.009979px;}
.x28{left:192.164979px;}
.xf{left:210.524979px;}
.x7{left:228.209979px;}
.x37{left:229.394979px;}
.x2d{left:249.044979px;}
.x2{left:274.064979px;}
.x23{left:342.614979px;}
.x12{left:346.784979px;}
.x38{left:393.554979px;}
.x16{left:412.634979px;}
.x8{left:416.264979px;}
.x36{left:424.154979px;}
.x22{left:441.254979px;}
.x1c{left:467.174979px;}
.x25{left:510.914979px;}
.x33{left:531.794979px;}
.x34{left:554.504979px;}
.x3a{left:556.769979px;}
.x5{left:573.044979px;}
.x9{left:584.174979px;}
.x13{left:621.719979px;}
.x2a{left:670.574979px;}
.x1a{left:730.904979px;}
.x32{left:739.904979px;}
.xa{left:758.084979px;}
.x21{left:771.404979px;}
.x1b{left:784.904979px;}
.x30{left:804.059979px;}
.x35{left:845.429979px;}
.x14{left:896.609979px;}
.xb{left:949.064979px;}
.x31{left:952.589979px;}
.xc{left:955.904979px;}
.xe{left:1139.864979px;}
.xd{left:1145.624979px;}
.x15{left:1171.514979px;}
.x39{left:1229.579979px;}
@media print{
.v2{vertical-align:-42.240000pt;}
.v3{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:90.506667pt;}
.ls8{letter-spacing:-0.348800pt;}
.ls9{letter-spacing:-0.279467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000005pt;}
.ls14{letter-spacing:0.014080pt;}
.ls17{letter-spacing:0.059200pt;}
.ls18{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.163200pt;}
.lsd{letter-spacing:0.232533pt;}
.ls4{letter-spacing:0.263467pt;}
.ls5{letter-spacing:0.391467pt;}
.ls3{letter-spacing:0.414720pt;}
.ls7{letter-spacing:23.360000pt;}
.ls1d{letter-spacing:35.200000pt;}
.ls21{letter-spacing:35.360000pt;}
.ls1b{letter-spacing:40.640000pt;}
.ls1f{letter-spacing:41.216000pt;}
.ls20{letter-spacing:41.386667pt;}
.ls11{letter-spacing:91.763200pt;}
.ls27{letter-spacing:91.784533pt;}
.ls10{letter-spacing:91.808000pt;}
.ls26{letter-spacing:91.829333pt;}
.ls1a{letter-spacing:95.413333pt;}
.ls1e{letter-spacing:99.133867pt;}
.ls16{letter-spacing:99.155200pt;}
.ls1c{letter-spacing:99.178667pt;}
.ls15{letter-spacing:99.200000pt;}
.lsf{letter-spacing:102.963200pt;}
.lse{letter-spacing:103.008000pt;}
.ls23{letter-spacing:106.525867pt;}
.ls25{letter-spacing:106.547200pt;}
.ls22{letter-spacing:106.570667pt;}
.ls24{letter-spacing:106.592000pt;}
.ls13{letter-spacing:139.784533pt;}
.ls12{letter-spacing:139.829333pt;}
.ls2{letter-spacing:139.869867pt;}
.ls1{letter-spacing:139.914667pt;}
.lsb{letter-spacing:154.547200pt;}
.lsa{letter-spacing:154.592000pt;}
.ls6{letter-spacing:162.186667pt;}
.ws19{word-spacing:-64.862208pt;}
.ws1c{word-spacing:-41.192448pt;}
.ws11{word-spacing:-40.872960pt;}
.ws10{word-spacing:-40.858880pt;}
.ws1a{word-spacing:-40.111109pt;}
.ws1b{word-spacing:-38.053120pt;}
.ws18{word-spacing:-35.363328pt;}
.ws13{word-spacing:-35.072000pt;}
.wsa{word-spacing:-32.325120pt;}
.wse{word-spacing:-32.125952pt;}
.wsd{word-spacing:-32.090880pt;}
.ws1{word-spacing:-20.517120pt;}
.ws16{word-spacing:-18.080000pt;}
.ws6{word-spacing:-16.524587pt;}
.ws4{word-spacing:-16.396587pt;}
.ws9{word-spacing:-16.133120pt;}
.ws7{word-spacing:-1.446400pt;}
.ws5{word-spacing:-1.390080pt;}
.ws2{word-spacing:-0.750080pt;}
.ws3{word-spacing:-0.745813pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.132480pt;}
.ws15{word-spacing:59.797333pt;}
.ws14{word-spacing:59.871893pt;}
.wsc{word-spacing:70.668800pt;}
.wsb{word-spacing:70.744960pt;}
.ws8{word-spacing:646.868437pt;}
.ws12{word-spacing:912.204373pt;}
.wsf{word-spacing:1164.366293pt;}
._d{margin-left:-8.800000pt;}
._e{margin-left:-7.200000pt;}
._c{margin-left:-6.240000pt;}
._b{margin-left:-2.617472pt;}
._5{margin-left:-1.410048pt;}
._0{width:1.065600pt;}
._1{width:2.131200pt;}
._8{width:3.202048pt;}
._3{width:25.670656pt;}
._2{width:26.566144pt;}
._4{width:28.058624pt;}
._a{width:37.026560pt;}
._6{width:212.896341pt;}
._f{width:548.009813pt;}
._9{width:1527.026133pt;}
._7{width:1666.155093pt;}
.fsa{font-size:6.400000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs16{font-size:80.000000pt;}
.fs17{font-size:80.128000pt;}
.fs8{font-size:85.120000pt;}
.fs9{font-size:85.248000pt;}
.fsd{font-size:106.880000pt;}
.fs10{font-size:107.008000pt;}
.fse{font-size:117.120000pt;}
.fsf{font-size:117.248000pt;}
.fs11{font-size:128.000000pt;}
.fs12{font-size:128.128000pt;}
.fs13{font-size:138.880000pt;}
.fs14{font-size:139.008000pt;}
.fs19{font-size:146.390910pt;}
.fs4{font-size:149.120000pt;}
.fs2{font-size:149.248000pt;}
.fs18{font-size:154.880000pt;}
.fs7{font-size:170.880000pt;}
.fs15{font-size:171.008000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs3{font-size:235.008000pt;}
.fsc{font-size:245.120000pt;}
.fsb{font-size:245.248000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:18.234667pt;}
.y2f{bottom:18.280000pt;}
.y88{bottom:99.584000pt;}
.y2d{bottom:101.952000pt;}
.y50{bottom:106.304000pt;}
.y91{bottom:108.704000pt;}
.y4{bottom:111.584000pt;}
.y61{bottom:117.696000pt;}
.y30{bottom:119.392000pt;}
.y2c{bottom:122.432000pt;}
.y3c{bottom:123.136000pt;}
.y87{bottom:132.896000pt;}
.y5c{bottom:134.813333pt;}
.y90{bottom:135.613333pt;}
.y16{bottom:137.373333pt;}
.yd1{bottom:137.533333pt;}
.y2e{bottom:138.906667pt;}
.ya9{bottom:140.773333pt;}
.y99{bottom:141.346667pt;}
.y1b{bottom:142.173333pt;}
.y3b{bottom:142.653333pt;}
.y4f{bottom:144.413333pt;}
.ydb{bottom:146.626667pt;}
.y77{bottom:149.213333pt;}
.yc8{bottom:151.293333pt;}
.ye{bottom:155.586667pt;}
.y60{bottom:155.613333pt;}
.y2b{bottom:156.186667pt;}
.y5b{bottom:157.213333pt;}
.y1a{bottom:159.613333pt;}
.y3a{bottom:162.173333pt;}
.y7e{bottom:162.813333pt;}
.y6a{bottom:164.093333pt;}
.y15{bottom:164.573333pt;}
.y86{bottom:166.173333pt;}
.y4e{bottom:169.053333pt;}
.yc7{bottom:173.693333pt;}
.y8f{bottom:175.933333pt;}
.y76{bottom:176.093333pt;}
.y2a{bottom:176.666667pt;}
.y6d{bottom:177.853333pt;}
.yda{bottom:179.906667pt;}
.y39{bottom:181.693333pt;}
.y14{bottom:186.973333pt;}
.y7d{bottom:189.693333pt;}
.yd0{bottom:191.133333pt;}
.y5a{bottom:192.893333pt;}
.y5f{bottom:193.693333pt;}
.y98{bottom:195.106667pt;}
.yd{bottom:195.906667pt;}
.ycd{bottom:198.493333pt;}
.y85{bottom:199.453333pt;}
.y38{bottom:201.213333pt;}
.y8e{bottom:202.813333pt;}
.y75{bottom:202.973333pt;}
.y69{bottom:204.413333pt;}
.y4d{bottom:206.973333pt;}
.yc6{bottom:209.373333pt;}
.yb3{bottom:209.920000pt;}
.y29{bottom:210.426667pt;}
.ya8{bottom:212.226667pt;}
.yd9{bottom:213.186667pt;}
.y59{bottom:215.293333pt;}
.ya1{bottom:216.546667pt;}
.y7c{bottom:216.573333pt;}
.y6c{bottom:218.173333pt;}
.y37{bottom:220.573333pt;}
.y3{bottom:221.253333pt;}
.y8d{bottom:229.693333pt;}
.y74{bottom:229.853333pt;}
.y28{bottom:230.906667pt;}
.ycf{bottom:231.453333pt;}
.y4c{bottom:231.613333pt;}
.ycc{bottom:234.173333pt;}
.yc{bottom:236.226667pt;}
.yc5{bottom:238.493333pt;}
.y36{bottom:240.093333pt;}
.yb2{bottom:244.480000pt;}
.y68{bottom:244.733333pt;}
.y84{bottom:246.173333pt;}
.y97{bottom:248.733333pt;}
.y58{bottom:250.973333pt;}
.ya0{bottom:251.106667pt;}
.y7b{bottom:256.733333pt;}
.y45{bottom:258.333333pt;}
.y35{bottom:259.613333pt;}
.yd8{bottom:259.773333pt;}
.y27{bottom:264.866667pt;}
.y4b{bottom:269.533333pt;}
.y8c{bottom:269.853333pt;}
.y73{bottom:270.013333pt;}
.y6b{bottom:271.773333pt;}
.ybc{bottom:272.226667pt;}
.y57{bottom:273.373333pt;}
.yc4{bottom:274.173333pt;}
.yb{bottom:276.573333pt;}
.y44{bottom:277.693333pt;}
.y2{bottom:278.880000pt;}
.yb1{bottom:279.066667pt;}
.y34{bottom:279.173333pt;}
.y83{bottom:279.453333pt;}
.y7a{bottom:283.653333pt;}
.ya7{bottom:283.680000pt;}
.y67{bottom:285.093333pt;}
.y9f{bottom:285.666667pt;}
.y13{bottom:287.360000pt;}
.y19{bottom:287.493333pt;}
.yd7{bottom:293.053333pt;}
.y4a{bottom:294.213333pt;}
.y56{bottom:295.813333pt;}
.yc3{bottom:296.613333pt;}
.y8b{bottom:296.773333pt;}
.y72{bottom:296.933333pt;}
.y43{bottom:297.213333pt;}
.y26{bottom:298.626667pt;}
.y33{bottom:298.693333pt;}
.y96{bottom:302.333333pt;}
.ycb{bottom:305.733333pt;}
.ybb{bottom:306.786667pt;}
.y64{bottom:312.133333pt;}
.yb0{bottom:313.626667pt;}
.y18{bottom:314.693333pt;}
.y12{bottom:314.720000pt;}
.y42{bottom:316.773333pt;}
.y32{bottom:318.213333pt;}
.y25{bottom:319.106667pt;}
.y9e{bottom:320.253333pt;}
.y8a{bottom:323.653333pt;}
.y79{bottom:323.813333pt;}
.yce{bottom:325.413333pt;}
.y82{bottom:326.053333pt;}
.ya{bottom:330.333333pt;}
.y55{bottom:331.653333pt;}
.y49{bottom:332.293333pt;}
.yc2{bottom:332.453333pt;}
.ydd{bottom:334.373333pt;}
.y3f{bottom:336.293333pt;}
.y1{bottom:336.480000pt;}
.y17{bottom:337.093333pt;}
.y71{bottom:337.253333pt;}
.y66{bottom:338.853333pt;}
.yd6{bottom:339.773333pt;}
.yba{bottom:341.346667pt;}
.yca{bottom:341.413333pt;}
.y89{bottom:350.533333pt;}
.y3d{bottom:352.706667pt;}
.y24{bottom:352.866667pt;}
.y54{bottom:354.053333pt;}
.y95{bottom:354.813333pt;}
.yc1{bottom:354.853333pt;}
.ya6{bottom:355.106667pt;}
.y3e{bottom:355.813333pt;}
.y81{bottom:359.333333pt;}
.yaf{bottom:361.626667pt;}
.y78{bottom:364.133333pt;}
.y63{bottom:365.733333pt;}
.y5e{bottom:370.213333pt;}
.y9{bottom:370.653333pt;}
.yd5{bottom:373.053333pt;}
.y23{bottom:373.346667pt;}
.y41{bottom:375.333333pt;}
.yb9{bottom:375.906667pt;}
.yc0{bottom:377.253333pt;}
.y70{bottom:377.413333pt;}
.y65{bottom:379.173333pt;}
.y9d{bottom:389.373333pt;}
.y53{bottom:389.733333pt;}
.y80{bottom:392.613333pt;}
.y94{bottom:396.133333pt;}
.y6f{bottom:404.293333pt;}
.y22{bottom:407.293333pt;}
.y48{bottom:408.133333pt;}
.y8{bottom:410.973333pt;}
.y11{bottom:411.653333pt;}
.y52{bottom:412.133333pt;}
.ybf{bottom:412.933333pt;}
.y62{bottom:419.493333pt;}
.yd4{bottom:419.653333pt;}
.yb8{bottom:423.773333pt;}
.y40{bottom:424.093333pt;}
.y7f{bottom:425.893333pt;}
.ya5{bottom:426.560000pt;}
.y21{bottom:427.773333pt;}
.y6e{bottom:431.173333pt;}
.y47{bottom:432.773333pt;}
.y51{bottom:434.533333pt;}
.ybe{bottom:435.333333pt;}
.y9c{bottom:437.213333pt;}
.y93{bottom:437.413333pt;}
.y7{bottom:451.333333pt;}
.y10{bottom:451.973333pt;}
.yd3{bottom:452.933333pt;}
.yae{bottom:457.346667pt;}
.yb7{bottom:458.333333pt;}
.y20{bottom:461.533333pt;}
.ybd{bottom:468.960000pt;}
.y9b{bottom:471.773333pt;}
.y5d{bottom:473.826667pt;}
.y92{bottom:479.813333pt;}
.y1f{bottom:482.013333pt;}
.y46{bottom:484.386667pt;}
.yd2{bottom:486.213333pt;}
.y6{bottom:491.653333pt;}
.yad{bottom:491.906667pt;}
.yf{bottom:492.320000pt;}
.yb6{bottom:492.893333pt;}
.ya4{bottom:498.013333pt;}
.yc9{bottom:503.520000pt;}
.y1e{bottom:515.773333pt;}
.y9a{bottom:518.373333pt;}
.yac{bottom:526.466667pt;}
.yb5{bottom:527.453333pt;}
.y1d{bottom:536.253333pt;}
.yab{bottom:561.026667pt;}
.ya3{bottom:569.440000pt;}
.y5{bottom:593.666667pt;}
.ydc{bottom:597.666667pt;}
.yb4{bottom:611.773333pt;}
.y1c{bottom:614.626667pt;}
.yaa{bottom:616.960000pt;}
.ya2{bottom:640.893333pt;}
.hd{height:6.365625pt;}
.he{height:19.680000pt;}
.hc{height:19.712000pt;}
.h7{height:44.217500pt;}
.h6{height:56.233125pt;}
.h9{height:63.923125pt;}
.hb{height:64.006250pt;}
.ha{height:64.019250pt;}
.h1e{height:79.570312pt;}
.h1f{height:79.697625pt;}
.h15{height:80.264375pt;}
.h16{height:80.360500pt;}
.h11{height:80.368750pt;}
.h12{height:87.954375pt;}
.h14{height:88.050500pt;}
.h13{height:88.068750pt;}
.h19{height:96.125000pt;}
.h1a{height:96.221125pt;}
.h21{height:96.250000pt;}
.h22{height:96.346250pt;}
.h1b{height:104.295625pt;}
.h1c{height:104.391750pt;}
.h23{height:109.936142pt;}
.h5{height:111.985625pt;}
.h3{height:112.081750pt;}
.h17{height:112.131250pt;}
.h18{height:112.227500pt;}
.h20{height:116.462500pt;}
.h8{height:128.493750pt;}
.h1d{height:128.590000pt;}
.h1{height:160.256250pt;}
.h2{height:160.352500pt;}
.h4{height:176.715000pt;}
.h10{height:184.079375pt;}
.hf{height:184.175500pt;}
.h0{height:720.000000pt;}
.w2{width:76.160000pt;}
.w3{width:113.152000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.159981pt;}
.x26{left:58.271981pt;}
.x11{left:63.840000pt;}
.x18{left:74.303981pt;}
.x1d{left:80.575981pt;}
.x1{left:86.751981pt;}
.x3{left:97.599981pt;}
.x27{left:106.271981pt;}
.x2b{left:110.975981pt;}
.x17{left:115.647981pt;}
.x1e{left:116.575981pt;}
.x2c{left:119.615981pt;}
.x2e{left:121.215981pt;}
.x19{left:122.303981pt;}
.x1f{left:128.511981pt;}
.x29{left:133.786648pt;}
.x3b{left:139.493314pt;}
.x4{left:145.626648pt;}
.x10{left:149.466667pt;}
.x24{left:151.653314pt;}
.x20{left:163.653314pt;}
.x2f{left:169.786648pt;}
.x28{left:170.813314pt;}
.xf{left:187.133314pt;}
.x7{left:202.853314pt;}
.x37{left:203.906648pt;}
.x2d{left:221.373314pt;}
.x2{left:243.613314pt;}
.x23{left:304.546648pt;}
.x12{left:308.253314pt;}
.x38{left:349.826648pt;}
.x16{left:366.786648pt;}
.x8{left:370.013314pt;}
.x36{left:377.026648pt;}
.x22{left:392.226648pt;}
.x1c{left:415.266648pt;}
.x25{left:454.146648pt;}
.x33{left:472.706648pt;}
.x34{left:492.893314pt;}
.x3a{left:494.906648pt;}
.x5{left:509.373314pt;}
.x9{left:519.266648pt;}
.x13{left:552.639981pt;}
.x2a{left:596.066648pt;}
.x1a{left:649.693314pt;}
.x32{left:657.693314pt;}
.xa{left:673.853314pt;}
.x21{left:685.693314pt;}
.x1b{left:697.693314pt;}
.x30{left:714.719981pt;}
.x35{left:751.493314pt;}
.x14{left:796.986648pt;}
.xb{left:843.613314pt;}
.x31{left:846.746648pt;}
.xc{left:849.693314pt;}
.xe{left:1013.213314pt;}
.xd{left:1018.333314pt;}
.x15{left:1041.346648pt;}
.x39{left:1092.959981pt;}
}




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