
    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_95ee2e2f9c81b179effd1bea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_793021c58b29c41c26fd5314.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_a522b094f823e643a9a5e291.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7a56864e04f3546fc09a8786.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2b49ccf88b5479247f0d3915.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957031;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_411e3a59493f0c1c15fe76ac.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_aec1d42ee4be860ac528be9e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e24e36a040e0ef1acc442ab5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_bfb613f5636fe63583c2d16d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls11{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.620000px;}
.ls7{letter-spacing:2.160000px;}
.ls12{letter-spacing:9.540000px;}
.lse{letter-spacing:33.984000px;}
.ls2{letter-spacing:54.864000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-7.722720px;}
._0{margin-left:-5.079600px;}
._f{margin-left:-3.840000px;}
._5{margin-left:-2.091600px;}
._3{margin-left:-1.075680px;}
._2{width:1.015920px;}
._1{width:2.988000px;}
._6{width:4.440000px;}
._7{width:5.500080px;}
._e{width:6.552000px;}
._c{width:8.486640px;}
._b{width:9.648000px;}
._16{width:10.995840px;}
._d{width:12.888000px;}
._8{width:14.112000px;}
._9{width:15.120000px;}
._a{width:16.260000px;}
._10{width:19.224000px;}
._11{width:20.879760px;}
._14{width:22.032000px;}
._15{width:23.184000px;}
._1a{width:24.336000px;}
._1b{width:25.824000px;}
._23{width:27.516000px;}
._12{width:29.520000px;}
._13{width:31.228080px;}
._27{width:32.779920px;}
._22{width:36.048000px;}
._18{width:38.715600px;}
._17{width:39.936000px;}
._1e{width:44.040000px;}
._1f{width:45.486960px;}
._1d{width:46.660800px;}
._1c{width:48.387600px;}
._19{width:51.336000px;}
._20{width:102.888000px;}
._21{width:104.472000px;}
._29{width:114.480000px;}
._2a{width:115.776000px;}
._28{width:182.088000px;}
._24{width:235.368000px;}
._25{width:236.676000px;}
._2c{width:271.728480px;}
._2b{width:273.027600px;}
._26{width:687.672000px;}
.fc3{color:rgb(28,29,30);}
.fc2{color:rgb(14,16,26);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf2{bottom:6.480000px;}
.yf9{bottom:6.840000px;}
.y101{bottom:6.870000px;}
.yfb{bottom:7.020000px;}
.yf6{bottom:7.065000px;}
.yf8{bottom:28.620000px;}
.y100{bottom:28.650000px;}
.yf5{bottom:28.845000px;}
.y105{bottom:50.400000px;}
.yf4{bottom:50.625000px;}
.y5{bottom:66.525004px;}
.y28{bottom:70.740000px;}
.y4{bottom:97.125005px;}
.y27{bottom:104.580000px;}
.y6b{bottom:128.160000px;}
.yb1{bottom:130.860000px;}
.y96{bottom:136.440000px;}
.y22{bottom:139.264499px;}
.yed{bottom:140.220000px;}
.y51{bottom:144.936000px;}
.ye7{bottom:148.536000px;}
.yb0{bottom:150.510000px;}
.y6a{bottom:151.950000px;}
.yc6{bottom:157.530000px;}
.y95{bottom:161.490000px;}
.yec{bottom:164.010000px;}
.y50{bottom:168.870000px;}
.y111{bottom:171.930000px;}
.ye6{bottom:172.290000px;}
.y69{bottom:175.710000px;}
.yc5{bottom:181.470000px;}
.y94{bottom:186.690000px;}
.yeb{bottom:187.950000px;}
.y4f{bottom:193.890000px;}
.y110{bottom:195.690000px;}
.ye5{bottom:196.230000px;}
.y19{bottom:196.933500px;}
.y68{bottom:199.650000px;}
.yc4{bottom:205.230000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y93{bottom:211.710000px;}
.y4e{bottom:217.650000px;}
.y10f{bottom:219.450000px;}
.ye4{bottom:219.990000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y67{bottom:223.410000px;}
.yc3{bottom:230.250000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y92{bottom:235.470000px;}
.y4d{bottom:241.410000px;}
.y10e{bottom:243.210000px;}
.ye3{bottom:243.750000px;}
.y66{bottom:247.170000px;}
.yc2{bottom:254.190000px;}
.y113{bottom:258.870000px;}
.y91{bottom:259.230000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y4c{bottom:265.350000px;}
.y10d{bottom:267.150000px;}
.ye2{bottom:267.510000px;}
.y65{bottom:270.930000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yc1{bottom:277.950000px;}
.y90{bottom:283.170000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y4b{bottom:290.370000px;}
.y10c{bottom:290.910000px;}
.ye1{bottom:291.450000px;}
.y64{bottom:294.870000px;}
.yc0{bottom:301.710000px;}
.y8f{bottom:306.930000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y4a{bottom:314.130000px;}
.y63{bottom:314.310000px;}
.y10b{bottom:314.670000px;}
.ye0{bottom:315.210000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.ybf{bottom:325.470000px;}
.yea{bottom:330.330000px;}
.y8e{bottom:330.690000px;}
.y49{bottom:337.890000px;}
.y10a{bottom:338.430000px;}
.ydf{bottom:338.610000px;}
.y10{bottom:348.133500px;}
.ybe{bottom:349.410000px;}
.ye9{bottom:354.090000px;}
.y8d{bottom:354.450000px;}
.y48{bottom:361.830000px;}
.y109{bottom:362.370000px;}
.yde{bottom:362.730000px;}
.ybd{bottom:373.170000px;}
.y8c{bottom:378.390000px;}
.y47{bottom:385.590000px;}
.y108{bottom:386.130000px;}
.ydd{bottom:386.670000px;}
.yf{bottom:386.785499px;}
.ybc{bottom:396.975000px;}
.y8b{bottom:402.195000px;}
.ye{bottom:408.044999px;}
.y107{bottom:408.675000px;}
.y46{bottom:409.395000px;}
.ydc{bottom:410.475000px;}
.ybb{bottom:420.735000px;}
.y8a{bottom:425.955000px;}
.y45{bottom:433.155000px;}
.ydb{bottom:434.235000px;}
.y106{bottom:441.975000px;}
.yba{bottom:444.675000px;}
.y89{bottom:449.715000px;}
.y44{bottom:457.095000px;}
.yda{bottom:459.435000px;}
.yb9{bottom:468.435000px;}
.y88{bottom:473.475000px;}
.y104{bottom:475.455000px;}
.y43{bottom:480.855000px;}
.yd9{bottom:483.195000px;}
.yd{bottom:484.864502px;}
.yb8{bottom:492.195000px;}
.y87{bottom:497.415000px;}
.yc{bottom:502.864502px;}
.y42{bottom:504.255000px;}
.yd8{bottom:508.215000px;}
.yb7{bottom:515.955000px;}
.y112{bottom:520.815000px;}
.yb{bottom:520.864502px;}
.y86{bottom:521.175000px;}
.y41{bottom:528.375000px;}
.yd7{bottom:533.415000px;}
.yaf{bottom:534.675000px;}
.ya{bottom:538.864499px;}
.yb6{bottom:541.155000px;}
.y85{bottom:544.935000px;}
.y40{bottom:552.315000px;}
.y103{bottom:552.495000px;}
.y9{bottom:556.864499px;}
.yae{bottom:558.075000px;}
.yd6{bottom:558.435000px;}
.yb5{bottom:566.175000px;}
.y84{bottom:568.695000px;}
.y3f{bottom:576.075000px;}
.yad{bottom:582.195000px;}
.yb4{bottom:591.195000px;}
.y83{bottom:592.635000px;}
.y3e{bottom:599.835000px;}
.yac{bottom:605.955000px;}
.y102{bottom:607.575000px;}
.yb3{bottom:615.135000px;}
.y82{bottom:616.035000px;}
.ye8{bottom:616.395000px;}
.y3d{bottom:623.595000px;}
.yab{bottom:629.895000px;}
.y81{bottom:640.155000px;}
.yff{bottom:641.055000px;}
.y8{bottom:645.510000px;}
.y3c{bottom:647.565000px;}
.yaa{bottom:653.685000px;}
.yd5{bottom:654.945000px;}
.y80{bottom:663.945000px;}
.y7{bottom:666.771000px;}
.y3b{bottom:671.325000px;}
.ya9{bottom:677.445000px;}
.yd4{bottom:678.705000px;}
.y7f{bottom:687.885000px;}
.y3a{bottom:695.085000px;}
.yfe{bottom:696.165000px;}
.ya8{bottom:701.385000px;}
.yd3{bottom:702.645000px;}
.y7e{bottom:711.645000px;}
.y39{bottom:718.845000px;}
.y6{bottom:726.298500px;}
.ya7{bottom:726.405000px;}
.yfd{bottom:729.645000px;}
.y7d{bottom:735.405000px;}
.y38{bottom:742.605000px;}
.ya6{bottom:751.425000px;}
.y3{bottom:752.599495px;}
.y7c{bottom:759.165000px;}
.yfc{bottom:762.945000px;}
.y37{bottom:766.545000px;}
.yd2{bottom:775.365000px;}
.ya5{bottom:776.625000px;}
.y7b{bottom:783.105000px;}
.y36{bottom:790.305000px;}
.yfa{bottom:796.245000px;}
.yd1{bottom:799.125000px;}
.ya4{bottom:800.385000px;}
.y62{bottom:805.245000px;}
.y7a{bottom:806.865000px;}
.y35{bottom:814.065000px;}
.ya3{bottom:824.145000px;}
.y61{bottom:829.005000px;}
.yf7{bottom:829.725000px;}
.yb2{bottom:830.265000px;}
.y79{bottom:830.625000px;}
.y34{bottom:837.825000px;}
.yd0{bottom:847.905000px;}
.ya2{bottom:849.345000px;}
.y60{bottom:853.125000px;}
.y78{bottom:854.385000px;}
.y33{bottom:861.765000px;}
.ycf{bottom:871.845000px;}
.ya1{bottom:874.365000px;}
.y5f{bottom:876.885000px;}
.y77{bottom:878.325000px;}
.y2{bottom:879.369000px;}
.yf3{bottom:884.805000px;}
.y32{bottom:885.525000px;}
.yce{bottom:895.650000px;}
.ya0{bottom:899.430000px;}
.y5e{bottom:900.870000px;}
.y76{bottom:902.130000px;}
.y31{bottom:909.330000px;}
.ycd{bottom:920.670000px;}
.y9f{bottom:923.370000px;}
.y5d{bottom:924.630000px;}
.y75{bottom:925.890000px;}
.y30{bottom:933.090000px;}
.ycc{bottom:944.610000px;}
.y9e{bottom:947.130000px;}
.y5c{bottom:948.390000px;}
.y74{bottom:949.650000px;}
.y2f{bottom:957.030000px;}
.yf1{bottom:961.890000px;}
.y1{bottom:966.726000px;}
.ycb{bottom:968.370000px;}
.y9d{bottom:970.890000px;}
.y5b{bottom:972.150000px;}
.y73{bottom:973.410000px;}
.y2e{bottom:980.430000px;}
.yca{bottom:993.390000px;}
.y9c{bottom:994.650000px;}
.y5a{bottom:996.090000px;}
.yf0{bottom:996.990000px;}
.y72{bottom:997.350000px;}
.y2d{bottom:1004.190000px;}
.yc9{bottom:1017.150000px;}
.y9b{bottom:1018.590000px;}
.y59{bottom:1019.850000px;}
.yef{bottom:1020.750000px;}
.y71{bottom:1021.110000px;}
.y2c{bottom:1027.950000px;}
.yc8{bottom:1041.090000px;}
.y9a{bottom:1042.350000px;}
.y58{bottom:1043.610000px;}
.y70{bottom:1044.870000px;}
.y2b{bottom:1051.890000px;}
.y99{bottom:1066.110000px;}
.y57{bottom:1067.370000px;}
.y6f{bottom:1068.630000px;}
.y2a{bottom:1076.910000px;}
.y98{bottom:1089.870000px;}
.yc7{bottom:1090.050000px;}
.y56{bottom:1091.310000px;}
.y6e{bottom:1092.570000px;}
.y29{bottom:1104.630000px;}
.y97{bottom:1113.810000px;}
.y55{bottom:1115.070000px;}
.y6d{bottom:1116.330000px;}
.y54{bottom:1138.860000px;}
.yee{bottom:1139.760000px;}
.y6c{bottom:1140.120000px;}
.y26{bottom:1141.740000px;}
.y25{bottom:1161.720000px;}
.y53{bottom:1168.740000px;}
.y24{bottom:1179.000000px;}
.y52{bottom:1193.580000px;}
.y23{bottom:1196.280000px;}
.h13{height:21.780000px;}
.h18{height:21.960000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h17{height:43.560000px;}
.h19{height:43.596000px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h2{height:55.152000px;}
.hb{height:58.651172px;}
.h11{height:63.035156px;}
.h1a{height:64.978594px;}
.h16{height:65.010937px;}
.h1b{height:65.340000px;}
.h15{height:65.556000px;}
.h14{height:66.757500px;}
.hf{height:70.628906px;}
.hc{height:70.664062px;}
.he{height:72.562500px;}
.h10{height:74.004654px;}
.h12{height:74.704922px;}
.h5{height:78.132000px;}
.hd{height:84.898125px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:200.955000px;}
.w6{width:509.475000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.440000px;}
.x5{left:84.959987px;}
.xd{left:94.355987px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:111.995987px;}
.xb{left:138.095987px;}
.x8{left:148.895987px;}
.x7{left:159.869987px;}
.x4{left:203.484001px;}
.x13{left:287.535000px;}
.xe{left:340.994987px;}
.x10{left:399.134987px;}
.x9{left:403.994987px;}
.x6{left:432.974987px;}
.xa{left:446.474987px;}
.x3{left:454.959000px;}
.x11{left:697.109987px;}
.xf{left:807.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.440000pt;}
.ls7{letter-spacing:1.920000pt;}
.ls12{letter-spacing:8.480000pt;}
.lse{letter-spacing:30.208000pt;}
.ls2{letter-spacing:48.768000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-6.864640pt;}
._0{margin-left:-4.515200pt;}
._f{margin-left:-3.413333pt;}
._5{margin-left:-1.859200pt;}
._3{margin-left:-0.956160pt;}
._2{width:0.903040pt;}
._1{width:2.656000pt;}
._6{width:3.946667pt;}
._7{width:4.888960pt;}
._e{width:5.824000pt;}
._c{width:7.543680pt;}
._b{width:8.576000pt;}
._16{width:9.774080pt;}
._d{width:11.456000pt;}
._8{width:12.544000pt;}
._9{width:13.440000pt;}
._a{width:14.453333pt;}
._10{width:17.088000pt;}
._11{width:18.559787pt;}
._14{width:19.584000pt;}
._15{width:20.608000pt;}
._1a{width:21.632000pt;}
._1b{width:22.954667pt;}
._23{width:24.458667pt;}
._12{width:26.240000pt;}
._13{width:27.758293pt;}
._27{width:29.137707pt;}
._22{width:32.042667pt;}
._18{width:34.413867pt;}
._17{width:35.498667pt;}
._1e{width:39.146667pt;}
._1f{width:40.432853pt;}
._1d{width:41.476267pt;}
._1c{width:43.011200pt;}
._19{width:45.632000pt;}
._20{width:91.456000pt;}
._21{width:92.864000pt;}
._29{width:101.760000pt;}
._2a{width:102.912000pt;}
._28{width:161.856000pt;}
._24{width:209.216000pt;}
._25{width:210.378667pt;}
._2c{width:241.536427pt;}
._2b{width:242.691200pt;}
._26{width:611.264000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:5.760000pt;}
.yf9{bottom:6.080000pt;}
.y101{bottom:6.106667pt;}
.yfb{bottom:6.240000pt;}
.yf6{bottom:6.280000pt;}
.yf8{bottom:25.440000pt;}
.y100{bottom:25.466667pt;}
.yf5{bottom:25.640000pt;}
.y105{bottom:44.800000pt;}
.yf4{bottom:45.000000pt;}
.y5{bottom:59.133337pt;}
.y28{bottom:62.880000pt;}
.y4{bottom:86.333337pt;}
.y27{bottom:92.960000pt;}
.y6b{bottom:113.920000pt;}
.yb1{bottom:116.320000pt;}
.y96{bottom:121.280000pt;}
.y22{bottom:123.790666pt;}
.yed{bottom:124.640000pt;}
.y51{bottom:128.832000pt;}
.ye7{bottom:132.032000pt;}
.yb0{bottom:133.786667pt;}
.y6a{bottom:135.066667pt;}
.yc6{bottom:140.026667pt;}
.y95{bottom:143.546667pt;}
.yec{bottom:145.786667pt;}
.y50{bottom:150.106667pt;}
.y111{bottom:152.826667pt;}
.ye6{bottom:153.146667pt;}
.y69{bottom:156.186667pt;}
.yc5{bottom:161.306667pt;}
.y94{bottom:165.946667pt;}
.yeb{bottom:167.066667pt;}
.y4f{bottom:172.346667pt;}
.y110{bottom:173.946667pt;}
.ye5{bottom:174.426667pt;}
.y19{bottom:175.052000pt;}
.y68{bottom:177.466667pt;}
.yc4{bottom:182.426667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y93{bottom:188.186667pt;}
.y4e{bottom:193.466667pt;}
.y10f{bottom:195.066667pt;}
.ye4{bottom:195.546667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y67{bottom:198.586667pt;}
.yc3{bottom:204.666667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y92{bottom:209.306667pt;}
.y4d{bottom:214.586667pt;}
.y10e{bottom:216.186667pt;}
.ye3{bottom:216.666667pt;}
.y66{bottom:219.706667pt;}
.yc2{bottom:225.946667pt;}
.y113{bottom:230.106667pt;}
.y91{bottom:230.426667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y4c{bottom:235.866667pt;}
.y10d{bottom:237.466667pt;}
.ye2{bottom:237.786667pt;}
.y65{bottom:240.826667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yc1{bottom:247.066667pt;}
.y90{bottom:251.706667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y4b{bottom:258.106667pt;}
.y10c{bottom:258.586667pt;}
.ye1{bottom:259.066667pt;}
.y64{bottom:262.106667pt;}
.yc0{bottom:268.186667pt;}
.y8f{bottom:272.826667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y4a{bottom:279.226667pt;}
.y63{bottom:279.386667pt;}
.y10b{bottom:279.706667pt;}
.ye0{bottom:280.186667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.ybf{bottom:289.306667pt;}
.yea{bottom:293.626667pt;}
.y8e{bottom:293.946667pt;}
.y49{bottom:300.346667pt;}
.y10a{bottom:300.826667pt;}
.ydf{bottom:300.986667pt;}
.y10{bottom:309.452000pt;}
.ybe{bottom:310.586667pt;}
.ye9{bottom:314.746667pt;}
.y8d{bottom:315.066667pt;}
.y48{bottom:321.626667pt;}
.y109{bottom:322.106667pt;}
.yde{bottom:322.426667pt;}
.ybd{bottom:331.706667pt;}
.y8c{bottom:336.346667pt;}
.y47{bottom:342.746667pt;}
.y108{bottom:343.226667pt;}
.ydd{bottom:343.706667pt;}
.yf{bottom:343.809333pt;}
.ybc{bottom:352.866667pt;}
.y8b{bottom:357.506667pt;}
.ye{bottom:362.706666pt;}
.y107{bottom:363.266667pt;}
.y46{bottom:363.906667pt;}
.ydc{bottom:364.866667pt;}
.ybb{bottom:373.986667pt;}
.y8a{bottom:378.626667pt;}
.y45{bottom:385.026667pt;}
.ydb{bottom:385.986667pt;}
.y106{bottom:392.866667pt;}
.yba{bottom:395.266667pt;}
.y89{bottom:399.746667pt;}
.y44{bottom:406.306667pt;}
.yda{bottom:408.386667pt;}
.yb9{bottom:416.386667pt;}
.y88{bottom:420.866667pt;}
.y104{bottom:422.626667pt;}
.y43{bottom:427.426667pt;}
.yd9{bottom:429.506667pt;}
.yd{bottom:430.990669pt;}
.yb8{bottom:437.506667pt;}
.y87{bottom:442.146667pt;}
.yc{bottom:446.990669pt;}
.y42{bottom:448.226667pt;}
.yd8{bottom:451.746667pt;}
.yb7{bottom:458.626667pt;}
.y112{bottom:462.946667pt;}
.yb{bottom:462.990669pt;}
.y86{bottom:463.266667pt;}
.y41{bottom:469.666667pt;}
.yd7{bottom:474.146667pt;}
.yaf{bottom:475.266667pt;}
.ya{bottom:478.990666pt;}
.yb6{bottom:481.026667pt;}
.y85{bottom:484.386667pt;}
.y40{bottom:490.946667pt;}
.y103{bottom:491.106667pt;}
.y9{bottom:494.990666pt;}
.yae{bottom:496.066667pt;}
.yd6{bottom:496.386667pt;}
.yb5{bottom:503.266667pt;}
.y84{bottom:505.506667pt;}
.y3f{bottom:512.066667pt;}
.yad{bottom:517.506667pt;}
.yb4{bottom:525.506667pt;}
.y83{bottom:526.786667pt;}
.y3e{bottom:533.186667pt;}
.yac{bottom:538.626667pt;}
.y102{bottom:540.066667pt;}
.yb3{bottom:546.786667pt;}
.y82{bottom:547.586667pt;}
.ye8{bottom:547.906667pt;}
.y3d{bottom:554.306667pt;}
.yab{bottom:559.906667pt;}
.y81{bottom:569.026667pt;}
.yff{bottom:569.826667pt;}
.y8{bottom:573.786667pt;}
.y3c{bottom:575.613333pt;}
.yaa{bottom:581.053333pt;}
.yd5{bottom:582.173333pt;}
.y80{bottom:590.173333pt;}
.y7{bottom:592.685334pt;}
.y3b{bottom:596.733333pt;}
.ya9{bottom:602.173333pt;}
.yd4{bottom:603.293333pt;}
.y7f{bottom:611.453333pt;}
.y3a{bottom:617.853333pt;}
.yfe{bottom:618.813333pt;}
.ya8{bottom:623.453333pt;}
.yd3{bottom:624.573333pt;}
.y7e{bottom:632.573333pt;}
.y39{bottom:638.973333pt;}
.y6{bottom:645.598667pt;}
.ya7{bottom:645.693333pt;}
.yfd{bottom:648.573333pt;}
.y7d{bottom:653.693333pt;}
.y38{bottom:660.093333pt;}
.ya6{bottom:667.933333pt;}
.y3{bottom:668.977329pt;}
.y7c{bottom:674.813333pt;}
.yfc{bottom:678.173333pt;}
.y37{bottom:681.373333pt;}
.yd2{bottom:689.213333pt;}
.ya5{bottom:690.333333pt;}
.y7b{bottom:696.093333pt;}
.y36{bottom:702.493333pt;}
.yfa{bottom:707.773333pt;}
.yd1{bottom:710.333333pt;}
.ya4{bottom:711.453333pt;}
.y62{bottom:715.773333pt;}
.y7a{bottom:717.213333pt;}
.y35{bottom:723.613333pt;}
.ya3{bottom:732.573333pt;}
.y61{bottom:736.893333pt;}
.yf7{bottom:737.533333pt;}
.yb2{bottom:738.013333pt;}
.y79{bottom:738.333333pt;}
.y34{bottom:744.733333pt;}
.yd0{bottom:753.693333pt;}
.ya2{bottom:754.973333pt;}
.y60{bottom:758.333333pt;}
.y78{bottom:759.453333pt;}
.y33{bottom:766.013333pt;}
.ycf{bottom:774.973333pt;}
.ya1{bottom:777.213333pt;}
.y5f{bottom:779.453333pt;}
.y77{bottom:780.733333pt;}
.y2{bottom:781.661334pt;}
.yf3{bottom:786.493333pt;}
.y32{bottom:787.133333pt;}
.yce{bottom:796.133333pt;}
.ya0{bottom:799.493333pt;}
.y5e{bottom:800.773333pt;}
.y76{bottom:801.893333pt;}
.y31{bottom:808.293333pt;}
.ycd{bottom:818.373333pt;}
.y9f{bottom:820.773333pt;}
.y5d{bottom:821.893333pt;}
.y75{bottom:823.013333pt;}
.y30{bottom:829.413333pt;}
.ycc{bottom:839.653333pt;}
.y9e{bottom:841.893333pt;}
.y5c{bottom:843.013333pt;}
.y74{bottom:844.133333pt;}
.y2f{bottom:850.693333pt;}
.yf1{bottom:855.013333pt;}
.y1{bottom:859.312000pt;}
.ycb{bottom:860.773333pt;}
.y9d{bottom:863.013333pt;}
.y5b{bottom:864.133333pt;}
.y73{bottom:865.253333pt;}
.y2e{bottom:871.493333pt;}
.yca{bottom:883.013333pt;}
.y9c{bottom:884.133333pt;}
.y5a{bottom:885.413333pt;}
.yf0{bottom:886.213333pt;}
.y72{bottom:886.533333pt;}
.y2d{bottom:892.613333pt;}
.yc9{bottom:904.133333pt;}
.y9b{bottom:905.413333pt;}
.y59{bottom:906.533333pt;}
.yef{bottom:907.333333pt;}
.y71{bottom:907.653333pt;}
.y2c{bottom:913.733333pt;}
.yc8{bottom:925.413333pt;}
.y9a{bottom:926.533333pt;}
.y58{bottom:927.653333pt;}
.y70{bottom:928.773333pt;}
.y2b{bottom:935.013333pt;}
.y99{bottom:947.653333pt;}
.y57{bottom:948.773333pt;}
.y6f{bottom:949.893333pt;}
.y2a{bottom:957.253333pt;}
.y98{bottom:968.773333pt;}
.yc7{bottom:968.933333pt;}
.y56{bottom:970.053333pt;}
.y6e{bottom:971.173333pt;}
.y29{bottom:981.893333pt;}
.y97{bottom:990.053333pt;}
.y55{bottom:991.173333pt;}
.y6d{bottom:992.293333pt;}
.y54{bottom:1012.320000pt;}
.yee{bottom:1013.120000pt;}
.y6c{bottom:1013.440000pt;}
.y26{bottom:1014.880000pt;}
.y25{bottom:1032.640000pt;}
.y53{bottom:1038.880000pt;}
.y24{bottom:1048.000000pt;}
.y52{bottom:1060.960000pt;}
.y23{bottom:1063.360000pt;}
.h13{height:19.360000pt;}
.h18{height:19.520000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h17{height:38.720000pt;}
.h19{height:38.752000pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h2{height:49.024000pt;}
.hb{height:52.134375pt;}
.h11{height:56.031250pt;}
.h1a{height:57.758750pt;}
.h16{height:57.787500pt;}
.h1b{height:58.080000pt;}
.h15{height:58.272000pt;}
.h14{height:59.340000pt;}
.hf{height:62.781250pt;}
.hc{height:62.812500pt;}
.he{height:64.500000pt;}
.h10{height:65.781915pt;}
.h12{height:66.404375pt;}
.h5{height:69.450667pt;}
.hd{height:75.465000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:178.626667pt;}
.w6{width:452.866667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.280000pt;}
.x5{left:75.519988pt;}
.xd{left:83.871988pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:99.551988pt;}
.xb{left:122.751988pt;}
.x8{left:132.351988pt;}
.x7{left:142.106655pt;}
.x4{left:180.874667pt;}
.x13{left:255.586667pt;}
.xe{left:303.106655pt;}
.x10{left:354.786655pt;}
.x9{left:359.106655pt;}
.x6{left:384.866655pt;}
.xa{left:396.866655pt;}
.x3{left:404.408000pt;}
.x11{left:619.653322pt;}
.xf{left:718.053322pt;}
}




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