
    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_44109aa779e14bbae5424e15.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_4063f638a72186c24bf3db91.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_6b7ba4237aa408e493714c1f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_3278797531222162b0b2fdc9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_4eb3b4356f6bada89b95d985.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_7b4ef06369a14df5ff050835.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_750fbe742e5d389c8709d7be.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_685d6c9441697ffaf8ad905f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls11{letter-spacing:-1.296000px;}
.lsa{letter-spacing:-0.972000px;}
.ls9{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.498000px;}
.ls8{letter-spacing:-0.486600px;}
.lse{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.020160px;}
.ls12{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.498240px;}
.lsd{letter-spacing:0.501000px;}
.ls6{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.lsb{letter-spacing:7.920000px;}
.ls10{letter-spacing:8.945280px;}
.lsf{letter-spacing:13.265280px;}
.lsc{letter-spacing:62.076000px;}
.ls7{letter-spacing:73.728000px;}
.ls13{letter-spacing:189.065280px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws8{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.633400px;}
.ws2{word-spacing:-13.182000px;}
.ws6{word-spacing:-12.381000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-3.960000px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._e{width:3.960000px;}
._10{width:5.100000px;}
._16{width:6.984000px;}
._17{width:8.208000px;}
._9{width:9.744000px;}
._8{width:11.448000px;}
._7{width:12.672000px;}
._11{width:13.680000px;}
._f{width:14.988000px;}
._d{width:16.344000px;}
._18{width:19.008000px;}
._1d{width:20.232000px;}
._13{width:21.888000px;}
._12{width:23.544000px;}
._14{width:24.684000px;}
._a{width:26.136000px;}
._b{width:27.288000px;}
._1e{width:28.584000px;}
._19{width:30.168000px;}
._1a{width:31.248000px;}
._24{width:34.239840px;}
._23{width:35.600160px;}
._1c{width:37.296000px;}
._1b{width:38.664000px;}
._1f{width:39.672000px;}
._15{width:40.680000px;}
._21{width:46.440000px;}
._22{width:47.676000px;}
._20{width:85.836000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y49{bottom:3.240000px;}
.yb4{bottom:3.960000px;}
.y91{bottom:4.320000px;}
.y2d{bottom:14.394000px;}
.y48{bottom:20.520000px;}
.yab{bottom:24.840000px;}
.yc8{bottom:24.870000px;}
.ye{bottom:43.560000px;}
.y2c{bottom:45.354000px;}
.yb3{bottom:45.360000px;}
.yc7{bottom:45.390000px;}
.yc4{bottom:45.750000px;}
.yaa{bottom:45.765000px;}
.y47{bottom:48.600000px;}
.yb2{bottom:66.240000px;}
.yc3{bottom:66.270000px;}
.ya9{bottom:66.285000px;}
.yc{bottom:68.400000px;}
.y2b{bottom:76.359000px;}
.y46{bottom:79.560000px;}
.yb1{bottom:86.760000px;}
.yc6{bottom:86.790000px;}
.yc2{bottom:87.150000px;}
.ya8{bottom:87.165000px;}
.ya{bottom:94.716000px;}
.y2a{bottom:107.319000px;}
.yb0{bottom:107.670000px;}
.ya7{bottom:107.685000px;}
.y45{bottom:110.520000px;}
.yaf{bottom:128.190000px;}
.yc1{bottom:128.550000px;}
.ya6{bottom:128.565000px;}
.y74{bottom:133.596000px;}
.y24{bottom:136.836000px;}
.y29{bottom:138.639000px;}
.y44{bottom:141.870000px;}
.ye4{bottom:146.196000px;}
.yae{bottom:149.070000px;}
.ya5{bottom:149.085000px;}
.y53{bottom:149.436000px;}
.yd6{bottom:156.990000px;}
.yb7{bottom:158.430000px;}
.y10a{bottom:158.790000px;}
.ye3{bottom:163.110000px;}
.y73{bottom:164.910000px;}
.y124{bottom:165.990000px;}
.yad{bottom:169.590000px;}
.y28{bottom:169.599000px;}
.ya4{bottom:169.995000px;}
.y8c{bottom:170.670000px;}
.y43{bottom:172.830000px;}
.ybc{bottom:176.790000px;}
.y52{bottom:180.390000px;}
.y102{bottom:183.990000px;}
.yd5{bottom:188.310000px;}
.yb6{bottom:189.390000px;}
.y109{bottom:190.110000px;}
.ya3{bottom:190.515000px;}
.ye2{bottom:194.070000px;}
.y72{bottom:195.870000px;}
.y123{bottom:197.310000px;}
.y27{bottom:200.589000px;}
.y8b{bottom:201.675000px;}
.y42{bottom:203.790000px;}
.ybb{bottom:208.155000px;}
.yb5{bottom:210.675000px;}
.ydf{bottom:211.035000px;}
.y51{bottom:211.395000px;}
.y101{bottom:215.355000px;}
.yd4{bottom:219.315000px;}
.y108{bottom:221.115000px;}
.ye1{bottom:225.075000px;}
.y71{bottom:226.875000px;}
.y122{bottom:228.315000px;}
.yac{bottom:228.675000px;}
.y26{bottom:231.549000px;}
.ya2{bottom:231.915000px;}
.y8a{bottom:232.635000px;}
.y41{bottom:234.750000px;}
.yba{bottom:239.115000px;}
.y50{bottom:242.715000px;}
.ye0{bottom:245.955000px;}
.y100{bottom:246.315000px;}
.yd3{bottom:250.275000px;}
.y70{bottom:252.075000px;}
.yde{bottom:252.435000px;}
.y25{bottom:252.789000px;}
.ya1{bottom:252.795000px;}
.y121{bottom:259.275000px;}
.y89{bottom:263.595000px;}
.ydd{bottom:264.315000px;}
.y40{bottom:266.100000px;}
.yb9{bottom:270.075000px;}
.ya0{bottom:273.315000px;}
.y4f{bottom:273.675000px;}
.yff{bottom:277.275000px;}
.yd2{bottom:281.235000px;}
.y107{bottom:283.035000px;}
.y120{bottom:290.235000px;}
.y6f{bottom:292.035000px;}
.y9f{bottom:294.225000px;}
.y88{bottom:294.915000px;}
.y3f{bottom:297.060000px;}
.yb8{bottom:301.035000px;}
.y4e{bottom:304.635000px;}
.yfe{bottom:308.235000px;}
.yd1{bottom:312.195000px;}
.y106{bottom:313.995000px;}
.y9e{bottom:314.745000px;}
.y11f{bottom:321.555000px;}
.y87{bottom:325.905000px;}
.y3e{bottom:328.020000px;}
.y6e{bottom:332.025000px;}
.y4d{bottom:335.625000px;}
.yfd{bottom:339.225000px;}
.yd0{bottom:343.545000px;}
.y105{bottom:345.345000px;}
.y11e{bottom:352.545000px;}
.y9d{bottom:356.145000px;}
.y86{bottom:356.865000px;}
.y3d{bottom:358.980000px;}
.y6d{bottom:363.345000px;}
.y4c{bottom:366.945000px;}
.yfc{bottom:370.545000px;}
.ycf{bottom:374.505000px;}
.y104{bottom:376.305000px;}
.y9c{bottom:377.025000px;}
.y11d{bottom:383.505000px;}
.y85{bottom:387.825000px;}
.y3c{bottom:390.345000px;}
.y6c{bottom:394.305000px;}
.y9b{bottom:397.545000px;}
.yfb{bottom:401.505000px;}
.yce{bottom:405.465000px;}
.y4b{bottom:406.905000px;}
.y23{bottom:411.585000px;}
.y11c{bottom:414.465000px;}
.y92{bottom:414.825000px;}
.y103{bottom:416.265000px;}
.y9a{bottom:418.470000px;}
.y84{bottom:419.145000px;}
.y3b{bottom:421.305000px;}
.y6b{bottom:425.265000px;}
.y22{bottom:428.865000px;}
.yfa{bottom:432.465000px;}
.ycd{bottom:436.425000px;}
.y4a{bottom:437.865000px;}
.y99{bottom:438.990000px;}
.y3a{bottom:442.185000px;}
.y11b{bottom:445.785000px;}
.y83{bottom:450.150000px;}
.y6a{bottom:456.270000px;}
.y21{bottom:456.990000px;}
.y98{bottom:459.870000px;}
.y32{bottom:462.750000px;}
.yf9{bottom:463.470000px;}
.ycc{bottom:467.790000px;}
.y11a{bottom:476.790000px;}
.y97{bottom:480.390000px;}
.y39{bottom:481.065000px;}
.y82{bottom:481.110000px;}
.y69{bottom:487.590000px;}
.y20{bottom:487.950000px;}
.yf8{bottom:494.790000px;}
.ycb{bottom:498.750000px;}
.y96{bottom:501.270000px;}
.y38{bottom:501.615000px;}
.y119{bottom:507.750000px;}
.y81{bottom:512.070000px;}
.y68{bottom:518.550000px;}
.y1f{bottom:519.270000px;}
.y95{bottom:521.790000px;}
.yf7{bottom:525.750000px;}
.yca{bottom:529.710000px;}
.y118{bottom:538.710000px;}
.y94{bottom:542.700000px;}
.y80{bottom:543.390000px;}
.y67{bottom:549.510000px;}
.y1e{bottom:550.230000px;}
.y37{bottom:550.575000px;}
.yc9{bottom:550.950000px;}
.ydc{bottom:554.190000px;}
.yf6{bottom:556.710000px;}
.y93{bottom:563.220000px;}
.yc5{bottom:568.950000px;}
.y117{bottom:570.030000px;}
.y7f{bottom:574.350000px;}
.y66{bottom:580.500000px;}
.y1d{bottom:581.220000px;}
.y36{bottom:581.535000px;}
.yf5{bottom:587.700000px;}
.y116{bottom:601.020000px;}
.y7e{bottom:605.340000px;}
.y65{bottom:611.820000px;}
.y1c{bottom:612.180000px;}
.y35{bottom:612.495000px;}
.ydb{bottom:617.580000px;}
.yf4{bottom:619.020000px;}
.y115{bottom:631.980000px;}
.y7d{bottom:636.300000px;}
.y1b{bottom:640.980000px;}
.y64{bottom:642.780000px;}
.y34{bottom:643.500000px;}
.yf3{bottom:649.980000px;}
.yda{bottom:652.500000px;}
.y114{bottom:662.940000px;}
.y7c{bottom:667.620000px;}
.y1a{bottom:669.060000px;}
.yc0{bottom:672.300000px;}
.y63{bottom:673.740000px;}
.y33{bottom:674.820000px;}
.yf2{bottom:680.940000px;}
.y113{bottom:694.260000px;}
.y7b{bottom:698.580000px;}
.y19{bottom:700.380000px;}
.yd9{bottom:701.850000px;}
.y62{bottom:704.730000px;}
.yf1{bottom:711.930000px;}
.y7a{bottom:723.810000px;}
.y112{bottom:725.250000px;}
.y18{bottom:731.370000px;}
.yd8{bottom:732.810000px;}
.y61{bottom:736.050000px;}
.yf0{bottom:743.250000px;}
.y17{bottom:751.530000px;}
.y111{bottom:756.210000px;}
.y79{bottom:763.770000px;}
.y60{bottom:767.010000px;}
.y16{bottom:769.530000px;}
.yef{bottom:774.210000px;}
.y110{bottom:787.170000px;}
.y15{bottom:790.410000px;}
.y78{bottom:794.730000px;}
.y5f{bottom:797.970000px;}
.yee{bottom:805.170000px;}
.y14{bottom:810.930000px;}
.y10f{bottom:818.130000px;}
.yd7{bottom:819.930000px;}
.y77{bottom:826.050000px;}
.y5e{bottom:828.975000px;}
.y13{bottom:831.855000px;}
.yed{bottom:836.175000px;}
.y10e{bottom:849.495000px;}
.y12{bottom:852.375000px;}
.y76{bottom:857.055000px;}
.y5d{bottom:860.295000px;}
.yec{bottom:867.495000px;}
.y11{bottom:873.255000px;}
.y10d{bottom:880.455000px;}
.y75{bottom:882.255000px;}
.y5c{bottom:891.255000px;}
.y10{bottom:893.775000px;}
.yeb{bottom:898.455000px;}
.ybf{bottom:901.695000px;}
.y10c{bottom:911.415000px;}
.yf{bottom:915.375000px;}
.y5b{bottom:922.215000px;}
.yea{bottom:929.415000px;}
.ybe{bottom:936.615000px;}
.y9{bottom:941.295000px;}
.y10b{bottom:942.375000px;}
.y5a{bottom:953.205000px;}
.y8{bottom:958.605000px;}
.ye9{bottom:960.405000px;}
.y7{bottom:972.645000px;}
.ybd{bottom:975.525000px;}
.y59{bottom:984.525000px;}
.ye8{bottom:991.725000px;}
.y90{bottom:996.045000px;}
.y58{bottom:1015.485000px;}
.ye7{bottom:1022.685000px;}
.y6{bottom:1027.365000px;}
.y8f{bottom:1030.965000px;}
.y57{bottom:1046.445000px;}
.y5{bottom:1052.205000px;}
.ye6{bottom:1053.645000px;}
.y8e{bottom:1069.845000px;}
.y4{bottom:1072.725000px;}
.y56{bottom:1077.405000px;}
.ye5{bottom:1078.890000px;}
.y3{bottom:1094.010000px;}
.y8d{bottom:1100.130000px;}
.y55{bottom:1108.770000px;}
.y2{bottom:1114.530000px;}
.y1{bottom:1131.450000px;}
.y54{bottom:1139.730000px;}
.y31{bottom:1166.370000px;}
.y30{bottom:1180.410000px;}
.y2f{bottom:1201.290000px;}
.y2e{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h14{height:20.520000px;}
.h11{height:20.880000px;}
.h2{height:43.794844px;}
.h7{height:48.013594px;}
.h5{height:48.147188px;}
.ha{height:51.996094px;}
.h3{height:52.136719px;}
.hf{height:52.417969px;}
.h4{height:53.067656px;}
.hb{height:61.770234px;}
.h17{height:61.956000px;}
.hc{height:63.175781px;}
.h19{height:63.351562px;}
.h10{height:69.056016px;}
.h9{height:69.863203px;}
.h16{height:103.356000px;}
.h13{height:186.150000px;}
.h15{height:227.955000px;}
.hd{height:269.355000px;}
.h18{height:289.875000px;}
.h12{height:579.780000px;}
.he{height:691.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:248.865000px;}
.w8{width:249.225000px;}
.w4{width:334.590000px;}
.w6{width:334.950000px;}
.w3{width:335.310000px;}
.w5{width:669.885000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x19{left:109.116000px;}
.x7{left:117.035987px;}
.x1c{left:124.590000px;}
.x11{left:134.351987px;}
.xe{left:141.911987px;}
.xd{left:144.431987px;}
.xb{left:148.751987px;}
.x1e{left:160.274987px;}
.x18{left:167.834987px;}
.x1f{left:171.074987px;}
.x16{left:186.194987px;}
.x1d{left:220.784987px;}
.x2{left:259.664987px;}
.x15{left:264.704987px;}
.x6{left:279.464987px;}
.xa{left:298.950000px;}
.xc{left:332.069987px;}
.x17{left:334.584000px;}
.xf{left:345.029987px;}
.x1a{left:357.990000px;}
.x14{left:361.949987px;}
.x5{left:368.069987px;}
.x4{left:385.349987px;}
.x10{left:388.589987px;}
.x13{left:399.059987px;}
.x3{left:403.739987px;}
.x12{left:435.059987px;}
.x8{left:451.979987px;}
.x1b{left:607.215000px;}
.x1{left:797.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls11{letter-spacing:-1.152000pt;}
.lsa{letter-spacing:-0.864000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.442667pt;}
.ls8{letter-spacing:-0.432533pt;}
.lse{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017920pt;}
.ls12{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.442880pt;}
.lsd{letter-spacing:0.445333pt;}
.ls6{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsb{letter-spacing:7.040000pt;}
.ls10{letter-spacing:7.951360pt;}
.lsf{letter-spacing:11.791360pt;}
.lsc{letter-spacing:55.178667pt;}
.ls7{letter-spacing:65.536000pt;}
.ls13{letter-spacing:168.058027pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.007467pt;}
.ws2{word-spacing:-11.717333pt;}
.ws6{word-spacing:-11.005333pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-3.520000pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._e{width:3.520000pt;}
._10{width:4.533333pt;}
._16{width:6.208000pt;}
._17{width:7.296000pt;}
._9{width:8.661333pt;}
._8{width:10.176000pt;}
._7{width:11.264000pt;}
._11{width:12.160000pt;}
._f{width:13.322667pt;}
._d{width:14.528000pt;}
._18{width:16.896000pt;}
._1d{width:17.984000pt;}
._13{width:19.456000pt;}
._12{width:20.928000pt;}
._14{width:21.941333pt;}
._a{width:23.232000pt;}
._b{width:24.256000pt;}
._1e{width:25.408000pt;}
._19{width:26.816000pt;}
._1a{width:27.776000pt;}
._24{width:30.435413pt;}
._23{width:31.644587pt;}
._1c{width:33.152000pt;}
._1b{width:34.368000pt;}
._1f{width:35.264000pt;}
._15{width:36.160000pt;}
._21{width:41.280000pt;}
._22{width:42.378667pt;}
._20{width:76.298667pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y49{bottom:2.880000pt;}
.yb4{bottom:3.520000pt;}
.y91{bottom:3.840000pt;}
.y2d{bottom:12.794667pt;}
.y48{bottom:18.240000pt;}
.yab{bottom:22.080000pt;}
.yc8{bottom:22.106667pt;}
.ye{bottom:38.720000pt;}
.y2c{bottom:40.314667pt;}
.yb3{bottom:40.320000pt;}
.yc7{bottom:40.346667pt;}
.yc4{bottom:40.666667pt;}
.yaa{bottom:40.680000pt;}
.y47{bottom:43.200000pt;}
.yb2{bottom:58.880000pt;}
.yc3{bottom:58.906667pt;}
.ya9{bottom:58.920000pt;}
.yc{bottom:60.800000pt;}
.y2b{bottom:67.874667pt;}
.y46{bottom:70.720000pt;}
.yb1{bottom:77.120000pt;}
.yc6{bottom:77.146667pt;}
.yc2{bottom:77.466667pt;}
.ya8{bottom:77.480000pt;}
.ya{bottom:84.192000pt;}
.y2a{bottom:95.394667pt;}
.yb0{bottom:95.706667pt;}
.ya7{bottom:95.720000pt;}
.y45{bottom:98.240000pt;}
.yaf{bottom:113.946667pt;}
.yc1{bottom:114.266667pt;}
.ya6{bottom:114.280000pt;}
.y74{bottom:118.752000pt;}
.y24{bottom:121.632000pt;}
.y29{bottom:123.234667pt;}
.y44{bottom:126.106667pt;}
.ye4{bottom:129.952000pt;}
.yae{bottom:132.506667pt;}
.ya5{bottom:132.520000pt;}
.y53{bottom:132.832000pt;}
.yd6{bottom:139.546667pt;}
.yb7{bottom:140.826667pt;}
.y10a{bottom:141.146667pt;}
.ye3{bottom:144.986667pt;}
.y73{bottom:146.586667pt;}
.y124{bottom:147.546667pt;}
.yad{bottom:150.746667pt;}
.y28{bottom:150.754667pt;}
.ya4{bottom:151.106667pt;}
.y8c{bottom:151.706667pt;}
.y43{bottom:153.626667pt;}
.ybc{bottom:157.146667pt;}
.y52{bottom:160.346667pt;}
.y102{bottom:163.546667pt;}
.yd5{bottom:167.386667pt;}
.yb6{bottom:168.346667pt;}
.y109{bottom:168.986667pt;}
.ya3{bottom:169.346667pt;}
.ye2{bottom:172.506667pt;}
.y72{bottom:174.106667pt;}
.y123{bottom:175.386667pt;}
.y27{bottom:178.301333pt;}
.y8b{bottom:179.266667pt;}
.y42{bottom:181.146667pt;}
.ybb{bottom:185.026667pt;}
.yb5{bottom:187.266667pt;}
.ydf{bottom:187.586667pt;}
.y51{bottom:187.906667pt;}
.y101{bottom:191.426667pt;}
.yd4{bottom:194.946667pt;}
.y108{bottom:196.546667pt;}
.ye1{bottom:200.066667pt;}
.y71{bottom:201.666667pt;}
.y122{bottom:202.946667pt;}
.yac{bottom:203.266667pt;}
.y26{bottom:205.821333pt;}
.ya2{bottom:206.146667pt;}
.y8a{bottom:206.786667pt;}
.y41{bottom:208.666667pt;}
.yba{bottom:212.546667pt;}
.y50{bottom:215.746667pt;}
.ye0{bottom:218.626667pt;}
.y100{bottom:218.946667pt;}
.yd3{bottom:222.466667pt;}
.y70{bottom:224.066667pt;}
.yde{bottom:224.386667pt;}
.y25{bottom:224.701333pt;}
.ya1{bottom:224.706667pt;}
.y121{bottom:230.466667pt;}
.y89{bottom:234.306667pt;}
.ydd{bottom:234.946667pt;}
.y40{bottom:236.533333pt;}
.yb9{bottom:240.066667pt;}
.ya0{bottom:242.946667pt;}
.y4f{bottom:243.266667pt;}
.yff{bottom:246.466667pt;}
.yd2{bottom:249.986667pt;}
.y107{bottom:251.586667pt;}
.y120{bottom:257.986667pt;}
.y6f{bottom:259.586667pt;}
.y9f{bottom:261.533333pt;}
.y88{bottom:262.146667pt;}
.y3f{bottom:264.053333pt;}
.yb8{bottom:267.586667pt;}
.y4e{bottom:270.786667pt;}
.yfe{bottom:273.986667pt;}
.yd1{bottom:277.506667pt;}
.y106{bottom:279.106667pt;}
.y9e{bottom:279.773333pt;}
.y11f{bottom:285.826667pt;}
.y87{bottom:289.693333pt;}
.y3e{bottom:291.573333pt;}
.y6e{bottom:295.133333pt;}
.y4d{bottom:298.333333pt;}
.yfd{bottom:301.533333pt;}
.yd0{bottom:305.373333pt;}
.y105{bottom:306.973333pt;}
.y11e{bottom:313.373333pt;}
.y9d{bottom:316.573333pt;}
.y86{bottom:317.213333pt;}
.y3d{bottom:319.093333pt;}
.y6d{bottom:322.973333pt;}
.y4c{bottom:326.173333pt;}
.yfc{bottom:329.373333pt;}
.ycf{bottom:332.893333pt;}
.y104{bottom:334.493333pt;}
.y9c{bottom:335.133333pt;}
.y11d{bottom:340.893333pt;}
.y85{bottom:344.733333pt;}
.y3c{bottom:346.973333pt;}
.y6c{bottom:350.493333pt;}
.y9b{bottom:353.373333pt;}
.yfb{bottom:356.893333pt;}
.yce{bottom:360.413333pt;}
.y4b{bottom:361.693333pt;}
.y23{bottom:365.853333pt;}
.y11c{bottom:368.413333pt;}
.y92{bottom:368.733333pt;}
.y103{bottom:370.013333pt;}
.y9a{bottom:371.973333pt;}
.y84{bottom:372.573333pt;}
.y3b{bottom:374.493333pt;}
.y6b{bottom:378.013333pt;}
.y22{bottom:381.213333pt;}
.yfa{bottom:384.413333pt;}
.ycd{bottom:387.933333pt;}
.y4a{bottom:389.213333pt;}
.y99{bottom:390.213333pt;}
.y3a{bottom:393.053333pt;}
.y11b{bottom:396.253333pt;}
.y83{bottom:400.133333pt;}
.y6a{bottom:405.573333pt;}
.y21{bottom:406.213333pt;}
.y98{bottom:408.773333pt;}
.y32{bottom:411.333333pt;}
.yf9{bottom:411.973333pt;}
.ycc{bottom:415.813333pt;}
.y11a{bottom:423.813333pt;}
.y97{bottom:427.013333pt;}
.y39{bottom:427.613333pt;}
.y82{bottom:427.653333pt;}
.y69{bottom:433.413333pt;}
.y20{bottom:433.733333pt;}
.yf8{bottom:439.813333pt;}
.ycb{bottom:443.333333pt;}
.y96{bottom:445.573333pt;}
.y38{bottom:445.880000pt;}
.y119{bottom:451.333333pt;}
.y81{bottom:455.173333pt;}
.y68{bottom:460.933333pt;}
.y1f{bottom:461.573333pt;}
.y95{bottom:463.813333pt;}
.yf7{bottom:467.333333pt;}
.yca{bottom:470.853333pt;}
.y118{bottom:478.853333pt;}
.y94{bottom:482.400000pt;}
.y80{bottom:483.013333pt;}
.y67{bottom:488.453333pt;}
.y1e{bottom:489.093333pt;}
.y37{bottom:489.400000pt;}
.yc9{bottom:489.733333pt;}
.ydc{bottom:492.613333pt;}
.yf6{bottom:494.853333pt;}
.y93{bottom:500.640000pt;}
.yc5{bottom:505.733333pt;}
.y117{bottom:506.693333pt;}
.y7f{bottom:510.533333pt;}
.y66{bottom:516.000000pt;}
.y1d{bottom:516.640000pt;}
.y36{bottom:516.920000pt;}
.yf5{bottom:522.400000pt;}
.y116{bottom:534.240000pt;}
.y7e{bottom:538.080000pt;}
.y65{bottom:543.840000pt;}
.y1c{bottom:544.160000pt;}
.y35{bottom:544.440000pt;}
.ydb{bottom:548.960000pt;}
.yf4{bottom:550.240000pt;}
.y115{bottom:561.760000pt;}
.y7d{bottom:565.600000pt;}
.y1b{bottom:569.760000pt;}
.y64{bottom:571.360000pt;}
.y34{bottom:572.000000pt;}
.yf3{bottom:577.760000pt;}
.yda{bottom:580.000000pt;}
.y114{bottom:589.280000pt;}
.y7c{bottom:593.440000pt;}
.y1a{bottom:594.720000pt;}
.yc0{bottom:597.600000pt;}
.y63{bottom:598.880000pt;}
.y33{bottom:599.840000pt;}
.yf2{bottom:605.280000pt;}
.y113{bottom:617.120000pt;}
.y7b{bottom:620.960000pt;}
.y19{bottom:622.560000pt;}
.yd9{bottom:623.866667pt;}
.y62{bottom:626.426667pt;}
.yf1{bottom:632.826667pt;}
.y7a{bottom:643.386667pt;}
.y112{bottom:644.666667pt;}
.y18{bottom:650.106667pt;}
.yd8{bottom:651.386667pt;}
.y61{bottom:654.266667pt;}
.yf0{bottom:660.666667pt;}
.y17{bottom:668.026667pt;}
.y111{bottom:672.186667pt;}
.y79{bottom:678.906667pt;}
.y60{bottom:681.786667pt;}
.y16{bottom:684.026667pt;}
.yef{bottom:688.186667pt;}
.y110{bottom:699.706667pt;}
.y15{bottom:702.586667pt;}
.y78{bottom:706.426667pt;}
.y5f{bottom:709.306667pt;}
.yee{bottom:715.706667pt;}
.y14{bottom:720.826667pt;}
.y10f{bottom:727.226667pt;}
.yd7{bottom:728.826667pt;}
.y77{bottom:734.266667pt;}
.y5e{bottom:736.866667pt;}
.y13{bottom:739.426667pt;}
.yed{bottom:743.266667pt;}
.y10e{bottom:755.106667pt;}
.y12{bottom:757.666667pt;}
.y76{bottom:761.826667pt;}
.y5d{bottom:764.706667pt;}
.yec{bottom:771.106667pt;}
.y11{bottom:776.226667pt;}
.y10d{bottom:782.626667pt;}
.y75{bottom:784.226667pt;}
.y5c{bottom:792.226667pt;}
.y10{bottom:794.466667pt;}
.yeb{bottom:798.626667pt;}
.ybf{bottom:801.506667pt;}
.y10c{bottom:810.146667pt;}
.yf{bottom:813.666667pt;}
.y5b{bottom:819.746667pt;}
.yea{bottom:826.146667pt;}
.ybe{bottom:832.546667pt;}
.y9{bottom:836.706667pt;}
.y10b{bottom:837.666667pt;}
.y5a{bottom:847.293333pt;}
.y8{bottom:852.093333pt;}
.ye9{bottom:853.693333pt;}
.y7{bottom:864.573333pt;}
.ybd{bottom:867.133333pt;}
.y59{bottom:875.133333pt;}
.ye8{bottom:881.533333pt;}
.y90{bottom:885.373333pt;}
.y58{bottom:902.653333pt;}
.ye7{bottom:909.053333pt;}
.y6{bottom:913.213333pt;}
.y8f{bottom:916.413333pt;}
.y57{bottom:930.173333pt;}
.y5{bottom:935.293333pt;}
.ye6{bottom:936.573333pt;}
.y8e{bottom:950.973333pt;}
.y4{bottom:953.533333pt;}
.y56{bottom:957.693333pt;}
.ye5{bottom:959.013333pt;}
.y3{bottom:972.453333pt;}
.y8d{bottom:977.893333pt;}
.y55{bottom:985.573333pt;}
.y2{bottom:990.693333pt;}
.y1{bottom:1005.733333pt;}
.y54{bottom:1013.093333pt;}
.y31{bottom:1036.773333pt;}
.y30{bottom:1049.253333pt;}
.y2f{bottom:1067.813333pt;}
.y2e{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h14{height:18.240000pt;}
.h11{height:18.560000pt;}
.h2{height:38.928750pt;}
.h7{height:42.678750pt;}
.h5{height:42.797500pt;}
.ha{height:46.218750pt;}
.h3{height:46.343750pt;}
.hf{height:46.593750pt;}
.h4{height:47.171250pt;}
.hb{height:54.906875pt;}
.h17{height:55.072000pt;}
.hc{height:56.156250pt;}
.h19{height:56.312500pt;}
.h10{height:61.383125pt;}
.h9{height:62.100625pt;}
.h16{height:91.872000pt;}
.h13{height:165.466667pt;}
.h15{height:202.626667pt;}
.hd{height:239.426667pt;}
.h18{height:257.666667pt;}
.h12{height:515.360000pt;}
.he{height:614.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:221.213333pt;}
.w8{width:221.533333pt;}
.w4{width:297.413333pt;}
.w6{width:297.733333pt;}
.w3{width:298.053333pt;}
.w5{width:595.453333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x19{left:96.992000pt;}
.x7{left:104.031988pt;}
.x1c{left:110.746667pt;}
.x11{left:119.423988pt;}
.xe{left:126.143988pt;}
.xd{left:128.383988pt;}
.xb{left:132.223988pt;}
.x1e{left:142.466655pt;}
.x18{left:149.186655pt;}
.x1f{left:152.066655pt;}
.x16{left:165.506655pt;}
.x1d{left:196.253322pt;}
.x2{left:230.813322pt;}
.x15{left:235.293322pt;}
.x6{left:248.413322pt;}
.xa{left:265.733333pt;}
.xc{left:295.173322pt;}
.x17{left:297.408000pt;}
.xf{left:306.693322pt;}
.x1a{left:318.213333pt;}
.x14{left:321.733322pt;}
.x5{left:327.173322pt;}
.x4{left:342.533322pt;}
.x10{left:345.413322pt;}
.x13{left:354.719988pt;}
.x3{left:358.879988pt;}
.x12{left:386.719988pt;}
.x8{left:401.759988pt;}
.x1b{left:539.746667pt;}
.x1{left:709.093322pt;}
}




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