
    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_1e1b5e92b18f8dfbc7562a97.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_f3f14f73744409e8309553f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3308b2b9ece455aacde6ad46.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_30ea626b2c42ae9b8255915c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_ae3df9e73f043ab81ef8b957.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1d5d0da2ac8e2dd186571090.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.119629;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_0a4728db9128739c456cd866.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_0abaf35158ef62eb6c4b871f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_8138c4e21b2493f0d771f362.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2f620fe543ec8c7387f8e695.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.864000px;}
.lse{letter-spacing:3.600000px;}
.ls14{letter-spacing:8.640000px;}
.ls11{letter-spacing:17.424000px;}
.ls13{letter-spacing:30.960000px;}
.ls12{letter-spacing:33.120000px;}
.lsd{letter-spacing:46.800000px;}
.lsc{letter-spacing:53.424000px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.wsa{word-spacing:-18.864000px;}
.ws3{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.576000px;}
.ws9{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.280000px;}
.wsc{word-spacing:-16.488000px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-2.160000px;}
._1{margin-left:-1.021680px;}
._0{width:1.347840px;}
._10{width:2.520000px;}
._f{width:3.960000px;}
._1d{width:5.592000px;}
._1e{width:6.608160px;}
._1b{width:7.776000px;}
._1a{width:8.809680px;}
._6{width:10.080000px;}
._20{width:11.304000px;}
._5{width:12.312000px;}
._15{width:13.536000px;}
._16{width:14.994000px;}
._18{width:16.130160px;}
._22{width:19.820160px;}
._23{width:20.860320px;}
._21{width:21.960000px;}
._14{width:22.969200px;}
._4{width:23.976000px;}
._13{width:25.285680px;}
._12{width:26.424000px;}
._2e{width:27.740160px;}
._3{width:29.376000px;}
._2{width:30.384000px;}
._32{width:32.421840px;}
._27{width:34.416000px;}
._28{width:35.756160px;}
._c{width:36.936000px;}
._d{width:38.244000px;}
._1c{width:39.388320px;}
._1f{width:40.896000px;}
._33{width:42.528000px;}
._19{width:43.632000px;}
._11{width:44.640000px;}
._30{width:45.720000px;}
._34{width:46.861680px;}
._29{width:49.608000px;}
._2f{width:51.556320px;}
._b{width:52.560000px;}
._2c{width:55.872000px;}
._2d{width:56.952000px;}
._31{width:58.304160px;}
._a{width:64.224000px;}
._e{width:65.376000px;}
._2a{width:69.552000px;}
._2b{width:70.644000px;}
._26{width:111.240000px;}
._25{width:112.440000px;}
._24{width:114.228000px;}
._8{width:139.536000px;}
._9{width:140.832000px;}
._7{width:141.876000px;}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc6{color:rgb(33,37,41);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y69{bottom:1.260000px;}
.yaa{bottom:1.440000px;}
.yb0{bottom:1.800000px;}
.y65{bottom:5.040000px;}
.y5d{bottom:5.220000px;}
.y59{bottom:5.400000px;}
.y67{bottom:5.580000px;}
.yb2{bottom:6.300000px;}
.y5f{bottom:6.840000px;}
.y50{bottom:8.280000px;}
.y4f{bottom:8.640000px;}
.y52{bottom:9.180000px;}
.y57{bottom:9.225000px;}
.y56{bottom:10.080000px;}
.ya6{bottom:10.260000px;}
.y4d{bottom:10.800000px;}
.y54{bottom:11.205000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.yac{bottom:23.400000px;}
.ya9{bottom:23.760000px;}
.yaf{bottom:24.120000px;}
.y5c{bottom:27.540000px;}
.y4{bottom:27.900000px;}
.ya3{bottom:29.370000px;}
.ya5{bottom:32.970000px;}
.y6{bottom:45.360000px;}
.y62{bottom:45.540000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.ya2{bottom:52.050000px;}
.y61{bottom:68.220000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.ya{bottom:91.116000px;}
.y4b{bottom:128.736000px;}
.y4a{bottom:133.956000px;}
.y38{bottom:139.896000px;}
.y49{bottom:145.836000px;}
.ya0{bottom:146.736000px;}
.y48{bottom:151.050000px;}
.y37{bottom:163.650000px;}
.y47{bottom:163.830000px;}
.y36{bottom:187.410000px;}
.y9f{bottom:190.470000px;}
.y7e{bottom:210.090000px;}
.y35{bottom:211.350000px;}
.y9e{bottom:214.230000px;}
.y7d{bottom:233.850000px;}
.y34{bottom:235.110000px;}
.y9d{bottom:237.990000px;}
.y7c{bottom:257.610000px;}
.y45{bottom:258.510000px;}
.y33{bottom:258.870000px;}
.y9b{bottom:261.570000px;}
.y46{bottom:264.450000px;}
.y9c{bottom:267.510000px;}
.y7b{bottom:281.595000px;}
.y44{bottom:282.315000px;}
.y32{bottom:282.675000px;}
.y9a{bottom:285.375000px;}
.y68{bottom:303.015000px;}
.y7a{bottom:305.355000px;}
.y43{bottom:306.075000px;}
.y31{bottom:306.435000px;}
.yb3{bottom:308.775000px;}
.y99{bottom:309.135000px;}
.y79{bottom:329.115000px;}
.y42{bottom:330.015000px;}
.y30{bottom:330.375000px;}
.y98{bottom:332.895000px;}
.y5e{bottom:344.415000px;}
.y66{bottom:345.855000px;}
.y60{bottom:346.575000px;}
.y78{bottom:352.875000px;}
.yae{bottom:353.235000px;}
.y2f{bottom:354.135000px;}
.y97{bottom:356.835000px;}
.y77{bottom:376.815000px;}
.y2e{bottom:377.895000px;}
.y96{bottom:380.595000px;}
.y64{bottom:395.355000px;}
.y5b{bottom:399.855000px;}
.y76{bottom:400.575000px;}
.y2d{bottom:401.655000px;}
.y95{bottom:404.355000px;}
.y75{bottom:424.335000px;}
.y2c{bottom:425.595000px;}
.y94{bottom:428.115000px;}
.yad{bottom:429.735000px;}
.yab{bottom:430.635000px;}
.ya8{bottom:432.795000px;}
.y63{bottom:444.495000px;}
.y74{bottom:448.095000px;}
.y2b{bottom:449.355000px;}
.y93{bottom:452.055000px;}
.y73{bottom:472.035000px;}
.y2a{bottom:473.115000px;}
.y92{bottom:476.175000px;}
.y72{bottom:495.795000px;}
.y29{bottom:496.875000px;}
.y91{bottom:499.935000px;}
.y58{bottom:502.095000px;}
.y5a{bottom:503.175000px;}
.y71{bottom:519.555000px;}
.y28{bottom:520.815000px;}
.y90{bottom:523.695000px;}
.ya1{bottom:541.875000px;}
.y70{bottom:543.315000px;}
.y27{bottom:544.575000px;}
.ya4{bottom:546.735000px;}
.y8f{bottom:547.635000px;}
.ya7{bottom:547.995000px;}
.y6a{bottom:550.335000px;}
.y6f{bottom:567.105000px;}
.y26{bottom:568.365000px;}
.y8e{bottom:571.425000px;}
.y6e{bottom:591.045000px;}
.y25{bottom:592.125000px;}
.y8d{bottom:595.185000px;}
.y6d{bottom:614.445000px;}
.y24{bottom:616.065000px;}
.y8c{bottom:618.945000px;}
.yb1{bottom:627.405000px;}
.y6c{bottom:638.205000px;}
.y23{bottom:639.825000px;}
.y8b{bottom:642.705000px;}
.y6b{bottom:658.185000px;}
.y22{bottom:663.585000px;}
.y8a{bottom:666.645000px;}
.y21{bottom:687.345000px;}
.y89{bottom:690.405000px;}
.yb5{bottom:710.925000px;}
.y20{bottom:711.285000px;}
.y88{bottom:714.165000px;}
.yb4{bottom:734.685000px;}
.y1f{bottom:735.045000px;}
.y87{bottom:737.925000px;}
.y1e{bottom:758.805000px;}
.y86{bottom:761.865000px;}
.y1d{bottom:782.565000px;}
.y85{bottom:785.625000px;}
.y40{bottom:805.965000px;}
.y1c{bottom:806.325000px;}
.y84{bottom:809.385000px;}
.y41{bottom:811.905000px;}
.y3f{bottom:829.905000px;}
.y1b{bottom:830.265000px;}
.y83{bottom:833.145000px;}
.y53{bottom:838.545000px;}
.y3e{bottom:853.710000px;}
.y1a{bottom:854.070000px;}
.y82{bottom:857.130000px;}
.y19{bottom:877.830000px;}
.y81{bottom:880.530000px;}
.y51{bottom:890.790000px;}
.y4e{bottom:891.690000px;}
.y55{bottom:892.050000px;}
.y18{bottom:901.590000px;}
.yb7{bottom:901.770000px;}
.y80{bottom:904.290000px;}
.y7f{bottom:924.270000px;}
.yb6{bottom:925.170000px;}
.y17{bottom:925.530000px;}
.y16{bottom:948.930000px;}
.y3d{bottom:949.290000px;}
.y4c{bottom:953.430000px;}
.y15{bottom:973.050000px;}
.y14{bottom:996.810000px;}
.y13{bottom:1020.390000px;}
.y3c{bottom:1020.750000px;}
.y12{bottom:1044.510000px;}
.y11{bottom:1067.910000px;}
.y3b{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y3a{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y39{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h1e{height:17.640000px;}
.h1c{height:21.420000px;}
.h18{height:21.780000px;}
.h1d{height:21.960000px;}
.h1f{height:21.996000px;}
.h24{height:23.040000px;}
.h1a{height:23.580000px;}
.h13{height:25.020000px;}
.h12{height:25.560000px;}
.h14{height:26.100000px;}
.h17{height:26.136000px;}
.h16{height:26.820000px;}
.h11{height:27.900000px;}
.h15{height:28.116000px;}
.h8{height:33.120000px;}
.hf{height:38.158594px;}
.h22{height:40.140000px;}
.h23{height:40.500000px;}
.h19{height:43.920000px;}
.he{height:48.616875px;}
.h21{height:49.356000px;}
.hd{height:50.484375px;}
.hc{height:52.628906px;}
.hb{height:58.429688px;}
.h10{height:58.651172px;}
.h9{height:65.884219px;}
.h20{height:68.436000px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h25{height:74.004654px;}
.h4{height:82.635820px;}
.h1b{height:84.600000px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w6{width:50.400000px;}
.w4{width:61.590000px;}
.wa{width:92.340000px;}
.w11{width:103.680000px;}
.w18{width:114.696000px;}
.w16{width:117.000000px;}
.w2{width:125.856000px;}
.w22{width:133.380000px;}
.w25{width:135.720000px;}
.w20{width:146.916000px;}
.w21{width:149.076000px;}
.w23{width:152.640000px;}
.w10{width:154.290000px;}
.w15{width:161.850000px;}
.w14{width:162.030000px;}
.w1a{width:173.190000px;}
.w1b{width:174.270000px;}
.wf{width:175.890000px;}
.w1c{width:176.430000px;}
.w1f{width:179.670000px;}
.w12{width:182.370000px;}
.we{width:182.550000px;}
.wd{width:183.810000px;}
.w19{width:188.850000px;}
.w13{width:189.390000px;}
.w17{width:209.370000px;}
.w1e{width:229.170000px;}
.w24{width:283.035000px;}
.w26{width:285.690000px;}
.w27{width:369.075000px;}
.wc{width:402.915000px;}
.w1d{width:427.605000px;}
.w3{width:705.525000px;}
.wb{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x24{left:14.580000px;}
.x32{left:16.380000px;}
.x45{left:17.820000px;}
.x7{left:19.800000px;}
.x4b{left:21.060000px;}
.x31{left:22.500000px;}
.x34{left:23.985000px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x3{left:30.239973px;}
.x2a{left:33.480000px;}
.x37{left:37.125000px;}
.x53{left:39.420000px;}
.x49{left:46.485000px;}
.x2f{left:47.520000px;}
.x51{left:49.314000px;}
.x2c{left:52.380000px;}
.x47{left:54.354000px;}
.x4c{left:56.025000px;}
.x44{left:57.240000px;}
.x39{left:59.805000px;}
.x50{left:62.820000px;}
.x55{left:70.200000px;}
.x5{left:71.994000px;}
.x3b{left:91.305000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x21{left:132.515987px;}
.x57{left:138.275987px;}
.x12{left:142.775987px;}
.x46{left:144.216000px;}
.x30{left:162.030000px;}
.x56{left:170.129987px;}
.x2b{left:172.290000px;}
.x18{left:180.749987px;}
.x26{left:187.410000px;}
.x40{left:199.469987px;}
.x3d{left:218.729987px;}
.x1d{left:256.889987px;}
.x3a{left:279.030000px;}
.x1a{left:285.689987px;}
.x33{left:290.370000px;}
.x22{left:295.275000px;}
.x17{left:302.294987px;}
.x4e{left:310.755000px;}
.x13{left:312.014987px;}
.x54{left:324.615000px;}
.x23{left:333.255000px;}
.x52{left:342.615000px;}
.x20{left:343.694987px;}
.x3f{left:351.974987px;}
.x14{left:373.214987px;}
.x43{left:377.175000px;}
.x16{left:379.694987px;}
.x28{left:392.835000px;}
.x3e{left:399.674987px;}
.x2d{left:410.835000px;}
.x15{left:413.354987px;}
.x4f{left:420.015000px;}
.x35{left:429.375000px;}
.x4d{left:494.205000px;}
.x19{left:510.404987px;}
.x25{left:533.445000px;}
.x29{left:603.285000px;}
.xb{left:619.305000px;}
.x2e{left:626.685000px;}
.x4a{left:658.545000px;}
.x48{left:660.705000px;}
.x36{left:662.325000px;}
.x38{left:663.405000px;}
.xc{left:669.705000px;}
.xd{left:686.805000px;}
.xe{left:704.310000px;}
.xf{left:721.590000px;}
.x1b{left:724.289973px;}
.x27{left:725.910000px;}
.x1c{left:730.409987px;}
.x10{left:738.870000px;}
.x1e{left:753.269973px;}
.x1f{left:759.389987px;}
.x41{left:810.689973px;}
.x42{left:816.809987px;}
.x3c{left:830.309987px;}
.x8{left:831.390000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.768000pt;}
.lse{letter-spacing:3.200000pt;}
.ls14{letter-spacing:7.680000pt;}
.ls11{letter-spacing:15.488000pt;}
.ls13{letter-spacing:27.520000pt;}
.ls12{letter-spacing:29.440000pt;}
.lsd{letter-spacing:41.600000pt;}
.lsc{letter-spacing:47.488000pt;}
.ws1{word-spacing:-21.280000pt;}
.wsa{word-spacing:-16.768000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.512000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.360000pt;}
.wsc{word-spacing:-14.656000pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-1.920000pt;}
._1{margin-left:-0.908160pt;}
._0{width:1.198080pt;}
._10{width:2.240000pt;}
._f{width:3.520000pt;}
._1d{width:4.970667pt;}
._1e{width:5.873920pt;}
._1b{width:6.912000pt;}
._1a{width:7.830827pt;}
._6{width:8.960000pt;}
._20{width:10.048000pt;}
._5{width:10.944000pt;}
._15{width:12.032000pt;}
._16{width:13.328000pt;}
._18{width:14.337920pt;}
._22{width:17.617920pt;}
._23{width:18.542507pt;}
._21{width:19.520000pt;}
._14{width:20.417067pt;}
._4{width:21.312000pt;}
._13{width:22.476160pt;}
._12{width:23.488000pt;}
._2e{width:24.657920pt;}
._3{width:26.112000pt;}
._2{width:27.008000pt;}
._32{width:28.819413pt;}
._27{width:30.592000pt;}
._28{width:31.783253pt;}
._c{width:32.832000pt;}
._d{width:33.994667pt;}
._1c{width:35.011840pt;}
._1f{width:36.352000pt;}
._33{width:37.802667pt;}
._19{width:38.784000pt;}
._11{width:39.680000pt;}
._30{width:40.640000pt;}
._34{width:41.654827pt;}
._29{width:44.096000pt;}
._2f{width:45.827840pt;}
._b{width:46.720000pt;}
._2c{width:49.664000pt;}
._2d{width:50.624000pt;}
._31{width:51.825920pt;}
._a{width:57.088000pt;}
._e{width:58.112000pt;}
._2a{width:61.824000pt;}
._2b{width:62.794667pt;}
._26{width:98.880000pt;}
._25{width:99.946667pt;}
._24{width:101.536000pt;}
._8{width:124.032000pt;}
._9{width:125.184000pt;}
._7{width:126.112000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:1.120000pt;}
.yaa{bottom:1.280000pt;}
.yb0{bottom:1.600000pt;}
.y65{bottom:4.480000pt;}
.y5d{bottom:4.640000pt;}
.y59{bottom:4.800000pt;}
.y67{bottom:4.960000pt;}
.yb2{bottom:5.600000pt;}
.y5f{bottom:6.080000pt;}
.y50{bottom:7.360000pt;}
.y4f{bottom:7.680000pt;}
.y52{bottom:8.160000pt;}
.y57{bottom:8.200000pt;}
.y56{bottom:8.960000pt;}
.ya6{bottom:9.120000pt;}
.y4d{bottom:9.600000pt;}
.y54{bottom:9.960000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.yac{bottom:20.800000pt;}
.ya9{bottom:21.120000pt;}
.yaf{bottom:21.440000pt;}
.y5c{bottom:24.480000pt;}
.y4{bottom:24.800000pt;}
.ya3{bottom:26.106667pt;}
.ya5{bottom:29.306667pt;}
.y6{bottom:40.320000pt;}
.y62{bottom:40.480000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.ya2{bottom:46.266667pt;}
.y61{bottom:60.640000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.ya{bottom:80.992000pt;}
.y4b{bottom:114.432000pt;}
.y4a{bottom:119.072000pt;}
.y38{bottom:124.352000pt;}
.y49{bottom:129.632000pt;}
.ya0{bottom:130.432000pt;}
.y48{bottom:134.266667pt;}
.y37{bottom:145.466667pt;}
.y47{bottom:145.626667pt;}
.y36{bottom:166.586667pt;}
.y9f{bottom:169.306667pt;}
.y7e{bottom:186.746667pt;}
.y35{bottom:187.866667pt;}
.y9e{bottom:190.426667pt;}
.y7d{bottom:207.866667pt;}
.y34{bottom:208.986667pt;}
.y9d{bottom:211.546667pt;}
.y7c{bottom:228.986667pt;}
.y45{bottom:229.786667pt;}
.y33{bottom:230.106667pt;}
.y9b{bottom:232.506667pt;}
.y46{bottom:235.066667pt;}
.y9c{bottom:237.786667pt;}
.y7b{bottom:250.306667pt;}
.y44{bottom:250.946667pt;}
.y32{bottom:251.266667pt;}
.y9a{bottom:253.666667pt;}
.y68{bottom:269.346667pt;}
.y7a{bottom:271.426667pt;}
.y43{bottom:272.066667pt;}
.y31{bottom:272.386667pt;}
.yb3{bottom:274.466667pt;}
.y99{bottom:274.786667pt;}
.y79{bottom:292.546667pt;}
.y42{bottom:293.346667pt;}
.y30{bottom:293.666667pt;}
.y98{bottom:295.906667pt;}
.y5e{bottom:306.146667pt;}
.y66{bottom:307.426667pt;}
.y60{bottom:308.066667pt;}
.y78{bottom:313.666667pt;}
.yae{bottom:313.986667pt;}
.y2f{bottom:314.786667pt;}
.y97{bottom:317.186667pt;}
.y77{bottom:334.946667pt;}
.y2e{bottom:335.906667pt;}
.y96{bottom:338.306667pt;}
.y64{bottom:351.426667pt;}
.y5b{bottom:355.426667pt;}
.y76{bottom:356.066667pt;}
.y2d{bottom:357.026667pt;}
.y95{bottom:359.426667pt;}
.y75{bottom:377.186667pt;}
.y2c{bottom:378.306667pt;}
.y94{bottom:380.546667pt;}
.yad{bottom:381.986667pt;}
.yab{bottom:382.786667pt;}
.ya8{bottom:384.706667pt;}
.y63{bottom:395.106667pt;}
.y74{bottom:398.306667pt;}
.y2b{bottom:399.426667pt;}
.y93{bottom:401.826667pt;}
.y73{bottom:419.586667pt;}
.y2a{bottom:420.546667pt;}
.y92{bottom:423.266667pt;}
.y72{bottom:440.706667pt;}
.y29{bottom:441.666667pt;}
.y91{bottom:444.386667pt;}
.y58{bottom:446.306667pt;}
.y5a{bottom:447.266667pt;}
.y71{bottom:461.826667pt;}
.y28{bottom:462.946667pt;}
.y90{bottom:465.506667pt;}
.ya1{bottom:481.666667pt;}
.y70{bottom:482.946667pt;}
.y27{bottom:484.066667pt;}
.ya4{bottom:485.986667pt;}
.y8f{bottom:486.786667pt;}
.ya7{bottom:487.106667pt;}
.y6a{bottom:489.186667pt;}
.y6f{bottom:504.093333pt;}
.y26{bottom:505.213333pt;}
.y8e{bottom:507.933333pt;}
.y6e{bottom:525.373333pt;}
.y25{bottom:526.333333pt;}
.y8d{bottom:529.053333pt;}
.y6d{bottom:546.173333pt;}
.y24{bottom:547.613333pt;}
.y8c{bottom:550.173333pt;}
.yb1{bottom:557.693333pt;}
.y6c{bottom:567.293333pt;}
.y23{bottom:568.733333pt;}
.y8b{bottom:571.293333pt;}
.y6b{bottom:585.053333pt;}
.y22{bottom:589.853333pt;}
.y8a{bottom:592.573333pt;}
.y21{bottom:610.973333pt;}
.y89{bottom:613.693333pt;}
.yb5{bottom:631.933333pt;}
.y20{bottom:632.253333pt;}
.y88{bottom:634.813333pt;}
.yb4{bottom:653.053333pt;}
.y1f{bottom:653.373333pt;}
.y87{bottom:655.933333pt;}
.y1e{bottom:674.493333pt;}
.y86{bottom:677.213333pt;}
.y1d{bottom:695.613333pt;}
.y85{bottom:698.333333pt;}
.y40{bottom:716.413333pt;}
.y1c{bottom:716.733333pt;}
.y84{bottom:719.453333pt;}
.y41{bottom:721.693333pt;}
.y3f{bottom:737.693333pt;}
.y1b{bottom:738.013333pt;}
.y83{bottom:740.573333pt;}
.y53{bottom:745.373333pt;}
.y3e{bottom:758.853333pt;}
.y1a{bottom:759.173333pt;}
.y82{bottom:761.893333pt;}
.y19{bottom:780.293333pt;}
.y81{bottom:782.693333pt;}
.y51{bottom:791.813333pt;}
.y4e{bottom:792.613333pt;}
.y55{bottom:792.933333pt;}
.y18{bottom:801.413333pt;}
.yb7{bottom:801.573333pt;}
.y80{bottom:803.813333pt;}
.y7f{bottom:821.573333pt;}
.yb6{bottom:822.373333pt;}
.y17{bottom:822.693333pt;}
.y16{bottom:843.493333pt;}
.y3d{bottom:843.813333pt;}
.y4c{bottom:847.493333pt;}
.y15{bottom:864.933333pt;}
.y14{bottom:886.053333pt;}
.y13{bottom:907.013333pt;}
.y3c{bottom:907.333333pt;}
.y12{bottom:928.453333pt;}
.y11{bottom:949.253333pt;}
.y3b{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y3a{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y39{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h1e{height:15.680000pt;}
.h1c{height:19.040000pt;}
.h18{height:19.360000pt;}
.h1d{height:19.520000pt;}
.h1f{height:19.552000pt;}
.h24{height:20.480000pt;}
.h1a{height:20.960000pt;}
.h13{height:22.240000pt;}
.h12{height:22.720000pt;}
.h14{height:23.200000pt;}
.h17{height:23.232000pt;}
.h16{height:23.840000pt;}
.h11{height:24.800000pt;}
.h15{height:24.992000pt;}
.h8{height:29.440000pt;}
.hf{height:33.918750pt;}
.h22{height:35.680000pt;}
.h23{height:36.000000pt;}
.h19{height:39.040000pt;}
.he{height:43.215000pt;}
.h21{height:43.872000pt;}
.hd{height:44.875000pt;}
.hc{height:46.781250pt;}
.hb{height:51.937500pt;}
.h10{height:52.134375pt;}
.h9{height:58.563750pt;}
.h20{height:60.832000pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h25{height:65.781915pt;}
.h4{height:73.454062pt;}
.h1b{height:75.200000pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w6{width:44.800000pt;}
.w4{width:54.746667pt;}
.wa{width:82.080000pt;}
.w11{width:92.160000pt;}
.w18{width:101.952000pt;}
.w16{width:104.000000pt;}
.w2{width:111.872000pt;}
.w22{width:118.560000pt;}
.w25{width:120.640000pt;}
.w20{width:130.592000pt;}
.w21{width:132.512000pt;}
.w23{width:135.680000pt;}
.w10{width:137.146667pt;}
.w15{width:143.866667pt;}
.w14{width:144.026667pt;}
.w1a{width:153.946667pt;}
.w1b{width:154.906667pt;}
.wf{width:156.346667pt;}
.w1c{width:156.826667pt;}
.w1f{width:159.706667pt;}
.w12{width:162.106667pt;}
.we{width:162.266667pt;}
.wd{width:163.386667pt;}
.w19{width:167.866667pt;}
.w13{width:168.346667pt;}
.w17{width:186.106667pt;}
.w1e{width:203.706667pt;}
.w24{width:251.586667pt;}
.w26{width:253.946667pt;}
.w27{width:328.066667pt;}
.wc{width:358.146667pt;}
.w1d{width:380.093333pt;}
.w3{width:627.133333pt;}
.wb{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x24{left:12.960000pt;}
.x32{left:14.560000pt;}
.x45{left:15.840000pt;}
.x7{left:17.600000pt;}
.x4b{left:18.720000pt;}
.x31{left:20.000000pt;}
.x34{left:21.320000pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x3{left:26.879976pt;}
.x2a{left:29.760000pt;}
.x37{left:33.000000pt;}
.x53{left:35.040000pt;}
.x49{left:41.320000pt;}
.x2f{left:42.240000pt;}
.x51{left:43.834667pt;}
.x2c{left:46.560000pt;}
.x47{left:48.314667pt;}
.x4c{left:49.800000pt;}
.x44{left:50.880000pt;}
.x39{left:53.160000pt;}
.x50{left:55.840000pt;}
.x55{left:62.400000pt;}
.x5{left:63.994667pt;}
.x3b{left:81.160000pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x21{left:117.791988pt;}
.x57{left:122.911988pt;}
.x12{left:126.911988pt;}
.x46{left:128.192000pt;}
.x30{left:144.026667pt;}
.x56{left:151.226655pt;}
.x2b{left:153.146667pt;}
.x18{left:160.666655pt;}
.x26{left:166.586667pt;}
.x40{left:177.306655pt;}
.x3d{left:194.426655pt;}
.x1d{left:228.346655pt;}
.x3a{left:248.026667pt;}
.x1a{left:253.946655pt;}
.x33{left:258.106667pt;}
.x22{left:262.466667pt;}
.x17{left:268.706655pt;}
.x4e{left:276.226667pt;}
.x13{left:277.346655pt;}
.x54{left:288.546667pt;}
.x23{left:296.226667pt;}
.x52{left:304.546667pt;}
.x20{left:305.506655pt;}
.x3f{left:312.866655pt;}
.x14{left:331.746655pt;}
.x43{left:335.266667pt;}
.x16{left:337.506655pt;}
.x28{left:349.186667pt;}
.x3e{left:355.266655pt;}
.x2d{left:365.186667pt;}
.x15{left:367.426655pt;}
.x4f{left:373.346667pt;}
.x35{left:381.666667pt;}
.x4d{left:439.293333pt;}
.x19{left:453.693322pt;}
.x25{left:474.173333pt;}
.x29{left:536.253333pt;}
.xb{left:550.493333pt;}
.x2e{left:557.053333pt;}
.x4a{left:585.373333pt;}
.x48{left:587.293333pt;}
.x36{left:588.733333pt;}
.x38{left:589.693333pt;}
.xc{left:595.293333pt;}
.xd{left:610.493333pt;}
.xe{left:626.053333pt;}
.xf{left:641.413333pt;}
.x1b{left:643.813310pt;}
.x27{left:645.253333pt;}
.x1c{left:649.253322pt;}
.x10{left:656.773333pt;}
.x1e{left:669.573310pt;}
.x1f{left:675.013322pt;}
.x41{left:720.613310pt;}
.x42{left:726.053322pt;}
.x3c{left:738.053322pt;}
.x8{left:739.013333pt;}
}




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