
    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_3578a33b5e52716b6db8a617.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4a2d520fafd98bb38a61df30.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3b8e8301d1dbb8bfeec23eb7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_537c47d9fde5c115a6b3e87d.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_f6d9724ee39d69fcd22f8349.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8d6f8987ffad0dc6855760ef.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4dbcef0a795a6a0520bc607b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_49c334e8e1566d3d54c72171.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ed88047543f28cfb94287fef.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249281,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.250399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250399,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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.262200px;}
.lse{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.174000px;}
.lsb{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.lsa{letter-spacing:32.544000px;}
.ls6{letter-spacing:54.864000px;}
.ls2{letter-spacing:192.360000px;}
.ls0{letter-spacing:1184.556000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.240000px;}
.wsa{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.297800px;}
.ws8{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.833200px;}
.ws9{word-spacing:-13.860000px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-4.464000px;}
._19{margin-left:-3.456000px;}
._9{margin-left:-2.448000px;}
._0{margin-left:-1.192320px;}
._1{width:1.055040px;}
._2{width:2.616960px;}
._12{width:3.768960px;}
._10{width:5.040000px;}
._11{width:6.552000px;}
._5{width:8.280000px;}
._a{width:9.720000px;}
._b{width:10.840320px;}
._3{width:12.024000px;}
._f{width:13.464000px;}
._c{width:14.800320px;}
._6{width:15.840000px;}
._7{width:16.920000px;}
._4{width:19.080000px;}
._15{width:20.160000px;}
._16{width:21.577920px;}
._1a{width:22.595520px;}
._17{width:23.616000px;}
._14{width:24.920640px;}
._13{width:25.992000px;}
._18{width:27.192000px;}
._d{width:28.944000px;}
._e{width:30.240000px;}
._1b{width:42.408000px;}
._1c{width:43.728960px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:51.471003px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:70.823766px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.yd4{bottom:-17.640000px;}
.ydc{bottom:-1.123653px;}
.y0{bottom:0.000000px;}
.yd3{bottom:1.080000px;}
.ya3{bottom:3.240000px;}
.yd8{bottom:3.670342px;}
.ya5{bottom:11.880000px;}
.yb6{bottom:12.420000px;}
.y74{bottom:14.040000px;}
.y76{bottom:14.220000px;}
.y78{bottom:15.660000px;}
.yab{bottom:20.340000px;}
.yae{bottom:20.514000px;}
.ya2{bottom:20.520000px;}
.y9f{bottom:28.980000px;}
.ya7{bottom:29.160000px;}
.y2{bottom:29.700000px;}
.yd2{bottom:33.120000px;}
.ya1{bottom:37.620000px;}
.yaf{bottom:37.794000px;}
.ya9{bottom:37.800000px;}
.yb9{bottom:37.845000px;}
.ya0{bottom:54.900000px;}
.ya8{bottom:55.080000px;}
.yb0{bottom:89.316000px;}
.y72{bottom:93.816000px;}
.y33{bottom:99.036000px;}
.y54{bottom:112.356000px;}
.yfa{bottom:114.516000px;}
.y32{bottom:119.736000px;}
.y71{bottom:124.956000px;}
.yf9{bottom:135.216000px;}
.y31{bottom:140.436000px;}
.yad{bottom:141.876000px;}
.ycd{bottom:142.776000px;}
.ycf{bottom:142.956000px;}
.y53{bottom:143.316000px;}
.y8b{bottom:148.176000px;}
.y70{bottom:155.910000px;}
.y30{bottom:161.130000px;}
.ycc{bottom:173.730000px;}
.yce{bottom:173.910000px;}
.y52{bottom:174.450000px;}
.yf8{bottom:176.610000px;}
.yd6{bottom:178.705810px;}
.y8a{bottom:179.310000px;}
.y2f{bottom:181.830000px;}
.y6f{bottom:187.050000px;}
.yda{bottom:189.422438px;}
.yac{bottom:194.430000px;}
.yf7{bottom:197.310000px;}
.y2e{bottom:202.530000px;}
.yd0{bottom:202.710000px;}
.ycb{bottom:204.870000px;}
.y51{bottom:205.410000px;}
.y89{bottom:210.270000px;}
.y6e{bottom:218.010000px;}
.y2d{bottom:223.230000px;}
.yaa{bottom:229.710000px;}
.yca{bottom:235.830000px;}
.yd9{bottom:235.965000px;}
.yd5{bottom:235.980000px;}
.y50{bottom:236.550000px;}
.yf6{bottom:238.710000px;}
.ydb{bottom:240.344212px;}
.yd7{bottom:241.031876px;}
.y88{bottom:241.410000px;}
.y2c{bottom:243.930000px;}
.y6d{bottom:249.150000px;}
.yd1{bottom:255.285000px;}
.yf5{bottom:259.410000px;}
.y2b{bottom:264.630000px;}
.ya6{bottom:264.810000px;}
.yc9{bottom:266.790000px;}
.y4f{bottom:267.510000px;}
.y87{bottom:272.370000px;}
.y6c{bottom:280.110000px;}
.y2a{bottom:285.330000px;}
.y4e{bottom:296.130000px;}
.yc8{bottom:299.370000px;}
.yf4{bottom:300.810000px;}
.y86{bottom:303.510000px;}
.y29{bottom:305.670000px;}
.y6b{bottom:311.250000px;}
.y4d{bottom:318.810000px;}
.yf3{bottom:321.510000px;}
.y28{bottom:324.930000px;}
.yc7{bottom:330.195000px;}
.y85{bottom:334.515000px;}
.ya4{bottom:334.695000px;}
.y6a{bottom:342.255000px;}
.y27{bottom:345.675000px;}
.yc6{bottom:362.775000px;}
.yf2{bottom:362.955000px;}
.y84{bottom:365.655000px;}
.y26{bottom:366.375000px;}
.y9e{bottom:369.975000px;}
.y69{bottom:373.395000px;}
.yf1{bottom:383.655000px;}
.y25{bottom:387.075000px;}
.yc5{bottom:393.555000px;}
.y83{bottom:396.615000px;}
.y68{bottom:404.355000px;}
.y24{bottom:407.775000px;}
.yf0{bottom:425.055000px;}
.yc4{bottom:426.135000px;}
.y82{bottom:427.755000px;}
.y23{bottom:428.475000px;}
.y67{bottom:435.495000px;}
.y9d{bottom:442.875000px;}
.yef{bottom:445.755000px;}
.y22{bottom:449.175000px;}
.yc3{bottom:456.915000px;}
.y81{bottom:458.535000px;}
.y9c{bottom:460.155000px;}
.y66{bottom:466.455000px;}
.y21{bottom:469.875000px;}
.yee{bottom:476.895000px;}
.y4c{bottom:488.055000px;}
.y9b{bottom:488.415000px;}
.yc2{bottom:489.495000px;}
.y20{bottom:490.575000px;}
.y80{bottom:491.115000px;}
.y65{bottom:497.595000px;}
.yed{bottom:507.855000px;}
.y1f{bottom:511.275000px;}
.y4b{bottom:516.495000px;}
.y9a{bottom:519.555000px;}
.yc1{bottom:520.455000px;}
.y7f{bottom:522.075000px;}
.y64{bottom:528.555000px;}
.y1e{bottom:531.975000px;}
.yec{bottom:538.995000px;}
.y4a{bottom:547.455000px;}
.y99{bottom:550.515000px;}
.yc0{bottom:551.595000px;}
.y1d{bottom:552.675000px;}
.y7e{bottom:553.035000px;}
.y63{bottom:559.695000px;}
.yeb{bottom:569.955000px;}
.y1c{bottom:573.375000px;}
.y49{bottom:578.595000px;}
.y98{bottom:581.655000px;}
.ybf{bottom:582.555000px;}
.y7d{bottom:585.435000px;}
.y62{bottom:590.655000px;}
.y1b{bottom:594.075000px;}
.yea{bottom:600.945000px;}
.y48{bottom:609.585000px;}
.ybe{bottom:611.205000px;}
.y97{bottom:612.645000px;}
.y1a{bottom:614.805000px;}
.y7c{bottom:616.605000px;}
.y61{bottom:621.645000px;}
.ybd{bottom:625.965000px;}
.ye9{bottom:632.085000px;}
.y19{bottom:635.505000px;}
.y47{bottom:640.725000px;}
.y96{bottom:643.605000px;}
.y7b{bottom:647.385000px;}
.y60{bottom:652.785000px;}
.y18{bottom:656.205000px;}
.ye8{bottom:663.045000px;}
.y46{bottom:671.685000px;}
.y95{bottom:676.005000px;}
.y17{bottom:676.905000px;}
.y7a{bottom:679.965000px;}
.y5f{bottom:683.745000px;}
.ye7{bottom:694.185000px;}
.ybc{bottom:695.805000px;}
.y16{bottom:697.605000px;}
.y45{bottom:702.825000px;}
.y94{bottom:708.225000px;}
.y79{bottom:710.925000px;}
.y5e{bottom:714.885000px;}
.y15{bottom:718.305000px;}
.ye6{bottom:725.145000px;}
.y77{bottom:727.665000px;}
.ybb{bottom:731.085000px;}
.y44{bottom:733.785000px;}
.y93{bottom:740.805000px;}
.y5d{bottom:745.845000px;}
.ye5{bottom:756.285000px;}
.y14{bottom:759.705000px;}
.y75{bottom:760.065000px;}
.yfd{bottom:766.545000px;}
.y92{bottom:771.765000px;}
.y5c{bottom:776.985000px;}
.y13{bottom:780.405000px;}
.yba{bottom:783.465000px;}
.y43{bottom:785.445000px;}
.ye4{bottom:787.245000px;}
.y73{bottom:792.465000px;}
.y12{bottom:801.105000px;}
.y91{bottom:802.905000px;}
.y5b{bottom:807.945000px;}
.y42{bottom:816.585000px;}
.ye3{bottom:818.385000px;}
.y11{bottom:821.805000px;}
.yfc{bottom:828.645000px;}
.y90{bottom:833.865000px;}
.yb8{bottom:836.025000px;}
.y5a{bottom:839.085000px;}
.y10{bottom:842.505000px;}
.y41{bottom:846.285000px;}
.ye2{bottom:849.345000px;}
.yf{bottom:863.250000px;}
.y8f{bottom:864.870000px;}
.y59{bottom:870.090000px;}
.y40{bottom:874.950000px;}
.ye1{bottom:880.530000px;}
.ye{bottom:883.950000px;}
.yb7{bottom:888.630000px;}
.yfb{bottom:890.790000px;}
.y3f{bottom:894.030000px;}
.y8e{bottom:897.090000px;}
.y58{bottom:901.230000px;}
.yd{bottom:904.650000px;}
.ye0{bottom:911.490000px;}
.y3e{bottom:912.930000px;}
.yc{bottom:925.350000px;}
.y8d{bottom:929.490000px;}
.y3d{bottom:932.190000px;}
.yb5{bottom:941.010000px;}
.ydf{bottom:942.630000px;}
.yb{bottom:946.050000px;}
.y3c{bottom:952.890000px;}
.y8c{bottom:961.890000px;}
.y57{bottom:963.330000px;}
.ya{bottom:966.750000px;}
.y3b{bottom:973.590000px;}
.yb4{bottom:976.290000px;}
.y9{bottom:987.450000px;}
.y3a{bottom:994.290000px;}
.yde{bottom:1004.730000px;}
.y8{bottom:1008.150000px;}
.y39{bottom:1014.990000px;}
.y56{bottom:1025.430000px;}
.y7{bottom:1028.850000px;}
.y38{bottom:1035.690000px;}
.yb3{bottom:1046.850000px;}
.y6{bottom:1049.550000px;}
.y37{bottom:1056.390000px;}
.y5{bottom:1070.250000px;}
.y36{bottom:1077.090000px;}
.yb2{bottom:1081.950000px;}
.ydd{bottom:1087.350000px;}
.y55{bottom:1087.530000px;}
.y4{bottom:1091.490000px;}
.y35{bottom:1097.790000px;}
.yb1{bottom:1099.950000px;}
.y3{bottom:1115.610000px;}
.y34{bottom:1118.490000px;}
.y1{bottom:1231.740000px;}
.h17{height:17.100000px;}
.h16{height:17.280000px;}
.he{height:32.220000px;}
.hf{height:32.400000px;}
.h13{height:34.380000px;}
.h11{height:34.560000px;}
.h15{height:34.596000px;}
.h23{height:51.194547px;}
.h18{height:51.660000px;}
.h1a{height:51.696000px;}
.h14{height:51.840000px;}
.h19{height:52.998047px;}
.h3{height:53.464219px;}
.hc{height:58.651172px;}
.hb{height:60.226875px;}
.h1d{height:61.189805px;}
.hd{height:64.546875px;}
.h9{height:64.978594px;}
.h1e{height:65.010937px;}
.h7{height:66.757500px;}
.h10{height:68.940000px;}
.h1b{height:69.120000px;}
.h12{height:69.156000px;}
.h20{height:70.443365px;}
.h8{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.ha{height:74.004654px;}
.h2{height:76.317188px;}
.h4{height:84.898125px;}
.h21{height:185.067609px;}
.h24{height:192.771227px;}
.h1f{height:195.326074px;}
.h22{height:201.359062px;}
.h1c{height:269.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:30.420000px;}
.w8{width:100.620000px;}
.w7{width:166.890000px;}
.wa{width:259.956898px;}
.wb{width:260.545393px;}
.wc{width:276.975000px;}
.w4{width:339.375000px;}
.w3{width:340.950000px;}
.w6{width:378.795000px;}
.w9{width:679.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.740000px;}
.x2a{left:10.800000px;}
.x25{left:11.880000px;}
.x24{left:15.840000px;}
.x20{left:32.040000px;}
.x18{left:35.130000px;}
.x27{left:37.800000px;}
.x21{left:49.860000px;}
.x22{left:56.340000px;}
.x19{left:62.130000px;}
.x17{left:66.054000px;}
.x26{left:70.920000px;}
.x11{left:127.655987px;}
.x4{left:140.975987px;}
.x3{left:143.315987px;}
.x1e{left:159.510000px;}
.x7{left:162.209987px;}
.x13{left:180.749987px;}
.x1a{left:185.609987px;}
.x2d{left:198.933494px;}
.x29{left:202.169987px;}
.xd{left:209.369987px;}
.x1b{left:212.609987px;}
.x2c{left:233.499000px;}
.x2{left:241.769987px;}
.x14{left:243.569987px;}
.x2e{left:250.583879px;}
.x8{left:255.809987px;}
.x30{left:268.774917px;}
.x1c{left:299.954987px;}
.xc{left:306.434987px;}
.x5{left:318.674987px;}
.x9{left:322.814987px;}
.x16{left:363.494987px;}
.xf{left:366.734987px;}
.xa{left:367.814987px;}
.x28{left:369.974987px;}
.xb{left:371.414987px;}
.xe{left:379.874987px;}
.x10{left:399.854987px;}
.x31{left:403.274987px;}
.x12{left:421.814987px;}
.x2f{left:459.345000px;}
.x6{left:467.894987px;}
.x1f{left:539.025000px;}
.x2b{left:608.694000px;}
.x15{left:694.049987px;}
.x23{left:706.650000px;}
.x1{left:778.829987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.233067pt;}
.lse{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154667pt;}
.lsb{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsa{letter-spacing:28.928000pt;}
.ls6{letter-spacing:48.768000pt;}
.ls2{letter-spacing:170.986667pt;}
.ls0{letter-spacing:1052.938667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.880000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.486933pt;}
.ws8{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.320000pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-3.968000pt;}
._19{margin-left:-3.072000pt;}
._9{margin-left:-2.176000pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.937813pt;}
._2{width:2.326187pt;}
._12{width:3.350187pt;}
._10{width:4.480000pt;}
._11{width:5.824000pt;}
._5{width:7.360000pt;}
._a{width:8.640000pt;}
._b{width:9.635840pt;}
._3{width:10.688000pt;}
._f{width:11.968000pt;}
._c{width:13.155840pt;}
._6{width:14.080000pt;}
._7{width:15.040000pt;}
._4{width:16.960000pt;}
._15{width:17.920000pt;}
._16{width:19.180373pt;}
._1a{width:20.084907pt;}
._17{width:20.992000pt;}
._14{width:22.151680pt;}
._13{width:23.104000pt;}
._18{width:24.170667pt;}
._d{width:25.728000pt;}
._e{width:26.880000pt;}
._1b{width:37.696000pt;}
._1c{width:38.870187pt;}
.fs7{font-size:45.752003pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:62.954459pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.yd4{bottom:-15.680000pt;}
.ydc{bottom:-0.998803pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:0.960000pt;}
.ya3{bottom:2.880000pt;}
.yd8{bottom:3.262527pt;}
.ya5{bottom:10.560000pt;}
.yb6{bottom:11.040000pt;}
.y74{bottom:12.480000pt;}
.y76{bottom:12.640000pt;}
.y78{bottom:13.920000pt;}
.yab{bottom:18.080000pt;}
.yae{bottom:18.234667pt;}
.ya2{bottom:18.240000pt;}
.y9f{bottom:25.760000pt;}
.ya7{bottom:25.920000pt;}
.y2{bottom:26.400000pt;}
.yd2{bottom:29.440000pt;}
.ya1{bottom:33.440000pt;}
.yaf{bottom:33.594667pt;}
.ya9{bottom:33.600000pt;}
.yb9{bottom:33.640000pt;}
.ya0{bottom:48.800000pt;}
.ya8{bottom:48.960000pt;}
.yb0{bottom:79.392000pt;}
.y72{bottom:83.392000pt;}
.y33{bottom:88.032000pt;}
.y54{bottom:99.872000pt;}
.yfa{bottom:101.792000pt;}
.y32{bottom:106.432000pt;}
.y71{bottom:111.072000pt;}
.yf9{bottom:120.192000pt;}
.y31{bottom:124.832000pt;}
.yad{bottom:126.112000pt;}
.ycd{bottom:126.912000pt;}
.ycf{bottom:127.072000pt;}
.y53{bottom:127.392000pt;}
.y8b{bottom:131.712000pt;}
.y70{bottom:138.586667pt;}
.y30{bottom:143.226667pt;}
.ycc{bottom:154.426667pt;}
.yce{bottom:154.586667pt;}
.y52{bottom:155.066667pt;}
.yf8{bottom:156.986667pt;}
.yd6{bottom:158.849609pt;}
.y8a{bottom:159.386667pt;}
.y2f{bottom:161.626667pt;}
.y6f{bottom:166.266667pt;}
.yda{bottom:168.375501pt;}
.yac{bottom:172.826667pt;}
.yf7{bottom:175.386667pt;}
.y2e{bottom:180.026667pt;}
.yd0{bottom:180.186667pt;}
.ycb{bottom:182.106667pt;}
.y51{bottom:182.586667pt;}
.y89{bottom:186.906667pt;}
.y6e{bottom:193.786667pt;}
.y2d{bottom:198.426667pt;}
.yaa{bottom:204.186667pt;}
.yca{bottom:209.626667pt;}
.yd9{bottom:209.746667pt;}
.yd5{bottom:209.760000pt;}
.y50{bottom:210.266667pt;}
.yf6{bottom:212.186667pt;}
.ydb{bottom:213.639300pt;}
.yd7{bottom:214.250556pt;}
.y88{bottom:214.586667pt;}
.y2c{bottom:216.826667pt;}
.y6d{bottom:221.466667pt;}
.yd1{bottom:226.920000pt;}
.yf5{bottom:230.586667pt;}
.y2b{bottom:235.226667pt;}
.ya6{bottom:235.386667pt;}
.yc9{bottom:237.146667pt;}
.y4f{bottom:237.786667pt;}
.y87{bottom:242.106667pt;}
.y6c{bottom:248.986667pt;}
.y2a{bottom:253.626667pt;}
.y4e{bottom:263.226667pt;}
.yc8{bottom:266.106667pt;}
.yf4{bottom:267.386667pt;}
.y86{bottom:269.786667pt;}
.y29{bottom:271.706667pt;}
.y6b{bottom:276.666667pt;}
.y4d{bottom:283.386667pt;}
.yf3{bottom:285.786667pt;}
.y28{bottom:288.826667pt;}
.yc7{bottom:293.506667pt;}
.y85{bottom:297.346667pt;}
.ya4{bottom:297.506667pt;}
.y6a{bottom:304.226667pt;}
.y27{bottom:307.266667pt;}
.yc6{bottom:322.466667pt;}
.yf2{bottom:322.626667pt;}
.y84{bottom:325.026667pt;}
.y26{bottom:325.666667pt;}
.y9e{bottom:328.866667pt;}
.y69{bottom:331.906667pt;}
.yf1{bottom:341.026667pt;}
.y25{bottom:344.066667pt;}
.yc5{bottom:349.826667pt;}
.y83{bottom:352.546667pt;}
.y68{bottom:359.426667pt;}
.y24{bottom:362.466667pt;}
.yf0{bottom:377.826667pt;}
.yc4{bottom:378.786667pt;}
.y82{bottom:380.226667pt;}
.y23{bottom:380.866667pt;}
.y67{bottom:387.106667pt;}
.y9d{bottom:393.666667pt;}
.yef{bottom:396.226667pt;}
.y22{bottom:399.266667pt;}
.yc3{bottom:406.146667pt;}
.y81{bottom:407.586667pt;}
.y9c{bottom:409.026667pt;}
.y66{bottom:414.626667pt;}
.y21{bottom:417.666667pt;}
.yee{bottom:423.906667pt;}
.y4c{bottom:433.826667pt;}
.y9b{bottom:434.146667pt;}
.yc2{bottom:435.106667pt;}
.y20{bottom:436.066667pt;}
.y80{bottom:436.546667pt;}
.y65{bottom:442.306667pt;}
.yed{bottom:451.426667pt;}
.y1f{bottom:454.466667pt;}
.y4b{bottom:459.106667pt;}
.y9a{bottom:461.826667pt;}
.yc1{bottom:462.626667pt;}
.y7f{bottom:464.066667pt;}
.y64{bottom:469.826667pt;}
.y1e{bottom:472.866667pt;}
.yec{bottom:479.106667pt;}
.y4a{bottom:486.626667pt;}
.y99{bottom:489.346667pt;}
.yc0{bottom:490.306667pt;}
.y1d{bottom:491.266667pt;}
.y7e{bottom:491.586667pt;}
.y63{bottom:497.506667pt;}
.yeb{bottom:506.626667pt;}
.y1c{bottom:509.666667pt;}
.y49{bottom:514.306667pt;}
.y98{bottom:517.026667pt;}
.ybf{bottom:517.826667pt;}
.y7d{bottom:520.386667pt;}
.y62{bottom:525.026667pt;}
.y1b{bottom:528.066667pt;}
.yea{bottom:534.173333pt;}
.y48{bottom:541.853333pt;}
.ybe{bottom:543.293333pt;}
.y97{bottom:544.573333pt;}
.y1a{bottom:546.493333pt;}
.y7c{bottom:548.093333pt;}
.y61{bottom:552.573333pt;}
.ybd{bottom:556.413333pt;}
.ye9{bottom:561.853333pt;}
.y19{bottom:564.893333pt;}
.y47{bottom:569.533333pt;}
.y96{bottom:572.093333pt;}
.y7b{bottom:575.453333pt;}
.y60{bottom:580.253333pt;}
.y18{bottom:583.293333pt;}
.ye8{bottom:589.373333pt;}
.y46{bottom:597.053333pt;}
.y95{bottom:600.893333pt;}
.y17{bottom:601.693333pt;}
.y7a{bottom:604.413333pt;}
.y5f{bottom:607.773333pt;}
.ye7{bottom:617.053333pt;}
.ybc{bottom:618.493333pt;}
.y16{bottom:620.093333pt;}
.y45{bottom:624.733333pt;}
.y94{bottom:629.533333pt;}
.y79{bottom:631.933333pt;}
.y5e{bottom:635.453333pt;}
.y15{bottom:638.493333pt;}
.ye6{bottom:644.573333pt;}
.y77{bottom:646.813333pt;}
.ybb{bottom:649.853333pt;}
.y44{bottom:652.253333pt;}
.y93{bottom:658.493333pt;}
.y5d{bottom:662.973333pt;}
.ye5{bottom:672.253333pt;}
.y14{bottom:675.293333pt;}
.y75{bottom:675.613333pt;}
.yfd{bottom:681.373333pt;}
.y92{bottom:686.013333pt;}
.y5c{bottom:690.653333pt;}
.y13{bottom:693.693333pt;}
.yba{bottom:696.413333pt;}
.y43{bottom:698.173333pt;}
.ye4{bottom:699.773333pt;}
.y73{bottom:704.413333pt;}
.y12{bottom:712.093333pt;}
.y91{bottom:713.693333pt;}
.y5b{bottom:718.173333pt;}
.y42{bottom:725.853333pt;}
.ye3{bottom:727.453333pt;}
.y11{bottom:730.493333pt;}
.yfc{bottom:736.573333pt;}
.y90{bottom:741.213333pt;}
.yb8{bottom:743.133333pt;}
.y5a{bottom:745.853333pt;}
.y10{bottom:748.893333pt;}
.y41{bottom:752.253333pt;}
.ye2{bottom:754.973333pt;}
.yf{bottom:767.333333pt;}
.y8f{bottom:768.773333pt;}
.y59{bottom:773.413333pt;}
.y40{bottom:777.733333pt;}
.ye1{bottom:782.693333pt;}
.ye{bottom:785.733333pt;}
.yb7{bottom:789.893333pt;}
.yfb{bottom:791.813333pt;}
.y3f{bottom:794.693333pt;}
.y8e{bottom:797.413333pt;}
.y58{bottom:801.093333pt;}
.yd{bottom:804.133333pt;}
.ye0{bottom:810.213333pt;}
.y3e{bottom:811.493333pt;}
.yc{bottom:822.533333pt;}
.y8d{bottom:826.213333pt;}
.y3d{bottom:828.613333pt;}
.yb5{bottom:836.453333pt;}
.ydf{bottom:837.893333pt;}
.yb{bottom:840.933333pt;}
.y3c{bottom:847.013333pt;}
.y8c{bottom:855.013333pt;}
.y57{bottom:856.293333pt;}
.ya{bottom:859.333333pt;}
.y3b{bottom:865.413333pt;}
.yb4{bottom:867.813333pt;}
.y9{bottom:877.733333pt;}
.y3a{bottom:883.813333pt;}
.yde{bottom:893.093333pt;}
.y8{bottom:896.133333pt;}
.y39{bottom:902.213333pt;}
.y56{bottom:911.493333pt;}
.y7{bottom:914.533333pt;}
.y38{bottom:920.613333pt;}
.yb3{bottom:930.533333pt;}
.y6{bottom:932.933333pt;}
.y37{bottom:939.013333pt;}
.y5{bottom:951.333333pt;}
.y36{bottom:957.413333pt;}
.yb2{bottom:961.733333pt;}
.ydd{bottom:966.533333pt;}
.y55{bottom:966.693333pt;}
.y4{bottom:970.213333pt;}
.y35{bottom:975.813333pt;}
.yb1{bottom:977.733333pt;}
.y3{bottom:991.653333pt;}
.y34{bottom:994.213333pt;}
.y1{bottom:1094.880000pt;}
.h17{height:15.200000pt;}
.h16{height:15.360000pt;}
.he{height:28.640000pt;}
.hf{height:28.800000pt;}
.h13{height:30.560000pt;}
.h11{height:30.720000pt;}
.h15{height:30.752000pt;}
.h23{height:45.506264pt;}
.h18{height:45.920000pt;}
.h1a{height:45.952000pt;}
.h14{height:46.080000pt;}
.h19{height:47.109375pt;}
.h3{height:47.523750pt;}
.hc{height:52.134375pt;}
.hb{height:53.535000pt;}
.h1d{height:54.390938pt;}
.hd{height:57.375000pt;}
.h9{height:57.758750pt;}
.h1e{height:57.787500pt;}
.h7{height:59.340000pt;}
.h10{height:61.280000pt;}
.h1b{height:61.440000pt;}
.h12{height:61.472000pt;}
.h20{height:62.616324pt;}
.h8{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.ha{height:65.781915pt;}
.h2{height:67.837500pt;}
.h4{height:75.465000pt;}
.h21{height:164.504541pt;}
.h24{height:171.352202pt;}
.h1f{height:173.623177pt;}
.h22{height:178.985833pt;}
.h1c{height:239.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:27.040000pt;}
.w8{width:89.440000pt;}
.w7{width:148.346667pt;}
.wa{width:231.072798pt;}
.wb{width:231.595905pt;}
.wc{width:246.200000pt;}
.w4{width:301.666667pt;}
.w3{width:303.066667pt;}
.w6{width:336.706667pt;}
.w9{width:604.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.880000pt;}
.x2a{left:9.600000pt;}
.x25{left:10.560000pt;}
.x24{left:14.080000pt;}
.x20{left:28.480000pt;}
.x18{left:31.226667pt;}
.x27{left:33.600000pt;}
.x21{left:44.320000pt;}
.x22{left:50.080000pt;}
.x19{left:55.226667pt;}
.x17{left:58.714667pt;}
.x26{left:63.040000pt;}
.x11{left:113.471988pt;}
.x4{left:125.311988pt;}
.x3{left:127.391988pt;}
.x1e{left:141.786667pt;}
.x7{left:144.186655pt;}
.x13{left:160.666655pt;}
.x1a{left:164.986655pt;}
.x2d{left:176.829773pt;}
.x29{left:179.706655pt;}
.xd{left:186.106655pt;}
.x1b{left:188.986655pt;}
.x2c{left:207.554667pt;}
.x2{left:214.906655pt;}
.x14{left:216.506655pt;}
.x2e{left:222.741225pt;}
.x8{left:227.386655pt;}
.x30{left:238.911037pt;}
.x1c{left:266.626655pt;}
.xc{left:272.386655pt;}
.x5{left:283.266655pt;}
.x9{left:286.946655pt;}
.x16{left:323.106655pt;}
.xf{left:325.986655pt;}
.xa{left:326.946655pt;}
.x28{left:328.866655pt;}
.xb{left:330.146655pt;}
.xe{left:337.666655pt;}
.x10{left:355.426655pt;}
.x31{left:358.466655pt;}
.x12{left:374.946655pt;}
.x2f{left:408.306667pt;}
.x6{left:415.906655pt;}
.x1f{left:479.133333pt;}
.x2b{left:541.061333pt;}
.x15{left:616.933322pt;}
.x23{left:628.133333pt;}
.x1{left:692.293322pt;}
}




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