
    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_ee016ee79b15e844ddd66f33.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a9fe2ae538e5452f6412c171.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e3fde9cf3449f2358eef9d0b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ff1f55caa31a392b0a94d3ca.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c9ba79e8ecc762ebb1ba684f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b8fd92cf2b6e42cf428cb9ee.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_897bb34c4377eea21b28887b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_1a88d87922bc41c7749e47b7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls15{letter-spacing:4.320000px;}
.ls11{letter-spacing:4.494240px;}
.ls10{letter-spacing:4.500000px;}
.lsa{letter-spacing:5.040000px;}
.ls14{letter-spacing:10.800000px;}
.ls8{letter-spacing:15.840000px;}
.lsf{letter-spacing:105.984000px;}
.lsb{letter-spacing:122.376000px;}
.ls9{letter-spacing:141.960000px;}
.ls3{letter-spacing:141.984000px;}
.ls7{letter-spacing:753.996000px;}
.lsc{letter-spacing:775.596000px;}
.ls2{letter-spacing:944.796000px;}
.ls16{letter-spacing:946.956000px;}
.ls13{letter-spacing:990.876000px;}
.ls1{letter-spacing:1147.116000px;}
.ls0{letter-spacing:1343.076000px;}
.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;}
}
.ws4{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws5{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._1b{margin-left:-15.540000px;}
._13{margin-left:-5.084640px;}
._10{margin-left:-4.032000px;}
._a{margin-left:-2.321280px;}
._0{margin-left:-1.179360px;}
._1{width:1.107360px;}
._2{width:2.636640px;}
._4{width:3.672000px;}
._5{width:5.112000px;}
._1c{width:6.113520px;}
._b{width:7.128000px;}
._c{width:8.352000px;}
._14{width:9.504000px;}
._9{width:10.584000px;}
._7{width:11.592000px;}
._8{width:13.054560px;}
._6{width:14.422080px;}
._3{width:15.984000px;}
._18{width:16.992000px;}
._15{width:19.501920px;}
._d{width:20.592000px;}
._e{width:21.744000px;}
._f{width:23.688000px;}
._11{width:25.560000px;}
._12{width:26.640000px;}
._17{width:27.792000px;}
._16{width:28.800000px;}
._1a{width:29.986560px;}
._1e{width:31.548000px;}
._1f{width:110.304000px;}
._20{width:111.384000px;}
._21{width:223.488000px;}
._1d{width:589.104000px;}
._19{width:846.156000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(17,85,204);}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(68,84,106);}
.fc3{color:rgb(67,67,67);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs7{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:2.267961px;}
.y35{bottom:3.239972px;}
.y31{bottom:3.239982px;}
.y37{bottom:3.563935px;}
.yae{bottom:3.960000px;}
.y99{bottom:9.540000px;}
.ya5{bottom:20.340000px;}
.y34{bottom:21.209972px;}
.yad{bottom:24.660000px;}
.y9a{bottom:25.200000px;}
.y38{bottom:25.511850px;}
.y98{bottom:30.240000px;}
.y33{bottom:39.179972px;}
.ya4{bottom:41.085000px;}
.y36{bottom:42.519750px;}
.yac{bottom:45.360000px;}
.ya8{bottom:49.860000px;}
.ya3{bottom:61.785000px;}
.yab{bottom:66.060000px;}
.yc5{bottom:75.060000px;}
.ya7{bottom:81.000000px;}
.ya2{bottom:82.485000px;}
.yaa{bottom:86.760000px;}
.y8f{bottom:88.020000px;}
.y8e{bottom:93.240000px;}
.y2f{bottom:93.420000px;}
.yc4{bottom:95.760000px;}
.ye3{bottom:101.160000px;}
.yca{bottom:102.780000px;}
.ya1{bottom:103.185000px;}
.y111{bottom:103.860000px;}
.y9c{bottom:104.625000px;}
.y8d{bottom:105.300000px;}
.ya9{bottom:107.460000px;}
.y2e{bottom:114.120000px;}
.y110{bottom:116.820000px;}
.ye2{bottom:121.860000px;}
.y8c{bottom:122.580000px;}
.y83{bottom:123.300000px;}
.ya0{bottom:123.885000px;}
.y6a{bottom:124.560000px;}
.yc3{bottom:125.460000px;}
.y8b{bottom:127.800000px;}
.yc8{bottom:129.240000px;}
.y2d{bottom:134.820000px;}
.y10f{bottom:137.520000px;}
.y8a{bottom:139.860000px;}
.y10b{bottom:141.120000px;}
.ye1{bottom:142.560000px;}
.y82{bottom:144.000000px;}
.y9f{bottom:144.585000px;}
.y92{bottom:145.080000px;}
.y69{bottom:145.260000px;}
.yc2{bottom:146.160000px;}
.y10a{bottom:148.680000px;}
.y2c{bottom:155.520000px;}
.y89{bottom:157.140000px;}
.y91{bottom:157.320000px;}
.y10e{bottom:158.220000px;}
.ye0{bottom:163.290000px;}
.y109{bottom:164.010000px;}
.y81{bottom:164.730000px;}
.y9e{bottom:165.285000px;}
.y68{bottom:165.990000px;}
.yc1{bottom:166.860000px;}
.y88{bottom:174.270000px;}
.yc7{bottom:175.350000px;}
.y10d{bottom:178.950000px;}
.y87{bottom:179.490000px;}
.y108{bottom:181.290000px;}
.ydf{bottom:183.990000px;}
.y80{bottom:185.430000px;}
.y9d{bottom:185.985000px;}
.y67{bottom:186.690000px;}
.yc0{bottom:187.560000px;}
.yc9{bottom:187.950000px;}
.y96{bottom:191.550000px;}
.y86{bottom:191.910000px;}
.y2b{bottom:196.950000px;}
.yd3{bottom:197.850000px;}
.y107{bottom:198.570000px;}
.yde{bottom:204.690000px;}
.y7f{bottom:206.130000px;}
.y66{bottom:207.390000px;}
.yc6{bottom:208.290000px;}
.ybf{bottom:208.305000px;}
.y95{bottom:209.190000px;}
.yaf{bottom:210.450000px;}
.yd2{bottom:210.630000px;}
.y90{bottom:214.230000px;}
.y106{bottom:215.670000px;}
.y2a{bottom:217.650000px;}
.y10c{bottom:219.090000px;}
.ydd{bottom:225.390000px;}
.y7e{bottom:226.830000px;}
.yd1{bottom:227.910000px;}
.y65{bottom:228.090000px;}
.ybe{bottom:229.005000px;}
.y105{bottom:234.210000px;}
.y29{bottom:238.350000px;}
.y104{bottom:241.770000px;}
.yd0{bottom:245.010000px;}
.ydc{bottom:246.090000px;}
.y7d{bottom:247.530000px;}
.y64{bottom:248.790000px;}
.ybd{bottom:249.705000px;}
.y103{bottom:257.430000px;}
.y28{bottom:259.050000px;}
.yb0{bottom:260.685000px;}
.ycf{bottom:262.290000px;}
.ydb{bottom:266.790000px;}
.y7c{bottom:268.230000px;}
.y63{bottom:269.490000px;}
.ybc{bottom:270.405000px;}
.y27{bottom:279.750000px;}
.yce{bottom:285.690000px;}
.yda{bottom:287.490000px;}
.y7b{bottom:288.930000px;}
.y62{bottom:290.190000px;}
.ybb{bottom:291.105000px;}
.ycd{bottom:298.830000px;}
.y102{bottom:299.550000px;}
.y26{bottom:300.450000px;}
.yd9{bottom:308.190000px;}
.y7a{bottom:309.630000px;}
.y61{bottom:310.890000px;}
.yba{bottom:311.805000px;}
.y100{bottom:320.250000px;}
.y25{bottom:321.150000px;}
.y101{bottom:327.090000px;}
.yd8{bottom:328.890000px;}
.y79{bottom:330.330000px;}
.y60{bottom:331.590000px;}
.yb9{bottom:332.505000px;}
.yff{bottom:340.950000px;}
.y24{bottom:341.850000px;}
.yd7{bottom:348.510000px;}
.y78{bottom:351.030000px;}
.y5f{bottom:352.290000px;}
.yb8{bottom:353.205000px;}
.y94{bottom:359.130000px;}
.yfe{bottom:361.650000px;}
.y23{bottom:362.550000px;}
.yd6{bottom:365.070000px;}
.y77{bottom:371.730000px;}
.y5e{bottom:372.990000px;}
.yb7{bottom:373.905000px;}
.y93{bottom:379.830000px;}
.yfd{bottom:382.350000px;}
.y22{bottom:383.250000px;}
.yd5{bottom:384.690000px;}
.y76{bottom:392.430000px;}
.y5d{bottom:393.690000px;}
.yb6{bottom:394.605000px;}
.yd4{bottom:397.290000px;}
.yfb{bottom:403.050000px;}
.y21{bottom:403.950000px;}
.yfc{bottom:409.935000px;}
.y75{bottom:413.175000px;}
.y5c{bottom:414.435000px;}
.yb5{bottom:415.305000px;}
.yfa{bottom:423.795000px;}
.y20{bottom:424.695000px;}
.y74{bottom:433.875000px;}
.y5b{bottom:435.135000px;}
.yb4{bottom:436.005000px;}
.yf9{bottom:444.495000px;}
.y1f{bottom:445.395000px;}
.y73{bottom:454.575000px;}
.y5a{bottom:455.835000px;}
.yb3{bottom:456.735000px;}
.yf8{bottom:465.195000px;}
.y1e{bottom:466.095000px;}
.y72{bottom:475.275000px;}
.y59{bottom:476.535000px;}
.yb2{bottom:477.435000px;}
.yf7{bottom:485.895000px;}
.y71{bottom:495.975000px;}
.y58{bottom:497.235000px;}
.yb1{bottom:498.135000px;}
.yf6{bottom:506.595000px;}
.y1d{bottom:507.495000px;}
.y70{bottom:516.675000px;}
.y57{bottom:517.935000px;}
.yf5{bottom:527.295000px;}
.y1c{bottom:528.195000px;}
.y6f{bottom:537.375000px;}
.y56{bottom:538.635000px;}
.yf4{bottom:547.995000px;}
.y1b{bottom:548.895000px;}
.y6e{bottom:558.075000px;}
.y55{bottom:559.335000px;}
.yf3{bottom:568.695000px;}
.y1a{bottom:569.595000px;}
.y6d{bottom:578.775000px;}
.y54{bottom:580.035000px;}
.ycc{bottom:586.875000px;}
.yf2{bottom:589.395000px;}
.y19{bottom:590.295000px;}
.y6c{bottom:599.475000px;}
.y53{bottom:600.735000px;}
.yf1{bottom:610.095000px;}
.y18{bottom:610.995000px;}
.y52{bottom:621.255000px;}
.y6b{bottom:622.515000px;}
.yf0{bottom:630.795000px;}
.y17{bottom:631.695000px;}
.y51{bottom:641.955000px;}
.y85{bottom:648.795000px;}
.yef{bottom:651.495000px;}
.y16{bottom:652.395000px;}
.y50{bottom:662.685000px;}
.yee{bottom:672.225000px;}
.y15{bottom:673.125000px;}
.y4f{bottom:683.385000px;}
.ycb{bottom:690.225000px;}
.y14{bottom:693.825000px;}
.y4e{bottom:704.085000px;}
.yed{bottom:713.625000px;}
.y13{bottom:714.525000px;}
.y4d{bottom:724.785000px;}
.yec{bottom:734.325000px;}
.ya6{bottom:735.045000px;}
.y12{bottom:735.225000px;}
.y4c{bottom:745.485000px;}
.yeb{bottom:755.025000px;}
.y11{bottom:755.925000px;}
.y4b{bottom:766.185000px;}
.yea{bottom:775.725000px;}
.y10{bottom:776.625000px;}
.y4a{bottom:786.885000px;}
.ye9{bottom:796.425000px;}
.yf{bottom:797.325000px;}
.y49{bottom:807.585000px;}
.ye8{bottom:817.125000px;}
.ye{bottom:818.025000px;}
.y48{bottom:828.285000px;}
.ye7{bottom:837.825000px;}
.y47{bottom:848.985000px;}
.ye6{bottom:858.525000px;}
.yd{bottom:859.425000px;}
.y9b{bottom:868.965000px;}
.y46{bottom:869.685000px;}
.ye5{bottom:878.145000px;}
.yc{bottom:880.125000px;}
.y45{bottom:890.385000px;}
.ye4{bottom:890.745000px;}
.yb{bottom:900.870000px;}
.y44{bottom:911.130000px;}
.ya{bottom:921.570000px;}
.y43{bottom:931.830000px;}
.y9{bottom:942.270000px;}
.y42{bottom:952.530000px;}
.y8{bottom:962.970000px;}
.y41{bottom:973.230000px;}
.y7{bottom:983.670000px;}
.y40{bottom:993.930000px;}
.y6{bottom:1004.370000px;}
.y3f{bottom:1014.630000px;}
.y84{bottom:1021.470000px;}
.y5{bottom:1025.070000px;}
.y3e{bottom:1035.330000px;}
.y4{bottom:1045.770000px;}
.y3d{bottom:1056.030000px;}
.y3{bottom:1067.010000px;}
.y3c{bottom:1076.730000px;}
.y97{bottom:1081.410000px;}
.y2{bottom:1091.130000px;}
.y3b{bottom:1097.430000px;}
.y1{bottom:1115.250000px;}
.y3a{bottom:1118.130000px;}
.y30{bottom:1151.006700px;}
.y32{bottom:1170.342300px;}
.h1a{height:5.650313px;}
.hc{height:12.579000px;}
.h7{height:17.970000px;}
.ha{height:19.767000px;}
.h11{height:38.158594px;}
.hd{height:41.220703px;}
.h1d{height:43.554375px;}
.h10{height:47.344922px;}
.he{height:52.628906px;}
.h15{height:52.740000px;}
.h1f{height:52.971680px;}
.h21{height:52.998047px;}
.h9{height:53.910000px;}
.h12{height:58.651172px;}
.h8{height:58.886719px;}
.h1e{height:59.439023px;}
.h13{height:62.327813px;}
.h6{height:64.546875px;}
.hb{height:64.775391px;}
.hf{height:69.086250px;}
.h5{height:70.628906px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h14{height:74.704922px;}
.h1c{height:74.953125px;}
.h17{height:75.093750px;}
.h20{height:82.635820px;}
.h2{height:84.898125px;}
.h1b{height:105.996094px;}
.h18{height:133.200000px;}
.h16{height:211.710000px;}
.h19{height:523.875000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:16.500000px;}
.wa{width:24.750000px;}
.w8{width:171.930000px;}
.w3{width:277.095000px;}
.w4{width:289.305000px;}
.w6{width:453.747000px;}
.w9{width:506.445000px;}
.w7{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.560000px;}
.x1e{left:10.800000px;}
.x23{left:18.360000px;}
.x24{left:28.980000px;}
.x1f{left:47.334000px;}
.x4{left:128.555987px;}
.x1{left:130.895987px;}
.x16{left:132.515987px;}
.x33{left:134.495987px;}
.x34{left:141.335987px;}
.xc{left:156.824984px;}
.x10{left:164.549973px;}
.x11{left:170.669987px;}
.x7{left:176.969987px;}
.x35{left:181.649987px;}
.xd{left:183.884984px;}
.x8{left:191.369987px;}
.x21{left:202.710000px;}
.x2e{left:217.109987px;}
.xf{left:219.706500px;}
.x5{left:233.489987px;}
.x2c{left:235.829987px;}
.x12{left:238.889987px;}
.x6{left:252.929987px;}
.x20{left:301.035000px;}
.x25{left:307.514987px;}
.x18{left:308.594973px;}
.x19{left:314.714987px;}
.x13{left:318.494973px;}
.x14{left:324.614987px;}
.x15{left:343.694987px;}
.x2{left:383.654987px;}
.x2f{left:399.854973px;}
.x30{left:405.974987px;}
.x17{left:414.254987px;}
.x9{left:422.894987px;}
.x31{left:463.604973px;}
.x3{left:467.924987px;}
.x32{left:475.844987px;}
.xb{left:518.815650px;}
.xa{left:531.025650px;}
.x26{left:565.304973px;}
.x1c{left:569.444973px;}
.x27{left:571.424987px;}
.x1d{left:575.564987px;}
.x1a{left:696.389973px;}
.x1b{left:702.509987px;}
.x28{left:715.649973px;}
.x29{left:721.769987px;}
.x2a{left:783.370650px;}
.xe{left:791.620650px;}
.x2d{left:808.199987px;}
.x2b{left:814.859987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls15{letter-spacing:3.840000pt;}
.ls11{letter-spacing:3.994880pt;}
.ls10{letter-spacing:4.000000pt;}
.lsa{letter-spacing:4.480000pt;}
.ls14{letter-spacing:9.600000pt;}
.ls8{letter-spacing:14.080000pt;}
.lsf{letter-spacing:94.208000pt;}
.lsb{letter-spacing:108.778667pt;}
.ls9{letter-spacing:126.186667pt;}
.ls3{letter-spacing:126.208000pt;}
.ls7{letter-spacing:670.218667pt;}
.lsc{letter-spacing:689.418667pt;}
.ls2{letter-spacing:839.818667pt;}
.ls16{letter-spacing:841.738667pt;}
.ls13{letter-spacing:880.778667pt;}
.ls1{letter-spacing:1019.658667pt;}
.ls0{letter-spacing:1193.845333pt;}
.ws4{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._1b{margin-left:-13.813333pt;}
._13{margin-left:-4.519680pt;}
._10{margin-left:-3.584000pt;}
._a{margin-left:-2.063360pt;}
._0{margin-left:-1.048320pt;}
._1{width:0.984320pt;}
._2{width:2.343680pt;}
._4{width:3.264000pt;}
._5{width:4.544000pt;}
._1c{width:5.434240pt;}
._b{width:6.336000pt;}
._c{width:7.424000pt;}
._14{width:8.448000pt;}
._9{width:9.408000pt;}
._7{width:10.304000pt;}
._8{width:11.604053pt;}
._6{width:12.819627pt;}
._3{width:14.208000pt;}
._18{width:15.104000pt;}
._15{width:17.335040pt;}
._d{width:18.304000pt;}
._e{width:19.328000pt;}
._f{width:21.056000pt;}
._11{width:22.720000pt;}
._12{width:23.680000pt;}
._17{width:24.704000pt;}
._16{width:25.600000pt;}
._1a{width:26.654720pt;}
._1e{width:28.042667pt;}
._1f{width:98.048000pt;}
._20{width:99.008000pt;}
._21{width:198.656000pt;}
._1d{width:523.648000pt;}
._19{width:752.138667pt;}
.fs9{font-size:5.120000pt;}
.fs7{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:2.015965pt;}
.y35{bottom:2.879976pt;}
.y31{bottom:2.879984pt;}
.y37{bottom:3.167942pt;}
.yae{bottom:3.520000pt;}
.y99{bottom:8.480000pt;}
.ya5{bottom:18.080000pt;}
.y34{bottom:18.853309pt;}
.yad{bottom:21.920000pt;}
.y9a{bottom:22.400000pt;}
.y38{bottom:22.677200pt;}
.y98{bottom:26.880000pt;}
.y33{bottom:34.826642pt;}
.ya4{bottom:36.520000pt;}
.y36{bottom:37.795333pt;}
.yac{bottom:40.320000pt;}
.ya8{bottom:44.320000pt;}
.ya3{bottom:54.920000pt;}
.yab{bottom:58.720000pt;}
.yc5{bottom:66.720000pt;}
.ya7{bottom:72.000000pt;}
.ya2{bottom:73.320000pt;}
.yaa{bottom:77.120000pt;}
.y8f{bottom:78.240000pt;}
.y8e{bottom:82.880000pt;}
.y2f{bottom:83.040000pt;}
.yc4{bottom:85.120000pt;}
.ye3{bottom:89.920000pt;}
.yca{bottom:91.360000pt;}
.ya1{bottom:91.720000pt;}
.y111{bottom:92.320000pt;}
.y9c{bottom:93.000000pt;}
.y8d{bottom:93.600000pt;}
.ya9{bottom:95.520000pt;}
.y2e{bottom:101.440000pt;}
.y110{bottom:103.840000pt;}
.ye2{bottom:108.320000pt;}
.y8c{bottom:108.960000pt;}
.y83{bottom:109.600000pt;}
.ya0{bottom:110.120000pt;}
.y6a{bottom:110.720000pt;}
.yc3{bottom:111.520000pt;}
.y8b{bottom:113.600000pt;}
.yc8{bottom:114.880000pt;}
.y2d{bottom:119.840000pt;}
.y10f{bottom:122.240000pt;}
.y8a{bottom:124.320000pt;}
.y10b{bottom:125.440000pt;}
.ye1{bottom:126.720000pt;}
.y82{bottom:128.000000pt;}
.y9f{bottom:128.520000pt;}
.y92{bottom:128.960000pt;}
.y69{bottom:129.120000pt;}
.yc2{bottom:129.920000pt;}
.y10a{bottom:132.160000pt;}
.y2c{bottom:138.240000pt;}
.y89{bottom:139.680000pt;}
.y91{bottom:139.840000pt;}
.y10e{bottom:140.640000pt;}
.ye0{bottom:145.146667pt;}
.y109{bottom:145.786667pt;}
.y81{bottom:146.426667pt;}
.y9e{bottom:146.920000pt;}
.y68{bottom:147.546667pt;}
.yc1{bottom:148.320000pt;}
.y88{bottom:154.906667pt;}
.yc7{bottom:155.866667pt;}
.y10d{bottom:159.066667pt;}
.y87{bottom:159.546667pt;}
.y108{bottom:161.146667pt;}
.ydf{bottom:163.546667pt;}
.y80{bottom:164.826667pt;}
.y9d{bottom:165.320000pt;}
.y67{bottom:165.946667pt;}
.yc0{bottom:166.720000pt;}
.yc9{bottom:167.066667pt;}
.y96{bottom:170.266667pt;}
.y86{bottom:170.586667pt;}
.y2b{bottom:175.066667pt;}
.yd3{bottom:175.866667pt;}
.y107{bottom:176.506667pt;}
.yde{bottom:181.946667pt;}
.y7f{bottom:183.226667pt;}
.y66{bottom:184.346667pt;}
.yc6{bottom:185.146667pt;}
.ybf{bottom:185.160000pt;}
.y95{bottom:185.946667pt;}
.yaf{bottom:187.066667pt;}
.yd2{bottom:187.226667pt;}
.y90{bottom:190.426667pt;}
.y106{bottom:191.706667pt;}
.y2a{bottom:193.466667pt;}
.y10c{bottom:194.746667pt;}
.ydd{bottom:200.346667pt;}
.y7e{bottom:201.626667pt;}
.yd1{bottom:202.586667pt;}
.y65{bottom:202.746667pt;}
.ybe{bottom:203.560000pt;}
.y105{bottom:208.186667pt;}
.y29{bottom:211.866667pt;}
.y104{bottom:214.906667pt;}
.yd0{bottom:217.786667pt;}
.ydc{bottom:218.746667pt;}
.y7d{bottom:220.026667pt;}
.y64{bottom:221.146667pt;}
.ybd{bottom:221.960000pt;}
.y103{bottom:228.826667pt;}
.y28{bottom:230.266667pt;}
.yb0{bottom:231.720000pt;}
.ycf{bottom:233.146667pt;}
.ydb{bottom:237.146667pt;}
.y7c{bottom:238.426667pt;}
.y63{bottom:239.546667pt;}
.ybc{bottom:240.360000pt;}
.y27{bottom:248.666667pt;}
.yce{bottom:253.946667pt;}
.yda{bottom:255.546667pt;}
.y7b{bottom:256.826667pt;}
.y62{bottom:257.946667pt;}
.ybb{bottom:258.760000pt;}
.ycd{bottom:265.626667pt;}
.y102{bottom:266.266667pt;}
.y26{bottom:267.066667pt;}
.yd9{bottom:273.946667pt;}
.y7a{bottom:275.226667pt;}
.y61{bottom:276.346667pt;}
.yba{bottom:277.160000pt;}
.y100{bottom:284.666667pt;}
.y25{bottom:285.466667pt;}
.y101{bottom:290.746667pt;}
.yd8{bottom:292.346667pt;}
.y79{bottom:293.626667pt;}
.y60{bottom:294.746667pt;}
.yb9{bottom:295.560000pt;}
.yff{bottom:303.066667pt;}
.y24{bottom:303.866667pt;}
.yd7{bottom:309.786667pt;}
.y78{bottom:312.026667pt;}
.y5f{bottom:313.146667pt;}
.yb8{bottom:313.960000pt;}
.y94{bottom:319.226667pt;}
.yfe{bottom:321.466667pt;}
.y23{bottom:322.266667pt;}
.yd6{bottom:324.506667pt;}
.y77{bottom:330.426667pt;}
.y5e{bottom:331.546667pt;}
.yb7{bottom:332.360000pt;}
.y93{bottom:337.626667pt;}
.yfd{bottom:339.866667pt;}
.y22{bottom:340.666667pt;}
.yd5{bottom:341.946667pt;}
.y76{bottom:348.826667pt;}
.y5d{bottom:349.946667pt;}
.yb6{bottom:350.760000pt;}
.yd4{bottom:353.146667pt;}
.yfb{bottom:358.266667pt;}
.y21{bottom:359.066667pt;}
.yfc{bottom:364.386667pt;}
.y75{bottom:367.266667pt;}
.y5c{bottom:368.386667pt;}
.yb5{bottom:369.160000pt;}
.yfa{bottom:376.706667pt;}
.y20{bottom:377.506667pt;}
.y74{bottom:385.666667pt;}
.y5b{bottom:386.786667pt;}
.yb4{bottom:387.560000pt;}
.yf9{bottom:395.106667pt;}
.y1f{bottom:395.906667pt;}
.y73{bottom:404.066667pt;}
.y5a{bottom:405.186667pt;}
.yb3{bottom:405.986667pt;}
.yf8{bottom:413.506667pt;}
.y1e{bottom:414.306667pt;}
.y72{bottom:422.466667pt;}
.y59{bottom:423.586667pt;}
.yb2{bottom:424.386667pt;}
.yf7{bottom:431.906667pt;}
.y71{bottom:440.866667pt;}
.y58{bottom:441.986667pt;}
.yb1{bottom:442.786667pt;}
.yf6{bottom:450.306667pt;}
.y1d{bottom:451.106667pt;}
.y70{bottom:459.266667pt;}
.y57{bottom:460.386667pt;}
.yf5{bottom:468.706667pt;}
.y1c{bottom:469.506667pt;}
.y6f{bottom:477.666667pt;}
.y56{bottom:478.786667pt;}
.yf4{bottom:487.106667pt;}
.y1b{bottom:487.906667pt;}
.y6e{bottom:496.066667pt;}
.y55{bottom:497.186667pt;}
.yf3{bottom:505.506667pt;}
.y1a{bottom:506.306667pt;}
.y6d{bottom:514.466667pt;}
.y54{bottom:515.586667pt;}
.ycc{bottom:521.666667pt;}
.yf2{bottom:523.906667pt;}
.y19{bottom:524.706667pt;}
.y6c{bottom:532.866667pt;}
.y53{bottom:533.986667pt;}
.yf1{bottom:542.306667pt;}
.y18{bottom:543.106667pt;}
.y52{bottom:552.226667pt;}
.y6b{bottom:553.346667pt;}
.yf0{bottom:560.706667pt;}
.y17{bottom:561.506667pt;}
.y51{bottom:570.626667pt;}
.y85{bottom:576.706667pt;}
.yef{bottom:579.106667pt;}
.y16{bottom:579.906667pt;}
.y50{bottom:589.053333pt;}
.yee{bottom:597.533333pt;}
.y15{bottom:598.333333pt;}
.y4f{bottom:607.453333pt;}
.ycb{bottom:613.533333pt;}
.y14{bottom:616.733333pt;}
.y4e{bottom:625.853333pt;}
.yed{bottom:634.333333pt;}
.y13{bottom:635.133333pt;}
.y4d{bottom:644.253333pt;}
.yec{bottom:652.733333pt;}
.ya6{bottom:653.373333pt;}
.y12{bottom:653.533333pt;}
.y4c{bottom:662.653333pt;}
.yeb{bottom:671.133333pt;}
.y11{bottom:671.933333pt;}
.y4b{bottom:681.053333pt;}
.yea{bottom:689.533333pt;}
.y10{bottom:690.333333pt;}
.y4a{bottom:699.453333pt;}
.ye9{bottom:707.933333pt;}
.yf{bottom:708.733333pt;}
.y49{bottom:717.853333pt;}
.ye8{bottom:726.333333pt;}
.ye{bottom:727.133333pt;}
.y48{bottom:736.253333pt;}
.ye7{bottom:744.733333pt;}
.y47{bottom:754.653333pt;}
.ye6{bottom:763.133333pt;}
.yd{bottom:763.933333pt;}
.y9b{bottom:772.413333pt;}
.y46{bottom:773.053333pt;}
.ye5{bottom:780.573333pt;}
.yc{bottom:782.333333pt;}
.y45{bottom:791.453333pt;}
.ye4{bottom:791.773333pt;}
.yb{bottom:800.773333pt;}
.y44{bottom:809.893333pt;}
.ya{bottom:819.173333pt;}
.y43{bottom:828.293333pt;}
.y9{bottom:837.573333pt;}
.y42{bottom:846.693333pt;}
.y8{bottom:855.973333pt;}
.y41{bottom:865.093333pt;}
.y7{bottom:874.373333pt;}
.y40{bottom:883.493333pt;}
.y6{bottom:892.773333pt;}
.y3f{bottom:901.893333pt;}
.y84{bottom:907.973333pt;}
.y5{bottom:911.173333pt;}
.y3e{bottom:920.293333pt;}
.y4{bottom:929.573333pt;}
.y3d{bottom:938.693333pt;}
.y3{bottom:948.453333pt;}
.y3c{bottom:957.093333pt;}
.y97{bottom:961.253333pt;}
.y2{bottom:969.893333pt;}
.y3b{bottom:975.493333pt;}
.y1{bottom:991.333333pt;}
.y3a{bottom:993.893333pt;}
.y30{bottom:1023.117067pt;}
.y32{bottom:1040.304267pt;}
.h1a{height:5.022500pt;}
.hc{height:11.181333pt;}
.h7{height:15.973333pt;}
.ha{height:17.570667pt;}
.h11{height:33.918750pt;}
.hd{height:36.640625pt;}
.h1d{height:38.715000pt;}
.h10{height:42.084375pt;}
.he{height:46.781250pt;}
.h15{height:46.880000pt;}
.h1f{height:47.085938pt;}
.h21{height:47.109375pt;}
.h9{height:47.920000pt;}
.h12{height:52.134375pt;}
.h8{height:52.343750pt;}
.h1e{height:52.834688pt;}
.h13{height:55.402500pt;}
.h6{height:57.375000pt;}
.hb{height:57.578125pt;}
.hf{height:61.410000pt;}
.h5{height:62.781250pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h14{height:66.404375pt;}
.h1c{height:66.625000pt;}
.h17{height:66.750000pt;}
.h20{height:73.454062pt;}
.h2{height:75.465000pt;}
.h1b{height:94.218750pt;}
.h18{height:118.400000pt;}
.h16{height:188.186667pt;}
.h19{height:465.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:14.666667pt;}
.wa{width:22.000000pt;}
.w8{width:152.826667pt;}
.w3{width:246.306667pt;}
.w4{width:257.160000pt;}
.w6{width:403.330667pt;}
.w9{width:450.173333pt;}
.w7{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.720000pt;}
.x1e{left:9.600000pt;}
.x23{left:16.320000pt;}
.x24{left:25.760000pt;}
.x1f{left:42.074667pt;}
.x4{left:114.271988pt;}
.x1{left:116.351988pt;}
.x16{left:117.791988pt;}
.x33{left:119.551988pt;}
.x34{left:125.631988pt;}
.xc{left:139.399985pt;}
.x10{left:146.266643pt;}
.x11{left:151.706655pt;}
.x7{left:157.306655pt;}
.x35{left:161.466655pt;}
.xd{left:163.453319pt;}
.x8{left:170.106655pt;}
.x21{left:180.186667pt;}
.x2e{left:192.986655pt;}
.xf{left:195.294667pt;}
.x5{left:207.546655pt;}
.x2c{left:209.626655pt;}
.x12{left:212.346655pt;}
.x6{left:224.826655pt;}
.x20{left:267.586667pt;}
.x25{left:273.346655pt;}
.x18{left:274.306643pt;}
.x19{left:279.746655pt;}
.x13{left:283.106643pt;}
.x14{left:288.546655pt;}
.x15{left:305.506655pt;}
.x2{left:341.026655pt;}
.x2f{left:355.426643pt;}
.x30{left:360.866655pt;}
.x17{left:368.226655pt;}
.x9{left:375.906655pt;}
.x31{left:412.093310pt;}
.x3{left:415.933322pt;}
.x32{left:422.973322pt;}
.xb{left:461.169467pt;}
.xa{left:472.022800pt;}
.x26{left:502.493310pt;}
.x1c{left:506.173310pt;}
.x27{left:507.933322pt;}
.x1d{left:511.613322pt;}
.x1a{left:619.013310pt;}
.x1b{left:624.453322pt;}
.x28{left:636.133310pt;}
.x29{left:641.573322pt;}
.x2a{left:696.329467pt;}
.xe{left:703.662800pt;}
.x2d{left:718.399988pt;}
.x2b{left:724.319988pt;}
}




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