
    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_859e833d030dfacfa99dca7a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_e974867f5ba6b15f33db7735.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_60a6fd99613ea2ec6915fefd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_be2e92686b89043f34b9bc9b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_7b2f88f360314b5dacafb75a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c9f4b3e005aef0bff85ae32f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c1c6507ae4f2726d16e35197.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ba1522e4602ade5b14f9b4cc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_148f74ffecf6fc2ca6bb2930.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9161ca7ffbf579f71e8fe29e.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6bc14217e28e97e2fc046924.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a844f19044548dd0a131b7ae.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1de4116b2d15e3f8830128f0.woff')format("woff");}.ff12{font-family:ff12;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_36941edf6bc7daed153403e1.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.190200px;}
.ls15{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.114000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078000px;}
.ls10{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.576000px;}
.lsd{letter-spacing:34.841280px;}
.ls6{letter-spacing:39.905280px;}
.ls14{letter-spacing:46.026720px;}
.lse{letter-spacing:49.961280px;}
.lsf{letter-spacing:49.985280px;}
.ls11{letter-spacing:64.002720px;}
.ls12{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.ws8{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws9{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.wsc{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.650800px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._b{width:2.149680px;}
._9{width:4.009680px;}
._33{width:5.131440px;}
._17{width:7.220160px;}
._3{width:8.809920px;}
._34{width:10.267200px;}
._18{width:11.459520px;}
._36{width:13.512960px;}
._d{width:14.837760px;}
._8{width:18.282240px;}
._26{width:19.443600px;}
._a{width:20.600640px;}
._16{width:22.057920px;}
._15{width:23.219280px;}
._38{width:24.228720px;}
._14{width:25.303680px;}
._12{width:26.531280px;}
._13{width:27.660720px;}
._6{width:29.675520px;}
._7{width:30.903120px;}
._21{width:32.126400px;}
._3d{width:33.823440px;}
._3c{width:35.280000px;}
._10{width:36.498240px;}
._11{width:37.624320px;}
._1c{width:39.253680px;}
._5{width:40.340160px;}
._4{width:41.929920px;}
._20{width:44.084880px;}
._40{width:45.336000px;}
._3a{width:46.535760px;}
._e{width:47.891520px;}
._f{width:49.033440px;}
._44{width:50.181840px;}
._3e{width:51.871920px;}
._2a{width:53.000400px;}
._1b{width:54.322560px;}
._3b{width:55.972800px;}
._42{width:57.122640px;}
._2b{width:58.158720px;}
._2c{width:59.320080px;}
._37{width:61.090560px;}
._3f{width:62.129520px;}
._29{width:63.625680px;}
._43{width:66.065040px;}
._1a{width:68.328720px;}
._30{width:70.050960px;}
._4b{width:72.236880px;}
._47{width:76.425600px;}
._1f{width:78.626880px;}
._1e{width:79.724160px;}
._c{width:82.071360px;}
._2f{width:84.129120px;}
._35{width:86.774400px;}
._41{width:89.182800px;}
._22{width:91.477440px;}
._39{width:95.120640px;}
._2e{width:100.786320px;}
._45{width:101.978640px;}
._28{width:105.709920px;}
._27{width:107.256000px;}
._31{width:113.901840px;}
._49{width:121.635360px;}
._48{width:141.192720px;}
._4a{width:149.009040px;}
._25{width:152.893440px;}
._1d{width:162.654480px;}
._2{width:182.856000px;}
._23{width:189.617520px;}
._24{width:197.647200px;}
._2d{width:202.628160px;}
._19{width:226.576080px;}
._46{width:302.291280px;}
._32{width:511.076880px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y15{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y14{bottom:70.785000px;}
.y42{bottom:75.240000px;}
.y13{bottom:93.285000px;}
.yb5{bottom:126.180000px;}
.y93{bottom:126.900000px;}
.y7a{bottom:133.740000px;}
.y98{bottom:134.100000px;}
.y30{bottom:135.000000px;}
.yb4{bottom:145.980000px;}
.y91{bottom:151.560000px;}
.y79{bottom:158.400000px;}
.y97{bottom:158.760000px;}
.y2f{bottom:159.660000px;}
.y33{bottom:160.020000px;}
.yb3{bottom:165.780000px;}
.y90{bottom:176.220000px;}
.y78{bottom:183.060000px;}
.y96{bottom:183.420000px;}
.y2e{bottom:184.680000px;}
.yb2{bottom:185.580000px;}
.y8f{bottom:201.060000px;}
.yb1{bottom:205.560000px;}
.y6a{bottom:208.110000px;}
.y2d{bottom:209.370000px;}
.y8e{bottom:225.390000px;}
.y92{bottom:225.750000px;}
.y95{bottom:232.410000px;}
.y69{bottom:232.770000px;}
.y2c{bottom:234.030000px;}
.yb0{bottom:245.190000px;}
.y8d{bottom:250.410000px;}
.y68{bottom:257.430000px;}
.y2b{bottom:258.690000px;}
.yaf{bottom:264.990000px;}
.y8c{bottom:275.070000px;}
.y67{bottom:282.090000px;}
.y2a{bottom:283.350000px;}
.yae{bottom:284.790000px;}
.y8b{bottom:299.730000px;}
.yad{bottom:304.770000px;}
.y66{bottom:306.750000px;}
.y29{bottom:308.010000px;}
.y8a{bottom:324.390000px;}
.yac{bottom:324.570000px;}
.y9f{bottom:331.050000px;}
.y65{bottom:331.410000px;}
.y28{bottom:332.670000px;}
.yab{bottom:344.370000px;}
.y89{bottom:349.050000px;}
.y64{bottom:356.070000px;}
.y27{bottom:357.330000px;}
.yaa{bottom:364.170000px;}
.y88{bottom:373.710000px;}
.y63{bottom:380.730000px;}
.y26{bottom:381.990000px;}
.ya9{bottom:383.970000px;}
.y87{bottom:398.370000px;}
.ya8{bottom:403.950000px;}
.y62{bottom:405.030000px;}
.y77{bottom:405.390000px;}
.y25{bottom:406.650000px;}
.y86{bottom:423.030000px;}
.ya7{bottom:423.750000px;}
.y61{bottom:429.690000px;}
.y76{bottom:430.050000px;}
.y24{bottom:431.310000px;}
.ya6{bottom:443.595000px;}
.y85{bottom:443.775000px;}
.y60{bottom:454.395000px;}
.y75{bottom:454.755000px;}
.y23{bottom:456.015000px;}
.ya5{bottom:463.395000px;}
.y5f{bottom:479.595000px;}
.y22{bottom:480.675000px;}
.ya4{bottom:483.195000px;}
.ya3{bottom:503.535000px;}
.y5e{bottom:504.255000px;}
.y21{bottom:505.335000px;}
.y74{bottom:528.555000px;}
.y5d{bottom:528.915000px;}
.y32{bottom:529.635000px;}
.y20{bottom:529.995000px;}
.y73{bottom:553.215000px;}
.y5c{bottom:553.575000px;}
.y31{bottom:554.295000px;}
.y1f{bottom:554.655000px;}
.y5b{bottom:578.235000px;}
.y1e{bottom:578.955000px;}
.y1d{bottom:598.395000px;}
.y9e{bottom:602.535000px;}
.y5a{bottom:602.895000px;}
.y1c{bottom:622.155000px;}
.y9d{bottom:627.195000px;}
.y59{bottom:627.555000px;}
.y1b{bottom:644.115000px;}
.y9c{bottom:651.855000px;}
.y58{bottom:652.215000px;}
.y3f{bottom:668.415000px;}
.y3c{bottom:671.685018px;}
.y57{bottom:676.905000px;}
.y3b{bottom:693.105018px;}
.y56{bottom:701.565000px;}
.y84{bottom:712.185000px;}
.y3a{bottom:714.525018px;}
.y94{bottom:725.865000px;}
.y55{bottom:726.225000px;}
.y39{bottom:735.945018px;}
.y83{bottom:737.205000px;}
.y54{bottom:750.525000px;}
.y72{bottom:750.885000px;}
.y38{bottom:757.365018px;}
.y82{bottom:761.865000px;}
.y53{bottom:775.185000px;}
.y71{bottom:775.545000px;}
.y37{bottom:778.785018px;}
.y81{bottom:786.705000px;}
.ya2{bottom:799.845000px;}
.y52{bottom:800.205000px;}
.y36{bottom:800.205018px;}
.y80{bottom:811.365000px;}
.y35{bottom:821.625018px;}
.y9b{bottom:824.505000px;}
.y51{bottom:824.865000px;}
.y7f{bottom:836.025000px;}
.y3e{bottom:843.045000px;}
.y34{bottom:843.045018px;}
.y9a{bottom:849.165000px;}
.y50{bottom:849.525000px;}
.y7e{bottom:860.685000px;}
.y3d{bottom:864.465000px;}
.y99{bottom:873.825000px;}
.y4f{bottom:874.185000px;}
.y1a{bottom:883.725000px;}
.y7d{bottom:885.345000px;}
.y18{bottom:892.365000px;}
.y4e{bottom:898.845000px;}
.y12{bottom:899.565000px;}
.y17{bottom:903.893143px;}
.y7c{bottom:910.005000px;}
.y4d{bottom:923.550000px;}
.y7b{bottom:930.750000px;}
.y4c{bottom:948.210000px;}
.y70{bottom:972.510000px;}
.y4b{bottom:972.870000px;}
.y6f{bottom:997.170000px;}
.y4a{bottom:997.530000px;}
.y10{bottom:1018.590000px;}
.y6e{bottom:1021.830000px;}
.y49{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y48{bottom:1046.850000px;}
.ya1{bottom:1071.150000px;}
.y47{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.ya0{bottom:1095.810000px;}
.y46{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y45{bottom:1120.470000px;}
.y6d{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y44{bottom:1145.130000px;}
.y6c{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y43{bottom:1169.820000px;}
.y6b{bottom:1170.180000px;}
.y41{bottom:1187.280000px;}
.y40{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1e{height:30.480469px;}
.h18{height:36.861328px;}
.h20{height:46.251562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h1d{height:54.596250px;}
.h9{height:56.084062px;}
.h1f{height:58.621992px;}
.hb{height:60.960938px;}
.h22{height:61.423863px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1a{height:65.010937px;}
.h1b{height:66.757500px;}
.h14{height:67.803750px;}
.h23{height:67.837500px;}
.h1c{height:68.084282px;}
.h21{height:68.956875px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.530000px;}
.h12{height:119.002500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.x13{left:36.529500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x17{left:88.003500px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1f{left:113.076000px;}
.x21{left:135.036000px;}
.x20{left:140.076000px;}
.x26{left:162.030000px;}
.x4{left:168.885000px;}
.x1e{left:179.624880px;}
.x18{left:184.888500px;}
.x6{left:209.010000px;}
.x16{left:213.868500px;}
.x15{left:243.928500px;}
.x14{left:262.828500px;}
.x19{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1b{left:473.505000px;}
.x1c{left:478.545000px;}
.x29{left:488.985000px;}
.x23{left:500.505000px;}
.x1d{left:505.545000px;}
.x2a{left:515.985000px;}
.x24{left:527.505000px;}
.x27{left:554.505000px;}
.x22{left:558.105000px;}
.x28{left:581.505000px;}
.x25{left:673.350000px;}
.x7{left:722.490000px;}
.x1{left:761.010000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.169067pt;}
.ls15{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.101333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls10{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.512000pt;}
.lsd{letter-spacing:30.970027pt;}
.ls6{letter-spacing:35.471360pt;}
.ls14{letter-spacing:40.912640pt;}
.lse{letter-spacing:44.410027pt;}
.lsf{letter-spacing:44.431360pt;}
.ls11{letter-spacing:56.891307pt;}
.ls12{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws8{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws9{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._b{width:1.910827pt;}
._9{width:3.564160pt;}
._33{width:4.561280pt;}
._17{width:6.417920pt;}
._3{width:7.831040pt;}
._34{width:9.126400pt;}
._18{width:10.186240pt;}
._36{width:12.011520pt;}
._d{width:13.189120pt;}
._8{width:16.250880pt;}
._26{width:17.283200pt;}
._a{width:18.311680pt;}
._16{width:19.607040pt;}
._15{width:20.639360pt;}
._38{width:21.536640pt;}
._14{width:22.492160pt;}
._12{width:23.583360pt;}
._13{width:24.587307pt;}
._6{width:26.378240pt;}
._7{width:27.469440pt;}
._21{width:28.556800pt;}
._3d{width:30.065280pt;}
._3c{width:31.360000pt;}
._10{width:32.442880pt;}
._11{width:33.443840pt;}
._1c{width:34.892160pt;}
._5{width:35.857920pt;}
._4{width:37.271040pt;}
._20{width:39.186560pt;}
._40{width:40.298667pt;}
._3a{width:41.365120pt;}
._e{width:42.570240pt;}
._f{width:43.585280pt;}
._44{width:44.606080pt;}
._3e{width:46.108373pt;}
._2a{width:47.111467pt;}
._1b{width:48.286720pt;}
._3b{width:49.753600pt;}
._42{width:50.775680pt;}
._2b{width:51.696640pt;}
._2c{width:52.728960pt;}
._37{width:54.302720pt;}
._3f{width:55.226240pt;}
._29{width:56.556160pt;}
._43{width:58.724480pt;}
._1a{width:60.736640pt;}
._30{width:62.267520pt;}
._4b{width:64.210560pt;}
._47{width:67.933867pt;}
._1f{width:69.890560pt;}
._1e{width:70.865920pt;}
._c{width:72.952320pt;}
._2f{width:74.781440pt;}
._35{width:77.132800pt;}
._41{width:79.273600pt;}
._22{width:81.313280pt;}
._39{width:84.551680pt;}
._2e{width:89.587840pt;}
._45{width:90.647680pt;}
._28{width:93.964373pt;}
._27{width:95.338667pt;}
._31{width:101.246080pt;}
._49{width:108.120320pt;}
._48{width:125.504640pt;}
._4a{width:132.452480pt;}
._25{width:135.905280pt;}
._1d{width:144.581760pt;}
._2{width:162.538667pt;}
._23{width:168.548907pt;}
._24{width:175.686400pt;}
._2d{width:180.113920pt;}
._19{width:201.400960pt;}
._46{width:268.703360pt;}
._32{width:454.290560pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y15{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:62.920000pt;}
.y42{bottom:66.880000pt;}
.y13{bottom:82.920000pt;}
.yb5{bottom:112.160000pt;}
.y93{bottom:112.800000pt;}
.y7a{bottom:118.880000pt;}
.y98{bottom:119.200000pt;}
.y30{bottom:120.000000pt;}
.yb4{bottom:129.760000pt;}
.y91{bottom:134.720000pt;}
.y79{bottom:140.800000pt;}
.y97{bottom:141.120000pt;}
.y2f{bottom:141.920000pt;}
.y33{bottom:142.240000pt;}
.yb3{bottom:147.360000pt;}
.y90{bottom:156.640000pt;}
.y78{bottom:162.720000pt;}
.y96{bottom:163.040000pt;}
.y2e{bottom:164.160000pt;}
.yb2{bottom:164.960000pt;}
.y8f{bottom:178.720000pt;}
.yb1{bottom:182.720000pt;}
.y6a{bottom:184.986667pt;}
.y2d{bottom:186.106667pt;}
.y8e{bottom:200.346667pt;}
.y92{bottom:200.666667pt;}
.y95{bottom:206.586667pt;}
.y69{bottom:206.906667pt;}
.y2c{bottom:208.026667pt;}
.yb0{bottom:217.946667pt;}
.y8d{bottom:222.586667pt;}
.y68{bottom:228.826667pt;}
.y2b{bottom:229.946667pt;}
.yaf{bottom:235.546667pt;}
.y8c{bottom:244.506667pt;}
.y67{bottom:250.746667pt;}
.y2a{bottom:251.866667pt;}
.yae{bottom:253.146667pt;}
.y8b{bottom:266.426667pt;}
.yad{bottom:270.906667pt;}
.y66{bottom:272.666667pt;}
.y29{bottom:273.786667pt;}
.y8a{bottom:288.346667pt;}
.yac{bottom:288.506667pt;}
.y9f{bottom:294.266667pt;}
.y65{bottom:294.586667pt;}
.y28{bottom:295.706667pt;}
.yab{bottom:306.106667pt;}
.y89{bottom:310.266667pt;}
.y64{bottom:316.506667pt;}
.y27{bottom:317.626667pt;}
.yaa{bottom:323.706667pt;}
.y88{bottom:332.186667pt;}
.y63{bottom:338.426667pt;}
.y26{bottom:339.546667pt;}
.ya9{bottom:341.306667pt;}
.y87{bottom:354.106667pt;}
.ya8{bottom:359.066667pt;}
.y62{bottom:360.026667pt;}
.y77{bottom:360.346667pt;}
.y25{bottom:361.466667pt;}
.y86{bottom:376.026667pt;}
.ya7{bottom:376.666667pt;}
.y61{bottom:381.946667pt;}
.y76{bottom:382.266667pt;}
.y24{bottom:383.386667pt;}
.ya6{bottom:394.306667pt;}
.y85{bottom:394.466667pt;}
.y60{bottom:403.906667pt;}
.y75{bottom:404.226667pt;}
.y23{bottom:405.346667pt;}
.ya5{bottom:411.906667pt;}
.y5f{bottom:426.306667pt;}
.y22{bottom:427.266667pt;}
.ya4{bottom:429.506667pt;}
.ya3{bottom:447.586667pt;}
.y5e{bottom:448.226667pt;}
.y21{bottom:449.186667pt;}
.y74{bottom:469.826667pt;}
.y5d{bottom:470.146667pt;}
.y32{bottom:470.786667pt;}
.y20{bottom:471.106667pt;}
.y73{bottom:491.746667pt;}
.y5c{bottom:492.066667pt;}
.y31{bottom:492.706667pt;}
.y1f{bottom:493.026667pt;}
.y5b{bottom:513.986667pt;}
.y1e{bottom:514.626667pt;}
.y1d{bottom:531.906667pt;}
.y9e{bottom:535.586667pt;}
.y5a{bottom:535.906667pt;}
.y1c{bottom:553.026667pt;}
.y9d{bottom:557.506667pt;}
.y59{bottom:557.826667pt;}
.y1b{bottom:572.546667pt;}
.y9c{bottom:579.426667pt;}
.y58{bottom:579.746667pt;}
.y3f{bottom:594.146667pt;}
.y3c{bottom:597.053350pt;}
.y57{bottom:601.693333pt;}
.y3b{bottom:616.093350pt;}
.y56{bottom:623.613333pt;}
.y84{bottom:633.053333pt;}
.y3a{bottom:635.133350pt;}
.y94{bottom:645.213333pt;}
.y55{bottom:645.533333pt;}
.y39{bottom:654.173350pt;}
.y83{bottom:655.293333pt;}
.y54{bottom:667.133333pt;}
.y72{bottom:667.453333pt;}
.y38{bottom:673.213350pt;}
.y82{bottom:677.213333pt;}
.y53{bottom:689.053333pt;}
.y71{bottom:689.373333pt;}
.y37{bottom:692.253350pt;}
.y81{bottom:699.293333pt;}
.ya2{bottom:710.973333pt;}
.y52{bottom:711.293333pt;}
.y36{bottom:711.293350pt;}
.y80{bottom:721.213333pt;}
.y35{bottom:730.333350pt;}
.y9b{bottom:732.893333pt;}
.y51{bottom:733.213333pt;}
.y7f{bottom:743.133333pt;}
.y3e{bottom:749.373333pt;}
.y34{bottom:749.373350pt;}
.y9a{bottom:754.813333pt;}
.y50{bottom:755.133333pt;}
.y7e{bottom:765.053333pt;}
.y3d{bottom:768.413333pt;}
.y99{bottom:776.733333pt;}
.y4f{bottom:777.053333pt;}
.y1a{bottom:785.533333pt;}
.y7d{bottom:786.973333pt;}
.y18{bottom:793.213333pt;}
.y4e{bottom:798.973333pt;}
.y12{bottom:799.613333pt;}
.y17{bottom:803.460571pt;}
.y7c{bottom:808.893333pt;}
.y4d{bottom:820.933333pt;}
.y7b{bottom:827.333333pt;}
.y4c{bottom:842.853333pt;}
.y70{bottom:864.453333pt;}
.y4b{bottom:864.773333pt;}
.y6f{bottom:886.373333pt;}
.y4a{bottom:886.693333pt;}
.y10{bottom:905.413333pt;}
.y6e{bottom:908.293333pt;}
.y49{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y48{bottom:930.533333pt;}
.ya1{bottom:952.133333pt;}
.y47{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.ya0{bottom:974.053333pt;}
.y46{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y45{bottom:995.973333pt;}
.y6d{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y44{bottom:1017.893333pt;}
.y6c{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y43{bottom:1039.840000pt;}
.y6b{bottom:1040.160000pt;}
.y41{bottom:1055.360000pt;}
.y40{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1e{height:27.093750pt;}
.h18{height:32.765625pt;}
.h20{height:41.112500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h1d{height:48.530000pt;}
.h9{height:49.852500pt;}
.h1f{height:52.108438pt;}
.hb{height:54.187500pt;}
.h22{height:54.598989pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h1b{height:59.340000pt;}
.h14{height:60.270000pt;}
.h23{height:60.300000pt;}
.h1c{height:60.519362pt;}
.h21{height:61.295000pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:92.026667pt;}
.h12{height:105.780000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.x13{left:32.470667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x17{left:78.225333pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1f{left:100.512000pt;}
.x21{left:120.032000pt;}
.x20{left:124.512000pt;}
.x26{left:144.026667pt;}
.x4{left:150.120000pt;}
.x1e{left:159.666560pt;}
.x18{left:164.345333pt;}
.x6{left:185.786667pt;}
.x16{left:190.105333pt;}
.x15{left:216.825333pt;}
.x14{left:233.625333pt;}
.x19{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1b{left:420.893333pt;}
.x1c{left:425.373333pt;}
.x29{left:434.653333pt;}
.x23{left:444.893333pt;}
.x1d{left:449.373333pt;}
.x2a{left:458.653333pt;}
.x24{left:468.893333pt;}
.x27{left:492.893333pt;}
.x22{left:496.093333pt;}
.x28{left:516.893333pt;}
.x25{left:598.533333pt;}
.x7{left:642.213333pt;}
.x1{left:676.453333pt;}
}




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