
    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_41a0bfc25812dde3e56be0da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_dfbaf674fbd46efa21a845b2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bbc58df74f4cc67b47ad58a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5f6eecfa8c1619e8f186e8f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_ac2d287623fa861e1fd9c497.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0bec49f3a677ea2e313b81bc.woff2')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_476de6ad65a8004ea0026b4b.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_3d983c68e33ffb4be7a01a4c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.125737;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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-24.000000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:23.940000px;}
.ls19{letter-spacing:-0.948000px;}
.ls1d{letter-spacing:-0.630000px;}
.ls5{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.552000px;}
.ls6{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:-0.348000px;}
.ls12{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.078000px;}
.ls11{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.348000px;}
.ls3{letter-spacing:0.384000px;}
.ls15{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.600000px;}
.lsd{letter-spacing:6.600000px;}
.ls14{letter-spacing:15.720000px;}
.ls18{letter-spacing:15.900000px;}
.ls16{letter-spacing:18.600000px;}
.ls17{letter-spacing:37.747200px;}
.lsb{letter-spacing:45.720000px;}
.ls9{letter-spacing:63.720000px;}
.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;}
}
.ws9{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws10{word-spacing:-16.848000px;}
.ws13{word-spacing:-16.752000px;}
.ws4{word-spacing:-16.500000px;}
.ws11{word-spacing:-16.152000px;}
.ws12{word-spacing:-15.900000px;}
.wsf{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.204000px;}
.wsa{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.880000px;}
.wsb{word-spacing:-14.760000px;}
.ws3{word-spacing:-14.460000px;}
.ws14{word-spacing:-14.370000px;}
.ws8{word-spacing:-12.900000px;}
.wsd{word-spacing:-11.052000px;}
.wse{word-spacing:-10.500000px;}
.wsc{word-spacing:-9.948000px;}
.ws2{word-spacing:-9.900000px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-2.167200px;}
._0{margin-left:-1.056000px;}
._1{width:1.074000px;}
._6{width:3.062400px;}
._f{width:4.196400px;}
._14{width:5.740800px;}
._8{width:6.780000px;}
._9{width:8.352000px;}
._16{width:9.414000px;}
._10{width:11.100000px;}
._11{width:12.326400px;}
._13{width:13.860000px;}
._1a{width:15.314400px;}
._12{width:16.716000px;}
._d{width:18.403200px;}
._e{width:20.082000px;}
._c{width:21.912000px;}
._15{width:23.040000px;}
._19{width:24.979200px;}
._17{width:30.253200px;}
._18{width:31.260000px;}
._b{width:33.216000px;}
._a{width:35.220000px;}
._1c{width:37.178400px;}
._1b{width:39.276000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1184.820000px;}
.fc7{color:rgb(28,29,31);}
.fc5{color:transparent;}
.fc3{color:rgb(0,79,136);}
.fc4{color:rgb(31,73,125);}
.fc1{color:rgb(192,0,0);}
.fc8{color:rgb(38,38,38);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:39.600000px;}
.fs9{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fsb{font-size:60.150000px;}
.fs0{font-size:66.000000px;}
.fsc{font-size:66.150000px;}
.fs7{font-size:69.600000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:81.600000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y5{bottom:12.337500px;}
.y3c{bottom:14.115000px;}
.y3b{bottom:32.100000px;}
.yf7{bottom:34.050000px;}
.y4{bottom:46.800000px;}
.y3a{bottom:51.600000px;}
.yf5{bottom:53.850000px;}
.y1{bottom:56.437500px;}
.y39{bottom:66.300000px;}
.yf4{bottom:73.650000px;}
.y3e{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y38{bottom:83.445000px;}
.yf3{bottom:93.450000px;}
.y37{bottom:100.845000px;}
.y9c{bottom:111.637500px;}
.y36{bottom:117.945000px;}
.y75{bottom:120.037500px;}
.y28{bottom:120.337500px;}
.yd3{bottom:120.637500px;}
.y9b{bottom:126.037500px;}
.y35{bottom:135.345000px;}
.yd2{bottom:138.037500px;}
.y9a{bottom:143.737500px;}
.y27{bottom:147.637500px;}
.y74{bottom:149.137500px;}
.y34{bottom:152.445000px;}
.yd1{bottom:155.730000px;}
.y99{bottom:163.245000px;}
.y26{bottom:165.630000px;}
.y73{bottom:166.545000px;}
.y33{bottom:169.845000px;}
.yd0{bottom:175.830000px;}
.y98{bottom:177.975000px;}
.y72{bottom:183.975000px;}
.y32{bottom:186.945000px;}
.y25{bottom:191.475000px;}
.ycf{bottom:193.275000px;}
.y97{bottom:195.075000px;}
.y31{bottom:204.345000px;}
.y24{bottom:209.175000px;}
.yce{bottom:210.375000px;}
.y96{bottom:212.475000px;}
.y71{bottom:215.475000px;}
.y30{bottom:221.445000px;}
.ycd{bottom:228.075000px;}
.y95{bottom:228.975000px;}
.y23{bottom:235.275000px;}
.y2f{bottom:238.845000px;}
.y94{bottom:243.375000px;}
.ycc{bottom:247.575000px;}
.y22{bottom:252.675000px;}
.y70{bottom:255.075000px;}
.y2e{bottom:255.975000px;}
.y93{bottom:260.775000px;}
.ycb{bottom:262.275000px;}
.y21{bottom:270.075000px;}
.y2d{bottom:273.390000px;}
.y6f{bottom:274.875000px;}
.y92{bottom:278.475000px;}
.yca{bottom:279.375000px;}
.y20{bottom:287.175000px;}
.y2c{bottom:290.490000px;}
.yc9{bottom:296.775000px;}
.y91{bottom:297.975000px;}
.y1f{bottom:304.875000px;}
.y6e{bottom:306.675000px;}
.y2b{bottom:307.875000px;}
.y90{bottom:312.375000px;}
.yc8{bottom:313.875000px;}
.y1e{bottom:324.075000px;}
.yf1{bottom:324.975000px;}
.y2a{bottom:325.590000px;}
.y6d{bottom:326.775000px;}
.y8f{bottom:329.775000px;}
.yc7{bottom:331.575000px;}
.y1d{bottom:344.775000px;}
.yf0{bottom:345.720000px;}
.y6c{bottom:346.620000px;}
.y8e{bottom:346.920000px;}
.yc6{bottom:352.020000px;}
.y8d{bottom:364.320000px;}
.y6b{bottom:366.420000px;}
.yc5{bottom:369.120000px;}
.y8c{bottom:381.405000px;}
.y6a{bottom:386.220000px;}
.yc4{bottom:386.505000px;}
.yef{bottom:387.120000px;}
.y8b{bottom:398.820000px;}
.yc3{bottom:403.620000px;}
.y69{bottom:406.005000px;}
.y8a{bottom:415.920000px;}
.yc2{bottom:421.005000px;}
.y68{bottom:426.420000px;}
.y29{bottom:430.605000px;}
.y89{bottom:433.320000px;}
.yc1{bottom:438.120000px;}
.y67{bottom:444.720000px;}
.y88{bottom:450.420000px;}
.yc0{bottom:455.820000px;}
.y66{bottom:459.120000px;}
.y87{bottom:467.820000px;}
.ybf{bottom:475.320000px;}
.y65{bottom:476.505000px;}
.yf2{bottom:479.700000px;}
.y86{bottom:484.905000px;}
.ybe{bottom:490.005000px;}
.y64{bottom:493.620000px;}
.yf8{bottom:493.920000px;}
.y85{bottom:502.320000px;}
.ybd{bottom:507.120000px;}
.y63{bottom:511.005000px;}
.yf6{bottom:513.750000px;}
.y84{bottom:516.750000px;}
.y83{bottom:523.050000px;}
.ybc{bottom:524.550000px;}
.y62{bottom:528.150000px;}
.y82{bottom:540.150000px;}
.ybb{bottom:541.650000px;}
.y61{bottom:545.550000px;}
.y81{bottom:557.550000px;}
.yba{bottom:559.350000px;}
.y60{bottom:562.650000px;}
.y80{bottom:576.450000px;}
.y5f{bottom:577.350000px;}
.y5e{bottom:583.350000px;}
.y7f{bottom:593.550000px;}
.yb9{bottom:594.450000px;}
.y5d{bottom:599.850000px;}
.y7e{bottom:610.950000px;}
.y5c{bottom:614.550000px;}
.yb8{bottom:619.650000px;}
.y7d{bottom:628.050000px;}
.y5b{bottom:631.650000px;}
.yb7{bottom:638.550000px;}
.y7c{bottom:645.750000px;}
.yee{bottom:648.150000px;}
.y5a{bottom:649.050000px;}
.yb6{bottom:657.450000px;}
.y7b{bottom:664.350000px;}
.y59{bottom:666.150000px;}
.yed{bottom:668.850000px;}
.yb5{bottom:676.650000px;}
.y7a{bottom:681.795000px;}
.y58{bottom:683.595000px;}
.yec{bottom:689.595000px;}
.yb4{bottom:695.295000px;}
.y79{bottom:698.895000px;}
.y57{bottom:700.695000px;}
.yeb{bottom:710.295000px;}
.y78{bottom:716.280000px;}
.y56{bottom:718.095000px;}
.yb3{bottom:727.395000px;}
.yea{bottom:730.995000px;}
.y77{bottom:733.380000px;}
.y55{bottom:735.195000px;}
.yb2{bottom:744.780000px;}
.y76{bottom:747.195000px;}
.ye9{bottom:751.695000px;}
.y54{bottom:752.580000px;}
.yb1{bottom:762.195000px;}
.y53{bottom:769.695000px;}
.ye8{bottom:772.380000px;}
.yb0{bottom:780.195000px;}
.y52{bottom:787.080000px;}
.ye7{bottom:793.080000px;}
.yaf{bottom:794.580000px;}
.y51{bottom:804.195000px;}
.yae{bottom:813.195000px;}
.ye6{bottom:813.495000px;}
.y1c{bottom:814.080000px;}
.y50{bottom:821.895000px;}
.ye5{bottom:830.580000px;}
.yad{bottom:831.495000px;}
.y1b{bottom:834.495000px;}
.ye4{bottom:847.995000px;}
.yac{bottom:849.825000px;}
.y1a{bottom:854.325000px;}
.y4f{bottom:857.025000px;}
.ye3{bottom:865.125000px;}
.yab{bottom:868.125000px;}
.y19{bottom:872.625000px;}
.y4e{bottom:881.625000px;}
.ye2{bottom:882.525000px;}
.yaa{bottom:886.425000px;}
.y18{bottom:896.925000px;}
.y4d{bottom:899.325000px;}
.ye1{bottom:899.625000px;}
.ya9{bottom:904.725000px;}
.y17{bottom:914.325000px;}
.y4c{bottom:916.725000px;}
.ye0{bottom:917.025000px;}
.ya8{bottom:923.625000px;}
.y16{bottom:931.725000px;}
.ydf{bottom:934.125000px;}
.y4b{bottom:934.725000px;}
.ya7{bottom:943.125000px;}
.y15{bottom:948.825000px;}
.y4a{bottom:949.125000px;}
.yde{bottom:951.525000px;}
.ya6{bottom:957.525000px;}
.y14{bottom:966.225000px;}
.y49{bottom:966.525000px;}
.ydd{bottom:968.625000px;}
.ya5{bottom:975.825000px;}
.y13{bottom:980.925000px;}
.y48{bottom:983.625000px;}
.ydc{bottom:986.025000px;}
.ya4{bottom:994.125000px;}
.y47{bottom:1001.025000px;}
.y12{bottom:1001.325000px;}
.ydb{bottom:1003.125000px;}
.ya3{bottom:1013.025000px;}
.y46{bottom:1017.570000px;}
.yda{bottom:1020.570000px;}
.y11{bottom:1021.170000px;}
.y45{bottom:1031.955000px;}
.ya2{bottom:1032.570000px;}
.yd9{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.ya1{bottom:1046.955000px;}
.y44{bottom:1049.370000px;}
.yd8{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.ya0{bottom:1065.570000px;}
.y43{bottom:1066.455000px;}
.yb{bottom:1068.255000px;}
.yd7{bottom:1072.170000px;}
.y9f{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.y42{bottom:1084.755000px;}
.yd6{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y9e{bottom:1100.955000px;}
.y41{bottom:1102.170000px;}
.yd5{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y9d{bottom:1119.255000px;}
.y40{bottom:1120.455000px;}
.yd4{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y3f{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3d{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.hd{height:27.650391px;}
.h18{height:33.515625px;}
.h7{height:33.867188px;}
.h15{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.he{height:38.100586px;}
.h11{height:41.894531px;}
.h20{height:41.999268px;}
.h4{height:42.333984px;}
.h17{height:43.681641px;}
.h16{height:44.507812px;}
.h1c{height:46.083984px;}
.h10{height:46.567383px;}
.hb{height:49.107422px;}
.hc{height:49.250391px;}
.h14{height:49.453125px;}
.h1d{height:50.273438px;}
.h6{height:50.800781px;}
.h13{height:51.996094px;}
.h19{height:53.573789px;}
.h1a{height:53.633789px;}
.hf{height:59.343750px;}
.h1{height:65.645508px;}
.h1f{height:65.794702px;}
.h1b{height:77.172126px;}
.h2{height:97.200000px;}
.h1e{height:107.700000px;}
.h12{height:342.375000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:247.875000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w8{width:734.100000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.xd{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.x16{left:83.400000px;}
.x17{left:94.237487px;}
.xf{left:108.037487px;}
.x14{left:126.937487px;}
.x10{left:135.037487px;}
.x15{left:139.237487px;}
.x9{left:153.629987px;}
.xb{left:241.582500px;}
.x11{left:245.474987px;}
.x12{left:257.174987px;}
.x18{left:310.920000px;}
.x6{left:446.249987px;}
.xc{left:564.495000px;}
.xe{left:592.979987px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.x13{left:793.169987px;}
.xa{left:812.369987px;}
@media print{
.v4{vertical-align:-21.333333pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:21.280000pt;}
.ls19{letter-spacing:-0.842667pt;}
.ls1d{letter-spacing:-0.560000pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.490667pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:-0.309333pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.069333pt;}
.ls11{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.309333pt;}
.ls3{letter-spacing:0.341333pt;}
.ls15{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.533333pt;}
.lsd{letter-spacing:5.866667pt;}
.ls14{letter-spacing:13.973333pt;}
.ls18{letter-spacing:14.133333pt;}
.ls16{letter-spacing:16.533333pt;}
.ls17{letter-spacing:33.553067pt;}
.lsb{letter-spacing:40.640000pt;}
.ls9{letter-spacing:56.640000pt;}
.ws9{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws10{word-spacing:-14.976000pt;}
.ws13{word-spacing:-14.890667pt;}
.ws4{word-spacing:-14.666667pt;}
.ws11{word-spacing:-14.357333pt;}
.ws12{word-spacing:-14.133333pt;}
.wsf{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.514667pt;}
.wsa{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws6{word-spacing:-13.226667pt;}
.wsb{word-spacing:-13.120000pt;}
.ws3{word-spacing:-12.853333pt;}
.ws14{word-spacing:-12.773333pt;}
.ws8{word-spacing:-11.466667pt;}
.wsd{word-spacing:-9.824000pt;}
.wse{word-spacing:-9.333333pt;}
.wsc{word-spacing:-8.842667pt;}
.ws2{word-spacing:-8.800000pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-1.926400pt;}
._0{margin-left:-0.938667pt;}
._1{width:0.954667pt;}
._6{width:2.722133pt;}
._f{width:3.730133pt;}
._14{width:5.102933pt;}
._8{width:6.026667pt;}
._9{width:7.424000pt;}
._16{width:8.368000pt;}
._10{width:9.866667pt;}
._11{width:10.956800pt;}
._13{width:12.320000pt;}
._1a{width:13.612800pt;}
._12{width:14.858667pt;}
._d{width:16.358400pt;}
._e{width:17.850667pt;}
._c{width:19.477333pt;}
._15{width:20.480000pt;}
._19{width:22.203733pt;}
._17{width:26.891733pt;}
._18{width:27.786667pt;}
._b{width:29.525333pt;}
._a{width:31.306667pt;}
._1c{width:33.047467pt;}
._1b{width:34.912000pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:35.200000pt;}
.fs9{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fsb{font-size:53.466667pt;}
.fs0{font-size:58.666667pt;}
.fsc{font-size:58.800000pt;}
.fs7{font-size:61.866667pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:72.533333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y5{bottom:10.966667pt;}
.y3c{bottom:12.546667pt;}
.y3b{bottom:28.533333pt;}
.yf7{bottom:30.266667pt;}
.y4{bottom:41.600000pt;}
.y3a{bottom:45.866667pt;}
.yf5{bottom:47.866667pt;}
.y1{bottom:50.166667pt;}
.y39{bottom:58.933333pt;}
.yf4{bottom:65.466667pt;}
.y3e{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y38{bottom:74.173333pt;}
.yf3{bottom:83.066667pt;}
.y37{bottom:89.640000pt;}
.y9c{bottom:99.233333pt;}
.y36{bottom:104.840000pt;}
.y75{bottom:106.700000pt;}
.y28{bottom:106.966667pt;}
.yd3{bottom:107.233333pt;}
.y9b{bottom:112.033333pt;}
.y35{bottom:120.306667pt;}
.yd2{bottom:122.700000pt;}
.y9a{bottom:127.766667pt;}
.y27{bottom:131.233333pt;}
.y74{bottom:132.566667pt;}
.y34{bottom:135.506667pt;}
.yd1{bottom:138.426667pt;}
.y99{bottom:145.106667pt;}
.y26{bottom:147.226667pt;}
.y73{bottom:148.040000pt;}
.y33{bottom:150.973333pt;}
.yd0{bottom:156.293333pt;}
.y98{bottom:158.200000pt;}
.y72{bottom:163.533333pt;}
.y32{bottom:166.173333pt;}
.y25{bottom:170.200000pt;}
.ycf{bottom:171.800000pt;}
.y97{bottom:173.400000pt;}
.y31{bottom:181.640000pt;}
.y24{bottom:185.933333pt;}
.yce{bottom:187.000000pt;}
.y96{bottom:188.866667pt;}
.y71{bottom:191.533333pt;}
.y30{bottom:196.840000pt;}
.ycd{bottom:202.733333pt;}
.y95{bottom:203.533333pt;}
.y23{bottom:209.133333pt;}
.y2f{bottom:212.306667pt;}
.y94{bottom:216.333333pt;}
.ycc{bottom:220.066667pt;}
.y22{bottom:224.600000pt;}
.y70{bottom:226.733333pt;}
.y2e{bottom:227.533333pt;}
.y93{bottom:231.800000pt;}
.ycb{bottom:233.133333pt;}
.y21{bottom:240.066667pt;}
.y2d{bottom:243.013333pt;}
.y6f{bottom:244.333333pt;}
.y92{bottom:247.533333pt;}
.yca{bottom:248.333333pt;}
.y20{bottom:255.266667pt;}
.y2c{bottom:258.213333pt;}
.yc9{bottom:263.800000pt;}
.y91{bottom:264.866667pt;}
.y1f{bottom:271.000000pt;}
.y6e{bottom:272.600000pt;}
.y2b{bottom:273.666667pt;}
.y90{bottom:277.666667pt;}
.yc8{bottom:279.000000pt;}
.y1e{bottom:288.066667pt;}
.yf1{bottom:288.866667pt;}
.y2a{bottom:289.413333pt;}
.y6d{bottom:290.466667pt;}
.y8f{bottom:293.133333pt;}
.yc7{bottom:294.733333pt;}
.y1d{bottom:306.466667pt;}
.yf0{bottom:307.306667pt;}
.y6c{bottom:308.106667pt;}
.y8e{bottom:308.373333pt;}
.yc6{bottom:312.906667pt;}
.y8d{bottom:323.840000pt;}
.y6b{bottom:325.706667pt;}
.yc5{bottom:328.106667pt;}
.y8c{bottom:339.026667pt;}
.y6a{bottom:343.306667pt;}
.yc4{bottom:343.560000pt;}
.yef{bottom:344.106667pt;}
.y8b{bottom:354.506667pt;}
.yc3{bottom:358.773333pt;}
.y69{bottom:360.893333pt;}
.y8a{bottom:369.706667pt;}
.yc2{bottom:374.226667pt;}
.y68{bottom:379.040000pt;}
.y29{bottom:382.760000pt;}
.y89{bottom:385.173333pt;}
.yc1{bottom:389.440000pt;}
.y67{bottom:395.306667pt;}
.y88{bottom:400.373333pt;}
.yc0{bottom:405.173333pt;}
.y66{bottom:408.106667pt;}
.y87{bottom:415.840000pt;}
.ybf{bottom:422.506667pt;}
.y65{bottom:423.560000pt;}
.yf2{bottom:426.400000pt;}
.y86{bottom:431.026667pt;}
.ybe{bottom:435.560000pt;}
.y64{bottom:438.773333pt;}
.yf8{bottom:439.040000pt;}
.y85{bottom:446.506667pt;}
.ybd{bottom:450.773333pt;}
.y63{bottom:454.226667pt;}
.yf6{bottom:456.666667pt;}
.y84{bottom:459.333333pt;}
.y83{bottom:464.933333pt;}
.ybc{bottom:466.266667pt;}
.y62{bottom:469.466667pt;}
.y82{bottom:480.133333pt;}
.ybb{bottom:481.466667pt;}
.y61{bottom:484.933333pt;}
.y81{bottom:495.600000pt;}
.yba{bottom:497.200000pt;}
.y60{bottom:500.133333pt;}
.y80{bottom:512.400000pt;}
.y5f{bottom:513.200000pt;}
.y5e{bottom:518.533333pt;}
.y7f{bottom:527.600000pt;}
.yb9{bottom:528.400000pt;}
.y5d{bottom:533.200000pt;}
.y7e{bottom:543.066667pt;}
.y5c{bottom:546.266667pt;}
.yb8{bottom:550.800000pt;}
.y7d{bottom:558.266667pt;}
.y5b{bottom:561.466667pt;}
.yb7{bottom:567.600000pt;}
.y7c{bottom:574.000000pt;}
.yee{bottom:576.133333pt;}
.y5a{bottom:576.933333pt;}
.yb6{bottom:584.400000pt;}
.y7b{bottom:590.533333pt;}
.y59{bottom:592.133333pt;}
.yed{bottom:594.533333pt;}
.yb5{bottom:601.466667pt;}
.y7a{bottom:606.040000pt;}
.y58{bottom:607.640000pt;}
.yec{bottom:612.973333pt;}
.yb4{bottom:618.040000pt;}
.y79{bottom:621.240000pt;}
.y57{bottom:622.840000pt;}
.yeb{bottom:631.373333pt;}
.y78{bottom:636.693333pt;}
.y56{bottom:638.306667pt;}
.yb3{bottom:646.573333pt;}
.yea{bottom:649.773333pt;}
.y77{bottom:651.893333pt;}
.y55{bottom:653.506667pt;}
.yb2{bottom:662.026667pt;}
.y76{bottom:664.173333pt;}
.ye9{bottom:668.173333pt;}
.y54{bottom:668.960000pt;}
.yb1{bottom:677.506667pt;}
.y53{bottom:684.173333pt;}
.ye8{bottom:686.560000pt;}
.yb0{bottom:693.506667pt;}
.y52{bottom:699.626667pt;}
.ye7{bottom:704.960000pt;}
.yaf{bottom:706.293333pt;}
.y51{bottom:714.840000pt;}
.yae{bottom:722.840000pt;}
.ye6{bottom:723.106667pt;}
.y1c{bottom:723.626667pt;}
.y50{bottom:730.573333pt;}
.ye5{bottom:738.293333pt;}
.yad{bottom:739.106667pt;}
.y1b{bottom:741.773333pt;}
.ye4{bottom:753.773333pt;}
.yac{bottom:755.400000pt;}
.y1a{bottom:759.400000pt;}
.y4f{bottom:761.800000pt;}
.ye3{bottom:769.000000pt;}
.yab{bottom:771.666667pt;}
.y19{bottom:775.666667pt;}
.y4e{bottom:783.666667pt;}
.ye2{bottom:784.466667pt;}
.yaa{bottom:787.933333pt;}
.y18{bottom:797.266667pt;}
.y4d{bottom:799.400000pt;}
.ye1{bottom:799.666667pt;}
.ya9{bottom:804.200000pt;}
.y17{bottom:812.733333pt;}
.y4c{bottom:814.866667pt;}
.ye0{bottom:815.133333pt;}
.ya8{bottom:821.000000pt;}
.y16{bottom:828.200000pt;}
.ydf{bottom:830.333333pt;}
.y4b{bottom:830.866667pt;}
.ya7{bottom:838.333333pt;}
.y15{bottom:843.400000pt;}
.y4a{bottom:843.666667pt;}
.yde{bottom:845.800000pt;}
.ya6{bottom:851.133333pt;}
.y14{bottom:858.866667pt;}
.y49{bottom:859.133333pt;}
.ydd{bottom:861.000000pt;}
.ya5{bottom:867.400000pt;}
.y13{bottom:871.933333pt;}
.y48{bottom:874.333333pt;}
.ydc{bottom:876.466667pt;}
.ya4{bottom:883.666667pt;}
.y47{bottom:889.800000pt;}
.y12{bottom:890.066667pt;}
.ydb{bottom:891.666667pt;}
.ya3{bottom:900.466667pt;}
.y46{bottom:904.506667pt;}
.yda{bottom:907.173333pt;}
.y11{bottom:907.706667pt;}
.y45{bottom:917.293333pt;}
.ya2{bottom:917.840000pt;}
.yd9{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.ya1{bottom:930.626667pt;}
.y44{bottom:932.773333pt;}
.yd8{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.ya0{bottom:947.173333pt;}
.y43{bottom:947.960000pt;}
.yb{bottom:949.560000pt;}
.yd7{bottom:953.040000pt;}
.y9f{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.y42{bottom:964.226667pt;}
.yd6{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y9e{bottom:978.626667pt;}
.y41{bottom:979.706667pt;}
.yd5{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y9d{bottom:994.893333pt;}
.y40{bottom:995.960000pt;}
.yd4{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y3f{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3d{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.hd{height:24.578125pt;}
.h18{height:29.791667pt;}
.h7{height:30.104167pt;}
.h15{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.he{height:33.867188pt;}
.h11{height:37.239583pt;}
.h20{height:37.332682pt;}
.h4{height:37.630208pt;}
.h17{height:38.828125pt;}
.h16{height:39.562500pt;}
.h1c{height:40.963542pt;}
.h10{height:41.393229pt;}
.hb{height:43.651042pt;}
.hc{height:43.778125pt;}
.h14{height:43.958333pt;}
.h1d{height:44.687500pt;}
.h6{height:45.156250pt;}
.h13{height:46.218750pt;}
.h19{height:47.621146pt;}
.h1a{height:47.674479pt;}
.hf{height:52.750000pt;}
.h1{height:58.351562pt;}
.h1f{height:58.484180pt;}
.h1b{height:68.597446pt;}
.h2{height:86.400000pt;}
.h1e{height:95.733333pt;}
.h12{height:304.333333pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:220.333333pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w8{width:652.533333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.xd{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.x16{left:74.133333pt;}
.x17{left:83.766655pt;}
.xf{left:96.033322pt;}
.x14{left:112.833322pt;}
.x10{left:120.033322pt;}
.x15{left:123.766655pt;}
.x9{left:136.559988pt;}
.xb{left:214.740000pt;}
.x11{left:218.199988pt;}
.x12{left:228.599988pt;}
.x18{left:276.373333pt;}
.x6{left:396.666655pt;}
.xc{left:501.773333pt;}
.xe{left:527.093322pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.x13{left:705.039988pt;}
.xa{left:722.106655pt;}
}




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