
    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_7bca0c4fd4e7b2d049455eec.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_ba8f1cbdcc9f7625b1568862.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_07b1a7dc9bd7d80351cece8e.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_4f0b4311682033b019597d5e.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_a263569ac59c81de6e5d3c39.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_55ace02868d5e124eac4e027.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_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_77a200ac0fb0cdc2f398f2c9.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f181147029160c9e95707e88.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b23267ab0abb9cf51da09633.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.523926;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);}
.v1{vertical-align:-90.000000px;}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-79.920000px;}
.v4{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-1.008000px;}
.ls26{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.454800px;}
.ls1d{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.288000px;}
.ls37{letter-spacing:-0.230400px;}
.ls14{letter-spacing:-0.216000px;}
.ls35{letter-spacing:-0.158400px;}
.ls1e{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.025920px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls12{letter-spacing:0.072000px;}
.ls36{letter-spacing:0.109200px;}
.ls31{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.170400px;}
.ls1c{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.305400px;}
.lse{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.504000px;}
.ls38{letter-spacing:0.561600px;}
.ls27{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.702000px;}
.ls1a{letter-spacing:0.720000px;}
.ls30{letter-spacing:0.840000px;}
.ls28{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.440000px;}
.ls21{letter-spacing:1.620000px;}
.ls1f{letter-spacing:2.160000px;}
.ls29{letter-spacing:2.880000px;}
.ls20{letter-spacing:3.600000px;}
.ls23{letter-spacing:4.320000px;}
.lsb{letter-spacing:5.040000px;}
.ls2a{letter-spacing:5.760000px;}
.lsf{letter-spacing:6.480000px;}
.lsd{letter-spacing:7.200000px;}
.ls16{letter-spacing:7.920000px;}
.ls2e{letter-spacing:9.480000px;}
.ls19{letter-spacing:10.080000px;}
.lsc{letter-spacing:10.800000px;}
.ls18{letter-spacing:12.240000px;}
.ls2d{letter-spacing:17.280000px;}
.ls24{letter-spacing:18.000000px;}
.ls33{letter-spacing:26.640000px;}
.ls34{letter-spacing:34.841280px;}
.ls9{letter-spacing:58.500000px;}
.ls17{letter-spacing:62.040000px;}
.ls32{letter-spacing:67.961280px;}
.ls25{letter-spacing:76.440000px;}
.lsa{letter-spacing:80.796000px;}
.ls1{letter-spacing:1252.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.142000px;}
.ws0{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws3{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-2.201760px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._7{width:2.470560px;}
._10{width:3.693600px;}
._d{width:4.917600px;}
._8{width:6.292800px;}
._9{width:7.318080px;}
._a{width:8.407680px;}
._e{width:10.134720px;}
._15{width:11.498400px;}
._18{width:12.528000px;}
._17{width:13.896000px;}
._f{width:15.494400px;}
._16{width:16.639200px;}
._c{width:18.681120px;}
._b{width:19.886400px;}
._1a{width:21.456000px;}
._19{width:23.133600px;}
._1b{width:25.416000px;}
._14{width:26.792640px;}
._13{width:28.521120px;}
._11{width:57.695040px;}
._12{width:59.368800px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._1d{width:846.300000px;}
._2{width:870.060000px;}
._1c{width:1209.819120px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y69{bottom:4.320000px;}
.ye9{bottom:4.500000px;}
.yeb{bottom:14.760000px;}
.y9{bottom:21.240000px;}
.ya{bottom:31.140000px;}
.y8{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y67{bottom:140.796000px;}
.ycc{bottom:142.956000px;}
.y9a{bottom:146.016000px;}
.y66{bottom:161.490000px;}
.ybc{bottom:163.650000px;}
.y9c{bottom:164.910000px;}
.y36{bottom:165.090000px;}
.y99{bottom:166.710000px;}
.yce{bottom:179.850000px;}
.ycb{bottom:180.030000px;}
.y65{bottom:182.190000px;}
.y35{bottom:184.170000px;}
.ybb{bottom:184.350000px;}
.y9b{bottom:185.970000px;}
.y98{bottom:187.410000px;}
.y64{bottom:202.890000px;}
.y34{bottom:203.070000px;}
.yba{bottom:205.050000px;}
.y97{bottom:208.110000px;}
.y33{bottom:221.970000px;}
.y63{bottom:223.590000px;}
.yb9{bottom:225.750000px;}
.y96{bottom:228.810000px;}
.y32{bottom:241.050000px;}
.y62{bottom:244.290000px;}
.yb8{bottom:246.450000px;}
.y95{bottom:249.510000px;}
.y31{bottom:259.950000px;}
.y61{bottom:264.990000px;}
.yb7{bottom:267.150000px;}
.y94{bottom:270.210000px;}
.y30{bottom:279.030000px;}
.y60{bottom:285.690000px;}
.yb6{bottom:287.850000px;}
.y93{bottom:290.910000px;}
.y2f{bottom:297.930000px;}
.y5f{bottom:306.390000px;}
.yb5{bottom:308.550000px;}
.y92{bottom:311.610000px;}
.y2e{bottom:316.830000px;}
.y5e{bottom:327.090000px;}
.yb4{bottom:329.250000px;}
.y91{bottom:332.310000px;}
.y2d{bottom:335.910000px;}
.y5d{bottom:347.790000px;}
.yb3{bottom:349.950000px;}
.y90{bottom:353.010000px;}
.y2c{bottom:354.810000px;}
.y5c{bottom:368.490000px;}
.yb2{bottom:370.650000px;}
.y8f{bottom:373.710000px;}
.y2b{bottom:373.890000px;}
.y5b{bottom:389.235000px;}
.yb1{bottom:391.395000px;}
.y2a{bottom:392.835000px;}
.y8e{bottom:394.455000px;}
.y5a{bottom:409.935000px;}
.y29{bottom:411.915000px;}
.yb0{bottom:412.095000px;}
.y8d{bottom:415.155000px;}
.y59{bottom:430.635000px;}
.y28{bottom:430.815000px;}
.yaf{bottom:432.795000px;}
.y8c{bottom:435.855000px;}
.y27{bottom:449.715000px;}
.y58{bottom:451.335000px;}
.yae{bottom:453.495000px;}
.y8b{bottom:456.555000px;}
.y26{bottom:468.795000px;}
.y57{bottom:472.035000px;}
.yad{bottom:474.195000px;}
.y8a{bottom:477.255000px;}
.yee{bottom:482.475000px;}
.y25{bottom:487.695000px;}
.y56{bottom:492.735000px;}
.yac{bottom:494.895000px;}
.y89{bottom:497.955000px;}
.yed{bottom:503.175000px;}
.y24{bottom:506.775000px;}
.y55{bottom:513.435000px;}
.yab{bottom:515.595000px;}
.y88{bottom:518.655000px;}
.yec{bottom:523.875000px;}
.y23{bottom:525.675000px;}
.yca{bottom:526.755000px;}
.y54{bottom:534.135000px;}
.yaa{bottom:536.295000px;}
.y87{bottom:539.355000px;}
.yea{bottom:540.075000px;}
.y22{bottom:544.575000px;}
.yc9{bottom:547.455000px;}
.y53{bottom:554.835000px;}
.ya9{bottom:556.995000px;}
.y86{bottom:560.055000px;}
.ye8{bottom:560.775000px;}
.y21{bottom:563.655000px;}
.yc8{bottom:568.155000px;}
.y52{bottom:575.535000px;}
.ya8{bottom:577.695000px;}
.y85{bottom:580.755000px;}
.y20{bottom:583.095000px;}
.yc7{bottom:588.855000px;}
.y51{bottom:596.235000px;}
.ya7{bottom:598.395000px;}
.y84{bottom:601.455000px;}
.y1f{bottom:603.975000px;}
.ye7{bottom:606.135000px;}
.yc6{bottom:609.555000px;}
.y50{bottom:616.935000px;}
.ya6{bottom:619.095000px;}
.y83{bottom:622.155000px;}
.ye6{bottom:625.035000px;}
.y1e{bottom:626.475000px;}
.yc5{bottom:630.255000px;}
.y4f{bottom:637.665000px;}
.ya5{bottom:639.825000px;}
.y82{bottom:642.885000px;}
.ye5{bottom:644.145000px;}
.y1d{bottom:648.825000px;}
.yc4{bottom:650.985000px;}
.y4e{bottom:658.365000px;}
.ya4{bottom:660.525000px;}
.ye4{bottom:663.045000px;}
.y81{bottom:663.585000px;}
.y1c{bottom:671.325000px;}
.yc3{bottom:671.685000px;}
.y4d{bottom:679.065000px;}
.ya3{bottom:680.685000px;}
.ye3{bottom:682.125000px;}
.y80{bottom:684.285000px;}
.yc2{bottom:692.385000px;}
.y1b{bottom:693.825000px;}
.y4c{bottom:699.765000px;}
.ya2{bottom:700.125000px;}
.ye2{bottom:701.025000px;}
.y7f{bottom:704.985000px;}
.yc1{bottom:713.085000px;}
.y1a{bottom:716.145000px;}
.ye1{bottom:719.925000px;}
.ya1{bottom:720.105000px;}
.y4b{bottom:720.465000px;}
.y7e{bottom:725.685000px;}
.yc0{bottom:732.885000px;}
.ya0{bottom:733.785000px;}
.y19{bottom:738.645000px;}
.ye0{bottom:739.005000px;}
.y4a{bottom:741.165000px;}
.y7d{bottom:746.385000px;}
.ybf{bottom:750.885000px;}
.ydf{bottom:757.905000px;}
.y18{bottom:760.965000px;}
.y49{bottom:761.865000px;}
.y7c{bottom:767.085000px;}
.ybe{bottom:770.865000px;}
.yde{bottom:776.985000px;}
.y48{bottom:782.565000px;}
.y17{bottom:783.465000px;}
.ybd{bottom:784.545000px;}
.y7b{bottom:787.785000px;}
.ydd{bottom:795.885000px;}
.y47{bottom:803.265000px;}
.y7a{bottom:808.485000px;}
.ydc{bottom:814.965000px;}
.y46{bottom:823.965000px;}
.ycd{bottom:824.865000px;}
.y16{bottom:827.745000px;}
.y79{bottom:829.185000px;}
.ydb{bottom:833.865000px;}
.y45{bottom:844.665000px;}
.y78{bottom:849.885000px;}
.y15{bottom:850.785000px;}
.yda{bottom:852.765000px;}
.y44{bottom:865.365000px;}
.y77{bottom:870.585000px;}
.yd9{bottom:871.845000px;}
.y14{bottom:872.565000px;}
.y43{bottom:886.110000px;}
.yd8{bottom:890.790000px;}
.y76{bottom:891.330000px;}
.y13{bottom:895.290000px;}
.y42{bottom:906.810000px;}
.yd7{bottom:909.870000px;}
.y75{bottom:912.030000px;}
.y12{bottom:916.170000px;}
.y41{bottom:927.510000px;}
.yd6{bottom:928.770000px;}
.y74{bottom:932.730000px;}
.y11{bottom:940.470000px;}
.yd5{bottom:947.670000px;}
.y40{bottom:948.210000px;}
.y73{bottom:953.430000px;}
.y68{bottom:964.410000px;}
.y10{bottom:964.590000px;}
.yd4{bottom:966.750000px;}
.y3f{bottom:968.910000px;}
.y72{bottom:974.130000px;}
.yf{bottom:988.710000px;}
.y3e{bottom:989.610000px;}
.y71{bottom:994.830000px;}
.yd3{bottom:1004.730000px;}
.ye{bottom:1012.830000px;}
.y70{bottom:1015.530000px;}
.yd2{bottom:1023.630000px;}
.y3d{bottom:1030.290000px;}
.y6f{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.yd1{bottom:1042.530000px;}
.y3c{bottom:1047.750000px;}
.y6e{bottom:1056.930000px;}
.yc{bottom:1060.890000px;}
.yd0{bottom:1061.610000px;}
.y3b{bottom:1066.830000px;}
.y6{bottom:1077.090000px;}
.y6d{bottom:1077.630000px;}
.ycf{bottom:1080.510000px;}
.y3a{bottom:1085.370000px;}
.y6c{bottom:1098.330000px;}
.y9f{bottom:1099.590000px;}
.y39{bottom:1103.010000px;}
.y9e{bottom:1117.590000px;}
.y6b{bottom:1119.030000px;}
.y38{bottom:1121.910000px;}
.y9d{bottom:1138.320000px;}
.y6a{bottom:1139.760000px;}
.y37{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h18{height:20.685000px;}
.h19{height:41.385000px;}
.h3{height:45.184219px;}
.hc{height:56.278125px;}
.he{height:58.621992px;}
.h15{height:58.651172px;}
.h17{height:59.383125px;}
.h11{height:62.085000px;}
.hf{height:64.546875px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h16{height:68.084282px;}
.hb{height:70.628906px;}
.h7{height:70.664062px;}
.h10{height:72.562500px;}
.h8{height:72.846211px;}
.h13{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.ha{height:78.367500px;}
.h6{height:78.870000px;}
.h9{height:84.898125px;}
.h14{height:111.445312px;}
.h12{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:66.454500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w6{width:337.753500px;}
.w7{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x2{left:77.041500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.xa{left:110.556000px;}
.x1e{left:115.596000px;}
.x9{left:125.676000px;}
.xf{left:127.476000px;}
.xe{left:131.436000px;}
.xd{left:141.876000px;}
.x17{left:151.410000px;}
.x5{left:172.650000px;}
.x19{left:178.410000px;}
.x1c{left:184.710000px;}
.x23{left:199.830000px;}
.x26{left:201.630000px;}
.x20{left:246.090000px;}
.x11{left:309.675000px;}
.x24{left:346.935000px;}
.x13{left:358.455000px;}
.x16{left:369.795000px;}
.xb{left:376.635000px;}
.x25{left:414.795000px;}
.x15{left:417.495000px;}
.x10{left:427.215000px;}
.x22{left:441.075000px;}
.xc{left:446.505000px;}
.x12{left:460.725000px;}
.x1a{left:467.745000px;}
.x14{left:475.845000px;}
.x4{left:552.900000px;}
.x21{left:677.490000px;}
.x1f{left:684.150000px;}
.x1d{left:693.330000px;}
.x6{left:733.650000px;}
.x18{left:768.570000px;}
.x1b{left:776.130000px;}
.x8{left:808.020000px;}
@media print{
.v1{vertical-align:-80.000000pt;}
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-71.040000pt;}
.v4{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-0.896000pt;}
.ls26{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.404267pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls37{letter-spacing:-0.204800pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls35{letter-spacing:-0.140800pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.023040pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls12{letter-spacing:0.064000pt;}
.ls36{letter-spacing:0.097067pt;}
.ls31{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.151467pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.448000pt;}
.ls38{letter-spacing:0.499200pt;}
.ls27{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.624000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls30{letter-spacing:0.746667pt;}
.ls28{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.280000pt;}
.ls21{letter-spacing:1.440000pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls29{letter-spacing:2.560000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls23{letter-spacing:3.840000pt;}
.lsb{letter-spacing:4.480000pt;}
.ls2a{letter-spacing:5.120000pt;}
.lsf{letter-spacing:5.760000pt;}
.lsd{letter-spacing:6.400000pt;}
.ls16{letter-spacing:7.040000pt;}
.ls2e{letter-spacing:8.426667pt;}
.ls19{letter-spacing:8.960000pt;}
.lsc{letter-spacing:9.600000pt;}
.ls18{letter-spacing:10.880000pt;}
.ls2d{letter-spacing:15.360000pt;}
.ls24{letter-spacing:16.000000pt;}
.ls33{letter-spacing:23.680000pt;}
.ls34{letter-spacing:30.970027pt;}
.ls9{letter-spacing:52.000000pt;}
.ls17{letter-spacing:55.146667pt;}
.ls32{letter-spacing:60.410027pt;}
.ls25{letter-spacing:67.946667pt;}
.lsa{letter-spacing:71.818667pt;}
.ls1{letter-spacing:1113.738667pt;}
.ws7{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-17.904000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-1.957120pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._7{width:2.196053pt;}
._10{width:3.283200pt;}
._d{width:4.371200pt;}
._8{width:5.593600pt;}
._9{width:6.504960pt;}
._a{width:7.473493pt;}
._e{width:9.008640pt;}
._15{width:10.220800pt;}
._18{width:11.136000pt;}
._17{width:12.352000pt;}
._f{width:13.772800pt;}
._16{width:14.790400pt;}
._c{width:16.605440pt;}
._b{width:17.676800pt;}
._1a{width:19.072000pt;}
._19{width:20.563200pt;}
._1b{width:22.592000pt;}
._14{width:23.815680pt;}
._13{width:25.352107pt;}
._11{width:51.284480pt;}
._12{width:52.772267pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._1d{width:752.266667pt;}
._2{width:773.386667pt;}
._1c{width:1075.394773pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y69{bottom:3.840000pt;}
.ye9{bottom:4.000000pt;}
.yeb{bottom:13.120000pt;}
.y9{bottom:18.880000pt;}
.ya{bottom:27.680000pt;}
.y8{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y67{bottom:125.152000pt;}
.ycc{bottom:127.072000pt;}
.y9a{bottom:129.792000pt;}
.y66{bottom:143.546667pt;}
.ybc{bottom:145.466667pt;}
.y9c{bottom:146.586667pt;}
.y36{bottom:146.746667pt;}
.y99{bottom:148.186667pt;}
.yce{bottom:159.866667pt;}
.ycb{bottom:160.026667pt;}
.y65{bottom:161.946667pt;}
.y35{bottom:163.706667pt;}
.ybb{bottom:163.866667pt;}
.y9b{bottom:165.306667pt;}
.y98{bottom:166.586667pt;}
.y64{bottom:180.346667pt;}
.y34{bottom:180.506667pt;}
.yba{bottom:182.266667pt;}
.y97{bottom:184.986667pt;}
.y33{bottom:197.306667pt;}
.y63{bottom:198.746667pt;}
.yb9{bottom:200.666667pt;}
.y96{bottom:203.386667pt;}
.y32{bottom:214.266667pt;}
.y62{bottom:217.146667pt;}
.yb8{bottom:219.066667pt;}
.y95{bottom:221.786667pt;}
.y31{bottom:231.066667pt;}
.y61{bottom:235.546667pt;}
.yb7{bottom:237.466667pt;}
.y94{bottom:240.186667pt;}
.y30{bottom:248.026667pt;}
.y60{bottom:253.946667pt;}
.yb6{bottom:255.866667pt;}
.y93{bottom:258.586667pt;}
.y2f{bottom:264.826667pt;}
.y5f{bottom:272.346667pt;}
.yb5{bottom:274.266667pt;}
.y92{bottom:276.986667pt;}
.y2e{bottom:281.626667pt;}
.y5e{bottom:290.746667pt;}
.yb4{bottom:292.666667pt;}
.y91{bottom:295.386667pt;}
.y2d{bottom:298.586667pt;}
.y5d{bottom:309.146667pt;}
.yb3{bottom:311.066667pt;}
.y90{bottom:313.786667pt;}
.y2c{bottom:315.386667pt;}
.y5c{bottom:327.546667pt;}
.yb2{bottom:329.466667pt;}
.y8f{bottom:332.186667pt;}
.y2b{bottom:332.346667pt;}
.y5b{bottom:345.986667pt;}
.yb1{bottom:347.906667pt;}
.y2a{bottom:349.186667pt;}
.y8e{bottom:350.626667pt;}
.y5a{bottom:364.386667pt;}
.y29{bottom:366.146667pt;}
.yb0{bottom:366.306667pt;}
.y8d{bottom:369.026667pt;}
.y59{bottom:382.786667pt;}
.y28{bottom:382.946667pt;}
.yaf{bottom:384.706667pt;}
.y8c{bottom:387.426667pt;}
.y27{bottom:399.746667pt;}
.y58{bottom:401.186667pt;}
.yae{bottom:403.106667pt;}
.y8b{bottom:405.826667pt;}
.y26{bottom:416.706667pt;}
.y57{bottom:419.586667pt;}
.yad{bottom:421.506667pt;}
.y8a{bottom:424.226667pt;}
.yee{bottom:428.866667pt;}
.y25{bottom:433.506667pt;}
.y56{bottom:437.986667pt;}
.yac{bottom:439.906667pt;}
.y89{bottom:442.626667pt;}
.yed{bottom:447.266667pt;}
.y24{bottom:450.466667pt;}
.y55{bottom:456.386667pt;}
.yab{bottom:458.306667pt;}
.y88{bottom:461.026667pt;}
.yec{bottom:465.666667pt;}
.y23{bottom:467.266667pt;}
.yca{bottom:468.226667pt;}
.y54{bottom:474.786667pt;}
.yaa{bottom:476.706667pt;}
.y87{bottom:479.426667pt;}
.yea{bottom:480.066667pt;}
.y22{bottom:484.066667pt;}
.yc9{bottom:486.626667pt;}
.y53{bottom:493.186667pt;}
.ya9{bottom:495.106667pt;}
.y86{bottom:497.826667pt;}
.ye8{bottom:498.466667pt;}
.y21{bottom:501.026667pt;}
.yc8{bottom:505.026667pt;}
.y52{bottom:511.586667pt;}
.ya8{bottom:513.506667pt;}
.y85{bottom:516.226667pt;}
.y20{bottom:518.306667pt;}
.yc7{bottom:523.426667pt;}
.y51{bottom:529.986667pt;}
.ya7{bottom:531.906667pt;}
.y84{bottom:534.626667pt;}
.y1f{bottom:536.866667pt;}
.ye7{bottom:538.786667pt;}
.yc6{bottom:541.826667pt;}
.y50{bottom:548.386667pt;}
.ya6{bottom:550.306667pt;}
.y83{bottom:553.026667pt;}
.ye6{bottom:555.586667pt;}
.y1e{bottom:556.866667pt;}
.yc5{bottom:560.226667pt;}
.y4f{bottom:566.813333pt;}
.ya5{bottom:568.733333pt;}
.y82{bottom:571.453333pt;}
.ye5{bottom:572.573333pt;}
.y1d{bottom:576.733333pt;}
.yc4{bottom:578.653333pt;}
.y4e{bottom:585.213333pt;}
.ya4{bottom:587.133333pt;}
.ye4{bottom:589.373333pt;}
.y81{bottom:589.853333pt;}
.y1c{bottom:596.733333pt;}
.yc3{bottom:597.053333pt;}
.y4d{bottom:603.613333pt;}
.ya3{bottom:605.053333pt;}
.ye3{bottom:606.333333pt;}
.y80{bottom:608.253333pt;}
.yc2{bottom:615.453333pt;}
.y1b{bottom:616.733333pt;}
.y4c{bottom:622.013333pt;}
.ya2{bottom:622.333333pt;}
.ye2{bottom:623.133333pt;}
.y7f{bottom:626.653333pt;}
.yc1{bottom:633.853333pt;}
.y1a{bottom:636.573333pt;}
.ye1{bottom:639.933333pt;}
.ya1{bottom:640.093333pt;}
.y4b{bottom:640.413333pt;}
.y7e{bottom:645.053333pt;}
.yc0{bottom:651.453333pt;}
.ya0{bottom:652.253333pt;}
.y19{bottom:656.573333pt;}
.ye0{bottom:656.893333pt;}
.y4a{bottom:658.813333pt;}
.y7d{bottom:663.453333pt;}
.ybf{bottom:667.453333pt;}
.ydf{bottom:673.693333pt;}
.y18{bottom:676.413333pt;}
.y49{bottom:677.213333pt;}
.y7c{bottom:681.853333pt;}
.ybe{bottom:685.213333pt;}
.yde{bottom:690.653333pt;}
.y48{bottom:695.613333pt;}
.y17{bottom:696.413333pt;}
.ybd{bottom:697.373333pt;}
.y7b{bottom:700.253333pt;}
.ydd{bottom:707.453333pt;}
.y47{bottom:714.013333pt;}
.y7a{bottom:718.653333pt;}
.ydc{bottom:724.413333pt;}
.y46{bottom:732.413333pt;}
.ycd{bottom:733.213333pt;}
.y16{bottom:735.773333pt;}
.y79{bottom:737.053333pt;}
.ydb{bottom:741.213333pt;}
.y45{bottom:750.813333pt;}
.y78{bottom:755.453333pt;}
.y15{bottom:756.253333pt;}
.yda{bottom:758.013333pt;}
.y44{bottom:769.213333pt;}
.y77{bottom:773.853333pt;}
.yd9{bottom:774.973333pt;}
.y14{bottom:775.613333pt;}
.y43{bottom:787.653333pt;}
.yd8{bottom:791.813333pt;}
.y76{bottom:792.293333pt;}
.y13{bottom:795.813333pt;}
.y42{bottom:806.053333pt;}
.yd7{bottom:808.773333pt;}
.y75{bottom:810.693333pt;}
.y12{bottom:814.373333pt;}
.y41{bottom:824.453333pt;}
.yd6{bottom:825.573333pt;}
.y74{bottom:829.093333pt;}
.y11{bottom:835.973333pt;}
.yd5{bottom:842.373333pt;}
.y40{bottom:842.853333pt;}
.y73{bottom:847.493333pt;}
.y68{bottom:857.253333pt;}
.y10{bottom:857.413333pt;}
.yd4{bottom:859.333333pt;}
.y3f{bottom:861.253333pt;}
.y72{bottom:865.893333pt;}
.yf{bottom:878.853333pt;}
.y3e{bottom:879.653333pt;}
.y71{bottom:884.293333pt;}
.yd3{bottom:893.093333pt;}
.ye{bottom:900.293333pt;}
.y70{bottom:902.693333pt;}
.yd2{bottom:909.893333pt;}
.y3d{bottom:915.813333pt;}
.y6f{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.yd1{bottom:926.693333pt;}
.y3c{bottom:931.333333pt;}
.y6e{bottom:939.493333pt;}
.yc{bottom:943.013333pt;}
.yd0{bottom:943.653333pt;}
.y3b{bottom:948.293333pt;}
.y6{bottom:957.413333pt;}
.y6d{bottom:957.893333pt;}
.ycf{bottom:960.453333pt;}
.y3a{bottom:964.773333pt;}
.y6c{bottom:976.293333pt;}
.y9f{bottom:977.413333pt;}
.y39{bottom:980.453333pt;}
.y9e{bottom:993.413333pt;}
.y6b{bottom:994.693333pt;}
.y38{bottom:997.253333pt;}
.y9d{bottom:1011.840000pt;}
.y6a{bottom:1013.120000pt;}
.y37{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h18{height:18.386667pt;}
.h19{height:36.786667pt;}
.h3{height:40.163750pt;}
.hc{height:50.025000pt;}
.he{height:52.108438pt;}
.h15{height:52.134375pt;}
.h17{height:52.785000pt;}
.h11{height:55.186667pt;}
.hf{height:57.375000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h16{height:60.519362pt;}
.hb{height:62.781250pt;}
.h7{height:62.812500pt;}
.h10{height:64.500000pt;}
.h8{height:64.752187pt;}
.h13{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.ha{height:69.660000pt;}
.h6{height:70.106667pt;}
.h9{height:75.465000pt;}
.h14{height:99.062500pt;}
.h12{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:59.070667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w6{width:300.225333pt;}
.w7{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x2{left:68.481333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.xa{left:98.272000pt;}
.x1e{left:102.752000pt;}
.x9{left:111.712000pt;}
.xf{left:113.312000pt;}
.xe{left:116.832000pt;}
.xd{left:126.112000pt;}
.x17{left:134.586667pt;}
.x5{left:153.466667pt;}
.x19{left:158.586667pt;}
.x1c{left:164.186667pt;}
.x23{left:177.626667pt;}
.x26{left:179.226667pt;}
.x20{left:218.746667pt;}
.x11{left:275.266667pt;}
.x24{left:308.386667pt;}
.x13{left:318.626667pt;}
.x16{left:328.706667pt;}
.xb{left:334.786667pt;}
.x25{left:368.706667pt;}
.x15{left:371.106667pt;}
.x10{left:379.746667pt;}
.x22{left:392.066667pt;}
.xc{left:396.893333pt;}
.x12{left:409.533333pt;}
.x1a{left:415.773333pt;}
.x14{left:422.973333pt;}
.x4{left:491.466667pt;}
.x21{left:602.213333pt;}
.x1f{left:608.133333pt;}
.x1d{left:616.293333pt;}
.x6{left:652.133333pt;}
.x18{left:683.173333pt;}
.x1b{left:689.893333pt;}
.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; }
  