
    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_fe63a3e793480dd51592dd0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ce5b4892dea3730fd55df3ac.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3fa608e4f550955d409f2600.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_24680d00ab75fc4ce6956ec5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d58c2a7500665f43e20988c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_d6190c12fec32cdc42cf2aa2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3ca9e927e485a4219c5e64b6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a6b99f6375309f344186e2a7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e60225f2befd5141ed638c9f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.168457;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_7f4b6374fd9c814227ce60c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010254;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_ca88b9a02a982421a2937e48.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987793;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_1c60d00aecdd8fd529130c75.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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:ffd;src:url('chunks/assets/font_93f1aeaf545e7ce9a61876c2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.903809;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:ffe;src:url('chunks/assets/font_1b4d29b42a2753a47b4747c9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-80.640000px;}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-69.120000px;}
.v6{vertical-align:-52.440000px;}
.v5{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.120000px;}
.v3{vertical-align:27.360000px;}
.ls1b{letter-spacing:-0.308400px;}
.ls6{letter-spacing:-0.109200px;}
.ls1a{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.013440px;}
.ls14{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106560px;}
.ls10{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.262200px;}
.ls17{letter-spacing:0.286560px;}
.ls1{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.513600px;}
.lse{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.826560px;}
.ls18{letter-spacing:0.828000px;}
.lsc{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.440000px;}
.lsa{letter-spacing:19.386720px;}
.ls19{letter-spacing:36.666720px;}
.ls11{letter-spacing:66.186720px;}
.ls3{letter-spacing:314.796000px;}
.ls0{letter-spacing:2146.056000px;}
.ls2{letter-spacing:2229.756000px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws10{word-spacing:-59.760000px;}
.ws4{word-spacing:-20.016000px;}
.ws2{word-spacing:-18.720120px;}
.ws6{word-spacing:-18.676920px;}
.ws7{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.305520px;}
.wsf{word-spacing:-16.506480px;}
.wsa{word-spacing:-16.020000px;}
.wse{word-spacing:-15.768000px;}
.ws8{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws3{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.411600px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-8.153280px;}
._12{margin-left:-2.006640px;}
._2{margin-left:-1.000800px;}
._0{width:1.254960px;}
._6{width:2.395920px;}
._a{width:3.884400px;}
._13{width:4.900320px;}
._e{width:5.992320px;}
._f{width:7.738560px;}
._16{width:8.905440px;}
._15{width:10.039680px;}
._10{width:11.712960px;}
._11{width:12.978480px;}
._d{width:16.075440px;}
._14{width:17.390160px;}
._18{width:18.794880px;}
._19{width:19.849200px;}
._7{width:21.035520px;}
._9{width:22.155120px;}
._8{width:23.324640px;}
._c{width:25.158000px;}
._b{width:26.473680px;}
._4{width:86.940000px;}
._3{width:88.344000px;}
._5{width:89.465040px;}
._1a{width:208.835760px;}
._1b{width:391.808400px;}
._1{width:424.928400px;}
.fc3{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs5{font-size:51.120000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:28.290000px;}
.y1{bottom:53.820000px;}
.yd4{bottom:54.750000px;}
.y37{bottom:60.660000px;}
.yf2{bottom:70.740000px;}
.yd3{bottom:81.030000px;}
.yd1{bottom:112.320000px;}
.y6c{bottom:113.220000px;}
.yf1{bottom:117.540000px;}
.yd9{bottom:122.070000px;}
.ya9{bottom:123.480000px;}
.yd0{bottom:129.600000px;}
.y6b{bottom:130.500000px;}
.yf0{bottom:136.260000px;}
.yd8{bottom:138.450000px;}
.ya8{bottom:140.760000px;}
.ycf{bottom:146.700000px;}
.y6a{bottom:147.780000px;}
.yef{bottom:154.980000px;}
.yd7{bottom:155.010000px;}
.ya7{bottom:158.040000px;}
.yce{bottom:163.620000px;}
.y69{bottom:165.060000px;}
.yee{bottom:173.520000px;}
.yb7{bottom:174.960000px;}
.ya6{bottom:175.320000px;}
.yd6{bottom:177.870000px;}
.ycd{bottom:180.900000px;}
.y68{bottom:182.340000px;}
.ydd{bottom:190.980000px;}
.yb6{bottom:192.240000px;}
.ya5{bottom:192.600000px;}
.ycc{bottom:198.540000px;}
.y67{bottom:199.440000px;}
.ydc{bottom:207.360000px;}
.ya4{bottom:209.730000px;}
.yed{bottom:210.810000px;}
.ycb{bottom:215.850000px;}
.y66{bottom:216.750000px;}
.y32{bottom:218.010000px;}
.ydb{bottom:223.920000px;}
.ya3{bottom:227.010000px;}
.yec{bottom:229.530000px;}
.yca{bottom:232.950000px;}
.y65{bottom:234.030000px;}
.y31{bottom:235.290000px;}
.ya2{bottom:244.290000px;}
.yda{bottom:246.780000px;}
.yeb{bottom:248.070000px;}
.yc9{bottom:250.230000px;}
.y64{bottom:251.310000px;}
.y30{bottom:252.570000px;}
.yb0{bottom:261.210000px;}
.ya1{bottom:261.570000px;}
.yea{bottom:266.790000px;}
.yc8{bottom:267.150000px;}
.y63{bottom:268.590000px;}
.y2f{bottom:269.850000px;}
.ya0{bottom:278.850000px;}
.yc7{bottom:284.430000px;}
.ye9{bottom:285.330000px;}
.y62{bottom:285.690000px;}
.y2e{bottom:287.130000px;}
.ybd{bottom:295.770000px;}
.y9f{bottom:296.130000px;}
.yc6{bottom:302.070000px;}
.y61{bottom:302.970000px;}
.ye8{bottom:304.050000px;}
.y2d{bottom:304.410000px;}
.ybc{bottom:312.870000px;}
.y9e{bottom:313.230000px;}
.yc5{bottom:319.350000px;}
.y60{bottom:320.250000px;}
.y2c{bottom:321.510000px;}
.ye7{bottom:322.770000px;}
.y9d{bottom:330.510000px;}
.yc4{bottom:336.450000px;}
.y5f{bottom:337.530000px;}
.y2b{bottom:338.790000px;}
.ye6{bottom:341.310000px;}
.y9c{bottom:347.790000px;}
.yc3{bottom:353.730000px;}
.y5e{bottom:354.810000px;}
.y2a{bottom:356.070000px;}
.ye5{bottom:360.030000px;}
.y9b{bottom:365.070000px;}
.yc2{bottom:371.010000px;}
.y5d{bottom:372.090000px;}
.y29{bottom:373.350000px;}
.ye4{bottom:378.570000px;}
.yaf{bottom:381.990000px;}
.y9a{bottom:382.350000px;}
.yc1{bottom:388.290000px;}
.y5c{bottom:389.190000px;}
.y28{bottom:390.630000px;}
.ye3{bottom:397.290000px;}
.y99{bottom:399.630000px;}
.yc0{bottom:401.790000px;}
.yd2{bottom:401.940000px;}
.y5b{bottom:406.470000px;}
.y27{bottom:407.910000px;}
.ye2{bottom:415.830000px;}
.yb5{bottom:416.370000px;}
.y98{bottom:416.730000px;}
.y5a{bottom:423.750000px;}
.y26{bottom:425.010000px;}
.yb4{bottom:433.650000px;}
.y97{bottom:434.010000px;}
.y59{bottom:441.075000px;}
.y25{bottom:442.335000px;}
.yb3{bottom:450.975000px;}
.y96{bottom:451.335000px;}
.y58{bottom:458.355000px;}
.y24{bottom:459.615000px;}
.y95{bottom:468.615000px;}
.y57{bottom:475.635000px;}
.y23{bottom:476.895000px;}
.yb2{bottom:485.535000px;}
.y94{bottom:485.895000px;}
.y56{bottom:492.735000px;}
.y22{bottom:494.175000px;}
.y93{bottom:502.995000px;}
.y55{bottom:510.015000px;}
.y21{bottom:518.475000px;}
.yae{bottom:519.915000px;}
.y92{bottom:520.275000px;}
.y54{bottom:527.295000px;}
.y20{bottom:530.355000px;}
.y91{bottom:537.555000px;}
.y53{bottom:544.575000px;}
.y1f{bottom:548.895000px;}
.y90{bottom:554.835000px;}
.y52{bottom:561.855000px;}
.y1e{bottom:565.815000px;}
.y8f{bottom:572.115000px;}
.y51{bottom:579.135000px;}
.y1d{bottom:583.095000px;}
.ybb{bottom:589.035000px;}
.y8e{bottom:589.395000px;}
.y50{bottom:596.235000px;}
.y1c{bottom:601.635000px;}
.yba{bottom:606.135000px;}
.y8d{bottom:606.495000px;}
.y4f{bottom:613.515000px;}
.y1b{bottom:618.555000px;}
.ye1{bottom:623.415000px;}
.y8c{bottom:623.775000px;}
.y4e{bottom:630.795000px;}
.y1a{bottom:634.575000px;}
.y8b{bottom:641.055000px;}
.y4d{bottom:648.075000px;}
.y19{bottom:650.415000px;}
.y8a{bottom:658.335000px;}
.y4c{bottom:665.355000px;}
.y18{bottom:666.255000px;}
.ybf{bottom:675.255000px;}
.y89{bottom:675.615000px;}
.y17{bottom:682.125000px;}
.ybe{bottom:692.565000px;}
.y88{bottom:692.925000px;}
.y16{bottom:697.965000px;}
.y4b{bottom:699.765000px;}
.y10a{bottom:704.445000px;}
.yad{bottom:709.665000px;}
.y87{bottom:710.025000px;}
.y15{bottom:713.805000px;}
.y4a{bottom:717.585000px;}
.y109{bottom:722.985000px;}
.yac{bottom:726.945000px;}
.y86{bottom:727.305000px;}
.y14{bottom:729.645000px;}
.y108{bottom:741.705000px;}
.y85{bottom:744.585000px;}
.y49{bottom:745.125000px;}
.y13{bottom:746.745000px;}
.y107{bottom:760.245000px;}
.y84{bottom:761.865000px;}
.y48{bottom:763.845000px;}
.y12{bottom:767.445000px;}
.yb9{bottom:778.785000px;}
.y106{bottom:778.965000px;}
.y83{bottom:779.145000px;}
.y47{bottom:782.565000px;}
.y11{bottom:789.765000px;}
.yb8{bottom:795.885000px;}
.y82{bottom:796.245000px;}
.y105{bottom:797.505000px;}
.y46{bottom:801.105000px;}
.ye0{bottom:813.165000px;}
.y81{bottom:813.525000px;}
.y104{bottom:816.225000px;}
.y45{bottom:819.825000px;}
.yab{bottom:830.445000px;}
.y80{bottom:830.805000px;}
.y10{bottom:832.245000px;}
.y103{bottom:837.465000px;}
.y44{bottom:838.365000px;}
.yaa{bottom:847.725000px;}
.y7f{bottom:848.085000px;}
.yf{bottom:849.525000px;}
.y43{bottom:857.085000px;}
.y102{bottom:860.865000px;}
.y7e{bottom:865.365000px;}
.ye{bottom:866.625000px;}
.y42{bottom:875.625000px;}
.y101{bottom:879.405000px;}
.y7d{bottom:882.645000px;}
.y41{bottom:894.345000px;}
.y100{bottom:898.125000px;}
.y7c{bottom:899.745000px;}
.yd{bottom:901.185000px;}
.y40{bottom:912.930000px;}
.yff{bottom:916.710000px;}
.y7b{bottom:917.070000px;}
.yc{bottom:921.210000px;}
.y3f{bottom:931.650000px;}
.y7a{bottom:934.350000px;}
.yfe{bottom:935.430000px;}
.y3e{bottom:949.470000px;}
.y79{bottom:951.630000px;}
.yb{bottom:952.170000px;}
.yfd{bottom:953.970000px;}
.y3d{bottom:966.750000px;}
.y78{bottom:968.910000px;}
.yfc{bottom:972.690000px;}
.ya{bottom:980.610000px;}
.y3c{bottom:984.210000px;}
.y77{bottom:986.190000px;}
.yfb{bottom:991.410000px;}
.y9{bottom:997.890000px;}
.y3b{bottom:1001.490000px;}
.ydf{bottom:1002.930000px;}
.y76{bottom:1003.290000px;}
.yfa{bottom:1009.950000px;}
.y8{bottom:1015.530000px;}
.yde{bottom:1020.210000px;}
.y75{bottom:1020.570000px;}
.y3a{bottom:1025.610000px;}
.yf9{bottom:1028.670000px;}
.y7{bottom:1034.430000px;}
.y39{bottom:1035.690000px;}
.y74{bottom:1037.850000px;}
.yf8{bottom:1047.210000px;}
.y38{bottom:1054.230000px;}
.yb1{bottom:1054.770000px;}
.y73{bottom:1055.130000px;}
.yf7{bottom:1065.930000px;}
.y6{bottom:1072.050000px;}
.y72{bottom:1072.410000px;}
.y36{bottom:1079.070000px;}
.yf6{bottom:1084.470000px;}
.y5{bottom:1089.330000px;}
.y71{bottom:1089.690000px;}
.y35{bottom:1099.050000px;}
.yf5{bottom:1103.190000px;}
.y4{bottom:1106.430000px;}
.y70{bottom:1106.790000px;}
.y34{bottom:1118.130000px;}
.yf4{bottom:1121.730000px;}
.y3{bottom:1123.710000px;}
.y6f{bottom:1124.070000px;}
.y33{bottom:1133.430000px;}
.yf3{bottom:1140.450000px;}
.y2{bottom:1140.990000px;}
.y6e{bottom:1141.350000px;}
.y6d{bottom:1171.980000px;}
.ha{height:38.158594px;}
.h10{height:41.522695px;}
.hf{height:43.506914px;}
.h8{height:50.845430px;}
.h14{height:51.327070px;}
.he{height:52.961133px;}
.h7{height:53.316562px;}
.h9{height:58.651172px;}
.h13{height:59.439023px;}
.h3{height:60.226875px;}
.h2{height:62.327813px;}
.hb{height:65.884219px;}
.hd{height:66.543750px;}
.h4{height:69.086250px;}
.h6{height:75.093750px;}
.hc{height:84.898125px;}
.h12{height:95.245664px;}
.h5{height:108.843750px;}
.h11{height:270.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.036000px;}
.xa{left:140.076000px;}
.x7{left:224.490000px;}
.x11{left:262.365000px;}
.x10{left:279.645000px;}
.x12{left:280.725000px;}
.xf{left:288.645000px;}
.x5{left:350.895000px;}
.x8{left:385.275000px;}
.x15{left:387.360000px;}
.xe{left:398.850000px;}
.xd{left:402.450000px;}
.x14{left:405.540000px;}
.xc{left:407.310000px;}
.x13{left:411.480000px;}
.x4{left:430.095000px;}
.x3{left:521.745000px;}
.x17{left:542.235000px;}
.x16{left:545.115000px;}
.xb{left:770.370000px;}
.x6{left:776.850000px;}
.x2{left:783.150000px;}
.x9{left:785.130000px;}
@media print{
.v4{vertical-align:-71.680000pt;}
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-61.440000pt;}
.v6{vertical-align:-46.613333pt;}
.v5{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.440000pt;}
.v3{vertical-align:24.320000pt;}
.ls1b{letter-spacing:-0.274133pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls1a{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011947pt;}
.ls14{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094720pt;}
.ls10{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.233067pt;}
.ls17{letter-spacing:0.254720pt;}
.ls1{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.456533pt;}
.lse{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.734720pt;}
.ls18{letter-spacing:0.736000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.280000pt;}
.lsa{letter-spacing:17.232640pt;}
.ls19{letter-spacing:32.592640pt;}
.ls11{letter-spacing:58.832640pt;}
.ls3{letter-spacing:279.818667pt;}
.ls0{letter-spacing:1907.605333pt;}
.ls2{letter-spacing:1982.005333pt;}
.ws0{word-spacing:-58.880000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws2{word-spacing:-16.640107pt;}
.ws6{word-spacing:-16.601707pt;}
.ws7{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.271573pt;}
.wsf{word-spacing:-14.672427pt;}
.wsa{word-spacing:-14.240000pt;}
.wse{word-spacing:-14.016000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws3{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.365867pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-7.247360pt;}
._12{margin-left:-1.783680pt;}
._2{margin-left:-0.889600pt;}
._0{width:1.115520pt;}
._6{width:2.129707pt;}
._a{width:3.452800pt;}
._13{width:4.355840pt;}
._e{width:5.326507pt;}
._f{width:6.878720pt;}
._16{width:7.915947pt;}
._15{width:8.924160pt;}
._10{width:10.411520pt;}
._11{width:11.536427pt;}
._d{width:14.289280pt;}
._14{width:15.457920pt;}
._18{width:16.706560pt;}
._19{width:17.643733pt;}
._7{width:18.698240pt;}
._9{width:19.693440pt;}
._8{width:20.733013pt;}
._c{width:22.362667pt;}
._b{width:23.532160pt;}
._4{width:77.280000pt;}
._3{width:78.528000pt;}
._5{width:79.524480pt;}
._1a{width:185.631787pt;}
._1b{width:348.274133pt;}
._1{width:377.714133pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:25.146667pt;}
.y1{bottom:47.840000pt;}
.yd4{bottom:48.666667pt;}
.y37{bottom:53.920000pt;}
.yf2{bottom:62.880000pt;}
.yd3{bottom:72.026667pt;}
.yd1{bottom:99.840000pt;}
.y6c{bottom:100.640000pt;}
.yf1{bottom:104.480000pt;}
.yd9{bottom:108.506667pt;}
.ya9{bottom:109.760000pt;}
.yd0{bottom:115.200000pt;}
.y6b{bottom:116.000000pt;}
.yf0{bottom:121.120000pt;}
.yd8{bottom:123.066667pt;}
.ya8{bottom:125.120000pt;}
.ycf{bottom:130.400000pt;}
.y6a{bottom:131.360000pt;}
.yef{bottom:137.760000pt;}
.yd7{bottom:137.786667pt;}
.ya7{bottom:140.480000pt;}
.yce{bottom:145.440000pt;}
.y69{bottom:146.720000pt;}
.yee{bottom:154.240000pt;}
.yb7{bottom:155.520000pt;}
.ya6{bottom:155.840000pt;}
.yd6{bottom:158.106667pt;}
.ycd{bottom:160.800000pt;}
.y68{bottom:162.080000pt;}
.ydd{bottom:169.760000pt;}
.yb6{bottom:170.880000pt;}
.ya5{bottom:171.200000pt;}
.ycc{bottom:176.480000pt;}
.y67{bottom:177.280000pt;}
.ydc{bottom:184.320000pt;}
.ya4{bottom:186.426667pt;}
.yed{bottom:187.386667pt;}
.ycb{bottom:191.866667pt;}
.y66{bottom:192.666667pt;}
.y32{bottom:193.786667pt;}
.ydb{bottom:199.040000pt;}
.ya3{bottom:201.786667pt;}
.yec{bottom:204.026667pt;}
.yca{bottom:207.066667pt;}
.y65{bottom:208.026667pt;}
.y31{bottom:209.146667pt;}
.ya2{bottom:217.146667pt;}
.yda{bottom:219.360000pt;}
.yeb{bottom:220.506667pt;}
.yc9{bottom:222.426667pt;}
.y64{bottom:223.386667pt;}
.y30{bottom:224.506667pt;}
.yb0{bottom:232.186667pt;}
.ya1{bottom:232.506667pt;}
.yea{bottom:237.146667pt;}
.yc8{bottom:237.466667pt;}
.y63{bottom:238.746667pt;}
.y2f{bottom:239.866667pt;}
.ya0{bottom:247.866667pt;}
.yc7{bottom:252.826667pt;}
.ye9{bottom:253.626667pt;}
.y62{bottom:253.946667pt;}
.y2e{bottom:255.226667pt;}
.ybd{bottom:262.906667pt;}
.y9f{bottom:263.226667pt;}
.yc6{bottom:268.506667pt;}
.y61{bottom:269.306667pt;}
.ye8{bottom:270.266667pt;}
.y2d{bottom:270.586667pt;}
.ybc{bottom:278.106667pt;}
.y9e{bottom:278.426667pt;}
.yc5{bottom:283.866667pt;}
.y60{bottom:284.666667pt;}
.y2c{bottom:285.786667pt;}
.ye7{bottom:286.906667pt;}
.y9d{bottom:293.786667pt;}
.yc4{bottom:299.066667pt;}
.y5f{bottom:300.026667pt;}
.y2b{bottom:301.146667pt;}
.ye6{bottom:303.386667pt;}
.y9c{bottom:309.146667pt;}
.yc3{bottom:314.426667pt;}
.y5e{bottom:315.386667pt;}
.y2a{bottom:316.506667pt;}
.ye5{bottom:320.026667pt;}
.y9b{bottom:324.506667pt;}
.yc2{bottom:329.786667pt;}
.y5d{bottom:330.746667pt;}
.y29{bottom:331.866667pt;}
.ye4{bottom:336.506667pt;}
.yaf{bottom:339.546667pt;}
.y9a{bottom:339.866667pt;}
.yc1{bottom:345.146667pt;}
.y5c{bottom:345.946667pt;}
.y28{bottom:347.226667pt;}
.ye3{bottom:353.146667pt;}
.y99{bottom:355.226667pt;}
.yc0{bottom:357.146667pt;}
.yd2{bottom:357.280000pt;}
.y5b{bottom:361.306667pt;}
.y27{bottom:362.586667pt;}
.ye2{bottom:369.626667pt;}
.yb5{bottom:370.106667pt;}
.y98{bottom:370.426667pt;}
.y5a{bottom:376.666667pt;}
.y26{bottom:377.786667pt;}
.yb4{bottom:385.466667pt;}
.y97{bottom:385.786667pt;}
.y59{bottom:392.066667pt;}
.y25{bottom:393.186667pt;}
.yb3{bottom:400.866667pt;}
.y96{bottom:401.186667pt;}
.y58{bottom:407.426667pt;}
.y24{bottom:408.546667pt;}
.y95{bottom:416.546667pt;}
.y57{bottom:422.786667pt;}
.y23{bottom:423.906667pt;}
.yb2{bottom:431.586667pt;}
.y94{bottom:431.906667pt;}
.y56{bottom:437.986667pt;}
.y22{bottom:439.266667pt;}
.y93{bottom:447.106667pt;}
.y55{bottom:453.346667pt;}
.y21{bottom:460.866667pt;}
.yae{bottom:462.146667pt;}
.y92{bottom:462.466667pt;}
.y54{bottom:468.706667pt;}
.y20{bottom:471.426667pt;}
.y91{bottom:477.826667pt;}
.y53{bottom:484.066667pt;}
.y1f{bottom:487.906667pt;}
.y90{bottom:493.186667pt;}
.y52{bottom:499.426667pt;}
.y1e{bottom:502.946667pt;}
.y8f{bottom:508.546667pt;}
.y51{bottom:514.786667pt;}
.y1d{bottom:518.306667pt;}
.ybb{bottom:523.586667pt;}
.y8e{bottom:523.906667pt;}
.y50{bottom:529.986667pt;}
.y1c{bottom:534.786667pt;}
.yba{bottom:538.786667pt;}
.y8d{bottom:539.106667pt;}
.y4f{bottom:545.346667pt;}
.y1b{bottom:549.826667pt;}
.ye1{bottom:554.146667pt;}
.y8c{bottom:554.466667pt;}
.y4e{bottom:560.706667pt;}
.y1a{bottom:564.066667pt;}
.y8b{bottom:569.826667pt;}
.y4d{bottom:576.066667pt;}
.y19{bottom:578.146667pt;}
.y8a{bottom:585.186667pt;}
.y4c{bottom:591.426667pt;}
.y18{bottom:592.226667pt;}
.ybf{bottom:600.226667pt;}
.y89{bottom:600.546667pt;}
.y17{bottom:606.333333pt;}
.ybe{bottom:615.613333pt;}
.y88{bottom:615.933333pt;}
.y16{bottom:620.413333pt;}
.y4b{bottom:622.013333pt;}
.y10a{bottom:626.173333pt;}
.yad{bottom:630.813333pt;}
.y87{bottom:631.133333pt;}
.y15{bottom:634.493333pt;}
.y4a{bottom:637.853333pt;}
.y109{bottom:642.653333pt;}
.yac{bottom:646.173333pt;}
.y86{bottom:646.493333pt;}
.y14{bottom:648.573333pt;}
.y108{bottom:659.293333pt;}
.y85{bottom:661.853333pt;}
.y49{bottom:662.333333pt;}
.y13{bottom:663.773333pt;}
.y107{bottom:675.773333pt;}
.y84{bottom:677.213333pt;}
.y48{bottom:678.973333pt;}
.y12{bottom:682.173333pt;}
.yb9{bottom:692.253333pt;}
.y106{bottom:692.413333pt;}
.y83{bottom:692.573333pt;}
.y47{bottom:695.613333pt;}
.y11{bottom:702.013333pt;}
.yb8{bottom:707.453333pt;}
.y82{bottom:707.773333pt;}
.y105{bottom:708.893333pt;}
.y46{bottom:712.093333pt;}
.ye0{bottom:722.813333pt;}
.y81{bottom:723.133333pt;}
.y104{bottom:725.533333pt;}
.y45{bottom:728.733333pt;}
.yab{bottom:738.173333pt;}
.y80{bottom:738.493333pt;}
.y10{bottom:739.773333pt;}
.y103{bottom:744.413333pt;}
.y44{bottom:745.213333pt;}
.yaa{bottom:753.533333pt;}
.y7f{bottom:753.853333pt;}
.yf{bottom:755.133333pt;}
.y43{bottom:761.853333pt;}
.y102{bottom:765.213333pt;}
.y7e{bottom:769.213333pt;}
.ye{bottom:770.333333pt;}
.y42{bottom:778.333333pt;}
.y101{bottom:781.693333pt;}
.y7d{bottom:784.573333pt;}
.y41{bottom:794.973333pt;}
.y100{bottom:798.333333pt;}
.y7c{bottom:799.773333pt;}
.yd{bottom:801.053333pt;}
.y40{bottom:811.493333pt;}
.yff{bottom:814.853333pt;}
.y7b{bottom:815.173333pt;}
.yc{bottom:818.853333pt;}
.y3f{bottom:828.133333pt;}
.y7a{bottom:830.533333pt;}
.yfe{bottom:831.493333pt;}
.y3e{bottom:843.973333pt;}
.y79{bottom:845.893333pt;}
.yb{bottom:846.373333pt;}
.yfd{bottom:847.973333pt;}
.y3d{bottom:859.333333pt;}
.y78{bottom:861.253333pt;}
.yfc{bottom:864.613333pt;}
.ya{bottom:871.653333pt;}
.y3c{bottom:874.853333pt;}
.y77{bottom:876.613333pt;}
.yfb{bottom:881.253333pt;}
.y9{bottom:887.013333pt;}
.y3b{bottom:890.213333pt;}
.ydf{bottom:891.493333pt;}
.y76{bottom:891.813333pt;}
.yfa{bottom:897.733333pt;}
.y8{bottom:902.693333pt;}
.yde{bottom:906.853333pt;}
.y75{bottom:907.173333pt;}
.y3a{bottom:911.653333pt;}
.yf9{bottom:914.373333pt;}
.y7{bottom:919.493333pt;}
.y39{bottom:920.613333pt;}
.y74{bottom:922.533333pt;}
.yf8{bottom:930.853333pt;}
.y38{bottom:937.093333pt;}
.yb1{bottom:937.573333pt;}
.y73{bottom:937.893333pt;}
.yf7{bottom:947.493333pt;}
.y6{bottom:952.933333pt;}
.y72{bottom:953.253333pt;}
.y36{bottom:959.173333pt;}
.yf6{bottom:963.973333pt;}
.y5{bottom:968.293333pt;}
.y71{bottom:968.613333pt;}
.y35{bottom:976.933333pt;}
.yf5{bottom:980.613333pt;}
.y4{bottom:983.493333pt;}
.y70{bottom:983.813333pt;}
.y34{bottom:993.893333pt;}
.yf4{bottom:997.093333pt;}
.y3{bottom:998.853333pt;}
.y6f{bottom:999.173333pt;}
.y33{bottom:1007.493333pt;}
.yf3{bottom:1013.733333pt;}
.y2{bottom:1014.213333pt;}
.y6e{bottom:1014.533333pt;}
.y6d{bottom:1041.760000pt;}
.ha{height:33.918750pt;}
.h10{height:36.909063pt;}
.hf{height:38.672812pt;}
.h8{height:45.195937pt;}
.h14{height:45.624063pt;}
.he{height:47.076563pt;}
.h7{height:47.392500pt;}
.h9{height:52.134375pt;}
.h13{height:52.834688pt;}
.h3{height:53.535000pt;}
.h2{height:55.402500pt;}
.hb{height:58.563750pt;}
.hd{height:59.150000pt;}
.h4{height:61.410000pt;}
.h6{height:66.750000pt;}
.hc{height:75.465000pt;}
.h12{height:84.662813pt;}
.h5{height:96.750000pt;}
.h11{height:240.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.032000pt;}
.xa{left:124.512000pt;}
.x7{left:199.546667pt;}
.x11{left:233.213333pt;}
.x10{left:248.573333pt;}
.x12{left:249.533333pt;}
.xf{left:256.573333pt;}
.x5{left:311.906667pt;}
.x8{left:342.466667pt;}
.x15{left:344.320000pt;}
.xe{left:354.533333pt;}
.xd{left:357.733333pt;}
.x14{left:360.480000pt;}
.xc{left:362.053333pt;}
.x13{left:365.760000pt;}
.x4{left:382.306667pt;}
.x3{left:463.773333pt;}
.x17{left:481.986667pt;}
.x16{left:484.546667pt;}
.xb{left:684.773333pt;}
.x6{left:690.533333pt;}
.x2{left:696.133333pt;}
.x9{left:697.893333pt;}
}




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