
    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_5f0e2a01444b14fabafc93ee.woff2')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_072ce0e1e0d4cdc92a776650.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c69ad2a5ddd6730b58c89abb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_61d986d801c4f74b034435b4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eee19124b4a62d6911205e6c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_94c5a8fa97c46e957fdf6dde.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_897c17b1b1639bd85ec153d1.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v2{vertical-align:27.360000px;}
.ls21{letter-spacing:-2.736000px;}
.ls27{letter-spacing:-2.376000px;}
.ls24{letter-spacing:-1.728000px;}
.ls1b{letter-spacing:-1.584000px;}
.ls15{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.296000px;}
.lsa{letter-spacing:-1.152000px;}
.lsd{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.234600px;}
.ls3{letter-spacing:0.250800px;}
.ls11{letter-spacing:0.288000px;}
.lse{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.ls1f{letter-spacing:0.840000px;}
.ls5{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.296000px;}
.ls10{letter-spacing:1.440000px;}
.ls19{letter-spacing:1.584000px;}
.ls14{letter-spacing:2.160000px;}
.ls1d{letter-spacing:2.736000px;}
.ls16{letter-spacing:2.880000px;}
.ls23{letter-spacing:3.600000px;}
.lsf{letter-spacing:4.320000px;}
.ls18{letter-spacing:6.480000px;}
.ls1{letter-spacing:7.920000px;}
.ls22{letter-spacing:13.680000px;}
.ls12{letter-spacing:15.120000px;}
.ls25{letter-spacing:26.640000px;}
.ls26{letter-spacing:26.760000px;}
.ls29{letter-spacing:100.944000px;}
.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;}
}
.ws12{word-spacing:-22.320000px;}
.ws16{word-spacing:-20.880000px;}
.ws1b{word-spacing:-20.736000px;}
.ws17{word-spacing:-19.584000px;}
.ws13{word-spacing:-19.440000px;}
.wsf{word-spacing:-19.296000px;}
.ws1a{word-spacing:-18.792000px;}
.ws1f{word-spacing:-18.648000px;}
.ws11{word-spacing:-18.504000px;}
.ws14{word-spacing:-18.288000px;}
.ws1d{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.496000px;}
.wsb{word-spacing:-17.352000px;}
.ws10{word-spacing:-17.064000px;}
.wsc{word-spacing:-16.848000px;}
.ws15{word-spacing:-16.704000px;}
.ws0{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.416000px;}
.ws1c{word-spacing:-16.272000px;}
.ws1e{word-spacing:-15.624000px;}
.ws1{word-spacing:-12.130800px;}
.ws2{word-spacing:-12.114600px;}
.ws3{word-spacing:-11.880000px;}
.ws7{word-spacing:-10.080000px;}
.ws5{word-spacing:-9.720000px;}
.ws4{word-spacing:-9.000000px;}
.ws8{word-spacing:-8.640000px;}
.ws6{word-spacing:-8.280000px;}
.wse{word-spacing:0.000000px;}
._1e{margin-left:-16.416000px;}
._15{margin-left:-4.875840px;}
._7{margin-left:-3.234720px;}
._2{margin-left:-2.200800px;}
._1{margin-left:-1.092960px;}
._0{width:1.283040px;}
._4{width:2.328480px;}
._3{width:3.414000px;}
._5{width:4.587600px;}
._6{width:5.639520px;}
._f{width:6.823920px;}
._10{width:8.794800px;}
._8{width:10.073760px;}
._9{width:11.573760px;}
._a{width:12.674640px;}
._17{width:14.321040px;}
._16{width:15.689280px;}
._c{width:16.937040px;}
._b{width:19.684320px;}
._18{width:21.324000px;}
._19{width:22.438080px;}
._d{width:23.618400px;}
._1a{width:24.902880px;}
._e{width:26.071680px;}
._1b{width:27.556800px;}
._1d{width:28.780800px;}
._1c{width:30.418080px;}
._13{width:31.868640px;}
._14{width:33.409920px;}
._1f{width:34.729920px;}
._11{width:37.152000px;}
._12{width:38.448000px;}
._22{width:42.928800px;}
._21{width:44.326080px;}
._20{width:45.485760px;}
._23{width:49.592640px;}
._24{width:51.754560px;}
._25{width:61.940640px;}
._26{width:100.205280px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:47.520000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:4.320000px;}
.yb8{bottom:4.350000px;}
.y62{bottom:4.680000px;}
.y6e{bottom:4.725000px;}
.y91{bottom:5.040000px;}
.y5f{bottom:7.200000px;}
.y69{bottom:7.920000px;}
.y6b{bottom:8.280000px;}
.yb5{bottom:8.310000px;}
.y65{bottom:11.550000px;}
.y64{bottom:14.760000px;}
.y6f{bottom:15.165000px;}
.y5d{bottom:18.000000px;}
.ya6{bottom:18.720000px;}
.y61{bottom:25.200000px;}
.y9e{bottom:25.230000px;}
.y6d{bottom:25.245000px;}
.y90{bottom:25.560000px;}
.yb4{bottom:29.190000px;}
.y63{bottom:35.640000px;}
.y94{bottom:35.670000px;}
.y8d{bottom:36.030000px;}
.y5c{bottom:38.880000px;}
.ya5{bottom:39.240000px;}
.yb1{bottom:39.270000px;}
.y96{bottom:45.720000px;}
.yb7{bottom:45.750000px;}
.y60{bottom:46.080000px;}
.y93{bottom:46.110000px;}
.y8f{bottom:46.470000px;}
.y2{bottom:46.800000px;}
.yb3{bottom:49.710000px;}
.y59{bottom:52.950000px;}
.y5b{bottom:59.400000px;}
.ybc{bottom:66.645000px;}
.y1{bottom:66.960000px;}
.y8e{bottom:66.990000px;}
.yb2{bottom:70.590000px;}
.yc3{bottom:111.996000px;}
.y52{bottom:115.596000px;}
.yac{bottom:115.956000px;}
.y88{bottom:124.236000px;}
.y30{bottom:128.916000px;}
.yab{bottom:136.476000px;}
.yc2{bottom:142.956000px;}
.y51{bottom:146.556000px;}
.y87{bottom:155.550000px;}
.yaa{bottom:157.350000px;}
.y2f{bottom:159.870000px;}
.yc1{bottom:173.910000px;}
.yc4{bottom:177.150000px;}
.y50{bottom:177.510000px;}
.ya9{bottom:177.870000px;}
.y86{bottom:186.510000px;}
.y2e{bottom:191.190000px;}
.ya8{bottom:194.835000px;}
.y4f{bottom:208.515000px;}
.yc0{bottom:215.355000px;}
.y85{bottom:217.515000px;}
.y2d{bottom:222.555000px;}
.ybf{bottom:232.275000px;}
.ya7{bottom:237.315000px;}
.y4e{bottom:239.835000px;}
.y84{bottom:248.475000px;}
.y2c{bottom:253.515000px;}
.y55{bottom:270.435000px;}
.y4d{bottom:270.795000px;}
.ybe{bottom:274.395000px;}
.ya4{bottom:279.435000px;}
.y83{bottom:279.795000px;}
.y2b{bottom:284.475000px;}
.y4c{bottom:301.755000px;}
.y82{bottom:310.755000px;}
.y2a{bottom:315.435000px;}
.y4b{bottom:332.745000px;}
.ya3{bottom:335.625000px;}
.ybd{bottom:337.425000px;}
.y81{bottom:341.745000px;}
.y29{bottom:346.785000px;}
.ya2{bottom:357.225000px;}
.y4a{bottom:364.065000px;}
.y80{bottom:372.705000px;}
.y28{bottom:377.745000px;}
.ybb{bottom:379.545000px;}
.y49{bottom:395.025000px;}
.ya1{bottom:399.345000px;}
.y7f{bottom:403.665000px;}
.y27{bottom:408.705000px;}
.y48{bottom:425.985000px;}
.y7e{bottom:434.985000px;}
.y26{bottom:439.665000px;}
.y47{bottom:456.990000px;}
.ya0{bottom:462.030000px;}
.yba{bottom:463.110000px;}
.y7d{bottom:465.990000px;}
.y25{bottom:471.030000px;}
.y46{bottom:487.950000px;}
.y7c{bottom:496.950000px;}
.y24{bottom:501.630000px;}
.y9f{bottom:504.510000px;}
.yb9{bottom:505.230000px;}
.y45{bottom:519.270000px;}
.y7b{bottom:523.230000px;}
.y23{bottom:532.950000px;}
.y7a{bottom:538.350000px;}
.y44{bottom:550.230000px;}
.y79{bottom:559.230000px;}
.y22{bottom:563.550000px;}
.y9d{bottom:567.150000px;}
.yb0{bottom:568.230000px;}
.y78{bottom:579.780000px;}
.y43{bottom:581.220000px;}
.y77{bottom:600.660000px;}
.y21{bottom:601.740000px;}
.y9c{bottom:609.300000px;}
.y42{bottom:612.180000px;}
.y76{bottom:617.580000px;}
.yb6{bottom:630.900000px;}
.y20{bottom:632.700000px;}
.y41{bottom:643.500000px;}
.y9b{bottom:651.420000px;}
.y75{bottom:659.700000px;}
.y1f{bottom:663.660000px;}
.yaf{bottom:674.100000px;}
.y40{bottom:674.460000px;}
.y1e{bottom:687.780000px;}
.y74{bottom:688.140000px;}
.y9a{bottom:693.540000px;}
.yae{bottom:705.090000px;}
.y3f{bottom:705.450000px;}
.y99{bottom:715.170000px;}
.y73{bottom:716.970000px;}
.y1d{bottom:719.130000px;}
.yad{bottom:736.050000px;}
.y3e{bottom:736.410000px;}
.y72{bottom:745.410000px;}
.y1c{bottom:750.090000px;}
.y98{bottom:757.290000px;}
.y3d{bottom:767.730000px;}
.y71{bottom:773.850000px;}
.y1b{bottom:781.050000px;}
.y3c{bottom:798.690000px;}
.y70{bottom:802.650000px;}
.y1a{bottom:812.370000px;}
.y97{bottom:820.290000px;}
.y6c{bottom:823.890000px;}
.yc5{bottom:829.335000px;}
.y3b{bottom:829.695000px;}
.y19{bottom:843.375000px;}
.y3a{bottom:860.655000px;}
.y95{bottom:862.455000px;}
.y6a{bottom:866.055000px;}
.y18{bottom:874.695000px;}
.y39{bottom:891.975000px;}
.y67{bottom:894.855000px;}
.y17{bottom:905.655000px;}
.y38{bottom:922.935000px;}
.y66{bottom:923.295000px;}
.y16{bottom:924.015000px;}
.y8c{bottom:925.095000px;}
.y15{bottom:934.455000px;}
.y14{bottom:944.535000px;}
.y58{bottom:944.895000px;}
.y37{bottom:953.925000px;}
.y13{bottom:955.005000px;}
.y12{bottom:965.445000px;}
.y5a{bottom:973.365000px;}
.y11{bottom:975.885000px;}
.y36{bottom:984.885000px;}
.y10{bottom:985.965000px;}
.y92{bottom:988.125000px;}
.yf{bottom:996.405000px;}
.ye{bottom:1006.845000px;}
.y35{bottom:1015.845000px;}
.y54{bottom:1016.205000px;}
.yd{bottom:1017.285000px;}
.y8b{bottom:1021.965000px;}
.yc{bottom:1027.365000px;}
.y5e{bottom:1036.365000px;}
.yb{bottom:1037.805000px;}
.y34{bottom:1047.165000px;}
.ya{bottom:1048.965000px;}
.y8a{bottom:1050.765000px;}
.y9{bottom:1063.005000px;}
.y8{bottom:1076.685000px;}
.y57{bottom:1077.810000px;}
.y33{bottom:1078.170000px;}
.y89{bottom:1079.970000px;}
.y7{bottom:1090.410000px;}
.y6{bottom:1104.090000px;}
.y56{bottom:1108.770000px;}
.y32{bottom:1109.130000px;}
.y5{bottom:1117.770000px;}
.y4{bottom:1131.450000px;}
.y31{bottom:1140.090000px;}
.y53{bottom:1140.450000px;}
.y3{bottom:1145.490000px;}
.h13{height:20.520000px;}
.hf{height:20.880000px;}
.h1a{height:20.916000px;}
.hc{height:26.280000px;}
.h10{height:27.720000px;}
.he{height:27.756000px;}
.h11{height:28.080000px;}
.h14{height:28.116000px;}
.h5{height:35.332031px;}
.h15{height:41.400000px;}
.h12{height:41.436000px;}
.h4{height:46.638281px;}
.h3{height:47.891250px;}
.h1c{height:55.476000px;}
.h19{height:61.920000px;}
.h1b{height:61.956000px;}
.hd{height:62.280000px;}
.h18{height:62.316000px;}
.h8{height:70.628906px;}
.h2{height:70.664062px;}
.h6{height:72.562500px;}
.h16{height:73.975078px;}
.h9{height:73.998281px;}
.h1f{height:74.004654px;}
.h7{height:75.251250px;}
.h1e{height:82.836000px;}
.h17{height:83.556000px;}
.hb{height:89.280000px;}
.h1d{height:90.756000px;}
.ha{height:117.756000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:50.760000px;}
.wa{width:50.796000px;}
.wd{width:51.120000px;}
.wc{width:51.156000px;}
.we{width:52.200000px;}
.w9{width:61.200000px;}
.w13{width:84.996000px;}
.w1b{width:91.836000px;}
.w18{width:92.196000px;}
.w17{width:102.312000px;}
.w6{width:102.636000px;}
.w8{width:104.076000px;}
.w11{width:109.512000px;}
.w4{width:112.716000px;}
.w7{width:113.076000px;}
.w16{width:114.876000px;}
.w15{width:122.796000px;}
.w14{width:123.156000px;}
.w10{width:124.956000px;}
.w19{width:135.432000px;}
.w3{width:145.152000px;}
.w5{width:424.590000px;}
.w12{width:447.990000px;}
.w1a{width:454.830000px;}
.wf{width:683.895000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x41{left:1.800000px;}
.x3d{left:3.270000px;}
.x28{left:5.400000px;}
.x14{left:6.840000px;}
.x42{left:7.950000px;}
.x13{left:9.360000px;}
.x1e{left:11.160000px;}
.x3a{left:12.600000px;}
.x43{left:13.680000px;}
.x2d{left:14.760000px;}
.x1c{left:16.200000px;}
.x20{left:17.670000px;}
.x19{left:18.720000px;}
.x29{left:20.550000px;}
.x27{left:21.600000px;}
.x22{left:23.040000px;}
.x2e{left:24.840000px;}
.x2b{left:25.920000px;}
.x2c{left:27.360000px;}
.x44{left:28.440000px;}
.x4e{left:29.520000px;}
.x17{left:30.960000px;}
.x18{left:32.760000px;}
.x3c{left:34.590000px;}
.x11{left:36.396000px;}
.x15{left:37.800000px;}
.x3b{left:38.910000px;}
.x46{left:39.990000px;}
.x3e{left:41.400000px;}
.x37{left:42.840000px;}
.x2a{left:45.759000px;}
.x47{left:51.150000px;}
.x40{left:54.750000px;}
.x3f{left:57.270000px;}
.x26{left:61.239000px;}
.x30{left:67.719000px;}
.x10{left:104.796000px;}
.x2{left:106.235987px;}
.x4{left:110.195987px;}
.x31{left:114.155987px;}
.xe{left:117.755987px;}
.x49{left:128.555987px;}
.x16{left:131.790000px;}
.x9{left:142.631987px;}
.x4d{left:146.550000px;}
.xb{left:159.554987px;}
.x4a{left:163.874987px;}
.x32{left:180.794987px;}
.x48{left:191.589000px;}
.x8{left:196.634987px;}
.x7{left:203.834987px;}
.x34{left:230.475000px;}
.x4c{left:240.945000px;}
.x12{left:250.665000px;}
.x2f{left:274.794000px;}
.xf{left:284.504987px;}
.x25{left:306.114000px;}
.x1d{left:312.585000px;}
.x4b{left:319.064987px;}
.x45{left:333.510000px;}
.x35{left:340.710000px;}
.x33{left:345.029987px;}
.xa{left:363.389987px;}
.x5{left:385.709987px;}
.x1f{left:415.950000px;}
.x36{left:426.420000px;}
.x4f{left:438.299987px;}
.x1{left:442.259987px;}
.x6{left:446.579987px;}
.x3{left:467.819987px;}
.x21{left:519.330000px;}
.x38{left:550.290000px;}
.x1a{left:581.250000px;}
.x23{left:632.775000px;}
.x39{left:673.815000px;}
.x1b{left:684.615000px;}
.xd{left:732.524987px;}
.x24{left:736.485000px;}
.xc{left:786.884987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls21{letter-spacing:-2.432000pt;}
.ls27{letter-spacing:-2.112000pt;}
.ls24{letter-spacing:-1.536000pt;}
.ls1b{letter-spacing:-1.408000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.152000pt;}
.lsa{letter-spacing:-1.024000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.208533pt;}
.ls3{letter-spacing:0.222933pt;}
.ls11{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.152000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.408000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:2.432000pt;}
.ls16{letter-spacing:2.560000pt;}
.ls23{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls18{letter-spacing:5.760000pt;}
.ls1{letter-spacing:7.040000pt;}
.ls22{letter-spacing:12.160000pt;}
.ls12{letter-spacing:13.440000pt;}
.ls25{letter-spacing:23.680000pt;}
.ls26{letter-spacing:23.786667pt;}
.ls29{letter-spacing:89.728000pt;}
.ws12{word-spacing:-19.840000pt;}
.ws16{word-spacing:-18.560000pt;}
.ws1b{word-spacing:-18.432000pt;}
.ws17{word-spacing:-17.408000pt;}
.ws13{word-spacing:-17.280000pt;}
.wsf{word-spacing:-17.152000pt;}
.ws1a{word-spacing:-16.704000pt;}
.ws1f{word-spacing:-16.576000pt;}
.ws11{word-spacing:-16.448000pt;}
.ws14{word-spacing:-16.256000pt;}
.ws1d{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.552000pt;}
.wsb{word-spacing:-15.424000pt;}
.ws10{word-spacing:-15.168000pt;}
.wsc{word-spacing:-14.976000pt;}
.ws15{word-spacing:-14.848000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.592000pt;}
.ws1c{word-spacing:-14.464000pt;}
.ws1e{word-spacing:-13.888000pt;}
.ws1{word-spacing:-10.782933pt;}
.ws2{word-spacing:-10.768533pt;}
.ws3{word-spacing:-10.560000pt;}
.ws7{word-spacing:-8.960000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws8{word-spacing:-7.680000pt;}
.ws6{word-spacing:-7.360000pt;}
.wse{word-spacing:0.000000pt;}
._1e{margin-left:-14.592000pt;}
._15{margin-left:-4.334080pt;}
._7{margin-left:-2.875307pt;}
._2{margin-left:-1.956267pt;}
._1{margin-left:-0.971520pt;}
._0{width:1.140480pt;}
._4{width:2.069760pt;}
._3{width:3.034667pt;}
._5{width:4.077867pt;}
._6{width:5.012907pt;}
._f{width:6.065707pt;}
._10{width:7.817600pt;}
._8{width:8.954453pt;}
._9{width:10.287787pt;}
._a{width:11.266347pt;}
._17{width:12.729813pt;}
._16{width:13.946027pt;}
._c{width:15.055147pt;}
._b{width:17.497173pt;}
._18{width:18.954667pt;}
._19{width:19.944960pt;}
._d{width:20.994133pt;}
._1a{width:22.135893pt;}
._e{width:23.174827pt;}
._1b{width:24.494933pt;}
._1d{width:25.582933pt;}
._1c{width:27.038293pt;}
._13{width:28.327680pt;}
._14{width:29.697707pt;}
._1f{width:30.871040pt;}
._11{width:33.024000pt;}
._12{width:34.176000pt;}
._22{width:38.158933pt;}
._21{width:39.400960pt;}
._20{width:40.431787pt;}
._23{width:44.082347pt;}
._24{width:46.004053pt;}
._25{width:55.058347pt;}
._26{width:89.071360pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:42.240000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:3.840000pt;}
.yb8{bottom:3.866667pt;}
.y62{bottom:4.160000pt;}
.y6e{bottom:4.200000pt;}
.y91{bottom:4.480000pt;}
.y5f{bottom:6.400000pt;}
.y69{bottom:7.040000pt;}
.y6b{bottom:7.360000pt;}
.yb5{bottom:7.386667pt;}
.y65{bottom:10.266667pt;}
.y64{bottom:13.120000pt;}
.y6f{bottom:13.480000pt;}
.y5d{bottom:16.000000pt;}
.ya6{bottom:16.640000pt;}
.y61{bottom:22.400000pt;}
.y9e{bottom:22.426667pt;}
.y6d{bottom:22.440000pt;}
.y90{bottom:22.720000pt;}
.yb4{bottom:25.946667pt;}
.y63{bottom:31.680000pt;}
.y94{bottom:31.706667pt;}
.y8d{bottom:32.026667pt;}
.y5c{bottom:34.560000pt;}
.ya5{bottom:34.880000pt;}
.yb1{bottom:34.906667pt;}
.y96{bottom:40.640000pt;}
.yb7{bottom:40.666667pt;}
.y60{bottom:40.960000pt;}
.y93{bottom:40.986667pt;}
.y8f{bottom:41.306667pt;}
.y2{bottom:41.600000pt;}
.yb3{bottom:44.186667pt;}
.y59{bottom:47.066667pt;}
.y5b{bottom:52.800000pt;}
.ybc{bottom:59.240000pt;}
.y1{bottom:59.520000pt;}
.y8e{bottom:59.546667pt;}
.yb2{bottom:62.746667pt;}
.yc3{bottom:99.552000pt;}
.y52{bottom:102.752000pt;}
.yac{bottom:103.072000pt;}
.y88{bottom:110.432000pt;}
.y30{bottom:114.592000pt;}
.yab{bottom:121.312000pt;}
.yc2{bottom:127.072000pt;}
.y51{bottom:130.272000pt;}
.y87{bottom:138.266667pt;}
.yaa{bottom:139.866667pt;}
.y2f{bottom:142.106667pt;}
.yc1{bottom:154.586667pt;}
.yc4{bottom:157.466667pt;}
.y50{bottom:157.786667pt;}
.ya9{bottom:158.106667pt;}
.y86{bottom:165.786667pt;}
.y2e{bottom:169.946667pt;}
.ya8{bottom:173.186667pt;}
.y4f{bottom:185.346667pt;}
.yc0{bottom:191.426667pt;}
.y85{bottom:193.346667pt;}
.y2d{bottom:197.826667pt;}
.ybf{bottom:206.466667pt;}
.ya7{bottom:210.946667pt;}
.y4e{bottom:213.186667pt;}
.y84{bottom:220.866667pt;}
.y2c{bottom:225.346667pt;}
.y55{bottom:240.386667pt;}
.y4d{bottom:240.706667pt;}
.ybe{bottom:243.906667pt;}
.ya4{bottom:248.386667pt;}
.y83{bottom:248.706667pt;}
.y2b{bottom:252.866667pt;}
.y4c{bottom:268.226667pt;}
.y82{bottom:276.226667pt;}
.y2a{bottom:280.386667pt;}
.y4b{bottom:295.773333pt;}
.ya3{bottom:298.333333pt;}
.ybd{bottom:299.933333pt;}
.y81{bottom:303.773333pt;}
.y29{bottom:308.253333pt;}
.ya2{bottom:317.533333pt;}
.y4a{bottom:323.613333pt;}
.y80{bottom:331.293333pt;}
.y28{bottom:335.773333pt;}
.ybb{bottom:337.373333pt;}
.y49{bottom:351.133333pt;}
.ya1{bottom:354.973333pt;}
.y7f{bottom:358.813333pt;}
.y27{bottom:363.293333pt;}
.y48{bottom:378.653333pt;}
.y7e{bottom:386.653333pt;}
.y26{bottom:390.813333pt;}
.y47{bottom:406.213333pt;}
.ya0{bottom:410.693333pt;}
.yba{bottom:411.653333pt;}
.y7d{bottom:414.213333pt;}
.y25{bottom:418.693333pt;}
.y46{bottom:433.733333pt;}
.y7c{bottom:441.733333pt;}
.y24{bottom:445.893333pt;}
.y9f{bottom:448.453333pt;}
.yb9{bottom:449.093333pt;}
.y45{bottom:461.573333pt;}
.y7b{bottom:465.093333pt;}
.y23{bottom:473.733333pt;}
.y7a{bottom:478.533333pt;}
.y44{bottom:489.093333pt;}
.y79{bottom:497.093333pt;}
.y22{bottom:500.933333pt;}
.y9d{bottom:504.133333pt;}
.yb0{bottom:505.093333pt;}
.y78{bottom:515.360000pt;}
.y43{bottom:516.640000pt;}
.y77{bottom:533.920000pt;}
.y21{bottom:534.880000pt;}
.y9c{bottom:541.600000pt;}
.y42{bottom:544.160000pt;}
.y76{bottom:548.960000pt;}
.yb6{bottom:560.800000pt;}
.y20{bottom:562.400000pt;}
.y41{bottom:572.000000pt;}
.y9b{bottom:579.040000pt;}
.y75{bottom:586.400000pt;}
.y1f{bottom:589.920000pt;}
.yaf{bottom:599.200000pt;}
.y40{bottom:599.520000pt;}
.y1e{bottom:611.360000pt;}
.y74{bottom:611.680000pt;}
.y9a{bottom:616.480000pt;}
.yae{bottom:626.746667pt;}
.y3f{bottom:627.066667pt;}
.y99{bottom:635.706667pt;}
.y73{bottom:637.306667pt;}
.y1d{bottom:639.226667pt;}
.yad{bottom:654.266667pt;}
.y3e{bottom:654.586667pt;}
.y72{bottom:662.586667pt;}
.y1c{bottom:666.746667pt;}
.y98{bottom:673.146667pt;}
.y3d{bottom:682.426667pt;}
.y71{bottom:687.866667pt;}
.y1b{bottom:694.266667pt;}
.y3c{bottom:709.946667pt;}
.y70{bottom:713.466667pt;}
.y1a{bottom:722.106667pt;}
.y97{bottom:729.146667pt;}
.y6c{bottom:732.346667pt;}
.yc5{bottom:737.186667pt;}
.y3b{bottom:737.506667pt;}
.y19{bottom:749.666667pt;}
.y3a{bottom:765.026667pt;}
.y95{bottom:766.626667pt;}
.y6a{bottom:769.826667pt;}
.y18{bottom:777.506667pt;}
.y39{bottom:792.866667pt;}
.y67{bottom:795.426667pt;}
.y17{bottom:805.026667pt;}
.y38{bottom:820.386667pt;}
.y66{bottom:820.706667pt;}
.y16{bottom:821.346667pt;}
.y8c{bottom:822.306667pt;}
.y15{bottom:830.626667pt;}
.y14{bottom:839.586667pt;}
.y58{bottom:839.906667pt;}
.y37{bottom:847.933333pt;}
.y13{bottom:848.893333pt;}
.y12{bottom:858.173333pt;}
.y5a{bottom:865.213333pt;}
.y11{bottom:867.453333pt;}
.y36{bottom:875.453333pt;}
.y10{bottom:876.413333pt;}
.y92{bottom:878.333333pt;}
.yf{bottom:885.693333pt;}
.ye{bottom:894.973333pt;}
.y35{bottom:902.973333pt;}
.y54{bottom:903.293333pt;}
.yd{bottom:904.253333pt;}
.y8b{bottom:908.413333pt;}
.yc{bottom:913.213333pt;}
.y5e{bottom:921.213333pt;}
.yb{bottom:922.493333pt;}
.y34{bottom:930.813333pt;}
.ya{bottom:932.413333pt;}
.y8a{bottom:934.013333pt;}
.y9{bottom:944.893333pt;}
.y8{bottom:957.053333pt;}
.y57{bottom:958.053333pt;}
.y33{bottom:958.373333pt;}
.y89{bottom:959.973333pt;}
.y7{bottom:969.253333pt;}
.y6{bottom:981.413333pt;}
.y56{bottom:985.573333pt;}
.y32{bottom:985.893333pt;}
.y5{bottom:993.573333pt;}
.y4{bottom:1005.733333pt;}
.y31{bottom:1013.413333pt;}
.y53{bottom:1013.733333pt;}
.y3{bottom:1018.213333pt;}
.h13{height:18.240000pt;}
.hf{height:18.560000pt;}
.h1a{height:18.592000pt;}
.hc{height:23.360000pt;}
.h10{height:24.640000pt;}
.he{height:24.672000pt;}
.h11{height:24.960000pt;}
.h14{height:24.992000pt;}
.h5{height:31.406250pt;}
.h15{height:36.800000pt;}
.h12{height:36.832000pt;}
.h4{height:41.456250pt;}
.h3{height:42.570000pt;}
.h1c{height:49.312000pt;}
.h19{height:55.040000pt;}
.h1b{height:55.072000pt;}
.hd{height:55.360000pt;}
.h18{height:55.392000pt;}
.h8{height:62.781250pt;}
.h2{height:62.812500pt;}
.h6{height:64.500000pt;}
.h16{height:65.755625pt;}
.h9{height:65.776250pt;}
.h1f{height:65.781915pt;}
.h7{height:66.890000pt;}
.h1e{height:73.632000pt;}
.h17{height:74.272000pt;}
.hb{height:79.360000pt;}
.h1d{height:80.672000pt;}
.ha{height:104.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:45.120000pt;}
.wa{width:45.152000pt;}
.wd{width:45.440000pt;}
.wc{width:45.472000pt;}
.we{width:46.400000pt;}
.w9{width:54.400000pt;}
.w13{width:75.552000pt;}
.w1b{width:81.632000pt;}
.w18{width:81.952000pt;}
.w17{width:90.944000pt;}
.w6{width:91.232000pt;}
.w8{width:92.512000pt;}
.w11{width:97.344000pt;}
.w4{width:100.192000pt;}
.w7{width:100.512000pt;}
.w16{width:102.112000pt;}
.w15{width:109.152000pt;}
.w14{width:109.472000pt;}
.w10{width:111.072000pt;}
.w19{width:120.384000pt;}
.w3{width:129.024000pt;}
.w5{width:377.413333pt;}
.w12{width:398.213333pt;}
.w1a{width:404.293333pt;}
.wf{width:607.906667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x41{left:1.600000pt;}
.x3d{left:2.906667pt;}
.x28{left:4.800000pt;}
.x14{left:6.080000pt;}
.x42{left:7.066667pt;}
.x13{left:8.320000pt;}
.x1e{left:9.920000pt;}
.x3a{left:11.200000pt;}
.x43{left:12.160000pt;}
.x2d{left:13.120000pt;}
.x1c{left:14.400000pt;}
.x20{left:15.706667pt;}
.x19{left:16.640000pt;}
.x29{left:18.266667pt;}
.x27{left:19.200000pt;}
.x22{left:20.480000pt;}
.x2e{left:22.080000pt;}
.x2b{left:23.040000pt;}
.x2c{left:24.320000pt;}
.x44{left:25.280000pt;}
.x4e{left:26.240000pt;}
.x17{left:27.520000pt;}
.x18{left:29.120000pt;}
.x3c{left:30.746667pt;}
.x11{left:32.352000pt;}
.x15{left:33.600000pt;}
.x3b{left:34.586667pt;}
.x46{left:35.546667pt;}
.x3e{left:36.800000pt;}
.x37{left:38.080000pt;}
.x2a{left:40.674667pt;}
.x47{left:45.466667pt;}
.x40{left:48.666667pt;}
.x3f{left:50.906667pt;}
.x26{left:54.434667pt;}
.x30{left:60.194667pt;}
.x10{left:93.152000pt;}
.x2{left:94.431988pt;}
.x4{left:97.951988pt;}
.x31{left:101.471988pt;}
.xe{left:104.671988pt;}
.x49{left:114.271988pt;}
.x16{left:117.146667pt;}
.x9{left:126.783988pt;}
.x4d{left:130.266667pt;}
.xb{left:141.826655pt;}
.x4a{left:145.666655pt;}
.x32{left:160.706655pt;}
.x48{left:170.301333pt;}
.x8{left:174.786655pt;}
.x7{left:181.186655pt;}
.x34{left:204.866667pt;}
.x4c{left:214.173333pt;}
.x12{left:222.813333pt;}
.x2f{left:244.261333pt;}
.xf{left:252.893322pt;}
.x25{left:272.101333pt;}
.x1d{left:277.853333pt;}
.x4b{left:283.613322pt;}
.x45{left:296.453333pt;}
.x35{left:302.853333pt;}
.x33{left:306.693322pt;}
.xa{left:323.013322pt;}
.x5{left:342.853322pt;}
.x1f{left:369.733333pt;}
.x36{left:379.040000pt;}
.x4f{left:389.599988pt;}
.x1{left:393.119988pt;}
.x6{left:396.959988pt;}
.x3{left:415.839988pt;}
.x21{left:461.626667pt;}
.x38{left:489.146667pt;}
.x1a{left:516.666667pt;}
.x23{left:562.466667pt;}
.x39{left:598.946667pt;}
.x1b{left:608.546667pt;}
.xd{left:651.133322pt;}
.x24{left:654.653333pt;}
.xc{left:699.453322pt;}
}




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