
    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_d4f76f8dad3f0bc98f978613.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_d567a6a4b754ade1a0b274e9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1147a3daef6c604d0c9573e4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b60ba5946c5d64cc54ac5d3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.330078;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_65d1d6d4815228e224d87a53.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.801000;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_ca650717ce5ea4f1803ae667.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.352051;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_85db40613bb354544ea9f001.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_1c95f12154ac035b56a4e06c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;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: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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_277f0775012b65504ba5435f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2a7e372c907bd34484f8500d.woff2')format("woff");}.fff{font-family:fff;line-height:0.694336;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-6.480000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.480000px;}
.v1{vertical-align:18.000000px;}
.ls18{letter-spacing:-1.230000px;}
.lsb{letter-spacing:-0.726000px;}
.lse{letter-spacing:-0.630000px;}
.ls25{letter-spacing:-0.530400px;}
.lsa{letter-spacing:-0.269400px;}
.ls16{letter-spacing:-0.223200px;}
.ls24{letter-spacing:-0.056160px;}
.lsc{letter-spacing:-0.007920px;}
.ls9{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.024480px;}
.ls17{letter-spacing:0.033120px;}
.ls1{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.066240px;}
.ls1d{letter-spacing:0.093000px;}
.ls21{letter-spacing:0.103680px;}
.ls1f{letter-spacing:0.119520px;}
.ls10{letter-spacing:0.136080px;}
.ls3{letter-spacing:0.149760px;}
.ls1c{letter-spacing:0.172080px;}
.ls0{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.185760px;}
.ls22{letter-spacing:0.189360px;}
.ls20{letter-spacing:0.189600px;}
.lsd{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.509040px;}
.ls1b{letter-spacing:0.823680px;}
.ls19{letter-spacing:1.080000px;}
.ls13{letter-spacing:7.920000px;}
.ls14{letter-spacing:9.360000px;}
.ls23{letter-spacing:13.626720px;}
.ls7{letter-spacing:20.255040px;}
.ls6{letter-spacing:37.386720px;}
.ls1e{letter-spacing:46.026720px;}
.ls12{letter-spacing:54.385920px;}
.ls15{letter-spacing:54.529920px;}
.ls1a{letter-spacing:64.026720px;}
.ls5{letter-spacing:1055.100000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-59.760000px;}
.wse{word-spacing:-17.487360px;}
.ws13{word-spacing:-16.563840px;}
.ws7{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.526880px;}
.wsa{word-spacing:-16.493760px;}
.ws12{word-spacing:-16.467240px;}
.wsb{word-spacing:-16.398720px;}
.ws4{word-spacing:-16.374240px;}
.wsf{word-spacing:-16.151040px;}
.ws14{word-spacing:-15.843840px;}
.ws1{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.144240px;}
.ws0{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.796000px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.wsc{word-spacing:0.000000px;}
.wsd{word-spacing:3.705120px;}
._9{margin-left:-35.064000px;}
._15{margin-left:-20.610720px;}
._d{margin-left:-19.466640px;}
._17{margin-left:-17.820000px;}
._20{margin-left:-10.763280px;}
._21{margin-left:-9.271440px;}
._22{margin-left:-7.818480px;}
._1b{margin-left:-6.277680px;}
._b{margin-left:-5.076000px;}
._14{margin-left:-4.046400px;}
._7{margin-left:-2.916000px;}
._4{margin-left:-1.440000px;}
._0{width:1.135440px;}
._8{width:2.808000px;}
._f{width:3.950640px;}
._c{width:4.968000px;}
._12{width:6.573600px;}
._11{width:8.272080px;}
._10{width:9.447840px;}
._13{width:10.784160px;}
._1e{width:11.935440px;}
._16{width:13.500000px;}
._1c{width:14.820480px;}
._18{width:17.928000px;}
._1f{width:19.046160px;}
._e{width:20.079360px;}
._1d{width:21.610800px;}
._23{width:23.252400px;}
._25{width:25.098480px;}
._24{width:26.593200px;}
._a{width:35.208000px;}
._5{width:51.300000px;}
._19{width:69.262560px;}
._2{width:93.180000px;}
._1a{width:152.268480px;}
._3{width:201.060000px;}
._1{width:736.821120px;}
._6{width:1108.947360px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:23.760000px;}
.fs3{font-size:30.240000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsa{font-size:62.991941px;}
.fsb{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:113.840857px;}
.fs6{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yd4{bottom:2.514000px;}
.y6{bottom:2.520000px;}
.y32{bottom:3.240000px;}
.y15{bottom:4.140000px;}
.y2d{bottom:6.120000px;}
.y2b{bottom:6.660000px;}
.y16{bottom:7.920000px;}
.y4{bottom:9.396000px;}
.y9{bottom:14.040000px;}
.yd3{bottom:16.194000px;}
.y5{bottom:16.776000px;}
.y31{bottom:20.520000px;}
.y2a{bottom:23.940000px;}
.yd2{bottom:30.054000px;}
.y7{bottom:35.460000px;}
.y30{bottom:37.980000px;}
.y22{bottom:41.040000px;}
.y29{bottom:41.220000px;}
.yd1{bottom:43.914000px;}
.y2f{bottom:55.980000px;}
.y3{bottom:58.140000px;}
.y28{bottom:58.530000px;}
.y21{bottom:61.020000px;}
.y2e{bottom:74.160000px;}
.y27{bottom:75.810000px;}
.y20{bottom:81.000000px;}
.y26{bottom:92.910000px;}
.y1f{bottom:100.980000px;}
.y25{bottom:110.190000px;}
.y72{bottom:112.716000px;}
.yae{bottom:119.376000px;}
.y1e{bottom:120.780000px;}
.y41{bottom:122.796000px;}
.y24{bottom:127.470000px;}
.yab{bottom:128.736000px;}
.y7b{bottom:131.976000px;}
.y71{bottom:132.696000px;}
.yad{bottom:136.656000px;}
.y1d{bottom:140.760000px;}
.y40{bottom:142.776000px;}
.yd0{bottom:148.536000px;}
.yaa{bottom:148.716000px;}
.y7a{bottom:151.950000px;}
.y70{bottom:152.670000px;}
.y1c{bottom:160.740000px;}
.y3f{bottom:162.750000px;}
.ya9{bottom:168.510000px;}
.y79{bottom:171.750000px;}
.y6f{bottom:172.650000px;}
.y1b{bottom:180.750000px;}
.y3e{bottom:182.730000px;}
.ya8{bottom:188.490000px;}
.y78{bottom:191.730000px;}
.y6e{bottom:192.630000px;}
.y1a{bottom:200.730000px;}
.y3d{bottom:202.710000px;}
.ycf{bottom:204.330000px;}
.ya7{bottom:208.470000px;}
.y77{bottom:211.710000px;}
.y6d{bottom:212.610000px;}
.y19{bottom:220.710000px;}
.y3c{bottom:222.510000px;}
.ya6{bottom:228.450000px;}
.y76{bottom:231.690000px;}
.y6c{bottom:232.410000px;}
.yac{bottom:237.630000px;}
.y18{bottom:240.510000px;}
.y3b{bottom:242.490000px;}
.ya5{bottom:248.430000px;}
.y75{bottom:251.670000px;}
.y6b{bottom:252.390000px;}
.y3a{bottom:262.470000px;}
.ya4{bottom:268.410000px;}
.y74{bottom:271.650000px;}
.y6a{bottom:272.370000px;}
.y39{bottom:282.450000px;}
.ya3{bottom:288.210000px;}
.y73{bottom:291.630000px;}
.y69{bottom:292.350000px;}
.y38{bottom:302.430000px;}
.ya2{bottom:308.190000px;}
.y68{bottom:312.330000px;}
.y37{bottom:322.455000px;}
.ya1{bottom:328.215000px;}
.y67{bottom:332.355000px;}
.y36{bottom:342.255000px;}
.ya0{bottom:348.195000px;}
.y66{bottom:352.155000px;}
.y35{bottom:361.695000px;}
.y9f{bottom:368.175000px;}
.y65{bottom:372.135000px;}
.y34{bottom:379.515000px;}
.y9e{bottom:388.155000px;}
.y64{bottom:392.115000px;}
.y33{bottom:396.975000px;}
.y17{bottom:403.275000px;}
.y9d{bottom:407.955000px;}
.y63{bottom:412.095000px;}
.y9c{bottom:427.935000px;}
.y62{bottom:432.075000px;}
.y9b{bottom:447.915000px;}
.y61{bottom:452.055000px;}
.y9a{bottom:467.895000px;}
.y60{bottom:471.855000px;}
.y99{bottom:487.875000px;}
.y5f{bottom:491.835000px;}
.y2c{bottom:493.455000px;}
.y98{bottom:507.855000px;}
.y5e{bottom:511.815000px;}
.y23{bottom:514.335000px;}
.y97{bottom:527.835000px;}
.y5d{bottom:531.795000px;}
.y96{bottom:547.635000px;}
.y5c{bottom:551.775000px;}
.yce{bottom:555.195000px;}
.y95{bottom:567.615000px;}
.y5b{bottom:571.785000px;}
.ycd{bottom:572.505000px;}
.y94{bottom:587.625000px;}
.ycc{bottom:589.785000px;}
.y5a{bottom:591.765000px;}
.ycb{bottom:607.425000px;}
.y93{bottom:607.605000px;}
.y59{bottom:611.565000px;}
.yca{bottom:623.085000px;}
.y92{bottom:627.585000px;}
.y58{bottom:631.545000px;}
.yc9{bottom:638.925000px;}
.y91{bottom:647.565000px;}
.y57{bottom:651.525000px;}
.yc8{bottom:654.585000px;}
.y14{bottom:656.565000px;}
.y90{bottom:667.545000px;}
.yc7{bottom:670.425000px;}
.y56{bottom:671.505000px;}
.yc6{bottom:686.085000px;}
.y8f{bottom:688.245000px;}
.y55{bottom:691.485000px;}
.y13{bottom:696.525000px;}
.yc5{bottom:701.745000px;}
.y8e{bottom:708.225000px;}
.y54{bottom:711.465000px;}
.y12{bottom:714.165000px;}
.yc4{bottom:717.585000px;}
.y11{bottom:725.505000px;}
.y8d{bottom:728.025000px;}
.y53{bottom:731.265000px;}
.yc3{bottom:733.245000px;}
.y8c{bottom:748.005000px;}
.yc2{bottom:749.085000px;}
.y52{bottom:751.245000px;}
.y10{bottom:754.485000px;}
.yc1{bottom:764.745000px;}
.y8b{bottom:767.985000px;}
.y51{bottom:771.225000px;}
.yf{bottom:774.825000px;}
.yc0{bottom:780.405000px;}
.y8a{bottom:788.685000px;}
.y50{bottom:791.205000px;}
.ybf{bottom:796.245000px;}
.ye{bottom:798.405000px;}
.y89{bottom:808.665000px;}
.y4f{bottom:811.185000px;}
.ybe{bottom:811.905000px;}
.ybd{bottom:827.790000px;}
.y88{bottom:828.690000px;}
.yd{bottom:830.490000px;}
.y4e{bottom:831.210000px;}
.ybc{bottom:843.450000px;}
.y87{bottom:848.670000px;}
.y4d{bottom:851.010000px;}
.ybb{bottom:859.290000px;}
.yc{bottom:866.490000px;}
.y86{bottom:868.650000px;}
.y4c{bottom:870.990000px;}
.yba{bottom:874.950000px;}
.y85{bottom:889.350000px;}
.yb9{bottom:890.610000px;}
.y4b{bottom:890.970000px;}
.yb{bottom:901.410000px;}
.yb8{bottom:906.450000px;}
.y84{bottom:909.330000px;}
.y4a{bottom:910.950000px;}
.yb7{bottom:922.110000px;}
.y83{bottom:929.310000px;}
.ya{bottom:930.210000px;}
.y49{bottom:930.930000px;}
.yb6{bottom:937.950000px;}
.y8{bottom:945.510000px;}
.y82{bottom:949.290000px;}
.y48{bottom:950.910000px;}
.yb5{bottom:953.610000px;}
.y81{bottom:969.090000px;}
.y47{bottom:970.710000px;}
.yb4{bottom:971.970000px;}
.y80{bottom:989.250000px;}
.y46{bottom:990.690000px;}
.yb3{bottom:1006.530000px;}
.y7f{bottom:1009.950000px;}
.y45{bottom:1010.670000px;}
.yb2{bottom:1023.810000px;}
.y7e{bottom:1029.750000px;}
.y44{bottom:1030.650000px;}
.yb1{bottom:1041.090000px;}
.y7d{bottom:1049.730000px;}
.y43{bottom:1050.630000px;}
.yb0{bottom:1058.370000px;}
.y7c{bottom:1069.710000px;}
.y42{bottom:1070.640000px;}
.yaf{bottom:1075.680000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1e{height:13.860000px;}
.h10{height:16.764258px;}
.h17{height:19.980000px;}
.h11{height:21.960000px;}
.h3{height:29.736000px;}
.h21{height:33.683203px;}
.h1f{height:34.036523px;}
.h6{height:39.336328px;}
.h1d{height:40.851562px;}
.h4{height:41.726953px;}
.h12{height:42.164648px;}
.h1b{height:44.236406px;}
.h16{height:44.265586px;}
.h1c{height:44.878359px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h1a{height:46.628800px;}
.h14{height:47.867760px;}
.h1{height:50.800781px;}
.h5{height:52.055859px;}
.h20{height:55.080000px;}
.h19{height:58.271484px;}
.he{height:64.487109px;}
.h9{height:65.884219px;}
.hd{height:71.479687px;}
.hf{height:75.410156px;}
.ha{height:76.201172px;}
.hc{height:84.268916px;}
.h18{height:89.460000px;}
.hb{height:116.542969px;}
.h15{height:141.516000px;}
.h7{height:153.930000px;}
.h13{height:252.570000px;}
.h0{height:1188.000000px;}
.w2{width:38.196000px;}
.w6{width:252.255000px;}
.w7{width:360.435000px;}
.w5{width:556.485000px;}
.w3{width:769.110000px;}
.w4{width:821.880000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:3.420000px;}
.x11{left:6.660000px;}
.x4{left:8.640000px;}
.x10{left:20.160000px;}
.x2{left:53.999986px;}
.x1{left:60.659986px;}
.x8{left:65.159986px;}
.x3{left:69.300000px;}
.x18{left:86.940000px;}
.x15{left:88.199986px;}
.x19{left:93.450000px;}
.x5{left:108.576000px;}
.xd{left:201.269986px;}
.xc{left:407.954986px;}
.x9{left:423.254986px;}
.x7{left:459.074986px;}
.xb{left:464.294986px;}
.xe{left:475.994986px;}
.x12{left:478.334986px;}
.x14{left:479.804986px;}
.x13{left:484.124986px;}
.x16{left:506.804986px;}
.xa{left:512.744986px;}
.x17{left:526.604986px;}
.xf{left:618.765000px;}
.x6{left:812.490000px;}
@media print{
.v2{vertical-align:-5.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.760000pt;}
.v1{vertical-align:16.000000pt;}
.ls18{letter-spacing:-1.093333pt;}
.lsb{letter-spacing:-0.645333pt;}
.lse{letter-spacing:-0.560000pt;}
.ls25{letter-spacing:-0.471467pt;}
.lsa{letter-spacing:-0.239467pt;}
.ls16{letter-spacing:-0.198400pt;}
.ls24{letter-spacing:-0.049920pt;}
.lsc{letter-spacing:-0.007040pt;}
.ls9{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.021760pt;}
.ls17{letter-spacing:0.029440pt;}
.ls1{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.058880pt;}
.ls1d{letter-spacing:0.082667pt;}
.ls21{letter-spacing:0.092160pt;}
.ls1f{letter-spacing:0.106240pt;}
.ls10{letter-spacing:0.120960pt;}
.ls3{letter-spacing:0.133120pt;}
.ls1c{letter-spacing:0.152960pt;}
.ls0{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.165120pt;}
.ls22{letter-spacing:0.168320pt;}
.ls20{letter-spacing:0.168533pt;}
.lsd{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.452480pt;}
.ls1b{letter-spacing:0.732160pt;}
.ls19{letter-spacing:0.960000pt;}
.ls13{letter-spacing:7.040000pt;}
.ls14{letter-spacing:8.320000pt;}
.ls23{letter-spacing:12.112640pt;}
.ls7{letter-spacing:18.004480pt;}
.ls6{letter-spacing:33.232640pt;}
.ls1e{letter-spacing:40.912640pt;}
.ls12{letter-spacing:48.343040pt;}
.ls15{letter-spacing:48.471040pt;}
.ls1a{letter-spacing:56.912640pt;}
.ls5{letter-spacing:937.866667pt;}
.ws6{word-spacing:-53.120000pt;}
.wse{word-spacing:-15.544320pt;}
.ws13{word-spacing:-14.723413pt;}
.ws7{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.690560pt;}
.wsa{word-spacing:-14.661120pt;}
.ws12{word-spacing:-14.637547pt;}
.wsb{word-spacing:-14.576640pt;}
.ws4{word-spacing:-14.554880pt;}
.wsf{word-spacing:-14.356480pt;}
.ws14{word-spacing:-14.083413pt;}
.ws1{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.461547pt;}
.ws0{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.152000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.wsc{word-spacing:0.000000pt;}
.wsd{word-spacing:3.293440pt;}
._9{margin-left:-31.168000pt;}
._15{margin-left:-18.320640pt;}
._d{margin-left:-17.303680pt;}
._17{margin-left:-15.840000pt;}
._20{margin-left:-9.567360pt;}
._21{margin-left:-8.241280pt;}
._22{margin-left:-6.949760pt;}
._1b{margin-left:-5.580160pt;}
._b{margin-left:-4.512000pt;}
._14{margin-left:-3.596800pt;}
._7{margin-left:-2.592000pt;}
._4{margin-left:-1.280000pt;}
._0{width:1.009280pt;}
._8{width:2.496000pt;}
._f{width:3.511680pt;}
._c{width:4.416000pt;}
._12{width:5.843200pt;}
._11{width:7.352960pt;}
._10{width:8.398080pt;}
._13{width:9.585920pt;}
._1e{width:10.609280pt;}
._16{width:12.000000pt;}
._1c{width:13.173760pt;}
._18{width:15.936000pt;}
._1f{width:16.929920pt;}
._e{width:17.848320pt;}
._1d{width:19.209600pt;}
._23{width:20.668800pt;}
._25{width:22.309760pt;}
._24{width:23.638400pt;}
._a{width:31.296000pt;}
._5{width:45.600000pt;}
._19{width:61.566720pt;}
._2{width:82.826667pt;}
._1a{width:135.349760pt;}
._3{width:178.720000pt;}
._1{width:654.952107pt;}
._6{width:985.730987pt;}
.fs8{font-size:21.120000pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsa{font-size:55.992837pt;}
.fsb{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:101.191873pt;}
.fs6{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:2.234667pt;}
.y6{bottom:2.240000pt;}
.y32{bottom:2.880000pt;}
.y15{bottom:3.680000pt;}
.y2d{bottom:5.440000pt;}
.y2b{bottom:5.920000pt;}
.y16{bottom:7.040000pt;}
.y4{bottom:8.352000pt;}
.y9{bottom:12.480000pt;}
.yd3{bottom:14.394667pt;}
.y5{bottom:14.912000pt;}
.y31{bottom:18.240000pt;}
.y2a{bottom:21.280000pt;}
.yd2{bottom:26.714667pt;}
.y7{bottom:31.520000pt;}
.y30{bottom:33.760000pt;}
.y22{bottom:36.480000pt;}
.y29{bottom:36.640000pt;}
.yd1{bottom:39.034667pt;}
.y2f{bottom:49.760000pt;}
.y3{bottom:51.680000pt;}
.y28{bottom:52.026667pt;}
.y21{bottom:54.240000pt;}
.y2e{bottom:65.920000pt;}
.y27{bottom:67.386667pt;}
.y20{bottom:72.000000pt;}
.y26{bottom:82.586667pt;}
.y1f{bottom:89.760000pt;}
.y25{bottom:97.946667pt;}
.y72{bottom:100.192000pt;}
.yae{bottom:106.112000pt;}
.y1e{bottom:107.360000pt;}
.y41{bottom:109.152000pt;}
.y24{bottom:113.306667pt;}
.yab{bottom:114.432000pt;}
.y7b{bottom:117.312000pt;}
.y71{bottom:117.952000pt;}
.yad{bottom:121.472000pt;}
.y1d{bottom:125.120000pt;}
.y40{bottom:126.912000pt;}
.yd0{bottom:132.032000pt;}
.yaa{bottom:132.192000pt;}
.y7a{bottom:135.066667pt;}
.y70{bottom:135.706667pt;}
.y1c{bottom:142.880000pt;}
.y3f{bottom:144.666667pt;}
.ya9{bottom:149.786667pt;}
.y79{bottom:152.666667pt;}
.y6f{bottom:153.466667pt;}
.y1b{bottom:160.666667pt;}
.y3e{bottom:162.426667pt;}
.ya8{bottom:167.546667pt;}
.y78{bottom:170.426667pt;}
.y6e{bottom:171.226667pt;}
.y1a{bottom:178.426667pt;}
.y3d{bottom:180.186667pt;}
.ycf{bottom:181.626667pt;}
.ya7{bottom:185.306667pt;}
.y77{bottom:188.186667pt;}
.y6d{bottom:188.986667pt;}
.y19{bottom:196.186667pt;}
.y3c{bottom:197.786667pt;}
.ya6{bottom:203.066667pt;}
.y76{bottom:205.946667pt;}
.y6c{bottom:206.586667pt;}
.yac{bottom:211.226667pt;}
.y18{bottom:213.786667pt;}
.y3b{bottom:215.546667pt;}
.ya5{bottom:220.826667pt;}
.y75{bottom:223.706667pt;}
.y6b{bottom:224.346667pt;}
.y3a{bottom:233.306667pt;}
.ya4{bottom:238.586667pt;}
.y74{bottom:241.466667pt;}
.y6a{bottom:242.106667pt;}
.y39{bottom:251.066667pt;}
.ya3{bottom:256.186667pt;}
.y73{bottom:259.226667pt;}
.y69{bottom:259.866667pt;}
.y38{bottom:268.826667pt;}
.ya2{bottom:273.946667pt;}
.y68{bottom:277.626667pt;}
.y37{bottom:286.626667pt;}
.ya1{bottom:291.746667pt;}
.y67{bottom:295.426667pt;}
.y36{bottom:304.226667pt;}
.ya0{bottom:309.506667pt;}
.y66{bottom:313.026667pt;}
.y35{bottom:321.506667pt;}
.y9f{bottom:327.266667pt;}
.y65{bottom:330.786667pt;}
.y34{bottom:337.346667pt;}
.y9e{bottom:345.026667pt;}
.y64{bottom:348.546667pt;}
.y33{bottom:352.866667pt;}
.y17{bottom:358.466667pt;}
.y9d{bottom:362.626667pt;}
.y63{bottom:366.306667pt;}
.y9c{bottom:380.386667pt;}
.y62{bottom:384.066667pt;}
.y9b{bottom:398.146667pt;}
.y61{bottom:401.826667pt;}
.y9a{bottom:415.906667pt;}
.y60{bottom:419.426667pt;}
.y99{bottom:433.666667pt;}
.y5f{bottom:437.186667pt;}
.y2c{bottom:438.626667pt;}
.y98{bottom:451.426667pt;}
.y5e{bottom:454.946667pt;}
.y23{bottom:457.186667pt;}
.y97{bottom:469.186667pt;}
.y5d{bottom:472.706667pt;}
.y96{bottom:486.786667pt;}
.y5c{bottom:490.466667pt;}
.yce{bottom:493.506667pt;}
.y95{bottom:504.546667pt;}
.y5b{bottom:508.253333pt;}
.ycd{bottom:508.893333pt;}
.y94{bottom:522.333333pt;}
.ycc{bottom:524.253333pt;}
.y5a{bottom:526.013333pt;}
.ycb{bottom:539.933333pt;}
.y93{bottom:540.093333pt;}
.y59{bottom:543.613333pt;}
.yca{bottom:553.853333pt;}
.y92{bottom:557.853333pt;}
.y58{bottom:561.373333pt;}
.yc9{bottom:567.933333pt;}
.y91{bottom:575.613333pt;}
.y57{bottom:579.133333pt;}
.yc8{bottom:581.853333pt;}
.y14{bottom:583.613333pt;}
.y90{bottom:593.373333pt;}
.yc7{bottom:595.933333pt;}
.y56{bottom:596.893333pt;}
.yc6{bottom:609.853333pt;}
.y8f{bottom:611.773333pt;}
.y55{bottom:614.653333pt;}
.y13{bottom:619.133333pt;}
.yc5{bottom:623.773333pt;}
.y8e{bottom:629.533333pt;}
.y54{bottom:632.413333pt;}
.y12{bottom:634.813333pt;}
.yc4{bottom:637.853333pt;}
.y11{bottom:644.893333pt;}
.y8d{bottom:647.133333pt;}
.y53{bottom:650.013333pt;}
.yc3{bottom:651.773333pt;}
.y8c{bottom:664.893333pt;}
.yc2{bottom:665.853333pt;}
.y52{bottom:667.773333pt;}
.y10{bottom:670.653333pt;}
.yc1{bottom:679.773333pt;}
.y8b{bottom:682.653333pt;}
.y51{bottom:685.533333pt;}
.yf{bottom:688.733333pt;}
.yc0{bottom:693.693333pt;}
.y8a{bottom:701.053333pt;}
.y50{bottom:703.293333pt;}
.ybf{bottom:707.773333pt;}
.ye{bottom:709.693333pt;}
.y89{bottom:718.813333pt;}
.y4f{bottom:721.053333pt;}
.ybe{bottom:721.693333pt;}
.ybd{bottom:735.813333pt;}
.y88{bottom:736.613333pt;}
.yd{bottom:738.213333pt;}
.y4e{bottom:738.853333pt;}
.ybc{bottom:749.733333pt;}
.y87{bottom:754.373333pt;}
.y4d{bottom:756.453333pt;}
.ybb{bottom:763.813333pt;}
.yc{bottom:770.213333pt;}
.y86{bottom:772.133333pt;}
.y4c{bottom:774.213333pt;}
.yba{bottom:777.733333pt;}
.y85{bottom:790.533333pt;}
.yb9{bottom:791.653333pt;}
.y4b{bottom:791.973333pt;}
.yb{bottom:801.253333pt;}
.yb8{bottom:805.733333pt;}
.y84{bottom:808.293333pt;}
.y4a{bottom:809.733333pt;}
.yb7{bottom:819.653333pt;}
.y83{bottom:826.053333pt;}
.ya{bottom:826.853333pt;}
.y49{bottom:827.493333pt;}
.yb6{bottom:833.733333pt;}
.y8{bottom:840.453333pt;}
.y82{bottom:843.813333pt;}
.y48{bottom:845.253333pt;}
.yb5{bottom:847.653333pt;}
.y81{bottom:861.413333pt;}
.y47{bottom:862.853333pt;}
.yb4{bottom:863.973333pt;}
.y80{bottom:879.333333pt;}
.y46{bottom:880.613333pt;}
.yb3{bottom:894.693333pt;}
.y7f{bottom:897.733333pt;}
.y45{bottom:898.373333pt;}
.yb2{bottom:910.053333pt;}
.y7e{bottom:915.333333pt;}
.y44{bottom:916.133333pt;}
.yb1{bottom:925.413333pt;}
.y7d{bottom:933.093333pt;}
.y43{bottom:933.893333pt;}
.yb0{bottom:940.773333pt;}
.y7c{bottom:950.853333pt;}
.y42{bottom:951.680000pt;}
.yaf{bottom:956.160000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1e{height:12.320000pt;}
.h10{height:14.901562pt;}
.h17{height:17.760000pt;}
.h11{height:19.520000pt;}
.h3{height:26.432000pt;}
.h21{height:29.940625pt;}
.h1f{height:30.254687pt;}
.h6{height:34.965625pt;}
.h1d{height:36.312500pt;}
.h4{height:37.090625pt;}
.h12{height:37.479688pt;}
.h1b{height:39.321250pt;}
.h16{height:39.347188pt;}
.h1c{height:39.891875pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h1a{height:41.447822pt;}
.h14{height:42.549120pt;}
.h1{height:45.156250pt;}
.h5{height:46.271875pt;}
.h20{height:48.960000pt;}
.h19{height:51.796875pt;}
.he{height:57.321875pt;}
.h9{height:58.563750pt;}
.hd{height:63.537500pt;}
.hf{height:67.031250pt;}
.ha{height:67.734375pt;}
.hc{height:74.905703pt;}
.h18{height:79.520000pt;}
.hb{height:103.593750pt;}
.h15{height:125.792000pt;}
.h7{height:136.826667pt;}
.h13{height:224.506667pt;}
.h0{height:1056.000000pt;}
.w2{width:33.952000pt;}
.w6{width:224.226667pt;}
.w7{width:320.386667pt;}
.w5{width:494.653333pt;}
.w3{width:683.653333pt;}
.w4{width:730.560000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.040000pt;}
.x11{left:5.920000pt;}
.x4{left:7.680000pt;}
.x10{left:17.920000pt;}
.x2{left:47.999988pt;}
.x1{left:53.919988pt;}
.x8{left:57.919988pt;}
.x3{left:61.600000pt;}
.x18{left:77.280000pt;}
.x15{left:78.399988pt;}
.x19{left:83.066667pt;}
.x5{left:96.512000pt;}
.xd{left:178.906655pt;}
.xc{left:362.626655pt;}
.x9{left:376.226655pt;}
.x7{left:408.066655pt;}
.xb{left:412.706655pt;}
.xe{left:423.106655pt;}
.x12{left:425.186655pt;}
.x14{left:426.493321pt;}
.x13{left:430.333321pt;}
.x16{left:450.493321pt;}
.xa{left:455.773321pt;}
.x17{left:468.093321pt;}
.xf{left:550.013333pt;}
.x6{left:722.213333pt;}
}




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