
    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_971eb6d9886681567ddb6beb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_5cf43967abc6bef0c04ce1cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0fa9c93f7531584f95620839.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5e42d92f768d0934e2dfd823.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_d68a44f02800cd2ac47f05f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.132812;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_a4246d3b560948fb16f136d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.132812;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.900000px;}
.ls2{letter-spacing:33.960000px;}
.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:-28.944000px;}
.ws6{word-spacing:-28.800000px;}
.ws0{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._19{margin-left:-5.400000px;}
._e{margin-left:-3.888000px;}
._2{margin-left:-2.459520px;}
._1{margin-left:-1.068480px;}
._0{width:1.532160px;}
._9{width:2.667840px;}
._8{width:4.464000px;}
._3{width:5.472000px;}
._4{width:6.540000px;}
._f{width:8.088000px;}
._7{width:9.144000px;}
._5{width:11.088000px;}
._6{width:12.507840px;}
._13{width:14.040000px;}
._14{width:15.264000px;}
._18{width:16.272000px;}
._15{width:19.776000px;}
._16{width:21.048000px;}
._17{width:22.176000px;}
._1f{width:23.379840px;}
._23{width:24.624000px;}
._10{width:25.704000px;}
._11{width:26.732160px;}
._12{width:27.936000px;}
._22{width:29.304000px;}
._24{width:30.528000px;}
._c{width:31.680000px;}
._d{width:32.688000px;}
._21{width:34.740480px;}
._1a{width:36.288000px;}
._20{width:37.368000px;}
._1e{width:39.611520px;}
._1d{width:40.740480px;}
._25{width:44.928000px;}
._26{width:46.579680px;}
._1b{width:50.256000px;}
._1c{width:51.528000px;}
._a{width:60.552000px;}
._b{width:62.064000px;}
._28{width:148.464000px;}
._29{width:149.472000px;}
._27{width:183.456000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:3.960000px;}
.ybc{bottom:24.660000px;}
.ybf{bottom:24.705000px;}
.ybb{bottom:45.360000px;}
.ybe{bottom:45.405000px;}
.y2{bottom:57.780000px;}
.yba{bottom:66.060000px;}
.y1{bottom:78.480000px;}
.yc1{bottom:86.760000px;}
.y11b{bottom:116.100000px;}
.y115{bottom:120.960000px;}
.y5c{bottom:122.400000px;}
.y22{bottom:124.200000px;}
.y108{bottom:124.380000px;}
.ye4{bottom:126.360000px;}
.y7d{bottom:129.780000px;}
.y92{bottom:140.040000px;}
.ye3{bottom:142.020000px;}
.y114{bottom:144.900000px;}
.y5b{bottom:146.160000px;}
.y21{bottom:147.960000px;}
.y107{bottom:148.140000px;}
.y45{bottom:148.860000px;}
.y7c{bottom:153.540000px;}
.yac{bottom:154.980000px;}
.ye2{bottom:157.500000px;}
.y13c{bottom:158.400000px;}
.y91{bottom:163.800000px;}
.y95{bottom:168.660000px;}
.y5a{bottom:169.920000px;}
.y20{bottom:171.930000px;}
.y106{bottom:172.110000px;}
.y44{bottom:172.650000px;}
.ye1{bottom:173.190000px;}
.y7b{bottom:177.510000px;}
.y153{bottom:177.870000px;}
.yab{bottom:178.770000px;}
.y13b{bottom:182.370000px;}
.y90{bottom:187.590000px;}
.ye0{bottom:188.850000px;}
.y94{bottom:192.450000px;}
.y59{bottom:193.890000px;}
.y1f{bottom:195.690000px;}
.y105{bottom:195.870000px;}
.y43{bottom:196.410000px;}
.yaa{bottom:202.530000px;}
.ydf{bottom:204.510000px;}
.y13a{bottom:206.130000px;}
.y8f{bottom:211.350000px;}
.y7a{bottom:216.210000px;}
.y152{bottom:216.570000px;}
.y58{bottom:217.650000px;}
.y1e{bottom:219.450000px;}
.y104{bottom:219.630000px;}
.yde{bottom:220.170000px;}
.ya9{bottom:226.470000px;}
.y113{bottom:231.330000px;}
.y42{bottom:235.290000px;}
.ydd{bottom:235.830000px;}
.y79{bottom:239.970000px;}
.y151{bottom:240.510000px;}
.y57{bottom:241.410000px;}
.y1d{bottom:243.210000px;}
.y103{bottom:243.390000px;}
.y139{bottom:244.830000px;}
.ya8{bottom:250.230000px;}
.ydc{bottom:251.490000px;}
.y112{bottom:255.090000px;}
.y41{bottom:259.050000px;}
.y78{bottom:263.910000px;}
.y56{bottom:265.170000px;}
.ydb{bottom:266.970000px;}
.y138{bottom:268.770000px;}
.y8e{bottom:273.990000px;}
.y111{bottom:278.850000px;}
.y150{bottom:279.210000px;}
.y102{bottom:282.270000px;}
.yda{bottom:282.630000px;}
.y40{bottom:282.810000px;}
.y1c{bottom:282.990000px;}
.y77{bottom:287.670000px;}
.y55{bottom:289.110000px;}
.y8d{bottom:297.750000px;}
.yd9{bottom:298.290000px;}
.y110{bottom:302.610000px;}
.y85{bottom:304.050000px;}
.y101{bottom:306.030000px;}
.y137{bottom:307.470000px;}
.y76{bottom:311.430000px;}
.ya7{bottom:312.870000px;}
.yd8{bottom:313.950000px;}
.y14f{bottom:318.090000px;}
.y3f{bottom:321.690000px;}
.y1b{bottom:324.930000px;}
.y10f{bottom:326.550000px;}
.y93{bottom:327.450000px;}
.y54{bottom:327.810000px;}
.yd7{bottom:329.610000px;}
.y100{bottom:329.790000px;}
.y136{bottom:331.230000px;}
.y75{bottom:335.190000px;}
.ya6{bottom:336.630000px;}
.y14e{bottom:341.850000px;}
.yd6{bottom:345.270000px;}
.y3e{bottom:345.450000px;}
.y10e{bottom:350.310000px;}
.y53{bottom:351.570000px;}
.yff{bottom:353.730000px;}
.y74{bottom:359.130000px;}
.y99{bottom:360.390000px;}
.yd5{bottom:360.750000px;}
.y1a{bottom:363.630000px;}
.y3d{bottom:369.210000px;}
.y135{bottom:370.110000px;}
.y10d{bottom:374.070000px;}
.y161{bottom:375.330000px;}
.y52{bottom:375.510000px;}
.yd4{bottom:376.410000px;}
.y14d{bottom:380.730000px;}
.ya5{bottom:382.890000px;}
.y98{bottom:384.150000px;}
.y19{bottom:387.390000px;}
.yd3{bottom:392.070000px;}
.yfe{bottom:392.430000px;}
.y8c{bottom:392.970000px;}
.y73{bottom:397.830000px;}
.y51{bottom:399.270000px;}
.y14c{bottom:404.535000px;}
.yb6{bottom:406.695000px;}
.yd2{bottom:407.775000px;}
.y3c{bottom:408.135000px;}
.y134{bottom:409.035000px;}
.y10c{bottom:412.995000px;}
.y160{bottom:415.155000px;}
.yfd{bottom:416.235000px;}
.y11a{bottom:416.955000px;}
.y72{bottom:421.635000px;}
.y50{bottom:423.075000px;}
.yd1{bottom:423.435000px;}
.y18{bottom:426.315000px;}
.y3b{bottom:431.895000px;}
.y133{bottom:432.795000px;}
.y10b{bottom:436.755000px;}
.yd0{bottom:439.095000px;}
.yfc{bottom:440.175000px;}
.y119{bottom:440.715000px;}
.y14b{bottom:443.235000px;}
.y71{bottom:445.575000px;}
.y4f{bottom:446.835000px;}
.y17{bottom:450.075000px;}
.ycf{bottom:454.755000px;}
.y8b{bottom:455.655000px;}
.y132{bottom:456.555000px;}
.y15f{bottom:456.915000px;}
.ya4{bottom:460.515000px;}
.y118{bottom:464.475000px;}
.y14a{bottom:467.175000px;}
.y70{bottom:469.335000px;}
.yce{bottom:470.235000px;}
.y3a{bottom:470.775000px;}
.y16{bottom:473.835000px;}
.yfb{bottom:478.875000px;}
.y8a{bottom:479.415000px;}
.ya3{bottom:484.275000px;}
.ycd{bottom:485.895000px;}
.y6f{bottom:493.095000px;}
.y39{bottom:494.535000px;}
.y15e{bottom:495.795000px;}
.y131{bottom:496.335000px;}
.y15{bottom:497.775000px;}
.ycc{bottom:501.555000px;}
.yfa{bottom:502.635000px;}
.y89{bottom:503.355000px;}
.y149{bottom:505.875000px;}
.ya2{bottom:508.215000px;}
.y4e{bottom:509.475000px;}
.y6e{bottom:516.855000px;}
.ycb{bottom:517.215000px;}
.y38{bottom:518.295000px;}
.y15d{bottom:519.555000px;}
.y14{bottom:521.535000px;}
.y88{bottom:527.115000px;}
.y148{bottom:529.635000px;}
.ya1{bottom:531.975000px;}
.yca{bottom:532.875000px;}
.y4d{bottom:533.235000px;}
.y130{bottom:538.095000px;}
.y6d{bottom:540.795000px;}
.y37{bottom:542.055000px;}
.yf9{bottom:542.415000px;}
.y15c{bottom:543.315000px;}
.y13{bottom:545.295000px;}
.yc9{bottom:548.535000px;}
.ya0{bottom:555.735000px;}
.y4c{bottom:557.175000px;}
.yc8{bottom:564.195000px;}
.y36{bottom:565.815000px;}
.y15b{bottom:567.075000px;}
.y147{bottom:568.515000px;}
.y12{bottom:569.055000px;}
.y12f{bottom:576.975000px;}
.y6c{bottom:579.495000px;}
.yc7{bottom:579.675000px;}
.y4b{bottom:580.935000px;}
.yf8{bottom:584.355000px;}
.y35{bottom:589.755000px;}
.y15a{bottom:591.015000px;}
.y146{bottom:592.275000px;}
.y11{bottom:592.995000px;}
.y12e{bottom:600.735000px;}
.y6b{bottom:603.255000px;}
.y4a{bottom:604.695000px;}
.yc6{bottom:611.895000px;}
.y34{bottom:613.515000px;}
.y145{bottom:616.035000px;}
.y10{bottom:616.755000px;}
.y10a{bottom:618.375000px;}
.yf7{bottom:623.055000px;}
.y12d{bottom:624.495000px;}
.y6a{bottom:627.225000px;}
.y49{bottom:628.485000px;}
.y159{bottom:630.645000px;}
.yc5{bottom:635.685000px;}
.y97{bottom:637.305000px;}
.y144{bottom:640.005000px;}
.yf{bottom:640.545000px;}
.y9f{bottom:642.165000px;}
.yf6{bottom:646.845000px;}
.y12c{bottom:648.285000px;}
.y69{bottom:650.985000px;}
.y33{bottom:652.425000px;}
.y96{bottom:661.065000px;}
.ye{bottom:664.305000px;}
.y9e{bottom:665.925000px;}
.y48{bottom:667.365000px;}
.yf5{bottom:670.785000px;}
.y12b{bottom:672.225000px;}
.y158{bottom:672.585000px;}
.yc4{bottom:674.565000px;}
.y68{bottom:674.745000px;}
.y32{bottom:676.185000px;}
.y143{bottom:678.705000px;}
.y109{bottom:681.945000px;}
.y117{bottom:685.005000px;}
.yd{bottom:688.245000px;}
.y9d{bottom:689.865000px;}
.y47{bottom:691.125000px;}
.yf4{bottom:694.545000px;}
.y12a{bottom:695.985000px;}
.yc3{bottom:698.325000px;}
.y67{bottom:698.505000px;}
.y84{bottom:699.945000px;}
.y142{bottom:702.465000px;}
.y116{bottom:708.765000px;}
.y157{bottom:711.285000px;}
.y9c{bottom:713.625000px;}
.y31{bottom:714.885000px;}
.yf3{bottom:718.305000px;}
.y129{bottom:719.745000px;}
.yc2{bottom:722.085000px;}
.y83{bottom:723.705000px;}
.y141{bottom:726.405000px;}
.yc{bottom:727.845000px;}
.y66{bottom:737.385000px;}
.yb5{bottom:738.285000px;}
.y30{bottom:738.825000px;}
.yc0{bottom:740.445000px;}
.yf2{bottom:742.065000px;}
.y82{bottom:747.465000px;}
.y156{bottom:750.165000px;}
.y128{bottom:758.625000px;}
.y65{bottom:761.145000px;}
.y2f{bottom:762.585000px;}
.y140{bottom:765.105000px;}
.yb{bottom:769.785000px;}
.y87{bottom:771.405000px;}
.yb4{bottom:780.225000px;}
.yf1{bottom:780.945000px;}
.y127{bottom:782.385000px;}
.y9b{bottom:784.905000px;}
.y2e{bottom:786.345000px;}
.y155{bottom:789.045000px;}
.y86{bottom:795.165000px;}
.y64{bottom:800.025000px;}
.y13f{bottom:803.985000px;}
.yf0{bottom:804.705000px;}
.y126{bottom:806.145000px;}
.ya{bottom:807.225000px;}
.y2d{bottom:810.105000px;}
.yb3{bottom:818.925000px;}
.y63{bottom:823.785000px;}
.y13e{bottom:827.745000px;}
.yef{bottom:828.465000px;}
.y125{bottom:829.905000px;}
.y2c{bottom:834.045000px;}
.y9{bottom:842.145000px;}
.yb2{bottom:842.685000px;}
.ybd{bottom:845.385000px;}
.y62{bottom:847.545000px;}
.y154{bottom:851.505000px;}
.yee{bottom:852.405000px;}
.y124{bottom:853.845000px;}
.y2b{bottom:857.850000px;}
.y9a{bottom:863.610000px;}
.yb1{bottom:866.670000px;}
.y61{bottom:871.530000px;}
.y46{bottom:872.790000px;}
.yed{bottom:876.210000px;}
.y8{bottom:876.930000px;}
.y123{bottom:877.650000px;}
.y81{bottom:881.610000px;}
.yb0{bottom:890.430000px;}
.y60{bottom:895.290000px;}
.y2a{bottom:896.550000px;}
.yec{bottom:899.970000px;}
.y122{bottom:901.410000px;}
.y80{bottom:905.370000px;}
.yb9{bottom:908.970000px;}
.y7{bottom:911.850000px;}
.yaf{bottom:914.190000px;}
.y5f{bottom:919.050000px;}
.y29{bottom:920.490000px;}
.y121{bottom:925.170000px;}
.y7f{bottom:929.130000px;}
.yae{bottom:937.950000px;}
.yeb{bottom:938.850000px;}
.y28{bottom:944.250000px;}
.y6{bottom:947.850000px;}
.y120{bottom:949.110000px;}
.y7e{bottom:953.070000px;}
.y5e{bottom:958.830000px;}
.yad{bottom:961.890000px;}
.y27{bottom:968.010000px;}
.y11f{bottom:972.870000px;}
.yea{bottom:976.110000px;}
.y13d{bottom:976.830000px;}
.y5{bottom:986.010000px;}
.y26{bottom:991.770000px;}
.yb7{bottom:995.190000px;}
.y11e{bottom:996.630000px;}
.y5d{bottom:1000.590000px;}
.ye9{bottom:1007.430000px;}
.y25{bottom:1015.710000px;}
.y11d{bottom:1020.390000px;}
.ye8{bottom:1022.910000px;}
.y4{bottom:1025.790000px;}
.ye7{bottom:1038.570000px;}
.y24{bottom:1039.470000px;}
.ye6{bottom:1054.230000px;}
.y3{bottom:1057.650000px;}
.y11c{bottom:1060.170000px;}
.y23{bottom:1063.230000px;}
.ye5{bottom:1069.890000px;}
.h6{height:20.700000px;}
.hb{height:40.160742px;}
.h7{height:50.800781px;}
.h1{height:52.066406px;}
.h5{height:52.171875px;}
.h4{height:52.417969px;}
.h3{height:59.436914px;}
.h9{height:62.136000px;}
.h2{height:67.565039px;}
.h8{height:82.800000px;}
.ha{height:103.500000px;}
.h0{height:1188.000000px;}
.w2{width:214.050000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:7.380000px;}
.x2{left:135.035986px;}
.xd{left:136.476000px;}
.x3{left:151.049986px;}
.xb{left:162.029986px;}
.x6{left:189.029986px;}
.xa{left:237.989986px;}
.x9{left:287.849986px;}
.x8{left:313.994986px;}
.x4{left:321.014986px;}
.xf{left:352.155000px;}
.x7{left:381.854986px;}
.x5{left:417.494986px;}
.xc{left:450.074986px;}
.x1{left:454.574986px;}
.x10{left:567.645000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls2{letter-spacing:30.186667pt;}
.ws7{word-spacing:-25.728000pt;}
.ws6{word-spacing:-25.600000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._19{margin-left:-4.800000pt;}
._e{margin-left:-3.456000pt;}
._2{margin-left:-2.186240pt;}
._1{margin-left:-0.949760pt;}
._0{width:1.361920pt;}
._9{width:2.371413pt;}
._8{width:3.968000pt;}
._3{width:4.864000pt;}
._4{width:5.813333pt;}
._f{width:7.189333pt;}
._7{width:8.128000pt;}
._5{width:9.856000pt;}
._6{width:11.118080pt;}
._13{width:12.480000pt;}
._14{width:13.568000pt;}
._18{width:14.464000pt;}
._15{width:17.578667pt;}
._16{width:18.709333pt;}
._17{width:19.712000pt;}
._1f{width:20.782080pt;}
._23{width:21.888000pt;}
._10{width:22.848000pt;}
._11{width:23.761920pt;}
._12{width:24.832000pt;}
._22{width:26.048000pt;}
._24{width:27.136000pt;}
._c{width:28.160000pt;}
._d{width:29.056000pt;}
._21{width:30.880427pt;}
._1a{width:32.256000pt;}
._20{width:33.216000pt;}
._1e{width:35.210240pt;}
._1d{width:36.213760pt;}
._25{width:39.936000pt;}
._26{width:41.404160pt;}
._1b{width:44.672000pt;}
._1c{width:45.802667pt;}
._a{width:53.824000pt;}
._b{width:55.168000pt;}
._28{width:131.968000pt;}
._29{width:132.864000pt;}
._27{width:163.072000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:3.520000pt;}
.ybc{bottom:21.920000pt;}
.ybf{bottom:21.960000pt;}
.ybb{bottom:40.320000pt;}
.ybe{bottom:40.360000pt;}
.y2{bottom:51.360000pt;}
.yba{bottom:58.720000pt;}
.y1{bottom:69.760000pt;}
.yc1{bottom:77.120000pt;}
.y11b{bottom:103.200000pt;}
.y115{bottom:107.520000pt;}
.y5c{bottom:108.800000pt;}
.y22{bottom:110.400000pt;}
.y108{bottom:110.560000pt;}
.ye4{bottom:112.320000pt;}
.y7d{bottom:115.360000pt;}
.y92{bottom:124.480000pt;}
.ye3{bottom:126.240000pt;}
.y114{bottom:128.800000pt;}
.y5b{bottom:129.920000pt;}
.y21{bottom:131.520000pt;}
.y107{bottom:131.680000pt;}
.y45{bottom:132.320000pt;}
.y7c{bottom:136.480000pt;}
.yac{bottom:137.760000pt;}
.ye2{bottom:140.000000pt;}
.y13c{bottom:140.800000pt;}
.y91{bottom:145.600000pt;}
.y95{bottom:149.920000pt;}
.y5a{bottom:151.040000pt;}
.y20{bottom:152.826667pt;}
.y106{bottom:152.986667pt;}
.y44{bottom:153.466667pt;}
.ye1{bottom:153.946667pt;}
.y7b{bottom:157.786667pt;}
.y153{bottom:158.106667pt;}
.yab{bottom:158.906667pt;}
.y13b{bottom:162.106667pt;}
.y90{bottom:166.746667pt;}
.ye0{bottom:167.866667pt;}
.y94{bottom:171.066667pt;}
.y59{bottom:172.346667pt;}
.y1f{bottom:173.946667pt;}
.y105{bottom:174.106667pt;}
.y43{bottom:174.586667pt;}
.yaa{bottom:180.026667pt;}
.ydf{bottom:181.786667pt;}
.y13a{bottom:183.226667pt;}
.y8f{bottom:187.866667pt;}
.y7a{bottom:192.186667pt;}
.y152{bottom:192.506667pt;}
.y58{bottom:193.466667pt;}
.y1e{bottom:195.066667pt;}
.y104{bottom:195.226667pt;}
.yde{bottom:195.706667pt;}
.ya9{bottom:201.306667pt;}
.y113{bottom:205.626667pt;}
.y42{bottom:209.146667pt;}
.ydd{bottom:209.626667pt;}
.y79{bottom:213.306667pt;}
.y151{bottom:213.786667pt;}
.y57{bottom:214.586667pt;}
.y1d{bottom:216.186667pt;}
.y103{bottom:216.346667pt;}
.y139{bottom:217.626667pt;}
.ya8{bottom:222.426667pt;}
.ydc{bottom:223.546667pt;}
.y112{bottom:226.746667pt;}
.y41{bottom:230.266667pt;}
.y78{bottom:234.586667pt;}
.y56{bottom:235.706667pt;}
.ydb{bottom:237.306667pt;}
.y138{bottom:238.906667pt;}
.y8e{bottom:243.546667pt;}
.y111{bottom:247.866667pt;}
.y150{bottom:248.186667pt;}
.y102{bottom:250.906667pt;}
.yda{bottom:251.226667pt;}
.y40{bottom:251.386667pt;}
.y1c{bottom:251.546667pt;}
.y77{bottom:255.706667pt;}
.y55{bottom:256.986667pt;}
.y8d{bottom:264.666667pt;}
.yd9{bottom:265.146667pt;}
.y110{bottom:268.986667pt;}
.y85{bottom:270.266667pt;}
.y101{bottom:272.026667pt;}
.y137{bottom:273.306667pt;}
.y76{bottom:276.826667pt;}
.ya7{bottom:278.106667pt;}
.yd8{bottom:279.066667pt;}
.y14f{bottom:282.746667pt;}
.y3f{bottom:285.946667pt;}
.y1b{bottom:288.826667pt;}
.y10f{bottom:290.266667pt;}
.y93{bottom:291.066667pt;}
.y54{bottom:291.386667pt;}
.yd7{bottom:292.986667pt;}
.y100{bottom:293.146667pt;}
.y136{bottom:294.426667pt;}
.y75{bottom:297.946667pt;}
.ya6{bottom:299.226667pt;}
.y14e{bottom:303.866667pt;}
.yd6{bottom:306.906667pt;}
.y3e{bottom:307.066667pt;}
.y10e{bottom:311.386667pt;}
.y53{bottom:312.506667pt;}
.yff{bottom:314.426667pt;}
.y74{bottom:319.226667pt;}
.y99{bottom:320.346667pt;}
.yd5{bottom:320.666667pt;}
.y1a{bottom:323.226667pt;}
.y3d{bottom:328.186667pt;}
.y135{bottom:328.986667pt;}
.y10d{bottom:332.506667pt;}
.y161{bottom:333.626667pt;}
.y52{bottom:333.786667pt;}
.yd4{bottom:334.586667pt;}
.y14d{bottom:338.426667pt;}
.ya5{bottom:340.346667pt;}
.y98{bottom:341.466667pt;}
.y19{bottom:344.346667pt;}
.yd3{bottom:348.506667pt;}
.yfe{bottom:348.826667pt;}
.y8c{bottom:349.306667pt;}
.y73{bottom:353.626667pt;}
.y51{bottom:354.906667pt;}
.y14c{bottom:359.586667pt;}
.yb6{bottom:361.506667pt;}
.yd2{bottom:362.466667pt;}
.y3c{bottom:362.786667pt;}
.y134{bottom:363.586667pt;}
.y10c{bottom:367.106667pt;}
.y160{bottom:369.026667pt;}
.yfd{bottom:369.986667pt;}
.y11a{bottom:370.626667pt;}
.y72{bottom:374.786667pt;}
.y50{bottom:376.066667pt;}
.yd1{bottom:376.386667pt;}
.y18{bottom:378.946667pt;}
.y3b{bottom:383.906667pt;}
.y133{bottom:384.706667pt;}
.y10b{bottom:388.226667pt;}
.yd0{bottom:390.306667pt;}
.yfc{bottom:391.266667pt;}
.y119{bottom:391.746667pt;}
.y14b{bottom:393.986667pt;}
.y71{bottom:396.066667pt;}
.y4f{bottom:397.186667pt;}
.y17{bottom:400.066667pt;}
.ycf{bottom:404.226667pt;}
.y8b{bottom:405.026667pt;}
.y132{bottom:405.826667pt;}
.y15f{bottom:406.146667pt;}
.ya4{bottom:409.346667pt;}
.y118{bottom:412.866667pt;}
.y14a{bottom:415.266667pt;}
.y70{bottom:417.186667pt;}
.yce{bottom:417.986667pt;}
.y3a{bottom:418.466667pt;}
.y16{bottom:421.186667pt;}
.yfb{bottom:425.666667pt;}
.y8a{bottom:426.146667pt;}
.ya3{bottom:430.466667pt;}
.ycd{bottom:431.906667pt;}
.y6f{bottom:438.306667pt;}
.y39{bottom:439.586667pt;}
.y15e{bottom:440.706667pt;}
.y131{bottom:441.186667pt;}
.y15{bottom:442.466667pt;}
.ycc{bottom:445.826667pt;}
.yfa{bottom:446.786667pt;}
.y89{bottom:447.426667pt;}
.y149{bottom:449.666667pt;}
.ya2{bottom:451.746667pt;}
.y4e{bottom:452.866667pt;}
.y6e{bottom:459.426667pt;}
.ycb{bottom:459.746667pt;}
.y38{bottom:460.706667pt;}
.y15d{bottom:461.826667pt;}
.y14{bottom:463.586667pt;}
.y88{bottom:468.546667pt;}
.y148{bottom:470.786667pt;}
.ya1{bottom:472.866667pt;}
.yca{bottom:473.666667pt;}
.y4d{bottom:473.986667pt;}
.y130{bottom:478.306667pt;}
.y6d{bottom:480.706667pt;}
.y37{bottom:481.826667pt;}
.yf9{bottom:482.146667pt;}
.y15c{bottom:482.946667pt;}
.y13{bottom:484.706667pt;}
.yc9{bottom:487.586667pt;}
.ya0{bottom:493.986667pt;}
.y4c{bottom:495.266667pt;}
.yc8{bottom:501.506667pt;}
.y36{bottom:502.946667pt;}
.y15b{bottom:504.066667pt;}
.y147{bottom:505.346667pt;}
.y12{bottom:505.826667pt;}
.y12f{bottom:512.866667pt;}
.y6c{bottom:515.106667pt;}
.yc7{bottom:515.266667pt;}
.y4b{bottom:516.386667pt;}
.yf8{bottom:519.426667pt;}
.y35{bottom:524.226667pt;}
.y15a{bottom:525.346667pt;}
.y146{bottom:526.466667pt;}
.y11{bottom:527.106667pt;}
.y12e{bottom:533.986667pt;}
.y6b{bottom:536.226667pt;}
.y4a{bottom:537.506667pt;}
.yc6{bottom:543.906667pt;}
.y34{bottom:545.346667pt;}
.y145{bottom:547.586667pt;}
.y10{bottom:548.226667pt;}
.y10a{bottom:549.666667pt;}
.yf7{bottom:553.826667pt;}
.y12d{bottom:555.106667pt;}
.y6a{bottom:557.533333pt;}
.y49{bottom:558.653333pt;}
.y159{bottom:560.573333pt;}
.yc5{bottom:565.053333pt;}
.y97{bottom:566.493333pt;}
.y144{bottom:568.893333pt;}
.yf{bottom:569.373333pt;}
.y9f{bottom:570.813333pt;}
.yf6{bottom:574.973333pt;}
.y12c{bottom:576.253333pt;}
.y69{bottom:578.653333pt;}
.y33{bottom:579.933333pt;}
.y96{bottom:587.613333pt;}
.ye{bottom:590.493333pt;}
.y9e{bottom:591.933333pt;}
.y48{bottom:593.213333pt;}
.yf5{bottom:596.253333pt;}
.y12b{bottom:597.533333pt;}
.y158{bottom:597.853333pt;}
.yc4{bottom:599.613333pt;}
.y68{bottom:599.773333pt;}
.y32{bottom:601.053333pt;}
.y143{bottom:603.293333pt;}
.y109{bottom:606.173333pt;}
.y117{bottom:608.893333pt;}
.yd{bottom:611.773333pt;}
.y9d{bottom:613.213333pt;}
.y47{bottom:614.333333pt;}
.yf4{bottom:617.373333pt;}
.y12a{bottom:618.653333pt;}
.yc3{bottom:620.733333pt;}
.y67{bottom:620.893333pt;}
.y84{bottom:622.173333pt;}
.y142{bottom:624.413333pt;}
.y116{bottom:630.013333pt;}
.y157{bottom:632.253333pt;}
.y9c{bottom:634.333333pt;}
.y31{bottom:635.453333pt;}
.yf3{bottom:638.493333pt;}
.y129{bottom:639.773333pt;}
.yc2{bottom:641.853333pt;}
.y83{bottom:643.293333pt;}
.y141{bottom:645.693333pt;}
.yc{bottom:646.973333pt;}
.y66{bottom:655.453333pt;}
.yb5{bottom:656.253333pt;}
.y30{bottom:656.733333pt;}
.yc0{bottom:658.173333pt;}
.yf2{bottom:659.613333pt;}
.y82{bottom:664.413333pt;}
.y156{bottom:666.813333pt;}
.y128{bottom:674.333333pt;}
.y65{bottom:676.573333pt;}
.y2f{bottom:677.853333pt;}
.y140{bottom:680.093333pt;}
.yb{bottom:684.253333pt;}
.y87{bottom:685.693333pt;}
.yb4{bottom:693.533333pt;}
.yf1{bottom:694.173333pt;}
.y127{bottom:695.453333pt;}
.y9b{bottom:697.693333pt;}
.y2e{bottom:698.973333pt;}
.y155{bottom:701.373333pt;}
.y86{bottom:706.813333pt;}
.y64{bottom:711.133333pt;}
.y13f{bottom:714.653333pt;}
.yf0{bottom:715.293333pt;}
.y126{bottom:716.573333pt;}
.ya{bottom:717.533333pt;}
.y2d{bottom:720.093333pt;}
.yb3{bottom:727.933333pt;}
.y63{bottom:732.253333pt;}
.y13e{bottom:735.773333pt;}
.yef{bottom:736.413333pt;}
.y125{bottom:737.693333pt;}
.y2c{bottom:741.373333pt;}
.y9{bottom:748.573333pt;}
.yb2{bottom:749.053333pt;}
.ybd{bottom:751.453333pt;}
.y62{bottom:753.373333pt;}
.y154{bottom:756.893333pt;}
.yee{bottom:757.693333pt;}
.y124{bottom:758.973333pt;}
.y2b{bottom:762.533333pt;}
.y9a{bottom:767.653333pt;}
.yb1{bottom:770.373333pt;}
.y61{bottom:774.693333pt;}
.y46{bottom:775.813333pt;}
.yed{bottom:778.853333pt;}
.y8{bottom:779.493333pt;}
.y123{bottom:780.133333pt;}
.y81{bottom:783.653333pt;}
.yb0{bottom:791.493333pt;}
.y60{bottom:795.813333pt;}
.y2a{bottom:796.933333pt;}
.yec{bottom:799.973333pt;}
.y122{bottom:801.253333pt;}
.y80{bottom:804.773333pt;}
.yb9{bottom:807.973333pt;}
.y7{bottom:810.533333pt;}
.yaf{bottom:812.613333pt;}
.y5f{bottom:816.933333pt;}
.y29{bottom:818.213333pt;}
.y121{bottom:822.373333pt;}
.y7f{bottom:825.893333pt;}
.yae{bottom:833.733333pt;}
.yeb{bottom:834.533333pt;}
.y28{bottom:839.333333pt;}
.y6{bottom:842.533333pt;}
.y120{bottom:843.653333pt;}
.y7e{bottom:847.173333pt;}
.y5e{bottom:852.293333pt;}
.yad{bottom:855.013333pt;}
.y27{bottom:860.453333pt;}
.y11f{bottom:864.773333pt;}
.yea{bottom:867.653333pt;}
.y13d{bottom:868.293333pt;}
.y5{bottom:876.453333pt;}
.y26{bottom:881.573333pt;}
.yb7{bottom:884.613333pt;}
.y11e{bottom:885.893333pt;}
.y5d{bottom:889.413333pt;}
.ye9{bottom:895.493333pt;}
.y25{bottom:902.853333pt;}
.y11d{bottom:907.013333pt;}
.ye8{bottom:909.253333pt;}
.y4{bottom:911.813333pt;}
.ye7{bottom:923.173333pt;}
.y24{bottom:923.973333pt;}
.ye6{bottom:937.093333pt;}
.y3{bottom:940.133333pt;}
.y11c{bottom:942.373333pt;}
.y23{bottom:945.093333pt;}
.ye5{bottom:951.013333pt;}
.h6{height:18.400000pt;}
.hb{height:35.698437pt;}
.h7{height:45.156250pt;}
.h1{height:46.281250pt;}
.h5{height:46.375000pt;}
.h4{height:46.593750pt;}
.h3{height:52.832812pt;}
.h9{height:55.232000pt;}
.h2{height:60.057813pt;}
.h8{height:73.600000pt;}
.ha{height:92.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:190.266667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.560000pt;}
.x2{left:120.031988pt;}
.xd{left:121.312000pt;}
.x3{left:134.266655pt;}
.xb{left:144.026655pt;}
.x6{left:168.026655pt;}
.xa{left:211.546655pt;}
.x9{left:255.866655pt;}
.x8{left:279.106655pt;}
.x4{left:285.346655pt;}
.xf{left:313.026667pt;}
.x7{left:339.426655pt;}
.x5{left:371.106655pt;}
.xc{left:400.066655pt;}
.x1{left:404.066655pt;}
.x10{left:504.573333pt;}
}




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