
    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_defca4745d71b77212ec84c0.woff')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_d9a235825d1a07d3021ee8e2.woff')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_bc75b637e9fad124cb8f85c2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_4279392b428108773705768b.woff')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_3197f93061f9f3bce952064b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_062c35f085003d3ab1cb5baf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_3f6a84dc8cd3353afc1e8ca5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_e2c33469e7a8131a3d04fd35.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_020a539581b96932fe947208.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_6737cb5a881a0c63e1eea838.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls14{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.089400px;}
.ls6{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.800000px;}
.ls9{letter-spacing:2.266560px;}
.lsa{letter-spacing:4.500000px;}
.ls12{letter-spacing:6.660000px;}
.lse{letter-spacing:16.506720px;}
.ls11{letter-spacing:43.866720px;}
.lsc{letter-spacing:46.002720px;}
.lsb{letter-spacing:46.026720px;}
.lsf{letter-spacing:46.146720px;}
.lsd{letter-spacing:46.170720px;}
.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;}
}
.wsb{word-spacing:-16.740000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.150080px;}
._2{width:2.524800px;}
._7{width:3.843600px;}
._8{width:5.033040px;}
._6{width:6.462000px;}
._5{width:7.668000px;}
._4{width:9.018000px;}
._a{width:10.122960px;}
._9{width:11.124000px;}
._11{width:12.714240px;}
._b{width:13.744800px;}
._f{width:16.673040px;}
._10{width:18.346320px;}
._d{width:19.481760px;}
._e{width:20.828160px;}
._12{width:23.408880px;}
._c{width:24.546720px;}
._13{width:27.264960px;}
._14{width:122.516160px;}
._16{width:170.964000px;}
._15{width:186.264000px;}
._3{width:189.000000px;}
._17{width:1871.880000px;}
.fc5{color:transparent;}
.fc3{color:rgb(31,36,60);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsc{font-size:18.000000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:2.340000px;}
.y40{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5c{bottom:5.010000px;}
.y7f{bottom:9.540000px;}
.y2{bottom:9.930000px;}
.y4b{bottom:10.260000px;}
.y3f{bottom:20.520000px;}
.y57{bottom:22.500000px;}
.y4{bottom:22.710000px;}
.yc0{bottom:29.160000px;}
.y3e{bottom:37.620000px;}
.yb0{bottom:37.800000px;}
.y56{bottom:39.600000px;}
.y4a{bottom:39.960000px;}
.ybf{bottom:46.440000px;}
.y3{bottom:47.910000px;}
.y49{bottom:51.120000px;}
.y3d{bottom:54.900000px;}
.yaf{bottom:55.074000px;}
.y7{bottom:57.060000px;}
.y55{bottom:58.860000px;}
.y48{bottom:62.280000px;}
.ybe{bottom:63.714000px;}
.y3c{bottom:72.180000px;}
.yae{bottom:72.354000px;}
.y47{bottom:73.980000px;}
.y54{bottom:74.700000px;}
.ybd{bottom:80.814000px;}
.y46{bottom:87.120000px;}
.yad{bottom:89.454000px;}
.y3b{bottom:89.460000px;}
.y53{bottom:91.980000px;}
.ybc{bottom:98.094000px;}
.y7d{bottom:99.396000px;}
.y45{bottom:100.080000px;}
.y5a{bottom:101.736000px;}
.yac{bottom:106.734000px;}
.y3a{bottom:106.740000px;}
.y52{bottom:114.660000px;}
.ybb{bottom:115.374000px;}
.y7c{bottom:116.676000px;}
.y59{bottom:121.716000px;}
.y44{bottom:122.040000px;}
.yab{bottom:124.014000px;}
.y39{bottom:124.020000px;}
.y51{bottom:130.140000px;}
.yba{bottom:132.654000px;}
.y7b{bottom:133.776000px;}
.y38{bottom:141.120000px;}
.yaa{bottom:141.294000px;}
.y58{bottom:141.516000px;}
.y50{bottom:145.620000px;}
.yb9{bottom:149.934000px;}
.y7a{bottom:151.050000px;}
.y41{bottom:156.270000px;}
.y37{bottom:158.400000px;}
.ya9{bottom:158.574000px;}
.y4f{bottom:161.100000px;}
.yb8{bottom:167.214000px;}
.y79{bottom:168.330000px;}
.ya8{bottom:175.674000px;}
.y36{bottom:175.680000px;}
.y4e{bottom:176.805000px;}
.y43{bottom:184.185000px;}
.yb7{bottom:184.314000px;}
.y78{bottom:185.610000px;}
.yf4{bottom:191.190000px;}
.y4d{bottom:192.285000px;}
.ya7{bottom:192.954000px;}
.y35{bottom:192.960000px;}
.y42{bottom:194.805000px;}
.yb6{bottom:201.594000px;}
.y77{bottom:202.890000px;}
.yf3{bottom:208.470000px;}
.ya6{bottom:210.234000px;}
.y34{bottom:210.240000px;}
.y76{bottom:216.750000px;}
.yb5{bottom:218.874000px;}
.y7e{bottom:222.330000px;}
.yf2{bottom:225.750000px;}
.y33{bottom:227.370000px;}
.ya5{bottom:227.559000px;}
.yb4{bottom:236.199000px;}
.yf1{bottom:243.030000px;}
.y32{bottom:244.650000px;}
.ya4{bottom:244.839000px;}
.y75{bottom:252.750000px;}
.yb3{bottom:253.479000px;}
.yf0{bottom:260.310000px;}
.y1d{bottom:261.030000px;}
.y31{bottom:261.930000px;}
.ya3{bottom:262.119000px;}
.yb2{bottom:270.579000px;}
.yef{bottom:277.410000px;}
.y30{bottom:279.210000px;}
.ya2{bottom:279.219000px;}
.y1c{bottom:285.150000px;}
.yb1{bottom:287.859000px;}
.yee{bottom:294.690000px;}
.y2f{bottom:296.490000px;}
.ya1{bottom:296.499000px;}
.y1b{bottom:309.270000px;}
.yed{bottom:311.970000px;}
.y2e{bottom:313.770000px;}
.ya0{bottom:313.779000px;}
.yec{bottom:329.295000px;}
.y2d{bottom:330.870000px;}
.y1a{bottom:333.570000px;}
.yeb{bottom:346.575000px;}
.y2c{bottom:348.150000px;}
.y19{bottom:357.690000px;}
.yea{bottom:363.855000px;}
.y2b{bottom:365.430000px;}
.ye9{bottom:380.955000px;}
.yf{bottom:381.135000px;}
.y18{bottom:381.810000px;}
.y2a{bottom:382.710000px;}
.ye8{bottom:398.235000px;}
.y29{bottom:399.990000px;}
.y17{bottom:405.930000px;}
.ye7{bottom:415.515000px;}
.y28{bottom:416.910000px;}
.y16{bottom:430.050000px;}
.y9f{bottom:430.275000px;}
.y27{bottom:432.390000px;}
.ye6{bottom:432.795000px;}
.y26{bottom:447.870000px;}
.ye5{bottom:450.075000px;}
.y9e{bottom:451.515000px;}
.y15{bottom:454.170000px;}
.y25{bottom:463.530000px;}
.ye4{bottom:467.355000px;}
.y9d{bottom:468.795000px;}
.y14{bottom:478.470000px;}
.y24{bottom:479.010000px;}
.ye3{bottom:484.455000px;}
.y9c{bottom:486.075000px;}
.y74{bottom:493.635000px;}
.y23{bottom:494.535000px;}
.ye2{bottom:501.735000px;}
.y13{bottom:502.635000px;}
.y9b{bottom:503.355000px;}
.y22{bottom:510.015000px;}
.ye1{bottom:519.015000px;}
.y9a{bottom:520.455000px;}
.y21{bottom:525.495000px;}
.y12{bottom:526.755000px;}
.y73{bottom:532.875000px;}
.ye0{bottom:536.295000px;}
.y99{bottom:537.735000px;}
.y20{bottom:541.155000px;}
.y72{bottom:550.155000px;}
.y11{bottom:550.875000px;}
.ydf{bottom:553.575000px;}
.y98{bottom:555.015000px;}
.y1f{bottom:556.635000px;}
.y71{bottom:567.435000px;}
.yde{bottom:570.675000px;}
.y1e{bottom:572.115000px;}
.y97{bottom:572.295000px;}
.y10{bottom:574.995000px;}
.y70{bottom:584.535000px;}
.ydd{bottom:587.955000px;}
.y96{bottom:589.575000px;}
.y6f{bottom:601.845000px;}
.ydc{bottom:605.265000px;}
.y95{bottom:606.705000px;}
.y6e{bottom:619.125000px;}
.ydb{bottom:622.545000px;}
.y94{bottom:623.985000px;}
.y6d{bottom:636.405000px;}
.yda{bottom:639.825000px;}
.y93{bottom:641.265000px;}
.y6c{bottom:653.685000px;}
.yd9{bottom:657.105000px;}
.y92{bottom:658.545000px;}
.y6b{bottom:670.965000px;}
.yd8{bottom:674.205000px;}
.y91{bottom:675.825000px;}
.y6a{bottom:688.065000px;}
.yd7{bottom:691.485000px;}
.y90{bottom:693.105000px;}
.y69{bottom:705.345000px;}
.yd6{bottom:708.765000px;}
.y8f{bottom:710.205000px;}
.y68{bottom:722.625000px;}
.yd5{bottom:726.045000px;}
.y8e{bottom:727.485000px;}
.y67{bottom:737.385000px;}
.y66{bottom:743.325000px;}
.y8d{bottom:744.765000px;}
.y65{bottom:757.365000px;}
.yd4{bottom:760.605000px;}
.y8c{bottom:762.045000px;}
.yd3{bottom:777.705000px;}
.y8b{bottom:779.325000px;}
.yd2{bottom:794.985000px;}
.y8a{bottom:796.605000px;}
.yd1{bottom:812.265000px;}
.y89{bottom:813.705000px;}
.yd0{bottom:829.545000px;}
.y88{bottom:830.985000px;}
.ycf{bottom:846.825000px;}
.y87{bottom:848.265000px;}
.yce{bottom:864.150000px;}
.y86{bottom:865.590000px;}
.ycd{bottom:881.250000px;}
.y85{bottom:882.870000px;}
.ycc{bottom:898.530000px;}
.y84{bottom:899.970000px;}
.ycb{bottom:915.810000px;}
.y83{bottom:917.250000px;}
.yca{bottom:933.090000px;}
.y82{bottom:934.530000px;}
.yc9{bottom:950.370000px;}
.y81{bottom:951.810000px;}
.yc8{bottom:967.470000px;}
.ye{bottom:968.550000px;}
.y80{bottom:969.090000px;}
.yd{bottom:973.410000px;}
.y64{bottom:978.810000px;}
.yc7{bottom:984.750000px;}
.y63{bottom:986.370000px;}
.yc{bottom:990.690000px;}
.yc6{bottom:1002.030000px;}
.y62{bottom:1003.470000px;}
.yb{bottom:1013.190000px;}
.yc5{bottom:1019.310000px;}
.y61{bottom:1020.750000px;}
.ya{bottom:1025.070000px;}
.yc4{bottom:1036.590000px;}
.y60{bottom:1038.030000px;}
.y9{bottom:1043.610000px;}
.yc3{bottom:1053.870000px;}
.y5f{bottom:1055.310000px;}
.yc2{bottom:1070.970000px;}
.y8{bottom:1072.230000px;}
.y5e{bottom:1072.590000px;}
.y5b{bottom:1075.500000px;}
.yc1{bottom:1085.730000px;}
.y5d{bottom:1089.870000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.hb{height:4.165313px;}
.h1b{height:8.636133px;}
.h16{height:9.311484px;}
.h1a{height:12.568359px;}
.h1d{height:17.280000px;}
.h14{height:21.114844px;}
.h13{height:25.136719px;}
.h1c{height:25.200000px;}
.ha{height:27.147656px;}
.h18{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h15{height:38.100586px;}
.hf{height:38.997070px;}
.h7{height:40.132617px;}
.h10{height:41.080078px;}
.h6{height:41.726953px;}
.h11{height:42.164648px;}
.h1f{height:43.506914px;}
.h17{height:45.461953px;}
.h5{height:46.251562px;}
.h9{height:48.312422px;}
.h8{height:59.436914px;}
.h19{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h12{height:224.130000px;}
.h1e{height:327.810000px;}
.hc{height:584.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:36.036000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.wb{width:337.395000px;}
.w9{width:337.755000px;}
.wa{width:337.935000px;}
.wc{width:397.695000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x35{left:-19.260000px;}
.x3b{left:-17.640000px;}
.x32{left:-13.860000px;}
.x33{left:-3.060000px;}
.x31{left:-1.980000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x19{left:8.136000px;}
.x30{left:11.700000px;}
.x4{left:12.780000px;}
.x38{left:14.940000px;}
.x18{left:16.056000px;}
.x1d{left:18.216000px;}
.x16{left:19.656000px;}
.x34{left:21.240000px;}
.x17{left:26.136000px;}
.x1f{left:29.196000px;}
.x6{left:31.680000px;}
.x10{left:33.336000px;}
.x1b{left:35.100000px;}
.x2b{left:36.936000px;}
.x37{left:38.520000px;}
.x2e{left:41.616000px;}
.x1e{left:47.736000px;}
.x11{left:50.796000px;}
.xf{left:54.936000px;}
.x21{left:57.096000px;}
.x2d{left:58.716000px;}
.x20{left:66.270000px;}
.x2f{left:70.236000px;}
.x1{left:78.300000px;}
.x15{left:79.590000px;}
.x13{left:82.470000px;}
.x14{left:83.730000px;}
.x7{left:86.399987px;}
.xc{left:91.079987px;}
.x2{left:95.790000px;}
.x29{left:100.290000px;}
.x22{left:102.810000px;}
.x1c{left:106.770000px;}
.x28{left:113.435987px;}
.x27{left:122.435987px;}
.x12{left:124.590000px;}
.x39{left:135.030000px;}
.x5{left:141.345000px;}
.x3c{left:147.630000px;}
.x2c{left:168.690000px;}
.x36{left:177.690000px;}
.x3{left:182.370000px;}
.x25{left:194.429987px;}
.x3a{left:198.750000px;}
.x1a{left:219.090000px;}
.xb{left:220.169987px;}
.xa{left:366.734987px;}
.x2a{left:416.415000px;}
.x24{left:650.084987px;}
.x26{left:715.469987px;}
.x9{left:766.049987px;}
.xd{left:770.909987px;}
.x8{left:791.789987px;}
.xe{left:806.729987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls13{letter-spacing:1.600000pt;}
.ls9{letter-spacing:2.014720pt;}
.lsa{letter-spacing:4.000000pt;}
.ls12{letter-spacing:5.920000pt;}
.lse{letter-spacing:14.672640pt;}
.ls11{letter-spacing:38.992640pt;}
.lsc{letter-spacing:40.891307pt;}
.lsb{letter-spacing:40.912640pt;}
.lsf{letter-spacing:41.019307pt;}
.lsd{letter-spacing:41.040640pt;}
.wsb{word-spacing:-14.880000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.022293pt;}
._2{width:2.244267pt;}
._7{width:3.416533pt;}
._8{width:4.473813pt;}
._6{width:5.744000pt;}
._5{width:6.816000pt;}
._4{width:8.016000pt;}
._a{width:8.998187pt;}
._9{width:9.888000pt;}
._11{width:11.301547pt;}
._b{width:12.217600pt;}
._f{width:14.820480pt;}
._10{width:16.307840pt;}
._d{width:17.317120pt;}
._e{width:18.513920pt;}
._12{width:20.807893pt;}
._c{width:21.819307pt;}
._13{width:24.235520pt;}
._14{width:108.903253pt;}
._16{width:151.968000pt;}
._15{width:165.568000pt;}
._3{width:168.000000pt;}
._17{width:1663.893333pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsc{font-size:16.000000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.080000pt;}
.y40{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5c{bottom:4.453333pt;}
.y7f{bottom:8.480000pt;}
.y2{bottom:8.826667pt;}
.y4b{bottom:9.120000pt;}
.y3f{bottom:18.240000pt;}
.y57{bottom:20.000000pt;}
.y4{bottom:20.186667pt;}
.yc0{bottom:25.920000pt;}
.y3e{bottom:33.440000pt;}
.yb0{bottom:33.600000pt;}
.y56{bottom:35.200000pt;}
.y4a{bottom:35.520000pt;}
.ybf{bottom:41.280000pt;}
.y3{bottom:42.586667pt;}
.y49{bottom:45.440000pt;}
.y3d{bottom:48.800000pt;}
.yaf{bottom:48.954667pt;}
.y7{bottom:50.720000pt;}
.y55{bottom:52.320000pt;}
.y48{bottom:55.360000pt;}
.ybe{bottom:56.634667pt;}
.y3c{bottom:64.160000pt;}
.yae{bottom:64.314667pt;}
.y47{bottom:65.760000pt;}
.y54{bottom:66.400000pt;}
.ybd{bottom:71.834667pt;}
.y46{bottom:77.440000pt;}
.yad{bottom:79.514667pt;}
.y3b{bottom:79.520000pt;}
.y53{bottom:81.760000pt;}
.ybc{bottom:87.194667pt;}
.y7d{bottom:88.352000pt;}
.y45{bottom:88.960000pt;}
.y5a{bottom:90.432000pt;}
.yac{bottom:94.874667pt;}
.y3a{bottom:94.880000pt;}
.y52{bottom:101.920000pt;}
.ybb{bottom:102.554667pt;}
.y7c{bottom:103.712000pt;}
.y59{bottom:108.192000pt;}
.y44{bottom:108.480000pt;}
.yab{bottom:110.234667pt;}
.y39{bottom:110.240000pt;}
.y51{bottom:115.680000pt;}
.yba{bottom:117.914667pt;}
.y7b{bottom:118.912000pt;}
.y38{bottom:125.440000pt;}
.yaa{bottom:125.594667pt;}
.y58{bottom:125.792000pt;}
.y50{bottom:129.440000pt;}
.yb9{bottom:133.274667pt;}
.y7a{bottom:134.266667pt;}
.y41{bottom:138.906667pt;}
.y37{bottom:140.800000pt;}
.ya9{bottom:140.954667pt;}
.y4f{bottom:143.200000pt;}
.yb8{bottom:148.634667pt;}
.y79{bottom:149.626667pt;}
.ya8{bottom:156.154667pt;}
.y36{bottom:156.160000pt;}
.y4e{bottom:157.160000pt;}
.y43{bottom:163.720000pt;}
.yb7{bottom:163.834667pt;}
.y78{bottom:164.986667pt;}
.yf4{bottom:169.946667pt;}
.y4d{bottom:170.920000pt;}
.ya7{bottom:171.514667pt;}
.y35{bottom:171.520000pt;}
.y42{bottom:173.160000pt;}
.yb6{bottom:179.194667pt;}
.y77{bottom:180.346667pt;}
.yf3{bottom:185.306667pt;}
.ya6{bottom:186.874667pt;}
.y34{bottom:186.880000pt;}
.y76{bottom:192.666667pt;}
.yb5{bottom:194.554667pt;}
.y7e{bottom:197.626667pt;}
.yf2{bottom:200.666667pt;}
.y33{bottom:202.106667pt;}
.ya5{bottom:202.274667pt;}
.yb4{bottom:209.954667pt;}
.yf1{bottom:216.026667pt;}
.y32{bottom:217.466667pt;}
.ya4{bottom:217.634667pt;}
.y75{bottom:224.666667pt;}
.yb3{bottom:225.314667pt;}
.yf0{bottom:231.386667pt;}
.y1d{bottom:232.026667pt;}
.y31{bottom:232.826667pt;}
.ya3{bottom:232.994667pt;}
.yb2{bottom:240.514667pt;}
.yef{bottom:246.586667pt;}
.y30{bottom:248.186667pt;}
.ya2{bottom:248.194667pt;}
.y1c{bottom:253.466667pt;}
.yb1{bottom:255.874667pt;}
.yee{bottom:261.946667pt;}
.y2f{bottom:263.546667pt;}
.ya1{bottom:263.554667pt;}
.y1b{bottom:274.906667pt;}
.yed{bottom:277.306667pt;}
.y2e{bottom:278.906667pt;}
.ya0{bottom:278.914667pt;}
.yec{bottom:292.706667pt;}
.y2d{bottom:294.106667pt;}
.y1a{bottom:296.506667pt;}
.yeb{bottom:308.066667pt;}
.y2c{bottom:309.466667pt;}
.y19{bottom:317.946667pt;}
.yea{bottom:323.426667pt;}
.y2b{bottom:324.826667pt;}
.ye9{bottom:338.626667pt;}
.yf{bottom:338.786667pt;}
.y18{bottom:339.386667pt;}
.y2a{bottom:340.186667pt;}
.ye8{bottom:353.986667pt;}
.y29{bottom:355.546667pt;}
.y17{bottom:360.826667pt;}
.ye7{bottom:369.346667pt;}
.y28{bottom:370.586667pt;}
.y16{bottom:382.266667pt;}
.y9f{bottom:382.466667pt;}
.y27{bottom:384.346667pt;}
.ye6{bottom:384.706667pt;}
.y26{bottom:398.106667pt;}
.ye5{bottom:400.066667pt;}
.y9e{bottom:401.346667pt;}
.y15{bottom:403.706667pt;}
.y25{bottom:412.026667pt;}
.ye4{bottom:415.426667pt;}
.y9d{bottom:416.706667pt;}
.y14{bottom:425.306667pt;}
.y24{bottom:425.786667pt;}
.ye3{bottom:430.626667pt;}
.y9c{bottom:432.066667pt;}
.y74{bottom:438.786667pt;}
.y23{bottom:439.586667pt;}
.ye2{bottom:445.986667pt;}
.y13{bottom:446.786667pt;}
.y9b{bottom:447.426667pt;}
.y22{bottom:453.346667pt;}
.ye1{bottom:461.346667pt;}
.y9a{bottom:462.626667pt;}
.y21{bottom:467.106667pt;}
.y12{bottom:468.226667pt;}
.y73{bottom:473.666667pt;}
.ye0{bottom:476.706667pt;}
.y99{bottom:477.986667pt;}
.y20{bottom:481.026667pt;}
.y72{bottom:489.026667pt;}
.y11{bottom:489.666667pt;}
.ydf{bottom:492.066667pt;}
.y98{bottom:493.346667pt;}
.y1f{bottom:494.786667pt;}
.y71{bottom:504.386667pt;}
.yde{bottom:507.266667pt;}
.y1e{bottom:508.546667pt;}
.y97{bottom:508.706667pt;}
.y10{bottom:511.106667pt;}
.y70{bottom:519.586667pt;}
.ydd{bottom:522.626667pt;}
.y96{bottom:524.066667pt;}
.y6f{bottom:534.973333pt;}
.ydc{bottom:538.013333pt;}
.y95{bottom:539.293333pt;}
.y6e{bottom:550.333333pt;}
.ydb{bottom:553.373333pt;}
.y94{bottom:554.653333pt;}
.y6d{bottom:565.693333pt;}
.yda{bottom:568.733333pt;}
.y93{bottom:570.013333pt;}
.y6c{bottom:581.053333pt;}
.yd9{bottom:584.093333pt;}
.y92{bottom:585.373333pt;}
.y6b{bottom:596.413333pt;}
.yd8{bottom:599.293333pt;}
.y91{bottom:600.733333pt;}
.y6a{bottom:611.613333pt;}
.yd7{bottom:614.653333pt;}
.y90{bottom:616.093333pt;}
.y69{bottom:626.973333pt;}
.yd6{bottom:630.013333pt;}
.y8f{bottom:631.293333pt;}
.y68{bottom:642.333333pt;}
.yd5{bottom:645.373333pt;}
.y8e{bottom:646.653333pt;}
.y67{bottom:655.453333pt;}
.y66{bottom:660.733333pt;}
.y8d{bottom:662.013333pt;}
.y65{bottom:673.213333pt;}
.yd4{bottom:676.093333pt;}
.y8c{bottom:677.373333pt;}
.yd3{bottom:691.293333pt;}
.y8b{bottom:692.733333pt;}
.yd2{bottom:706.653333pt;}
.y8a{bottom:708.093333pt;}
.yd1{bottom:722.013333pt;}
.y89{bottom:723.293333pt;}
.yd0{bottom:737.373333pt;}
.y88{bottom:738.653333pt;}
.ycf{bottom:752.733333pt;}
.y87{bottom:754.013333pt;}
.yce{bottom:768.133333pt;}
.y86{bottom:769.413333pt;}
.ycd{bottom:783.333333pt;}
.y85{bottom:784.773333pt;}
.ycc{bottom:798.693333pt;}
.y84{bottom:799.973333pt;}
.ycb{bottom:814.053333pt;}
.y83{bottom:815.333333pt;}
.yca{bottom:829.413333pt;}
.y82{bottom:830.693333pt;}
.yc9{bottom:844.773333pt;}
.y81{bottom:846.053333pt;}
.yc8{bottom:859.973333pt;}
.ye{bottom:860.933333pt;}
.y80{bottom:861.413333pt;}
.yd{bottom:865.253333pt;}
.y64{bottom:870.053333pt;}
.yc7{bottom:875.333333pt;}
.y63{bottom:876.773333pt;}
.yc{bottom:880.613333pt;}
.yc6{bottom:890.693333pt;}
.y62{bottom:891.973333pt;}
.yb{bottom:900.613333pt;}
.yc5{bottom:906.053333pt;}
.y61{bottom:907.333333pt;}
.ya{bottom:911.173333pt;}
.yc4{bottom:921.413333pt;}
.y60{bottom:922.693333pt;}
.y9{bottom:927.653333pt;}
.yc3{bottom:936.773333pt;}
.y5f{bottom:938.053333pt;}
.yc2{bottom:951.973333pt;}
.y8{bottom:953.093333pt;}
.y5e{bottom:953.413333pt;}
.y5b{bottom:956.000000pt;}
.yc1{bottom:965.093333pt;}
.y5d{bottom:968.773333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.hb{height:3.702500pt;}
.h1b{height:7.676562pt;}
.h16{height:8.276875pt;}
.h1a{height:11.171875pt;}
.h1d{height:15.360000pt;}
.h14{height:18.768750pt;}
.h13{height:22.343750pt;}
.h1c{height:22.400000pt;}
.ha{height:24.131250pt;}
.h18{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h15{height:33.867188pt;}
.hf{height:34.664062pt;}
.h7{height:35.673437pt;}
.h10{height:36.515625pt;}
.h6{height:37.090625pt;}
.h11{height:37.479688pt;}
.h1f{height:38.672812pt;}
.h17{height:40.410625pt;}
.h5{height:41.112500pt;}
.h9{height:42.944375pt;}
.h8{height:52.832812pt;}
.h19{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h12{height:199.226667pt;}
.h1e{height:291.386667pt;}
.hc{height:519.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:32.032000pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.wb{width:299.906667pt;}
.w9{width:300.226667pt;}
.wa{width:300.386667pt;}
.wc{width:353.506667pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x35{left:-17.120000pt;}
.x3b{left:-15.680000pt;}
.x32{left:-12.320000pt;}
.x33{left:-2.720000pt;}
.x31{left:-1.760000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x19{left:7.232000pt;}
.x30{left:10.400000pt;}
.x4{left:11.360000pt;}
.x38{left:13.280000pt;}
.x18{left:14.272000pt;}
.x1d{left:16.192000pt;}
.x16{left:17.472000pt;}
.x34{left:18.880000pt;}
.x17{left:23.232000pt;}
.x1f{left:25.952000pt;}
.x6{left:28.160000pt;}
.x10{left:29.632000pt;}
.x1b{left:31.200000pt;}
.x2b{left:32.832000pt;}
.x37{left:34.240000pt;}
.x2e{left:36.992000pt;}
.x1e{left:42.432000pt;}
.x11{left:45.152000pt;}
.xf{left:48.832000pt;}
.x21{left:50.752000pt;}
.x2d{left:52.192000pt;}
.x20{left:58.906667pt;}
.x2f{left:62.432000pt;}
.x1{left:69.600000pt;}
.x15{left:70.746667pt;}
.x13{left:73.306667pt;}
.x14{left:74.426667pt;}
.x7{left:76.799988pt;}
.xc{left:80.959988pt;}
.x2{left:85.146667pt;}
.x29{left:89.146667pt;}
.x22{left:91.386667pt;}
.x1c{left:94.906667pt;}
.x28{left:100.831988pt;}
.x27{left:108.831988pt;}
.x12{left:110.746667pt;}
.x39{left:120.026667pt;}
.x5{left:125.640000pt;}
.x3c{left:131.226667pt;}
.x2c{left:149.946667pt;}
.x36{left:157.946667pt;}
.x3{left:162.106667pt;}
.x25{left:172.826655pt;}
.x3a{left:176.666667pt;}
.x1a{left:194.746667pt;}
.xb{left:195.706655pt;}
.xa{left:325.986655pt;}
.x2a{left:370.146667pt;}
.x24{left:577.853322pt;}
.x26{left:635.973322pt;}
.x9{left:680.933322pt;}
.xd{left:685.253322pt;}
.x8{left:703.813322pt;}
.xe{left:717.093322pt;}
}




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