
    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_0f79118472b97e68ae05b397.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b924d83c3a323648d2cfaa5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ffa807debefd743e138c5ab7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_6a9dee37c5d1e86734e09aae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_4fee5a8a19d1d1f1b1f5d75b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0d2ee40c1655cfda07374163.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.093000px;}
.ls8{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.lsa{letter-spacing:41.682720px;}
.ls9{letter-spacing:71.922720px;}
.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;}
}
.ws2{word-spacing:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws9{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.166000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._2{width:1.046640px;}
._1{width:2.688000px;}
._8{width:3.799200px;}
._b{width:5.613600px;}
._4{width:6.747840px;}
._3{width:7.828560px;}
._7{width:9.708480px;}
._d{width:11.053920px;}
._e{width:12.430080px;}
._14{width:13.909920px;}
._10{width:16.848960px;}
._11{width:18.288240px;}
._16{width:19.382880px;}
._13{width:20.466960px;}
._c{width:21.660480px;}
._18{width:22.684800px;}
._9{width:23.694000px;}
._a{width:24.800400px;}
._1a{width:25.814640px;}
._1b{width:26.927760px;}
._6{width:28.143600px;}
._5{width:29.161200px;}
._19{width:30.597120px;}
._17{width:31.708560px;}
._12{width:32.837280px;}
._15{width:34.118160px;}
._1c{width:36.168240px;}
._f{width:37.438800px;}
._1d{width:53.095920px;}
._21{width:56.532960px;}
._20{width:72.099600px;}
._1f{width:100.874880px;}
._1e{width:102.607920px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:36.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:3.240000px;}
.yd1{bottom:11.700000px;}
.yd6{bottom:11.880000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.yd2{bottom:20.340000px;}
.yd5{bottom:20.520000px;}
.y10d{bottom:37.620000px;}
.y111{bottom:37.800000px;}
.y6{bottom:47.160000px;}
.y113{bottom:54.900000px;}
.y110{bottom:55.080000px;}
.y9{bottom:57.780000px;}
.y10f{bottom:72.360000px;}
.y8{bottom:78.516000px;}
.y3f{bottom:99.216000px;}
.y3c{bottom:117.396000px;}
.ycf{bottom:125.136000px;}
.y10b{bottom:129.636000px;}
.ya8{bottom:131.076000px;}
.y7b{bottom:131.976000px;}
.y3b{bottom:134.676000px;}
.yba{bottom:135.576000px;}
.yce{bottom:142.416000px;}
.y10a{bottom:146.916000px;}
.ya7{bottom:148.356000px;}
.y7a{bottom:149.076000px;}
.y3a{bottom:151.950000px;}
.yb9{bottom:152.850000px;}
.ycd{bottom:159.690000px;}
.y109{bottom:164.190000px;}
.ya6{bottom:165.630000px;}
.y79{bottom:166.350000px;}
.y39{bottom:169.050000px;}
.yb8{bottom:170.130000px;}
.ycc{bottom:176.970000px;}
.y108{bottom:181.470000px;}
.ya5{bottom:182.910000px;}
.y78{bottom:183.630000px;}
.y38{bottom:186.330000px;}
.yb7{bottom:187.410000px;}
.ycb{bottom:194.070000px;}
.y107{bottom:198.570000px;}
.ya4{bottom:200.190000px;}
.y77{bottom:200.910000px;}
.y37{bottom:203.610000px;}
.yb6{bottom:204.690000px;}
.yca{bottom:211.350000px;}
.y106{bottom:215.850000px;}
.ya3{bottom:217.470000px;}
.y76{bottom:218.190000px;}
.y36{bottom:220.890000px;}
.yb5{bottom:221.970000px;}
.yc9{bottom:228.630000px;}
.y105{bottom:233.130000px;}
.ya2{bottom:234.570000px;}
.y75{bottom:235.470000px;}
.y35{bottom:238.170000px;}
.yb4{bottom:239.070000px;}
.yc8{bottom:245.910000px;}
.y104{bottom:250.410000px;}
.ya1{bottom:251.850000px;}
.y74{bottom:252.570000px;}
.y34{bottom:255.450000px;}
.yb3{bottom:256.350000px;}
.yc7{bottom:263.190000px;}
.y103{bottom:267.690000px;}
.ya0{bottom:269.130000px;}
.y73{bottom:269.850000px;}
.y33{bottom:272.550000px;}
.yb2{bottom:273.630000px;}
.yc6{bottom:280.290000px;}
.y102{bottom:284.970000px;}
.y9f{bottom:286.410000px;}
.y72{bottom:287.130000px;}
.y32{bottom:289.830000px;}
.yb1{bottom:290.910000px;}
.yc5{bottom:297.570000px;}
.y101{bottom:302.070000px;}
.y9e{bottom:303.690000px;}
.y71{bottom:304.410000px;}
.y31{bottom:307.110000px;}
.yb0{bottom:308.190000px;}
.yc4{bottom:314.850000px;}
.y100{bottom:319.350000px;}
.y9d{bottom:320.790000px;}
.y70{bottom:321.690000px;}
.y30{bottom:324.390000px;}
.yaf{bottom:325.290000px;}
.yc3{bottom:332.130000px;}
.yff{bottom:336.675000px;}
.y9c{bottom:338.115000px;}
.y6f{bottom:339.015000px;}
.y2f{bottom:341.715000px;}
.yae{bottom:342.615000px;}
.yc2{bottom:349.455000px;}
.yfe{bottom:353.955000px;}
.y9b{bottom:355.395000px;}
.y6e{bottom:356.115000px;}
.y2e{bottom:358.815000px;}
.yad{bottom:359.895000px;}
.yc1{bottom:366.735000px;}
.yfd{bottom:371.235000px;}
.y9a{bottom:372.675000px;}
.y6d{bottom:373.395000px;}
.y2d{bottom:376.095000px;}
.yac{bottom:377.175000px;}
.yc0{bottom:383.835000px;}
.yfc{bottom:388.515000px;}
.y99{bottom:389.955000px;}
.y6c{bottom:390.675000px;}
.y2c{bottom:393.375000px;}
.yab{bottom:394.455000px;}
.ybf{bottom:401.115000px;}
.yfb{bottom:405.615000px;}
.y98{bottom:407.235000px;}
.y6b{bottom:407.955000px;}
.y2b{bottom:409.395000px;}
.yaa{bottom:411.735000px;}
.ybe{bottom:418.395000px;}
.y2a{bottom:420.915000px;}
.yfa{bottom:422.895000px;}
.y97{bottom:424.335000px;}
.y6a{bottom:425.235000px;}
.ya9{bottom:425.595000px;}
.ybd{bottom:435.675000px;}
.y29{bottom:438.195000px;}
.yf9{bottom:440.175000px;}
.y96{bottom:441.615000px;}
.y69{bottom:442.515000px;}
.ybc{bottom:452.955000px;}
.y28{bottom:455.475000px;}
.yf8{bottom:457.455000px;}
.y95{bottom:458.895000px;}
.y68{bottom:459.615000px;}
.ybb{bottom:466.995000px;}
.y116{bottom:472.215000px;}
.y27{bottom:472.755000px;}
.yf7{bottom:474.735000px;}
.y94{bottom:476.175000px;}
.y67{bottom:476.895000px;}
.y26{bottom:490.035000px;}
.yf6{bottom:492.015000px;}
.y93{bottom:493.455000px;}
.y66{bottom:494.175000px;}
.y25{bottom:507.315000px;}
.yf5{bottom:509.115000px;}
.y92{bottom:510.735000px;}
.y65{bottom:511.455000px;}
.y24{bottom:524.415000px;}
.yf4{bottom:526.395000px;}
.y91{bottom:527.835000px;}
.y64{bottom:528.735000px;}
.y115{bottom:541.155000px;}
.y23{bottom:541.695000px;}
.yf3{bottom:543.675000px;}
.y90{bottom:545.115000px;}
.y63{bottom:545.835000px;}
.y22{bottom:558.975000px;}
.yf2{bottom:560.955000px;}
.y8f{bottom:562.395000px;}
.y62{bottom:563.115000px;}
.y21{bottom:576.255000px;}
.yf1{bottom:578.235000px;}
.y8e{bottom:579.675000px;}
.y61{bottom:580.395000px;}
.y20{bottom:593.535000px;}
.yf0{bottom:595.335000px;}
.y8d{bottom:596.955000px;}
.y60{bottom:597.675000px;}
.y114{bottom:610.125000px;}
.y1f{bottom:610.845000px;}
.yef{bottom:612.645000px;}
.y8c{bottom:614.085000px;}
.y5f{bottom:614.985000px;}
.y1e{bottom:627.945000px;}
.yee{bottom:629.925000px;}
.y8b{bottom:631.365000px;}
.y5e{bottom:632.265000px;}
.y1d{bottom:645.225000px;}
.yed{bottom:647.205000px;}
.y8a{bottom:648.645000px;}
.y5d{bottom:649.365000px;}
.y112{bottom:661.965000px;}
.y1c{bottom:662.505000px;}
.yec{bottom:664.485000px;}
.y89{bottom:665.925000px;}
.y5c{bottom:666.645000px;}
.y1b{bottom:679.785000px;}
.yeb{bottom:681.765000px;}
.y88{bottom:683.205000px;}
.y5b{bottom:683.925000px;}
.y1a{bottom:697.065000px;}
.yea{bottom:698.865000px;}
.y87{bottom:700.485000px;}
.y5a{bottom:701.205000px;}
.y19{bottom:714.165000px;}
.ye9{bottom:716.145000px;}
.y86{bottom:717.585000px;}
.y59{bottom:718.485000px;}
.y10e{bottom:730.905000px;}
.y18{bottom:731.445000px;}
.ye8{bottom:733.425000px;}
.y85{bottom:734.865000px;}
.y58{bottom:735.765000px;}
.y17{bottom:748.725000px;}
.ye7{bottom:750.705000px;}
.y84{bottom:752.145000px;}
.y57{bottom:752.865000px;}
.y16{bottom:766.005000px;}
.ye6{bottom:767.985000px;}
.y83{bottom:769.425000px;}
.y56{bottom:770.145000px;}
.y15{bottom:783.285000px;}
.ye5{bottom:785.265000px;}
.y82{bottom:786.705000px;}
.y55{bottom:787.425000px;}
.y14{bottom:800.565000px;}
.ye4{bottom:802.365000px;}
.y81{bottom:803.985000px;}
.y54{bottom:804.705000px;}
.y13{bottom:817.665000px;}
.y10c{bottom:818.025000px;}
.ye3{bottom:819.645000px;}
.y80{bottom:821.085000px;}
.y53{bottom:821.985000px;}
.y12{bottom:834.945000px;}
.ye2{bottom:836.925000px;}
.y7f{bottom:838.365000px;}
.y52{bottom:839.265000px;}
.y11{bottom:852.225000px;}
.ye1{bottom:854.205000px;}
.y7e{bottom:855.645000px;}
.y51{bottom:856.365000px;}
.ye0{bottom:871.530000px;}
.y10{bottom:872.070000px;}
.y7d{bottom:872.970000px;}
.y50{bottom:873.690000px;}
.y7c{bottom:887.010000px;}
.ydf{bottom:888.630000px;}
.y4f{bottom:890.970000px;}
.yf{bottom:891.870000px;}
.yde{bottom:905.910000px;}
.y4e{bottom:908.250000px;}
.ye{bottom:909.150000px;}
.ydd{bottom:923.190000px;}
.y4d{bottom:925.530000px;}
.yd{bottom:927.150000px;}
.ydc{bottom:940.470000px;}
.y4c{bottom:942.630000px;}
.yc{bottom:947.850000px;}
.ydb{bottom:957.750000px;}
.y4b{bottom:959.910000px;}
.yb{bottom:969.810000px;}
.yda{bottom:972.510000px;}
.y4a{bottom:977.190000px;}
.yd9{bottom:989.790000px;}
.y49{bottom:994.470000px;}
.ya{bottom:997.530000px;}
.y48{bottom:1011.750000px;}
.y7{bottom:1023.810000px;}
.yd8{bottom:1024.170000px;}
.y47{bottom:1029.030000px;}
.y5{bottom:1040.550000px;}
.yd7{bottom:1041.450000px;}
.y46{bottom:1046.130000px;}
.y45{bottom:1063.410000px;}
.yd4{bottom:1076.010000px;}
.y44{bottom:1080.690000px;}
.y43{bottom:1097.970000px;}
.yd0{bottom:1111.290000px;}
.y42{bottom:1115.250000px;}
.y41{bottom:1132.530000px;}
.y3{bottom:1149.300000px;}
.y40{bottom:1149.660000px;}
.y3e{bottom:1167.660000px;}
.y1{bottom:1179.180000px;}
.y3d{bottom:1192.140000px;}
.h12{height:17.280000px;}
.hd{height:25.400391px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.h10{height:34.380000px;}
.hf{height:34.416000px;}
.h11{height:34.560000px;}
.hb{height:41.726953px;}
.ha{height:42.164648px;}
.h18{height:43.506914px;}
.hc{height:45.461953px;}
.h3{height:50.273438px;}
.h5{height:50.800781px;}
.h13{height:51.660000px;}
.h16{height:51.840000px;}
.he{height:52.171875px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h15{height:68.940000px;}
.h17{height:68.976000px;}
.h14{height:86.220000px;}
.h8{height:86.255508px;}
.h6{height:108.756000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:88.776000px;}
.wf{width:88.920000px;}
.w11{width:91.800000px;}
.w12{width:104.976000px;}
.wc{width:105.120000px;}
.w10{width:112.716000px;}
.wd{width:122.616000px;}
.wa{width:128.016000px;}
.w8{width:132.156000px;}
.w7{width:136.800000px;}
.wb{width:148.536000px;}
.w9{width:169.410000px;}
.w5{width:199.830000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:9.000000px;}
.x38{left:10.620000px;}
.x3b{left:11.880000px;}
.x3c{left:13.860000px;}
.x35{left:17.280000px;}
.x3f{left:18.540000px;}
.x27{left:20.160000px;}
.x24{left:21.960000px;}
.x8{left:23.940000px;}
.x48{left:25.410000px;}
.x46{left:26.490000px;}
.x2b{left:27.900000px;}
.x22{left:29.385000px;}
.x3d{left:31.860000px;}
.x32{left:32.940000px;}
.x45{left:34.590000px;}
.x2a{left:36.720000px;}
.x44{left:38.340000px;}
.x2f{left:40.500000px;}
.x3{left:42.300000px;}
.x41{left:43.740000px;}
.x2e{left:45.540000px;}
.x20{left:46.620000px;}
.x33{left:49.185000px;}
.x2d{left:50.265000px;}
.x28{left:51.525000px;}
.x30{left:54.765000px;}
.x6{left:62.310000px;}
.x25{left:64.290000px;}
.x34{left:67.710000px;}
.x2c{left:70.950000px;}
.x31{left:73.470000px;}
.x1f{left:89.136000px;}
.x11{left:97.235987px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x10{left:110.195987px;}
.x37{left:125.855987px;}
.x4c{left:151.229987px;}
.x1d{left:152.309987px;}
.x17{left:155.189987px;}
.x4{left:182.559000px;}
.x1a{left:192.989987px;}
.x39{left:194.250000px;}
.xb{left:216.209987px;}
.x21{left:225.930000px;}
.x1e{left:227.369987px;}
.x2{left:240.519000px;}
.x49{left:262.514987px;}
.x3a{left:316.875000px;}
.x4a{left:328.394987px;}
.x15{left:340.094987px;}
.x1b{left:346.394987px;}
.x36{left:349.274987px;}
.x5{left:352.695000px;}
.x23{left:358.095000px;}
.x14{left:363.854987px;}
.xd{left:379.514987px;}
.x18{left:384.374987px;}
.x12{left:386.534987px;}
.xf{left:387.614987px;}
.x4b{left:396.074987px;}
.x3e{left:405.645000px;}
.x13{left:433.004987px;}
.xa{left:445.604987px;}
.xc{left:452.264987px;}
.xe{left:459.104987px;}
.x40{left:494.565000px;}
.x26{left:527.505000px;}
.x42{left:607.290000px;}
.x7{left:618.450000px;}
.x19{left:630.689987px;}
.x1c{left:640.769987px;}
.x29{left:655.530000px;}
.x16{left:677.849987px;}
.x43{left:699.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.082667pt;}
.ls8{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.lsa{letter-spacing:37.051307pt;}
.ls9{letter-spacing:63.931307pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.592000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._2{width:0.930347pt;}
._1{width:2.389333pt;}
._8{width:3.377067pt;}
._b{width:4.989867pt;}
._4{width:5.998080pt;}
._3{width:6.958720pt;}
._7{width:8.629760pt;}
._d{width:9.825707pt;}
._e{width:11.048960pt;}
._14{width:12.364373pt;}
._10{width:14.976853pt;}
._11{width:16.256213pt;}
._16{width:17.229227pt;}
._13{width:18.192853pt;}
._c{width:19.253760pt;}
._18{width:20.164267pt;}
._9{width:21.061333pt;}
._a{width:22.044800pt;}
._1a{width:22.946347pt;}
._1b{width:23.935787pt;}
._6{width:25.016533pt;}
._5{width:25.921067pt;}
._19{width:27.197440pt;}
._17{width:28.185387pt;}
._12{width:29.188693pt;}
._15{width:30.327253pt;}
._1c{width:32.149547pt;}
._f{width:33.278933pt;}
._1d{width:47.196373pt;}
._21{width:50.251520pt;}
._20{width:64.088533pt;}
._1f{width:89.666560pt;}
._1e{width:91.207040pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:2.880000pt;}
.yd1{bottom:10.400000pt;}
.yd6{bottom:10.560000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.yd2{bottom:18.080000pt;}
.yd5{bottom:18.240000pt;}
.y10d{bottom:33.440000pt;}
.y111{bottom:33.600000pt;}
.y6{bottom:41.920000pt;}
.y113{bottom:48.800000pt;}
.y110{bottom:48.960000pt;}
.y9{bottom:51.360000pt;}
.y10f{bottom:64.320000pt;}
.y8{bottom:69.792000pt;}
.y3f{bottom:88.192000pt;}
.y3c{bottom:104.352000pt;}
.ycf{bottom:111.232000pt;}
.y10b{bottom:115.232000pt;}
.ya8{bottom:116.512000pt;}
.y7b{bottom:117.312000pt;}
.y3b{bottom:119.712000pt;}
.yba{bottom:120.512000pt;}
.yce{bottom:126.592000pt;}
.y10a{bottom:130.592000pt;}
.ya7{bottom:131.872000pt;}
.y7a{bottom:132.512000pt;}
.y3a{bottom:135.066667pt;}
.yb9{bottom:135.866667pt;}
.ycd{bottom:141.946667pt;}
.y109{bottom:145.946667pt;}
.ya6{bottom:147.226667pt;}
.y79{bottom:147.866667pt;}
.y39{bottom:150.266667pt;}
.yb8{bottom:151.226667pt;}
.ycc{bottom:157.306667pt;}
.y108{bottom:161.306667pt;}
.ya5{bottom:162.586667pt;}
.y78{bottom:163.226667pt;}
.y38{bottom:165.626667pt;}
.yb7{bottom:166.586667pt;}
.ycb{bottom:172.506667pt;}
.y107{bottom:176.506667pt;}
.ya4{bottom:177.946667pt;}
.y77{bottom:178.586667pt;}
.y37{bottom:180.986667pt;}
.yb6{bottom:181.946667pt;}
.yca{bottom:187.866667pt;}
.y106{bottom:191.866667pt;}
.ya3{bottom:193.306667pt;}
.y76{bottom:193.946667pt;}
.y36{bottom:196.346667pt;}
.yb5{bottom:197.306667pt;}
.yc9{bottom:203.226667pt;}
.y105{bottom:207.226667pt;}
.ya2{bottom:208.506667pt;}
.y75{bottom:209.306667pt;}
.y35{bottom:211.706667pt;}
.yb4{bottom:212.506667pt;}
.yc8{bottom:218.586667pt;}
.y104{bottom:222.586667pt;}
.ya1{bottom:223.866667pt;}
.y74{bottom:224.506667pt;}
.y34{bottom:227.066667pt;}
.yb3{bottom:227.866667pt;}
.yc7{bottom:233.946667pt;}
.y103{bottom:237.946667pt;}
.ya0{bottom:239.226667pt;}
.y73{bottom:239.866667pt;}
.y33{bottom:242.266667pt;}
.yb2{bottom:243.226667pt;}
.yc6{bottom:249.146667pt;}
.y102{bottom:253.306667pt;}
.y9f{bottom:254.586667pt;}
.y72{bottom:255.226667pt;}
.y32{bottom:257.626667pt;}
.yb1{bottom:258.586667pt;}
.yc5{bottom:264.506667pt;}
.y101{bottom:268.506667pt;}
.y9e{bottom:269.946667pt;}
.y71{bottom:270.586667pt;}
.y31{bottom:272.986667pt;}
.yb0{bottom:273.946667pt;}
.yc4{bottom:279.866667pt;}
.y100{bottom:283.866667pt;}
.y9d{bottom:285.146667pt;}
.y70{bottom:285.946667pt;}
.y30{bottom:288.346667pt;}
.yaf{bottom:289.146667pt;}
.yc3{bottom:295.226667pt;}
.yff{bottom:299.266667pt;}
.y9c{bottom:300.546667pt;}
.y6f{bottom:301.346667pt;}
.y2f{bottom:303.746667pt;}
.yae{bottom:304.546667pt;}
.yc2{bottom:310.626667pt;}
.yfe{bottom:314.626667pt;}
.y9b{bottom:315.906667pt;}
.y6e{bottom:316.546667pt;}
.y2e{bottom:318.946667pt;}
.yad{bottom:319.906667pt;}
.yc1{bottom:325.986667pt;}
.yfd{bottom:329.986667pt;}
.y9a{bottom:331.266667pt;}
.y6d{bottom:331.906667pt;}
.y2d{bottom:334.306667pt;}
.yac{bottom:335.266667pt;}
.yc0{bottom:341.186667pt;}
.yfc{bottom:345.346667pt;}
.y99{bottom:346.626667pt;}
.y6c{bottom:347.266667pt;}
.y2c{bottom:349.666667pt;}
.yab{bottom:350.626667pt;}
.ybf{bottom:356.546667pt;}
.yfb{bottom:360.546667pt;}
.y98{bottom:361.986667pt;}
.y6b{bottom:362.626667pt;}
.y2b{bottom:363.906667pt;}
.yaa{bottom:365.986667pt;}
.ybe{bottom:371.906667pt;}
.y2a{bottom:374.146667pt;}
.yfa{bottom:375.906667pt;}
.y97{bottom:377.186667pt;}
.y6a{bottom:377.986667pt;}
.ya9{bottom:378.306667pt;}
.ybd{bottom:387.266667pt;}
.y29{bottom:389.506667pt;}
.yf9{bottom:391.266667pt;}
.y96{bottom:392.546667pt;}
.y69{bottom:393.346667pt;}
.ybc{bottom:402.626667pt;}
.y28{bottom:404.866667pt;}
.yf8{bottom:406.626667pt;}
.y95{bottom:407.906667pt;}
.y68{bottom:408.546667pt;}
.ybb{bottom:415.106667pt;}
.y116{bottom:419.746667pt;}
.y27{bottom:420.226667pt;}
.yf7{bottom:421.986667pt;}
.y94{bottom:423.266667pt;}
.y67{bottom:423.906667pt;}
.y26{bottom:435.586667pt;}
.yf6{bottom:437.346667pt;}
.y93{bottom:438.626667pt;}
.y66{bottom:439.266667pt;}
.y25{bottom:450.946667pt;}
.yf5{bottom:452.546667pt;}
.y92{bottom:453.986667pt;}
.y65{bottom:454.626667pt;}
.y24{bottom:466.146667pt;}
.yf4{bottom:467.906667pt;}
.y91{bottom:469.186667pt;}
.y64{bottom:469.986667pt;}
.y115{bottom:481.026667pt;}
.y23{bottom:481.506667pt;}
.yf3{bottom:483.266667pt;}
.y90{bottom:484.546667pt;}
.y63{bottom:485.186667pt;}
.y22{bottom:496.866667pt;}
.yf2{bottom:498.626667pt;}
.y8f{bottom:499.906667pt;}
.y62{bottom:500.546667pt;}
.y21{bottom:512.226667pt;}
.yf1{bottom:513.986667pt;}
.y8e{bottom:515.266667pt;}
.y61{bottom:515.906667pt;}
.y20{bottom:527.586667pt;}
.yf0{bottom:529.186667pt;}
.y8d{bottom:530.626667pt;}
.y60{bottom:531.266667pt;}
.y114{bottom:542.333333pt;}
.y1f{bottom:542.973333pt;}
.yef{bottom:544.573333pt;}
.y8c{bottom:545.853333pt;}
.y5f{bottom:546.653333pt;}
.y1e{bottom:558.173333pt;}
.yee{bottom:559.933333pt;}
.y8b{bottom:561.213333pt;}
.y5e{bottom:562.013333pt;}
.y1d{bottom:573.533333pt;}
.yed{bottom:575.293333pt;}
.y8a{bottom:576.573333pt;}
.y5d{bottom:577.213333pt;}
.y112{bottom:588.413333pt;}
.y1c{bottom:588.893333pt;}
.yec{bottom:590.653333pt;}
.y89{bottom:591.933333pt;}
.y5c{bottom:592.573333pt;}
.y1b{bottom:604.253333pt;}
.yeb{bottom:606.013333pt;}
.y88{bottom:607.293333pt;}
.y5b{bottom:607.933333pt;}
.y1a{bottom:619.613333pt;}
.yea{bottom:621.213333pt;}
.y87{bottom:622.653333pt;}
.y5a{bottom:623.293333pt;}
.y19{bottom:634.813333pt;}
.ye9{bottom:636.573333pt;}
.y86{bottom:637.853333pt;}
.y59{bottom:638.653333pt;}
.y10e{bottom:649.693333pt;}
.y18{bottom:650.173333pt;}
.ye8{bottom:651.933333pt;}
.y85{bottom:653.213333pt;}
.y58{bottom:654.013333pt;}
.y17{bottom:665.533333pt;}
.ye7{bottom:667.293333pt;}
.y84{bottom:668.573333pt;}
.y57{bottom:669.213333pt;}
.y16{bottom:680.893333pt;}
.ye6{bottom:682.653333pt;}
.y83{bottom:683.933333pt;}
.y56{bottom:684.573333pt;}
.y15{bottom:696.253333pt;}
.ye5{bottom:698.013333pt;}
.y82{bottom:699.293333pt;}
.y55{bottom:699.933333pt;}
.y14{bottom:711.613333pt;}
.ye4{bottom:713.213333pt;}
.y81{bottom:714.653333pt;}
.y54{bottom:715.293333pt;}
.y13{bottom:726.813333pt;}
.y10c{bottom:727.133333pt;}
.ye3{bottom:728.573333pt;}
.y80{bottom:729.853333pt;}
.y53{bottom:730.653333pt;}
.y12{bottom:742.173333pt;}
.ye2{bottom:743.933333pt;}
.y7f{bottom:745.213333pt;}
.y52{bottom:746.013333pt;}
.y11{bottom:757.533333pt;}
.ye1{bottom:759.293333pt;}
.y7e{bottom:760.573333pt;}
.y51{bottom:761.213333pt;}
.ye0{bottom:774.693333pt;}
.y10{bottom:775.173333pt;}
.y7d{bottom:775.973333pt;}
.y50{bottom:776.613333pt;}
.y7c{bottom:788.453333pt;}
.ydf{bottom:789.893333pt;}
.y4f{bottom:791.973333pt;}
.yf{bottom:792.773333pt;}
.yde{bottom:805.253333pt;}
.y4e{bottom:807.333333pt;}
.ye{bottom:808.133333pt;}
.ydd{bottom:820.613333pt;}
.y4d{bottom:822.693333pt;}
.yd{bottom:824.133333pt;}
.ydc{bottom:835.973333pt;}
.y4c{bottom:837.893333pt;}
.yc{bottom:842.533333pt;}
.ydb{bottom:851.333333pt;}
.y4b{bottom:853.253333pt;}
.yb{bottom:862.053333pt;}
.yda{bottom:864.453333pt;}
.y4a{bottom:868.613333pt;}
.yd9{bottom:879.813333pt;}
.y49{bottom:883.973333pt;}
.ya{bottom:886.693333pt;}
.y48{bottom:899.333333pt;}
.y7{bottom:910.053333pt;}
.yd8{bottom:910.373333pt;}
.y47{bottom:914.693333pt;}
.y5{bottom:924.933333pt;}
.yd7{bottom:925.733333pt;}
.y46{bottom:929.893333pt;}
.y45{bottom:945.253333pt;}
.yd4{bottom:956.453333pt;}
.y44{bottom:960.613333pt;}
.y43{bottom:975.973333pt;}
.yd0{bottom:987.813333pt;}
.y42{bottom:991.333333pt;}
.y41{bottom:1006.693333pt;}
.y3{bottom:1021.600000pt;}
.y40{bottom:1021.920000pt;}
.y3e{bottom:1037.920000pt;}
.y1{bottom:1048.160000pt;}
.y3d{bottom:1059.680000pt;}
.h12{height:15.360000pt;}
.hd{height:22.578125pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.h10{height:30.560000pt;}
.hf{height:30.592000pt;}
.h11{height:30.720000pt;}
.hb{height:37.090625pt;}
.ha{height:37.479688pt;}
.h18{height:38.672812pt;}
.hc{height:40.410625pt;}
.h3{height:44.687500pt;}
.h5{height:45.156250pt;}
.h13{height:45.920000pt;}
.h16{height:46.080000pt;}
.he{height:46.375000pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h15{height:61.280000pt;}
.h17{height:61.312000pt;}
.h14{height:76.640000pt;}
.h8{height:76.671562pt;}
.h6{height:96.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:78.912000pt;}
.wf{width:79.040000pt;}
.w11{width:81.600000pt;}
.w12{width:93.312000pt;}
.wc{width:93.440000pt;}
.w10{width:100.192000pt;}
.wd{width:108.992000pt;}
.wa{width:113.792000pt;}
.w8{width:117.472000pt;}
.w7{width:121.600000pt;}
.wb{width:132.032000pt;}
.w9{width:150.586667pt;}
.w5{width:177.626667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:8.000000pt;}
.x38{left:9.440000pt;}
.x3b{left:10.560000pt;}
.x3c{left:12.320000pt;}
.x35{left:15.360000pt;}
.x3f{left:16.480000pt;}
.x27{left:17.920000pt;}
.x24{left:19.520000pt;}
.x8{left:21.280000pt;}
.x48{left:22.586667pt;}
.x46{left:23.546667pt;}
.x2b{left:24.800000pt;}
.x22{left:26.120000pt;}
.x3d{left:28.320000pt;}
.x32{left:29.280000pt;}
.x45{left:30.746667pt;}
.x2a{left:32.640000pt;}
.x44{left:34.080000pt;}
.x2f{left:36.000000pt;}
.x3{left:37.600000pt;}
.x41{left:38.880000pt;}
.x2e{left:40.480000pt;}
.x20{left:41.440000pt;}
.x33{left:43.720000pt;}
.x2d{left:44.680000pt;}
.x28{left:45.800000pt;}
.x30{left:48.680000pt;}
.x6{left:55.386667pt;}
.x25{left:57.146667pt;}
.x34{left:60.186667pt;}
.x2c{left:63.066667pt;}
.x31{left:65.306667pt;}
.x1f{left:79.232000pt;}
.x11{left:86.431988pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x10{left:97.951988pt;}
.x37{left:111.871988pt;}
.x4c{left:134.426655pt;}
.x1d{left:135.386655pt;}
.x17{left:137.946655pt;}
.x4{left:162.274667pt;}
.x1a{left:171.546655pt;}
.x39{left:172.666667pt;}
.xb{left:192.186655pt;}
.x21{left:200.826667pt;}
.x1e{left:202.106655pt;}
.x2{left:213.794667pt;}
.x49{left:233.346655pt;}
.x3a{left:281.666667pt;}
.x4a{left:291.906655pt;}
.x15{left:302.306655pt;}
.x1b{left:307.906655pt;}
.x36{left:310.466655pt;}
.x5{left:313.506667pt;}
.x23{left:318.306667pt;}
.x14{left:323.426655pt;}
.xd{left:337.346655pt;}
.x18{left:341.666655pt;}
.x12{left:343.586655pt;}
.xf{left:344.546655pt;}
.x4b{left:352.066655pt;}
.x3e{left:360.573333pt;}
.x13{left:384.893322pt;}
.xa{left:396.093322pt;}
.xc{left:402.013322pt;}
.xe{left:408.093322pt;}
.x40{left:439.613333pt;}
.x26{left:468.893333pt;}
.x42{left:539.813333pt;}
.x7{left:549.733333pt;}
.x19{left:560.613322pt;}
.x1c{left:569.573322pt;}
.x29{left:582.693333pt;}
.x16{left:602.533322pt;}
.x43{left:621.413333pt;}
}




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