
    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_4c6d2018589627feb251a57e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_4064f83a4ccf0cb43e357606.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_340b2aae42d781f59930a637.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239258;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_44cd9f0a8a8b384c1438b611.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_c964a42aec88c72284f61472.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f30a3216dacbb3ad090cbb1e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_e5e81d7811d6caf3c4188ba7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c3ba9dc87aefbbe1ec34b631.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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);}
.va{vertical-align:-23.759856px;}
.v1{vertical-align:-19.439964px;}
.v2{vertical-align:-13.679901px;}
.vb{vertical-align:-4.320099px;}
.vc{vertical-align:-2.880067px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.159910px;}
.v3{vertical-align:13.679901px;}
.v8{vertical-align:23.039978px;}
.v9{vertical-align:41.759991px;}
.v7{vertical-align:44.639919px;}
.v4{vertical-align:50.400058px;}
.v5{vertical-align:52.559969px;}
.lsa{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.038392px;}
.ls6{letter-spacing:0.047094px;}
.lse{letter-spacing:0.090360px;}
.ls15{letter-spacing:0.102303px;}
.ls13{letter-spacing:0.143311px;}
.ls35{letter-spacing:0.174475px;}
.ls9{letter-spacing:0.191144px;}
.ls22{letter-spacing:0.194355px;}
.ls14{letter-spacing:0.344590px;}
.ls10{letter-spacing:0.344657px;}
.ls1e{letter-spacing:0.344662px;}
.ls1a{letter-spacing:0.344725px;}
.ls3d{letter-spacing:0.358983px;}
.ls2b{letter-spacing:0.499513px;}
.ls2f{letter-spacing:0.589235px;}
.ls19{letter-spacing:1.035504px;}
.ls1f{letter-spacing:1.076074px;}
.ls2e{letter-spacing:1.124848px;}
.ls11{letter-spacing:1.179457px;}
.ls16{letter-spacing:1.179524px;}
.ls17{letter-spacing:1.179529px;}
.ls2d{letter-spacing:1.222583px;}
.lsc{letter-spacing:1.409472px;}
.ls2c{letter-spacing:1.625571px;}
.ls29{letter-spacing:1.625639px;}
.ls1d{letter-spacing:1.646098px;}
.ls18{letter-spacing:1.860835px;}
.lsd{letter-spacing:1.942596px;}
.ls34{letter-spacing:2.356109px;}
.ls1{letter-spacing:2.356244px;}
.ls1b{letter-spacing:2.580853px;}
.ls24{letter-spacing:2.973265px;}
.ls30{letter-spacing:2.973337px;}
.ls37{letter-spacing:3.076127px;}
.ls33{letter-spacing:3.076262px;}
.ls0{letter-spacing:3.304684px;}
.ls32{letter-spacing:5.586588px;}
.ls1c{letter-spacing:13.304612px;}
.ls7{letter-spacing:14.177073px;}
.ls5{letter-spacing:14.269275px;}
.lsb{letter-spacing:15.622641px;}
.ls21{letter-spacing:16.260889px;}
.ls12{letter-spacing:16.904626px;}
.ls4{letter-spacing:18.196672px;}
.ls2a{letter-spacing:21.065603px;}
.ls26{letter-spacing:21.076258px;}
.ls3{letter-spacing:21.551390px;}
.ls38{letter-spacing:23.586655px;}
.ls23{letter-spacing:28.424545px;}
.ls20{letter-spacing:28.540318px;}
.ls3b{letter-spacing:33.899570px;}
.ls27{letter-spacing:36.370754px;}
.ls28{letter-spacing:38.530772px;}
.lsf{letter-spacing:39.328657px;}
.ls3e{letter-spacing:44.645884px;}
.ls3c{letter-spacing:46.085848px;}
.ls31{letter-spacing:58.690750px;}
.ls25{letter-spacing:59.410763px;}
.ls36{letter-spacing:59.410768px;}
.ls3a{letter-spacing:60.130781px;}
.ls2{letter-spacing:61.570750px;}
.ls8{letter-spacing:542.029266px;}
.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;}
}
.ws19{word-spacing:-66.242700px;}
.ws1{word-spacing:-21.067992px;}
.ws3{word-spacing:-17.107894px;}
.ws8{word-spacing:-14.620488px;}
.ws4{word-spacing:-14.573394px;}
.wsc{word-spacing:-13.939695px;}
.ws2{word-spacing:-13.147695px;}
.ws0{word-spacing:-11.880495px;}
.wse{word-spacing:-1.457332px;}
.ws5{word-spacing:-0.861155px;}
.wsd{word-spacing:-0.823709px;}
.ws9{word-spacing:-0.463699px;}
.wsa{word-spacing:-0.342419px;}
.ws7{word-spacing:-0.196174px;}
.ws15{word-spacing:-0.127813px;}
.ws14{word-spacing:-0.127809px;}
.wsb{word-spacing:0.000000px;}
.ws1e{word-spacing:0.023264px;}
.wsf{word-spacing:0.190087px;}
.ws6{word-spacing:0.198728px;}
.ws16{word-spacing:0.592209px;}
.ws1a{word-spacing:3.378378px;}
.ws10{word-spacing:3.510863px;}
.ws12{word-spacing:3.528745px;}
.ws11{word-spacing:3.528817px;}
.ws1f{word-spacing:3.929175px;}
.ws18{word-spacing:4.099228px;}
.ws17{word-spacing:4.496787px;}
.ws1d{word-spacing:5.394487px;}
.ws13{word-spacing:5.754316px;}
.ws1b{word-spacing:6.386851px;}
.ws1c{word-spacing:6.591552px;}
._4{margin-left:-7.348324px;}
._7{margin-left:-6.112603px;}
._17{margin-left:-4.059312px;}
._e{margin-left:-2.860237px;}
._0{margin-left:-1.799052px;}
._1{width:1.303283px;}
._6{width:3.130485px;}
._5{width:4.424288px;}
._3{width:6.000123px;}
._2{width:7.051484px;}
._1c{width:8.218314px;}
._10{width:9.402396px;}
._11{width:10.726660px;}
._b{width:12.326803px;}
._a{width:13.388271px;}
._f{width:14.405575px;}
._9{width:15.538826px;}
._8{width:16.639329px;}
._c{width:17.735182px;}
._d{width:19.360982px;}
._16{width:20.560323px;}
._18{width:23.123762px;}
._14{width:24.981087px;}
._15{width:26.309652px;}
._13{width:28.019534px;}
._12{width:35.178672px;}
._19{width:189.478229px;}
._1a{width:230.866791px;}
._1b{width:232.063222px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.881485px;}
.fsa{font-size:41.761620px;}
.fs9{font-size:45.361800px;}
.fs7{font-size:48.241800px;}
.fs1{font-size:54.002250px;}
.fs5{font-size:59.762250px;}
.fs8{font-size:63.362250px;}
.fs0{font-size:66.242700px;}
.fs4{font-size:69.122700px;}
.fs6{font-size:77.763154px;}
.fs2{font-size:84.243145px;}
.fs3{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.059967px;}
.y87{bottom:25.740006px;}
.y85{bottom:36.720017px;}
.y3{bottom:57.780121px;}
.y2{bottom:76.500000px;}
.y71{bottom:133.020058px;}
.ya1{bottom:133.740074px;}
.y4e{bottom:135.180039px;}
.y26{bottom:139.500068px;}
.ya0{bottom:152.100083px;}
.y70{bottom:155.340088px;}
.y4d{bottom:157.500068px;}
.yc5{bottom:159.840088px;}
.y25{bottom:161.640060px;}
.y9f{bottom:171.180039px;}
.y6f{bottom:177.480079px;}
.y4c{bottom:179.640060px;}
.yc4{bottom:180.000068px;}
.y24{bottom:183.960091px;}
.y9e{bottom:189.540047px;}
.y4b{bottom:201.960091px;}
.y9c{bottom:205.740074px;}
.y23{bottom:206.280052px;}
.y6e{bottom:209.700096px;}
.yc3{bottom:215.280052px;}
.y4a{bottom:224.280052px;}
.y9b{bottom:227.160049px;}
.y22{bottom:228.600083px;}
.y6d{bottom:232.020058px;}
.yc2{bottom:235.440033px;}
.y9a{bottom:246.240074px;}
.y49{bottom:246.420043px;}
.y21{bottom:260.100083px;}
.y6c{bottom:264.060036px;}
.y99{bottom:264.600083px;}
.yc1{bottom:266.400055px;}
.y48{bottom:277.740074px;}
.y98{bottom:283.680039px;}
.y6b{bottom:286.380066px;}
.y97{bottom:302.040047px;}
.y6a{bottom:308.520058px;}
.y20{bottom:309.060036px;}
.yc0{bottom:309.240074px;}
.y47{bottom:317.700096px;}
.y96{bottom:321.300041px;}
.ybf{bottom:326.880066px;}
.y1f{bottom:333.180039px;}
.y46{bottom:338.940033px;}
.y95{bottom:339.660049px;}
.y69{bottom:340.740074px;}
.ybe{bottom:344.520058px;}
.y1e{bottom:356.940033px;}
.y94{bottom:358.740074px;}
.y44{bottom:361.980079px;}
.y68{bottom:363.060036px;}
.y45{bottom:367.920043px;}
.ybd{bottom:374.040047px;}
.y93{bottom:377.100083px;}
.y1d{bottom:380.880066px;}
.ybc{bottom:391.680039px;}
.y43{bottom:393.840088px;}
.y67{bottom:395.100083px;}
.y92{bottom:396.180039px;}
.y1c{bottom:404.640060px;}
.y91{bottom:414.540047px;}
.y42{bottom:415.440033px;}
.ybb{bottom:421.200096px;}
.y1b{bottom:428.580093px;}
.y90{bottom:433.800041px;}
.y41{bottom:436.680039px;}
.yba{bottom:438.840088px;}
.y8f{bottom:452.160049px;}
.y1a{bottom:452.340088px;}
.yb9{bottom:456.480079px;}
.y40{bottom:466.920043px;}
.y8e{bottom:471.240074px;}
.yb8{bottom:474.120072px;}
.y19{bottom:477.540047px;}
.y66{bottom:479.700096px;}
.y3f{bottom:488.160049px;}
.y8d{bottom:489.600083px;}
.y65{bottom:508.140060px;}
.y8c{bottom:508.680039px;}
.yb7{bottom:509.580093px;}
.y18{bottom:514.260064px;}
.y3e{bottom:524.700096px;}
.y17{bottom:525.420043px;}
.y8b{bottom:527.040047px;}
.yb6{bottom:531.900055px;}
.y64{bottom:536.580093px;}
.y8a{bottom:546.300041px;}
.y3d{bottom:547.020058px;}
.yb5{bottom:563.040047px;}
.y89{bottom:564.660049px;}
.y63{bottom:564.840088px;}
.y3c{bottom:569.340088px;}
.y16{bottom:576.720085px;}
.yb4{bottom:580.680039px;}
.y84{bottom:590.040047px;}
.y88{bottom:591.660049px;}
.y3b{bottom:592.020058px;}
.y62{bottom:593.280052px;}
.y86{bottom:597.960091px;}
.yb3{bottom:598.320099px;}
.y15{bottom:608.040047px;}
.y83{bottom:609.300041px;}
.y3a{bottom:614.160049px;}
.yb2{bottom:615.960091px;}
.y61{bottom:621.540047px;}
.y82{bottom:626.760064px;}
.y39{bottom:636.480079px;}
.y60{bottom:640.980079px;}
.y14{bottom:648.180039px;}
.yb1{bottom:651.420043px;}
.y38{bottom:658.800041px;}
.y81{bottom:664.380066px;}
.y5f{bottom:669.240074px;}
.y13{bottom:670.320099px;}
.yb0{bottom:673.740074px;}
.y80{bottom:686.700096px;}
.y37{bottom:690.120072px;}
.y12{bottom:692.640060px;}
.yaf{bottom:695.880066px;}
.y5e{bottom:701.640060px;}
.y7f{bottom:708.840054px;}
.y11{bottom:725.220051px;}
.y36{bottom:730.260064px;}
.yae{bottom:732.780052px;}
.y7e{bottom:741.420078px;}
.y5d{bottom:744.660049px;}
.y35{bottom:752.400055px;}
.yad{bottom:763.740074px;}
.y5c{bottom:766.800076px;}
.y10{bottom:768.240074px;}
.y34{bottom:774.720051px;}
.y7d{bottom:784.440067px;}
.yf{bottom:790.380066px;}
.y33{bottom:797.040081px;}
.y5b{bottom:798.120072px;}
.y7c{bottom:806.760064px;}
.ye{bottom:812.700061px;}
.y32{bottom:828.180073px;}
.y7b{bottom:828.900055px;}
.y5a{bottom:829.260064px;}
.yd{bottom:834.840054px;}
.y7a{bottom:851.220051px;}
.y59{bottom:851.580059px;}
.yc{bottom:857.160049px;}
.yac{bottom:860.220051px;}
.y31{bottom:869.760064px;}
.yb{bottom:879.480079px;}
.yab{bottom:882.360077px;}
.y58{bottom:882.900055px;}
.y79{bottom:883.800076px;}
.y30{bottom:897.840054px;}
.ya{bottom:901.620072px;}
.yaa{bottom:913.680073px;}
.y57{bottom:915.300076px;}
.y2f{bottom:925.380066px;}
.y78{bottom:926.640060px;}
.yce{bottom:933.840054px;}
.y9{bottom:934.200061px;}
.ya9{bottom:936.000068px;}
.y77{bottom:948.960056px;}
.y2e{bottom:955.620072px;}
.y56{bottom:958.320065px;}
.ya8{bottom:967.140060px;}
.ycd{bottom:970.740074px;}
.y76{bottom:971.280053px;}
.y2d{bottom:978.660067px;}
.y55{bottom:981.540064px;}
.ya7{bottom:989.460074px;}
.ycc{bottom:990.900072px;}
.y8{bottom:997.020058px;}
.y75{bottom:1002.420061px;}
.y54{bottom:1004.760064px;}
.y2c{bottom:1006.200061px;}
.ycb{bottom:1011.240074px;}
.y7{bottom:1017.720068px;}
.ya6{bottom:1020.600065px;}
.y74{bottom:1024.740074px;}
.y53{bottom:1027.800058px;}
.y2b{bottom:1042.740074px;}
.ya5{bottom:1042.920061px;}
.yca{bottom:1046.340070px;}
.y52{bottom:1051.020058px;}
.y73{bottom:1055.880066px;}
.y6{bottom:1058.040064px;}
.y2a{bottom:1064.880066px;}
.yc9{bottom:1066.680073px;}
.ya4{bottom:1074.240074px;}
.y51{bottom:1083.240074px;}
.yc8{bottom:1086.840070px;}
.y29{bottom:1087.200061px;}
.y5{bottom:1090.440067px;}
.ya3{bottom:1096.380066px;}
.y50{bottom:1105.380066px;}
.y28{bottom:1109.520058px;}
.yc7{bottom:1122.120063px;}
.ya2{bottom:1128.960065px;}
.y4{bottom:1136.520066px;}
.y4f{bottom:1137.960065px;}
.y72{bottom:1140.660067px;}
.y27{bottom:1140.840063px;}
.yc6{bottom:1142.280069px;}
.y1{bottom:1163.880066px;}
.h1b{height:15.659981px;}
.h1a{height:38.458211px;}
.h12{height:41.773611px;}
.h19{height:43.019989px;}
.hb{height:45.722608px;}
.h6{height:50.599483px;}
.h17{height:50.940033px;}
.hc{height:53.647530px;}
.h18{height:55.034963px;}
.h2{height:56.086349px;}
.hf{height:58.350197px;}
.h8{height:61.002799px;}
.hd{height:61.230193px;}
.h11{height:61.230265px;}
.h16{height:63.162709px;}
.h14{height:63.162713px;}
.h15{height:63.162983px;}
.he{height:64.813588px;}
.h13{height:64.813863px;}
.h7{height:65.840483px;}
.h3{height:71.326960px;}
.h4{height:81.081095px;}
.h10{height:83.533602px;}
.h5{height:88.188550px;}
.ha{height:105.642718px;}
.h9{height:113.562767px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w8{width:4.500000px;}
.w4{width:6.299972px;}
.w6{width:6.300007px;}
.wb{width:7.379997px;}
.wd{width:7.379998px;}
.wf{width:7.380031px;}
.w11{width:7.380065px;}
.w5{width:9.359974px;}
.w3{width:9.360009px;}
.w2{width:9.720017px;}
.w9{width:14.939998px;}
.w7{width:30.060002px;}
.w10{width:55.079956px;}
.we{width:55.079990px;}
.wc{width:55.080025px;}
.wa{width:69.659999px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.620002px;}
.xa{left:135.719999px;}
.x8{left:154.439999px;}
.x15{left:165.780001px;}
.x4{left:169.740006px;}
.x6{left:181.620002px;}
.x16{left:185.219999px;}
.x17{left:189.719999px;}
.x7{left:235.620002px;}
.x18{left:259.379998px;}
.xb{left:309.959988px;}
.xc{left:319.860008px;}
.xd{left:329.220017px;}
.xe{left:336.060001px;}
.x9{left:352.439999px;}
.x5{left:354.420010px;}
.x19{left:365.040012px;}
.xf{left:425.699993px;}
.x10{left:435.600014px;}
.x11{left:444.959988px;}
.x12{left:451.800007px;}
.x1a{left:480.779983px;}
.x13{left:541.980011px;}
.x1b{left:597.059967px;}
.x14{left:657.720017px;}
.x2{left:701.639992px;}
.x1c{left:712.799973px;}
.x1{left:765.360008px;}
@media print{
.va{vertical-align:-21.119872pt;}
.v1{vertical-align:-17.279968pt;}
.v2{vertical-align:-12.159912pt;}
.vb{vertical-align:-3.840088pt;}
.vc{vertical-align:-2.560060pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.919920pt;}
.v3{vertical-align:12.159912pt;}
.v8{vertical-align:20.479980pt;}
.v9{vertical-align:37.119992pt;}
.v7{vertical-align:39.679928pt;}
.v4{vertical-align:44.800052pt;}
.v5{vertical-align:46.719972pt;}
.lsa{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.034126pt;}
.ls6{letter-spacing:0.041862pt;}
.lse{letter-spacing:0.080320pt;}
.ls15{letter-spacing:0.090936pt;}
.ls13{letter-spacing:0.127388pt;}
.ls35{letter-spacing:0.155089pt;}
.ls9{letter-spacing:0.169906pt;}
.ls22{letter-spacing:0.172760pt;}
.ls14{letter-spacing:0.306302pt;}
.ls10{letter-spacing:0.306362pt;}
.ls1e{letter-spacing:0.306366pt;}
.ls1a{letter-spacing:0.306422pt;}
.ls3d{letter-spacing:0.319096pt;}
.ls2b{letter-spacing:0.444011pt;}
.ls2f{letter-spacing:0.523764pt;}
.ls19{letter-spacing:0.920448pt;}
.ls1f{letter-spacing:0.956510pt;}
.ls2e{letter-spacing:0.999865pt;}
.ls11{letter-spacing:1.048406pt;}
.ls16{letter-spacing:1.048466pt;}
.ls17{letter-spacing:1.048470pt;}
.ls2d{letter-spacing:1.086740pt;}
.lsc{letter-spacing:1.252864pt;}
.ls2c{letter-spacing:1.444952pt;}
.ls29{letter-spacing:1.445012pt;}
.ls1d{letter-spacing:1.463198pt;}
.ls18{letter-spacing:1.654075pt;}
.lsd{letter-spacing:1.726752pt;}
.ls34{letter-spacing:2.094319pt;}
.ls1{letter-spacing:2.094439pt;}
.ls1b{letter-spacing:2.294091pt;}
.ls24{letter-spacing:2.642902pt;}
.ls30{letter-spacing:2.642966pt;}
.ls37{letter-spacing:2.734335pt;}
.ls33{letter-spacing:2.734455pt;}
.ls0{letter-spacing:2.937497pt;}
.ls32{letter-spacing:4.965856pt;}
.ls1c{letter-spacing:11.826322pt;}
.ls7{letter-spacing:12.601842pt;}
.ls5{letter-spacing:12.683800pt;}
.lsb{letter-spacing:13.886792pt;}
.ls21{letter-spacing:14.454123pt;}
.ls12{letter-spacing:15.026334pt;}
.ls4{letter-spacing:16.174819pt;}
.ls2a{letter-spacing:18.724980pt;}
.ls26{letter-spacing:18.734451pt;}
.ls3{letter-spacing:19.156791pt;}
.ls38{letter-spacing:20.965916pt;}
.ls23{letter-spacing:25.266262pt;}
.ls20{letter-spacing:25.369172pt;}
.ls3b{letter-spacing:30.132951pt;}
.ls27{letter-spacing:32.329559pt;}
.ls28{letter-spacing:34.249575pt;}
.lsf{letter-spacing:34.958806pt;}
.ls3e{letter-spacing:39.685230pt;}
.ls3c{letter-spacing:40.965198pt;}
.ls31{letter-spacing:52.169555pt;}
.ls25{letter-spacing:52.809567pt;}
.ls36{letter-spacing:52.809571pt;}
.ls3a{letter-spacing:53.449583pt;}
.ls2{letter-spacing:54.729555pt;}
.ls8{letter-spacing:481.803792pt;}
.ws19{word-spacing:-58.882400pt;}
.ws1{word-spacing:-18.727104pt;}
.ws3{word-spacing:-15.207017pt;}
.ws8{word-spacing:-12.995990pt;}
.ws4{word-spacing:-12.954128pt;}
.wsc{word-spacing:-12.390840pt;}
.ws2{word-spacing:-11.686840pt;}
.ws0{word-spacing:-10.560440pt;}
.wse{word-spacing:-1.295406pt;}
.ws5{word-spacing:-0.765471pt;}
.wsd{word-spacing:-0.732186pt;}
.ws9{word-spacing:-0.412177pt;}
.wsa{word-spacing:-0.304373pt;}
.ws7{word-spacing:-0.174377pt;}
.ws15{word-spacing:-0.113612pt;}
.ws14{word-spacing:-0.113608pt;}
.wsb{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.020679pt;}
.wsf{word-spacing:0.168966pt;}
.ws6{word-spacing:0.176647pt;}
.ws16{word-spacing:0.526408pt;}
.ws1a{word-spacing:3.003002pt;}
.ws10{word-spacing:3.120767pt;}
.ws12{word-spacing:3.136662pt;}
.ws11{word-spacing:3.136726pt;}
.ws1f{word-spacing:3.492600pt;}
.ws18{word-spacing:3.643758pt;}
.ws17{word-spacing:3.997144pt;}
.ws1d{word-spacing:4.795100pt;}
.ws13{word-spacing:5.114947pt;}
.ws1b{word-spacing:5.677201pt;}
.ws1c{word-spacing:5.859158pt;}
._4{margin-left:-6.531844pt;}
._7{margin-left:-5.433425pt;}
._17{margin-left:-3.608278pt;}
._e{margin-left:-2.542433pt;}
._0{margin-left:-1.599157pt;}
._1{width:1.158474pt;}
._6{width:2.782654pt;}
._5{width:3.932700pt;}
._3{width:5.333443pt;}
._2{width:6.267985pt;}
._1c{width:7.305168pt;}
._10{width:8.357685pt;}
._11{width:9.534809pt;}
._b{width:10.957158pt;}
._a{width:11.900685pt;}
._f{width:12.804955pt;}
._9{width:13.812289pt;}
._8{width:14.790515pt;}
._c{width:15.764607pt;}
._d{width:17.209761pt;}
._16{width:18.275843pt;}
._18{width:20.554455pt;}
._14{width:22.205411pt;}
._15{width:23.386357pt;}
._13{width:24.906252pt;}
._12{width:31.269930pt;}
._19{width:168.425092pt;}
._1a{width:205.214925pt;}
._1b{width:206.278419pt;}
.fsb{font-size:34.561320pt;}
.fsa{font-size:37.121440pt;}
.fs9{font-size:40.321600pt;}
.fs7{font-size:42.881600pt;}
.fs1{font-size:48.002000pt;}
.fs5{font-size:53.122000pt;}
.fs8{font-size:56.322000pt;}
.fs0{font-size:58.882400pt;}
.fs4{font-size:61.442400pt;}
.fs6{font-size:69.122804pt;}
.fs2{font-size:74.882796pt;}
.fs3{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:2.719971pt;}
.y87{bottom:22.880005pt;}
.y85{bottom:32.640015pt;}
.y3{bottom:51.360108pt;}
.y2{bottom:68.000000pt;}
.y71{bottom:118.240052pt;}
.ya1{bottom:118.880066pt;}
.y4e{bottom:120.160035pt;}
.y26{bottom:124.000061pt;}
.ya0{bottom:135.200074pt;}
.y70{bottom:138.080079pt;}
.y4d{bottom:140.000061pt;}
.yc5{bottom:142.080079pt;}
.y25{bottom:143.680054pt;}
.y9f{bottom:152.160035pt;}
.y6f{bottom:157.760071pt;}
.y4c{bottom:159.680054pt;}
.yc4{bottom:160.000061pt;}
.y24{bottom:163.520081pt;}
.y9e{bottom:168.480042pt;}
.y4b{bottom:179.520081pt;}
.y9c{bottom:182.880066pt;}
.y23{bottom:183.360047pt;}
.y6e{bottom:186.400086pt;}
.yc3{bottom:191.360047pt;}
.y4a{bottom:199.360047pt;}
.y9b{bottom:201.920044pt;}
.y22{bottom:203.200074pt;}
.y6d{bottom:206.240052pt;}
.yc2{bottom:209.280030pt;}
.y9a{bottom:218.880066pt;}
.y49{bottom:219.040039pt;}
.y21{bottom:231.200074pt;}
.y6c{bottom:234.720032pt;}
.y99{bottom:235.200074pt;}
.yc1{bottom:236.800049pt;}
.y48{bottom:246.880066pt;}
.y98{bottom:252.160035pt;}
.y6b{bottom:254.560059pt;}
.y97{bottom:268.480042pt;}
.y6a{bottom:274.240052pt;}
.y20{bottom:274.720032pt;}
.yc0{bottom:274.880066pt;}
.y47{bottom:282.400086pt;}
.y96{bottom:285.600037pt;}
.ybf{bottom:290.560059pt;}
.y1f{bottom:296.160035pt;}
.y46{bottom:301.280030pt;}
.y95{bottom:301.920044pt;}
.y69{bottom:302.880066pt;}
.ybe{bottom:306.240052pt;}
.y1e{bottom:317.280030pt;}
.y94{bottom:318.880066pt;}
.y44{bottom:321.760071pt;}
.y68{bottom:322.720032pt;}
.y45{bottom:327.040039pt;}
.ybd{bottom:332.480042pt;}
.y93{bottom:335.200074pt;}
.y1d{bottom:338.560059pt;}
.ybc{bottom:348.160035pt;}
.y43{bottom:350.080079pt;}
.y67{bottom:351.200074pt;}
.y92{bottom:352.160035pt;}
.y1c{bottom:359.680054pt;}
.y91{bottom:368.480042pt;}
.y42{bottom:369.280030pt;}
.ybb{bottom:374.400086pt;}
.y1b{bottom:380.960083pt;}
.y90{bottom:385.600037pt;}
.y41{bottom:388.160035pt;}
.yba{bottom:390.080079pt;}
.y8f{bottom:401.920044pt;}
.y1a{bottom:402.080079pt;}
.yb9{bottom:405.760071pt;}
.y40{bottom:415.040039pt;}
.y8e{bottom:418.880066pt;}
.yb8{bottom:421.440064pt;}
.y19{bottom:424.480042pt;}
.y66{bottom:426.400086pt;}
.y3f{bottom:433.920044pt;}
.y8d{bottom:435.200074pt;}
.y65{bottom:451.680054pt;}
.y8c{bottom:452.160035pt;}
.yb7{bottom:452.960083pt;}
.y18{bottom:457.120057pt;}
.y3e{bottom:466.400086pt;}
.y17{bottom:467.040039pt;}
.y8b{bottom:468.480042pt;}
.yb6{bottom:472.800049pt;}
.y64{bottom:476.960083pt;}
.y8a{bottom:485.600037pt;}
.y3d{bottom:486.240052pt;}
.yb5{bottom:500.480042pt;}
.y89{bottom:501.920044pt;}
.y63{bottom:502.080079pt;}
.y3c{bottom:506.080079pt;}
.y16{bottom:512.640076pt;}
.yb4{bottom:516.160035pt;}
.y84{bottom:524.480042pt;}
.y88{bottom:525.920044pt;}
.y3b{bottom:526.240052pt;}
.y62{bottom:527.360047pt;}
.y86{bottom:531.520081pt;}
.yb3{bottom:531.840088pt;}
.y15{bottom:540.480042pt;}
.y83{bottom:541.600037pt;}
.y3a{bottom:545.920044pt;}
.yb2{bottom:547.520081pt;}
.y61{bottom:552.480042pt;}
.y82{bottom:557.120057pt;}
.y39{bottom:565.760071pt;}
.y60{bottom:569.760071pt;}
.y14{bottom:576.160035pt;}
.yb1{bottom:579.040039pt;}
.y38{bottom:585.600037pt;}
.y81{bottom:590.560059pt;}
.y5f{bottom:594.880066pt;}
.y13{bottom:595.840088pt;}
.yb0{bottom:598.880066pt;}
.y80{bottom:610.400086pt;}
.y37{bottom:613.440064pt;}
.y12{bottom:615.680054pt;}
.yaf{bottom:618.560059pt;}
.y5e{bottom:623.680054pt;}
.y7f{bottom:630.080048pt;}
.y11{bottom:644.640046pt;}
.y36{bottom:649.120057pt;}
.yae{bottom:651.360047pt;}
.y7e{bottom:659.040070pt;}
.y5d{bottom:661.920044pt;}
.y35{bottom:668.800049pt;}
.yad{bottom:678.880066pt;}
.y5c{bottom:681.600068pt;}
.y10{bottom:682.880066pt;}
.y34{bottom:688.640046pt;}
.y7d{bottom:697.280060pt;}
.yf{bottom:702.560059pt;}
.y33{bottom:708.480072pt;}
.y5b{bottom:709.440064pt;}
.y7c{bottom:717.120057pt;}
.ye{bottom:722.400055pt;}
.y32{bottom:736.160065pt;}
.y7b{bottom:736.800049pt;}
.y5a{bottom:737.120057pt;}
.yd{bottom:742.080048pt;}
.y7a{bottom:756.640046pt;}
.y59{bottom:756.960053pt;}
.yc{bottom:761.920044pt;}
.yac{bottom:764.640046pt;}
.y31{bottom:773.120057pt;}
.yb{bottom:781.760071pt;}
.yab{bottom:784.320069pt;}
.y58{bottom:784.800049pt;}
.y79{bottom:785.600068pt;}
.y30{bottom:798.080048pt;}
.ya{bottom:801.440064pt;}
.yaa{bottom:812.160065pt;}
.y57{bottom:813.600068pt;}
.y2f{bottom:822.560059pt;}
.y78{bottom:823.680054pt;}
.yce{bottom:830.080048pt;}
.y9{bottom:830.400055pt;}
.ya9{bottom:832.000061pt;}
.y77{bottom:843.520050pt;}
.y2e{bottom:849.440064pt;}
.y56{bottom:851.840058pt;}
.ya8{bottom:859.680054pt;}
.ycd{bottom:862.880066pt;}
.y76{bottom:863.360047pt;}
.y2d{bottom:869.920060pt;}
.y55{bottom:872.480057pt;}
.ya7{bottom:879.520066pt;}
.ycc{bottom:880.800064pt;}
.y8{bottom:886.240052pt;}
.y75{bottom:891.040055pt;}
.y54{bottom:893.120057pt;}
.y2c{bottom:894.400055pt;}
.ycb{bottom:898.880066pt;}
.y7{bottom:904.640061pt;}
.ya6{bottom:907.200058pt;}
.y74{bottom:910.880066pt;}
.y53{bottom:913.600052pt;}
.y2b{bottom:926.880066pt;}
.ya5{bottom:927.040055pt;}
.yca{bottom:930.080063pt;}
.y52{bottom:934.240052pt;}
.y73{bottom:938.560059pt;}
.y6{bottom:940.480057pt;}
.y2a{bottom:946.560059pt;}
.yc9{bottom:948.160065pt;}
.ya4{bottom:954.880066pt;}
.y51{bottom:962.880066pt;}
.yc8{bottom:966.080063pt;}
.y29{bottom:966.400055pt;}
.y5{bottom:969.280060pt;}
.ya3{bottom:974.560059pt;}
.y50{bottom:982.560059pt;}
.y28{bottom:986.240052pt;}
.yc7{bottom:997.440056pt;}
.ya2{bottom:1003.520058pt;}
.y4{bottom:1010.240059pt;}
.y4f{bottom:1011.520058pt;}
.y72{bottom:1013.920060pt;}
.y27{bottom:1014.080056pt;}
.yc6{bottom:1015.360062pt;}
.y1{bottom:1034.560059pt;}
.h1b{height:13.919983pt;}
.h1a{height:34.185076pt;}
.h12{height:37.132098pt;}
.h19{height:38.239990pt;}
.hb{height:40.642318pt;}
.h6{height:44.977318pt;}
.h17{height:45.280029pt;}
.hc{height:47.686693pt;}
.h18{height:48.919967pt;}
.h2{height:49.854532pt;}
.hf{height:51.866842pt;}
.h8{height:54.224710pt;}
.hd{height:54.426838pt;}
.h11{height:54.426902pt;}
.h16{height:56.144630pt;}
.h14{height:56.144634pt;}
.h15{height:56.144874pt;}
.he{height:57.612078pt;}
.h13{height:57.612322pt;}
.h7{height:58.524874pt;}
.h3{height:63.401742pt;}
.h4{height:72.072084pt;}
.h10{height:74.252090pt;}
.h5{height:78.389822pt;}
.ha{height:93.904638pt;}
.h9{height:100.944682pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w8{width:4.000000pt;}
.w4{width:5.599975pt;}
.w6{width:5.600006pt;}
.wb{width:6.559997pt;}
.wd{width:6.559998pt;}
.wf{width:6.560028pt;}
.w11{width:6.560058pt;}
.w5{width:8.319977pt;}
.w3{width:8.320008pt;}
.w2{width:8.640015pt;}
.w9{width:13.279998pt;}
.w7{width:26.720002pt;}
.w10{width:48.959961pt;}
.we{width:48.959991pt;}
.wc{width:48.960022pt;}
.wa{width:61.919999pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.440002pt;}
.xa{left:120.639999pt;}
.x8{left:137.279999pt;}
.x15{left:147.360001pt;}
.x4{left:150.880005pt;}
.x6{left:161.440002pt;}
.x16{left:164.639999pt;}
.x17{left:168.639999pt;}
.x7{left:209.440002pt;}
.x18{left:230.559998pt;}
.xb{left:275.519989pt;}
.xc{left:284.320007pt;}
.xd{left:292.640015pt;}
.xe{left:298.720001pt;}
.x9{left:313.279999pt;}
.x5{left:315.040009pt;}
.x19{left:324.480011pt;}
.xf{left:378.399994pt;}
.x10{left:387.200012pt;}
.x11{left:395.519989pt;}
.x12{left:401.600006pt;}
.x1a{left:427.359985pt;}
.x13{left:481.760010pt;}
.x1b{left:530.719971pt;}
.x14{left:584.640015pt;}
.x2{left:623.679993pt;}
.x1c{left:633.599976pt;}
.x1{left:680.320007pt;}
}




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