
    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_73abd43ddfe4aa3328729aa2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_cae1ea7d610a1846b63a41b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_be3adae5092843fb2048bd3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_292ddd8ac34d9296a6092490.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_117ecd9a66223b6109b19efb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_b238afdbeefa1143f06458ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_d133b10d21c6f018af9e88c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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_2ead8d4c3da4f46af07422b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_0c14cfbe89645b66013f8c2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_4d1ff284a3db53121deb9f17.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0755e37593d81d9b3709258e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937988;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_12b5b1c8be9b7c12e9678b08.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4d15e6f396ebfa45d9859482.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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:ffe;src:url('chunks/assets/font_203b71eecb1880e7394c2711.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850586;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:fff;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3e89fab79c03a7da9ec99eb6.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5adc97439ecafb56a097916f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.041992;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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(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:-7.200000px;}
.v5{vertical-align:-6.071512px;}
.v7{vertical-align:-4.320000px;}
.v3{vertical-align:-2.880000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v8{vertical-align:4.320000px;}
.v6{vertical-align:6.071512px;}
.v2{vertical-align:7.200000px;}
.ls1a{letter-spacing:-1.806000px;}
.ls2c{letter-spacing:-0.548400px;}
.ls25{letter-spacing:-0.483600px;}
.ls11{letter-spacing:-0.420600px;}
.ls19{letter-spacing:-0.366000px;}
.ls26{letter-spacing:-0.312600px;}
.ls17{letter-spacing:-0.229200px;}
.ls12{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.028800px;}
.ls13{letter-spacing:0.078000px;}
.lse{letter-spacing:0.148800px;}
.ls15{letter-spacing:0.191400px;}
.ls1b{letter-spacing:0.198600px;}
.ls9{letter-spacing:0.198720px;}
.ls29{letter-spacing:0.276000px;}
.ls21{letter-spacing:0.414720px;}
.ls16{letter-spacing:0.427800px;}
.ls27{letter-spacing:0.493800px;}
.ls23{letter-spacing:0.516960px;}
.ls14{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.584400px;}
.ls1f{letter-spacing:0.675360px;}
.ls24{letter-spacing:1.208160px;}
.ls1e{letter-spacing:1.211040px;}
.lsa{letter-spacing:1.331040px;}
.lsd{letter-spacing:1.435680px;}
.ls0{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.580111px;}
.ls22{letter-spacing:1.854720px;}
.ls6{letter-spacing:2.694240px;}
.lsc{letter-spacing:2.750400px;}
.ls4{letter-spacing:2.875680px;}
.ls10{letter-spacing:2.880000px;}
.ls7{letter-spacing:4.320000px;}
.ls20{letter-spacing:4.452000px;}
.ls28{letter-spacing:5.760000px;}
.ls3{letter-spacing:11.520000px;}
.ls1{letter-spacing:12.960000px;}
.ls5{letter-spacing:13.080000px;}
.lsb{letter-spacing:14.400000px;}
.ls8{letter-spacing:19.931040px;}
.ls2b{letter-spacing:30.939840px;}
.lsf{letter-spacing:41.019840px;}
.ls1d{letter-spacing:41.163840px;}
.ls2a{letter-spacing:61.323840px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-90.720000px;}
.ws2{word-spacing:-83.520000px;}
.ws8{word-spacing:-60.480000px;}
.ws0{word-spacing:-23.549640px;}
.ws5{word-spacing:-19.923720px;}
.ws6{word-spacing:-19.732320px;}
.ws7{word-spacing:-19.627682px;}
.ws1{word-spacing:-19.010880px;}
.wsa{word-spacing:-18.093360px;}
.wsf{word-spacing:-18.002760px;}
.wse{word-spacing:-17.890800px;}
.wsc{word-spacing:-17.707560px;}
.ws9{word-spacing:-17.508960px;}
.ws10{word-spacing:-16.960560px;}
.ws4{word-spacing:-16.416000px;}
.ws3{word-spacing:-14.650800px;}
.wsd{word-spacing:0.000000px;}
._15{margin-left:-14.799240px;}
._3{margin-left:-13.389000px;}
._5{margin-left:-11.741760px;}
._14{margin-left:-4.338720px;}
._b{margin-left:-2.880000px;}
._2{margin-left:-1.722240px;}
._0{width:1.620360px;}
._1{width:3.264840px;}
._10{width:4.366080px;}
._1d{width:6.096600px;}
._25{width:7.437600px;}
._4{width:8.785440px;}
._a{width:10.130040px;}
._26{width:12.000960px;}
._1f{width:13.982400px;}
._16{width:15.785280px;}
._13{width:19.331640px;}
._19{width:20.828520px;}
._e{width:22.468320px;}
._d{width:23.711760px;}
._c{width:24.832800px;}
._7{width:26.797680px;}
._6{width:28.656000px;}
._1e{width:30.752640px;}
._12{width:32.806680px;}
._11{width:34.253880px;}
._28{width:35.909280px;}
._1b{width:38.091600px;}
._1c{width:39.365160px;}
._1a{width:40.478400px;}
._23{width:42.075960px;}
._18{width:43.884720px;}
._17{width:45.365760px;}
._29{width:49.971960px;}
._2a{width:50.996520px;}
._9{width:58.072320px;}
._8{width:59.168160px;}
._f{width:63.231840px;}
._27{width:66.183840px;}
._2c{width:143.103480px;}
._2b{width:144.840360px;}
._22{width:154.994280px;}
._20{width:190.248600px;}
._21{width:197.745600px;}
._24{width:199.536480px;}
._2d{width:846.947040px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs6{font-size:24.480000px;}
.fsd{font-size:36.000000px;}
.fs9{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:75.893905px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fsc{font-size:90.720000px;}
.fsb{font-size:93.600000px;}
.fs7{font-size:96.480000px;}
.fs8{font-size:101.697833px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1a{bottom:1.425000px;}
.y12{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y61{bottom:11.505000px;}
.y66{bottom:11.865000px;}
.y5e{bottom:11.895000px;}
.y64{bottom:11.910000px;}
.y10{bottom:20.160000px;}
.y17{bottom:29.865000px;}
.y5{bottom:33.120000px;}
.y60{bottom:41.385000px;}
.y63{bottom:41.430000px;}
.y16{bottom:51.105000px;}
.y1{bottom:51.120000px;}
.y15{bottom:77.415000px;}
.y39{bottom:77.796000px;}
.y14{bottom:109.455000px;}
.y31{bottom:123.876000px;}
.y79{bottom:126.396000px;}
.y56{bottom:131.076000px;}
.y36{bottom:139.356000px;}
.y30{bottom:157.710000px;}
.y78{bottom:159.870000px;}
.y55{bottom:164.910000px;}
.y35{bottom:173.190000px;}
.yab{bottom:189.030000px;}
.y2f{bottom:191.550000px;}
.y77{bottom:193.710000px;}
.y54{bottom:198.750000px;}
.y34{bottom:212.835000px;}
.yaa{bottom:222.555000px;}
.y8f{bottom:223.275000px;}
.y2e{bottom:225.075000px;}
.y76{bottom:227.595000px;}
.y53{bottom:232.275000px;}
.y33{bottom:252.795000px;}
.ya9{bottom:256.395000px;}
.y8e{bottom:256.755000px;}
.y2d{bottom:258.915000px;}
.y75{bottom:261.075000px;}
.y52{bottom:272.235000px;}
.y32{bottom:286.635000px;}
.ya8{bottom:290.235000px;}
.y8d{bottom:290.595000px;}
.y2c{bottom:292.755000px;}
.y74{bottom:301.035000px;}
.y51{bottom:312.195000px;}
.ya7{bottom:323.715000px;}
.y8c{bottom:324.435000px;}
.y2b{bottom:326.265000px;}
.y73{bottom:340.665000px;}
.y50{bottom:351.825000px;}
.ya6{bottom:357.585000px;}
.y8b{bottom:357.945000px;}
.y2a{bottom:360.105000px;}
.y72{bottom:374.505000px;}
.y4f{bottom:385.665000px;}
.ya5{bottom:391.425000px;}
.y8a{bottom:391.785000px;}
.y29{bottom:393.945000px;}
.y71{bottom:408.345000px;}
.y4e{bottom:419.505000px;}
.ya4{bottom:424.905000px;}
.y89{bottom:425.265000px;}
.y28{bottom:427.425000px;}
.y70{bottom:447.945000px;}
.ya3{bottom:458.790000px;}
.y4d{bottom:459.150000px;}
.y27{bottom:461.310000px;}
.y88{bottom:465.270000px;}
.y6f{bottom:487.950000px;}
.ya2{bottom:492.630000px;}
.y26{bottom:495.150000px;}
.y4c{bottom:499.110000px;}
.y87{bottom:505.230000px;}
.y6e{bottom:521.790000px;}
.ya1{bottom:526.110000px;}
.y25{bottom:528.630000px;}
.y4b{bottom:532.590000px;}
.y86{bottom:538.710000px;}
.ya0{bottom:559.950000px;}
.y6d{bottom:561.390000px;}
.y24{bottom:562.470000px;}
.y4a{bottom:572.550000px;}
.y85{bottom:578.700000px;}
.y9f{bottom:593.820000px;}
.y23{bottom:596.340000px;}
.y6c{bottom:601.380000px;}
.y49{bottom:606.420000px;}
.y84{bottom:618.660000px;}
.y9e{bottom:627.300000px;}
.y22{bottom:629.820000px;}
.y6b{bottom:640.980000px;}
.y48{bottom:646.020000px;}
.y83{bottom:652.140000px;}
.y9d{bottom:661.140000px;}
.y21{bottom:663.660000px;}
.y6a{bottom:674.820000px;}
.y47{bottom:685.980000px;}
.y82{bottom:692.100000px;}
.y9c{bottom:694.980000px;}
.y20{bottom:697.500000px;}
.y69{bottom:708.690000px;}
.y46{bottom:719.850000px;}
.y81{bottom:725.610000px;}
.y68{bottom:727.425000px;}
.y9b{bottom:728.490000px;}
.y1f{bottom:731.010000px;}
.y45{bottom:753.330000px;}
.y67{bottom:758.025000px;}
.y9a{bottom:762.330000px;}
.y1e{bottom:764.850000px;}
.y80{bottom:765.570000px;}
.y44{bottom:787.170000px;}
.y65{bottom:788.625000px;}
.y99{bottom:796.170000px;}
.y1d{bottom:798.690000px;}
.y7f{bottom:805.530000px;}
.y62{bottom:819.225000px;}
.y43{bottom:827.175000px;}
.y98{bottom:830.055000px;}
.y1c{bottom:832.215000px;}
.y7e{bottom:839.055000px;}
.y42{bottom:860.655000px;}
.y97{bottom:863.535000px;}
.y1b{bottom:866.055000px;}
.y7d{bottom:872.895000px;}
.y5f{bottom:879.750000px;}
.y19{bottom:884.070000px;}
.y13{bottom:891.270000px;}
.y18{bottom:894.891861px;}
.y96{bottom:897.375000px;}
.y41{bottom:900.615000px;}
.y7c{bottom:906.735000px;}
.y95{bottom:931.215000px;}
.y5d{bottom:939.870000px;}
.y40{bottom:940.215000px;}
.y7b{bottom:946.335000px;}
.y94{bottom:964.725000px;}
.y3f{bottom:974.085000px;}
.y7a{bottom:980.205000px;}
.y5c{bottom:986.325000px;}
.y93{bottom:998.565000px;}
.y3e{bottom:1014.045000px;}
.y5b{bottom:1020.165000px;}
.y11{bottom:1029.165000px;}
.y92{bottom:1032.405000px;}
.yf{bottom:1035.645000px;}
.y3d{bottom:1047.525000px;}
.y5a{bottom:1053.645000px;}
.y91{bottom:1065.885000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y3c{bottom:1087.530000px;}
.y59{bottom:1093.650000px;}
.y90{bottom:1099.770000px;}
.y2{bottom:1106.250000px;}
.y3b{bottom:1127.490000px;}
.y7{bottom:1128.570000px;}
.y58{bottom:1133.610000px;}
.y4{bottom:1156.650000px;}
.y3a{bottom:1160.970000px;}
.y57{bottom:1167.090000px;}
.y38{bottom:1187.250000px;}
.y37{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h19{height:7.185000px;}
.hd{height:13.857187px;}
.h1a{height:18.120938px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h22{height:29.865000px;}
.h1f{height:29.880000px;}
.h1e{height:30.480469px;}
.he{height:41.070000px;}
.h5{height:52.950000px;}
.h16{height:55.586356px;}
.h9{height:56.084062px;}
.h15{height:59.328281px;}
.h20{height:59.385000px;}
.h21{height:59.421000px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h1b{height:62.015625px;}
.h17{height:63.984375px;}
.h1c{height:66.445312px;}
.h13{height:70.664062px;}
.h6{height:70.714687px;}
.h18{height:72.562500px;}
.h14{height:74.485717px;}
.hf{height:74.882812px;}
.h4{height:79.925027px;}
.h1d{height:93.245864px;}
.h3{height:103.350000px;}
.h12{height:137.880000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:87.516000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w9{width:113.421000px;}
.wa{width:145.125000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x12{left:101.545500px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x1f{left:113.076000px;}
.x20{left:140.112000px;}
.x1a{left:162.075000px;}
.x4{left:168.930000px;}
.x6{left:208.860000px;}
.x15{left:214.300500px;}
.x13{left:276.940500px;}
.x14{left:293.170500px;}
.x18{left:325.030998px;}
.x11{left:335.650500px;}
.x16{left:369.850500px;}
.xa{left:445.860000px;}
.x21{left:455.580000px;}
.x17{left:457.360500px;}
.x1b{left:473.580000px;}
.x1d{left:478.620000px;}
.x1e{left:505.650000px;}
.x1c{left:527.610000px;}
.x22{left:543.825000px;}
.x23{left:657.990000px;}
.x7{left:722.445000px;}
.x1{left:749.445000px;}
@media print{
.v1{vertical-align:-6.400000pt;}
.v5{vertical-align:-5.396900pt;}
.v7{vertical-align:-3.840000pt;}
.v3{vertical-align:-2.560000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v8{vertical-align:3.840000pt;}
.v6{vertical-align:5.396900pt;}
.v2{vertical-align:6.400000pt;}
.ls1a{letter-spacing:-1.605333pt;}
.ls2c{letter-spacing:-0.487467pt;}
.ls25{letter-spacing:-0.429867pt;}
.ls11{letter-spacing:-0.373867pt;}
.ls19{letter-spacing:-0.325333pt;}
.ls26{letter-spacing:-0.277867pt;}
.ls17{letter-spacing:-0.203733pt;}
.ls12{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.025600pt;}
.ls13{letter-spacing:0.069333pt;}
.lse{letter-spacing:0.132267pt;}
.ls15{letter-spacing:0.170133pt;}
.ls1b{letter-spacing:0.176533pt;}
.ls9{letter-spacing:0.176640pt;}
.ls29{letter-spacing:0.245333pt;}
.ls21{letter-spacing:0.368640pt;}
.ls16{letter-spacing:0.380267pt;}
.ls27{letter-spacing:0.438933pt;}
.ls23{letter-spacing:0.459520pt;}
.ls14{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.519467pt;}
.ls1f{letter-spacing:0.600320pt;}
.ls24{letter-spacing:1.073920pt;}
.ls1e{letter-spacing:1.076480pt;}
.lsa{letter-spacing:1.183147pt;}
.lsd{letter-spacing:1.276160pt;}
.ls0{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.404543pt;}
.ls22{letter-spacing:1.648640pt;}
.ls6{letter-spacing:2.394880pt;}
.lsc{letter-spacing:2.444800pt;}
.ls4{letter-spacing:2.556160pt;}
.ls10{letter-spacing:2.560000pt;}
.ls7{letter-spacing:3.840000pt;}
.ls20{letter-spacing:3.957333pt;}
.ls28{letter-spacing:5.120000pt;}
.ls3{letter-spacing:10.240000pt;}
.ls1{letter-spacing:11.520000pt;}
.ls5{letter-spacing:11.626667pt;}
.lsb{letter-spacing:12.800000pt;}
.ls8{letter-spacing:17.716480pt;}
.ls2b{letter-spacing:27.502080pt;}
.lsf{letter-spacing:36.462080pt;}
.ls1d{letter-spacing:36.590080pt;}
.ls2a{letter-spacing:54.510080pt;}
.wsb{word-spacing:-80.640000pt;}
.ws2{word-spacing:-74.240000pt;}
.ws8{word-spacing:-53.760000pt;}
.ws0{word-spacing:-20.933013pt;}
.ws5{word-spacing:-17.709973pt;}
.ws6{word-spacing:-17.539840pt;}
.ws7{word-spacing:-17.446828pt;}
.ws1{word-spacing:-16.898560pt;}
.wsa{word-spacing:-16.082987pt;}
.wsf{word-spacing:-16.002453pt;}
.wse{word-spacing:-15.902933pt;}
.wsc{word-spacing:-15.740053pt;}
.ws9{word-spacing:-15.563520pt;}
.ws10{word-spacing:-15.076053pt;}
.ws4{word-spacing:-14.592000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsd{word-spacing:0.000000pt;}
._15{margin-left:-13.154880pt;}
._3{margin-left:-11.901333pt;}
._5{margin-left:-10.437120pt;}
._14{margin-left:-3.856640pt;}
._b{margin-left:-2.560000pt;}
._2{margin-left:-1.530880pt;}
._0{width:1.440320pt;}
._1{width:2.902080pt;}
._10{width:3.880960pt;}
._1d{width:5.419200pt;}
._25{width:6.611200pt;}
._4{width:7.809280pt;}
._a{width:9.004480pt;}
._26{width:10.667520pt;}
._1f{width:12.428800pt;}
._16{width:14.031360pt;}
._13{width:17.183680pt;}
._19{width:18.514240pt;}
._e{width:19.971840pt;}
._d{width:21.077120pt;}
._c{width:22.073600pt;}
._7{width:23.820160pt;}
._6{width:25.472000pt;}
._1e{width:27.335680pt;}
._12{width:29.161493pt;}
._11{width:30.447893pt;}
._28{width:31.919360pt;}
._1b{width:33.859200pt;}
._1c{width:34.991253pt;}
._1a{width:35.980800pt;}
._23{width:37.400853pt;}
._18{width:39.008640pt;}
._17{width:40.325120pt;}
._29{width:44.419520pt;}
._2a{width:45.330240pt;}
._9{width:51.619840pt;}
._8{width:52.593920pt;}
._f{width:56.206080pt;}
._27{width:58.830080pt;}
._2c{width:127.203093pt;}
._2b{width:128.746987pt;}
._22{width:137.772693pt;}
._20{width:169.109867pt;}
._21{width:175.773867pt;}
._24{width:177.365760pt;}
._2d{width:752.841813pt;}
.fs4{font-size:16.640000pt;}
.fs6{font-size:21.760000pt;}
.fsd{font-size:32.000000pt;}
.fs9{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:67.461249pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fsc{font-size:80.640000pt;}
.fsb{font-size:83.200000pt;}
.fs7{font-size:85.760000pt;}
.fs8{font-size:90.398073pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1a{bottom:1.266667pt;}
.y12{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y61{bottom:10.226667pt;}
.y66{bottom:10.546667pt;}
.y5e{bottom:10.573333pt;}
.y64{bottom:10.586667pt;}
.y10{bottom:17.920000pt;}
.y17{bottom:26.546667pt;}
.y5{bottom:29.440000pt;}
.y60{bottom:36.786667pt;}
.y63{bottom:36.826667pt;}
.y16{bottom:45.426667pt;}
.y1{bottom:45.440000pt;}
.y15{bottom:68.813333pt;}
.y39{bottom:69.152000pt;}
.y14{bottom:97.293333pt;}
.y31{bottom:110.112000pt;}
.y79{bottom:112.352000pt;}
.y56{bottom:116.512000pt;}
.y36{bottom:123.872000pt;}
.y30{bottom:140.186667pt;}
.y78{bottom:142.106667pt;}
.y55{bottom:146.586667pt;}
.y35{bottom:153.946667pt;}
.yab{bottom:168.026667pt;}
.y2f{bottom:170.266667pt;}
.y77{bottom:172.186667pt;}
.y54{bottom:176.666667pt;}
.y34{bottom:189.186667pt;}
.yaa{bottom:197.826667pt;}
.y8f{bottom:198.466667pt;}
.y2e{bottom:200.066667pt;}
.y76{bottom:202.306667pt;}
.y53{bottom:206.466667pt;}
.y33{bottom:224.706667pt;}
.ya9{bottom:227.906667pt;}
.y8e{bottom:228.226667pt;}
.y2d{bottom:230.146667pt;}
.y75{bottom:232.066667pt;}
.y52{bottom:241.986667pt;}
.y32{bottom:254.786667pt;}
.ya8{bottom:257.986667pt;}
.y8d{bottom:258.306667pt;}
.y2c{bottom:260.226667pt;}
.y74{bottom:267.586667pt;}
.y51{bottom:277.506667pt;}
.ya7{bottom:287.746667pt;}
.y8c{bottom:288.386667pt;}
.y2b{bottom:290.013333pt;}
.y73{bottom:302.813333pt;}
.y50{bottom:312.733333pt;}
.ya6{bottom:317.853333pt;}
.y8b{bottom:318.173333pt;}
.y2a{bottom:320.093333pt;}
.y72{bottom:332.893333pt;}
.y4f{bottom:342.813333pt;}
.ya5{bottom:347.933333pt;}
.y8a{bottom:348.253333pt;}
.y29{bottom:350.173333pt;}
.y71{bottom:362.973333pt;}
.y4e{bottom:372.893333pt;}
.ya4{bottom:377.693333pt;}
.y89{bottom:378.013333pt;}
.y28{bottom:379.933333pt;}
.y70{bottom:398.173333pt;}
.ya3{bottom:407.813333pt;}
.y4d{bottom:408.133333pt;}
.y27{bottom:410.053333pt;}
.y88{bottom:413.573333pt;}
.y6f{bottom:433.733333pt;}
.ya2{bottom:437.893333pt;}
.y26{bottom:440.133333pt;}
.y4c{bottom:443.653333pt;}
.y87{bottom:449.093333pt;}
.y6e{bottom:463.813333pt;}
.ya1{bottom:467.653333pt;}
.y25{bottom:469.893333pt;}
.y4b{bottom:473.413333pt;}
.y86{bottom:478.853333pt;}
.ya0{bottom:497.733333pt;}
.y6d{bottom:499.013333pt;}
.y24{bottom:499.973333pt;}
.y4a{bottom:508.933333pt;}
.y85{bottom:514.400000pt;}
.y9f{bottom:527.840000pt;}
.y23{bottom:530.080000pt;}
.y6c{bottom:534.560000pt;}
.y49{bottom:539.040000pt;}
.y84{bottom:549.920000pt;}
.y9e{bottom:557.600000pt;}
.y22{bottom:559.840000pt;}
.y6b{bottom:569.760000pt;}
.y48{bottom:574.240000pt;}
.y83{bottom:579.680000pt;}
.y9d{bottom:587.680000pt;}
.y21{bottom:589.920000pt;}
.y6a{bottom:599.840000pt;}
.y47{bottom:609.760000pt;}
.y82{bottom:615.200000pt;}
.y9c{bottom:617.760000pt;}
.y20{bottom:620.000000pt;}
.y69{bottom:629.946667pt;}
.y46{bottom:639.866667pt;}
.y81{bottom:644.986667pt;}
.y68{bottom:646.600000pt;}
.y9b{bottom:647.546667pt;}
.y1f{bottom:649.786667pt;}
.y45{bottom:669.626667pt;}
.y67{bottom:673.800000pt;}
.y9a{bottom:677.626667pt;}
.y1e{bottom:679.866667pt;}
.y80{bottom:680.506667pt;}
.y44{bottom:699.706667pt;}
.y65{bottom:701.000000pt;}
.y99{bottom:707.706667pt;}
.y1d{bottom:709.946667pt;}
.y7f{bottom:716.026667pt;}
.y62{bottom:728.200000pt;}
.y43{bottom:735.266667pt;}
.y98{bottom:737.826667pt;}
.y1c{bottom:739.746667pt;}
.y7e{bottom:745.826667pt;}
.y42{bottom:765.026667pt;}
.y97{bottom:767.586667pt;}
.y1b{bottom:769.826667pt;}
.y7d{bottom:775.906667pt;}
.y5f{bottom:782.000000pt;}
.y19{bottom:785.840000pt;}
.y13{bottom:792.240000pt;}
.y18{bottom:795.459432pt;}
.y96{bottom:797.666667pt;}
.y41{bottom:800.546667pt;}
.y7c{bottom:805.986667pt;}
.y95{bottom:827.746667pt;}
.y5d{bottom:835.440000pt;}
.y40{bottom:835.746667pt;}
.y7b{bottom:841.186667pt;}
.y94{bottom:857.533333pt;}
.y3f{bottom:865.853333pt;}
.y7a{bottom:871.293333pt;}
.y5c{bottom:876.733333pt;}
.y93{bottom:887.613333pt;}
.y3e{bottom:901.373333pt;}
.y5b{bottom:906.813333pt;}
.y11{bottom:914.813333pt;}
.y92{bottom:917.693333pt;}
.yf{bottom:920.573333pt;}
.y3d{bottom:931.133333pt;}
.y5a{bottom:936.573333pt;}
.y91{bottom:947.453333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y3c{bottom:966.693333pt;}
.y59{bottom:972.133333pt;}
.y90{bottom:977.573333pt;}
.y2{bottom:983.333333pt;}
.y3b{bottom:1002.213333pt;}
.y7{bottom:1003.173333pt;}
.y58{bottom:1007.653333pt;}
.y4{bottom:1028.133333pt;}
.y3a{bottom:1031.973333pt;}
.y57{bottom:1037.413333pt;}
.y38{bottom:1055.333333pt;}
.y37{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h19{height:6.386667pt;}
.hd{height:12.317500pt;}
.h1a{height:16.107500pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h22{height:26.546667pt;}
.h1f{height:26.560000pt;}
.h1e{height:27.093750pt;}
.he{height:36.506667pt;}
.h5{height:47.066667pt;}
.h16{height:49.410094pt;}
.h9{height:49.852500pt;}
.h15{height:52.736250pt;}
.h20{height:52.786667pt;}
.h21{height:52.818667pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h1b{height:55.125000pt;}
.h17{height:56.875000pt;}
.h1c{height:59.062500pt;}
.h13{height:62.812500pt;}
.h6{height:62.857500pt;}
.h18{height:64.500000pt;}
.h14{height:66.209526pt;}
.hf{height:66.562500pt;}
.h4{height:71.044468pt;}
.h1d{height:82.885213pt;}
.h3{height:91.866667pt;}
.h12{height:122.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:77.792000pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w9{width:100.818667pt;}
.wa{width:129.000000pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x12{left:90.262667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x1f{left:100.512000pt;}
.x20{left:124.544000pt;}
.x1a{left:144.066667pt;}
.x4{left:150.160000pt;}
.x6{left:185.653333pt;}
.x15{left:190.489333pt;}
.x13{left:246.169333pt;}
.x14{left:260.596000pt;}
.x18{left:288.916443pt;}
.x11{left:298.356000pt;}
.x16{left:328.756000pt;}
.xa{left:396.320000pt;}
.x21{left:404.960000pt;}
.x17{left:406.542667pt;}
.x1b{left:420.960000pt;}
.x1d{left:425.440000pt;}
.x1e{left:449.466667pt;}
.x1c{left:468.986667pt;}
.x22{left:483.400000pt;}
.x23{left:584.880000pt;}
.x7{left:642.173333pt;}
.x1{left:666.173333pt;}
}




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