
    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_7785122192a3520308ca0369.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_24454e9bdb99b28d6444d495.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_40ff51ad06c526470b12d2df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_02f3b515ea7a24287604fcb5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_537047baaebf784ba1267c62.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.695312;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_39201de28127df6a3ead5a80.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_75a8459ed9c69929d71592c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_c48e18895104e45af81d967d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948242;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:-86.400000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.134000px;}
.lse{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.414600px;}
.lsc{letter-spacing:-0.305400px;}
.ls17{letter-spacing:-0.262200px;}
.ls10{letter-spacing:-0.178800px;}
.ls7{letter-spacing:-0.109200px;}
.ls18{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018720px;}
.ls2{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.511920px;}
.ls16{letter-spacing:2.106720px;}
.ls19{letter-spacing:6.065280px;}
.ls12{letter-spacing:7.866720px;}
.ls14{letter-spacing:22.986720px;}
.ls8{letter-spacing:197.561280px;}
.ls1{letter-spacing:1451.820000px;}
.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;}
}
.ws3{word-spacing:-26.658720px;}
.ws2{word-spacing:-20.304000px;}
.ws1{word-spacing:-20.016000px;}
.ws9{word-spacing:-18.720120px;}
.ws5{word-spacing:-18.676920px;}
.ws7{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.wsb{word-spacing:-18.152520px;}
.ws8{word-spacing:-18.109320px;}
.wsa{word-spacing:-16.873080px;}
.ws6{word-spacing:-16.613280px;}
.wsc{word-spacing:-16.506480px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-4.962720px;}
._d{margin-left:-3.756720px;}
._7{margin-left:-2.444400px;}
._1{margin-left:-1.032000px;}
._3{width:1.008000px;}
._0{width:2.088000px;}
._2{width:3.420000px;}
._a{width:5.051520px;}
._9{width:6.160320px;}
._b{width:7.485120px;}
._5{width:8.640000px;}
._4{width:9.792000px;}
._12{width:11.393280px;}
._16{width:12.916800px;}
._15{width:14.440320px;}
._c{width:16.096320px;}
._13{width:17.393280px;}
._8{width:18.481680px;}
._10{width:20.203200px;}
._11{width:21.780000px;}
._14{width:23.316480px;}
._17{width:25.209600px;}
._1f{width:26.502720px;}
._18{width:27.665280px;}
._1d{width:29.021760px;}
._1c{width:30.536640px;}
._1b{width:32.126400px;}
._1a{width:33.510960px;}
._1e{width:36.564480px;}
._20{width:40.008960px;}
._21{width:41.072880px;}
._6{width:260.052000px;}
._19{width:844.164000px;}
._f{width:845.741280px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.240000px;}
.fsb{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:4.860000px;}
.y2e{bottom:22.680000px;}
.y2d{bottom:30.600000px;}
.y4b{bottom:57.636000px;}
.y2c{bottom:64.980000px;}
.y5{bottom:66.525004px;}
.y28{bottom:78.336000px;}
.y4{bottom:97.125005px;}
.y2b{bottom:99.180000px;}
.y27{bottom:99.216000px;}
.y7f{bottom:111.096000px;}
.yee{bottom:115.236000px;}
.y103{bottom:124.956000px;}
.y26{bottom:126.216000px;}
.y7e{bottom:128.376000px;}
.y2a{bottom:129.810000px;}
.yb6{bottom:132.876000px;}
.yed{bottom:135.756000px;}
.y20{bottom:139.264499px;}
.y102{bottom:145.476000px;}
.y7d{bottom:145.656000px;}
.y25{bottom:146.736000px;}
.yce{bottom:147.636000px;}
.yba{bottom:150.150000px;}
.yec{bottom:156.270000px;}
.y7c{bottom:162.930000px;}
.yb9{bottom:164.910000px;}
.y101{bottom:165.810000px;}
.y24{bottom:167.430000px;}
.ycc{bottom:176.790000px;}
.yb3{bottom:180.030000px;}
.y7b{bottom:182.010000px;}
.ycd{bottom:182.730000px;}
.ycb{bottom:184.530000px;}
.y100{bottom:186.330000px;}
.y23{bottom:188.130000px;}
.yff{bottom:194.610000px;}
.y17{bottom:196.933500px;}
.yc7{bottom:197.130000px;}
.yb2{bottom:197.310000px;}
.yca{bottom:199.290000px;}
.yfb{bottom:201.810000px;}
.y7a{bottom:206.850000px;}
.y22{bottom:208.830000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yb1{bottom:214.590000px;}
.yfe{bottom:216.390000px;}
.yfa{bottom:216.570000px;}
.yc6{bottom:217.650000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y79{bottom:227.370000px;}
.y21{bottom:229.530000px;}
.yb0{bottom:231.870000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.yf4{bottom:236.370000px;}
.yfd{bottom:236.910000px;}
.yc5{bottom:238.170000px;}
.y78{bottom:247.710000px;}
.yaf{bottom:249.150000px;}
.yf3{bottom:251.130000px;}
.yae{bottom:253.650000px;}
.yc4{bottom:258.690000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.yf9{bottom:264.630000px;}
.yad{bottom:266.430000px;}
.yfc{bottom:266.970000px;}
.y77{bottom:268.230000px;}
.yeb{bottom:270.930000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yc3{bottom:279.030000px;}
.yac{bottom:283.530000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y76{bottom:288.750000px;}
.yc9{bottom:294.735000px;}
.yc2{bottom:299.595000px;}
.yab{bottom:300.855000px;}
.yaa{bottom:305.355000px;}
.y75{bottom:309.315000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.ya9{bottom:318.135000px;}
.yc1{bottom:320.115000px;}
.ye6{bottom:322.635000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y74{bottom:329.655000px;}
.ya8{bottom:335.415000px;}
.yf2{bottom:335.595000px;}
.yea{bottom:337.395000px;}
.ya7{bottom:339.915000px;}
.yc0{bottom:340.635000px;}
.ye{bottom:348.133500px;}
.y72{bottom:350.175000px;}
.ye5{bottom:352.695000px;}
.ya6{bottom:354.675000px;}
.y73{bottom:356.115000px;}
.ybf{bottom:360.975000px;}
.yf6{bottom:366.915000px;}
.ye4{bottom:369.975000px;}
.y71{bottom:370.695000px;}
.ybe{bottom:381.495000px;}
.yd{bottom:386.785499px;}
.ye3{bottom:387.075000px;}
.y70{bottom:391.215000px;}
.ybd{bottom:402.015000px;}
.ye2{bottom:406.335000px;}
.yf8{bottom:407.955000px;}
.yc{bottom:408.044999px;}
.y6f{bottom:411.555000px;}
.ybc{bottom:422.535000px;}
.y49{bottom:425.955000px;}
.y6e{bottom:432.075000px;}
.yf1{bottom:438.015000px;}
.ye1{bottom:441.615000px;}
.ya5{bottom:442.875000px;}
.y48{bottom:446.295000px;}
.y6d{bottom:452.595000px;}
.ye0{bottom:462.135000px;}
.ya4{bottom:463.395000px;}
.y47{bottom:466.815000px;}
.y6c{bottom:473.115000px;}
.ydf{bottom:482.655000px;}
.ya3{bottom:483.915000px;}
.y46{bottom:487.335000px;}
.y6b{bottom:493.455000px;}
.yde{bottom:503.175000px;}
.ya2{bottom:504.435000px;}
.y6a{bottom:513.975000px;}
.y45{bottom:518.295000px;}
.yb{bottom:520.864502px;}
.ydd{bottom:523.515000px;}
.ya1{bottom:524.775000px;}
.y69{bottom:534.495000px;}
.y44{bottom:538.635000px;}
.ya{bottom:538.864499px;}
.ydc{bottom:544.035000px;}
.ya0{bottom:545.295000px;}
.y68{bottom:555.015000px;}
.y9{bottom:556.864499px;}
.y43{bottom:559.155000px;}
.ydb{bottom:564.555000px;}
.y9f{bottom:565.815000px;}
.y67{bottom:575.385000px;}
.y42{bottom:579.525000px;}
.yda{bottom:585.105000px;}
.y9e{bottom:586.365000px;}
.y66{bottom:595.905000px;}
.y41{bottom:600.045000px;}
.yd8{bottom:605.445000px;}
.y9d{bottom:606.705000px;}
.yd9{bottom:611.385000px;}
.y65{bottom:616.425000px;}
.y40{bottom:620.565000px;}
.yd7{bottom:625.965000px;}
.y9c{bottom:627.225000px;}
.y64{bottom:636.945000px;}
.y3f{bottom:641.085000px;}
.y8{bottom:645.510000px;}
.yd5{bottom:646.485000px;}
.y9a{bottom:647.745000px;}
.yd6{bottom:652.425000px;}
.y9b{bottom:653.685000px;}
.y63{bottom:657.285000px;}
.y3e{bottom:661.425000px;}
.yf0{bottom:663.225000px;}
.y7{bottom:666.771000px;}
.yd4{bottom:667.005000px;}
.y99{bottom:668.265000px;}
.y62{bottom:677.805000px;}
.y3d{bottom:681.945000px;}
.yd3{bottom:687.345000px;}
.y98{bottom:688.605000px;}
.y61{bottom:698.325000px;}
.y3c{bottom:702.465000px;}
.yb8{bottom:704.265000px;}
.yd2{bottom:707.865000px;}
.y97{bottom:709.125000px;}
.y60{bottom:718.845000px;}
.y3b{bottom:722.985000px;}
.y6{bottom:726.298500px;}
.yd1{bottom:728.385000px;}
.y96{bottom:729.645000px;}
.y5f{bottom:739.185000px;}
.y3a{bottom:743.325000px;}
.yd0{bottom:748.905000px;}
.y95{bottom:750.165000px;}
.y3{bottom:752.599495px;}
.y5e{bottom:759.705000px;}
.y39{bottom:763.845000px;}
.ye9{bottom:769.245000px;}
.y94{bottom:770.505000px;}
.ycf{bottom:778.965000px;}
.y5d{bottom:780.225000px;}
.y38{bottom:784.365000px;}
.y93{bottom:791.025000px;}
.y5c{bottom:800.745000px;}
.y92{bottom:811.545000px;}
.y37{bottom:814.425000px;}
.y5b{bottom:821.085000px;}
.y91{bottom:832.065000px;}
.y36{bottom:836.205000px;}
.y5a{bottom:841.605000px;}
.y90{bottom:852.450000px;}
.y35{bottom:856.590000px;}
.y59{bottom:862.170000px;}
.y8e{bottom:872.970000px;}
.y34{bottom:877.830000px;}
.y8f{bottom:878.910000px;}
.y2{bottom:879.369000px;}
.y58{bottom:882.690000px;}
.y8d{bottom:893.490000px;}
.y33{bottom:901.950000px;}
.y57{bottom:903.030000px;}
.y8c{bottom:914.010000px;}
.yf5{bottom:919.950000px;}
.y56{bottom:923.550000px;}
.yb5{bottom:929.490000px;}
.y32{bottom:931.650000px;}
.y8b{bottom:934.350000px;}
.y55{bottom:944.070000px;}
.y89{bottom:954.870000px;}
.y8a{bottom:960.810000px;}
.y31{bottom:961.530000px;}
.y54{bottom:964.590000px;}
.y1{bottom:966.726000px;}
.yb4{bottom:970.530000px;}
.yef{bottom:974.130000px;}
.y88{bottom:975.390000px;}
.ye8{bottom:981.330000px;}
.y53{bottom:984.930000px;}
.y30{bottom:991.230000px;}
.y87{bottom:995.910000px;}
.y52{bottom:1005.450000px;}
.y29{bottom:1013.730000px;}
.y86{bottom:1016.250000px;}
.y51{bottom:1025.970000px;}
.y85{bottom:1036.770000px;}
.y50{bottom:1046.490000px;}
.yc8{bottom:1056.030000px;}
.y84{bottom:1057.290000px;}
.ye7{bottom:1063.230000px;}
.y4f{bottom:1066.830000px;}
.yb7{bottom:1076.550000px;}
.y83{bottom:1077.810000px;}
.y4e{bottom:1087.350000px;}
.y82{bottom:1098.150000px;}
.yf7{bottom:1104.090000px;}
.y4d{bottom:1107.870000px;}
.y81{bottom:1118.670000px;}
.y4c{bottom:1137.960000px;}
.y80{bottom:1139.220000px;}
.ybb{bottom:1145.160000px;}
.y4a{bottom:1191.960000px;}
.h7{height:32.130000px;}
.h10{height:40.550625px;}
.he{height:43.554375px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.312812px;}
.hf{height:52.662656px;}
.h13{height:53.573906px;}
.h2{height:55.080000px;}
.h12{height:59.383125px;}
.h11{height:62.327813px;}
.hd{height:69.086250px;}
.h9{height:75.093750px;}
.h5{height:78.030000px;}
.hc{height:99.874688px;}
.h4{height:119.055004px;}
.ha{height:141.156000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:244.470000px;}
.w5{width:436.035000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.035987px;}
.x9{left:135.035987px;}
.xc{left:150.509987px;}
.x10{left:155.909987px;}
.x21{left:161.309987px;}
.x4{left:203.484001px;}
.x22{left:205.229973px;}
.x18{left:211.709973px;}
.x19{left:217.469987px;}
.x2c{left:221.969973px;}
.x11{left:228.269987px;}
.x2d{left:233.489987px;}
.x8{left:242.145000px;}
.xa{left:244.829987px;}
.x1e{left:248.609987px;}
.x1f{left:364.934973px;}
.x20{left:376.454987px;}
.xf{left:378.074987px;}
.x33{left:383.834973px;}
.x27{left:385.994973px;}
.x34{left:395.354987px;}
.x28{left:397.514987px;}
.x37{left:418.754973px;}
.x38{left:430.274987px;}
.xb{left:436.934987px;}
.x3{left:454.959000px;}
.xd{left:518.144973px;}
.xe{left:523.904987px;}
.x7{left:544.065000px;}
.x1c{left:567.104973px;}
.x1d{left:572.864987px;}
.x16{left:575.744973px;}
.x17{left:581.504987px;}
.x35{left:582.944973px;}
.x36{left:594.464987px;}
.x2e{left:607.064973px;}
.x14{left:618.584973px;}
.x25{left:622.004973px;}
.x15{left:624.344987px;}
.x26{left:633.524987px;}
.x29{left:650.444973px;}
.x23{left:656.384973px;}
.x2a{left:661.964987px;}
.x24{left:667.904987px;}
.x2f{left:675.104973px;}
.x30{left:686.624987px;}
.x31{left:754.349973px;}
.x1a{left:755.609973px;}
.x1b{left:761.369987px;}
.x32{left:765.869987px;}
.x2b{left:773.609973px;}
.x12{left:779.369973px;}
.x13{left:785.129987px;}
@media print{
.v2{vertical-align:-76.800000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.008000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.368533pt;}
.lsc{letter-spacing:-0.271467pt;}
.ls17{letter-spacing:-0.233067pt;}
.ls10{letter-spacing:-0.158933pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016640pt;}
.ls2{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.455040pt;}
.ls16{letter-spacing:1.872640pt;}
.ls19{letter-spacing:5.391360pt;}
.ls12{letter-spacing:6.992640pt;}
.ls14{letter-spacing:20.432640pt;}
.ls8{letter-spacing:175.610027pt;}
.ls1{letter-spacing:1290.506667pt;}
.ws3{word-spacing:-23.696640pt;}
.ws2{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws9{word-spacing:-16.640107pt;}
.ws5{word-spacing:-16.601707pt;}
.ws7{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.wsb{word-spacing:-16.135573pt;}
.ws8{word-spacing:-16.097173pt;}
.wsa{word-spacing:-14.998293pt;}
.ws6{word-spacing:-14.767360pt;}
.wsc{word-spacing:-14.672427pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-4.411307pt;}
._d{margin-left:-3.339307pt;}
._7{margin-left:-2.172800pt;}
._1{margin-left:-0.917333pt;}
._3{width:0.896000pt;}
._0{width:1.856000pt;}
._2{width:3.040000pt;}
._a{width:4.490240pt;}
._9{width:5.475840pt;}
._b{width:6.653440pt;}
._5{width:7.680000pt;}
._4{width:8.704000pt;}
._12{width:10.127360pt;}
._16{width:11.481600pt;}
._15{width:12.835840pt;}
._c{width:14.307840pt;}
._13{width:15.460693pt;}
._8{width:16.428160pt;}
._10{width:17.958400pt;}
._11{width:19.360000pt;}
._14{width:20.725760pt;}
._17{width:22.408533pt;}
._1f{width:23.557973pt;}
._18{width:24.591360pt;}
._1d{width:25.797120pt;}
._1c{width:27.143680pt;}
._1b{width:28.556800pt;}
._1a{width:29.787520pt;}
._1e{width:32.501760pt;}
._20{width:35.563520pt;}
._21{width:36.509227pt;}
._6{width:231.157333pt;}
._19{width:750.368000pt;}
._f{width:751.770027pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.880000pt;}
.fsb{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:4.320000pt;}
.y2e{bottom:20.160000pt;}
.y2d{bottom:27.200000pt;}
.y4b{bottom:51.232000pt;}
.y2c{bottom:57.760000pt;}
.y5{bottom:59.133337pt;}
.y28{bottom:69.632000pt;}
.y4{bottom:86.333337pt;}
.y2b{bottom:88.160000pt;}
.y27{bottom:88.192000pt;}
.y7f{bottom:98.752000pt;}
.yee{bottom:102.432000pt;}
.y103{bottom:111.072000pt;}
.y26{bottom:112.192000pt;}
.y7e{bottom:114.112000pt;}
.y2a{bottom:115.386667pt;}
.yb6{bottom:118.112000pt;}
.yed{bottom:120.672000pt;}
.y20{bottom:123.790666pt;}
.y102{bottom:129.312000pt;}
.y7d{bottom:129.472000pt;}
.y25{bottom:130.432000pt;}
.yce{bottom:131.232000pt;}
.yba{bottom:133.466667pt;}
.yec{bottom:138.906667pt;}
.y7c{bottom:144.826667pt;}
.yb9{bottom:146.586667pt;}
.y101{bottom:147.386667pt;}
.y24{bottom:148.826667pt;}
.ycc{bottom:157.146667pt;}
.yb3{bottom:160.026667pt;}
.y7b{bottom:161.786667pt;}
.ycd{bottom:162.426667pt;}
.ycb{bottom:164.026667pt;}
.y100{bottom:165.626667pt;}
.y23{bottom:167.226667pt;}
.yff{bottom:172.986667pt;}
.y17{bottom:175.052000pt;}
.yc7{bottom:175.226667pt;}
.yb2{bottom:175.386667pt;}
.yca{bottom:177.146667pt;}
.yfb{bottom:179.386667pt;}
.y7a{bottom:183.866667pt;}
.y22{bottom:185.626667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yb1{bottom:190.746667pt;}
.yfe{bottom:192.346667pt;}
.yfa{bottom:192.506667pt;}
.yc6{bottom:193.466667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y79{bottom:202.106667pt;}
.y21{bottom:204.026667pt;}
.yb0{bottom:206.106667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.yf4{bottom:210.106667pt;}
.yfd{bottom:210.586667pt;}
.yc5{bottom:211.706667pt;}
.y78{bottom:220.186667pt;}
.yaf{bottom:221.466667pt;}
.yf3{bottom:223.226667pt;}
.yae{bottom:225.466667pt;}
.yc4{bottom:229.946667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.yf9{bottom:235.226667pt;}
.yad{bottom:236.826667pt;}
.yfc{bottom:237.306667pt;}
.y77{bottom:238.426667pt;}
.yeb{bottom:240.826667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yc3{bottom:248.026667pt;}
.yac{bottom:252.026667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y76{bottom:256.666667pt;}
.yc9{bottom:261.986667pt;}
.yc2{bottom:266.306667pt;}
.yab{bottom:267.426667pt;}
.yaa{bottom:271.426667pt;}
.y75{bottom:274.946667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.ya9{bottom:282.786667pt;}
.yc1{bottom:284.546667pt;}
.ye6{bottom:286.786667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y74{bottom:293.026667pt;}
.ya8{bottom:298.146667pt;}
.yf2{bottom:298.306667pt;}
.yea{bottom:299.906667pt;}
.ya7{bottom:302.146667pt;}
.yc0{bottom:302.786667pt;}
.ye{bottom:309.452000pt;}
.y72{bottom:311.266667pt;}
.ye5{bottom:313.506667pt;}
.ya6{bottom:315.266667pt;}
.y73{bottom:316.546667pt;}
.ybf{bottom:320.866667pt;}
.yf6{bottom:326.146667pt;}
.ye4{bottom:328.866667pt;}
.y71{bottom:329.506667pt;}
.ybe{bottom:339.106667pt;}
.yd{bottom:343.809333pt;}
.ye3{bottom:344.066667pt;}
.y70{bottom:347.746667pt;}
.ybd{bottom:357.346667pt;}
.ye2{bottom:361.186667pt;}
.yf8{bottom:362.626667pt;}
.yc{bottom:362.706666pt;}
.y6f{bottom:365.826667pt;}
.ybc{bottom:375.586667pt;}
.y49{bottom:378.626667pt;}
.y6e{bottom:384.066667pt;}
.yf1{bottom:389.346667pt;}
.ye1{bottom:392.546667pt;}
.ya5{bottom:393.666667pt;}
.y48{bottom:396.706667pt;}
.y6d{bottom:402.306667pt;}
.ye0{bottom:410.786667pt;}
.ya4{bottom:411.906667pt;}
.y47{bottom:414.946667pt;}
.y6c{bottom:420.546667pt;}
.ydf{bottom:429.026667pt;}
.ya3{bottom:430.146667pt;}
.y46{bottom:433.186667pt;}
.y6b{bottom:438.626667pt;}
.yde{bottom:447.266667pt;}
.ya2{bottom:448.386667pt;}
.y6a{bottom:456.866667pt;}
.y45{bottom:460.706667pt;}
.yb{bottom:462.990669pt;}
.ydd{bottom:465.346667pt;}
.ya1{bottom:466.466667pt;}
.y69{bottom:475.106667pt;}
.y44{bottom:478.786667pt;}
.ya{bottom:478.990666pt;}
.ydc{bottom:483.586667pt;}
.ya0{bottom:484.706667pt;}
.y68{bottom:493.346667pt;}
.y9{bottom:494.990666pt;}
.y43{bottom:497.026667pt;}
.ydb{bottom:501.826667pt;}
.y9f{bottom:502.946667pt;}
.y67{bottom:511.453333pt;}
.y42{bottom:515.133333pt;}
.yda{bottom:520.093333pt;}
.y9e{bottom:521.213333pt;}
.y66{bottom:529.693333pt;}
.y41{bottom:533.373333pt;}
.yd8{bottom:538.173333pt;}
.y9d{bottom:539.293333pt;}
.yd9{bottom:543.453333pt;}
.y65{bottom:547.933333pt;}
.y40{bottom:551.613333pt;}
.yd7{bottom:556.413333pt;}
.y9c{bottom:557.533333pt;}
.y64{bottom:566.173333pt;}
.y3f{bottom:569.853333pt;}
.y8{bottom:573.786667pt;}
.yd5{bottom:574.653333pt;}
.y9a{bottom:575.773333pt;}
.yd6{bottom:579.933333pt;}
.y9b{bottom:581.053333pt;}
.y63{bottom:584.253333pt;}
.y3e{bottom:587.933333pt;}
.yf0{bottom:589.533333pt;}
.y7{bottom:592.685334pt;}
.yd4{bottom:592.893333pt;}
.y99{bottom:594.013333pt;}
.y62{bottom:602.493333pt;}
.y3d{bottom:606.173333pt;}
.yd3{bottom:610.973333pt;}
.y98{bottom:612.093333pt;}
.y61{bottom:620.733333pt;}
.y3c{bottom:624.413333pt;}
.yb8{bottom:626.013333pt;}
.yd2{bottom:629.213333pt;}
.y97{bottom:630.333333pt;}
.y60{bottom:638.973333pt;}
.y3b{bottom:642.653333pt;}
.y6{bottom:645.598667pt;}
.yd1{bottom:647.453333pt;}
.y96{bottom:648.573333pt;}
.y5f{bottom:657.053333pt;}
.y3a{bottom:660.733333pt;}
.yd0{bottom:665.693333pt;}
.y95{bottom:666.813333pt;}
.y3{bottom:668.977329pt;}
.y5e{bottom:675.293333pt;}
.y39{bottom:678.973333pt;}
.ye9{bottom:683.773333pt;}
.y94{bottom:684.893333pt;}
.ycf{bottom:692.413333pt;}
.y5d{bottom:693.533333pt;}
.y38{bottom:697.213333pt;}
.y93{bottom:703.133333pt;}
.y5c{bottom:711.773333pt;}
.y92{bottom:721.373333pt;}
.y37{bottom:723.933333pt;}
.y5b{bottom:729.853333pt;}
.y91{bottom:739.613333pt;}
.y36{bottom:743.293333pt;}
.y5a{bottom:748.093333pt;}
.y90{bottom:757.733333pt;}
.y35{bottom:761.413333pt;}
.y59{bottom:766.373333pt;}
.y8e{bottom:775.973333pt;}
.y34{bottom:780.293333pt;}
.y8f{bottom:781.253333pt;}
.y2{bottom:781.661334pt;}
.y58{bottom:784.613333pt;}
.y8d{bottom:794.213333pt;}
.y33{bottom:801.733333pt;}
.y57{bottom:802.693333pt;}
.y8c{bottom:812.453333pt;}
.yf5{bottom:817.733333pt;}
.y56{bottom:820.933333pt;}
.yb5{bottom:826.213333pt;}
.y32{bottom:828.133333pt;}
.y8b{bottom:830.533333pt;}
.y55{bottom:839.173333pt;}
.y89{bottom:848.773333pt;}
.y8a{bottom:854.053333pt;}
.y31{bottom:854.693333pt;}
.y54{bottom:857.413333pt;}
.y1{bottom:859.312000pt;}
.yb4{bottom:862.693333pt;}
.yef{bottom:865.893333pt;}
.y88{bottom:867.013333pt;}
.ye8{bottom:872.293333pt;}
.y53{bottom:875.493333pt;}
.y30{bottom:881.093333pt;}
.y87{bottom:885.253333pt;}
.y52{bottom:893.733333pt;}
.y29{bottom:901.093333pt;}
.y86{bottom:903.333333pt;}
.y51{bottom:911.973333pt;}
.y85{bottom:921.573333pt;}
.y50{bottom:930.213333pt;}
.yc8{bottom:938.693333pt;}
.y84{bottom:939.813333pt;}
.ye7{bottom:945.093333pt;}
.y4f{bottom:948.293333pt;}
.yb7{bottom:956.933333pt;}
.y83{bottom:958.053333pt;}
.y4e{bottom:966.533333pt;}
.y82{bottom:976.133333pt;}
.yf7{bottom:981.413333pt;}
.y4d{bottom:984.773333pt;}
.y81{bottom:994.373333pt;}
.y4c{bottom:1011.520000pt;}
.y80{bottom:1012.640000pt;}
.ybb{bottom:1017.920000pt;}
.y4a{bottom:1059.520000pt;}
.h7{height:28.560000pt;}
.h10{height:36.045000pt;}
.he{height:38.715000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:44.722500pt;}
.hf{height:46.811250pt;}
.h13{height:47.621250pt;}
.h2{height:48.960000pt;}
.h12{height:52.785000pt;}
.h11{height:55.402500pt;}
.hd{height:61.410000pt;}
.h9{height:66.750000pt;}
.h5{height:69.360000pt;}
.hc{height:88.777500pt;}
.h4{height:105.826671pt;}
.ha{height:125.472000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:217.306667pt;}
.w5{width:387.586667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.031988pt;}
.x9{left:120.031988pt;}
.xc{left:133.786655pt;}
.x10{left:138.586655pt;}
.x21{left:143.386655pt;}
.x4{left:180.874667pt;}
.x22{left:182.426643pt;}
.x18{left:188.186643pt;}
.x19{left:193.306655pt;}
.x2c{left:197.306643pt;}
.x11{left:202.906655pt;}
.x2d{left:207.546655pt;}
.x8{left:215.240000pt;}
.xa{left:217.626655pt;}
.x1e{left:220.986655pt;}
.x1f{left:324.386643pt;}
.x20{left:334.626655pt;}
.xf{left:336.066655pt;}
.x33{left:341.186643pt;}
.x27{left:343.106643pt;}
.x34{left:351.426655pt;}
.x28{left:353.346655pt;}
.x37{left:372.226643pt;}
.x38{left:382.466655pt;}
.xb{left:388.386655pt;}
.x3{left:404.408000pt;}
.xd{left:460.573310pt;}
.xe{left:465.693322pt;}
.x7{left:483.613333pt;}
.x1c{left:504.093310pt;}
.x1d{left:509.213322pt;}
.x16{left:511.773310pt;}
.x17{left:516.893322pt;}
.x35{left:518.173310pt;}
.x36{left:528.413322pt;}
.x2e{left:539.613310pt;}
.x14{left:549.853310pt;}
.x25{left:552.893310pt;}
.x15{left:554.973322pt;}
.x26{left:563.133322pt;}
.x29{left:578.173310pt;}
.x23{left:583.453310pt;}
.x2a{left:588.413322pt;}
.x24{left:593.693322pt;}
.x2f{left:600.093310pt;}
.x30{left:610.333322pt;}
.x31{left:670.533310pt;}
.x1a{left:671.653310pt;}
.x1b{left:676.773322pt;}
.x32{left:680.773322pt;}
.x2b{left:687.653310pt;}
.x12{left:692.773310pt;}
.x13{left:697.893322pt;}
}




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