
    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_e26914307bea2b307d61c4e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_c126ac7fd7518a67605e4c10.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.679688;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_daae68afd332e7546130a9a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.000000;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_8a267fe086885aace951e8ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.703000;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_428b2ec0dab90af00b1574b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_1b257359363b3dbd40b87a53.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;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_5f3ff1e1b24e0bf1fe652226.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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;}
.m2{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.383936px;}
.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;}
}
.ws1{word-spacing:-19.795792px;}
.ws2{word-spacing:-15.565794px;}
.ws0{word-spacing:-14.889414px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.359617px;}
._1{margin-left:-1.293022px;}
._0{width:1.620590px;}
._6{width:3.606754px;}
._5{width:5.251603px;}
._7{width:6.428384px;}
._3{width:7.721439px;}
._4{width:9.134511px;}
._b{width:10.476411px;}
._a{width:12.552467px;}
._9{width:14.505769px;}
._1a{width:15.506473px;}
._8{width:16.630923px;}
._14{width:17.782040px;}
._13{width:19.136408px;}
._16{width:20.654419px;}
._15{width:21.788871px;}
._17{width:22.797826px;}
._19{width:33.215721px;}
._18{width:47.259344px;}
._11{width:249.009891px;}
._12{width:313.794614px;}
._f{width:321.936535px;}
._10{width:330.979212px;}
._e{width:352.335507px;}
._c{width:408.873919px;}
._d{width:619.195451px;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:2.705759px;}
.fs2{font-size:5.414398px;}
.fs10{font-size:11.503435px;}
.fs7{font-size:16.919993px;}
.fsf{font-size:33.839986px;}
.fsa{font-size:39.254384px;}
.fs8{font-size:45.343422px;}
.fs6{font-size:48.051341px;}
.fsd{font-size:50.759980px;}
.fs0{font-size:56.174378px;}
.fs9{font-size:59.557656px;}
.fsc{font-size:62.263175px;}
.fs1{font-size:67.679973px;}
.fs3{font-size:73.094371px;}
.fsb{font-size:79.183168px;}
.fs5{font-size:90.014364px;}
.fs4{font-size:113.023155px;}
.y96{bottom:-0.180220px;}
.y8d{bottom:-0.000386px;}
.y8f{bottom:-0.000336px;}
.y3f{bottom:-0.000322px;}
.y91{bottom:-0.000287px;}
.y98{bottom:-0.000172px;}
.y48{bottom:-0.000141px;}
.y9a{bottom:-0.000124px;}
.ya0{bottom:-0.000104px;}
.y0{bottom:0.000000px;}
.y74{bottom:3.419744px;}
.y79{bottom:3.419765px;}
.y9c{bottom:3.419881px;}
.y65{bottom:3.599671px;}
.y68{bottom:3.599685px;}
.y6e{bottom:3.599721px;}
.y71{bottom:3.599736px;}
.y3{bottom:109.439956px;}
.yc9{bottom:126.899949px;}
.y55{bottom:129.059948px;}
.y3c{bottom:130.859948px;}
.ybf{bottom:137.699945px;}
.yc8{bottom:143.099943px;}
.y54{bottom:146.879941px;}
.y3b{bottom:148.679941px;}
.ybe{bottom:155.519938px;}
.ya6{bottom:157.859937px;}
.y53{bottom:164.699934px;}
.yc7{bottom:165.059934px;}
.y3a{bottom:166.499933px;}
.ybd{bottom:173.339931px;}
.ya5{bottom:175.679930px;}
.y8b{bottom:178.559929px;}
.yc6{bottom:181.259927px;}
.y52{bottom:182.519927px;}
.y39{bottom:184.319926px;}
.ybc{bottom:190.979924px;}
.ya4{bottom:193.679923px;}
.yc5{bottom:193.859922px;}
.y8a{bottom:196.559921px;}
.y51{bottom:200.339920px;}
.y38{bottom:202.319919px;}
.ybb{bottom:207.359917px;}
.ya3{bottom:211.319915px;}
.y89{bottom:214.199914px;}
.y50{bottom:218.339913px;}
.y37{bottom:219.959912px;}
.yba{bottom:223.739911px;}
.ya2{bottom:229.319908px;}
.y88{bottom:232.019907px;}
.y4f{bottom:236.159906px;}
.yb9{bottom:237.779905px;}
.y36{bottom:237.959905px;}
.ya1{bottom:247.139901px;}
.y87{bottom:250.019900px;}
.y4e{bottom:253.799898px;}
.y35{bottom:255.779898px;}
.y9f{bottom:261.180000px;}
.y9e{bottom:264.779894px;}
.y86{bottom:267.659893px;}
.y4d{bottom:271.799891px;}
.y34{bottom:273.419891px;}
.y9d{bottom:281.159888px;}
.y85{bottom:285.299886px;}
.y4c{bottom:289.619884px;}
.y33{bottom:291.419883px;}
.y9b{bottom:293.940000px;}
.y84{bottom:304.019878px;}
.y4b{bottom:307.439877px;}
.y32{bottom:309.239876px;}
.y99{bottom:309.780000px;}
.yf8{bottom:318.779872px;}
.y4a{bottom:325.079870px;}
.y83{bottom:326.159870px;}
.y31{bottom:327.059869px;}
.yf7{bottom:334.979866px;}
.y49{bottom:340.739864px;}
.y30{bottom:343.619863px;}
.y82{bottom:343.979862px;}
.yf6{bottom:351.359859px;}
.y47{bottom:352.260000px;}
.y2f{bottom:358.379857px;}
.y81{bottom:361.799855px;}
.yf5{bottom:367.559853px;}
.y80{bottom:379.619848px;}
.y2e{bottom:379.979848px;}
.yf4{bottom:383.759846px;}
.y2d{bottom:395.099842px;}
.y7f{bottom:396.899841px;}
.yf3{bottom:399.779840px;}
.y7e{bottom:408.239837px;}
.y2c{bottom:413.099835px;}
.yf2{bottom:416.159834px;}
.y97{bottom:430.560000px;}
.y2b{bottom:430.739828px;}
.yf1{bottom:432.359827px;}
.yf0{bottom:446.039822px;}
.yc4{bottom:448.379821px;}
.y2a{bottom:448.559821px;}
.yef{bottom:453.059819px;}
.yc3{bottom:464.579814px;}
.y29{bottom:466.559813px;}
.yee{bottom:469.619812px;}
.yc2{bottom:480.959808px;}
.y28{bottom:484.379806px;}
.yed{bottom:485.819806px;}
.yc1{bottom:494.999802px;}
.yec{bottom:502.019799px;}
.y27{bottom:502.199799px;}
.yeb{bottom:515.339794px;}
.y7d{bottom:517.859793px;}
.y26{bottom:518.579793px;}
.yea{bottom:520.919792px;}
.y25{bottom:531.359787px;}
.y7c{bottom:535.679786px;}
.ye9{bottom:536.759785px;}
.y24{bottom:549.179780px;}
.y95{bottom:549.360000px;}
.ye8{bottom:550.439780px;}
.y7b{bottom:552.779779px;}
.ye7{bottom:566.819773px;}
.y23{bottom:566.999773px;}
.y7a{bottom:568.979772px;}
.ye6{bottom:577.079769px;}
.y78{bottom:583.200000px;}
.y22{bottom:584.819766px;}
.y77{bottom:586.619765px;}
.ye5{bottom:592.019763px;}
.y21{bottom:602.819759px;}
.y76{bottom:605.339758px;}
.ye4{bottom:608.219757px;}
.y20{bottom:620.459752px;}
.y75{bottom:622.979751px;}
.ye3{bottom:624.419750px;}
.y73{bottom:637.380000px;}
.y1f{bottom:637.739745px;}
.ye2{bottom:640.619744px;}
.y72{bottom:640.799744px;}
.y1e{bottom:655.199738px;}
.y70{bottom:655.740000px;}
.ye1{bottom:656.819737px;}
.y94{bottom:669.059732px;}
.ye0{bottom:673.199731px;}
.y1d{bottom:677.159729px;}
.y6f{bottom:678.059729px;}
.y46{bottom:681.659727px;}
.y93{bottom:686.879725px;}
.ydf{bottom:689.219724px;}
.y6d{bottom:692.820000px;}
.y1c{bottom:693.359723px;}
.y45{bottom:699.299720px;}
.y92{bottom:703.079719px;}
.yde{bottom:705.419718px;}
.y1b{bottom:708.299717px;}
.y6c{bottom:714.419714px;}
.y44{bottom:716.579713px;}
.y90{bottom:717.120000px;}
.y1a{bottom:721.259711px;}
.ydd{bottom:721.619711px;}
.yb8{bottom:726.659709px;}
.y6b{bottom:732.239707px;}
.y43{bottom:734.039706px;}
.ydc{bottom:737.999705px;}
.y19{bottom:741.959703px;}
.yb7{bottom:744.479702px;}
.y6a{bottom:750.779700px;}
.ydb{bottom:754.199698px;}
.y42{bottom:756.179698px;}
.y18{bottom:758.159697px;}
.yb6{bottom:762.299695px;}
.y69{bottom:768.599693px;}
.yda{bottom:770.399692px;}
.y17{bottom:774.539690px;}
.y41{bottom:775.439690px;}
.yb5{bottom:780.299688px;}
.y67{bottom:783.360000px;}
.yd9{bottom:786.419685px;}
.y16{bottom:790.739684px;}
.y40{bottom:791.639683px;}
.yb4{bottom:797.939681px;}
.yd8{bottom:802.799679px;}
.y3e{bottom:804.240000px;}
.y66{bottom:804.959678px;}
.y15{bottom:806.939677px;}
.yb3{bottom:815.759674px;}
.yd7{bottom:818.999672px;}
.y64{bottom:819.720000px;}
.y14{bottom:822.959671px;}
.yb2{bottom:833.759666px;}
.yd6{bottom:835.199666px;}
.y13{bottom:839.339664px;}
.y8e{bottom:839.880000px;}
.y63{bottom:841.319663px;}
.yb1{bottom:851.399659px;}
.y12{bottom:854.099658px;}
.y62{bottom:859.139656px;}
.y11{bottom:867.239653px;}
.yd5{bottom:867.779653px;}
.yb0{bottom:869.399652px;}
.y61{bottom:876.959649px;}
.yd4{bottom:884.699646px;}
.yaf{bottom:887.219645px;}
.y10{bottom:887.939645px;}
.y60{bottom:895.499642px;}
.yf{bottom:904.499638px;}
.yae{bottom:905.039638px;}
.yd3{bottom:907.379637px;}
.ye{bottom:912.419635px;}
.y5f{bottom:913.319635px;}
.yad{bottom:923.579631px;}
.yd{bottom:924.119630px;}
.yd2{bottom:929.879628px;}
.y5e{bottom:931.139628px;}
.yc{bottom:931.859627px;}
.yb{bottom:944.459622px;}
.yac{bottom:946.259621px;}
.y5d{bottom:949.499620px;}
.y9{bottom:951.839619px;}
.yd1{bottom:952.019619px;}
.ya{bottom:960.299616px;}
.y8c{bottom:964.260000px;}
.y5c{bottom:968.219613px;}
.yd0{bottom:969.839612px;}
.y8{bottom:972.179611px;}
.y5b{bottom:984.239606px;}
.yab{bottom:986.219606px;}
.ycf{bottom:987.659605px;}
.y7{bottom:991.619603px;}
.y5a{bottom:1000.619600px;}
.yaa{bottom:1003.859598px;}
.yce{bottom:1005.659598px;}
.y59{bottom:1018.439593px;}
.ya9{bottom:1021.679591px;}
.y6{bottom:1023.119591px;}
.ycd{bottom:1023.299591px;}
.y58{bottom:1036.439585px;}
.ya8{bottom:1039.679584px;}
.ycc{bottom:1040.039584px;}
.y5{bottom:1052.459579px;}
.y57{bottom:1053.719579px;}
.ycb{bottom:1054.799578px;}
.ya7{bottom:1057.319577px;}
.yc0{bottom:1059.839576px;}
.y4{bottom:1068.839572px;}
.y56{bottom:1070.999572px;}
.y2{bottom:1074.239570px;}
.y3d{bottom:1075.319570px;}
.yca{bottom:1076.399569px;}
.y1{bottom:1092.959563px;}
.hc{height:0.000000px;}
.h1c{height:0.540000px;}
.h1d{height:1.967087px;}
.h3{height:3.608717px;}
.h21{height:7.960377px;}
.h22{height:11.708635px;}
.ha{height:12.300835px;}
.h1a{height:13.680000px;}
.h17{height:13.860000px;}
.h1b{height:15.840000px;}
.h19{height:17.460000px;}
.h20{height:24.601670px;}
.hf{height:28.537937px;}
.h16{height:31.377648px;}
.hb{height:32.964668px;}
.h1f{height:34.007566px;}
.h9{height:34.933325px;}
.h1e{height:35.125906px;}
.h15{height:36.902505px;}
.h7{height:37.440442px;}
.h10{height:38.367100px;}
.h13{height:38.872669px;}
.he{height:40.796994px;}
.h1{height:40.838772px;}
.h12{height:43.086117px;}
.h14{height:45.265328px;}
.h18{height:46.834541px;}
.h4{height:48.717684px;}
.h2{height:49.203340px;}
.hd{height:50.069644px;}
.h8{height:53.139608px;}
.h11{height:54.794752px;}
.h6{height:59.994925px;}
.h5{height:75.330374px;}
.h0{height:1188.000000px;}
.w7{width:0.360000px;}
.w6{width:6.300000px;}
.w1{width:7.560000px;}
.w5{width:7.740000px;}
.w2{width:7.920000px;}
.w3{width:31.860000px;}
.w4{width:48.240000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:158.759936px;}
.x19{left:161.999935px;}
.x1a{left:167.759933px;}
.x1b{left:170.999932px;}
.x1e{left:173.699931px;}
.x17{left:174.779930px;}
.x1f{left:177.659929px;}
.x38{left:179.099928px;}
.x18{left:180.539928px;}
.x20{left:185.399926px;}
.x22{left:189.719924px;}
.x27{left:191.879923px;}
.x3a{left:196.379921px;}
.x3{left:203.219919px;}
.x4{left:222.299911px;}
.x28{left:225.899910px;}
.x29{left:233.639907px;}
.x1c{left:236.879905px;}
.xb{left:238.859904px;}
.x1d{left:242.639903px;}
.x3b{left:245.879902px;}
.x3c{left:256.859897px;}
.xc{left:257.939897px;}
.x44{left:260.639896px;}
.x4d{left:266.039894px;}
.x23{left:268.379893px;}
.x24{left:279.359888px;}
.x14{left:282.059887px;}
.x4c{left:285.659886px;}
.x45{left:286.919885px;}
.x32{left:292.139883px;}
.x3d{left:302.039879px;}
.x21{left:303.299879px;}
.x41{left:306.719877px;}
.x42{left:313.919874px;}
.x3e{left:316.259873px;}
.x2f{left:319.499872px;}
.x2a{left:322.739871px;}
.x34{left:324.000000px;}
.x48{left:329.759868px;}
.x5{left:334.439866px;}
.x2b{left:336.959865px;}
.x31{left:339.119864px;}
.x6{left:353.530359px;}
.x4b{left:362.339819px;}
.xd{left:363.779854px;}
.xe{left:382.319847px;}
.x3f{left:383.399847px;}
.x46{left:384.839846px;}
.x26{left:394.559919px;}
.x36{left:401.400000px;}
.x2e{left:404.099838px;}
.x7{left:419.219832px;}
.xf{left:424.619830px;}
.x37{left:434.340000px;}
.x8{left:437.939825px;}
.x43{left:443.159852px;}
.x2c{left:447.299821px;}
.x10{left:450.539820px;}
.x15{left:456.119818px;}
.x2{left:463.679815px;}
.x33{left:471.240092px;}
.x30{left:473.939815px;}
.x35{left:519.480000px;}
.x9{left:578.519769px;}
.xa{left:589.679764px;}
.x11{left:595.619762px;}
.x12{left:610.030256px;}
.x2d{left:611.100000px;}
.x40{left:635.040000px;}
.x16{left:639.179744px;}
.x39{left:642.419743px;}
.x4a{left:653.579739px;}
.x47{left:681.479727px;}
.x13{left:694.259722px;}
.x49{left:744.839702px;}
.x25{left:754.561040px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.341277pt;}
.ws1{word-spacing:-17.596260pt;}
.ws2{word-spacing:-13.836261pt;}
.ws0{word-spacing:-13.235035pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2.097437pt;}
._1{margin-left:-1.149353pt;}
._0{width:1.440525pt;}
._6{width:3.206004pt;}
._5{width:4.668092pt;}
._7{width:5.714119pt;}
._3{width:6.863501pt;}
._4{width:8.119565pt;}
._b{width:9.312365pt;}
._a{width:11.157748pt;}
._9{width:12.894017pt;}
._1a{width:13.783532pt;}
._8{width:14.783043pt;}
._14{width:15.806257pt;}
._13{width:17.010141pt;}
._16{width:18.359483pt;}
._15{width:19.367885pt;}
._17{width:20.264735pt;}
._19{width:29.525086pt;}
._18{width:42.008306pt;}
._11{width:221.342126pt;}
._12{width:278.928545pt;}
._f{width:286.165809pt;}
._10{width:294.203744pt;}
._e{width:313.187117pt;}
._c{width:363.443484pt;}
._d{width:550.395957pt;}
.fse{font-size:2.405119pt;}
.fs2{font-size:4.812798pt;}
.fs10{font-size:10.225276pt;}
.fs7{font-size:15.039994pt;}
.fsf{font-size:30.079988pt;}
.fsa{font-size:34.892786pt;}
.fs8{font-size:40.305264pt;}
.fs6{font-size:42.712303pt;}
.fsd{font-size:45.119982pt;}
.fs0{font-size:49.932780pt;}
.fs9{font-size:52.940139pt;}
.fsc{font-size:55.345045pt;}
.fs1{font-size:60.159976pt;}
.fs3{font-size:64.972774pt;}
.fsb{font-size:70.385039pt;}
.fs5{font-size:80.012768pt;}
.fs4{font-size:100.465026pt;}
.y96{bottom:-0.160195pt;}
.y8d{bottom:-0.000343pt;}
.y8f{bottom:-0.000299pt;}
.y3f{bottom:-0.000286pt;}
.y91{bottom:-0.000255pt;}
.y98{bottom:-0.000153pt;}
.y48{bottom:-0.000125pt;}
.y9a{bottom:-0.000110pt;}
.ya0{bottom:-0.000093pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:3.039772pt;}
.y79{bottom:3.039791pt;}
.y9c{bottom:3.039894pt;}
.y65{bottom:3.199707pt;}
.y68{bottom:3.199720pt;}
.y6e{bottom:3.199752pt;}
.y71{bottom:3.199766pt;}
.y3{bottom:97.279961pt;}
.yc9{bottom:112.799955pt;}
.y55{bottom:114.719954pt;}
.y3c{bottom:116.319953pt;}
.ybf{bottom:122.399951pt;}
.yc8{bottom:127.199949pt;}
.y54{bottom:130.559948pt;}
.y3b{bottom:132.159947pt;}
.ybe{bottom:138.239945pt;}
.ya6{bottom:140.319944pt;}
.y53{bottom:146.399941pt;}
.yc7{bottom:146.719941pt;}
.y3a{bottom:147.999941pt;}
.ybd{bottom:154.079938pt;}
.ya5{bottom:156.159938pt;}
.y8b{bottom:158.719937pt;}
.yc6{bottom:161.119936pt;}
.y52{bottom:162.239935pt;}
.y39{bottom:163.839934pt;}
.ybc{bottom:169.759932pt;}
.ya4{bottom:172.159931pt;}
.yc5{bottom:172.319931pt;}
.y8a{bottom:174.719930pt;}
.y51{bottom:178.079929pt;}
.y38{bottom:179.839928pt;}
.ybb{bottom:184.319926pt;}
.ya3{bottom:187.839925pt;}
.y89{bottom:190.399924pt;}
.y50{bottom:194.079922pt;}
.y37{bottom:195.519922pt;}
.yba{bottom:198.879920pt;}
.ya2{bottom:203.839918pt;}
.y88{bottom:206.239918pt;}
.y4f{bottom:209.919916pt;}
.yb9{bottom:211.359915pt;}
.y36{bottom:211.519915pt;}
.ya1{bottom:219.679912pt;}
.y87{bottom:222.239911pt;}
.y4e{bottom:225.599910pt;}
.y35{bottom:227.359909pt;}
.y9f{bottom:232.160000pt;}
.y9e{bottom:235.359906pt;}
.y86{bottom:237.919905pt;}
.y4d{bottom:241.599903pt;}
.y34{bottom:243.039903pt;}
.y9d{bottom:249.919900pt;}
.y85{bottom:253.599899pt;}
.y4c{bottom:257.439897pt;}
.y33{bottom:259.039896pt;}
.y9b{bottom:261.280000pt;}
.y84{bottom:270.239892pt;}
.y4b{bottom:273.279891pt;}
.y32{bottom:274.879890pt;}
.y99{bottom:275.360000pt;}
.yf8{bottom:283.359887pt;}
.y4a{bottom:288.959884pt;}
.y83{bottom:289.919884pt;}
.y31{bottom:290.719884pt;}
.yf7{bottom:297.759881pt;}
.y49{bottom:302.879879pt;}
.y30{bottom:305.439878pt;}
.y82{bottom:305.759878pt;}
.yf6{bottom:312.319875pt;}
.y47{bottom:313.120000pt;}
.y2f{bottom:318.559873pt;}
.y81{bottom:321.599871pt;}
.yf5{bottom:326.719869pt;}
.y80{bottom:337.439865pt;}
.y2e{bottom:337.759865pt;}
.yf4{bottom:341.119864pt;}
.y2d{bottom:351.199860pt;}
.y7f{bottom:352.799859pt;}
.yf3{bottom:355.359858pt;}
.y7e{bottom:362.879855pt;}
.y2c{bottom:367.199853pt;}
.yf2{bottom:369.919852pt;}
.y97{bottom:382.720000pt;}
.y2b{bottom:382.879847pt;}
.yf1{bottom:384.319846pt;}
.yf0{bottom:396.479841pt;}
.yc4{bottom:398.559841pt;}
.y2a{bottom:398.719841pt;}
.yef{bottom:402.719839pt;}
.yc3{bottom:412.959835pt;}
.y29{bottom:414.719834pt;}
.yee{bottom:417.439833pt;}
.yc2{bottom:427.519829pt;}
.y28{bottom:430.559828pt;}
.yed{bottom:431.839827pt;}
.yc1{bottom:439.999824pt;}
.yec{bottom:446.239822pt;}
.y27{bottom:446.399821pt;}
.yeb{bottom:458.079817pt;}
.y7d{bottom:460.319816pt;}
.y26{bottom:460.959816pt;}
.yea{bottom:463.039815pt;}
.y25{bottom:472.319811pt;}
.y7c{bottom:476.159810pt;}
.ye9{bottom:477.119809pt;}
.y24{bottom:488.159805pt;}
.y95{bottom:488.320000pt;}
.ye8{bottom:489.279804pt;}
.y7b{bottom:491.359803pt;}
.ye7{bottom:503.839798pt;}
.y23{bottom:503.999798pt;}
.y7a{bottom:505.759798pt;}
.ye6{bottom:512.959795pt;}
.y78{bottom:518.400000pt;}
.y22{bottom:519.839792pt;}
.y77{bottom:521.439791pt;}
.ye5{bottom:526.239790pt;}
.y21{bottom:535.839786pt;}
.y76{bottom:538.079785pt;}
.ye4{bottom:540.639784pt;}
.y20{bottom:551.519779pt;}
.y75{bottom:553.759778pt;}
.ye3{bottom:555.039778pt;}
.y73{bottom:566.560000pt;}
.y1f{bottom:566.879773pt;}
.ye2{bottom:569.439772pt;}
.y72{bottom:569.599772pt;}
.y1e{bottom:582.399767pt;}
.y70{bottom:582.880000pt;}
.ye1{bottom:583.839766pt;}
.y94{bottom:594.719762pt;}
.ye0{bottom:598.399761pt;}
.y1d{bottom:601.919759pt;}
.y6f{bottom:602.719759pt;}
.y46{bottom:605.919758pt;}
.y93{bottom:610.559756pt;}
.ydf{bottom:612.639755pt;}
.y6d{bottom:615.840000pt;}
.y1c{bottom:616.319753pt;}
.y45{bottom:621.599751pt;}
.y92{bottom:624.959750pt;}
.yde{bottom:627.039749pt;}
.y1b{bottom:629.599748pt;}
.y6c{bottom:635.039746pt;}
.y44{bottom:636.959745pt;}
.y90{bottom:637.440000pt;}
.y1a{bottom:641.119744pt;}
.ydd{bottom:641.439743pt;}
.yb8{bottom:645.919742pt;}
.y6b{bottom:650.879740pt;}
.y43{bottom:652.479739pt;}
.ydc{bottom:655.999738pt;}
.y19{bottom:659.519736pt;}
.yb7{bottom:661.759735pt;}
.y6a{bottom:667.359733pt;}
.ydb{bottom:670.399732pt;}
.y42{bottom:672.159731pt;}
.y18{bottom:673.919730pt;}
.yb6{bottom:677.599729pt;}
.y69{bottom:683.199727pt;}
.yda{bottom:684.799726pt;}
.y17{bottom:688.479725pt;}
.y41{bottom:689.279724pt;}
.yb5{bottom:693.599723pt;}
.y67{bottom:696.320000pt;}
.yd9{bottom:699.039720pt;}
.y16{bottom:702.879719pt;}
.y40{bottom:703.679719pt;}
.yb4{bottom:709.279716pt;}
.yd8{bottom:713.599715pt;}
.y3e{bottom:714.880000pt;}
.y66{bottom:715.519714pt;}
.y15{bottom:717.279713pt;}
.yb3{bottom:725.119710pt;}
.yd7{bottom:727.999709pt;}
.y64{bottom:728.640000pt;}
.y14{bottom:731.519707pt;}
.yb2{bottom:741.119704pt;}
.yd6{bottom:742.399703pt;}
.y13{bottom:746.079702pt;}
.y8e{bottom:746.560000pt;}
.y63{bottom:747.839701pt;}
.yb1{bottom:756.799697pt;}
.y12{bottom:759.199696pt;}
.y62{bottom:763.679695pt;}
.y11{bottom:770.879692pt;}
.yd5{bottom:771.359691pt;}
.yb0{bottom:772.799691pt;}
.y61{bottom:779.519688pt;}
.yd4{bottom:786.399685pt;}
.yaf{bottom:788.639685pt;}
.y10{bottom:789.279684pt;}
.y60{bottom:795.999682pt;}
.yf{bottom:803.999678pt;}
.yae{bottom:804.479678pt;}
.yd3{bottom:806.559677pt;}
.ye{bottom:811.039676pt;}
.y5f{bottom:811.839675pt;}
.yad{bottom:820.959672pt;}
.yd{bottom:821.439671pt;}
.yd2{bottom:826.559669pt;}
.y5e{bottom:827.679669pt;}
.yc{bottom:828.319669pt;}
.yb{bottom:839.519664pt;}
.yac{bottom:841.119664pt;}
.y5d{bottom:843.999662pt;}
.y9{bottom:846.079662pt;}
.yd1{bottom:846.239662pt;}
.ya{bottom:853.599659pt;}
.y8c{bottom:857.120000pt;}
.y5c{bottom:860.639656pt;}
.yd0{bottom:862.079655pt;}
.y8{bottom:864.159654pt;}
.y5b{bottom:874.879650pt;}
.yab{bottom:876.639649pt;}
.ycf{bottom:877.919649pt;}
.y7{bottom:881.439647pt;}
.y5a{bottom:889.439644pt;}
.yaa{bottom:892.319643pt;}
.yce{bottom:893.919642pt;}
.y59{bottom:905.279638pt;}
.ya9{bottom:908.159637pt;}
.y6{bottom:909.439636pt;}
.ycd{bottom:909.599636pt;}
.y58{bottom:921.279631pt;}
.ya8{bottom:924.159630pt;}
.ycc{bottom:924.479630pt;}
.y5{bottom:935.519626pt;}
.y57{bottom:936.639625pt;}
.ycb{bottom:937.599625pt;}
.ya7{bottom:939.839624pt;}
.yc0{bottom:942.079623pt;}
.y4{bottom:950.079620pt;}
.y56{bottom:951.999619pt;}
.y2{bottom:954.879618pt;}
.y3d{bottom:955.839618pt;}
.yca{bottom:956.799617pt;}
.y1{bottom:971.519611pt;}
.hc{height:0.000000pt;}
.h1c{height:0.480000pt;}
.h1d{height:1.748522pt;}
.h3{height:3.207749pt;}
.h21{height:7.075891pt;}
.h22{height:10.407676pt;}
.ha{height:10.934076pt;}
.h1a{height:12.160000pt;}
.h17{height:12.320000pt;}
.h1b{height:14.080000pt;}
.h19{height:15.520000pt;}
.h20{height:21.868151pt;}
.hf{height:25.367055pt;}
.h16{height:27.891243pt;}
.hb{height:29.301927pt;}
.h1f{height:30.228948pt;}
.h9{height:31.051844pt;}
.h1e{height:31.223028pt;}
.h15{height:32.802227pt;}
.h7{height:33.280393pt;}
.h10{height:34.104089pt;}
.h13{height:34.553484pt;}
.he{height:36.263995pt;}
.h1{height:36.301131pt;}
.h12{height:38.298771pt;}
.h14{height:40.235847pt;}
.h18{height:41.630703pt;}
.h4{height:43.304608pt;}
.h2{height:43.736303pt;}
.hd{height:44.506350pt;}
.h8{height:47.235207pt;}
.h11{height:48.706447pt;}
.h6{height:53.328822pt;}
.h5{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w7{width:0.320000pt;}
.w6{width:5.600000pt;}
.w1{width:6.720000pt;}
.w5{width:6.880000pt;}
.w2{width:7.040000pt;}
.w3{width:28.320000pt;}
.w4{width:42.880000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:141.119944pt;}
.x19{left:143.999942pt;}
.x1a{left:149.119940pt;}
.x1b{left:151.999939pt;}
.x1e{left:154.399938pt;}
.x17{left:155.359938pt;}
.x1f{left:157.919937pt;}
.x38{left:159.199936pt;}
.x18{left:160.479936pt;}
.x20{left:164.799934pt;}
.x22{left:168.639933pt;}
.x27{left:170.559932pt;}
.x3a{left:174.559930pt;}
.x3{left:180.639928pt;}
.x4{left:197.599921pt;}
.x28{left:200.799920pt;}
.x29{left:207.679917pt;}
.x1c{left:210.559916pt;}
.xb{left:212.319915pt;}
.x1d{left:215.679914pt;}
.x3b{left:218.559913pt;}
.x3c{left:228.319909pt;}
.xc{left:229.279908pt;}
.x44{left:231.679907pt;}
.x4d{left:236.479905pt;}
.x23{left:238.559905pt;}
.x24{left:248.319901pt;}
.x14{left:250.719900pt;}
.x4c{left:253.919898pt;}
.x45{left:255.039898pt;}
.x32{left:259.679896pt;}
.x3d{left:268.479893pt;}
.x21{left:269.599892pt;}
.x41{left:272.639891pt;}
.x42{left:279.039888pt;}
.x3e{left:281.119888pt;}
.x2f{left:283.999886pt;}
.x2a{left:286.879885pt;}
.x34{left:288.000000pt;}
.x48{left:293.119883pt;}
.x5{left:297.279881pt;}
.x2b{left:299.519880pt;}
.x31{left:301.439879pt;}
.x6{left:314.249208pt;}
.x4b{left:322.079839pt;}
.xd{left:323.359871pt;}
.xe{left:339.839864pt;}
.x3f{left:340.799864pt;}
.x46{left:342.079863pt;}
.x26{left:350.719928pt;}
.x36{left:356.800000pt;}
.x2e{left:359.199856pt;}
.x7{left:372.639851pt;}
.xf{left:377.439849pt;}
.x37{left:386.080000pt;}
.x8{left:389.279844pt;}
.x43{left:393.919868pt;}
.x2c{left:397.599841pt;}
.x10{left:400.479840pt;}
.x15{left:405.439838pt;}
.x2{left:412.159835pt;}
.x33{left:418.880082pt;}
.x30{left:421.279835pt;}
.x35{left:461.760000pt;}
.x9{left:514.239794pt;}
.xa{left:524.159790pt;}
.x11{left:529.439788pt;}
.x12{left:542.249116pt;}
.x2d{left:543.200000pt;}
.x40{left:564.480000pt;}
.x16{left:568.159773pt;}
.x39{left:571.039772pt;}
.x4a{left:580.959768pt;}
.x47{left:605.759758pt;}
.x13{left:617.119753pt;}
.x49{left:662.079735pt;}
.x25{left:670.720924pt;}
}




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