
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_b0f9f4a1950d56eb150b346b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9a795e221f52d3a3043d6320.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_ea8c359663b614cd55fcbb1e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_0fd1d3781635030390bf6fef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_80ea5852598d0557bb689b3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_64bf3721125407bb825012b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_9b26ff904fb3ad141447a682.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_27e313e3067f4d8a65433ebc.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ae818a76c547e6cc24d61cf2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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:ffd;src:url('chunks/assets/font_b836caa91a987fe0d2d62896.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914551;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:ffe;src:url('chunks/assets/font_793f591461984dd73805d966.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d2a4f816ef0d77f6c9dfb7f0.woff2')format("woff");}.fff{font-family:fff;line-height:0.854492;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:ff10;src:url('chunks/assets/font_398bb0083ddb704e468c2f4f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.783691;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:ff11;src:url('chunks/assets/font_38563382d8cb3522a6526af4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5f9485d08142d3b506cfee14.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f393fc82f5f8879f92b82e42.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.666000px;}
.ls16{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.lsb{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.224400px;}
.ls15{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.900000px;}
.ls10{letter-spacing:3.060000px;}
.lsc{letter-spacing:3.780000px;}
.ls11{letter-spacing:14.346720px;}
.lsf{letter-spacing:21.546720px;}
.ls12{letter-spacing:22.680000px;}
.ls7{letter-spacing:44.562720px;}
.ls6{letter-spacing:44.586720px;}
.ls14{letter-spacing:54.180000px;}
.lse{letter-spacing:114.660000px;}
.lsd{letter-spacing:151.380000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.669200px;}
.ws2{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.274000px;}
.ws6{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.147200px;}
.ws7{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.924560px;}
.ws5{word-spacing:-10.612800px;}
.ws8{word-spacing:0.000000px;}
._52{margin-left:-11.386800px;}
._57{margin-left:-9.153360px;}
._30{margin-left:-3.824640px;}
._21{margin-left:-2.750400px;}
._2{margin-left:-1.656000px;}
._0{width:1.434240px;}
._1{width:2.488320px;}
._3{width:3.944160px;}
._4{width:4.960080px;}
._c{width:6.932160px;}
._d{width:8.545680px;}
._a{width:9.979920px;}
._b{width:11.593440px;}
._18{width:12.895200px;}
._2b{width:13.898880px;}
._5{width:14.903760px;}
._12{width:16.797360px;}
._7{width:18.645120px;}
._6{width:19.720800px;}
._2f{width:21.513600px;}
._11{width:22.828320px;}
._20{width:24.185520px;}
._8{width:25.398000px;}
._9{width:26.413920px;}
._10{width:27.848160px;}
._13{width:28.889280px;}
._e{width:30.238560px;}
._f{width:31.314240px;}
._25{width:32.569200px;}
._1b{width:33.704640px;}
._1a{width:35.497440px;}
._19{width:36.573120px;}
._29{width:37.589040px;}
._2a{width:38.844000px;}
._16{width:39.859920px;}
._17{width:40.875840px;}
._1f{width:42.250320px;}
._24{width:44.222400px;}
._1e{width:45.835920px;}
._26{width:47.031120px;}
._15{width:48.286080px;}
._14{width:50.019120px;}
._1d{width:51.333840px;}
._2e{width:52.716240px;}
._37{width:54.620640px;}
._23{width:55.696320px;}
._38{width:56.831760px;}
._32{width:57.847680px;}
._3e{width:59.461200px;}
._27{width:60.596640px;}
._49{width:61.672320px;}
._35{width:63.226080px;}
._2c{width:64.540800px;}
._31{width:66.167040px;}
._3c{width:67.528800px;}
._41{width:68.766480px;}
._47{width:71.174160px;}
._36{width:72.309600px;}
._1c{width:74.085120px;}
._33{width:75.852720px;}
._48{width:77.269680px;}
._34{width:78.584400px;}
._51{width:80.548560px;}
._3a{width:81.819360px;}
._4a{width:83.417040px;}
._42{width:89.281440px;}
._43{width:90.686160px;}
._45{width:92.747520px;}
._44{width:96.452640px;}
._22{width:98.125920px;}
._4f{width:99.380880px;}
._46{width:103.572000px;}
._2d{width:105.297120px;}
._4c{width:107.321040px;}
._28{width:108.464400px;}
._3d{width:116.352720px;}
._40{width:117.786960px;}
._55{width:119.468160px;}
._56{width:120.535920px;}
._50{width:122.175360px;}
._3b{width:130.157280px;}
._3f{width:132.248880px;}
._54{width:139.119840px;}
._53{width:156.841200px;}
._4b{width:164.788560px;}
._4e{width:170.196480px;}
._4d{width:183.642480px;}
._39{width:229.418640px;}
.fc5{color:transparent;}
.fc6{color:rgb(0,112,192);}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs9{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:81.965417px;}
.y57{bottom:-10.620000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:3.285000px;}
.y5{bottom:3.600000px;}
.y56{bottom:3.780000px;}
.y3e{bottom:4.680000px;}
.y54{bottom:5.400000px;}
.y3b{bottom:20.925000px;}
.y53{bottom:31.860000px;}
.y3a{bottom:38.385000px;}
.y39{bottom:56.025000px;}
.y3{bottom:58.140000px;}
.y52{bottom:64.440000px;}
.y38{bottom:73.665000px;}
.y2{bottom:80.100000px;}
.y37{bottom:91.305000px;}
.y36{bottom:108.765000px;}
.ybd{bottom:122.940000px;}
.y92{bottom:123.300000px;}
.y35{bottom:126.405000px;}
.y55{bottom:130.860000px;}
.y91{bottom:140.580000px;}
.y34{bottom:144.045000px;}
.yaa{bottom:157.500000px;}
.y90{bottom:157.860000px;}
.y33{bottom:161.505000px;}
.y4f{bottom:165.960000px;}
.y8f{bottom:175.140000px;}
.y32{bottom:179.145000px;}
.y4e{bottom:183.240000px;}
.y23{bottom:187.425000px;}
.y8e{bottom:192.060000px;}
.y94{bottom:192.420000px;}
.y31{bottom:196.785000px;}
.y4d{bottom:200.340000px;}
.y22{bottom:205.605000px;}
.y97{bottom:209.340000px;}
.y8d{bottom:209.700000px;}
.y30{bottom:214.245000px;}
.y4c{bottom:217.650000px;}
.y21{bottom:223.965000px;}
.y96{bottom:226.470000px;}
.y8c{bottom:226.830000px;}
.y2f{bottom:231.885000px;}
.y4b{bottom:234.930000px;}
.y20{bottom:239.475000px;}
.y8b{bottom:244.110000px;}
.y2e{bottom:249.555000px;}
.y4a{bottom:252.210000px;}
.y1f{bottom:253.515000px;}
.y8a{bottom:261.390000px;}
.y2d{bottom:267.195000px;}
.y1e{bottom:267.555000px;}
.y49{bottom:269.490000px;}
.yb3{bottom:278.310000px;}
.y89{bottom:278.670000px;}
.y1d{bottom:281.595000px;}
.y2c{bottom:284.655000px;}
.y48{bottom:286.770000px;}
.y9e{bottom:295.590000px;}
.y1c{bottom:295.635000px;}
.y88{bottom:295.950000px;}
.y2b{bottom:302.295000px;}
.y47{bottom:303.870000px;}
.y1b{bottom:309.495000px;}
.y87{bottom:313.230000px;}
.y2a{bottom:319.935000px;}
.y46{bottom:321.150000px;}
.y1a{bottom:323.355000px;}
.yad{bottom:329.970000px;}
.y86{bottom:330.330000px;}
.y19{bottom:337.035000px;}
.y29{bottom:337.395000px;}
.y45{bottom:338.430000px;}
.ya1{bottom:347.250000px;}
.y85{bottom:347.610000px;}
.y18{bottom:351.255000px;}
.y28{bottom:355.035000px;}
.y44{bottom:355.710000px;}
.y9b{bottom:364.530000px;}
.y84{bottom:364.890000px;}
.y17{bottom:365.295000px;}
.y27{bottom:372.675000px;}
.y43{bottom:372.990000px;}
.y16{bottom:379.335000px;}
.ya0{bottom:381.810000px;}
.y83{bottom:382.170000px;}
.y26{bottom:390.135000px;}
.y42{bottom:390.270000px;}
.y15{bottom:393.915000px;}
.y82{bottom:399.450000px;}
.y41{bottom:407.010000px;}
.y50{bottom:407.370000px;}
.y25{bottom:407.775000px;}
.y14{bottom:411.915000px;}
.y81{bottom:416.730000px;}
.y40{bottom:424.290000px;}
.y24{bottom:428.475000px;}
.y13{bottom:429.015000px;}
.yb2{bottom:433.470000px;}
.y80{bottom:433.830000px;}
.y3f{bottom:438.690000px;}
.y3d{bottom:440.850000px;}
.y12{bottom:446.790000px;}
.y7f{bottom:450.795000px;}
.y93{bottom:451.155000px;}
.y7e{bottom:468.435000px;}
.y7d{bottom:485.715000px;}
.ybc{bottom:502.635000px;}
.y7c{bottom:502.995000px;}
.ybb{bottom:519.735000px;}
.y7b{bottom:520.095000px;}
.y7a{bottom:537.375000px;}
.y79{bottom:554.655000px;}
.yb1{bottom:571.575000px;}
.y78{bottom:571.935000px;}
.ya7{bottom:588.855000px;}
.y77{bottom:589.215000px;}
.ya6{bottom:606.135000px;}
.y76{bottom:606.495000px;}
.ya2{bottom:623.235000px;}
.y75{bottom:623.595000px;}
.y74{bottom:640.875000px;}
.y73{bottom:658.155000px;}
.yb0{bottom:675.075000px;}
.y72{bottom:675.435000px;}
.y95{bottom:692.385000px;}
.y71{bottom:692.745000px;}
.yba{bottom:709.665000px;}
.y70{bottom:710.025000px;}
.yb6{bottom:726.765000px;}
.y6f{bottom:727.125000px;}
.ya9{bottom:744.045000px;}
.y6e{bottom:744.405000px;}
.yac{bottom:761.325000px;}
.y6d{bottom:761.685000px;}
.y9a{bottom:778.605000px;}
.y6c{bottom:778.965000px;}
.yaf{bottom:795.885000px;}
.y6b{bottom:796.245000px;}
.y6a{bottom:813.345000px;}
.y69{bottom:830.625000px;}
.ya5{bottom:847.545000px;}
.y68{bottom:847.905000px;}
.ya4{bottom:864.825000px;}
.y67{bottom:865.185000px;}
.ya3{bottom:882.105000px;}
.y66{bottom:882.465000px;}
.y11{bottom:894.705000px;}
.ya8{bottom:899.385000px;}
.y65{bottom:899.745000px;}
.yae{bottom:916.485000px;}
.y10{bottom:916.845000px;}
.yb9{bottom:933.810000px;}
.y64{bottom:934.170000px;}
.yf{bottom:934.350000px;}
.yb8{bottom:951.090000px;}
.y63{bottom:951.450000px;}
.ye{bottom:953.250000px;}
.y9f{bottom:968.370000px;}
.y62{bottom:968.730000px;}
.yd{bottom:972.690000px;}
.y99{bottom:985.650000px;}
.y61{bottom:986.010000px;}
.yc{bottom:995.190000px;}
.y98{bottom:1002.930000px;}
.y60{bottom:1003.290000px;}
.yb{bottom:1017.510000px;}
.y5f{bottom:1020.390000px;}
.yab{bottom:1037.310000px;}
.y5e{bottom:1037.670000px;}
.ya{bottom:1041.090000px;}
.yb5{bottom:1054.590000px;}
.y5d{bottom:1054.950000px;}
.y9{bottom:1064.850000px;}
.y51{bottom:1070.250000px;}
.y9d{bottom:1071.870000px;}
.y5c{bottom:1072.230000px;}
.y8{bottom:1088.790000px;}
.y9c{bottom:1089.150000px;}
.y5b{bottom:1089.510000px;}
.y5a{bottom:1106.790000px;}
.y7{bottom:1112.550000px;}
.yb7{bottom:1123.530000px;}
.y59{bottom:1123.890000px;}
.y6{bottom:1136.310000px;}
.yb4{bottom:1140.810000px;}
.y58{bottom:1141.170000px;}
.y4{bottom:1171.260000px;}
.y1{bottom:1191.240000px;}
.h11{height:5.653125px;}
.h12{height:5.805000px;}
.h13{height:5.920372px;}
.h10{height:5.940000px;}
.h1a{height:14.940000px;}
.h4{height:17.280000px;}
.h1c{height:40.655391px;}
.hd{height:40.843828px;}
.h16{height:41.756133px;}
.h1d{height:42.164648px;}
.hf{height:45.720703px;}
.h1b{height:47.321367px;}
.h3{height:47.980898px;}
.h19{height:48.616875px;}
.hc{height:49.583118px;}
.he{height:50.218594px;}
.hb{height:50.597578px;}
.h1e{height:58.621992px;}
.h5{height:58.651172px;}
.h14{height:60.226875px;}
.h15{height:61.423863px;}
.h9{height:66.757500px;}
.h18{height:72.562500px;}
.h2{height:77.342344px;}
.h7{height:78.367500px;}
.h6{height:79.620469px;}
.h17{height:81.180000px;}
.h8{height:85.327280px;}
.ha{height:442.695000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w3{width:502.125000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.065000px;}
.w9{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x11{left:10.800000px;}
.xa{left:20.700000px;}
.x2{left:27.000000px;}
.x3{left:31.140000px;}
.x6{left:53.999987px;}
.xd{left:62.994000px;}
.x10{left:89.496000px;}
.x1{left:108.035987px;}
.x7{left:119.015987px;}
.x15{left:135.035987px;}
.xc{left:140.616000px;}
.xe{left:157.539000px;}
.x14{left:162.029987px;}
.x9{left:267.195000px;}
.xf{left:312.549000px;}
.x5{left:446.504987px;}
.x4{left:456.404987px;}
.xb{left:473.144987px;}
.x16{left:486.644987px;}
.x12{left:500.144987px;}
.x13{left:527.144987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.592000pt;}
.ls16{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.lsb{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.199467pt;}
.ls15{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls10{letter-spacing:2.720000pt;}
.lsc{letter-spacing:3.360000pt;}
.ls11{letter-spacing:12.752640pt;}
.lsf{letter-spacing:19.152640pt;}
.ls12{letter-spacing:20.160000pt;}
.ls7{letter-spacing:39.611307pt;}
.ls6{letter-spacing:39.632640pt;}
.ls14{letter-spacing:48.160000pt;}
.lse{letter-spacing:101.920000pt;}
.lsd{letter-spacing:134.560000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.817067pt;}
.ws2{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.wsf{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.688000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.686400pt;}
.ws7{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.710720pt;}
.ws5{word-spacing:-9.433600pt;}
.ws8{word-spacing:0.000000pt;}
._52{margin-left:-10.121600pt;}
._57{margin-left:-8.136320pt;}
._30{margin-left:-3.399680pt;}
._21{margin-left:-2.444800pt;}
._2{margin-left:-1.472000pt;}
._0{width:1.274880pt;}
._1{width:2.211840pt;}
._3{width:3.505920pt;}
._4{width:4.408960pt;}
._c{width:6.161920pt;}
._d{width:7.596160pt;}
._a{width:8.871040pt;}
._b{width:10.305280pt;}
._18{width:11.462400pt;}
._2b{width:12.354560pt;}
._5{width:13.247787pt;}
._12{width:14.930987pt;}
._7{width:16.573440pt;}
._6{width:17.529600pt;}
._2f{width:19.123200pt;}
._11{width:20.291840pt;}
._20{width:21.498240pt;}
._8{width:22.576000pt;}
._9{width:23.479040pt;}
._10{width:24.753920pt;}
._13{width:25.679360pt;}
._e{width:26.878720pt;}
._f{width:27.834880pt;}
._25{width:28.950400pt;}
._1b{width:29.959680pt;}
._1a{width:31.553280pt;}
._19{width:32.509440pt;}
._29{width:33.412480pt;}
._2a{width:34.528000pt;}
._16{width:35.431040pt;}
._17{width:36.334080pt;}
._1f{width:37.555840pt;}
._24{width:39.308800pt;}
._1e{width:40.743040pt;}
._26{width:41.805440pt;}
._15{width:42.920960pt;}
._14{width:44.461440pt;}
._1d{width:45.630080pt;}
._2e{width:46.858880pt;}
._37{width:48.551680pt;}
._23{width:49.507840pt;}
._38{width:50.517120pt;}
._32{width:51.420160pt;}
._3e{width:52.854400pt;}
._27{width:53.863680pt;}
._49{width:54.819840pt;}
._35{width:56.200960pt;}
._2c{width:57.369600pt;}
._31{width:58.815147pt;}
._3c{width:60.025600pt;}
._41{width:61.125760pt;}
._47{width:63.265920pt;}
._36{width:64.275200pt;}
._1c{width:65.853440pt;}
._33{width:67.424640pt;}
._48{width:68.684160pt;}
._34{width:69.852800pt;}
._51{width:71.598720pt;}
._3a{width:72.728320pt;}
._4a{width:74.148480pt;}
._42{width:79.361280pt;}
._43{width:80.609920pt;}
._45{width:82.442240pt;}
._44{width:85.735680pt;}
._22{width:87.223040pt;}
._4f{width:88.338560pt;}
._46{width:92.064000pt;}
._2d{width:93.597440pt;}
._4c{width:95.396480pt;}
._28{width:96.412800pt;}
._3d{width:103.424640pt;}
._40{width:104.699520pt;}
._55{width:106.193920pt;}
._56{width:107.143040pt;}
._50{width:108.600320pt;}
._3b{width:115.695360pt;}
._3f{width:117.554560pt;}
._54{width:123.662080pt;}
._53{width:139.414400pt;}
._4b{width:146.478720pt;}
._4e{width:151.285760pt;}
._4d{width:163.237760pt;}
._39{width:203.927680pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:72.858149pt;}
.y57{bottom:-9.440000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:2.920000pt;}
.y5{bottom:3.200000pt;}
.y56{bottom:3.360000pt;}
.y3e{bottom:4.160000pt;}
.y54{bottom:4.800000pt;}
.y3b{bottom:18.600000pt;}
.y53{bottom:28.320000pt;}
.y3a{bottom:34.120000pt;}
.y39{bottom:49.800000pt;}
.y3{bottom:51.680000pt;}
.y52{bottom:57.280000pt;}
.y38{bottom:65.480000pt;}
.y2{bottom:71.200000pt;}
.y37{bottom:81.160000pt;}
.y36{bottom:96.680000pt;}
.ybd{bottom:109.280000pt;}
.y92{bottom:109.600000pt;}
.y35{bottom:112.360000pt;}
.y55{bottom:116.320000pt;}
.y91{bottom:124.960000pt;}
.y34{bottom:128.040000pt;}
.yaa{bottom:140.000000pt;}
.y90{bottom:140.320000pt;}
.y33{bottom:143.560000pt;}
.y4f{bottom:147.520000pt;}
.y8f{bottom:155.680000pt;}
.y32{bottom:159.240000pt;}
.y4e{bottom:162.880000pt;}
.y23{bottom:166.600000pt;}
.y8e{bottom:170.720000pt;}
.y94{bottom:171.040000pt;}
.y31{bottom:174.920000pt;}
.y4d{bottom:178.080000pt;}
.y22{bottom:182.760000pt;}
.y97{bottom:186.080000pt;}
.y8d{bottom:186.400000pt;}
.y30{bottom:190.440000pt;}
.y4c{bottom:193.466667pt;}
.y21{bottom:199.080000pt;}
.y96{bottom:201.306667pt;}
.y8c{bottom:201.626667pt;}
.y2f{bottom:206.120000pt;}
.y4b{bottom:208.826667pt;}
.y20{bottom:212.866667pt;}
.y8b{bottom:216.986667pt;}
.y2e{bottom:221.826667pt;}
.y4a{bottom:224.186667pt;}
.y1f{bottom:225.346667pt;}
.y8a{bottom:232.346667pt;}
.y2d{bottom:237.506667pt;}
.y1e{bottom:237.826667pt;}
.y49{bottom:239.546667pt;}
.yb3{bottom:247.386667pt;}
.y89{bottom:247.706667pt;}
.y1d{bottom:250.306667pt;}
.y2c{bottom:253.026667pt;}
.y48{bottom:254.906667pt;}
.y9e{bottom:262.746667pt;}
.y1c{bottom:262.786667pt;}
.y88{bottom:263.066667pt;}
.y2b{bottom:268.706667pt;}
.y47{bottom:270.106667pt;}
.y1b{bottom:275.106667pt;}
.y87{bottom:278.426667pt;}
.y2a{bottom:284.386667pt;}
.y46{bottom:285.466667pt;}
.y1a{bottom:287.426667pt;}
.yad{bottom:293.306667pt;}
.y86{bottom:293.626667pt;}
.y19{bottom:299.586667pt;}
.y29{bottom:299.906667pt;}
.y45{bottom:300.826667pt;}
.ya1{bottom:308.666667pt;}
.y85{bottom:308.986667pt;}
.y18{bottom:312.226667pt;}
.y28{bottom:315.586667pt;}
.y44{bottom:316.186667pt;}
.y9b{bottom:324.026667pt;}
.y84{bottom:324.346667pt;}
.y17{bottom:324.706667pt;}
.y27{bottom:331.266667pt;}
.y43{bottom:331.546667pt;}
.y16{bottom:337.186667pt;}
.ya0{bottom:339.386667pt;}
.y83{bottom:339.706667pt;}
.y26{bottom:346.786667pt;}
.y42{bottom:346.906667pt;}
.y15{bottom:350.146667pt;}
.y82{bottom:355.066667pt;}
.y41{bottom:361.786667pt;}
.y50{bottom:362.106667pt;}
.y25{bottom:362.466667pt;}
.y14{bottom:366.146667pt;}
.y81{bottom:370.426667pt;}
.y40{bottom:377.146667pt;}
.y24{bottom:380.866667pt;}
.y13{bottom:381.346667pt;}
.yb2{bottom:385.306667pt;}
.y80{bottom:385.626667pt;}
.y3f{bottom:389.946667pt;}
.y3d{bottom:391.866667pt;}
.y12{bottom:397.146667pt;}
.y7f{bottom:400.706667pt;}
.y93{bottom:401.026667pt;}
.y7e{bottom:416.386667pt;}
.y7d{bottom:431.746667pt;}
.ybc{bottom:446.786667pt;}
.y7c{bottom:447.106667pt;}
.ybb{bottom:461.986667pt;}
.y7b{bottom:462.306667pt;}
.y7a{bottom:477.666667pt;}
.y79{bottom:493.026667pt;}
.yb1{bottom:508.066667pt;}
.y78{bottom:508.386667pt;}
.ya7{bottom:523.426667pt;}
.y77{bottom:523.746667pt;}
.ya6{bottom:538.786667pt;}
.y76{bottom:539.106667pt;}
.ya2{bottom:553.986667pt;}
.y75{bottom:554.306667pt;}
.y74{bottom:569.666667pt;}
.y73{bottom:585.026667pt;}
.yb0{bottom:600.066667pt;}
.y72{bottom:600.386667pt;}
.y95{bottom:615.453333pt;}
.y71{bottom:615.773333pt;}
.yba{bottom:630.813333pt;}
.y70{bottom:631.133333pt;}
.yb6{bottom:646.013333pt;}
.y6f{bottom:646.333333pt;}
.ya9{bottom:661.373333pt;}
.y6e{bottom:661.693333pt;}
.yac{bottom:676.733333pt;}
.y6d{bottom:677.053333pt;}
.y9a{bottom:692.093333pt;}
.y6c{bottom:692.413333pt;}
.yaf{bottom:707.453333pt;}
.y6b{bottom:707.773333pt;}
.y6a{bottom:722.973333pt;}
.y69{bottom:738.333333pt;}
.ya5{bottom:753.373333pt;}
.y68{bottom:753.693333pt;}
.ya4{bottom:768.733333pt;}
.y67{bottom:769.053333pt;}
.ya3{bottom:784.093333pt;}
.y66{bottom:784.413333pt;}
.y11{bottom:795.293333pt;}
.ya8{bottom:799.453333pt;}
.y65{bottom:799.773333pt;}
.yae{bottom:814.653333pt;}
.y10{bottom:814.973333pt;}
.yb9{bottom:830.053333pt;}
.y64{bottom:830.373333pt;}
.yf{bottom:830.533333pt;}
.yb8{bottom:845.413333pt;}
.y63{bottom:845.733333pt;}
.ye{bottom:847.333333pt;}
.y9f{bottom:860.773333pt;}
.y62{bottom:861.093333pt;}
.yd{bottom:864.613333pt;}
.y99{bottom:876.133333pt;}
.y61{bottom:876.453333pt;}
.yc{bottom:884.613333pt;}
.y98{bottom:891.493333pt;}
.y60{bottom:891.813333pt;}
.yb{bottom:904.453333pt;}
.y5f{bottom:907.013333pt;}
.yab{bottom:922.053333pt;}
.y5e{bottom:922.373333pt;}
.ya{bottom:925.413333pt;}
.yb5{bottom:937.413333pt;}
.y5d{bottom:937.733333pt;}
.y9{bottom:946.533333pt;}
.y51{bottom:951.333333pt;}
.y9d{bottom:952.773333pt;}
.y5c{bottom:953.093333pt;}
.y8{bottom:967.813333pt;}
.y9c{bottom:968.133333pt;}
.y5b{bottom:968.453333pt;}
.y5a{bottom:983.813333pt;}
.y7{bottom:988.933333pt;}
.yb7{bottom:998.693333pt;}
.y59{bottom:999.013333pt;}
.y6{bottom:1010.053333pt;}
.yb4{bottom:1014.053333pt;}
.y58{bottom:1014.373333pt;}
.y4{bottom:1041.120000pt;}
.y1{bottom:1058.880000pt;}
.h11{height:5.025000pt;}
.h12{height:5.160000pt;}
.h13{height:5.262553pt;}
.h10{height:5.280000pt;}
.h1a{height:13.280000pt;}
.h4{height:15.360000pt;}
.h1c{height:36.138125pt;}
.hd{height:36.305625pt;}
.h16{height:37.116563pt;}
.h1d{height:37.479688pt;}
.hf{height:40.640625pt;}
.h1b{height:42.063437pt;}
.h3{height:42.649687pt;}
.h19{height:43.215000pt;}
.hc{height:44.073883pt;}
.he{height:44.638750pt;}
.hb{height:44.975625pt;}
.h1e{height:52.108438pt;}
.h5{height:52.134375pt;}
.h14{height:53.535000pt;}
.h15{height:54.598989pt;}
.h9{height:59.340000pt;}
.h18{height:64.500000pt;}
.h2{height:68.748750pt;}
.h7{height:69.660000pt;}
.h6{height:70.773750pt;}
.h17{height:72.160000pt;}
.h8{height:75.846471pt;}
.ha{height:393.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w3{width:446.333333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:555.613333pt;}
.w9{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x11{left:9.600000pt;}
.xa{left:18.400000pt;}
.x2{left:24.000000pt;}
.x3{left:27.680000pt;}
.x6{left:47.999988pt;}
.xd{left:55.994667pt;}
.x10{left:79.552000pt;}
.x1{left:96.031988pt;}
.x7{left:105.791988pt;}
.x15{left:120.031988pt;}
.xc{left:124.992000pt;}
.xe{left:140.034667pt;}
.x14{left:144.026655pt;}
.x9{left:237.506667pt;}
.xf{left:277.821333pt;}
.x5{left:396.893322pt;}
.x4{left:405.693322pt;}
.xb{left:420.573322pt;}
.x16{left:432.573322pt;}
.x12{left:444.573322pt;}
.x13{left:468.573322pt;}
}




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