
    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_852d7d255cc03777b12ffb9e.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_43a3aac29d2dbbc94e778923.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_84729e9ec3a0adc34ce3789b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_2dd4c9e3a767aba1dae13ad8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_300282996a2b51b26428873a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_2128e1795d227adc7ed260c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_c96212829bd5e54402da4f04.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_5a9780f92c483af91d311e39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_63151f55275e33e023a06de3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_0a3ad8fdc63f72701dcb6b5c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_d6044c9d9b1fc6066c3c1366.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_a74a813f1ba13ed47175aefb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_255acd35d98a19ff0c6e86b0.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_27f80b3332139f709f5d74a2.woff2')format("woff");}.fff{font-family:fff;line-height:0.952148;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:ff10;src:url('chunks/assets/font_8c37dfba295d64277976d7e7.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_057d4cc04f295899bb54da74.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747070;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:ff12;src:url('chunks/assets/font_fbf38dd0c80648cd71987449.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.769531;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:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.331200px;}
.ls1a{letter-spacing:-0.324000px;}
.ls1f{letter-spacing:-0.306000px;}
.ls11{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.234000px;}
.ls12{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.091200px;}
.ls14{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.054000px;}
.ls8{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.ls1c{letter-spacing:0.036000px;}
.ls1b{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.072600px;}
.ls17{letter-spacing:0.090000px;}
.ls18{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.151680px;}
.ls2{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.234000px;}
.ls7{letter-spacing:0.234600px;}
.ls0{letter-spacing:0.234720px;}
.ls1d{letter-spacing:0.252000px;}
.ls15{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.331200px;}
.ls13{letter-spacing:0.522000px;}
.lse{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.558000px;}
.lsc{letter-spacing:5.706000px;}
.ls10{letter-spacing:11.466000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-54.000000px;}
.ws1{word-spacing:-22.316640px;}
.ws3{word-spacing:-19.152000px;}
.ws8{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.824960px;}
.ws1e{word-spacing:-13.950000px;}
.ws14{word-spacing:-13.932000px;}
.ws13{word-spacing:-13.824000px;}
.ws1b{word-spacing:-13.806000px;}
.ws16{word-spacing:-13.770000px;}
.ws17{word-spacing:-13.752000px;}
.ws11{word-spacing:-13.716000px;}
.wsf{word-spacing:-13.536000px;}
.ws19{word-spacing:-13.302000px;}
.ws1a{word-spacing:-13.266000px;}
.wsc{word-spacing:-13.032000px;}
.wsb{word-spacing:-13.014000px;}
.wsa{word-spacing:-12.960000px;}
.ws10{word-spacing:-12.924000px;}
.ws18{word-spacing:-12.834000px;}
.wsd{word-spacing:-12.780000px;}
.ws1c{word-spacing:-12.744000px;}
.wse{word-spacing:-12.726000px;}
.ws1d{word-spacing:-12.708000px;}
.ws15{word-spacing:-12.690000px;}
.ws6{word-spacing:-11.698440px;}
.ws7{word-spacing:-11.625840px;}
.ws2{word-spacing:-10.576680px;}
.ws4{word-spacing:-10.342080px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.263600px;}
._2{width:1.063920px;}
._4{width:2.181120px;}
._7{width:3.875760px;}
._8{width:4.968720px;}
._9{width:6.160080px;}
._a{width:7.438320px;}
._c{width:8.547840px;}
._b{width:9.956160px;}
._10{width:11.481840px;}
._5{width:12.576000px;}
._6{width:13.649760px;}
._13{width:15.312000px;}
._1a{width:16.956000px;}
._e{width:18.630000px;}
._f{width:20.212080px;}
._12{width:21.783840px;}
._17{width:23.268240px;}
._22{width:24.479280px;}
._28{width:25.918800px;}
._27{width:27.972000px;}
._2c{width:29.106000px;}
._1b{width:30.726000px;}
._18{width:32.454000px;}
._19{width:33.534000px;}
._16{width:35.013600px;}
._14{width:36.774000px;}
._15{width:37.778160px;}
._11{width:39.150000px;}
._2a{width:40.320000px;}
._d{width:41.634000px;}
._3{width:43.187760px;}
._1{width:44.241120px;}
._1f{width:45.630000px;}
._29{width:46.672080px;}
._20{width:51.213600px;}
._21{width:52.250400px;}
._2b{width:53.427600px;}
._25{width:54.918000px;}
._26{width:56.160000px;}
._24{width:64.278000px;}
._1d{width:81.993600px;}
._23{width:89.208000px;}
._1e{width:167.022000px;}
._1c{width:206.658000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs7{font-size:33.120000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y40{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y17{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y22{bottom:3.240000px;}
.y12{bottom:3.420000px;}
.y28{bottom:3.600000px;}
.y1e{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y26{bottom:4.860000px;}
.y3f{bottom:9.000000px;}
.y39{bottom:9.540000px;}
.y20{bottom:10.980000px;}
.y24{bottom:14.940000px;}
.y15{bottom:15.120000px;}
.y3b{bottom:16.380000px;}
.y10{bottom:19.980000px;}
.y1c{bottom:21.060000px;}
.y38{bottom:30.060000px;}
.y3e{bottom:30.240000px;}
.y14{bottom:45.720000px;}
.y37{bottom:50.580000px;}
.y1b{bottom:51.660000px;}
.y5{bottom:58.320000px;}
.yf{bottom:60.840000px;}
.y36{bottom:70.920000px;}
.y2{bottom:74.520000px;}
.y3d{bottom:75.780000px;}
.y1a{bottom:76.320000px;}
.yb{bottom:80.460000px;}
.ya{bottom:91.440000px;}
.y35{bottom:111.960000px;}
.y19{bottom:113.040000px;}
.yaa{bottom:113.760000px;}
.y92{bottom:114.120000px;}
.y89{bottom:114.480000px;}
.y6e{bottom:130.320000px;}
.y34{bottom:132.300000px;}
.ya9{bottom:136.800000px;}
.y91{bottom:137.160000px;}
.y88{bottom:137.520000px;}
.y33{bottom:152.820000px;}
.y6d{bottom:153.210000px;}
.ya8{bottom:159.870000px;}
.y90{bottom:160.230000px;}
.y87{bottom:160.590000px;}
.y32{bottom:173.205000px;}
.y6c{bottom:176.250000px;}
.ya7{bottom:182.910000px;}
.y8f{bottom:183.270000px;}
.y86{bottom:183.630000px;}
.y31{bottom:193.725000px;}
.y6b{bottom:199.290000px;}
.y3a{bottom:205.950000px;}
.y8e{bottom:206.130000px;}
.y85{bottom:206.490000px;}
.y30{bottom:214.245000px;}
.y6a{bottom:222.330000px;}
.ya6{bottom:228.990000px;}
.y8d{bottom:229.170000px;}
.y84{bottom:229.530000px;}
.y2a{bottom:231.870000px;}
.y2f{bottom:234.585000px;}
.y69{bottom:245.370000px;}
.ya5{bottom:251.850000px;}
.y83{bottom:252.570000px;}
.y2e{bottom:255.105000px;}
.y68{bottom:268.410000px;}
.ya4{bottom:274.890000px;}
.y8c{bottom:275.250000px;}
.y82{bottom:275.610000px;}
.y2d{bottom:275.625000px;}
.y67{bottom:291.270000px;}
.y2c{bottom:295.965000px;}
.ya3{bottom:297.930000px;}
.y81{bottom:298.650000px;}
.y66{bottom:314.310000px;}
.y2b{bottom:316.485000px;}
.ya2{bottom:320.970000px;}
.y80{bottom:321.690000px;}
.y65{bottom:337.350000px;}
.ya1{bottom:344.010000px;}
.y7f{bottom:344.550000px;}
.y64{bottom:360.390000px;}
.ya0{bottom:366.870000px;}
.y7e{bottom:367.590000px;}
.y63{bottom:383.430000px;}
.y9f{bottom:389.910000px;}
.y7d{bottom:390.630000px;}
.y62{bottom:406.515000px;}
.y9e{bottom:412.995000px;}
.y7c{bottom:413.715000px;}
.y61{bottom:429.375000px;}
.y9d{bottom:436.035000px;}
.y7b{bottom:436.755000px;}
.y60{bottom:452.415000px;}
.y9c{bottom:459.075000px;}
.y7a{bottom:459.795000px;}
.y5f{bottom:475.455000px;}
.y9b{bottom:482.115000px;}
.y79{bottom:482.655000px;}
.y78{bottom:497.055000px;}
.y5e{bottom:498.495000px;}
.y9a{bottom:504.975000px;}
.y77{bottom:521.175000px;}
.y5d{bottom:521.535000px;}
.y99{bottom:528.015000px;}
.y5c{bottom:544.575000px;}
.y76{bottom:545.295000px;}
.y98{bottom:551.055000px;}
.y29{bottom:559.155000px;}
.y5b{bottom:567.435000px;}
.y75{bottom:569.415000px;}
.y97{bottom:574.095000px;}
.y27{bottom:574.455000px;}
.y5a{bottom:590.475000px;}
.y25{bottom:593.175000px;}
.y74{bottom:593.535000px;}
.y96{bottom:597.135000px;}
.y23{bottom:613.155000px;}
.y59{bottom:613.515000px;}
.y73{bottom:617.655000px;}
.y95{bottom:620.175000px;}
.y58{bottom:636.555000px;}
.y72{bottom:641.805000px;}
.y21{bottom:643.245000px;}
.y8b{bottom:653.505000px;}
.y1f{bottom:656.565000px;}
.y57{bottom:659.625000px;}
.y71{bottom:665.925000px;}
.y94{bottom:666.105000px;}
.y8a{bottom:676.545000px;}
.y1d{bottom:679.605000px;}
.y56{bottom:682.485000px;}
.y93{bottom:689.145000px;}
.y70{bottom:690.045000px;}
.y18{bottom:696.525000px;}
.y55{bottom:705.525000px;}
.y6f{bottom:715.425000px;}
.y54{bottom:728.565000px;}
.y53{bottom:751.605000px;}
.y52{bottom:774.645000px;}
.y51{bottom:797.685000px;}
.y16{bottom:819.105000px;}
.y50{bottom:820.545000px;}
.y13{bottom:833.685000px;}
.y4f{bottom:843.585000px;}
.y4e{bottom:866.625000px;}
.y4d{bottom:889.710000px;}
.y11{bottom:894.750000px;}
.ye{bottom:908.430000px;}
.y4c{bottom:912.750000px;}
.y4b{bottom:935.790000px;}
.y4a{bottom:958.650000px;}
.y49{bottom:981.690000px;}
.yd{bottom:992.670000px;}
.y48{bottom:1004.730000px;}
.yc{bottom:1009.410000px;}
.y9{bottom:1026.150000px;}
.y47{bottom:1027.770000px;}
.y3c{bottom:1044.510000px;}
.y46{bottom:1050.810000px;}
.y45{bottom:1073.850000px;}
.y44{bottom:1096.710000px;}
.y43{bottom:1119.750000px;}
.y8{bottom:1138.680000px;}
.y42{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y41{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1a{height:13.320000px;}
.hf{height:13.680000px;}
.h13{height:14.580000px;}
.h21{height:15.300000px;}
.h17{height:16.920000px;}
.h1f{height:18.720000px;}
.h1e{height:19.980000px;}
.h3{height:20.700000px;}
.h5{height:20.880000px;}
.h19{height:23.040000px;}
.h2c{height:23.076000px;}
.h16{height:25.001719px;}
.h25{height:25.920000px;}
.h26{height:29.145586px;}
.h1c{height:30.096000px;}
.h10{height:32.670352px;}
.h1b{height:33.588984px;}
.h24{height:36.509766px;}
.h14{height:36.886641px;}
.h18{height:40.472227px;}
.h22{height:40.842773px;}
.h2b{height:40.869141px;}
.h29{height:41.291016px;}
.h12{height:48.761719px;}
.h20{height:50.100469px;}
.h1d{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h28{height:55.054688px;}
.h2a{height:55.209375px;}
.h6{height:57.051211px;}
.h11{height:61.056000px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.540000px;}
.h7{height:84.898125px;}
.h27{height:93.780000px;}
.h8{height:108.000000px;}
.h15{height:122.580000px;}
.h23{height:327.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.540000px;}
.w6{width:76.680000px;}
.wc{width:87.840000px;}
.w5{width:124.020000px;}
.wd{width:283.935000px;}
.we{width:303.330000px;}
.wa{width:332.130000px;}
.w9{width:356.475000px;}
.wb{width:464.475000px;}
.w4{width:551.805000px;}
.w7{width:616.470000px;}
.w3{width:628.305000px;}
.w8{width:688.605000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.480000px;}
.x9{left:8.100000px;}
.x5{left:10.800000px;}
.x2{left:12.060000px;}
.x10{left:16.740000px;}
.x16{left:23.220000px;}
.x7{left:39.780000px;}
.x19{left:40.860000px;}
.x1e{left:44.640000px;}
.xd{left:70.560000px;}
.x1d{left:90.225000px;}
.x8{left:100.116000px;}
.xb{left:101.376000px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x1a{left:113.625000px;}
.x1c{left:119.880000px;}
.x1b{left:125.640000px;}
.x3{left:156.990000px;}
.xa{left:176.790000px;}
.x17{left:195.870000px;}
.x13{left:211.170000px;}
.x12{left:263.910000px;}
.xf{left:325.875000px;}
.x14{left:453.855000px;}
.xc{left:457.845000px;}
.x15{left:462.705000px;}
.x18{left:479.805000px;}
.x6{left:661.650000px;}
.xe{left:680.334000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.294400pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls1f{letter-spacing:-0.272000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.208000pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.081067pt;}
.ls14{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.048000pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls1b{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.064533pt;}
.ls17{letter-spacing:0.080000pt;}
.ls18{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.134827pt;}
.ls2{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.208000pt;}
.ls7{letter-spacing:0.208533pt;}
.ls0{letter-spacing:0.208640pt;}
.ls1d{letter-spacing:0.224000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.294400pt;}
.ls13{letter-spacing:0.464000pt;}
.lse{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.496000pt;}
.lsc{letter-spacing:5.072000pt;}
.ls10{letter-spacing:10.192000pt;}
.ws12{word-spacing:-48.000000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws3{word-spacing:-17.024000pt;}
.ws8{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.955520pt;}
.ws1e{word-spacing:-12.400000pt;}
.ws14{word-spacing:-12.384000pt;}
.ws13{word-spacing:-12.288000pt;}
.ws1b{word-spacing:-12.272000pt;}
.ws16{word-spacing:-12.240000pt;}
.ws17{word-spacing:-12.224000pt;}
.ws11{word-spacing:-12.192000pt;}
.wsf{word-spacing:-12.032000pt;}
.ws19{word-spacing:-11.824000pt;}
.ws1a{word-spacing:-11.792000pt;}
.wsc{word-spacing:-11.584000pt;}
.wsb{word-spacing:-11.568000pt;}
.wsa{word-spacing:-11.520000pt;}
.ws10{word-spacing:-11.488000pt;}
.ws18{word-spacing:-11.408000pt;}
.wsd{word-spacing:-11.360000pt;}
.ws1c{word-spacing:-11.328000pt;}
.wse{word-spacing:-11.312000pt;}
.ws1d{word-spacing:-11.296000pt;}
.ws15{word-spacing:-11.280000pt;}
.ws6{word-spacing:-10.398613pt;}
.ws7{word-spacing:-10.334080pt;}
.ws2{word-spacing:-9.401493pt;}
.ws4{word-spacing:-9.192960pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.123200pt;}
._2{width:0.945707pt;}
._4{width:1.938773pt;}
._7{width:3.445120pt;}
._8{width:4.416640pt;}
._9{width:5.475627pt;}
._a{width:6.611840pt;}
._c{width:7.598080pt;}
._b{width:8.849920pt;}
._10{width:10.206080pt;}
._5{width:11.178667pt;}
._6{width:12.133120pt;}
._13{width:13.610667pt;}
._1a{width:15.072000pt;}
._e{width:16.560000pt;}
._f{width:17.966293pt;}
._12{width:19.363413pt;}
._17{width:20.682880pt;}
._22{width:21.759360pt;}
._28{width:23.038933pt;}
._27{width:24.864000pt;}
._2c{width:25.872000pt;}
._1b{width:27.312000pt;}
._18{width:28.848000pt;}
._19{width:29.808000pt;}
._16{width:31.123200pt;}
._14{width:32.688000pt;}
._15{width:33.580587pt;}
._11{width:34.800000pt;}
._2a{width:35.840000pt;}
._d{width:37.008000pt;}
._3{width:38.389120pt;}
._1{width:39.325440pt;}
._1f{width:40.560000pt;}
._29{width:41.486293pt;}
._20{width:45.523200pt;}
._21{width:46.444800pt;}
._2b{width:47.491200pt;}
._25{width:48.816000pt;}
._26{width:49.920000pt;}
._24{width:57.136000pt;}
._1d{width:72.883200pt;}
._23{width:79.296000pt;}
._1e{width:148.464000pt;}
._1c{width:183.696000pt;}
.fs3{font-size:10.880000pt;}
.fs7{font-size:29.440000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y40{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y22{bottom:2.880000pt;}
.y12{bottom:3.040000pt;}
.y28{bottom:3.200000pt;}
.y1e{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y26{bottom:4.320000pt;}
.y3f{bottom:8.000000pt;}
.y39{bottom:8.480000pt;}
.y20{bottom:9.760000pt;}
.y24{bottom:13.280000pt;}
.y15{bottom:13.440000pt;}
.y3b{bottom:14.560000pt;}
.y10{bottom:17.760000pt;}
.y1c{bottom:18.720000pt;}
.y38{bottom:26.720000pt;}
.y3e{bottom:26.880000pt;}
.y14{bottom:40.640000pt;}
.y37{bottom:44.960000pt;}
.y1b{bottom:45.920000pt;}
.y5{bottom:51.840000pt;}
.yf{bottom:54.080000pt;}
.y36{bottom:63.040000pt;}
.y2{bottom:66.240000pt;}
.y3d{bottom:67.360000pt;}
.y1a{bottom:67.840000pt;}
.yb{bottom:71.520000pt;}
.ya{bottom:81.280000pt;}
.y35{bottom:99.520000pt;}
.y19{bottom:100.480000pt;}
.yaa{bottom:101.120000pt;}
.y92{bottom:101.440000pt;}
.y89{bottom:101.760000pt;}
.y6e{bottom:115.840000pt;}
.y34{bottom:117.600000pt;}
.ya9{bottom:121.600000pt;}
.y91{bottom:121.920000pt;}
.y88{bottom:122.240000pt;}
.y33{bottom:135.840000pt;}
.y6d{bottom:136.186667pt;}
.ya8{bottom:142.106667pt;}
.y90{bottom:142.426667pt;}
.y87{bottom:142.746667pt;}
.y32{bottom:153.960000pt;}
.y6c{bottom:156.666667pt;}
.ya7{bottom:162.586667pt;}
.y8f{bottom:162.906667pt;}
.y86{bottom:163.226667pt;}
.y31{bottom:172.200000pt;}
.y6b{bottom:177.146667pt;}
.y3a{bottom:183.066667pt;}
.y8e{bottom:183.226667pt;}
.y85{bottom:183.546667pt;}
.y30{bottom:190.440000pt;}
.y6a{bottom:197.626667pt;}
.ya6{bottom:203.546667pt;}
.y8d{bottom:203.706667pt;}
.y84{bottom:204.026667pt;}
.y2a{bottom:206.106667pt;}
.y2f{bottom:208.520000pt;}
.y69{bottom:218.106667pt;}
.ya5{bottom:223.866667pt;}
.y83{bottom:224.506667pt;}
.y2e{bottom:226.760000pt;}
.y68{bottom:238.586667pt;}
.ya4{bottom:244.346667pt;}
.y8c{bottom:244.666667pt;}
.y82{bottom:244.986667pt;}
.y2d{bottom:245.000000pt;}
.y67{bottom:258.906667pt;}
.y2c{bottom:263.080000pt;}
.ya3{bottom:264.826667pt;}
.y81{bottom:265.466667pt;}
.y66{bottom:279.386667pt;}
.y2b{bottom:281.320000pt;}
.ya2{bottom:285.306667pt;}
.y80{bottom:285.946667pt;}
.y65{bottom:299.866667pt;}
.ya1{bottom:305.786667pt;}
.y7f{bottom:306.266667pt;}
.y64{bottom:320.346667pt;}
.ya0{bottom:326.106667pt;}
.y7e{bottom:326.746667pt;}
.y63{bottom:340.826667pt;}
.y9f{bottom:346.586667pt;}
.y7d{bottom:347.226667pt;}
.y62{bottom:361.346667pt;}
.y9e{bottom:367.106667pt;}
.y7c{bottom:367.746667pt;}
.y61{bottom:381.666667pt;}
.y9d{bottom:387.586667pt;}
.y7b{bottom:388.226667pt;}
.y60{bottom:402.146667pt;}
.y9c{bottom:408.066667pt;}
.y7a{bottom:408.706667pt;}
.y5f{bottom:422.626667pt;}
.y9b{bottom:428.546667pt;}
.y79{bottom:429.026667pt;}
.y78{bottom:441.826667pt;}
.y5e{bottom:443.106667pt;}
.y9a{bottom:448.866667pt;}
.y77{bottom:463.266667pt;}
.y5d{bottom:463.586667pt;}
.y99{bottom:469.346667pt;}
.y5c{bottom:484.066667pt;}
.y76{bottom:484.706667pt;}
.y98{bottom:489.826667pt;}
.y29{bottom:497.026667pt;}
.y5b{bottom:504.386667pt;}
.y75{bottom:506.146667pt;}
.y97{bottom:510.306667pt;}
.y27{bottom:510.626667pt;}
.y5a{bottom:524.866667pt;}
.y25{bottom:527.266667pt;}
.y74{bottom:527.586667pt;}
.y96{bottom:530.786667pt;}
.y23{bottom:545.026667pt;}
.y59{bottom:545.346667pt;}
.y73{bottom:549.026667pt;}
.y95{bottom:551.266667pt;}
.y58{bottom:565.826667pt;}
.y72{bottom:570.493333pt;}
.y21{bottom:571.773333pt;}
.y8b{bottom:580.893333pt;}
.y1f{bottom:583.613333pt;}
.y57{bottom:586.333333pt;}
.y71{bottom:591.933333pt;}
.y94{bottom:592.093333pt;}
.y8a{bottom:601.373333pt;}
.y1d{bottom:604.093333pt;}
.y56{bottom:606.653333pt;}
.y93{bottom:612.573333pt;}
.y70{bottom:613.373333pt;}
.y18{bottom:619.133333pt;}
.y55{bottom:627.133333pt;}
.y6f{bottom:635.933333pt;}
.y54{bottom:647.613333pt;}
.y53{bottom:668.093333pt;}
.y52{bottom:688.573333pt;}
.y51{bottom:709.053333pt;}
.y16{bottom:728.093333pt;}
.y50{bottom:729.373333pt;}
.y13{bottom:741.053333pt;}
.y4f{bottom:749.853333pt;}
.y4e{bottom:770.333333pt;}
.y4d{bottom:790.853333pt;}
.y11{bottom:795.333333pt;}
.ye{bottom:807.493333pt;}
.y4c{bottom:811.333333pt;}
.y4b{bottom:831.813333pt;}
.y4a{bottom:852.133333pt;}
.y49{bottom:872.613333pt;}
.yd{bottom:882.373333pt;}
.y48{bottom:893.093333pt;}
.yc{bottom:897.253333pt;}
.y9{bottom:912.133333pt;}
.y47{bottom:913.573333pt;}
.y3c{bottom:928.453333pt;}
.y46{bottom:934.053333pt;}
.y45{bottom:954.533333pt;}
.y44{bottom:974.853333pt;}
.y43{bottom:995.333333pt;}
.y8{bottom:1012.160000pt;}
.y42{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y41{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1a{height:11.840000pt;}
.hf{height:12.160000pt;}
.h13{height:12.960000pt;}
.h21{height:13.600000pt;}
.h17{height:15.040000pt;}
.h1f{height:16.640000pt;}
.h1e{height:17.760000pt;}
.h3{height:18.400000pt;}
.h5{height:18.560000pt;}
.h19{height:20.480000pt;}
.h2c{height:20.512000pt;}
.h16{height:22.223750pt;}
.h25{height:23.040000pt;}
.h26{height:25.907187pt;}
.h1c{height:26.752000pt;}
.h10{height:29.040312pt;}
.h1b{height:29.856875pt;}
.h24{height:32.453125pt;}
.h14{height:32.788125pt;}
.h18{height:35.975313pt;}
.h22{height:36.304688pt;}
.h2b{height:36.328125pt;}
.h29{height:36.703125pt;}
.h12{height:43.343750pt;}
.h20{height:44.533750pt;}
.h1d{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h28{height:48.937500pt;}
.h2a{height:49.075000pt;}
.h6{height:50.712187pt;}
.h11{height:54.272000pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.480000pt;}
.h7{height:75.465000pt;}
.h27{height:83.360000pt;}
.h8{height:96.000000pt;}
.h15{height:108.960000pt;}
.h23{height:290.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.480000pt;}
.w6{width:68.160000pt;}
.wc{width:78.080000pt;}
.w5{width:110.240000pt;}
.wd{width:252.386667pt;}
.we{width:269.626667pt;}
.wa{width:295.226667pt;}
.w9{width:316.866667pt;}
.wb{width:412.866667pt;}
.w4{width:490.493333pt;}
.w7{width:547.973333pt;}
.w3{width:558.493333pt;}
.w8{width:612.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.760000pt;}
.x9{left:7.200000pt;}
.x5{left:9.600000pt;}
.x2{left:10.720000pt;}
.x10{left:14.880000pt;}
.x16{left:20.640000pt;}
.x7{left:35.360000pt;}
.x19{left:36.320000pt;}
.x1e{left:39.680000pt;}
.xd{left:62.720000pt;}
.x1d{left:80.200000pt;}
.x8{left:88.992000pt;}
.xb{left:90.112000pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x1a{left:101.000000pt;}
.x1c{left:106.560000pt;}
.x1b{left:111.680000pt;}
.x3{left:139.546667pt;}
.xa{left:157.146667pt;}
.x17{left:174.106667pt;}
.x13{left:187.706667pt;}
.x12{left:234.586667pt;}
.xf{left:289.666667pt;}
.x14{left:403.426667pt;}
.xc{left:406.973333pt;}
.x15{left:411.293333pt;}
.x18{left:426.493333pt;}
.x6{left:588.133333pt;}
.xe{left:604.741333pt;}
}




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