
    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_f70fe8990ab1172b38823f52.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_cb4daa25e622458abe800d44.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_36c4480068ae171ee47ae587.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_08df154c93eb73eb4394f298.woff')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;}
.m1{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m5{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-1.566000px;}
.ls13{letter-spacing:-1.211040px;}
.ls1b{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.662400px;}
.ls2f{letter-spacing:-0.594000px;}
.ls16{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.334080px;}
.ls23{letter-spacing:-0.331200px;}
.ls15{letter-spacing:-0.324000px;}
.ls19{letter-spacing:-0.264960px;}
.ls11{letter-spacing:-0.250560px;}
.ls14{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.198720px;}
.ls1e{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.066240px;}
.ls10{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.066240px;}
.ls25{letter-spacing:0.068880px;}
.ls28{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.132480px;}
.ls21{letter-spacing:0.198720px;}
.ls2c{letter-spacing:0.264960px;}
.ls26{letter-spacing:0.270000px;}
.ls2b{letter-spacing:0.293520px;}
.lse{letter-spacing:0.302400px;}
.ls20{letter-spacing:0.331200px;}
.ls2a{letter-spacing:0.529920px;}
.ls2e{letter-spacing:0.662400px;}
.ls22{letter-spacing:0.728640px;}
.lsd{letter-spacing:0.794880px;}
.ls1f{letter-spacing:0.927360px;}
.ls29{letter-spacing:1.324800px;}
.ls27{letter-spacing:2.782080px;}
.ls4{letter-spacing:141.687360px;}
.ls1{letter-spacing:180.216000px;}
.lsa{letter-spacing:192.228480px;}
.ls9{letter-spacing:225.348480px;}
.ls6{letter-spacing:226.938240px;}
.ls0{letter-spacing:232.740000px;}
.lsb{letter-spacing:251.182080px;}
.ls3{letter-spacing:326.232000px;}
.lsc{letter-spacing:453.611520px;}
.ls32{letter-spacing:600.333120px;}
.ls7{letter-spacing:647.297280px;}
.ls2{letter-spacing:671.011200px;}
.ls33{letter-spacing:847.408320px;}
.ls30{letter-spacing:979.888320px;}
.ls31{letter-spacing:1004.397120px;}
.ls8{letter-spacing:1336.789440px;}
.ls5{letter-spacing:1956.795840px;}
.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;}
}
.ws2d{word-spacing:-17.354880px;}
.ws2{word-spacing:-16.626240px;}
.ws0{word-spacing:-16.560000px;}
.ws2c{word-spacing:-16.493760px;}
.ws2b{word-spacing:-16.361280px;}
.ws1{word-spacing:-16.295040px;}
.ws25{word-spacing:-3.643200px;}
.ws33{word-spacing:-3.510720px;}
.ws34{word-spacing:-3.378240px;}
.ws36{word-spacing:-2.782080px;}
.ws10{word-spacing:-2.583360px;}
.ws1b{word-spacing:-2.252160px;}
.ws39{word-spacing:-2.119680px;}
.ws8{word-spacing:-1.987200px;}
.ws27{word-spacing:-1.788480px;}
.ws7{word-spacing:-1.523520px;}
.wsf{word-spacing:-1.391040px;}
.ws28{word-spacing:-0.794880px;}
.ws22{word-spacing:-0.662400px;}
.ws20{word-spacing:-0.596160px;}
.wsb{word-spacing:-0.331200px;}
.ws1f{word-spacing:-0.090000px;}
.ws9{word-spacing:-0.066240px;}
.ws6{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws18{word-spacing:0.066240px;}
.ws26{word-spacing:0.198720px;}
.ws24{word-spacing:0.264960px;}
.wse{word-spacing:0.662400px;}
.ws30{word-spacing:0.728640px;}
.ws2f{word-spacing:0.794880px;}
.ws3b{word-spacing:0.927360px;}
.ws5{word-spacing:1.188000px;}
.ws4{word-spacing:1.296000px;}
.ws19{word-spacing:1.391040px;}
.ws35{word-spacing:1.523520px;}
.ws2a{word-spacing:1.656000px;}
.ws21{word-spacing:1.722240px;}
.ws1d{word-spacing:2.119680px;}
.wsd{word-spacing:2.252160px;}
.wsc{word-spacing:2.450880px;}
.ws37{word-spacing:2.848320px;}
.ws3d{word-spacing:2.980800px;}
.ws12{word-spacing:3.113280px;}
.ws13{word-spacing:3.179520px;}
.ws11{word-spacing:3.510720px;}
.ws38{word-spacing:3.643200px;}
.ws3f{word-spacing:3.775680px;}
.ws3e{word-spacing:4.239360px;}
.ws31{word-spacing:4.504320px;}
.ws1c{word-spacing:4.968000px;}
.ws32{word-spacing:5.232960px;}
.ws15{word-spacing:5.696640px;}
.wsa{word-spacing:5.829120px;}
.ws3c{word-spacing:6.557760px;}
.ws2e{word-spacing:6.690240px;}
.ws16{word-spacing:7.286400px;}
.ws17{word-spacing:7.485120px;}
.ws14{word-spacing:8.213760px;}
.ws29{word-spacing:8.544960px;}
.ws1e{word-spacing:8.677440px;}
.ws23{word-spacing:12.188160px;}
.ws3a{word-spacing:20.799360px;}
.ws1a{word-spacing:21.660480px;}
._3c{margin-left:-38.949696px;}
._3b{margin-left:-37.509048px;}
._35{margin-left:-22.249800px;}
._2e{margin-left:-21.016800px;}
._3a{margin-left:-19.739520px;}
._36{margin-left:-17.684640px;}
._2f{margin-left:-16.624800px;}
._37{margin-left:-15.435360px;}
._34{margin-left:-14.110200px;}
._39{margin-left:-12.662136px;}
._30{margin-left:-11.491200px;}
._38{margin-left:-3.510720px;}
._31{margin-left:-2.251584px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._32{width:3.656448px;}
._33{width:7.418880px;}
._42{width:27.324000px;}
._44{width:51.806304px;}
._e{width:59.013216px;}
._40{width:60.450624px;}
._2a{width:63.789120px;}
._16{width:65.491488px;}
._47{width:67.644288px;}
._1b{width:76.242240px;}
._12{width:79.925184px;}
._49{width:92.126592px;}
._1f{width:93.557376px;}
._22{width:101.492928px;}
._21{width:111.561408px;}
._17{width:122.351904px;}
._3f{width:129.538944px;}
._4f{width:145.429920px;}
._45{width:182.829024px;}
._25{width:193.612896px;}
._13{width:204.423264px;}
._20{width:215.207136px;}
._24{width:216.671040px;}
._48{width:226.805760px;}
._51{width:229.892544px;}
._f{width:251.288064px;}
._41{width:253.420992px;}
._27{width:255.818880px;}
._1c{width:266.317920px;}
._2c{width:285.083712px;}
._14{width:305.207424px;}
._19{width:307.426464px;}
._4d{width:310.321152px;}
._1e{width:312.427584px;}
._1a{width:317.488320px;}
._43{width:321.052032px;}
._1d{width:335.445984px;}
._53{width:342.023616px;}
._26{width:351.336960px;}
._18{width:352.741248px;}
._8{width:359.285760px;}
._3d{width:369.354240px;}
._15{width:372.222432px;}
._46{width:388.795680px;}
._4e{width:406.779840px;}
._c{width:438.442560px;}
._50{width:439.913088px;}
._54{width:447.808896px;}
._29{width:478.120320px;}
._11{width:520.580160px;}
._2d{width:533.430720px;}
._4b{width:642.925440px;}
._10{width:650.966976px;}
._7{width:659.485440px;}
._4a{width:734.270400px;}
._3e{width:777.591360px;}
._a{width:827.337600px;}
._4c{width:843.831360px;}
._56{width:877.547520px;}
._3{width:913.750560px;}
._52{width:928.817280px;}
._57{width:938.090880px;}
._4{width:995.516640px;}
._28{width:1021.818240px;}
._9{width:1139.857920px;}
._0{width:1141.551360px;}
._1{width:1193.876640px;}
._d{width:1197.288000px;}
._b{width:1311.816960px;}
._23{width:1336.312512px;}
._55{width:1447.012800px;}
._2b{width:1678.832928px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y92{bottom:65.697120px;}
.y5{bottom:65.700000px;}
.y73{bottom:65.702880px;}
.y71{bottom:100.445760px;}
.y72{bottom:100.462320px;}
.y3a{bottom:103.506480px;}
.y1f{bottom:103.512240px;}
.y6f{bottom:120.963600px;}
.y70{bottom:120.980160px;}
.y39{bottom:124.206480px;}
.y1e{bottom:124.212240px;}
.y6d{bottom:141.481440px;}
.y6e{bottom:141.498000px;}
.y38{bottom:144.724320px;}
.y1d{bottom:144.730080px;}
.y37{bottom:165.242160px;}
.y1c{bottom:165.247920px;}
.y6b{bottom:175.860000px;}
.y6a{bottom:175.873650px;}
.y69{bottom:175.873680px;}
.y6c{bottom:175.876560px;}
.y36{bottom:185.760000px;}
.y35{bottom:185.762160px;}
.y1b{bottom:185.765760px;}
.y68{bottom:196.391520px;}
.y34{bottom:206.280000px;}
.y33{bottom:206.298720px;}
.y1a{bottom:206.300160px;}
.y67{bottom:216.909360px;}
.y32{bottom:226.816560px;}
.y65{bottom:237.420000px;}
.y66{bottom:237.427200px;}
.y63{bottom:237.427230px;}
.y64{bottom:237.443790px;}
.y61{bottom:258.127230px;}
.y62{bottom:258.143790px;}
.y31{bottom:261.195120px;}
.y19{bottom:261.196560px;}
.y5f{bottom:278.645070px;}
.y60{bottom:278.661630px;}
.y30{bottom:281.712960px;}
.y5d{bottom:299.162910px;}
.y5e{bottom:299.179470px;}
.y2f{bottom:302.412960px;}
.y18{bottom:302.414400px;}
.y5b{bottom:319.680750px;}
.y5c{bottom:319.697310px;}
.y2e{bottom:322.930800px;}
.y59{bottom:340.200000px;}
.y5a{bottom:340.215150px;}
.y2d{bottom:343.448640px;}
.y17{bottom:343.450080px;}
.y57{bottom:360.726480px;}
.y58{bottom:360.732900px;}
.y2c{bottom:363.966480px;}
.y16{bottom:363.967920px;}
.y56{bottom:381.426480px;}
.y2b{bottom:384.484320px;}
.y15{bottom:384.485760px;}
.y55{bottom:401.944320px;}
.y2a{bottom:405.002160px;}
.y14{bottom:405.003600px;}
.y54{bottom:422.462160px;}
.y29{bottom:425.702160px;}
.y13{bottom:425.703600px;}
.y53{bottom:442.980000px;}
.y52{bottom:442.986420px;}
.y28{bottom:446.220000px;}
.y12{bottom:446.238000px;}
.y51{bottom:463.504260px;}
.y11{bottom:480.616560px;}
.y50{bottom:484.022100px;}
.y10{bottom:501.134400px;}
.y4f{bottom:504.722100px;}
.y4e{bottom:504.722160px;}
.y82{bottom:518.582880px;}
.yf{bottom:521.652240px;}
.y4d{bottom:525.240000px;}
.y4c{bottom:525.256560px;}
.ye{bottom:542.170080px;}
.y81{bottom:554.948640px;}
.y4b{bottom:559.635120px;}
.y27{bottom:562.687920px;}
.y91{bottom:573.310800px;}
.y80{bottom:573.313680px;}
.y4a{bottom:580.152960px;}
.yd{bottom:583.205760px;}
.y90{bottom:593.828640px;}
.y7f{bottom:593.831520px;}
.y49{bottom:600.670800px;}
.yc{bottom:603.723600px;}
.y8f{bottom:614.528640px;}
.y7e{bottom:614.531520px;}
.y48{bottom:621.188640px;}
.y8e{bottom:635.046480px;}
.y7d{bottom:635.049360px;}
.yb{bottom:638.102160px;}
.y47{bottom:641.706480px;}
.y8d{bottom:655.564320px;}
.y7c{bottom:655.567200px;}
.ya{bottom:658.802160px;}
.y46{bottom:662.224320px;}
.y8c{bottom:676.082160px;}
.y7b{bottom:676.085040px;}
.y9{bottom:679.320000px;}
.y26{bottom:679.322160px;}
.y45{bottom:682.924320px;}
.y8b{bottom:696.600000px;}
.y8a{bottom:696.602160px;}
.y7a{bottom:696.602880px;}
.y8{bottom:699.840000px;}
.y7{bottom:699.846480px;}
.y44{bottom:703.442160px;}
.y89{bottom:717.120000px;}
.y88{bottom:717.137250px;}
.y79{bottom:717.137280px;}
.y25{bottom:720.364320px;}
.y43{bottom:723.960000px;}
.y42{bottom:723.970080px;}
.y87{bottom:737.837250px;}
.y24{bottom:740.882160px;}
.y41{bottom:744.487920px;}
.y86{bottom:758.355090px;}
.y78{bottom:758.355120px;}
.y23{bottom:761.400000px;}
.y6{bottom:761.404500px;}
.y40{bottom:778.866480px;}
.y85{bottom:778.872930px;}
.y77{bottom:778.872960px;}
.y22{bottom:799.380000px;}
.y3f{bottom:799.384320px;}
.y84{bottom:799.390770px;}
.y76{bottom:799.390800px;}
.y3e{bottom:819.902160px;}
.y83{bottom:819.908610px;}
.y75{bottom:819.908640px;}
.y21{bottom:828.900000px;}
.y3d{bottom:840.420000px;}
.y3c{bottom:840.426450px;}
.y74{bottom:840.426480px;}
.y20{bottom:858.060000px;}
.y3b{bottom:861.126480px;}
.y4{bottom:907.920000px;}
.y3{bottom:927.540000px;}
.y2{bottom:943.740000px;}
.y1{bottom:958.319850px;}
.h3{height:34.969922px;}
.h2{height:34.990313px;}
.h5{height:45.219727px;}
.h4{height:45.246094px;}
.h7{height:55.451531px;}
.h6{height:55.469531px;}
.h8{height:56.019375px;}
.ha{height:65.010937px;}
.h9{height:75.410156px;}
.h0{height:1020.600030px;}
.h1{height:1020.750000px;}
.w0{width:722.880015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x38{left:96.135840px;}
.x13{left:105.477120px;}
.x1e{left:109.260000px;}
.x1a{left:112.531680px;}
.x25{left:116.640000px;}
.x29{left:118.806450px;}
.x9{left:119.884500px;}
.x21{left:122.038500px;}
.x15{left:125.994960px;}
.x36{left:129.636720px;}
.x27{left:133.544850px;}
.xb{left:140.220000px;}
.x1d{left:143.995650px;}
.x3a{left:147.074400px;}
.x19{left:151.828560px;}
.x1{left:154.977000px;}
.x2a{left:163.452210px;}
.x3c{left:166.350240px;}
.x2e{left:168.660000px;}
.x6{left:170.280000px;}
.x30{left:172.440000px;}
.x26{left:173.868450px;}
.x14{left:177.115680px;}
.x10{left:195.861600px;}
.x2c{left:197.102130px;}
.x31{left:201.960000px;}
.xf{left:231.829920px;}
.x3d{left:234.378720px;}
.x34{left:236.531520px;}
.x32{left:249.354720px;}
.xd{left:250.542720px;}
.x11{left:264.966480px;}
.x3e{left:268.045200px;}
.x1f{left:275.215650px;}
.x3b{left:279.355680px;}
.x35{left:335.345040px;}
.xc{left:345.282480px;}
.x7{left:351.180000px;}
.x23{left:357.840000px;}
.x4{left:371.516850px;}
.x2f{left:373.350300px;}
.x8{left:376.927200px;}
.x22{left:398.340000px;}
.x18{left:399.980160px;}
.xe{left:422.634240px;}
.x12{left:426.244320px;}
.x33{left:443.040480px;}
.x37{left:446.164560px;}
.x17{left:447.358320px;}
.x2d{left:449.989890px;}
.x24{left:486.902100px;}
.x1b{left:493.891920px;}
.x3{left:503.287500px;}
.x16{left:519.510240px;}
.x39{left:529.030800px;}
.x3f{left:533.160000px;}
.xa{left:557.079120px;}
.x20{left:560.700000px;}
.x1c{left:564.300000px;}
.x2b{left:605.355810px;}
.x28{left:629.820000px;}
.x2{left:633.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-1.392000pt;}
.ls13{letter-spacing:-1.076480pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.588800pt;}
.ls2f{letter-spacing:-0.528000pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.296960pt;}
.ls23{letter-spacing:-0.294400pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls19{letter-spacing:-0.235520pt;}
.ls11{letter-spacing:-0.222720pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.176640pt;}
.ls1e{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.058880pt;}
.ls10{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.058880pt;}
.ls25{letter-spacing:0.061227pt;}
.ls28{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.117760pt;}
.ls21{letter-spacing:0.176640pt;}
.ls2c{letter-spacing:0.235520pt;}
.ls26{letter-spacing:0.240000pt;}
.ls2b{letter-spacing:0.260907pt;}
.lse{letter-spacing:0.268800pt;}
.ls20{letter-spacing:0.294400pt;}
.ls2a{letter-spacing:0.471040pt;}
.ls2e{letter-spacing:0.588800pt;}
.ls22{letter-spacing:0.647680pt;}
.lsd{letter-spacing:0.706560pt;}
.ls1f{letter-spacing:0.824320pt;}
.ls29{letter-spacing:1.177600pt;}
.ls27{letter-spacing:2.472960pt;}
.ls4{letter-spacing:125.944320pt;}
.ls1{letter-spacing:160.192000pt;}
.lsa{letter-spacing:170.869760pt;}
.ls9{letter-spacing:200.309760pt;}
.ls6{letter-spacing:201.722880pt;}
.ls0{letter-spacing:206.880000pt;}
.lsb{letter-spacing:223.272960pt;}
.ls3{letter-spacing:289.984000pt;}
.lsc{letter-spacing:403.210240pt;}
.ls32{letter-spacing:533.629440pt;}
.ls7{letter-spacing:575.375360pt;}
.ls2{letter-spacing:596.454400pt;}
.ls33{letter-spacing:753.251840pt;}
.ls30{letter-spacing:871.011840pt;}
.ls31{letter-spacing:892.797440pt;}
.ls8{letter-spacing:1188.257280pt;}
.ls5{letter-spacing:1739.374080pt;}
.ws2d{word-spacing:-15.426560pt;}
.ws2{word-spacing:-14.778880pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2c{word-spacing:-14.661120pt;}
.ws2b{word-spacing:-14.543360pt;}
.ws1{word-spacing:-14.484480pt;}
.ws25{word-spacing:-3.238400pt;}
.ws33{word-spacing:-3.120640pt;}
.ws34{word-spacing:-3.002880pt;}
.ws36{word-spacing:-2.472960pt;}
.ws10{word-spacing:-2.296320pt;}
.ws1b{word-spacing:-2.001920pt;}
.ws39{word-spacing:-1.884160pt;}
.ws8{word-spacing:-1.766400pt;}
.ws27{word-spacing:-1.589760pt;}
.ws7{word-spacing:-1.354240pt;}
.wsf{word-spacing:-1.236480pt;}
.ws28{word-spacing:-0.706560pt;}
.ws22{word-spacing:-0.588800pt;}
.ws20{word-spacing:-0.529920pt;}
.wsb{word-spacing:-0.294400pt;}
.ws1f{word-spacing:-0.080000pt;}
.ws9{word-spacing:-0.058880pt;}
.ws6{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws18{word-spacing:0.058880pt;}
.ws26{word-spacing:0.176640pt;}
.ws24{word-spacing:0.235520pt;}
.wse{word-spacing:0.588800pt;}
.ws30{word-spacing:0.647680pt;}
.ws2f{word-spacing:0.706560pt;}
.ws3b{word-spacing:0.824320pt;}
.ws5{word-spacing:1.056000pt;}
.ws4{word-spacing:1.152000pt;}
.ws19{word-spacing:1.236480pt;}
.ws35{word-spacing:1.354240pt;}
.ws2a{word-spacing:1.472000pt;}
.ws21{word-spacing:1.530880pt;}
.ws1d{word-spacing:1.884160pt;}
.wsd{word-spacing:2.001920pt;}
.wsc{word-spacing:2.178560pt;}
.ws37{word-spacing:2.531840pt;}
.ws3d{word-spacing:2.649600pt;}
.ws12{word-spacing:2.767360pt;}
.ws13{word-spacing:2.826240pt;}
.ws11{word-spacing:3.120640pt;}
.ws38{word-spacing:3.238400pt;}
.ws3f{word-spacing:3.356160pt;}
.ws3e{word-spacing:3.768320pt;}
.ws31{word-spacing:4.003840pt;}
.ws1c{word-spacing:4.416000pt;}
.ws32{word-spacing:4.651520pt;}
.ws15{word-spacing:5.063680pt;}
.wsa{word-spacing:5.181440pt;}
.ws3c{word-spacing:5.829120pt;}
.ws2e{word-spacing:5.946880pt;}
.ws16{word-spacing:6.476800pt;}
.ws17{word-spacing:6.653440pt;}
.ws14{word-spacing:7.301120pt;}
.ws29{word-spacing:7.595520pt;}
.ws1e{word-spacing:7.713280pt;}
.ws23{word-spacing:10.833920pt;}
.ws3a{word-spacing:18.488320pt;}
.ws1a{word-spacing:19.253760pt;}
._3c{margin-left:-34.621952pt;}
._3b{margin-left:-33.341376pt;}
._35{margin-left:-19.777600pt;}
._2e{margin-left:-18.681600pt;}
._3a{margin-left:-17.546240pt;}
._36{margin-left:-15.719680pt;}
._2f{margin-left:-14.777600pt;}
._37{margin-left:-13.720320pt;}
._34{margin-left:-12.542400pt;}
._39{margin-left:-11.255232pt;}
._30{margin-left:-10.214400pt;}
._38{margin-left:-3.120640pt;}
._31{margin-left:-2.001408pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._32{width:3.250176pt;}
._33{width:6.594560pt;}
._42{width:24.288000pt;}
._44{width:46.050048pt;}
._e{width:52.456192pt;}
._40{width:53.733888pt;}
._2a{width:56.701440pt;}
._16{width:58.214656pt;}
._47{width:60.128256pt;}
._1b{width:67.770880pt;}
._12{width:71.044608pt;}
._49{width:81.890304pt;}
._1f{width:83.162112pt;}
._22{width:90.215936pt;}
._21{width:99.165696pt;}
._17{width:108.757248pt;}
._3f{width:115.145728pt;}
._4f{width:129.271040pt;}
._45{width:162.514688pt;}
._25{width:172.100352pt;}
._13{width:181.709568pt;}
._20{width:191.295232pt;}
._24{width:192.596480pt;}
._48{width:201.605120pt;}
._51{width:204.348928pt;}
._f{width:223.367168pt;}
._41{width:225.263104pt;}
._27{width:227.394560pt;}
._1c{width:236.727040pt;}
._2c{width:253.407744pt;}
._14{width:271.295488pt;}
._19{width:273.267968pt;}
._4d{width:275.841024pt;}
._1e{width:277.713408pt;}
._1a{width:282.211840pt;}
._43{width:285.379584pt;}
._1d{width:298.174208pt;}
._53{width:304.020992pt;}
._26{width:312.299520pt;}
._18{width:313.547776pt;}
._8{width:319.365120pt;}
._3d{width:328.314880pt;}
._15{width:330.864384pt;}
._46{width:345.596160pt;}
._4e{width:361.582080pt;}
._c{width:389.726720pt;}
._50{width:391.033856pt;}
._54{width:398.052352pt;}
._29{width:424.995840pt;}
._11{width:462.737920pt;}
._2d{width:474.160640pt;}
._4b{width:571.489280pt;}
._10{width:578.637312pt;}
._7{width:586.209280pt;}
._4a{width:652.684800pt;}
._3e{width:691.192320pt;}
._a{width:735.411200pt;}
._4c{width:750.072320pt;}
._56{width:780.042240pt;}
._3{width:812.222720pt;}
._52{width:825.615360pt;}
._57{width:833.858560pt;}
._4{width:884.903680pt;}
._28{width:908.282880pt;}
._9{width:1013.207040pt;}
._0{width:1014.712320pt;}
._1{width:1061.223680pt;}
._d{width:1064.256000pt;}
._b{width:1166.059520pt;}
._23{width:1187.833344pt;}
._55{width:1286.233600pt;}
._2b{width:1492.295936pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:58.397440pt;}
.y5{bottom:58.400000pt;}
.y73{bottom:58.402560pt;}
.y71{bottom:89.285120pt;}
.y72{bottom:89.299840pt;}
.y3a{bottom:92.005760pt;}
.y1f{bottom:92.010880pt;}
.y6f{bottom:107.523200pt;}
.y70{bottom:107.537920pt;}
.y39{bottom:110.405760pt;}
.y1e{bottom:110.410880pt;}
.y6d{bottom:125.761280pt;}
.y6e{bottom:125.776000pt;}
.y38{bottom:128.643840pt;}
.y1d{bottom:128.648960pt;}
.y37{bottom:146.881920pt;}
.y1c{bottom:146.887040pt;}
.y6b{bottom:156.320000pt;}
.y6a{bottom:156.332133pt;}
.y69{bottom:156.332160pt;}
.y6c{bottom:156.334720pt;}
.y36{bottom:165.120000pt;}
.y35{bottom:165.121920pt;}
.y1b{bottom:165.125120pt;}
.y68{bottom:174.570240pt;}
.y34{bottom:183.360000pt;}
.y33{bottom:183.376640pt;}
.y1a{bottom:183.377920pt;}
.y67{bottom:192.808320pt;}
.y32{bottom:201.614720pt;}
.y65{bottom:211.040000pt;}
.y66{bottom:211.046400pt;}
.y63{bottom:211.046427pt;}
.y64{bottom:211.061147pt;}
.y61{bottom:229.446427pt;}
.y62{bottom:229.461147pt;}
.y31{bottom:232.173440pt;}
.y19{bottom:232.174720pt;}
.y5f{bottom:247.684507pt;}
.y60{bottom:247.699227pt;}
.y30{bottom:250.411520pt;}
.y5d{bottom:265.922587pt;}
.y5e{bottom:265.937307pt;}
.y2f{bottom:268.811520pt;}
.y18{bottom:268.812800pt;}
.y5b{bottom:284.160667pt;}
.y5c{bottom:284.175387pt;}
.y2e{bottom:287.049600pt;}
.y59{bottom:302.400000pt;}
.y5a{bottom:302.413467pt;}
.y2d{bottom:305.287680pt;}
.y17{bottom:305.288960pt;}
.y57{bottom:320.645760pt;}
.y58{bottom:320.651467pt;}
.y2c{bottom:323.525760pt;}
.y16{bottom:323.527040pt;}
.y56{bottom:339.045760pt;}
.y2b{bottom:341.763840pt;}
.y15{bottom:341.765120pt;}
.y55{bottom:357.283840pt;}
.y2a{bottom:360.001920pt;}
.y14{bottom:360.003200pt;}
.y54{bottom:375.521920pt;}
.y29{bottom:378.401920pt;}
.y13{bottom:378.403200pt;}
.y53{bottom:393.760000pt;}
.y52{bottom:393.765707pt;}
.y28{bottom:396.640000pt;}
.y12{bottom:396.656000pt;}
.y51{bottom:412.003787pt;}
.y11{bottom:427.214720pt;}
.y50{bottom:430.241867pt;}
.y10{bottom:445.452800pt;}
.y4f{bottom:448.641867pt;}
.y4e{bottom:448.641920pt;}
.y82{bottom:460.962560pt;}
.yf{bottom:463.690880pt;}
.y4d{bottom:466.880000pt;}
.y4c{bottom:466.894720pt;}
.ye{bottom:481.928960pt;}
.y81{bottom:493.287680pt;}
.y4b{bottom:497.453440pt;}
.y27{bottom:500.167040pt;}
.y91{bottom:509.609600pt;}
.y80{bottom:509.612160pt;}
.y4a{bottom:515.691520pt;}
.yd{bottom:518.405120pt;}
.y90{bottom:527.847680pt;}
.y7f{bottom:527.850240pt;}
.y49{bottom:533.929600pt;}
.yc{bottom:536.643200pt;}
.y8f{bottom:546.247680pt;}
.y7e{bottom:546.250240pt;}
.y48{bottom:552.167680pt;}
.y8e{bottom:564.485760pt;}
.y7d{bottom:564.488320pt;}
.yb{bottom:567.201920pt;}
.y47{bottom:570.405760pt;}
.y8d{bottom:582.723840pt;}
.y7c{bottom:582.726400pt;}
.ya{bottom:585.601920pt;}
.y46{bottom:588.643840pt;}
.y8c{bottom:600.961920pt;}
.y7b{bottom:600.964480pt;}
.y9{bottom:603.840000pt;}
.y26{bottom:603.841920pt;}
.y45{bottom:607.043840pt;}
.y8b{bottom:619.200000pt;}
.y8a{bottom:619.201920pt;}
.y7a{bottom:619.202560pt;}
.y8{bottom:622.080000pt;}
.y7{bottom:622.085760pt;}
.y44{bottom:625.281920pt;}
.y89{bottom:637.440000pt;}
.y88{bottom:637.455333pt;}
.y79{bottom:637.455360pt;}
.y25{bottom:640.323840pt;}
.y43{bottom:643.520000pt;}
.y42{bottom:643.528960pt;}
.y87{bottom:655.855333pt;}
.y24{bottom:658.561920pt;}
.y41{bottom:661.767040pt;}
.y86{bottom:674.093413pt;}
.y78{bottom:674.093440pt;}
.y23{bottom:676.800000pt;}
.y6{bottom:676.804000pt;}
.y40{bottom:692.325760pt;}
.y85{bottom:692.331493pt;}
.y77{bottom:692.331520pt;}
.y22{bottom:710.560000pt;}
.y3f{bottom:710.563840pt;}
.y84{bottom:710.569573pt;}
.y76{bottom:710.569600pt;}
.y3e{bottom:728.801920pt;}
.y83{bottom:728.807653pt;}
.y75{bottom:728.807680pt;}
.y21{bottom:736.800000pt;}
.y3d{bottom:747.040000pt;}
.y3c{bottom:747.045733pt;}
.y74{bottom:747.045760pt;}
.y20{bottom:762.720000pt;}
.y3b{bottom:765.445760pt;}
.y4{bottom:807.040000pt;}
.y3{bottom:824.480000pt;}
.y2{bottom:838.880000pt;}
.y1{bottom:851.839867pt;}
.h3{height:31.084375pt;}
.h2{height:31.102500pt;}
.h5{height:40.195312pt;}
.h4{height:40.218750pt;}
.h7{height:49.290250pt;}
.h6{height:49.306250pt;}
.h8{height:49.795000pt;}
.ha{height:57.787500pt;}
.h9{height:67.031250pt;}
.h0{height:907.200027pt;}
.h1{height:907.333333pt;}
.w0{width:642.560013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x38{left:85.454080pt;}
.x13{left:93.757440pt;}
.x1e{left:97.120000pt;}
.x1a{left:100.028160pt;}
.x25{left:103.680000pt;}
.x29{left:105.605733pt;}
.x9{left:106.564000pt;}
.x21{left:108.478667pt;}
.x15{left:111.995520pt;}
.x36{left:115.232640pt;}
.x27{left:118.706533pt;}
.xb{left:124.640000pt;}
.x1d{left:127.996133pt;}
.x3a{left:130.732800pt;}
.x19{left:134.958720pt;}
.x1{left:137.757333pt;}
.x2a{left:145.290853pt;}
.x3c{left:147.866880pt;}
.x2e{left:149.920000pt;}
.x6{left:151.360000pt;}
.x30{left:153.280000pt;}
.x26{left:154.549733pt;}
.x14{left:157.436160pt;}
.x10{left:174.099200pt;}
.x2c{left:175.201893pt;}
.x31{left:179.520000pt;}
.xf{left:206.071040pt;}
.x3d{left:208.336640pt;}
.x34{left:210.250240pt;}
.x32{left:221.648640pt;}
.xd{left:222.704640pt;}
.x11{left:235.525760pt;}
.x3e{left:238.262400pt;}
.x1f{left:244.636133pt;}
.x3b{left:248.316160pt;}
.x35{left:298.084480pt;}
.xc{left:306.917760pt;}
.x7{left:312.160000pt;}
.x23{left:318.080000pt;}
.x4{left:330.237200pt;}
.x2f{left:331.866933pt;}
.x8{left:335.046400pt;}
.x22{left:354.080000pt;}
.x18{left:355.537920pt;}
.xe{left:375.674880pt;}
.x12{left:378.883840pt;}
.x33{left:393.813760pt;}
.x37{left:396.590720pt;}
.x17{left:397.651840pt;}
.x2d{left:399.991013pt;}
.x24{left:432.801867pt;}
.x1b{left:439.015040pt;}
.x3{left:447.366667pt;}
.x16{left:461.786880pt;}
.x39{left:470.249600pt;}
.x3f{left:473.920000pt;}
.xa{left:495.181440pt;}
.x20{left:498.400000pt;}
.x1c{left:501.600000pt;}
.x2b{left:538.094053pt;}
.x28{left:559.840000pt;}
.x2{left:563.200000pt;}
}




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