
    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_8d50583e62d8e3e7f445cc86.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_a9fdcf636e6b4270a260f6c3.woff')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_866b4eff23063e8bb8d9a597.woff')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_ac202e42f4f2d1cb10227984.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_5623dad7355e0b13e16edd81.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b02a20a683fca936ae040106.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_130301694ab792f9947e2b7d.woff')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_2782e474374764ed5db1890f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.896484;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;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-1.260000px;}
.ls14{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.924000px;}
.ls12{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.513600px;}
.ls13{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037440px;}
.lsf{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106560px;}
.ls9{letter-spacing:0.106800px;}
.lse{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.900000px;}
.ls2{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.479800px;}
.wsb{word-spacing:-14.426400px;}
.ws8{word-spacing:-14.328000px;}
.ws9{word-spacing:0.000000px;}
._2e{margin-left:-4.058640px;}
._11{margin-left:-2.948400px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._6{width:2.454240px;}
._c{width:3.734160px;}
._b{width:5.217120px;}
._16{width:6.573600px;}
._15{width:7.755840px;}
._19{width:8.904960px;}
._9{width:10.379280px;}
._8{width:12.011760px;}
._a{width:13.036320px;}
._1d{width:16.015680px;}
._f{width:17.244000px;}
._d{width:18.346320px;}
._e{width:20.170800px;}
._1f{width:21.179520px;}
._1e{width:22.469760px;}
._21{width:23.664960px;}
._1b{width:25.039440px;}
._1a{width:26.234640px;}
._18{width:27.934080px;}
._14{width:29.076960px;}
._13{width:30.358080px;}
._17{width:31.374000px;}
._22{width:32.688720px;}
._2f{width:34.549200px;}
._43{width:35.598000px;}
._27{width:36.631440px;}
._25{width:38.604960px;}
._3b{width:39.772800px;}
._42{width:40.778640px;}
._1c{width:41.988960px;}
._10{width:43.266240px;}
._24{width:44.958720px;}
._3c{width:46.227600px;}
._2c{width:47.927520px;}
._26{width:49.481280px;}
._20{width:50.788800px;}
._2d{width:51.811920px;}
._29{width:53.191440px;}
._2b{width:54.974160px;}
._33{width:56.473200px;}
._48{width:58.445280px;}
._4{width:59.466960px;}
._41{width:60.477120px;}
._5{width:61.806000px;}
._2a{width:62.867520px;}
._2{width:64.800000px;}
._46{width:66.214080px;}
._3d{width:69.441120px;}
._23{width:75.195360px;}
._3e{width:77.459040px;}
._31{width:78.626640px;}
._28{width:83.311200px;}
._3f{width:84.375360px;}
._39{width:86.353200px;}
._44{width:89.161920px;}
._45{width:90.357120px;}
._47{width:104.340960px;}
._37{width:118.371360px;}
._7{width:132.626640px;}
._3a{width:134.460000px;}
._38{width:138.756240px;}
._40{width:157.826160px;}
._35{width:194.824080px;}
._36{width:198.516240px;}
._34{width:237.366720px;}
._32{width:337.306080px;}
._3{width:674.100000px;}
._30{width:849.360000px;}
._12{width:984.720000px;}
.fc3{color:rgb(24,23,23);}
.fc4{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.yb7{bottom:5.940000px;}
.yd5{bottom:6.120000px;}
.yd8{bottom:6.300000px;}
.y11{bottom:6.480000px;}
.yc6{bottom:6.840000px;}
.y8{bottom:7.920000px;}
.y1b{bottom:8.820000px;}
.yd{bottom:25.560000px;}
.yb6{bottom:25.785000px;}
.yd7{bottom:26.100000px;}
.y2{bottom:26.640000px;}
.y7{bottom:27.720000px;}
.y2e{bottom:45.360000px;}
.yb3{bottom:45.540000px;}
.yb5{bottom:45.585000px;}
.y6{bottom:47.520000px;}
.yc{bottom:54.360000px;}
.y13{bottom:57.060000px;}
.y2d{bottom:65.160000px;}
.yb1{bottom:65.340000px;}
.y5{bottom:69.660000px;}
.y10{bottom:71.100000px;}
.yb{bottom:74.340000px;}
.y2c{bottom:85.140000px;}
.y4{bottom:97.590000px;}
.yec{bottom:97.740000px;}
.yc4{bottom:97.920000px;}
.y41{bottom:99.900000px;}
.yf6{bottom:101.520000px;}
.ya{bottom:103.170000px;}
.y2b{bottom:104.940000px;}
.y47{bottom:110.700000px;}
.y90{bottom:112.320000px;}
.yd2{bottom:115.740000px;}
.yeb{bottom:117.540000px;}
.yc3{bottom:117.720000px;}
.y40{bottom:119.700000px;}
.yf5{bottom:121.320000px;}
.y9{bottom:122.970000px;}
.y2a{bottom:124.740000px;}
.yfc{bottom:130.320000px;}
.y46{bottom:130.500000px;}
.y3{bottom:131.970000px;}
.y8f{bottom:132.300000px;}
.yd1{bottom:135.540000px;}
.yea{bottom:137.520000px;}
.yc2{bottom:137.700000px;}
.y3f{bottom:139.500000px;}
.y7c{bottom:141.300000px;}
.y29{bottom:144.540000px;}
.y45{bottom:150.300000px;}
.y8e{bottom:152.130000px;}
.yd0{bottom:155.370000px;}
.ye9{bottom:157.350000px;}
.yc1{bottom:157.530000px;}
.y3e{bottom:159.330000px;}
.y7b{bottom:161.130000px;}
.y28{bottom:164.340000px;}
.y44{bottom:170.130000px;}
.y8d{bottom:171.930000px;}
.ycf{bottom:175.350000px;}
.ye8{bottom:177.150000px;}
.yc0{bottom:177.330000px;}
.y3d{bottom:179.130000px;}
.y7a{bottom:180.930000px;}
.y27{bottom:184.350000px;}
.yfb{bottom:189.930000px;}
.y43{bottom:190.110000px;}
.y8c{bottom:191.730000px;}
.yce{bottom:195.150000px;}
.ye7{bottom:196.950000px;}
.ybf{bottom:197.130000px;}
.y3c{bottom:199.110000px;}
.y79{bottom:200.730000px;}
.y26{bottom:204.150000px;}
.yfa{bottom:209.730000px;}
.y42{bottom:209.910000px;}
.y8b{bottom:211.530000px;}
.ycd{bottom:214.950000px;}
.ye6{bottom:216.750000px;}
.ybe{bottom:216.930000px;}
.y3b{bottom:218.910000px;}
.y78{bottom:220.530000px;}
.y25{bottom:223.950000px;}
.yf9{bottom:229.530000px;}
.y8a{bottom:231.510000px;}
.ycc{bottom:234.750000px;}
.ye5{bottom:236.730000px;}
.ybd{bottom:236.910000px;}
.y3a{bottom:238.710000px;}
.y77{bottom:240.510000px;}
.y24{bottom:243.750000px;}
.yaa{bottom:249.510000px;}
.y89{bottom:251.310000px;}
.ycb{bottom:254.550000px;}
.ye4{bottom:256.530000px;}
.ybc{bottom:256.710000px;}
.y39{bottom:258.510000px;}
.y76{bottom:260.310000px;}
.y23{bottom:263.550000px;}
.ya9{bottom:269.310000px;}
.yca{bottom:269.490000px;}
.y88{bottom:271.110000px;}
.ye3{bottom:276.330000px;}
.ybb{bottom:276.510000px;}
.y38{bottom:278.310000px;}
.y75{bottom:280.110000px;}
.y22{bottom:283.530000px;}
.ya8{bottom:289.110000px;}
.y87{bottom:290.910000px;}
.ye2{bottom:296.130000px;}
.yba{bottom:296.310000px;}
.y37{bottom:298.290000px;}
.y74{bottom:299.910000px;}
.y21{bottom:303.330000px;}
.ya7{bottom:308.910000px;}
.yc9{bottom:309.810000px;}
.y86{bottom:310.710000px;}
.ye1{bottom:315.930000px;}
.yb9{bottom:316.110000px;}
.y36{bottom:318.090000px;}
.y73{bottom:319.710000px;}
.y20{bottom:323.130000px;}
.ya6{bottom:328.710000px;}
.y85{bottom:330.690000px;}
.yb8{bottom:331.050000px;}
.ye0{bottom:335.910000px;}
.y35{bottom:337.890000px;}
.y72{bottom:339.690000px;}
.y1f{bottom:342.930000px;}
.ya5{bottom:348.690000px;}
.yc8{bottom:350.310000px;}
.y84{bottom:350.490000px;}
.ydf{bottom:355.710000px;}
.y34{bottom:357.690000px;}
.y71{bottom:359.490000px;}
.y1e{bottom:362.730000px;}
.ya4{bottom:368.490000px;}
.yf8{bottom:370.290000px;}
.yc7{bottom:370.830000px;}
.yde{bottom:375.510000px;}
.y33{bottom:377.490000px;}
.y70{bottom:379.290000px;}
.y1d{bottom:382.710000px;}
.ya3{bottom:388.290000px;}
.yf7{bottom:390.090000px;}
.yb4{bottom:391.170000px;}
.ydd{bottom:395.310000px;}
.y32{bottom:397.470000px;}
.y6f{bottom:399.090000px;}
.ya2{bottom:408.135000px;}
.ydc{bottom:415.155000px;}
.y31{bottom:417.315000px;}
.y6e{bottom:418.935000px;}
.ya1{bottom:427.935000px;}
.yc5{bottom:431.175000px;}
.ydb{bottom:435.135000px;}
.y30{bottom:437.115000px;}
.y6d{bottom:438.915000px;}
.ya0{bottom:447.915000px;}
.yb2{bottom:451.515000px;}
.y2f{bottom:451.875000px;}
.yda{bottom:454.935000px;}
.y6c{bottom:458.715000px;}
.y9f{bottom:467.715000px;}
.y1c{bottom:472.575000px;}
.yd9{bottom:474.735000px;}
.y6b{bottom:478.515000px;}
.y9e{bottom:487.515000px;}
.yd6{bottom:489.495000px;}
.y6a{bottom:498.315000px;}
.y9d{bottom:507.315000px;}
.yb0{bottom:511.815000px;}
.y69{bottom:518.115000px;}
.y9c{bottom:527.115000px;}
.yd4{bottom:530.355000px;}
.y68{bottom:538.095000px;}
.y9b{bottom:547.095000px;}
.yd3{bottom:551.235000px;}
.y67{bottom:557.895000px;}
.y9a{bottom:566.895000px;}
.y66{bottom:577.695000px;}
.y99{bottom:586.695000px;}
.y65{bottom:597.495000px;}
.y98{bottom:606.495000px;}
.yaf{bottom:611.715000px;}
.y64{bottom:617.295000px;}
.y97{bottom:626.295000px;}
.y63{bottom:637.275000px;}
.y96{bottom:646.275000px;}
.y62{bottom:657.105000px;}
.yae{bottom:658.005000px;}
.y95{bottom:666.105000px;}
.y61{bottom:676.905000px;}
.yad{bottom:677.805000px;}
.y94{bottom:685.905000px;}
.y60{bottom:696.705000px;}
.yac{bottom:697.605000px;}
.y93{bottom:705.705000px;}
.yab{bottom:714.345000px;}
.y5f{bottom:716.505000px;}
.y92{bottom:725.505000px;}
.y5e{bottom:736.485000px;}
.y91{bottom:745.485000px;}
.y83{bottom:756.285000px;}
.y5d{bottom:765.285000px;}
.y82{bottom:776.085000px;}
.y5c{bottom:785.085000px;}
.y81{bottom:795.885000px;}
.y5b{bottom:804.885000px;}
.y80{bottom:815.685000px;}
.y5a{bottom:824.685000px;}
.y7f{bottom:835.665000px;}
.y59{bottom:844.665000px;}
.y7e{bottom:855.465000px;}
.y58{bottom:864.465000px;}
.y1a{bottom:870.045000px;}
.y7d{bottom:875.265000px;}
.y57{bottom:884.265000px;}
.yf4{bottom:895.065000px;}
.y19{bottom:899.430000px;}
.y56{bottom:904.110000px;}
.yf3{bottom:914.910000px;}
.y18{bottom:919.230000px;}
.y55{bottom:923.910000px;}
.yf2{bottom:934.890000px;}
.y17{bottom:939.750000px;}
.y54{bottom:943.890000px;}
.yf1{bottom:954.690000px;}
.y16{bottom:960.990000px;}
.y53{bottom:963.690000px;}
.yf0{bottom:974.490000px;}
.y52{bottom:983.490000px;}
.y15{bottom:984.390000px;}
.yef{bottom:994.290000px;}
.y51{bottom:1003.290000px;}
.yee{bottom:1014.090000px;}
.y14{bottom:1016.070000px;}
.y50{bottom:1023.090000px;}
.yed{bottom:1034.070000px;}
.yf{bottom:1041.630000px;}
.y4f{bottom:1043.070000px;}
.y1{bottom:1062.510000px;}
.y4e{bottom:1062.870000px;}
.y4d{bottom:1082.670000px;}
.y4c{bottom:1102.470000px;}
.y4b{bottom:1122.270000px;}
.y4a{bottom:1142.250000px;}
.y49{bottom:1171.620000px;}
.y48{bottom:1193.400000px;}
.h3{height:2.067188px;}
.he{height:19.800000px;}
.h19{height:19.980000px;}
.h1a{height:20.160000px;}
.h17{height:20.880000px;}
.h9{height:21.960000px;}
.hc{height:22.860000px;}
.h18{height:39.600000px;}
.h12{height:39.636000px;}
.h1c{height:40.140000px;}
.h4{height:42.164648px;}
.h7{height:42.894141px;}
.h10{height:43.506914px;}
.h6{height:46.736719px;}
.h8{height:47.545312px;}
.h11{height:49.255313px;}
.h1b{height:50.364141px;}
.ha{height:53.224453px;}
.h16{height:59.400000px;}
.h5{height:59.436914px;}
.h14{height:59.580000px;}
.h15{height:59.616000px;}
.hf{height:61.189805px;}
.hb{height:67.565039px;}
.h13{height:99.180000px;}
.h2{height:146.016000px;}
.hd{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.056000px;}
.w12{width:116.316000px;}
.w11{width:136.980000px;}
.we{width:137.196000px;}
.w4{width:141.876000px;}
.w2{width:155.730000px;}
.wb{width:174.630000px;}
.w8{width:192.270000px;}
.wc{width:201.090000px;}
.w13{width:211.890000px;}
.wd{width:212.115000px;}
.w14{width:233.130000px;}
.wf{width:254.955000px;}
.w10{width:371.055000px;}
.w3{width:499.065000px;}
.w9{width:585.510000px;}
.w7{width:732.390000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.560000px;}
.x5{left:8.640000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.xf{left:56.519987px;}
.xc{left:57.600000px;}
.x14{left:64.260000px;}
.x18{left:80.999987px;}
.x1e{left:96.336000px;}
.xb{left:106.776000px;}
.x19{left:108.035987px;}
.x4{left:127.665000px;}
.x8{left:142.065000px;}
.x2{left:147.630000px;}
.x7{left:154.305000px;}
.x1c{left:202.170000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.x20{left:234.030000px;}
.x15{left:239.610000px;}
.xd{left:249.870000px;}
.x13{left:288.254987px;}
.x21{left:351.075000px;}
.x10{left:392.294987px;}
.x16{left:414.975000px;}
.x11{left:446.504987px;}
.x1d{left:457.845000px;}
.xe{left:473.504987px;}
.x1b{left:500.504987px;}
.x1a{left:527.504987px;}
.x22{left:563.685000px;}
.x17{left:616.785000px;}
.x9{left:703.050000px;}
.x12{left:797.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-1.120000pt;}
.ls14{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.821333pt;}
.ls12{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.456533pt;}
.ls13{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033280pt;}
.lsf{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094720pt;}
.ls9{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls2{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.870933pt;}
.wsb{word-spacing:-12.823467pt;}
.ws8{word-spacing:-12.736000pt;}
.ws9{word-spacing:0.000000pt;}
._2e{margin-left:-3.607680pt;}
._11{margin-left:-2.620800pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._6{width:2.181547pt;}
._c{width:3.319253pt;}
._b{width:4.637440pt;}
._16{width:5.843200pt;}
._15{width:6.894080pt;}
._19{width:7.915520pt;}
._9{width:9.226027pt;}
._8{width:10.677120pt;}
._a{width:11.587840pt;}
._1d{width:14.236160pt;}
._f{width:15.328000pt;}
._d{width:16.307840pt;}
._e{width:17.929600pt;}
._1f{width:18.826240pt;}
._1e{width:19.973120pt;}
._21{width:21.035520pt;}
._1b{width:22.257280pt;}
._1a{width:23.319680pt;}
._18{width:24.830293pt;}
._14{width:25.846187pt;}
._13{width:26.984960pt;}
._17{width:27.888000pt;}
._22{width:29.056640pt;}
._2f{width:30.710400pt;}
._43{width:31.642667pt;}
._27{width:32.561280pt;}
._25{width:34.315520pt;}
._3b{width:35.353600pt;}
._42{width:36.247680pt;}
._1c{width:37.323520pt;}
._10{width:38.458880pt;}
._24{width:39.963307pt;}
._3c{width:41.091200pt;}
._2c{width:42.602240pt;}
._26{width:43.983360pt;}
._20{width:45.145600pt;}
._2d{width:46.055040pt;}
._29{width:47.281280pt;}
._2b{width:48.865920pt;}
._33{width:50.198400pt;}
._48{width:51.951360pt;}
._4{width:52.859520pt;}
._41{width:53.757440pt;}
._5{width:54.938667pt;}
._2a{width:55.882240pt;}
._2{width:57.600000pt;}
._46{width:58.856960pt;}
._3d{width:61.725440pt;}
._23{width:66.840320pt;}
._3e{width:68.852480pt;}
._31{width:69.890347pt;}
._28{width:74.054400pt;}
._3f{width:75.000320pt;}
._39{width:76.758400pt;}
._44{width:79.255040pt;}
._45{width:80.317440pt;}
._47{width:92.747520pt;}
._37{width:105.218987pt;}
._7{width:117.890347pt;}
._3a{width:119.520000pt;}
._38{width:123.338880pt;}
._40{width:140.289920pt;}
._35{width:173.176960pt;}
._36{width:176.458880pt;}
._34{width:210.992640pt;}
._32{width:299.827627pt;}
._3{width:599.200000pt;}
._30{width:754.986667pt;}
._12{width:875.306667pt;}
.fs0{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.yb7{bottom:5.280000pt;}
.yd5{bottom:5.440000pt;}
.yd8{bottom:5.600000pt;}
.y11{bottom:5.760000pt;}
.yc6{bottom:6.080000pt;}
.y8{bottom:7.040000pt;}
.y1b{bottom:7.840000pt;}
.yd{bottom:22.720000pt;}
.yb6{bottom:22.920000pt;}
.yd7{bottom:23.200000pt;}
.y2{bottom:23.680000pt;}
.y7{bottom:24.640000pt;}
.y2e{bottom:40.320000pt;}
.yb3{bottom:40.480000pt;}
.yb5{bottom:40.520000pt;}
.y6{bottom:42.240000pt;}
.yc{bottom:48.320000pt;}
.y13{bottom:50.720000pt;}
.y2d{bottom:57.920000pt;}
.yb1{bottom:58.080000pt;}
.y5{bottom:61.920000pt;}
.y10{bottom:63.200000pt;}
.yb{bottom:66.080000pt;}
.y2c{bottom:75.680000pt;}
.y4{bottom:86.746667pt;}
.yec{bottom:86.880000pt;}
.yc4{bottom:87.040000pt;}
.y41{bottom:88.800000pt;}
.yf6{bottom:90.240000pt;}
.ya{bottom:91.706667pt;}
.y2b{bottom:93.280000pt;}
.y47{bottom:98.400000pt;}
.y90{bottom:99.840000pt;}
.yd2{bottom:102.880000pt;}
.yeb{bottom:104.480000pt;}
.yc3{bottom:104.640000pt;}
.y40{bottom:106.400000pt;}
.yf5{bottom:107.840000pt;}
.y9{bottom:109.306667pt;}
.y2a{bottom:110.880000pt;}
.yfc{bottom:115.840000pt;}
.y46{bottom:116.000000pt;}
.y3{bottom:117.306667pt;}
.y8f{bottom:117.600000pt;}
.yd1{bottom:120.480000pt;}
.yea{bottom:122.240000pt;}
.yc2{bottom:122.400000pt;}
.y3f{bottom:124.000000pt;}
.y7c{bottom:125.600000pt;}
.y29{bottom:128.480000pt;}
.y45{bottom:133.600000pt;}
.y8e{bottom:135.226667pt;}
.yd0{bottom:138.106667pt;}
.ye9{bottom:139.866667pt;}
.yc1{bottom:140.026667pt;}
.y3e{bottom:141.626667pt;}
.y7b{bottom:143.226667pt;}
.y28{bottom:146.080000pt;}
.y44{bottom:151.226667pt;}
.y8d{bottom:152.826667pt;}
.ycf{bottom:155.866667pt;}
.ye8{bottom:157.466667pt;}
.yc0{bottom:157.626667pt;}
.y3d{bottom:159.226667pt;}
.y7a{bottom:160.826667pt;}
.y27{bottom:163.866667pt;}
.yfb{bottom:168.826667pt;}
.y43{bottom:168.986667pt;}
.y8c{bottom:170.426667pt;}
.yce{bottom:173.466667pt;}
.ye7{bottom:175.066667pt;}
.ybf{bottom:175.226667pt;}
.y3c{bottom:176.986667pt;}
.y79{bottom:178.426667pt;}
.y26{bottom:181.466667pt;}
.yfa{bottom:186.426667pt;}
.y42{bottom:186.586667pt;}
.y8b{bottom:188.026667pt;}
.ycd{bottom:191.066667pt;}
.ye6{bottom:192.666667pt;}
.ybe{bottom:192.826667pt;}
.y3b{bottom:194.586667pt;}
.y78{bottom:196.026667pt;}
.y25{bottom:199.066667pt;}
.yf9{bottom:204.026667pt;}
.y8a{bottom:205.786667pt;}
.ycc{bottom:208.666667pt;}
.ye5{bottom:210.426667pt;}
.ybd{bottom:210.586667pt;}
.y3a{bottom:212.186667pt;}
.y77{bottom:213.786667pt;}
.y24{bottom:216.666667pt;}
.yaa{bottom:221.786667pt;}
.y89{bottom:223.386667pt;}
.ycb{bottom:226.266667pt;}
.ye4{bottom:228.026667pt;}
.ybc{bottom:228.186667pt;}
.y39{bottom:229.786667pt;}
.y76{bottom:231.386667pt;}
.y23{bottom:234.266667pt;}
.ya9{bottom:239.386667pt;}
.yca{bottom:239.546667pt;}
.y88{bottom:240.986667pt;}
.ye3{bottom:245.626667pt;}
.ybb{bottom:245.786667pt;}
.y38{bottom:247.386667pt;}
.y75{bottom:248.986667pt;}
.y22{bottom:252.026667pt;}
.ya8{bottom:256.986667pt;}
.y87{bottom:258.586667pt;}
.ye2{bottom:263.226667pt;}
.yba{bottom:263.386667pt;}
.y37{bottom:265.146667pt;}
.y74{bottom:266.586667pt;}
.y21{bottom:269.626667pt;}
.ya7{bottom:274.586667pt;}
.yc9{bottom:275.386667pt;}
.y86{bottom:276.186667pt;}
.ye1{bottom:280.826667pt;}
.yb9{bottom:280.986667pt;}
.y36{bottom:282.746667pt;}
.y73{bottom:284.186667pt;}
.y20{bottom:287.226667pt;}
.ya6{bottom:292.186667pt;}
.y85{bottom:293.946667pt;}
.yb8{bottom:294.266667pt;}
.ye0{bottom:298.586667pt;}
.y35{bottom:300.346667pt;}
.y72{bottom:301.946667pt;}
.y1f{bottom:304.826667pt;}
.ya5{bottom:309.946667pt;}
.yc8{bottom:311.386667pt;}
.y84{bottom:311.546667pt;}
.ydf{bottom:316.186667pt;}
.y34{bottom:317.946667pt;}
.y71{bottom:319.546667pt;}
.y1e{bottom:322.426667pt;}
.ya4{bottom:327.546667pt;}
.yf8{bottom:329.146667pt;}
.yc7{bottom:329.626667pt;}
.yde{bottom:333.786667pt;}
.y33{bottom:335.546667pt;}
.y70{bottom:337.146667pt;}
.y1d{bottom:340.186667pt;}
.ya3{bottom:345.146667pt;}
.yf7{bottom:346.746667pt;}
.yb4{bottom:347.706667pt;}
.ydd{bottom:351.386667pt;}
.y32{bottom:353.306667pt;}
.y6f{bottom:354.746667pt;}
.ya2{bottom:362.786667pt;}
.ydc{bottom:369.026667pt;}
.y31{bottom:370.946667pt;}
.y6e{bottom:372.386667pt;}
.ya1{bottom:380.386667pt;}
.yc5{bottom:383.266667pt;}
.ydb{bottom:386.786667pt;}
.y30{bottom:388.546667pt;}
.y6d{bottom:390.146667pt;}
.ya0{bottom:398.146667pt;}
.yb2{bottom:401.346667pt;}
.y2f{bottom:401.666667pt;}
.yda{bottom:404.386667pt;}
.y6c{bottom:407.746667pt;}
.y9f{bottom:415.746667pt;}
.y1c{bottom:420.066667pt;}
.yd9{bottom:421.986667pt;}
.y6b{bottom:425.346667pt;}
.y9e{bottom:433.346667pt;}
.yd6{bottom:435.106667pt;}
.y6a{bottom:442.946667pt;}
.y9d{bottom:450.946667pt;}
.yb0{bottom:454.946667pt;}
.y69{bottom:460.546667pt;}
.y9c{bottom:468.546667pt;}
.yd4{bottom:471.426667pt;}
.y68{bottom:478.306667pt;}
.y9b{bottom:486.306667pt;}
.yd3{bottom:489.986667pt;}
.y67{bottom:495.906667pt;}
.y9a{bottom:503.906667pt;}
.y66{bottom:513.506667pt;}
.y99{bottom:521.506667pt;}
.y65{bottom:531.106667pt;}
.y98{bottom:539.106667pt;}
.yaf{bottom:543.746667pt;}
.y64{bottom:548.706667pt;}
.y97{bottom:556.706667pt;}
.y63{bottom:566.466667pt;}
.y96{bottom:574.466667pt;}
.y62{bottom:584.093333pt;}
.yae{bottom:584.893333pt;}
.y95{bottom:592.093333pt;}
.y61{bottom:601.693333pt;}
.yad{bottom:602.493333pt;}
.y94{bottom:609.693333pt;}
.y60{bottom:619.293333pt;}
.yac{bottom:620.093333pt;}
.y93{bottom:627.293333pt;}
.yab{bottom:634.973333pt;}
.y5f{bottom:636.893333pt;}
.y92{bottom:644.893333pt;}
.y5e{bottom:654.653333pt;}
.y91{bottom:662.653333pt;}
.y83{bottom:672.253333pt;}
.y5d{bottom:680.253333pt;}
.y82{bottom:689.853333pt;}
.y5c{bottom:697.853333pt;}
.y81{bottom:707.453333pt;}
.y5b{bottom:715.453333pt;}
.y80{bottom:725.053333pt;}
.y5a{bottom:733.053333pt;}
.y7f{bottom:742.813333pt;}
.y59{bottom:750.813333pt;}
.y7e{bottom:760.413333pt;}
.y58{bottom:768.413333pt;}
.y1a{bottom:773.373333pt;}
.y7d{bottom:778.013333pt;}
.y57{bottom:786.013333pt;}
.yf4{bottom:795.613333pt;}
.y19{bottom:799.493333pt;}
.y56{bottom:803.653333pt;}
.yf3{bottom:813.253333pt;}
.y18{bottom:817.093333pt;}
.y55{bottom:821.253333pt;}
.yf2{bottom:831.013333pt;}
.y17{bottom:835.333333pt;}
.y54{bottom:839.013333pt;}
.yf1{bottom:848.613333pt;}
.y16{bottom:854.213333pt;}
.y53{bottom:856.613333pt;}
.yf0{bottom:866.213333pt;}
.y52{bottom:874.213333pt;}
.y15{bottom:875.013333pt;}
.yef{bottom:883.813333pt;}
.y51{bottom:891.813333pt;}
.yee{bottom:901.413333pt;}
.y14{bottom:903.173333pt;}
.y50{bottom:909.413333pt;}
.yed{bottom:919.173333pt;}
.yf{bottom:925.893333pt;}
.y4f{bottom:927.173333pt;}
.y1{bottom:944.453333pt;}
.y4e{bottom:944.773333pt;}
.y4d{bottom:962.373333pt;}
.y4c{bottom:979.973333pt;}
.y4b{bottom:997.573333pt;}
.y4a{bottom:1015.333333pt;}
.y49{bottom:1041.440000pt;}
.y48{bottom:1060.800000pt;}
.h3{height:1.837500pt;}
.he{height:17.600000pt;}
.h19{height:17.760000pt;}
.h1a{height:17.920000pt;}
.h17{height:18.560000pt;}
.h9{height:19.520000pt;}
.hc{height:20.320000pt;}
.h18{height:35.200000pt;}
.h12{height:35.232000pt;}
.h1c{height:35.680000pt;}
.h4{height:37.479688pt;}
.h7{height:38.128125pt;}
.h10{height:38.672812pt;}
.h6{height:41.543750pt;}
.h8{height:42.262500pt;}
.h11{height:43.782500pt;}
.h1b{height:44.768125pt;}
.ha{height:47.310625pt;}
.h16{height:52.800000pt;}
.h5{height:52.832812pt;}
.h14{height:52.960000pt;}
.h15{height:52.992000pt;}
.hf{height:54.390938pt;}
.hb{height:60.057813pt;}
.h13{height:88.160000pt;}
.h2{height:129.792000pt;}
.hd{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.272000pt;}
.w12{width:103.392000pt;}
.w11{width:121.760000pt;}
.we{width:121.952000pt;}
.w4{width:126.112000pt;}
.w2{width:138.426667pt;}
.wb{width:155.226667pt;}
.w8{width:170.906667pt;}
.wc{width:178.746667pt;}
.w13{width:188.346667pt;}
.wd{width:188.546667pt;}
.w14{width:207.226667pt;}
.wf{width:226.626667pt;}
.w10{width:329.826667pt;}
.w3{width:443.613333pt;}
.w9{width:520.453333pt;}
.w7{width:651.013333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.720000pt;}
.x5{left:7.680000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.xf{left:50.239988pt;}
.xc{left:51.200000pt;}
.x14{left:57.120000pt;}
.x18{left:71.999988pt;}
.x1e{left:85.632000pt;}
.xb{left:94.912000pt;}
.x19{left:96.031988pt;}
.x4{left:113.480000pt;}
.x8{left:126.280000pt;}
.x2{left:131.226667pt;}
.x7{left:137.160000pt;}
.x1c{left:179.706667pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.x20{left:208.026667pt;}
.x15{left:212.986667pt;}
.xd{left:222.106667pt;}
.x13{left:256.226655pt;}
.x21{left:312.066667pt;}
.x10{left:348.706655pt;}
.x16{left:368.866667pt;}
.x11{left:396.893322pt;}
.x1d{left:406.973333pt;}
.xe{left:420.893322pt;}
.x1b{left:444.893322pt;}
.x1a{left:468.893322pt;}
.x22{left:501.053333pt;}
.x17{left:548.253333pt;}
.x9{left:624.933333pt;}
.x12{left:708.933322pt;}
}




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