
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_96c42052a55c09439037c7f1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf27b6e72b25349476d2624a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_81a293f6d73616c87c15bd76.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7914e4ea9a5778cd63417d2c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_afca4eb9a1f088b941cb76e1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c470e4b2e91882c1783464cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f933dbaf8ea781f4a6ae63c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_de06d7529fca2e26a6afeb16.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_ad62557fe074fd4c8702407e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.810000px;}
.ls14{letter-spacing:-0.666000px;}
.ls15{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.226200px;}
.lsf{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls1c{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.234000px;}
.ls1d{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.ls1a{letter-spacing:1.080000px;}
.ls19{letter-spacing:2.106720px;}
.ls4{letter-spacing:3.600000px;}
.ls13{letter-spacing:7.200000px;}
.ls6{letter-spacing:7.920000px;}
.ls5{letter-spacing:8.820000px;}
.ls10{letter-spacing:12.960000px;}
.ls11{letter-spacing:18.000000px;}
.ls12{letter-spacing:20.160000px;}
.ls17{letter-spacing:25.505280px;}
.ls16{letter-spacing:31.626720px;}
.ls1{letter-spacing:2074.956000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.020000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.274000px;}
.ws8{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws5{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._19{margin-left:-7.614720px;}
._12{margin-left:-2.227200px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.343600px;}
._a{width:4.118640px;}
._4{width:5.223360px;}
._3{width:6.710640px;}
._7{width:8.532000px;}
._6{width:10.368000px;}
._5{width:11.826000px;}
._b{width:12.863040px;}
._d{width:13.864320px;}
._f{width:16.114320px;}
._8{width:17.550000px;}
._9{width:18.576000px;}
._e{width:19.849680px;}
._13{width:21.564000px;}
._16{width:22.603440px;}
._c{width:23.963760px;}
._1d{width:25.830720px;}
._11{width:26.926320px;}
._10{width:28.087200px;}
._15{width:31.541760px;}
._14{width:32.758320px;}
._1c{width:35.616960px;}
._1e{width:36.931680px;}
._17{width:43.385760px;}
._18{width:44.460000px;}
._1a{width:81.042720px;}
._1b{width:82.229760px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(33,33,33);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:2.695500px;}
.y41{bottom:3.810000px;}
.y5{bottom:4.140000px;}
.y5b{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4b{bottom:10.255500px;}
.y58{bottom:21.229500px;}
.y40{bottom:21.270000px;}
.y4{bottom:23.070000px;}
.y57{bottom:37.969500px;}
.y3f{bottom:39.990000px;}
.y4a{bottom:40.309500px;}
.y3{bottom:48.090000px;}
.y49{bottom:51.469500px;}
.y56{bottom:55.429500px;}
.y3e{bottom:57.450000px;}
.y48{bottom:62.989500px;}
.y55{bottom:71.269500px;}
.y8{bottom:72.000000px;}
.y47{bottom:76.129500px;}
.y3d{bottom:76.170000px;}
.y54{bottom:86.749500px;}
.y46{bottom:89.089500px;}
.y7{bottom:91.296000px;}
.y3c{bottom:93.450000px;}
.y53{bottom:99.529500px;}
.y52{bottom:105.829500px;}
.y3b{bottom:110.730000px;}
.y45{bottom:110.869500px;}
.y94{bottom:111.816000px;}
.ycd{bottom:121.176000px;}
.y51{bottom:121.849500px;}
.y3a{bottom:128.190000px;}
.y93{bottom:129.456000px;}
.y42{bottom:132.880500px;}
.y50{bottom:137.329500px;}
.ycc{bottom:138.276000px;}
.y39{bottom:147.090000px;}
.y92{bottom:147.996000px;}
.y4f{bottom:152.809500px;}
.yfb{bottom:152.850000px;}
.ycb{bottom:155.550000px;}
.y91{bottom:165.270000px;}
.y38{bottom:165.450000px;}
.y4e{bottom:168.289500px;}
.yfa{bottom:170.130000px;}
.yca{bottom:172.830000px;}
.y44{bottom:173.149500px;}
.y90{bottom:182.550000px;}
.y37{bottom:183.090000px;}
.y4d{bottom:183.589500px;}
.y43{bottom:183.769500px;}
.yf9{bottom:187.230000px;}
.yc9{bottom:190.110000px;}
.y8f{bottom:199.830000px;}
.y59{bottom:200.329500px;}
.y36{bottom:200.370000px;}
.yf8{bottom:204.510000px;}
.yc8{bottom:207.390000px;}
.y8e{bottom:217.110000px;}
.y35{bottom:217.650000px;}
.yf7{bottom:221.790000px;}
.yc7{bottom:224.670000px;}
.y8d{bottom:234.210000px;}
.y34{bottom:234.930000px;}
.yf6{bottom:239.070000px;}
.yc6{bottom:241.770000px;}
.y8c{bottom:251.490000px;}
.y33{bottom:252.030000px;}
.yf5{bottom:256.350000px;}
.yc5{bottom:259.050000px;}
.y1f{bottom:264.660000px;}
.y8b{bottom:268.770000px;}
.y32{bottom:269.340000px;}
.yf4{bottom:273.450000px;}
.yc4{bottom:276.330000px;}
.y8a{bottom:286.050000px;}
.y31{bottom:286.620000px;}
.y1e{bottom:288.960000px;}
.yf3{bottom:290.730000px;}
.yc3{bottom:293.610000px;}
.y89{bottom:302.970000px;}
.y30{bottom:303.900000px;}
.yf2{bottom:308.010000px;}
.yc2{bottom:310.890000px;}
.y1d{bottom:313.080000px;}
.y88{bottom:320.610000px;}
.y2f{bottom:321.180000px;}
.yf1{bottom:325.290000px;}
.yc1{bottom:328.170000px;}
.y1c{bottom:337.200000px;}
.y87{bottom:337.710000px;}
.y2e{bottom:338.460000px;}
.yf0{bottom:342.570000px;}
.yc0{bottom:345.270000px;}
.y11{bottom:346.545000px;}
.y86{bottom:355.035000px;}
.y2d{bottom:355.560000px;}
.yef{bottom:359.895000px;}
.y1b{bottom:361.320000px;}
.ybf{bottom:362.595000px;}
.y85{bottom:372.315000px;}
.y2c{bottom:372.480000px;}
.yee{bottom:376.995000px;}
.ybe{bottom:379.875000px;}
.y1a{bottom:385.440000px;}
.y2b{bottom:389.580000px;}
.y84{bottom:389.595000px;}
.yed{bottom:394.275000px;}
.ybd{bottom:397.155000px;}
.y2a{bottom:405.240000px;}
.y83{bottom:406.875000px;}
.y19{bottom:409.560000px;}
.yec{bottom:411.555000px;}
.ybc{bottom:414.435000px;}
.y29{bottom:420.720000px;}
.y82{bottom:423.795000px;}
.yeb{bottom:428.835000px;}
.ybb{bottom:431.535000px;}
.y18{bottom:433.680000px;}
.y28{bottom:436.200000px;}
.y81{bottom:441.255000px;}
.yea{bottom:446.115000px;}
.yba{bottom:448.815000px;}
.y27{bottom:451.680000px;}
.y17{bottom:457.980000px;}
.y80{bottom:458.535000px;}
.ye9{bottom:463.395000px;}
.yb9{bottom:466.095000px;}
.y26{bottom:467.340000px;}
.y7f{bottom:475.815000px;}
.ye8{bottom:480.495000px;}
.y16{bottom:482.100000px;}
.y25{bottom:482.820000px;}
.yb8{bottom:483.375000px;}
.y7e{bottom:493.095000px;}
.ye7{bottom:497.775000px;}
.y24{bottom:498.300000px;}
.yb7{bottom:500.655000px;}
.y15{bottom:506.220000px;}
.y7d{bottom:510.555000px;}
.y23{bottom:513.780000px;}
.ye6{bottom:515.055000px;}
.yb6{bottom:517.935000px;}
.y7c{bottom:528.915000px;}
.y22{bottom:529.485000px;}
.y14{bottom:530.385000px;}
.ye5{bottom:532.335000px;}
.yb5{bottom:535.035000px;}
.y21{bottom:544.965000px;}
.y7b{bottom:546.555000px;}
.ye4{bottom:549.615000px;}
.yb4{bottom:552.315000px;}
.y13{bottom:554.505000px;}
.y7a{bottom:563.835000px;}
.ye3{bottom:566.895000px;}
.yb3{bottom:569.595000px;}
.y20{bottom:575.565000px;}
.y12{bottom:578.625000px;}
.y79{bottom:581.115000px;}
.ye2{bottom:583.995000px;}
.yb2{bottom:586.875000px;}
.y78{bottom:598.215000px;}
.ye1{bottom:601.275000px;}
.yb1{bottom:604.155000px;}
.y77{bottom:615.525000px;}
.ye0{bottom:618.585000px;}
.yb0{bottom:621.465000px;}
.y76{bottom:632.805000px;}
.ydf{bottom:635.865000px;}
.yaf{bottom:638.565000px;}
.y75{bottom:651.705000px;}
.yde{bottom:653.145000px;}
.yae{bottom:655.845000px;}
.y74{bottom:668.985000px;}
.ydd{bottom:670.245000px;}
.yad{bottom:673.125000px;}
.y73{bottom:686.265000px;}
.ydc{bottom:687.525000px;}
.yac{bottom:690.405000px;}
.y72{bottom:703.545000px;}
.ydb{bottom:704.805000px;}
.yab{bottom:707.505000px;}
.y71{bottom:720.825000px;}
.yda{bottom:723.525000px;}
.yaa{bottom:726.225000px;}
.y70{bottom:737.745000px;}
.yd9{bottom:740.805000px;}
.ya9{bottom:743.505000px;}
.y6f{bottom:755.205000px;}
.yd8{bottom:757.905000px;}
.ya8{bottom:760.785000px;}
.y6e{bottom:772.485000px;}
.yd7{bottom:775.185000px;}
.ya7{bottom:778.065000px;}
.y6d{bottom:790.125000px;}
.yd6{bottom:792.465000px;}
.ya6{bottom:795.345000px;}
.y6c{bottom:808.665000px;}
.yd5{bottom:809.745000px;}
.ya5{bottom:812.445000px;}
.y6b{bottom:825.585000px;}
.yd4{bottom:828.285000px;}
.ya4{bottom:829.725000px;}
.y6a{bottom:843.225000px;}
.yd3{bottom:845.565000px;}
.ya3{bottom:848.445000px;}
.y69{bottom:860.505000px;}
.yd2{bottom:862.845000px;}
.ya2{bottom:865.725000px;}
.y105{bottom:873.870000px;}
.y68{bottom:877.830000px;}
.yd1{bottom:881.610000px;}
.ya1{bottom:882.870000px;}
.y104{bottom:891.150000px;}
.y67{bottom:895.110000px;}
.yd0{bottom:898.890000px;}
.ya0{bottom:900.150000px;}
.y103{bottom:908.430000px;}
.y66{bottom:912.210000px;}
.ycf{bottom:915.990000px;}
.y9f{bottom:917.430000px;}
.y102{bottom:925.530000px;}
.y65{bottom:929.130000px;}
.y9e{bottom:934.710000px;}
.y10{bottom:937.230000px;}
.yf{bottom:941.730000px;}
.y101{bottom:942.810000px;}
.y64{bottom:946.770000px;}
.y9d{bottom:951.990000px;}
.ye{bottom:956.310000px;}
.y100{bottom:963.150000px;}
.y63{bottom:964.050000px;}
.y9c{bottom:969.270000px;}
.yd{bottom:973.590000px;}
.y62{bottom:981.330000px;}
.yff{bottom:981.870000px;}
.y9b{bottom:986.370000px;}
.yc{bottom:990.870000px;}
.y61{bottom:998.790000px;}
.yfe{bottom:999.150000px;}
.y9a{bottom:1003.290000px;}
.yce{bottom:1003.650000px;}
.y60{bottom:1017.870000px;}
.yfd{bottom:1018.050000px;}
.y99{bottom:1020.930000px;}
.yb{bottom:1024.890000px;}
.y5f{bottom:1036.050000px;}
.yfc{bottom:1036.770000px;}
.y98{bottom:1038.210000px;}
.ya{bottom:1043.430000px;}
.y5e{bottom:1053.690000px;}
.y97{bottom:1055.490000px;}
.y5d{bottom:1070.970000px;}
.y9{bottom:1071.870000px;}
.y96{bottom:1072.770000px;}
.y5a{bottom:1075.320000px;}
.y5c{bottom:1088.430000px;}
.y95{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h15{height:5.650313px;}
.hb{height:5.653125px;}
.h16{height:27.540000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.he{height:40.985156px;}
.h10{height:41.726953px;}
.hd{height:42.086250px;}
.ha{height:47.344922px;}
.hf{height:52.971680px;}
.h14{height:54.421875px;}
.h7{height:57.324375px;}
.h6{height:58.651172px;}
.h9{height:60.226875px;}
.h19{height:61.423863px;}
.h17{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h18{height:66.757500px;}
.h1a{height:68.084282px;}
.h8{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.h11{height:212.935500px;}
.hc{height:588.150000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:77.580000px;}
.w2{width:104.040000px;}
.w4{width:132.651000px;}
.w7{width:172.800000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.876000px;}
.x18{left:8.100000px;}
.x4{left:12.780000px;}
.x14{left:14.580000px;}
.x6{left:18.720000px;}
.x16{left:19.980000px;}
.x15{left:29.520000px;}
.xe{left:43.740000px;}
.x1b{left:47.700000px;}
.xf{left:50.760000px;}
.xd{left:55.080000px;}
.x1c{left:57.060000px;}
.x13{left:67.134000px;}
.x12{left:73.254000px;}
.x11{left:75.234000px;}
.x1{left:78.327000px;}
.x8{left:86.436000px;}
.x2{left:95.763000px;}
.x1d{left:102.774000px;}
.x1a{left:106.734000px;}
.x1f{left:113.436000px;}
.x10{left:124.554000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x17{left:219.090000px;}
.xb{left:444.885000px;}
.xc{left:574.845000px;}
.xa{left:626.550000px;}
.x7{left:784.440000px;}
.x9{left:806.580000px;}
.x19{left:815.580000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls14{letter-spacing:-0.592000pt;}
.ls15{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.201067pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls1c{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.208000pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.872640pt;}
.ls4{letter-spacing:3.200000pt;}
.ls13{letter-spacing:6.400000pt;}
.ls6{letter-spacing:7.040000pt;}
.ls5{letter-spacing:7.840000pt;}
.ls10{letter-spacing:11.520000pt;}
.ls11{letter-spacing:16.000000pt;}
.ls12{letter-spacing:17.920000pt;}
.ls17{letter-spacing:22.671360pt;}
.ls16{letter-spacing:28.112640pt;}
.ls1{letter-spacing:1844.405333pt;}
.ws0{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.240000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.688000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws5{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._19{margin-left:-6.768640pt;}
._12{margin-left:-1.979733pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.083200pt;}
._a{width:3.661013pt;}
._4{width:4.642987pt;}
._3{width:5.965013pt;}
._7{width:7.584000pt;}
._6{width:9.216000pt;}
._5{width:10.512000pt;}
._b{width:11.433813pt;}
._d{width:12.323840pt;}
._f{width:14.323840pt;}
._8{width:15.600000pt;}
._9{width:16.512000pt;}
._e{width:17.644160pt;}
._13{width:19.168000pt;}
._16{width:20.091947pt;}
._c{width:21.301120pt;}
._1d{width:22.960640pt;}
._11{width:23.934507pt;}
._10{width:24.966400pt;}
._15{width:28.037120pt;}
._14{width:29.118507pt;}
._1c{width:31.659520pt;}
._1e{width:32.828160pt;}
._17{width:38.565120pt;}
._18{width:39.520000pt;}
._1a{width:72.037973pt;}
._1b{width:73.093120pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.396000pt;}
.y41{bottom:3.386667pt;}
.y5{bottom:3.680000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4b{bottom:9.116000pt;}
.y58{bottom:18.870667pt;}
.y40{bottom:18.906667pt;}
.y4{bottom:20.506667pt;}
.y57{bottom:33.750667pt;}
.y3f{bottom:35.546667pt;}
.y4a{bottom:35.830667pt;}
.y3{bottom:42.746667pt;}
.y49{bottom:45.750667pt;}
.y56{bottom:49.270667pt;}
.y3e{bottom:51.066667pt;}
.y48{bottom:55.990667pt;}
.y55{bottom:63.350667pt;}
.y8{bottom:64.000000pt;}
.y47{bottom:67.670667pt;}
.y3d{bottom:67.706667pt;}
.y54{bottom:77.110667pt;}
.y46{bottom:79.190667pt;}
.y7{bottom:81.152000pt;}
.y3c{bottom:83.066667pt;}
.y53{bottom:88.470667pt;}
.y52{bottom:94.070667pt;}
.y3b{bottom:98.426667pt;}
.y45{bottom:98.550667pt;}
.y94{bottom:99.392000pt;}
.ycd{bottom:107.712000pt;}
.y51{bottom:108.310667pt;}
.y3a{bottom:113.946667pt;}
.y93{bottom:115.072000pt;}
.y42{bottom:118.116000pt;}
.y50{bottom:122.070667pt;}
.ycc{bottom:122.912000pt;}
.y39{bottom:130.746667pt;}
.y92{bottom:131.552000pt;}
.y4f{bottom:135.830667pt;}
.yfb{bottom:135.866667pt;}
.ycb{bottom:138.266667pt;}
.y91{bottom:146.906667pt;}
.y38{bottom:147.066667pt;}
.y4e{bottom:149.590667pt;}
.yfa{bottom:151.226667pt;}
.yca{bottom:153.626667pt;}
.y44{bottom:153.910667pt;}
.y90{bottom:162.266667pt;}
.y37{bottom:162.746667pt;}
.y4d{bottom:163.190667pt;}
.y43{bottom:163.350667pt;}
.yf9{bottom:166.426667pt;}
.yc9{bottom:168.986667pt;}
.y8f{bottom:177.626667pt;}
.y59{bottom:178.070667pt;}
.y36{bottom:178.106667pt;}
.yf8{bottom:181.786667pt;}
.yc8{bottom:184.346667pt;}
.y8e{bottom:192.986667pt;}
.y35{bottom:193.466667pt;}
.yf7{bottom:197.146667pt;}
.yc7{bottom:199.706667pt;}
.y8d{bottom:208.186667pt;}
.y34{bottom:208.826667pt;}
.yf6{bottom:212.506667pt;}
.yc6{bottom:214.906667pt;}
.y8c{bottom:223.546667pt;}
.y33{bottom:224.026667pt;}
.yf5{bottom:227.866667pt;}
.yc5{bottom:230.266667pt;}
.y1f{bottom:235.253333pt;}
.y8b{bottom:238.906667pt;}
.y32{bottom:239.413333pt;}
.yf4{bottom:243.066667pt;}
.yc4{bottom:245.626667pt;}
.y8a{bottom:254.266667pt;}
.y31{bottom:254.773333pt;}
.y1e{bottom:256.853333pt;}
.yf3{bottom:258.426667pt;}
.yc3{bottom:260.986667pt;}
.y89{bottom:269.306667pt;}
.y30{bottom:270.133333pt;}
.yf2{bottom:273.786667pt;}
.yc2{bottom:276.346667pt;}
.y1d{bottom:278.293333pt;}
.y88{bottom:284.986667pt;}
.y2f{bottom:285.493333pt;}
.yf1{bottom:289.146667pt;}
.yc1{bottom:291.706667pt;}
.y1c{bottom:299.733333pt;}
.y87{bottom:300.186667pt;}
.y2e{bottom:300.853333pt;}
.yf0{bottom:304.506667pt;}
.yc0{bottom:306.906667pt;}
.y11{bottom:308.040000pt;}
.y86{bottom:315.586667pt;}
.y2d{bottom:316.053333pt;}
.yef{bottom:319.906667pt;}
.y1b{bottom:321.173333pt;}
.ybf{bottom:322.306667pt;}
.y85{bottom:330.946667pt;}
.y2c{bottom:331.093333pt;}
.yee{bottom:335.106667pt;}
.ybe{bottom:337.666667pt;}
.y1a{bottom:342.613333pt;}
.y2b{bottom:346.293333pt;}
.y84{bottom:346.306667pt;}
.yed{bottom:350.466667pt;}
.ybd{bottom:353.026667pt;}
.y2a{bottom:360.213333pt;}
.y83{bottom:361.666667pt;}
.y19{bottom:364.053333pt;}
.yec{bottom:365.826667pt;}
.ybc{bottom:368.386667pt;}
.y29{bottom:373.973333pt;}
.y82{bottom:376.706667pt;}
.yeb{bottom:381.186667pt;}
.ybb{bottom:383.586667pt;}
.y18{bottom:385.493333pt;}
.y28{bottom:387.733333pt;}
.y81{bottom:392.226667pt;}
.yea{bottom:396.546667pt;}
.yba{bottom:398.946667pt;}
.y27{bottom:401.493333pt;}
.y17{bottom:407.093333pt;}
.y80{bottom:407.586667pt;}
.ye9{bottom:411.906667pt;}
.yb9{bottom:414.306667pt;}
.y26{bottom:415.413333pt;}
.y7f{bottom:422.946667pt;}
.ye8{bottom:427.106667pt;}
.y16{bottom:428.533333pt;}
.y25{bottom:429.173333pt;}
.yb8{bottom:429.666667pt;}
.y7e{bottom:438.306667pt;}
.ye7{bottom:442.466667pt;}
.y24{bottom:442.933333pt;}
.yb7{bottom:445.026667pt;}
.y15{bottom:449.973333pt;}
.y7d{bottom:453.826667pt;}
.y23{bottom:456.693333pt;}
.ye6{bottom:457.826667pt;}
.yb6{bottom:460.386667pt;}
.y7c{bottom:470.146667pt;}
.y22{bottom:470.653333pt;}
.y14{bottom:471.453333pt;}
.ye5{bottom:473.186667pt;}
.yb5{bottom:475.586667pt;}
.y21{bottom:484.413333pt;}
.y7b{bottom:485.826667pt;}
.ye4{bottom:488.546667pt;}
.yb4{bottom:490.946667pt;}
.y13{bottom:492.893333pt;}
.y7a{bottom:501.186667pt;}
.ye3{bottom:503.906667pt;}
.yb3{bottom:506.306667pt;}
.y20{bottom:511.613333pt;}
.y12{bottom:514.333333pt;}
.y79{bottom:516.546667pt;}
.ye2{bottom:519.106667pt;}
.yb2{bottom:521.666667pt;}
.y78{bottom:531.746667pt;}
.ye1{bottom:534.466667pt;}
.yb1{bottom:537.026667pt;}
.y77{bottom:547.133333pt;}
.ye0{bottom:549.853333pt;}
.yb0{bottom:552.413333pt;}
.y76{bottom:562.493333pt;}
.ydf{bottom:565.213333pt;}
.yaf{bottom:567.613333pt;}
.y75{bottom:579.293333pt;}
.yde{bottom:580.573333pt;}
.yae{bottom:582.973333pt;}
.y74{bottom:594.653333pt;}
.ydd{bottom:595.773333pt;}
.yad{bottom:598.333333pt;}
.y73{bottom:610.013333pt;}
.ydc{bottom:611.133333pt;}
.yac{bottom:613.693333pt;}
.y72{bottom:625.373333pt;}
.ydb{bottom:626.493333pt;}
.yab{bottom:628.893333pt;}
.y71{bottom:640.733333pt;}
.yda{bottom:643.133333pt;}
.yaa{bottom:645.533333pt;}
.y70{bottom:655.773333pt;}
.yd9{bottom:658.493333pt;}
.ya9{bottom:660.893333pt;}
.y6f{bottom:671.293333pt;}
.yd8{bottom:673.693333pt;}
.ya8{bottom:676.253333pt;}
.y6e{bottom:686.653333pt;}
.yd7{bottom:689.053333pt;}
.ya7{bottom:691.613333pt;}
.y6d{bottom:702.333333pt;}
.yd6{bottom:704.413333pt;}
.ya6{bottom:706.973333pt;}
.y6c{bottom:718.813333pt;}
.yd5{bottom:719.773333pt;}
.ya5{bottom:722.173333pt;}
.y6b{bottom:733.853333pt;}
.yd4{bottom:736.253333pt;}
.ya4{bottom:737.533333pt;}
.y6a{bottom:749.533333pt;}
.yd3{bottom:751.613333pt;}
.ya3{bottom:754.173333pt;}
.y69{bottom:764.893333pt;}
.yd2{bottom:766.973333pt;}
.ya2{bottom:769.533333pt;}
.y105{bottom:776.773333pt;}
.y68{bottom:780.293333pt;}
.yd1{bottom:783.653333pt;}
.ya1{bottom:784.773333pt;}
.y104{bottom:792.133333pt;}
.y67{bottom:795.653333pt;}
.yd0{bottom:799.013333pt;}
.ya0{bottom:800.133333pt;}
.y103{bottom:807.493333pt;}
.y66{bottom:810.853333pt;}
.ycf{bottom:814.213333pt;}
.y9f{bottom:815.493333pt;}
.y102{bottom:822.693333pt;}
.y65{bottom:825.893333pt;}
.y9e{bottom:830.853333pt;}
.y10{bottom:833.093333pt;}
.yf{bottom:837.093333pt;}
.y101{bottom:838.053333pt;}
.y64{bottom:841.573333pt;}
.y9d{bottom:846.213333pt;}
.ye{bottom:850.053333pt;}
.y100{bottom:856.133333pt;}
.y63{bottom:856.933333pt;}
.y9c{bottom:861.573333pt;}
.yd{bottom:865.413333pt;}
.y62{bottom:872.293333pt;}
.yff{bottom:872.773333pt;}
.y9b{bottom:876.773333pt;}
.yc{bottom:880.773333pt;}
.y61{bottom:887.813333pt;}
.yfe{bottom:888.133333pt;}
.y9a{bottom:891.813333pt;}
.yce{bottom:892.133333pt;}
.y60{bottom:904.773333pt;}
.yfd{bottom:904.933333pt;}
.y99{bottom:907.493333pt;}
.yb{bottom:911.013333pt;}
.y5f{bottom:920.933333pt;}
.yfc{bottom:921.573333pt;}
.y98{bottom:922.853333pt;}
.ya{bottom:927.493333pt;}
.y5e{bottom:936.613333pt;}
.y97{bottom:938.213333pt;}
.y5d{bottom:951.973333pt;}
.y9{bottom:952.773333pt;}
.y96{bottom:953.573333pt;}
.y5a{bottom:955.840000pt;}
.y5c{bottom:967.493333pt;}
.y95{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h15{height:5.022500pt;}
.hb{height:5.025000pt;}
.h16{height:24.480000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.he{height:36.431250pt;}
.h10{height:37.090625pt;}
.hd{height:37.410000pt;}
.ha{height:42.084375pt;}
.hf{height:47.085938pt;}
.h14{height:48.375000pt;}
.h7{height:50.955000pt;}
.h6{height:52.134375pt;}
.h9{height:53.535000pt;}
.h19{height:54.598989pt;}
.h17{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h18{height:59.340000pt;}
.h1a{height:60.519362pt;}
.h8{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.h11{height:189.276000pt;}
.hc{height:522.800000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:68.960000pt;}
.w2{width:92.480000pt;}
.w4{width:117.912000pt;}
.w7{width:153.600000pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.112000pt;}
.x18{left:7.200000pt;}
.x4{left:11.360000pt;}
.x14{left:12.960000pt;}
.x6{left:16.640000pt;}
.x16{left:17.760000pt;}
.x15{left:26.240000pt;}
.xe{left:38.880000pt;}
.x1b{left:42.400000pt;}
.xf{left:45.120000pt;}
.xd{left:48.960000pt;}
.x1c{left:50.720000pt;}
.x13{left:59.674667pt;}
.x12{left:65.114667pt;}
.x11{left:66.874667pt;}
.x1{left:69.624000pt;}
.x8{left:76.832000pt;}
.x2{left:85.122667pt;}
.x1d{left:91.354667pt;}
.x1a{left:94.874667pt;}
.x1f{left:100.832000pt;}
.x10{left:110.714667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x17{left:194.746667pt;}
.xb{left:395.453333pt;}
.xc{left:510.973333pt;}
.xa{left:556.933333pt;}
.x7{left:697.280000pt;}
.x9{left:716.960000pt;}
.x19{left:724.960000pt;}
}




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