
    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_12d4e2bd89e2448e3c478ba3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fa1fe20c553b2723353d8141.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_375662ca53defba7a9092ff3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c283fa809287edb64e273c1e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_f706e37f78ab3458f82c5223.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_3963cc759de55a4403f5dbd9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5fe5fd0daa456cea960576de.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_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_fceb84c7b6265125125fb723.woff2')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);}
.v2{vertical-align:-82.800000px;}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-2.160000px;}
.ls15{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.454800px;}
.ls24{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.158400px;}
.ls20{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.025920px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls2c{letter-spacing:0.034560px;}
.ls1b{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.109200px;}
.ls2a{letter-spacing:0.123600px;}
.ls12{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.305400px;}
.ls13{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.561600px;}
.lsf{letter-spacing:0.624000px;}
.ls1a{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.440000px;}
.ls1f{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.880000px;}
.ls26{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.760000px;}
.lse{letter-spacing:7.200000px;}
.ls2{letter-spacing:8.640000px;}
.lsd{letter-spacing:10.080000px;}
.lsb{letter-spacing:10.800000px;}
.ls18{letter-spacing:12.240000px;}
.ls29{letter-spacing:34.841280px;}
.lsc{letter-spacing:38.160000px;}
.ls25{letter-spacing:67.961280px;}
.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;}
}
.ws6{word-spacing:-84.060000px;}
.ws1{word-spacing:-19.457280px;}
.ws0{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.496000px;}
.wsb{word-spacing:-16.683600px;}
.ws2{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.401600px;}
.wsa{word-spacing:-16.254600px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-3.575040px;}
._f{margin-left:-2.443200px;}
._4{margin-left:-1.008000px;}
._0{width:1.244160px;}
._5{width:3.065280px;}
._b{width:4.901760px;}
._7{width:6.520320px;}
._6{width:8.081280px;}
._c{width:9.232320px;}
._8{width:10.465920px;}
._d{width:12.121920px;}
._e{width:13.129920px;}
._11{width:14.472000px;}
._10{width:15.480000px;}
._15{width:16.776000px;}
._26{width:18.562560px;}
._a{width:19.730880px;}
._9{width:20.799360px;}
._22{width:22.824000px;}
._1a{width:23.976000px;}
._1d{width:25.704000px;}
._25{width:26.712000px;}
._13{width:27.864000px;}
._27{width:28.967040px;}
._14{width:30.264000px;}
._1e{width:31.656000px;}
._21{width:32.688000px;}
._19{width:34.777920px;}
._18{width:35.856000px;}
._23{width:36.936000px;}
._24{width:38.087520px;}
._1c{width:55.800000px;}
._17{width:62.001120px;}
._16{width:63.432000px;}
._1b{width:81.696000px;}
._20{width:163.995840px;}
._1f{width:165.575040px;}
._1{width:480.335520px;}
._2{width:736.680000px;}
._3{width:812.448480px;}
._28{width:846.300000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y69{bottom:4.320000px;}
.ya5{bottom:4.492500px;}
.y87{bottom:4.500000px;}
.y97{bottom:4.845000px;}
.y100{bottom:14.760000px;}
.y9{bottom:21.240000px;}
.ya4{bottom:25.186500px;}
.y86{bottom:25.200000px;}
.y96{bottom:25.545000px;}
.ya{bottom:31.140000px;}
.y8{bottom:41.940000px;}
.ya3{bottom:45.886500px;}
.ya9{bottom:45.900000px;}
.y95{bottom:46.245000px;}
.y9c{bottom:56.326500px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.ya2{bottom:66.586500px;}
.ya8{bottom:66.600000px;}
.y94{bottom:66.990000px;}
.y9b{bottom:77.026500px;}
.y8c{bottom:77.070000px;}
.y4{bottom:86.940000px;}
.ya1{bottom:87.286500px;}
.yab{bottom:87.300000px;}
.ya7{bottom:87.330000px;}
.y93{bottom:87.690000px;}
.y9a{bottom:97.726500px;}
.y8b{bottom:97.770000px;}
.ya0{bottom:107.986500px;}
.yaf{bottom:108.000000px;}
.y92{bottom:108.390000px;}
.y99{bottom:118.426500px;}
.y8a{bottom:118.470000px;}
.y3{bottom:119.880000px;}
.y9f{bottom:128.686500px;}
.yae{bottom:128.700000px;}
.y91{bottom:129.090000px;}
.y98{bottom:139.003500px;}
.y89{bottom:139.170000px;}
.ycb{bottom:142.236000px;}
.y9e{bottom:149.386500px;}
.y38{bottom:149.616000px;}
.y90{bottom:149.790000px;}
.y67{bottom:156.450000px;}
.yf7{bottom:161.130000px;}
.yca{bottom:162.930000px;}
.ye0{bottom:166.710000px;}
.y37{bottom:168.510000px;}
.y9d{bottom:170.086500px;}
.y8f{bottom:170.490000px;}
.y66{bottom:177.150000px;}
.yf6{bottom:180.030000px;}
.yc9{bottom:183.630000px;}
.ydf{bottom:187.410000px;}
.y36{bottom:187.590000px;}
.y8e{bottom:191.190000px;}
.y65{bottom:197.850000px;}
.yf5{bottom:199.110000px;}
.yc8{bottom:204.330000px;}
.y35{bottom:206.490000px;}
.yde{bottom:208.110000px;}
.y8d{bottom:211.890000px;}
.yf4{bottom:218.010000px;}
.y64{bottom:218.550000px;}
.yc7{bottom:225.030000px;}
.y34{bottom:225.570000px;}
.ydd{bottom:228.810000px;}
.yf3{bottom:236.910000px;}
.y63{bottom:239.250000px;}
.y33{bottom:244.470000px;}
.yc6{bottom:245.730000px;}
.ydc{bottom:249.510000px;}
.yf2{bottom:255.990000px;}
.y62{bottom:259.950000px;}
.y32{bottom:263.370000px;}
.yc5{bottom:266.430000px;}
.ydb{bottom:270.210000px;}
.yf1{bottom:274.890000px;}
.y61{bottom:280.650000px;}
.y31{bottom:282.450000px;}
.yc4{bottom:287.130000px;}
.yda{bottom:290.910000px;}
.yf0{bottom:293.970000px;}
.y30{bottom:301.350000px;}
.yc3{bottom:307.830000px;}
.yd9{bottom:311.610000px;}
.yef{bottom:312.870000px;}
.y2f{bottom:320.430000px;}
.y60{bottom:321.870000px;}
.y88{bottom:326.025000px;}
.yc2{bottom:328.530000px;}
.yee{bottom:331.770000px;}
.yd8{bottom:332.310000px;}
.y2e{bottom:339.330000px;}
.y5f{bottom:342.570000px;}
.yc1{bottom:349.230000px;}
.yed{bottom:350.850000px;}
.yd7{bottom:353.010000px;}
.y2d{bottom:358.230000px;}
.y5e{bottom:363.270000px;}
.yec{bottom:369.750000px;}
.yc0{bottom:369.930000px;}
.yd6{bottom:373.710000px;}
.y2c{bottom:377.310000px;}
.y5d{bottom:384.015000px;}
.yeb{bottom:388.875000px;}
.ybf{bottom:390.675000px;}
.yd5{bottom:394.455000px;}
.y2b{bottom:396.255000px;}
.y5c{bottom:404.715000px;}
.yea{bottom:407.775000px;}
.ybe{bottom:411.375000px;}
.yd4{bottom:415.155000px;}
.y2a{bottom:415.335000px;}
.y5b{bottom:425.415000px;}
.ye9{bottom:426.675000px;}
.ybd{bottom:432.075000px;}
.y29{bottom:434.235000px;}
.yd3{bottom:435.855000px;}
.ye8{bottom:445.755000px;}
.y5a{bottom:446.115000px;}
.ybc{bottom:452.775000px;}
.y28{bottom:453.135000px;}
.yd2{bottom:456.555000px;}
.ye7{bottom:464.655000px;}
.y59{bottom:466.815000px;}
.y27{bottom:472.215000px;}
.ybb{bottom:473.475000px;}
.yd1{bottom:477.255000px;}
.ye6{bottom:483.735000px;}
.y58{bottom:487.515000px;}
.y26{bottom:491.115000px;}
.yba{bottom:494.175000px;}
.yd0{bottom:497.955000px;}
.ye5{bottom:502.635000px;}
.y57{bottom:508.215000px;}
.y25{bottom:510.195000px;}
.yb9{bottom:514.875000px;}
.ycf{bottom:518.655000px;}
.ye4{bottom:521.535000px;}
.y56{bottom:528.915000px;}
.y24{bottom:529.095000px;}
.yce{bottom:539.355000px;}
.ye3{bottom:540.615000px;}
.y23{bottom:548.175000px;}
.y55{bottom:549.615000px;}
.y85{bottom:554.835000px;}
.yb8{bottom:556.275000px;}
.ye2{bottom:559.695000px;}
.ycd{bottom:560.055000px;}
.y22{bottom:567.075000px;}
.y54{bottom:570.315000px;}
.yb7{bottom:576.975000px;}
.ycc{bottom:580.755000px;}
.y21{bottom:585.975000px;}
.y53{bottom:591.015000px;}
.yb6{bottom:597.675000px;}
.ye1{bottom:601.095000px;}
.y84{bottom:601.455000px;}
.y20{bottom:605.055000px;}
.y52{bottom:611.715000px;}
.yb5{bottom:618.375000px;}
.y83{bottom:622.155000px;}
.y1f{bottom:624.675000px;}
.y51{bottom:632.445000px;}
.yb4{bottom:639.105000px;}
.y82{bottom:642.885000px;}
.y1e{bottom:646.665000px;}
.y50{bottom:653.145000px;}
.yb3{bottom:659.805000px;}
.y81{bottom:663.585000px;}
.y1d{bottom:669.525000px;}
.y4f{bottom:673.845000px;}
.yb2{bottom:680.505000px;}
.y80{bottom:684.285000px;}
.y1c{bottom:692.025000px;}
.y4e{bottom:694.545000px;}
.yb1{bottom:701.205000px;}
.y7f{bottom:704.985000px;}
.y1b{bottom:713.985000px;}
.y4d{bottom:715.245000px;}
.yb0{bottom:721.905000px;}
.y7e{bottom:725.685000px;}
.y4c{bottom:735.945000px;}
.y1a{bottom:736.305000px;}
.yad{bottom:738.825000px;}
.y7d{bottom:746.385000px;}
.y4b{bottom:756.645000px;}
.y19{bottom:759.345000px;}
.y7c{bottom:767.085000px;}
.y4a{bottom:777.345000px;}
.y18{bottom:781.125000px;}
.y7b{bottom:787.785000px;}
.y49{bottom:798.045000px;}
.y17{bottom:804.165000px;}
.y7a{bottom:808.485000px;}
.y48{bottom:818.745000px;}
.y16{bottom:826.485000px;}
.y79{bottom:829.185000px;}
.y47{bottom:839.445000px;}
.y15{bottom:848.445000px;}
.y78{bottom:849.885000px;}
.y46{bottom:860.145000px;}
.yff{bottom:866.085000px;}
.y77{bottom:870.585000px;}
.y14{bottom:870.765000px;}
.y45{bottom:880.845000px;}
.yac{bottom:884.490000px;}
.yfe{bottom:886.830000px;}
.y76{bottom:891.330000px;}
.y13{bottom:892.050000px;}
.y44{bottom:901.590000px;}
.y75{bottom:912.030000px;}
.y12{bottom:916.170000px;}
.y43{bottom:922.290000px;}
.yfd{bottom:932.190000px;}
.y74{bottom:932.730000px;}
.y11{bottom:940.470000px;}
.y42{bottom:942.990000px;}
.yaa{bottom:947.310000px;}
.yfc{bottom:951.270000px;}
.y73{bottom:953.430000px;}
.y41{bottom:963.690000px;}
.y10{bottom:964.590000px;}
.yfb{bottom:970.170000px;}
.y72{bottom:974.130000px;}
.y68{bottom:979.890000px;}
.y40{bottom:984.390000px;}
.yf{bottom:988.710000px;}
.yfa{bottom:989.070000px;}
.y71{bottom:994.830000px;}
.y3f{bottom:1005.090000px;}
.yf9{bottom:1008.150000px;}
.ye{bottom:1012.830000px;}
.y70{bottom:1015.530000px;}
.yf8{bottom:1027.050000px;}
.y6f{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.y3e{bottom:1046.130000px;}
.ya6{bottom:1051.530000px;}
.y6e{bottom:1056.930000px;}
.yc{bottom:1060.890000px;}
.y3d{bottom:1065.030000px;}
.y6{bottom:1077.090000px;}
.y6d{bottom:1077.630000px;}
.y3c{bottom:1083.930000px;}
.y6c{bottom:1098.330000px;}
.y3b{bottom:1103.010000px;}
.y6b{bottom:1119.030000px;}
.y3a{bottom:1121.910000px;}
.y6a{bottom:1139.760000px;}
.y39{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h1b{height:20.685000px;}
.h1d{height:20.722500px;}
.h11{height:41.385000px;}
.h1c{height:41.422500px;}
.h3{height:45.184219px;}
.hd{height:56.278125px;}
.h1a{height:59.383125px;}
.h18{height:61.171875px;}
.hf{height:62.085000px;}
.he{height:64.546875px;}
.hc{height:64.978594px;}
.h4{height:65.010937px;}
.h19{height:68.084282px;}
.h17{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h6{height:78.870000px;}
.h9{height:84.898125px;}
.h15{height:103.485000px;}
.h14{height:103.530000px;}
.h16{height:144.900000px;}
.h13{height:186.292500px;}
.h12{height:228.075000px;}
.h10{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w6{width:315.613500px;}
.w8{width:337.753500px;}
.w9{width:401.325000px;}
.w7{width:422.745000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x20{left:21.060000px;}
.x1d{left:39.634500px;}
.x2{left:77.041500px;}
.x1e{left:78.868500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x1b{left:91.296000px;}
.xd{left:93.456000px;}
.x22{left:95.796000px;}
.xa{left:99.576000px;}
.xe{left:102.996000px;}
.x21{left:105.330000px;}
.x23{left:108.576000px;}
.x25{left:111.276000px;}
.x24{left:112.356000px;}
.x19{left:127.476000px;}
.x1a{left:141.156000px;}
.xb{left:143.136000px;}
.x9{left:160.410000px;}
.x5{left:172.650000px;}
.x13{left:176.970000px;}
.xf{left:213.330000px;}
.x26{left:222.690000px;}
.x1c{left:340.635000px;}
.x27{left:346.935000px;}
.x16{left:360.975000px;}
.x1f{left:393.915000px;}
.x28{left:414.795000px;}
.x11{left:436.395000px;}
.xc{left:446.505000px;}
.x15{left:465.045000px;}
.x10{left:467.745000px;}
.x12{left:475.845000px;}
.x17{left:483.045000px;}
.x14{left:499.425000px;}
.x18{left:504.105000px;}
.x4{left:552.900000px;}
.x6{left:733.650000px;}
.x8{left:808.020000px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-1.920000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.404267pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.140800pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.023040pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls2c{letter-spacing:0.030720pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.097067pt;}
.ls2a{letter-spacing:0.109867pt;}
.ls12{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.271467pt;}
.ls13{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.499200pt;}
.lsf{letter-spacing:0.554667pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls26{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:5.120000pt;}
.lse{letter-spacing:6.400000pt;}
.ls2{letter-spacing:7.680000pt;}
.lsd{letter-spacing:8.960000pt;}
.lsb{letter-spacing:9.600000pt;}
.ls18{letter-spacing:10.880000pt;}
.ls29{letter-spacing:30.970027pt;}
.lsc{letter-spacing:33.920000pt;}
.ls25{letter-spacing:60.410027pt;}
.ws6{word-spacing:-74.720000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws0{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.552000pt;}
.wsb{word-spacing:-14.829867pt;}
.ws2{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.579200pt;}
.wsa{word-spacing:-14.448533pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-3.177813pt;}
._f{margin-left:-2.171733pt;}
._4{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._5{width:2.724693pt;}
._b{width:4.357120pt;}
._7{width:5.795840pt;}
._6{width:7.183360pt;}
._c{width:8.206507pt;}
._8{width:9.303040pt;}
._d{width:10.775040pt;}
._e{width:11.671040pt;}
._11{width:12.864000pt;}
._10{width:13.760000pt;}
._15{width:14.912000pt;}
._26{width:16.500053pt;}
._a{width:17.538560pt;}
._9{width:18.488320pt;}
._22{width:20.288000pt;}
._1a{width:21.312000pt;}
._1d{width:22.848000pt;}
._25{width:23.744000pt;}
._13{width:24.768000pt;}
._27{width:25.748480pt;}
._14{width:26.901333pt;}
._1e{width:28.138667pt;}
._21{width:29.056000pt;}
._19{width:30.913707pt;}
._18{width:31.872000pt;}
._23{width:32.832000pt;}
._24{width:33.855573pt;}
._1c{width:49.600000pt;}
._17{width:55.112107pt;}
._16{width:56.384000pt;}
._1b{width:72.618667pt;}
._20{width:145.774080pt;}
._1f{width:147.177813pt;}
._1{width:426.964907pt;}
._2{width:654.826667pt;}
._3{width:722.176427pt;}
._28{width:752.266667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y69{bottom:3.840000pt;}
.ya5{bottom:3.993333pt;}
.y87{bottom:4.000000pt;}
.y97{bottom:4.306667pt;}
.y100{bottom:13.120000pt;}
.y9{bottom:18.880000pt;}
.ya4{bottom:22.388000pt;}
.y86{bottom:22.400000pt;}
.y96{bottom:22.706667pt;}
.ya{bottom:27.680000pt;}
.y8{bottom:37.280000pt;}
.ya3{bottom:40.788000pt;}
.ya9{bottom:40.800000pt;}
.y95{bottom:41.106667pt;}
.y9c{bottom:50.068000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.ya2{bottom:59.188000pt;}
.ya8{bottom:59.200000pt;}
.y94{bottom:59.546667pt;}
.y9b{bottom:68.468000pt;}
.y8c{bottom:68.506667pt;}
.y4{bottom:77.280000pt;}
.ya1{bottom:77.588000pt;}
.yab{bottom:77.600000pt;}
.ya7{bottom:77.626667pt;}
.y93{bottom:77.946667pt;}
.y9a{bottom:86.868000pt;}
.y8b{bottom:86.906667pt;}
.ya0{bottom:95.988000pt;}
.yaf{bottom:96.000000pt;}
.y92{bottom:96.346667pt;}
.y99{bottom:105.268000pt;}
.y8a{bottom:105.306667pt;}
.y3{bottom:106.560000pt;}
.y9f{bottom:114.388000pt;}
.yae{bottom:114.400000pt;}
.y91{bottom:114.746667pt;}
.y98{bottom:123.558667pt;}
.y89{bottom:123.706667pt;}
.ycb{bottom:126.432000pt;}
.y9e{bottom:132.788000pt;}
.y38{bottom:132.992000pt;}
.y90{bottom:133.146667pt;}
.y67{bottom:139.066667pt;}
.yf7{bottom:143.226667pt;}
.yca{bottom:144.826667pt;}
.ye0{bottom:148.186667pt;}
.y37{bottom:149.786667pt;}
.y9d{bottom:151.188000pt;}
.y8f{bottom:151.546667pt;}
.y66{bottom:157.466667pt;}
.yf6{bottom:160.026667pt;}
.yc9{bottom:163.226667pt;}
.ydf{bottom:166.586667pt;}
.y36{bottom:166.746667pt;}
.y8e{bottom:169.946667pt;}
.y65{bottom:175.866667pt;}
.yf5{bottom:176.986667pt;}
.yc8{bottom:181.626667pt;}
.y35{bottom:183.546667pt;}
.yde{bottom:184.986667pt;}
.y8d{bottom:188.346667pt;}
.yf4{bottom:193.786667pt;}
.y64{bottom:194.266667pt;}
.yc7{bottom:200.026667pt;}
.y34{bottom:200.506667pt;}
.ydd{bottom:203.386667pt;}
.yf3{bottom:210.586667pt;}
.y63{bottom:212.666667pt;}
.y33{bottom:217.306667pt;}
.yc6{bottom:218.426667pt;}
.ydc{bottom:221.786667pt;}
.yf2{bottom:227.546667pt;}
.y62{bottom:231.066667pt;}
.y32{bottom:234.106667pt;}
.yc5{bottom:236.826667pt;}
.ydb{bottom:240.186667pt;}
.yf1{bottom:244.346667pt;}
.y61{bottom:249.466667pt;}
.y31{bottom:251.066667pt;}
.yc4{bottom:255.226667pt;}
.yda{bottom:258.586667pt;}
.yf0{bottom:261.306667pt;}
.y30{bottom:267.866667pt;}
.yc3{bottom:273.626667pt;}
.yd9{bottom:276.986667pt;}
.yef{bottom:278.106667pt;}
.y2f{bottom:284.826667pt;}
.y60{bottom:286.106667pt;}
.y88{bottom:289.800000pt;}
.yc2{bottom:292.026667pt;}
.yee{bottom:294.906667pt;}
.yd8{bottom:295.386667pt;}
.y2e{bottom:301.626667pt;}
.y5f{bottom:304.506667pt;}
.yc1{bottom:310.426667pt;}
.yed{bottom:311.866667pt;}
.yd7{bottom:313.786667pt;}
.y2d{bottom:318.426667pt;}
.y5e{bottom:322.906667pt;}
.yec{bottom:328.666667pt;}
.yc0{bottom:328.826667pt;}
.yd6{bottom:332.186667pt;}
.y2c{bottom:335.386667pt;}
.y5d{bottom:341.346667pt;}
.yeb{bottom:345.666667pt;}
.ybf{bottom:347.266667pt;}
.yd5{bottom:350.626667pt;}
.y2b{bottom:352.226667pt;}
.y5c{bottom:359.746667pt;}
.yea{bottom:362.466667pt;}
.ybe{bottom:365.666667pt;}
.yd4{bottom:369.026667pt;}
.y2a{bottom:369.186667pt;}
.y5b{bottom:378.146667pt;}
.ye9{bottom:379.266667pt;}
.ybd{bottom:384.066667pt;}
.y29{bottom:385.986667pt;}
.yd3{bottom:387.426667pt;}
.ye8{bottom:396.226667pt;}
.y5a{bottom:396.546667pt;}
.ybc{bottom:402.466667pt;}
.y28{bottom:402.786667pt;}
.yd2{bottom:405.826667pt;}
.ye7{bottom:413.026667pt;}
.y59{bottom:414.946667pt;}
.y27{bottom:419.746667pt;}
.ybb{bottom:420.866667pt;}
.yd1{bottom:424.226667pt;}
.ye6{bottom:429.986667pt;}
.y58{bottom:433.346667pt;}
.y26{bottom:436.546667pt;}
.yba{bottom:439.266667pt;}
.yd0{bottom:442.626667pt;}
.ye5{bottom:446.786667pt;}
.y57{bottom:451.746667pt;}
.y25{bottom:453.506667pt;}
.yb9{bottom:457.666667pt;}
.ycf{bottom:461.026667pt;}
.ye4{bottom:463.586667pt;}
.y56{bottom:470.146667pt;}
.y24{bottom:470.306667pt;}
.yce{bottom:479.426667pt;}
.ye3{bottom:480.546667pt;}
.y23{bottom:487.266667pt;}
.y55{bottom:488.546667pt;}
.y85{bottom:493.186667pt;}
.yb8{bottom:494.466667pt;}
.ye2{bottom:497.506667pt;}
.ycd{bottom:497.826667pt;}
.y22{bottom:504.066667pt;}
.y54{bottom:506.946667pt;}
.yb7{bottom:512.866667pt;}
.ycc{bottom:516.226667pt;}
.y21{bottom:520.866667pt;}
.y53{bottom:525.346667pt;}
.yb6{bottom:531.266667pt;}
.ye1{bottom:534.306667pt;}
.y84{bottom:534.626667pt;}
.y20{bottom:537.826667pt;}
.y52{bottom:543.746667pt;}
.yb5{bottom:549.666667pt;}
.y83{bottom:553.026667pt;}
.y1f{bottom:555.266667pt;}
.y51{bottom:562.173333pt;}
.yb4{bottom:568.093333pt;}
.y82{bottom:571.453333pt;}
.y1e{bottom:574.813333pt;}
.y50{bottom:580.573333pt;}
.yb3{bottom:586.493333pt;}
.y81{bottom:589.853333pt;}
.y1d{bottom:595.133333pt;}
.y4f{bottom:598.973333pt;}
.yb2{bottom:604.893333pt;}
.y80{bottom:608.253333pt;}
.y1c{bottom:615.133333pt;}
.y4e{bottom:617.373333pt;}
.yb1{bottom:623.293333pt;}
.y7f{bottom:626.653333pt;}
.y1b{bottom:634.653333pt;}
.y4d{bottom:635.773333pt;}
.yb0{bottom:641.693333pt;}
.y7e{bottom:645.053333pt;}
.y4c{bottom:654.173333pt;}
.y1a{bottom:654.493333pt;}
.yad{bottom:656.733333pt;}
.y7d{bottom:663.453333pt;}
.y4b{bottom:672.573333pt;}
.y19{bottom:674.973333pt;}
.y7c{bottom:681.853333pt;}
.y4a{bottom:690.973333pt;}
.y18{bottom:694.333333pt;}
.y7b{bottom:700.253333pt;}
.y49{bottom:709.373333pt;}
.y17{bottom:714.813333pt;}
.y7a{bottom:718.653333pt;}
.y48{bottom:727.773333pt;}
.y16{bottom:734.653333pt;}
.y79{bottom:737.053333pt;}
.y47{bottom:746.173333pt;}
.y15{bottom:754.173333pt;}
.y78{bottom:755.453333pt;}
.y46{bottom:764.573333pt;}
.yff{bottom:769.853333pt;}
.y77{bottom:773.853333pt;}
.y14{bottom:774.013333pt;}
.y45{bottom:782.973333pt;}
.yac{bottom:786.213333pt;}
.yfe{bottom:788.293333pt;}
.y76{bottom:792.293333pt;}
.y13{bottom:792.933333pt;}
.y44{bottom:801.413333pt;}
.y75{bottom:810.693333pt;}
.y12{bottom:814.373333pt;}
.y43{bottom:819.813333pt;}
.yfd{bottom:828.613333pt;}
.y74{bottom:829.093333pt;}
.y11{bottom:835.973333pt;}
.y42{bottom:838.213333pt;}
.yaa{bottom:842.053333pt;}
.yfc{bottom:845.573333pt;}
.y73{bottom:847.493333pt;}
.y41{bottom:856.613333pt;}
.y10{bottom:857.413333pt;}
.yfb{bottom:862.373333pt;}
.y72{bottom:865.893333pt;}
.y68{bottom:871.013333pt;}
.y40{bottom:875.013333pt;}
.yf{bottom:878.853333pt;}
.yfa{bottom:879.173333pt;}
.y71{bottom:884.293333pt;}
.y3f{bottom:893.413333pt;}
.yf9{bottom:896.133333pt;}
.ye{bottom:900.293333pt;}
.y70{bottom:902.693333pt;}
.yf8{bottom:912.933333pt;}
.y6f{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.y3e{bottom:929.893333pt;}
.ya6{bottom:934.693333pt;}
.y6e{bottom:939.493333pt;}
.yc{bottom:943.013333pt;}
.y3d{bottom:946.693333pt;}
.y6{bottom:957.413333pt;}
.y6d{bottom:957.893333pt;}
.y3c{bottom:963.493333pt;}
.y6c{bottom:976.293333pt;}
.y3b{bottom:980.453333pt;}
.y6b{bottom:994.693333pt;}
.y3a{bottom:997.253333pt;}
.y6a{bottom:1013.120000pt;}
.y39{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h1b{height:18.386667pt;}
.h1d{height:18.420000pt;}
.h11{height:36.786667pt;}
.h1c{height:36.820000pt;}
.h3{height:40.163750pt;}
.hd{height:50.025000pt;}
.h1a{height:52.785000pt;}
.h18{height:54.375000pt;}
.hf{height:55.186667pt;}
.he{height:57.375000pt;}
.hc{height:57.758750pt;}
.h4{height:57.787500pt;}
.h19{height:60.519362pt;}
.h17{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h6{height:70.106667pt;}
.h9{height:75.465000pt;}
.h15{height:91.986667pt;}
.h14{height:92.026667pt;}
.h16{height:128.800000pt;}
.h13{height:165.593333pt;}
.h12{height:202.733333pt;}
.h10{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w6{width:280.545333pt;}
.w8{width:300.225333pt;}
.w9{width:356.733333pt;}
.w7{width:375.773333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x20{left:18.720000pt;}
.x1d{left:35.230667pt;}
.x2{left:68.481333pt;}
.x1e{left:70.105333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x1b{left:81.152000pt;}
.xd{left:83.072000pt;}
.x22{left:85.152000pt;}
.xa{left:88.512000pt;}
.xe{left:91.552000pt;}
.x21{left:93.626667pt;}
.x23{left:96.512000pt;}
.x25{left:98.912000pt;}
.x24{left:99.872000pt;}
.x19{left:113.312000pt;}
.x1a{left:125.472000pt;}
.xb{left:127.232000pt;}
.x9{left:142.586667pt;}
.x5{left:153.466667pt;}
.x13{left:157.306667pt;}
.xf{left:189.626667pt;}
.x26{left:197.946667pt;}
.x1c{left:302.786667pt;}
.x27{left:308.386667pt;}
.x16{left:320.866667pt;}
.x1f{left:350.146667pt;}
.x28{left:368.706667pt;}
.x11{left:387.906667pt;}
.xc{left:396.893333pt;}
.x15{left:413.373333pt;}
.x10{left:415.773333pt;}
.x12{left:422.973333pt;}
.x17{left:429.373333pt;}
.x14{left:443.933333pt;}
.x18{left:448.093333pt;}
.x4{left:491.466667pt;}
.x6{left:652.133333pt;}
.x8{left:718.240000pt;}
}




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