
    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_e043121f808297e4a8244a79.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c3cdf620dc665546c0102f5b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_181a5fb8ada7e98d9629ddfc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.786000px;}
.ls17{letter-spacing:-0.544800px;}
.lsa{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.463800px;}
.lse{letter-spacing:-0.431400px;}
.ls1a{letter-spacing:-0.228000px;}
.ls3{letter-spacing:-0.132600px;}
.lsb{letter-spacing:-0.107400px;}
.lsc{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.023760px;}
.ls10{letter-spacing:0.025200px;}
.ls2{letter-spacing:0.038880px;}
.ls6{letter-spacing:0.066000px;}
.ls9{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.175200px;}
.ls16{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.306000px;}
.ls12{letter-spacing:0.479400px;}
.ls18{letter-spacing:0.479520px;}
.ls11{letter-spacing:0.744000px;}
.ls14{letter-spacing:0.858000px;}
.ls19{letter-spacing:12.186720px;}
.ls15{letter-spacing:42.426720px;}
.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:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws11{word-spacing:-14.363760px;}
.wsf{word-spacing:-14.249760px;}
.ws8{word-spacing:-13.811760px;}
.wsd{word-spacing:-13.680960px;}
.ws7{word-spacing:-13.646160px;}
.wse{word-spacing:-13.530960px;}
.ws10{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.440960px;}
.wsb{word-spacing:-13.398360px;}
.ws12{word-spacing:-13.277760px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._29{margin-left:-4.441920px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.317240px;}
._2c{width:2.756400px;}
._2d{width:4.661280px;}
._32{width:5.970960px;}
._31{width:7.134000px;}
._30{width:8.945040px;}
._2f{width:10.458000px;}
._2e{width:12.409920px;}
._3f{width:14.604480px;}
._35{width:15.657120px;}
._34{width:17.034960px;}
._3d{width:18.563760px;}
._38{width:20.315880px;}
._36{width:21.394080px;}
._37{width:22.467240px;}
._3a{width:24.319800px;}
._39{width:25.398000px;}
._2b{width:37.195680px;}
._2a{width:38.277120px;}
._3e{width:40.397760px;}
._3b{width:41.592960px;}
._3c{width:42.847920px;}
._33{width:202.638240px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:6.660000px;}
.yce{bottom:17.100000px;}
.yd0{bottom:17.280000px;}
.ycd{bottom:27.570000px;}
.y91{bottom:27.720000px;}
.yeb{bottom:27.765000px;}
.yed{bottom:48.600000px;}
.yba{bottom:48.780000px;}
.y6{bottom:61.380000px;}
.y112{bottom:91.260000px;}
.y61{bottom:94.320000px;}
.yf7{bottom:98.100000px;}
.yb7{bottom:101.880000px;}
.y8d{bottom:103.320000px;}
.y111{bottom:112.320000px;}
.y30{bottom:113.220000px;}
.y60{bottom:115.380000px;}
.yb6{bottom:117.000000px;}
.yf6{bottom:119.160000px;}
.y8c{bottom:124.380000px;}
.ye6{bottom:127.440000px;}
.y110{bottom:133.380000px;}
.y2f{bottom:134.280000px;}
.y5f{bottom:136.440000px;}
.yf5{bottom:140.220000px;}
.y8b{bottom:145.440000px;}
.ye5{bottom:148.500000px;}
.yc7{bottom:149.220000px;}
.y10f{bottom:154.470000px;}
.y2e{bottom:155.370000px;}
.y5e{bottom:157.530000px;}
.yb5{bottom:159.870000px;}
.yf4{bottom:161.310000px;}
.y8a{bottom:166.530000px;}
.ye4{bottom:169.590000px;}
.yc6{bottom:170.310000px;}
.y10e{bottom:175.530000px;}
.y2d{bottom:176.430000px;}
.y5d{bottom:178.590000px;}
.yf3{bottom:182.370000px;}
.y89{bottom:187.590000px;}
.ye3{bottom:190.650000px;}
.yc5{bottom:191.370000px;}
.y10d{bottom:196.590000px;}
.y2c{bottom:197.490000px;}
.y7e{bottom:199.650000px;}
.yb4{bottom:202.710000px;}
.yf2{bottom:203.430000px;}
.y5c{bottom:208.650000px;}
.ye2{bottom:211.530000px;}
.yc4{bottom:212.430000px;}
.y10c{bottom:217.650000px;}
.y2b{bottom:218.550000px;}
.y7d{bottom:220.710000px;}
.yf1{bottom:224.490000px;}
.y5b{bottom:229.710000px;}
.ye1{bottom:232.590000px;}
.yc3{bottom:233.490000px;}
.y10b{bottom:238.710000px;}
.y2a{bottom:239.610000px;}
.y7c{bottom:241.770000px;}
.yb3{bottom:245.550000px;}
.y5a{bottom:250.770000px;}
.ye0{bottom:253.650000px;}
.yc2{bottom:254.550000px;}
.y10a{bottom:259.770000px;}
.y29{bottom:260.670000px;}
.y7b{bottom:262.830000px;}
.yf0{bottom:266.610000px;}
.y59{bottom:271.830000px;}
.ydf{bottom:274.710000px;}
.yc1{bottom:275.610000px;}
.y109{bottom:280.830000px;}
.y28{bottom:281.730000px;}
.y7a{bottom:283.890000px;}
.yef{bottom:287.670000px;}
.yb2{bottom:288.390000px;}
.y58{bottom:292.890000px;}
.yde{bottom:295.770000px;}
.yc0{bottom:296.670000px;}
.y108{bottom:301.890000px;}
.y27{bottom:302.790000px;}
.y79{bottom:304.950000px;}
.y57{bottom:313.950000px;}
.ydd{bottom:316.830000px;}
.ybf{bottom:317.730000px;}
.y107{bottom:322.950000px;}
.y26{bottom:323.850000px;}
.y78{bottom:326.010000px;}
.yb1{bottom:331.230000px;}
.y56{bottom:335.010000px;}
.ydc{bottom:337.890000px;}
.ybe{bottom:338.790000px;}
.y106{bottom:344.010000px;}
.y25{bottom:344.910000px;}
.y77{bottom:347.070000px;}
.y55{bottom:356.070000px;}
.ydb{bottom:358.950000px;}
.yb0{bottom:359.850000px;}
.y105{bottom:365.070000px;}
.y24{bottom:365.970000px;}
.y76{bottom:368.130000px;}
.y54{bottom:377.130000px;}
.yda{bottom:380.010000px;}
.yaf{bottom:380.910000px;}
.y104{bottom:386.130000px;}
.y23{bottom:387.030000px;}
.y75{bottom:389.190000px;}
.y53{bottom:398.190000px;}
.yd9{bottom:401.115000px;}
.yae{bottom:402.015000px;}
.y103{bottom:407.235000px;}
.y22{bottom:408.135000px;}
.y74{bottom:410.295000px;}
.ybd{bottom:417.135000px;}
.y52{bottom:419.295000px;}
.yd8{bottom:422.175000px;}
.yad{bottom:422.895000px;}
.y102{bottom:428.295000px;}
.y21{bottom:429.195000px;}
.y73{bottom:431.355000px;}
.y51{bottom:440.355000px;}
.yd7{bottom:443.235000px;}
.yac{bottom:443.955000px;}
.y101{bottom:449.355000px;}
.y20{bottom:450.255000px;}
.y72{bottom:452.415000px;}
.y50{bottom:461.415000px;}
.yd6{bottom:464.295000px;}
.yab{bottom:465.015000px;}
.y100{bottom:470.415000px;}
.y1f{bottom:471.315000px;}
.y71{bottom:473.475000px;}
.ybc{bottom:481.035000px;}
.y4f{bottom:482.475000px;}
.yd5{bottom:485.355000px;}
.yaa{bottom:486.075000px;}
.yff{bottom:491.475000px;}
.y1e{bottom:492.375000px;}
.y70{bottom:494.535000px;}
.y4e{bottom:503.535000px;}
.yd4{bottom:506.415000px;}
.ya9{bottom:507.135000px;}
.yfe{bottom:512.535000px;}
.y1d{bottom:513.435000px;}
.y6f{bottom:515.595000px;}
.y4d{bottom:524.595000px;}
.yd3{bottom:527.475000px;}
.ya8{bottom:528.195000px;}
.yfd{bottom:533.595000px;}
.y1c{bottom:534.495000px;}
.y6e{bottom:536.655000px;}
.ybb{bottom:544.935000px;}
.y4c{bottom:545.655000px;}
.yd2{bottom:548.535000px;}
.ya7{bottom:549.255000px;}
.yfc{bottom:554.655000px;}
.y1b{bottom:557.895000px;}
.y4b{bottom:566.715000px;}
.yd1{bottom:569.595000px;}
.ya6{bottom:570.315000px;}
.yfb{bottom:575.715000px;}
.ycf{bottom:584.715000px;}
.y1a{bottom:587.775000px;}
.ya5{bottom:591.375000px;}
.yfa{bottom:596.775000px;}
.y19{bottom:608.835000px;}
.ya4{bottom:612.435000px;}
.yf9{bottom:617.835000px;}
.ycc{bottom:627.735000px;}
.y18{bottom:629.895000px;}
.ya3{bottom:633.495000px;}
.yf8{bottom:638.895000px;}
.y6d{bottom:650.805000px;}
.y17{bottom:650.985000px;}
.yb9{bottom:651.705000px;}
.ya2{bottom:654.585000px;}
.y4a{bottom:659.805000px;}
.ycb{bottom:670.605000px;}
.y6c{bottom:671.865000px;}
.y16{bottom:672.045000px;}
.ya1{bottom:675.645000px;}
.y49{bottom:680.865000px;}
.y6b{bottom:692.925000px;}
.y15{bottom:693.105000px;}
.yb8{bottom:694.545000px;}
.ya0{bottom:696.705000px;}
.y48{bottom:701.925000px;}
.yca{bottom:713.445000px;}
.y6a{bottom:713.985000px;}
.y14{bottom:714.165000px;}
.y9f{bottom:717.765000px;}
.y47{bottom:722.985000px;}
.y69{bottom:735.045000px;}
.y13{bottom:735.225000px;}
.y9e{bottom:738.825000px;}
.y46{bottom:744.045000px;}
.y68{bottom:756.105000px;}
.y12{bottom:756.285000px;}
.y9d{bottom:759.885000px;}
.y45{bottom:765.105000px;}
.yee{bottom:775.005000px;}
.y67{bottom:777.165000px;}
.y11{bottom:777.345000px;}
.y9c{bottom:780.945000px;}
.y44{bottom:786.165000px;}
.y66{bottom:798.225000px;}
.y10{bottom:798.405000px;}
.y9b{bottom:802.005000px;}
.y43{bottom:807.225000px;}
.yec{bottom:818.025000px;}
.y65{bottom:819.285000px;}
.yf{bottom:819.465000px;}
.y9a{bottom:823.065000px;}
.y42{bottom:828.285000px;}
.y64{bottom:840.345000px;}
.ye{bottom:840.525000px;}
.yc9{bottom:841.245000px;}
.y99{bottom:844.125000px;}
.y41{bottom:849.345000px;}
.y63{bottom:861.405000px;}
.yd{bottom:863.745000px;}
.y98{bottom:865.185000px;}
.y40{bottom:870.405000px;}
.yea{bottom:881.925000px;}
.y62{bottom:882.465000px;}
.yc8{bottom:884.085000px;}
.y97{bottom:886.245000px;}
.yc{bottom:890.025000px;}
.y3f{bottom:891.465000px;}
.y88{bottom:903.570000px;}
.y96{bottom:907.350000px;}
.yb{bottom:911.130000px;}
.y3e{bottom:912.570000px;}
.y95{bottom:922.470000px;}
.y87{bottom:924.630000px;}
.ye9{bottom:924.810000px;}
.ya{bottom:927.870000px;}
.y3d{bottom:933.630000px;}
.y86{bottom:945.690000px;}
.y9{bottom:950.190000px;}
.y3c{bottom:954.690000px;}
.y94{bottom:965.310000px;}
.y85{bottom:966.750000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:975.750000px;}
.y84{bottom:987.810000px;}
.ye8{bottom:988.710000px;}
.y3a{bottom:996.810000px;}
.y93{bottom:1008.330000px;}
.y83{bottom:1008.870000px;}
.y7{bottom:1009.050000px;}
.y39{bottom:1017.870000px;}
.y82{bottom:1029.930000px;}
.ye7{bottom:1031.550000px;}
.y38{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.y81{bottom:1050.990000px;}
.y92{bottom:1051.170000px;}
.y37{bottom:1059.990000px;}
.y80{bottom:1072.050000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y7f{bottom:1093.110000px;}
.y90{bottom:1094.010000px;}
.y35{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y34{bottom:1123.170000px;}
.y8e{bottom:1136.850000px;}
.y33{bottom:1144.230000px;}
.y2{bottom:1145.670000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.hb{height:21.060000px;}
.h9{height:21.096000px;}
.h7{height:38.671172px;}
.hf{height:41.976000px;}
.ha{height:42.120000px;}
.hc{height:42.156000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h10{height:63.000000px;}
.he{height:63.180000px;}
.hd{height:63.216000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:23.040000px;}
.wa{width:30.600000px;}
.w8{width:30.636000px;}
.w9{width:30.780000px;}
.w5{width:40.320000px;}
.w6{width:42.840000px;}
.w4{width:51.516000px;}
.wd{width:51.696000px;}
.wb{width:81.396000px;}
.wc{width:375.735000px;}
.w3{width:383.295000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x6{left:53.999987px;}
.x17{left:80.999987px;}
.x7{left:108.035987px;}
.x5{left:176.969987px;}
.x3{left:272.234987px;}
.x2{left:350.534987px;}
.x4{left:419.114987px;}
.x13{left:431.175000px;}
.x9{left:438.915000px;}
.x1{left:479.264987px;}
.x14{left:483.585000px;}
.xa{left:491.145000px;}
.x15{left:524.805000px;}
.xb{left:532.365000px;}
.x16{left:568.365000px;}
.xc{left:575.925000px;}
.xd{left:599.865000px;}
.xe{left:631.230000px;}
.xf{left:662.730000px;}
.x10{left:694.050000px;}
.x11{left:725.550000px;}
.x12{left:757.050000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.698667pt;}
.ls17{letter-spacing:-0.484267pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.412267pt;}
.lse{letter-spacing:-0.383467pt;}
.ls1a{letter-spacing:-0.202667pt;}
.ls3{letter-spacing:-0.117867pt;}
.lsb{letter-spacing:-0.095467pt;}
.lsc{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.021120pt;}
.ls10{letter-spacing:0.022400pt;}
.ls2{letter-spacing:0.034560pt;}
.ls6{letter-spacing:0.058667pt;}
.ls9{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.155733pt;}
.ls16{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.272000pt;}
.ls12{letter-spacing:0.426133pt;}
.ls18{letter-spacing:0.426240pt;}
.ls11{letter-spacing:0.661333pt;}
.ls14{letter-spacing:0.762667pt;}
.ls19{letter-spacing:10.832640pt;}
.ls15{letter-spacing:37.712640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.767787pt;}
.wsf{word-spacing:-12.666453pt;}
.ws8{word-spacing:-12.277120pt;}
.wsd{word-spacing:-12.160853pt;}
.ws7{word-spacing:-12.129920pt;}
.wse{word-spacing:-12.027520pt;}
.ws10{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.947520pt;}
.wsb{word-spacing:-11.909653pt;}
.ws12{word-spacing:-11.802453pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._29{margin-left:-3.948373pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.170880pt;}
._2c{width:2.450133pt;}
._2d{width:4.143360pt;}
._32{width:5.307520pt;}
._31{width:6.341333pt;}
._30{width:7.951147pt;}
._2f{width:9.296000pt;}
._2e{width:11.031040pt;}
._3f{width:12.981760pt;}
._35{width:13.917440pt;}
._34{width:15.142187pt;}
._3d{width:16.501120pt;}
._38{width:18.058560pt;}
._36{width:19.016960pt;}
._37{width:19.970880pt;}
._3a{width:21.617600pt;}
._39{width:22.576000pt;}
._2b{width:33.062827pt;}
._2a{width:34.024107pt;}
._3e{width:35.909120pt;}
._3b{width:36.971520pt;}
._3c{width:38.087040pt;}
._33{width:180.122880pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:5.920000pt;}
.yce{bottom:15.200000pt;}
.yd0{bottom:15.360000pt;}
.ycd{bottom:24.506667pt;}
.y91{bottom:24.640000pt;}
.yeb{bottom:24.680000pt;}
.yed{bottom:43.200000pt;}
.yba{bottom:43.360000pt;}
.y6{bottom:54.560000pt;}
.y112{bottom:81.120000pt;}
.y61{bottom:83.840000pt;}
.yf7{bottom:87.200000pt;}
.yb7{bottom:90.560000pt;}
.y8d{bottom:91.840000pt;}
.y111{bottom:99.840000pt;}
.y30{bottom:100.640000pt;}
.y60{bottom:102.560000pt;}
.yb6{bottom:104.000000pt;}
.yf6{bottom:105.920000pt;}
.y8c{bottom:110.560000pt;}
.ye6{bottom:113.280000pt;}
.y110{bottom:118.560000pt;}
.y2f{bottom:119.360000pt;}
.y5f{bottom:121.280000pt;}
.yf5{bottom:124.640000pt;}
.y8b{bottom:129.280000pt;}
.ye5{bottom:132.000000pt;}
.yc7{bottom:132.640000pt;}
.y10f{bottom:137.306667pt;}
.y2e{bottom:138.106667pt;}
.y5e{bottom:140.026667pt;}
.yb5{bottom:142.106667pt;}
.yf4{bottom:143.386667pt;}
.y8a{bottom:148.026667pt;}
.ye4{bottom:150.746667pt;}
.yc6{bottom:151.386667pt;}
.y10e{bottom:156.026667pt;}
.y2d{bottom:156.826667pt;}
.y5d{bottom:158.746667pt;}
.yf3{bottom:162.106667pt;}
.y89{bottom:166.746667pt;}
.ye3{bottom:169.466667pt;}
.yc5{bottom:170.106667pt;}
.y10d{bottom:174.746667pt;}
.y2c{bottom:175.546667pt;}
.y7e{bottom:177.466667pt;}
.yb4{bottom:180.186667pt;}
.yf2{bottom:180.826667pt;}
.y5c{bottom:185.466667pt;}
.ye2{bottom:188.026667pt;}
.yc4{bottom:188.826667pt;}
.y10c{bottom:193.466667pt;}
.y2b{bottom:194.266667pt;}
.y7d{bottom:196.186667pt;}
.yf1{bottom:199.546667pt;}
.y5b{bottom:204.186667pt;}
.ye1{bottom:206.746667pt;}
.yc3{bottom:207.546667pt;}
.y10b{bottom:212.186667pt;}
.y2a{bottom:212.986667pt;}
.y7c{bottom:214.906667pt;}
.yb3{bottom:218.266667pt;}
.y5a{bottom:222.906667pt;}
.ye0{bottom:225.466667pt;}
.yc2{bottom:226.266667pt;}
.y10a{bottom:230.906667pt;}
.y29{bottom:231.706667pt;}
.y7b{bottom:233.626667pt;}
.yf0{bottom:236.986667pt;}
.y59{bottom:241.626667pt;}
.ydf{bottom:244.186667pt;}
.yc1{bottom:244.986667pt;}
.y109{bottom:249.626667pt;}
.y28{bottom:250.426667pt;}
.y7a{bottom:252.346667pt;}
.yef{bottom:255.706667pt;}
.yb2{bottom:256.346667pt;}
.y58{bottom:260.346667pt;}
.yde{bottom:262.906667pt;}
.yc0{bottom:263.706667pt;}
.y108{bottom:268.346667pt;}
.y27{bottom:269.146667pt;}
.y79{bottom:271.066667pt;}
.y57{bottom:279.066667pt;}
.ydd{bottom:281.626667pt;}
.ybf{bottom:282.426667pt;}
.y107{bottom:287.066667pt;}
.y26{bottom:287.866667pt;}
.y78{bottom:289.786667pt;}
.yb1{bottom:294.426667pt;}
.y56{bottom:297.786667pt;}
.ydc{bottom:300.346667pt;}
.ybe{bottom:301.146667pt;}
.y106{bottom:305.786667pt;}
.y25{bottom:306.586667pt;}
.y77{bottom:308.506667pt;}
.y55{bottom:316.506667pt;}
.ydb{bottom:319.066667pt;}
.yb0{bottom:319.866667pt;}
.y105{bottom:324.506667pt;}
.y24{bottom:325.306667pt;}
.y76{bottom:327.226667pt;}
.y54{bottom:335.226667pt;}
.yda{bottom:337.786667pt;}
.yaf{bottom:338.586667pt;}
.y104{bottom:343.226667pt;}
.y23{bottom:344.026667pt;}
.y75{bottom:345.946667pt;}
.y53{bottom:353.946667pt;}
.yd9{bottom:356.546667pt;}
.yae{bottom:357.346667pt;}
.y103{bottom:361.986667pt;}
.y22{bottom:362.786667pt;}
.y74{bottom:364.706667pt;}
.ybd{bottom:370.786667pt;}
.y52{bottom:372.706667pt;}
.yd8{bottom:375.266667pt;}
.yad{bottom:375.906667pt;}
.y102{bottom:380.706667pt;}
.y21{bottom:381.506667pt;}
.y73{bottom:383.426667pt;}
.y51{bottom:391.426667pt;}
.yd7{bottom:393.986667pt;}
.yac{bottom:394.626667pt;}
.y101{bottom:399.426667pt;}
.y20{bottom:400.226667pt;}
.y72{bottom:402.146667pt;}
.y50{bottom:410.146667pt;}
.yd6{bottom:412.706667pt;}
.yab{bottom:413.346667pt;}
.y100{bottom:418.146667pt;}
.y1f{bottom:418.946667pt;}
.y71{bottom:420.866667pt;}
.ybc{bottom:427.586667pt;}
.y4f{bottom:428.866667pt;}
.yd5{bottom:431.426667pt;}
.yaa{bottom:432.066667pt;}
.yff{bottom:436.866667pt;}
.y1e{bottom:437.666667pt;}
.y70{bottom:439.586667pt;}
.y4e{bottom:447.586667pt;}
.yd4{bottom:450.146667pt;}
.ya9{bottom:450.786667pt;}
.yfe{bottom:455.586667pt;}
.y1d{bottom:456.386667pt;}
.y6f{bottom:458.306667pt;}
.y4d{bottom:466.306667pt;}
.yd3{bottom:468.866667pt;}
.ya8{bottom:469.506667pt;}
.yfd{bottom:474.306667pt;}
.y1c{bottom:475.106667pt;}
.y6e{bottom:477.026667pt;}
.ybb{bottom:484.386667pt;}
.y4c{bottom:485.026667pt;}
.yd2{bottom:487.586667pt;}
.ya7{bottom:488.226667pt;}
.yfc{bottom:493.026667pt;}
.y1b{bottom:495.906667pt;}
.y4b{bottom:503.746667pt;}
.yd1{bottom:506.306667pt;}
.ya6{bottom:506.946667pt;}
.yfb{bottom:511.746667pt;}
.ycf{bottom:519.746667pt;}
.y1a{bottom:522.466667pt;}
.ya5{bottom:525.666667pt;}
.yfa{bottom:530.466667pt;}
.y19{bottom:541.186667pt;}
.ya4{bottom:544.386667pt;}
.yf9{bottom:549.186667pt;}
.ycc{bottom:557.986667pt;}
.y18{bottom:559.906667pt;}
.ya3{bottom:563.106667pt;}
.yf8{bottom:567.906667pt;}
.y6d{bottom:578.493333pt;}
.y17{bottom:578.653333pt;}
.yb9{bottom:579.293333pt;}
.ya2{bottom:581.853333pt;}
.y4a{bottom:586.493333pt;}
.ycb{bottom:596.093333pt;}
.y6c{bottom:597.213333pt;}
.y16{bottom:597.373333pt;}
.ya1{bottom:600.573333pt;}
.y49{bottom:605.213333pt;}
.y6b{bottom:615.933333pt;}
.y15{bottom:616.093333pt;}
.yb8{bottom:617.373333pt;}
.ya0{bottom:619.293333pt;}
.y48{bottom:623.933333pt;}
.yca{bottom:634.173333pt;}
.y6a{bottom:634.653333pt;}
.y14{bottom:634.813333pt;}
.y9f{bottom:638.013333pt;}
.y47{bottom:642.653333pt;}
.y69{bottom:653.373333pt;}
.y13{bottom:653.533333pt;}
.y9e{bottom:656.733333pt;}
.y46{bottom:661.373333pt;}
.y68{bottom:672.093333pt;}
.y12{bottom:672.253333pt;}
.y9d{bottom:675.453333pt;}
.y45{bottom:680.093333pt;}
.yee{bottom:688.893333pt;}
.y67{bottom:690.813333pt;}
.y11{bottom:690.973333pt;}
.y9c{bottom:694.173333pt;}
.y44{bottom:698.813333pt;}
.y66{bottom:709.533333pt;}
.y10{bottom:709.693333pt;}
.y9b{bottom:712.893333pt;}
.y43{bottom:717.533333pt;}
.yec{bottom:727.133333pt;}
.y65{bottom:728.253333pt;}
.yf{bottom:728.413333pt;}
.y9a{bottom:731.613333pt;}
.y42{bottom:736.253333pt;}
.y64{bottom:746.973333pt;}
.ye{bottom:747.133333pt;}
.yc9{bottom:747.773333pt;}
.y99{bottom:750.333333pt;}
.y41{bottom:754.973333pt;}
.y63{bottom:765.693333pt;}
.yd{bottom:767.773333pt;}
.y98{bottom:769.053333pt;}
.y40{bottom:773.693333pt;}
.yea{bottom:783.933333pt;}
.y62{bottom:784.413333pt;}
.yc8{bottom:785.853333pt;}
.y97{bottom:787.773333pt;}
.yc{bottom:791.133333pt;}
.y3f{bottom:792.413333pt;}
.y88{bottom:803.173333pt;}
.y96{bottom:806.533333pt;}
.yb{bottom:809.893333pt;}
.y3e{bottom:811.173333pt;}
.y95{bottom:819.973333pt;}
.y87{bottom:821.893333pt;}
.ye9{bottom:822.053333pt;}
.ya{bottom:824.773333pt;}
.y3d{bottom:829.893333pt;}
.y86{bottom:840.613333pt;}
.y9{bottom:844.613333pt;}
.y3c{bottom:848.613333pt;}
.y94{bottom:858.053333pt;}
.y85{bottom:859.333333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:867.333333pt;}
.y84{bottom:878.053333pt;}
.ye8{bottom:878.853333pt;}
.y3a{bottom:886.053333pt;}
.y93{bottom:896.293333pt;}
.y83{bottom:896.773333pt;}
.y7{bottom:896.933333pt;}
.y39{bottom:904.773333pt;}
.y82{bottom:915.493333pt;}
.ye7{bottom:916.933333pt;}
.y38{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.y81{bottom:934.213333pt;}
.y92{bottom:934.373333pt;}
.y37{bottom:942.213333pt;}
.y80{bottom:952.933333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y7f{bottom:971.653333pt;}
.y90{bottom:972.453333pt;}
.y35{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y34{bottom:998.373333pt;}
.y8e{bottom:1010.533333pt;}
.y33{bottom:1017.093333pt;}
.y2{bottom:1018.373333pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.hb{height:18.720000pt;}
.h9{height:18.752000pt;}
.h7{height:34.374375pt;}
.hf{height:37.312000pt;}
.ha{height:37.440000pt;}
.hc{height:37.472000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h10{height:56.000000pt;}
.he{height:56.160000pt;}
.hd{height:56.192000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:20.480000pt;}
.wa{width:27.200000pt;}
.w8{width:27.232000pt;}
.w9{width:27.360000pt;}
.w5{width:35.840000pt;}
.w6{width:38.080000pt;}
.w4{width:45.792000pt;}
.wd{width:45.952000pt;}
.wb{width:72.352000pt;}
.wc{width:333.986667pt;}
.w3{width:340.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x6{left:47.999988pt;}
.x17{left:71.999988pt;}
.x7{left:96.031988pt;}
.x5{left:157.306655pt;}
.x3{left:241.986655pt;}
.x2{left:311.586655pt;}
.x4{left:372.546655pt;}
.x13{left:383.266667pt;}
.x9{left:390.146667pt;}
.x1{left:426.013322pt;}
.x14{left:429.853333pt;}
.xa{left:436.573333pt;}
.x15{left:466.493333pt;}
.xb{left:473.213333pt;}
.x16{left:505.213333pt;}
.xc{left:511.933333pt;}
.xd{left:533.213333pt;}
.xe{left:561.093333pt;}
.xf{left:589.093333pt;}
.x10{left:616.933333pt;}
.x11{left:644.933333pt;}
.x12{left:672.933333pt;}
}




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