
    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_3b9e66a87014e8a283e0773f.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_9c6273b19e030ad375dc38da.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5b59922b4afaf7f13cfdf169.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_c0097370343624095250d89b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_5b4fc526e4319bdea454049b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.331543;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_0b40d8d48b251fab70de9871.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331543;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_fe49d065d8ba35d1af15d97d.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_d0ddac3f220b8ce0396a8285.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_8e0297d227c1f4fd9b469fc9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.041992;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_8c53245b84e03376aade6f7e.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v3{vertical-align:-79.200000px;}
.v1{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.520000px;}
.ls2e{letter-spacing:-1.908000px;}
.ls2b{letter-spacing:-1.206000px;}
.ls15{letter-spacing:-0.972000px;}
.ls1a{letter-spacing:-0.853806px;}
.ls17{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.714668px;}
.ls20{letter-spacing:-0.630000px;}
.ls11{letter-spacing:-0.576000px;}
.ls2c{letter-spacing:-0.486600px;}
.ls27{letter-spacing:-0.466800px;}
.ls18{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.349112px;}
.ls21{letter-spacing:-0.234006px;}
.ls16{letter-spacing:-0.089400px;}
.ls1f{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.031680px;}
.ls10{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.020160px;}
.ls26{letter-spacing:0.195600px;}
.ls2f{letter-spacing:0.233280px;}
.ls25{letter-spacing:0.233400px;}
.ls19{letter-spacing:0.382632px;}
.ls12{letter-spacing:0.388800px;}
.ls23{letter-spacing:0.423360px;}
.ls2{letter-spacing:0.466560px;}
.ls13{letter-spacing:0.466800px;}
.ls28{letter-spacing:0.618000px;}
.lsb{letter-spacing:0.661795px;}
.ls1b{letter-spacing:0.664072px;}
.ls1{letter-spacing:0.668160px;}
.ls3{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.738000px;}
.ls2d{letter-spacing:0.973440px;}
.ls0{letter-spacing:1.261440px;}
.ls2a{letter-spacing:1.906560px;}
.lsc{letter-spacing:2.179673px;}
.lsf{letter-spacing:2.306163px;}
.lsd{letter-spacing:3.697551px;}
.ls29{letter-spacing:6.226560px;}
.ls9{letter-spacing:6.733307px;}
.lse{letter-spacing:6.859797px;}
.ls4{letter-spacing:8.251185px;}
.lsa{letter-spacing:8.440920px;}
.ls5{letter-spacing:9.769063px;}
.ls6{letter-spacing:15.840576px;}
.ls8{letter-spacing:15.967066px;}
.ls7{letter-spacing:17.358454px;}
.ls22{letter-spacing:19.306560px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(34,34,34),0 0.015em rgb(34,34,34),0.015em 0 rgb(34,34,34),0 -0.015em  rgb(34,34,34);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(34,34,34);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-60.480000px;}
.ws1{word-spacing:-26.642880px;}
.ws3{word-spacing:-19.293120px;}
.ws8{word-spacing:-18.399718px;}
.wsd{word-spacing:-17.431440px;}
.ws10{word-spacing:-17.046840px;}
.ws2{word-spacing:-16.813440px;}
.ws7{word-spacing:-16.034864px;}
.wse{word-spacing:-15.607440px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.050000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._14{margin-left:-17.055360px;}
._11{margin-left:-9.616320px;}
._13{margin-left:-8.582757px;}
._7{margin-left:-7.571099px;}
._9{margin-left:-4.309054px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:4.498991px;}
._f{width:5.564788px;}
._6{width:6.658005px;}
._5{width:8.395982px;}
._b{width:9.868978px;}
._10{width:11.396160px;}
._c{width:13.129440px;}
._d{width:14.515200px;}
._8{width:15.655883px;}
._e{width:17.936640px;}
._12{width:19.381618px;}
._17{width:22.963200px;}
._15{width:24.736320px;}
._16{width:25.885440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:18.720000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fsb{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs9{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y43{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y3a{bottom:4.320000px;}
.y51{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y4e{bottom:10.435500px;}
.y4{bottom:21.240000px;}
.y39{bottom:27.000000px;}
.y4d{bottom:29.551500px;}
.y42{bottom:30.631500px;}
.y41{bottom:42.514500px;}
.y3{bottom:44.280000px;}
.y38{bottom:50.400000px;}
.y4c{bottom:51.514500px;}
.y40{bottom:55.474500px;}
.y7{bottom:57.636000px;}
.y3f{bottom:68.434500px;}
.y37{bottom:70.560000px;}
.y4b{bottom:70.954500px;}
.y4a{bottom:88.234500px;}
.y3e{bottom:90.394500px;}
.y36{bottom:90.720000px;}
.y49{bottom:94.714500px;}
.yd3{bottom:95.796000px;}
.yab{bottom:98.676000px;}
.y7e{bottom:103.356000px;}
.y4f{bottom:105.156000px;}
.y48{bottom:110.554500px;}
.y35{bottom:110.565000px;}
.yd2{bottom:115.956000px;}
.y3b{bottom:118.480500px;}
.yaa{bottom:118.836000px;}
.y7d{bottom:123.516000px;}
.y47{bottom:126.034500px;}
.y34{bottom:130.725000px;}
.yd1{bottom:136.116000px;}
.ya9{bottom:138.996000px;}
.y46{bottom:141.514500px;}
.y7c{bottom:143.352000px;}
.y3d{bottom:152.674500px;}
.y33{bottom:153.765000px;}
.yd0{bottom:155.955000px;}
.y45{bottom:157.024500px;}
.ya8{bottom:159.195000px;}
.y3c{bottom:163.504500px;}
.y7b{bottom:163.515000px;}
.y44{bottom:172.144500px;}
.y32{bottom:177.165000px;}
.ycf{bottom:178.995000px;}
.ya7{bottom:179.355000px;}
.y7a{bottom:186.555000px;}
.y31{bottom:197.325000px;}
.ya6{bottom:199.155000px;}
.yce{bottom:202.395000px;}
.y79{bottom:212.475000px;}
.y30{bottom:217.125000px;}
.ya5{bottom:219.315000px;}
.ycd{bottom:222.555000px;}
.y78{bottom:235.875000px;}
.ya4{bottom:239.475000px;}
.y2f{bottom:240.195000px;}
.ycc{bottom:242.355000px;}
.y77{bottom:258.915000px;}
.ya3{bottom:262.515000px;}
.y2e{bottom:263.595000px;}
.ycb{bottom:265.395000px;}
.y2d{bottom:283.755000px;}
.y76{bottom:285.225000px;}
.ya2{bottom:285.945000px;}
.yca{bottom:288.825000px;}
.y2c{bottom:303.555000px;}
.ya1{bottom:305.745000px;}
.y75{bottom:311.145000px;}
.yf{bottom:311.505000px;}
.y2b{bottom:323.715000px;}
.y1d{bottom:326.955000px;}
.ya0{bottom:328.785000px;}
.y74{bottom:334.545000px;}
.yc9{bottom:337.785000px;}
.y2a{bottom:346.755000px;}
.y1c{bottom:351.075000px;}
.y9f{bottom:352.185000px;}
.y73{bottom:357.585000px;}
.yc8{bottom:364.065000px;}
.y29{bottom:370.185000px;}
.y9e{bottom:372.345000px;}
.y1b{bottom:375.225000px;}
.y72{bottom:380.625000px;}
.yc7{bottom:389.985000px;}
.y28{bottom:390.345000px;}
.y9d{bottom:395.025000px;}
.y1a{bottom:399.345000px;}
.y71{bottom:400.785000px;}
.yc6{bottom:413.430000px;}
.y9c{bottom:418.470000px;}
.y70{bottom:420.990000px;}
.y27{bottom:421.665000px;}
.y19{bottom:423.465000px;}
.yc5{bottom:433.590000px;}
.y9b{bottom:438.630000px;}
.y6f{bottom:444.030000px;}
.y26{bottom:445.065000px;}
.y18{bottom:447.585000px;}
.yc4{bottom:456.630000px;}
.y9a{bottom:461.310000px;}
.y6e{bottom:467.070000px;}
.y25{bottom:468.825000px;}
.y17{bottom:471.705000px;}
.yc3{bottom:479.670000px;}
.y6d{bottom:487.230000px;}
.y99{bottom:487.590000px;}
.y24{bottom:492.270000px;}
.y16{bottom:495.870000px;}
.yc2{bottom:502.710000px;}
.y6c{bottom:507.390000px;}
.y98{bottom:513.870000px;}
.y23{bottom:515.670000px;}
.y15{bottom:519.990000px;}
.y6b{bottom:527.550000px;}
.yc1{bottom:528.990000px;}
.y97{bottom:536.910000px;}
.y22{bottom:539.430000px;}
.y14{bottom:544.470000px;}
.y6a{bottom:547.740000px;}
.yc0{bottom:554.940000px;}
.y96{bottom:557.100000px;}
.y21{bottom:562.830000px;}
.y69{bottom:567.900000px;}
.y13{bottom:568.590000px;}
.y95{bottom:577.260000px;}
.ybf{bottom:581.220000px;}
.y20{bottom:586.230000px;}
.y68{bottom:587.700000px;}
.y12{bottom:592.710000px;}
.y94{bottom:597.420000px;}
.ybe{bottom:607.140000px;}
.y1f{bottom:609.630000px;}
.y67{bottom:610.740000px;}
.y11{bottom:616.830000px;}
.y93{bottom:617.580000px;}
.y1e{bottom:633.420000px;}
.y66{bottom:634.140000px;}
.y10{bottom:640.980000px;}
.y65{bottom:656.820000px;}
.y92{bottom:657.540000px;}
.ybd{bottom:659.340000px;}
.y64{bottom:680.250000px;}
.y91{bottom:680.610000px;}
.ybc{bottom:685.650000px;}
.y90{bottom:704.010000px;}
.y63{bottom:709.410000px;}
.ybb{bottom:711.930000px;}
.y8f{bottom:724.170000px;}
.y62{bottom:732.450000px;}
.yba{bottom:737.850000px;}
.y8e{bottom:746.850000px;}
.y61{bottom:755.490000px;}
.yb9{bottom:764.130000px;}
.y8d{bottom:770.250000px;}
.y60{bottom:784.650000px;}
.yb8{bottom:790.050000px;}
.y8c{bottom:790.410000px;}
.ydb{bottom:800.490000px;}
.y5f{bottom:804.855000px;}
.y8b{bottom:810.615000px;}
.yb7{bottom:813.495000px;}
.yda{bottom:821.415000px;}
.y5e{bottom:825.015000px;}
.y8a{bottom:830.775000px;}
.yb6{bottom:842.655000px;}
.y5d{bottom:845.175000px;}
.yd9{bottom:847.335000px;}
.y89{bottom:853.455000px;}
.yb5{bottom:862.815000px;}
.y5c{bottom:865.335000px;}
.yd8{bottom:873.615000px;}
.y88{bottom:879.735000px;}
.yb4{bottom:882.975000px;}
.y5b{bottom:885.135000px;}
.yd7{bottom:899.895000px;}
.y87{bottom:903.135000px;}
.y5a{bottom:914.295000px;}
.yb3{bottom:922.935000px;}
.y86{bottom:925.815000px;}
.y59{bottom:934.485000px;}
.yb2{bottom:946.005000px;}
.y85{bottom:949.245000px;}
.y58{bottom:954.645000px;}
.ye{bottom:964.725000px;}
.yd{bottom:967.245000px;}
.y84{bottom:969.405000px;}
.yd6{bottom:972.285000px;}
.y57{bottom:974.805000px;}
.yc{bottom:975.165000px;}
.yb1{bottom:989.565000px;}
.y83{bottom:992.085000px;}
.y56{bottom:994.965000px;}
.yd5{bottom:995.325000px;}
.yb{bottom:995.685000px;}
.yb0{bottom:1009.365000px;}
.y82{bottom:1015.485000px;}
.ya{bottom:1021.605000px;}
.y55{bottom:1025.205000px;}
.yaf{bottom:1029.525000px;}
.y81{bottom:1035.645000px;}
.y54{bottom:1050.405000px;}
.y9{bottom:1051.125000px;}
.yae{bottom:1052.565000px;}
.yd4{bottom:1055.805000px;}
.y80{bottom:1058.685000px;}
.yad{bottom:1076.010000px;}
.y53{bottom:1078.530000px;}
.y7f{bottom:1081.770000px;}
.y8{bottom:1086.450000px;}
.y50{bottom:1089.720000px;}
.yac{bottom:1098.690000px;}
.y52{bottom:1101.930000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.hb{height:18.866250px;}
.h17{height:27.720000px;}
.h12{height:29.678906px;}
.h6{height:30.077578px;}
.h11{height:35.332031px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h13{height:53.677969px;}
.h16{height:54.426094px;}
.h14{height:55.147500px;}
.h7{height:58.050000px;}
.h19{height:59.328281px;}
.h5{height:59.357813px;}
.ha{height:60.952500px;}
.hf{height:61.143509px;}
.h18{height:63.455625px;}
.h9{height:64.112344px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h8{height:88.536094px;}
.h4{height:116.640000px;}
.h10{height:192.285000px;}
.hc{height:650.325000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:6.876000px;}
.x17{left:8.266500px;}
.x4{left:13.305000px;}
.x15{left:17.266500px;}
.x1b{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:29.146500px;}
.x6{left:38.145000px;}
.xf{left:43.906500px;}
.x1c{left:47.542500px;}
.x10{left:50.782500px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x1e{left:57.262500px;}
.x19{left:62.295000px;}
.x1d{left:66.265500px;}
.x12{left:75.265500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x13{left:88.945500px;}
.x20{left:93.660000px;}
.x2{left:95.425500px;}
.x1f{left:102.985500px;}
.x1a{left:106.945500px;}
.x11{left:124.585500px;}
.x21{left:136.500000px;}
.x24{left:140.472000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.x22{left:477.555000px;}
.xb{left:511.410000px;}
.xc{left:606.495000px;}
.xa{left:688.245000px;}
.x9{left:766.050000px;}
.x25{left:791.970000px;}
.x8{left:799.530000px;}
.xd{left:807.090000px;}
@media print{
.v3{vertical-align:-70.400000pt;}
.v1{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.240000pt;}
.ls2e{letter-spacing:-1.696000pt;}
.ls2b{letter-spacing:-1.072000pt;}
.ls15{letter-spacing:-0.864000pt;}
.ls1a{letter-spacing:-0.758939pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.635260pt;}
.ls20{letter-spacing:-0.560000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls2c{letter-spacing:-0.432533pt;}
.ls27{letter-spacing:-0.414933pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.310322pt;}
.ls21{letter-spacing:-0.208006pt;}
.ls16{letter-spacing:-0.079467pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.028160pt;}
.ls10{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.017920pt;}
.ls26{letter-spacing:0.173867pt;}
.ls2f{letter-spacing:0.207360pt;}
.ls25{letter-spacing:0.207467pt;}
.ls19{letter-spacing:0.340117pt;}
.ls12{letter-spacing:0.345600pt;}
.ls23{letter-spacing:0.376320pt;}
.ls2{letter-spacing:0.414720pt;}
.ls13{letter-spacing:0.414933pt;}
.ls28{letter-spacing:0.549333pt;}
.lsb{letter-spacing:0.588262pt;}
.ls1b{letter-spacing:0.590286pt;}
.ls1{letter-spacing:0.593920pt;}
.ls3{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.656000pt;}
.ls2d{letter-spacing:0.865280pt;}
.ls0{letter-spacing:1.121280pt;}
.ls2a{letter-spacing:1.694720pt;}
.lsc{letter-spacing:1.937487pt;}
.lsf{letter-spacing:2.049922pt;}
.lsd{letter-spacing:3.286712pt;}
.ls29{letter-spacing:5.534720pt;}
.ls9{letter-spacing:5.985162pt;}
.lse{letter-spacing:6.097597pt;}
.ls4{letter-spacing:7.334387pt;}
.lsa{letter-spacing:7.503040pt;}
.ls5{letter-spacing:8.683612pt;}
.ls6{letter-spacing:14.080512pt;}
.ls8{letter-spacing:14.192947pt;}
.ls7{letter-spacing:15.429737pt;}
.ls22{letter-spacing:17.161387pt;}
.wsf{word-spacing:-53.760000pt;}
.ws1{word-spacing:-23.682560pt;}
.ws3{word-spacing:-17.149440pt;}
.ws8{word-spacing:-16.355305pt;}
.wsd{word-spacing:-15.494613pt;}
.ws10{word-spacing:-15.152747pt;}
.ws2{word-spacing:-14.945280pt;}
.ws7{word-spacing:-14.253213pt;}
.wse{word-spacing:-13.873280pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.600000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._14{margin-left:-15.160320pt;}
._11{margin-left:-8.547840pt;}
._13{margin-left:-7.629117pt;}
._7{margin-left:-6.729866pt;}
._9{margin-left:-3.830270pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:3.999103pt;}
._f{width:4.946478pt;}
._6{width:5.918227pt;}
._5{width:7.463095pt;}
._b{width:8.772425pt;}
._10{width:10.129920pt;}
._c{width:11.670613pt;}
._d{width:12.902400pt;}
._8{width:13.916340pt;}
._e{width:15.943680pt;}
._12{width:17.228105pt;}
._17{width:20.411733pt;}
._15{width:21.987840pt;}
._16{width:23.009280pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:16.640000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fsb{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs9{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y3a{bottom:3.840000pt;}
.y51{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y4e{bottom:9.276000pt;}
.y4{bottom:18.880000pt;}
.y39{bottom:24.000000pt;}
.y4d{bottom:26.268000pt;}
.y42{bottom:27.228000pt;}
.y41{bottom:37.790667pt;}
.y3{bottom:39.360000pt;}
.y38{bottom:44.800000pt;}
.y4c{bottom:45.790667pt;}
.y40{bottom:49.310667pt;}
.y7{bottom:51.232000pt;}
.y3f{bottom:60.830667pt;}
.y37{bottom:62.720000pt;}
.y4b{bottom:63.070667pt;}
.y4a{bottom:78.430667pt;}
.y3e{bottom:80.350667pt;}
.y36{bottom:80.640000pt;}
.y49{bottom:84.190667pt;}
.yd3{bottom:85.152000pt;}
.yab{bottom:87.712000pt;}
.y7e{bottom:91.872000pt;}
.y4f{bottom:93.472000pt;}
.y48{bottom:98.270667pt;}
.y35{bottom:98.280000pt;}
.yd2{bottom:103.072000pt;}
.y3b{bottom:105.316000pt;}
.yaa{bottom:105.632000pt;}
.y7d{bottom:109.792000pt;}
.y47{bottom:112.030667pt;}
.y34{bottom:116.200000pt;}
.yd1{bottom:120.992000pt;}
.ya9{bottom:123.552000pt;}
.y46{bottom:125.790667pt;}
.y7c{bottom:127.424000pt;}
.y3d{bottom:135.710667pt;}
.y33{bottom:136.680000pt;}
.yd0{bottom:138.626667pt;}
.y45{bottom:139.577333pt;}
.ya8{bottom:141.506667pt;}
.y3c{bottom:145.337333pt;}
.y7b{bottom:145.346667pt;}
.y44{bottom:153.017333pt;}
.y32{bottom:157.480000pt;}
.ycf{bottom:159.106667pt;}
.ya7{bottom:159.426667pt;}
.y7a{bottom:165.826667pt;}
.y31{bottom:175.400000pt;}
.ya6{bottom:177.026667pt;}
.yce{bottom:179.906667pt;}
.y79{bottom:188.866667pt;}
.y30{bottom:193.000000pt;}
.ya5{bottom:194.946667pt;}
.ycd{bottom:197.826667pt;}
.y78{bottom:209.666667pt;}
.ya4{bottom:212.866667pt;}
.y2f{bottom:213.506667pt;}
.ycc{bottom:215.426667pt;}
.y77{bottom:230.146667pt;}
.ya3{bottom:233.346667pt;}
.y2e{bottom:234.306667pt;}
.ycb{bottom:235.906667pt;}
.y2d{bottom:252.226667pt;}
.y76{bottom:253.533333pt;}
.ya2{bottom:254.173333pt;}
.yca{bottom:256.733333pt;}
.y2c{bottom:269.826667pt;}
.ya1{bottom:271.773333pt;}
.y75{bottom:276.573333pt;}
.yf{bottom:276.893333pt;}
.y2b{bottom:287.746667pt;}
.y1d{bottom:290.626667pt;}
.ya0{bottom:292.253333pt;}
.y74{bottom:297.373333pt;}
.yc9{bottom:300.253333pt;}
.y2a{bottom:308.226667pt;}
.y1c{bottom:312.066667pt;}
.y9f{bottom:313.053333pt;}
.y73{bottom:317.853333pt;}
.yc8{bottom:323.613333pt;}
.y29{bottom:329.053333pt;}
.y9e{bottom:330.973333pt;}
.y1b{bottom:333.533333pt;}
.y72{bottom:338.333333pt;}
.yc7{bottom:346.653333pt;}
.y28{bottom:346.973333pt;}
.y9d{bottom:351.133333pt;}
.y1a{bottom:354.973333pt;}
.y71{bottom:356.253333pt;}
.yc6{bottom:367.493333pt;}
.y9c{bottom:371.973333pt;}
.y70{bottom:374.213333pt;}
.y27{bottom:374.813333pt;}
.y19{bottom:376.413333pt;}
.yc5{bottom:385.413333pt;}
.y9b{bottom:389.893333pt;}
.y6f{bottom:394.693333pt;}
.y26{bottom:395.613333pt;}
.y18{bottom:397.853333pt;}
.yc4{bottom:405.893333pt;}
.y9a{bottom:410.053333pt;}
.y6e{bottom:415.173333pt;}
.y25{bottom:416.733333pt;}
.y17{bottom:419.293333pt;}
.yc3{bottom:426.373333pt;}
.y6d{bottom:433.093333pt;}
.y99{bottom:433.413333pt;}
.y24{bottom:437.573333pt;}
.y16{bottom:440.773333pt;}
.yc2{bottom:446.853333pt;}
.y6c{bottom:451.013333pt;}
.y98{bottom:456.773333pt;}
.y23{bottom:458.373333pt;}
.y15{bottom:462.213333pt;}
.y6b{bottom:468.933333pt;}
.yc1{bottom:470.213333pt;}
.y97{bottom:477.253333pt;}
.y22{bottom:479.493333pt;}
.y14{bottom:483.973333pt;}
.y6a{bottom:486.880000pt;}
.yc0{bottom:493.280000pt;}
.y96{bottom:495.200000pt;}
.y21{bottom:500.293333pt;}
.y69{bottom:504.800000pt;}
.y13{bottom:505.413333pt;}
.y95{bottom:513.120000pt;}
.ybf{bottom:516.640000pt;}
.y20{bottom:521.093333pt;}
.y68{bottom:522.400000pt;}
.y12{bottom:526.853333pt;}
.y94{bottom:531.040000pt;}
.ybe{bottom:539.680000pt;}
.y1f{bottom:541.893333pt;}
.y67{bottom:542.880000pt;}
.y11{bottom:548.293333pt;}
.y93{bottom:548.960000pt;}
.y1e{bottom:563.040000pt;}
.y66{bottom:563.680000pt;}
.y10{bottom:569.760000pt;}
.y65{bottom:583.840000pt;}
.y92{bottom:584.480000pt;}
.ybd{bottom:586.080000pt;}
.y64{bottom:604.666667pt;}
.y91{bottom:604.986667pt;}
.ybc{bottom:609.466667pt;}
.y90{bottom:625.786667pt;}
.y63{bottom:630.586667pt;}
.ybb{bottom:632.826667pt;}
.y8f{bottom:643.706667pt;}
.y62{bottom:651.066667pt;}
.yba{bottom:655.866667pt;}
.y8e{bottom:663.866667pt;}
.y61{bottom:671.546667pt;}
.yb9{bottom:679.226667pt;}
.y8d{bottom:684.666667pt;}
.y60{bottom:697.466667pt;}
.yb8{bottom:702.266667pt;}
.y8c{bottom:702.586667pt;}
.ydb{bottom:711.546667pt;}
.y5f{bottom:715.426667pt;}
.y8b{bottom:720.546667pt;}
.yb7{bottom:723.106667pt;}
.yda{bottom:730.146667pt;}
.y5e{bottom:733.346667pt;}
.y8a{bottom:738.466667pt;}
.yb6{bottom:749.026667pt;}
.y5d{bottom:751.266667pt;}
.yd9{bottom:753.186667pt;}
.y89{bottom:758.626667pt;}
.yb5{bottom:766.946667pt;}
.y5c{bottom:769.186667pt;}
.yd8{bottom:776.546667pt;}
.y88{bottom:781.986667pt;}
.yb4{bottom:784.866667pt;}
.y5b{bottom:786.786667pt;}
.yd7{bottom:799.906667pt;}
.y87{bottom:802.786667pt;}
.y5a{bottom:812.706667pt;}
.yb3{bottom:820.386667pt;}
.y86{bottom:822.946667pt;}
.y59{bottom:830.653333pt;}
.yb2{bottom:840.893333pt;}
.y85{bottom:843.773333pt;}
.y58{bottom:848.573333pt;}
.ye{bottom:857.533333pt;}
.yd{bottom:859.773333pt;}
.y84{bottom:861.693333pt;}
.yd6{bottom:864.253333pt;}
.y57{bottom:866.493333pt;}
.yc{bottom:866.813333pt;}
.yb1{bottom:879.613333pt;}
.y83{bottom:881.853333pt;}
.y56{bottom:884.413333pt;}
.yd5{bottom:884.733333pt;}
.yb{bottom:885.053333pt;}
.yb0{bottom:897.213333pt;}
.y82{bottom:902.653333pt;}
.ya{bottom:908.093333pt;}
.y55{bottom:911.293333pt;}
.yaf{bottom:915.133333pt;}
.y81{bottom:920.573333pt;}
.y54{bottom:933.693333pt;}
.y9{bottom:934.333333pt;}
.yae{bottom:935.613333pt;}
.yd4{bottom:938.493333pt;}
.y80{bottom:941.053333pt;}
.yad{bottom:956.453333pt;}
.y53{bottom:958.693333pt;}
.y7f{bottom:961.573333pt;}
.y8{bottom:965.733333pt;}
.y50{bottom:968.640000pt;}
.yac{bottom:976.613333pt;}
.y52{bottom:979.493333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.hb{height:16.770000pt;}
.h17{height:24.640000pt;}
.h12{height:26.381250pt;}
.h6{height:26.735625pt;}
.h11{height:31.406250pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h13{height:47.713750pt;}
.h16{height:48.378750pt;}
.h14{height:49.020000pt;}
.h7{height:51.600000pt;}
.h19{height:52.736250pt;}
.h5{height:52.762500pt;}
.ha{height:54.180000pt;}
.hf{height:54.349786pt;}
.h18{height:56.405000pt;}
.h9{height:56.988750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h8{height:78.698750pt;}
.h4{height:103.680000pt;}
.h10{height:170.920000pt;}
.hc{height:578.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.112000pt;}
.x17{left:7.348000pt;}
.x4{left:11.826667pt;}
.x15{left:15.348000pt;}
.x1b{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:25.908000pt;}
.x6{left:33.906667pt;}
.xf{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x10{left:45.140000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x1e{left:50.900000pt;}
.x19{left:55.373333pt;}
.x1d{left:58.902667pt;}
.x12{left:66.902667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x13{left:79.062667pt;}
.x20{left:83.253333pt;}
.x2{left:84.822667pt;}
.x1f{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x11{left:110.742667pt;}
.x21{left:121.333333pt;}
.x24{left:124.864000pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.x22{left:424.493333pt;}
.xb{left:454.586667pt;}
.xc{left:539.106667pt;}
.xa{left:611.773333pt;}
.x9{left:680.933333pt;}
.x25{left:703.973333pt;}
.x8{left:710.693333pt;}
.xd{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; }
  