
    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_d1724346e60d882653824fff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_322b75d3cd85e07566bb0f41.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_05bc103d87c09cbc88f29ce9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_9b62b332b923c6f07e2bc320.woff')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_c787a6e7f591201ba8a7827d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ca13d84614e1b0a978bc8b8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c3d5e7c7048bd54a9425bbaa.woff')format("woff");}.ff7{font-family:ff7;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);}
.va{vertical-align:-299.100000px;}
.v9{vertical-align:-270.840000px;}
.v8{vertical-align:-207.960000px;}
.v7{vertical-align:-166.320000px;}
.v6{vertical-align:-80.520000px;}
.v5{vertical-align:-69.840000px;}
.v4{vertical-align:-67.080000px;}
.vb{vertical-align:-31.260000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-14.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.vc{vertical-align:78.480000px;}
.lsb{letter-spacing:-1.584000px;}
.ls8{letter-spacing:-1.296000px;}
.ls4{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:2.160000px;}
.lsa{letter-spacing:17.424000px;}
.ls9{letter-spacing:53.424000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.704000px;}
.wsa{word-spacing:-16.596000px;}
.ws8{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.416000px;}
.ws0{word-spacing:-14.506440px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:25.500000px;}
.wse{word-spacing:26.040000px;}
.wsb{word-spacing:31.998720px;}
.ws6{word-spacing:95.232000px;}
.ws4{word-spacing:95.292000px;}
.ws5{word-spacing:95.352000px;}
.ws3{word-spacing:95.412000px;}
.wsc{word-spacing:178.380000px;}
.ws7{word-spacing:277.380000px;}
.ws9{word-spacing:277.437600px;}
._21{margin-left:-4.622880px;}
._9{margin-left:-3.608640px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.336160px;}
._4{width:3.360960px;}
._5{width:4.492800px;}
._e{width:5.606880px;}
._7{width:6.716160px;}
._a{width:7.948800px;}
._8{width:9.178560px;}
._6{width:10.238400px;}
._f{width:12.219360px;}
._10{width:13.698240px;}
._15{width:15.565440px;}
._11{width:16.677600px;}
._14{width:19.833600px;}
._20{width:20.897280px;}
._13{width:22.699680px;}
._16{width:24.266880px;}
._12{width:25.655040px;}
._d{width:27.057600px;}
._c{width:28.074240px;}
._b{width:29.136960px;}
._23{width:31.196160px;}
._22{width:33.243360px;}
._27{width:34.755360px;}
._1b{width:41.719680px;}
._2c{width:43.090560px;}
._2b{width:45.054720px;}
._26{width:72.282240px;}
._19{width:74.318400px;}
._18{width:76.429440px;}
._29{width:77.509920px;}
._28{width:79.231200px;}
._25{width:81.828480px;}
._1d{width:89.449920px;}
._2a{width:90.826560px;}
._1f{width:96.647040px;}
._24{width:102.240000px;}
._1c{width:169.767360px;}
._1e{width:190.869120px;}
._1a{width:228.668640px;}
._17{width:302.207040px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:72.144000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:6.120000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.yee{bottom:12.525000px;}
.yf4{bottom:12.750000px;}
.yeb{bottom:13.110000px;}
.y92{bottom:15.840000px;}
.y95{bottom:16.200000px;}
.yd3{bottom:16.455000px;}
.y8c{bottom:25.920000px;}
.y90{bottom:35.640000px;}
.y8b{bottom:45.720000px;}
.yd2{bottom:49.140000px;}
.ye1{bottom:50.580000px;}
.y8f{bottom:55.800000px;}
.y8{bottom:57.240000px;}
.y8a{bottom:65.520000px;}
.yc5{bottom:68.865000px;}
.y5{bottom:73.476000px;}
.yec{bottom:74.445000px;}
.y91{bottom:75.600000px;}
.ye6{bottom:76.650000px;}
.ybd{bottom:84.705000px;}
.y8d{bottom:85.320000px;}
.y7f{bottom:98.175000px;}
.ycc{bottom:99.825000px;}
.yc6{bottom:104.970000px;}
.yb7{bottom:105.876000px;}
.y60{bottom:107.676000px;}
.ydf{bottom:109.476000px;}
.ye2{bottom:109.515000px;}
.y7b{bottom:114.516000px;}
.y33{bottom:115.596000px;}
.ya3{bottom:116.316000px;}
.yef{bottom:123.015000px;}
.yb6{bottom:129.636000px;}
.ycd{bottom:130.785000px;}
.y80{bottom:131.685000px;}
.y5f{bottom:131.796000px;}
.yc3{bottom:132.450000px;}
.yde{bottom:133.596000px;}
.ye7{bottom:135.570000px;}
.y7a{bottom:138.276000px;}
.y32{bottom:139.716000px;}
.ya2{bottom:140.076000px;}
.yc7{bottom:141.120000px;}
.yba{bottom:142.920000px;}
.yb5{bottom:153.390000px;}
.yf6{bottom:154.830000px;}
.yf9{bottom:155.190000px;}
.y5e{bottom:155.550000px;}
.ydd{bottom:157.350000px;}
.yce{bottom:161.745000px;}
.y79{bottom:162.030000px;}
.y31{bottom:163.470000px;}
.ya1{bottom:164.190000px;}
.y81{bottom:165.210000px;}
.ye3{bottom:168.405000px;}
.yb9{bottom:171.570000px;}
.yb4{bottom:177.150000px;}
.yc8{bottom:177.225000px;}
.yf8{bottom:178.950000px;}
.y5d{bottom:179.310000px;}
.ydc{bottom:181.110000px;}
.yf0{bottom:181.950000px;}
.yf5{bottom:183.600000px;}
.ybf{bottom:185.550000px;}
.y78{bottom:185.790000px;}
.y30{bottom:187.230000px;}
.ya0{bottom:187.950000px;}
.ycf{bottom:192.705000px;}
.ye8{bottom:194.475000px;}
.ybb{bottom:198.510000px;}
.y82{bottom:198.750000px;}
.yb3{bottom:201.315000px;}
.y5c{bottom:203.115000px;}
.ydb{bottom:204.915000px;}
.yc1{bottom:207.900000px;}
.y77{bottom:209.595000px;}
.y2f{bottom:211.035000px;}
.y9f{bottom:211.755000px;}
.yc4{bottom:212.910000px;}
.yc9{bottom:213.330000px;}
.yd0{bottom:223.665000px;}
.yb2{bottom:225.075000px;}
.y5b{bottom:226.875000px;}
.ye4{bottom:227.340000px;}
.y9e{bottom:228.675000px;}
.y83{bottom:232.275000px;}
.y76{bottom:233.355000px;}
.y2e{bottom:234.795000px;}
.ybc{bottom:238.140000px;}
.yf1{bottom:240.840000px;}
.yb1{bottom:248.835000px;}
.y9d{bottom:249.195000px;}
.yca{bottom:249.480000px;}
.y5a{bottom:250.635000px;}
.ybe{bottom:252.435000px;}
.ye9{bottom:253.410000px;}
.yd1{bottom:254.625000px;}
.y75{bottom:257.115000px;}
.y2d{bottom:258.555000px;}
.yc0{bottom:262.335000px;}
.y84{bottom:265.785000px;}
.yc2{bottom:266.730000px;}
.yb0{bottom:272.595000px;}
.y59{bottom:274.395000px;}
.y7e{bottom:275.040000px;}
.yda{bottom:276.195000px;}
.y74{bottom:280.875000px;}
.y2c{bottom:282.315000px;}
.ycb{bottom:285.585000px;}
.ye5{bottom:286.230000px;}
.y9c{bottom:289.515000px;}
.yaf{bottom:296.355000px;}
.y58{bottom:298.155000px;}
.y85{bottom:299.310000px;}
.yd9{bottom:299.955000px;}
.y7d{bottom:304.050000px;}
.y73{bottom:304.635000px;}
.y2b{bottom:306.075000px;}
.yf2{bottom:310.110000px;}
.yea{bottom:312.300000px;}
.yae{bottom:320.145000px;}
.y57{bottom:321.945000px;}
.yd8{bottom:324.105000px;}
.y72{bottom:328.785000px;}
.y2a{bottom:330.225000px;}
.yad{bottom:343.905000px;}
.y56{bottom:346.065000px;}
.yd7{bottom:347.865000px;}
.y71{bottom:352.545000px;}
.y29{bottom:353.985000px;}
.yac{bottom:367.665000px;}
.y55{bottom:369.825000px;}
.y9b{bottom:370.545000px;}
.yd6{bottom:371.625000px;}
.y70{bottom:376.305000px;}
.y28{bottom:377.745000px;}
.y9a{bottom:391.065000px;}
.yab{bottom:391.785000px;}
.y54{bottom:393.585000px;}
.yd5{bottom:395.025000px;}
.y6f{bottom:400.065000px;}
.y27{bottom:401.505000px;}
.y99{bottom:411.585000px;}
.yd4{bottom:414.825000px;}
.ye0{bottom:415.080000px;}
.yaa{bottom:415.545000px;}
.y53{bottom:417.345000px;}
.y6e{bottom:423.825000px;}
.y26{bottom:425.265000px;}
.ya9{bottom:439.305000px;}
.y52{bottom:441.105000px;}
.y6d{bottom:447.630000px;}
.y25{bottom:449.070000px;}
.y98{bottom:452.310000px;}
.yed{bottom:456.480000px;}
.ya8{bottom:463.110000px;}
.y51{bottom:464.910000px;}
.y6c{bottom:471.390000px;}
.y24{bottom:472.830000px;}
.ya7{bottom:486.870000px;}
.y50{bottom:488.670000px;}
.y97{bottom:493.350000px;}
.y6b{bottom:495.150000px;}
.y23{bottom:496.590000px;}
.ya6{bottom:510.630000px;}
.y4f{bottom:512.430000px;}
.y96{bottom:513.870000px;}
.y6a{bottom:519.270000px;}
.y22{bottom:520.350000px;}
.y94{bottom:534.390000px;}
.y4e{bottom:536.550000px;}
.y69{bottom:543.030000px;}
.y21{bottom:544.470000px;}
.ya5{bottom:557.790000px;}
.y4d{bottom:560.310000px;}
.y68{bottom:566.790000px;}
.y20{bottom:568.230000px;}
.y93{bottom:575.100000px;}
.ya4{bottom:577.620000px;}
.yb8{bottom:577.800000px;}
.y4c{bottom:584.100000px;}
.y67{bottom:590.580000px;}
.y1f{bottom:591.660000px;}
.y89{bottom:595.620000px;}
.y4b{bottom:607.860000px;}
.y66{bottom:614.340000px;}
.y1e{bottom:615.420000px;}
.y4a{bottom:631.620000px;}
.y65{bottom:638.100000px;}
.y1d{bottom:639.540000px;}
.y49{bottom:655.380000px;}
.y64{bottom:661.860000px;}
.y1c{bottom:663.300000px;}
.y48{bottom:679.140000px;}
.y63{bottom:685.620000px;}
.y1b{bottom:687.060000px;}
.yf3{bottom:691.920000px;}
.y88{bottom:702.570000px;}
.y47{bottom:702.930000px;}
.y62{bottom:709.050000px;}
.y1a{bottom:710.850000px;}
.y46{bottom:727.050000px;}
.y61{bottom:728.850000px;}
.y7c{bottom:729.360000px;}
.y19{bottom:734.970000px;}
.y45{bottom:750.810000px;}
.y18{bottom:758.730000px;}
.y44{bottom:774.210000px;}
.y87{bottom:774.570000px;}
.y17{bottom:782.490000px;}
.y43{bottom:798.330000px;}
.y16{bottom:805.890000px;}
.y42{bottom:822.090000px;}
.y15{bottom:829.695000px;}
.y41{bottom:845.895000px;}
.y14{bottom:853.815000px;}
.y40{bottom:869.295000px;}
.y86{bottom:869.655000px;}
.y13{bottom:877.575000px;}
.y3f{bottom:893.415000px;}
.y12{bottom:901.335000px;}
.y3e{bottom:917.175000px;}
.y11{bottom:925.455000px;}
.y3d{bottom:941.295000px;}
.y10{bottom:949.215000px;}
.y3c{bottom:965.085000px;}
.yf{bottom:973.005000px;}
.y3b{bottom:988.845000px;}
.ye{bottom:996.405000px;}
.y3a{bottom:1012.605000px;}
.yd{bottom:1022.685000px;}
.yf7{bottom:1036.005000px;}
.y39{bottom:1036.365000px;}
.yc{bottom:1054.005000px;}
.y38{bottom:1060.125000px;}
.y37{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y36{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y35{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y34{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h11{height:19.800000px;}
.h5{height:27.000000px;}
.h13{height:39.600000px;}
.h12{height:39.636000px;}
.h7{height:50.229844px;}
.h4{height:55.147500px;}
.h18{height:58.380469px;}
.h1a{height:59.040000px;}
.h10{height:59.357813px;}
.h1b{height:59.400000px;}
.hb{height:63.457031px;}
.h15{height:65.010937px;}
.h16{height:65.152266px;}
.h3{height:66.757500px;}
.hc{height:70.628906px;}
.h6{height:70.664062px;}
.he{height:70.805391px;}
.h2{height:72.562500px;}
.h1c{height:74.004654px;}
.ha{height:75.251250px;}
.h9{height:94.689844px;}
.h8{height:97.233750px;}
.hf{height:99.000000px;}
.h17{height:143.632266px;}
.h14{height:308.160000px;}
.hd{height:323.280000px;}
.h19{height:352.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:43.560000px;}
.wf{width:50.400000px;}
.wb{width:51.876000px;}
.we{width:87.876000px;}
.wd{width:90.720000px;}
.wa{width:90.756000px;}
.w4{width:104.076000px;}
.w7{width:135.036000px;}
.w9{width:138.636000px;}
.w6{width:143.352000px;}
.w8{width:144.072000px;}
.w3{width:298.905000px;}
.w10{width:650.160000px;}
.w5{width:659.160000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1e{left:7.560000px;}
.x1c{left:9.756000px;}
.x1b{left:18.936000px;}
.x37{left:34.305000px;}
.x8{left:43.590000px;}
.x42{left:47.085000px;}
.x45{left:55.335000px;}
.x1a{left:57.240000px;}
.x38{left:69.810000px;}
.x2b{left:71.310000px;}
.x32{left:91.335000px;}
.x5{left:95.796000px;}
.x10{left:102.275987px;}
.xa{left:103.355987px;}
.xc{left:116.315987px;}
.x43{left:118.830000px;}
.x2a{left:121.320000px;}
.x14{left:124.235987px;}
.x29{left:125.675987px;}
.x19{left:127.115987px;}
.x12{left:128.555987px;}
.x44{left:131.190000px;}
.x17{left:148.751987px;}
.x3a{left:165.674987px;}
.x1d{left:168.194987px;}
.xb{left:178.274987px;}
.x23{left:187.995000px;}
.x3{left:196.274987px;}
.x33{left:197.925000px;}
.x39{left:220.065000px;}
.x1f{left:240.585000px;}
.x11{left:250.664987px;}
.x41{left:266.610000px;}
.xf{left:268.664987px;}
.x3f{left:280.950000px;}
.x2c{left:284.475000px;}
.x6{left:290.634000px;}
.x16{left:296.024987px;}
.x3d{left:303.660000px;}
.x34{left:308.445000px;}
.x15{left:317.264987px;}
.x2f{left:328.830000px;}
.x24{left:332.070000px;}
.x2{left:333.509987px;}
.xd{left:337.109987px;}
.x4{left:342.869987px;}
.x40{left:368.430000px;}
.x20{left:376.350000px;}
.x3e{left:386.895000px;}
.x2d{left:391.065000px;}
.x3c{left:392.370000px;}
.x7{left:394.710000px;}
.x13{left:402.989987px;}
.x30{left:435.420000px;}
.xe{left:446.579987px;}
.x25{left:467.820000px;}
.x9{left:498.780000px;}
.x2e{left:509.910000px;}
.x35{left:517.650000px;}
.x21{left:521.130000px;}
.x3b{left:522.870000px;}
.x31{left:554.220000px;}
.x36{left:603.570000px;}
.x46{left:608.610000px;}
.x26{left:611.895000px;}
.x22{left:656.895000px;}
.x27{left:745.125000px;}
.x28{left:771.764987px;}
.x18{left:776.444987px;}
.x1{left:797.684987px;}
@media print{
.va{vertical-align:-265.866667pt;}
.v9{vertical-align:-240.746667pt;}
.v8{vertical-align:-184.853333pt;}
.v7{vertical-align:-147.840000pt;}
.v6{vertical-align:-71.573333pt;}
.v5{vertical-align:-62.080000pt;}
.v4{vertical-align:-59.626667pt;}
.vb{vertical-align:-27.786667pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-13.173333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.vc{vertical-align:69.760000pt;}
.lsb{letter-spacing:-1.408000pt;}
.ls8{letter-spacing:-1.152000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.920000pt;}
.lsa{letter-spacing:15.488000pt;}
.ls9{letter-spacing:47.488000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.848000pt;}
.wsa{word-spacing:-14.752000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.592000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:22.666667pt;}
.wse{word-spacing:23.146667pt;}
.wsb{word-spacing:28.443307pt;}
.ws6{word-spacing:84.650667pt;}
.ws4{word-spacing:84.704000pt;}
.ws5{word-spacing:84.757333pt;}
.ws3{word-spacing:84.810667pt;}
.wsc{word-spacing:158.560000pt;}
.ws7{word-spacing:246.560000pt;}
.ws9{word-spacing:246.611200pt;}
._21{margin-left:-4.109227pt;}
._9{margin-left:-3.207680pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.076587pt;}
._4{width:2.987520pt;}
._5{width:3.993600pt;}
._e{width:4.983893pt;}
._7{width:5.969920pt;}
._a{width:7.065600pt;}
._8{width:8.158720pt;}
._6{width:9.100800pt;}
._f{width:10.861653pt;}
._10{width:12.176213pt;}
._15{width:13.835947pt;}
._11{width:14.824533pt;}
._14{width:17.629867pt;}
._20{width:18.575360pt;}
._13{width:20.177493pt;}
._16{width:21.570560pt;}
._12{width:22.804480pt;}
._d{width:24.051200pt;}
._c{width:24.954880pt;}
._b{width:25.899520pt;}
._23{width:27.729920pt;}
._22{width:29.549653pt;}
._27{width:30.893653pt;}
._1b{width:37.084160pt;}
._2c{width:38.302720pt;}
._2b{width:40.048640pt;}
._26{width:64.250880pt;}
._19{width:66.060800pt;}
._18{width:67.937280pt;}
._29{width:68.897707pt;}
._28{width:70.427733pt;}
._25{width:72.736427pt;}
._1d{width:79.511040pt;}
._2a{width:80.734720pt;}
._1f{width:85.908480pt;}
._24{width:90.880000pt;}
._1c{width:150.904320pt;}
._1e{width:169.661440pt;}
._1a{width:203.261013pt;}
._17{width:268.628480pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:64.128000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:5.440000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.yee{bottom:11.133333pt;}
.yf4{bottom:11.333333pt;}
.yeb{bottom:11.653333pt;}
.y92{bottom:14.080000pt;}
.y95{bottom:14.400000pt;}
.yd3{bottom:14.626667pt;}
.y8c{bottom:23.040000pt;}
.y90{bottom:31.680000pt;}
.y8b{bottom:40.640000pt;}
.yd2{bottom:43.680000pt;}
.ye1{bottom:44.960000pt;}
.y8f{bottom:49.600000pt;}
.y8{bottom:50.880000pt;}
.y8a{bottom:58.240000pt;}
.yc5{bottom:61.213333pt;}
.y5{bottom:65.312000pt;}
.yec{bottom:66.173333pt;}
.y91{bottom:67.200000pt;}
.ye6{bottom:68.133333pt;}
.ybd{bottom:75.293333pt;}
.y8d{bottom:75.840000pt;}
.y7f{bottom:87.266667pt;}
.ycc{bottom:88.733333pt;}
.yc6{bottom:93.306667pt;}
.yb7{bottom:94.112000pt;}
.y60{bottom:95.712000pt;}
.ydf{bottom:97.312000pt;}
.ye2{bottom:97.346667pt;}
.y7b{bottom:101.792000pt;}
.y33{bottom:102.752000pt;}
.ya3{bottom:103.392000pt;}
.yef{bottom:109.346667pt;}
.yb6{bottom:115.232000pt;}
.ycd{bottom:116.253333pt;}
.y80{bottom:117.053333pt;}
.y5f{bottom:117.152000pt;}
.yc3{bottom:117.733333pt;}
.yde{bottom:118.752000pt;}
.ye7{bottom:120.506667pt;}
.y7a{bottom:122.912000pt;}
.y32{bottom:124.192000pt;}
.ya2{bottom:124.512000pt;}
.yc7{bottom:125.440000pt;}
.yba{bottom:127.040000pt;}
.yb5{bottom:136.346667pt;}
.yf6{bottom:137.626667pt;}
.yf9{bottom:137.946667pt;}
.y5e{bottom:138.266667pt;}
.ydd{bottom:139.866667pt;}
.yce{bottom:143.773333pt;}
.y79{bottom:144.026667pt;}
.y31{bottom:145.306667pt;}
.ya1{bottom:145.946667pt;}
.y81{bottom:146.853333pt;}
.ye3{bottom:149.693333pt;}
.yb9{bottom:152.506667pt;}
.yb4{bottom:157.466667pt;}
.yc8{bottom:157.533333pt;}
.yf8{bottom:159.066667pt;}
.y5d{bottom:159.386667pt;}
.ydc{bottom:160.986667pt;}
.yf0{bottom:161.733333pt;}
.yf5{bottom:163.200000pt;}
.ybf{bottom:164.933333pt;}
.y78{bottom:165.146667pt;}
.y30{bottom:166.426667pt;}
.ya0{bottom:167.066667pt;}
.ycf{bottom:171.293333pt;}
.ye8{bottom:172.866667pt;}
.ybb{bottom:176.453333pt;}
.y82{bottom:176.666667pt;}
.yb3{bottom:178.946667pt;}
.y5c{bottom:180.546667pt;}
.ydb{bottom:182.146667pt;}
.yc1{bottom:184.800000pt;}
.y77{bottom:186.306667pt;}
.y2f{bottom:187.586667pt;}
.y9f{bottom:188.226667pt;}
.yc4{bottom:189.253333pt;}
.yc9{bottom:189.626667pt;}
.yd0{bottom:198.813333pt;}
.yb2{bottom:200.066667pt;}
.y5b{bottom:201.666667pt;}
.ye4{bottom:202.080000pt;}
.y9e{bottom:203.266667pt;}
.y83{bottom:206.466667pt;}
.y76{bottom:207.426667pt;}
.y2e{bottom:208.706667pt;}
.ybc{bottom:211.680000pt;}
.yf1{bottom:214.080000pt;}
.yb1{bottom:221.186667pt;}
.y9d{bottom:221.506667pt;}
.yca{bottom:221.760000pt;}
.y5a{bottom:222.786667pt;}
.ybe{bottom:224.386667pt;}
.ye9{bottom:225.253333pt;}
.yd1{bottom:226.333333pt;}
.y75{bottom:228.546667pt;}
.y2d{bottom:229.826667pt;}
.yc0{bottom:233.186667pt;}
.y84{bottom:236.253333pt;}
.yc2{bottom:237.093333pt;}
.yb0{bottom:242.306667pt;}
.y59{bottom:243.906667pt;}
.y7e{bottom:244.480000pt;}
.yda{bottom:245.506667pt;}
.y74{bottom:249.666667pt;}
.y2c{bottom:250.946667pt;}
.ycb{bottom:253.853333pt;}
.ye5{bottom:254.426667pt;}
.y9c{bottom:257.346667pt;}
.yaf{bottom:263.426667pt;}
.y58{bottom:265.026667pt;}
.y85{bottom:266.053333pt;}
.yd9{bottom:266.626667pt;}
.y7d{bottom:270.266667pt;}
.y73{bottom:270.786667pt;}
.y2b{bottom:272.066667pt;}
.yf2{bottom:275.653333pt;}
.yea{bottom:277.600000pt;}
.yae{bottom:284.573333pt;}
.y57{bottom:286.173333pt;}
.yd8{bottom:288.093333pt;}
.y72{bottom:292.253333pt;}
.y2a{bottom:293.533333pt;}
.yad{bottom:305.693333pt;}
.y56{bottom:307.613333pt;}
.yd7{bottom:309.213333pt;}
.y71{bottom:313.373333pt;}
.y29{bottom:314.653333pt;}
.yac{bottom:326.813333pt;}
.y55{bottom:328.733333pt;}
.y9b{bottom:329.373333pt;}
.yd6{bottom:330.333333pt;}
.y70{bottom:334.493333pt;}
.y28{bottom:335.773333pt;}
.y9a{bottom:347.613333pt;}
.yab{bottom:348.253333pt;}
.y54{bottom:349.853333pt;}
.yd5{bottom:351.133333pt;}
.y6f{bottom:355.613333pt;}
.y27{bottom:356.893333pt;}
.y99{bottom:365.853333pt;}
.yd4{bottom:368.733333pt;}
.ye0{bottom:368.960000pt;}
.yaa{bottom:369.373333pt;}
.y53{bottom:370.973333pt;}
.y6e{bottom:376.733333pt;}
.y26{bottom:378.013333pt;}
.ya9{bottom:390.493333pt;}
.y52{bottom:392.093333pt;}
.y6d{bottom:397.893333pt;}
.y25{bottom:399.173333pt;}
.y98{bottom:402.053333pt;}
.yed{bottom:405.760000pt;}
.ya8{bottom:411.653333pt;}
.y51{bottom:413.253333pt;}
.y6c{bottom:419.013333pt;}
.y24{bottom:420.293333pt;}
.ya7{bottom:432.773333pt;}
.y50{bottom:434.373333pt;}
.y97{bottom:438.533333pt;}
.y6b{bottom:440.133333pt;}
.y23{bottom:441.413333pt;}
.ya6{bottom:453.893333pt;}
.y4f{bottom:455.493333pt;}
.y96{bottom:456.773333pt;}
.y6a{bottom:461.573333pt;}
.y22{bottom:462.533333pt;}
.y94{bottom:475.013333pt;}
.y4e{bottom:476.933333pt;}
.y69{bottom:482.693333pt;}
.y21{bottom:483.973333pt;}
.ya5{bottom:495.813333pt;}
.y4d{bottom:498.053333pt;}
.y68{bottom:503.813333pt;}
.y20{bottom:505.093333pt;}
.y93{bottom:511.200000pt;}
.ya4{bottom:513.440000pt;}
.yb8{bottom:513.600000pt;}
.y4c{bottom:519.200000pt;}
.y67{bottom:524.960000pt;}
.y1f{bottom:525.920000pt;}
.y89{bottom:529.440000pt;}
.y4b{bottom:540.320000pt;}
.y66{bottom:546.080000pt;}
.y1e{bottom:547.040000pt;}
.y4a{bottom:561.440000pt;}
.y65{bottom:567.200000pt;}
.y1d{bottom:568.480000pt;}
.y49{bottom:582.560000pt;}
.y64{bottom:588.320000pt;}
.y1c{bottom:589.600000pt;}
.y48{bottom:603.680000pt;}
.y63{bottom:609.440000pt;}
.y1b{bottom:610.720000pt;}
.yf3{bottom:615.040000pt;}
.y88{bottom:624.506667pt;}
.y47{bottom:624.826667pt;}
.y62{bottom:630.266667pt;}
.y1a{bottom:631.866667pt;}
.y46{bottom:646.266667pt;}
.y61{bottom:647.866667pt;}
.y7c{bottom:648.320000pt;}
.y19{bottom:653.306667pt;}
.y45{bottom:667.386667pt;}
.y18{bottom:674.426667pt;}
.y44{bottom:688.186667pt;}
.y87{bottom:688.506667pt;}
.y17{bottom:695.546667pt;}
.y43{bottom:709.626667pt;}
.y16{bottom:716.346667pt;}
.y42{bottom:730.746667pt;}
.y15{bottom:737.506667pt;}
.y41{bottom:751.906667pt;}
.y14{bottom:758.946667pt;}
.y40{bottom:772.706667pt;}
.y86{bottom:773.026667pt;}
.y13{bottom:780.066667pt;}
.y3f{bottom:794.146667pt;}
.y12{bottom:801.186667pt;}
.y3e{bottom:815.266667pt;}
.y11{bottom:822.626667pt;}
.y3d{bottom:836.706667pt;}
.y10{bottom:843.746667pt;}
.y3c{bottom:857.853333pt;}
.yf{bottom:864.893333pt;}
.y3b{bottom:878.973333pt;}
.ye{bottom:885.693333pt;}
.y3a{bottom:900.093333pt;}
.yd{bottom:909.053333pt;}
.yf7{bottom:920.893333pt;}
.y39{bottom:921.213333pt;}
.yc{bottom:936.893333pt;}
.y38{bottom:942.333333pt;}
.y37{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y36{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y35{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y34{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h11{height:17.600000pt;}
.h5{height:24.000000pt;}
.h13{height:35.200000pt;}
.h12{height:35.232000pt;}
.h7{height:44.648750pt;}
.h4{height:49.020000pt;}
.h18{height:51.893750pt;}
.h1a{height:52.480000pt;}
.h10{height:52.762500pt;}
.h1b{height:52.800000pt;}
.hb{height:56.406250pt;}
.h15{height:57.787500pt;}
.h16{height:57.913125pt;}
.h3{height:59.340000pt;}
.hc{height:62.781250pt;}
.h6{height:62.812500pt;}
.he{height:62.938125pt;}
.h2{height:64.500000pt;}
.h1c{height:65.781915pt;}
.ha{height:66.890000pt;}
.h9{height:84.168750pt;}
.h8{height:86.430000pt;}
.hf{height:88.000000pt;}
.h17{height:127.673125pt;}
.h14{height:273.920000pt;}
.hd{height:287.360000pt;}
.h19{height:312.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:38.720000pt;}
.wf{width:44.800000pt;}
.wb{width:46.112000pt;}
.we{width:78.112000pt;}
.wd{width:80.640000pt;}
.wa{width:80.672000pt;}
.w4{width:92.512000pt;}
.w7{width:120.032000pt;}
.w9{width:123.232000pt;}
.w6{width:127.424000pt;}
.w8{width:128.064000pt;}
.w3{width:265.693333pt;}
.w10{width:577.920000pt;}
.w5{width:585.920000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.720000pt;}
.x1c{left:8.672000pt;}
.x1b{left:16.832000pt;}
.x37{left:30.493333pt;}
.x8{left:38.746667pt;}
.x42{left:41.853333pt;}
.x45{left:49.186667pt;}
.x1a{left:50.880000pt;}
.x38{left:62.053333pt;}
.x2b{left:63.386667pt;}
.x32{left:81.186667pt;}
.x5{left:85.152000pt;}
.x10{left:90.911988pt;}
.xa{left:91.871988pt;}
.xc{left:103.391988pt;}
.x43{left:105.626667pt;}
.x2a{left:107.840000pt;}
.x14{left:110.431988pt;}
.x29{left:111.711988pt;}
.x19{left:112.991988pt;}
.x12{left:114.271988pt;}
.x44{left:116.613333pt;}
.x17{left:132.223988pt;}
.x3a{left:147.266655pt;}
.x1d{left:149.506655pt;}
.xb{left:158.466655pt;}
.x23{left:167.106667pt;}
.x3{left:174.466655pt;}
.x33{left:175.933333pt;}
.x39{left:195.613333pt;}
.x1f{left:213.853333pt;}
.x11{left:222.813322pt;}
.x41{left:236.986667pt;}
.xf{left:238.813322pt;}
.x3f{left:249.733333pt;}
.x2c{left:252.866667pt;}
.x6{left:258.341333pt;}
.x16{left:263.133322pt;}
.x3d{left:269.920000pt;}
.x34{left:274.173333pt;}
.x15{left:282.013322pt;}
.x2f{left:292.293333pt;}
.x24{left:295.173333pt;}
.x2{left:296.453322pt;}
.xd{left:299.653322pt;}
.x4{left:304.773322pt;}
.x40{left:327.493333pt;}
.x20{left:334.533333pt;}
.x3e{left:343.906667pt;}
.x2d{left:347.613333pt;}
.x3c{left:348.773333pt;}
.x7{left:350.853333pt;}
.x13{left:358.213322pt;}
.x30{left:387.040000pt;}
.xe{left:396.959988pt;}
.x25{left:415.840000pt;}
.x9{left:443.360000pt;}
.x2e{left:453.253333pt;}
.x35{left:460.133333pt;}
.x21{left:463.226667pt;}
.x3b{left:464.773333pt;}
.x31{left:492.640000pt;}
.x36{left:536.506667pt;}
.x46{left:540.986667pt;}
.x26{left:543.906667pt;}
.x22{left:583.906667pt;}
.x27{left:662.333333pt;}
.x28{left:686.013322pt;}
.x18{left:690.173322pt;}
.x1{left:709.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  