
    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_3a8f2005a1ea85e65afb0461.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6a382de44d3b89d7402c4f14.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_3a1fe1d7943d1183bbbd0622.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_84a5be72d90cf6455dac20c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_d8dae1ffe89d11be1cdd2cea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_3ee36512c0a2f403bf363832.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_293916ae5241cc50d7e4e05b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_6193fc93719873dbca485474.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_095ce0b9cc1772502695cbe0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.120000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.ls1c{letter-spacing:-0.960000px;}
.lsb{letter-spacing:-0.618000px;}
.ls15{letter-spacing:-0.597600px;}
.ls10{letter-spacing:-0.478200px;}
.ls20{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.270600px;}
.ls9{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.103800px;}
.ls11{letter-spacing:-0.094800px;}
.lsc{letter-spacing:-0.085200px;}
.lsd{letter-spacing:-0.036000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.023040px;}
.ls19{letter-spacing:0.043200px;}
.ls1f{letter-spacing:0.089400px;}
.ls12{letter-spacing:0.100800px;}
.ls17{letter-spacing:0.147000px;}
.ls2{letter-spacing:0.168480px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.187200px;}
.lsa{letter-spacing:0.211800px;}
.ls3{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.276600px;}
.ls1d{letter-spacing:0.305280px;}
.ls1e{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.328320px;}
.ls4{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.485280px;}
.ls5{letter-spacing:0.556560px;}
.ls14{letter-spacing:39.185280px;}
.ls1a{letter-spacing:153.187200px;}
.ls1b{letter-spacing:201.403200px;}
.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;}
}
.ws14{word-spacing:-14.878200px;}
.wsf{word-spacing:-14.849400px;}
.wse{word-spacing:-14.719800px;}
.ws11{word-spacing:-14.662200px;}
.wsd{word-spacing:-14.595840px;}
.wsc{word-spacing:-14.572800px;}
.ws13{word-spacing:-14.469000px;}
.ws12{word-spacing:-14.158200px;}
.ws1{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.147200px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.527600px;}
.ws9{word-spacing:-10.342200px;}
.wsa{word-spacing:-10.134600px;}
.ws10{word-spacing:-9.230400px;}
.ws3{word-spacing:-9.187200px;}
.wsb{word-spacing:-9.092400px;}
.ws7{word-spacing:-7.920000px;}
.ws6{word-spacing:-7.884000px;}
.ws8{word-spacing:0.000000px;}
._24{margin-left:-4.063680px;}
._1a{margin-left:-2.649600px;}
._2{margin-left:-1.368000px;}
._1{width:1.218000px;}
._a{width:2.260800px;}
._6{width:3.645360px;}
._7{width:4.997040px;}
._15{width:6.120000px;}
._f{width:7.171200px;}
._11{width:8.213760px;}
._b{width:9.262800px;}
._1f{width:10.344240px;}
._9{width:11.414160px;}
._19{width:12.636480px;}
._c{width:14.356560px;}
._16{width:15.765120px;}
._20{width:16.884480px;}
._17{width:18.017280px;}
._18{width:19.163520px;}
._e{width:21.155040px;}
._26{width:22.166400px;}
._d{width:23.664960px;}
._1e{width:25.007040px;}
._12{width:26.297280px;}
._13{width:28.085760px;}
._28{width:29.318400px;}
._27{width:30.404160px;}
._21{width:31.662720px;}
._1d{width:32.788800px;}
._8{width:34.421760px;}
._29{width:35.570880px;}
._14{width:39.346560px;}
._22{width:40.870080px;}
._23{width:41.973120px;}
._1b{width:47.620680px;}
._2a{width:71.340480px;}
._2c{width:72.626880px;}
._2b{width:73.846800px;}
._0{width:75.000000px;}
._31{width:88.894080px;}
._32{width:90.484320px;}
._10{width:153.187200px;}
._34{width:155.067840px;}
._33{width:156.922560px;}
._3{width:181.620000px;}
._30{width:190.704960px;}
._2f{width:191.741760px;}
._4{width:194.379840px;}
._25{width:201.403200px;}
._5{width:202.852800px;}
._2e{width:230.316480px;}
._2d{width:231.353280px;}
._1c{width:1112.887200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y81{bottom:6.300000px;}
.y84{bottom:6.480000px;}
.y4e{bottom:12.240000px;}
.ya1{bottom:28.620000px;}
.ybf{bottom:28.650000px;}
.ya5{bottom:28.665000px;}
.ybd{bottom:28.794000px;}
.ya7{bottom:28.800000px;}
.y4d{bottom:32.940000px;}
.ycc{bottom:50.940000px;}
.y4c{bottom:51.660000px;}
.y51{bottom:56.520000px;}
.y7{bottom:58.680000px;}
.y4b{bottom:62.280000px;}
.y4a{bottom:72.900000px;}
.ycb{bottom:73.080000px;}
.y49{bottom:83.340000px;}
.yd5{bottom:95.400000px;}
.yca{bottom:95.445000px;}
.y48{bottom:100.980000px;}
.y9e{bottom:111.456000px;}
.y3a{bottom:114.156000px;}
.yee{bottom:115.596000px;}
.yd4{bottom:117.540000px;}
.yc9{bottom:117.585000px;}
.yec{bottom:117.720000px;}
.ybc{bottom:128.376000px;}
.y9d{bottom:133.776000px;}
.yed{bottom:134.856000px;}
.y39{bottom:136.296000px;}
.y7f{bottom:137.916000px;}
.yd3{bottom:139.860000px;}
.yc8{bottom:139.905000px;}
.ye9{bottom:151.410000px;}
.y47{bottom:153.900000px;}
.y9c{bottom:155.910000px;}
.y38{bottom:158.610000px;}
.y7e{bottom:160.050000px;}
.yd2{bottom:162.000000px;}
.yc7{bottom:162.045000px;}
.yeb{bottom:162.180000px;}
.y46{bottom:167.940000px;}
.ybb{bottom:173.010000px;}
.y9b{bottom:178.230000px;}
.y37{bottom:180.750000px;}
.y45{bottom:181.980000px;}
.y7d{bottom:182.370000px;}
.yd1{bottom:184.320000px;}
.yc6{bottom:184.365000px;}
.y44{bottom:196.200000px;}
.y9a{bottom:200.370000px;}
.y36{bottom:203.070000px;}
.y7c{bottom:204.510000px;}
.yd0{bottom:206.640000px;}
.yc5{bottom:206.685000px;}
.y43{bottom:210.240000px;}
.yba{bottom:217.470000px;}
.y99{bottom:222.690000px;}
.y42{bottom:224.280000px;}
.y35{bottom:225.390000px;}
.y7b{bottom:226.830000px;}
.ycf{bottom:228.780000px;}
.yc4{bottom:228.825000px;}
.yea{bottom:229.005000px;}
.y41{bottom:238.320000px;}
.yc0{bottom:241.950000px;}
.y98{bottom:245.010000px;}
.y34{bottom:247.530000px;}
.y7a{bottom:249.150000px;}
.ydc{bottom:251.130000px;}
.yc3{bottom:251.145000px;}
.y40{bottom:252.405000px;}
.yb9{bottom:261.930000px;}
.y3f{bottom:266.445000px;}
.y97{bottom:267.150000px;}
.y33{bottom:269.850000px;}
.y79{bottom:271.290000px;}
.yc2{bottom:273.285000px;}
.y3e{bottom:280.665000px;}
.yb8{bottom:284.070000px;}
.y96{bottom:289.470000px;}
.y32{bottom:291.990000px;}
.y78{bottom:293.610000px;}
.y3d{bottom:294.705000px;}
.yc1{bottom:295.605000px;}
.y3c{bottom:309.105000px;}
.y95{bottom:311.610000px;}
.y31{bottom:314.310000px;}
.y77{bottom:315.750000px;}
.yce{bottom:317.925000px;}
.yb7{bottom:328.710000px;}
.y94{bottom:333.930000px;}
.y30{bottom:336.495000px;}
.ydb{bottom:336.675000px;}
.y76{bottom:338.115000px;}
.y93{bottom:356.295000px;}
.y2f{bottom:358.815000px;}
.y75{bottom:360.255000px;}
.yb6{bottom:373.215000px;}
.y92{bottom:378.435000px;}
.y2e{bottom:381.135000px;}
.y74{bottom:382.575000px;}
.y91{bottom:400.755000px;}
.y2d{bottom:403.275000px;}
.y73{bottom:404.895000px;}
.yb5{bottom:417.675000px;}
.y90{bottom:422.895000px;}
.y2c{bottom:425.595000px;}
.y72{bottom:427.035000px;}
.y8f{bottom:445.215000px;}
.y2b{bottom:447.735000px;}
.yda{bottom:447.915000px;}
.y71{bottom:449.355000px;}
.yb4{bottom:462.135000px;}
.y8e{bottom:467.535000px;}
.y2a{bottom:470.055000px;}
.y70{bottom:471.495000px;}
.y8d{bottom:489.675000px;}
.y29{bottom:492.375000px;}
.y6f{bottom:493.815000px;}
.yb3{bottom:508.935000px;}
.y8c{bottom:511.995000px;}
.y28{bottom:514.515000px;}
.y6e{bottom:516.135000px;}
.y8b{bottom:534.135000px;}
.y27{bottom:535.935000px;}
.yd9{bottom:536.835000px;}
.yb2{bottom:537.555000px;}
.y6d{bottom:538.275000px;}
.y26{bottom:553.575000px;}
.y8a{bottom:556.455000px;}
.yd8{bottom:558.975000px;}
.yb1{bottom:559.875000px;}
.y6c{bottom:560.595000px;}
.y25{bottom:571.215000px;}
.y89{bottom:578.595000px;}
.yd7{bottom:581.295000px;}
.yb0{bottom:582.015000px;}
.y6b{bottom:582.735000px;}
.y24{bottom:588.855000px;}
.y88{bottom:600.915000px;}
.yd6{bottom:603.645000px;}
.yaf{bottom:604.365000px;}
.y6a{bottom:605.085000px;}
.y23{bottom:606.345000px;}
.y87{bottom:617.145000px;}
.ycd{bottom:620.205000px;}
.y22{bottom:623.985000px;}
.ye8{bottom:625.785000px;}
.yae{bottom:626.505000px;}
.y69{bottom:627.405000px;}
.y3b{bottom:630.825000px;}
.y86{bottom:639.825000px;}
.y21{bottom:641.625000px;}
.ye7{bottom:648.105000px;}
.yad{bottom:648.825000px;}
.y68{bottom:649.545000px;}
.y20{bottom:659.265000px;}
.y85{bottom:662.325000px;}
.ye6{bottom:670.245000px;}
.yac{bottom:671.145000px;}
.y67{bottom:671.865000px;}
.y1f{bottom:676.725000px;}
.y83{bottom:685.005000px;}
.ye5{bottom:692.565000px;}
.yab{bottom:693.285000px;}
.y66{bottom:694.005000px;}
.y1e{bottom:694.365000px;}
.y82{bottom:707.685000px;}
.y1d{bottom:712.005000px;}
.ye4{bottom:714.885000px;}
.yaa{bottom:715.605000px;}
.y65{bottom:716.325000px;}
.y1c{bottom:729.465000px;}
.y80{bottom:732.165000px;}
.ye3{bottom:737.025000px;}
.ya9{bottom:737.745000px;}
.y64{bottom:738.465000px;}
.y1b{bottom:747.105000px;}
.ye2{bottom:759.345000px;}
.ya8{bottom:760.065000px;}
.y63{bottom:760.785000px;}
.y1a{bottom:764.745000px;}
.ye1{bottom:781.485000px;}
.y19{bottom:782.205000px;}
.y62{bottom:783.105000px;}
.ya6{bottom:798.045000px;}
.y18{bottom:799.845000px;}
.ye0{bottom:803.805000px;}
.y61{bottom:805.245000px;}
.y17{bottom:817.485000px;}
.ydf{bottom:825.945000px;}
.yef{bottom:826.665000px;}
.y60{bottom:827.565000px;}
.y16{bottom:834.945000px;}
.ya4{bottom:842.685000px;}
.yde{bottom:848.265000px;}
.y5f{bottom:849.705000px;}
.y15{bottom:852.585000px;}
.y14{bottom:870.225000px;}
.ydd{bottom:870.630000px;}
.y5e{bottom:872.070000px;}
.ya3{bottom:887.190000px;}
.y13{bottom:887.910000px;}
.y5d{bottom:894.390000px;}
.y12{bottom:905.370000px;}
.y5c{bottom:916.530000px;}
.y11{bottom:923.010000px;}
.ya2{bottom:931.650000px;}
.y5b{bottom:938.850000px;}
.y10{bottom:940.650000px;}
.yf{bottom:958.110000px;}
.y5a{bottom:960.990000px;}
.ye{bottom:975.390000px;}
.ya0{bottom:976.110000px;}
.y59{bottom:983.310000px;}
.yd{bottom:995.550000px;}
.y58{bottom:1005.450000px;}
.yc{bottom:1011.210000px;}
.y9f{bottom:1021.290000px;}
.y57{bottom:1027.770000px;}
.yb{bottom:1030.470000px;}
.ya{bottom:1049.010000px;}
.y56{bottom:1050.090000px;}
.y9{bottom:1064.670000px;}
.y55{bottom:1072.230000px;}
.y8{bottom:1087.530000px;}
.y54{bottom:1094.550000px;}
.y6{bottom:1110.030000px;}
.ybe{bottom:1110.390000px;}
.y53{bottom:1116.690000px;}
.y5{bottom:1133.250000px;}
.y52{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y50{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y4f{bottom:1197.540000px;}
.hd{height:22.140000px;}
.he{height:22.320000px;}
.hb{height:30.480469px;}
.h8{height:35.357344px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.hf{height:44.460000px;}
.h10{height:44.496000px;}
.h11{height:44.640000px;}
.h2{height:45.720703px;}
.h5{height:50.273438px;}
.h9{height:50.597578px;}
.h7{height:56.084062px;}
.hc{height:58.819922px;}
.h6{height:65.837812px;}
.h14{height:266.970000px;}
.h12{height:311.430000px;}
.ha{height:321.870000px;}
.h13{height:333.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:55.620000px;}
.w4{width:55.800000px;}
.wd{width:106.200000px;}
.wb{width:116.640000px;}
.wc{width:151.230000px;}
.w9{width:152.490000px;}
.wa{width:169.770000px;}
.we{width:170.130000px;}
.wf{width:180.390000px;}
.w3{width:208.110000px;}
.w6{width:219.450000px;}
.w8{width:385.995000px;}
.w5{width:386.175000px;}
.w12{width:530.745000px;}
.w10{width:594.645000px;}
.w11{width:657.645000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x21{left:10.080000px;}
.x30{left:12.960000px;}
.x2d{left:15.300000px;}
.x27{left:17.100000px;}
.x3a{left:18.360000px;}
.x23{left:20.880000px;}
.x13{left:23.220000px;}
.x37{left:24.480000px;}
.x20{left:26.100000px;}
.x1e{left:27.720000px;}
.x26{left:29.160000px;}
.x22{left:32.400000px;}
.x25{left:34.920000px;}
.x29{left:36.360000px;}
.x33{left:39.420000px;}
.x1c{left:40.500000px;}
.x2c{left:43.200000px;}
.x28{left:45.540000px;}
.x2a{left:46.980000px;}
.x2b{left:48.240000px;}
.x1a{left:49.500000px;}
.x38{left:51.300000px;}
.x12{left:52.560000px;}
.x24{left:55.665000px;}
.x35{left:58.860000px;}
.x39{left:61.050000px;}
.x2e{left:63.585000px;}
.x36{left:69.150000px;}
.x34{left:71.310000px;}
.x15{left:95.940000px;}
.x1{left:108.035987px;}
.x2{left:110.555987px;}
.xa{left:113.616000px;}
.x5{left:120.815987px;}
.x7{left:130.355987px;}
.xb{left:134.994000px;}
.x3b{left:140.436000px;}
.x14{left:146.385000px;}
.xd{left:150.509987px;}
.x10{left:162.585000px;}
.xf{left:163.830000px;}
.x3e{left:165.825000px;}
.x16{left:172.845000px;}
.x17{left:174.825000px;}
.x18{left:236.549987px;}
.x8{left:269.489987px;}
.x3d{left:284.799000px;}
.x3{left:292.754987px;}
.x19{left:298.694987px;}
.x3c{left:305.859000px;}
.x2f{left:315.075000px;}
.x1b{left:316.335000px;}
.x9{left:336.494987px;}
.x6{left:368.174987px;}
.x31{left:421.275000px;}
.x4{left:446.654987px;}
.x1d{left:486.105000px;}
.xc{left:538.124987px;}
.x11{left:550.005000px;}
.x32{left:591.405000px;}
.x1f{left:602.745000px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.ls1c{letter-spacing:-0.853333pt;}
.lsb{letter-spacing:-0.549333pt;}
.ls15{letter-spacing:-0.531200pt;}
.ls10{letter-spacing:-0.425067pt;}
.ls20{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.240533pt;}
.ls9{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.092267pt;}
.ls11{letter-spacing:-0.084267pt;}
.lsc{letter-spacing:-0.075733pt;}
.lsd{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.020480pt;}
.ls19{letter-spacing:0.038400pt;}
.ls1f{letter-spacing:0.079467pt;}
.ls12{letter-spacing:0.089600pt;}
.ls17{letter-spacing:0.130667pt;}
.ls2{letter-spacing:0.149760pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.166400pt;}
.lsa{letter-spacing:0.188267pt;}
.ls3{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.245867pt;}
.ls1d{letter-spacing:0.271360pt;}
.ls1e{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.291840pt;}
.ls4{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.431360pt;}
.ls5{letter-spacing:0.494720pt;}
.ls14{letter-spacing:34.831360pt;}
.ls1a{letter-spacing:136.166400pt;}
.ls1b{letter-spacing:179.025067pt;}
.ws14{word-spacing:-13.225067pt;}
.wsf{word-spacing:-13.199467pt;}
.wse{word-spacing:-13.084267pt;}
.ws11{word-spacing:-13.033067pt;}
.wsd{word-spacing:-12.974080pt;}
.wsc{word-spacing:-12.953600pt;}
.ws13{word-spacing:-12.861333pt;}
.ws12{word-spacing:-12.585067pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.686400pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.357867pt;}
.ws9{word-spacing:-9.193067pt;}
.wsa{word-spacing:-9.008533pt;}
.ws10{word-spacing:-8.204800pt;}
.ws3{word-spacing:-8.166400pt;}
.wsb{word-spacing:-8.082133pt;}
.ws7{word-spacing:-7.040000pt;}
.ws6{word-spacing:-7.008000pt;}
.ws8{word-spacing:0.000000pt;}
._24{margin-left:-3.612160pt;}
._1a{margin-left:-2.355200pt;}
._2{margin-left:-1.216000pt;}
._1{width:1.082667pt;}
._a{width:2.009600pt;}
._6{width:3.240320pt;}
._7{width:4.441813pt;}
._15{width:5.440000pt;}
._f{width:6.374400pt;}
._11{width:7.301120pt;}
._b{width:8.233600pt;}
._1f{width:9.194880pt;}
._9{width:10.145920pt;}
._19{width:11.232427pt;}
._c{width:12.761387pt;}
._16{width:14.013440pt;}
._20{width:15.008427pt;}
._17{width:16.015360pt;}
._18{width:17.034240pt;}
._e{width:18.804480pt;}
._26{width:19.703467pt;}
._d{width:21.035520pt;}
._1e{width:22.228480pt;}
._12{width:23.375360pt;}
._13{width:24.965120pt;}
._28{width:26.060800pt;}
._27{width:27.025920pt;}
._21{width:28.144640pt;}
._1d{width:29.145600pt;}
._8{width:30.597120pt;}
._29{width:31.618560pt;}
._14{width:34.974720pt;}
._22{width:36.328960pt;}
._23{width:37.309440pt;}
._1b{width:42.329493pt;}
._2a{width:63.413760pt;}
._2c{width:64.557227pt;}
._2b{width:65.641600pt;}
._0{width:66.666667pt;}
._31{width:79.016960pt;}
._32{width:80.430507pt;}
._10{width:136.166400pt;}
._34{width:137.838080pt;}
._33{width:139.486720pt;}
._3{width:161.440000pt;}
._30{width:169.515520pt;}
._2f{width:170.437120pt;}
._4{width:172.782080pt;}
._25{width:179.025067pt;}
._5{width:180.313600pt;}
._2e{width:204.725760pt;}
._2d{width:205.647360pt;}
._1c{width:989.233067pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:5.600000pt;}
.y84{bottom:5.760000pt;}
.y4e{bottom:10.880000pt;}
.ya1{bottom:25.440000pt;}
.ybf{bottom:25.466667pt;}
.ya5{bottom:25.480000pt;}
.ybd{bottom:25.594667pt;}
.ya7{bottom:25.600000pt;}
.y4d{bottom:29.280000pt;}
.ycc{bottom:45.280000pt;}
.y4c{bottom:45.920000pt;}
.y51{bottom:50.240000pt;}
.y7{bottom:52.160000pt;}
.y4b{bottom:55.360000pt;}
.y4a{bottom:64.800000pt;}
.ycb{bottom:64.960000pt;}
.y49{bottom:74.080000pt;}
.yd5{bottom:84.800000pt;}
.yca{bottom:84.840000pt;}
.y48{bottom:89.760000pt;}
.y9e{bottom:99.072000pt;}
.y3a{bottom:101.472000pt;}
.yee{bottom:102.752000pt;}
.yd4{bottom:104.480000pt;}
.yc9{bottom:104.520000pt;}
.yec{bottom:104.640000pt;}
.ybc{bottom:114.112000pt;}
.y9d{bottom:118.912000pt;}
.yed{bottom:119.872000pt;}
.y39{bottom:121.152000pt;}
.y7f{bottom:122.592000pt;}
.yd3{bottom:124.320000pt;}
.yc8{bottom:124.360000pt;}
.ye9{bottom:134.586667pt;}
.y47{bottom:136.800000pt;}
.y9c{bottom:138.586667pt;}
.y38{bottom:140.986667pt;}
.y7e{bottom:142.266667pt;}
.yd2{bottom:144.000000pt;}
.yc7{bottom:144.040000pt;}
.yeb{bottom:144.160000pt;}
.y46{bottom:149.280000pt;}
.ybb{bottom:153.786667pt;}
.y9b{bottom:158.426667pt;}
.y37{bottom:160.666667pt;}
.y45{bottom:161.760000pt;}
.y7d{bottom:162.106667pt;}
.yd1{bottom:163.840000pt;}
.yc6{bottom:163.880000pt;}
.y44{bottom:174.400000pt;}
.y9a{bottom:178.106667pt;}
.y36{bottom:180.506667pt;}
.y7c{bottom:181.786667pt;}
.yd0{bottom:183.680000pt;}
.yc5{bottom:183.720000pt;}
.y43{bottom:186.880000pt;}
.yba{bottom:193.306667pt;}
.y99{bottom:197.946667pt;}
.y42{bottom:199.360000pt;}
.y35{bottom:200.346667pt;}
.y7b{bottom:201.626667pt;}
.ycf{bottom:203.360000pt;}
.yc4{bottom:203.400000pt;}
.yea{bottom:203.560000pt;}
.y41{bottom:211.840000pt;}
.yc0{bottom:215.066667pt;}
.y98{bottom:217.786667pt;}
.y34{bottom:220.026667pt;}
.y7a{bottom:221.466667pt;}
.ydc{bottom:223.226667pt;}
.yc3{bottom:223.240000pt;}
.y40{bottom:224.360000pt;}
.yb9{bottom:232.826667pt;}
.y3f{bottom:236.840000pt;}
.y97{bottom:237.466667pt;}
.y33{bottom:239.866667pt;}
.y79{bottom:241.146667pt;}
.yc2{bottom:242.920000pt;}
.y3e{bottom:249.480000pt;}
.yb8{bottom:252.506667pt;}
.y96{bottom:257.306667pt;}
.y32{bottom:259.546667pt;}
.y78{bottom:260.986667pt;}
.y3d{bottom:261.960000pt;}
.yc1{bottom:262.760000pt;}
.y3c{bottom:274.760000pt;}
.y95{bottom:276.986667pt;}
.y31{bottom:279.386667pt;}
.y77{bottom:280.666667pt;}
.yce{bottom:282.600000pt;}
.yb7{bottom:292.186667pt;}
.y94{bottom:296.826667pt;}
.y30{bottom:299.106667pt;}
.ydb{bottom:299.266667pt;}
.y76{bottom:300.546667pt;}
.y93{bottom:316.706667pt;}
.y2f{bottom:318.946667pt;}
.y75{bottom:320.226667pt;}
.yb6{bottom:331.746667pt;}
.y92{bottom:336.386667pt;}
.y2e{bottom:338.786667pt;}
.y74{bottom:340.066667pt;}
.y91{bottom:356.226667pt;}
.y2d{bottom:358.466667pt;}
.y73{bottom:359.906667pt;}
.yb5{bottom:371.266667pt;}
.y90{bottom:375.906667pt;}
.y2c{bottom:378.306667pt;}
.y72{bottom:379.586667pt;}
.y8f{bottom:395.746667pt;}
.y2b{bottom:397.986667pt;}
.yda{bottom:398.146667pt;}
.y71{bottom:399.426667pt;}
.yb4{bottom:410.786667pt;}
.y8e{bottom:415.586667pt;}
.y2a{bottom:417.826667pt;}
.y70{bottom:419.106667pt;}
.y8d{bottom:435.266667pt;}
.y29{bottom:437.666667pt;}
.y6f{bottom:438.946667pt;}
.yb3{bottom:452.386667pt;}
.y8c{bottom:455.106667pt;}
.y28{bottom:457.346667pt;}
.y6e{bottom:458.786667pt;}
.y8b{bottom:474.786667pt;}
.y27{bottom:476.386667pt;}
.yd9{bottom:477.186667pt;}
.yb2{bottom:477.826667pt;}
.y6d{bottom:478.466667pt;}
.y26{bottom:492.066667pt;}
.y8a{bottom:494.626667pt;}
.yd8{bottom:496.866667pt;}
.yb1{bottom:497.666667pt;}
.y6c{bottom:498.306667pt;}
.y25{bottom:507.746667pt;}
.y89{bottom:514.306667pt;}
.yd7{bottom:516.706667pt;}
.yb0{bottom:517.346667pt;}
.y6b{bottom:517.986667pt;}
.y24{bottom:523.426667pt;}
.y88{bottom:534.146667pt;}
.yd6{bottom:536.573333pt;}
.yaf{bottom:537.213333pt;}
.y6a{bottom:537.853333pt;}
.y23{bottom:538.973333pt;}
.y87{bottom:548.573333pt;}
.ycd{bottom:551.293333pt;}
.y22{bottom:554.653333pt;}
.ye8{bottom:556.253333pt;}
.yae{bottom:556.893333pt;}
.y69{bottom:557.693333pt;}
.y3b{bottom:560.733333pt;}
.y86{bottom:568.733333pt;}
.y21{bottom:570.333333pt;}
.ye7{bottom:576.093333pt;}
.yad{bottom:576.733333pt;}
.y68{bottom:577.373333pt;}
.y20{bottom:586.013333pt;}
.y85{bottom:588.733333pt;}
.ye6{bottom:595.773333pt;}
.yac{bottom:596.573333pt;}
.y67{bottom:597.213333pt;}
.y1f{bottom:601.533333pt;}
.y83{bottom:608.893333pt;}
.ye5{bottom:615.613333pt;}
.yab{bottom:616.253333pt;}
.y66{bottom:616.893333pt;}
.y1e{bottom:617.213333pt;}
.y82{bottom:629.053333pt;}
.y1d{bottom:632.893333pt;}
.ye4{bottom:635.453333pt;}
.yaa{bottom:636.093333pt;}
.y65{bottom:636.733333pt;}
.y1c{bottom:648.413333pt;}
.y80{bottom:650.813333pt;}
.ye3{bottom:655.133333pt;}
.ya9{bottom:655.773333pt;}
.y64{bottom:656.413333pt;}
.y1b{bottom:664.093333pt;}
.ye2{bottom:674.973333pt;}
.ya8{bottom:675.613333pt;}
.y63{bottom:676.253333pt;}
.y1a{bottom:679.773333pt;}
.ye1{bottom:694.653333pt;}
.y19{bottom:695.293333pt;}
.y62{bottom:696.093333pt;}
.ya6{bottom:709.373333pt;}
.y18{bottom:710.973333pt;}
.ye0{bottom:714.493333pt;}
.y61{bottom:715.773333pt;}
.y17{bottom:726.653333pt;}
.ydf{bottom:734.173333pt;}
.yef{bottom:734.813333pt;}
.y60{bottom:735.613333pt;}
.y16{bottom:742.173333pt;}
.ya4{bottom:749.053333pt;}
.yde{bottom:754.013333pt;}
.y5f{bottom:755.293333pt;}
.y15{bottom:757.853333pt;}
.y14{bottom:773.533333pt;}
.ydd{bottom:773.893333pt;}
.y5e{bottom:775.173333pt;}
.ya3{bottom:788.613333pt;}
.y13{bottom:789.253333pt;}
.y5d{bottom:795.013333pt;}
.y12{bottom:804.773333pt;}
.y5c{bottom:814.693333pt;}
.y11{bottom:820.453333pt;}
.ya2{bottom:828.133333pt;}
.y5b{bottom:834.533333pt;}
.y10{bottom:836.133333pt;}
.yf{bottom:851.653333pt;}
.y5a{bottom:854.213333pt;}
.ye{bottom:867.013333pt;}
.ya0{bottom:867.653333pt;}
.y59{bottom:874.053333pt;}
.yd{bottom:884.933333pt;}
.y58{bottom:893.733333pt;}
.yc{bottom:898.853333pt;}
.y9f{bottom:907.813333pt;}
.y57{bottom:913.573333pt;}
.yb{bottom:915.973333pt;}
.ya{bottom:932.453333pt;}
.y56{bottom:933.413333pt;}
.y9{bottom:946.373333pt;}
.y55{bottom:953.093333pt;}
.y8{bottom:966.693333pt;}
.y54{bottom:972.933333pt;}
.y6{bottom:986.693333pt;}
.ybe{bottom:987.013333pt;}
.y53{bottom:992.613333pt;}
.y5{bottom:1007.333333pt;}
.y52{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y50{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y4f{bottom:1064.480000pt;}
.hd{height:19.680000pt;}
.he{height:19.840000pt;}
.hb{height:27.093750pt;}
.h8{height:31.428750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.hf{height:39.520000pt;}
.h10{height:39.552000pt;}
.h11{height:39.680000pt;}
.h2{height:40.640625pt;}
.h5{height:44.687500pt;}
.h9{height:44.975625pt;}
.h7{height:49.852500pt;}
.hc{height:52.284375pt;}
.h6{height:58.522500pt;}
.h14{height:237.306667pt;}
.h12{height:276.826667pt;}
.ha{height:286.106667pt;}
.h13{height:296.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:49.440000pt;}
.w4{width:49.600000pt;}
.wd{width:94.400000pt;}
.wb{width:103.680000pt;}
.wc{width:134.426667pt;}
.w9{width:135.546667pt;}
.wa{width:150.906667pt;}
.we{width:151.226667pt;}
.wf{width:160.346667pt;}
.w3{width:184.986667pt;}
.w6{width:195.066667pt;}
.w8{width:343.106667pt;}
.w5{width:343.266667pt;}
.w12{width:471.773333pt;}
.w10{width:528.573333pt;}
.w11{width:584.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x21{left:8.960000pt;}
.x30{left:11.520000pt;}
.x2d{left:13.600000pt;}
.x27{left:15.200000pt;}
.x3a{left:16.320000pt;}
.x23{left:18.560000pt;}
.x13{left:20.640000pt;}
.x37{left:21.760000pt;}
.x20{left:23.200000pt;}
.x1e{left:24.640000pt;}
.x26{left:25.920000pt;}
.x22{left:28.800000pt;}
.x25{left:31.040000pt;}
.x29{left:32.320000pt;}
.x33{left:35.040000pt;}
.x1c{left:36.000000pt;}
.x2c{left:38.400000pt;}
.x28{left:40.480000pt;}
.x2a{left:41.760000pt;}
.x2b{left:42.880000pt;}
.x1a{left:44.000000pt;}
.x38{left:45.600000pt;}
.x12{left:46.720000pt;}
.x24{left:49.480000pt;}
.x35{left:52.320000pt;}
.x39{left:54.266667pt;}
.x2e{left:56.520000pt;}
.x36{left:61.466667pt;}
.x34{left:63.386667pt;}
.x15{left:85.280000pt;}
.x1{left:96.031988pt;}
.x2{left:98.271988pt;}
.xa{left:100.992000pt;}
.x5{left:107.391988pt;}
.x7{left:115.871988pt;}
.xb{left:119.994667pt;}
.x3b{left:124.832000pt;}
.x14{left:130.120000pt;}
.xd{left:133.786655pt;}
.x10{left:144.520000pt;}
.xf{left:145.626667pt;}
.x3e{left:147.400000pt;}
.x16{left:153.640000pt;}
.x17{left:155.400000pt;}
.x18{left:210.266655pt;}
.x8{left:239.546655pt;}
.x3d{left:253.154667pt;}
.x3{left:260.226655pt;}
.x19{left:265.506655pt;}
.x3c{left:271.874667pt;}
.x2f{left:280.066667pt;}
.x1b{left:281.186667pt;}
.x9{left:299.106655pt;}
.x6{left:327.266655pt;}
.x31{left:374.466667pt;}
.x4{left:397.026655pt;}
.x1d{left:432.093333pt;}
.xc{left:478.333322pt;}
.x11{left:488.893333pt;}
.x32{left:525.693333pt;}
.x1f{left:535.773333pt;}
}




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