
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_c5a1a95030a9c916e1979a75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945312;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_3abcf1ce41fad68899d55356.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1f74fde850206250e04201b1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3f84c1c2822cf8900c3f0f09.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f72700b8676327bc815af67f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3bc9fe61bc74d70972911714.woff2')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_37e20c01a8f47512bac65784.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3c2934ba439f52a4b630f5c5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_633b72510a2bce218d3a6d0b.woff2')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_2f47597d09d207d201c98e7c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a5deeeac0459df568e3f48bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999512;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_d98f326a7067ea2e18bf31d9.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850586;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_f889c49a03bb6ac1d3b6e44e.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_ebd3b9c595285b09771d864e.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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.540000px;}
.ls5{letter-spacing:-0.334200px;}
.ls6{letter-spacing:-0.308400px;}
.ls7{letter-spacing:-0.255000px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.083400px;}
.ls1{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.224400px;}
.lsc{letter-spacing:0.270600px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.720000px;}
.ls14{letter-spacing:2.384640px;}
.ls11{letter-spacing:5.760000px;}
.ls13{letter-spacing:10.980000px;}
.lsf{letter-spacing:11.520000px;}
.lsb{letter-spacing:14.624640px;}
.lse{letter-spacing:21.780000px;}
.ls12{letter-spacing:28.980000px;}
.ls9{letter-spacing:36.920640px;}
.lsa{letter-spacing:36.944640px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.wsb{word-spacing:-17.550600px;}
.wsc{word-spacing:-17.504400px;}
.wsd{word-spacing:-17.303040px;}
.ws4{word-spacing:-17.280000px;}
.ws3{word-spacing:-17.190600px;}
.ws1{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.238600px;}
.ws5{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.780000px;}
.ws9{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.357800px;}
.wsa{word-spacing:0.000000px;}
._45{margin-left:-2.280960px;}
._0{margin-left:-1.263600px;}
._2{width:1.191600px;}
._b{width:2.264400px;}
._12{width:3.610800px;}
._f{width:4.819680px;}
._e{width:5.875200px;}
._10{width:7.879680px;}
._4{width:9.054720px;}
._5{width:10.575360px;}
._c{width:12.165120px;}
._d{width:13.201920px;}
._22{width:14.238720px;}
._28{width:15.986160px;}
._25{width:18.336240px;}
._9{width:19.756800px;}
._a{width:20.832480px;}
._11{width:22.229280px;}
._1c{width:23.598000px;}
._19{width:24.606720px;}
._1a{width:25.635600px;}
._17{width:26.956800px;}
._1f{width:27.963360px;}
._13{width:29.237760px;}
._6{width:30.609360px;}
._3{width:32.279040px;}
._1e{width:33.454080px;}
._27{width:34.767360px;}
._14{width:36.771840px;}
._40{width:38.234160px;}
._2c{width:39.299040px;}
._2b{width:40.366080px;}
._46{width:41.541120px;}
._2e{width:43.338240px;}
._43{width:44.467200px;}
._36{width:45.780480px;}
._3f{width:47.324160px;}
._5c{width:48.384000px;}
._31{width:49.440240px;}
._2a{width:50.837760px;}
._1d{width:51.894000px;}
._47{width:53.349840px;}
._15{width:54.812160px;}
._16{width:56.120880px;}
._8{width:57.507840px;}
._30{width:58.613760px;}
._21{width:60.203520px;}
._4a{width:61.950960px;}
._38{width:63.305760px;}
._18{width:64.516320px;}
._7{width:65.525760px;}
._44{width:66.839040px;}
._3e{width:68.083200px;}
._56{width:69.465600px;}
._37{width:70.778880px;}
._55{width:72.023040px;}
._4b{width:73.059840px;}
._4e{width:74.096640px;}
._4d{width:75.106080px;}
._50{width:77.276160px;}
._2d{width:78.796800px;}
._2f{width:80.190720px;}
._3c{width:81.699840px;}
._53{width:82.874880px;}
._58{width:83.980800px;}
._32{width:86.330880px;}
._23{width:88.058880px;}
._5b{width:90.704880px;}
._4c{width:92.689920px;}
._48{width:94.417920px;}
._33{width:97.044480px;}
._34{width:98.565120px;}
._26{width:100.776960px;}
._42{width:102.435840px;}
._59{width:103.887360px;}
._4f{width:107.343360px;}
._39{width:108.933120px;}
._41{width:110.937600px;}
._3b{width:113.909760px;}
._3d{width:115.173360px;}
._54{width:116.951040px;}
._5d{width:126.627840px;}
._5a{width:129.738240px;}
._57{width:130.982400px;}
._1b{width:132.356640px;}
._24{width:135.959040px;}
._29{width:137.064960px;}
._3a{width:139.849200px;}
._52{width:149.398560px;}
._51{width:150.408000px;}
._35{width:161.740800px;}
._49{width:166.579200px;}
._20{width:185.656320px;}
._1{width:781.505760px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.340000px;}
.y5f{bottom:2.685000px;}
.y46{bottom:3.060000px;}
.y14{bottom:3.240000px;}
.y53{bottom:3.405000px;}
.y4f{bottom:3.420000px;}
.y6{bottom:3.600000px;}
.y6e{bottom:3.780000px;}
.yb{bottom:3.960000px;}
.y34{bottom:5.220000px;}
.y39{bottom:5.400000px;}
.yc{bottom:5.580000px;}
.y40{bottom:5.760000px;}
.y3c{bottom:6.120000px;}
.y3f{bottom:6.300000px;}
.y65{bottom:7.905000px;}
.y11{bottom:10.080000px;}
.y30{bottom:10.785000px;}
.y5e{bottom:16.725000px;}
.y5a{bottom:17.805000px;}
.y13{bottom:18.360000px;}
.y45{bottom:18.570000px;}
.y56{bottom:18.885000px;}
.y4e{bottom:18.900000px;}
.y52{bottom:18.930000px;}
.y61{bottom:22.845000px;}
.y36{bottom:23.040000px;}
.y5{bottom:23.070000px;}
.y33{bottom:23.085000px;}
.y64{bottom:28.065000px;}
.y59{bottom:30.045000px;}
.y5d{bottom:30.765000px;}
.y51{bottom:31.170000px;}
.y2f{bottom:32.745000px;}
.y4d{bottom:34.020000px;}
.y44{bottom:34.050000px;}
.y55{bottom:34.365000px;}
.y10{bottom:36.000000px;}
.y32{bottom:41.085000px;}
.y4{bottom:42.330000px;}
.y6d{bottom:42.510000px;}
.y5c{bottom:44.805000px;}
.y63{bottom:48.225000px;}
.y4c{bottom:48.780000px;}
.y43{bottom:49.530000px;}
.y54{bottom:49.845000px;}
.y9{bottom:51.300000px;}
.y2e{bottom:55.605000px;}
.y71{bottom:58.500000px;}
.y5b{bottom:61.005000px;}
.yf{bottom:61.740000px;}
.y58{bottom:62.445000px;}
.y3{bottom:63.390000px;}
.y4b{bottom:63.540000px;}
.y62{bottom:65.505000px;}
.y8{bottom:71.100000px;}
.y70{bottom:78.300000px;}
.y2d{bottom:78.330000px;}
.ye{bottom:92.160000px;}
.y6a{bottom:95.760000px;}
.y2c{bottom:104.070000px;}
.y69{bottom:120.600000px;}
.y99{bottom:123.300000px;}
.y2b{bottom:127.290000px;}
.y4a{bottom:136.440000px;}
.y68{bottom:145.440000px;}
.y98{bottom:147.780000px;}
.ya2{bottom:148.140000px;}
.y2a{bottom:150.150000px;}
.y49{bottom:151.920000px;}
.y48{bottom:167.400000px;}
.y67{bottom:170.100000px;}
.yac{bottom:172.620000px;}
.y97{bottom:172.980000px;}
.y29{bottom:173.010000px;}
.y66{bottom:194.580000px;}
.y6b{bottom:194.940000px;}
.y28{bottom:195.690000px;}
.yb5{bottom:197.280000px;}
.y96{bottom:197.640000px;}
.y60{bottom:210.465000px;}
.y27{bottom:218.550000px;}
.ya9{bottom:222.150000px;}
.y95{bottom:222.510000px;}
.y26{bottom:241.410000px;}
.y94{bottom:247.350000px;}
.y25{bottom:264.270000px;}
.y93{bottom:272.190000px;}
.y24{bottom:286.950000px;}
.y57{bottom:289.665000px;}
.y92{bottom:296.490000px;}
.ya8{bottom:296.850000px;}
.y23{bottom:309.810000px;}
.y91{bottom:321.330000px;}
.ya1{bottom:321.690000px;}
.y22{bottom:332.700000px;}
.yb1{bottom:346.170000px;}
.y90{bottom:346.530000px;}
.y21{bottom:355.560000px;}
.y15{bottom:364.365000px;}
.yb0{bottom:371.010000px;}
.y8f{bottom:371.370000px;}
.y20{bottom:378.240000px;}
.ya7{bottom:395.670000px;}
.y8e{bottom:396.030000px;}
.y1f{bottom:401.100000px;}
.yad{bottom:420.510000px;}
.y8d{bottom:420.870000px;}
.y1e{bottom:423.960000px;}
.y50{bottom:426.465000px;}
.ya0{bottom:445.395000px;}
.y8c{bottom:445.755000px;}
.y1d{bottom:446.640000px;}
.y1c{bottom:469.500000px;}
.y9f{bottom:470.235000px;}
.y8b{bottom:470.595000px;}
.y47{bottom:480.315000px;}
.y1b{bottom:492.360000px;}
.y9e{bottom:494.895000px;}
.y8a{bottom:495.255000px;}
.y1a{bottom:515.220000px;}
.y89{bottom:520.095000px;}
.y19{bottom:537.900000px;}
.ya6{bottom:544.575000px;}
.y88{bottom:544.935000px;}
.y18{bottom:560.805000px;}
.y87{bottom:569.775000px;}
.y17{bottom:583.665000px;}
.y86{bottom:594.435000px;}
.y16{bottom:605.625000px;}
.y9d{bottom:618.915000px;}
.y85{bottom:619.275000px;}
.yb7{bottom:643.755000px;}
.y84{bottom:644.115000px;}
.y42{bottom:659.955000px;}
.yb6{bottom:668.595000px;}
.yb8{bottom:668.775000px;}
.y83{bottom:668.955000px;}
.yab{bottom:693.285000px;}
.y82{bottom:693.645000px;}
.ya5{bottom:718.125000px;}
.y81{bottom:718.485000px;}
.y41{bottom:722.085000px;}
.y3e{bottom:739.905000px;}
.yaa{bottom:742.965000px;}
.y80{bottom:743.325000px;}
.y3d{bottom:757.905000px;}
.y9c{bottom:767.805000px;}
.y7f{bottom:768.165000px;}
.y3b{bottom:775.725000px;}
.yb4{bottom:792.465000px;}
.y7e{bottom:792.825000px;}
.y3a{bottom:793.545000px;}
.y7d{bottom:817.665000px;}
.y38{bottom:829.185000px;}
.y7c{bottom:842.505000px;}
.y37{bottom:847.185000px;}
.y35{bottom:865.005000px;}
.yb3{bottom:866.985000px;}
.y7b{bottom:867.345000px;}
.y9b{bottom:891.645000px;}
.y7a{bottom:892.005000px;}
.y31{bottom:900.645000px;}
.ya4{bottom:916.530000px;}
.y79{bottom:916.890000px;}
.y78{bottom:941.730000px;}
.y12{bottom:954.330000px;}
.y77{bottom:966.570000px;}
.yd{bottom:985.290000px;}
.yaf{bottom:990.870000px;}
.y76{bottom:991.230000px;}
.y9a{bottom:1015.710000px;}
.y75{bottom:1016.070000px;}
.yae{bottom:1040.550000px;}
.y74{bottom:1040.910000px;}
.yb2{bottom:1065.210000px;}
.y73{bottom:1065.570000px;}
.ya3{bottom:1090.050000px;}
.y72{bottom:1090.410000px;}
.ya{bottom:1096.350000px;}
.y6f{bottom:1110.570000px;}
.y7{bottom:1122.090000px;}
.y6c{bottom:1126.050000px;}
.y1{bottom:1137.570000px;}
.h16{height:17.820000px;}
.h17{height:18.000000px;}
.h7{height:21.045000px;}
.hd{height:30.945000px;}
.h15{height:35.640000px;}
.h20{height:40.655391px;}
.h1f{height:40.843828px;}
.h22{height:45.509766px;}
.h26{height:48.768750px;}
.h24{height:49.983750px;}
.h18{height:51.519375px;}
.h1a{height:52.971680px;}
.hf{height:52.998047px;}
.h14{height:53.662500px;}
.h1c{height:53.841000px;}
.he{height:54.421875px;}
.h5{height:56.084062px;}
.h4{height:59.395781px;}
.h8{height:60.960938px;}
.h1d{height:62.085000px;}
.h19{height:62.130000px;}
.h11{height:64.978594px;}
.h13{height:65.010937px;}
.h6{height:65.837812px;}
.h3{height:65.884219px;}
.hc{height:67.803750px;}
.h23{height:67.837500px;}
.h12{height:69.660000px;}
.h25{height:71.955000px;}
.hb{height:72.562500px;}
.h1e{height:74.685000px;}
.h21{height:79.185000px;}
.ha{height:81.995625px;}
.h2{height:82.830000px;}
.h9{height:111.045000px;}
.h1b{height:179.625000px;}
.h10{height:620.910000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:82.609500px;}
.wa{width:95.601000px;}
.w2{width:115.189500px;}
.w4{width:156.949500px;}
.w7{width:178.219500px;}
.w8{width:515.085000px;}
.w5{width:536.355000px;}
.w3{width:578.115000px;}
.w6{width:693.315000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.130000px;}
.xf{left:13.489500px;}
.xa{left:14.749500px;}
.x6{left:27.165000px;}
.x1b{left:36.709500px;}
.x16{left:39.229500px;}
.x4{left:41.745000px;}
.x13{left:62.100000px;}
.xd{left:70.363500px;}
.x11{left:86.743500px;}
.x17{left:89.083500px;}
.x5{left:96.690000px;}
.x2{left:97.723500px;}
.x1{left:99.946500px;}
.x19{left:101.323500px;}
.x8{left:108.036000px;}
.x25{left:113.076000px;}
.x7{left:114.690000px;}
.x24{left:118.656000px;}
.x18{left:123.823500px;}
.x1a{left:129.583500px;}
.x1c{left:134.083500px;}
.x26{left:140.076000px;}
.x1f{left:150.510000px;}
.x1d{left:162.030000px;}
.x15{left:170.128500px;}
.x14{left:182.565000px;}
.x3{left:215.145000px;}
.xb{left:256.905000px;}
.xe{left:258.508500px;}
.x12{left:278.175000px;}
.x10{left:346.558500px;}
.x1e{left:473.505000px;}
.x27{left:478.545000px;}
.x22{left:484.125000px;}
.x21{left:488.985000px;}
.x28{left:505.545000px;}
.x20{left:515.985000px;}
.x23{left:527.505000px;}
.x9{left:751.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.297067pt;}
.ls6{letter-spacing:-0.274133pt;}
.ls7{letter-spacing:-0.226667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.074133pt;}
.ls1{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.199467pt;}
.lsc{letter-spacing:0.240533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls14{letter-spacing:2.119680pt;}
.ls11{letter-spacing:5.120000pt;}
.ls13{letter-spacing:9.760000pt;}
.lsf{letter-spacing:10.240000pt;}
.lsb{letter-spacing:12.999680pt;}
.lse{letter-spacing:19.360000pt;}
.ls12{letter-spacing:25.760000pt;}
.ls9{letter-spacing:32.818347pt;}
.lsa{letter-spacing:32.839680pt;}
.ws2{word-spacing:-58.880000pt;}
.wsb{word-spacing:-15.600533pt;}
.wsc{word-spacing:-15.559467pt;}
.wsd{word-spacing:-15.380480pt;}
.ws4{word-spacing:-15.360000pt;}
.ws3{word-spacing:-15.280533pt;}
.ws1{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.656533pt;}
.ws5{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.360000pt;}
.ws9{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.206933pt;}
.wsa{word-spacing:0.000000pt;}
._45{margin-left:-2.027520pt;}
._0{margin-left:-1.123200pt;}
._2{width:1.059200pt;}
._b{width:2.012800pt;}
._12{width:3.209600pt;}
._f{width:4.284160pt;}
._e{width:5.222400pt;}
._10{width:7.004160pt;}
._4{width:8.048640pt;}
._5{width:9.400320pt;}
._c{width:10.813440pt;}
._d{width:11.735040pt;}
._22{width:12.656640pt;}
._28{width:14.209920pt;}
._25{width:16.298880pt;}
._9{width:17.561600pt;}
._a{width:18.517760pt;}
._11{width:19.759360pt;}
._1c{width:20.976000pt;}
._19{width:21.872640pt;}
._1a{width:22.787200pt;}
._17{width:23.961600pt;}
._1f{width:24.856320pt;}
._13{width:25.989120pt;}
._6{width:27.208320pt;}
._3{width:28.692480pt;}
._1e{width:29.736960pt;}
._27{width:30.904320pt;}
._14{width:32.686080pt;}
._40{width:33.985920pt;}
._2c{width:34.932480pt;}
._2b{width:35.880960pt;}
._46{width:36.925440pt;}
._2e{width:38.522880pt;}
._43{width:39.526400pt;}
._36{width:40.693760pt;}
._3f{width:42.065920pt;}
._5c{width:43.008000pt;}
._31{width:43.946880pt;}
._2a{width:45.189120pt;}
._1d{width:46.128000pt;}
._47{width:47.422080pt;}
._15{width:48.721920pt;}
._16{width:49.885227pt;}
._8{width:51.118080pt;}
._30{width:52.101120pt;}
._21{width:53.514240pt;}
._4a{width:55.067520pt;}
._38{width:56.271787pt;}
._18{width:57.347840pt;}
._7{width:58.245120pt;}
._44{width:59.412480pt;}
._3e{width:60.518400pt;}
._56{width:61.747200pt;}
._37{width:62.914560pt;}
._55{width:64.020480pt;}
._4b{width:64.942080pt;}
._4e{width:65.863680pt;}
._4d{width:66.760960pt;}
._50{width:68.689920pt;}
._2d{width:70.041600pt;}
._2f{width:71.280640pt;}
._3c{width:72.622080pt;}
._53{width:73.666560pt;}
._58{width:74.649600pt;}
._32{width:76.738560pt;}
._23{width:78.274560pt;}
._5b{width:80.626560pt;}
._4c{width:82.391040pt;}
._48{width:83.927040pt;}
._33{width:86.261760pt;}
._34{width:87.613440pt;}
._26{width:89.579520pt;}
._42{width:91.054080pt;}
._59{width:92.344320pt;}
._4f{width:95.416320pt;}
._39{width:96.829440pt;}
._41{width:98.611200pt;}
._3b{width:101.253120pt;}
._3d{width:102.376320pt;}
._54{width:103.956480pt;}
._5d{width:112.558080pt;}
._5a{width:115.322880pt;}
._57{width:116.428800pt;}
._1b{width:117.650347pt;}
._24{width:120.852480pt;}
._29{width:121.835520pt;}
._3a{width:124.310400pt;}
._52{width:132.798720pt;}
._51{width:133.696000pt;}
._35{width:143.769600pt;}
._49{width:148.070400pt;}
._20{width:165.027840pt;}
._1{width:694.671787pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.080000pt;}
.y5f{bottom:2.386667pt;}
.y46{bottom:2.720000pt;}
.y14{bottom:2.880000pt;}
.y53{bottom:3.026667pt;}
.y4f{bottom:3.040000pt;}
.y6{bottom:3.200000pt;}
.y6e{bottom:3.360000pt;}
.yb{bottom:3.520000pt;}
.y34{bottom:4.640000pt;}
.y39{bottom:4.800000pt;}
.yc{bottom:4.960000pt;}
.y40{bottom:5.120000pt;}
.y3c{bottom:5.440000pt;}
.y3f{bottom:5.600000pt;}
.y65{bottom:7.026667pt;}
.y11{bottom:8.960000pt;}
.y30{bottom:9.586667pt;}
.y5e{bottom:14.866667pt;}
.y5a{bottom:15.826667pt;}
.y13{bottom:16.320000pt;}
.y45{bottom:16.506667pt;}
.y56{bottom:16.786667pt;}
.y4e{bottom:16.800000pt;}
.y52{bottom:16.826667pt;}
.y61{bottom:20.306667pt;}
.y36{bottom:20.480000pt;}
.y5{bottom:20.506667pt;}
.y33{bottom:20.520000pt;}
.y64{bottom:24.946667pt;}
.y59{bottom:26.706667pt;}
.y5d{bottom:27.346667pt;}
.y51{bottom:27.706667pt;}
.y2f{bottom:29.106667pt;}
.y4d{bottom:30.240000pt;}
.y44{bottom:30.266667pt;}
.y55{bottom:30.546667pt;}
.y10{bottom:32.000000pt;}
.y32{bottom:36.520000pt;}
.y4{bottom:37.626667pt;}
.y6d{bottom:37.786667pt;}
.y5c{bottom:39.826667pt;}
.y63{bottom:42.866667pt;}
.y4c{bottom:43.360000pt;}
.y43{bottom:44.026667pt;}
.y54{bottom:44.306667pt;}
.y9{bottom:45.600000pt;}
.y2e{bottom:49.426667pt;}
.y71{bottom:52.000000pt;}
.y5b{bottom:54.226667pt;}
.yf{bottom:54.880000pt;}
.y58{bottom:55.506667pt;}
.y3{bottom:56.346667pt;}
.y4b{bottom:56.480000pt;}
.y62{bottom:58.226667pt;}
.y8{bottom:63.200000pt;}
.y70{bottom:69.600000pt;}
.y2d{bottom:69.626667pt;}
.ye{bottom:81.920000pt;}
.y6a{bottom:85.120000pt;}
.y2c{bottom:92.506667pt;}
.y69{bottom:107.200000pt;}
.y99{bottom:109.600000pt;}
.y2b{bottom:113.146667pt;}
.y4a{bottom:121.280000pt;}
.y68{bottom:129.280000pt;}
.y98{bottom:131.360000pt;}
.ya2{bottom:131.680000pt;}
.y2a{bottom:133.466667pt;}
.y49{bottom:135.040000pt;}
.y48{bottom:148.800000pt;}
.y67{bottom:151.200000pt;}
.yac{bottom:153.440000pt;}
.y97{bottom:153.760000pt;}
.y29{bottom:153.786667pt;}
.y66{bottom:172.960000pt;}
.y6b{bottom:173.280000pt;}
.y28{bottom:173.946667pt;}
.yb5{bottom:175.360000pt;}
.y96{bottom:175.680000pt;}
.y60{bottom:187.080000pt;}
.y27{bottom:194.266667pt;}
.ya9{bottom:197.466667pt;}
.y95{bottom:197.786667pt;}
.y26{bottom:214.586667pt;}
.y94{bottom:219.866667pt;}
.y25{bottom:234.906667pt;}
.y93{bottom:241.946667pt;}
.y24{bottom:255.066667pt;}
.y57{bottom:257.480000pt;}
.y92{bottom:263.546667pt;}
.ya8{bottom:263.866667pt;}
.y23{bottom:275.386667pt;}
.y91{bottom:285.626667pt;}
.ya1{bottom:285.946667pt;}
.y22{bottom:295.733333pt;}
.yb1{bottom:307.706667pt;}
.y90{bottom:308.026667pt;}
.y21{bottom:316.053333pt;}
.y15{bottom:323.880000pt;}
.yb0{bottom:329.786667pt;}
.y8f{bottom:330.106667pt;}
.y20{bottom:336.213333pt;}
.ya7{bottom:351.706667pt;}
.y8e{bottom:352.026667pt;}
.y1f{bottom:356.533333pt;}
.yad{bottom:373.786667pt;}
.y8d{bottom:374.106667pt;}
.y1e{bottom:376.853333pt;}
.y50{bottom:379.080000pt;}
.ya0{bottom:395.906667pt;}
.y8c{bottom:396.226667pt;}
.y1d{bottom:397.013333pt;}
.y1c{bottom:417.333333pt;}
.y9f{bottom:417.986667pt;}
.y8b{bottom:418.306667pt;}
.y47{bottom:426.946667pt;}
.y1b{bottom:437.653333pt;}
.y9e{bottom:439.906667pt;}
.y8a{bottom:440.226667pt;}
.y1a{bottom:457.973333pt;}
.y89{bottom:462.306667pt;}
.y19{bottom:478.133333pt;}
.ya6{bottom:484.066667pt;}
.y88{bottom:484.386667pt;}
.y18{bottom:498.493333pt;}
.y87{bottom:506.466667pt;}
.y17{bottom:518.813333pt;}
.y86{bottom:528.386667pt;}
.y16{bottom:538.333333pt;}
.y9d{bottom:550.146667pt;}
.y85{bottom:550.466667pt;}
.yb7{bottom:572.226667pt;}
.y84{bottom:572.546667pt;}
.y42{bottom:586.626667pt;}
.yb6{bottom:594.306667pt;}
.yb8{bottom:594.466667pt;}
.y83{bottom:594.626667pt;}
.yab{bottom:616.253333pt;}
.y82{bottom:616.573333pt;}
.ya5{bottom:638.333333pt;}
.y81{bottom:638.653333pt;}
.y41{bottom:641.853333pt;}
.y3e{bottom:657.693333pt;}
.yaa{bottom:660.413333pt;}
.y80{bottom:660.733333pt;}
.y3d{bottom:673.693333pt;}
.y9c{bottom:682.493333pt;}
.y7f{bottom:682.813333pt;}
.y3b{bottom:689.533333pt;}
.yb4{bottom:704.413333pt;}
.y7e{bottom:704.733333pt;}
.y3a{bottom:705.373333pt;}
.y7d{bottom:726.813333pt;}
.y38{bottom:737.053333pt;}
.y7c{bottom:748.893333pt;}
.y37{bottom:753.053333pt;}
.y35{bottom:768.893333pt;}
.yb3{bottom:770.653333pt;}
.y7b{bottom:770.973333pt;}
.y9b{bottom:792.573333pt;}
.y7a{bottom:792.893333pt;}
.y31{bottom:800.573333pt;}
.ya4{bottom:814.693333pt;}
.y79{bottom:815.013333pt;}
.y78{bottom:837.093333pt;}
.y12{bottom:848.293333pt;}
.y77{bottom:859.173333pt;}
.yd{bottom:875.813333pt;}
.yaf{bottom:880.773333pt;}
.y76{bottom:881.093333pt;}
.y9a{bottom:902.853333pt;}
.y75{bottom:903.173333pt;}
.yae{bottom:924.933333pt;}
.y74{bottom:925.253333pt;}
.yb2{bottom:946.853333pt;}
.y73{bottom:947.173333pt;}
.ya3{bottom:968.933333pt;}
.y72{bottom:969.253333pt;}
.ya{bottom:974.533333pt;}
.y6f{bottom:987.173333pt;}
.y7{bottom:997.413333pt;}
.y6c{bottom:1000.933333pt;}
.y1{bottom:1011.173333pt;}
.h16{height:15.840000pt;}
.h17{height:16.000000pt;}
.h7{height:18.706667pt;}
.hd{height:27.506667pt;}
.h15{height:31.680000pt;}
.h20{height:36.138125pt;}
.h1f{height:36.305625pt;}
.h22{height:40.453125pt;}
.h26{height:43.350000pt;}
.h24{height:44.430000pt;}
.h18{height:45.795000pt;}
.h1a{height:47.085938pt;}
.hf{height:47.109375pt;}
.h14{height:47.700000pt;}
.h1c{height:47.858667pt;}
.he{height:48.375000pt;}
.h5{height:49.852500pt;}
.h4{height:52.796250pt;}
.h8{height:54.187500pt;}
.h1d{height:55.186667pt;}
.h19{height:55.226667pt;}
.h11{height:57.758750pt;}
.h13{height:57.787500pt;}
.h6{height:58.522500pt;}
.h3{height:58.563750pt;}
.hc{height:60.270000pt;}
.h23{height:60.300000pt;}
.h12{height:61.920000pt;}
.h25{height:63.960000pt;}
.hb{height:64.500000pt;}
.h1e{height:66.386667pt;}
.h21{height:70.386667pt;}
.ha{height:72.885000pt;}
.h2{height:73.626667pt;}
.h9{height:98.706667pt;}
.h1b{height:159.666667pt;}
.h10{height:551.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:73.430667pt;}
.wa{width:84.978667pt;}
.w2{width:102.390667pt;}
.w4{width:139.510667pt;}
.w7{width:158.417333pt;}
.w8{width:457.853333pt;}
.w5{width:476.760000pt;}
.w3{width:513.880000pt;}
.w6{width:616.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.226667pt;}
.xf{left:11.990667pt;}
.xa{left:13.110667pt;}
.x6{left:24.146667pt;}
.x1b{left:32.630667pt;}
.x16{left:34.870667pt;}
.x4{left:37.106667pt;}
.x13{left:55.200000pt;}
.xd{left:62.545333pt;}
.x11{left:77.105333pt;}
.x17{left:79.185333pt;}
.x5{left:85.946667pt;}
.x2{left:86.865333pt;}
.x1{left:88.841333pt;}
.x19{left:90.065333pt;}
.x8{left:96.032000pt;}
.x25{left:100.512000pt;}
.x7{left:101.946667pt;}
.x24{left:105.472000pt;}
.x18{left:110.065333pt;}
.x1a{left:115.185333pt;}
.x1c{left:119.185333pt;}
.x26{left:124.512000pt;}
.x1f{left:133.786667pt;}
.x1d{left:144.026667pt;}
.x15{left:151.225333pt;}
.x14{left:162.280000pt;}
.x3{left:191.240000pt;}
.xb{left:228.360000pt;}
.xe{left:229.785333pt;}
.x12{left:247.266667pt;}
.x10{left:308.052000pt;}
.x1e{left:420.893333pt;}
.x27{left:425.373333pt;}
.x22{left:430.333333pt;}
.x21{left:434.653333pt;}
.x28{left:449.373333pt;}
.x20{left:458.653333pt;}
.x23{left:468.893333pt;}
.x9{left:668.133333pt;}
}




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