
    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_493cfca4457644cd3eb86b63.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1e5af4c72a8685d9fe3f80a0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_17bfc71413f37cacec6a7832.woff')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_c26a6189b4173f449675e14d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_162a4258a5118f0695e42c49.woff')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_1167405494f913bc4c58ebbe.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_26f8f2d7552e58452584a1a3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.953125;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_b1cf5f1ccf2e881185c54cdc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cafa90d9340ab75e50bfa828.woff')format("woff");}.ff9{font-family:ff9;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;}
.m1{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);}
.m2{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;}
.ls3{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.423600px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.587400px;}
.ls8{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.560000px;}
.ls6{letter-spacing:33.264000px;}
.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;}
}
.ws6{word-spacing:-19.440000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.506440px;}
.ws4{word-spacing:-13.668480px;}
.ws5{word-spacing:-13.244880px;}
.ws3{word-spacing:-12.366720px;}
.ws1{word-spacing:0.000000px;}
._2f{margin-left:-7.704000px;}
._13{margin-left:-4.846080px;}
._c{margin-left:-3.591360px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.894400px;}
._5{width:4.045440px;}
._4{width:5.230560px;}
._6{width:6.260160px;}
._7{width:7.395360px;}
._b{width:9.178560px;}
._d{width:10.964160px;}
._e{width:12.853920px;}
._12{width:14.152800px;}
._10{width:15.617760px;}
._f{width:16.882560px;}
._a{width:19.330560px;}
._11{width:21.133440px;}
._16{width:22.333920px;}
._14{width:23.492160px;}
._15{width:25.306560px;}
._18{width:26.542080px;}
._17{width:27.607680px;}
._2e{width:28.702080px;}
._9{width:30.226560px;}
._8{width:31.469280px;}
._30{width:33.747840px;}
._31{width:35.942400px;}
._2a{width:40.999680px;}
._2b{width:48.168000px;}
._2c{width:49.186080px;}
._20{width:54.374400px;}
._27{width:56.986560px;}
._28{width:67.454400px;}
._1c{width:72.734400px;}
._1e{width:75.888000px;}
._29{width:77.328000px;}
._1d{width:86.722560px;}
._25{width:89.046720px;}
._23{width:109.152000px;}
._22{width:110.698560px;}
._24{width:113.146560px;}
._1f{width:115.738560px;}
._1b{width:151.776000px;}
._2d{width:159.517440px;}
._19{width:173.736000px;}
._1a{width:176.400000px;}
._21{width:259.704000px;}
._26{width:293.846400px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs6{font-size:54.864000px;}
.fs4{font-size:60.480000px;}
.fs5{font-size:60.624000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:5.865000px;}
.y6b{bottom:7.200000px;}
.y9c{bottom:7.560000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.yef{bottom:12.420000px;}
.yf3{bottom:24.225000px;}
.yee{bottom:27.645000px;}
.y6d{bottom:30.960000px;}
.y6a{bottom:31.005000px;}
.y9b{bottom:31.350000px;}
.yb0{bottom:31.680000px;}
.yf2{bottom:42.585000px;}
.yed{bottom:42.870000px;}
.y72{bottom:54.720000px;}
.y6f{bottom:55.080000px;}
.y9a{bottom:55.110000px;}
.y69{bottom:55.125000px;}
.yaf{bottom:55.470000px;}
.y8{bottom:57.240000px;}
.yec{bottom:58.110000px;}
.yf1{bottom:60.585000px;}
.yeb{bottom:73.335000px;}
.y5{bottom:73.476000px;}
.y75{bottom:78.510000px;}
.y71{bottom:78.525000px;}
.y99{bottom:78.870000px;}
.y68{bottom:78.885000px;}
.yf0{bottom:78.945000px;}
.yab{bottom:79.230000px;}
.yea{bottom:88.560000px;}
.y74{bottom:102.630000px;}
.yaa{bottom:102.990000px;}
.ye9{bottom:103.785000px;}
.y67{bottom:109.110000px;}
.y6c{bottom:115.236000px;}
.y34{bottom:115.596000px;}
.ye8{bottom:119.010000px;}
.yd7{bottom:124.236000px;}
.ya9{bottom:126.750000px;}
.y95{bottom:128.556000px;}
.y60{bottom:131.796000px;}
.y66{bottom:132.870000px;}
.ye7{bottom:134.250000px;}
.y33{bottom:139.716000px;}
.y102{bottom:144.570000px;}
.yd6{bottom:147.996000px;}
.ye6{bottom:149.475000px;}
.ya8{bottom:150.510000px;}
.y94{bottom:152.310000px;}
.yc0{bottom:153.030000px;}
.y5f{bottom:155.550000px;}
.y101{bottom:161.130000px;}
.y32{bottom:163.470000px;}
.yd5{bottom:171.750000px;}
.ya7{bottom:174.300000px;}
.y93{bottom:176.070000px;}
.ybf{bottom:177.150000px;}
.y100{bottom:177.690000px;}
.y5e{bottom:179.310000px;}
.y31{bottom:187.230000px;}
.yff{bottom:193.890000px;}
.yd4{bottom:195.915000px;}
.ydc{bottom:197.850000px;}
.ya6{bottom:198.060000px;}
.y92{bottom:200.235000px;}
.ybe{bottom:200.955000px;}
.y5d{bottom:203.115000px;}
.y30{bottom:211.035000px;}
.yd3{bottom:219.675000px;}
.ya5{bottom:221.820000px;}
.y91{bottom:223.995000px;}
.ybd{bottom:224.715000px;}
.y5c{bottom:226.875000px;}
.y2f{bottom:234.795000px;}
.yde{bottom:239.475000px;}
.yd2{bottom:243.435000px;}
.ydd{bottom:245.130000px;}
.ya4{bottom:245.940000px;}
.y90{bottom:247.755000px;}
.ybc{bottom:248.475000px;}
.y5b{bottom:250.635000px;}
.yfe{bottom:251.970000px;}
.y2e{bottom:258.555000px;}
.y65{bottom:259.635000px;}
.yd1{bottom:267.195000px;}
.yfd{bottom:268.200000px;}
.ya3{bottom:269.700000px;}
.ydf{bottom:269.850000px;}
.y8f{bottom:271.515000px;}
.ybb{bottom:272.235000px;}
.y5a{bottom:274.395000px;}
.y2d{bottom:282.315000px;}
.ydb{bottom:284.505000px;}
.yd0{bottom:290.955000px;}
.ya2{bottom:293.100000px;}
.yae{bottom:293.460000px;}
.y8e{bottom:295.275000px;}
.yba{bottom:295.995000px;}
.y59{bottom:298.155000px;}
.y2c{bottom:306.075000px;}
.yfb{bottom:310.890000px;}
.ycf{bottom:314.715000px;}
.ya1{bottom:316.905000px;}
.yad{bottom:317.265000px;}
.y8d{bottom:319.035000px;}
.yb9{bottom:319.755000px;}
.y58{bottom:321.945000px;}
.ye0{bottom:326.130000px;}
.yfa{bottom:329.250000px;}
.y2b{bottom:330.225000px;}
.yda{bottom:337.395000px;}
.yce{bottom:338.505000px;}
.ya0{bottom:341.025000px;}
.y8c{bottom:342.825000px;}
.yb8{bottom:343.545000px;}
.y57{bottom:346.065000px;}
.yf9{bottom:347.655000px;}
.y2a{bottom:353.985000px;}
.yd9{bottom:354.270000px;}
.ycd{bottom:362.265000px;}
.y9f{bottom:364.785000px;}
.ye5{bottom:366.015000px;}
.y8b{bottom:366.585000px;}
.yb7{bottom:367.305000px;}
.y56{bottom:369.825000px;}
.y29{bottom:377.745000px;}
.yf8{bottom:384.375000px;}
.ye1{bottom:384.660000px;}
.ycc{bottom:386.385000px;}
.ye4{bottom:386.535000px;}
.y9e{bottom:388.185000px;}
.yac{bottom:388.545000px;}
.y8a{bottom:390.705000px;}
.yb6{bottom:391.425000px;}
.y55{bottom:393.585000px;}
.y28{bottom:401.505000px;}
.yf7{bottom:402.735000px;}
.ye3{bottom:407.415000px;}
.ycb{bottom:410.145000px;}
.y89{bottom:414.465000px;}
.yb5{bottom:415.185000px;}
.y64{bottom:416.985000px;}
.y54{bottom:417.345000px;}
.yf6{bottom:420.735000px;}
.y27{bottom:425.265000px;}
.yfc{bottom:425.805000px;}
.ye2{bottom:427.965000px;}
.yca{bottom:433.905000px;}
.y88{bottom:438.225000px;}
.yb4{bottom:438.945000px;}
.yf5{bottom:439.095000px;}
.y63{bottom:440.745000px;}
.y53{bottom:441.105000px;}
.y26{bottom:449.070000px;}
.yc9{bottom:457.710000px;}
.y87{bottom:462.030000px;}
.yb3{bottom:462.750000px;}
.y52{bottom:464.910000px;}
.y25{bottom:472.830000px;}
.yc8{bottom:481.470000px;}
.y86{bottom:485.790000px;}
.yb2{bottom:486.510000px;}
.y51{bottom:488.670000px;}
.y24{bottom:496.590000px;}
.yc7{bottom:505.230000px;}
.y85{bottom:509.550000px;}
.yb1{bottom:510.270000px;}
.y50{bottom:512.070000px;}
.y62{bottom:512.430000px;}
.y23{bottom:520.350000px;}
.y9d{bottom:527.190000px;}
.yc6{bottom:528.990000px;}
.y84{bottom:533.310000px;}
.y4f{bottom:536.550000px;}
.y22{bottom:544.470000px;}
.yc5{bottom:552.750000px;}
.y83{bottom:557.070000px;}
.y4e{bottom:560.310000px;}
.y21{bottom:568.230000px;}
.yc4{bottom:576.900000px;}
.y82{bottom:580.860000px;}
.y105{bottom:583.740000px;}
.y4d{bottom:584.100000px;}
.y20{bottom:592.020000px;}
.yc3{bottom:600.660000px;}
.y81{bottom:604.980000px;}
.y104{bottom:607.500000px;}
.y4c{bottom:607.860000px;}
.y1f{bottom:615.780000px;}
.yd8{bottom:620.280000px;}
.y80{bottom:628.740000px;}
.y4b{bottom:631.620000px;}
.y1e{bottom:639.540000px;}
.y7f{bottom:652.500000px;}
.y4a{bottom:655.380000px;}
.y1d{bottom:663.300000px;}
.y7e{bottom:676.260000px;}
.y49{bottom:679.140000px;}
.y1c{bottom:687.060000px;}
.y7d{bottom:700.050000px;}
.y48{bottom:702.930000px;}
.y1b{bottom:710.850000px;}
.y7c{bottom:723.810000px;}
.y47{bottom:727.050000px;}
.y1a{bottom:734.970000px;}
.y7b{bottom:747.570000px;}
.y46{bottom:750.810000px;}
.y19{bottom:758.730000px;}
.y7a{bottom:771.330000px;}
.y45{bottom:774.570000px;}
.y18{bottom:782.490000px;}
.y79{bottom:795.450000px;}
.y44{bottom:798.330000px;}
.y17{bottom:806.250000px;}
.y78{bottom:819.210000px;}
.y43{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.y77{bottom:843.015000px;}
.y42{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.y76{bottom:866.775000px;}
.y41{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.y73{bottom:883.695000px;}
.y40{bottom:893.415000px;}
.y13{bottom:901.335000px;}
.y3f{bottom:917.175000px;}
.y12{bottom:925.455000px;}
.y98{bottom:932.655000px;}
.y3e{bottom:941.295000px;}
.y11{bottom:949.215000px;}
.y3d{bottom:965.085000px;}
.y10{bottom:973.005000px;}
.y3c{bottom:988.845000px;}
.yf{bottom:996.405000px;}
.y70{bottom:1003.605000px;}
.y103{bottom:1012.245000px;}
.y3b{bottom:1012.605000px;}
.ye{bottom:1020.165000px;}
.y97{bottom:1036.005000px;}
.y3a{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.y96{bottom:1059.765000px;}
.y39{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.yc2{bottom:1083.570000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1091.850000px;}
.y6e{bottom:1099.410000px;}
.yc1{bottom:1107.330000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y36{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y35{bottom:1155.210000px;}
.y61{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.h1b{height:44.032500px;}
.h1f{height:44.148375px;}
.h1c{height:46.866094px;}
.h1d{height:46.977680px;}
.h15{height:47.520000px;}
.h1e{height:50.800781px;}
.h7{height:53.302500px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h16{height:71.640000px;}
.h2{height:72.562500px;}
.hf{height:72.562514px;}
.h11{height:72.562517px;}
.he{height:72.562520px;}
.hc{height:72.562522px;}
.hd{height:72.562526px;}
.h13{height:72.562529px;}
.hb{height:72.562535px;}
.h10{height:72.562539px;}
.h12{height:72.562540px;}
.h20{height:74.004654px;}
.h17{height:95.076000px;}
.h14{height:95.436000px;}
.h8{height:97.233750px;}
.h18{height:119.196000px;}
.ha{height:149.436000px;}
.h19{height:404.745000px;}
.h1a{height:456.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:40.680000px;}
.w9{width:50.796000px;}
.wa{width:51.120000px;}
.w7{width:51.156000px;}
.wb{width:61.560000px;}
.wc{width:61.596000px;}
.wd{width:71.280000px;}
.w6{width:72.036000px;}
.w4{width:104.076000px;}
.w10{width:112.716000px;}
.w5{width:123.516000px;}
.we{width:153.435000px;}
.wf{width:163.515000px;}
.w11{width:235.875000px;}
.w3{width:298.905000px;}
.w12{width:333.720000px;}
.w13{width:350.280000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x31{left:5.472000px;}
.x14{left:7.560000px;}
.x16{left:24.870000px;}
.x39{left:26.670000px;}
.x38{left:30.630000px;}
.x3a{left:32.430000px;}
.x8{left:39.270000px;}
.x2f{left:40.356000px;}
.x30{left:42.624000px;}
.x1b{left:49.320000px;}
.x33{left:50.580000px;}
.x34{left:52.380000px;}
.x36{left:65.265000px;}
.x1e{left:73.845000px;}
.x41{left:88.020000px;}
.x5{left:95.796000px;}
.x1f{left:98.325000px;}
.x13{left:100.116000px;}
.xa{left:101.195987px;}
.x28{left:104.400000px;}
.x26{left:105.875987px;}
.x23{left:112.716000px;}
.x43{left:127.835987px;}
.x32{left:130.395000px;}
.x35{left:134.850000px;}
.x2e{left:138.270000px;}
.x10{left:149.111987px;}
.xb{left:160.994987px;}
.x29{left:177.660000px;}
.x3{left:191.594987px;}
.x2d{left:211.425000px;}
.xe{left:213.554987px;}
.x11{left:222.914987px;}
.x15{left:224.355000px;}
.x42{left:238.650000px;}
.x2a{left:252.900000px;}
.x24{left:267.225000px;}
.x2c{left:278.970000px;}
.x3d{left:281.265000px;}
.x3b{left:283.065000px;}
.x2b{left:287.790000px;}
.x3f{left:288.825000px;}
.x6{left:290.634000px;}
.x40{left:291.705000px;}
.x3e{left:294.225000px;}
.x17{left:297.105000px;}
.x3c{left:303.945000px;}
.x12{left:315.464987px;}
.xf{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x18{left:348.990000px;}
.xd{left:389.309987px;}
.x19{left:390.390000px;}
.x7{left:394.710000px;}
.x27{left:423.539987px;}
.x25{left:431.460000px;}
.x37{left:438.120000px;}
.x1a{left:441.900000px;}
.xc{left:473.219987px;}
.x1c{left:493.740000px;}
.x9{left:498.780000px;}
.x1d{left:545.610000px;}
.x20{left:607.890000px;}
.x21{left:659.775000px;}
.x22{left:722.085000px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.376533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.522133pt;}
.ls8{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.386667pt;}
.ls6{letter-spacing:29.568000pt;}
.ws6{word-spacing:-17.280000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws4{word-spacing:-12.149760pt;}
.ws5{word-spacing:-11.773227pt;}
.ws3{word-spacing:-10.992640pt;}
.ws1{word-spacing:0.000000pt;}
._2f{margin-left:-6.848000pt;}
._13{margin-left:-4.307627pt;}
._c{margin-left:-3.192320pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.572800pt;}
._5{width:3.595947pt;}
._4{width:4.649387pt;}
._6{width:5.564587pt;}
._7{width:6.573653pt;}
._b{width:8.158720pt;}
._d{width:9.745920pt;}
._e{width:11.425707pt;}
._12{width:12.580267pt;}
._10{width:13.882453pt;}
._f{width:15.006720pt;}
._a{width:17.182720pt;}
._11{width:18.785280pt;}
._16{width:19.852373pt;}
._14{width:20.881920pt;}
._15{width:22.494720pt;}
._18{width:23.592960pt;}
._17{width:24.540160pt;}
._2e{width:25.512960pt;}
._9{width:26.868053pt;}
._8{width:27.972693pt;}
._30{width:29.998080pt;}
._31{width:31.948800pt;}
._2a{width:36.444160pt;}
._2b{width:42.816000pt;}
._2c{width:43.720960pt;}
._20{width:48.332800pt;}
._27{width:50.654720pt;}
._28{width:59.959467pt;}
._1c{width:64.652800pt;}
._1e{width:67.456000pt;}
._29{width:68.736000pt;}
._1d{width:77.086720pt;}
._25{width:79.152640pt;}
._23{width:97.024000pt;}
._22{width:98.398720pt;}
._24{width:100.574720pt;}
._1f{width:102.878720pt;}
._1b{width:134.912000pt;}
._2d{width:141.793280pt;}
._19{width:154.432000pt;}
._1a{width:156.800000pt;}
._21{width:230.848000pt;}
._26{width:261.196800pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:48.768000pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:53.888000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:5.213333pt;}
.y6b{bottom:6.400000pt;}
.y9c{bottom:6.720000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.yef{bottom:11.040000pt;}
.yf3{bottom:21.533333pt;}
.yee{bottom:24.573333pt;}
.y6d{bottom:27.520000pt;}
.y6a{bottom:27.560000pt;}
.y9b{bottom:27.866667pt;}
.yb0{bottom:28.160000pt;}
.yf2{bottom:37.853333pt;}
.yed{bottom:38.106667pt;}
.y72{bottom:48.640000pt;}
.y6f{bottom:48.960000pt;}
.y9a{bottom:48.986667pt;}
.y69{bottom:49.000000pt;}
.yaf{bottom:49.306667pt;}
.y8{bottom:50.880000pt;}
.yec{bottom:51.653333pt;}
.yf1{bottom:53.853333pt;}
.yeb{bottom:65.186667pt;}
.y5{bottom:65.312000pt;}
.y75{bottom:69.786667pt;}
.y71{bottom:69.800000pt;}
.y99{bottom:70.106667pt;}
.y68{bottom:70.120000pt;}
.yf0{bottom:70.173333pt;}
.yab{bottom:70.426667pt;}
.yea{bottom:78.720000pt;}
.y74{bottom:91.226667pt;}
.yaa{bottom:91.546667pt;}
.ye9{bottom:92.253333pt;}
.y67{bottom:96.986667pt;}
.y6c{bottom:102.432000pt;}
.y34{bottom:102.752000pt;}
.ye8{bottom:105.786667pt;}
.yd7{bottom:110.432000pt;}
.ya9{bottom:112.666667pt;}
.y95{bottom:114.272000pt;}
.y60{bottom:117.152000pt;}
.y66{bottom:118.106667pt;}
.ye7{bottom:119.333333pt;}
.y33{bottom:124.192000pt;}
.y102{bottom:128.506667pt;}
.yd6{bottom:131.552000pt;}
.ye6{bottom:132.866667pt;}
.ya8{bottom:133.786667pt;}
.y94{bottom:135.386667pt;}
.yc0{bottom:136.026667pt;}
.y5f{bottom:138.266667pt;}
.y101{bottom:143.226667pt;}
.y32{bottom:145.306667pt;}
.yd5{bottom:152.666667pt;}
.ya7{bottom:154.933333pt;}
.y93{bottom:156.506667pt;}
.ybf{bottom:157.466667pt;}
.y100{bottom:157.946667pt;}
.y5e{bottom:159.386667pt;}
.y31{bottom:166.426667pt;}
.yff{bottom:172.346667pt;}
.yd4{bottom:174.146667pt;}
.ydc{bottom:175.866667pt;}
.ya6{bottom:176.053333pt;}
.y92{bottom:177.986667pt;}
.ybe{bottom:178.626667pt;}
.y5d{bottom:180.546667pt;}
.y30{bottom:187.586667pt;}
.yd3{bottom:195.266667pt;}
.ya5{bottom:197.173333pt;}
.y91{bottom:199.106667pt;}
.ybd{bottom:199.746667pt;}
.y5c{bottom:201.666667pt;}
.y2f{bottom:208.706667pt;}
.yde{bottom:212.866667pt;}
.yd2{bottom:216.386667pt;}
.ydd{bottom:217.893333pt;}
.ya4{bottom:218.613333pt;}
.y90{bottom:220.226667pt;}
.ybc{bottom:220.866667pt;}
.y5b{bottom:222.786667pt;}
.yfe{bottom:223.973333pt;}
.y2e{bottom:229.826667pt;}
.y65{bottom:230.786667pt;}
.yd1{bottom:237.506667pt;}
.yfd{bottom:238.400000pt;}
.ya3{bottom:239.733333pt;}
.ydf{bottom:239.866667pt;}
.y8f{bottom:241.346667pt;}
.ybb{bottom:241.986667pt;}
.y5a{bottom:243.906667pt;}
.y2d{bottom:250.946667pt;}
.ydb{bottom:252.893333pt;}
.yd0{bottom:258.626667pt;}
.ya2{bottom:260.533333pt;}
.yae{bottom:260.853333pt;}
.y8e{bottom:262.466667pt;}
.yba{bottom:263.106667pt;}
.y59{bottom:265.026667pt;}
.y2c{bottom:272.066667pt;}
.yfb{bottom:276.346667pt;}
.ycf{bottom:279.746667pt;}
.ya1{bottom:281.693333pt;}
.yad{bottom:282.013333pt;}
.y8d{bottom:283.586667pt;}
.yb9{bottom:284.226667pt;}
.y58{bottom:286.173333pt;}
.ye0{bottom:289.893333pt;}
.yfa{bottom:292.666667pt;}
.y2b{bottom:293.533333pt;}
.yda{bottom:299.906667pt;}
.yce{bottom:300.893333pt;}
.ya0{bottom:303.133333pt;}
.y8c{bottom:304.733333pt;}
.yb8{bottom:305.373333pt;}
.y57{bottom:307.613333pt;}
.yf9{bottom:309.026667pt;}
.y2a{bottom:314.653333pt;}
.yd9{bottom:314.906667pt;}
.ycd{bottom:322.013333pt;}
.y9f{bottom:324.253333pt;}
.ye5{bottom:325.346667pt;}
.y8b{bottom:325.853333pt;}
.yb7{bottom:326.493333pt;}
.y56{bottom:328.733333pt;}
.y29{bottom:335.773333pt;}
.yf8{bottom:341.666667pt;}
.ye1{bottom:341.920000pt;}
.ycc{bottom:343.453333pt;}
.ye4{bottom:343.586667pt;}
.y9e{bottom:345.053333pt;}
.yac{bottom:345.373333pt;}
.y8a{bottom:347.293333pt;}
.yb6{bottom:347.933333pt;}
.y55{bottom:349.853333pt;}
.y28{bottom:356.893333pt;}
.yf7{bottom:357.986667pt;}
.ye3{bottom:362.146667pt;}
.ycb{bottom:364.573333pt;}
.y89{bottom:368.413333pt;}
.yb5{bottom:369.053333pt;}
.y64{bottom:370.653333pt;}
.y54{bottom:370.973333pt;}
.yf6{bottom:373.986667pt;}
.y27{bottom:378.013333pt;}
.yfc{bottom:378.493333pt;}
.ye2{bottom:380.413333pt;}
.yca{bottom:385.693333pt;}
.y88{bottom:389.533333pt;}
.yb4{bottom:390.173333pt;}
.yf5{bottom:390.306667pt;}
.y63{bottom:391.773333pt;}
.y53{bottom:392.093333pt;}
.y26{bottom:399.173333pt;}
.yc9{bottom:406.853333pt;}
.y87{bottom:410.693333pt;}
.yb3{bottom:411.333333pt;}
.y52{bottom:413.253333pt;}
.y25{bottom:420.293333pt;}
.yc8{bottom:427.973333pt;}
.y86{bottom:431.813333pt;}
.yb2{bottom:432.453333pt;}
.y51{bottom:434.373333pt;}
.y24{bottom:441.413333pt;}
.yc7{bottom:449.093333pt;}
.y85{bottom:452.933333pt;}
.yb1{bottom:453.573333pt;}
.y50{bottom:455.173333pt;}
.y62{bottom:455.493333pt;}
.y23{bottom:462.533333pt;}
.y9d{bottom:468.613333pt;}
.yc6{bottom:470.213333pt;}
.y84{bottom:474.053333pt;}
.y4f{bottom:476.933333pt;}
.y22{bottom:483.973333pt;}
.yc5{bottom:491.333333pt;}
.y83{bottom:495.173333pt;}
.y4e{bottom:498.053333pt;}
.y21{bottom:505.093333pt;}
.yc4{bottom:512.800000pt;}
.y82{bottom:516.320000pt;}
.y105{bottom:518.880000pt;}
.y4d{bottom:519.200000pt;}
.y20{bottom:526.240000pt;}
.yc3{bottom:533.920000pt;}
.y81{bottom:537.760000pt;}
.y104{bottom:540.000000pt;}
.y4c{bottom:540.320000pt;}
.y1f{bottom:547.360000pt;}
.yd8{bottom:551.360000pt;}
.y80{bottom:558.880000pt;}
.y4b{bottom:561.440000pt;}
.y1e{bottom:568.480000pt;}
.y7f{bottom:580.000000pt;}
.y4a{bottom:582.560000pt;}
.y1d{bottom:589.600000pt;}
.y7e{bottom:601.120000pt;}
.y49{bottom:603.680000pt;}
.y1c{bottom:610.720000pt;}
.y7d{bottom:622.266667pt;}
.y48{bottom:624.826667pt;}
.y1b{bottom:631.866667pt;}
.y7c{bottom:643.386667pt;}
.y47{bottom:646.266667pt;}
.y1a{bottom:653.306667pt;}
.y7b{bottom:664.506667pt;}
.y46{bottom:667.386667pt;}
.y19{bottom:674.426667pt;}
.y7a{bottom:685.626667pt;}
.y45{bottom:688.506667pt;}
.y18{bottom:695.546667pt;}
.y79{bottom:707.066667pt;}
.y44{bottom:709.626667pt;}
.y17{bottom:716.666667pt;}
.y78{bottom:728.186667pt;}
.y43{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.y77{bottom:749.346667pt;}
.y42{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.y76{bottom:770.466667pt;}
.y41{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.y73{bottom:785.506667pt;}
.y40{bottom:794.146667pt;}
.y13{bottom:801.186667pt;}
.y3f{bottom:815.266667pt;}
.y12{bottom:822.626667pt;}
.y98{bottom:829.026667pt;}
.y3e{bottom:836.706667pt;}
.y11{bottom:843.746667pt;}
.y3d{bottom:857.853333pt;}
.y10{bottom:864.893333pt;}
.y3c{bottom:878.973333pt;}
.yf{bottom:885.693333pt;}
.y70{bottom:892.093333pt;}
.y103{bottom:899.773333pt;}
.y3b{bottom:900.093333pt;}
.ye{bottom:906.813333pt;}
.y97{bottom:920.893333pt;}
.y3a{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.y96{bottom:942.013333pt;}
.y39{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.yc2{bottom:963.173333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:970.533333pt;}
.y6e{bottom:977.253333pt;}
.yc1{bottom:984.293333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y36{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y35{bottom:1026.853333pt;}
.y61{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.h1b{height:39.140000pt;}
.h1f{height:39.243000pt;}
.h1c{height:41.658750pt;}
.h1d{height:41.757937pt;}
.h15{height:42.240000pt;}
.h1e{height:45.156250pt;}
.h7{height:47.380000pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h16{height:63.680000pt;}
.h2{height:64.500000pt;}
.hf{height:64.500012pt;}
.h11{height:64.500015pt;}
.he{height:64.500017pt;}
.hc{height:64.500020pt;}
.hd{height:64.500023pt;}
.h13{height:64.500026pt;}
.hb{height:64.500031pt;}
.h10{height:64.500035pt;}
.h12{height:64.500036pt;}
.h20{height:65.781915pt;}
.h17{height:84.512000pt;}
.h14{height:84.832000pt;}
.h8{height:86.430000pt;}
.h18{height:105.952000pt;}
.ha{height:132.832000pt;}
.h19{height:359.773333pt;}
.h1a{height:405.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:36.160000pt;}
.w9{width:45.152000pt;}
.wa{width:45.440000pt;}
.w7{width:45.472000pt;}
.wb{width:54.720000pt;}
.wc{width:54.752000pt;}
.wd{width:63.360000pt;}
.w6{width:64.032000pt;}
.w4{width:92.512000pt;}
.w10{width:100.192000pt;}
.w5{width:109.792000pt;}
.we{width:136.386667pt;}
.wf{width:145.346667pt;}
.w11{width:209.666667pt;}
.w3{width:265.693333pt;}
.w12{width:296.640000pt;}
.w13{width:311.360000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x31{left:4.864000pt;}
.x14{left:6.720000pt;}
.x16{left:22.106667pt;}
.x39{left:23.706667pt;}
.x38{left:27.226667pt;}
.x3a{left:28.826667pt;}
.x8{left:34.906667pt;}
.x2f{left:35.872000pt;}
.x30{left:37.888000pt;}
.x1b{left:43.840000pt;}
.x33{left:44.960000pt;}
.x34{left:46.560000pt;}
.x36{left:58.013333pt;}
.x1e{left:65.640000pt;}
.x41{left:78.240000pt;}
.x5{left:85.152000pt;}
.x1f{left:87.400000pt;}
.x13{left:88.992000pt;}
.xa{left:89.951988pt;}
.x28{left:92.800000pt;}
.x26{left:94.111988pt;}
.x23{left:100.192000pt;}
.x43{left:113.631988pt;}
.x32{left:115.906667pt;}
.x35{left:119.866667pt;}
.x2e{left:122.906667pt;}
.x10{left:132.543988pt;}
.xb{left:143.106655pt;}
.x29{left:157.920000pt;}
.x3{left:170.306655pt;}
.x2d{left:187.933333pt;}
.xe{left:189.826655pt;}
.x11{left:198.146655pt;}
.x15{left:199.426667pt;}
.x42{left:212.133333pt;}
.x2a{left:224.800000pt;}
.x24{left:237.533333pt;}
.x2c{left:247.973333pt;}
.x3d{left:250.013333pt;}
.x3b{left:251.613333pt;}
.x2b{left:255.813333pt;}
.x3f{left:256.733333pt;}
.x6{left:258.341333pt;}
.x40{left:259.293333pt;}
.x3e{left:261.533333pt;}
.x17{left:264.093333pt;}
.x3c{left:270.173333pt;}
.x12{left:280.413322pt;}
.xf{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x18{left:310.213333pt;}
.xd{left:346.053322pt;}
.x19{left:347.013333pt;}
.x7{left:350.853333pt;}
.x27{left:376.479988pt;}
.x25{left:383.520000pt;}
.x37{left:389.440000pt;}
.x1a{left:392.800000pt;}
.xc{left:420.639988pt;}
.x1c{left:438.880000pt;}
.x9{left:443.360000pt;}
.x1d{left:484.986667pt;}
.x20{left:540.346667pt;}
.x21{left:586.466667pt;}
.x22{left:641.853333pt;}
.x1{left:709.053322pt;}
}




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