
    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_2c87d70034de48282d0a8740.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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_6c365bf72519e87224682e0c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1d9f38b7cccb798dd7ed5dd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_da85d214b04b7b43a78093b8.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_9200b4b7b72d8ba7037d37df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_16d2fb8bb6d50df9885514d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.034000;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_6a789aa2bbca8b6da37c83a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.030273;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_46448410d19f8472eca100d9.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_3618bc66582f8eab6346da39.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_eef61c2c7b1c4c4524973678.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_3119bfaf41be5516873e29db.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-34.911196px;}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v6{vertical-align:33.120000px;}
.v4{vertical-align:34.911196px;}
.ls11{letter-spacing:-2.232546px;}
.ls1f{letter-spacing:-1.800000px;}
.ls7{letter-spacing:-1.728000px;}
.ls12{letter-spacing:-0.853806px;}
.lsc{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.714668px;}
.ls1e{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.630000px;}
.ls1b{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.234720px;}
.ls1a{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.762000px;}
.ls15{letter-spacing:0.792000px;}
.ls18{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.035360px;}
.ls3{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.350000px;}
.ls4{letter-spacing:11.883316px;}
.ls5{letter-spacing:12.384216px;}
.ls19{letter-spacing:20.304000px;}
.ls22{letter-spacing:46.546560px;}
.ls14{letter-spacing:47.664000px;}
.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;}
}
.ws13{word-spacing:-27.864000px;}
.ws17{word-spacing:-27.648000px;}
.ws10{word-spacing:-27.576000px;}
.ws3{word-spacing:-27.504000px;}
.ws6{word-spacing:-27.288000px;}
.ws18{word-spacing:-27.000000px;}
.ws4{word-spacing:-26.928000px;}
.ws12{word-spacing:-26.784000px;}
.ws11{word-spacing:-26.712000px;}
.ws14{word-spacing:-26.640000px;}
.wse{word-spacing:-26.462687px;}
.ws15{word-spacing:-25.560000px;}
.ws16{word-spacing:-25.488000px;}
.ws1{word-spacing:-25.104960px;}
.ws5{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.827040px;}
.ws7{word-spacing:-15.120000px;}
.wsd{word-spacing:-13.050000px;}
.wsb{word-spacing:-11.790000px;}
.ws8{word-spacing:-11.160000px;}
.ws9{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.720000px;}
.wsc{word-spacing:-8.928000px;}
.wsf{word-spacing:0.000000px;}
._10{margin-left:-10.649281px;}
._8{margin-left:-9.501862px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._9{width:4.629528px;}
._6{width:5.919725px;}
._a{width:7.044253px;}
._7{width:8.044754px;}
._11{width:9.048618px;}
._d{width:10.975773px;}
._c{width:12.026002px;}
._b{width:13.094439px;}
._e{width:14.642174px;}
._13{width:25.839360px;}
._12{width:28.327680px;}
._f{width:188.712000px;}
._5{width:198.917925px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs10{font-size:18.720000px;}
.fse{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fsc{font-size:50.089977px;}
.fs6{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs11{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsf{font-size:69.822393px;}
.fs8{font-size:72.000000px;}
.fsb{font-size:75.893905px;}
.fs12{font-size:83.664000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y45{bottom:2.515500px;}
.y6d{bottom:4.305000px;}
.y5{bottom:4.320000px;}
.y69{bottom:4.665000px;}
.y75{bottom:4.680000px;}
.y55{bottom:5.370000px;}
.y6b{bottom:6.825000px;}
.y70{bottom:6.840000px;}
.y74{bottom:7.200000px;}
.y2{bottom:10.080000px;}
.y44{bottom:10.435500px;}
.y52{bottom:12.595500px;}
.y68{bottom:23.385000px;}
.y4{bottom:23.400000px;}
.y6a{bottom:25.905000px;}
.y51{bottom:34.954500px;}
.y43{bottom:39.994500px;}
.y3b{bottom:42.120000px;}
.y3{bottom:47.880000px;}
.y42{bottom:51.874500px;}
.y50{bottom:55.114500px;}
.y7{bottom:57.636000px;}
.y3a{bottom:61.200000px;}
.y4f{bottom:61.954500px;}
.y41{bottom:64.834500px;}
.y40{bottom:78.154500px;}
.y4d{bottom:78.874500px;}
.y39{bottom:79.920000px;}
.y4e{bottom:87.154500px;}
.y4c{bottom:96.154500px;}
.y38{bottom:99.045000px;}
.y3f{bottom:99.754500px;}
.y4b{bottom:102.634500px;}
.y53{bottom:105.516000px;}
.y37{bottom:117.765000px;}
.y4a{bottom:118.474500px;}
.y3c{bottom:121.000500px;}
.y8b{bottom:123.156000px;}
.y49{bottom:133.954500px;}
.y36{bottom:136.845000px;}
.y8a{bottom:142.272000px;}
.y48{bottom:149.434500px;}
.y35{bottom:155.565000px;}
.y89{bottom:160.995000px;}
.y3e{bottom:162.064500px;}
.y47{bottom:164.944500px;}
.y3d{bottom:172.864500px;}
.y46{bottom:180.064500px;}
.y88{bottom:180.075000px;}
.y34{bottom:183.285000px;}
.y87{bottom:198.795000px;}
.y33{bottom:202.365000px;}
.y32{bottom:221.115000px;}
.y86{bottom:226.515000px;}
.y31{bottom:240.195000px;}
.y85{bottom:245.595000px;}
.y30{bottom:258.915000px;}
.y84{bottom:264.315000px;}
.y2f{bottom:277.995000px;}
.y83{bottom:283.425000px;}
.y2e{bottom:296.715000px;}
.y1d{bottom:298.875000px;}
.y82{bottom:302.145000px;}
.y2d{bottom:315.795000px;}
.y1c{bottom:322.995000px;}
.yf{bottom:323.385000px;}
.y2c{bottom:334.515000px;}
.y81{bottom:342.465000px;}
.y1b{bottom:347.145000px;}
.y2b{bottom:353.265000px;}
.y80{bottom:361.185000px;}
.y1a{bottom:371.625000px;}
.y2a{bottom:372.345000px;}
.y7f{bottom:380.265000px;}
.y29{bottom:391.065000px;}
.y19{bottom:395.745000px;}
.y7e{bottom:398.985000px;}
.y28{bottom:410.145000px;}
.y7d{bottom:418.110000px;}
.y18{bottom:419.865000px;}
.y27{bottom:428.865000px;}
.y7c{bottom:436.830000px;}
.y17{bottom:443.985000px;}
.y26{bottom:447.945000px;}
.y7b{bottom:451.950000px;}
.y25{bottom:466.665000px;}
.y16{bottom:468.105000px;}
.y7a{bottom:471.750000px;}
.y24{bottom:485.790000px;}
.y15{bottom:492.270000px;}
.y79{bottom:493.710000px;}
.ya7{bottom:497.670000px;}
.y23{bottom:504.510000px;}
.y78{bottom:515.670000px;}
.y14{bottom:516.390000px;}
.y22{bottom:523.590000px;}
.y77{bottom:537.660000px;}
.y13{bottom:540.510000px;}
.y21{bottom:542.310000px;}
.ya6{bottom:547.020000px;}
.y76{bottom:559.620000px;}
.y20{bottom:561.030000px;}
.y12{bottom:564.630000px;}
.ya5{bottom:568.620000px;}
.y1f{bottom:580.110000px;}
.y73{bottom:581.580000px;}
.ya4{bottom:587.340000px;}
.y11{bottom:588.750000px;}
.y1e{bottom:598.830000px;}
.y72{bottom:603.900000px;}
.ya3{bottom:606.420000px;}
.y10{bottom:612.900000px;}
.ya2{bottom:625.140000px;}
.y71{bottom:625.860000px;}
.ya1{bottom:644.220000px;}
.y6f{bottom:647.820000px;}
.ya0{bottom:662.940000px;}
.y6e{bottom:669.825000px;}
.y9f{bottom:684.210000px;}
.y6c{bottom:691.785000px;}
.y9e{bottom:712.290000px;}
.y67{bottom:713.745000px;}
.y9d{bottom:731.010000px;}
.y9c{bottom:750.090000px;}
.y66{bottom:759.090000px;}
.y9b{bottom:768.810000px;}
.y65{bottom:778.170000px;}
.y9a{bottom:787.530000px;}
.y64{bottom:805.935000px;}
.y99{bottom:806.655000px;}
.y63{bottom:825.015000px;}
.y98{bottom:825.375000px;}
.y62{bottom:843.735000px;}
.y97{bottom:844.455000px;}
.y61{bottom:862.815000px;}
.y96{bottom:872.175000px;}
.y60{bottom:881.535000px;}
.y95{bottom:891.255000px;}
.y5f{bottom:900.615000px;}
.y94{bottom:909.975000px;}
.y5e{bottom:928.335000px;}
.y93{bottom:929.055000px;}
.y5d{bottom:947.085000px;}
.y92{bottom:947.805000px;}
.ye{bottom:948.525000px;}
.yd{bottom:953.925000px;}
.y91{bottom:966.525000px;}
.y5c{bottom:968.685000px;}
.yc{bottom:978.405000px;}
.y90{bottom:985.605000px;}
.y5b{bottom:987.405000px;}
.yb{bottom:1001.085000px;}
.y8f{bottom:1004.325000px;}
.y5a{bottom:1006.125000px;}
.ya{bottom:1016.565000px;}
.y8e{bottom:1023.405000px;}
.y59{bottom:1027.725000px;}
.y9{bottom:1039.965000px;}
.y58{bottom:1046.445000px;}
.y8d{bottom:1051.125000px;}
.y57{bottom:1067.730000px;}
.y8c{bottom:1070.250000px;}
.y8{bottom:1072.050000px;}
.y54{bottom:1075.320000px;}
.y56{bottom:1088.970000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h17{height:5.650313px;}
.h1d{height:18.363516px;}
.h2a{height:19.065000px;}
.h25{height:21.225000px;}
.h28{height:21.240000px;}
.h27{height:21.276000px;}
.h29{height:21.600000px;}
.h20{height:27.720000px;}
.h14{height:29.678906px;}
.h13{height:35.332031px;}
.ha{height:38.063520px;}
.h1a{height:40.122072px;}
.h23{height:40.305000px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.hb{height:43.304062px;}
.h1e{height:51.286196px;}
.h1f{height:53.058240px;}
.h15{height:53.677969px;}
.h2e{height:53.776406px;}
.h16{height:55.147500px;}
.h18{height:55.927736px;}
.h7{height:57.290625px;}
.h11{height:57.672000px;}
.h1c{height:59.328281px;}
.h6{height:59.357813px;}
.hf{height:60.791018px;}
.h2d{height:62.163910px;}
.h21{height:63.565031px;}
.h1b{height:64.978594px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:66.757500px;}
.h19{height:70.628906px;}
.h22{height:70.664062px;}
.h2b{height:71.183520px;}
.h2c{height:71.195520px;}
.h24{height:72.562500px;}
.h26{height:74.004654px;}
.h10{height:75.033268px;}
.h8{height:77.280480px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h12{height:201.645000px;}
.hc{height:622.245000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:46.462500px;}
.w9{width:66.636000px;}
.wc{width:80.310000px;}
.wb{width:87.120000px;}
.wa{width:100.461000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w8{width:330.202500px;}
.wd{width:377.415000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:6.876000px;}
.x19{left:8.295000px;}
.x3d{left:9.706500px;}
.x47{left:11.506500px;}
.x4{left:13.305000px;}
.x15{left:14.386500px;}
.x17{left:16.186500px;}
.x1b{left:18.346500px;}
.x45{left:20.160000px;}
.x16{left:21.946500px;}
.x46{left:23.040000px;}
.x49{left:25.185000px;}
.x6{left:28.785000px;}
.x4d{left:29.925000px;}
.x4c{left:31.305000px;}
.x42{left:32.385000px;}
.x4a{left:34.905000px;}
.x48{left:38.145000px;}
.x10{left:43.906500px;}
.x1c{left:47.542500px;}
.x11{left:50.782500px;}
.x14{left:53.302500px;}
.xf{left:55.102500px;}
.x1e{left:57.262500px;}
.x3a{left:62.655000px;}
.x1d{left:66.265500px;}
.x3b{left:70.215000px;}
.x13{left:73.105500px;}
.x20{left:74.175000px;}
.x1{left:78.529500px;}
.x32{left:84.975000px;}
.x7{left:86.436000px;}
.x33{left:89.655000px;}
.x4e{left:93.276000px;}
.x2{left:95.425500px;}
.x1f{left:102.985500px;}
.x1a{left:106.945500px;}
.x34{left:108.420000px;}
.x4f{left:113.436000px;}
.x35{left:116.700000px;}
.x12{left:124.585500px;}
.x21{left:133.260000px;}
.x3e{left:136.534500px;}
.x22{left:137.580000px;}
.x5{left:141.540000px;}
.x3f{left:149.050500px;}
.x4b{left:177.175500px;}
.x3{left:182.250000px;}
.x36{left:216.450000px;}
.x18{left:218.970000px;}
.x37{left:221.130000px;}
.x38{left:228.690000px;}
.x23{left:251.010000px;}
.x24{left:255.330000px;}
.x25{left:271.920000px;}
.x26{left:276.240000px;}
.x27{left:297.840000px;}
.x28{left:306.480000px;}
.x29{left:332.760000px;}
.x2a{left:341.400000px;}
.x2b{left:351.840000px;}
.x2c{left:360.525000px;}
.x2d{left:377.085000px;}
.x2e{left:385.725000px;}
.x2f{left:402.645000px;}
.x30{left:410.925000px;}
.xb{left:423.180000px;}
.x40{left:467.460000px;}
.x31{left:473.235000px;}
.xc{left:481.500000px;}
.x41{left:534.825000px;}
.x39{left:578.400000px;}
.xd{left:597.495000px;}
.xa{left:616.215000px;}
.x43{left:636.030000px;}
.x44{left:723.885000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xe{left:807.090000px;}
@media print{
.v5{vertical-align:-31.032174pt;}
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v6{vertical-align:29.440000pt;}
.v4{vertical-align:31.032174pt;}
.ls11{letter-spacing:-1.984485pt;}
.ls1f{letter-spacing:-1.600000pt;}
.ls7{letter-spacing:-1.536000pt;}
.ls12{letter-spacing:-0.758939pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.635260pt;}
.ls1e{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.560000pt;}
.ls1b{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.208640pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.677333pt;}
.ls15{letter-spacing:0.704000pt;}
.ls18{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.920320pt;}
.ls3{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.200000pt;}
.ls4{letter-spacing:10.562947pt;}
.ls5{letter-spacing:11.008192pt;}
.ls19{letter-spacing:18.048000pt;}
.ls22{letter-spacing:41.374720pt;}
.ls14{letter-spacing:42.368000pt;}
.ws13{word-spacing:-24.768000pt;}
.ws17{word-spacing:-24.576000pt;}
.ws10{word-spacing:-24.512000pt;}
.ws3{word-spacing:-24.448000pt;}
.ws6{word-spacing:-24.256000pt;}
.ws18{word-spacing:-24.000000pt;}
.ws4{word-spacing:-23.936000pt;}
.ws12{word-spacing:-23.808000pt;}
.ws11{word-spacing:-23.744000pt;}
.ws14{word-spacing:-23.680000pt;}
.wse{word-spacing:-23.522388pt;}
.ws15{word-spacing:-22.720000pt;}
.ws16{word-spacing:-22.656000pt;}
.ws1{word-spacing:-22.315520pt;}
.ws5{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.068480pt;}
.ws7{word-spacing:-13.440000pt;}
.wsd{word-spacing:-11.600000pt;}
.wsb{word-spacing:-10.480000pt;}
.ws8{word-spacing:-9.920000pt;}
.ws9{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.640000pt;}
.wsc{word-spacing:-7.936000pt;}
.wsf{word-spacing:0.000000pt;}
._10{margin-left:-9.466028pt;}
._8{margin-left:-8.446100pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._9{width:4.115136pt;}
._6{width:5.261977pt;}
._a{width:6.261558pt;}
._7{width:7.150892pt;}
._11{width:8.043216pt;}
._d{width:9.756242pt;}
._c{width:10.689780pt;}
._b{width:11.639501pt;}
._e{width:13.015266pt;}
._13{width:22.968320pt;}
._12{width:25.180160pt;}
._f{width:167.744000pt;}
._5{width:176.815933pt;}
.fsa{font-size:5.120000pt;}
.fs10{font-size:16.640000pt;}
.fse{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fsc{font-size:44.524424pt;}
.fs6{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs11{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsf{font-size:62.064349pt;}
.fs8{font-size:64.000000pt;}
.fsb{font-size:67.461249pt;}
.fs12{font-size:74.368000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.236000pt;}
.y6d{bottom:3.826667pt;}
.y5{bottom:3.840000pt;}
.y69{bottom:4.146667pt;}
.y75{bottom:4.160000pt;}
.y55{bottom:4.773333pt;}
.y6b{bottom:6.066667pt;}
.y70{bottom:6.080000pt;}
.y74{bottom:6.400000pt;}
.y2{bottom:8.960000pt;}
.y44{bottom:9.276000pt;}
.y52{bottom:11.196000pt;}
.y68{bottom:20.786667pt;}
.y4{bottom:20.800000pt;}
.y6a{bottom:23.026667pt;}
.y51{bottom:31.070667pt;}
.y43{bottom:35.550667pt;}
.y3b{bottom:37.440000pt;}
.y3{bottom:42.560000pt;}
.y42{bottom:46.110667pt;}
.y50{bottom:48.990667pt;}
.y7{bottom:51.232000pt;}
.y3a{bottom:54.400000pt;}
.y4f{bottom:55.070667pt;}
.y41{bottom:57.630667pt;}
.y40{bottom:69.470667pt;}
.y4d{bottom:70.110667pt;}
.y39{bottom:71.040000pt;}
.y4e{bottom:77.470667pt;}
.y4c{bottom:85.470667pt;}
.y38{bottom:88.040000pt;}
.y3f{bottom:88.670667pt;}
.y4b{bottom:91.230667pt;}
.y53{bottom:93.792000pt;}
.y37{bottom:104.680000pt;}
.y4a{bottom:105.310667pt;}
.y3c{bottom:107.556000pt;}
.y8b{bottom:109.472000pt;}
.y49{bottom:119.070667pt;}
.y36{bottom:121.640000pt;}
.y8a{bottom:126.464000pt;}
.y48{bottom:132.830667pt;}
.y35{bottom:138.280000pt;}
.y89{bottom:143.106667pt;}
.y3e{bottom:144.057333pt;}
.y47{bottom:146.617333pt;}
.y3d{bottom:153.657333pt;}
.y46{bottom:160.057333pt;}
.y88{bottom:160.066667pt;}
.y34{bottom:162.920000pt;}
.y87{bottom:176.706667pt;}
.y33{bottom:179.880000pt;}
.y32{bottom:196.546667pt;}
.y86{bottom:201.346667pt;}
.y31{bottom:213.506667pt;}
.y85{bottom:218.306667pt;}
.y30{bottom:230.146667pt;}
.y84{bottom:234.946667pt;}
.y2f{bottom:247.106667pt;}
.y83{bottom:251.933333pt;}
.y2e{bottom:263.746667pt;}
.y1d{bottom:265.666667pt;}
.y82{bottom:268.573333pt;}
.y2d{bottom:280.706667pt;}
.y1c{bottom:287.106667pt;}
.yf{bottom:287.453333pt;}
.y2c{bottom:297.346667pt;}
.y81{bottom:304.413333pt;}
.y1b{bottom:308.573333pt;}
.y2b{bottom:314.013333pt;}
.y80{bottom:321.053333pt;}
.y1a{bottom:330.333333pt;}
.y2a{bottom:330.973333pt;}
.y7f{bottom:338.013333pt;}
.y29{bottom:347.613333pt;}
.y19{bottom:351.773333pt;}
.y7e{bottom:354.653333pt;}
.y28{bottom:364.573333pt;}
.y7d{bottom:371.653333pt;}
.y18{bottom:373.213333pt;}
.y27{bottom:381.213333pt;}
.y7c{bottom:388.293333pt;}
.y17{bottom:394.653333pt;}
.y26{bottom:398.173333pt;}
.y7b{bottom:401.733333pt;}
.y25{bottom:414.813333pt;}
.y16{bottom:416.093333pt;}
.y7a{bottom:419.333333pt;}
.y24{bottom:431.813333pt;}
.y15{bottom:437.573333pt;}
.y79{bottom:438.853333pt;}
.ya7{bottom:442.373333pt;}
.y23{bottom:448.453333pt;}
.y78{bottom:458.373333pt;}
.y14{bottom:459.013333pt;}
.y22{bottom:465.413333pt;}
.y77{bottom:477.920000pt;}
.y13{bottom:480.453333pt;}
.y21{bottom:482.053333pt;}
.ya6{bottom:486.240000pt;}
.y76{bottom:497.440000pt;}
.y20{bottom:498.693333pt;}
.y12{bottom:501.893333pt;}
.ya5{bottom:505.440000pt;}
.y1f{bottom:515.653333pt;}
.y73{bottom:516.960000pt;}
.ya4{bottom:522.080000pt;}
.y11{bottom:523.333333pt;}
.y1e{bottom:532.293333pt;}
.y72{bottom:536.800000pt;}
.ya3{bottom:539.040000pt;}
.y10{bottom:544.800000pt;}
.ya2{bottom:555.680000pt;}
.y71{bottom:556.320000pt;}
.ya1{bottom:572.640000pt;}
.y6f{bottom:575.840000pt;}
.ya0{bottom:589.280000pt;}
.y6e{bottom:595.400000pt;}
.y9f{bottom:608.186667pt;}
.y6c{bottom:614.920000pt;}
.y9e{bottom:633.146667pt;}
.y67{bottom:634.440000pt;}
.y9d{bottom:649.786667pt;}
.y9c{bottom:666.746667pt;}
.y66{bottom:674.746667pt;}
.y9b{bottom:683.386667pt;}
.y65{bottom:691.706667pt;}
.y9a{bottom:700.026667pt;}
.y64{bottom:716.386667pt;}
.y99{bottom:717.026667pt;}
.y63{bottom:733.346667pt;}
.y98{bottom:733.666667pt;}
.y62{bottom:749.986667pt;}
.y97{bottom:750.626667pt;}
.y61{bottom:766.946667pt;}
.y96{bottom:775.266667pt;}
.y60{bottom:783.586667pt;}
.y95{bottom:792.226667pt;}
.y5f{bottom:800.546667pt;}
.y94{bottom:808.866667pt;}
.y5e{bottom:825.186667pt;}
.y93{bottom:825.826667pt;}
.y5d{bottom:841.853333pt;}
.y92{bottom:842.493333pt;}
.ye{bottom:843.133333pt;}
.yd{bottom:847.933333pt;}
.y91{bottom:859.133333pt;}
.y5c{bottom:861.053333pt;}
.yc{bottom:869.693333pt;}
.y90{bottom:876.093333pt;}
.y5b{bottom:877.693333pt;}
.yb{bottom:889.853333pt;}
.y8f{bottom:892.733333pt;}
.y5a{bottom:894.333333pt;}
.ya{bottom:903.613333pt;}
.y8e{bottom:909.693333pt;}
.y59{bottom:913.533333pt;}
.y9{bottom:924.413333pt;}
.y58{bottom:930.173333pt;}
.y8d{bottom:934.333333pt;}
.y57{bottom:949.093333pt;}
.y8c{bottom:951.333333pt;}
.y8{bottom:952.933333pt;}
.y54{bottom:955.840000pt;}
.y56{bottom:967.973333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h17{height:5.022500pt;}
.h1d{height:16.323125pt;}
.h2a{height:16.946667pt;}
.h25{height:18.866667pt;}
.h28{height:18.880000pt;}
.h27{height:18.912000pt;}
.h29{height:19.200000pt;}
.h20{height:24.640000pt;}
.h14{height:26.381250pt;}
.h13{height:31.406250pt;}
.ha{height:33.834240pt;}
.h1a{height:35.664064pt;}
.h23{height:35.826667pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.hb{height:38.492500pt;}
.h1e{height:45.587729pt;}
.h1f{height:47.162880pt;}
.h15{height:47.713750pt;}
.h2e{height:47.801250pt;}
.h16{height:49.020000pt;}
.h18{height:49.713543pt;}
.h7{height:50.925000pt;}
.h11{height:51.264000pt;}
.h1c{height:52.736250pt;}
.h6{height:52.762500pt;}
.hf{height:54.036460pt;}
.h2d{height:55.256809pt;}
.h21{height:56.502250pt;}
.h1b{height:57.758750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:59.340000pt;}
.h19{height:62.781250pt;}
.h22{height:62.812500pt;}
.h2b{height:63.274240pt;}
.h2c{height:63.284907pt;}
.h24{height:64.500000pt;}
.h26{height:65.781915pt;}
.h10{height:66.696238pt;}
.h8{height:68.693760pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h12{height:179.240000pt;}
.hc{height:553.106667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:41.300000pt;}
.w9{width:59.232000pt;}
.wc{width:71.386667pt;}
.wb{width:77.440000pt;}
.wa{width:89.298667pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w8{width:293.513333pt;}
.wd{width:335.480000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:6.112000pt;}
.x19{left:7.373333pt;}
.x3d{left:8.628000pt;}
.x47{left:10.228000pt;}
.x4{left:11.826667pt;}
.x15{left:12.788000pt;}
.x17{left:14.388000pt;}
.x1b{left:16.308000pt;}
.x45{left:17.920000pt;}
.x16{left:19.508000pt;}
.x46{left:20.480000pt;}
.x49{left:22.386667pt;}
.x6{left:25.586667pt;}
.x4d{left:26.600000pt;}
.x4c{left:27.826667pt;}
.x42{left:28.786667pt;}
.x4a{left:31.026667pt;}
.x48{left:33.906667pt;}
.x10{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x11{left:45.140000pt;}
.x14{left:47.380000pt;}
.xf{left:48.980000pt;}
.x1e{left:50.900000pt;}
.x3a{left:55.693333pt;}
.x1d{left:58.902667pt;}
.x3b{left:62.413333pt;}
.x13{left:64.982667pt;}
.x20{left:65.933333pt;}
.x1{left:69.804000pt;}
.x32{left:75.533333pt;}
.x7{left:76.832000pt;}
.x33{left:79.693333pt;}
.x4e{left:82.912000pt;}
.x2{left:84.822667pt;}
.x1f{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x34{left:96.373333pt;}
.x4f{left:100.832000pt;}
.x35{left:103.733333pt;}
.x12{left:110.742667pt;}
.x21{left:118.453333pt;}
.x3e{left:121.364000pt;}
.x22{left:122.293333pt;}
.x5{left:125.813333pt;}
.x3f{left:132.489333pt;}
.x4b{left:157.489333pt;}
.x3{left:162.000000pt;}
.x36{left:192.400000pt;}
.x18{left:194.640000pt;}
.x37{left:196.560000pt;}
.x38{left:203.280000pt;}
.x23{left:223.120000pt;}
.x24{left:226.960000pt;}
.x25{left:241.706667pt;}
.x26{left:245.546667pt;}
.x27{left:264.746667pt;}
.x28{left:272.426667pt;}
.x29{left:295.786667pt;}
.x2a{left:303.466667pt;}
.x2b{left:312.746667pt;}
.x2c{left:320.466667pt;}
.x2d{left:335.186667pt;}
.x2e{left:342.866667pt;}
.x2f{left:357.906667pt;}
.x30{left:365.266667pt;}
.xb{left:376.160000pt;}
.x40{left:415.520000pt;}
.x31{left:420.653333pt;}
.xc{left:428.000000pt;}
.x41{left:475.400000pt;}
.x39{left:514.133333pt;}
.xd{left:531.106667pt;}
.xa{left:547.746667pt;}
.x43{left:565.360000pt;}
.x44{left:643.453333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xe{left:717.413333pt;}
}




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