
    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_e6e443817b334c02c2d1d951.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_49e9c6e4c089664b730c672b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_ed06e92d6af78cf6887ef8c0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_07810f23f2cf1fc3273ea05e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a01adb5aaf3541525c909c79.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_42aa342ad08c90ff070d7ae9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_2810c249935ec5ff72334364.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5e12c89fe34a4969c2c7bc9c.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.155400px;}
.ls9{letter-spacing:0.720000px;}
.ls6{letter-spacing:28.224000px;}
.ls2{letter-spacing:54.840000px;}
.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;}
}
.ws6{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.352000px;}
.ws7{word-spacing:-16.119240px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-8.064000px;}
._1f{margin-left:-6.120000px;}
._e{margin-left:-4.392000px;}
._f{margin-left:-3.354960px;}
._13{margin-left:-2.338560px;}
._1{margin-left:-1.263600px;}
._0{width:1.738560px;}
._6{width:2.952000px;}
._7{width:4.032000px;}
._8{width:5.198400px;}
._d{width:7.056000px;}
._14{width:8.059200px;}
._15{width:9.121200px;}
._10{width:10.318800px;}
._9{width:11.568000px;}
._a{width:12.770880px;}
._b{width:13.965120px;}
._16{width:14.978160px;}
._5{width:16.596240px;}
._c{width:19.944000px;}
._18{width:20.964000px;}
._2{width:22.104000px;}
._17{width:23.112000px;}
._11{width:24.984000px;}
._12{width:26.064000px;}
._1b{width:27.968400px;}
._19{width:29.304000px;}
._1a{width:30.495600px;}
._1c{width:31.511280px;}
._4{width:32.760000px;}
._3{width:34.383600px;}
._1d{width:35.856000px;}
._1e{width:36.864000px;}
._21{width:50.184000px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,72,126);}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:34.920000px;}
.ya{bottom:39.240000px;}
.y66{bottom:62.820000px;}
.y102{bottom:69.660000px;}
.ydd{bottom:70.920000px;}
.y159{bottom:73.620000px;}
.ya3{bottom:74.520000px;}
.y37{bottom:75.060000px;}
.y65{bottom:83.520000px;}
.y101{bottom:90.360000px;}
.ydc{bottom:91.620000px;}
.y144{bottom:92.520000px;}
.y158{bottom:94.320000px;}
.y86{bottom:95.220000px;}
.y36{bottom:95.760000px;}
.y138{bottom:103.680000px;}
.y64{bottom:104.220000px;}
.ydb{bottom:112.320000px;}
.y143{bottom:113.220000px;}
.y85{bottom:115.920000px;}
.y35{bottom:116.460000px;}
.y11e{bottom:117.360000px;}
.y100{bottom:119.700000px;}
.y157{bottom:124.020000px;}
.y137{bottom:124.380000px;}
.y63{bottom:124.920000px;}
.yda{bottom:133.020000px;}
.y142{bottom:133.920000px;}
.ybc{bottom:136.260000px;}
.y84{bottom:136.620000px;}
.y34{bottom:137.160000px;}
.y11d{bottom:138.060000px;}
.y156{bottom:144.720000px;}
.y136{bottom:145.080000px;}
.y62{bottom:145.620000px;}
.yd9{bottom:153.720000px;}
.y141{bottom:154.620000px;}
.yff{bottom:155.880000px;}
.ybb{bottom:156.960000px;}
.y83{bottom:157.320000px;}
.y33{bottom:157.860000px;}
.y11c{bottom:158.760000px;}
.y155{bottom:165.420000px;}
.y135{bottom:165.780000px;}
.y61{bottom:175.320000px;}
.yfe{bottom:176.580000px;}
.yba{bottom:177.660000px;}
.y82{bottom:178.020000px;}
.y32{bottom:178.560000px;}
.y11b{bottom:179.460000px;}
.yd8{bottom:183.420000px;}
.y134{bottom:186.480000px;}
.ya2{bottom:187.020000px;}
.y154{bottom:195.120000px;}
.y60{bottom:196.020000px;}
.yfd{bottom:197.100000px;}
.yb9{bottom:198.360000px;}
.y31{bottom:199.260000px;}
.yd7{bottom:204.120000px;}
.y81{bottom:207.720000px;}
.y153{bottom:215.820000px;}
.y133{bottom:216.180000px;}
.y5f{bottom:216.720000px;}
.yfc{bottom:217.800000px;}
.y11a{bottom:218.160000px;}
.yb8{bottom:219.060000px;}
.y30{bottom:219.960000px;}
.yd6{bottom:224.850000px;}
.ya1{bottom:228.450000px;}
.y132{bottom:236.910000px;}
.y5e{bottom:237.450000px;}
.y119{bottom:238.890000px;}
.yb7{bottom:239.790000px;}
.y2f{bottom:240.690000px;}
.yd5{bottom:245.550000px;}
.ya0{bottom:249.150000px;}
.yfb{bottom:256.530000px;}
.y131{bottom:257.610000px;}
.y5d{bottom:258.150000px;}
.y118{bottom:259.590000px;}
.yb6{bottom:260.490000px;}
.y2e{bottom:261.390000px;}
.yd4{bottom:266.250000px;}
.y9f{bottom:269.850000px;}
.yfa{bottom:277.230000px;}
.y130{bottom:278.130000px;}
.y5c{bottom:278.850000px;}
.y117{bottom:280.290000px;}
.yb5{bottom:281.190000px;}
.y2d{bottom:282.090000px;}
.yd3{bottom:286.950000px;}
.y9e{bottom:290.550000px;}
.yf9{bottom:297.930000px;}
.y12f{bottom:298.830000px;}
.y5b{bottom:299.550000px;}
.y116{bottom:300.990000px;}
.yb4{bottom:301.890000px;}
.y2c{bottom:302.790000px;}
.y9d{bottom:311.250000px;}
.yd2{bottom:316.110000px;}
.y152{bottom:316.650000px;}
.yf8{bottom:318.630000px;}
.y12e{bottom:319.530000px;}
.y5a{bottom:320.250000px;}
.y115{bottom:321.690000px;}
.yb3{bottom:322.590000px;}
.y2b{bottom:323.490000px;}
.y9c{bottom:331.950000px;}
.y151{bottom:337.350000px;}
.y12d{bottom:340.230000px;}
.y59{bottom:340.950000px;}
.y114{bottom:342.390000px;}
.yb2{bottom:343.290000px;}
.y2a{bottom:344.190000px;}
.yd1{bottom:352.290000px;}
.y9b{bottom:352.650000px;}
.yf7{bottom:357.330000px;}
.y58{bottom:361.650000px;}
.y113{bottom:363.090000px;}
.yb1{bottom:363.990000px;}
.y29{bottom:364.890000px;}
.y150{bottom:367.050000px;}
.y12c{bottom:369.930000px;}
.yd0{bottom:372.990000px;}
.y9a{bottom:373.350000px;}
.y57{bottom:382.350000px;}
.yb0{bottom:384.690000px;}
.yf6{bottom:386.670000px;}
.y14f{bottom:387.750000px;}
.y12b{bottom:390.630000px;}
.y80{bottom:391.350000px;}
.y112{bottom:392.790000px;}
.ycf{bottom:393.690000px;}
.y99{bottom:394.050000px;}
.y28{bottom:394.230000px;}
.y56{bottom:403.050000px;}
.yaf{bottom:405.390000px;}
.y12a{bottom:411.330000px;}
.y111{bottom:413.490000px;}
.y14e{bottom:417.450000px;}
.y7f{bottom:421.050000px;}
.yce{bottom:422.850000px;}
.y55{bottom:423.750000px;}
.yae{bottom:426.090000px;}
.y129{bottom:432.030000px;}
.y27{bottom:433.290000px;}
.y110{bottom:434.190000px;}
.y14d{bottom:438.150000px;}
.y7e{bottom:441.750000px;}
.yf5{bottom:443.550000px;}
.y54{bottom:444.450000px;}
.yad{bottom:446.790000px;}
.y128{bottom:452.730000px;}
.y26{bottom:453.990000px;}
.y14c{bottom:458.895000px;}
.ycd{bottom:459.075000px;}
.y7d{bottom:462.495000px;}
.y10f{bottom:463.395000px;}
.yf4{bottom:464.295000px;}
.y53{bottom:465.195000px;}
.yac{bottom:475.995000px;}
.ycc{bottom:479.775000px;}
.y127{bottom:482.475000px;}
.y7c{bottom:483.195000px;}
.y52{bottom:485.895000px;}
.y14b{bottom:488.595000px;}
.y25{bottom:492.735000px;}
.yf3{bottom:493.455000px;}
.y10e{bottom:499.575000px;}
.ycb{bottom:500.475000px;}
.y126{bottom:503.175000px;}
.y7b{bottom:503.895000px;}
.y51{bottom:506.595000px;}
.y14a{bottom:509.295000px;}
.yab{bottom:512.175000px;}
.y24{bottom:513.435000px;}
.y10d{bottom:520.275000px;}
.yca{bottom:521.175000px;}
.y125{bottom:523.875000px;}
.y7a{bottom:524.595000px;}
.y50{bottom:527.295000px;}
.yf2{bottom:529.635000px;}
.y149{bottom:529.995000px;}
.yaa{bottom:532.875000px;}
.y23{bottom:534.135000px;}
.y10c{bottom:540.975000px;}
.yc9{bottom:541.875000px;}
.y124{bottom:544.575000px;}
.y79{bottom:545.295000px;}
.y4f{bottom:547.995000px;}
.yf1{bottom:550.335000px;}
.ya9{bottom:553.575000px;}
.y22{bottom:554.835000px;}
.y148{bottom:559.695000px;}
.yc8{bottom:562.575000px;}
.y123{bottom:565.275000px;}
.y78{bottom:565.995000px;}
.y4e{bottom:568.695000px;}
.y10b{bottom:570.315000px;}
.yf0{bottom:571.035000px;}
.ya8{bottom:574.275000px;}
.y21{bottom:575.535000px;}
.y147{bottom:580.395000px;}
.yc7{bottom:583.275000px;}
.y122{bottom:585.975000px;}
.y77{bottom:586.695000px;}
.y4d{bottom:589.395000px;}
.yef{bottom:591.735000px;}
.y20{bottom:596.235000px;}
.ya7{bottom:603.615000px;}
.yc6{bottom:603.975000px;}
.y10a{bottom:605.955000px;}
.y76{bottom:607.395000px;}
.y146{bottom:609.735000px;}
.y4c{bottom:610.095000px;}
.yee{bottom:612.435000px;}
.y121{bottom:615.675000px;}
.y1f{bottom:616.935000px;}
.yc5{bottom:624.675000px;}
.y75{bottom:628.095000px;}
.y98{bottom:630.795000px;}
.yed{bottom:633.135000px;}
.y120{bottom:636.375000px;}
.y1e{bottom:637.635000px;}
.y4b{bottom:639.435000px;}
.ya6{bottom:639.795000px;}
.y109{bottom:641.595000px;}
.yc4{bottom:645.375000px;}
.y97{bottom:651.495000px;}
.yec{bottom:653.835000px;}
.y74{bottom:657.795000px;}
.y1d{bottom:658.335000px;}
.ya5{bottom:660.495000px;}
.y11f{bottom:665.715000px;}
.y4a{bottom:669.495000px;}
.y140{bottom:672.195000px;}
.yc3{bottom:674.715000px;}
.y108{bottom:677.775000px;}
.y73{bottom:678.495000px;}
.y1c{bottom:679.035000px;}
.y96{bottom:681.195000px;}
.yeb{bottom:682.995000px;}
.y49{bottom:690.225000px;}
.y13f{bottom:692.925000px;}
.y107{bottom:698.505000px;}
.y72{bottom:699.225000px;}
.y95{bottom:701.925000px;}
.y1b{bottom:708.405000px;}
.ya4{bottom:710.565000px;}
.y48{bottom:710.925000px;}
.y13e{bottom:713.625000px;}
.y15f{bottom:716.325000px;}
.yea{bottom:719.205000px;}
.y71{bottom:719.925000px;}
.y94{bottom:722.625000px;}
.y1a{bottom:729.105000px;}
.y47{bottom:731.625000px;}
.y13d{bottom:734.325000px;}
.ye9{bottom:739.905000px;}
.y70{bottom:740.625000px;}
.y93{bottom:743.325000px;}
.y15e{bottom:746.025000px;}
.y19{bottom:749.805000px;}
.y46{bottom:752.325000px;}
.y13c{bottom:755.025000px;}
.ye8{bottom:760.605000px;}
.y6f{bottom:761.325000px;}
.y92{bottom:764.025000px;}
.y15d{bottom:766.725000px;}
.y106{bottom:769.605000px;}
.y18{bottom:770.505000px;}
.y45{bottom:773.025000px;}
.y13b{bottom:775.725000px;}
.ye7{bottom:781.305000px;}
.y6e{bottom:782.025000px;}
.y91{bottom:784.725000px;}
.y15c{bottom:787.425000px;}
.y105{bottom:790.305000px;}
.y17{bottom:791.205000px;}
.y44{bottom:793.725000px;}
.y13a{bottom:796.425000px;}
.y6d{bottom:802.725000px;}
.y90{bottom:805.425000px;}
.ye6{bottom:811.005000px;}
.y16{bottom:811.905000px;}
.y43{bottom:814.425000px;}
.y15b{bottom:817.125000px;}
.y6c{bottom:823.425000px;}
.y8f{bottom:826.125000px;}
.ye5{bottom:831.705000px;}
.y15{bottom:832.605000px;}
.y42{bottom:835.125000px;}
.y15a{bottom:837.825000px;}
.y6b{bottom:844.125000px;}
.y139{bottom:846.465000px;}
.y8e{bottom:846.825000px;}
.ye4{bottom:852.405000px;}
.y14{bottom:853.305000px;}
.y41{bottom:855.825000px;}
.y6a{bottom:864.825000px;}
.y8d{bottom:867.525000px;}
.ye3{bottom:873.105000px;}
.y13{bottom:874.005000px;}
.y145{bottom:876.165000px;}
.y40{bottom:876.525000px;}
.y104{bottom:882.105000px;}
.y69{bottom:885.525000px;}
.y8c{bottom:888.225000px;}
.y12{bottom:894.705000px;}
.y3f{bottom:897.225000px;}
.ye2{bottom:902.805000px;}
.y68{bottom:906.225000px;}
.y8b{bottom:908.925000px;}
.y11{bottom:915.405000px;}
.y3e{bottom:917.925000px;}
.ye1{bottom:923.550000px;}
.y67{bottom:926.970000px;}
.y8a{bottom:929.670000px;}
.y10{bottom:936.150000px;}
.yc2{bottom:938.670000px;}
.ye0{bottom:944.250000px;}
.y3d{bottom:947.670000px;}
.y89{bottom:950.370000px;}
.yf{bottom:956.850000px;}
.yc1{bottom:959.370000px;}
.ydf{bottom:964.950000px;}
.y3c{bottom:968.370000px;}
.y88{bottom:971.070000px;}
.y103{bottom:973.590000px;}
.ye{bottom:977.550000px;}
.yc0{bottom:980.070000px;}
.y3b{bottom:989.070000px;}
.yde{bottom:994.290000px;}
.y87{bottom:1000.410000px;}
.ybf{bottom:1000.770000px;}
.yd{bottom:1008.330000px;}
.y3a{bottom:1009.770000px;}
.ybe{bottom:1021.470000px;}
.y39{bottom:1030.470000px;}
.yc{bottom:1035.870000px;}
.ybd{bottom:1050.630000px;}
.y38{bottom:1050.990000px;}
.y9{bottom:1088.070000px;}
.y8{bottom:1093.650000px;}
.y7{bottom:1116.150000px;}
.y6{bottom:1133.250000px;}
.y5{bottom:1150.350000px;}
.y4{bottom:1167.300000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1207.620000px;}
.y1{bottom:1238.580000px;}
.h5{height:45.170156px;}
.h7{height:50.068125px;}
.hc{height:50.273438px;}
.h4{height:54.421875px;}
.h6{height:63.673594px;}
.hd{height:70.628906px;}
.ha{height:70.664062px;}
.h9{height:72.562500px;}
.hb{height:74.004654px;}
.h3{height:81.632812px;}
.h8{height:96.508125px;}
.h2{height:105.996094px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x1{left:126.036000px;}
.x4{left:138.276000px;}
.x9{left:146.376000px;}
.x7{left:153.030000px;}
.x8{left:180.030000px;}
.x5{left:182.910000px;}
.x6{left:434.775000px;}
.x2{left:436.215000px;}
.x3{left:449.025000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.138133pt;}
.ls9{letter-spacing:0.640000pt;}
.ls6{letter-spacing:25.088000pt;}
.ls2{letter-spacing:48.746667pt;}
.ws6{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.424000pt;}
.ws7{word-spacing:-14.328213pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-7.168000pt;}
._1f{margin-left:-5.440000pt;}
._e{margin-left:-3.904000pt;}
._f{margin-left:-2.982187pt;}
._13{margin-left:-2.078720pt;}
._1{margin-left:-1.123200pt;}
._0{width:1.545387pt;}
._6{width:2.624000pt;}
._7{width:3.584000pt;}
._8{width:4.620800pt;}
._d{width:6.272000pt;}
._14{width:7.163733pt;}
._15{width:8.107733pt;}
._10{width:9.172267pt;}
._9{width:10.282667pt;}
._a{width:11.351893pt;}
._b{width:12.413440pt;}
._16{width:13.313920pt;}
._5{width:14.752213pt;}
._c{width:17.728000pt;}
._18{width:18.634667pt;}
._2{width:19.648000pt;}
._17{width:20.544000pt;}
._11{width:22.208000pt;}
._12{width:23.168000pt;}
._1b{width:24.860800pt;}
._19{width:26.048000pt;}
._1a{width:27.107200pt;}
._1c{width:28.010027pt;}
._4{width:29.120000pt;}
._3{width:30.563200pt;}
._1d{width:31.872000pt;}
._1e{width:32.768000pt;}
._21{width:44.608000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:31.040000pt;}
.ya{bottom:34.880000pt;}
.y66{bottom:55.840000pt;}
.y102{bottom:61.920000pt;}
.ydd{bottom:63.040000pt;}
.y159{bottom:65.440000pt;}
.ya3{bottom:66.240000pt;}
.y37{bottom:66.720000pt;}
.y65{bottom:74.240000pt;}
.y101{bottom:80.320000pt;}
.ydc{bottom:81.440000pt;}
.y144{bottom:82.240000pt;}
.y158{bottom:83.840000pt;}
.y86{bottom:84.640000pt;}
.y36{bottom:85.120000pt;}
.y138{bottom:92.160000pt;}
.y64{bottom:92.640000pt;}
.ydb{bottom:99.840000pt;}
.y143{bottom:100.640000pt;}
.y85{bottom:103.040000pt;}
.y35{bottom:103.520000pt;}
.y11e{bottom:104.320000pt;}
.y100{bottom:106.400000pt;}
.y157{bottom:110.240000pt;}
.y137{bottom:110.560000pt;}
.y63{bottom:111.040000pt;}
.yda{bottom:118.240000pt;}
.y142{bottom:119.040000pt;}
.ybc{bottom:121.120000pt;}
.y84{bottom:121.440000pt;}
.y34{bottom:121.920000pt;}
.y11d{bottom:122.720000pt;}
.y156{bottom:128.640000pt;}
.y136{bottom:128.960000pt;}
.y62{bottom:129.440000pt;}
.yd9{bottom:136.640000pt;}
.y141{bottom:137.440000pt;}
.yff{bottom:138.560000pt;}
.ybb{bottom:139.520000pt;}
.y83{bottom:139.840000pt;}
.y33{bottom:140.320000pt;}
.y11c{bottom:141.120000pt;}
.y155{bottom:147.040000pt;}
.y135{bottom:147.360000pt;}
.y61{bottom:155.840000pt;}
.yfe{bottom:156.960000pt;}
.yba{bottom:157.920000pt;}
.y82{bottom:158.240000pt;}
.y32{bottom:158.720000pt;}
.y11b{bottom:159.520000pt;}
.yd8{bottom:163.040000pt;}
.y134{bottom:165.760000pt;}
.ya2{bottom:166.240000pt;}
.y154{bottom:173.440000pt;}
.y60{bottom:174.240000pt;}
.yfd{bottom:175.200000pt;}
.yb9{bottom:176.320000pt;}
.y31{bottom:177.120000pt;}
.yd7{bottom:181.440000pt;}
.y81{bottom:184.640000pt;}
.y153{bottom:191.840000pt;}
.y133{bottom:192.160000pt;}
.y5f{bottom:192.640000pt;}
.yfc{bottom:193.600000pt;}
.y11a{bottom:193.920000pt;}
.yb8{bottom:194.720000pt;}
.y30{bottom:195.520000pt;}
.yd6{bottom:199.866667pt;}
.ya1{bottom:203.066667pt;}
.y132{bottom:210.586667pt;}
.y5e{bottom:211.066667pt;}
.y119{bottom:212.346667pt;}
.yb7{bottom:213.146667pt;}
.y2f{bottom:213.946667pt;}
.yd5{bottom:218.266667pt;}
.ya0{bottom:221.466667pt;}
.yfb{bottom:228.026667pt;}
.y131{bottom:228.986667pt;}
.y5d{bottom:229.466667pt;}
.y118{bottom:230.746667pt;}
.yb6{bottom:231.546667pt;}
.y2e{bottom:232.346667pt;}
.yd4{bottom:236.666667pt;}
.y9f{bottom:239.866667pt;}
.yfa{bottom:246.426667pt;}
.y130{bottom:247.226667pt;}
.y5c{bottom:247.866667pt;}
.y117{bottom:249.146667pt;}
.yb5{bottom:249.946667pt;}
.y2d{bottom:250.746667pt;}
.yd3{bottom:255.066667pt;}
.y9e{bottom:258.266667pt;}
.yf9{bottom:264.826667pt;}
.y12f{bottom:265.626667pt;}
.y5b{bottom:266.266667pt;}
.y116{bottom:267.546667pt;}
.yb4{bottom:268.346667pt;}
.y2c{bottom:269.146667pt;}
.y9d{bottom:276.666667pt;}
.yd2{bottom:280.986667pt;}
.y152{bottom:281.466667pt;}
.yf8{bottom:283.226667pt;}
.y12e{bottom:284.026667pt;}
.y5a{bottom:284.666667pt;}
.y115{bottom:285.946667pt;}
.yb3{bottom:286.746667pt;}
.y2b{bottom:287.546667pt;}
.y9c{bottom:295.066667pt;}
.y151{bottom:299.866667pt;}
.y12d{bottom:302.426667pt;}
.y59{bottom:303.066667pt;}
.y114{bottom:304.346667pt;}
.yb2{bottom:305.146667pt;}
.y2a{bottom:305.946667pt;}
.yd1{bottom:313.146667pt;}
.y9b{bottom:313.466667pt;}
.yf7{bottom:317.626667pt;}
.y58{bottom:321.466667pt;}
.y113{bottom:322.746667pt;}
.yb1{bottom:323.546667pt;}
.y29{bottom:324.346667pt;}
.y150{bottom:326.266667pt;}
.y12c{bottom:328.826667pt;}
.yd0{bottom:331.546667pt;}
.y9a{bottom:331.866667pt;}
.y57{bottom:339.866667pt;}
.yb0{bottom:341.946667pt;}
.yf6{bottom:343.706667pt;}
.y14f{bottom:344.666667pt;}
.y12b{bottom:347.226667pt;}
.y80{bottom:347.866667pt;}
.y112{bottom:349.146667pt;}
.ycf{bottom:349.946667pt;}
.y99{bottom:350.266667pt;}
.y28{bottom:350.426667pt;}
.y56{bottom:358.266667pt;}
.yaf{bottom:360.346667pt;}
.y12a{bottom:365.626667pt;}
.y111{bottom:367.546667pt;}
.y14e{bottom:371.066667pt;}
.y7f{bottom:374.266667pt;}
.yce{bottom:375.866667pt;}
.y55{bottom:376.666667pt;}
.yae{bottom:378.746667pt;}
.y129{bottom:384.026667pt;}
.y27{bottom:385.146667pt;}
.y110{bottom:385.946667pt;}
.y14d{bottom:389.466667pt;}
.y7e{bottom:392.666667pt;}
.yf5{bottom:394.266667pt;}
.y54{bottom:395.066667pt;}
.yad{bottom:397.146667pt;}
.y128{bottom:402.426667pt;}
.y26{bottom:403.546667pt;}
.y14c{bottom:407.906667pt;}
.ycd{bottom:408.066667pt;}
.y7d{bottom:411.106667pt;}
.y10f{bottom:411.906667pt;}
.yf4{bottom:412.706667pt;}
.y53{bottom:413.506667pt;}
.yac{bottom:423.106667pt;}
.ycc{bottom:426.466667pt;}
.y127{bottom:428.866667pt;}
.y7c{bottom:429.506667pt;}
.y52{bottom:431.906667pt;}
.y14b{bottom:434.306667pt;}
.y25{bottom:437.986667pt;}
.yf3{bottom:438.626667pt;}
.y10e{bottom:444.066667pt;}
.ycb{bottom:444.866667pt;}
.y126{bottom:447.266667pt;}
.y7b{bottom:447.906667pt;}
.y51{bottom:450.306667pt;}
.y14a{bottom:452.706667pt;}
.yab{bottom:455.266667pt;}
.y24{bottom:456.386667pt;}
.y10d{bottom:462.466667pt;}
.yca{bottom:463.266667pt;}
.y125{bottom:465.666667pt;}
.y7a{bottom:466.306667pt;}
.y50{bottom:468.706667pt;}
.yf2{bottom:470.786667pt;}
.y149{bottom:471.106667pt;}
.yaa{bottom:473.666667pt;}
.y23{bottom:474.786667pt;}
.y10c{bottom:480.866667pt;}
.yc9{bottom:481.666667pt;}
.y124{bottom:484.066667pt;}
.y79{bottom:484.706667pt;}
.y4f{bottom:487.106667pt;}
.yf1{bottom:489.186667pt;}
.ya9{bottom:492.066667pt;}
.y22{bottom:493.186667pt;}
.y148{bottom:497.506667pt;}
.yc8{bottom:500.066667pt;}
.y123{bottom:502.466667pt;}
.y78{bottom:503.106667pt;}
.y4e{bottom:505.506667pt;}
.y10b{bottom:506.946667pt;}
.yf0{bottom:507.586667pt;}
.ya8{bottom:510.466667pt;}
.y21{bottom:511.586667pt;}
.y147{bottom:515.906667pt;}
.yc7{bottom:518.466667pt;}
.y122{bottom:520.866667pt;}
.y77{bottom:521.506667pt;}
.y4d{bottom:523.906667pt;}
.yef{bottom:525.986667pt;}
.y20{bottom:529.986667pt;}
.ya7{bottom:536.546667pt;}
.yc6{bottom:536.866667pt;}
.y10a{bottom:538.626667pt;}
.y76{bottom:539.906667pt;}
.y146{bottom:541.986667pt;}
.y4c{bottom:542.306667pt;}
.yee{bottom:544.386667pt;}
.y121{bottom:547.266667pt;}
.y1f{bottom:548.386667pt;}
.yc5{bottom:555.266667pt;}
.y75{bottom:558.306667pt;}
.y98{bottom:560.706667pt;}
.yed{bottom:562.786667pt;}
.y120{bottom:565.666667pt;}
.y1e{bottom:566.786667pt;}
.y4b{bottom:568.386667pt;}
.ya6{bottom:568.706667pt;}
.y109{bottom:570.306667pt;}
.yc4{bottom:573.666667pt;}
.y97{bottom:579.106667pt;}
.yec{bottom:581.186667pt;}
.y74{bottom:584.706667pt;}
.y1d{bottom:585.186667pt;}
.ya5{bottom:587.106667pt;}
.y11f{bottom:591.746667pt;}
.y4a{bottom:595.106667pt;}
.y140{bottom:597.506667pt;}
.yc3{bottom:599.746667pt;}
.y108{bottom:602.466667pt;}
.y73{bottom:603.106667pt;}
.y1c{bottom:603.586667pt;}
.y96{bottom:605.506667pt;}
.yeb{bottom:607.106667pt;}
.y49{bottom:613.533333pt;}
.y13f{bottom:615.933333pt;}
.y107{bottom:620.893333pt;}
.y72{bottom:621.533333pt;}
.y95{bottom:623.933333pt;}
.y1b{bottom:629.693333pt;}
.ya4{bottom:631.613333pt;}
.y48{bottom:631.933333pt;}
.y13e{bottom:634.333333pt;}
.y15f{bottom:636.733333pt;}
.yea{bottom:639.293333pt;}
.y71{bottom:639.933333pt;}
.y94{bottom:642.333333pt;}
.y1a{bottom:648.093333pt;}
.y47{bottom:650.333333pt;}
.y13d{bottom:652.733333pt;}
.ye9{bottom:657.693333pt;}
.y70{bottom:658.333333pt;}
.y93{bottom:660.733333pt;}
.y15e{bottom:663.133333pt;}
.y19{bottom:666.493333pt;}
.y46{bottom:668.733333pt;}
.y13c{bottom:671.133333pt;}
.ye8{bottom:676.093333pt;}
.y6f{bottom:676.733333pt;}
.y92{bottom:679.133333pt;}
.y15d{bottom:681.533333pt;}
.y106{bottom:684.093333pt;}
.y18{bottom:684.893333pt;}
.y45{bottom:687.133333pt;}
.y13b{bottom:689.533333pt;}
.ye7{bottom:694.493333pt;}
.y6e{bottom:695.133333pt;}
.y91{bottom:697.533333pt;}
.y15c{bottom:699.933333pt;}
.y105{bottom:702.493333pt;}
.y17{bottom:703.293333pt;}
.y44{bottom:705.533333pt;}
.y13a{bottom:707.933333pt;}
.y6d{bottom:713.533333pt;}
.y90{bottom:715.933333pt;}
.ye6{bottom:720.893333pt;}
.y16{bottom:721.693333pt;}
.y43{bottom:723.933333pt;}
.y15b{bottom:726.333333pt;}
.y6c{bottom:731.933333pt;}
.y8f{bottom:734.333333pt;}
.ye5{bottom:739.293333pt;}
.y15{bottom:740.093333pt;}
.y42{bottom:742.333333pt;}
.y15a{bottom:744.733333pt;}
.y6b{bottom:750.333333pt;}
.y139{bottom:752.413333pt;}
.y8e{bottom:752.733333pt;}
.ye4{bottom:757.693333pt;}
.y14{bottom:758.493333pt;}
.y41{bottom:760.733333pt;}
.y6a{bottom:768.733333pt;}
.y8d{bottom:771.133333pt;}
.ye3{bottom:776.093333pt;}
.y13{bottom:776.893333pt;}
.y145{bottom:778.813333pt;}
.y40{bottom:779.133333pt;}
.y104{bottom:784.093333pt;}
.y69{bottom:787.133333pt;}
.y8c{bottom:789.533333pt;}
.y12{bottom:795.293333pt;}
.y3f{bottom:797.533333pt;}
.ye2{bottom:802.493333pt;}
.y68{bottom:805.533333pt;}
.y8b{bottom:807.933333pt;}
.y11{bottom:813.693333pt;}
.y3e{bottom:815.933333pt;}
.ye1{bottom:820.933333pt;}
.y67{bottom:823.973333pt;}
.y8a{bottom:826.373333pt;}
.y10{bottom:832.133333pt;}
.yc2{bottom:834.373333pt;}
.ye0{bottom:839.333333pt;}
.y3d{bottom:842.373333pt;}
.y89{bottom:844.773333pt;}
.yf{bottom:850.533333pt;}
.yc1{bottom:852.773333pt;}
.ydf{bottom:857.733333pt;}
.y3c{bottom:860.773333pt;}
.y88{bottom:863.173333pt;}
.y103{bottom:865.413333pt;}
.ye{bottom:868.933333pt;}
.yc0{bottom:871.173333pt;}
.y3b{bottom:879.173333pt;}
.yde{bottom:883.813333pt;}
.y87{bottom:889.253333pt;}
.ybf{bottom:889.573333pt;}
.yd{bottom:896.293333pt;}
.y3a{bottom:897.573333pt;}
.ybe{bottom:907.973333pt;}
.y39{bottom:915.973333pt;}
.yc{bottom:920.773333pt;}
.ybd{bottom:933.893333pt;}
.y38{bottom:934.213333pt;}
.y9{bottom:967.173333pt;}
.y8{bottom:972.133333pt;}
.y7{bottom:992.133333pt;}
.y6{bottom:1007.333333pt;}
.y5{bottom:1022.533333pt;}
.y4{bottom:1037.600000pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1073.440000pt;}
.y1{bottom:1100.960000pt;}
.h5{height:40.151250pt;}
.h7{height:44.505000pt;}
.hc{height:44.687500pt;}
.h4{height:48.375000pt;}
.h6{height:56.598750pt;}
.hd{height:62.781250pt;}
.ha{height:62.812500pt;}
.h9{height:64.500000pt;}
.hb{height:65.781915pt;}
.h3{height:72.562500pt;}
.h8{height:85.785000pt;}
.h2{height:94.218750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1{left:112.032000pt;}
.x4{left:122.912000pt;}
.x9{left:130.112000pt;}
.x7{left:136.026667pt;}
.x8{left:160.026667pt;}
.x5{left:162.586667pt;}
.x6{left:386.466667pt;}
.x2{left:387.746667pt;}
.x3{left:399.133333pt;}
}




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