
    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_b2044392b16f3e1c8fb02338.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_9cd4ae557891e67c45ceae00.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.953000;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_d24d3d6ccec3da30937f53b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090000;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_ea236b569c145548de7ae764.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_994fff2ec6dd81f716fbce1f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090000;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_6d8988cf706bdf4682fae5d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100000;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_f24a9a2fba68ce77bb9eb996.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100000;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_1c0f46a7669e83283e521361.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924053;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_8fea27ddd812c268dac89ce4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.081000;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_a0402ebb1fffa93d9741e9df.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100000;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_f12571c82df29003a84d853c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.105000;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_486a427e05a2a186cff6bdd3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.095446;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_78a1a137ed26dd85ac05a109.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.935000;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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.979400px;}
.lsc{letter-spacing:-6.052200px;}
.ls7{letter-spacing:-4.680000px;}
.lse{letter-spacing:-4.527600px;}
.ls9{letter-spacing:-2.494800px;}
.ls4{letter-spacing:-1.428000px;}
.lsd{letter-spacing:-0.924000px;}
.ls1{letter-spacing:-0.900000px;}
.ls8{letter-spacing:-0.660000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000300px;}
.ls6{letter-spacing:0.349500px;}
.ls5{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.831600px;}
.lsb{letter-spacing:1.819800px;}
.ls2{letter-spacing:3.417000px;}
.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;}
}
.ws10{word-spacing:-16.620000px;}
.ws3{word-spacing:-16.020000px;}
.ws26{word-spacing:-15.360000px;}
.ws1{word-spacing:-14.400000px;}
.ws34{word-spacing:-13.167000px;}
.ws27{word-spacing:-12.335400px;}
.ws36{word-spacing:-11.411400px;}
.ws2{word-spacing:-9.339660px;}
.wsa{word-spacing:-8.772000px;}
.ws39{word-spacing:-2.760000px;}
.ws15{word-spacing:-2.460000px;}
.ws3c{word-spacing:-2.263800px;}
.ws3b{word-spacing:-1.500000px;}
.ws1d{word-spacing:-1.320000px;}
.wsd{word-spacing:-1.200000px;}
.ws1f{word-spacing:-1.140000px;}
.ws17{word-spacing:-1.020000px;}
.ws16{word-spacing:-0.840000px;}
.ws13{word-spacing:-0.600000px;}
.ws18{word-spacing:-0.480000px;}
.ws2d{word-spacing:-0.323400px;}
.ws2f{word-spacing:-0.184800px;}
.ws14{word-spacing:-0.120000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.420000px;}
.ws23{word-spacing:0.540000px;}
.ws8{word-spacing:0.600000px;}
.wse{word-spacing:0.720000px;}
.ws9{word-spacing:0.924000px;}
.ws1e{word-spacing:0.960000px;}
.ws20{word-spacing:1.140000px;}
.ws32{word-spacing:1.260000px;}
.ws31{word-spacing:1.386000px;}
.ws3d{word-spacing:1.940400px;}
.ws7{word-spacing:2.040000px;}
.ws2e{word-spacing:2.079000px;}
.ws5{word-spacing:2.100000px;}
.ws2b{word-spacing:2.220000px;}
.ws33{word-spacing:2.494800px;}
.ws25{word-spacing:2.580000px;}
.ws2c{word-spacing:2.587200px;}
.ws28{word-spacing:2.760000px;}
.ws21{word-spacing:3.120000px;}
.ws22{word-spacing:3.240000px;}
.ws30{word-spacing:3.360000px;}
.ws4{word-spacing:3.420000px;}
.ws1a{word-spacing:3.600000px;}
.ws1b{word-spacing:3.720000px;}
.ws37{word-spacing:4.380000px;}
.ws3f{word-spacing:4.527600px;}
.ws38{word-spacing:4.560000px;}
.ws12{word-spacing:4.680000px;}
.ws19{word-spacing:4.800000px;}
.ws35{word-spacing:5.128200px;}
.ws6{word-spacing:5.280000px;}
.wsb{word-spacing:5.880000px;}
.ws3e{word-spacing:6.052200px;}
.wsf{word-spacing:6.180000px;}
.ws11{word-spacing:6.780000px;}
.ws3a{word-spacing:6.960000px;}
.ws24{word-spacing:7.140000px;}
.ws29{word-spacing:7.440000px;}
.ws2a{word-spacing:8.520000px;}
.ws1c{word-spacing:10.140000px;}
._f{margin-left:-8.259000px;}
._6{margin-left:-6.810000px;}
._3{margin-left:-4.998000px;}
._1{margin-left:-3.120000px;}
._a{margin-left:-2.106000px;}
._0{margin-left:-1.092000px;}
._4{width:1.887000px;}
._5{width:3.372000px;}
._7{width:4.890000px;}
._8{width:6.426000px;}
._9{width:7.548000px;}
._e{width:8.658000px;}
._11{width:9.912000px;}
._12{width:10.935000px;}
._c{width:12.588000px;}
._b{width:13.596000px;}
._d{width:14.922000px;}
._2{width:181.882200px;}
._10{width:183.361200px;}
._13{width:184.432200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.980000px;}
.fs2{font-size:46.200000px;}
.fs4{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:10.240155px;}
.y4{bottom:82.523550px;}
.yff{bottom:116.539350px;}
.y29{bottom:116.539500px;}
.yfe{bottom:130.399350px;}
.y28{bottom:130.399500px;}
.y10a{bottom:136.777350px;}
.y69{bottom:136.777650px;}
.yfd{bottom:144.259350px;}
.y27{bottom:144.259500px;}
.y3{bottom:146.205150px;}
.y82{bottom:150.637650px;}
.y109{bottom:157.015200px;}
.yb0{bottom:157.015650px;}
.y68{bottom:157.015800px;}
.yfc{bottom:158.119350px;}
.y26{bottom:164.497650px;}
.y108{bottom:170.875200px;}
.yaf{bottom:170.875650px;}
.y81{bottom:170.875800px;}
.yfb{bottom:171.979350px;}
.y67{bottom:177.253800px;}
.yc3{bottom:178.357650px;}
.y107{bottom:184.735200px;}
.yae{bottom:184.735650px;}
.y66{bottom:191.113800px;}
.yfa{bottom:192.217350px;}
.yc2{bottom:192.217650px;}
.y4d{bottom:196.618050px;}
.y93{bottom:197.491950px;}
.yda{bottom:198.595650px;}
.y106{bottom:204.973200px;}
.yf9{bottom:206.077350px;}
.yc1{bottom:206.077650px;}
.yd9{bottom:212.455650px;}
.y25{bottom:213.504300px;}
.y4c{bottom:215.368050px;}
.y80{bottom:216.636600px;}
.y105{bottom:218.833200px;}
.yf8{bottom:219.937350px;}
.yc0{bottom:219.937650px;}
.ye7{bottom:221.228700px;}
.yd8{bottom:226.315800px;}
.y65{bottom:229.878000px;}
.y24{bottom:232.254300px;}
.yad{bottom:232.375950px;}
.ybf{bottom:233.797650px;}
.y4b{bottom:234.118050px;}
.y7f{bottom:235.386600px;}
.y92{bottom:237.128700px;}
.y104{bottom:239.071200px;}
.ye6{bottom:239.978700px;}
.yf7{bottom:240.175200px;}
.yd7{bottom:240.175800px;}
.y64{bottom:248.628000px;}
.y23{bottom:251.004300px;}
.yac{bottom:251.125950px;}
.y103{bottom:252.931200px;}
.yf6{bottom:254.035200px;}
.yd6{bottom:254.035650px;}
.ybe{bottom:254.035800px;}
.y7e{bottom:254.136600px;}
.y91{bottom:255.878700px;}
.y102{bottom:266.791200px;}
.y63{bottom:267.378000px;}
.yf5{bottom:267.895200px;}
.ybd{bottom:267.895800px;}
.y22{bottom:269.754300px;}
.y4a{bottom:269.875950px;}
.y7d{bottom:272.886600px;}
.y90{bottom:274.628700px;}
.ye5{bottom:275.736600px;}
.y101{bottom:280.651200px;}
.ybc{bottom:281.755800px;}
.y62{bottom:286.128000px;}
.yf4{bottom:288.133200px;}
.y21{bottom:288.504300px;}
.y49{bottom:288.625950px;}
.y7c{bottom:291.636600px;}
.ye4{bottom:294.486600px;}
.y100{bottom:294.511200px;}
.ybb{bottom:295.615800px;}
.yf3{bottom:301.993200px;}
.y61{bottom:304.878000px;}
.yab{bottom:305.633850px;}
.y20{bottom:307.254300px;}
.y48{bottom:307.375950px;}
.yd5{bottom:307.536600px;}
.y8f{bottom:309.134700px;}
.yba{bottom:309.475800px;}
.y7b{bottom:310.386600px;}
.ye3{bottom:313.236600px;}
.yb9{bottom:323.335800px;}
.y60{bottom:323.628000px;}
.yaa{bottom:324.383850px;}
.y1f{bottom:326.004300px;}
.y47{bottom:326.125950px;}
.yd4{bottom:326.286600px;}
.y7a{bottom:329.136600px;}
.ye2{bottom:331.986600px;}
.yb8{bottom:337.195800px;}
.y5f{bottom:342.378000px;}
.ya9{bottom:343.133850px;}
.y1e{bottom:344.754300px;}
.y46{bottom:344.875950px;}
.yd3{bottom:345.036600px;}
.ye1{bottom:350.736600px;}
.yb7{bottom:357.433800px;}
.y5e{bottom:361.128000px;}
.yf2{bottom:361.883850px;}
.y1d{bottom:363.504300px;}
.y45{bottom:363.625950px;}
.y79{bottom:363.642450px;}
.yd2{bottom:363.786600px;}
.y8e{bottom:366.002400px;}
.ye0{bottom:369.486600px;}
.yb6{bottom:371.293800px;}
.ya8{bottom:378.891750px;}
.y5d{bottom:379.878000px;}
.yf1{bottom:380.633850px;}
.y1c{bottom:382.254300px;}
.y44{bottom:382.375950px;}
.yd1{bottom:382.536600px;}
.y8d{bottom:384.752400px;}
.yb5{bottom:385.153800px;}
.ydf{bottom:388.236600px;}
.ya7{bottom:397.641750px;}
.y5c{bottom:398.628000px;}
.yb4{bottom:399.013800px;}
.yf0{bottom:399.383850px;}
.y1b{bottom:401.004300px;}
.y43{bottom:401.125950px;}
.yd0{bottom:401.286600px;}
.y8c{bottom:403.502400px;}
.yde{bottom:406.986600px;}
.yb3{bottom:412.873800px;}
.ya6{bottom:416.391750px;}
.y5b{bottom:417.378000px;}
.yef{bottom:418.133850px;}
.y1a{bottom:419.754300px;}
.y42{bottom:419.875950px;}
.y78{bottom:420.510150px;}
.y8b{bottom:422.252400px;}
.yb2{bottom:426.733800px;}
.y5{bottom:427.343400px;}
.ya5{bottom:435.141750px;}
.ycf{bottom:435.792600px;}
.y5a{bottom:436.128000px;}
.yee{bottom:436.883850px;}
.y19{bottom:438.504300px;}
.y41{bottom:438.625950px;}
.y77{bottom:439.260150px;}
.yb1{bottom:440.593800px;}
.y8a{bottom:441.002400px;}
.ydd{bottom:442.744500px;}
.ya4{bottom:453.891750px;}
.y59{bottom:454.878000px;}
.yed{bottom:455.633850px;}
.y18{bottom:457.254300px;}
.y40{bottom:457.375950px;}
.yce{bottom:457.392450px;}
.y76{bottom:458.010150px;}
.y89{bottom:459.752400px;}
.y2{bottom:462.923850px;}
.ya3{bottom:472.641750px;}
.y58{bottom:473.628000px;}
.yec{bottom:474.383850px;}
.y17{bottom:476.004300px;}
.y3f{bottom:476.125950px;}
.y75{bottom:476.760150px;}
.y88{bottom:478.502400px;}
.ya2{bottom:491.391750px;}
.yeb{bottom:493.133850px;}
.y16{bottom:494.754300px;}
.y3e{bottom:494.875950px;}
.y1{bottom:498.923850px;}
.y57{bottom:509.385750px;}
.ya1{bottom:510.141750px;}
.yea{bottom:511.883850px;}
.y74{bottom:512.766150px;}
.y3d{bottom:513.625950px;}
.y87{bottom:514.260150px;}
.ydc{bottom:514.508250px;}
.y56{bottom:528.135750px;}
.ya0{bottom:528.891750px;}
.ye9{bottom:530.633850px;}
.y15{bottom:530.760150px;}
.y3c{bottom:532.375950px;}
.y86{bottom:533.010150px;}
.y55{bottom:546.885750px;}
.y9f{bottom:547.641750px;}
.ye8{bottom:549.383850px;}
.y3b{bottom:551.125950px;}
.y85{bottom:551.760150px;}
.y54{bottom:565.635750px;}
.y9e{bottom:566.391750px;}
.y73{bottom:568.133850px;}
.y3a{bottom:569.875950px;}
.y84{bottom:570.510150px;}
.y53{bottom:584.385750px;}
.y9d{bottom:585.141750px;}
.y14{bottom:586.128000px;}
.y72{bottom:586.883850px;}
.y39{bottom:588.625950px;}
.y52{bottom:603.135750px;}
.y9c{bottom:603.891750px;}
.y13{bottom:604.878000px;}
.y83{bottom:605.016150px;}
.y71{bottom:605.633850px;}
.ycd{bottom:606.268050px;}
.y38{bottom:607.375950px;}
.y51{bottom:621.885750px;}
.y9b{bottom:622.641750px;}
.y12{bottom:623.628000px;}
.y70{bottom:624.383850px;}
.ycc{bottom:625.018050px;}
.y37{bottom:626.125950px;}
.y50{bottom:640.635750px;}
.y9a{bottom:641.391750px;}
.y11{bottom:642.378000px;}
.y6f{bottom:643.133850px;}
.ycb{bottom:643.768050px;}
.y36{bottom:644.875950px;}
.y4f{bottom:659.385750px;}
.y99{bottom:660.141750px;}
.y10{bottom:661.128000px;}
.y6e{bottom:661.883850px;}
.yca{bottom:662.518050px;}
.ydb{bottom:663.625950px;}
.y4e{bottom:678.135750px;}
.y98{bottom:678.891750px;}
.y35{bottom:680.633850px;}
.yc9{bottom:681.268050px;}
.yf{bottom:696.885750px;}
.y97{bottom:697.641750px;}
.y34{bottom:699.383850px;}
.yc8{bottom:700.018050px;}
.ye{bottom:715.635750px;}
.y96{bottom:716.391750px;}
.y33{bottom:718.133850px;}
.yc7{bottom:718.768050px;}
.yd{bottom:734.385750px;}
.y95{bottom:735.141750px;}
.y32{bottom:736.883850px;}
.yc6{bottom:737.518050px;}
.yc{bottom:753.135750px;}
.y94{bottom:753.891750px;}
.y6d{bottom:755.633850px;}
.yc5{bottom:756.268050px;}
.yb{bottom:771.885900px;}
.y31{bottom:772.641750px;}
.y6c{bottom:774.383850px;}
.ya{bottom:790.635900px;}
.yc4{bottom:790.774050px;}
.y30{bottom:791.391750px;}
.y6b{bottom:793.133850px;}
.y9{bottom:809.385900px;}
.y2f{bottom:810.141750px;}
.y6a{bottom:811.883850px;}
.y8{bottom:828.135900px;}
.y2e{bottom:828.891750px;}
.y2d{bottom:847.641750px;}
.y7{bottom:864.141750px;}
.y2c{bottom:866.391750px;}
.y2b{bottom:916.423245px;}
.y6{bottom:926.663400px;}
.h4{height:40.194000px;}
.h8{height:45.594000px;}
.h5{height:46.980000px;}
.hb{height:51.624000px;}
.ha{height:52.200000px;}
.h9{height:64.152000px;}
.hd{height:64.512000px;}
.h3{height:67.140000px;}
.h2{height:88.440000px;}
.h0{height:968.669700px;}
.h1{height:969.000000px;}
.hc{height:1016.220345px;}
.h7{height:1036.500000px;}
.h6{height:1036.701000px;}
.w0{width:683.788200px;}
.w1{width:684.000000px;}
.w4{width:710.079000px;}
.w3{width:751.500000px;}
.w2{width:751.819500px;}
.x0{left:0.000000px;}
.x5{left:31.500000px;}
.x2{left:74.019600px;}
.x1{left:103.783350px;}
.x3{left:137.799150px;}
.x6{left:256.148700px;}
.x7{left:660.127950px;}
.x4{left:662.588700px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.759467pt;}
.lsc{letter-spacing:-5.379733pt;}
.ls7{letter-spacing:-4.160000pt;}
.lse{letter-spacing:-4.024533pt;}
.ls9{letter-spacing:-2.217600pt;}
.ls4{letter-spacing:-1.269333pt;}
.lsd{letter-spacing:-0.821333pt;}
.ls1{letter-spacing:-0.800000pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000267pt;}
.ls6{letter-spacing:0.310667pt;}
.ls5{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.739200pt;}
.lsb{letter-spacing:1.617600pt;}
.ls2{letter-spacing:3.037333pt;}
.ws10{word-spacing:-14.773333pt;}
.ws3{word-spacing:-14.240000pt;}
.ws26{word-spacing:-13.653333pt;}
.ws1{word-spacing:-12.800000pt;}
.ws34{word-spacing:-11.704000pt;}
.ws27{word-spacing:-10.964800pt;}
.ws36{word-spacing:-10.143467pt;}
.ws2{word-spacing:-8.301920pt;}
.wsa{word-spacing:-7.797333pt;}
.ws39{word-spacing:-2.453333pt;}
.ws15{word-spacing:-2.186667pt;}
.ws3c{word-spacing:-2.012267pt;}
.ws3b{word-spacing:-1.333333pt;}
.ws1d{word-spacing:-1.173333pt;}
.wsd{word-spacing:-1.066667pt;}
.ws1f{word-spacing:-1.013333pt;}
.ws17{word-spacing:-0.906667pt;}
.ws16{word-spacing:-0.746667pt;}
.ws13{word-spacing:-0.533333pt;}
.ws18{word-spacing:-0.426667pt;}
.ws2d{word-spacing:-0.287467pt;}
.ws2f{word-spacing:-0.164267pt;}
.ws14{word-spacing:-0.106667pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.373333pt;}
.ws23{word-spacing:0.480000pt;}
.ws8{word-spacing:0.533333pt;}
.wse{word-spacing:0.640000pt;}
.ws9{word-spacing:0.821333pt;}
.ws1e{word-spacing:0.853333pt;}
.ws20{word-spacing:1.013333pt;}
.ws32{word-spacing:1.120000pt;}
.ws31{word-spacing:1.232000pt;}
.ws3d{word-spacing:1.724800pt;}
.ws7{word-spacing:1.813333pt;}
.ws2e{word-spacing:1.848000pt;}
.ws5{word-spacing:1.866667pt;}
.ws2b{word-spacing:1.973333pt;}
.ws33{word-spacing:2.217600pt;}
.ws25{word-spacing:2.293333pt;}
.ws2c{word-spacing:2.299733pt;}
.ws28{word-spacing:2.453333pt;}
.ws21{word-spacing:2.773333pt;}
.ws22{word-spacing:2.880000pt;}
.ws30{word-spacing:2.986667pt;}
.ws4{word-spacing:3.040000pt;}
.ws1a{word-spacing:3.200000pt;}
.ws1b{word-spacing:3.306667pt;}
.ws37{word-spacing:3.893333pt;}
.ws3f{word-spacing:4.024533pt;}
.ws38{word-spacing:4.053333pt;}
.ws12{word-spacing:4.160000pt;}
.ws19{word-spacing:4.266667pt;}
.ws35{word-spacing:4.558400pt;}
.ws6{word-spacing:4.693333pt;}
.wsb{word-spacing:5.226667pt;}
.ws3e{word-spacing:5.379733pt;}
.wsf{word-spacing:5.493333pt;}
.ws11{word-spacing:6.026667pt;}
.ws3a{word-spacing:6.186667pt;}
.ws24{word-spacing:6.346667pt;}
.ws29{word-spacing:6.613333pt;}
.ws2a{word-spacing:7.573333pt;}
.ws1c{word-spacing:9.013333pt;}
._f{margin-left:-7.341333pt;}
._6{margin-left:-6.053333pt;}
._3{margin-left:-4.442667pt;}
._1{margin-left:-2.773333pt;}
._a{margin-left:-1.872000pt;}
._0{margin-left:-0.970667pt;}
._4{width:1.677333pt;}
._5{width:2.997333pt;}
._7{width:4.346667pt;}
._8{width:5.712000pt;}
._9{width:6.709333pt;}
._e{width:7.696000pt;}
._11{width:8.810667pt;}
._12{width:9.720000pt;}
._c{width:11.189333pt;}
._b{width:12.085333pt;}
._d{width:13.264000pt;}
._2{width:161.673067pt;}
._10{width:162.987733pt;}
._13{width:163.939733pt;}
.fs7{font-size:31.093333pt;}
.fs2{font-size:41.066667pt;}
.fs4{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:9.102360pt;}
.y4{bottom:73.354267pt;}
.yff{bottom:103.590533pt;}
.y29{bottom:103.590667pt;}
.yfe{bottom:115.910533pt;}
.y28{bottom:115.910667pt;}
.y10a{bottom:121.579867pt;}
.y69{bottom:121.580133pt;}
.yfd{bottom:128.230533pt;}
.y27{bottom:128.230667pt;}
.y3{bottom:129.960133pt;}
.y82{bottom:133.900133pt;}
.y109{bottom:139.569067pt;}
.yb0{bottom:139.569467pt;}
.y68{bottom:139.569600pt;}
.yfc{bottom:140.550533pt;}
.y26{bottom:146.220133pt;}
.y108{bottom:151.889067pt;}
.yaf{bottom:151.889467pt;}
.y81{bottom:151.889600pt;}
.yfb{bottom:152.870533pt;}
.y67{bottom:157.558933pt;}
.yc3{bottom:158.540133pt;}
.y107{bottom:164.209067pt;}
.yae{bottom:164.209467pt;}
.y66{bottom:169.878933pt;}
.yfa{bottom:170.859867pt;}
.yc2{bottom:170.860133pt;}
.y4d{bottom:174.771600pt;}
.y93{bottom:175.548400pt;}
.yda{bottom:176.529467pt;}
.y106{bottom:182.198400pt;}
.yf9{bottom:183.179867pt;}
.yc1{bottom:183.180133pt;}
.yd9{bottom:188.849467pt;}
.y25{bottom:189.781600pt;}
.y4c{bottom:191.438267pt;}
.y80{bottom:192.565867pt;}
.y105{bottom:194.518400pt;}
.yf8{bottom:195.499867pt;}
.yc0{bottom:195.500133pt;}
.ye7{bottom:196.647733pt;}
.yd8{bottom:201.169600pt;}
.y65{bottom:204.336000pt;}
.y24{bottom:206.448267pt;}
.yad{bottom:206.556400pt;}
.ybf{bottom:207.820133pt;}
.y4b{bottom:208.104933pt;}
.y7f{bottom:209.232533pt;}
.y92{bottom:210.781067pt;}
.y104{bottom:212.507733pt;}
.ye6{bottom:213.314400pt;}
.yf7{bottom:213.489067pt;}
.yd7{bottom:213.489600pt;}
.y64{bottom:221.002667pt;}
.y23{bottom:223.114933pt;}
.yac{bottom:223.223067pt;}
.y103{bottom:224.827733pt;}
.yf6{bottom:225.809067pt;}
.yd6{bottom:225.809467pt;}
.ybe{bottom:225.809600pt;}
.y7e{bottom:225.899200pt;}
.y91{bottom:227.447733pt;}
.y102{bottom:237.147733pt;}
.y63{bottom:237.669333pt;}
.yf5{bottom:238.129067pt;}
.ybd{bottom:238.129600pt;}
.y22{bottom:239.781600pt;}
.y4a{bottom:239.889733pt;}
.y7d{bottom:242.565867pt;}
.y90{bottom:244.114400pt;}
.ye5{bottom:245.099200pt;}
.y101{bottom:249.467733pt;}
.ybc{bottom:250.449600pt;}
.y62{bottom:254.336000pt;}
.yf4{bottom:256.118400pt;}
.y21{bottom:256.448267pt;}
.y49{bottom:256.556400pt;}
.y7c{bottom:259.232533pt;}
.ye4{bottom:261.765867pt;}
.y100{bottom:261.787733pt;}
.ybb{bottom:262.769600pt;}
.yf3{bottom:268.438400pt;}
.y61{bottom:271.002667pt;}
.yab{bottom:271.674533pt;}
.y20{bottom:273.114933pt;}
.y48{bottom:273.223067pt;}
.yd5{bottom:273.365867pt;}
.y8f{bottom:274.786400pt;}
.yba{bottom:275.089600pt;}
.y7b{bottom:275.899200pt;}
.ye3{bottom:278.432533pt;}
.yb9{bottom:287.409600pt;}
.y60{bottom:287.669333pt;}
.yaa{bottom:288.341200pt;}
.y1f{bottom:289.781600pt;}
.y47{bottom:289.889733pt;}
.yd4{bottom:290.032533pt;}
.y7a{bottom:292.565867pt;}
.ye2{bottom:295.099200pt;}
.yb8{bottom:299.729600pt;}
.y5f{bottom:304.336000pt;}
.ya9{bottom:305.007867pt;}
.y1e{bottom:306.448267pt;}
.y46{bottom:306.556400pt;}
.yd3{bottom:306.699200pt;}
.ye1{bottom:311.765867pt;}
.yb7{bottom:317.718933pt;}
.y5e{bottom:321.002667pt;}
.yf2{bottom:321.674533pt;}
.y1d{bottom:323.114933pt;}
.y45{bottom:323.223067pt;}
.y79{bottom:323.237733pt;}
.yd2{bottom:323.365867pt;}
.y8e{bottom:325.335467pt;}
.ye0{bottom:328.432533pt;}
.yb6{bottom:330.038933pt;}
.ya8{bottom:336.792667pt;}
.y5d{bottom:337.669333pt;}
.yf1{bottom:338.341200pt;}
.y1c{bottom:339.781600pt;}
.y44{bottom:339.889733pt;}
.yd1{bottom:340.032533pt;}
.y8d{bottom:342.002133pt;}
.yb5{bottom:342.358933pt;}
.ydf{bottom:345.099200pt;}
.ya7{bottom:353.459333pt;}
.y5c{bottom:354.336000pt;}
.yb4{bottom:354.678933pt;}
.yf0{bottom:355.007867pt;}
.y1b{bottom:356.448267pt;}
.y43{bottom:356.556400pt;}
.yd0{bottom:356.699200pt;}
.y8c{bottom:358.668800pt;}
.yde{bottom:361.765867pt;}
.yb3{bottom:366.998933pt;}
.ya6{bottom:370.126000pt;}
.y5b{bottom:371.002667pt;}
.yef{bottom:371.674533pt;}
.y1a{bottom:373.114933pt;}
.y42{bottom:373.223067pt;}
.y78{bottom:373.786800pt;}
.y8b{bottom:375.335467pt;}
.yb2{bottom:379.318933pt;}
.y5{bottom:379.860800pt;}
.ya5{bottom:386.792667pt;}
.ycf{bottom:387.371200pt;}
.y5a{bottom:387.669333pt;}
.yee{bottom:388.341200pt;}
.y19{bottom:389.781600pt;}
.y41{bottom:389.889733pt;}
.y77{bottom:390.453467pt;}
.yb1{bottom:391.638933pt;}
.y8a{bottom:392.002133pt;}
.ydd{bottom:393.550667pt;}
.ya4{bottom:403.459333pt;}
.y59{bottom:404.336000pt;}
.yed{bottom:405.007867pt;}
.y18{bottom:406.448267pt;}
.y40{bottom:406.556400pt;}
.yce{bottom:406.571067pt;}
.y76{bottom:407.120133pt;}
.y89{bottom:408.668800pt;}
.y2{bottom:411.487867pt;}
.ya3{bottom:420.126000pt;}
.y58{bottom:421.002667pt;}
.yec{bottom:421.674533pt;}
.y17{bottom:423.114933pt;}
.y3f{bottom:423.223067pt;}
.y75{bottom:423.786800pt;}
.y88{bottom:425.335467pt;}
.ya2{bottom:436.792667pt;}
.yeb{bottom:438.341200pt;}
.y16{bottom:439.781600pt;}
.y3e{bottom:439.889733pt;}
.y1{bottom:443.487867pt;}
.y57{bottom:452.787333pt;}
.ya1{bottom:453.459333pt;}
.yea{bottom:455.007867pt;}
.y74{bottom:455.792133pt;}
.y3d{bottom:456.556400pt;}
.y87{bottom:457.120133pt;}
.ydc{bottom:457.340667pt;}
.y56{bottom:469.454000pt;}
.ya0{bottom:470.126000pt;}
.ye9{bottom:471.674533pt;}
.y15{bottom:471.786800pt;}
.y3c{bottom:473.223067pt;}
.y86{bottom:473.786800pt;}
.y55{bottom:486.120667pt;}
.y9f{bottom:486.792667pt;}
.ye8{bottom:488.341200pt;}
.y3b{bottom:489.889733pt;}
.y85{bottom:490.453467pt;}
.y54{bottom:502.787333pt;}
.y9e{bottom:503.459333pt;}
.y73{bottom:505.007867pt;}
.y3a{bottom:506.556400pt;}
.y84{bottom:507.120133pt;}
.y53{bottom:519.454000pt;}
.y9d{bottom:520.126000pt;}
.y14{bottom:521.002667pt;}
.y72{bottom:521.674533pt;}
.y39{bottom:523.223067pt;}
.y52{bottom:536.120667pt;}
.y9c{bottom:536.792667pt;}
.y13{bottom:537.669333pt;}
.y83{bottom:537.792133pt;}
.y71{bottom:538.341200pt;}
.ycd{bottom:538.904933pt;}
.y38{bottom:539.889733pt;}
.y51{bottom:552.787333pt;}
.y9b{bottom:553.459333pt;}
.y12{bottom:554.336000pt;}
.y70{bottom:555.007867pt;}
.ycc{bottom:555.571600pt;}
.y37{bottom:556.556400pt;}
.y50{bottom:569.454000pt;}
.y9a{bottom:570.126000pt;}
.y11{bottom:571.002667pt;}
.y6f{bottom:571.674533pt;}
.ycb{bottom:572.238267pt;}
.y36{bottom:573.223067pt;}
.y4f{bottom:586.120667pt;}
.y99{bottom:586.792667pt;}
.y10{bottom:587.669333pt;}
.y6e{bottom:588.341200pt;}
.yca{bottom:588.904933pt;}
.ydb{bottom:589.889733pt;}
.y4e{bottom:602.787333pt;}
.y98{bottom:603.459333pt;}
.y35{bottom:605.007867pt;}
.yc9{bottom:605.571600pt;}
.yf{bottom:619.454000pt;}
.y97{bottom:620.126000pt;}
.y34{bottom:621.674533pt;}
.yc8{bottom:622.238267pt;}
.ye{bottom:636.120667pt;}
.y96{bottom:636.792667pt;}
.y33{bottom:638.341200pt;}
.yc7{bottom:638.904933pt;}
.yd{bottom:652.787333pt;}
.y95{bottom:653.459333pt;}
.y32{bottom:655.007867pt;}
.yc6{bottom:655.571600pt;}
.yc{bottom:669.454000pt;}
.y94{bottom:670.126000pt;}
.y6d{bottom:671.674533pt;}
.yc5{bottom:672.238267pt;}
.yb{bottom:686.120800pt;}
.y31{bottom:686.792667pt;}
.y6c{bottom:688.341200pt;}
.ya{bottom:702.787467pt;}
.yc4{bottom:702.910267pt;}
.y30{bottom:703.459333pt;}
.y6b{bottom:705.007867pt;}
.y9{bottom:719.454133pt;}
.y2f{bottom:720.126000pt;}
.y6a{bottom:721.674533pt;}
.y8{bottom:736.120800pt;}
.y2e{bottom:736.792667pt;}
.y2d{bottom:753.459333pt;}
.y7{bottom:768.126000pt;}
.y2c{bottom:770.126000pt;}
.y2b{bottom:814.598440pt;}
.y6{bottom:823.700800pt;}
.h4{height:35.728000pt;}
.h8{height:40.528000pt;}
.h5{height:41.760000pt;}
.hb{height:45.888000pt;}
.ha{height:46.400000pt;}
.h9{height:57.024000pt;}
.hd{height:57.344000pt;}
.h3{height:59.680000pt;}
.h2{height:78.613333pt;}
.h0{height:861.039733pt;}
.h1{height:861.333333pt;}
.hc{height:903.306973pt;}
.h7{height:921.333333pt;}
.h6{height:921.512000pt;}
.w0{width:607.811733pt;}
.w1{width:608.000000pt;}
.w4{width:631.181333pt;}
.w3{width:668.000000pt;}
.w2{width:668.284000pt;}
.x0{left:0.000000pt;}
.x5{left:28.000000pt;}
.x2{left:65.795200pt;}
.x1{left:92.251867pt;}
.x3{left:122.488133pt;}
.x6{left:227.687733pt;}
.x7{left:586.780400pt;}
.x4{left:588.967733pt;}
}




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