
    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_2ea6822db769702e3e9ba36b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_d71c2ddc1501704931f82f73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057617;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_98ed12f28c4eb05673b21508.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_76cdb187ea90f7fbaa9824cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011230;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_5e552b4a21a7ebf9e5d011d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_c45227c3b7dcead1df0a07ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.950684;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_4ea3dfd4e373e73253aeba5c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_17e3b4843d9f134d41dd4184.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4af75d3f20f94989e59545a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;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:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.425400px;}
.ls9{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.153600px;}
.lsd{letter-spacing:-0.115800px;}
.ls12{letter-spacing:-0.069600px;}
.ls11{letter-spacing:-0.065400px;}
.ls8{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.064800px;}
.ls7{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.126000px;}
.ls10{letter-spacing:0.145200px;}
.lse{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:10.728000px;}
.ls0{letter-spacing:10.800000px;}
.ls2{letter-spacing:14.040000px;}
.ls5{letter-spacing:63.566640px;}
.ls14{letter-spacing:71.748000px;}
.ls15{letter-spacing:136.980000px;}
.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:-15.210000px;}
.ws9{word-spacing:-15.183600px;}
.wsb{word-spacing:-15.175200px;}
.ws6{word-spacing:-15.083280px;}
.ws2{word-spacing:-15.030000px;}
.wsc{word-spacing:-14.964600px;}
.wsd{word-spacing:-14.960400px;}
.ws7{word-spacing:-14.914200px;}
.ws5{word-spacing:-14.876400px;}
.wse{word-spacing:-14.604600px;}
.ws8{word-spacing:-13.536000px;}
.wsa{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-4.509000px;}
._18{margin-left:-3.448920px;}
._e{margin-left:-2.335560px;}
._3{margin-left:-1.249560px;}
._0{width:1.080000px;}
._d{width:2.344680px;}
._1{width:3.648000px;}
._9{width:4.788120px;}
._10{width:5.850120px;}
._b{width:7.131240px;}
._2{width:8.160000px;}
._a{width:9.543840px;}
._8{width:10.580160px;}
._13{width:11.734320px;}
._15{width:12.901200px;}
._16{width:13.926960px;}
._4{width:16.052040px;}
._5{width:17.109360px;}
._19{width:18.352080px;}
._7{width:19.440000px;}
._14{width:21.102120px;}
._17{width:22.681320px;}
._12{width:23.927760px;}
._1a{width:25.612200px;}
._c{width:27.054000px;}
._6{width:28.980000px;}
._11{width:30.240360px;}
._1b{width:31.442760px;}
._1c{width:41.663160px;}
._1d{width:49.719240px;}
._1f{width:137.010000px;}
._f{width:1504.252320px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y50{bottom:4.050000px;}
.y5a{bottom:4.140000px;}
.y89{bottom:22.230000px;}
.y4f{bottom:22.320000px;}
.y54{bottom:40.500000px;}
.y59{bottom:40.530000px;}
.y53{bottom:58.680000px;}
.y63{bottom:58.770000px;}
.y58{bottom:58.800000px;}
.y5{bottom:66.600000px;}
.y52{bottom:76.950000px;}
.y57{bottom:76.980000px;}
.y4{bottom:82.170000px;}
.y62{bottom:95.130000px;}
.y56{bottom:95.160000px;}
.y3{bottom:100.170000px;}
.y61{bottom:113.400000px;}
.y2d{bottom:118.170000px;}
.y82{bottom:120.330000px;}
.ya5{bottom:120.420000px;}
.y5b{bottom:125.280000px;}
.y60{bottom:131.580000px;}
.y2c{bottom:138.330000px;}
.y81{bottom:140.580000px;}
.yff{bottom:140.850000px;}
.y5f{bottom:149.880000px;}
.ye9{bottom:154.350000px;}
.yc7{bottom:156.600000px;}
.y80{bottom:160.830000px;}
.yfe{bottom:161.100000px;}
.y2b{bottom:167.580000px;}
.y5e{bottom:168.060000px;}
.ye8{bottom:174.600000px;}
.yc6{bottom:176.850000px;}
.y55{bottom:180.630000px;}
.y7f{bottom:181.080000px;}
.yfd{bottom:181.350000px;}
.ye7{bottom:194.850000px;}
.yc5{bottom:197.010000px;}
.y7e{bottom:201.330000px;}
.yfc{bottom:201.600000px;}
.y2a{bottom:205.830000px;}
.ye6{bottom:215.040000px;}
.y7d{bottom:221.520000px;}
.yfb{bottom:221.880000px;}
.y29{bottom:226.110000px;}
.yc4{bottom:226.290000px;}
.ya4{bottom:230.610000px;}
.y7c{bottom:241.770000px;}
.yfa{bottom:242.040000px;}
.ye5{bottom:244.290000px;}
.y28{bottom:246.360000px;}
.y7b{bottom:262.020000px;}
.yf9{bottom:262.290000px;}
.yc3{bottom:264.540000px;}
.y27{bottom:266.610000px;}
.ya3{bottom:268.860000px;}
.y7a{bottom:282.270000px;}
.ye4{bottom:282.540000px;}
.yc2{bottom:284.790000px;}
.ya2{bottom:289.110000px;}
.y51{bottom:290.730000px;}
.y26{bottom:295.770000px;}
.y79{bottom:302.520000px;}
.yf8{bottom:302.790000px;}
.yc1{bottom:305.040000px;}
.ya1{bottom:309.270000px;}
.ye3{bottom:320.790000px;}
.y78{bottom:322.770000px;}
.yf7{bottom:323.040000px;}
.yc0{bottom:325.290000px;}
.ya0{bottom:329.520000px;}
.y25{bottom:334.020000px;}
.ye2{bottom:341.040000px;}
.y77{bottom:342.930000px;}
.yf6{bottom:343.290000px;}
.ybf{bottom:345.540000px;}
.y9f{bottom:349.770000px;}
.y24{bottom:354.270000px;}
.ye1{bottom:361.290000px;}
.y76{bottom:363.180000px;}
.yf5{bottom:363.540000px;}
.ybe{bottom:365.700000px;}
.y9e{bottom:370.020000px;}
.ye0{bottom:381.540000px;}
.y4e{bottom:382.530000px;}
.y75{bottom:383.430000px;}
.y23{bottom:383.520000px;}
.yf4{bottom:383.700000px;}
.ybd{bottom:385.950000px;}
.y9d{bottom:399.270000px;}
.ydf{bottom:401.700000px;}
.ybc{bottom:406.200000px;}
.y74{bottom:412.680000px;}
.yf3{bottom:412.950000px;}
.y22{bottom:421.770000px;}
.yde{bottom:421.950000px;}
.ybb{bottom:426.450000px;}
.y4d{bottom:433.200000px;}
.y9c{bottom:437.520000px;}
.y21{bottom:442.020000px;}
.y73{bottom:450.930000px;}
.ydd{bottom:451.200000px;}
.yba{bottom:455.700000px;}
.y9b{bottom:457.770000px;}
.y20{bottom:462.270000px;}
.y72{bottom:471.180000px;}
.y4c{bottom:471.450000px;}
.y1f{bottom:482.520000px;}
.y9a{bottom:486.930000px;}
.ydc{bottom:489.450000px;}
.y71{bottom:491.430000px;}
.y4b{bottom:491.700000px;}
.yb9{bottom:493.950000px;}
.y1e{bottom:502.680000px;}
.ydb{bottom:509.700000px;}
.y118{bottom:509.790000px;}
.y70{bottom:511.590000px;}
.y4a{bottom:511.950000px;}
.yb8{bottom:514.110000px;}
.y1d{bottom:522.930000px;}
.y99{bottom:525.180000px;}
.yda{bottom:529.950000px;}
.y6f{bottom:531.840000px;}
.y49{bottom:532.110000px;}
.yb7{bottom:534.360000px;}
.y1c{bottom:543.180000px;}
.y98{bottom:545.430000px;}
.y117{bottom:547.320000px;}
.yd9{bottom:550.110000px;}
.y6e{bottom:552.090000px;}
.y48{bottom:552.360000px;}
.y1b{bottom:563.430000px;}
.yb6{bottom:563.610000px;}
.y97{bottom:565.680000px;}
.yd8{bottom:570.360000px;}
.y6d{bottom:572.340000px;}
.y47{bottom:572.610000px;}
.y116{bottom:584.760000px;}
.y96{bottom:585.930000px;}
.yd7{bottom:590.610000px;}
.y1a{bottom:592.680000px;}
.y46{bottom:592.860000px;}
.y6c{bottom:601.590000px;}
.yb5{bottom:601.860000px;}
.y115{bottom:605.640000px;}
.y95{bottom:606.180000px;}
.yd6{bottom:610.860000px;}
.y19{bottom:621.930000px;}
.y45{bottom:622.110000px;}
.y94{bottom:626.430000px;}
.y114{bottom:628.590000px;}
.yd5{bottom:631.110000px;}
.y6b{bottom:639.870000px;}
.yb4{bottom:642.390000px;}
.y18{bottom:644.820000px;}
.y93{bottom:646.620000px;}
.y113{bottom:648.150000px;}
.yd4{bottom:651.390000px;}
.y6a{bottom:660.120000px;}
.y44{bottom:660.390000px;}
.y17{bottom:665.070000px;}
.y92{bottom:666.870000px;}
.y112{bottom:667.590000px;}
.yb3{bottom:671.550000px;}
.yd3{bottom:671.640000px;}
.y69{bottom:680.280000px;}
.y43{bottom:680.640000px;}
.y16{bottom:685.230000px;}
.y111{bottom:687.120000px;}
.yd2{bottom:691.800000px;}
.y91{bottom:696.120000px;}
.yf2{bottom:698.640000px;}
.y68{bottom:700.530000px;}
.y42{bottom:700.800000px;}
.y15{bottom:705.480000px;}
.y110{bottom:706.650000px;}
.yb2{bottom:709.800000px;}
.yf1{bottom:718.800000px;}
.y41{bottom:721.050000px;}
.y14{bottom:725.730000px;}
.y10f{bottom:726.090000px;}
.y67{bottom:729.780000px;}
.yb1{bottom:730.050000px;}
.y90{bottom:734.370000px;}
.yf0{bottom:739.050000px;}
.y40{bottom:741.300000px;}
.y10e{bottom:745.620000px;}
.y13{bottom:745.980000px;}
.yb0{bottom:750.300000px;}
.y8f{bottom:754.620000px;}
.yd1{bottom:759.300000px;}
.y10d{bottom:765.150000px;}
.y66{bottom:768.030000px;}
.y3f{bottom:770.550000px;}
.y8e{bottom:774.870000px;}
.yd0{bottom:779.550000px;}
.y12{bottom:784.230000px;}
.y10c{bottom:784.590000px;}
.yaf{bottom:790.800000px;}
.y8d{bottom:795.030000px;}
.ycf{bottom:799.800000px;}
.y10b{bottom:804.120000px;}
.y11{bottom:804.480000px;}
.y65{bottom:806.280000px;}
.y3e{bottom:808.800000px;}
.yae{bottom:811.050000px;}
.y8c{bottom:815.280000px;}
.yce{bottom:820.050000px;}
.y64{bottom:822.750000px;}
.y10{bottom:824.730000px;}
.y3d{bottom:829.050000px;}
.y8b{bottom:831.840000px;}
.y10a{bottom:833.100000px;}
.yad{bottom:840.210000px;}
.ycd{bottom:840.300000px;}
.yef{bottom:849.210000px;}
.y3c{bottom:849.300000px;}
.ycc{bottom:860.460000px;}
.yf{bottom:864.150000px;}
.y8a{bottom:869.010000px;}
.y3b{bottom:869.460000px;}
.y109{bottom:870.900000px;}
.yac{bottom:878.460000px;}
.ycb{bottom:880.710000px;}
.ye{bottom:887.460000px;}
.y3a{bottom:889.710000px;}
.y108{bottom:898.080000px;}
.yab{bottom:898.710000px;}
.yca{bottom:900.960000px;}
.yd{bottom:905.550000px;}
.y88{bottom:906.180000px;}
.yee{bottom:907.710000px;}
.y39{bottom:909.960000px;}
.y5d{bottom:914.550000px;}
.yaa{bottom:918.960000px;}
.y107{bottom:925.710000px;}
.yc{bottom:927.240000px;}
.yed{bottom:927.960000px;}
.y38{bottom:930.210000px;}
.ya9{bottom:939.210000px;}
.y106{bottom:945.960000px;}
.yec{bottom:948.210000px;}
.y37{bottom:950.460000px;}
.ya8{bottom:959.460000px;}
.y87{bottom:961.530000px;}
.y105{bottom:966.210000px;}
.yb{bottom:967.110000px;}
.yc9{bottom:968.460000px;}
.y36{bottom:979.710000px;}
.y104{bottom:986.460000px;}
.yc8{bottom:988.710000px;}
.ya{bottom:994.110000px;}
.y86{bottom:998.700000px;}
.ya7{bottom:999.960000px;}
.y103{bottom:1006.710000px;}
.yeb{bottom:1008.960000px;}
.y35{bottom:1017.870000px;}
.ya6{bottom:1020.120000px;}
.y9{bottom:1021.110000px;}
.y102{bottom:1026.960000px;}
.yea{bottom:1038.120000px;}
.y101{bottom:1047.120000px;}
.y8{bottom:1048.110000px;}
.y85{bottom:1049.370000px;}
.y34{bottom:1056.150000px;}
.y100{bottom:1067.400000px;}
.y33{bottom:1076.400000px;}
.y84{bottom:1087.650000px;}
.y7{bottom:1091.790000px;}
.y32{bottom:1096.650000px;}
.y5c{bottom:1097.460000px;}
.y83{bottom:1107.900000px;}
.y6{bottom:1113.570000px;}
.y31{bottom:1116.900000px;}
.y30{bottom:1137.150000px;}
.y2{bottom:1151.370000px;}
.y2f{bottom:1156.500000px;}
.y1{bottom:1172.160000px;}
.y2e{bottom:1173.780000px;}
.h9{height:25.614141px;}
.hf{height:34.951465px;}
.h18{height:36.360000px;}
.h10{height:36.450000px;}
.ha{height:37.494141px;}
.h14{height:39.418945px;}
.h19{height:39.577148px;}
.h13{height:39.761719px;}
.h4{height:41.159180px;}
.h8{height:41.451328px;}
.h11{height:41.897461px;}
.hd{height:43.886426px;}
.h5{height:44.062559px;}
.hc{height:44.268047px;}
.h6{height:48.509297px;}
.hb{height:49.992188px;}
.h1a{height:52.558594px;}
.h2{height:52.769531px;}
.h16{height:54.630000px;}
.he{height:54.878906px;}
.h3{height:55.863281px;}
.h7{height:65.096895px;}
.h12{height:91.080000px;}
.h15{height:109.290000px;}
.h17{height:182.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:96.330000px;}
.w7{width:138.270000px;}
.w6{width:147.900000px;}
.w4{width:193.770000px;}
.w5{width:225.300000px;}
.w8{width:225.840000px;}
.w9{width:299.280000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x3{left:114.839987px;}
.xb{left:123.299987px;}
.xc{left:146.699987px;}
.x5{left:159.689987px;}
.xd{left:173.729987px;}
.x9{left:198.119987px;}
.xe{left:200.729987px;}
.x4{left:202.889987px;}
.x10{left:211.170000px;}
.x15{left:231.779987px;}
.x1{left:248.789987px;}
.x13{left:253.110000px;}
.x6{left:263.099987px;}
.x7{left:272.009987px;}
.xa{left:345.719987px;}
.x8{left:365.519987px;}
.x11{left:404.940000px;}
.x14{left:478.950000px;}
.x2{left:620.339987px;}
.x12{left:630.330000px;}
@media print{
.v2{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.378133pt;}
.ls9{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.136533pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls12{letter-spacing:-0.061867pt;}
.ls11{letter-spacing:-0.058133pt;}
.ls8{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.057600pt;}
.ls7{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.112000pt;}
.ls10{letter-spacing:0.129067pt;}
.lse{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:9.536000pt;}
.ls0{letter-spacing:9.600000pt;}
.ls2{letter-spacing:12.480000pt;}
.ls5{letter-spacing:56.503680pt;}
.ls14{letter-spacing:63.776000pt;}
.ls15{letter-spacing:121.760000pt;}
.ws3{word-spacing:-13.520000pt;}
.ws9{word-spacing:-13.496533pt;}
.wsb{word-spacing:-13.489067pt;}
.ws6{word-spacing:-13.407360pt;}
.ws2{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.301867pt;}
.wsd{word-spacing:-13.298133pt;}
.ws7{word-spacing:-13.257067pt;}
.ws5{word-spacing:-13.223467pt;}
.wse{word-spacing:-12.981867pt;}
.ws8{word-spacing:-12.032000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-4.008000pt;}
._18{margin-left:-3.065707pt;}
._e{margin-left:-2.076053pt;}
._3{margin-left:-1.110720pt;}
._0{width:0.960000pt;}
._d{width:2.084160pt;}
._1{width:3.242667pt;}
._9{width:4.256107pt;}
._10{width:5.200107pt;}
._b{width:6.338880pt;}
._2{width:7.253333pt;}
._a{width:8.483413pt;}
._8{width:9.404587pt;}
._13{width:10.430507pt;}
._15{width:11.467733pt;}
._16{width:12.379520pt;}
._4{width:14.268480pt;}
._5{width:15.208320pt;}
._19{width:16.312960pt;}
._7{width:17.280000pt;}
._14{width:18.757440pt;}
._17{width:20.161173pt;}
._12{width:21.269120pt;}
._1a{width:22.766400pt;}
._c{width:24.048000pt;}
._6{width:25.760000pt;}
._11{width:26.880320pt;}
._1b{width:27.949120pt;}
._1c{width:37.033920pt;}
._1d{width:44.194880pt;}
._1f{width:121.786667pt;}
._f{width:1337.113173pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:3.600000pt;}
.y5a{bottom:3.680000pt;}
.y89{bottom:19.760000pt;}
.y4f{bottom:19.840000pt;}
.y54{bottom:36.000000pt;}
.y59{bottom:36.026667pt;}
.y53{bottom:52.160000pt;}
.y63{bottom:52.240000pt;}
.y58{bottom:52.266667pt;}
.y5{bottom:59.200000pt;}
.y52{bottom:68.400000pt;}
.y57{bottom:68.426667pt;}
.y4{bottom:73.040000pt;}
.y62{bottom:84.560000pt;}
.y56{bottom:84.586667pt;}
.y3{bottom:89.040000pt;}
.y61{bottom:100.800000pt;}
.y2d{bottom:105.040000pt;}
.y82{bottom:106.960000pt;}
.ya5{bottom:107.040000pt;}
.y5b{bottom:111.360000pt;}
.y60{bottom:116.960000pt;}
.y2c{bottom:122.960000pt;}
.y81{bottom:124.960000pt;}
.yff{bottom:125.200000pt;}
.y5f{bottom:133.226667pt;}
.ye9{bottom:137.200000pt;}
.yc7{bottom:139.200000pt;}
.y80{bottom:142.960000pt;}
.yfe{bottom:143.200000pt;}
.y2b{bottom:148.960000pt;}
.y5e{bottom:149.386667pt;}
.ye8{bottom:155.200000pt;}
.yc6{bottom:157.200000pt;}
.y55{bottom:160.560000pt;}
.y7f{bottom:160.960000pt;}
.yfd{bottom:161.200000pt;}
.ye7{bottom:173.200000pt;}
.yc5{bottom:175.120000pt;}
.y7e{bottom:178.960000pt;}
.yfc{bottom:179.200000pt;}
.y2a{bottom:182.960000pt;}
.ye6{bottom:191.146667pt;}
.y7d{bottom:196.906667pt;}
.yfb{bottom:197.226667pt;}
.y29{bottom:200.986667pt;}
.yc4{bottom:201.146667pt;}
.ya4{bottom:204.986667pt;}
.y7c{bottom:214.906667pt;}
.yfa{bottom:215.146667pt;}
.ye5{bottom:217.146667pt;}
.y28{bottom:218.986667pt;}
.y7b{bottom:232.906667pt;}
.yf9{bottom:233.146667pt;}
.yc3{bottom:235.146667pt;}
.y27{bottom:236.986667pt;}
.ya3{bottom:238.986667pt;}
.y7a{bottom:250.906667pt;}
.ye4{bottom:251.146667pt;}
.yc2{bottom:253.146667pt;}
.ya2{bottom:256.986667pt;}
.y51{bottom:258.426667pt;}
.y26{bottom:262.906667pt;}
.y79{bottom:268.906667pt;}
.yf8{bottom:269.146667pt;}
.yc1{bottom:271.146667pt;}
.ya1{bottom:274.906667pt;}
.ye3{bottom:285.146667pt;}
.y78{bottom:286.906667pt;}
.yf7{bottom:287.146667pt;}
.yc0{bottom:289.146667pt;}
.ya0{bottom:292.906667pt;}
.y25{bottom:296.906667pt;}
.ye2{bottom:303.146667pt;}
.y77{bottom:304.826667pt;}
.yf6{bottom:305.146667pt;}
.ybf{bottom:307.146667pt;}
.y9f{bottom:310.906667pt;}
.y24{bottom:314.906667pt;}
.ye1{bottom:321.146667pt;}
.y76{bottom:322.826667pt;}
.yf5{bottom:323.146667pt;}
.ybe{bottom:325.066667pt;}
.y9e{bottom:328.906667pt;}
.ye0{bottom:339.146667pt;}
.y4e{bottom:340.026667pt;}
.y75{bottom:340.826667pt;}
.y23{bottom:340.906667pt;}
.yf4{bottom:341.066667pt;}
.ybd{bottom:343.066667pt;}
.y9d{bottom:354.906667pt;}
.ydf{bottom:357.066667pt;}
.ybc{bottom:361.066667pt;}
.y74{bottom:366.826667pt;}
.yf3{bottom:367.066667pt;}
.y22{bottom:374.906667pt;}
.yde{bottom:375.066667pt;}
.ybb{bottom:379.066667pt;}
.y4d{bottom:385.066667pt;}
.y9c{bottom:388.906667pt;}
.y21{bottom:392.906667pt;}
.y73{bottom:400.826667pt;}
.ydd{bottom:401.066667pt;}
.yba{bottom:405.066667pt;}
.y9b{bottom:406.906667pt;}
.y20{bottom:410.906667pt;}
.y72{bottom:418.826667pt;}
.y4c{bottom:419.066667pt;}
.y1f{bottom:428.906667pt;}
.y9a{bottom:432.826667pt;}
.ydc{bottom:435.066667pt;}
.y71{bottom:436.826667pt;}
.y4b{bottom:437.066667pt;}
.yb9{bottom:439.066667pt;}
.y1e{bottom:446.826667pt;}
.ydb{bottom:453.066667pt;}
.y118{bottom:453.146667pt;}
.y70{bottom:454.746667pt;}
.y4a{bottom:455.066667pt;}
.yb8{bottom:456.986667pt;}
.y1d{bottom:464.826667pt;}
.y99{bottom:466.826667pt;}
.yda{bottom:471.066667pt;}
.y6f{bottom:472.746667pt;}
.y49{bottom:472.986667pt;}
.yb7{bottom:474.986667pt;}
.y1c{bottom:482.826667pt;}
.y98{bottom:484.826667pt;}
.y117{bottom:486.506667pt;}
.yd9{bottom:488.986667pt;}
.y6e{bottom:490.746667pt;}
.y48{bottom:490.986667pt;}
.y1b{bottom:500.826667pt;}
.yb6{bottom:500.986667pt;}
.y97{bottom:502.826667pt;}
.yd8{bottom:506.986667pt;}
.y6d{bottom:508.746667pt;}
.y47{bottom:508.986667pt;}
.y116{bottom:519.786667pt;}
.y96{bottom:520.826667pt;}
.yd7{bottom:524.986667pt;}
.y1a{bottom:526.826667pt;}
.y46{bottom:526.986667pt;}
.y6c{bottom:534.746667pt;}
.yb5{bottom:534.986667pt;}
.y115{bottom:538.346667pt;}
.y95{bottom:538.826667pt;}
.yd6{bottom:542.986667pt;}
.y19{bottom:552.826667pt;}
.y45{bottom:552.986667pt;}
.y94{bottom:556.826667pt;}
.y114{bottom:558.746667pt;}
.yd5{bottom:560.986667pt;}
.y6b{bottom:568.773333pt;}
.yb4{bottom:571.013333pt;}
.y18{bottom:573.173333pt;}
.y93{bottom:574.773333pt;}
.y113{bottom:576.133333pt;}
.yd4{bottom:579.013333pt;}
.y6a{bottom:586.773333pt;}
.y44{bottom:587.013333pt;}
.y17{bottom:591.173333pt;}
.y92{bottom:592.773333pt;}
.y112{bottom:593.413333pt;}
.yb3{bottom:596.933333pt;}
.yd3{bottom:597.013333pt;}
.y69{bottom:604.693333pt;}
.y43{bottom:605.013333pt;}
.y16{bottom:609.093333pt;}
.y111{bottom:610.773333pt;}
.yd2{bottom:614.933333pt;}
.y91{bottom:618.773333pt;}
.yf2{bottom:621.013333pt;}
.y68{bottom:622.693333pt;}
.y42{bottom:622.933333pt;}
.y15{bottom:627.093333pt;}
.y110{bottom:628.133333pt;}
.yb2{bottom:630.933333pt;}
.yf1{bottom:638.933333pt;}
.y41{bottom:640.933333pt;}
.y14{bottom:645.093333pt;}
.y10f{bottom:645.413333pt;}
.y67{bottom:648.693333pt;}
.yb1{bottom:648.933333pt;}
.y90{bottom:652.773333pt;}
.yf0{bottom:656.933333pt;}
.y40{bottom:658.933333pt;}
.y10e{bottom:662.773333pt;}
.y13{bottom:663.093333pt;}
.yb0{bottom:666.933333pt;}
.y8f{bottom:670.773333pt;}
.yd1{bottom:674.933333pt;}
.y10d{bottom:680.133333pt;}
.y66{bottom:682.693333pt;}
.y3f{bottom:684.933333pt;}
.y8e{bottom:688.773333pt;}
.yd0{bottom:692.933333pt;}
.y12{bottom:697.093333pt;}
.y10c{bottom:697.413333pt;}
.yaf{bottom:702.933333pt;}
.y8d{bottom:706.693333pt;}
.ycf{bottom:710.933333pt;}
.y10b{bottom:714.773333pt;}
.y11{bottom:715.093333pt;}
.y65{bottom:716.693333pt;}
.y3e{bottom:718.933333pt;}
.yae{bottom:720.933333pt;}
.y8c{bottom:724.693333pt;}
.yce{bottom:728.933333pt;}
.y64{bottom:731.333333pt;}
.y10{bottom:733.093333pt;}
.y3d{bottom:736.933333pt;}
.y8b{bottom:739.413333pt;}
.y10a{bottom:740.533333pt;}
.yad{bottom:746.853333pt;}
.ycd{bottom:746.933333pt;}
.yef{bottom:754.853333pt;}
.y3c{bottom:754.933333pt;}
.ycc{bottom:764.853333pt;}
.yf{bottom:768.133333pt;}
.y8a{bottom:772.453333pt;}
.y3b{bottom:772.853333pt;}
.y109{bottom:774.133333pt;}
.yac{bottom:780.853333pt;}
.ycb{bottom:782.853333pt;}
.ye{bottom:788.853333pt;}
.y3a{bottom:790.853333pt;}
.y108{bottom:798.293333pt;}
.yab{bottom:798.853333pt;}
.yca{bottom:800.853333pt;}
.yd{bottom:804.933333pt;}
.y88{bottom:805.493333pt;}
.yee{bottom:806.853333pt;}
.y39{bottom:808.853333pt;}
.y5d{bottom:812.933333pt;}
.yaa{bottom:816.853333pt;}
.y107{bottom:822.853333pt;}
.yc{bottom:824.213333pt;}
.yed{bottom:824.853333pt;}
.y38{bottom:826.853333pt;}
.ya9{bottom:834.853333pt;}
.y106{bottom:840.853333pt;}
.yec{bottom:842.853333pt;}
.y37{bottom:844.853333pt;}
.ya8{bottom:852.853333pt;}
.y87{bottom:854.693333pt;}
.y105{bottom:858.853333pt;}
.yb{bottom:859.653333pt;}
.yc9{bottom:860.853333pt;}
.y36{bottom:870.853333pt;}
.y104{bottom:876.853333pt;}
.yc8{bottom:878.853333pt;}
.ya{bottom:883.653333pt;}
.y86{bottom:887.733333pt;}
.ya7{bottom:888.853333pt;}
.y103{bottom:894.853333pt;}
.yeb{bottom:896.853333pt;}
.y35{bottom:904.773333pt;}
.ya6{bottom:906.773333pt;}
.y9{bottom:907.653333pt;}
.y102{bottom:912.853333pt;}
.yea{bottom:922.773333pt;}
.y101{bottom:930.773333pt;}
.y8{bottom:931.653333pt;}
.y85{bottom:932.773333pt;}
.y34{bottom:938.800000pt;}
.y100{bottom:948.800000pt;}
.y33{bottom:956.800000pt;}
.y84{bottom:966.800000pt;}
.y7{bottom:970.480000pt;}
.y32{bottom:974.800000pt;}
.y5c{bottom:975.520000pt;}
.y83{bottom:984.800000pt;}
.y6{bottom:989.840000pt;}
.y31{bottom:992.800000pt;}
.y30{bottom:1010.800000pt;}
.y2{bottom:1023.440000pt;}
.y2f{bottom:1028.000000pt;}
.y1{bottom:1041.920000pt;}
.y2e{bottom:1043.360000pt;}
.h9{height:22.768125pt;}
.hf{height:31.067969pt;}
.h18{height:32.320000pt;}
.h10{height:32.400000pt;}
.ha{height:33.328125pt;}
.h14{height:35.039062pt;}
.h19{height:35.179688pt;}
.h13{height:35.343750pt;}
.h4{height:36.585938pt;}
.h8{height:36.845625pt;}
.h11{height:37.242188pt;}
.hd{height:39.010156pt;}
.h5{height:39.166719pt;}
.hc{height:39.349375pt;}
.h6{height:43.119375pt;}
.hb{height:44.437500pt;}
.h1a{height:46.718750pt;}
.h2{height:46.906250pt;}
.h16{height:48.560000pt;}
.he{height:48.781250pt;}
.h3{height:49.656250pt;}
.h7{height:57.863906pt;}
.h12{height:80.960000pt;}
.h15{height:97.146667pt;}
.h17{height:161.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:85.626667pt;}
.w7{width:122.906667pt;}
.w6{width:131.466667pt;}
.w4{width:172.240000pt;}
.w5{width:200.266667pt;}
.w8{width:200.746667pt;}
.w9{width:266.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x3{left:102.079988pt;}
.xb{left:109.599988pt;}
.xc{left:130.399988pt;}
.x5{left:141.946655pt;}
.xd{left:154.426655pt;}
.x9{left:176.106655pt;}
.xe{left:178.426655pt;}
.x4{left:180.346655pt;}
.x10{left:187.706667pt;}
.x15{left:206.026655pt;}
.x1{left:221.146655pt;}
.x13{left:224.986667pt;}
.x6{left:233.866655pt;}
.x7{left:241.786655pt;}
.xa{left:307.306655pt;}
.x8{left:324.906655pt;}
.x11{left:359.946667pt;}
.x14{left:425.733333pt;}
.x2{left:551.413322pt;}
.x12{left:560.293333pt;}
}




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