
    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_7cc2e2cd9b941d9a847a7f52.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_93fe9a44e9002ebe3cedb84a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d2f25a9cd826d39516240d07.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_838ce53e2cba06367eb044a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e5c51f78508c04c778d07052.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_87db356b2119cc8185f14830.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.728000px;}
.ls1b{letter-spacing:-1.656000px;}
.ls5{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.368000px;}
.lsf{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.106560px;}
.ls11{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.ls17{letter-spacing:4.320000px;}
.lsc{letter-spacing:5.220000px;}
.lse{letter-spacing:7.380000px;}
.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;}
}
.ws3{word-spacing:-18.792000px;}
.ws5{word-spacing:-18.504000px;}
.ws13{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.280000px;}
.wsc{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.344000px;}
.ws4{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.328000px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-4.607520px;}
._4{margin-left:-3.240000px;}
._d{margin-left:-2.232000px;}
._0{margin-left:-1.095120px;}
._1{width:1.011120px;}
._2{width:2.081280px;}
._3{width:3.357360px;}
._13{width:4.490640px;}
._e{width:5.544000px;}
._f{width:6.704880px;}
._11{width:8.568000px;}
._12{width:9.576000px;}
._b{width:10.584000px;}
._c{width:11.636880px;}
._10{width:12.744000px;}
._9{width:14.544000px;}
._a{width:15.624000px;}
._8{width:16.704000px;}
._5{width:19.800000px;}
._6{width:20.808000px;}
._18{width:22.008000px;}
._16{width:23.544000px;}
._17{width:24.924000px;}
._1c{width:26.640000px;}
._19{width:33.408000px;}
._1a{width:34.560000px;}
._1b{width:36.192000px;}
._14{width:41.256000px;}
._15{width:42.593760px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.636000px;}
.y1{bottom:78.336000px;}
.yb7{bottom:99.036000px;}
.yc7{bottom:113.436000px;}
.y4c{bottom:115.596000px;}
.yb1{bottom:116.136000px;}
.yb6{bottom:119.196000px;}
.y61{bottom:120.816000px;}
.yb5{bottom:124.416000px;}
.y20{bottom:129.456000px;}
.yc6{bottom:131.436000px;}
.y78{bottom:131.616000px;}
.y80{bottom:133.776000px;}
.y4b{bottom:135.396000px;}
.yc5{bottom:136.656000px;}
.yb4{bottom:138.636000px;}
.y53{bottom:140.616000px;}
.y98{bottom:141.696000px;}
.yb0{bottom:142.956000px;}
.yd6{bottom:147.816000px;}
.yaf{bottom:148.176000px;}
.y60{bottom:150.510000px;}
.yd5{bottom:153.030000px;}
.y4a{bottom:155.190000px;}
.y5f{bottom:155.730000px;}
.y1f{bottom:160.410000px;}
.yd4{bottom:165.990000px;}
.yc4{bottom:166.170000px;}
.y97{bottom:167.610000px;}
.y5e{bottom:168.690000px;}
.y52{bottom:170.310000px;}
.yc3{bottom:171.390000px;}
.y96{bottom:172.830000px;}
.y49{bottom:175.170000px;}
.y51{bottom:175.530000px;}
.y7f{bottom:177.510000px;}
.y48{bottom:180.390000px;}
.yae{bottom:182.730000px;}
.y77{bottom:184.170000px;}
.y50{bottom:188.490000px;}
.ya9{bottom:190.110000px;}
.y1e{bottom:191.550000px;}
.y105{bottom:193.350000px;}
.ybd{bottom:195.330000px;}
.yd3{bottom:198.390000px;}
.yc2{bottom:201.090000px;}
.y95{bottom:202.170000px;}
.y5d{bottom:205.410000px;}
.y94{bottom:207.390000px;}
.y7e{bottom:208.650000px;}
.y47{bottom:209.910000px;}
.yad{bottom:212.430000px;}
.y46{bottom:215.130000px;}
.yac{bottom:217.650000px;}
.yf7{bottom:218.910000px;}
.yd2{bottom:219.090000px;}
.y93{bottom:220.350000px;}
.yc1{bottom:220.890000px;}
.ybc{bottom:222.330000px;}
.y1d{bottom:222.510000px;}
.yc0{bottom:226.110000px;}
.ybb{bottom:227.550000px;}
.ya8{bottom:228.090000px;}
.y76{bottom:229.710000px;}
.yab{bottom:230.610000px;}
.y5c{bottom:236.370000px;}
.ybf{bottom:239.070000px;}
.y7d{bottom:239.610000px;}
.yd1{bottom:239.790000px;}
.yba{bottom:240.510000px;}
.y45{bottom:242.130000px;}
.y44{bottom:247.350000px;}
.y75{bottom:249.690000px;}
.yf6{bottom:250.050000px;}
.y1c{bottom:253.650000px;}
.y92{bottom:260.310000px;}
.yd0{bottom:260.490000px;}
.y43{bottom:261.030000px;}
.y104{bottom:265.710000px;}
.y5b{bottom:267.510000px;}
.ya7{bottom:268.770000px;}
.y74{bottom:269.490000px;}
.y7c{bottom:270.750000px;}
.y73{bottom:274.755000px;}
.yf5{bottom:281.055000px;}
.ycf{bottom:281.235000px;}
.y42{bottom:283.755000px;}
.y1b{bottom:284.655000px;}
.y103{bottom:286.455000px;}
.y41{bottom:288.975000px;}
.y90{bottom:291.495000px;}
.y91{bottom:298.335000px;}
.y5a{bottom:298.515000px;}
.ya6{bottom:299.955000px;}
.y40{bottom:301.755000px;}
.yce{bottom:301.935000px;}
.y72{bottom:304.275000px;}
.yf4{bottom:312.195000px;}
.y1a{bottom:315.795000px;}
.y102{bottom:321.915000px;}
.y8f{bottom:322.455000px;}
.ycd{bottom:322.635000px;}
.y71{bottom:324.255000px;}
.y59{bottom:329.295000px;}
.ya4{bottom:330.915000px;}
.y3f{bottom:332.895000px;}
.ya5{bottom:337.755000px;}
.yf3{bottom:343.155000px;}
.ycc{bottom:343.335000px;}
.y70{bottom:344.055000px;}
.y19{bottom:346.755000px;}
.y8e{bottom:353.595000px;}
.y101{bottom:357.735000px;}
.y58{bottom:360.615000px;}
.ya3{bottom:362.055000px;}
.y3e{bottom:363.855000px;}
.y4f{bottom:370.695000px;}
.ycb{bottom:374.295000px;}
.y18{bottom:377.895000px;}
.yf2{bottom:381.135000px;}
.y6f{bottom:383.655000px;}
.y8d{bottom:384.555000px;}
.y57{bottom:389.415000px;}
.ya2{bottom:393.015000px;}
.y100{bottom:393.375000px;}
.y3d{bottom:394.995000px;}
.yb3{bottom:401.835000px;}
.y6e{bottom:403.455000px;}
.yca{bottom:405.255000px;}
.y8b{bottom:405.435000px;}
.y17{bottom:408.855000px;}
.y8c{bottom:412.275000px;}
.y56{bottom:415.335000px;}
.y6d{bottom:423.435000px;}
.ya1{bottom:424.155000px;}
.y7b{bottom:425.595000px;}
.y3c{bottom:425.955000px;}
.y8a{bottom:426.135000px;}
.y6c{bottom:428.655000px;}
.yff{bottom:429.015000px;}
.y4e{bottom:432.795000px;}
.yf1{bottom:436.215000px;}
.y55{bottom:439.095000px;}
.y16{bottom:439.995000px;}
.y89{bottom:446.835000px;}
.yc9{bottom:453.675000px;}
.ya0{bottom:455.115000px;}
.y7a{bottom:456.555000px;}
.y3a{bottom:456.915000px;}
.y6b{bottom:458.175000px;}
.y3b{bottom:463.755000px;}
.yfe{bottom:464.835000px;}
.yf0{bottom:467.355000px;}
.y88{bottom:467.535000px;}
.y15{bottom:470.955000px;}
.y6a{bottom:477.975000px;}
.y9f{bottom:486.255000px;}
.yb9{bottom:487.695000px;}
.y39{bottom:488.055000px;}
.y87{bottom:488.235000px;}
.y69{bottom:497.775000px;}
.yef{bottom:498.315000px;}
.yfd{bottom:500.475000px;}
.y14{bottom:502.095000px;}
.y86{bottom:508.935000px;}
.y117{bottom:514.695000px;}
.y9e{bottom:517.215000px;}
.y68{bottom:517.755000px;}
.y38{bottom:519.015000px;}
.y67{bottom:522.975000px;}
.yee{bottom:529.455000px;}
.y85{bottom:529.635000px;}
.y13{bottom:533.055000px;}
.y66{bottom:535.935000px;}
.yfc{bottom:536.115000px;}
.y116{bottom:545.655000px;}
.y9c{bottom:548.355000px;}
.y37{bottom:550.155000px;}
.y84{bottom:550.335000px;}
.y9d{bottom:555.195000px;}
.yb8{bottom:557.025000px;}
.yed{bottom:560.445000px;}
.y12{bottom:564.225000px;}
.y83{bottom:571.065000px;}
.y115{bottom:576.645000px;}
.y9b{bottom:579.345000px;}
.y36{bottom:581.145000px;}
.yec{bottom:591.585000px;}
.y82{bottom:591.765000px;}
.yfb{bottom:592.665000px;}
.y11{bottom:595.185000px;}
.y9a{bottom:600.225000px;}
.y114{bottom:607.605000px;}
.y34{bottom:612.285000px;}
.y81{bottom:612.465000px;}
.yfa{bottom:613.545000px;}
.y99{bottom:616.425000px;}
.y35{bottom:619.125000px;}
.yeb{bottom:622.545000px;}
.y10{bottom:626.325000px;}
.y33{bottom:642.885000px;}
.y4d{bottom:643.245000px;}
.yf9{bottom:649.005000px;}
.y113{bottom:649.185000px;}
.y65{bottom:650.085000px;}
.yea{bottom:653.685000px;}
.y32{bottom:674.385000px;}
.yf{bottom:678.345000px;}
.y64{bottom:681.225000px;}
.ye9{bottom:684.645000px;}
.y112{bottom:690.945000px;}
.y31{bottom:705.345000px;}
.yf8{bottom:705.525000px;}
.ye{bottom:709.305000px;}
.y79{bottom:712.185000px;}
.ye8{bottom:715.785000px;}
.y111{bottom:732.525000px;}
.y30{bottom:736.485000px;}
.yd{bottom:740.445000px;}
.y63{bottom:743.325000px;}
.ye7{bottom:746.745000px;}
.y2f{bottom:767.445000px;}
.yc{bottom:771.405000px;}
.y110{bottom:774.285000px;}
.ye6{bottom:777.885000px;}
.y2e{bottom:798.585000px;}
.yb{bottom:802.545000px;}
.yaa{bottom:805.425000px;}
.ye5{bottom:808.845000px;}
.y10f{bottom:819.285000px;}
.y2d{bottom:829.545000px;}
.ya{bottom:833.505000px;}
.ye4{bottom:840.030000px;}
.y10e{bottom:843.090000px;}
.yb2{bottom:860.370000px;}
.y2c{bottom:860.730000px;}
.y9{bottom:864.690000px;}
.ye3{bottom:870.990000px;}
.y10d{bottom:878.910000px;}
.y2b{bottom:891.690000px;}
.y8{bottom:895.650000px;}
.ybe{bottom:898.530000px;}
.ye2{bottom:902.130000px;}
.y10c{bottom:914.550000px;}
.y2a{bottom:922.830000px;}
.y7{bottom:926.790000px;}
.ye1{bottom:933.090000px;}
.y10b{bottom:950.190000px;}
.y29{bottom:953.790000px;}
.ye0{bottom:964.230000px;}
.y10a{bottom:971.070000px;}
.y6{bottom:978.450000px;}
.y28{bottom:984.930000px;}
.y62{bottom:991.770000px;}
.ydf{bottom:995.190000px;}
.y26{bottom:1015.890000px;}
.yde{bottom:1016.070000px;}
.y27{bottom:1022.730000px;}
.y109{bottom:1027.410000px;}
.y5{bottom:1033.170000px;}
.ydc{bottom:1036.770000px;}
.ydd{bottom:1043.610000px;}
.y25{bottom:1047.030000px;}
.y108{bottom:1048.290000px;}
.ydb{bottom:1057.470000px;}
.y23{bottom:1077.990000px;}
.yda{bottom:1078.170000px;}
.y107{bottom:1083.750000px;}
.y24{bottom:1084.830000px;}
.y4{bottom:1087.710000px;}
.yd9{bottom:1098.870000px;}
.y22{bottom:1109.130000px;}
.y54{bottom:1115.970000px;}
.y106{bottom:1119.390000px;}
.yd8{bottom:1119.570000px;}
.y3{bottom:1139.760000px;}
.y21{bottom:1140.120000px;}
.yd7{bottom:1140.300000px;}
.yc8{bottom:1146.960000px;}
.h7{height:38.158594px;}
.he{height:40.764023px;}
.hd{height:47.321367px;}
.h6{height:47.344922px;}
.hc{height:49.992188px;}
.ha{height:58.651172px;}
.h8{height:60.226875px;}
.hf{height:64.546875px;}
.h10{height:65.010937px;}
.hb{height:70.628906px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.h9{height:82.676953px;}
.h4{height:84.898125px;}
.h5{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.416000px;}
.xc{left:111.276000px;}
.x1e{left:116.136000px;}
.x23{left:148.896000px;}
.x13{left:168.307500px;}
.x42{left:170.310000px;}
.x14{left:174.450000px;}
.x34{left:189.187500px;}
.xf{left:196.387500px;}
.x35{left:201.450000px;}
.x10{left:202.530000px;}
.x1c{left:214.027500px;}
.x28{left:224.647500px;}
.x1d{left:226.290000px;}
.x3{left:230.767500px;}
.x4{left:236.910000px;}
.x26{left:238.327500px;}
.xd{left:246.247500px;}
.x27{left:250.590000px;}
.xe{left:252.390000px;}
.xb{left:322.455000px;}
.x38{left:370.312500px;}
.x1a{left:381.112500px;}
.x39{left:382.575000px;}
.x24{left:383.812500px;}
.x1b{left:393.375000px;}
.x25{left:396.075000px;}
.x20{left:398.955000px;}
.x18{left:406.672500px;}
.x1f{left:409.372500px;}
.x19{left:418.935000px;}
.x3e{left:424.852500px;}
.x11{left:432.952500px;}
.x3f{left:437.115000px;}
.x12{left:439.095000px;}
.x3b{left:481.192500px;}
.x3c{left:493.455000px;}
.x9{left:502.282500px;}
.xa{left:508.425000px;}
.x15{left:513.645000px;}
.x2a{left:536.145000px;}
.x3d{left:548.565000px;}
.x16{left:554.662500px;}
.x17{left:560.805000px;}
.x21{left:566.182500px;}
.x5{left:576.262500px;}
.x22{left:578.445000px;}
.x6{left:582.405000px;}
.x33{left:588.345000px;}
.x3a{left:591.225000px;}
.x7{left:605.782500px;}
.x8{left:611.925000px;}
.x46{left:623.242500px;}
.x45{left:624.705000px;}
.x2f{left:634.582500px;}
.x30{left:646.845000px;}
.x36{left:650.782500px;}
.x40{left:656.182500px;}
.x37{left:663.045000px;}
.x43{left:664.462500px;}
.x41{left:668.445000px;}
.x47{left:671.842500px;}
.x2d{left:675.082500px;}
.x44{left:676.725000px;}
.x48{left:684.105000px;}
.x2e{left:687.345000px;}
.x31{left:735.787500px;}
.x32{left:748.050000px;}
.x29{left:768.750000px;}
.x2b{left:775.207500px;}
.x1{left:777.750000px;}
.x2c{left:787.470000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.536000pt;}
.ls1b{letter-spacing:-1.472000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-1.216000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.094720pt;}
.ls11{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls17{letter-spacing:3.840000pt;}
.lsc{letter-spacing:4.640000pt;}
.lse{letter-spacing:6.560000pt;}
.ws3{word-spacing:-16.704000pt;}
.ws5{word-spacing:-16.448000pt;}
.ws13{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.360000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.528000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.736000pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-4.095573pt;}
._4{margin-left:-2.880000pt;}
._d{margin-left:-1.984000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.898773pt;}
._2{width:1.850027pt;}
._3{width:2.984320pt;}
._13{width:3.991680pt;}
._e{width:4.928000pt;}
._f{width:5.959893pt;}
._11{width:7.616000pt;}
._12{width:8.512000pt;}
._b{width:9.408000pt;}
._c{width:10.343893pt;}
._10{width:11.328000pt;}
._9{width:12.928000pt;}
._a{width:13.888000pt;}
._8{width:14.848000pt;}
._5{width:17.600000pt;}
._6{width:18.496000pt;}
._18{width:19.562667pt;}
._16{width:20.928000pt;}
._17{width:22.154667pt;}
._1c{width:23.680000pt;}
._19{width:29.696000pt;}
._1a{width:30.720000pt;}
._1b{width:32.170667pt;}
._14{width:36.672000pt;}
._15{width:37.861120pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.232000pt;}
.y1{bottom:69.632000pt;}
.yb7{bottom:88.032000pt;}
.yc7{bottom:100.832000pt;}
.y4c{bottom:102.752000pt;}
.yb1{bottom:103.232000pt;}
.yb6{bottom:105.952000pt;}
.y61{bottom:107.392000pt;}
.yb5{bottom:110.592000pt;}
.y20{bottom:115.072000pt;}
.yc6{bottom:116.832000pt;}
.y78{bottom:116.992000pt;}
.y80{bottom:118.912000pt;}
.y4b{bottom:120.352000pt;}
.yc5{bottom:121.472000pt;}
.yb4{bottom:123.232000pt;}
.y53{bottom:124.992000pt;}
.y98{bottom:125.952000pt;}
.yb0{bottom:127.072000pt;}
.yd6{bottom:131.392000pt;}
.yaf{bottom:131.712000pt;}
.y60{bottom:133.786667pt;}
.yd5{bottom:136.026667pt;}
.y4a{bottom:137.946667pt;}
.y5f{bottom:138.426667pt;}
.y1f{bottom:142.586667pt;}
.yd4{bottom:147.546667pt;}
.yc4{bottom:147.706667pt;}
.y97{bottom:148.986667pt;}
.y5e{bottom:149.946667pt;}
.y52{bottom:151.386667pt;}
.yc3{bottom:152.346667pt;}
.y96{bottom:153.626667pt;}
.y49{bottom:155.706667pt;}
.y51{bottom:156.026667pt;}
.y7f{bottom:157.786667pt;}
.y48{bottom:160.346667pt;}
.yae{bottom:162.426667pt;}
.y77{bottom:163.706667pt;}
.y50{bottom:167.546667pt;}
.ya9{bottom:168.986667pt;}
.y1e{bottom:170.266667pt;}
.y105{bottom:171.866667pt;}
.ybd{bottom:173.626667pt;}
.yd3{bottom:176.346667pt;}
.yc2{bottom:178.746667pt;}
.y95{bottom:179.706667pt;}
.y5d{bottom:182.586667pt;}
.y94{bottom:184.346667pt;}
.y7e{bottom:185.466667pt;}
.y47{bottom:186.586667pt;}
.yad{bottom:188.826667pt;}
.y46{bottom:191.226667pt;}
.yac{bottom:193.466667pt;}
.yf7{bottom:194.586667pt;}
.yd2{bottom:194.746667pt;}
.y93{bottom:195.866667pt;}
.yc1{bottom:196.346667pt;}
.ybc{bottom:197.626667pt;}
.y1d{bottom:197.786667pt;}
.yc0{bottom:200.986667pt;}
.ybb{bottom:202.266667pt;}
.ya8{bottom:202.746667pt;}
.y76{bottom:204.186667pt;}
.yab{bottom:204.986667pt;}
.y5c{bottom:210.106667pt;}
.ybf{bottom:212.506667pt;}
.y7d{bottom:212.986667pt;}
.yd1{bottom:213.146667pt;}
.yba{bottom:213.786667pt;}
.y45{bottom:215.226667pt;}
.y44{bottom:219.866667pt;}
.y75{bottom:221.946667pt;}
.yf6{bottom:222.266667pt;}
.y1c{bottom:225.466667pt;}
.y92{bottom:231.386667pt;}
.yd0{bottom:231.546667pt;}
.y43{bottom:232.026667pt;}
.y104{bottom:236.186667pt;}
.y5b{bottom:237.786667pt;}
.ya7{bottom:238.906667pt;}
.y74{bottom:239.546667pt;}
.y7c{bottom:240.666667pt;}
.y73{bottom:244.226667pt;}
.yf5{bottom:249.826667pt;}
.ycf{bottom:249.986667pt;}
.y42{bottom:252.226667pt;}
.y1b{bottom:253.026667pt;}
.y103{bottom:254.626667pt;}
.y41{bottom:256.866667pt;}
.y90{bottom:259.106667pt;}
.y91{bottom:265.186667pt;}
.y5a{bottom:265.346667pt;}
.ya6{bottom:266.626667pt;}
.y40{bottom:268.226667pt;}
.yce{bottom:268.386667pt;}
.y72{bottom:270.466667pt;}
.yf4{bottom:277.506667pt;}
.y1a{bottom:280.706667pt;}
.y102{bottom:286.146667pt;}
.y8f{bottom:286.626667pt;}
.ycd{bottom:286.786667pt;}
.y71{bottom:288.226667pt;}
.y59{bottom:292.706667pt;}
.ya4{bottom:294.146667pt;}
.y3f{bottom:295.906667pt;}
.ya5{bottom:300.226667pt;}
.yf3{bottom:305.026667pt;}
.ycc{bottom:305.186667pt;}
.y70{bottom:305.826667pt;}
.y19{bottom:308.226667pt;}
.y8e{bottom:314.306667pt;}
.y101{bottom:317.986667pt;}
.y58{bottom:320.546667pt;}
.ya3{bottom:321.826667pt;}
.y3e{bottom:323.426667pt;}
.y4f{bottom:329.506667pt;}
.ycb{bottom:332.706667pt;}
.y18{bottom:335.906667pt;}
.yf2{bottom:338.786667pt;}
.y6f{bottom:341.026667pt;}
.y8d{bottom:341.826667pt;}
.y57{bottom:346.146667pt;}
.ya2{bottom:349.346667pt;}
.y100{bottom:349.666667pt;}
.y3d{bottom:351.106667pt;}
.yb3{bottom:357.186667pt;}
.y6e{bottom:358.626667pt;}
.yca{bottom:360.226667pt;}
.y8b{bottom:360.386667pt;}
.y17{bottom:363.426667pt;}
.y8c{bottom:366.466667pt;}
.y56{bottom:369.186667pt;}
.y6d{bottom:376.386667pt;}
.ya1{bottom:377.026667pt;}
.y7b{bottom:378.306667pt;}
.y3c{bottom:378.626667pt;}
.y8a{bottom:378.786667pt;}
.y6c{bottom:381.026667pt;}
.yff{bottom:381.346667pt;}
.y4e{bottom:384.706667pt;}
.yf1{bottom:387.746667pt;}
.y55{bottom:390.306667pt;}
.y16{bottom:391.106667pt;}
.y89{bottom:397.186667pt;}
.yc9{bottom:403.266667pt;}
.ya0{bottom:404.546667pt;}
.y7a{bottom:405.826667pt;}
.y3a{bottom:406.146667pt;}
.y6b{bottom:407.266667pt;}
.y3b{bottom:412.226667pt;}
.yfe{bottom:413.186667pt;}
.yf0{bottom:415.426667pt;}
.y88{bottom:415.586667pt;}
.y15{bottom:418.626667pt;}
.y6a{bottom:424.866667pt;}
.y9f{bottom:432.226667pt;}
.yb9{bottom:433.506667pt;}
.y39{bottom:433.826667pt;}
.y87{bottom:433.986667pt;}
.y69{bottom:442.466667pt;}
.yef{bottom:442.946667pt;}
.yfd{bottom:444.866667pt;}
.y14{bottom:446.306667pt;}
.y86{bottom:452.386667pt;}
.y117{bottom:457.506667pt;}
.y9e{bottom:459.746667pt;}
.y68{bottom:460.226667pt;}
.y38{bottom:461.346667pt;}
.y67{bottom:464.866667pt;}
.yee{bottom:470.626667pt;}
.y85{bottom:470.786667pt;}
.y13{bottom:473.826667pt;}
.y66{bottom:476.386667pt;}
.yfc{bottom:476.546667pt;}
.y116{bottom:485.026667pt;}
.y9c{bottom:487.426667pt;}
.y37{bottom:489.026667pt;}
.y84{bottom:489.186667pt;}
.y9d{bottom:493.506667pt;}
.yb8{bottom:495.133333pt;}
.yed{bottom:498.173333pt;}
.y12{bottom:501.533333pt;}
.y83{bottom:507.613333pt;}
.y115{bottom:512.573333pt;}
.y9b{bottom:514.973333pt;}
.y36{bottom:516.573333pt;}
.yec{bottom:525.853333pt;}
.y82{bottom:526.013333pt;}
.yfb{bottom:526.813333pt;}
.y11{bottom:529.053333pt;}
.y9a{bottom:533.533333pt;}
.y114{bottom:540.093333pt;}
.y34{bottom:544.253333pt;}
.y81{bottom:544.413333pt;}
.yfa{bottom:545.373333pt;}
.y99{bottom:547.933333pt;}
.y35{bottom:550.333333pt;}
.yeb{bottom:553.373333pt;}
.y10{bottom:556.733333pt;}
.y33{bottom:571.453333pt;}
.y4d{bottom:571.773333pt;}
.yf9{bottom:576.893333pt;}
.y113{bottom:577.053333pt;}
.y65{bottom:577.853333pt;}
.yea{bottom:581.053333pt;}
.y32{bottom:599.453333pt;}
.yf{bottom:602.973333pt;}
.y64{bottom:605.533333pt;}
.ye9{bottom:608.573333pt;}
.y112{bottom:614.173333pt;}
.y31{bottom:626.973333pt;}
.yf8{bottom:627.133333pt;}
.ye{bottom:630.493333pt;}
.y79{bottom:633.053333pt;}
.ye8{bottom:636.253333pt;}
.y111{bottom:651.133333pt;}
.y30{bottom:654.653333pt;}
.yd{bottom:658.173333pt;}
.y63{bottom:660.733333pt;}
.ye7{bottom:663.773333pt;}
.y2f{bottom:682.173333pt;}
.yc{bottom:685.693333pt;}
.y110{bottom:688.253333pt;}
.ye6{bottom:691.453333pt;}
.y2e{bottom:709.853333pt;}
.yb{bottom:713.373333pt;}
.yaa{bottom:715.933333pt;}
.ye5{bottom:718.973333pt;}
.y10f{bottom:728.253333pt;}
.y2d{bottom:737.373333pt;}
.ya{bottom:740.893333pt;}
.ye4{bottom:746.693333pt;}
.y10e{bottom:749.413333pt;}
.yb2{bottom:764.773333pt;}
.y2c{bottom:765.093333pt;}
.y9{bottom:768.613333pt;}
.ye3{bottom:774.213333pt;}
.y10d{bottom:781.253333pt;}
.y2b{bottom:792.613333pt;}
.y8{bottom:796.133333pt;}
.ybe{bottom:798.693333pt;}
.ye2{bottom:801.893333pt;}
.y10c{bottom:812.933333pt;}
.y2a{bottom:820.293333pt;}
.y7{bottom:823.813333pt;}
.ye1{bottom:829.413333pt;}
.y10b{bottom:844.613333pt;}
.y29{bottom:847.813333pt;}
.ye0{bottom:857.093333pt;}
.y10a{bottom:863.173333pt;}
.y6{bottom:869.733333pt;}
.y28{bottom:875.493333pt;}
.y62{bottom:881.573333pt;}
.ydf{bottom:884.613333pt;}
.y26{bottom:903.013333pt;}
.yde{bottom:903.173333pt;}
.y27{bottom:909.093333pt;}
.y109{bottom:913.253333pt;}
.y5{bottom:918.373333pt;}
.ydc{bottom:921.573333pt;}
.ydd{bottom:927.653333pt;}
.y25{bottom:930.693333pt;}
.y108{bottom:931.813333pt;}
.ydb{bottom:939.973333pt;}
.y23{bottom:958.213333pt;}
.yda{bottom:958.373333pt;}
.y107{bottom:963.333333pt;}
.y24{bottom:964.293333pt;}
.y4{bottom:966.853333pt;}
.yd9{bottom:976.773333pt;}
.y22{bottom:985.893333pt;}
.y54{bottom:991.973333pt;}
.y106{bottom:995.013333pt;}
.yd8{bottom:995.173333pt;}
.y3{bottom:1013.120000pt;}
.y21{bottom:1013.440000pt;}
.yd7{bottom:1013.600000pt;}
.yc8{bottom:1019.520000pt;}
.h7{height:33.918750pt;}
.he{height:36.234687pt;}
.hd{height:42.063437pt;}
.h6{height:42.084375pt;}
.hc{height:44.437500pt;}
.ha{height:52.134375pt;}
.h8{height:53.535000pt;}
.hf{height:57.375000pt;}
.h10{height:57.787500pt;}
.hb{height:62.781250pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.h9{height:73.490625pt;}
.h4{height:75.465000pt;}
.h5{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.592000pt;}
.xc{left:98.912000pt;}
.x1e{left:103.232000pt;}
.x23{left:132.352000pt;}
.x13{left:149.606667pt;}
.x42{left:151.386667pt;}
.x14{left:155.066667pt;}
.x34{left:168.166667pt;}
.xf{left:174.566667pt;}
.x35{left:179.066667pt;}
.x10{left:180.026667pt;}
.x1c{left:190.246667pt;}
.x28{left:199.686667pt;}
.x1d{left:201.146667pt;}
.x3{left:205.126667pt;}
.x4{left:210.586667pt;}
.x26{left:211.846667pt;}
.xd{left:218.886667pt;}
.x27{left:222.746667pt;}
.xe{left:224.346667pt;}
.xb{left:286.626667pt;}
.x38{left:329.166667pt;}
.x1a{left:338.766667pt;}
.x39{left:340.066667pt;}
.x24{left:341.166667pt;}
.x1b{left:349.666667pt;}
.x25{left:352.066667pt;}
.x20{left:354.626667pt;}
.x18{left:361.486667pt;}
.x1f{left:363.886667pt;}
.x19{left:372.386667pt;}
.x3e{left:377.646667pt;}
.x11{left:384.846667pt;}
.x3f{left:388.546667pt;}
.x12{left:390.306667pt;}
.x3b{left:427.726667pt;}
.x3c{left:438.626667pt;}
.x9{left:446.473333pt;}
.xa{left:451.933333pt;}
.x15{left:456.573333pt;}
.x2a{left:476.573333pt;}
.x3d{left:487.613333pt;}
.x16{left:493.033333pt;}
.x17{left:498.493333pt;}
.x21{left:503.273333pt;}
.x5{left:512.233333pt;}
.x22{left:514.173333pt;}
.x6{left:517.693333pt;}
.x33{left:522.973333pt;}
.x3a{left:525.533333pt;}
.x7{left:538.473333pt;}
.x8{left:543.933333pt;}
.x46{left:553.993333pt;}
.x45{left:555.293333pt;}
.x2f{left:564.073333pt;}
.x30{left:574.973333pt;}
.x36{left:578.473333pt;}
.x40{left:583.273333pt;}
.x37{left:589.373333pt;}
.x43{left:590.633333pt;}
.x41{left:594.173333pt;}
.x47{left:597.193333pt;}
.x2d{left:600.073333pt;}
.x44{left:601.533333pt;}
.x48{left:608.093333pt;}
.x2e{left:610.973333pt;}
.x31{left:654.033333pt;}
.x32{left:664.933333pt;}
.x29{left:683.333333pt;}
.x2b{left:689.073333pt;}
.x1{left:691.333333pt;}
.x2c{left:699.973333pt;}
}




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