
    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_bac70386cf8428095601d77f.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_577b3df4b3a7c19661e144be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_69ab60e1b68feed0468c8ab4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_f9c8072d843a2512932ae121.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d1471d123d06cfd4cfe2a36e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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:ff8;src:url('chunks/assets/font_1d0dfe26a8ff31e853f281b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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:ff9;src:url('chunks/assets/font_70abd8af867fa33bcf7eb8d5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7ca57d2006b44a95cf62171c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;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;}
.lsa{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.058320px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.720000px;}
.ls7{letter-spacing:33.960000px;}
.lse{letter-spacing:54.840000px;}
.ls0{letter-spacing:57.029760px;}
.ls1{letter-spacing:201.209760px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws9{word-spacing:-18.576000px;}
.ws8{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws2{word-spacing:-15.228000px;}
.ws0{word-spacing:-13.447440px;}
.ws5{word-spacing:-12.240000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-9.437760px;}
.ws1{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-11.491200px;}
._6{margin-left:-5.075280px;}
._3{margin-left:-3.255840px;}
._4{margin-left:-2.106720px;}
._1{margin-left:-1.104000px;}
._0{width:1.340640px;}
._10{width:2.952000px;}
._a{width:3.960000px;}
._b{width:5.040000px;}
._13{width:6.120000px;}
._14{width:7.542720px;}
._7{width:8.856000px;}
._8{width:9.963360px;}
._9{width:11.592000px;}
._e{width:13.464000px;}
._d{width:14.544000px;}
._11{width:15.864000px;}
._21{width:16.920000px;}
._c{width:19.488000px;}
._15{width:20.547360px;}
._1a{width:21.733920px;}
._1e{width:23.158080px;}
._16{width:24.624000px;}
._f{width:25.632000px;}
._1d{width:26.928000px;}
._23{width:28.445280px;}
._1f{width:29.658720px;}
._17{width:30.816000px;}
._18{width:32.256000px;}
._19{width:33.408000px;}
._20{width:34.704000px;}
._12{width:36.144000px;}
._22{width:37.296000px;}
._26{width:38.664000px;}
._27{width:40.464000px;}
._24{width:41.904000px;}
._25{width:43.128000px;}
._1b{width:44.712000px;}
._1c{width:45.936000px;}
._2{width:66.042000px;}
._31{width:81.576000px;}
._32{width:82.872000px;}
._30{width:92.952000px;}
._2b{width:118.152000px;}
._33{width:126.432000px;}
._29{width:140.904000px;}
._2a{width:141.912000px;}
._35{width:174.024000px;}
._34{width:175.752000px;}
._2c{width:213.264000px;}
._2d{width:214.371360px;}
._2e{width:231.624000px;}
._2f{width:232.632000px;}
._28{width:846.156000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y8{bottom:15.480000px;}
.y7{bottom:33.660000px;}
.y4{bottom:40.140000px;}
.yd{bottom:42.840000px;}
.y6{bottom:52.020000px;}
.yc{bottom:59.400000px;}
.y3{bottom:61.920000px;}
.y5{bottom:70.380000px;}
.yb{bottom:74.916000px;}
.ya{bottom:90.396000px;}
.y57{bottom:119.196000px;}
.ydc{bottom:121.536000px;}
.y31{bottom:122.436000px;}
.y127{bottom:123.696000px;}
.y95{bottom:126.396000px;}
.ya4{bottom:128.016000px;}
.yb7{bottom:131.616000px;}
.y56{bottom:142.956000px;}
.ydb{bottom:145.296000px;}
.y30{bottom:146.196000px;}
.y126{bottom:147.456000px;}
.y94{bottom:150.330000px;}
.ya3{bottom:151.770000px;}
.yb6{bottom:155.370000px;}
.y101{bottom:157.530000px;}
.y55{bottom:166.890000px;}
.yda{bottom:169.050000px;}
.y2f{bottom:170.130000px;}
.y125{bottom:171.030000px;}
.y93{bottom:174.090000px;}
.ya2{bottom:175.530000px;}
.yb5{bottom:179.310000px;}
.y100{bottom:181.290000px;}
.y7d{bottom:181.830000px;}
.y54{bottom:190.650000px;}
.yd9{bottom:192.990000px;}
.y2e{bottom:193.890000px;}
.y124{bottom:196.230000px;}
.y92{bottom:197.850000px;}
.ya1{bottom:199.470000px;}
.yb4{bottom:203.070000px;}
.yff{bottom:205.050000px;}
.y71{bottom:205.590000px;}
.y53{bottom:214.410000px;}
.y2d{bottom:217.650000px;}
.y123{bottom:220.170000px;}
.y91{bottom:221.610000px;}
.ya0{bottom:223.230000px;}
.yb3{bottom:226.830000px;}
.y70{bottom:229.350000px;}
.yfe{bottom:230.250000px;}
.yd8{bottom:231.690000px;}
.y52{bottom:238.170000px;}
.y2c{bottom:241.410000px;}
.y122{bottom:243.750000px;}
.y90{bottom:245.550000px;}
.yb2{bottom:250.590000px;}
.y6f{bottom:253.290000px;}
.yfd{bottom:253.830000px;}
.yd7{bottom:255.630000px;}
.y51{bottom:262.110000px;}
.y2b{bottom:265.350000px;}
.y121{bottom:268.950000px;}
.y8f{bottom:269.310000px;}
.yb1{bottom:274.530000px;}
.y6e{bottom:277.050000px;}
.yfc{bottom:279.030000px;}
.yd6{bottom:279.390000px;}
.y50{bottom:285.870000px;}
.y2a{bottom:289.110000px;}
.y120{bottom:292.890000px;}
.y8e{bottom:293.070000px;}
.yb0{bottom:298.110000px;}
.y6d{bottom:300.810000px;}
.yfb{bottom:302.970000px;}
.yd5{bottom:303.150000px;}
.y4f{bottom:309.630000px;}
.ydd{bottom:315.795000px;}
.y11f{bottom:316.515000px;}
.y8d{bottom:316.875000px;}
.yaf{bottom:323.355000px;}
.y133{bottom:323.715000px;}
.y6c{bottom:324.615000px;}
.yfa{bottom:326.775000px;}
.yd4{bottom:326.955000px;}
.y29{bottom:327.855000px;}
.y4e{bottom:333.435000px;}
.y7c{bottom:339.735000px;}
.y8c{bottom:340.815000px;}
.y11e{bottom:341.715000px;}
.yae{bottom:347.115000px;}
.y6b{bottom:348.555000px;}
.yf9{bottom:350.355000px;}
.yd3{bottom:350.715000px;}
.y4d{bottom:357.195000px;}
.y132{bottom:362.595000px;}
.y7b{bottom:363.495000px;}
.y11d{bottom:365.475000px;}
.y28{bottom:366.735000px;}
.yad{bottom:371.055000px;}
.y6a{bottom:372.315000px;}
.yd2{bottom:374.655000px;}
.yf8{bottom:375.735000px;}
.y8b{bottom:379.515000px;}
.y4c{bottom:381.135000px;}
.y7a{bottom:387.255000px;}
.y11c{bottom:389.235000px;}
.y27{bottom:390.495000px;}
.yac{bottom:394.815000px;}
.y69{bottom:396.075000px;}
.yd1{bottom:398.415000px;}
.yf7{bottom:399.495000px;}
.y131{bottom:401.835000px;}
.y8a{bottom:403.275000px;}
.y4b{bottom:404.895000px;}
.y79{bottom:411.015000px;}
.y11b{bottom:414.435000px;}
.yab{bottom:418.575000px;}
.y68{bottom:419.835000px;}
.yd0{bottom:422.175000px;}
.yf6{bottom:423.255000px;}
.y89{bottom:427.215000px;}
.y4a{bottom:428.655000px;}
.y26{bottom:429.375000px;}
.y78{bottom:434.955000px;}
.y11a{bottom:438.195000px;}
.y130{bottom:439.635000px;}
.yaa{bottom:442.335000px;}
.y67{bottom:443.775000px;}
.ycf{bottom:445.935000px;}
.yf5{bottom:446.835000px;}
.y88{bottom:450.795000px;}
.y49{bottom:452.415000px;}
.y25{bottom:453.135000px;}
.y77{bottom:458.715000px;}
.y119{bottom:461.955000px;}
.y12f{bottom:463.395000px;}
.ya9{bottom:466.275000px;}
.y66{bottom:467.535000px;}
.yce{bottom:469.875000px;}
.yf4{bottom:472.215000px;}
.y87{bottom:475.995000px;}
.y48{bottom:476.355000px;}
.y24{bottom:476.895000px;}
.y76{bottom:482.475000px;}
.y118{bottom:487.155000px;}
.ya8{bottom:490.035000px;}
.y65{bottom:491.295000px;}
.ycd{bottom:493.455000px;}
.yf3{bottom:495.975000px;}
.y86{bottom:499.755000px;}
.y9f{bottom:500.115000px;}
.y23{bottom:500.835000px;}
.y75{bottom:506.235000px;}
.y12e{bottom:510.735000px;}
.y117{bottom:510.915000px;}
.ya7{bottom:513.795000px;}
.y47{bottom:515.055000px;}
.ycc{bottom:518.655000px;}
.yf2{bottom:519.555000px;}
.y22{bottom:524.595000px;}
.y85{bottom:524.955000px;}
.y74{bottom:530.175000px;}
.y116{bottom:534.675000px;}
.y12d{bottom:536.115000px;}
.ya6{bottom:537.555000px;}
.y64{bottom:538.815000px;}
.ycb{bottom:542.595000px;}
.yf1{bottom:544.935000px;}
.y21{bottom:548.355000px;}
.y84{bottom:548.535000px;}
.y46{bottom:553.935000px;}
.y115{bottom:559.875000px;}
.ya5{bottom:561.315000px;}
.y63{bottom:562.755000px;}
.yca{bottom:566.385000px;}
.yf0{bottom:568.725000px;}
.y20{bottom:572.145000px;}
.y83{bottom:573.945000px;}
.y45{bottom:577.725000px;}
.y12c{bottom:583.485000px;}
.y114{bottom:583.665000px;}
.y62{bottom:586.545000px;}
.yc9{bottom:590.145000px;}
.yef{bottom:592.305000px;}
.y1f{bottom:595.905000px;}
.y82{bottom:597.525000px;}
.y44{bottom:601.485000px;}
.y113{bottom:607.425000px;}
.y12b{bottom:608.865000px;}
.y9e{bottom:610.305000px;}
.yc8{bottom:613.905000px;}
.yee{bottom:617.505000px;}
.y1e{bottom:619.845000px;}
.y81{bottom:622.725000px;}
.y43{bottom:625.425000px;}
.y112{bottom:632.625000px;}
.y9d{bottom:634.065000px;}
.yc7{bottom:637.845000px;}
.yed{bottom:641.265000px;}
.y1d{bottom:643.605000px;}
.y80{bottom:646.485000px;}
.y42{bottom:649.185000px;}
.y111{bottom:656.205000px;}
.y9c{bottom:658.005000px;}
.yc6{bottom:661.605000px;}
.yec{bottom:666.465000px;}
.y1c{bottom:667.365000px;}
.y7f{bottom:671.685000px;}
.y41{bottom:672.945000px;}
.y110{bottom:681.405000px;}
.y9b{bottom:681.765000px;}
.yc5{bottom:685.365000px;}
.yeb{bottom:690.225000px;}
.y1b{bottom:691.125000px;}
.y7e{bottom:695.265000px;}
.y40{bottom:696.705000px;}
.y10f{bottom:705.345000px;}
.y9a{bottom:705.525000px;}
.yc4{bottom:709.125000px;}
.yea{bottom:713.985000px;}
.y1a{bottom:715.065000px;}
.y3f{bottom:720.465000px;}
.y12a{bottom:728.925000px;}
.y10e{bottom:729.105000px;}
.y99{bottom:729.285000px;}
.yc3{bottom:732.885000px;}
.y73{bottom:735.585000px;}
.y19{bottom:738.825000px;}
.ye9{bottom:739.185000px;}
.y3e{bottom:744.405000px;}
.y10d{bottom:752.685000px;}
.y98{bottom:753.225000px;}
.y129{bottom:754.125000px;}
.yc2{bottom:756.645000px;}
.y72{bottom:759.345000px;}
.y18{bottom:762.585000px;}
.ye8{bottom:762.945000px;}
.y61{bottom:768.165000px;}
.y97{bottom:776.985000px;}
.y10c{bottom:778.065000px;}
.yc1{bottom:781.845000px;}
.y3d{bottom:783.105000px;}
.y17{bottom:786.345000px;}
.ye7{bottom:786.705000px;}
.y60{bottom:791.925000px;}
.y96{bottom:800.745000px;}
.y10b{bottom:801.825000px;}
.yc0{bottom:805.605000px;}
.y3c{bottom:807.045000px;}
.y16{bottom:810.285000px;}
.ye6{bottom:811.905000px;}
.y5f{bottom:815.685000px;}
.y10a{bottom:825.450000px;}
.ybf{bottom:829.590000px;}
.y3b{bottom:830.850000px;}
.y15{bottom:834.090000px;}
.ye5{bottom:835.710000px;}
.y5e{bottom:839.670000px;}
.y109{bottom:850.650000px;}
.ybe{bottom:853.350000px;}
.y3a{bottom:854.610000px;}
.ye4{bottom:859.470000px;}
.y5d{bottom:863.430000px;}
.y14{bottom:872.790000px;}
.y108{bottom:874.590000px;}
.ybd{bottom:877.110000px;}
.y39{bottom:878.370000px;}
.ye3{bottom:884.670000px;}
.y5c{bottom:887.190000px;}
.y107{bottom:898.170000px;}
.ybc{bottom:900.870000px;}
.y38{bottom:902.310000px;}
.ye2{bottom:908.430000px;}
.y5b{bottom:910.950000px;}
.y13{bottom:911.670000px;}
.y106{bottom:923.370000px;}
.ybb{bottom:924.810000px;}
.y37{bottom:926.070000px;}
.ye1{bottom:932.010000px;}
.y5a{bottom:934.890000px;}
.y128{bottom:947.130000px;}
.y12{bottom:947.310000px;}
.yba{bottom:948.570000px;}
.y36{bottom:949.830000px;}
.ye0{bottom:957.390000px;}
.y59{bottom:958.650000px;}
.y11{bottom:968.010000px;}
.y105{bottom:970.890000px;}
.yb9{bottom:972.330000px;}
.y35{bottom:973.590000px;}
.ydf{bottom:981.150000px;}
.y58{bottom:982.410000px;}
.y10{bottom:988.710000px;}
.yb8{bottom:995.910000px;}
.y104{bottom:996.090000px;}
.y34{bottom:997.350000px;}
.yde{bottom:1004.730000px;}
.yf{bottom:1010.850000px;}
.y103{bottom:1020.030000px;}
.y33{bottom:1021.290000px;}
.ye{bottom:1038.930000px;}
.y102{bottom:1043.610000px;}
.y32{bottom:1045.050000px;}
.y9{bottom:1066.290000px;}
.y1{bottom:1081.980000px;}
.h6{height:40.579102px;}
.h9{height:50.800781px;}
.ha{height:52.417969px;}
.h5{height:59.439023px;}
.h7{height:64.546875px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.h8{height:81.078047px;}
.h1{height:84.780000px;}
.h3{height:95.245664px;}
.h0{height:1188.000000px;}
.w1{width:124.200000px;}
.w3{width:159.690000px;}
.w2{width:385.995000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x6{left:39.420000px;}
.x8{left:54.720000px;}
.x7{left:56.520000px;}
.x2{left:98.094000px;}
.x1{left:99.936000px;}
.x9{left:108.035986px;}
.xa{left:118.295986px;}
.xe{left:135.035986px;}
.xf{left:162.029986px;}
.xc{left:222.869986px;}
.x3{left:224.130000px;}
.xd{left:268.949986px;}
.xb{left:387.254986px;}
.x5{left:610.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls7{letter-spacing:30.186667pt;}
.lse{letter-spacing:48.746667pt;}
.ls0{letter-spacing:50.693120pt;}
.ls1{letter-spacing:178.853120pt;}
.wsa{word-spacing:-64.000000pt;}
.ws9{word-spacing:-16.512000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws2{word-spacing:-13.536000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws5{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws1{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-10.214400pt;}
._6{margin-left:-4.511360pt;}
._3{margin-left:-2.894080pt;}
._4{margin-left:-1.872640pt;}
._1{margin-left:-0.981333pt;}
._0{width:1.191680pt;}
._10{width:2.624000pt;}
._a{width:3.520000pt;}
._b{width:4.480000pt;}
._13{width:5.440000pt;}
._14{width:6.704640pt;}
._7{width:7.872000pt;}
._8{width:8.856320pt;}
._9{width:10.304000pt;}
._e{width:11.968000pt;}
._d{width:12.928000pt;}
._11{width:14.101333pt;}
._21{width:15.040000pt;}
._c{width:17.322667pt;}
._15{width:18.264320pt;}
._1a{width:19.319040pt;}
._1e{width:20.584960pt;}
._16{width:21.888000pt;}
._f{width:22.784000pt;}
._1d{width:23.936000pt;}
._23{width:25.284693pt;}
._1f{width:26.363307pt;}
._17{width:27.392000pt;}
._18{width:28.672000pt;}
._19{width:29.696000pt;}
._20{width:30.848000pt;}
._12{width:32.128000pt;}
._22{width:33.152000pt;}
._26{width:34.368000pt;}
._27{width:35.968000pt;}
._24{width:37.248000pt;}
._25{width:38.336000pt;}
._1b{width:39.744000pt;}
._1c{width:40.832000pt;}
._2{width:58.704000pt;}
._31{width:72.512000pt;}
._32{width:73.664000pt;}
._30{width:82.624000pt;}
._2b{width:105.024000pt;}
._33{width:112.384000pt;}
._29{width:125.248000pt;}
._2a{width:126.144000pt;}
._35{width:154.688000pt;}
._34{width:156.224000pt;}
._2c{width:189.568000pt;}
._2d{width:190.552320pt;}
._2e{width:205.888000pt;}
._2f{width:206.784000pt;}
._28{width:752.138667pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y8{bottom:13.760000pt;}
.y7{bottom:29.920000pt;}
.y4{bottom:35.680000pt;}
.yd{bottom:38.080000pt;}
.y6{bottom:46.240000pt;}
.yc{bottom:52.800000pt;}
.y3{bottom:55.040000pt;}
.y5{bottom:62.560000pt;}
.yb{bottom:66.592000pt;}
.ya{bottom:80.352000pt;}
.y57{bottom:105.952000pt;}
.ydc{bottom:108.032000pt;}
.y31{bottom:108.832000pt;}
.y127{bottom:109.952000pt;}
.y95{bottom:112.352000pt;}
.ya4{bottom:113.792000pt;}
.yb7{bottom:116.992000pt;}
.y56{bottom:127.072000pt;}
.ydb{bottom:129.152000pt;}
.y30{bottom:129.952000pt;}
.y126{bottom:131.072000pt;}
.y94{bottom:133.626667pt;}
.ya3{bottom:134.906667pt;}
.yb6{bottom:138.106667pt;}
.y101{bottom:140.026667pt;}
.y55{bottom:148.346667pt;}
.yda{bottom:150.266667pt;}
.y2f{bottom:151.226667pt;}
.y125{bottom:152.026667pt;}
.y93{bottom:154.746667pt;}
.ya2{bottom:156.026667pt;}
.yb5{bottom:159.386667pt;}
.y100{bottom:161.146667pt;}
.y7d{bottom:161.626667pt;}
.y54{bottom:169.466667pt;}
.yd9{bottom:171.546667pt;}
.y2e{bottom:172.346667pt;}
.y124{bottom:174.426667pt;}
.y92{bottom:175.866667pt;}
.ya1{bottom:177.306667pt;}
.yb4{bottom:180.506667pt;}
.yff{bottom:182.266667pt;}
.y71{bottom:182.746667pt;}
.y53{bottom:190.586667pt;}
.y2d{bottom:193.466667pt;}
.y123{bottom:195.706667pt;}
.y91{bottom:196.986667pt;}
.ya0{bottom:198.426667pt;}
.yb3{bottom:201.626667pt;}
.y70{bottom:203.866667pt;}
.yfe{bottom:204.666667pt;}
.yd8{bottom:205.946667pt;}
.y52{bottom:211.706667pt;}
.y2c{bottom:214.586667pt;}
.y122{bottom:216.666667pt;}
.y90{bottom:218.266667pt;}
.yb2{bottom:222.746667pt;}
.y6f{bottom:225.146667pt;}
.yfd{bottom:225.626667pt;}
.yd7{bottom:227.226667pt;}
.y51{bottom:232.986667pt;}
.y2b{bottom:235.866667pt;}
.y121{bottom:239.066667pt;}
.y8f{bottom:239.386667pt;}
.yb1{bottom:244.026667pt;}
.y6e{bottom:246.266667pt;}
.yfc{bottom:248.026667pt;}
.yd6{bottom:248.346667pt;}
.y50{bottom:254.106667pt;}
.y2a{bottom:256.986667pt;}
.y120{bottom:260.346667pt;}
.y8e{bottom:260.506667pt;}
.yb0{bottom:264.986667pt;}
.y6d{bottom:267.386667pt;}
.yfb{bottom:269.306667pt;}
.yd5{bottom:269.466667pt;}
.y4f{bottom:275.226667pt;}
.ydd{bottom:280.706667pt;}
.y11f{bottom:281.346667pt;}
.y8d{bottom:281.666667pt;}
.yaf{bottom:287.426667pt;}
.y133{bottom:287.746667pt;}
.y6c{bottom:288.546667pt;}
.yfa{bottom:290.466667pt;}
.yd4{bottom:290.626667pt;}
.y29{bottom:291.426667pt;}
.y4e{bottom:296.386667pt;}
.y7c{bottom:301.986667pt;}
.y8c{bottom:302.946667pt;}
.y11e{bottom:303.746667pt;}
.yae{bottom:308.546667pt;}
.y6b{bottom:309.826667pt;}
.yf9{bottom:311.426667pt;}
.yd3{bottom:311.746667pt;}
.y4d{bottom:317.506667pt;}
.y132{bottom:322.306667pt;}
.y7b{bottom:323.106667pt;}
.y11d{bottom:324.866667pt;}
.y28{bottom:325.986667pt;}
.yad{bottom:329.826667pt;}
.y6a{bottom:330.946667pt;}
.yd2{bottom:333.026667pt;}
.yf8{bottom:333.986667pt;}
.y8b{bottom:337.346667pt;}
.y4c{bottom:338.786667pt;}
.y7a{bottom:344.226667pt;}
.y11c{bottom:345.986667pt;}
.y27{bottom:347.106667pt;}
.yac{bottom:350.946667pt;}
.y69{bottom:352.066667pt;}
.yd1{bottom:354.146667pt;}
.yf7{bottom:355.106667pt;}
.y131{bottom:357.186667pt;}
.y8a{bottom:358.466667pt;}
.y4b{bottom:359.906667pt;}
.y79{bottom:365.346667pt;}
.y11b{bottom:368.386667pt;}
.yab{bottom:372.066667pt;}
.y68{bottom:373.186667pt;}
.yd0{bottom:375.266667pt;}
.yf6{bottom:376.226667pt;}
.y89{bottom:379.746667pt;}
.y4a{bottom:381.026667pt;}
.y26{bottom:381.666667pt;}
.y78{bottom:386.626667pt;}
.y11a{bottom:389.506667pt;}
.y130{bottom:390.786667pt;}
.yaa{bottom:393.186667pt;}
.y67{bottom:394.466667pt;}
.ycf{bottom:396.386667pt;}
.yf5{bottom:397.186667pt;}
.y88{bottom:400.706667pt;}
.y49{bottom:402.146667pt;}
.y25{bottom:402.786667pt;}
.y77{bottom:407.746667pt;}
.y119{bottom:410.626667pt;}
.y12f{bottom:411.906667pt;}
.ya9{bottom:414.466667pt;}
.y66{bottom:415.586667pt;}
.yce{bottom:417.666667pt;}
.yf4{bottom:419.746667pt;}
.y87{bottom:423.106667pt;}
.y48{bottom:423.426667pt;}
.y24{bottom:423.906667pt;}
.y76{bottom:428.866667pt;}
.y118{bottom:433.026667pt;}
.ya8{bottom:435.586667pt;}
.y65{bottom:436.706667pt;}
.ycd{bottom:438.626667pt;}
.yf3{bottom:440.866667pt;}
.y86{bottom:444.226667pt;}
.y9f{bottom:444.546667pt;}
.y23{bottom:445.186667pt;}
.y75{bottom:449.986667pt;}
.y12e{bottom:453.986667pt;}
.y117{bottom:454.146667pt;}
.ya7{bottom:456.706667pt;}
.y47{bottom:457.826667pt;}
.ycc{bottom:461.026667pt;}
.yf2{bottom:461.826667pt;}
.y22{bottom:466.306667pt;}
.y85{bottom:466.626667pt;}
.y74{bottom:471.266667pt;}
.y116{bottom:475.266667pt;}
.y12d{bottom:476.546667pt;}
.ya6{bottom:477.826667pt;}
.y64{bottom:478.946667pt;}
.ycb{bottom:482.306667pt;}
.yf1{bottom:484.386667pt;}
.y21{bottom:487.426667pt;}
.y84{bottom:487.586667pt;}
.y46{bottom:492.386667pt;}
.y115{bottom:497.666667pt;}
.ya5{bottom:498.946667pt;}
.y63{bottom:500.226667pt;}
.yca{bottom:503.453333pt;}
.yf0{bottom:505.533333pt;}
.y20{bottom:508.573333pt;}
.y83{bottom:510.173333pt;}
.y45{bottom:513.533333pt;}
.y12c{bottom:518.653333pt;}
.y114{bottom:518.813333pt;}
.y62{bottom:521.373333pt;}
.yc9{bottom:524.573333pt;}
.yef{bottom:526.493333pt;}
.y1f{bottom:529.693333pt;}
.y82{bottom:531.133333pt;}
.y44{bottom:534.653333pt;}
.y113{bottom:539.933333pt;}
.y12b{bottom:541.213333pt;}
.y9e{bottom:542.493333pt;}
.yc8{bottom:545.693333pt;}
.yee{bottom:548.893333pt;}
.y1e{bottom:550.973333pt;}
.y81{bottom:553.533333pt;}
.y43{bottom:555.933333pt;}
.y112{bottom:562.333333pt;}
.y9d{bottom:563.613333pt;}
.yc7{bottom:566.973333pt;}
.yed{bottom:570.013333pt;}
.y1d{bottom:572.093333pt;}
.y80{bottom:574.653333pt;}
.y42{bottom:577.053333pt;}
.y111{bottom:583.293333pt;}
.y9c{bottom:584.893333pt;}
.yc6{bottom:588.093333pt;}
.yec{bottom:592.413333pt;}
.y1c{bottom:593.213333pt;}
.y7f{bottom:597.053333pt;}
.y41{bottom:598.173333pt;}
.y110{bottom:605.693333pt;}
.y9b{bottom:606.013333pt;}
.yc5{bottom:609.213333pt;}
.yeb{bottom:613.533333pt;}
.y1b{bottom:614.333333pt;}
.y7e{bottom:618.013333pt;}
.y40{bottom:619.293333pt;}
.y10f{bottom:626.973333pt;}
.y9a{bottom:627.133333pt;}
.yc4{bottom:630.333333pt;}
.yea{bottom:634.653333pt;}
.y1a{bottom:635.613333pt;}
.y3f{bottom:640.413333pt;}
.y12a{bottom:647.933333pt;}
.y10e{bottom:648.093333pt;}
.y99{bottom:648.253333pt;}
.yc3{bottom:651.453333pt;}
.y73{bottom:653.853333pt;}
.y19{bottom:656.733333pt;}
.ye9{bottom:657.053333pt;}
.y3e{bottom:661.693333pt;}
.y10d{bottom:669.053333pt;}
.y98{bottom:669.533333pt;}
.y129{bottom:670.333333pt;}
.yc2{bottom:672.573333pt;}
.y72{bottom:674.973333pt;}
.y18{bottom:677.853333pt;}
.ye8{bottom:678.173333pt;}
.y61{bottom:682.813333pt;}
.y97{bottom:690.653333pt;}
.y10c{bottom:691.613333pt;}
.yc1{bottom:694.973333pt;}
.y3d{bottom:696.093333pt;}
.y17{bottom:698.973333pt;}
.ye7{bottom:699.293333pt;}
.y60{bottom:703.933333pt;}
.y96{bottom:711.773333pt;}
.y10b{bottom:712.733333pt;}
.yc0{bottom:716.093333pt;}
.y3c{bottom:717.373333pt;}
.y16{bottom:720.253333pt;}
.ye6{bottom:721.693333pt;}
.y5f{bottom:725.053333pt;}
.y10a{bottom:733.733333pt;}
.ybf{bottom:737.413333pt;}
.y3b{bottom:738.533333pt;}
.y15{bottom:741.413333pt;}
.ye5{bottom:742.853333pt;}
.y5e{bottom:746.373333pt;}
.y109{bottom:756.133333pt;}
.ybe{bottom:758.533333pt;}
.y3a{bottom:759.653333pt;}
.ye4{bottom:763.973333pt;}
.y5d{bottom:767.493333pt;}
.y14{bottom:775.813333pt;}
.y108{bottom:777.413333pt;}
.ybd{bottom:779.653333pt;}
.y39{bottom:780.773333pt;}
.ye3{bottom:786.373333pt;}
.y5c{bottom:788.613333pt;}
.y107{bottom:798.373333pt;}
.ybc{bottom:800.773333pt;}
.y38{bottom:802.053333pt;}
.ye2{bottom:807.493333pt;}
.y5b{bottom:809.733333pt;}
.y13{bottom:810.373333pt;}
.y106{bottom:820.773333pt;}
.ybb{bottom:822.053333pt;}
.y37{bottom:823.173333pt;}
.ye1{bottom:828.453333pt;}
.y5a{bottom:831.013333pt;}
.y128{bottom:841.893333pt;}
.y12{bottom:842.053333pt;}
.yba{bottom:843.173333pt;}
.y36{bottom:844.293333pt;}
.ye0{bottom:851.013333pt;}
.y59{bottom:852.133333pt;}
.y11{bottom:860.453333pt;}
.y105{bottom:863.013333pt;}
.yb9{bottom:864.293333pt;}
.y35{bottom:865.413333pt;}
.ydf{bottom:872.133333pt;}
.y58{bottom:873.253333pt;}
.y10{bottom:878.853333pt;}
.yb8{bottom:885.253333pt;}
.y104{bottom:885.413333pt;}
.y34{bottom:886.533333pt;}
.yde{bottom:893.093333pt;}
.yf{bottom:898.533333pt;}
.y103{bottom:906.693333pt;}
.y33{bottom:907.813333pt;}
.ye{bottom:923.493333pt;}
.y102{bottom:927.653333pt;}
.y32{bottom:928.933333pt;}
.y9{bottom:947.813333pt;}
.y1{bottom:961.760000pt;}
.h6{height:36.070312pt;}
.h9{height:45.156250pt;}
.ha{height:46.593750pt;}
.h5{height:52.834688pt;}
.h7{height:57.375000pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.h8{height:72.069375pt;}
.h1{height:75.360000pt;}
.h3{height:84.662813pt;}
.h0{height:1056.000000pt;}
.w1{width:110.400000pt;}
.w3{width:141.946667pt;}
.w2{width:343.106667pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x6{left:35.040000pt;}
.x8{left:48.640000pt;}
.x7{left:50.240000pt;}
.x2{left:87.194667pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.xa{left:105.151988pt;}
.xe{left:120.031988pt;}
.xf{left:144.026655pt;}
.xc{left:198.106655pt;}
.x3{left:199.226667pt;}
.xd{left:239.066655pt;}
.xb{left:344.226655pt;}
.x5{left:542.333333pt;}
}




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