
    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_354efe992b07ca6789b3d58d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cfb057fb1988ddc731189922.woff')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_ddd728bc0e272ca9e5c09f25.woff')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_db3231c1433e04a0ea8c65c0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_130301694ab792f9947e2b7d.woff')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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-1.260000px;}
.lsa{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.666000px;}
.lsd{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.413400px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls10{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.189600px;}
.lsc{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.298800px;}
.lse{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.360000px;}
.ls1{letter-spacing:1.386720px;}
.ls12{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.ls8{letter-spacing:65.700000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.ws5{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.166000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.951680px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1112.765760px;}
._1c{margin-left:-1079.969760px;}
._1d{margin-left:-490.176000px;}
._59{margin-left:-14.633280px;}
._19{margin-left:-4.140000px;}
._7{margin-left:-2.660400px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._b{width:2.980320px;}
._e{width:4.212240px;}
._d{width:6.004800px;}
._a{width:7.709040px;}
._9{width:9.023760px;}
._29{width:10.039680px;}
._8{width:11.144160px;}
._c{width:12.363120px;}
._6{width:13.886640px;}
._11{width:16.374240px;}
._25{width:18.348480px;}
._24{width:19.450800px;}
._12{width:21.422880px;}
._13{width:22.625760px;}
._15{width:23.904000px;}
._16{width:25.245360px;}
._10{width:27.219600px;}
._22{width:29.007840px;}
._21{width:30.358080px;}
._1b{width:32.031360px;}
._1a{width:33.107040px;}
._f{width:35.109360px;}
._2e{width:36.242640px;}
._31{width:37.260000px;}
._17{width:38.365920px;}
._18{width:40.068000px;}
._3a{width:41.234400px;}
._1f{width:42.338880px;}
._20{width:43.436640px;}
._26{width:44.729280px;}
._27{width:45.768000px;}
._4a{width:46.769280px;}
._33{width:47.896560px;}
._37{width:48.943440px;}
._14{width:50.047920px;}
._2b{width:51.362640px;}
._2a{width:52.887600px;}
._36{width:54.051840px;}
._28{width:55.187280px;}
._2d{width:56.502000px;}
._39{width:57.996000px;}
._35{width:59.131440px;}
._34{width:60.357600px;}
._3c{width:61.552800px;}
._40{width:62.827200px;}
._32{width:64.390320px;}
._30{width:65.459520px;}
._23{width:66.840480px;}
._42{width:68.032080px;}
._2f{width:69.111360px;}
._49{width:70.545600px;}
._3b{width:72.369360px;}
._41{width:74.102400px;}
._38{width:75.178080px;}
._61{width:76.544400px;}
._3e{width:77.747760px;}
._3d{width:78.823440px;}
._1e{width:80.795520px;}
._46{width:82.915920px;}
._43{width:85.007520px;}
._4e{width:86.344320px;}
._5d{width:88.743600px;}
._45{width:90.436320px;}
._44{width:92.030400px;}
._64{width:93.044160px;}
._3f{width:95.795280px;}
._47{width:99.469440px;}
._57{width:100.784160px;}
._4d{width:101.950560px;}
._5b{width:107.747280px;}
._53{width:109.360800px;}
._52{width:110.496240px;}
._2c{width:111.564000px;}
._65{width:113.811840px;}
._4c{width:114.858720px;}
._5c{width:119.787840px;}
._5a{width:128.214000px;}
._58{width:133.117920px;}
._60{width:134.280720px;}
._51{width:137.985840px;}
._50{width:144.289440px;}
._63{width:153.313200px;}
._5f{width:170.882640px;}
._5e{width:172.108800px;}
._66{width:175.185360px;}
._62{width:177.845760px;}
._56{width:193.860720px;}
._48{width:209.160000px;}
._54{width:329.306400px;}
._4b{width:343.529280px;}
._4f{width:861.400080px;}
._55{width:951.797520px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:6.300000px;}
.y9{bottom:11.520000px;}
.y8{bottom:12.240000px;}
.ya{bottom:36.720000px;}
.y6{bottom:52.380000px;}
.ye8{bottom:78.840000px;}
.yc3{bottom:85.140000px;}
.y79{bottom:87.840000px;}
.y39{bottom:90.720000px;}
.y74{bottom:93.960000px;}
.y71{bottom:94.140000px;}
.ye7{bottom:98.820000px;}
.yc2{bottom:104.940000px;}
.y78{bottom:107.820000px;}
.y9e{bottom:110.340000px;}
.y38{bottom:110.520000px;}
.y70{bottom:113.940000px;}
.ye6{bottom:118.620000px;}
.yc1{bottom:124.740000px;}
.y77{bottom:127.620000px;}
.y9d{bottom:130.140000px;}
.y37{bottom:130.320000px;}
.y6f{bottom:133.740000px;}
.ye5{bottom:138.420000px;}
.yc0{bottom:144.540000px;}
.y76{bottom:147.420000px;}
.y9c{bottom:149.940000px;}
.y36{bottom:150.300000px;}
.y6e{bottom:153.570000px;}
.ye4{bottom:158.250000px;}
.y75{bottom:164.010000px;}
.ybf{bottom:164.370000px;}
.y9b{bottom:169.770000px;}
.y35{bottom:170.130000px;}
.y6d{bottom:173.370000px;}
.ye3{bottom:178.050000px;}
.ybe{bottom:184.170000px;}
.y9a{bottom:189.750000px;}
.y34{bottom:189.930000px;}
.y6c{bottom:193.170000px;}
.ye2{bottom:198.030000px;}
.ybd{bottom:204.150000px;}
.y99{bottom:209.550000px;}
.y33{bottom:209.730000px;}
.y6b{bottom:213.150000px;}
.ye1{bottom:217.830000px;}
.ybc{bottom:223.950000px;}
.y98{bottom:229.350000px;}
.y32{bottom:229.530000px;}
.y6a{bottom:232.950000px;}
.ye0{bottom:237.630000px;}
.ybb{bottom:243.750000px;}
.y97{bottom:249.150000px;}
.y31{bottom:249.510000px;}
.y69{bottom:252.750000px;}
.ydf{bottom:257.430000px;}
.yba{bottom:263.550000px;}
.y96{bottom:268.950000px;}
.y30{bottom:269.310000px;}
.y68{bottom:272.550000px;}
.yde{bottom:277.230000px;}
.yb9{bottom:283.350000px;}
.y95{bottom:288.930000px;}
.y2f{bottom:289.110000px;}
.y67{bottom:292.350000px;}
.ydd{bottom:297.210000px;}
.yb8{bottom:303.330000px;}
.y94{bottom:308.730000px;}
.y2e{bottom:308.910000px;}
.y73{bottom:312.150000px;}
.y66{bottom:312.330000px;}
.ydc{bottom:317.010000px;}
.yb7{bottom:323.130000px;}
.y93{bottom:328.530000px;}
.y2d{bottom:328.710000px;}
.y72{bottom:328.890000px;}
.y65{bottom:332.130000px;}
.ydb{bottom:336.810000px;}
.yb6{bottom:342.930000px;}
.y92{bottom:348.330000px;}
.y2c{bottom:348.690000px;}
.y64{bottom:351.930000px;}
.yda{bottom:356.610000px;}
.yb5{bottom:362.730000px;}
.y91{bottom:368.130000px;}
.y2b{bottom:368.490000px;}
.y63{bottom:371.730000px;}
.yd9{bottom:376.410000px;}
.yb4{bottom:382.530000px;}
.y90{bottom:388.110000px;}
.y2a{bottom:388.290000px;}
.y62{bottom:391.530000px;}
.yd8{bottom:396.390000px;}
.yb3{bottom:402.555000px;}
.y8f{bottom:407.955000px;}
.y29{bottom:408.135000px;}
.y61{bottom:411.555000px;}
.yd7{bottom:416.235000px;}
.yb2{bottom:422.355000px;}
.y8e{bottom:427.755000px;}
.y28{bottom:427.935000px;}
.y60{bottom:431.355000px;}
.yd6{bottom:436.035000px;}
.yb1{bottom:442.155000px;}
.y8d{bottom:447.555000px;}
.y27{bottom:447.915000px;}
.y5f{bottom:451.155000px;}
.yd5{bottom:455.835000px;}
.yb0{bottom:461.955000px;}
.y8c{bottom:467.355000px;}
.y26{bottom:469.875000px;}
.y5e{bottom:470.955000px;}
.yd4{bottom:475.635000px;}
.yaf{bottom:481.755000px;}
.y8b{bottom:487.335000px;}
.y25{bottom:489.675000px;}
.y5d{bottom:490.755000px;}
.yd3{bottom:495.615000px;}
.yae{bottom:501.735000px;}
.y8a{bottom:507.135000px;}
.y24{bottom:509.655000px;}
.y5c{bottom:510.735000px;}
.yd2{bottom:515.415000px;}
.yad{bottom:521.535000px;}
.y89{bottom:526.935000px;}
.y23{bottom:529.455000px;}
.y5b{bottom:530.535000px;}
.yd1{bottom:535.215000px;}
.yac{bottom:541.335000px;}
.y88{bottom:546.735000px;}
.y22{bottom:549.255000px;}
.y5a{bottom:550.335000px;}
.yd0{bottom:555.015000px;}
.yab{bottom:561.135000px;}
.y87{bottom:566.535000px;}
.y21{bottom:569.055000px;}
.y59{bottom:570.135000px;}
.ycf{bottom:574.815000px;}
.yaa{bottom:580.935000px;}
.y86{bottom:586.515000px;}
.y20{bottom:588.855000px;}
.y58{bottom:589.935000px;}
.yce{bottom:594.795000px;}
.ya9{bottom:600.915000px;}
.y85{bottom:606.315000px;}
.y1f{bottom:608.835000px;}
.y57{bottom:609.915000px;}
.ycd{bottom:614.595000px;}
.ya8{bottom:620.715000px;}
.y84{bottom:626.115000px;}
.y1e{bottom:628.635000px;}
.y56{bottom:629.715000px;}
.ycc{bottom:634.395000px;}
.ya7{bottom:640.515000px;}
.y83{bottom:645.915000px;}
.y1d{bottom:648.435000px;}
.y55{bottom:649.545000px;}
.ycb{bottom:654.225000px;}
.ya6{bottom:660.345000px;}
.y82{bottom:665.745000px;}
.y1c{bottom:668.265000px;}
.y54{bottom:669.345000px;}
.yca{bottom:674.025000px;}
.ya5{bottom:680.145000px;}
.y81{bottom:685.725000px;}
.y1b{bottom:688.065000px;}
.y53{bottom:689.145000px;}
.yc9{bottom:694.005000px;}
.ya4{bottom:700.125000px;}
.y80{bottom:705.525000px;}
.y1a{bottom:708.045000px;}
.y52{bottom:709.125000px;}
.yc8{bottom:713.805000px;}
.ya3{bottom:719.925000px;}
.y7f{bottom:725.325000px;}
.y19{bottom:727.845000px;}
.y51{bottom:728.925000px;}
.yc7{bottom:733.605000px;}
.ya2{bottom:739.725000px;}
.y7e{bottom:745.125000px;}
.y18{bottom:747.645000px;}
.y50{bottom:748.725000px;}
.yc6{bottom:753.405000px;}
.ya1{bottom:759.525000px;}
.y7d{bottom:764.925000px;}
.y17{bottom:767.445000px;}
.y4f{bottom:768.525000px;}
.yc5{bottom:773.205000px;}
.ya0{bottom:779.325000px;}
.y7c{bottom:784.905000px;}
.y16{bottom:787.245000px;}
.y4e{bottom:788.325000px;}
.yc4{bottom:789.765000px;}
.y9f{bottom:799.305000px;}
.y7b{bottom:804.705000px;}
.y15{bottom:807.225000px;}
.y4d{bottom:808.305000px;}
.yeb{bottom:819.105000px;}
.y7a{bottom:821.265000px;}
.y14{bottom:827.025000px;}
.y4c{bottom:828.105000px;}
.yea{bottom:838.905000px;}
.y13{bottom:846.825000px;}
.y4b{bottom:847.905000px;}
.ye9{bottom:858.705000px;}
.y4a{bottom:867.705000px;}
.y12{bottom:868.965000px;}
.yf8{bottom:878.505000px;}
.y49{bottom:887.505000px;}
.y11{bottom:893.985000px;}
.yf7{bottom:898.530000px;}
.y48{bottom:907.530000px;}
.y10{bottom:913.830000px;}
.yf6{bottom:918.330000px;}
.y47{bottom:927.330000px;}
.yf{bottom:933.630000px;}
.yf5{bottom:938.130000px;}
.y46{bottom:947.130000px;}
.ye{bottom:948.930000px;}
.yf4{bottom:957.930000px;}
.y45{bottom:966.930000px;}
.yd{bottom:970.170000px;}
.yf3{bottom:977.730000px;}
.y44{bottom:986.730000px;}
.yc{bottom:993.570000px;}
.yf2{bottom:997.710000px;}
.y43{bottom:1006.710000px;}
.yf1{bottom:1017.510000px;}
.yb{bottom:1025.250000px;}
.y42{bottom:1026.510000px;}
.yf0{bottom:1037.310000px;}
.y41{bottom:1046.310000px;}
.y5{bottom:1054.050000px;}
.yef{bottom:1057.110000px;}
.y40{bottom:1066.110000px;}
.yee{bottom:1076.910000px;}
.y3f{bottom:1085.910000px;}
.y4{bottom:1087.890000px;}
.yed{bottom:1096.890000px;}
.y3e{bottom:1105.890000px;}
.yec{bottom:1116.690000px;}
.y3{bottom:1118.850000px;}
.y3d{bottom:1125.690000px;}
.y3c{bottom:1145.490000px;}
.y2{bottom:1149.660000px;}
.y3b{bottom:1165.320000px;}
.y1{bottom:1181.700000px;}
.y3a{bottom:1193.400000px;}
.h5{height:21.780000px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.hc{height:32.425313px;}
.he{height:42.164648px;}
.hd{height:43.506914px;}
.h3{height:46.736719px;}
.ha{height:49.838906px;}
.hb{height:53.224453px;}
.h2{height:54.864844px;}
.h4{height:55.243125px;}
.h8{height:65.884219px;}
.h9{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x9{left:65.699987px;}
.x10{left:80.999987px;}
.x15{left:90.035987px;}
.x23{left:108.035987px;}
.x4{left:118.296000px;}
.x12{left:123.875987px;}
.xc{left:166.349987px;}
.xf{left:246.809987px;}
.x8{left:285.519000px;}
.x7{left:290.559000px;}
.xa{left:342.254987px;}
.xe{left:357.194987px;}
.xd{left:389.954987px;}
.x14{left:400.574987px;}
.x6{left:428.649000px;}
.x5{left:442.149000px;}
.xb{left:446.504987px;}
.x11{left:473.504987px;}
.x22{left:476.024987px;}
.x1f{left:478.364987px;}
.x1c{left:479.444987px;}
.x1e{left:481.064987px;}
.x1d{left:484.664987px;}
.x24{left:500.504987px;}
.x18{left:502.124987px;}
.x17{left:506.444987px;}
.x19{left:508.424987px;}
.x25{left:527.504987px;}
.x13{left:556.494000px;}
.x20{left:636.809987px;}
.x1a{left:656.249987px;}
.x16{left:852.479987px;}
.x21{left:867.239987px;}
.x1b{left:878.579987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-1.120000pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.592000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.367467pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls10{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.168533pt;}
.lsc{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1{letter-spacing:1.232640pt;}
.ls12{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ls8{letter-spacing:58.400000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.ws5{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.592000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1399.068160pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-989.125120pt;}
._1c{margin-left:-959.973120pt;}
._1d{margin-left:-435.712000pt;}
._59{margin-left:-13.007360pt;}
._19{margin-left:-3.680000pt;}
._7{margin-left:-2.364800pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._b{width:2.649173pt;}
._e{width:3.744213pt;}
._d{width:5.337600pt;}
._a{width:6.852480pt;}
._9{width:8.021120pt;}
._29{width:8.924160pt;}
._8{width:9.905920pt;}
._c{width:10.989440pt;}
._6{width:12.343680pt;}
._11{width:14.554880pt;}
._25{width:16.309760pt;}
._24{width:17.289600pt;}
._12{width:19.042560pt;}
._13{width:20.111787pt;}
._15{width:21.248000pt;}
._16{width:22.440320pt;}
._10{width:24.195200pt;}
._22{width:25.784747pt;}
._21{width:26.984960pt;}
._1b{width:28.472320pt;}
._1a{width:29.428480pt;}
._f{width:31.208320pt;}
._2e{width:32.215680pt;}
._31{width:33.120000pt;}
._17{width:34.103040pt;}
._18{width:35.616000pt;}
._3a{width:36.652800pt;}
._1f{width:37.634560pt;}
._20{width:38.610347pt;}
._26{width:39.759360pt;}
._27{width:40.682667pt;}
._4a{width:41.572693pt;}
._33{width:42.574720pt;}
._37{width:43.505280pt;}
._14{width:44.487040pt;}
._2b{width:45.655680pt;}
._2a{width:47.011200pt;}
._36{width:48.046080pt;}
._28{width:49.055360pt;}
._2d{width:50.224000pt;}
._39{width:51.552000pt;}
._35{width:52.561280pt;}
._34{width:53.651200pt;}
._3c{width:54.713600pt;}
._40{width:55.846400pt;}
._32{width:57.235840pt;}
._30{width:58.186240pt;}
._23{width:59.413760pt;}
._42{width:60.472960pt;}
._2f{width:61.432320pt;}
._49{width:62.707200pt;}
._3b{width:64.328320pt;}
._41{width:65.868800pt;}
._38{width:66.824960pt;}
._61{width:68.039467pt;}
._3e{width:69.109120pt;}
._3d{width:70.065280pt;}
._1e{width:71.818240pt;}
._46{width:73.703040pt;}
._43{width:75.562240pt;}
._4e{width:76.750507pt;}
._5d{width:78.883200pt;}
._45{width:80.387840pt;}
._44{width:81.804800pt;}
._64{width:82.705920pt;}
._3f{width:85.151360pt;}
._47{width:88.417280pt;}
._57{width:89.585920pt;}
._4d{width:90.622720pt;}
._5b{width:95.775360pt;}
._53{width:97.209600pt;}
._52{width:98.218880pt;}
._2c{width:99.168000pt;}
._65{width:101.166080pt;}
._4c{width:102.096640pt;}
._5c{width:106.478080pt;}
._5a{width:113.968000pt;}
._58{width:118.327040pt;}
._60{width:119.360640pt;}
._51{width:122.654080pt;}
._50{width:128.257280pt;}
._63{width:136.278400pt;}
._5f{width:151.895680pt;}
._5e{width:152.985600pt;}
._66{width:155.720320pt;}
._62{width:158.085120pt;}
._56{width:172.320640pt;}
._48{width:185.920000pt;}
._54{width:292.716800pt;}
._4b{width:305.359360pt;}
._4f{width:765.688960pt;}
._55{width:846.042240pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:10.240000pt;}
.y8{bottom:10.880000pt;}
.ya{bottom:32.640000pt;}
.y6{bottom:46.560000pt;}
.ye8{bottom:70.080000pt;}
.yc3{bottom:75.680000pt;}
.y79{bottom:78.080000pt;}
.y39{bottom:80.640000pt;}
.y74{bottom:83.520000pt;}
.y71{bottom:83.680000pt;}
.ye7{bottom:87.840000pt;}
.yc2{bottom:93.280000pt;}
.y78{bottom:95.840000pt;}
.y9e{bottom:98.080000pt;}
.y38{bottom:98.240000pt;}
.y70{bottom:101.280000pt;}
.ye6{bottom:105.440000pt;}
.yc1{bottom:110.880000pt;}
.y77{bottom:113.440000pt;}
.y9d{bottom:115.680000pt;}
.y37{bottom:115.840000pt;}
.y6f{bottom:118.880000pt;}
.ye5{bottom:123.040000pt;}
.yc0{bottom:128.480000pt;}
.y76{bottom:131.040000pt;}
.y9c{bottom:133.280000pt;}
.y36{bottom:133.600000pt;}
.y6e{bottom:136.506667pt;}
.ye4{bottom:140.666667pt;}
.y75{bottom:145.786667pt;}
.ybf{bottom:146.106667pt;}
.y9b{bottom:150.906667pt;}
.y35{bottom:151.226667pt;}
.y6d{bottom:154.106667pt;}
.ye3{bottom:158.266667pt;}
.ybe{bottom:163.706667pt;}
.y9a{bottom:168.666667pt;}
.y34{bottom:168.826667pt;}
.y6c{bottom:171.706667pt;}
.ye2{bottom:176.026667pt;}
.ybd{bottom:181.466667pt;}
.y99{bottom:186.266667pt;}
.y33{bottom:186.426667pt;}
.y6b{bottom:189.466667pt;}
.ye1{bottom:193.626667pt;}
.ybc{bottom:199.066667pt;}
.y98{bottom:203.866667pt;}
.y32{bottom:204.026667pt;}
.y6a{bottom:207.066667pt;}
.ye0{bottom:211.226667pt;}
.ybb{bottom:216.666667pt;}
.y97{bottom:221.466667pt;}
.y31{bottom:221.786667pt;}
.y69{bottom:224.666667pt;}
.ydf{bottom:228.826667pt;}
.yba{bottom:234.266667pt;}
.y96{bottom:239.066667pt;}
.y30{bottom:239.386667pt;}
.y68{bottom:242.266667pt;}
.yde{bottom:246.426667pt;}
.yb9{bottom:251.866667pt;}
.y95{bottom:256.826667pt;}
.y2f{bottom:256.986667pt;}
.y67{bottom:259.866667pt;}
.ydd{bottom:264.186667pt;}
.yb8{bottom:269.626667pt;}
.y94{bottom:274.426667pt;}
.y2e{bottom:274.586667pt;}
.y73{bottom:277.466667pt;}
.y66{bottom:277.626667pt;}
.ydc{bottom:281.786667pt;}
.yb7{bottom:287.226667pt;}
.y93{bottom:292.026667pt;}
.y2d{bottom:292.186667pt;}
.y72{bottom:292.346667pt;}
.y65{bottom:295.226667pt;}
.ydb{bottom:299.386667pt;}
.yb6{bottom:304.826667pt;}
.y92{bottom:309.626667pt;}
.y2c{bottom:309.946667pt;}
.y64{bottom:312.826667pt;}
.yda{bottom:316.986667pt;}
.yb5{bottom:322.426667pt;}
.y91{bottom:327.226667pt;}
.y2b{bottom:327.546667pt;}
.y63{bottom:330.426667pt;}
.yd9{bottom:334.586667pt;}
.yb4{bottom:340.026667pt;}
.y90{bottom:344.986667pt;}
.y2a{bottom:345.146667pt;}
.y62{bottom:348.026667pt;}
.yd8{bottom:352.346667pt;}
.yb3{bottom:357.826667pt;}
.y8f{bottom:362.626667pt;}
.y29{bottom:362.786667pt;}
.y61{bottom:365.826667pt;}
.yd7{bottom:369.986667pt;}
.yb2{bottom:375.426667pt;}
.y8e{bottom:380.226667pt;}
.y28{bottom:380.386667pt;}
.y60{bottom:383.426667pt;}
.yd6{bottom:387.586667pt;}
.yb1{bottom:393.026667pt;}
.y8d{bottom:397.826667pt;}
.y27{bottom:398.146667pt;}
.y5f{bottom:401.026667pt;}
.yd5{bottom:405.186667pt;}
.yb0{bottom:410.626667pt;}
.y8c{bottom:415.426667pt;}
.y26{bottom:417.666667pt;}
.y5e{bottom:418.626667pt;}
.yd4{bottom:422.786667pt;}
.yaf{bottom:428.226667pt;}
.y8b{bottom:433.186667pt;}
.y25{bottom:435.266667pt;}
.y5d{bottom:436.226667pt;}
.yd3{bottom:440.546667pt;}
.yae{bottom:445.986667pt;}
.y8a{bottom:450.786667pt;}
.y24{bottom:453.026667pt;}
.y5c{bottom:453.986667pt;}
.yd2{bottom:458.146667pt;}
.yad{bottom:463.586667pt;}
.y89{bottom:468.386667pt;}
.y23{bottom:470.626667pt;}
.y5b{bottom:471.586667pt;}
.yd1{bottom:475.746667pt;}
.yac{bottom:481.186667pt;}
.y88{bottom:485.986667pt;}
.y22{bottom:488.226667pt;}
.y5a{bottom:489.186667pt;}
.yd0{bottom:493.346667pt;}
.yab{bottom:498.786667pt;}
.y87{bottom:503.586667pt;}
.y21{bottom:505.826667pt;}
.y59{bottom:506.786667pt;}
.ycf{bottom:510.946667pt;}
.yaa{bottom:516.386667pt;}
.y86{bottom:521.346667pt;}
.y20{bottom:523.426667pt;}
.y58{bottom:524.386667pt;}
.yce{bottom:528.706667pt;}
.ya9{bottom:534.146667pt;}
.y85{bottom:538.946667pt;}
.y1f{bottom:541.186667pt;}
.y57{bottom:542.146667pt;}
.ycd{bottom:546.306667pt;}
.ya8{bottom:551.746667pt;}
.y84{bottom:556.546667pt;}
.y1e{bottom:558.786667pt;}
.y56{bottom:559.746667pt;}
.ycc{bottom:563.906667pt;}
.ya7{bottom:569.346667pt;}
.y83{bottom:574.146667pt;}
.y1d{bottom:576.386667pt;}
.y55{bottom:577.373333pt;}
.ycb{bottom:581.533333pt;}
.ya6{bottom:586.973333pt;}
.y82{bottom:591.773333pt;}
.y1c{bottom:594.013333pt;}
.y54{bottom:594.973333pt;}
.yca{bottom:599.133333pt;}
.ya5{bottom:604.573333pt;}
.y81{bottom:609.533333pt;}
.y1b{bottom:611.613333pt;}
.y53{bottom:612.573333pt;}
.yc9{bottom:616.893333pt;}
.ya4{bottom:622.333333pt;}
.y80{bottom:627.133333pt;}
.y1a{bottom:629.373333pt;}
.y52{bottom:630.333333pt;}
.yc8{bottom:634.493333pt;}
.ya3{bottom:639.933333pt;}
.y7f{bottom:644.733333pt;}
.y19{bottom:646.973333pt;}
.y51{bottom:647.933333pt;}
.yc7{bottom:652.093333pt;}
.ya2{bottom:657.533333pt;}
.y7e{bottom:662.333333pt;}
.y18{bottom:664.573333pt;}
.y50{bottom:665.533333pt;}
.yc6{bottom:669.693333pt;}
.ya1{bottom:675.133333pt;}
.y7d{bottom:679.933333pt;}
.y17{bottom:682.173333pt;}
.y4f{bottom:683.133333pt;}
.yc5{bottom:687.293333pt;}
.ya0{bottom:692.733333pt;}
.y7c{bottom:697.693333pt;}
.y16{bottom:699.773333pt;}
.y4e{bottom:700.733333pt;}
.yc4{bottom:702.013333pt;}
.y9f{bottom:710.493333pt;}
.y7b{bottom:715.293333pt;}
.y15{bottom:717.533333pt;}
.y4d{bottom:718.493333pt;}
.yeb{bottom:728.093333pt;}
.y7a{bottom:730.013333pt;}
.y14{bottom:735.133333pt;}
.y4c{bottom:736.093333pt;}
.yea{bottom:745.693333pt;}
.y13{bottom:752.733333pt;}
.y4b{bottom:753.693333pt;}
.ye9{bottom:763.293333pt;}
.y4a{bottom:771.293333pt;}
.y12{bottom:772.413333pt;}
.yf8{bottom:780.893333pt;}
.y49{bottom:788.893333pt;}
.y11{bottom:794.653333pt;}
.yf7{bottom:798.693333pt;}
.y48{bottom:806.693333pt;}
.y10{bottom:812.293333pt;}
.yf6{bottom:816.293333pt;}
.y47{bottom:824.293333pt;}
.yf{bottom:829.893333pt;}
.yf5{bottom:833.893333pt;}
.y46{bottom:841.893333pt;}
.ye{bottom:843.493333pt;}
.yf4{bottom:851.493333pt;}
.y45{bottom:859.493333pt;}
.yd{bottom:862.373333pt;}
.yf3{bottom:869.093333pt;}
.y44{bottom:877.093333pt;}
.yc{bottom:883.173333pt;}
.yf2{bottom:886.853333pt;}
.y43{bottom:894.853333pt;}
.yf1{bottom:904.453333pt;}
.yb{bottom:911.333333pt;}
.y42{bottom:912.453333pt;}
.yf0{bottom:922.053333pt;}
.y41{bottom:930.053333pt;}
.y5{bottom:936.933333pt;}
.yef{bottom:939.653333pt;}
.y40{bottom:947.653333pt;}
.yee{bottom:957.253333pt;}
.y3f{bottom:965.253333pt;}
.y4{bottom:967.013333pt;}
.yed{bottom:975.013333pt;}
.y3e{bottom:983.013333pt;}
.yec{bottom:992.613333pt;}
.y3{bottom:994.533333pt;}
.y3d{bottom:1000.613333pt;}
.y3c{bottom:1018.213333pt;}
.y2{bottom:1021.920000pt;}
.y3b{bottom:1035.840000pt;}
.y1{bottom:1050.400000pt;}
.y3a{bottom:1060.800000pt;}
.h5{height:19.360000pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.hc{height:28.822500pt;}
.he{height:37.479688pt;}
.hd{height:38.672812pt;}
.h3{height:41.543750pt;}
.ha{height:44.301250pt;}
.hb{height:47.310625pt;}
.h2{height:48.768750pt;}
.h4{height:49.105000pt;}
.h8{height:58.563750pt;}
.h9{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x9{left:58.399988pt;}
.x10{left:71.999988pt;}
.x15{left:80.031988pt;}
.x23{left:96.031988pt;}
.x4{left:105.152000pt;}
.x12{left:110.111988pt;}
.xc{left:147.866655pt;}
.xf{left:219.386655pt;}
.x8{left:253.794667pt;}
.x7{left:258.274667pt;}
.xa{left:304.226655pt;}
.xe{left:317.506655pt;}
.xd{left:346.626655pt;}
.x14{left:356.066655pt;}
.x6{left:381.021333pt;}
.x5{left:393.021333pt;}
.xb{left:396.893322pt;}
.x11{left:420.893322pt;}
.x22{left:423.133322pt;}
.x1f{left:425.213322pt;}
.x1c{left:426.173322pt;}
.x1e{left:427.613322pt;}
.x1d{left:430.813322pt;}
.x24{left:444.893322pt;}
.x18{left:446.333322pt;}
.x17{left:450.173322pt;}
.x19{left:451.933322pt;}
.x25{left:468.893322pt;}
.x13{left:494.661333pt;}
.x20{left:566.053322pt;}
.x1a{left:583.333322pt;}
.x16{left:757.759988pt;}
.x21{left:770.879988pt;}
.x1b{left:780.959988pt;}
}




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