
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fb5557628e394a8a84b2e6eb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_79d294296b6658b3e432a782.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_46d3f1faa780ace328bd5361.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_072f03f0b8bc7767f23e7369.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_7038ee56bce0566c1c74f5e6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_ac17b40d291aed71dbc53566.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_76eb2202dc3bcfae1dc9ff40.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_3c121db8540d645733da8698.woff')format("woff");}.ffa{font-family:ffa;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v3{vertical-align:18.000000px;}
.ls12{letter-spacing:-1.344000px;}
.ls18{letter-spacing:-0.266400px;}
.ls13{letter-spacing:-0.216600px;}
.ls10{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.037800px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lse{letter-spacing:0.033480px;}
.lsf{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls7{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.174600px;}
.ls1b{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.453600px;}
.ls17{letter-spacing:1.166400px;}
.ls5{letter-spacing:2.253600px;}
.ls1a{letter-spacing:47.726640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.039800px;}
.wsc{word-spacing:-13.009800px;}
.wse{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsa{word-spacing:-8.625600px;}
.ws5{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._8{margin-left:-3.415680px;}
._9{margin-left:-2.396040px;}
._0{margin-left:-1.110000px;}
._3{width:1.007214px;}
._1{width:2.013036px;}
._2{width:3.729960px;}
._6{width:4.880520px;}
._7{width:6.238920px;}
._4{width:7.968600px;}
._5{width:9.012600px;}
._c{width:10.069320px;}
._e{width:11.134320px;}
._10{width:12.171599px;}
._11{width:14.268786px;}
._d{width:15.658200px;}
._f{width:16.912080px;}
._13{width:18.186480px;}
._12{width:21.643200px;}
._b{width:28.934282px;}
._a{width:29.936760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y72{bottom:7.740000px;}
.y6d{bottom:7.830000px;}
.y80{bottom:7.920000px;}
.y7f{bottom:25.470000px;}
.y97{bottom:29.970000px;}
.y8f{bottom:40.410000px;}
.y88{bottom:40.500000px;}
.y83{bottom:40.530000px;}
.y87{bottom:62.550000px;}
.y82{bottom:62.580000px;}
.y2{bottom:73.380000px;}
.y23{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y9d{bottom:115.590000px;}
.ybc{bottom:117.120000px;}
.y7d{bottom:117.300000px;}
.ybb{bottom:134.760000px;}
.y7c{bottom:134.850000px;}
.y51{bottom:146.910000px;}
.y9c{bottom:147.810000px;}
.yba{bottom:152.310000px;}
.y7b{bottom:152.490000px;}
.y50{bottom:164.460000px;}
.y65{bottom:164.550000px;}
.y10e{bottom:164.910000px;}
.yb9{bottom:169.950000px;}
.y4f{bottom:182.100000px;}
.y10d{bottom:182.460000px;}
.y7a{bottom:185.430000px;}
.yb8{bottom:187.500000px;}
.ye0{bottom:190.740000px;}
.y21{bottom:192.180000px;}
.y10c{bottom:200.100000px;}
.y64{bottom:202.800000px;}
.yb7{bottom:205.050000px;}
.y20{bottom:209.820000px;}
.y79{bottom:211.260000px;}
.y4e{bottom:217.650000px;}
.y63{bottom:220.350000px;}
.y10b{bottom:226.650000px;}
.y1f{bottom:227.370000px;}
.y4d{bottom:235.200000px;}
.y78{bottom:237.090000px;}
.yb6{bottom:240.690000px;}
.y10a{bottom:244.200000px;}
.y1e{bottom:245.010000px;}
.y4c{bottom:252.840000px;}
.ydf{bottom:255.000000px;}
.y62{bottom:255.990000px;}
.yb5{bottom:258.240000px;}
.y109{bottom:261.840000px;}
.y77{bottom:262.920000px;}
.y4b{bottom:270.390000px;}
.yb4{bottom:275.880000px;}
.y1d{bottom:280.560000px;}
.y4a{bottom:287.940000px;}
.y61{bottom:288.210000px;}
.y108{bottom:288.390000px;}
.y76{bottom:288.750000px;}
.yb3{bottom:293.430000px;}
.y1c{bottom:298.110000px;}
.yde{bottom:303.330000px;}
.y49{bottom:305.580000px;}
.y107{bottom:305.940000px;}
.yb2{bottom:310.980000px;}
.y1b{bottom:315.750000px;}
.ydd{bottom:320.880000px;}
.y106{bottom:323.580000px;}
.yb1{bottom:328.620000px;}
.y48{bottom:332.490000px;}
.y75{bottom:336.000000px;}
.ydc{bottom:338.430000px;}
.y1a{bottom:342.660000px;}
.y105{bottom:350.130000px;}
.ydb{bottom:356.070000px;}
.yb0{bottom:364.170000px;}
.y104{bottom:367.770000px;}
.y74{bottom:371.550000px;}
.yda{bottom:373.620000px;}
.y47{bottom:380.730000px;}
.yaf{bottom:381.810000px;}
.y73{bottom:389.100000px;}
.y19{bottom:391.260000px;}
.y103{bottom:394.320000px;}
.y46{bottom:398.370000px;}
.yae{bottom:399.360000px;}
.y102{bottom:411.870000px;}
.y45{bottom:415.920000px;}
.yad{bottom:416.910000px;}
.yd9{bottom:418.170000px;}
.y71{bottom:422.130000px;}
.y18{bottom:428.250000px;}
.yac{bottom:434.550000px;}
.y101{bottom:438.510000px;}
.y17{bottom:445.800000px;}
.y70{bottom:447.960000px;}
.y44{bottom:451.470000px;}
.y100{bottom:456.060000px;}
.y16{bottom:463.440000px;}
.y9b{bottom:466.230000px;}
.yd8{bottom:466.410000px;}
.y43{bottom:469.110000px;}
.yab{bottom:470.130000px;}
.y6f{bottom:473.820000px;}
.yff{bottom:482.730000px;}
.y9a{bottom:483.810000px;}
.yd7{bottom:483.990000px;}
.y42{bottom:486.690000px;}
.yaa{bottom:487.770000px;}
.y15{bottom:499.020000px;}
.y6e{bottom:499.650000px;}
.yfe{bottom:500.280000px;}
.yd6{bottom:501.630000px;}
.y41{bottom:504.330000px;}
.ya9{bottom:505.320000px;}
.y60{bottom:512.070000px;}
.y14{bottom:516.660000px;}
.y99{bottom:516.750000px;}
.yd5{bottom:519.180000px;}
.y40{bottom:521.880000px;}
.ya8{bottom:522.870000px;}
.y6c{bottom:525.480000px;}
.yfd{bottom:526.830000px;}
.y5f{bottom:529.620000px;}
.y13{bottom:534.210000px;}
.yd4{bottom:536.730000px;}
.ya7{bottom:540.510000px;}
.y98{bottom:544.110000px;}
.yfc{bottom:544.470000px;}
.y5e{bottom:547.260000px;}
.y3f{bottom:557.430000px;}
.ya6{bottom:558.060000px;}
.yfb{bottom:562.020000px;}
.y12{bottom:569.760000px;}
.y96{bottom:571.470000px;}
.yd3{bottom:572.370000px;}
.y6b{bottom:572.640000px;}
.y3e{bottom:575.070000px;}
.ya5{bottom:575.700000px;}
.y5d{bottom:582.810000px;}
.y11{bottom:587.400000px;}
.yfa{bottom:588.660000px;}
.yd2{bottom:589.920000px;}
.y3d{bottom:592.620000px;}
.ya4{bottom:602.520000px;}
.yf9{bottom:606.210000px;}
.yd1{bottom:607.560000px;}
.y6a{bottom:608.280000px;}
.y5c{bottom:615.030000px;}
.y3c{bottom:619.260000px;}
.y10{bottom:622.950000px;}
.yd0{bottom:625.110000px;}
.y69{bottom:625.830000px;}
.yf8{bottom:632.760000px;}
.yf{bottom:640.590000px;}
.y95{bottom:642.210000px;}
.ycf{bottom:642.660000px;}
.y68{bottom:643.470000px;}
.yf7{bottom:650.400000px;}
.ya3{bottom:650.850000px;}
.y3b{bottom:654.810000px;}
.ye{bottom:658.140000px;}
.yce{bottom:660.300000px;}
.ya2{bottom:668.400000px;}
.y3a{bottom:672.360000px;}
.yf6{bottom:676.950000px;}
.y94{bottom:677.850000px;}
.y67{bottom:679.020000px;}
.ya1{bottom:686.040000px;}
.y39{bottom:690.000000px;}
.yd{bottom:693.690000px;}
.yf5{bottom:694.590000px;}
.y93{bottom:695.400000px;}
.ya0{bottom:703.590000px;}
.y38{bottom:707.550000px;}
.y66{bottom:711.240000px;}
.yc{bottom:711.330000px;}
.y92{bottom:712.950000px;}
.ycd{bottom:713.490000px;}
.yf4{bottom:721.140000px;}
.y37{bottom:725.190000px;}
.ycc{bottom:731.040000px;}
.yb{bottom:738.240000px;}
.yf3{bottom:738.690000px;}
.y9f{bottom:739.140000px;}
.y8e{bottom:745.980000px;}
.ycb{bottom:748.590000px;}
.y36{bottom:751.740000px;}
.yf2{bottom:765.330000px;}
.yca{bottom:766.230000px;}
.y9e{bottom:771.360000px;}
.y91{bottom:773.250000px;}
.yf1{bottom:782.880000px;}
.yc9{bottom:783.780000px;}
.ya{bottom:786.480000px;}
.y35{bottom:787.290000px;}
.yf0{bottom:800.520000px;}
.y90{bottom:800.610000px;}
.yc8{bottom:801.420000px;}
.y34{bottom:804.930000px;}
.y9{bottom:822.030000px;}
.y33{bottom:822.480000px;}
.yef{bottom:827.070000px;}
.y8b{bottom:827.970000px;}
.yc7{bottom:836.970000px;}
.y32{bottom:840.030000px;}
.yee{bottom:844.620000px;}
.yc6{bottom:854.520000px;}
.y8d{bottom:855.330000px;}
.y8{bottom:857.850000px;}
.y31{bottom:866.670000px;}
.yed{bottom:871.260000px;}
.yc5{bottom:872.160000px;}
.y8c{bottom:882.600000px;}
.yec{bottom:888.810000px;}
.yc4{bottom:889.710000px;}
.y7{bottom:893.850000px;}
.y5b{bottom:897.720000px;}
.y30{bottom:902.220000px;}
.yc3{bottom:907.350000px;}
.y86{bottom:909.960000px;}
.yeb{bottom:915.450000px;}
.y2f{bottom:919.860000px;}
.yc2{bottom:924.900000px;}
.y6{bottom:929.940000px;}
.y8a{bottom:937.320000px;}
.y2e{bottom:937.410000px;}
.yea{bottom:942.000000px;}
.yc1{bottom:942.450000px;}
.y5a{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y2d{bottom:954.960000px;}
.ye9{bottom:959.550000px;}
.y59{bottom:963.600000px;}
.y89{bottom:964.680000px;}
.y2c{bottom:972.600000px;}
.ye8{bottom:977.190000px;}
.yc0{bottom:978.720000px;}
.y58{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.y2b{bottom:990.150000px;}
.y81{bottom:991.950000px;}
.y57{bottom:998.790000px;}
.ybf{bottom:999.150000px;}
.ye7{bottom:1003.740000px;}
.y3{bottom:1012.320000px;}
.ybe{bottom:1016.820000px;}
.y85{bottom:1019.340000px;}
.ye6{bottom:1021.320000px;}
.y2a{bottom:1025.820000px;}
.y56{bottom:1034.370000px;}
.ye5{bottom:1038.960000px;}
.y29{bottom:1043.370000px;}
.y84{bottom:1046.700000px;}
.y55{bottom:1051.920000px;}
.y28{bottom:1060.920000px;}
.ye4{bottom:1065.510000px;}
.ybd{bottom:1069.560000px;}
.y7e{bottom:1073.970000px;}
.y27{bottom:1078.560000px;}
.ye3{bottom:1083.150000px;}
.y54{bottom:1087.560000px;}
.y26{bottom:1096.110000px;}
.ye2{bottom:1100.700000px;}
.y53{bottom:1105.110000px;}
.y25{bottom:1113.750000px;}
.y52{bottom:1122.750000px;}
.ye1{bottom:1127.610000px;}
.y24{bottom:1140.300000px;}
.y22{bottom:1194.300000px;}
.hc{height:25.020000px;}
.ha{height:25.110000px;}
.hb{height:25.140000px;}
.hf{height:26.550000px;}
.h12{height:26.640000px;}
.h10{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.190000px;}
.h13{height:48.690000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h14{height:58.539023px;}
.h15{height:61.793886px;}
.h7{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h9{height:74.953125px;}
.h11{height:81.270000px;}
.he{height:81.300000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:57.450000px;}
.w17{width:64.530000px;}
.w16{width:64.560000px;}
.w15{width:64.620000px;}
.w11{width:73.920000px;}
.w5{width:89.730000px;}
.w12{width:92.610000px;}
.w9{width:92.880000px;}
.w7{width:92.970000px;}
.w6{width:94.500000px;}
.w13{width:105.570000px;}
.wf{width:114.840000px;}
.w14{width:114.930000px;}
.w10{width:120.870000px;}
.we{width:125.400000px;}
.wc{width:138.900000px;}
.wd{width:139.530000px;}
.w4{width:246.360000px;}
.w3{width:278.730000px;}
.wa{width:327.900000px;}
.wb{width:328.440000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:3.870000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x24{left:111.239987px;}
.x12{left:118.080000px;}
.x17{left:128.250000px;}
.xb{left:183.720000px;}
.x2{left:192.719987px;}
.x19{left:254.370000px;}
.x13{left:257.790000px;}
.xe{left:274.260000px;}
.x1d{left:291.180000px;}
.x22{left:316.289987px;}
.x7{left:336.089987px;}
.x5{left:347.429987px;}
.x14{left:353.010000px;}
.xa{left:363.179987px;}
.xf{left:369.480000px;}
.x1e{left:406.830000px;}
.x8{left:446.609987px;}
.xd{left:463.170000px;}
.x1f{left:472.170000px;}
.x1a{left:491.520000px;}
.x10{left:521.430000px;}
.x20{left:537.540000px;}
.x1b{left:566.160000px;}
.x15{left:586.950000px;}
.x11{left:616.650000px;}
.x6{left:632.309987px;}
.x23{left:648.059987px;}
.x21{left:653.639987px;}
.x4{left:654.809987px;}
.x1c{left:659.490000px;}
.x16{left:682.260000px;}
.x9{left:788.639987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v3{vertical-align:16.000000pt;}
.ls12{letter-spacing:-1.194667pt;}
.ls18{letter-spacing:-0.236800pt;}
.ls13{letter-spacing:-0.192533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.033600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lse{letter-spacing:0.029760pt;}
.lsf{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls7{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.155200pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.403200pt;}
.ls17{letter-spacing:1.036800pt;}
.ls5{letter-spacing:2.003200pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.564267pt;}
.wse{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsa{word-spacing:-7.667200pt;}
.ws5{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._8{margin-left:-3.036160pt;}
._9{margin-left:-2.129814pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.895301pt;}
._1{width:1.789365pt;}
._2{width:3.315520pt;}
._6{width:4.338240pt;}
._7{width:5.545706pt;}
._4{width:7.083200pt;}
._5{width:8.011200pt;}
._c{width:8.950506pt;}
._e{width:9.897174pt;}
._10{width:10.819199pt;}
._11{width:12.683365pt;}
._d{width:13.918400pt;}
._f{width:15.032960pt;}
._13{width:16.165760pt;}
._12{width:19.238400pt;}
._b{width:25.719361pt;}
._a{width:26.610453pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:6.880000pt;}
.y6d{bottom:6.960000pt;}
.y80{bottom:7.040000pt;}
.y7f{bottom:22.640000pt;}
.y97{bottom:26.640000pt;}
.y8f{bottom:35.920000pt;}
.y88{bottom:36.000000pt;}
.y83{bottom:36.026667pt;}
.y87{bottom:55.600000pt;}
.y82{bottom:55.626667pt;}
.y2{bottom:65.226667pt;}
.y23{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y9d{bottom:102.746667pt;}
.ybc{bottom:104.106667pt;}
.y7d{bottom:104.266667pt;}
.ybb{bottom:119.786667pt;}
.y7c{bottom:119.866667pt;}
.y51{bottom:130.586667pt;}
.y9c{bottom:131.386667pt;}
.yba{bottom:135.386667pt;}
.y7b{bottom:135.546667pt;}
.y50{bottom:146.186667pt;}
.y65{bottom:146.266667pt;}
.y10e{bottom:146.586667pt;}
.yb9{bottom:151.066667pt;}
.y4f{bottom:161.866667pt;}
.y10d{bottom:162.186667pt;}
.y7a{bottom:164.826667pt;}
.yb8{bottom:166.666667pt;}
.ye0{bottom:169.546667pt;}
.y21{bottom:170.826667pt;}
.y10c{bottom:177.866667pt;}
.y64{bottom:180.266667pt;}
.yb7{bottom:182.266667pt;}
.y20{bottom:186.506667pt;}
.y79{bottom:187.786667pt;}
.y4e{bottom:193.466667pt;}
.y63{bottom:195.866667pt;}
.y10b{bottom:201.466667pt;}
.y1f{bottom:202.106667pt;}
.y4d{bottom:209.066667pt;}
.y78{bottom:210.746667pt;}
.yb6{bottom:213.946667pt;}
.y10a{bottom:217.066667pt;}
.y1e{bottom:217.786667pt;}
.y4c{bottom:224.746667pt;}
.ydf{bottom:226.666667pt;}
.y62{bottom:227.546667pt;}
.yb5{bottom:229.546667pt;}
.y109{bottom:232.746667pt;}
.y77{bottom:233.706667pt;}
.y4b{bottom:240.346667pt;}
.yb4{bottom:245.226667pt;}
.y1d{bottom:249.386667pt;}
.y4a{bottom:255.946667pt;}
.y61{bottom:256.186667pt;}
.y108{bottom:256.346667pt;}
.y76{bottom:256.666667pt;}
.yb3{bottom:260.826667pt;}
.y1c{bottom:264.986667pt;}
.yde{bottom:269.626667pt;}
.y49{bottom:271.626667pt;}
.y107{bottom:271.946667pt;}
.yb2{bottom:276.426667pt;}
.y1b{bottom:280.666667pt;}
.ydd{bottom:285.226667pt;}
.y106{bottom:287.626667pt;}
.yb1{bottom:292.106667pt;}
.y48{bottom:295.546667pt;}
.y75{bottom:298.666667pt;}
.ydc{bottom:300.826667pt;}
.y1a{bottom:304.586667pt;}
.y105{bottom:311.226667pt;}
.ydb{bottom:316.506667pt;}
.yb0{bottom:323.706667pt;}
.y104{bottom:326.906667pt;}
.y74{bottom:330.266667pt;}
.yda{bottom:332.106667pt;}
.y47{bottom:338.426667pt;}
.yaf{bottom:339.386667pt;}
.y73{bottom:345.866667pt;}
.y19{bottom:347.786667pt;}
.y103{bottom:350.506667pt;}
.y46{bottom:354.106667pt;}
.yae{bottom:354.986667pt;}
.y102{bottom:366.106667pt;}
.y45{bottom:369.706667pt;}
.yad{bottom:370.586667pt;}
.yd9{bottom:371.706667pt;}
.y71{bottom:375.226667pt;}
.y18{bottom:380.666667pt;}
.yac{bottom:386.266667pt;}
.y101{bottom:389.786667pt;}
.y17{bottom:396.266667pt;}
.y70{bottom:398.186667pt;}
.y44{bottom:401.306667pt;}
.y100{bottom:405.386667pt;}
.y16{bottom:411.946667pt;}
.y9b{bottom:414.426667pt;}
.yd8{bottom:414.586667pt;}
.y43{bottom:416.986667pt;}
.yab{bottom:417.893333pt;}
.y6f{bottom:421.173333pt;}
.yff{bottom:429.093333pt;}
.y9a{bottom:430.053333pt;}
.yd7{bottom:430.213333pt;}
.y42{bottom:432.613333pt;}
.yaa{bottom:433.573333pt;}
.y15{bottom:443.573333pt;}
.y6e{bottom:444.133333pt;}
.yfe{bottom:444.693333pt;}
.yd6{bottom:445.893333pt;}
.y41{bottom:448.293333pt;}
.ya9{bottom:449.173333pt;}
.y60{bottom:455.173333pt;}
.y14{bottom:459.253333pt;}
.y99{bottom:459.333333pt;}
.yd5{bottom:461.493333pt;}
.y40{bottom:463.893333pt;}
.ya8{bottom:464.773333pt;}
.y6c{bottom:467.093333pt;}
.yfd{bottom:468.293333pt;}
.y5f{bottom:470.773333pt;}
.y13{bottom:474.853333pt;}
.yd4{bottom:477.093333pt;}
.ya7{bottom:480.453333pt;}
.y98{bottom:483.653333pt;}
.yfc{bottom:483.973333pt;}
.y5e{bottom:486.453333pt;}
.y3f{bottom:495.493333pt;}
.ya6{bottom:496.053333pt;}
.yfb{bottom:499.573333pt;}
.y12{bottom:506.453333pt;}
.y96{bottom:507.973333pt;}
.yd3{bottom:508.773333pt;}
.y6b{bottom:509.013333pt;}
.y3e{bottom:511.173333pt;}
.ya5{bottom:511.733333pt;}
.y5d{bottom:518.053333pt;}
.y11{bottom:522.133333pt;}
.yfa{bottom:523.253333pt;}
.yd2{bottom:524.373333pt;}
.y3d{bottom:526.773333pt;}
.ya4{bottom:535.573333pt;}
.yf9{bottom:538.853333pt;}
.yd1{bottom:540.053333pt;}
.y6a{bottom:540.693333pt;}
.y5c{bottom:546.693333pt;}
.y3c{bottom:550.453333pt;}
.y10{bottom:553.733333pt;}
.yd0{bottom:555.653333pt;}
.y69{bottom:556.293333pt;}
.yf8{bottom:562.453333pt;}
.yf{bottom:569.413333pt;}
.y95{bottom:570.853333pt;}
.ycf{bottom:571.253333pt;}
.y68{bottom:571.973333pt;}
.yf7{bottom:578.133333pt;}
.ya3{bottom:578.533333pt;}
.y3b{bottom:582.053333pt;}
.ye{bottom:585.013333pt;}
.yce{bottom:586.933333pt;}
.ya2{bottom:594.133333pt;}
.y3a{bottom:597.653333pt;}
.yf6{bottom:601.733333pt;}
.y94{bottom:602.533333pt;}
.y67{bottom:603.573333pt;}
.ya1{bottom:609.813333pt;}
.y39{bottom:613.333333pt;}
.yd{bottom:616.613333pt;}
.yf5{bottom:617.413333pt;}
.y93{bottom:618.133333pt;}
.ya0{bottom:625.413333pt;}
.y38{bottom:628.933333pt;}
.y66{bottom:632.213333pt;}
.yc{bottom:632.293333pt;}
.y92{bottom:633.733333pt;}
.ycd{bottom:634.213333pt;}
.yf4{bottom:641.013333pt;}
.y37{bottom:644.613333pt;}
.ycc{bottom:649.813333pt;}
.yb{bottom:656.213333pt;}
.yf3{bottom:656.613333pt;}
.y9f{bottom:657.013333pt;}
.y8e{bottom:663.093333pt;}
.ycb{bottom:665.413333pt;}
.y36{bottom:668.213333pt;}
.yf2{bottom:680.293333pt;}
.yca{bottom:681.093333pt;}
.y9e{bottom:685.653333pt;}
.y91{bottom:687.333333pt;}
.yf1{bottom:695.893333pt;}
.yc9{bottom:696.693333pt;}
.ya{bottom:699.093333pt;}
.y35{bottom:699.813333pt;}
.yf0{bottom:711.573333pt;}
.y90{bottom:711.653333pt;}
.yc8{bottom:712.373333pt;}
.y34{bottom:715.493333pt;}
.y9{bottom:730.693333pt;}
.y33{bottom:731.093333pt;}
.yef{bottom:735.173333pt;}
.y8b{bottom:735.973333pt;}
.yc7{bottom:743.973333pt;}
.y32{bottom:746.693333pt;}
.yee{bottom:750.773333pt;}
.yc6{bottom:759.573333pt;}
.y8d{bottom:760.293333pt;}
.y8{bottom:762.533333pt;}
.y31{bottom:770.373333pt;}
.yed{bottom:774.453333pt;}
.yc5{bottom:775.253333pt;}
.y8c{bottom:784.533333pt;}
.yec{bottom:790.053333pt;}
.yc4{bottom:790.853333pt;}
.y7{bottom:794.533333pt;}
.y5b{bottom:797.973333pt;}
.y30{bottom:801.973333pt;}
.yc3{bottom:806.533333pt;}
.y86{bottom:808.853333pt;}
.yeb{bottom:813.733333pt;}
.y2f{bottom:817.653333pt;}
.yc2{bottom:822.133333pt;}
.y6{bottom:826.613333pt;}
.y8a{bottom:833.173333pt;}
.y2e{bottom:833.253333pt;}
.yea{bottom:837.333333pt;}
.yc1{bottom:837.733333pt;}
.y5a{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y2d{bottom:848.853333pt;}
.ye9{bottom:852.933333pt;}
.y59{bottom:856.533333pt;}
.y89{bottom:857.493333pt;}
.y2c{bottom:864.533333pt;}
.ye8{bottom:868.613333pt;}
.yc0{bottom:869.973333pt;}
.y58{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.y2b{bottom:880.133333pt;}
.y81{bottom:881.733333pt;}
.y57{bottom:887.813333pt;}
.ybf{bottom:888.133333pt;}
.ye7{bottom:892.213333pt;}
.y3{bottom:899.840000pt;}
.ybe{bottom:903.840000pt;}
.y85{bottom:906.080000pt;}
.ye6{bottom:907.840000pt;}
.y2a{bottom:911.840000pt;}
.y56{bottom:919.440000pt;}
.ye5{bottom:923.520000pt;}
.y29{bottom:927.440000pt;}
.y84{bottom:930.400000pt;}
.y55{bottom:935.040000pt;}
.y28{bottom:943.040000pt;}
.ye4{bottom:947.120000pt;}
.ybd{bottom:950.720000pt;}
.y7e{bottom:954.640000pt;}
.y27{bottom:958.720000pt;}
.ye3{bottom:962.800000pt;}
.y54{bottom:966.720000pt;}
.y26{bottom:974.320000pt;}
.ye2{bottom:978.400000pt;}
.y53{bottom:982.320000pt;}
.y25{bottom:990.000000pt;}
.y52{bottom:998.000000pt;}
.ye1{bottom:1002.320000pt;}
.y24{bottom:1013.600000pt;}
.y22{bottom:1061.600000pt;}
.hc{height:22.240000pt;}
.ha{height:22.320000pt;}
.hb{height:22.346667pt;}
.hf{height:23.600000pt;}
.h12{height:23.680000pt;}
.h10{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.280000pt;}
.h13{height:43.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h14{height:52.034687pt;}
.h15{height:54.927899pt;}
.h7{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h9{height:66.625000pt;}
.h11{height:72.240000pt;}
.he{height:72.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:51.066667pt;}
.w17{width:57.360000pt;}
.w16{width:57.386667pt;}
.w15{width:57.440000pt;}
.w11{width:65.706667pt;}
.w5{width:79.760000pt;}
.w12{width:82.320000pt;}
.w9{width:82.560000pt;}
.w7{width:82.640000pt;}
.w6{width:84.000000pt;}
.w13{width:93.840000pt;}
.wf{width:102.080000pt;}
.w14{width:102.160000pt;}
.w10{width:107.440000pt;}
.we{width:111.466667pt;}
.wc{width:123.466667pt;}
.wd{width:124.026667pt;}
.w4{width:218.986667pt;}
.w3{width:247.760000pt;}
.wa{width:291.466667pt;}
.wb{width:291.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:3.440000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x24{left:98.879988pt;}
.x12{left:104.960000pt;}
.x17{left:114.000000pt;}
.xb{left:163.306667pt;}
.x2{left:171.306655pt;}
.x19{left:226.106667pt;}
.x13{left:229.146667pt;}
.xe{left:243.786667pt;}
.x1d{left:258.826667pt;}
.x22{left:281.146655pt;}
.x7{left:298.746655pt;}
.x5{left:308.826655pt;}
.x14{left:313.786667pt;}
.xa{left:322.826655pt;}
.xf{left:328.426667pt;}
.x1e{left:361.626667pt;}
.x8{left:396.986655pt;}
.xd{left:411.706667pt;}
.x1f{left:419.706667pt;}
.x1a{left:436.906667pt;}
.x10{left:463.493333pt;}
.x20{left:477.813333pt;}
.x1b{left:503.253333pt;}
.x15{left:521.733333pt;}
.x11{left:548.133333pt;}
.x6{left:562.053322pt;}
.x23{left:576.053322pt;}
.x21{left:581.013322pt;}
.x4{left:582.053322pt;}
.x1c{left:586.213333pt;}
.x16{left:606.453333pt;}
.x9{left:701.013322pt;}
.x3{left:718.773322pt;}
}




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