
    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_3b771e21e138fd617f5b4105.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_ef1d8ea31e10b6dcfd9d75f6.woff2')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_9320cdff1047d4585e413cd3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6bb6319ad969c766bb5e24a4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bf869043c127cd60edc00d30.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f87314ba0fe47a04ef206186.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6efad1c47fac98a1c93a6369.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.059082;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_fa797353d1b10f432e4adac1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.851562;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_be305d58d4849457fca73a67.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls14{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.023040px;}
.ls15{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.567600px;}
.ls1{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.792000px;}
.lse{letter-spacing:0.900000px;}
.ls17{letter-spacing:4.500000px;}
.ls0{letter-spacing:12.420000px;}
.ls12{letter-spacing:20.880000px;}
.ls19{letter-spacing:33.960000px;}
.ls1a{letter-spacing:54.864000px;}
.ls9{letter-spacing:2148.787200px;}
.ls11{letter-spacing:2283.427200px;}
.lsd{letter-spacing:3909.307200px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.576000px;}
.wse{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.496000px;}
.wsb{word-spacing:-17.208000px;}
.wsc{word-spacing:-17.064000px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.wsa{word-spacing:-14.595840px;}
.ws6{word-spacing:-14.572800px;}
.wsf{word-spacing:-11.700000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.656000px;}
._0{width:1.128000px;}
._17{width:2.544000px;}
._10{width:3.816000px;}
._19{width:4.824000px;}
._a{width:5.895360px;}
._7{width:7.352640px;}
._8{width:8.809920px;}
._9{width:10.259520px;}
._6{width:11.530560px;}
._4{width:12.784320px;}
._5{width:13.910400px;}
._b{width:15.293280px;}
._1a{width:16.534560px;}
._13{width:17.593440px;}
._18{width:19.224000px;}
._11{width:21.024000px;}
._12{width:22.872000px;}
._15{width:24.768000px;}
._16{width:26.088000px;}
._1b{width:27.216000px;}
._1e{width:28.488000px;}
._c{width:30.205440px;}
._d{width:31.452960px;}
._23{width:33.192000px;}
._1d{width:35.784000px;}
._1c{width:37.080000px;}
._14{width:38.952000px;}
._1f{width:39.984000px;}
._20{width:41.664000px;}
._21{width:44.352000px;}
._22{width:46.176000px;}
._2{width:225.996000px;}
._f{width:267.996000px;}
._3{width:331.308000px;}
._e{width:491.196000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(255,192,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs4{font-size:2.880000px;}
.fsa{font-size:5.760000px;}
.fs9{font-size:18.000000px;}
.fs2{font-size:30.240000px;}
.fsb{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y9{bottom:3.960000px;}
.y72{bottom:4.140000px;}
.yef{bottom:4.485000px;}
.y5{bottom:4.500000px;}
.y82{bottom:5.220000px;}
.y84{bottom:5.400000px;}
.y85{bottom:6.840000px;}
.y81{bottom:7.020000px;}
.y8a{bottom:7.200000px;}
.y3e{bottom:7.380000px;}
.ye{bottom:10.620000px;}
.y6{bottom:18.540000px;}
.y8{bottom:23.040000px;}
.yee{bottom:24.645000px;}
.y75{bottom:25.050000px;}
.y18{bottom:25.200000px;}
.yd{bottom:31.680000px;}
.y7{bottom:41.940000px;}
.y17{bottom:45.765000px;}
.y77{bottom:45.900000px;}
.yed{bottom:46.785000px;}
.yc{bottom:57.630000px;}
.y3{bottom:64.440000px;}
.y16{bottom:66.465000px;}
.y3c{bottom:66.960000px;}
.yec{bottom:68.745000px;}
.y2{bottom:76.320000px;}
.y3b{bottom:86.040000px;}
.y7c{bottom:86.076000px;}
.y99{bottom:86.220000px;}
.y15{bottom:87.165000px;}
.yeb{bottom:90.705000px;}
.y3a{bottom:93.780000px;}
.y14{bottom:107.505000px;}
.y39{bottom:109.800000px;}
.yea{bottom:112.845000px;}
.ybf{bottom:116.460000px;}
.y61{bottom:124.920000px;}
.y13{bottom:127.845000px;}
.y38{bottom:128.880000px;}
.yf1{bottom:135.000000px;}
.yc9{bottom:142.200000px;}
.y37{bottom:144.360000px;}
.y12{bottom:146.745000px;}
.ybb{bottom:147.060000px;}
.ybe{bottom:147.420000px;}
.yf0{bottom:154.980000px;}
.y60{bottom:155.880000px;}
.y36{bottom:158.400000px;}
.y35{bottom:164.730000px;}
.ye9{bottom:169.245000px;}
.y34{bottom:170.850000px;}
.yc8{bottom:173.370000px;}
.y11{bottom:174.285000px;}
.y33{bottom:177.150000px;}
.yba{bottom:178.590000px;}
.y32{bottom:183.270000px;}
.y5f{bottom:187.050000px;}
.y31{bottom:189.570000px;}
.y30{bottom:195.690000px;}
.y10{bottom:201.825000px;}
.yc7{bottom:204.330000px;}
.yb9{bottom:209.550000px;}
.y2f{bottom:213.330000px;}
.y5e{bottom:218.010000px;}
.yc6{bottom:235.470000px;}
.yb8{bottom:240.690000px;}
.y2e{bottom:241.950000px;}
.y98{bottom:242.490000px;}
.y5d{bottom:249.150000px;}
.y97{bottom:259.995000px;}
.yc5{bottom:266.430000px;}
.y2d{bottom:270.390000px;}
.yb7{bottom:271.650000px;}
.y5c{bottom:280.110000px;}
.yc4{bottom:297.570000px;}
.y2c{bottom:298.830000px;}
.yb6{bottom:302.790000px;}
.y5b{bottom:311.250000px;}
.ye8{bottom:321.510000px;}
.y96{bottom:322.095000px;}
.y2b{bottom:327.270000px;}
.yc3{bottom:328.530000px;}
.yb5{bottom:333.750000px;}
.y5a{bottom:342.210000px;}
.ye7{bottom:350.490000px;}
.y2a{bottom:355.710000px;}
.ydf{bottom:359.670000px;}
.yc2{bottom:362.190000px;}
.yb4{bottom:364.890000px;}
.y59{bottom:373.350000px;}
.ye6{bottom:379.470000px;}
.y29{bottom:384.150000px;}
.y95{bottom:384.195000px;}
.yde{bottom:390.630000px;}
.yb3{bottom:395.850000px;}
.y58{bottom:404.310000px;}
.y94{bottom:407.595000px;}
.ye5{bottom:408.495000px;}
.y28{bottom:412.635000px;}
.ydd{bottom:421.815000px;}
.yb2{bottom:427.035000px;}
.y7a{bottom:427.935000px;}
.y93{bottom:430.815000px;}
.y57{bottom:435.495000px;}
.ye4{bottom:437.475000px;}
.y27{bottom:441.075000px;}
.y79{bottom:445.215000px;}
.ydc{bottom:452.775000px;}
.y92{bottom:454.245000px;}
.yb1{bottom:457.995000px;}
.y56{bottom:466.455000px;}
.y26{bottom:469.515000px;}
.y91{bottom:477.645000px;}
.ydb{bottom:483.915000px;}
.yb0{bottom:488.775000px;}
.ybd{bottom:489.135000px;}
.ye3{bottom:495.435000px;}
.y55{bottom:497.595000px;}
.y25{bottom:498.135000px;}
.y90{bottom:500.865000px;}
.y78{bottom:507.315000px;}
.yda{bottom:514.875000px;}
.yaf{bottom:520.095000px;}
.y8f{bottom:524.265000px;}
.ye2{bottom:524.415000px;}
.y24{bottom:526.575000px;}
.y54{bottom:528.555000px;}
.y8e{bottom:544.965000px;}
.yd9{bottom:546.015000px;}
.yae{bottom:551.235000px;}
.ye1{bottom:553.395000px;}
.y23{bottom:555.015000px;}
.y53{bottom:559.695000px;}
.y8d{bottom:565.665000px;}
.y76{bottom:569.415000px;}
.yd8{bottom:576.975000px;}
.yad{bottom:582.195000px;}
.ye0{bottom:582.375000px;}
.y22{bottom:583.455000px;}
.y8c{bottom:586.365000px;}
.y52{bottom:590.655000px;}
.yd7{bottom:608.115000px;}
.y8b{bottom:609.765000px;}
.y21{bottom:611.895000px;}
.yac{bottom:613.335000px;}
.y51{bottom:621.795000px;}
.y74{bottom:631.515000px;}
.y89{bottom:633.030000px;}
.yd6{bottom:639.075000px;}
.y20{bottom:640.335000px;}
.yab{bottom:644.295000px;}
.y50{bottom:652.785000px;}
.y88{bottom:656.430000px;}
.y1f{bottom:668.805000px;}
.yd5{bottom:670.245000px;}
.y73{bottom:672.765000px;}
.yaa{bottom:675.285000px;}
.y87{bottom:677.130000px;}
.yc1{bottom:683.565000px;}
.y4f{bottom:683.925000px;}
.y1e{bottom:697.245000px;}
.y86{bottom:697.830000px;}
.yd4{bottom:701.205000px;}
.ya9{bottom:706.425000px;}
.y4e{bottom:714.885000px;}
.y71{bottom:715.065000px;}
.y83{bottom:718.530000px;}
.y1d{bottom:725.685000px;}
.yd3{bottom:732.345000px;}
.ya8{bottom:737.385000px;}
.y80{bottom:741.930000px;}
.y4d{bottom:746.025000px;}
.y70{bottom:750.705000px;}
.y1c{bottom:754.305000px;}
.yd2{bottom:763.305000px;}
.y7f{bottom:766.050000px;}
.ya7{bottom:768.525000px;}
.y4c{bottom:776.985000px;}
.y6f{bottom:782.205000px;}
.y1b{bottom:782.745000px;}
.yd1{bottom:794.445000px;}
.ya6{bottom:799.485000px;}
.y7e{bottom:801.690000px;}
.y4b{bottom:808.125000px;}
.y6e{bottom:813.165000px;}
.y1a{bottom:814.785000px;}
.yd0{bottom:825.405000px;}
.ya5{bottom:830.625000px;}
.y19{bottom:838.185000px;}
.y4a{bottom:838.725000px;}
.y7d{bottom:842.580000px;}
.y6d{bottom:844.305000px;}
.y7b{bottom:850.680000px;}
.yf{bottom:851.865000px;}
.ycf{bottom:856.545000px;}
.ya4{bottom:861.585000px;}
.y49{bottom:870.045000px;}
.y6c{bottom:875.265000px;}
.yce{bottom:887.505000px;}
.ya3{bottom:892.725000px;}
.y48{bottom:901.230000px;}
.y6b{bottom:906.450000px;}
.ycd{bottom:918.690000px;}
.ya2{bottom:923.730000px;}
.y47{bottom:932.190000px;}
.y6a{bottom:937.410000px;}
.ycc{bottom:949.650000px;}
.ya1{bottom:954.870000px;}
.y46{bottom:963.330000px;}
.y69{bottom:968.550000px;}
.ycb{bottom:980.790000px;}
.ya0{bottom:985.830000px;}
.y45{bottom:994.290000px;}
.y68{bottom:999.510000px;}
.yca{bottom:1014.270000px;}
.y9f{bottom:1016.970000px;}
.y44{bottom:1025.430000px;}
.y67{bottom:1030.650000px;}
.y9e{bottom:1047.930000px;}
.y43{bottom:1056.390000px;}
.y66{bottom:1061.610000px;}
.y9d{bottom:1079.070000px;}
.ya{bottom:1086.090000px;}
.y42{bottom:1087.530000px;}
.y65{bottom:1092.750000px;}
.yc0{bottom:1109.670000px;}
.y9c{bottom:1110.030000px;}
.y41{bottom:1118.490000px;}
.y64{bottom:1123.710000px;}
.y9b{bottom:1141.200000px;}
.y40{bottom:1149.660000px;}
.y63{bottom:1154.880000px;}
.y9a{bottom:1171.800000px;}
.ybc{bottom:1172.160000px;}
.y3f{bottom:1183.140000px;}
.y62{bottom:1185.840000px;}
.y3d{bottom:1212.660000px;}
.y4{bottom:1215.540000px;}
.y1{bottom:1220.760000px;}
.ha{height:2.826563px;}
.h17{height:5.653125px;}
.h2c{height:17.666016px;}
.h16{height:18.140625px;}
.h22{height:20.685000px;}
.h5{height:20.700000px;}
.h4{height:22.931016px;}
.h23{height:23.205000px;}
.h27{height:23.220000px;}
.h25{height:23.242500px;}
.h24{height:23.385000px;}
.h26{height:23.400000px;}
.h28{height:23.430000px;}
.h1a{height:23.580000px;}
.h18{height:40.985156px;}
.h1e{height:41.250000px;}
.h1d{height:41.400000px;}
.h12{height:47.344922px;}
.h14{height:47.901094px;}
.h2{height:50.229844px;}
.h1c{height:52.066406px;}
.h3{height:54.597656px;}
.h19{height:55.825312px;}
.h7{height:56.880000px;}
.hf{height:58.651172px;}
.h1f{height:62.085000px;}
.h8{height:65.010937px;}
.h15{height:66.757500px;}
.h11{height:70.628906px;}
.h6{height:70.664062px;}
.hc{height:72.562500px;}
.h2a{height:74.004654px;}
.h1b{height:80.464922px;}
.h29{height:80.644922px;}
.h10{height:81.736875px;}
.h13{height:82.676953px;}
.he{height:96.508125px;}
.h9{height:106.050000px;}
.h2b{height:129.405000px;}
.hb{height:181.406250px;}
.hd{height:224.130000px;}
.h20{height:892.980000px;}
.h21{height:893.250000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:192.799500px;}
.wc{width:290.175000px;}
.we{width:300.075000px;}
.w8{width:305.119500px;}
.wd{width:334.650000px;}
.w9{width:388.155000px;}
.wf{width:445.425000px;}
.w5{width:485.355000px;}
.w7{width:680.865000px;}
.w6{width:693.270000px;}
.w2{width:693.285000px;}
.w3{width:693.645000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wb{width:1263.000000px;}
.wa{width:1263.060000px;}
.x0{left:0.000000px;}
.x20{left:5.580000px;}
.x3{left:8.100000px;}
.x14{left:13.320000px;}
.xa{left:14.389500px;}
.x9{left:16.549500px;}
.xf{left:25.549500px;}
.x11{left:26.989500px;}
.x21{left:32.580000px;}
.x19{left:52.740000px;}
.x18{left:60.840000px;}
.x8{left:71.280000px;}
.xd{left:79.003500px;}
.x2{left:99.936000px;}
.x4{left:102.466500px;}
.x1{left:108.036000px;}
.x1e{left:135.036000px;}
.x5{left:150.103500px;}
.xe{left:154.243500px;}
.x1b{left:157.005000px;}
.x7{left:161.490000px;}
.x15{left:233.850000px;}
.xb{left:296.488500px;}
.x6{left:299.775000px;}
.x10{left:318.988500px;}
.x1a{left:331.410000px;}
.xc{left:346.528500px;}
.x1f{left:378.975000px;}
.x16{left:405.075000px;}
.x13{left:446.475000px;}
.x1d{left:463.425000px;}
.x17{left:619.485000px;}
.x1c{left:781.860000px;}
.x12{left:785.130000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.020480pt;}
.ls15{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.504533pt;}
.ls1{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.800000pt;}
.ls17{letter-spacing:4.000000pt;}
.ls0{letter-spacing:11.040000pt;}
.ls12{letter-spacing:18.560000pt;}
.ls19{letter-spacing:30.186667pt;}
.ls1a{letter-spacing:48.768000pt;}
.ls9{letter-spacing:1910.033067pt;}
.ls11{letter-spacing:2029.713067pt;}
.lsd{letter-spacing:3474.939733pt;}
.ws8{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.512000pt;}
.wse{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.552000pt;}
.wsb{word-spacing:-15.296000pt;}
.wsc{word-spacing:-15.168000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.wsa{word-spacing:-12.974080pt;}
.ws6{word-spacing:-12.953600pt;}
.wsf{word-spacing:-10.400000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.472000pt;}
._0{width:1.002667pt;}
._17{width:2.261333pt;}
._10{width:3.392000pt;}
._19{width:4.288000pt;}
._a{width:5.240320pt;}
._7{width:6.535680pt;}
._8{width:7.831040pt;}
._9{width:9.119573pt;}
._6{width:10.249387pt;}
._4{width:11.363840pt;}
._5{width:12.364800pt;}
._b{width:13.594027pt;}
._1a{width:14.697387pt;}
._13{width:15.638613pt;}
._18{width:17.088000pt;}
._11{width:18.688000pt;}
._12{width:20.330667pt;}
._15{width:22.016000pt;}
._16{width:23.189333pt;}
._1b{width:24.192000pt;}
._1e{width:25.322667pt;}
._c{width:26.849280pt;}
._d{width:27.958187pt;}
._23{width:29.504000pt;}
._1d{width:31.808000pt;}
._1c{width:32.960000pt;}
._14{width:34.624000pt;}
._1f{width:35.541333pt;}
._20{width:37.034667pt;}
._21{width:39.424000pt;}
._22{width:41.045333pt;}
._2{width:200.885333pt;}
._f{width:238.218667pt;}
._3{width:294.496000pt;}
._e{width:436.618667pt;}
.fs4{font-size:2.560000pt;}
.fsa{font-size:5.120000pt;}
.fs9{font-size:16.000000pt;}
.fs2{font-size:26.880000pt;}
.fsb{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y9{bottom:3.520000pt;}
.y72{bottom:3.680000pt;}
.yef{bottom:3.986667pt;}
.y5{bottom:4.000000pt;}
.y82{bottom:4.640000pt;}
.y84{bottom:4.800000pt;}
.y85{bottom:6.080000pt;}
.y81{bottom:6.240000pt;}
.y8a{bottom:6.400000pt;}
.y3e{bottom:6.560000pt;}
.ye{bottom:9.440000pt;}
.y6{bottom:16.480000pt;}
.y8{bottom:20.480000pt;}
.yee{bottom:21.906667pt;}
.y75{bottom:22.266667pt;}
.y18{bottom:22.400000pt;}
.yd{bottom:28.160000pt;}
.y7{bottom:37.280000pt;}
.y17{bottom:40.680000pt;}
.y77{bottom:40.800000pt;}
.yed{bottom:41.586667pt;}
.yc{bottom:51.226667pt;}
.y3{bottom:57.280000pt;}
.y16{bottom:59.080000pt;}
.y3c{bottom:59.520000pt;}
.yec{bottom:61.106667pt;}
.y2{bottom:67.840000pt;}
.y3b{bottom:76.480000pt;}
.y7c{bottom:76.512000pt;}
.y99{bottom:76.640000pt;}
.y15{bottom:77.480000pt;}
.yeb{bottom:80.626667pt;}
.y3a{bottom:83.360000pt;}
.y14{bottom:95.560000pt;}
.y39{bottom:97.600000pt;}
.yea{bottom:100.306667pt;}
.ybf{bottom:103.520000pt;}
.y61{bottom:111.040000pt;}
.y13{bottom:113.640000pt;}
.y38{bottom:114.560000pt;}
.yf1{bottom:120.000000pt;}
.yc9{bottom:126.400000pt;}
.y37{bottom:128.320000pt;}
.y12{bottom:130.440000pt;}
.ybb{bottom:130.720000pt;}
.ybe{bottom:131.040000pt;}
.yf0{bottom:137.760000pt;}
.y60{bottom:138.560000pt;}
.y36{bottom:140.800000pt;}
.y35{bottom:146.426667pt;}
.ye9{bottom:150.440000pt;}
.y34{bottom:151.866667pt;}
.yc8{bottom:154.106667pt;}
.y11{bottom:154.920000pt;}
.y33{bottom:157.466667pt;}
.yba{bottom:158.746667pt;}
.y32{bottom:162.906667pt;}
.y5f{bottom:166.266667pt;}
.y31{bottom:168.506667pt;}
.y30{bottom:173.946667pt;}
.y10{bottom:179.400000pt;}
.yc7{bottom:181.626667pt;}
.yb9{bottom:186.266667pt;}
.y2f{bottom:189.626667pt;}
.y5e{bottom:193.786667pt;}
.yc6{bottom:209.306667pt;}
.yb8{bottom:213.946667pt;}
.y2e{bottom:215.066667pt;}
.y98{bottom:215.546667pt;}
.y5d{bottom:221.466667pt;}
.y97{bottom:231.106667pt;}
.yc5{bottom:236.826667pt;}
.y2d{bottom:240.346667pt;}
.yb7{bottom:241.466667pt;}
.y5c{bottom:248.986667pt;}
.yc4{bottom:264.506667pt;}
.y2c{bottom:265.626667pt;}
.yb6{bottom:269.146667pt;}
.y5b{bottom:276.666667pt;}
.ye8{bottom:285.786667pt;}
.y96{bottom:286.306667pt;}
.y2b{bottom:290.906667pt;}
.yc3{bottom:292.026667pt;}
.yb5{bottom:296.666667pt;}
.y5a{bottom:304.186667pt;}
.ye7{bottom:311.546667pt;}
.y2a{bottom:316.186667pt;}
.ydf{bottom:319.706667pt;}
.yc2{bottom:321.946667pt;}
.yb4{bottom:324.346667pt;}
.y59{bottom:331.866667pt;}
.ye6{bottom:337.306667pt;}
.y29{bottom:341.466667pt;}
.y95{bottom:341.506667pt;}
.yde{bottom:347.226667pt;}
.yb3{bottom:351.866667pt;}
.y58{bottom:359.386667pt;}
.y94{bottom:362.306667pt;}
.ye5{bottom:363.106667pt;}
.y28{bottom:366.786667pt;}
.ydd{bottom:374.946667pt;}
.yb2{bottom:379.586667pt;}
.y7a{bottom:380.386667pt;}
.y93{bottom:382.946667pt;}
.y57{bottom:387.106667pt;}
.ye4{bottom:388.866667pt;}
.y27{bottom:392.066667pt;}
.y79{bottom:395.746667pt;}
.ydc{bottom:402.466667pt;}
.y92{bottom:403.773333pt;}
.yb1{bottom:407.106667pt;}
.y56{bottom:414.626667pt;}
.y26{bottom:417.346667pt;}
.y91{bottom:424.573333pt;}
.ydb{bottom:430.146667pt;}
.yb0{bottom:434.466667pt;}
.ybd{bottom:434.786667pt;}
.ye3{bottom:440.386667pt;}
.y55{bottom:442.306667pt;}
.y25{bottom:442.786667pt;}
.y90{bottom:445.213333pt;}
.y78{bottom:450.946667pt;}
.yda{bottom:457.666667pt;}
.yaf{bottom:462.306667pt;}
.y8f{bottom:466.013333pt;}
.ye2{bottom:466.146667pt;}
.y24{bottom:468.066667pt;}
.y54{bottom:469.826667pt;}
.y8e{bottom:484.413333pt;}
.yd9{bottom:485.346667pt;}
.yae{bottom:489.986667pt;}
.ye1{bottom:491.906667pt;}
.y23{bottom:493.346667pt;}
.y53{bottom:497.506667pt;}
.y8d{bottom:502.813333pt;}
.y76{bottom:506.146667pt;}
.yd8{bottom:512.866667pt;}
.yad{bottom:517.506667pt;}
.ye0{bottom:517.666667pt;}
.y22{bottom:518.626667pt;}
.y8c{bottom:521.213333pt;}
.y52{bottom:525.026667pt;}
.yd7{bottom:540.546667pt;}
.y8b{bottom:542.013333pt;}
.y21{bottom:543.906667pt;}
.yac{bottom:545.186667pt;}
.y51{bottom:552.706667pt;}
.y74{bottom:561.346667pt;}
.y89{bottom:562.693333pt;}
.yd6{bottom:568.066667pt;}
.y20{bottom:569.186667pt;}
.yab{bottom:572.706667pt;}
.y50{bottom:580.253333pt;}
.y88{bottom:583.493333pt;}
.y1f{bottom:594.493333pt;}
.yd5{bottom:595.773333pt;}
.y73{bottom:598.013333pt;}
.yaa{bottom:600.253333pt;}
.y87{bottom:601.893333pt;}
.yc1{bottom:607.613333pt;}
.y4f{bottom:607.933333pt;}
.y1e{bottom:619.773333pt;}
.y86{bottom:620.293333pt;}
.yd4{bottom:623.293333pt;}
.ya9{bottom:627.933333pt;}
.y4e{bottom:635.453333pt;}
.y71{bottom:635.613333pt;}
.y83{bottom:638.693333pt;}
.y1d{bottom:645.053333pt;}
.yd3{bottom:650.973333pt;}
.ya8{bottom:655.453333pt;}
.y80{bottom:659.493333pt;}
.y4d{bottom:663.133333pt;}
.y70{bottom:667.293333pt;}
.y1c{bottom:670.493333pt;}
.yd2{bottom:678.493333pt;}
.y7f{bottom:680.933333pt;}
.ya7{bottom:683.133333pt;}
.y4c{bottom:690.653333pt;}
.y6f{bottom:695.293333pt;}
.y1b{bottom:695.773333pt;}
.yd1{bottom:706.173333pt;}
.ya6{bottom:710.653333pt;}
.y7e{bottom:712.613333pt;}
.y4b{bottom:718.333333pt;}
.y6e{bottom:722.813333pt;}
.y1a{bottom:724.253333pt;}
.yd0{bottom:733.693333pt;}
.ya5{bottom:738.333333pt;}
.y19{bottom:745.053333pt;}
.y4a{bottom:745.533333pt;}
.y7d{bottom:748.960000pt;}
.y6d{bottom:750.493333pt;}
.y7b{bottom:756.160000pt;}
.yf{bottom:757.213333pt;}
.ycf{bottom:761.373333pt;}
.ya4{bottom:765.853333pt;}
.y49{bottom:773.373333pt;}
.y6c{bottom:778.013333pt;}
.yce{bottom:788.893333pt;}
.ya3{bottom:793.533333pt;}
.y48{bottom:801.093333pt;}
.y6b{bottom:805.733333pt;}
.ycd{bottom:816.613333pt;}
.ya2{bottom:821.093333pt;}
.y47{bottom:828.613333pt;}
.y6a{bottom:833.253333pt;}
.ycc{bottom:844.133333pt;}
.ya1{bottom:848.773333pt;}
.y46{bottom:856.293333pt;}
.y69{bottom:860.933333pt;}
.ycb{bottom:871.813333pt;}
.ya0{bottom:876.293333pt;}
.y45{bottom:883.813333pt;}
.y68{bottom:888.453333pt;}
.yca{bottom:901.573333pt;}
.y9f{bottom:903.973333pt;}
.y44{bottom:911.493333pt;}
.y67{bottom:916.133333pt;}
.y9e{bottom:931.493333pt;}
.y43{bottom:939.013333pt;}
.y66{bottom:943.653333pt;}
.y9d{bottom:959.173333pt;}
.ya{bottom:965.413333pt;}
.y42{bottom:966.693333pt;}
.y65{bottom:971.333333pt;}
.yc0{bottom:986.373333pt;}
.y9c{bottom:986.693333pt;}
.y41{bottom:994.213333pt;}
.y64{bottom:998.853333pt;}
.y9b{bottom:1014.400000pt;}
.y40{bottom:1021.920000pt;}
.y63{bottom:1026.560000pt;}
.y9a{bottom:1041.600000pt;}
.ybc{bottom:1041.920000pt;}
.y3f{bottom:1051.680000pt;}
.y62{bottom:1054.080000pt;}
.y3d{bottom:1077.920000pt;}
.y4{bottom:1080.480000pt;}
.y1{bottom:1085.120000pt;}
.ha{height:2.512500pt;}
.h17{height:5.025000pt;}
.h2c{height:15.703125pt;}
.h16{height:16.125000pt;}
.h22{height:18.386667pt;}
.h5{height:18.400000pt;}
.h4{height:20.383125pt;}
.h23{height:20.626667pt;}
.h27{height:20.640000pt;}
.h25{height:20.660000pt;}
.h24{height:20.786667pt;}
.h26{height:20.800000pt;}
.h28{height:20.826667pt;}
.h1a{height:20.960000pt;}
.h18{height:36.431250pt;}
.h1e{height:36.666667pt;}
.h1d{height:36.800000pt;}
.h12{height:42.084375pt;}
.h14{height:42.578750pt;}
.h2{height:44.648750pt;}
.h1c{height:46.281250pt;}
.h3{height:48.531250pt;}
.h19{height:49.622500pt;}
.h7{height:50.560000pt;}
.hf{height:52.134375pt;}
.h1f{height:55.186667pt;}
.h8{height:57.787500pt;}
.h15{height:59.340000pt;}
.h11{height:62.781250pt;}
.h6{height:62.812500pt;}
.hc{height:64.500000pt;}
.h2a{height:65.781915pt;}
.h1b{height:71.524375pt;}
.h29{height:71.684375pt;}
.h10{height:72.655000pt;}
.h13{height:73.490625pt;}
.he{height:85.785000pt;}
.h9{height:94.266667pt;}
.h2b{height:115.026667pt;}
.hb{height:161.250000pt;}
.hd{height:199.226667pt;}
.h20{height:793.760000pt;}
.h21{height:794.000000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:171.377333pt;}
.wc{width:257.933333pt;}
.we{width:266.733333pt;}
.w8{width:271.217333pt;}
.wd{width:297.466667pt;}
.w9{width:345.026667pt;}
.wf{width:395.933333pt;}
.w5{width:431.426667pt;}
.w7{width:605.213333pt;}
.w6{width:616.240000pt;}
.w2{width:616.253333pt;}
.w3{width:616.573333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wb{width:1122.666667pt;}
.wa{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x20{left:4.960000pt;}
.x3{left:7.200000pt;}
.x14{left:11.840000pt;}
.xa{left:12.790667pt;}
.x9{left:14.710667pt;}
.xf{left:22.710667pt;}
.x11{left:23.990667pt;}
.x21{left:28.960000pt;}
.x19{left:46.880000pt;}
.x18{left:54.080000pt;}
.x8{left:63.360000pt;}
.xd{left:70.225333pt;}
.x2{left:88.832000pt;}
.x4{left:91.081333pt;}
.x1{left:96.032000pt;}
.x1e{left:120.032000pt;}
.x5{left:133.425333pt;}
.xe{left:137.105333pt;}
.x1b{left:139.560000pt;}
.x7{left:143.546667pt;}
.x15{left:207.866667pt;}
.xb{left:263.545333pt;}
.x6{left:266.466667pt;}
.x10{left:283.545333pt;}
.x1a{left:294.586667pt;}
.xc{left:308.025333pt;}
.x1f{left:336.866667pt;}
.x16{left:360.066667pt;}
.x13{left:396.866667pt;}
.x1d{left:411.933333pt;}
.x17{left:550.653333pt;}
.x1c{left:694.986667pt;}
.x12{left:697.893333pt;}
}




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