
    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_14bb6fea388fca01040e27c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_5367a4f44e0a56c9cc030674.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_03eb6894abbb42b1bb7acd77.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fe03351fc38fb45738176035.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_d20a449cbf94e84c49fb8c39.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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;}
.lsd{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.240000px;}
.ls0{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.384000px;}
.ls8{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.600000px;}
.ls11{letter-spacing:15.720000px;}
.lsc{letter-spacing:40.920000px;}
.lsb{letter-spacing:44.520000px;}
.lsf{letter-spacing:45.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.384000px;}
.ws4{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws5{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.760000px;}
.ws6{word-spacing:-14.220000px;}
.ws3{word-spacing:-12.900000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-2.268000px;}
._0{margin-left:-1.152000px;}
._1{width:1.122000px;}
._6{width:2.286000px;}
._b{width:3.672000px;}
._9{width:4.860000px;}
._a{width:5.868000px;}
._10{width:7.056000px;}
._f{width:8.172000px;}
._d{width:9.180000px;}
._e{width:10.722000px;}
._c{width:11.988000px;}
._8{width:13.704000px;}
._11{width:16.212000px;}
._7{width:17.412000px;}
._12{width:18.672000px;}
._13{width:19.752000px;}
._16{width:21.420000px;}
._15{width:22.512000px;}
._17{width:24.300000px;}
._18{width:25.494000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1208.820000px;}
.fc4{color:transparent;}
.fc5{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:3.300000px;}
.ybe{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y3f{bottom:5.700000px;}
.y5{bottom:12.337500px;}
.yc2{bottom:20.700000px;}
.ybf{bottom:20.715000px;}
.y3e{bottom:25.200000px;}
.y3d{bottom:39.900000px;}
.y4{bottom:46.800000px;}
.y3c{bottom:57.000000px;}
.y1{bottom:57.037500px;}
.y41{bottom:74.137500px;}
.y3b{bottom:74.400000px;}
.y3{bottom:81.337500px;}
.y3a{bottom:91.545000px;}
.y39{bottom:108.930000px;}
.ye9{bottom:116.437500px;}
.y79{bottom:121.837500px;}
.ybc{bottom:123.637500px;}
.yad{bottom:125.737500px;}
.y38{bottom:126.045000px;}
.y121{bottom:126.637500px;}
.ye8{bottom:133.837500px;}
.y78{bottom:139.237500px;}
.y30{bottom:140.137500px;}
.y37{bottom:143.430000px;}
.y120{bottom:144.037500px;}
.ye7{bottom:150.930000px;}
.ybb{bottom:153.045000px;}
.yac{bottom:155.130000px;}
.y77{bottom:156.345000px;}
.y2f{bottom:157.245000px;}
.y36{bottom:160.545000px;}
.y11f{bottom:161.130000px;}
.ye6{bottom:168.330000px;}
.yab{bottom:172.530000px;}
.y2e{bottom:174.630000px;}
.y35{bottom:177.945000px;}
.y11e{bottom:178.575000px;}
.yba{bottom:182.175000px;}
.y76{bottom:185.475000px;}
.yaa{bottom:189.975000px;}
.y2d{bottom:191.175000px;}
.y34{bottom:195.045000px;}
.y11d{bottom:195.675000px;}
.y75{bottom:202.875000px;}
.y2c{bottom:205.575000px;}
.ya9{bottom:207.075000px;}
.yb9{bottom:211.575000px;}
.y33{bottom:212.430000px;}
.y11c{bottom:213.075000px;}
.ye5{bottom:219.975000px;}
.y74{bottom:220.275000px;}
.y2b{bottom:222.975000px;}
.ya8{bottom:224.475000px;}
.y32{bottom:230.130000px;}
.y11b{bottom:230.175000px;}
.y73{bottom:237.375000px;}
.y2a{bottom:240.075000px;}
.yb8{bottom:240.675000px;}
.ya7{bottom:242.175000px;}
.y11a{bottom:247.575000px;}
.ye4{bottom:254.475000px;}
.y72{bottom:254.775000px;}
.y29{bottom:257.475000px;}
.yb7{bottom:258.375000px;}
.y119{bottom:264.675000px;}
.y71{bottom:271.875000px;}
.y28{bottom:274.575000px;}
.yb6{bottom:275.475000px;}
.ya6{bottom:276.975000px;}
.y118{bottom:282.075000px;}
.ye3{bottom:288.975000px;}
.y70{bottom:289.275000px;}
.y27{bottom:291.075000px;}
.ya5{bottom:294.675000px;}
.y117{bottom:299.175000px;}
.y26{bottom:305.775000px;}
.ye2{bottom:306.375000px;}
.yb5{bottom:307.575000px;}
.ya4{bottom:311.775000px;}
.y116{bottom:316.575000px;}
.y6f{bottom:318.075000px;}
.y25{bottom:322.875000px;}
.ye1{bottom:324.075000px;}
.ya3{bottom:329.175000px;}
.yb4{bottom:333.675000px;}
.y6e{bottom:335.775000px;}
.y24{bottom:340.275000px;}
.ye0{bottom:343.575000px;}
.ya2{bottom:346.320000px;}
.y115{bottom:351.105000px;}
.y6d{bottom:352.920000px;}
.y23{bottom:357.405000px;}
.ydf{bottom:358.005000px;}
.ya1{bottom:363.705000px;}
.y114{bottom:368.205000px;}
.y6c{bottom:370.320000px;}
.y22{bottom:374.820000px;}
.yde{bottom:375.420000px;}
.y113{bottom:385.605000px;}
.y6b{bottom:387.420000px;}
.y21{bottom:391.905000px;}
.ya0{bottom:392.520000px;}
.y112{bottom:402.720000px;}
.y6a{bottom:404.820000px;}
.y20{bottom:408.420000px;}
.y9f{bottom:410.205000px;}
.y111{bottom:420.120000px;}
.ydd{bottom:421.620000px;}
.y1f{bottom:423.120000px;}
.y9e{bottom:427.320000px;}
.y69{bottom:433.620000px;}
.y110{bottom:437.205000px;}
.ydc{bottom:439.005000px;}
.y1e{bottom:440.205000px;}
.y9d{bottom:444.720000px;}
.y68{bottom:451.320000px;}
.y10f{bottom:454.620000px;}
.ydb{bottom:456.420000px;}
.y1d{bottom:457.620000px;}
.y9c{bottom:461.820000px;}
.y67{bottom:468.420000px;}
.y10e{bottom:471.720000px;}
.yda{bottom:473.505000px;}
.y1c{bottom:474.705000px;}
.y9b{bottom:479.205000px;}
.y66{bottom:485.820000px;}
.y10d{bottom:489.120000px;}
.yd9{bottom:490.920000px;}
.y1b{bottom:492.120000px;}
.y65{bottom:502.920000px;}
.y10c{bottom:506.205000px;}
.y9a{bottom:508.020000px;}
.y1a{bottom:509.820000px;}
.yd8{bottom:519.750000px;}
.y64{bottom:520.350000px;}
.y10b{bottom:523.650000px;}
.y99{bottom:525.750000px;}
.y19{bottom:529.950000px;}
.y63{bottom:537.450000px;}
.y10a{bottom:540.750000px;}
.y98{bottom:542.850000px;}
.yd7{bottom:554.550000px;}
.y109{bottom:558.150000px;}
.y97{bottom:560.250000px;}
.y62{bottom:566.550000px;}
.yd6{bottom:571.950000px;}
.y108{bottom:575.250000px;}
.y96{bottom:577.350000px;}
.y61{bottom:583.950000px;}
.y107{bottom:592.650000px;}
.y95{bottom:594.750000px;}
.y31{bottom:600.450000px;}
.yd5{bottom:600.750000px;}
.y60{bottom:601.350000px;}
.y106{bottom:609.750000px;}
.y94{bottom:611.850000px;}
.y5f{bottom:618.450000px;}
.y105{bottom:627.150000px;}
.yd4{bottom:635.550000px;}
.y5e{bottom:635.850000px;}
.y93{bottom:640.950000px;}
.y104{bottom:644.250000px;}
.y5d{bottom:652.950000px;}
.yb3{bottom:654.750000px;}
.y92{bottom:658.350000px;}
.y103{bottom:661.650000px;}
.y91{bottom:675.750000px;}
.y102{bottom:678.750000px;}
.yd3{bottom:681.795000px;}
.y5c{bottom:682.095000px;}
.yb2{bottom:684.195000px;}
.y90{bottom:693.495000px;}
.y101{bottom:696.195000px;}
.y5b{bottom:699.495000px;}
.yb1{bottom:701.580000px;}
.y100{bottom:713.280000px;}
.y5a{bottom:716.880000px;}
.y8f{bottom:725.280000px;}
.yd2{bottom:728.280000px;}
.yb0{bottom:730.695000px;}
.y59{bottom:733.995000px;}
.y8e{bottom:742.995000px;}
.yd1{bottom:745.995000px;}
.yff{bottom:747.795000px;}
.y58{bottom:751.395000px;}
.yaf{bottom:756.780000px;}
.y8d{bottom:760.095000px;}
.yd0{bottom:763.095000px;}
.yfe{bottom:765.195000px;}
.y57{bottom:768.495000px;}
.y8c{bottom:777.480000px;}
.ycf{bottom:780.495000px;}
.yfd{bottom:782.295000px;}
.y56{bottom:786.195000px;}
.y8b{bottom:794.580000px;}
.yce{bottom:797.580000px;}
.yfc{bottom:799.695000px;}
.y55{bottom:806.580000px;}
.y8a{bottom:811.995000px;}
.ycd{bottom:814.995000px;}
.yfb{bottom:816.795000px;}
.y54{bottom:823.695000px;}
.y89{bottom:829.080000px;}
.ycc{bottom:832.080000px;}
.yfa{bottom:834.195000px;}
.y53{bottom:841.080000px;}
.y88{bottom:846.495000px;}
.ycb{bottom:849.525000px;}
.yf9{bottom:851.325000px;}
.y52{bottom:857.625000px;}
.y87{bottom:863.625000px;}
.yca{bottom:867.225000px;}
.yf8{bottom:868.725000px;}
.y51{bottom:872.025000px;}
.y18{bottom:877.425000px;}
.y12e{bottom:882.525000px;}
.yf7{bottom:885.825000px;}
.yc9{bottom:886.725000px;}
.y50{bottom:889.425000px;}
.y86{bottom:892.725000px;}
.y12d{bottom:899.625000px;}
.y17{bottom:900.225000px;}
.yc8{bottom:901.125000px;}
.yf6{bottom:903.225000px;}
.y4f{bottom:906.525000px;}
.y85{bottom:910.125000px;}
.y12c{bottom:917.025000px;}
.yc7{bottom:918.525000px;}
.y16{bottom:918.825000px;}
.yf5{bottom:920.325000px;}
.y4e{bottom:923.925000px;}
.y84{bottom:927.525000px;}
.y12b{bottom:934.125000px;}
.yc6{bottom:935.625000px;}
.y15{bottom:937.425000px;}
.yf4{bottom:937.725000px;}
.y4d{bottom:941.025000px;}
.y83{bottom:944.625000px;}
.y12a{bottom:951.525000px;}
.yc5{bottom:953.025000px;}
.y14{bottom:954.525000px;}
.yf3{bottom:954.825000px;}
.y4c{bottom:958.425000px;}
.y82{bottom:962.025000px;}
.y129{bottom:968.625000px;}
.y13{bottom:970.125000px;}
.yf2{bottom:972.225000px;}
.y4b{bottom:975.525000px;}
.yc4{bottom:984.825000px;}
.y12{bottom:986.025000px;}
.yf1{bottom:989.325000px;}
.y81{bottom:990.825000px;}
.y4a{bottom:992.925000px;}
.y128{bottom:1003.125000px;}
.y11{bottom:1007.025000px;}
.y80{bottom:1008.525000px;}
.y49{bottom:1009.425000px;}
.yc3{bottom:1019.955000px;}
.y127{bottom:1020.570000px;}
.y48{bottom:1023.870000px;}
.y7f{bottom:1025.670000px;}
.yf0{bottom:1026.570000px;}
.y10{bottom:1028.370000px;}
.y126{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y47{bottom:1041.255000px;}
.y7e{bottom:1043.070000px;}
.y125{bottom:1055.070000px;}
.yc0{bottom:1055.370000px;}
.yef{bottom:1056.870000px;}
.y46{bottom:1058.370000px;}
.y7d{bottom:1060.170000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.yee{bottom:1068.870000px;}
.y124{bottom:1072.170000px;}
.y45{bottom:1075.755000px;}
.y7c{bottom:1077.570000px;}
.ya{bottom:1083.570000px;}
.yed{bottom:1085.955000px;}
.y123{bottom:1089.570000px;}
.ybd{bottom:1090.455000px;}
.y44{bottom:1092.870000px;}
.y7b{bottom:1094.670000px;}
.y9{bottom:1097.955000px;}
.yec{bottom:1103.370000px;}
.y122{bottom:1106.670000px;}
.y43{bottom:1109.370000px;}
.y8{bottom:1115.670000px;}
.yeb{bottom:1120.455000px;}
.y7a{bottom:1123.755000px;}
.y42{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yea{bottom:1138.170000px;}
.yae{bottom:1140.870000px;}
.y6{bottom:1141.170000px;}
.y40{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.h19{height:25.136719px;}
.hf{height:33.515625px;}
.h7{height:33.867188px;}
.h16{height:34.485000px;}
.h15{height:34.500000px;}
.h17{height:34.537500px;}
.h13{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.he{height:41.894531px;}
.h4{height:42.333984px;}
.h18{height:43.681641px;}
.h14{height:44.507812px;}
.h12{height:49.453125px;}
.hc{height:50.273438px;}
.h6{height:50.800781px;}
.h11{height:51.996094px;}
.hb{height:55.034180px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h10{height:246.630000px;}
.h0{height:1263.000000px;}
.w8{width:64.800000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.wb{width:139.875000px;}
.wc{width:153.645000px;}
.wa{width:160.830000px;}
.w9{width:225.075000px;}
.w6{width:253.875000px;}
.w5{width:483.450000px;}
.w7{width:730.425000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.800000px;}
.x27{left:9.000000px;}
.x2{left:10.799998px;}
.x2c{left:13.200000px;}
.x21{left:15.000000px;}
.x14{left:16.200000px;}
.x3{left:22.200000px;}
.x24{left:24.030000px;}
.x4{left:27.600000px;}
.x25{left:34.530000px;}
.x2d{left:39.637500px;}
.x2a{left:46.245000px;}
.x28{left:49.500000px;}
.x2e{left:51.630000px;}
.x22{left:54.030000px;}
.x2b{left:55.200000px;}
.x2f{left:56.700000px;}
.x1d{left:73.237500px;}
.xb{left:78.037500px;}
.x1{left:81.037487px;}
.x29{left:92.437500px;}
.xf{left:93.637487px;}
.x31{left:108.037487px;}
.x12{left:114.037487px;}
.xe{left:117.330000px;}
.x30{left:131.437487px;}
.x1f{left:138.637500px;}
.x9{left:153.629987px;}
.x18{left:227.174987px;}
.xc{left:241.582500px;}
.x16{left:272.174987px;}
.x19{left:274.574987px;}
.x13{left:289.274987px;}
.x1c{left:303.719987px;}
.x1b{left:305.519987px;}
.x10{left:353.519987px;}
.x20{left:364.320000px;}
.x6{left:393.719987px;}
.x11{left:446.549987px;}
.x23{left:525.750000px;}
.xd{left:561.495000px;}
.x15{left:594.479987px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x26{left:666.525000px;}
.x1a{left:681.824987px;}
.x5{left:697.124987px;}
.x17{left:728.024987px;}
.xa{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.341333pt;}
.ls8{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.533333pt;}
.ls11{letter-spacing:13.973333pt;}
.lsc{letter-spacing:36.373333pt;}
.lsb{letter-spacing:39.573333pt;}
.lsf{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws4{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.120000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws3{word-spacing:-11.466667pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-2.016000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.997333pt;}
._6{width:2.032000pt;}
._b{width:3.264000pt;}
._9{width:4.320000pt;}
._a{width:5.216000pt;}
._10{width:6.272000pt;}
._f{width:7.264000pt;}
._d{width:8.160000pt;}
._e{width:9.530667pt;}
._c{width:10.656000pt;}
._8{width:12.181333pt;}
._11{width:14.410667pt;}
._7{width:15.477333pt;}
._12{width:16.597333pt;}
._13{width:17.557333pt;}
._16{width:19.040000pt;}
._15{width:20.010667pt;}
._17{width:21.600000pt;}
._18{width:22.661333pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1074.506667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:2.933333pt;}
.ybe{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y3f{bottom:5.066667pt;}
.y5{bottom:10.966667pt;}
.yc2{bottom:18.400000pt;}
.ybf{bottom:18.413333pt;}
.y3e{bottom:22.400000pt;}
.y3d{bottom:35.466667pt;}
.y4{bottom:41.600000pt;}
.y3c{bottom:50.666667pt;}
.y1{bottom:50.700000pt;}
.y41{bottom:65.900000pt;}
.y3b{bottom:66.133333pt;}
.y3{bottom:72.300000pt;}
.y3a{bottom:81.373333pt;}
.y39{bottom:96.826667pt;}
.ye9{bottom:103.500000pt;}
.y79{bottom:108.300000pt;}
.ybc{bottom:109.900000pt;}
.yad{bottom:111.766667pt;}
.y38{bottom:112.040000pt;}
.y121{bottom:112.566667pt;}
.ye8{bottom:118.966667pt;}
.y78{bottom:123.766667pt;}
.y30{bottom:124.566667pt;}
.y37{bottom:127.493333pt;}
.y120{bottom:128.033333pt;}
.ye7{bottom:134.160000pt;}
.ybb{bottom:136.040000pt;}
.yac{bottom:137.893333pt;}
.y77{bottom:138.973333pt;}
.y2f{bottom:139.773333pt;}
.y36{bottom:142.706667pt;}
.y11f{bottom:143.226667pt;}
.ye6{bottom:149.626667pt;}
.yab{bottom:153.360000pt;}
.y2e{bottom:155.226667pt;}
.y35{bottom:158.173333pt;}
.y11e{bottom:158.733333pt;}
.yba{bottom:161.933333pt;}
.y76{bottom:164.866667pt;}
.yaa{bottom:168.866667pt;}
.y2d{bottom:169.933333pt;}
.y34{bottom:173.373333pt;}
.y11d{bottom:173.933333pt;}
.y75{bottom:180.333333pt;}
.y2c{bottom:182.733333pt;}
.ya9{bottom:184.066667pt;}
.yb9{bottom:188.066667pt;}
.y33{bottom:188.826667pt;}
.y11c{bottom:189.400000pt;}
.ye5{bottom:195.533333pt;}
.y74{bottom:195.800000pt;}
.y2b{bottom:198.200000pt;}
.ya8{bottom:199.533333pt;}
.y32{bottom:204.560000pt;}
.y11b{bottom:204.600000pt;}
.y73{bottom:211.000000pt;}
.y2a{bottom:213.400000pt;}
.yb8{bottom:213.933333pt;}
.ya7{bottom:215.266667pt;}
.y11a{bottom:220.066667pt;}
.ye4{bottom:226.200000pt;}
.y72{bottom:226.466667pt;}
.y29{bottom:228.866667pt;}
.yb7{bottom:229.666667pt;}
.y119{bottom:235.266667pt;}
.y71{bottom:241.666667pt;}
.y28{bottom:244.066667pt;}
.yb6{bottom:244.866667pt;}
.ya6{bottom:246.200000pt;}
.y118{bottom:250.733333pt;}
.ye3{bottom:256.866667pt;}
.y70{bottom:257.133333pt;}
.y27{bottom:258.733333pt;}
.ya5{bottom:261.933333pt;}
.y117{bottom:265.933333pt;}
.y26{bottom:271.800000pt;}
.ye2{bottom:272.333333pt;}
.yb5{bottom:273.400000pt;}
.ya4{bottom:277.133333pt;}
.y116{bottom:281.400000pt;}
.y6f{bottom:282.733333pt;}
.y25{bottom:287.000000pt;}
.ye1{bottom:288.066667pt;}
.ya3{bottom:292.600000pt;}
.yb4{bottom:296.600000pt;}
.y6e{bottom:298.466667pt;}
.y24{bottom:302.466667pt;}
.ye0{bottom:305.400000pt;}
.ya2{bottom:307.840000pt;}
.y115{bottom:312.093333pt;}
.y6d{bottom:313.706667pt;}
.y23{bottom:317.693333pt;}
.ydf{bottom:318.226667pt;}
.ya1{bottom:323.293333pt;}
.y114{bottom:327.293333pt;}
.y6c{bottom:329.173333pt;}
.y22{bottom:333.173333pt;}
.yde{bottom:333.706667pt;}
.y113{bottom:342.760000pt;}
.y6b{bottom:344.373333pt;}
.y21{bottom:348.360000pt;}
.ya0{bottom:348.906667pt;}
.y112{bottom:357.973333pt;}
.y6a{bottom:359.840000pt;}
.y20{bottom:363.040000pt;}
.y9f{bottom:364.626667pt;}
.y111{bottom:373.440000pt;}
.ydd{bottom:374.773333pt;}
.y1f{bottom:376.106667pt;}
.y9e{bottom:379.840000pt;}
.y69{bottom:385.440000pt;}
.y110{bottom:388.626667pt;}
.ydc{bottom:390.226667pt;}
.y1e{bottom:391.293333pt;}
.y9d{bottom:395.306667pt;}
.y68{bottom:401.173333pt;}
.y10f{bottom:404.106667pt;}
.ydb{bottom:405.706667pt;}
.y1d{bottom:406.773333pt;}
.y9c{bottom:410.506667pt;}
.y67{bottom:416.373333pt;}
.y10e{bottom:419.306667pt;}
.yda{bottom:420.893333pt;}
.y1c{bottom:421.960000pt;}
.y9b{bottom:425.960000pt;}
.y66{bottom:431.840000pt;}
.y10d{bottom:434.773333pt;}
.yd9{bottom:436.373333pt;}
.y1b{bottom:437.440000pt;}
.y65{bottom:447.040000pt;}
.y10c{bottom:449.960000pt;}
.y9a{bottom:451.573333pt;}
.y1a{bottom:453.173333pt;}
.yd8{bottom:462.000000pt;}
.y64{bottom:462.533333pt;}
.y10b{bottom:465.466667pt;}
.y99{bottom:467.333333pt;}
.y19{bottom:471.066667pt;}
.y63{bottom:477.733333pt;}
.y10a{bottom:480.666667pt;}
.y98{bottom:482.533333pt;}
.yd7{bottom:492.933333pt;}
.y109{bottom:496.133333pt;}
.y97{bottom:498.000000pt;}
.y62{bottom:503.600000pt;}
.yd6{bottom:508.400000pt;}
.y108{bottom:511.333333pt;}
.y96{bottom:513.200000pt;}
.y61{bottom:519.066667pt;}
.y107{bottom:526.800000pt;}
.y95{bottom:528.666667pt;}
.y31{bottom:533.733333pt;}
.yd5{bottom:534.000000pt;}
.y60{bottom:534.533333pt;}
.y106{bottom:542.000000pt;}
.y94{bottom:543.866667pt;}
.y5f{bottom:549.733333pt;}
.y105{bottom:557.466667pt;}
.yd4{bottom:564.933333pt;}
.y5e{bottom:565.200000pt;}
.y93{bottom:569.733333pt;}
.y104{bottom:572.666667pt;}
.y5d{bottom:580.400000pt;}
.yb3{bottom:582.000000pt;}
.y92{bottom:585.200000pt;}
.y103{bottom:588.133333pt;}
.y91{bottom:600.666667pt;}
.y102{bottom:603.333333pt;}
.yd3{bottom:606.040000pt;}
.y5c{bottom:606.306667pt;}
.yb2{bottom:608.173333pt;}
.y90{bottom:616.440000pt;}
.y101{bottom:618.840000pt;}
.y5b{bottom:621.773333pt;}
.yb1{bottom:623.626667pt;}
.y100{bottom:634.026667pt;}
.y5a{bottom:637.226667pt;}
.y8f{bottom:644.693333pt;}
.yd2{bottom:647.360000pt;}
.yb0{bottom:649.506667pt;}
.y59{bottom:652.440000pt;}
.y8e{bottom:660.440000pt;}
.yd1{bottom:663.106667pt;}
.yff{bottom:664.706667pt;}
.y58{bottom:667.906667pt;}
.yaf{bottom:672.693333pt;}
.y8d{bottom:675.640000pt;}
.yd0{bottom:678.306667pt;}
.yfe{bottom:680.173333pt;}
.y57{bottom:683.106667pt;}
.y8c{bottom:691.093333pt;}
.ycf{bottom:693.773333pt;}
.yfd{bottom:695.373333pt;}
.y56{bottom:698.840000pt;}
.y8b{bottom:706.293333pt;}
.yce{bottom:708.960000pt;}
.yfc{bottom:710.840000pt;}
.y55{bottom:716.960000pt;}
.y8a{bottom:721.773333pt;}
.ycd{bottom:724.440000pt;}
.yfb{bottom:726.040000pt;}
.y54{bottom:732.173333pt;}
.y89{bottom:736.960000pt;}
.ycc{bottom:739.626667pt;}
.yfa{bottom:741.506667pt;}
.y53{bottom:747.626667pt;}
.y88{bottom:752.440000pt;}
.ycb{bottom:755.133333pt;}
.yf9{bottom:756.733333pt;}
.y52{bottom:762.333333pt;}
.y87{bottom:767.666667pt;}
.yca{bottom:770.866667pt;}
.yf8{bottom:772.200000pt;}
.y51{bottom:775.133333pt;}
.y18{bottom:779.933333pt;}
.y12e{bottom:784.466667pt;}
.yf7{bottom:787.400000pt;}
.yc9{bottom:788.200000pt;}
.y50{bottom:790.600000pt;}
.y86{bottom:793.533333pt;}
.y12d{bottom:799.666667pt;}
.y17{bottom:800.200000pt;}
.yc8{bottom:801.000000pt;}
.yf6{bottom:802.866667pt;}
.y4f{bottom:805.800000pt;}
.y85{bottom:809.000000pt;}
.y12c{bottom:815.133333pt;}
.yc7{bottom:816.466667pt;}
.y16{bottom:816.733333pt;}
.yf5{bottom:818.066667pt;}
.y4e{bottom:821.266667pt;}
.y84{bottom:824.466667pt;}
.y12b{bottom:830.333333pt;}
.yc6{bottom:831.666667pt;}
.y15{bottom:833.266667pt;}
.yf4{bottom:833.533333pt;}
.y4d{bottom:836.466667pt;}
.y83{bottom:839.666667pt;}
.y12a{bottom:845.800000pt;}
.yc5{bottom:847.133333pt;}
.y14{bottom:848.466667pt;}
.yf3{bottom:848.733333pt;}
.y4c{bottom:851.933333pt;}
.y82{bottom:855.133333pt;}
.y129{bottom:861.000000pt;}
.y13{bottom:862.333333pt;}
.yf2{bottom:864.200000pt;}
.y4b{bottom:867.133333pt;}
.yc4{bottom:875.400000pt;}
.y12{bottom:876.466667pt;}
.yf1{bottom:879.400000pt;}
.y81{bottom:880.733333pt;}
.y4a{bottom:882.600000pt;}
.y128{bottom:891.666667pt;}
.y11{bottom:895.133333pt;}
.y80{bottom:896.466667pt;}
.y49{bottom:897.266667pt;}
.yc3{bottom:906.626667pt;}
.y127{bottom:907.173333pt;}
.y48{bottom:910.106667pt;}
.y7f{bottom:911.706667pt;}
.yf0{bottom:912.506667pt;}
.y10{bottom:914.106667pt;}
.y126{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y47{bottom:925.560000pt;}
.y7e{bottom:927.173333pt;}
.y125{bottom:937.840000pt;}
.yc0{bottom:938.106667pt;}
.yef{bottom:939.440000pt;}
.y46{bottom:940.773333pt;}
.y7d{bottom:942.373333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.yee{bottom:950.106667pt;}
.y124{bottom:953.040000pt;}
.y45{bottom:956.226667pt;}
.y7c{bottom:957.840000pt;}
.ya{bottom:963.173333pt;}
.yed{bottom:965.293333pt;}
.y123{bottom:968.506667pt;}
.ybd{bottom:969.293333pt;}
.y44{bottom:971.440000pt;}
.y7b{bottom:973.040000pt;}
.y9{bottom:975.960000pt;}
.yec{bottom:980.773333pt;}
.y122{bottom:983.706667pt;}
.y43{bottom:986.106667pt;}
.y8{bottom:991.706667pt;}
.yeb{bottom:995.960000pt;}
.y7a{bottom:998.893333pt;}
.y42{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yea{bottom:1011.706667pt;}
.yae{bottom:1014.106667pt;}
.y6{bottom:1014.373333pt;}
.y40{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.h19{height:22.343750pt;}
.hf{height:29.791667pt;}
.h7{height:30.104167pt;}
.h16{height:30.653333pt;}
.h15{height:30.666667pt;}
.h17{height:30.700000pt;}
.h13{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.he{height:37.239583pt;}
.h4{height:37.630208pt;}
.h18{height:38.828125pt;}
.h14{height:39.562500pt;}
.h12{height:43.958333pt;}
.hc{height:44.687500pt;}
.h6{height:45.156250pt;}
.h11{height:46.218750pt;}
.hb{height:48.919271pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h10{height:219.226667pt;}
.h0{height:1122.666667pt;}
.w8{width:57.600000pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.wb{width:124.333333pt;}
.wc{width:136.573333pt;}
.wa{width:142.960000pt;}
.w9{width:200.066667pt;}
.w6{width:225.666667pt;}
.w5{width:429.733333pt;}
.w7{width:649.266667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.933333pt;}
.x27{left:8.000000pt;}
.x2{left:9.599999pt;}
.x2c{left:11.733333pt;}
.x21{left:13.333333pt;}
.x14{left:14.400000pt;}
.x3{left:19.733333pt;}
.x24{left:21.360000pt;}
.x4{left:24.533333pt;}
.x25{left:30.693333pt;}
.x2d{left:35.233333pt;}
.x2a{left:41.106667pt;}
.x28{left:44.000000pt;}
.x2e{left:45.893333pt;}
.x22{left:48.026667pt;}
.x2b{left:49.066667pt;}
.x2f{left:50.400000pt;}
.x1d{left:65.100000pt;}
.xb{left:69.366667pt;}
.x1{left:72.033322pt;}
.x29{left:82.166667pt;}
.xf{left:83.233322pt;}
.x31{left:96.033322pt;}
.x12{left:101.366655pt;}
.xe{left:104.293333pt;}
.x30{left:116.833322pt;}
.x1f{left:123.233333pt;}
.x9{left:136.559988pt;}
.x18{left:201.933322pt;}
.xc{left:214.740000pt;}
.x16{left:241.933322pt;}
.x19{left:244.066655pt;}
.x13{left:257.133322pt;}
.x1c{left:269.973322pt;}
.x1b{left:271.573322pt;}
.x10{left:314.239988pt;}
.x20{left:323.840000pt;}
.x6{left:349.973322pt;}
.x11{left:396.933322pt;}
.x23{left:467.333333pt;}
.xd{left:499.106667pt;}
.x15{left:528.426655pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x26{left:592.466667pt;}
.x1a{left:606.066655pt;}
.x5{left:619.666655pt;}
.x17{left:647.133322pt;}
.xa{left:722.106655pt;}
}




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