
    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_fb96dda4244f92166e500f01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_8f2832a09e8993353761c89f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_57ca025114a1b6437e1b54bc.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_4cc77db693e4978ea5a0bd60.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_6f5bc3f89ac2ea2deeab335f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_f02cc6ea09c34f530ad8cdba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850000;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_19d40e3cd4c78246a74b47ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_df2791922846fb73fe0157d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls0{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.720000px;}
.ls2{letter-spacing:46.800000px;}
.ls7{letter-spacing:87.960000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-18.576000px;}
.ws0{word-spacing:-18.305520px;}
.ws4{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.064000px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-5.040000px;}
._8{margin-left:-3.744000px;}
._9{margin-left:-2.664000px;}
._1{margin-left:-1.008000px;}
._0{width:1.128000px;}
._4{width:2.316000px;}
._f{width:3.432000px;}
._3{width:5.184000px;}
._2{width:6.312000px;}
._a{width:7.464000px;}
._13{width:8.856000px;}
._14{width:10.080000px;}
._18{width:11.088000px;}
._17{width:12.096000px;}
._11{width:13.176000px;}
._b{width:14.976000px;}
._1a{width:16.128000px;}
._19{width:19.944000px;}
._1d{width:21.240000px;}
._c{width:22.608000px;}
._d{width:23.832000px;}
._12{width:24.912000px;}
._6{width:26.928000px;}
._7{width:28.104000px;}
._1f{width:29.160000px;}
._20{width:30.240000px;}
._5{width:32.040000px;}
._10{width:34.272000px;}
._23{width:35.856000px;}
._1b{width:37.656000px;}
._22{width:39.024000px;}
._21{width:40.176000px;}
._27{width:41.328000px;}
._24{width:44.232000px;}
._1e{width:45.288000px;}
._15{width:46.596000px;}
._16{width:47.700000px;}
._1c{width:52.560000px;}
._26{width:81.480000px;}
._25{width:91.728000px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y92{bottom:7.020000px;}
.ya0{bottom:7.200000px;}
.y95{bottom:8.820000px;}
.y8f{bottom:12.060000px;}
.ydf{bottom:13.680000px;}
.y98{bottom:14.220000px;}
.ye2{bottom:17.100000px;}
.ye5{bottom:17.280000px;}
.ydb{bottom:20.700000px;}
.y9d{bottom:30.774000px;}
.y9b{bottom:30.780000px;}
.y91{bottom:30.960000px;}
.y94{bottom:32.580000px;}
.yde{bottom:37.440000px;}
.y97{bottom:38.160000px;}
.ye1{bottom:40.860000px;}
.ye4{bottom:41.070000px;}
.y2{bottom:50.220000px;}
.y31{bottom:52.920000px;}
.y9a{bottom:54.540000px;}
.y9f{bottom:54.720000px;}
.ydd{bottom:61.200000px;}
.y1{bottom:69.120000px;}
.y30{bottom:71.496000px;}
.y2c{bottom:88.236000px;}
.y89{bottom:92.376000px;}
.y2b{bottom:93.456000px;}
.yf1{bottom:93.816000px;}
.yd9{bottom:97.776000px;}
.yc1{bottom:100.836000px;}
.y2a{bottom:105.696000px;}
.y115{bottom:118.476000px;}
.ycb{bottom:119.016000px;}
.yd8{bottom:119.556000px;}
.y88{bottom:123.516000px;}
.yf0{bottom:124.956000px;}
.yc0{bottom:131.976000px;}
.y60{bottom:134.496000px;}
.ybe{bottom:135.936000px;}
.y9c{bottom:138.636000px;}
.yd7{bottom:141.516000px;}
.y114{bottom:142.236000px;}
.yca{bottom:149.976000px;}
.y29{bottom:152.670000px;}
.y6f{bottom:153.570000px;}
.y87{bottom:154.470000px;}
.yef{bottom:155.910000px;}
.ybf{bottom:162.930000px;}
.y113{bottom:165.990000px;}
.ybd{bottom:166.890000px;}
.yd6{bottom:171.210000px;}
.yc9{bottom:181.110000px;}
.y28{bottom:183.810000px;}
.y6e{bottom:184.530000px;}
.y86{bottom:185.610000px;}
.yee{bottom:187.050000px;}
.y112{bottom:189.930000px;}
.y50{bottom:194.070000px;}
.ybc{bottom:198.030000px;}
.yd5{bottom:202.350000px;}
.y99{bottom:203.250000px;}
.yc8{bottom:212.070000px;}
.y111{bottom:213.690000px;}
.y27{bottom:214.770000px;}
.y6d{bottom:215.670000px;}
.y85{bottom:216.570000px;}
.yed{bottom:218.010000px;}
.y4f{bottom:225.030000px;}
.ybb{bottom:228.990000px;}
.yd4{bottom:233.310000px;}
.y110{bottom:237.450000px;}
.yc7{bottom:243.210000px;}
.y26{bottom:245.910000px;}
.y6c{bottom:246.630000px;}
.y84{bottom:247.710000px;}
.yec{bottom:249.150000px;}
.y4e{bottom:256.170000px;}
.yba{bottom:260.130000px;}
.y10f{bottom:261.210000px;}
.yd3{bottom:264.450000px;}
.yc6{bottom:274.170000px;}
.y25{bottom:276.870000px;}
.y6b{bottom:277.770000px;}
.y83{bottom:278.670000px;}
.yeb{bottom:280.110000px;}
.y10e{bottom:285.150000px;}
.y4d{bottom:287.130000px;}
.yb9{bottom:291.090000px;}
.y96{bottom:291.450000px;}
.yd2{bottom:295.410000px;}
.yc5{bottom:305.310000px;}
.y24{bottom:308.010000px;}
.y6a{bottom:308.730000px;}
.y10d{bottom:308.910000px;}
.y82{bottom:309.810000px;}
.yea{bottom:311.250000px;}
.y4c{bottom:318.090000px;}
.yb8{bottom:322.230000px;}
.yd1{bottom:326.550000px;}
.y10c{bottom:332.670000px;}
.yc4{bottom:336.270000px;}
.y23{bottom:339.015000px;}
.y69{bottom:339.915000px;}
.y81{bottom:340.815000px;}
.ye9{bottom:342.255000px;}
.y4b{bottom:349.275000px;}
.yb7{bottom:353.235000px;}
.y10b{bottom:356.475000px;}
.yd0{bottom:357.555000px;}
.y93{bottom:363.315000px;}
.yc3{bottom:367.455000px;}
.y22{bottom:370.155000px;}
.y68{bottom:370.875000px;}
.y80{bottom:371.955000px;}
.ye8{bottom:373.395000px;}
.y4a{bottom:380.235000px;}
.yb6{bottom:384.375000px;}
.ycf{bottom:388.515000px;}
.ye7{bottom:398.415000px;}
.y21{bottom:401.115000px;}
.y67{bottom:402.015000px;}
.y7f{bottom:402.915000px;}
.y10a{bottom:404.175000px;}
.y49{bottom:411.375000px;}
.yb5{bottom:415.335000px;}
.yce{bottom:419.655000px;}
.y109{bottom:427.935000px;}
.y90{bottom:429.555000px;}
.y20{bottom:432.255000px;}
.y66{bottom:432.975000px;}
.y7e{bottom:434.055000px;}
.y48{bottom:442.335000px;}
.yb4{bottom:446.475000px;}
.ycd{bottom:450.615000px;}
.y108{bottom:451.695000px;}
.y1f{bottom:463.215000px;}
.y65{bottom:464.115000px;}
.y7d{bottom:465.015000px;}
.y5f{bottom:472.935000px;}
.y47{bottom:473.475000px;}
.y107{bottom:475.455000px;}
.yb3{bottom:477.435000px;}
.ycc{bottom:481.755000px;}
.ye6{bottom:484.815000px;}
.y8e{bottom:489.495000px;}
.y1e{bottom:494.355000px;}
.y64{bottom:495.075000px;}
.y7c{bottom:496.155000px;}
.y106{bottom:499.395000px;}
.y5e{bottom:504.075000px;}
.y46{bottom:504.435000px;}
.yb2{bottom:508.575000px;}
.y105{bottom:523.155000px;}
.y1d{bottom:525.315000px;}
.y63{bottom:526.215000px;}
.y7b{bottom:527.115000px;}
.y5d{bottom:535.035000px;}
.y45{bottom:535.575000px;}
.y8d{bottom:536.475000px;}
.yb1{bottom:539.535000px;}
.y104{bottom:546.915000px;}
.y1c{bottom:556.455000px;}
.y62{bottom:557.175000px;}
.y7a{bottom:558.255000px;}
.y5c{bottom:566.175000px;}
.y44{bottom:566.535000px;}
.y8c{bottom:567.435000px;}
.yb0{bottom:570.675000px;}
.ye3{bottom:577.695000px;}
.y1b{bottom:587.415000px;}
.y61{bottom:588.315000px;}
.y79{bottom:589.215000px;}
.y8b{bottom:590.475000px;}
.y103{bottom:594.615000px;}
.y5b{bottom:597.135000px;}
.y43{bottom:597.675000px;}
.yaf{bottom:601.635000px;}
.y8a{bottom:612.465000px;}
.y102{bottom:618.405000px;}
.y1a{bottom:618.585000px;}
.y78{bottom:620.385000px;}
.y12a{bottom:625.605000px;}
.y5a{bottom:628.305000px;}
.y42{bottom:628.665000px;}
.yae{bottom:632.805000px;}
.y101{bottom:642.165000px;}
.y19{bottom:642.345000px;}
.y129{bottom:649.365000px;}
.ye0{bottom:650.625000px;}
.y77{bottom:651.345000px;}
.y59{bottom:659.265000px;}
.y41{bottom:659.805000px;}
.yad{bottom:663.765000px;}
.y100{bottom:665.925000px;}
.y18{bottom:666.105000px;}
.y128{bottom:673.305000px;}
.y76{bottom:682.485000px;}
.y17{bottom:689.865000px;}
.y58{bottom:690.405000px;}
.y40{bottom:690.765000px;}
.yac{bottom:694.905000px;}
.y127{bottom:697.065000px;}
.y75{bottom:713.445000px;}
.yff{bottom:713.625000px;}
.y16{bottom:713.805000px;}
.y126{bottom:720.825000px;}
.y57{bottom:721.365000px;}
.y3f{bottom:721.905000px;}
.ydc{bottom:723.345000px;}
.yab{bottom:725.865000px;}
.yfe{bottom:737.385000px;}
.y15{bottom:737.565000px;}
.y74{bottom:744.405000px;}
.y125{bottom:744.585000px;}
.yc2{bottom:746.025000px;}
.y56{bottom:752.505000px;}
.y3e{bottom:752.865000px;}
.yaa{bottom:757.005000px;}
.yfd{bottom:761.145000px;}
.y14{bottom:761.325000px;}
.y124{bottom:768.525000px;}
.y73{bottom:775.545000px;}
.y55{bottom:783.465000px;}
.y3d{bottom:784.005000px;}
.y13{bottom:785.085000px;}
.ya9{bottom:787.965000px;}
.y123{bottom:792.285000px;}
.y72{bottom:806.505000px;}
.yfc{bottom:808.845000px;}
.y12{bottom:809.025000px;}
.y54{bottom:814.605000px;}
.y3c{bottom:814.965000px;}
.y122{bottom:816.045000px;}
.yda{bottom:817.125000px;}
.ya8{bottom:819.105000px;}
.yfb{bottom:832.605000px;}
.y11{bottom:832.785000px;}
.y71{bottom:837.645000px;}
.y121{bottom:839.805000px;}
.y53{bottom:845.565000px;}
.y3b{bottom:846.105000px;}
.ya7{bottom:850.065000px;}
.yfa{bottom:856.365000px;}
.y10{bottom:856.545000px;}
.y120{bottom:863.565000px;}
.y70{bottom:864.645000px;}
.y52{bottom:876.750000px;}
.y3a{bottom:877.110000px;}
.yf9{bottom:880.170000px;}
.ye{bottom:880.350000px;}
.ya6{bottom:881.250000px;}
.yf{bottom:887.190000px;}
.y11f{bottom:887.550000px;}
.y51{bottom:903.750000px;}
.yd{bottom:904.110000px;}
.y39{bottom:908.250000px;}
.y11e{bottom:911.310000px;}
.ya5{bottom:912.210000px;}
.yf8{bottom:927.870000px;}
.yc{bottom:928.050000px;}
.y11d{bottom:935.070000px;}
.y38{bottom:939.210000px;}
.ya4{bottom:943.350000px;}
.yf7{bottom:951.630000px;}
.yb{bottom:951.810000px;}
.y11c{bottom:958.830000px;}
.y37{bottom:970.350000px;}
.ya3{bottom:974.310000px;}
.yf6{bottom:975.390000px;}
.ya{bottom:975.570000px;}
.y11b{bottom:982.770000px;}
.yf5{bottom:999.330000px;}
.y36{bottom:1001.310000px;}
.ya2{bottom:1005.450000px;}
.y11a{bottom:1006.530000px;}
.y9{bottom:1006.710000px;}
.yf4{bottom:1023.090000px;}
.y119{bottom:1030.290000px;}
.y35{bottom:1032.450000px;}
.ya1{bottom:1036.410000px;}
.y8{bottom:1037.670000px;}
.yf3{bottom:1046.850000px;}
.y118{bottom:1054.050000px;}
.y9e{bottom:1062.330000px;}
.y34{bottom:1063.410000px;}
.y7{bottom:1068.810000px;}
.yf2{bottom:1070.610000px;}
.y117{bottom:1077.990000px;}
.y33{bottom:1094.550000px;}
.y6{bottom:1099.770000px;}
.y116{bottom:1101.750000px;}
.y32{bottom:1125.510000px;}
.y5{bottom:1130.910000px;}
.y2f{bottom:1145.880000px;}
.y4{bottom:1161.900000px;}
.y2e{bottom:1168.380000px;}
.y2d{bottom:1192.140000px;}
.y3{bottom:1193.040000px;}
.h6{height:27.147656px;}
.ha{height:28.800000px;}
.h8{height:31.737600px;}
.h5{height:33.683203px;}
.h12{height:37.440000px;}
.h7{height:41.726953px;}
.hf{height:47.520000px;}
.hb{height:47.700000px;}
.h2{height:48.224531px;}
.hc{height:49.320000px;}
.h4{height:50.273438px;}
.h3{height:50.800781px;}
.h11{height:52.417969px;}
.h9{height:54.246094px;}
.h16{height:54.878906px;}
.hd{height:54.936000px;}
.h14{height:57.600000px;}
.h15{height:57.816000px;}
.he{height:71.280000px;}
.h10{height:71.460000px;}
.h13{height:77.940000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:111.636000px;}
.w8{width:112.680000px;}
.wa{width:140.976000px;}
.w4{width:147.420000px;}
.wb{width:159.120000px;}
.wc{width:177.690000px;}
.w5{width:180.570000px;}
.w6{width:188.490000px;}
.w7{width:201.450000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:3.060000px;}
.x2d{left:7.380000px;}
.x24{left:8.460000px;}
.x2{left:108.035987px;}
.x2a{left:109.475987px;}
.x28{left:111.455987px;}
.x17{left:112.895987px;}
.x27{left:118.475987px;}
.x25{left:124.595987px;}
.x2f{left:150.509987px;}
.x1f{left:155.369987px;}
.x26{left:162.029987px;}
.x1c{left:177.149987px;}
.x18{left:179.129987px;}
.x1e{left:191.189987px;}
.x29{left:211.889987px;}
.xa{left:219.089987px;}
.x2b{left:220.710000px;}
.x1b{left:246.449987px;}
.x21{left:255.450000px;}
.x15{left:271.829987px;}
.xb{left:281.414987px;}
.x10{left:322.274987px;}
.x16{left:324.074987px;}
.x9{left:328.034987px;}
.x11{left:330.014987px;}
.x3{left:332.354987px;}
.xc{left:336.494987px;}
.x13{left:342.074987px;}
.x12{left:344.234987px;}
.x19{left:346.934987px;}
.xf{left:358.814987px;}
.x14{left:368.714987px;}
.x1{left:432.794987px;}
.x22{left:436.035000px;}
.x8{left:446.474987px;}
.x2c{left:473.325000px;}
.x7{left:545.504987px;}
.xd{left:550.544973px;}
.xe{left:556.664987px;}
.x6{left:576.464987px;}
.x5{left:592.484987px;}
.x4{left:618.944987px;}
.x23{left:624.525000px;}
.x2e{left:632.445000px;}
.x1d{left:738.329987px;}
.x1a{left:817.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls2{letter-spacing:41.600000pt;}
.ls7{letter-spacing:78.186667pt;}
.wsa{word-spacing:-16.512000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws4{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.168000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-4.480000pt;}
._8{margin-left:-3.328000pt;}
._9{margin-left:-2.368000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.002667pt;}
._4{width:2.058667pt;}
._f{width:3.050667pt;}
._3{width:4.608000pt;}
._2{width:5.610667pt;}
._a{width:6.634667pt;}
._13{width:7.872000pt;}
._14{width:8.960000pt;}
._18{width:9.856000pt;}
._17{width:10.752000pt;}
._11{width:11.712000pt;}
._b{width:13.312000pt;}
._1a{width:14.336000pt;}
._19{width:17.728000pt;}
._1d{width:18.880000pt;}
._c{width:20.096000pt;}
._d{width:21.184000pt;}
._12{width:22.144000pt;}
._6{width:23.936000pt;}
._7{width:24.981333pt;}
._1f{width:25.920000pt;}
._20{width:26.880000pt;}
._5{width:28.480000pt;}
._10{width:30.464000pt;}
._23{width:31.872000pt;}
._1b{width:33.472000pt;}
._22{width:34.688000pt;}
._21{width:35.712000pt;}
._27{width:36.736000pt;}
._24{width:39.317333pt;}
._1e{width:40.256000pt;}
._15{width:41.418667pt;}
._16{width:42.400000pt;}
._1c{width:46.720000pt;}
._26{width:72.426667pt;}
._25{width:81.536000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:6.240000pt;}
.ya0{bottom:6.400000pt;}
.y95{bottom:7.840000pt;}
.y8f{bottom:10.720000pt;}
.ydf{bottom:12.160000pt;}
.y98{bottom:12.640000pt;}
.ye2{bottom:15.200000pt;}
.ye5{bottom:15.360000pt;}
.ydb{bottom:18.400000pt;}
.y9d{bottom:27.354667pt;}
.y9b{bottom:27.360000pt;}
.y91{bottom:27.520000pt;}
.y94{bottom:28.960000pt;}
.yde{bottom:33.280000pt;}
.y97{bottom:33.920000pt;}
.ye1{bottom:36.320000pt;}
.ye4{bottom:36.506667pt;}
.y2{bottom:44.640000pt;}
.y31{bottom:47.040000pt;}
.y9a{bottom:48.480000pt;}
.y9f{bottom:48.640000pt;}
.ydd{bottom:54.400000pt;}
.y1{bottom:61.440000pt;}
.y30{bottom:63.552000pt;}
.y2c{bottom:78.432000pt;}
.y89{bottom:82.112000pt;}
.y2b{bottom:83.072000pt;}
.yf1{bottom:83.392000pt;}
.yd9{bottom:86.912000pt;}
.yc1{bottom:89.632000pt;}
.y2a{bottom:93.952000pt;}
.y115{bottom:105.312000pt;}
.ycb{bottom:105.792000pt;}
.yd8{bottom:106.272000pt;}
.y88{bottom:109.792000pt;}
.yf0{bottom:111.072000pt;}
.yc0{bottom:117.312000pt;}
.y60{bottom:119.552000pt;}
.ybe{bottom:120.832000pt;}
.y9c{bottom:123.232000pt;}
.yd7{bottom:125.792000pt;}
.y114{bottom:126.432000pt;}
.yca{bottom:133.312000pt;}
.y29{bottom:135.706667pt;}
.y6f{bottom:136.506667pt;}
.y87{bottom:137.306667pt;}
.yef{bottom:138.586667pt;}
.ybf{bottom:144.826667pt;}
.y113{bottom:147.546667pt;}
.ybd{bottom:148.346667pt;}
.yd6{bottom:152.186667pt;}
.yc9{bottom:160.986667pt;}
.y28{bottom:163.386667pt;}
.y6e{bottom:164.026667pt;}
.y86{bottom:164.986667pt;}
.yee{bottom:166.266667pt;}
.y112{bottom:168.826667pt;}
.y50{bottom:172.506667pt;}
.ybc{bottom:176.026667pt;}
.yd5{bottom:179.866667pt;}
.y99{bottom:180.666667pt;}
.yc8{bottom:188.506667pt;}
.y111{bottom:189.946667pt;}
.y27{bottom:190.906667pt;}
.y6d{bottom:191.706667pt;}
.y85{bottom:192.506667pt;}
.yed{bottom:193.786667pt;}
.y4f{bottom:200.026667pt;}
.ybb{bottom:203.546667pt;}
.yd4{bottom:207.386667pt;}
.y110{bottom:211.066667pt;}
.yc7{bottom:216.186667pt;}
.y26{bottom:218.586667pt;}
.y6c{bottom:219.226667pt;}
.y84{bottom:220.186667pt;}
.yec{bottom:221.466667pt;}
.y4e{bottom:227.706667pt;}
.yba{bottom:231.226667pt;}
.y10f{bottom:232.186667pt;}
.yd3{bottom:235.066667pt;}
.yc6{bottom:243.706667pt;}
.y25{bottom:246.106667pt;}
.y6b{bottom:246.906667pt;}
.y83{bottom:247.706667pt;}
.yeb{bottom:248.986667pt;}
.y10e{bottom:253.466667pt;}
.y4d{bottom:255.226667pt;}
.yb9{bottom:258.746667pt;}
.y96{bottom:259.066667pt;}
.yd2{bottom:262.586667pt;}
.yc5{bottom:271.386667pt;}
.y24{bottom:273.786667pt;}
.y6a{bottom:274.426667pt;}
.y10d{bottom:274.586667pt;}
.y82{bottom:275.386667pt;}
.yea{bottom:276.666667pt;}
.y4c{bottom:282.746667pt;}
.yb8{bottom:286.426667pt;}
.yd1{bottom:290.266667pt;}
.y10c{bottom:295.706667pt;}
.yc4{bottom:298.906667pt;}
.y23{bottom:301.346667pt;}
.y69{bottom:302.146667pt;}
.y81{bottom:302.946667pt;}
.ye9{bottom:304.226667pt;}
.y4b{bottom:310.466667pt;}
.yb7{bottom:313.986667pt;}
.y10b{bottom:316.866667pt;}
.yd0{bottom:317.826667pt;}
.y93{bottom:322.946667pt;}
.yc3{bottom:326.626667pt;}
.y22{bottom:329.026667pt;}
.y68{bottom:329.666667pt;}
.y80{bottom:330.626667pt;}
.ye8{bottom:331.906667pt;}
.y4a{bottom:337.986667pt;}
.yb6{bottom:341.666667pt;}
.ycf{bottom:345.346667pt;}
.ye7{bottom:354.146667pt;}
.y21{bottom:356.546667pt;}
.y67{bottom:357.346667pt;}
.y7f{bottom:358.146667pt;}
.y10a{bottom:359.266667pt;}
.y49{bottom:365.666667pt;}
.yb5{bottom:369.186667pt;}
.yce{bottom:373.026667pt;}
.y109{bottom:380.386667pt;}
.y90{bottom:381.826667pt;}
.y20{bottom:384.226667pt;}
.y66{bottom:384.866667pt;}
.y7e{bottom:385.826667pt;}
.y48{bottom:393.186667pt;}
.yb4{bottom:396.866667pt;}
.ycd{bottom:400.546667pt;}
.y108{bottom:401.506667pt;}
.y1f{bottom:411.746667pt;}
.y65{bottom:412.546667pt;}
.y7d{bottom:413.346667pt;}
.y5f{bottom:420.386667pt;}
.y47{bottom:420.866667pt;}
.y107{bottom:422.626667pt;}
.yb3{bottom:424.386667pt;}
.ycc{bottom:428.226667pt;}
.ye6{bottom:430.946667pt;}
.y8e{bottom:435.106667pt;}
.y1e{bottom:439.426667pt;}
.y64{bottom:440.066667pt;}
.y7c{bottom:441.026667pt;}
.y106{bottom:443.906667pt;}
.y5e{bottom:448.066667pt;}
.y46{bottom:448.386667pt;}
.yb2{bottom:452.066667pt;}
.y105{bottom:465.026667pt;}
.y1d{bottom:466.946667pt;}
.y63{bottom:467.746667pt;}
.y7b{bottom:468.546667pt;}
.y5d{bottom:475.586667pt;}
.y45{bottom:476.066667pt;}
.y8d{bottom:476.866667pt;}
.yb1{bottom:479.586667pt;}
.y104{bottom:486.146667pt;}
.y1c{bottom:494.626667pt;}
.y62{bottom:495.266667pt;}
.y7a{bottom:496.226667pt;}
.y5c{bottom:503.266667pt;}
.y44{bottom:503.586667pt;}
.y8c{bottom:504.386667pt;}
.yb0{bottom:507.266667pt;}
.ye3{bottom:513.506667pt;}
.y1b{bottom:522.146667pt;}
.y61{bottom:522.946667pt;}
.y79{bottom:523.746667pt;}
.y8b{bottom:524.866667pt;}
.y103{bottom:528.546667pt;}
.y5b{bottom:530.786667pt;}
.y43{bottom:531.266667pt;}
.yaf{bottom:534.786667pt;}
.y8a{bottom:544.413333pt;}
.y102{bottom:549.693333pt;}
.y1a{bottom:549.853333pt;}
.y78{bottom:551.453333pt;}
.y12a{bottom:556.093333pt;}
.y5a{bottom:558.493333pt;}
.y42{bottom:558.813333pt;}
.yae{bottom:562.493333pt;}
.y101{bottom:570.813333pt;}
.y19{bottom:570.973333pt;}
.y129{bottom:577.213333pt;}
.ye0{bottom:578.333333pt;}
.y77{bottom:578.973333pt;}
.y59{bottom:586.013333pt;}
.y41{bottom:586.493333pt;}
.yad{bottom:590.013333pt;}
.y100{bottom:591.933333pt;}
.y18{bottom:592.093333pt;}
.y128{bottom:598.493333pt;}
.y76{bottom:606.653333pt;}
.y17{bottom:613.213333pt;}
.y58{bottom:613.693333pt;}
.y40{bottom:614.013333pt;}
.yac{bottom:617.693333pt;}
.y127{bottom:619.613333pt;}
.y75{bottom:634.173333pt;}
.yff{bottom:634.333333pt;}
.y16{bottom:634.493333pt;}
.y126{bottom:640.733333pt;}
.y57{bottom:641.213333pt;}
.y3f{bottom:641.693333pt;}
.ydc{bottom:642.973333pt;}
.yab{bottom:645.213333pt;}
.yfe{bottom:655.453333pt;}
.y15{bottom:655.613333pt;}
.y74{bottom:661.693333pt;}
.y125{bottom:661.853333pt;}
.yc2{bottom:663.133333pt;}
.y56{bottom:668.893333pt;}
.y3e{bottom:669.213333pt;}
.yaa{bottom:672.893333pt;}
.yfd{bottom:676.573333pt;}
.y14{bottom:676.733333pt;}
.y124{bottom:683.133333pt;}
.y73{bottom:689.373333pt;}
.y55{bottom:696.413333pt;}
.y3d{bottom:696.893333pt;}
.y13{bottom:697.853333pt;}
.ya9{bottom:700.413333pt;}
.y123{bottom:704.253333pt;}
.y72{bottom:716.893333pt;}
.yfc{bottom:718.973333pt;}
.y12{bottom:719.133333pt;}
.y54{bottom:724.093333pt;}
.y3c{bottom:724.413333pt;}
.y122{bottom:725.373333pt;}
.yda{bottom:726.333333pt;}
.ya8{bottom:728.093333pt;}
.yfb{bottom:740.093333pt;}
.y11{bottom:740.253333pt;}
.y71{bottom:744.573333pt;}
.y121{bottom:746.493333pt;}
.y53{bottom:751.613333pt;}
.y3b{bottom:752.093333pt;}
.ya7{bottom:755.613333pt;}
.yfa{bottom:761.213333pt;}
.y10{bottom:761.373333pt;}
.y120{bottom:767.613333pt;}
.y70{bottom:768.573333pt;}
.y52{bottom:779.333333pt;}
.y3a{bottom:779.653333pt;}
.yf9{bottom:782.373333pt;}
.ye{bottom:782.533333pt;}
.ya6{bottom:783.333333pt;}
.yf{bottom:788.613333pt;}
.y11f{bottom:788.933333pt;}
.y51{bottom:803.333333pt;}
.yd{bottom:803.653333pt;}
.y39{bottom:807.333333pt;}
.y11e{bottom:810.053333pt;}
.ya5{bottom:810.853333pt;}
.yf8{bottom:824.773333pt;}
.yc{bottom:824.933333pt;}
.y11d{bottom:831.173333pt;}
.y38{bottom:834.853333pt;}
.ya4{bottom:838.533333pt;}
.yf7{bottom:845.893333pt;}
.yb{bottom:846.053333pt;}
.y11c{bottom:852.293333pt;}
.y37{bottom:862.533333pt;}
.ya3{bottom:866.053333pt;}
.yf6{bottom:867.013333pt;}
.ya{bottom:867.173333pt;}
.y11b{bottom:873.573333pt;}
.yf5{bottom:888.293333pt;}
.y36{bottom:890.053333pt;}
.ya2{bottom:893.733333pt;}
.y11a{bottom:894.693333pt;}
.y9{bottom:894.853333pt;}
.yf4{bottom:909.413333pt;}
.y119{bottom:915.813333pt;}
.y35{bottom:917.733333pt;}
.ya1{bottom:921.253333pt;}
.y8{bottom:922.373333pt;}
.yf3{bottom:930.533333pt;}
.y118{bottom:936.933333pt;}
.y9e{bottom:944.293333pt;}
.y34{bottom:945.253333pt;}
.y7{bottom:950.053333pt;}
.yf2{bottom:951.653333pt;}
.y117{bottom:958.213333pt;}
.y33{bottom:972.933333pt;}
.y6{bottom:977.573333pt;}
.y116{bottom:979.333333pt;}
.y32{bottom:1000.453333pt;}
.y5{bottom:1005.253333pt;}
.y2f{bottom:1018.560000pt;}
.y4{bottom:1032.800000pt;}
.y2e{bottom:1038.560000pt;}
.y2d{bottom:1059.680000pt;}
.y3{bottom:1060.480000pt;}
.h6{height:24.131250pt;}
.ha{height:25.600000pt;}
.h8{height:28.211200pt;}
.h5{height:29.940625pt;}
.h12{height:33.280000pt;}
.h7{height:37.090625pt;}
.hf{height:42.240000pt;}
.hb{height:42.400000pt;}
.h2{height:42.866250pt;}
.hc{height:43.840000pt;}
.h4{height:44.687500pt;}
.h3{height:45.156250pt;}
.h11{height:46.593750pt;}
.h9{height:48.218750pt;}
.h16{height:48.781250pt;}
.hd{height:48.832000pt;}
.h14{height:51.200000pt;}
.h15{height:51.392000pt;}
.he{height:63.360000pt;}
.h10{height:63.520000pt;}
.h13{height:69.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:99.232000pt;}
.w8{width:100.160000pt;}
.wa{width:125.312000pt;}
.w4{width:131.040000pt;}
.wb{width:141.440000pt;}
.wc{width:157.946667pt;}
.w5{width:160.506667pt;}
.w6{width:167.546667pt;}
.w7{width:179.066667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:2.720000pt;}
.x2d{left:6.560000pt;}
.x24{left:7.520000pt;}
.x2{left:96.031988pt;}
.x2a{left:97.311988pt;}
.x28{left:99.071988pt;}
.x17{left:100.351988pt;}
.x27{left:105.311988pt;}
.x25{left:110.751988pt;}
.x2f{left:133.786655pt;}
.x1f{left:138.106655pt;}
.x26{left:144.026655pt;}
.x1c{left:157.466655pt;}
.x18{left:159.226655pt;}
.x1e{left:169.946655pt;}
.x29{left:188.346655pt;}
.xa{left:194.746655pt;}
.x2b{left:196.186667pt;}
.x1b{left:219.066655pt;}
.x21{left:227.066667pt;}
.x15{left:241.626655pt;}
.xb{left:250.146655pt;}
.x10{left:286.466655pt;}
.x16{left:288.066655pt;}
.x9{left:291.586655pt;}
.x11{left:293.346655pt;}
.x3{left:295.426655pt;}
.xc{left:299.106655pt;}
.x13{left:304.066655pt;}
.x12{left:305.986655pt;}
.x19{left:308.386655pt;}
.xf{left:318.946655pt;}
.x14{left:327.746655pt;}
.x1{left:384.706655pt;}
.x22{left:387.586667pt;}
.x8{left:396.866655pt;}
.x2c{left:420.733333pt;}
.x7{left:484.893322pt;}
.xd{left:489.373310pt;}
.xe{left:494.813322pt;}
.x6{left:512.413322pt;}
.x5{left:526.653322pt;}
.x4{left:550.173322pt;}
.x23{left:555.133333pt;}
.x2e{left:562.173333pt;}
.x1d{left:656.293322pt;}
.x1a{left:726.693322pt;}
}




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