
    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_aa2f51c03e0b0be10f015173.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_53368f7e943e7b443a831ea6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b256e961a211b45673d7a790.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_386dd50c5fb5b8973c54d585.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_6ca070eef69136e4ff3e8538.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5f5c4489c5486bfbd1c094eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_aad9dfbfda635a7250ce50cf.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls4{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.900000px;}
.ls5{letter-spacing:8.820000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.ws4{word-spacing:-12.060000px;}
.ws0{word-spacing:0.000000px;}
._17{margin-left:-2.246880px;}
._1{margin-left:-1.053360px;}
._0{width:1.149120px;}
._2{width:2.218800px;}
._11{width:3.685200px;}
._8{width:5.085360px;}
._e{width:6.218640px;}
._1a{width:7.234080px;}
._4{width:9.072000px;}
._5{width:10.814880px;}
._18{width:12.216000px;}
._10{width:13.245360px;}
._f{width:14.304000px;}
._c{width:15.600000px;}
._d{width:16.605360px;}
._7{width:19.296000px;}
._19{width:20.810880px;}
._1b{width:22.077120px;}
._13{width:23.157360px;}
._9{width:24.912000px;}
._a{width:26.640000px;}
._b{width:28.224000px;}
._3{width:30.816000px;}
._15{width:33.120000px;}
._16{width:34.488000px;}
._1c{width:35.856000px;}
._6{width:47.304000px;}
._20{width:56.232000px;}
._1d{width:58.032000px;}
._1e{width:59.760000px;}
._14{width:150.912000px;}
._1f{width:177.408000px;}
._12{width:189.936000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fs6{font-size:5.760000px;}
.fs5{font-size:23.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.yb0{bottom:-6.840000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:0.180000px;}
.y5e{bottom:1.620000px;}
.yde{bottom:2.700000px;}
.y69{bottom:2.880000px;}
.yc7{bottom:3.240000px;}
.ya1{bottom:3.405000px;}
.y6b{bottom:3.420000px;}
.y57{bottom:3.960000px;}
.y8{bottom:4.320000px;}
.y94{bottom:8.820000px;}
.y1e{bottom:14.220000px;}
.y8d{bottom:14.580000px;}
.y85{bottom:14.760000px;}
.y90{bottom:16.200000px;}
.y52{bottom:17.640000px;}
.yb6{bottom:19.440000px;}
.yb3{bottom:19.800000px;}
.yca{bottom:20.865000px;}
.y9f{bottom:21.765000px;}
.yb7{bottom:21.780000px;}
.y65{bottom:23.580000px;}
.yc6{bottom:25.410000px;}
.y34{bottom:32.220000px;}
.y51{bottom:32.580000px;}
.y4f{bottom:32.610000px;}
.y58{bottom:39.960000px;}
.y56{bottom:40.140000px;}
.y1d{bottom:41.430000px;}
.y9c{bottom:44.100000px;}
.y61{bottom:45.720000px;}
.y43{bottom:45.750000px;}
.y7{bottom:45.765000px;}
.yc1{bottom:49.530000px;}
.yae{bottom:50.040000px;}
.y93{bottom:50.220000px;}
.ycc{bottom:50.805000px;}
.y64{bottom:54.570000px;}
.y5d{bottom:55.080000px;}
.yfb{bottom:56.340000px;}
.y67{bottom:56.925000px;}
.yb2{bottom:66.090000px;}
.y60{bottom:66.420000px;}
.y8c{bottom:66.825000px;}
.y1c{bottom:76.710000px;}
.y84{bottom:76.890000px;}
.y9b{bottom:79.920000px;}
.y33{bottom:80.490000px;}
.yad{bottom:81.000000px;}
.y4e{bottom:84.810000px;}
.y63{bottom:85.710000px;}
.y5c{bottom:86.040000px;}
.yfa{bottom:87.480000px;}
.y9d{bottom:97.770000px;}
.y8b{bottom:97.785000px;}
.y1b{bottom:107.850000px;}
.y1f{bottom:109.620000px;}
.yac{bottom:112.140000px;}
.y4d{bottom:115.770000px;}
.ya2{bottom:116.280000px;}
.y95{bottom:116.640000px;}
.y62{bottom:117.360000px;}
.yf9{bottom:118.440000px;}
.y9{bottom:122.760000px;}
.y6c{bottom:126.000000px;}
.y35{bottom:128.340000px;}
.y8a{bottom:128.745000px;}
.y83{bottom:128.910000px;}
.y3a{bottom:130.500000px;}
.yce{bottom:134.640000px;}
.ydc{bottom:138.060000px;}
.y5b{bottom:138.105000px;}
.y1a{bottom:138.990000px;}
.yab{bottom:143.100000px;}
.y4c{bottom:146.730000px;}
.yb8{bottom:149.580000px;}
.yef{bottom:150.300000px;}
.y82{bottom:159.870000px;}
.ydb{bottom:161.490000px;}
.ye0{bottom:166.890000px;}
.y5a{bottom:169.245000px;}
.yf8{bottom:170.640000px;}
.yaa{bottom:174.270000px;}
.y89{bottom:180.945000px;}
.y19{bottom:188.490000px;}
.y81{bottom:191.010000px;}
.yee{bottom:192.090000px;}
.y4b{bottom:198.930000px;}
.y59{bottom:200.205000px;}
.yf7{bottom:201.645000px;}
.ya9{bottom:205.230000px;}
.y88{bottom:211.905000px;}
.yc5{bottom:215.670000px;}
.y18{bottom:219.450000px;}
.y5f{bottom:223.950000px;}
.y4a{bottom:229.890000px;}
.yf6{bottom:232.605000px;}
.yed{bottom:233.850000px;}
.ya8{bottom:236.370000px;}
.yc4{bottom:239.070000px;}
.y80{bottom:243.030000px;}
.yc9{bottom:245.745000px;}
.y17{bottom:250.410000px;}
.yda{bottom:254.910000px;}
.y9a{bottom:255.270000px;}
.y49{bottom:261.030000px;}
.y87{bottom:263.925000px;}
.y7f{bottom:273.990000px;}
.yec{bottom:275.430000px;}
.yf5{bottom:284.805000px;}
.y9e{bottom:301.725000px;}
.y16{bottom:302.655000px;}
.yd9{bottom:306.975000px;}
.yb1{bottom:311.295000px;}
.y53{bottom:311.430000px;}
.y48{bottom:313.095000px;}
.yf4{bottom:315.765000px;}
.yeb{bottom:317.190000px;}
.y7e{bottom:326.235000px;}
.y15{bottom:333.615000px;}
.yd8{bottom:338.115000px;}
.ya0{bottom:341.685000px;}
.y32{bottom:343.335000px;}
.y47{bottom:344.055000px;}
.yf3{bottom:346.905000px;}
.y7d{bottom:357.195000px;}
.yea{bottom:358.950000px;}
.yd7{bottom:369.075000px;}
.y31{bottom:374.295000px;}
.yf2{bottom:384.705000px;}
.y14{bottom:385.635000px;}
.y46{bottom:396.255000px;}
.yd6{bottom:400.215000px;}
.ye9{bottom:400.530000px;}
.yc3{bottom:406.335000px;}
.y7c{bottom:409.215000px;}
.yf1{bottom:411.165000px;}
.y13{bottom:416.775000px;}
.y30{bottom:426.495000px;}
.y45{bottom:427.215000px;}
.yd5{bottom:431.175000px;}
.y7b{bottom:440.355000px;}
.ye8{bottom:442.335000px;}
.y12{bottom:447.735000px;}
.y2f{bottom:457.455000px;}
.y44{bottom:458.355000px;}
.yaf{bottom:468.435000px;}
.y7a{bottom:471.315000px;}
.y54{bottom:477.975000px;}
.yd4{bottom:483.195000px;}
.ye7{bottom:484.095000px;}
.ya7{bottom:491.835000px;}
.yb5{bottom:498.495000px;}
.y11{bottom:499.755000px;}
.y99{bottom:502.635000px;}
.y2e{bottom:509.655000px;}
.yd3{bottom:514.335000px;}
.y79{bottom:523.515000px;}
.ye6{bottom:525.675000px;}
.y10{bottom:530.925000px;}
.y98{bottom:533.625000px;}
.y2d{bottom:540.645000px;}
.yd2{bottom:545.325000px;}
.y55{bottom:552.495000px;}
.y78{bottom:554.505000px;}
.yf{bottom:561.885000px;}
.y97{bottom:564.765000px;}
.ye5{bottom:567.435000px;}
.y2c{bottom:571.605000px;}
.y41{bottom:576.285000px;}
.ye{bottom:593.025000px;}
.y96{bottom:595.725000px;}
.yc2{bottom:596.595000px;}
.yd1{bottom:597.525000px;}
.y68{bottom:597.855000px;}
.y6a{bottom:598.935000px;}
.y77{bottom:606.525000px;}
.ye4{bottom:609.195000px;}
.y42{bottom:609.735000px;}
.yc0{bottom:619.995000px;}
.y2b{bottom:623.805000px;}
.yc8{bottom:626.655000px;}
.yd0{bottom:628.485000px;}
.y40{bottom:632.625000px;}
.y76{bottom:637.485000px;}
.yd{bottom:645.045000px;}
.ye3{bottom:646.815000px;}
.y2a{bottom:654.765000px;}
.ycf{bottom:659.445000px;}
.y3f{bottom:663.765000px;}
.ye2{bottom:673.125000px;}
.yc{bottom:676.185000px;}
.y75{bottom:689.685000px;}
.y3e{bottom:694.725000px;}
.ya6{bottom:699.585000px;}
.y29{bottom:706.785000px;}
.yb{bottom:707.145000px;}
.ye1{bottom:712.185000px;}
.y74{bottom:720.645000px;}
.yfd{bottom:721.185000px;}
.yf0{bottom:724.425000px;}
.y3d{bottom:725.865000px;}
.y92{bottom:733.245000px;}
.y28{bottom:737.925000px;}
.ya{bottom:738.285000px;}
.ya5{bottom:750.705000px;}
.y3c{bottom:756.825000px;}
.y27{bottom:768.885000px;}
.y73{bottom:772.710000px;}
.ybf{bottom:794.670000px;}
.y26{bottom:800.070000px;}
.y72{bottom:803.850000px;}
.y3b{bottom:808.710000px;}
.y50{bottom:808.845000px;}
.y91{bottom:812.085000px;}
.y8f{bottom:815.505000px;}
.ybe{bottom:825.630000px;}
.y25{bottom:831.030000px;}
.y71{bottom:834.810000px;}
.ycd{bottom:834.945000px;}
.y66{bottom:848.085000px;}
.ybd{bottom:856.590000px;}
.ycb{bottom:858.345000px;}
.y24{bottom:862.170000px;}
.y8e{bottom:862.665000px;}
.ydf{bottom:865.005000px;}
.y86{bottom:866.085000px;}
.y39{bottom:867.210000px;}
.y6{bottom:881.925000px;}
.y70{bottom:887.010000px;}
.ybc{bottom:887.730000px;}
.y23{bottom:893.130000px;}
.ya4{bottom:908.430000px;}
.y104{bottom:914.190000px;}
.ydd{bottom:914.550000px;}
.yb4{bottom:914.910000px;}
.y6f{bottom:917.970000px;}
.ybb{bottom:918.690000px;}
.y38{bottom:923.550000px;}
.y22{bottom:924.090000px;}
.y6e{bottom:948.930000px;}
.yba{bottom:949.830000px;}
.y103{bottom:952.890000px;}
.y37{bottom:954.510000px;}
.y5{bottom:967.110000px;}
.y102{bottom:973.590000px;}
.y21{bottom:976.290000px;}
.yb9{bottom:980.790000px;}
.y6d{bottom:1000.950000px;}
.y36{bottom:1006.530000px;}
.y4{bottom:1008.870000px;}
.y101{bottom:1015.170000px;}
.ya3{bottom:1017.150000px;}
.y20{bottom:1027.950000px;}
.y3{bottom:1050.630000px;}
.y100{bottom:1056.930000px;}
.y2{bottom:1092.390000px;}
.yff{bottom:1098.690000px;}
.y1{bottom:1134.330000px;}
.yfe{bottom:1140.270000px;}
.h1a{height:2.581875px;}
.h32{height:5.115938px;}
.h25{height:18.900000px;}
.h31{height:21.103242px;}
.h1b{height:42.660000px;}
.h11{height:45.992812px;}
.he{height:49.992188px;}
.h9{height:52.417969px;}
.h3{height:62.316000px;}
.h4{height:63.949219px;}
.h5{height:64.546875px;}
.h7{height:65.884219px;}
.h1d{height:70.920000px;}
.h28{height:76.366406px;}
.h2d{height:76.486406px;}
.h12{height:82.980000px;}
.h2{height:85.052461px;}
.h13{height:102.096000px;}
.h26{height:174.765000px;}
.h2f{height:175.845000px;}
.h2a{height:176.940000px;}
.h21{height:177.135000px;}
.h16{height:177.150000px;}
.h30{height:178.200000px;}
.h15{height:178.230000px;}
.h23{height:186.660000px;}
.h2e{height:189.000000px;}
.h10{height:228.990000px;}
.h2b{height:275.955000px;}
.h14{height:275.970000px;}
.h20{height:276.135000px;}
.h18{height:280.335000px;}
.h19{height:286.095000px;}
.h24{height:288.030000px;}
.h29{height:288.075000px;}
.h1f{height:327.990000px;}
.hd{height:334.335000px;}
.h1c{height:340.095000px;}
.h33{height:427.755000px;}
.h34{height:433.155000px;}
.hc{height:474.735000px;}
.h1e{height:612.105000px;}
.h6{height:754.665000px;}
.hb{height:825.450000px;}
.hf{height:834.990000px;}
.h27{height:1000.260000px;}
.h2c{height:1015.200000px;}
.h17{height:1020.420000px;}
.ha{height:1026.000000px;}
.h22{height:1033.560000px;}
.h8{height:1044.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:186.675000px;}
.w1a{width:187.755000px;}
.w15{width:189.015000px;}
.w12{width:189.936000px;}
.w9{width:190.110000px;}
.w1d{width:192.090000px;}
.wf{width:192.255000px;}
.w5{width:192.450000px;}
.w1b{width:193.530000px;}
.w18{width:195.690000px;}
.w14{width:196.759500px;}
.w11{width:210.810000px;}
.w10{width:221.610000px;}
.wd{width:251.670000px;}
.w17{width:282.816000px;}
.wa{width:286.755000px;}
.w19{width:286.759500px;}
.wb{width:286.815000px;}
.w13{width:286.950000px;}
.w6{width:289.110000px;}
.w7{width:289.335000px;}
.we{width:294.015000px;}
.w16{width:341.670000px;}
.w1c{width:363.855000px;}
.w4{width:616.065000px;}
.w8{width:619.845000px;}
.w3{width:626.685000px;}
.wc{width:633.525000px;}
.w2{width:640.005000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x23{left:-15.840000px;}
.x0{left:0.000000px;}
.x5{left:1.080000px;}
.x37{left:70.200000px;}
.x31{left:71.820000px;}
.xd{left:74.520000px;}
.x19{left:104.040000px;}
.x32{left:115.786500px;}
.x26{left:117.406500px;}
.x38{left:118.620000px;}
.x1b{left:120.990000px;}
.x10{left:122.760000px;}
.x2e{left:124.740000px;}
.x4{left:126.576000px;}
.x3c{left:127.656000px;}
.x16{left:129.816000px;}
.x8{left:133.236000px;}
.x2d{left:135.534000px;}
.xa{left:136.656000px;}
.xe{left:154.470000px;}
.x14{left:155.565000px;}
.x34{left:167.430000px;}
.x39{left:168.705000px;}
.x17{left:172.470000px;}
.x1c{left:173.745000px;}
.x3b{left:175.890000px;}
.x29{left:178.230000px;}
.x13{left:179.490000px;}
.x1d{left:181.830000px;}
.x27{left:186.328500px;}
.x36{left:187.965000px;}
.x2c{left:189.045000px;}
.x22{left:190.125000px;}
.xc{left:191.370000px;}
.x18{left:193.545000px;}
.x30{left:194.610000px;}
.x1{left:230.790000px;}
.x2a{left:269.319000px;}
.x15{left:276.330000px;}
.xf{left:287.865000px;}
.x1f{left:301.935000px;}
.x25{left:303.015000px;}
.x2f{left:313.239000px;}
.x3{left:327.135000px;}
.xb{left:348.375000px;}
.x12{left:349.635000px;}
.x20{left:357.015000px;}
.x1a{left:426.495000px;}
.x1e{left:427.575000px;}
.x2{left:446.475000px;}
.x24{left:465.189000px;}
.x2b{left:477.105000px;}
.x33{left:478.380000px;}
.x7{left:492.009000px;}
.x35{left:533.445000px;}
.x3a{left:534.720000px;}
.x21{left:569.985000px;}
.x28{left:571.080000px;}
.x11{left:614.994000px;}
.x9{left:625.434000px;}
.x3d{left:632.454000px;}
.x6{left:638.934000px;}
.x3e{left:765.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls5{letter-spacing:7.840000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-1.997227pt;}
._1{margin-left:-0.936320pt;}
._0{width:1.021440pt;}
._2{width:1.972267pt;}
._11{width:3.275733pt;}
._8{width:4.520320pt;}
._e{width:5.527680pt;}
._1a{width:6.430293pt;}
._4{width:8.064000pt;}
._5{width:9.613227pt;}
._18{width:10.858667pt;}
._10{width:11.773653pt;}
._f{width:12.714667pt;}
._c{width:13.866667pt;}
._d{width:14.760320pt;}
._7{width:17.152000pt;}
._19{width:18.498560pt;}
._1b{width:19.624107pt;}
._13{width:20.584320pt;}
._9{width:22.144000pt;}
._a{width:23.680000pt;}
._b{width:25.088000pt;}
._3{width:27.392000pt;}
._15{width:29.440000pt;}
._16{width:30.656000pt;}
._1c{width:31.872000pt;}
._6{width:42.048000pt;}
._20{width:49.984000pt;}
._1d{width:51.584000pt;}
._1e{width:53.120000pt;}
._14{width:134.144000pt;}
._1f{width:157.696000pt;}
._12{width:168.832000pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:5.120000pt;}
.fs5{font-size:21.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.yb0{bottom:-6.080000pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:0.160000pt;}
.y5e{bottom:1.440000pt;}
.yde{bottom:2.400000pt;}
.y69{bottom:2.560000pt;}
.yc7{bottom:2.880000pt;}
.ya1{bottom:3.026667pt;}
.y6b{bottom:3.040000pt;}
.y57{bottom:3.520000pt;}
.y8{bottom:3.840000pt;}
.y94{bottom:7.840000pt;}
.y1e{bottom:12.640000pt;}
.y8d{bottom:12.960000pt;}
.y85{bottom:13.120000pt;}
.y90{bottom:14.400000pt;}
.y52{bottom:15.680000pt;}
.yb6{bottom:17.280000pt;}
.yb3{bottom:17.600000pt;}
.yca{bottom:18.546667pt;}
.y9f{bottom:19.346667pt;}
.yb7{bottom:19.360000pt;}
.y65{bottom:20.960000pt;}
.yc6{bottom:22.586667pt;}
.y34{bottom:28.640000pt;}
.y51{bottom:28.960000pt;}
.y4f{bottom:28.986667pt;}
.y58{bottom:35.520000pt;}
.y56{bottom:35.680000pt;}
.y1d{bottom:36.826667pt;}
.y9c{bottom:39.200000pt;}
.y61{bottom:40.640000pt;}
.y43{bottom:40.666667pt;}
.y7{bottom:40.680000pt;}
.yc1{bottom:44.026667pt;}
.yae{bottom:44.480000pt;}
.y93{bottom:44.640000pt;}
.ycc{bottom:45.160000pt;}
.y64{bottom:48.506667pt;}
.y5d{bottom:48.960000pt;}
.yfb{bottom:50.080000pt;}
.y67{bottom:50.600000pt;}
.yb2{bottom:58.746667pt;}
.y60{bottom:59.040000pt;}
.y8c{bottom:59.400000pt;}
.y1c{bottom:68.186667pt;}
.y84{bottom:68.346667pt;}
.y9b{bottom:71.040000pt;}
.y33{bottom:71.546667pt;}
.yad{bottom:72.000000pt;}
.y4e{bottom:75.386667pt;}
.y63{bottom:76.186667pt;}
.y5c{bottom:76.480000pt;}
.yfa{bottom:77.760000pt;}
.y9d{bottom:86.906667pt;}
.y8b{bottom:86.920000pt;}
.y1b{bottom:95.866667pt;}
.y1f{bottom:97.440000pt;}
.yac{bottom:99.680000pt;}
.y4d{bottom:102.906667pt;}
.ya2{bottom:103.360000pt;}
.y95{bottom:103.680000pt;}
.y62{bottom:104.320000pt;}
.yf9{bottom:105.280000pt;}
.y9{bottom:109.120000pt;}
.y6c{bottom:112.000000pt;}
.y35{bottom:114.080000pt;}
.y8a{bottom:114.440000pt;}
.y83{bottom:114.586667pt;}
.y3a{bottom:116.000000pt;}
.yce{bottom:119.680000pt;}
.ydc{bottom:122.720000pt;}
.y5b{bottom:122.760000pt;}
.y1a{bottom:123.546667pt;}
.yab{bottom:127.200000pt;}
.y4c{bottom:130.426667pt;}
.yb8{bottom:132.960000pt;}
.yef{bottom:133.600000pt;}
.y82{bottom:142.106667pt;}
.ydb{bottom:143.546667pt;}
.ye0{bottom:148.346667pt;}
.y5a{bottom:150.440000pt;}
.yf8{bottom:151.680000pt;}
.yaa{bottom:154.906667pt;}
.y89{bottom:160.840000pt;}
.y19{bottom:167.546667pt;}
.y81{bottom:169.786667pt;}
.yee{bottom:170.746667pt;}
.y4b{bottom:176.826667pt;}
.y59{bottom:177.960000pt;}
.yf7{bottom:179.240000pt;}
.ya9{bottom:182.426667pt;}
.y88{bottom:188.360000pt;}
.yc5{bottom:191.706667pt;}
.y18{bottom:195.066667pt;}
.y5f{bottom:199.066667pt;}
.y4a{bottom:204.346667pt;}
.yf6{bottom:206.760000pt;}
.yed{bottom:207.866667pt;}
.ya8{bottom:210.106667pt;}
.yc4{bottom:212.506667pt;}
.y80{bottom:216.026667pt;}
.yc9{bottom:218.440000pt;}
.y17{bottom:222.586667pt;}
.yda{bottom:226.586667pt;}
.y9a{bottom:226.906667pt;}
.y49{bottom:232.026667pt;}
.y87{bottom:234.600000pt;}
.y7f{bottom:243.546667pt;}
.yec{bottom:244.826667pt;}
.yf5{bottom:253.160000pt;}
.y9e{bottom:268.200000pt;}
.y16{bottom:269.026667pt;}
.yd9{bottom:272.866667pt;}
.yb1{bottom:276.706667pt;}
.y53{bottom:276.826667pt;}
.y48{bottom:278.306667pt;}
.yf4{bottom:280.680000pt;}
.yeb{bottom:281.946667pt;}
.y7e{bottom:289.986667pt;}
.y15{bottom:296.546667pt;}
.yd8{bottom:300.546667pt;}
.ya0{bottom:303.720000pt;}
.y32{bottom:305.186667pt;}
.y47{bottom:305.826667pt;}
.yf3{bottom:308.360000pt;}
.y7d{bottom:317.506667pt;}
.yea{bottom:319.066667pt;}
.yd7{bottom:328.066667pt;}
.y31{bottom:332.706667pt;}
.yf2{bottom:341.960000pt;}
.y14{bottom:342.786667pt;}
.y46{bottom:352.226667pt;}
.yd6{bottom:355.746667pt;}
.ye9{bottom:356.026667pt;}
.yc3{bottom:361.186667pt;}
.y7c{bottom:363.746667pt;}
.yf1{bottom:365.480000pt;}
.y13{bottom:370.466667pt;}
.y30{bottom:379.106667pt;}
.y45{bottom:379.746667pt;}
.yd5{bottom:383.266667pt;}
.y7b{bottom:391.426667pt;}
.ye8{bottom:393.186667pt;}
.y12{bottom:397.986667pt;}
.y2f{bottom:406.626667pt;}
.y44{bottom:407.426667pt;}
.yaf{bottom:416.386667pt;}
.y7a{bottom:418.946667pt;}
.y54{bottom:424.866667pt;}
.yd4{bottom:429.506667pt;}
.ye7{bottom:430.306667pt;}
.ya7{bottom:437.186667pt;}
.yb5{bottom:443.106667pt;}
.y11{bottom:444.226667pt;}
.y99{bottom:446.786667pt;}
.y2e{bottom:453.026667pt;}
.yd3{bottom:457.186667pt;}
.y79{bottom:465.346667pt;}
.ye6{bottom:467.266667pt;}
.y10{bottom:471.933333pt;}
.y98{bottom:474.333333pt;}
.y2d{bottom:480.573333pt;}
.yd2{bottom:484.733333pt;}
.y55{bottom:491.106667pt;}
.y78{bottom:492.893333pt;}
.yf{bottom:499.453333pt;}
.y97{bottom:502.013333pt;}
.ye5{bottom:504.386667pt;}
.y2c{bottom:508.093333pt;}
.y41{bottom:512.253333pt;}
.ye{bottom:527.133333pt;}
.y96{bottom:529.533333pt;}
.yc2{bottom:530.306667pt;}
.yd1{bottom:531.133333pt;}
.y68{bottom:531.426667pt;}
.y6a{bottom:532.386667pt;}
.y77{bottom:539.133333pt;}
.ye4{bottom:541.506667pt;}
.y42{bottom:541.986667pt;}
.yc0{bottom:551.106667pt;}
.y2b{bottom:554.493333pt;}
.yc8{bottom:557.026667pt;}
.yd0{bottom:558.653333pt;}
.y40{bottom:562.333333pt;}
.y76{bottom:566.653333pt;}
.yd{bottom:573.373333pt;}
.ye3{bottom:574.946667pt;}
.y2a{bottom:582.013333pt;}
.ycf{bottom:586.173333pt;}
.y3f{bottom:590.013333pt;}
.ye2{bottom:598.333333pt;}
.yc{bottom:601.053333pt;}
.y75{bottom:613.053333pt;}
.y3e{bottom:617.533333pt;}
.ya6{bottom:621.853333pt;}
.y29{bottom:628.253333pt;}
.yb{bottom:628.573333pt;}
.ye1{bottom:633.053333pt;}
.y74{bottom:640.573333pt;}
.yfd{bottom:641.053333pt;}
.yf0{bottom:643.933333pt;}
.y3d{bottom:645.213333pt;}
.y92{bottom:651.773333pt;}
.y28{bottom:655.933333pt;}
.ya{bottom:656.253333pt;}
.ya5{bottom:667.293333pt;}
.y3c{bottom:672.733333pt;}
.y27{bottom:683.453333pt;}
.y73{bottom:686.853333pt;}
.ybf{bottom:706.373333pt;}
.y26{bottom:711.173333pt;}
.y72{bottom:714.533333pt;}
.y3b{bottom:718.853333pt;}
.y50{bottom:718.973333pt;}
.y91{bottom:721.853333pt;}
.y8f{bottom:724.893333pt;}
.ybe{bottom:733.893333pt;}
.y25{bottom:738.693333pt;}
.y71{bottom:742.053333pt;}
.ycd{bottom:742.173333pt;}
.y66{bottom:753.853333pt;}
.ybd{bottom:761.413333pt;}
.ycb{bottom:762.973333pt;}
.y24{bottom:766.373333pt;}
.y8e{bottom:766.813333pt;}
.ydf{bottom:768.893333pt;}
.y86{bottom:769.853333pt;}
.y39{bottom:770.853333pt;}
.y6{bottom:783.933333pt;}
.y70{bottom:788.453333pt;}
.ybc{bottom:789.093333pt;}
.y23{bottom:793.893333pt;}
.ya4{bottom:807.493333pt;}
.y104{bottom:812.613333pt;}
.ydd{bottom:812.933333pt;}
.yb4{bottom:813.253333pt;}
.y6f{bottom:815.973333pt;}
.ybb{bottom:816.613333pt;}
.y38{bottom:820.933333pt;}
.y22{bottom:821.413333pt;}
.y6e{bottom:843.493333pt;}
.yba{bottom:844.293333pt;}
.y103{bottom:847.013333pt;}
.y37{bottom:848.453333pt;}
.y5{bottom:859.653333pt;}
.y102{bottom:865.413333pt;}
.y21{bottom:867.813333pt;}
.yb9{bottom:871.813333pt;}
.y6d{bottom:889.733333pt;}
.y36{bottom:894.693333pt;}
.y4{bottom:896.773333pt;}
.y101{bottom:902.373333pt;}
.ya3{bottom:904.133333pt;}
.y20{bottom:913.733333pt;}
.y3{bottom:933.893333pt;}
.y100{bottom:939.493333pt;}
.y2{bottom:971.013333pt;}
.yff{bottom:976.613333pt;}
.y1{bottom:1008.293333pt;}
.yfe{bottom:1013.573333pt;}
.h1a{height:2.295000pt;}
.h32{height:4.547500pt;}
.h25{height:16.800000pt;}
.h31{height:18.758437pt;}
.h1b{height:37.920000pt;}
.h11{height:40.882500pt;}
.he{height:44.437500pt;}
.h9{height:46.593750pt;}
.h3{height:55.392000pt;}
.h4{height:56.843750pt;}
.h5{height:57.375000pt;}
.h7{height:58.563750pt;}
.h1d{height:63.040000pt;}
.h28{height:67.881250pt;}
.h2d{height:67.987917pt;}
.h12{height:73.760000pt;}
.h2{height:75.602187pt;}
.h13{height:90.752000pt;}
.h26{height:155.346667pt;}
.h2f{height:156.306667pt;}
.h2a{height:157.280000pt;}
.h21{height:157.453333pt;}
.h16{height:157.466667pt;}
.h30{height:158.400000pt;}
.h15{height:158.426667pt;}
.h23{height:165.920000pt;}
.h2e{height:168.000000pt;}
.h10{height:203.546667pt;}
.h2b{height:245.293333pt;}
.h14{height:245.306667pt;}
.h20{height:245.453333pt;}
.h18{height:249.186667pt;}
.h19{height:254.306667pt;}
.h24{height:256.026667pt;}
.h29{height:256.066667pt;}
.h1f{height:291.546667pt;}
.hd{height:297.186667pt;}
.h1c{height:302.306667pt;}
.h33{height:380.226667pt;}
.h34{height:385.026667pt;}
.hc{height:421.986667pt;}
.h1e{height:544.093333pt;}
.h6{height:670.813333pt;}
.hb{height:733.733333pt;}
.hf{height:742.213333pt;}
.h27{height:889.120000pt;}
.h2c{height:902.400000pt;}
.h17{height:907.040000pt;}
.ha{height:912.000000pt;}
.h22{height:918.720000pt;}
.h8{height:928.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:165.933333pt;}
.w1a{width:166.893333pt;}
.w15{width:168.013333pt;}
.w12{width:168.832000pt;}
.w9{width:168.986667pt;}
.w1d{width:170.746667pt;}
.wf{width:170.893333pt;}
.w5{width:171.066667pt;}
.w1b{width:172.026667pt;}
.w18{width:173.946667pt;}
.w14{width:174.897333pt;}
.w11{width:187.386667pt;}
.w10{width:196.986667pt;}
.wd{width:223.706667pt;}
.w17{width:251.392000pt;}
.wa{width:254.893333pt;}
.w19{width:254.897333pt;}
.wb{width:254.946667pt;}
.w13{width:255.066667pt;}
.w6{width:256.986667pt;}
.w7{width:257.186667pt;}
.we{width:261.346667pt;}
.w16{width:303.706667pt;}
.w1c{width:323.426667pt;}
.w4{width:547.613333pt;}
.w8{width:550.973333pt;}
.w3{width:557.053333pt;}
.wc{width:563.133333pt;}
.w2{width:568.893333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x23{left:-14.080000pt;}
.x0{left:0.000000pt;}
.x5{left:0.960000pt;}
.x37{left:62.400000pt;}
.x31{left:63.840000pt;}
.xd{left:66.240000pt;}
.x19{left:92.480000pt;}
.x32{left:102.921333pt;}
.x26{left:104.361333pt;}
.x38{left:105.440000pt;}
.x1b{left:107.546667pt;}
.x10{left:109.120000pt;}
.x2e{left:110.880000pt;}
.x4{left:112.512000pt;}
.x3c{left:113.472000pt;}
.x16{left:115.392000pt;}
.x8{left:118.432000pt;}
.x2d{left:120.474667pt;}
.xa{left:121.472000pt;}
.xe{left:137.306667pt;}
.x14{left:138.280000pt;}
.x34{left:148.826667pt;}
.x39{left:149.960000pt;}
.x17{left:153.306667pt;}
.x1c{left:154.440000pt;}
.x3b{left:156.346667pt;}
.x29{left:158.426667pt;}
.x13{left:159.546667pt;}
.x1d{left:161.626667pt;}
.x27{left:165.625333pt;}
.x36{left:167.080000pt;}
.x2c{left:168.040000pt;}
.x22{left:169.000000pt;}
.xc{left:170.106667pt;}
.x18{left:172.040000pt;}
.x30{left:172.986667pt;}
.x1{left:205.146667pt;}
.x2a{left:239.394667pt;}
.x15{left:245.626667pt;}
.xf{left:255.880000pt;}
.x1f{left:268.386667pt;}
.x25{left:269.346667pt;}
.x2f{left:278.434667pt;}
.x3{left:290.786667pt;}
.xb{left:309.666667pt;}
.x12{left:310.786667pt;}
.x20{left:317.346667pt;}
.x1a{left:379.106667pt;}
.x1e{left:380.066667pt;}
.x2{left:396.866667pt;}
.x24{left:413.501333pt;}
.x2b{left:424.093333pt;}
.x33{left:425.226667pt;}
.x7{left:437.341333pt;}
.x35{left:474.173333pt;}
.x3a{left:475.306667pt;}
.x21{left:506.653333pt;}
.x28{left:507.626667pt;}
.x11{left:546.661333pt;}
.x9{left:555.941333pt;}
.x3d{left:562.181333pt;}
.x6{left:567.941333pt;}
.x3e{left:680.453333pt;}
}




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