
    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_0d2ba2f51cb4798b7769ca07.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8d858dcd564a47c6e0959f01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_50194feba54eeeabd1bc872a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f41e83992d88dbaf91268f6f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2a647122f82aa45297f96c33.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_f88fbd56fabc1417776ed684.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_488620455aefa2770377c270.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_7ae9aa74ef7e21d86f627732.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_9a392adf807d77e9133881c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_2e04735eacbb93a20569286f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_61b5b634da972bf2a79ea98f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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_2d008bdcf6eccc4123c96b09.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.851562;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-79.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls16{letter-spacing:-1.260000px;}
.ls10{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.269400px;}
.ls3{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.450600px;}
.lsf{letter-spacing:0.513600px;}
.ls13{letter-spacing:0.900000px;}
.ls5{letter-spacing:3.060000px;}
.lsd{letter-spacing:22.986720px;}
.ls4{letter-spacing:54.120000px;}
.ls11{letter-spacing:679.320000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-15.453600px;}
.ws3{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.510600px;}
.ws9{word-spacing:-12.329400px;}
.ws1{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.wsa{word-spacing:-9.711360px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.391040px;}
._1{width:1.149120px;}
._2{width:2.188080px;}
._a{width:3.254160px;}
._3{width:4.286640px;}
._9{width:5.301600px;}
._10{width:6.599280px;}
._8{width:7.711920px;}
._7{width:8.964000px;}
._5{width:10.802880px;}
._4{width:11.952000px;}
._6{width:12.964800px;}
._e{width:16.184160px;}
._f{width:17.569440px;}
._b{width:19.362240px;}
._c{width:20.907360px;}
._12{width:22.051440px;}
._11{width:23.651280px;}
._15{width:25.973280px;}
._13{width:34.899840px;}
._14{width:258.103440px;}
._d{width:847.596000px;}
.fc7{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,32,96);}
.fc6{color:rgb(127,127,127);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(85,85,85);}
.fs8{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.240000px;}
.y9{bottom:55.620000px;}
.y39{bottom:55.800000px;}
.y38{bottom:57.600000px;}
.y8{bottom:69.336000px;}
.y7{bottom:83.196000px;}
.yef{bottom:87.516000px;}
.y85{bottom:88.956000px;}
.yae{bottom:91.296000px;}
.y61{bottom:94.536000px;}
.yee{bottom:101.196000px;}
.ycc{bottom:105.696000px;}
.y84{bottom:107.136000px;}
.y104{bottom:107.676000px;}
.ycb{bottom:110.196000px;}
.yd8{bottom:111.096000px;}
.yed{bottom:117.036000px;}
.yad{bottom:117.216000px;}
.yca{bottom:119.556000px;}
.y60{bottom:120.456000px;}
.y83{bottom:124.056000px;}
.y103{bottom:127.476000px;}
.yc9{bottom:133.416000px;}
.yd7{bottom:137.016000px;}
.y82{bottom:138.636000px;}
.yac{bottom:143.136000px;}
.y81{bottom:143.856000px;}
.yec{bottom:145.296000px;}
.y5f{bottom:146.196000px;}
.yc8{bottom:147.096000px;}
.y102{bottom:147.276000px;}
.yc7{bottom:151.590000px;}
.y80{bottom:157.170000px;}
.yc6{bottom:160.950000px;}
.yd6{bottom:162.930000px;}
.y101{bottom:167.250000px;}
.y32{bottom:168.330000px;}
.yab{bottom:168.870000px;}
.yeb{bottom:171.210000px;}
.y5e{bottom:172.110000px;}
.yc5{bottom:174.810000px;}
.yc4{bottom:179.310000px;}
.y100{bottom:187.050000px;}
.yd5{bottom:188.670000px;}
.y7f{bottom:194.610000px;}
.yaa{bottom:194.790000px;}
.yea{bottom:196.950000px;}
.y31{bottom:197.310000px;}
.y5d{bottom:198.030000px;}
.yff{bottom:206.850000px;}
.yc3{bottom:210.270000px;}
.yd4{bottom:214.590000px;}
.y7e{bottom:220.350000px;}
.ya9{bottom:220.710000px;}
.ye9{bottom:222.870000px;}
.y5c{bottom:223.770000px;}
.yfe{bottom:226.650000px;}
.y30{bottom:236.910000px;}
.yd3{bottom:240.510000px;}
.yc2{bottom:243.750000px;}
.y7d{bottom:246.270000px;}
.ya8{bottom:246.450000px;}
.ye8{bottom:248.790000px;}
.y5b{bottom:249.690000px;}
.y2f{bottom:254.010000px;}
.yc1{bottom:265.530000px;}
.yd2{bottom:266.430000px;}
.y7c{bottom:272.190000px;}
.ya7{bottom:272.370000px;}
.y2e{bottom:274.710000px;}
.y5a{bottom:275.610000px;}
.ye7{bottom:286.050000px;}
.yfd{bottom:286.230000px;}
.yc0{bottom:291.450000px;}
.yd1{bottom:292.170000px;}
.y2d{bottom:294.510000px;}
.y7b{bottom:298.110000px;}
.ya6{bottom:298.290000px;}
.yfc{bottom:306.030000px;}
.y59{bottom:312.870000px;}
.y2c{bottom:314.310000px;}
.ye6{bottom:314.670000px;}
.ybf{bottom:317.190000px;}
.yd0{bottom:318.090000px;}
.y7a{bottom:323.850000px;}
.ya5{bottom:324.210000px;}
.yfb{bottom:325.830000px;}
.y2b{bottom:334.155000px;}
.ye5{bottom:340.635000px;}
.y58{bottom:341.535000px;}
.ybe{bottom:343.155000px;}
.ycf{bottom:344.055000px;}
.yfa{bottom:345.675000px;}
.y79{bottom:349.815000px;}
.ya4{bottom:349.995000px;}
.y2a{bottom:353.955000px;}
.yf9{bottom:365.655000px;}
.ye4{bottom:366.375000px;}
.y57{bottom:367.455000px;}
.ybd{bottom:369.075000px;}
.yce{bottom:369.975000px;}
.y29{bottom:373.755000px;}
.y78{bottom:375.735000px;}
.ya3{bottom:375.915000px;}
.yf8{bottom:385.455000px;}
.ye3{bottom:392.295000px;}
.y56{bottom:393.375000px;}
.y28{bottom:393.735000px;}
.ybc{bottom:394.995000px;}
.ycd{bottom:395.715000px;}
.y77{bottom:401.475000px;}
.ya2{bottom:401.835000px;}
.yf7{bottom:405.255000px;}
.y27{bottom:413.535000px;}
.ye2{bottom:418.215000px;}
.y55{bottom:419.115000px;}
.ybb{bottom:420.735000px;}
.ya1{bottom:421.635000px;}
.yf6{bottom:425.055000px;}
.y76{bottom:427.395000px;}
.yb5{bottom:427.755000px;}
.y26{bottom:433.335000px;}
.ye1{bottom:444.135000px;}
.yf5{bottom:444.855000px;}
.y54{bottom:445.035000px;}
.yba{bottom:446.655000px;}
.ya0{bottom:447.555000px;}
.y25{bottom:453.135000px;}
.y75{bottom:453.315000px;}
.yb4{bottom:453.495000px;}
.yf4{bottom:464.835000px;}
.ydf{bottom:470.775000px;}
.y53{bottom:470.955000px;}
.y24{bottom:472.935000px;}
.yb8{bottom:473.295000px;}
.y9f{bottom:473.475000px;}
.ye0{bottom:477.615000px;}
.y74{bottom:479.235000px;}
.yb3{bottom:479.415000px;}
.yb9{bottom:480.135000px;}
.yf3{bottom:484.635000px;}
.y23{bottom:492.915000px;}
.y52{bottom:496.875000px;}
.y9e{bottom:499.215000px;}
.yb6{bottom:502.635000px;}
.yf2{bottom:504.435000px;}
.yb2{bottom:505.335000px;}
.y73{bottom:505.875000px;}
.yb7{bottom:509.475000px;}
.y22{bottom:512.715000px;}
.y51{bottom:522.615000px;}
.yf1{bottom:524.235000px;}
.y9d{bottom:525.135000px;}
.yb1{bottom:531.255000px;}
.y21{bottom:532.515000px;}
.y72{bottom:534.315000px;}
.y50{bottom:548.535000px;}
.y9c{bottom:551.055000px;}
.y20{bottom:552.315000px;}
.yf0{bottom:554.295000px;}
.yb0{bottom:556.995000px;}
.y71{bottom:560.235000px;}
.y1f{bottom:572.115000px;}
.y9b{bottom:576.975000px;}
.yaf{bottom:582.915000px;}
.y4f{bottom:585.975000px;}
.y70{bottom:586.155000px;}
.y1e{bottom:592.095000px;}
.y9a{bottom:602.745000px;}
.yde{bottom:608.865000px;}
.y6f{bottom:612.105000px;}
.y1d{bottom:613.185000px;}
.y4e{bottom:614.445000px;}
.y99{bottom:628.665000px;}
.ydd{bottom:634.785000px;}
.y1c{bottom:635.685000px;}
.y6e{bottom:637.845000px;}
.y4d{bottom:640.365000px;}
.y98{bottom:654.585000px;}
.y1b{bottom:654.945000px;}
.ydc{bottom:660.525000px;}
.y6d{bottom:663.765000px;}
.y4c{bottom:666.285000px;}
.y1a{bottom:672.765000px;}
.y97{bottom:680.505000px;}
.ydb{bottom:686.445000px;}
.y6c{bottom:689.685000px;}
.y19{bottom:691.305000px;}
.y4b{bottom:692.025000px;}
.y96{bottom:706.245000px;}
.yda{bottom:712.365000px;}
.y4a{bottom:717.945000px;}
.y18{bottom:718.305000px;}
.y6b{bottom:726.945000px;}
.y95{bottom:732.165000px;}
.yd9{bottom:738.285000px;}
.y49{bottom:743.865000px;}
.y17{bottom:746.745000px;}
.y6a{bottom:755.565000px;}
.y94{bottom:758.085000px;}
.y16{bottom:767.985000px;}
.y48{bottom:769.785000px;}
.y115{bottom:780.585000px;}
.y69{bottom:781.485000px;}
.y93{bottom:783.825000px;}
.y15{bottom:790.125000px;}
.y47{bottom:795.525000px;}
.y114{bottom:801.825000px;}
.y68{bottom:807.225000px;}
.y92{bottom:809.745000px;}
.y14{bottom:818.025000px;}
.y46{bottom:821.445000px;}
.y113{bottom:822.705000px;}
.y67{bottom:833.145000px;}
.y91{bottom:835.665000px;}
.y112{bottom:842.505000px;}
.y13{bottom:845.745000px;}
.y45{bottom:847.365000px;}
.y66{bottom:859.065000px;}
.y90{bottom:861.585000px;}
.y111{bottom:862.350000px;}
.y12{bottom:871.170000px;}
.y44{bottom:873.330000px;}
.y110{bottom:882.330000px;}
.y65{bottom:885.030000px;}
.y8f{bottom:887.370000px;}
.y11{bottom:894.570000px;}
.y43{bottom:899.070000px;}
.y10f{bottom:902.130000px;}
.y64{bottom:910.770000px;}
.y8e{bottom:913.290000px;}
.y10e{bottom:921.930000px;}
.y42{bottom:924.990000px;}
.y10{bottom:926.430000px;}
.y63{bottom:936.690000px;}
.y8d{bottom:939.210000px;}
.y10d{bottom:941.730000px;}
.y41{bottom:950.910000px;}
.yf{bottom:958.110000px;}
.y10c{bottom:961.530000px;}
.y8c{bottom:965.130000px;}
.y62{bottom:974.130000px;}
.y40{bottom:976.830000px;}
.y10b{bottom:981.510000px;}
.ye{bottom:989.790000px;}
.y8b{bottom:990.870000px;}
.y10a{bottom:1001.310000px;}
.y3f{bottom:1002.570000px;}
.y8a{bottom:1016.790000px;}
.yd{bottom:1018.050000px;}
.y109{bottom:1021.110000px;}
.y3e{bottom:1028.490000px;}
.yc{bottom:1037.850000px;}
.y108{bottom:1040.910000px;}
.y89{bottom:1042.710000px;}
.y3d{bottom:1054.410000px;}
.yb{bottom:1057.650000px;}
.y107{bottom:1060.710000px;}
.y88{bottom:1068.630000px;}
.ya{bottom:1074.570000px;}
.y3c{bottom:1080.330000px;}
.y106{bottom:1080.690000px;}
.y6{bottom:1090.950000px;}
.y87{bottom:1094.370000px;}
.y105{bottom:1100.490000px;}
.y5{bottom:1109.850000px;}
.y3b{bottom:1117.590000px;}
.y86{bottom:1120.290000px;}
.y4{bottom:1128.750000px;}
.y37{bottom:1138.860000px;}
.y3{bottom:1147.860000px;}
.y36{bottom:1157.040000px;}
.y2{bottom:1168.380000px;}
.y35{bottom:1170.900000px;}
.y34{bottom:1184.580000px;}
.y1{bottom:1194.480000px;}
.y33{bottom:1198.440000px;}
.he{height:17.316000px;}
.h17{height:29.678906px;}
.h12{height:38.158594px;}
.h11{height:41.726953px;}
.hc{height:47.321367px;}
.h5{height:47.344922px;}
.hb{height:48.616875px;}
.h6{height:52.971680px;}
.h9{height:52.998047px;}
.h16{height:58.621992px;}
.h7{height:58.651172px;}
.h15{height:59.038594px;}
.h13{height:59.439023px;}
.h10{height:60.226875px;}
.h14{height:62.211094px;}
.h4{height:65.010937px;}
.hd{height:65.884219px;}
.h2{height:66.757500px;}
.ha{height:70.628906px;}
.h18{height:72.562500px;}
.hf{height:74.953125px;}
.h8{height:84.898125px;}
.h3{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:22.500000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:127.655987px;}
.x22{left:131.435987px;}
.x1a{left:132.515987px;}
.x15{left:154.649987px;}
.x1b{left:159.149987px;}
.xc{left:168.689987px;}
.x14{left:170.129987px;}
.xb{left:175.529987px;}
.xe{left:187.049987px;}
.x23{left:191.549987px;}
.x6{left:199.649987px;}
.x12{left:231.149987px;}
.xf{left:290.414987px;}
.xd{left:297.974987px;}
.x5{left:327.854987px;}
.x19{left:343.694987px;}
.xa{left:361.154987px;}
.x1c{left:365.834973px;}
.x11{left:370.154987px;}
.x1d{left:371.954987px;}
.x10{left:376.814987px;}
.x24{left:387.614973px;}
.x25{left:393.734987px;}
.x13{left:415.514987px;}
.x9{left:446.474987px;}
.x2{left:455.474987px;}
.x8{left:518.684987px;}
.x1e{left:535.064973px;}
.x1f{left:541.184987px;}
.x1{left:556.844987px;}
.x20{left:578.084973px;}
.x21{left:584.204987px;}
.x3{left:717.809987px;}
.x17{left:727.169973px;}
.x18{left:733.289987px;}
.x16{left:743.010000px;}
.x4{left:765.509987px;}
@media print{
.v2{vertical-align:-70.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls16{letter-spacing:-1.120000pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.239467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.400533pt;}
.lsf{letter-spacing:0.456533pt;}
.ls13{letter-spacing:0.800000pt;}
.ls5{letter-spacing:2.720000pt;}
.lsd{letter-spacing:20.432640pt;}
.ls4{letter-spacing:48.106667pt;}
.ls11{letter-spacing:603.840000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-13.736533pt;}
.ws3{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws0{word-spacing:-11.120533pt;}
.ws9{word-spacing:-10.959467pt;}
.ws1{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.wsa{word-spacing:-8.632320pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.021440pt;}
._2{width:1.944960pt;}
._a{width:2.892587pt;}
._3{width:3.810347pt;}
._9{width:4.712533pt;}
._10{width:5.866027pt;}
._8{width:6.855040pt;}
._7{width:7.968000pt;}
._5{width:9.602560pt;}
._4{width:10.624000pt;}
._6{width:11.524267pt;}
._e{width:14.385920pt;}
._f{width:15.617280pt;}
._b{width:17.210880pt;}
._c{width:18.584320pt;}
._12{width:19.601280pt;}
._11{width:21.023360pt;}
._15{width:23.087360pt;}
._13{width:31.022080pt;}
._14{width:229.425280pt;}
._d{width:753.418667pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.880000pt;}
.y9{bottom:49.440000pt;}
.y39{bottom:49.600000pt;}
.y38{bottom:51.200000pt;}
.y8{bottom:61.632000pt;}
.y7{bottom:73.952000pt;}
.yef{bottom:77.792000pt;}
.y85{bottom:79.072000pt;}
.yae{bottom:81.152000pt;}
.y61{bottom:84.032000pt;}
.yee{bottom:89.952000pt;}
.ycc{bottom:93.952000pt;}
.y84{bottom:95.232000pt;}
.y104{bottom:95.712000pt;}
.ycb{bottom:97.952000pt;}
.yd8{bottom:98.752000pt;}
.yed{bottom:104.032000pt;}
.yad{bottom:104.192000pt;}
.yca{bottom:106.272000pt;}
.y60{bottom:107.072000pt;}
.y83{bottom:110.272000pt;}
.y103{bottom:113.312000pt;}
.yc9{bottom:118.592000pt;}
.yd7{bottom:121.792000pt;}
.y82{bottom:123.232000pt;}
.yac{bottom:127.232000pt;}
.y81{bottom:127.872000pt;}
.yec{bottom:129.152000pt;}
.y5f{bottom:129.952000pt;}
.yc8{bottom:130.752000pt;}
.y102{bottom:130.912000pt;}
.yc7{bottom:134.746667pt;}
.y80{bottom:139.706667pt;}
.yc6{bottom:143.066667pt;}
.yd6{bottom:144.826667pt;}
.y101{bottom:148.666667pt;}
.y32{bottom:149.626667pt;}
.yab{bottom:150.106667pt;}
.yeb{bottom:152.186667pt;}
.y5e{bottom:152.986667pt;}
.yc5{bottom:155.386667pt;}
.yc4{bottom:159.386667pt;}
.y100{bottom:166.266667pt;}
.yd5{bottom:167.706667pt;}
.y7f{bottom:172.986667pt;}
.yaa{bottom:173.146667pt;}
.yea{bottom:175.066667pt;}
.y31{bottom:175.386667pt;}
.y5d{bottom:176.026667pt;}
.yff{bottom:183.866667pt;}
.yc3{bottom:186.906667pt;}
.yd4{bottom:190.746667pt;}
.y7e{bottom:195.866667pt;}
.ya9{bottom:196.186667pt;}
.ye9{bottom:198.106667pt;}
.y5c{bottom:198.906667pt;}
.yfe{bottom:201.466667pt;}
.y30{bottom:210.586667pt;}
.yd3{bottom:213.786667pt;}
.yc2{bottom:216.666667pt;}
.y7d{bottom:218.906667pt;}
.ya8{bottom:219.066667pt;}
.ye8{bottom:221.146667pt;}
.y5b{bottom:221.946667pt;}
.y2f{bottom:225.786667pt;}
.yc1{bottom:236.026667pt;}
.yd2{bottom:236.826667pt;}
.y7c{bottom:241.946667pt;}
.ya7{bottom:242.106667pt;}
.y2e{bottom:244.186667pt;}
.y5a{bottom:244.986667pt;}
.ye7{bottom:254.266667pt;}
.yfd{bottom:254.426667pt;}
.yc0{bottom:259.066667pt;}
.yd1{bottom:259.706667pt;}
.y2d{bottom:261.786667pt;}
.y7b{bottom:264.986667pt;}
.ya6{bottom:265.146667pt;}
.yfc{bottom:272.026667pt;}
.y59{bottom:278.106667pt;}
.y2c{bottom:279.386667pt;}
.ye6{bottom:279.706667pt;}
.ybf{bottom:281.946667pt;}
.yd0{bottom:282.746667pt;}
.y7a{bottom:287.866667pt;}
.ya5{bottom:288.186667pt;}
.yfb{bottom:289.626667pt;}
.y2b{bottom:297.026667pt;}
.ye5{bottom:302.786667pt;}
.y58{bottom:303.586667pt;}
.ybe{bottom:305.026667pt;}
.ycf{bottom:305.826667pt;}
.yfa{bottom:307.266667pt;}
.y79{bottom:310.946667pt;}
.ya4{bottom:311.106667pt;}
.y2a{bottom:314.626667pt;}
.yf9{bottom:325.026667pt;}
.ye4{bottom:325.666667pt;}
.y57{bottom:326.626667pt;}
.ybd{bottom:328.066667pt;}
.yce{bottom:328.866667pt;}
.y29{bottom:332.226667pt;}
.y78{bottom:333.986667pt;}
.ya3{bottom:334.146667pt;}
.yf8{bottom:342.626667pt;}
.ye3{bottom:348.706667pt;}
.y56{bottom:349.666667pt;}
.y28{bottom:349.986667pt;}
.ybc{bottom:351.106667pt;}
.ycd{bottom:351.746667pt;}
.y77{bottom:356.866667pt;}
.ya2{bottom:357.186667pt;}
.yf7{bottom:360.226667pt;}
.y27{bottom:367.586667pt;}
.ye2{bottom:371.746667pt;}
.y55{bottom:372.546667pt;}
.ybb{bottom:373.986667pt;}
.ya1{bottom:374.786667pt;}
.yf6{bottom:377.826667pt;}
.y76{bottom:379.906667pt;}
.yb5{bottom:380.226667pt;}
.y26{bottom:385.186667pt;}
.ye1{bottom:394.786667pt;}
.yf5{bottom:395.426667pt;}
.y54{bottom:395.586667pt;}
.yba{bottom:397.026667pt;}
.ya0{bottom:397.826667pt;}
.y25{bottom:402.786667pt;}
.y75{bottom:402.946667pt;}
.yb4{bottom:403.106667pt;}
.yf4{bottom:413.186667pt;}
.ydf{bottom:418.466667pt;}
.y53{bottom:418.626667pt;}
.y24{bottom:420.386667pt;}
.yb8{bottom:420.706667pt;}
.y9f{bottom:420.866667pt;}
.ye0{bottom:424.546667pt;}
.y74{bottom:425.986667pt;}
.yb3{bottom:426.146667pt;}
.yb9{bottom:426.786667pt;}
.yf3{bottom:430.786667pt;}
.y23{bottom:438.146667pt;}
.y52{bottom:441.666667pt;}
.y9e{bottom:443.746667pt;}
.yb6{bottom:446.786667pt;}
.yf2{bottom:448.386667pt;}
.yb2{bottom:449.186667pt;}
.y73{bottom:449.666667pt;}
.yb7{bottom:452.866667pt;}
.y22{bottom:455.746667pt;}
.y51{bottom:464.546667pt;}
.yf1{bottom:465.986667pt;}
.y9d{bottom:466.786667pt;}
.yb1{bottom:472.226667pt;}
.y21{bottom:473.346667pt;}
.y72{bottom:474.946667pt;}
.y50{bottom:487.586667pt;}
.y9c{bottom:489.826667pt;}
.y20{bottom:490.946667pt;}
.yf0{bottom:492.706667pt;}
.yb0{bottom:495.106667pt;}
.y71{bottom:497.986667pt;}
.y1f{bottom:508.546667pt;}
.y9b{bottom:512.866667pt;}
.yaf{bottom:518.146667pt;}
.y4f{bottom:520.866667pt;}
.y70{bottom:521.026667pt;}
.y1e{bottom:526.306667pt;}
.y9a{bottom:535.773333pt;}
.yde{bottom:541.213333pt;}
.y6f{bottom:544.093333pt;}
.y1d{bottom:545.053333pt;}
.y4e{bottom:546.173333pt;}
.y99{bottom:558.813333pt;}
.ydd{bottom:564.253333pt;}
.y1c{bottom:565.053333pt;}
.y6e{bottom:566.973333pt;}
.y4d{bottom:569.213333pt;}
.y98{bottom:581.853333pt;}
.y1b{bottom:582.173333pt;}
.ydc{bottom:587.133333pt;}
.y6d{bottom:590.013333pt;}
.y4c{bottom:592.253333pt;}
.y1a{bottom:598.013333pt;}
.y97{bottom:604.893333pt;}
.ydb{bottom:610.173333pt;}
.y6c{bottom:613.053333pt;}
.y19{bottom:614.493333pt;}
.y4b{bottom:615.133333pt;}
.y96{bottom:627.773333pt;}
.yda{bottom:633.213333pt;}
.y4a{bottom:638.173333pt;}
.y18{bottom:638.493333pt;}
.y6b{bottom:646.173333pt;}
.y95{bottom:650.813333pt;}
.yd9{bottom:656.253333pt;}
.y49{bottom:661.213333pt;}
.y17{bottom:663.773333pt;}
.y6a{bottom:671.613333pt;}
.y94{bottom:673.853333pt;}
.y16{bottom:682.653333pt;}
.y48{bottom:684.253333pt;}
.y115{bottom:693.853333pt;}
.y69{bottom:694.653333pt;}
.y93{bottom:696.733333pt;}
.y15{bottom:702.333333pt;}
.y47{bottom:707.133333pt;}
.y114{bottom:712.733333pt;}
.y68{bottom:717.533333pt;}
.y92{bottom:719.773333pt;}
.y14{bottom:727.133333pt;}
.y46{bottom:730.173333pt;}
.y113{bottom:731.293333pt;}
.y67{bottom:740.573333pt;}
.y91{bottom:742.813333pt;}
.y112{bottom:748.893333pt;}
.y13{bottom:751.773333pt;}
.y45{bottom:753.213333pt;}
.y66{bottom:763.613333pt;}
.y90{bottom:765.853333pt;}
.y111{bottom:766.533333pt;}
.y12{bottom:774.373333pt;}
.y44{bottom:776.293333pt;}
.y110{bottom:784.293333pt;}
.y65{bottom:786.693333pt;}
.y8f{bottom:788.773333pt;}
.y11{bottom:795.173333pt;}
.y43{bottom:799.173333pt;}
.y10f{bottom:801.893333pt;}
.y64{bottom:809.573333pt;}
.y8e{bottom:811.813333pt;}
.y10e{bottom:819.493333pt;}
.y42{bottom:822.213333pt;}
.y10{bottom:823.493333pt;}
.y63{bottom:832.613333pt;}
.y8d{bottom:834.853333pt;}
.y10d{bottom:837.093333pt;}
.y41{bottom:845.253333pt;}
.yf{bottom:851.653333pt;}
.y10c{bottom:854.693333pt;}
.y8c{bottom:857.893333pt;}
.y62{bottom:865.893333pt;}
.y40{bottom:868.293333pt;}
.y10b{bottom:872.453333pt;}
.ye{bottom:879.813333pt;}
.y8b{bottom:880.773333pt;}
.y10a{bottom:890.053333pt;}
.y3f{bottom:891.173333pt;}
.y8a{bottom:903.813333pt;}
.yd{bottom:904.933333pt;}
.y109{bottom:907.653333pt;}
.y3e{bottom:914.213333pt;}
.yc{bottom:922.533333pt;}
.y108{bottom:925.253333pt;}
.y89{bottom:926.853333pt;}
.y3d{bottom:937.253333pt;}
.yb{bottom:940.133333pt;}
.y107{bottom:942.853333pt;}
.y88{bottom:949.893333pt;}
.ya{bottom:955.173333pt;}
.y3c{bottom:960.293333pt;}
.y106{bottom:960.613333pt;}
.y6{bottom:969.733333pt;}
.y87{bottom:972.773333pt;}
.y105{bottom:978.213333pt;}
.y5{bottom:986.533333pt;}
.y3b{bottom:993.413333pt;}
.y86{bottom:995.813333pt;}
.y4{bottom:1003.333333pt;}
.y37{bottom:1012.320000pt;}
.y3{bottom:1020.320000pt;}
.y36{bottom:1028.480000pt;}
.y2{bottom:1038.560000pt;}
.y35{bottom:1040.800000pt;}
.y34{bottom:1052.960000pt;}
.y1{bottom:1061.760000pt;}
.y33{bottom:1065.280000pt;}
.he{height:15.392000pt;}
.h17{height:26.381250pt;}
.h12{height:33.918750pt;}
.h11{height:37.090625pt;}
.hc{height:42.063437pt;}
.h5{height:42.084375pt;}
.hb{height:43.215000pt;}
.h6{height:47.085938pt;}
.h9{height:47.109375pt;}
.h16{height:52.108438pt;}
.h7{height:52.134375pt;}
.h15{height:52.478750pt;}
.h13{height:52.834688pt;}
.h10{height:53.535000pt;}
.h14{height:55.298750pt;}
.h4{height:57.787500pt;}
.hd{height:58.563750pt;}
.h2{height:59.340000pt;}
.ha{height:62.781250pt;}
.h18{height:64.500000pt;}
.hf{height:66.625000pt;}
.h8{height:75.465000pt;}
.h3{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:20.000000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:113.471988pt;}
.x22{left:116.831988pt;}
.x1a{left:117.791988pt;}
.x15{left:137.466655pt;}
.x1b{left:141.466655pt;}
.xc{left:149.946655pt;}
.x14{left:151.226655pt;}
.xb{left:156.026655pt;}
.xe{left:166.266655pt;}
.x23{left:170.266655pt;}
.x6{left:177.466655pt;}
.x12{left:205.466655pt;}
.xf{left:258.146655pt;}
.xd{left:264.866655pt;}
.x5{left:291.426655pt;}
.x19{left:305.506655pt;}
.xa{left:321.026655pt;}
.x1c{left:325.186643pt;}
.x11{left:329.026655pt;}
.x1d{left:330.626655pt;}
.x10{left:334.946655pt;}
.x24{left:344.546643pt;}
.x25{left:349.986655pt;}
.x13{left:369.346655pt;}
.x9{left:396.866655pt;}
.x2{left:404.866655pt;}
.x8{left:461.053322pt;}
.x1e{left:475.613310pt;}
.x1f{left:481.053322pt;}
.x1{left:494.973322pt;}
.x20{left:513.853310pt;}
.x21{left:519.293322pt;}
.x3{left:638.053322pt;}
.x17{left:646.373310pt;}
.x18{left:651.813322pt;}
.x16{left:660.453333pt;}
.x4{left:680.453322pt;}
}




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