
    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_d41ee0b7ed47d8795bb0c18a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973633;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_5de6975a20ca67c300562fdd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_c076aaebd2598e23a451ef51.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_f16cfc7db874aea3af4c4e20.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_f012923b6e053980ef2dc2c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_9ec7111c10fc1f5a7b2abafc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_945c66c224ad76d52cc14e5e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_25d038361a1e3ca8d67a2237.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_56d19444eae137924fb4982c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002000;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_7d37584b33111a043bc9c5fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.552000;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_c3e7b5a06a98f4fca2723369.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.881836;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_d3f8a5d896a5108202eee937.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.819000;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_9257bde0345a7f9e72b66333.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.745605;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_40ba4e463454a63b5f1126ee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.948730;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);}
.v3{vertical-align:-19.980000px;}
.v4{vertical-align:-17.982000px;}
.v7{vertical-align:-12.582600px;}
.v1{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.399400px;}
.v5{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.lsa{letter-spacing:-5.351940px;}
.ls3{letter-spacing:-2.970000px;}
.ls5{letter-spacing:-2.052000px;}
.ls6{letter-spacing:-1.890000px;}
.ls4{letter-spacing:-0.972000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003600px;}
.ls1{letter-spacing:0.004608px;}
.ls8{letter-spacing:0.007800px;}
.ls7{letter-spacing:0.008400px;}
.ls9{letter-spacing:0.009000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.016000px;}
.wsb{word-spacing:-16.680000px;}
.wsa{word-spacing:-15.012000px;}
.ws2{word-spacing:-13.344000px;}
.ws7{word-spacing:-9.724440px;}
.ws9{word-spacing:-8.751996px;}
.ws3{word-spacing:-5.351940px;}
.ws4{word-spacing:-2.940000px;}
.ws5{word-spacing:-2.700000px;}
.ws11{word-spacing:-2.052000px;}
.ws14{word-spacing:-1.890000px;}
.ws28{word-spacing:-0.768000px;}
.ws6{word-spacing:-0.060000px;}
.ws8{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.972000px;}
.ws13{word-spacing:1.890000px;}
.ws10{word-spacing:2.052000px;}
.ws17{word-spacing:2.220000px;}
.wsd{word-spacing:2.970000px;}
.ws2d{word-spacing:3.078000px;}
.ws2b{word-spacing:3.132000px;}
.ws29{word-spacing:3.408000px;}
.ws21{word-spacing:3.600000px;}
.ws22{word-spacing:3.720000px;}
.ws2c{word-spacing:3.726000px;}
.ws26{word-spacing:3.780000px;}
.ws2f{word-spacing:4.644000px;}
.ws16{word-spacing:4.968000px;}
.ws25{word-spacing:5.022000px;}
.ws27{word-spacing:5.351940px;}
.ws2e{word-spacing:5.940000px;}
.ws2a{word-spacing:6.858000px;}
.ws23{word-spacing:6.960000px;}
.ws15{word-spacing:7.776000px;}
.wse{word-spacing:10.530000px;}
.wsc{word-spacing:19.200000px;}
.ws1c{word-spacing:23.173200px;}
.ws12{word-spacing:30.510000px;}
.ws24{word-spacing:55.740000px;}
.ws1e{word-spacing:184.800522px;}
.ws20{word-spacing:194.299620px;}
.ws1f{word-spacing:217.406526px;}
.ws1d{word-spacing:256.118106px;}
.ws18{word-spacing:298.861200px;}
.ws1a{word-spacing:300.840000px;}
.ws19{word-spacing:321.375000px;}
.ws1b{word-spacing:321.375600px;}
._2{margin-left:-1096.128000px;}
._2d{margin-left:-7.350000px;}
._0{margin-left:-5.875200px;}
._1{margin-left:-3.938400px;}
._b{margin-left:-2.286000px;}
._9{margin-left:-1.056000px;}
._6{width:1.542000px;}
._f{width:2.598000px;}
._11{width:3.618000px;}
._4{width:4.662000px;}
._e{width:5.676000px;}
._c{width:7.536000px;}
._7{width:8.628000px;}
._a{width:10.296000px;}
._5{width:12.066000px;}
._d{width:13.206000px;}
._10{width:14.256000px;}
._16{width:15.420000px;}
._14{width:18.300000px;}
._19{width:20.088000px;}
._1a{width:21.252000px;}
._25{width:22.410000px;}
._26{width:24.054000px;}
._27{width:25.770000px;}
._12{width:29.076000px;}
._8{width:30.984000px;}
._20{width:38.244000px;}
._24{width:48.075750px;}
._1e{width:53.358000px;}
._13{width:54.876000px;}
._1d{width:57.426000px;}
._1f{width:59.124000px;}
._21{width:79.236000px;}
._1b{width:81.444000px;}
._18{width:84.876000px;}
._1c{width:91.482000px;}
._15{width:124.806000px;}
._2b{width:313.861200px;}
._2c{width:321.370200px;}
._2a{width:328.881000px;}
._29{width:336.378600px;}
._28{width:343.889400px;}
._22{width:512.802000px;}
._17{width:523.170600px;}
._23{width:903.435600px;}
._3{width:2618.633400px;}
.fc8{color:rgb(221,84,23);}
.fc7{color:rgb(26,94,175);}
.fc6{color:rgb(230,215,231);}
.fc5{color:rgb(30,90,164);}
.fc4{color:transparent;}
.fc3{color:rgb(35,80,169);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(239,46,49);}
.fsa{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y82{bottom:48.299250px;}
.y42{bottom:53.149650px;}
.yb4{bottom:53.230200px;}
.y41{bottom:67.549650px;}
.y49{bottom:70.246050px;}
.y6{bottom:70.518900px;}
.y81{bottom:75.882150px;}
.yb3{bottom:78.054900px;}
.y40{bottom:81.949650px;}
.y48{bottom:88.246050px;}
.y80{bottom:104.364900px;}
.y7e{bottom:105.714750px;}
.y47{bottom:106.246050px;}
.y5{bottom:113.718900px;}
.yb2{bottom:116.379900px;}
.y7f{bottom:120.564900px;}
.y7d{bottom:121.914750px;}
.y3f{bottom:124.246050px;}
.y4{bottom:135.318900px;}
.yc5{bottom:136.063050px;}
.yb1{bottom:141.458850px;}
.yd0{bottom:141.670200px;}
.y3e{bottom:142.246050px;}
.y7c{bottom:149.047650px;}
.yc4{bottom:156.841050px;}
.ycf{bottom:157.870200px;}
.y3d{bottom:160.246050px;}
.yb0{bottom:163.583850px;}
.yc3{bottom:171.241050px;}
.yce{bottom:174.070200px;}
.y7b{bottom:176.180400px;}
.y79{bottom:177.530250px;}
.y3c{bottom:178.246050px;}
.yc2{bottom:185.641050px;}
.yaf{bottom:185.708850px;}
.ycd{bottom:190.270200px;}
.y7a{bottom:192.380400px;}
.y78{bottom:193.730250px;}
.y3b{bottom:196.246050px;}
.yc1{bottom:206.418900px;}
.ycc{bottom:206.470200px;}
.yae{bottom:207.833850px;}
.y3a{bottom:214.246050px;}
.y77{bottom:218.359200px;}
.yc0{bottom:220.818900px;}
.ycb{bottom:222.670200px;}
.yad{bottom:224.033850px;}
.y39{bottom:232.246050px;}
.ybf{bottom:235.219050px;}
.yca{bottom:238.870200px;}
.yac{bottom:240.233850px;}
.ybe{bottom:249.618900px;}
.y46{bottom:250.246050px;}
.yc9{bottom:255.070200px;}
.yab{bottom:256.433850px;}
.y51{bottom:256.624050px;}
.y92{bottom:264.395700px;}
.y38{bottom:268.246050px;}
.ybd{bottom:270.396900px;}
.yc8{bottom:271.270200px;}
.yaa{bottom:272.633850px;}
.y50{bottom:274.624050px;}
.y91{bottom:282.395700px;}
.ybc{bottom:284.796900px;}
.y37{bottom:286.246050px;}
.yc7{bottom:287.470350px;}
.y4f{bottom:292.624050px;}
.ybb{bottom:299.196900px;}
.y90{bottom:300.395700px;}
.yc6{bottom:303.670350px;}
.y36{bottom:304.246050px;}
.yba{bottom:313.596900px;}
.y8f{bottom:318.395700px;}
.y35{bottom:322.246050px;}
.ya9{bottom:323.710650px;}
.y9c{bottom:323.805150px;}
.yb9{bottom:327.996900px;}
.y4e{bottom:328.624050px;}
.y8e{bottom:336.395700px;}
.y34{bottom:340.246050px;}
.ya8{bottom:341.710650px;}
.y9b{bottom:341.805150px;}
.y4d{bottom:346.624050px;}
.y8d{bottom:354.395700px;}
.y33{bottom:358.246050px;}
.ya7{bottom:359.710650px;}
.y9a{bottom:359.805150px;}
.y4c{bottom:364.624050px;}
.y8c{bottom:372.395700px;}
.y32{bottom:376.246050px;}
.ya6{bottom:377.710650px;}
.y99{bottom:377.805150px;}
.y8b{bottom:390.395700px;}
.y31{bottom:394.246050px;}
.y86{bottom:395.512800px;}
.ya5{bottom:395.710650px;}
.y98{bottom:395.805150px;}
.y8a{bottom:408.395700px;}
.y30{bottom:412.246050px;}
.ya4{bottom:413.710650px;}
.y97{bottom:413.805150px;}
.y89{bottom:426.395700px;}
.y2f{bottom:430.246050px;}
.ya3{bottom:431.710650px;}
.y96{bottom:431.805150px;}
.y2e{bottom:448.246050px;}
.ya2{bottom:449.710650px;}
.y95{bottom:449.805150px;}
.y88{bottom:462.395700px;}
.y2d{bottom:466.246050px;}
.ya1{bottom:467.710650px;}
.y94{bottom:467.805150px;}
.y45{bottom:484.246050px;}
.ya0{bottom:485.710650px;}
.y93{bottom:485.805150px;}
.y2c{bottom:502.246050px;}
.y76{bottom:503.805150px;}
.y87{bottom:511.804050px;}
.y2b{bottom:520.246050px;}
.y9f{bottom:521.710650px;}
.y75{bottom:521.805150px;}
.y2a{bottom:538.246050px;}
.y74{bottom:539.805150px;}
.y29{bottom:556.246050px;}
.y73{bottom:557.805150px;}
.y4a{bottom:558.575850px;}
.yb6{bottom:571.927050px;}
.y28{bottom:574.246050px;}
.y72{bottom:575.805150px;}
.yb5{bottom:588.127050px;}
.y27{bottom:592.246050px;}
.y71{bottom:593.805150px;}
.y26{bottom:610.246050px;}
.y70{bottom:611.805150px;}
.y25{bottom:628.246050px;}
.y6f{bottom:629.805150px;}
.y24{bottom:646.246050px;}
.y6e{bottom:647.805150px;}
.ya{bottom:653.148450px;}
.y23{bottom:664.246050px;}
.y6d{bottom:665.805150px;}
.y85{bottom:668.829300px;}
.y22{bottom:682.246050px;}
.y6c{bottom:683.805150px;}
.y84{bottom:685.029300px;}
.y9{bottom:689.148450px;}
.y21{bottom:700.246050px;}
.y83{bottom:701.229300px;}
.y6b{bottom:701.805150px;}
.y44{bottom:718.246050px;}
.y6a{bottom:719.805150px;}
.y8{bottom:732.348450px;}
.y20{bottom:736.246050px;}
.y69{bottom:737.805150px;}
.y1f{bottom:754.246050px;}
.y68{bottom:755.805150px;}
.y1e{bottom:772.246050px;}
.y67{bottom:773.805150px;}
.y1d{bottom:790.246050px;}
.y66{bottom:791.805150px;}
.y1c{bottom:808.246050px;}
.y65{bottom:809.805150px;}
.y1b{bottom:826.246050px;}
.y64{bottom:827.805150px;}
.y1a{bottom:844.246050px;}
.y63{bottom:845.805150px;}
.y19{bottom:862.246050px;}
.y62{bottom:863.805150px;}
.yb8{bottom:865.312800px;}
.y18{bottom:880.246050px;}
.yb7{bottom:881.512800px;}
.y61{bottom:881.805150px;}
.y7{bottom:885.047250px;}
.y17{bottom:898.246050px;}
.y60{bottom:899.805150px;}
.y16{bottom:916.246050px;}
.y5f{bottom:917.805150px;}
.y15{bottom:934.246050px;}
.y9e{bottom:935.805150px;}
.y3{bottom:948.688650px;}
.y14{bottom:952.246050px;}
.y5e{bottom:953.805150px;}
.y13{bottom:970.246050px;}
.y9d{bottom:971.805150px;}
.y12{bottom:988.246050px;}
.y5d{bottom:989.805150px;}
.y11{bottom:1006.246050px;}
.y5c{bottom:1007.805150px;}
.y2{bottom:1021.992600px;}
.y10{bottom:1024.246050px;}
.y5b{bottom:1025.805150px;}
.y43{bottom:1042.246050px;}
.y5a{bottom:1043.805150px;}
.yf{bottom:1060.246050px;}
.y59{bottom:1061.805150px;}
.y58{bottom:1079.805150px;}
.y57{bottom:1097.805150px;}
.ye{bottom:1099.605150px;}
.y56{bottom:1115.805150px;}
.y55{bottom:1133.805150px;}
.yd{bottom:1135.605150px;}
.y54{bottom:1151.805150px;}
.y1{bottom:1159.671300px;}
.y53{bottom:1169.805150px;}
.yc{bottom:1178.805150px;}
.y52{bottom:1187.805150px;}
.y4b{bottom:1226.444850px;}
.yb{bottom:1227.569850px;}
.hd{height:26.525391px;}
.h8{height:31.101562px;}
.hb{height:35.367188px;}
.he{height:35.601562px;}
.h15{height:39.260742px;}
.h17{height:39.287109px;}
.hc{height:39.788086px;}
.h12{height:40.051758px;}
.h10{height:41.178454px;}
.h14{height:41.332175px;}
.h11{height:42.228000px;}
.h13{height:42.498000px;}
.h7{height:44.208984px;}
.h9{height:44.501953px;}
.h16{height:45.187486px;}
.ha{height:45.753838px;}
.hf{height:46.920000px;}
.h4{height:53.050781px;}
.h6{height:62.302734px;}
.h2{height:80.103516px;}
.h5{height:106.804688px;}
.h3{height:160.207031px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:42.519600px;}
.xb{left:44.424450px;}
.x12{left:48.894600px;}
.xd{left:51.023550px;}
.x1a{left:78.769500px;}
.x2c{left:82.124700px;}
.x11{left:93.433350px;}
.x3{left:97.355100px;}
.x8{left:115.337550px;}
.x17{left:128.111250px;}
.x2d{left:150.566850px;}
.x1b{left:154.991700px;}
.x1d{left:158.784600px;}
.x1e{left:179.984400px;}
.x1c{left:185.742300px;}
.x2{left:222.955200px;}
.x2e{left:244.110150px;}
.x13{left:250.863150px;}
.x1f{left:254.479500px;}
.x5{left:259.368300px;}
.x4{left:289.369800px;}
.x7{left:309.444000px;}
.x6{left:318.351750px;}
.x9{left:326.255250px;}
.x20{left:373.995000px;}
.xa{left:375.166350px;}
.x16{left:382.302300px;}
.x14{left:452.831700px;}
.xe{left:457.086600px;}
.x2f{left:465.590550px;}
.x19{left:472.842450px;}
.x22{left:478.434900px;}
.x21{left:482.665800px;}
.x24{left:557.587350px;}
.x1{left:561.838500px;}
.x23{left:565.045800px;}
.xf{left:595.275600px;}
.x18{left:616.657200px;}
.x15{left:654.800250px;}
.x25{left:659.148150px;}
.x26{left:671.547150px;}
.x10{left:710.078700px;}
.x29{left:757.799100px;}
.x2a{left:762.185850px;}
.x27{left:764.024850px;}
.x28{left:768.507450px;}
.x2b{left:778.510500px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v4{vertical-align:-15.984000pt;}
.v7{vertical-align:-11.184533pt;}
.v1{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:4.799467pt;}
.v5{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.lsa{letter-spacing:-4.757280pt;}
.ls3{letter-spacing:-2.640000pt;}
.ls5{letter-spacing:-1.824000pt;}
.ls6{letter-spacing:-1.680000pt;}
.ls4{letter-spacing:-0.864000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003200pt;}
.ls1{letter-spacing:0.004096pt;}
.ls8{letter-spacing:0.006933pt;}
.ls7{letter-spacing:0.007467pt;}
.ls9{letter-spacing:0.008000pt;}
.ws0{word-spacing:-17.792000pt;}
.wsb{word-spacing:-14.826667pt;}
.wsa{word-spacing:-13.344000pt;}
.ws2{word-spacing:-11.861333pt;}
.ws7{word-spacing:-8.643947pt;}
.ws9{word-spacing:-7.779552pt;}
.ws3{word-spacing:-4.757280pt;}
.ws4{word-spacing:-2.613333pt;}
.ws5{word-spacing:-2.400000pt;}
.ws11{word-spacing:-1.824000pt;}
.ws14{word-spacing:-1.680000pt;}
.ws28{word-spacing:-0.682667pt;}
.ws6{word-spacing:-0.053333pt;}
.ws8{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.864000pt;}
.ws13{word-spacing:1.680000pt;}
.ws10{word-spacing:1.824000pt;}
.ws17{word-spacing:1.973333pt;}
.wsd{word-spacing:2.640000pt;}
.ws2d{word-spacing:2.736000pt;}
.ws2b{word-spacing:2.784000pt;}
.ws29{word-spacing:3.029333pt;}
.ws21{word-spacing:3.200000pt;}
.ws22{word-spacing:3.306667pt;}
.ws2c{word-spacing:3.312000pt;}
.ws26{word-spacing:3.360000pt;}
.ws2f{word-spacing:4.128000pt;}
.ws16{word-spacing:4.416000pt;}
.ws25{word-spacing:4.464000pt;}
.ws27{word-spacing:4.757280pt;}
.ws2e{word-spacing:5.280000pt;}
.ws2a{word-spacing:6.096000pt;}
.ws23{word-spacing:6.186667pt;}
.ws15{word-spacing:6.912000pt;}
.wse{word-spacing:9.360000pt;}
.wsc{word-spacing:17.066667pt;}
.ws1c{word-spacing:20.598400pt;}
.ws12{word-spacing:27.120000pt;}
.ws24{word-spacing:49.546667pt;}
.ws1e{word-spacing:164.267131pt;}
.ws20{word-spacing:172.710773pt;}
.ws1f{word-spacing:193.250245pt;}
.ws1d{word-spacing:227.660539pt;}
.ws18{word-spacing:265.654400pt;}
.ws1a{word-spacing:267.413333pt;}
.ws19{word-spacing:285.666667pt;}
.ws1b{word-spacing:285.667200pt;}
._2{margin-left:-974.336000pt;}
._2d{margin-left:-6.533333pt;}
._0{margin-left:-5.222400pt;}
._1{margin-left:-3.500800pt;}
._b{margin-left:-2.032000pt;}
._9{margin-left:-0.938667pt;}
._6{width:1.370667pt;}
._f{width:2.309333pt;}
._11{width:3.216000pt;}
._4{width:4.144000pt;}
._e{width:5.045333pt;}
._c{width:6.698667pt;}
._7{width:7.669333pt;}
._a{width:9.152000pt;}
._5{width:10.725333pt;}
._d{width:11.738667pt;}
._10{width:12.672000pt;}
._16{width:13.706667pt;}
._14{width:16.266667pt;}
._19{width:17.856000pt;}
._1a{width:18.890667pt;}
._25{width:19.920000pt;}
._26{width:21.381333pt;}
._27{width:22.906667pt;}
._12{width:25.845333pt;}
._8{width:27.541333pt;}
._20{width:33.994667pt;}
._24{width:42.734000pt;}
._1e{width:47.429333pt;}
._13{width:48.778667pt;}
._1d{width:51.045333pt;}
._1f{width:52.554667pt;}
._21{width:70.432000pt;}
._1b{width:72.394667pt;}
._18{width:75.445333pt;}
._1c{width:81.317333pt;}
._15{width:110.938667pt;}
._2b{width:278.987733pt;}
._2c{width:285.662400pt;}
._2a{width:292.338667pt;}
._29{width:299.003200pt;}
._28{width:305.679467pt;}
._22{width:455.824000pt;}
._17{width:465.040533pt;}
._23{width:803.053867pt;}
._3{width:2327.674133pt;}
.fsa{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:42.932667pt;}
.y42{bottom:47.244133pt;}
.yb4{bottom:47.315733pt;}
.y41{bottom:60.044133pt;}
.y49{bottom:62.440933pt;}
.y6{bottom:62.683467pt;}
.y81{bottom:67.450800pt;}
.yb3{bottom:69.382133pt;}
.y40{bottom:72.844133pt;}
.y48{bottom:78.440933pt;}
.y80{bottom:92.768800pt;}
.y7e{bottom:93.968667pt;}
.y47{bottom:94.440933pt;}
.y5{bottom:101.083467pt;}
.yb2{bottom:103.448800pt;}
.y7f{bottom:107.168800pt;}
.y7d{bottom:108.368667pt;}
.y3f{bottom:110.440933pt;}
.y4{bottom:120.283467pt;}
.yc5{bottom:120.944933pt;}
.yb1{bottom:125.741200pt;}
.yd0{bottom:125.929067pt;}
.y3e{bottom:126.440933pt;}
.y7c{bottom:132.486800pt;}
.yc4{bottom:139.414267pt;}
.ycf{bottom:140.329067pt;}
.y3d{bottom:142.440933pt;}
.yb0{bottom:145.407867pt;}
.yc3{bottom:152.214267pt;}
.yce{bottom:154.729067pt;}
.y7b{bottom:156.604800pt;}
.y79{bottom:157.804667pt;}
.y3c{bottom:158.440933pt;}
.yc2{bottom:165.014267pt;}
.yaf{bottom:165.074533pt;}
.ycd{bottom:169.129067pt;}
.y7a{bottom:171.004800pt;}
.y78{bottom:172.204667pt;}
.y3b{bottom:174.440933pt;}
.yc1{bottom:183.483467pt;}
.ycc{bottom:183.529067pt;}
.yae{bottom:184.741200pt;}
.y3a{bottom:190.440933pt;}
.y77{bottom:194.097067pt;}
.yc0{bottom:196.283467pt;}
.ycb{bottom:197.929067pt;}
.yad{bottom:199.141200pt;}
.y39{bottom:206.440933pt;}
.ybf{bottom:209.083600pt;}
.yca{bottom:212.329067pt;}
.yac{bottom:213.541200pt;}
.ybe{bottom:221.883467pt;}
.y46{bottom:222.440933pt;}
.yc9{bottom:226.729067pt;}
.yab{bottom:227.941200pt;}
.y51{bottom:228.110267pt;}
.y92{bottom:235.018400pt;}
.y38{bottom:238.440933pt;}
.ybd{bottom:240.352800pt;}
.yc8{bottom:241.129067pt;}
.yaa{bottom:242.341200pt;}
.y50{bottom:244.110267pt;}
.y91{bottom:251.018400pt;}
.ybc{bottom:253.152800pt;}
.y37{bottom:254.440933pt;}
.yc7{bottom:255.529200pt;}
.y4f{bottom:260.110267pt;}
.ybb{bottom:265.952800pt;}
.y90{bottom:267.018400pt;}
.yc6{bottom:269.929200pt;}
.y36{bottom:270.440933pt;}
.yba{bottom:278.752800pt;}
.y8f{bottom:283.018400pt;}
.y35{bottom:286.440933pt;}
.ya9{bottom:287.742800pt;}
.y9c{bottom:287.826800pt;}
.yb9{bottom:291.552800pt;}
.y4e{bottom:292.110267pt;}
.y8e{bottom:299.018400pt;}
.y34{bottom:302.440933pt;}
.ya8{bottom:303.742800pt;}
.y9b{bottom:303.826800pt;}
.y4d{bottom:308.110267pt;}
.y8d{bottom:315.018400pt;}
.y33{bottom:318.440933pt;}
.ya7{bottom:319.742800pt;}
.y9a{bottom:319.826800pt;}
.y4c{bottom:324.110267pt;}
.y8c{bottom:331.018400pt;}
.y32{bottom:334.440933pt;}
.ya6{bottom:335.742800pt;}
.y99{bottom:335.826800pt;}
.y8b{bottom:347.018400pt;}
.y31{bottom:350.440933pt;}
.y86{bottom:351.566933pt;}
.ya5{bottom:351.742800pt;}
.y98{bottom:351.826800pt;}
.y8a{bottom:363.018400pt;}
.y30{bottom:366.440933pt;}
.ya4{bottom:367.742800pt;}
.y97{bottom:367.826800pt;}
.y89{bottom:379.018400pt;}
.y2f{bottom:382.440933pt;}
.ya3{bottom:383.742800pt;}
.y96{bottom:383.826800pt;}
.y2e{bottom:398.440933pt;}
.ya2{bottom:399.742800pt;}
.y95{bottom:399.826800pt;}
.y88{bottom:411.018400pt;}
.y2d{bottom:414.440933pt;}
.ya1{bottom:415.742800pt;}
.y94{bottom:415.826800pt;}
.y45{bottom:430.440933pt;}
.ya0{bottom:431.742800pt;}
.y93{bottom:431.826800pt;}
.y2c{bottom:446.440933pt;}
.y76{bottom:447.826800pt;}
.y87{bottom:454.936933pt;}
.y2b{bottom:462.440933pt;}
.y9f{bottom:463.742800pt;}
.y75{bottom:463.826800pt;}
.y2a{bottom:478.440933pt;}
.y74{bottom:479.826800pt;}
.y29{bottom:494.440933pt;}
.y73{bottom:495.826800pt;}
.y4a{bottom:496.511867pt;}
.yb6{bottom:508.379600pt;}
.y28{bottom:510.440933pt;}
.y72{bottom:511.826800pt;}
.yb5{bottom:522.779600pt;}
.y27{bottom:526.440933pt;}
.y71{bottom:527.826800pt;}
.y26{bottom:542.440933pt;}
.y70{bottom:543.826800pt;}
.y25{bottom:558.440933pt;}
.y6f{bottom:559.826800pt;}
.y24{bottom:574.440933pt;}
.y6e{bottom:575.826800pt;}
.ya{bottom:580.576400pt;}
.y23{bottom:590.440933pt;}
.y6d{bottom:591.826800pt;}
.y85{bottom:594.514933pt;}
.y22{bottom:606.440933pt;}
.y6c{bottom:607.826800pt;}
.y84{bottom:608.914933pt;}
.y9{bottom:612.576400pt;}
.y21{bottom:622.440933pt;}
.y83{bottom:623.314933pt;}
.y6b{bottom:623.826800pt;}
.y44{bottom:638.440933pt;}
.y6a{bottom:639.826800pt;}
.y8{bottom:650.976400pt;}
.y20{bottom:654.440933pt;}
.y69{bottom:655.826800pt;}
.y1f{bottom:670.440933pt;}
.y68{bottom:671.826800pt;}
.y1e{bottom:686.440933pt;}
.y67{bottom:687.826800pt;}
.y1d{bottom:702.440933pt;}
.y66{bottom:703.826800pt;}
.y1c{bottom:718.440933pt;}
.y65{bottom:719.826800pt;}
.y1b{bottom:734.440933pt;}
.y64{bottom:735.826800pt;}
.y1a{bottom:750.440933pt;}
.y63{bottom:751.826800pt;}
.y19{bottom:766.440933pt;}
.y62{bottom:767.826800pt;}
.yb8{bottom:769.166933pt;}
.y18{bottom:782.440933pt;}
.yb7{bottom:783.566933pt;}
.y61{bottom:783.826800pt;}
.y7{bottom:786.708667pt;}
.y17{bottom:798.440933pt;}
.y60{bottom:799.826800pt;}
.y16{bottom:814.440933pt;}
.y5f{bottom:815.826800pt;}
.y15{bottom:830.440933pt;}
.y9e{bottom:831.826800pt;}
.y3{bottom:843.278800pt;}
.y14{bottom:846.440933pt;}
.y5e{bottom:847.826800pt;}
.y13{bottom:862.440933pt;}
.y9d{bottom:863.826800pt;}
.y12{bottom:878.440933pt;}
.y5d{bottom:879.826800pt;}
.y11{bottom:894.440933pt;}
.y5c{bottom:895.826800pt;}
.y2{bottom:908.437867pt;}
.y10{bottom:910.440933pt;}
.y5b{bottom:911.826800pt;}
.y43{bottom:926.440933pt;}
.y5a{bottom:927.826800pt;}
.yf{bottom:942.440933pt;}
.y59{bottom:943.826800pt;}
.y58{bottom:959.826800pt;}
.y57{bottom:975.826800pt;}
.ye{bottom:977.426800pt;}
.y56{bottom:991.826800pt;}
.y55{bottom:1007.826800pt;}
.yd{bottom:1009.426800pt;}
.y54{bottom:1023.826800pt;}
.y1{bottom:1030.818933pt;}
.y53{bottom:1039.826800pt;}
.yc{bottom:1047.826800pt;}
.y52{bottom:1055.826800pt;}
.y4b{bottom:1090.173200pt;}
.yb{bottom:1091.173200pt;}
.hd{height:23.578125pt;}
.h8{height:27.645833pt;}
.hb{height:31.437500pt;}
.he{height:31.645833pt;}
.h15{height:34.898438pt;}
.h17{height:34.921875pt;}
.hc{height:35.367188pt;}
.h12{height:35.601562pt;}
.h10{height:36.603070pt;}
.h14{height:36.739711pt;}
.h11{height:37.536000pt;}
.h13{height:37.776000pt;}
.h7{height:39.296875pt;}
.h9{height:39.557292pt;}
.h16{height:40.166654pt;}
.ha{height:40.670078pt;}
.hf{height:41.706667pt;}
.h4{height:47.156250pt;}
.h6{height:55.380208pt;}
.h2{height:71.203125pt;}
.h5{height:94.937500pt;}
.h3{height:142.406250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:37.795200pt;}
.xb{left:39.488400pt;}
.x12{left:43.461867pt;}
.xd{left:45.354267pt;}
.x1a{left:70.017333pt;}
.x2c{left:72.999733pt;}
.x11{left:83.051867pt;}
.x3{left:86.537867pt;}
.x8{left:102.522267pt;}
.x17{left:113.876667pt;}
.x2d{left:133.837200pt;}
.x1b{left:137.770400pt;}
.x1d{left:141.141867pt;}
.x1e{left:159.986133pt;}
.x1c{left:165.104267pt;}
.x2{left:198.182400pt;}
.x2e{left:216.986800pt;}
.x13{left:222.989467pt;}
.x1f{left:226.204000pt;}
.x5{left:230.549600pt;}
.x4{left:257.217600pt;}
.x7{left:275.061333pt;}
.x6{left:282.979333pt;}
.x9{left:290.004667pt;}
.x20{left:332.440000pt;}
.xa{left:333.481200pt;}
.x16{left:339.824267pt;}
.x14{left:402.517067pt;}
.xe{left:406.299200pt;}
.x2f{left:413.858267pt;}
.x19{left:420.304400pt;}
.x22{left:425.275467pt;}
.x21{left:429.036267pt;}
.x24{left:495.633200pt;}
.x1{left:499.412000pt;}
.x23{left:502.262933pt;}
.xf{left:529.133867pt;}
.x18{left:548.139733pt;}
.x15{left:582.044667pt;}
.x25{left:585.909467pt;}
.x26{left:596.930800pt;}
.x10{left:631.181067pt;}
.x29{left:673.599200pt;}
.x2a{left:677.498533pt;}
.x27{left:679.133200pt;}
.x28{left:683.117733pt;}
.x2b{left:692.009333pt;}
}




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