
    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_657d5b21db46bafc02e3fe41.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2bcef80d7eeeb5d3ac547ca8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a8b766a555423ca230f9b16d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_324fa35ba967fa5259f73118.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3bee311baa4dfe891c9054c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.110840;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_b211b73726357a796447ba5b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_43fe2fae7acaa82dc1dd17d0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.129395;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_bf0396f227d126aea553e306.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_823b2dce0545f8e60bba30b2.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0def25c90ac685a1c479c9bc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-69.120000px;}
.v2{vertical-align:-66.240000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-9.884160px;}
.ls19{letter-spacing:-7.603200px;}
.ls1d{letter-spacing:-6.716160px;}
.ls1c{letter-spacing:-6.209280px;}
.ls1e{letter-spacing:-6.082560px;}
.ls1a{letter-spacing:-5.765760px;}
.ls18{letter-spacing:-3.240000px;}
.lsb{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.567600px;}
.ls16{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.334200px;}
.ls7{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.051840px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.109440px;}
.ls10{letter-spacing:0.152400px;}
.lsd{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.385920px;}
.ls2{letter-spacing:2.880000px;}
.ls5{letter-spacing:3.600000px;}
.ls13{letter-spacing:4.320000px;}
.lsc{letter-spacing:17.585280px;}
.ls14{letter-spacing:20.545920px;}
.ls12{letter-spacing:22.266720px;}
.ls3{letter-spacing:132.816000px;}
.ls4{letter-spacing:797.520000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws5{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.450800px;}
.ws2{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.145400px;}
.wsa{word-spacing:-15.992400px;}
.ws1{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.505800px;}
.ws9{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.860000px;}
.wsd{word-spacing:-5.955840px;}
.ws6{word-spacing:0.000000px;}
._a{margin-left:-4.676160px;}
._6{margin-left:-3.572160px;}
._5{margin-left:-2.344320px;}
._0{margin-left:-1.250880px;}
._1{width:1.774080px;}
._2{width:3.041280px;}
._4{width:4.048320px;}
._3{width:5.196480px;}
._9{width:6.812160px;}
._8{width:7.840320px;}
._e{width:9.434880px;}
._11{width:10.473120px;}
._10{width:11.592000px;}
._d{width:13.300560px;}
._b{width:14.506560px;}
._7{width:16.900800px;}
._c{width:18.581760px;}
._1e{width:19.592640px;}
._1f{width:20.681280px;}
._1b{width:22.654080px;}
._1a{width:23.713920px;}
._1d{width:24.972480px;}
._19{width:26.496000px;}
._18{width:28.152000px;}
._13{width:30.584160px;}
._12{width:31.993920px;}
._26{width:33.077280px;}
._1c{width:34.511040px;}
._16{width:36.564480px;}
._15{width:38.154240px;}
._20{width:40.737600px;}
._28{width:43.585920px;}
._22{width:44.976960px;}
._21{width:50.408640px;}
._14{width:55.575360px;}
._f{width:58.323840px;}
._2a{width:68.889600px;}
._25{width:78.759360px;}
._24{width:80.150400px;}
._27{width:84.654720px;}
._2c{width:89.233920px;}
._2b{width:116.824320px;}
._29{width:159.042240px;}
._23{width:223.957440px;}
._17{width:230.780160px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fs4{font-size:36.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:3.600000px;}
.ya0{bottom:3.780000px;}
.yb4{bottom:4.140000px;}
.y98{bottom:4.320000px;}
.y8d{bottom:9.720000px;}
.yc0{bottom:17.820000px;}
.ybf{bottom:18.180000px;}
.y8e{bottom:19.800000px;}
.yc3{bottom:22.500000px;}
.y9b{bottom:22.680000px;}
.y91{bottom:22.725000px;}
.yb3{bottom:23.220000px;}
.y97{bottom:23.400000px;}
.yba{bottom:23.985000px;}
.yaf{bottom:26.325000px;}
.ybe{bottom:26.640000px;}
.y9e{bottom:27.360000px;}
.yc7{bottom:27.720000px;}
.ya5{bottom:32.940000px;}
.yae{bottom:35.325000px;}
.yad{bottom:39.285000px;}
.yc6{bottom:41.400000px;}
.y9a{bottom:41.580000px;}
.y90{bottom:41.625000px;}
.ybc{bottom:41.805000px;}
.yb2{bottom:42.120000px;}
.y96{bottom:42.300000px;}
.yab{bottom:42.480000px;}
.yb0{bottom:42.705000px;}
.y9d{bottom:42.840000px;}
.yb9{bottom:42.885000px;}
.ya6{bottom:43.200000px;}
.ya4{bottom:53.100000px;}
.yc2{bottom:60.480000px;}
.y99{bottom:60.660000px;}
.ya8{bottom:60.690000px;}
.ybb{bottom:60.705000px;}
.y95{bottom:61.380000px;}
.yb8{bottom:61.965000px;}
.y94{bottom:80.280000px;}
.yb7{bottom:80.865000px;}
.ya2{bottom:99.180000px;}
.yaa{bottom:99.360000px;}
.y93{bottom:99.405000px;}
.yb6{bottom:99.945000px;}
.ya1{bottom:118.260000px;}
.y92{bottom:118.305000px;}
.yb5{bottom:118.845000px;}
.yc4{bottom:137.160000px;}
.ya9{bottom:137.370000px;}
.y1{bottom:208.650000px;}
.ybd{bottom:228.990000px;}
.y7f{bottom:230.610000px;}
.y32{bottom:234.030000px;}
.yf0{bottom:235.290000px;}
.y50{bottom:236.730000px;}
.y7e{bottom:248.970000px;}
.y31{bottom:252.930000px;}
.yef{bottom:253.290000px;}
.y4f{bottom:255.630000px;}
.y7d{bottom:267.330000px;}
.yee{bottom:271.470000px;}
.y30{bottom:271.650000px;}
.y4e{bottom:274.530000px;}
.y7c{bottom:285.870000px;}
.yed{bottom:289.650000px;}
.y2f{bottom:290.550000px;}
.y4d{bottom:293.610000px;}
.y7b{bottom:304.230000px;}
.yc1{bottom:305.670000px;}
.yec{bottom:307.650000px;}
.y2e{bottom:309.270000px;}
.y4c{bottom:312.510000px;}
.y7a{bottom:322.590000px;}
.yeb{bottom:325.830000px;}
.y2d{bottom:328.170000px;}
.y4b{bottom:331.590000px;}
.y79{bottom:341.130000px;}
.yea{bottom:342.570000px;}
.y2c{bottom:347.070000px;}
.y4a{bottom:350.490000px;}
.ye9{bottom:354.450000px;}
.y78{bottom:359.490000px;}
.y2b{bottom:365.790000px;}
.y49{bottom:369.390000px;}
.ye8{bottom:373.530000px;}
.y77{bottom:377.850000px;}
.yac{bottom:382.170000px;}
.y2a{bottom:384.690000px;}
.y48{bottom:388.515000px;}
.ye7{bottom:392.475000px;}
.y76{bottom:396.435000px;}
.y29{bottom:403.455000px;}
.y47{bottom:407.415000px;}
.ye6{bottom:411.555000px;}
.y75{bottom:414.795000px;}
.y28{bottom:422.355000px;}
.y46{bottom:426.495000px;}
.ye5{bottom:430.455000px;}
.y74{bottom:433.155000px;}
.y27{bottom:441.075000px;}
.y45{bottom:445.395000px;}
.ye4{bottom:449.535000px;}
.y73{bottom:451.695000px;}
.yb1{bottom:458.895000px;}
.y26{bottom:459.975000px;}
.y44{bottom:464.295000px;}
.ye3{bottom:468.435000px;}
.y72{bottom:470.055000px;}
.y25{bottom:478.695000px;}
.y43{bottom:483.375000px;}
.ye2{bottom:487.335000px;}
.y71{bottom:488.595000px;}
.y24{bottom:497.595000px;}
.y42{bottom:502.275000px;}
.ye1{bottom:506.415000px;}
.y70{bottom:507.135000px;}
.y23{bottom:516.315000px;}
.ya3{bottom:517.035000px;}
.y41{bottom:521.355000px;}
.ye0{bottom:525.315000px;}
.y6f{bottom:525.675000px;}
.y22{bottom:535.215000px;}
.y40{bottom:540.255000px;}
.y6e{bottom:544.395000px;}
.y21{bottom:553.935000px;}
.y3f{bottom:559.155000px;}
.y6d{bottom:562.935000px;}
.ydf{bottom:563.295000px;}
.y20{bottom:572.835000px;}
.y3e{bottom:578.235000px;}
.y6c{bottom:581.475000px;}
.yde{bottom:582.195000px;}
.y1f{bottom:591.555000px;}
.ya7{bottom:593.715000px;}
.y3d{bottom:597.135000px;}
.y6b{bottom:600.015000px;}
.ydd{bottom:601.275000px;}
.y1e{bottom:610.455000px;}
.y3c{bottom:616.215000px;}
.y6a{bottom:618.735000px;}
.ydc{bottom:620.175000px;}
.y1d{bottom:629.175000px;}
.y3b{bottom:635.115000px;}
.y69{bottom:637.275000px;}
.ydb{bottom:639.255000px;}
.y1c{bottom:646.485000px;}
.y3a{bottom:654.045000px;}
.y68{bottom:655.845000px;}
.y1b{bottom:658.185000px;}
.y9c{bottom:670.425000px;}
.y39{bottom:673.125000px;}
.y67{bottom:674.385000px;}
.y1a{bottom:676.185000px;}
.yda{bottom:677.085000px;}
.y38{bottom:689.325000px;}
.y66{bottom:692.925000px;}
.y19{bottom:694.185000px;}
.yd9{bottom:696.165000px;}
.y37{bottom:697.065000px;}
.y65{bottom:711.645000px;}
.y36{bottom:711.825000px;}
.y18{bottom:712.005000px;}
.yd8{bottom:715.065000px;}
.y9f{bottom:728.025000px;}
.y17{bottom:730.005000px;}
.y64{bottom:730.185000px;}
.yd7{bottom:734.145000px;}
.y16{bottom:748.005000px;}
.y63{bottom:748.725000px;}
.yd6{bottom:753.045000px;}
.y15{bottom:766.005000px;}
.y62{bottom:767.265000px;}
.yd5{bottom:771.945000px;}
.y14{bottom:783.825000px;}
.y61{bottom:785.805000px;}
.yd4{bottom:791.025000px;}
.y13{bottom:801.825000px;}
.y60{bottom:804.525000px;}
.y8c{bottom:804.705000px;}
.yd3{bottom:809.925000px;}
.y12{bottom:819.825000px;}
.y5f{bottom:823.065000px;}
.yd2{bottom:829.005000px;}
.y11{bottom:837.825000px;}
.y5e{bottom:841.605000px;}
.yd1{bottom:847.905000px;}
.y10{bottom:855.825000px;}
.y5d{bottom:860.145000px;}
.yd0{bottom:866.805000px;}
.yf{bottom:873.645000px;}
.y5c{bottom:878.685000px;}
.y8f{bottom:881.385000px;}
.ycf{bottom:885.885000px;}
.ye{bottom:891.645000px;}
.y5b{bottom:897.450000px;}
.yce{bottom:904.830000px;}
.yd{bottom:908.250000px;}
.y5a{bottom:915.990000px;}
.yc{bottom:919.950000px;}
.ycd{bottom:923.910000px;}
.y59{bottom:934.530000px;}
.yb{bottom:937.950000px;}
.y8b{bottom:939.030000px;}
.ycc{bottom:942.810000px;}
.y58{bottom:953.070000px;}
.ya{bottom:955.770000px;}
.yf9{bottom:957.750000px;}
.y89{bottom:958.830000px;}
.ycb{bottom:961.890000px;}
.y57{bottom:971.790000px;}
.yf8{bottom:975.930000px;}
.yca{bottom:978.090000px;}
.y88{bottom:979.350000px;}
.yc9{bottom:985.650000px;}
.y87{bottom:987.270000px;}
.y9{bottom:990.330000px;}
.yf7{bottom:993.930000px;}
.yc5{bottom:1001.130000px;}
.y86{bottom:1006.350000px;}
.y56{bottom:1008.870000px;}
.yf6{bottom:1012.110000px;}
.y8{bottom:1019.490000px;}
.y85{bottom:1025.250000px;}
.y55{bottom:1027.410000px;}
.yf5{bottom:1030.290000px;}
.y7{bottom:1031.370000px;}
.y84{bottom:1044.330000px;}
.y54{bottom:1045.950000px;}
.yf4{bottom:1048.290000px;}
.y6{bottom:1049.730000px;}
.y83{bottom:1063.230000px;}
.y53{bottom:1064.670000px;}
.yf3{bottom:1066.470000px;}
.y5{bottom:1067.010000px;}
.yc8{bottom:1077.810000px;}
.y82{bottom:1082.130000px;}
.y35{bottom:1082.670000px;}
.y52{bottom:1083.210000px;}
.yf2{bottom:1084.470000px;}
.y4{bottom:1085.010000px;}
.y81{bottom:1101.210000px;}
.y34{bottom:1101.390000px;}
.y51{bottom:1101.750000px;}
.yf1{bottom:1102.650000px;}
.y3{bottom:1103.010000px;}
.y80{bottom:1120.110000px;}
.y33{bottom:1120.290000px;}
.y2{bottom:1120.830000px;}
.h10{height:17.666016px;}
.h12{height:18.900000px;}
.hb{height:35.332031px;}
.h8{height:36.281250px;}
.h2{height:52.998047px;}
.ha{height:56.646563px;}
.h1a{height:56.880000px;}
.h14{height:56.916000px;}
.h1f{height:57.420000px;}
.h6{height:58.651172px;}
.h15{height:59.221406px;}
.hd{height:59.383125px;}
.h21{height:60.226875px;}
.h9{height:62.153438px;}
.h5{height:62.184375px;}
.h4{height:63.855000px;}
.h16{height:64.978594px;}
.hc{height:65.010937px;}
.h3{height:65.124096px;}
.h19{height:66.757486px;}
.h1c{height:66.757488px;}
.h7{height:66.757500px;}
.h11{height:68.956875px;}
.h22{height:75.780000px;}
.h17{height:75.960000px;}
.h1d{height:75.996000px;}
.h18{height:133.560000px;}
.h13{height:133.596000px;}
.h1e{height:134.136000px;}
.h20{height:152.460000px;}
.h1b{height:152.670000px;}
.h0{height:1060.330500px;}
.h1{height:1060.500000px;}
.hf{height:1263.000000px;}
.he{height:1263.060000px;}
.w6{width:69.120000px;}
.w9{width:149.436000px;}
.w8{width:183.450000px;}
.w7{width:211.035000px;}
.w5{width:615.570000px;}
.w1{width:883.500000px;}
.w0{width:883.636500px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:2.880000px;}
.x22{left:21.954000px;}
.x1e{left:23.394000px;}
.x1b{left:30.774000px;}
.x14{left:34.554000px;}
.x23{left:39.594000px;}
.x1f{left:42.834000px;}
.x1c{left:50.214000px;}
.x1a{left:56.880000px;}
.x20{left:62.274000px;}
.x18{left:66.060000px;}
.x16{left:78.885000px;}
.x21{left:81.894000px;}
.x4{left:136.431000px;}
.x12{left:138.816000px;}
.xc{left:140.435987px;}
.x2{left:143.811000px;}
.x11{left:151.049987px;}
.x3{left:167.925000px;}
.x10{left:172.469987px;}
.xa{left:189.525000px;}
.xf{left:193.529987px;}
.x15{left:208.830000px;}
.x13{left:222.339000px;}
.x5{left:242.670000px;}
.x24{left:269.354987px;}
.xe{left:343.874987px;}
.x17{left:420.765000px;}
.x1{left:432.420000px;}
.xb{left:436.424987px;}
.x8{left:501.540000px;}
.x6{left:531.960000px;}
.x7{left:572.505000px;}
.x19{left:604.950000px;}
.xd{left:644.729987px;}
.x9{left:748.935000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-58.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-8.785920pt;}
.ls19{letter-spacing:-6.758400pt;}
.ls1d{letter-spacing:-5.969920pt;}
.ls1c{letter-spacing:-5.519360pt;}
.ls1e{letter-spacing:-5.406720pt;}
.ls1a{letter-spacing:-5.125120pt;}
.ls18{letter-spacing:-2.880000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.504533pt;}
.ls16{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.297067pt;}
.ls7{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.046080pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.097280pt;}
.ls10{letter-spacing:0.135467pt;}
.lsd{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.343040pt;}
.ls2{letter-spacing:2.560000pt;}
.ls5{letter-spacing:3.200000pt;}
.ls13{letter-spacing:3.840000pt;}
.lsc{letter-spacing:15.631360pt;}
.ls14{letter-spacing:18.263040pt;}
.ls12{letter-spacing:19.792640pt;}
.ls3{letter-spacing:118.058667pt;}
.ls4{letter-spacing:708.906667pt;}
.wsc{word-spacing:-53.120000pt;}
.ws5{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.622933pt;}
.ws2{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.351467pt;}
.wsa{word-spacing:-14.215467pt;}
.ws1{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.782933pt;}
.ws9{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.320000pt;}
.wsd{word-spacing:-5.294080pt;}
.ws6{word-spacing:0.000000pt;}
._a{margin-left:-4.156587pt;}
._6{margin-left:-3.175253pt;}
._5{margin-left:-2.083840pt;}
._0{margin-left:-1.111893pt;}
._1{width:1.576960pt;}
._2{width:2.703360pt;}
._4{width:3.598507pt;}
._3{width:4.619093pt;}
._9{width:6.055253pt;}
._8{width:6.969173pt;}
._e{width:8.386560pt;}
._11{width:9.309440pt;}
._10{width:10.304000pt;}
._d{width:11.822720pt;}
._b{width:12.894720pt;}
._7{width:15.022933pt;}
._c{width:16.517120pt;}
._1e{width:17.415680pt;}
._1f{width:18.383360pt;}
._1b{width:20.136960pt;}
._1a{width:21.079040pt;}
._1d{width:22.197760pt;}
._19{width:23.552000pt;}
._18{width:25.024000pt;}
._13{width:27.185920pt;}
._12{width:28.439040pt;}
._26{width:29.402027pt;}
._1c{width:30.676480pt;}
._16{width:32.501760pt;}
._15{width:33.914880pt;}
._20{width:36.211200pt;}
._28{width:38.743040pt;}
._22{width:39.979520pt;}
._21{width:44.807680pt;}
._14{width:49.400320pt;}
._f{width:51.843413pt;}
._2a{width:61.235200pt;}
._25{width:70.008320pt;}
._24{width:71.244800pt;}
._27{width:75.248640pt;}
._2c{width:79.319040pt;}
._2b{width:103.843840pt;}
._29{width:141.370880pt;}
._23{width:199.073280pt;}
._17{width:205.137920pt;}
.fs5{font-size:16.000000pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:3.200000pt;}
.ya0{bottom:3.360000pt;}
.yb4{bottom:3.680000pt;}
.y98{bottom:3.840000pt;}
.y8d{bottom:8.640000pt;}
.yc0{bottom:15.840000pt;}
.ybf{bottom:16.160000pt;}
.y8e{bottom:17.600000pt;}
.yc3{bottom:20.000000pt;}
.y9b{bottom:20.160000pt;}
.y91{bottom:20.200000pt;}
.yb3{bottom:20.640000pt;}
.y97{bottom:20.800000pt;}
.yba{bottom:21.320000pt;}
.yaf{bottom:23.400000pt;}
.ybe{bottom:23.680000pt;}
.y9e{bottom:24.320000pt;}
.yc7{bottom:24.640000pt;}
.ya5{bottom:29.280000pt;}
.yae{bottom:31.400000pt;}
.yad{bottom:34.920000pt;}
.yc6{bottom:36.800000pt;}
.y9a{bottom:36.960000pt;}
.y90{bottom:37.000000pt;}
.ybc{bottom:37.160000pt;}
.yb2{bottom:37.440000pt;}
.y96{bottom:37.600000pt;}
.yab{bottom:37.760000pt;}
.yb0{bottom:37.960000pt;}
.y9d{bottom:38.080000pt;}
.yb9{bottom:38.120000pt;}
.ya6{bottom:38.400000pt;}
.ya4{bottom:47.200000pt;}
.yc2{bottom:53.760000pt;}
.y99{bottom:53.920000pt;}
.ya8{bottom:53.946667pt;}
.ybb{bottom:53.960000pt;}
.y95{bottom:54.560000pt;}
.yb8{bottom:55.080000pt;}
.y94{bottom:71.360000pt;}
.yb7{bottom:71.880000pt;}
.ya2{bottom:88.160000pt;}
.yaa{bottom:88.320000pt;}
.y93{bottom:88.360000pt;}
.yb6{bottom:88.840000pt;}
.ya1{bottom:105.120000pt;}
.y92{bottom:105.160000pt;}
.yb5{bottom:105.640000pt;}
.yc4{bottom:121.920000pt;}
.ya9{bottom:122.106667pt;}
.y1{bottom:185.466667pt;}
.ybd{bottom:203.546667pt;}
.y7f{bottom:204.986667pt;}
.y32{bottom:208.026667pt;}
.yf0{bottom:209.146667pt;}
.y50{bottom:210.426667pt;}
.y7e{bottom:221.306667pt;}
.y31{bottom:224.826667pt;}
.yef{bottom:225.146667pt;}
.y4f{bottom:227.226667pt;}
.y7d{bottom:237.626667pt;}
.yee{bottom:241.306667pt;}
.y30{bottom:241.466667pt;}
.y4e{bottom:244.026667pt;}
.y7c{bottom:254.106667pt;}
.yed{bottom:257.466667pt;}
.y2f{bottom:258.266667pt;}
.y4d{bottom:260.986667pt;}
.y7b{bottom:270.426667pt;}
.yc1{bottom:271.706667pt;}
.yec{bottom:273.466667pt;}
.y2e{bottom:274.906667pt;}
.y4c{bottom:277.786667pt;}
.y7a{bottom:286.746667pt;}
.yeb{bottom:289.626667pt;}
.y2d{bottom:291.706667pt;}
.y4b{bottom:294.746667pt;}
.y79{bottom:303.226667pt;}
.yea{bottom:304.506667pt;}
.y2c{bottom:308.506667pt;}
.y4a{bottom:311.546667pt;}
.ye9{bottom:315.066667pt;}
.y78{bottom:319.546667pt;}
.y2b{bottom:325.146667pt;}
.y49{bottom:328.346667pt;}
.ye8{bottom:332.026667pt;}
.y77{bottom:335.866667pt;}
.yac{bottom:339.706667pt;}
.y2a{bottom:341.946667pt;}
.y48{bottom:345.346667pt;}
.ye7{bottom:348.866667pt;}
.y76{bottom:352.386667pt;}
.y29{bottom:358.626667pt;}
.y47{bottom:362.146667pt;}
.ye6{bottom:365.826667pt;}
.y75{bottom:368.706667pt;}
.y28{bottom:375.426667pt;}
.y46{bottom:379.106667pt;}
.ye5{bottom:382.626667pt;}
.y74{bottom:385.026667pt;}
.y27{bottom:392.066667pt;}
.y45{bottom:395.906667pt;}
.ye4{bottom:399.586667pt;}
.y73{bottom:401.506667pt;}
.yb1{bottom:407.906667pt;}
.y26{bottom:408.866667pt;}
.y44{bottom:412.706667pt;}
.ye3{bottom:416.386667pt;}
.y72{bottom:417.826667pt;}
.y25{bottom:425.506667pt;}
.y43{bottom:429.666667pt;}
.ye2{bottom:433.186667pt;}
.y71{bottom:434.306667pt;}
.y24{bottom:442.306667pt;}
.y42{bottom:446.466667pt;}
.ye1{bottom:450.146667pt;}
.y70{bottom:450.786667pt;}
.y23{bottom:458.946667pt;}
.ya3{bottom:459.586667pt;}
.y41{bottom:463.426667pt;}
.ye0{bottom:466.946667pt;}
.y6f{bottom:467.266667pt;}
.y22{bottom:475.746667pt;}
.y40{bottom:480.226667pt;}
.y6e{bottom:483.906667pt;}
.y21{bottom:492.386667pt;}
.y3f{bottom:497.026667pt;}
.y6d{bottom:500.386667pt;}
.ydf{bottom:500.706667pt;}
.y20{bottom:509.186667pt;}
.y3e{bottom:513.986667pt;}
.y6c{bottom:516.866667pt;}
.yde{bottom:517.506667pt;}
.y1f{bottom:525.826667pt;}
.ya7{bottom:527.746667pt;}
.y3d{bottom:530.786667pt;}
.y6b{bottom:533.346667pt;}
.ydd{bottom:534.466667pt;}
.y1e{bottom:542.626667pt;}
.y3c{bottom:547.746667pt;}
.y6a{bottom:549.986667pt;}
.ydc{bottom:551.266667pt;}
.y1d{bottom:559.266667pt;}
.y3b{bottom:564.546667pt;}
.y69{bottom:566.466667pt;}
.ydb{bottom:568.226667pt;}
.y1c{bottom:574.653333pt;}
.y3a{bottom:581.373333pt;}
.y68{bottom:582.973333pt;}
.y1b{bottom:585.053333pt;}
.y9c{bottom:595.933333pt;}
.y39{bottom:598.333333pt;}
.y67{bottom:599.453333pt;}
.y1a{bottom:601.053333pt;}
.yda{bottom:601.853333pt;}
.y38{bottom:612.733333pt;}
.y66{bottom:615.933333pt;}
.y19{bottom:617.053333pt;}
.yd9{bottom:618.813333pt;}
.y37{bottom:619.613333pt;}
.y65{bottom:632.573333pt;}
.y36{bottom:632.733333pt;}
.y18{bottom:632.893333pt;}
.yd8{bottom:635.613333pt;}
.y9f{bottom:647.133333pt;}
.y17{bottom:648.893333pt;}
.y64{bottom:649.053333pt;}
.yd7{bottom:652.573333pt;}
.y16{bottom:664.893333pt;}
.y63{bottom:665.533333pt;}
.yd6{bottom:669.373333pt;}
.y15{bottom:680.893333pt;}
.y62{bottom:682.013333pt;}
.yd5{bottom:686.173333pt;}
.y14{bottom:696.733333pt;}
.y61{bottom:698.493333pt;}
.yd4{bottom:703.133333pt;}
.y13{bottom:712.733333pt;}
.y60{bottom:715.133333pt;}
.y8c{bottom:715.293333pt;}
.yd3{bottom:719.933333pt;}
.y12{bottom:728.733333pt;}
.y5f{bottom:731.613333pt;}
.yd2{bottom:736.893333pt;}
.y11{bottom:744.733333pt;}
.y5e{bottom:748.093333pt;}
.yd1{bottom:753.693333pt;}
.y10{bottom:760.733333pt;}
.y5d{bottom:764.573333pt;}
.yd0{bottom:770.493333pt;}
.yf{bottom:776.573333pt;}
.y5c{bottom:781.053333pt;}
.y8f{bottom:783.453333pt;}
.ycf{bottom:787.453333pt;}
.ye{bottom:792.573333pt;}
.y5b{bottom:797.733333pt;}
.yce{bottom:804.293333pt;}
.yd{bottom:807.333333pt;}
.y5a{bottom:814.213333pt;}
.yc{bottom:817.733333pt;}
.ycd{bottom:821.253333pt;}
.y59{bottom:830.693333pt;}
.yb{bottom:833.733333pt;}
.y8b{bottom:834.693333pt;}
.ycc{bottom:838.053333pt;}
.y58{bottom:847.173333pt;}
.ya{bottom:849.573333pt;}
.yf9{bottom:851.333333pt;}
.y89{bottom:852.293333pt;}
.ycb{bottom:855.013333pt;}
.y57{bottom:863.813333pt;}
.yf8{bottom:867.493333pt;}
.yca{bottom:869.413333pt;}
.y88{bottom:870.533333pt;}
.yc9{bottom:876.133333pt;}
.y87{bottom:877.573333pt;}
.y9{bottom:880.293333pt;}
.yf7{bottom:883.493333pt;}
.yc5{bottom:889.893333pt;}
.y86{bottom:894.533333pt;}
.y56{bottom:896.773333pt;}
.yf6{bottom:899.653333pt;}
.y8{bottom:906.213333pt;}
.y85{bottom:911.333333pt;}
.y55{bottom:913.253333pt;}
.yf5{bottom:915.813333pt;}
.y7{bottom:916.773333pt;}
.y84{bottom:928.293333pt;}
.y54{bottom:929.733333pt;}
.yf4{bottom:931.813333pt;}
.y6{bottom:933.093333pt;}
.y83{bottom:945.093333pt;}
.y53{bottom:946.373333pt;}
.yf3{bottom:947.973333pt;}
.y5{bottom:948.453333pt;}
.yc8{bottom:958.053333pt;}
.y82{bottom:961.893333pt;}
.y35{bottom:962.373333pt;}
.y52{bottom:962.853333pt;}
.yf2{bottom:963.973333pt;}
.y4{bottom:964.453333pt;}
.y81{bottom:978.853333pt;}
.y34{bottom:979.013333pt;}
.y51{bottom:979.333333pt;}
.yf1{bottom:980.133333pt;}
.y3{bottom:980.453333pt;}
.y80{bottom:995.653333pt;}
.y33{bottom:995.813333pt;}
.y2{bottom:996.293333pt;}
.h10{height:15.703125pt;}
.h12{height:16.800000pt;}
.hb{height:31.406250pt;}
.h8{height:32.250000pt;}
.h2{height:47.109375pt;}
.ha{height:50.352500pt;}
.h1a{height:50.560000pt;}
.h14{height:50.592000pt;}
.h1f{height:51.040000pt;}
.h6{height:52.134375pt;}
.h15{height:52.641250pt;}
.hd{height:52.785000pt;}
.h21{height:53.535000pt;}
.h9{height:55.247500pt;}
.h5{height:55.275000pt;}
.h4{height:56.760000pt;}
.h16{height:57.758750pt;}
.hc{height:57.787500pt;}
.h3{height:57.888085pt;}
.h19{height:59.339988pt;}
.h1c{height:59.339990pt;}
.h7{height:59.340000pt;}
.h11{height:61.295000pt;}
.h22{height:67.360000pt;}
.h17{height:67.520000pt;}
.h1d{height:67.552000pt;}
.h18{height:118.720000pt;}
.h13{height:118.752000pt;}
.h1e{height:119.232000pt;}
.h20{height:135.520000pt;}
.h1b{height:135.706667pt;}
.h0{height:942.516000pt;}
.h1{height:942.666667pt;}
.hf{height:1122.666667pt;}
.he{height:1122.720000pt;}
.w6{width:61.440000pt;}
.w9{width:132.832000pt;}
.w8{width:163.066667pt;}
.w7{width:187.586667pt;}
.w5{width:547.173333pt;}
.w1{width:785.333333pt;}
.w0{width:785.454667pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:2.560000pt;}
.x22{left:19.514667pt;}
.x1e{left:20.794667pt;}
.x1b{left:27.354667pt;}
.x14{left:30.714667pt;}
.x23{left:35.194667pt;}
.x1f{left:38.074667pt;}
.x1c{left:44.634667pt;}
.x1a{left:50.560000pt;}
.x20{left:55.354667pt;}
.x18{left:58.720000pt;}
.x16{left:70.120000pt;}
.x21{left:72.794667pt;}
.x4{left:121.272000pt;}
.x12{left:123.392000pt;}
.xc{left:124.831988pt;}
.x2{left:127.832000pt;}
.x11{left:134.266655pt;}
.x3{left:149.266667pt;}
.x10{left:153.306655pt;}
.xa{left:168.466667pt;}
.xf{left:172.026655pt;}
.x15{left:185.626667pt;}
.x13{left:197.634667pt;}
.x5{left:215.706667pt;}
.x24{left:239.426655pt;}
.xe{left:305.666655pt;}
.x17{left:374.013333pt;}
.x1{left:384.373333pt;}
.xb{left:387.933322pt;}
.x8{left:445.813333pt;}
.x6{left:472.853333pt;}
.x7{left:508.893333pt;}
.x19{left:537.733333pt;}
.xd{left:573.093322pt;}
.x9{left:665.720000pt;}
}




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