
    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_ae4b09e0d788c1cb821e6ef5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3733b0e9deddad9fadfae60a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_46ccdf862c9a53399d32a0b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1c7cb49c6e285eba130f6e16.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1f5d157e6e4a76d357dd97b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_b1085a42a4f69bb70c5ba4c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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);}
.m2{transform:matrix(0.265542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265542,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.266040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266040,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.268695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268695,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);}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-7.860000px;}
.lsf{letter-spacing:-6.900000px;}
.lsb{letter-spacing:-3.660660px;}
.ls12{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.300239px;}
.ls11{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.225179px;}
.ls9{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.114130px;}
.lsc{letter-spacing:-0.075884px;}
.ls10{letter-spacing:-0.075606px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.720000px;}
.lse{letter-spacing:1.341635px;}
.ls7{letter-spacing:18.720000px;}
.ls6{letter-spacing:176.376000px;}
.ls4{letter-spacing:179.405760px;}
.ls8{letter-spacing:186.903075px;}
.ls0{letter-spacing:1662.060000px;}
.ls15{letter-spacing:3312.480000px;}
.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:-21.060000px;}
.ws13{word-spacing:-18.239515px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.wsf{word-spacing:-11.100000px;}
.ws4{word-spacing:-10.140000px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:53.340353px;}
.wse{word-spacing:54.409056px;}
.ws9{word-spacing:63.515174px;}
.ws7{word-spacing:72.621292px;}
.wsa{word-spacing:109.106472px;}
.ws12{word-spacing:135.452794px;}
.wsc{word-spacing:168.577012px;}
.wsd{word-spacing:177.683131px;}
.ws11{word-spacing:391.235347px;}
.ws8{word-spacing:434.979383px;}
.ws6{word-spacing:454.091304px;}
.ws14{word-spacing:467.976418px;}
.wsb{word-spacing:470.364848px;}
._2{margin-left:-12.257280px;}
._23{margin-left:-10.246320px;}
._49{margin-left:-9.114720px;}
._1{margin-left:-7.948800px;}
._9{margin-left:-6.416640px;}
._4{margin-left:-4.404960px;}
._a{margin-left:-2.709600px;}
._0{margin-left:-1.457280px;}
._5{width:1.724400px;}
._15{width:3.065040px;}
._7{width:4.213440px;}
._8{width:5.649840px;}
._1b{width:6.734160px;}
._1a{width:7.848000px;}
._6{width:9.001440px;}
._3{width:10.246320px;}
._19{width:12.299280px;}
._18{width:13.457280px;}
._20{width:14.458560px;}
._11{width:15.528000px;}
._12{width:16.728000px;}
._d{width:19.604880px;}
._1e{width:21.600000px;}
._1c{width:23.636880px;}
._1d{width:25.488000px;}
._b{width:26.712000px;}
._c{width:28.344000px;}
._1f{width:29.388960px;}
._10{width:30.456000px;}
._e{width:31.464000px;}
._f{width:32.961600px;}
._21{width:34.560000px;}
._22{width:36.504000px;}
._13{width:38.168640px;}
._14{width:39.312000px;}
._47{width:42.852960px;}
._48{width:44.000640px;}
._4a{width:45.505200px;}
._29{width:48.046027px;}
._43{width:58.432884px;}
._39{width:64.355104px;}
._37{width:67.823466px;}
._4b{width:69.364800px;}
._16{width:71.112000px;}
._17{width:72.704880px;}
._28{width:74.032377px;}
._42{width:79.205849px;}
._32{width:81.613584px;}
._3c{width:89.592706px;}
._27{width:91.904184px;}
._34{width:94.845994px;}
._3d{width:96.826434px;}
._41{width:98.509922px;}
._2f{width:99.977589px;}
._35{width:104.164355px;}
._33{width:109.382084px;}
._2b{width:118.541018px;}
._2a{width:127.417358px;}
._3e{width:135.048305px;}
._3a{width:136.106681px;}
._26{width:137.184277px;}
._2c{width:145.690302px;}
._3b{width:157.236657px;}
._36{width:158.268945px;}
._38{width:167.341668px;}
._44{width:170.992806px;}
._3f{width:206.263524px;}
._24{width:209.698473px;}
._40{width:228.271190px;}
._25{width:235.679569px;}
._45{width:237.788612px;}
._31{width:257.717996px;}
._46{width:277.990758px;}
._2d{width:350.727681px;}
._30{width:362.596265px;}
._2e{width:377.235623px;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(40,40,40);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:72.884207px;}
.fs7{font-size:72.958060px;}
.fs5{font-size:73.304251px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:5.651742px;}
.yb2{bottom:5.698616px;}
.y8c{bottom:5.728831px;}
.y92{bottom:18.180000px;}
.y9d{bottom:29.581653px;}
.yb1{bottom:29.605141px;}
.y8b{bottom:29.784615px;}
.y9c{bottom:53.510960px;}
.yb0{bottom:53.511666px;}
.y8a{bottom:53.802002px;}
.y4{bottom:57.420000px;}
.yb8{bottom:57.456000px;}
.y9b{bottom:77.402464px;}
.yaf{bottom:77.455720px;}
.y89{bottom:77.857330px;}
.y3{bottom:96.876000px;}
.y9a{bottom:101.331771px;}
.y88{bottom:101.912659px;}
.y2{bottom:115.956000px;}
.y99{bottom:125.261077px;}
.y87{bottom:125.930046px;}
.y1{bottom:134.856000px;}
.y98{bottom:149.190384px;}
.y86{bottom:149.985375px;}
.ydf{bottom:156.630000px;}
.y2b{bottom:166.350000px;}
.y90{bottom:168.150000px;}
.y97{bottom:173.077351px;}
.y85{bottom:174.033115px;}
.yba{bottom:177.330000px;}
.y4c{bottom:181.650000px;}
.yfe{bottom:187.590000px;}
.y2a{bottom:188.670000px;}
.y6a{bottom:191.190000px;}
.y96{bottom:197.014219px;}
.yde{bottom:198.030000px;}
.y8f{bottom:199.110000px;}
.y76{bottom:208.290000px;}
.y29{bottom:210.990000px;}
.y4b{bottom:212.610000px;}
.ydd{bottom:218.730000px;}
.y95{bottom:220.935965px;}
.y69{bottom:222.150000px;}
.yfd{bottom:228.990000px;}
.y8e{bottom:230.250000px;}
.y28{bottom:233.310000px;}
.y75{bottom:239.430000px;}
.y4a{bottom:243.750000px;}
.yad{bottom:244.110000px;}
.y94{bottom:244.872832px;}
.yfc{bottom:249.690000px;}
.y68{bottom:253.290000px;}
.y27{bottom:255.630000px;}
.y8d{bottom:257.250000px;}
.y84{bottom:257.339980px;}
.ydc{bottom:260.130000px;}
.y74{bottom:270.390000px;}
.y49{bottom:274.710000px;}
.yac{bottom:275.250000px;}
.y26{bottom:277.950000px;}
.ydb{bottom:280.830000px;}
.y67{bottom:284.250000px;}
.yfb{bottom:291.090000px;}
.y25{bottom:300.270000px;}
.y73{bottom:301.350000px;}
.yda{bottom:301.530000px;}
.y48{bottom:305.850000px;}
.yab{bottom:306.210000px;}
.yfa{bottom:311.790000px;}
.y66{bottom:315.390000px;}
.yd9{bottom:322.230000px;}
.y24{bottom:322.590000px;}
.y72{bottom:332.490000px;}
.y47{bottom:336.855000px;}
.yaa{bottom:337.395000px;}
.yd8{bottom:342.975000px;}
.y23{bottom:345.135000px;}
.y65{bottom:346.395000px;}
.yf9{bottom:353.235000px;}
.y71{bottom:363.495000px;}
.yd7{bottom:363.675000px;}
.y22{bottom:367.455000px;}
.y46{bottom:367.995000px;}
.ya9{bottom:368.355000px;}
.yf8{bottom:373.935000px;}
.y64{bottom:377.535000px;}
.yd6{bottom:384.375000px;}
.y21{bottom:389.775000px;}
.y70{bottom:394.635000px;}
.y45{bottom:398.955000px;}
.ya8{bottom:399.495000px;}
.yd5{bottom:405.075000px;}
.y63{bottom:408.495000px;}
.y20{bottom:412.095000px;}
.yf7{bottom:415.335000px;}
.y6f{bottom:425.595000px;}
.yd4{bottom:425.775000px;}
.y44{bottom:429.915000px;}
.ya7{bottom:430.455000px;}
.y1f{bottom:434.415000px;}
.yf6{bottom:436.035000px;}
.y62{bottom:439.455000px;}
.yd3{bottom:446.475000px;}
.y91{bottom:450.975000px;}
.y6e{bottom:456.735000px;}
.y43{bottom:461.055000px;}
.ya6{bottom:461.415000px;}
.yd2{bottom:467.175000px;}
.y1e{bottom:468.795000px;}
.y61{bottom:470.595000px;}
.yf5{bottom:477.435000px;}
.y6d{bottom:487.695000px;}
.yd1{bottom:487.875000px;}
.y42{bottom:492.015000px;}
.ya5{bottom:492.555000px;}
.yf4{bottom:498.135000px;}
.y60{bottom:501.555000px;}
.y1d{bottom:502.995000px;}
.yd0{bottom:508.575000px;}
.y83{bottom:515.415000px;}
.y6c{bottom:518.835000px;}
.y41{bottom:523.155000px;}
.ya4{bottom:523.515000px;}
.y1c{bottom:525.495000px;}
.ycf{bottom:529.275000px;}
.yf3{bottom:539.535000px;}
.y82{bottom:546.555000px;}
.y5f{bottom:546.915000px;}
.y6b{bottom:549.795000px;}
.yce{bottom:549.975000px;}
.y40{bottom:554.115000px;}
.ya3{bottom:554.655000px;}
.y1b{bottom:559.695000px;}
.yf2{bottom:560.235000px;}
.ycd{bottom:570.675000px;}
.y81{bottom:577.515000px;}
.y5e{bottom:580.935000px;}
.y1a{bottom:582.015000px;}
.y3f{bottom:585.255000px;}
.ya2{bottom:585.615000px;}
.ycc{bottom:591.375000px;}
.yf1{bottom:601.635000px;}
.y19{bottom:604.545000px;}
.y80{bottom:608.685000px;}
.y5d{bottom:611.925000px;}
.ycb{bottom:612.105000px;}
.y3e{bottom:616.245000px;}
.ya1{bottom:616.785000px;}
.yf0{bottom:622.365000px;}
.y18{bottom:626.865000px;}
.yca{bottom:632.805000px;}
.y7f{bottom:639.645000px;}
.y5c{bottom:643.065000px;}
.y3d{bottom:647.385000px;}
.ya0{bottom:647.745000px;}
.y17{bottom:649.185000px;}
.yc9{bottom:653.505000px;}
.yef{bottom:663.765000px;}
.y7e{bottom:670.785000px;}
.y16{bottom:671.505000px;}
.y5b{bottom:674.025000px;}
.yc8{bottom:674.205000px;}
.y93{bottom:674.714959px;}
.y9f{bottom:674.745000px;}
.y3c{bottom:678.345000px;}
.yee{bottom:684.465000px;}
.y15{bottom:693.825000px;}
.yc7{bottom:694.725000px;}
.y7d{bottom:701.745000px;}
.y5a{bottom:705.165000px;}
.y3b{bottom:709.485000px;}
.yc6{bottom:715.425000px;}
.y14{bottom:716.145000px;}
.yed{bottom:725.865000px;}
.y7c{bottom:732.885000px;}
.y59{bottom:736.125000px;}
.y13{bottom:738.465000px;}
.y3a{bottom:740.445000px;}
.yec{bottom:746.565000px;}
.yb9{bottom:751.290000px;}
.yc5{bottom:756.825000px;}
.y12{bottom:760.785000px;}
.y7b{bottom:763.845000px;}
.y58{bottom:767.265000px;}
.y39{bottom:771.585000px;}
.y11{bottom:783.105000px;}
.yeb{bottom:787.965000px;}
.y7a{bottom:794.805000px;}
.y57{bottom:798.225000px;}
.yc4{bottom:800.025000px;}
.y38{bottom:802.545000px;}
.y10{bottom:805.425000px;}
.yea{bottom:808.665000px;}
.y79{bottom:825.945000px;}
.yf{bottom:827.745000px;}
.y56{bottom:829.365000px;}
.y37{bottom:833.685000px;}
.yc3{bottom:843.045000px;}
.ye9{bottom:850.065000px;}
.ye{bottom:850.245000px;}
.yb7{bottom:859.439919px;}
.y55{bottom:860.325000px;}
.y36{bottom:864.645000px;}
.ye8{bottom:870.810000px;}
.y78{bottom:871.350000px;}
.yc2{bottom:874.050000px;}
.yd{bottom:882.870000px;}
.y54{bottom:891.510000px;}
.y77{bottom:894.210000px;}
.y35{bottom:899.970000px;}
.yc{bottom:903.570000px;}
.yc1{bottom:905.190000px;}
.ye7{bottom:912.210000px;}
.y53{bottom:922.470000px;}
.yb{bottom:924.270000px;}
.ye6{bottom:932.910000px;}
.yc0{bottom:936.150000px;}
.y34{bottom:937.050000px;}
.y52{bottom:953.610000px;}
.ya{bottom:958.650000px;}
.ybf{bottom:967.290000px;}
.yb6{bottom:970.530000px;}
.y33{bottom:971.430000px;}
.ye5{bottom:974.310000px;}
.y51{bottom:984.570000px;}
.y32{bottom:993.750000px;}
.y9{bottom:994.830000px;}
.ye4{bottom:995.010000px;}
.ybe{bottom:998.250000px;}
.yb5{bottom:1001.670000px;}
.y50{bottom:1015.710000px;}
.yff{bottom:1023.090000px;}
.y8{bottom:1024.710000px;}
.y31{bottom:1028.130000px;}
.ybd{bottom:1029.390000px;}
.yb4{bottom:1032.630000px;}
.ye3{bottom:1036.410000px;}
.y4f{bottom:1046.670000px;}
.y30{bottom:1050.450000px;}
.ye2{bottom:1057.110000px;}
.yae{bottom:1059.764919px;}
.yb3{bottom:1059.810000px;}
.ybc{bottom:1062.690000px;}
.y7{bottom:1066.470000px;}
.y2f{bottom:1072.770000px;}
.y4e{bottom:1077.810000px;}
.y2e{bottom:1095.090000px;}
.y6{bottom:1096.170000px;}
.ye1{bottom:1098.510000px;}
.ybb{bottom:1100.670000px;}
.y4d{bottom:1108.770000px;}
.y2d{bottom:1117.410000px;}
.ye0{bottom:1119.210000px;}
.y5{bottom:1137.030000px;}
.y2c{bottom:1139.940000px;}
.hd{height:32.220000px;}
.h9{height:45.549492px;}
.h16{height:53.573906px;}
.h7{height:54.878906px;}
.h2{height:59.383125px;}
.h6{height:64.546875px;}
.hf{height:64.734557px;}
.h12{height:64.800152px;}
.hb{height:65.107633px;}
.h10{height:65.339553px;}
.h13{height:65.405761px;}
.hc{height:65.716116px;}
.h3{height:65.884219px;}
.h8{height:74.820586px;}
.h4{height:75.519844px;}
.h5{height:85.052461px;}
.h11{height:95.695193px;}
.ha{height:192.366257px;}
.he{height:263.097817px;}
.h14{height:892.980000px;}
.h15{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:394.641607px;}
.w6{width:479.179571px;}
.w3{width:600.887594px;}
.w4{width:637.845000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w9{width:1262.879981px;}
.w7{width:1262.880000px;}
.w8{width:1263.000000px;}
.x0{left:0.000000px;}
.x8{left:2.418060px;}
.x10{left:106.199981px;}
.x1{left:127.655987px;}
.x11{left:129.455981px;}
.x7{left:146.724019px;}
.x6{left:180.749987px;}
.xe{left:182.050070px;}
.x3{left:216.209987px;}
.x4{left:235.109987px;}
.x5{left:262.289987px;}
.xb{left:276.321835px;}
.xa{left:318.819000px;}
.x2{left:446.474987px;}
.xd{left:473.144987px;}
.xf{left:661.289987px;}
.xc{left:671.009987px;}
.x9{left:747.689987px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-6.986667pt;}
.lsf{letter-spacing:-6.133333pt;}
.lsb{letter-spacing:-3.253920pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.266879pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.200159pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.101449pt;}
.lsc{letter-spacing:-0.067453pt;}
.ls10{letter-spacing:-0.067205pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.192564pt;}
.ls7{letter-spacing:16.640000pt;}
.ls6{letter-spacing:156.778667pt;}
.ls4{letter-spacing:159.471787pt;}
.ls8{letter-spacing:166.136067pt;}
.ls0{letter-spacing:1477.386667pt;}
.ls15{letter-spacing:2944.426667pt;}
.ws5{word-spacing:-18.720000pt;}
.ws13{word-spacing:-16.212902pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsf{word-spacing:-9.866667pt;}
.ws4{word-spacing:-9.013333pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:47.413647pt;}
.wse{word-spacing:48.363605pt;}
.ws9{word-spacing:56.457933pt;}
.ws7{word-spacing:64.552260pt;}
.wsa{word-spacing:96.983531pt;}
.ws12{word-spacing:120.402484pt;}
.wsc{word-spacing:149.846233pt;}
.wsd{word-spacing:157.940561pt;}
.ws11{word-spacing:347.764753pt;}
.ws8{word-spacing:386.648340pt;}
.ws6{word-spacing:403.636714pt;}
.ws14{word-spacing:415.979038pt;}
.wsb{word-spacing:418.102087pt;}
._2{margin-left:-10.895360pt;}
._23{margin-left:-9.107840pt;}
._49{margin-left:-8.101973pt;}
._1{margin-left:-7.065600pt;}
._9{margin-left:-5.703680pt;}
._4{margin-left:-3.915520pt;}
._a{margin-left:-2.408533pt;}
._0{margin-left:-1.295360pt;}
._5{width:1.532800pt;}
._15{width:2.724480pt;}
._7{width:3.745280pt;}
._8{width:5.022080pt;}
._1b{width:5.985920pt;}
._1a{width:6.976000pt;}
._6{width:8.001280pt;}
._3{width:9.107840pt;}
._19{width:10.932693pt;}
._18{width:11.962027pt;}
._20{width:12.852053pt;}
._11{width:13.802667pt;}
._12{width:14.869333pt;}
._d{width:17.426560pt;}
._1e{width:19.200000pt;}
._1c{width:21.010560pt;}
._1d{width:22.656000pt;}
._b{width:23.744000pt;}
._c{width:25.194667pt;}
._1f{width:26.123520pt;}
._10{width:27.072000pt;}
._e{width:27.968000pt;}
._f{width:29.299200pt;}
._21{width:30.720000pt;}
._22{width:32.448000pt;}
._13{width:33.927680pt;}
._14{width:34.944000pt;}
._47{width:38.091520pt;}
._48{width:39.111680pt;}
._4a{width:40.449067pt;}
._29{width:42.707580pt;}
._43{width:51.940341pt;}
._39{width:57.204537pt;}
._37{width:60.287525pt;}
._4b{width:61.657600pt;}
._16{width:63.210667pt;}
._17{width:64.626560pt;}
._28{width:65.806557pt;}
._42{width:70.405199pt;}
._32{width:72.545408pt;}
._3c{width:79.637961pt;}
._27{width:81.692608pt;}
._34{width:84.307550pt;}
._3d{width:86.067941pt;}
._41{width:87.564375pt;}
._2f{width:88.868968pt;}
._35{width:92.590538pt;}
._33{width:97.228519pt;}
._2b{width:105.369794pt;}
._2a{width:113.259874pt;}
._3e{width:120.042938pt;}
._3a{width:120.983716pt;}
._26{width:121.941580pt;}
._2c{width:129.502491pt;}
._3b{width:139.765918pt;}
._36{width:140.683507pt;}
._38{width:148.748149pt;}
._44{width:151.993606pt;}
._3f{width:183.345355pt;}
._24{width:186.398642pt;}
._40{width:202.907725pt;}
._25{width:209.492950pt;}
._45{width:211.367655pt;}
._31{width:229.082663pt;}
._46{width:247.102896pt;}
._2d{width:311.757939pt;}
._30{width:322.307791pt;}
._2e{width:335.320554pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:64.785962pt;}
.fs7{font-size:64.851609pt;}
.fs5{font-size:65.159334pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:5.023771pt;}
.yb2{bottom:5.065436pt;}
.y8c{bottom:5.092294pt;}
.y92{bottom:16.160000pt;}
.y9d{bottom:26.294803pt;}
.yb1{bottom:26.315681pt;}
.y8b{bottom:26.475213pt;}
.y9c{bottom:47.565298pt;}
.yb0{bottom:47.565925pt;}
.y8a{bottom:47.824001pt;}
.y4{bottom:51.040000pt;}
.yb8{bottom:51.072000pt;}
.y9b{bottom:68.802190pt;}
.yaf{bottom:68.849529pt;}
.y89{bottom:69.206516pt;}
.y3{bottom:86.112000pt;}
.y9a{bottom:90.072685pt;}
.y88{bottom:90.589030pt;}
.y2{bottom:103.072000pt;}
.y99{bottom:111.343180pt;}
.y87{bottom:111.937819pt;}
.y1{bottom:119.872000pt;}
.y98{bottom:132.613675pt;}
.y86{bottom:133.320333pt;}
.ydf{bottom:139.226667pt;}
.y2b{bottom:147.866667pt;}
.y90{bottom:149.466667pt;}
.y97{bottom:153.846535pt;}
.y85{bottom:154.696102pt;}
.yba{bottom:157.626667pt;}
.y4c{bottom:161.466667pt;}
.yfe{bottom:166.746667pt;}
.y2a{bottom:167.706667pt;}
.y6a{bottom:169.946667pt;}
.y96{bottom:175.123750pt;}
.yde{bottom:176.026667pt;}
.y8f{bottom:176.986667pt;}
.y76{bottom:185.146667pt;}
.y29{bottom:187.546667pt;}
.y4b{bottom:188.986667pt;}
.ydd{bottom:194.426667pt;}
.y95{bottom:196.387524pt;}
.y69{bottom:197.466667pt;}
.yfd{bottom:203.546667pt;}
.y8e{bottom:204.666667pt;}
.y28{bottom:207.386667pt;}
.y75{bottom:212.826667pt;}
.y4a{bottom:216.666667pt;}
.yad{bottom:216.986667pt;}
.y94{bottom:217.664740pt;}
.yfc{bottom:221.946667pt;}
.y68{bottom:225.146667pt;}
.y27{bottom:227.226667pt;}
.y8d{bottom:228.666667pt;}
.y84{bottom:228.746649pt;}
.ydc{bottom:231.226667pt;}
.y74{bottom:240.346667pt;}
.y49{bottom:244.186667pt;}
.yac{bottom:244.666667pt;}
.y26{bottom:247.066667pt;}
.ydb{bottom:249.626667pt;}
.y67{bottom:252.666667pt;}
.yfb{bottom:258.746667pt;}
.y25{bottom:266.906667pt;}
.y73{bottom:267.866667pt;}
.yda{bottom:268.026667pt;}
.y48{bottom:271.866667pt;}
.yab{bottom:272.186667pt;}
.yfa{bottom:277.146667pt;}
.y66{bottom:280.346667pt;}
.yd9{bottom:286.426667pt;}
.y24{bottom:286.746667pt;}
.y72{bottom:295.546667pt;}
.y47{bottom:299.426667pt;}
.yaa{bottom:299.906667pt;}
.yd8{bottom:304.866667pt;}
.y23{bottom:306.786667pt;}
.y65{bottom:307.906667pt;}
.yf9{bottom:313.986667pt;}
.y71{bottom:323.106667pt;}
.yd7{bottom:323.266667pt;}
.y22{bottom:326.626667pt;}
.y46{bottom:327.106667pt;}
.ya9{bottom:327.426667pt;}
.yf8{bottom:332.386667pt;}
.y64{bottom:335.586667pt;}
.yd6{bottom:341.666667pt;}
.y21{bottom:346.466667pt;}
.y70{bottom:350.786667pt;}
.y45{bottom:354.626667pt;}
.ya8{bottom:355.106667pt;}
.yd5{bottom:360.066667pt;}
.y63{bottom:363.106667pt;}
.y20{bottom:366.306667pt;}
.yf7{bottom:369.186667pt;}
.y6f{bottom:378.306667pt;}
.yd4{bottom:378.466667pt;}
.y44{bottom:382.146667pt;}
.ya7{bottom:382.626667pt;}
.y1f{bottom:386.146667pt;}
.yf6{bottom:387.586667pt;}
.y62{bottom:390.626667pt;}
.yd3{bottom:396.866667pt;}
.y91{bottom:400.866667pt;}
.y6e{bottom:405.986667pt;}
.y43{bottom:409.826667pt;}
.ya6{bottom:410.146667pt;}
.yd2{bottom:415.266667pt;}
.y1e{bottom:416.706667pt;}
.y61{bottom:418.306667pt;}
.yf5{bottom:424.386667pt;}
.y6d{bottom:433.506667pt;}
.yd1{bottom:433.666667pt;}
.y42{bottom:437.346667pt;}
.ya5{bottom:437.826667pt;}
.yf4{bottom:442.786667pt;}
.y60{bottom:445.826667pt;}
.y1d{bottom:447.106667pt;}
.yd0{bottom:452.066667pt;}
.y83{bottom:458.146667pt;}
.y6c{bottom:461.186667pt;}
.y41{bottom:465.026667pt;}
.ya4{bottom:465.346667pt;}
.y1c{bottom:467.106667pt;}
.ycf{bottom:470.466667pt;}
.yf3{bottom:479.586667pt;}
.y82{bottom:485.826667pt;}
.y5f{bottom:486.146667pt;}
.y6b{bottom:488.706667pt;}
.yce{bottom:488.866667pt;}
.y40{bottom:492.546667pt;}
.ya3{bottom:493.026667pt;}
.y1b{bottom:497.506667pt;}
.yf2{bottom:497.986667pt;}
.ycd{bottom:507.266667pt;}
.y81{bottom:513.346667pt;}
.y5e{bottom:516.386667pt;}
.y1a{bottom:517.346667pt;}
.y3f{bottom:520.226667pt;}
.ya2{bottom:520.546667pt;}
.ycc{bottom:525.666667pt;}
.yf1{bottom:534.786667pt;}
.y19{bottom:537.373333pt;}
.y80{bottom:541.053333pt;}
.y5d{bottom:543.933333pt;}
.ycb{bottom:544.093333pt;}
.y3e{bottom:547.773333pt;}
.ya1{bottom:548.253333pt;}
.yf0{bottom:553.213333pt;}
.y18{bottom:557.213333pt;}
.yca{bottom:562.493333pt;}
.y7f{bottom:568.573333pt;}
.y5c{bottom:571.613333pt;}
.y3d{bottom:575.453333pt;}
.ya0{bottom:575.773333pt;}
.y17{bottom:577.053333pt;}
.yc9{bottom:580.893333pt;}
.yef{bottom:590.013333pt;}
.y7e{bottom:596.253333pt;}
.y16{bottom:596.893333pt;}
.y5b{bottom:599.133333pt;}
.yc8{bottom:599.293333pt;}
.y93{bottom:599.746630pt;}
.y9f{bottom:599.773333pt;}
.y3c{bottom:602.973333pt;}
.yee{bottom:608.413333pt;}
.y15{bottom:616.733333pt;}
.yc7{bottom:617.533333pt;}
.y7d{bottom:623.773333pt;}
.y5a{bottom:626.813333pt;}
.y3b{bottom:630.653333pt;}
.yc6{bottom:635.933333pt;}
.y14{bottom:636.573333pt;}
.yed{bottom:645.213333pt;}
.y7c{bottom:651.453333pt;}
.y59{bottom:654.333333pt;}
.y13{bottom:656.413333pt;}
.y3a{bottom:658.173333pt;}
.yec{bottom:663.613333pt;}
.yb9{bottom:667.813333pt;}
.yc5{bottom:672.733333pt;}
.y12{bottom:676.253333pt;}
.y7b{bottom:678.973333pt;}
.y58{bottom:682.013333pt;}
.y39{bottom:685.853333pt;}
.y11{bottom:696.093333pt;}
.yeb{bottom:700.413333pt;}
.y7a{bottom:706.493333pt;}
.y57{bottom:709.533333pt;}
.yc4{bottom:711.133333pt;}
.y38{bottom:713.373333pt;}
.y10{bottom:715.933333pt;}
.yea{bottom:718.813333pt;}
.y79{bottom:734.173333pt;}
.yf{bottom:735.773333pt;}
.y56{bottom:737.213333pt;}
.y37{bottom:741.053333pt;}
.yc3{bottom:749.373333pt;}
.ye9{bottom:755.613333pt;}
.ye{bottom:755.773333pt;}
.yb7{bottom:763.946594pt;}
.y55{bottom:764.733333pt;}
.y36{bottom:768.573333pt;}
.ye8{bottom:774.053333pt;}
.y78{bottom:774.533333pt;}
.yc2{bottom:776.933333pt;}
.yd{bottom:784.773333pt;}
.y54{bottom:792.453333pt;}
.y77{bottom:794.853333pt;}
.y35{bottom:799.973333pt;}
.yc{bottom:803.173333pt;}
.yc1{bottom:804.613333pt;}
.ye7{bottom:810.853333pt;}
.y53{bottom:819.973333pt;}
.yb{bottom:821.573333pt;}
.ye6{bottom:829.253333pt;}
.yc0{bottom:832.133333pt;}
.y34{bottom:832.933333pt;}
.y52{bottom:847.653333pt;}
.ya{bottom:852.133333pt;}
.ybf{bottom:859.813333pt;}
.yb6{bottom:862.693333pt;}
.y33{bottom:863.493333pt;}
.ye5{bottom:866.053333pt;}
.y51{bottom:875.173333pt;}
.y32{bottom:883.333333pt;}
.y9{bottom:884.293333pt;}
.ye4{bottom:884.453333pt;}
.ybe{bottom:887.333333pt;}
.yb5{bottom:890.373333pt;}
.y50{bottom:902.853333pt;}
.yff{bottom:909.413333pt;}
.y8{bottom:910.853333pt;}
.y31{bottom:913.893333pt;}
.ybd{bottom:915.013333pt;}
.yb4{bottom:917.893333pt;}
.ye3{bottom:921.253333pt;}
.y4f{bottom:930.373333pt;}
.y30{bottom:933.733333pt;}
.ye2{bottom:939.653333pt;}
.yae{bottom:942.013261pt;}
.yb3{bottom:942.053333pt;}
.ybc{bottom:944.613333pt;}
.y7{bottom:947.973333pt;}
.y2f{bottom:953.573333pt;}
.y4e{bottom:958.053333pt;}
.y2e{bottom:973.413333pt;}
.y6{bottom:974.373333pt;}
.ye1{bottom:976.453333pt;}
.ybb{bottom:978.373333pt;}
.y4d{bottom:985.573333pt;}
.y2d{bottom:993.253333pt;}
.ye0{bottom:994.853333pt;}
.y5{bottom:1010.693333pt;}
.y2c{bottom:1013.280000pt;}
.hd{height:28.640000pt;}
.h9{height:40.488438pt;}
.h16{height:47.621250pt;}
.h7{height:48.781250pt;}
.h2{height:52.785000pt;}
.h6{height:57.375000pt;}
.hf{height:57.541829pt;}
.h12{height:57.600135pt;}
.hb{height:57.873452pt;}
.h10{height:58.079603pt;}
.h13{height:58.138454pt;}
.hc{height:58.414325pt;}
.h3{height:58.563750pt;}
.h8{height:66.507188pt;}
.h4{height:67.128750pt;}
.h5{height:75.602187pt;}
.h11{height:85.062394pt;}
.ha{height:170.992228pt;}
.he{height:233.864726pt;}
.h14{height:793.760000pt;}
.h15{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:350.792539pt;}
.w6{width:425.937396pt;}
.w3{width:534.122306pt;}
.w4{width:566.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w9{width:1122.559983pt;}
.w7{width:1122.560000pt;}
.w8{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x8{left:2.149386pt;}
.x10{left:94.399983pt;}
.x1{left:113.471988pt;}
.x11{left:115.071983pt;}
.x7{left:130.421350pt;}
.x6{left:160.666655pt;}
.xe{left:161.822284pt;}
.x3{left:192.186655pt;}
.x4{left:208.986655pt;}
.x5{left:233.146655pt;}
.xb{left:245.619409pt;}
.xa{left:283.394667pt;}
.x2{left:396.866655pt;}
.xd{left:420.573322pt;}
.xf{left:587.813322pt;}
.xc{left:596.453322pt;}
.x9{left:664.613322pt;}
}




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