
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_3a4c90ae03f80d432ae4b26b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0167fff53a5c78ad12b4d648.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b57c08344f42514b980ae181.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_51365446cad6929027deb26e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_314c8c0f3e9eba653969c408.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_7e195a5aa4d559bdcf38ffb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_0223a38911c8d8e660f0a6bf.woff2')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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v6{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:26.640000px;}
.v7{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.ls12{letter-spacing:-0.954000px;}
.ls19{letter-spacing:-0.399000px;}
.ls14{letter-spacing:-0.391800px;}
.ls1b{letter-spacing:-0.375000px;}
.ls11{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.070800px;}
.ls13{letter-spacing:-0.031680px;}
.ls1a{letter-spacing:-0.014760px;}
.lsa{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lse{letter-spacing:0.051120px;}
.ls3{letter-spacing:0.065520px;}
.ls5{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.116400px;}
.ls1d{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.173400px;}
.ls20{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.185520px;}
.ls16{letter-spacing:0.213600px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:1.872000px;}
.ls21{letter-spacing:47.726640px;}
.ls18{letter-spacing:51.192000px;}
.ls1f{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsf{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.369800px;}
.ws11{word-spacing:-13.342800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.194720px;}
.ws5{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.wse{word-spacing:-12.851400px;}
.wsc{word-spacing:-12.827400px;}
.ws8{word-spacing:-12.272400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsb{word-spacing:-9.266400px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._c{margin-left:-4.088400px;}
._3{margin-left:-2.464800px;}
._0{margin-left:-1.110000px;}
._2{width:1.006728px;}
._5{width:2.044200px;}
._6{width:3.125928px;}
._e{width:4.358760px;}
._b{width:5.427120px;}
._8{width:6.700198px;}
._7{width:7.755600px;}
._d{width:8.782802px;}
._11{width:9.843594px;}
._4{width:11.603400px;}
._12{width:15.210360px;}
._13{width:16.292520px;}
._10{width:17.449080px;}
._f{width:18.863520px;}
._14{width:20.386800px;}
._9{width:21.523200px;}
._a{width:22.527119px;}
._1{width:33.048636px;}
._15{width:34.062648px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y76{bottom:7.830000px;}
.yba{bottom:7.860000px;}
.y72{bottom:7.920000px;}
.ya3{bottom:9.360000px;}
.y95{bottom:10.440000px;}
.yb5{bottom:10.530000px;}
.y74{bottom:21.510000px;}
.y78{bottom:21.600000px;}
.ya1{bottom:26.550000px;}
.ya0{bottom:26.640000px;}
.ya2{bottom:28.080000px;}
.y94{bottom:32.580000px;}
.y99{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y9e{bottom:114.060000px;}
.y59{bottom:117.750000px;}
.y9d{bottom:131.700000px;}
.y58{bottom:135.300000px;}
.yd1{bottom:137.190000px;}
.y27{bottom:146.190000px;}
.y7e{bottom:158.880000px;}
.y26{bottom:163.920000px;}
.y9c{bottom:169.590000px;}
.yb3{bottom:170.310000px;}
.yd0{bottom:172.740000px;}
.y57{bottom:173.820000px;}
.y7d{bottom:176.610000px;}
.y25{bottom:181.470000px;}
.y98{bottom:181.830000px;}
.yb2{bottom:187.950000px;}
.ycf{bottom:190.380000px;}
.y56{bottom:191.460000px;}
.y7c{bottom:194.160000px;}
.y24{bottom:199.110000px;}
.yb1{bottom:205.500000px;}
.y55{bottom:209.100000px;}
.y9b{bottom:209.190000px;}
.y23{bottom:216.660000px;}
.yce{bottom:217.290000px;}
.yb0{bottom:223.140000px;}
.y54{bottom:226.650000px;}
.y7b{bottom:230.160000px;}
.y22{bottom:234.210000px;}
.y9a{bottom:236.460000px;}
.yaf{bottom:240.690000px;}
.y53{bottom:244.200000px;}
.y21{bottom:251.850000px;}
.ycd{bottom:254.640000px;}
.y7a{bottom:257.520000px;}
.yae{bottom:258.330000px;}
.y52{bottom:261.750000px;}
.y97{bottom:263.820000px;}
.y20{bottom:269.400000px;}
.yad{bottom:275.880000px;}
.y77{bottom:284.790000px;}
.y1f{bottom:287.040000px;}
.y93{bottom:291.180000px;}
.y51{bottom:300.360000px;}
.ycc{bottom:302.880000px;}
.y79{bottom:312.150000px;}
.yac{bottom:314.490000px;}
.y50{bottom:318.000000px;}
.y96{bottom:318.450000px;}
.ycb{bottom:320.430000px;}
.y1e{bottom:325.470000px;}
.yab{bottom:332.040000px;}
.y4f{bottom:335.550000px;}
.yca{bottom:338.070000px;}
.yf6{bottom:339.420000px;}
.y73{bottom:339.510000px;}
.y1d{bottom:343.200000px;}
.y4e{bottom:353.190000px;}
.yc9{bottom:355.620000px;}
.yaa{bottom:358.590000px;}
.y1c{bottom:360.750000px;}
.yf5{bottom:365.970000px;}
.y75{bottom:366.780000px;}
.y92{bottom:367.230000px;}
.y4d{bottom:370.740000px;}
.yc8{bottom:373.170000px;}
.y1b{bottom:378.300000px;}
.yf4{bottom:383.610000px;}
.y4c{bottom:388.290000px;}
.yc7{bottom:390.810000px;}
.y91{bottom:393.780000px;}
.y71{bottom:394.140000px;}
.ya9{bottom:394.230000px;}
.yf3{bottom:401.160000px;}
.y4b{bottom:405.930000px;}
.yc6{bottom:408.360000px;}
.ya8{bottom:411.780000px;}
.y1a{bottom:417.270000px;}
.yf2{bottom:427.710000px;}
.ya7{bottom:429.420000px;}
.y90{bottom:432.300000px;}
.y4a{bottom:432.480000px;}
.yc5{bottom:435.270000px;}
.y70{bottom:442.830000px;}
.yf1{bottom:445.350000px;}
.ya6{bottom:446.970000px;}
.y8f{bottom:449.940000px;}
.yf0{bottom:462.900000px;}
.y19{bottom:465.870000px;}
.y8e{bottom:467.490000px;}
.y49{bottom:471.030000px;}
.y6f{bottom:478.500000px;}
.ya5{bottom:481.830000px;}
.y8d{bottom:485.160000px;}
.yc4{bottom:486.510000px;}
.y48{bottom:488.670000px;}
.yef{bottom:489.480000px;}
.y6e{bottom:496.050000px;}
.y8c{bottom:502.710000px;}
.y18{bottom:502.890000px;}
.yc3{bottom:504.150000px;}
.y47{bottom:506.310000px;}
.yee{bottom:507.120000px;}
.y6d{bottom:513.690000px;}
.ya4{bottom:514.680000px;}
.y8b{bottom:520.350000px;}
.y17{bottom:520.440000px;}
.yc2{bottom:521.700000px;}
.y46{bottom:523.860000px;}
.y6c{bottom:531.240000px;}
.yed{bottom:533.670000px;}
.y8a{bottom:537.900000px;}
.y16{bottom:538.080000px;}
.yec{bottom:551.310000px;}
.y89{bottom:555.450000px;}
.y15{bottom:555.630000px;}
.y6b{bottom:557.790000px;}
.yc1{bottom:559.590000px;}
.y45{bottom:562.470000px;}
.y88{bottom:573.000000px;}
.y14{bottom:573.270000px;}
.yeb{bottom:577.860000px;}
.y44{bottom:580.020000px;}
.y13{bottom:590.820000px;}
.yc0{bottom:592.440000px;}
.y6a{bottom:593.700000px;}
.yea{bottom:595.410000px;}
.y43{bottom:597.660000px;}
.y12{bottom:608.370000px;}
.y87{bottom:611.700000px;}
.y42{bottom:615.210000px;}
.ybf{bottom:615.660000px;}
.ye9{bottom:622.050000px;}
.y11{bottom:626.010000px;}
.y86{bottom:629.250000px;}
.y41{bottom:632.760000px;}
.ye8{bottom:639.600000px;}
.y10{bottom:643.560000px;}
.y69{bottom:644.910000px;}
.y40{bottom:650.400000px;}
.y85{bottom:652.470000px;}
.ye7{bottom:657.240000px;}
.yf{bottom:661.200000px;}
.y68{bottom:662.550000px;}
.y3f{bottom:667.950000px;}
.ye{bottom:678.750000px;}
.ye6{bottom:683.790000px;}
.y3e{bottom:685.590000px;}
.yd{bottom:696.300000px;}
.y67{bottom:701.070000px;}
.ye5{bottom:701.340000px;}
.y3d{bottom:703.140000px;}
.y66{bottom:718.710000px;}
.yc{bottom:723.210000px;}
.ye4{bottom:727.980000px;}
.y3c{bottom:729.690000px;}
.y65{bottom:735.180000px;}
.y64{bottom:742.740000px;}
.ye3{bottom:745.530000px;}
.y63{bottom:764.160000px;}
.y3b{bottom:765.600000px;}
.yb{bottom:771.540000px;}
.ye2{bottom:772.170000px;}
.y62{bottom:781.710000px;}
.ye1{bottom:789.720000px;}
.ybe{bottom:799.260000px;}
.y61{bottom:799.350000px;}
.ya{bottom:807.360000px;}
.ye0{bottom:816.270000px;}
.y3a{bottom:816.810000px;}
.y60{bottom:816.900000px;}
.ydf{bottom:833.910000px;}
.y39{bottom:834.450000px;}
.ybd{bottom:834.540000px;}
.y9{bottom:843.360000px;}
.yde{bottom:851.460000px;}
.y38{bottom:852.090000px;}
.y37{bottom:869.640000px;}
.ydd{bottom:878.100000px;}
.y8{bottom:883.140000px;}
.y36{bottom:887.280000px;}
.ydc{bottom:895.650000px;}
.y7{bottom:901.140000px;}
.y35{bottom:904.830000px;}
.y5f{bottom:908.160000px;}
.ydb{bottom:913.200000px;}
.y84{bottom:916.800000px;}
.y6{bottom:919.140000px;}
.y9f{bottom:925.710000px;}
.y5e{bottom:925.800000px;}
.y83{bottom:934.440000px;}
.yda{bottom:939.840000px;}
.ybc{bottom:942.720000px;}
.y34{bottom:943.350000px;}
.y5d{bottom:943.440000px;}
.y5{bottom:951.450000px;}
.y82{bottom:951.990000px;}
.yb8{bottom:954.870000px;}
.yd9{bottom:957.390000px;}
.y33{bottom:960.990000px;}
.yd8{bottom:975.030000px;}
.y32{bottom:978.630000px;}
.ybb{bottom:982.230000px;}
.y4{bottom:989.700000px;}
.y31{bottom:996.180000px;}
.yd7{bottom:1001.580000px;}
.yb9{bottom:1009.590000px;}
.y30{bottom:1013.760000px;}
.y3{bottom:1014.390000px;}
.y81{bottom:1017.090000px;}
.yd6{bottom:1019.160000px;}
.y2f{bottom:1031.400000px;}
.y80{bottom:1034.820000px;}
.yd5{bottom:1036.800000px;}
.yb7{bottom:1036.890000px;}
.y2e{bottom:1048.950000px;}
.y5c{bottom:1052.280000px;}
.y7f{bottom:1052.370000px;}
.yd4{bottom:1063.710000px;}
.yb4{bottom:1064.250000px;}
.y5b{bottom:1069.920000px;}
.y2d{bottom:1087.470000px;}
.y5a{bottom:1087.560000px;}
.yb6{bottom:1091.610000px;}
.y2c{bottom:1105.110000px;}
.yd3{bottom:1111.950000px;}
.y2b{bottom:1122.750000px;}
.yd2{bottom:1138.860000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h10{height:26.550000px;}
.h15{height:26.580000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h12{height:41.661211px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.hf{height:53.910000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h17{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.hb{height:70.777617px;}
.h4{height:72.985430px;}
.h11{height:81.270000px;}
.h14{height:81.300000px;}
.hc{height:82.551445px;}
.h16{height:159.300000px;}
.h13{height:254.610000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:37.740000px;}
.w7{width:59.310000px;}
.wb{width:71.550000px;}
.wc{width:78.060000px;}
.w14{width:78.120000px;}
.wd{width:79.200000px;}
.w8{width:81.270000px;}
.w15{width:81.720000px;}
.w13{width:100.650000px;}
.w11{width:112.770000px;}
.w9{width:113.940000px;}
.w4{width:128.790000px;}
.w17{width:128.820000px;}
.w18{width:129.600000px;}
.w16{width:133.200000px;}
.w5{width:168.930000px;}
.w10{width:198.450000px;}
.wf{width:206.670000px;}
.w6{width:209.010000px;}
.we{width:223.230000px;}
.wa{width:230.430000px;}
.w12{width:261.930000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.650000px;}
.x21{left:10.080000px;}
.x1e{left:12.630000px;}
.xd{left:14.670000px;}
.x22{left:17.550000px;}
.x11{left:19.800000px;}
.x31{left:23.130000px;}
.xf{left:28.170000px;}
.x10{left:29.370000px;}
.x2e{left:31.140000px;}
.x1c{left:32.580000px;}
.xe{left:34.560000px;}
.x15{left:38.100000px;}
.x13{left:40.080000px;}
.x9{left:41.310000px;}
.x12{left:44.670000px;}
.x20{left:48.600000px;}
.x14{left:52.020000px;}
.xb{left:62.040000px;}
.x1{left:68.040000px;}
.x29{left:76.860000px;}
.x26{left:83.550000px;}
.x17{left:90.989987px;}
.x39{left:111.239987px;}
.x35{left:120.690000px;}
.x33{left:125.100000px;}
.x24{left:132.480000px;}
.x38{left:142.199987px;}
.x5{left:143.280000px;}
.x2c{left:156.149987px;}
.x4{left:176.249987px;}
.x7{left:181.740000px;}
.x2b{left:190.260000px;}
.x28{left:198.570000px;}
.x2d{left:201.540000px;}
.x25{left:215.130000px;}
.x2{left:231.149987px;}
.x19{left:233.040000px;}
.x37{left:241.679987px;}
.x32{left:250.860000px;}
.x18{left:303.959987px;}
.x8{left:311.250000px;}
.x1a{left:315.030000px;}
.x23{left:322.499987px;}
.x27{left:355.710000px;}
.x34{left:384.060000px;}
.x1b{left:429.780000px;}
.xa{left:480.900000px;}
.x1d{left:502.140000px;}
.x36{left:512.880000px;}
.x2f{left:531.150000px;}
.x2a{left:562.380000px;}
.x1f{left:581.010000px;}
.x30{left:609.990000px;}
.x16{left:685.139987px;}
.xc{left:690.630000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v6{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:23.680000pt;}
.v7{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.ls12{letter-spacing:-0.848000pt;}
.ls19{letter-spacing:-0.354667pt;}
.ls14{letter-spacing:-0.348267pt;}
.ls1b{letter-spacing:-0.333333pt;}
.ls11{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.062933pt;}
.ls13{letter-spacing:-0.028160pt;}
.ls1a{letter-spacing:-0.013120pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.045440pt;}
.ls3{letter-spacing:0.058240pt;}
.ls5{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.103467pt;}
.ls1d{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.154133pt;}
.ls20{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.164907pt;}
.ls16{letter-spacing:0.189867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:1.664000pt;}
.ls21{letter-spacing:42.423680pt;}
.ls18{letter-spacing:45.504000pt;}
.ls1f{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsf{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.884267pt;}
.ws11{word-spacing:-11.860267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.728640pt;}
.ws5{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.423467pt;}
.wsc{word-spacing:-11.402133pt;}
.ws8{word-spacing:-10.908800pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsb{word-spacing:-8.236800pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._c{margin-left:-3.634134pt;}
._3{margin-left:-2.190933pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894869pt;}
._5{width:1.817067pt;}
._6{width:2.778603pt;}
._e{width:3.874453pt;}
._b{width:4.824106pt;}
._8{width:5.955732pt;}
._7{width:6.893867pt;}
._d{width:7.806935pt;}
._11{width:8.749862pt;}
._4{width:10.314134pt;}
._12{width:13.520320pt;}
._13{width:14.482240pt;}
._10{width:15.510293pt;}
._f{width:16.767574pt;}
._14{width:18.121600pt;}
._9{width:19.131734pt;}
._a{width:20.024105pt;}
._1{width:29.376565pt;}
._15{width:30.277909pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:6.960000pt;}
.yba{bottom:6.986667pt;}
.y72{bottom:7.040000pt;}
.ya3{bottom:8.320000pt;}
.y95{bottom:9.280000pt;}
.yb5{bottom:9.360000pt;}
.y74{bottom:19.120000pt;}
.y78{bottom:19.200000pt;}
.ya1{bottom:23.600000pt;}
.ya0{bottom:23.680000pt;}
.ya2{bottom:24.960000pt;}
.y94{bottom:28.960000pt;}
.y99{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y9e{bottom:101.386667pt;}
.y59{bottom:104.666667pt;}
.y9d{bottom:117.066667pt;}
.y58{bottom:120.266667pt;}
.yd1{bottom:121.946667pt;}
.y27{bottom:129.946667pt;}
.y7e{bottom:141.226667pt;}
.y26{bottom:145.706667pt;}
.y9c{bottom:150.746667pt;}
.yb3{bottom:151.386667pt;}
.yd0{bottom:153.546667pt;}
.y57{bottom:154.506667pt;}
.y7d{bottom:156.986667pt;}
.y25{bottom:161.306667pt;}
.y98{bottom:161.626667pt;}
.yb2{bottom:167.066667pt;}
.ycf{bottom:169.226667pt;}
.y56{bottom:170.186667pt;}
.y7c{bottom:172.586667pt;}
.y24{bottom:176.986667pt;}
.yb1{bottom:182.666667pt;}
.y55{bottom:185.866667pt;}
.y9b{bottom:185.946667pt;}
.y23{bottom:192.586667pt;}
.yce{bottom:193.146667pt;}
.yb0{bottom:198.346667pt;}
.y54{bottom:201.466667pt;}
.y7b{bottom:204.586667pt;}
.y22{bottom:208.186667pt;}
.y9a{bottom:210.186667pt;}
.yaf{bottom:213.946667pt;}
.y53{bottom:217.066667pt;}
.y21{bottom:223.866667pt;}
.ycd{bottom:226.346667pt;}
.y7a{bottom:228.906667pt;}
.yae{bottom:229.626667pt;}
.y52{bottom:232.666667pt;}
.y97{bottom:234.506667pt;}
.y20{bottom:239.466667pt;}
.yad{bottom:245.226667pt;}
.y77{bottom:253.146667pt;}
.y1f{bottom:255.146667pt;}
.y93{bottom:258.826667pt;}
.y51{bottom:266.986667pt;}
.ycc{bottom:269.226667pt;}
.y79{bottom:277.466667pt;}
.yac{bottom:279.546667pt;}
.y50{bottom:282.666667pt;}
.y96{bottom:283.066667pt;}
.ycb{bottom:284.826667pt;}
.y1e{bottom:289.306667pt;}
.yab{bottom:295.146667pt;}
.y4f{bottom:298.266667pt;}
.yca{bottom:300.506667pt;}
.yf6{bottom:301.706667pt;}
.y73{bottom:301.786667pt;}
.y1d{bottom:305.066667pt;}
.y4e{bottom:313.946667pt;}
.yc9{bottom:316.106667pt;}
.yaa{bottom:318.746667pt;}
.y1c{bottom:320.666667pt;}
.yf5{bottom:325.306667pt;}
.y75{bottom:326.026667pt;}
.y92{bottom:326.426667pt;}
.y4d{bottom:329.546667pt;}
.yc8{bottom:331.706667pt;}
.y1b{bottom:336.266667pt;}
.yf4{bottom:340.986667pt;}
.y4c{bottom:345.146667pt;}
.yc7{bottom:347.386667pt;}
.y91{bottom:350.026667pt;}
.y71{bottom:350.346667pt;}
.ya9{bottom:350.426667pt;}
.yf3{bottom:356.586667pt;}
.y4b{bottom:360.826667pt;}
.yc6{bottom:362.986667pt;}
.ya8{bottom:366.026667pt;}
.y1a{bottom:370.906667pt;}
.yf2{bottom:380.186667pt;}
.ya7{bottom:381.706667pt;}
.y90{bottom:384.266667pt;}
.y4a{bottom:384.426667pt;}
.yc5{bottom:386.906667pt;}
.y70{bottom:393.626667pt;}
.yf1{bottom:395.866667pt;}
.ya6{bottom:397.306667pt;}
.y8f{bottom:399.946667pt;}
.yf0{bottom:411.466667pt;}
.y19{bottom:414.106667pt;}
.y8e{bottom:415.546667pt;}
.y49{bottom:418.693333pt;}
.y6f{bottom:425.333333pt;}
.ya5{bottom:428.293333pt;}
.y8d{bottom:431.253333pt;}
.yc4{bottom:432.453333pt;}
.y48{bottom:434.373333pt;}
.yef{bottom:435.093333pt;}
.y6e{bottom:440.933333pt;}
.y8c{bottom:446.853333pt;}
.y18{bottom:447.013333pt;}
.yc3{bottom:448.133333pt;}
.y47{bottom:450.053333pt;}
.yee{bottom:450.773333pt;}
.y6d{bottom:456.613333pt;}
.ya4{bottom:457.493333pt;}
.y8b{bottom:462.533333pt;}
.y17{bottom:462.613333pt;}
.yc2{bottom:463.733333pt;}
.y46{bottom:465.653333pt;}
.y6c{bottom:472.213333pt;}
.yed{bottom:474.373333pt;}
.y8a{bottom:478.133333pt;}
.y16{bottom:478.293333pt;}
.yec{bottom:490.053333pt;}
.y89{bottom:493.733333pt;}
.y15{bottom:493.893333pt;}
.y6b{bottom:495.813333pt;}
.yc1{bottom:497.413333pt;}
.y45{bottom:499.973333pt;}
.y88{bottom:509.333333pt;}
.y14{bottom:509.573333pt;}
.yeb{bottom:513.653333pt;}
.y44{bottom:515.573333pt;}
.y13{bottom:525.173333pt;}
.yc0{bottom:526.613333pt;}
.y6a{bottom:527.733333pt;}
.yea{bottom:529.253333pt;}
.y43{bottom:531.253333pt;}
.y12{bottom:540.773333pt;}
.y87{bottom:543.733333pt;}
.y42{bottom:546.853333pt;}
.ybf{bottom:547.253333pt;}
.ye9{bottom:552.933333pt;}
.y11{bottom:556.453333pt;}
.y86{bottom:559.333333pt;}
.y41{bottom:562.453333pt;}
.ye8{bottom:568.533333pt;}
.y10{bottom:572.053333pt;}
.y69{bottom:573.253333pt;}
.y40{bottom:578.133333pt;}
.y85{bottom:579.973333pt;}
.ye7{bottom:584.213333pt;}
.yf{bottom:587.733333pt;}
.y68{bottom:588.933333pt;}
.y3f{bottom:593.733333pt;}
.ye{bottom:603.333333pt;}
.ye6{bottom:607.813333pt;}
.y3e{bottom:609.413333pt;}
.yd{bottom:618.933333pt;}
.y67{bottom:623.173333pt;}
.ye5{bottom:623.413333pt;}
.y3d{bottom:625.013333pt;}
.y66{bottom:638.853333pt;}
.yc{bottom:642.853333pt;}
.ye4{bottom:647.093333pt;}
.y3c{bottom:648.613333pt;}
.y65{bottom:653.493333pt;}
.y64{bottom:660.213333pt;}
.ye3{bottom:662.693333pt;}
.y63{bottom:679.253333pt;}
.y3b{bottom:680.533333pt;}
.yb{bottom:685.813333pt;}
.ye2{bottom:686.373333pt;}
.y62{bottom:694.853333pt;}
.ye1{bottom:701.973333pt;}
.ybe{bottom:710.453333pt;}
.y61{bottom:710.533333pt;}
.ya{bottom:717.653333pt;}
.ye0{bottom:725.573333pt;}
.y3a{bottom:726.053333pt;}
.y60{bottom:726.133333pt;}
.ydf{bottom:741.253333pt;}
.y39{bottom:741.733333pt;}
.ybd{bottom:741.813333pt;}
.y9{bottom:749.653333pt;}
.yde{bottom:756.853333pt;}
.y38{bottom:757.413333pt;}
.y37{bottom:773.013333pt;}
.ydd{bottom:780.533333pt;}
.y8{bottom:785.013333pt;}
.y36{bottom:788.693333pt;}
.ydc{bottom:796.133333pt;}
.y7{bottom:801.013333pt;}
.y35{bottom:804.293333pt;}
.y5f{bottom:807.253333pt;}
.ydb{bottom:811.733333pt;}
.y84{bottom:814.933333pt;}
.y6{bottom:817.013333pt;}
.y9f{bottom:822.853333pt;}
.y5e{bottom:822.933333pt;}
.y83{bottom:830.613333pt;}
.yda{bottom:835.413333pt;}
.ybc{bottom:837.973333pt;}
.y34{bottom:838.533333pt;}
.y5d{bottom:838.613333pt;}
.y5{bottom:845.733333pt;}
.y82{bottom:846.213333pt;}
.yb8{bottom:848.773333pt;}
.yd9{bottom:851.013333pt;}
.y33{bottom:854.213333pt;}
.yd8{bottom:866.693333pt;}
.y32{bottom:869.893333pt;}
.ybb{bottom:873.093333pt;}
.y4{bottom:879.733333pt;}
.y31{bottom:885.493333pt;}
.yd7{bottom:890.293333pt;}
.yb9{bottom:897.413333pt;}
.y30{bottom:901.120000pt;}
.y3{bottom:901.680000pt;}
.y81{bottom:904.080000pt;}
.yd6{bottom:905.920000pt;}
.y2f{bottom:916.800000pt;}
.y80{bottom:919.840000pt;}
.yd5{bottom:921.600000pt;}
.yb7{bottom:921.680000pt;}
.y2e{bottom:932.400000pt;}
.y5c{bottom:935.360000pt;}
.y7f{bottom:935.440000pt;}
.yd4{bottom:945.520000pt;}
.yb4{bottom:946.000000pt;}
.y5b{bottom:951.040000pt;}
.y2d{bottom:966.640000pt;}
.y5a{bottom:966.720000pt;}
.yb6{bottom:970.320000pt;}
.y2c{bottom:982.320000pt;}
.yd3{bottom:988.400000pt;}
.y2b{bottom:998.000000pt;}
.yd2{bottom:1012.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h10{height:23.600000pt;}
.h15{height:23.626667pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h12{height:37.032187pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.hf{height:47.920000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h17{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.hb{height:62.913438pt;}
.h4{height:64.875937pt;}
.h11{height:72.240000pt;}
.h14{height:72.266667pt;}
.hc{height:73.379062pt;}
.h16{height:141.600000pt;}
.h13{height:226.320000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:33.546667pt;}
.w7{width:52.720000pt;}
.wb{width:63.600000pt;}
.wc{width:69.386667pt;}
.w14{width:69.440000pt;}
.wd{width:70.400000pt;}
.w8{width:72.240000pt;}
.w15{width:72.640000pt;}
.w13{width:89.466667pt;}
.w11{width:100.240000pt;}
.w9{width:101.280000pt;}
.w4{width:114.480000pt;}
.w17{width:114.506667pt;}
.w18{width:115.200000pt;}
.w16{width:118.400000pt;}
.w5{width:150.160000pt;}
.w10{width:176.400000pt;}
.wf{width:183.706667pt;}
.w6{width:185.786667pt;}
.we{width:198.426667pt;}
.wa{width:204.826667pt;}
.w12{width:232.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.800000pt;}
.x21{left:8.960000pt;}
.x1e{left:11.226667pt;}
.xd{left:13.040000pt;}
.x22{left:15.600000pt;}
.x11{left:17.600000pt;}
.x31{left:20.560000pt;}
.xf{left:25.040000pt;}
.x10{left:26.106667pt;}
.x2e{left:27.680000pt;}
.x1c{left:28.960000pt;}
.xe{left:30.720000pt;}
.x15{left:33.866667pt;}
.x13{left:35.626667pt;}
.x9{left:36.720000pt;}
.x12{left:39.706667pt;}
.x20{left:43.200000pt;}
.x14{left:46.240000pt;}
.xb{left:55.146667pt;}
.x1{left:60.480000pt;}
.x29{left:68.320000pt;}
.x26{left:74.266667pt;}
.x17{left:80.879988pt;}
.x39{left:98.879988pt;}
.x35{left:107.280000pt;}
.x33{left:111.200000pt;}
.x24{left:117.760000pt;}
.x38{left:126.399988pt;}
.x5{left:127.360000pt;}
.x2c{left:138.799988pt;}
.x4{left:156.666655pt;}
.x7{left:161.546667pt;}
.x2b{left:169.120000pt;}
.x28{left:176.506667pt;}
.x2d{left:179.146667pt;}
.x25{left:191.226667pt;}
.x2{left:205.466655pt;}
.x19{left:207.146667pt;}
.x37{left:214.826655pt;}
.x32{left:222.986667pt;}
.x18{left:270.186655pt;}
.x8{left:276.666667pt;}
.x1a{left:280.026667pt;}
.x23{left:286.666655pt;}
.x27{left:316.186667pt;}
.x34{left:341.386667pt;}
.x1b{left:382.026667pt;}
.xa{left:427.466667pt;}
.x1d{left:446.346667pt;}
.x36{left:455.893333pt;}
.x2f{left:472.133333pt;}
.x2a{left:499.893333pt;}
.x1f{left:516.453333pt;}
.x30{left:542.213333pt;}
.x16{left:609.013322pt;}
.xc{left:613.893333pt;}
.x3{left:711.413322pt;}
}




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