
    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_92751d26082d7ee835b6b189.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_5b25b64c41302d4351ba1dcb.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6a209936246305f0a0029523.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_5a8ff116f6473538a6cc6950.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_c7448a00d12d6e34ad3c4a1c.woff2')format("woff");}.ff6{font-family:ff6;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: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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:21.546720px;}
.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;}
}
.ws4{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.948000px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-8.197440px;}
._10{margin-left:-3.986880px;}
._8{margin-left:-2.816400px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._6{width:2.621760px;}
._2{width:3.960960px;}
._b{width:5.430480px;}
._7{width:6.812640px;}
._9{width:8.358720px;}
._a{width:9.509520px;}
._13{width:10.682880px;}
._11{width:11.918160px;}
._5{width:13.798080px;}
._e{width:16.008000px;}
._f{width:17.509680px;}
._d{width:20.497680px;}
._14{width:24.613440px;}
._12{width:28.975920px;}
._c{width:30.836160px;}
._17{width:36.334080px;}
._16{width:37.768320px;}
._15{width:52.768080px;}
._18{width:59.879520px;}
._1c{width:72.668160px;}
._19{width:82.349280px;}
._4{width:85.656000px;}
._1b{width:120.535920px;}
._1a{width:149.715840px;}
._3{width:687.306000px;}
._1d{width:1878.936000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y87{bottom:3.240000px;}
.y10b{bottom:15.300000px;}
.ya6{bottom:16.560000px;}
.y86{bottom:20.340000px;}
.y10d{bottom:20.385000px;}
.y90{bottom:20.520000px;}
.y10a{bottom:32.580000px;}
.ya5{bottom:35.280000px;}
.yc{bottom:36.720000px;}
.yc9{bottom:37.620000px;}
.yae{bottom:37.794000px;}
.y8f{bottom:37.800000px;}
.y9f{bottom:37.830000px;}
.ya4{bottom:53.820000px;}
.ycd{bottom:54.894000px;}
.y98{bottom:54.900000px;}
.y8e{bottom:54.945000px;}
.yb1{bottom:55.080000px;}
.y9e{bottom:55.110000px;}
.yf5{bottom:55.125000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.ycc{bottom:72.174000px;}
.y97{bottom:72.180000px;}
.y9d{bottom:72.210000px;}
.y8d{bottom:72.225000px;}
.yb3{bottom:72.360000px;}
.yab{bottom:72.405000px;}
.ya3{bottom:72.540000px;}
.ya2{bottom:73.800000px;}
.yaa{bottom:73.845000px;}
.y94{bottom:85.365000px;}
.y96{bottom:89.460000px;}
.y9c{bottom:89.490000px;}
.y8c{bottom:89.505000px;}
.ya1{bottom:91.080000px;}
.ya9{bottom:91.125000px;}
.y93{bottom:104.085000px;}
.y9b{bottom:106.770000px;}
.y8b{bottom:106.785000px;}
.y73{bottom:117.936000px;}
.y3e{bottom:118.296000px;}
.yad{bottom:121.896000px;}
.y92{bottom:122.625000px;}
.y9a{bottom:124.050000px;}
.y8a{bottom:124.065000px;}
.ycb{bottom:125.856000px;}
.yfb{bottom:126.036000px;}
.y84{bottom:127.296000px;}
.ye3{bottom:134.316000px;}
.y72{bottom:135.036000px;}
.y3d{bottom:135.576000px;}
.y107{bottom:138.276000px;}
.y91{bottom:141.165000px;}
.y89{bottom:141.345000px;}
.yfa{bottom:143.316000px;}
.y83{bottom:144.576000px;}
.ye2{bottom:151.590000px;}
.y71{bottom:152.310000px;}
.y3c{bottom:152.850000px;}
.y120{bottom:154.110000px;}
.y106{bottom:155.550000px;}
.yf9{bottom:160.590000px;}
.y82{bottom:161.670000px;}
.ye1{bottom:165.630000px;}
.y70{bottom:169.590000px;}
.y3b{bottom:170.130000px;}
.y11f{bottom:171.390000px;}
.y105{bottom:172.830000px;}
.yac{bottom:174.450000px;}
.yf8{bottom:175.350000px;}
.y81{bottom:178.950000px;}
.y6f{bottom:186.870000px;}
.y3a{bottom:187.410000px;}
.y11e{bottom:188.490000px;}
.y104{bottom:190.110000px;}
.y80{bottom:196.230000px;}
.y6e{bottom:204.150000px;}
.y39{bottom:204.510000px;}
.y11d{bottom:205.770000px;}
.y103{bottom:207.390000px;}
.yf7{bottom:210.630000px;}
.yca{bottom:212.790000px;}
.y7f{bottom:213.510000px;}
.y6d{bottom:221.250000px;}
.y38{bottom:221.790000px;}
.y11c{bottom:223.050000px;}
.y102{bottom:224.670000px;}
.y7e{bottom:230.790000px;}
.y6c{bottom:238.530000px;}
.y37{bottom:239.070000px;}
.y11b{bottom:240.330000px;}
.y101{bottom:241.770000px;}
.y7d{bottom:248.070000px;}
.y6b{bottom:255.810000px;}
.y11a{bottom:257.610000px;}
.y100{bottom:259.050000px;}
.y36{bottom:260.310000px;}
.yf6{bottom:263.010000px;}
.y7c{bottom:265.170000px;}
.y6a{bottom:273.090000px;}
.y119{bottom:274.890000px;}
.yff{bottom:276.330000px;}
.ya8{bottom:278.670000px;}
.y35{bottom:278.850000px;}
.y7b{bottom:282.450000px;}
.yc8{bottom:282.630000px;}
.y69{bottom:290.370000px;}
.y118{bottom:291.990000px;}
.yfe{bottom:293.970000px;}
.y34{bottom:297.570000px;}
.yf4{bottom:298.290000px;}
.y7a{bottom:299.730000px;}
.y68{bottom:307.650000px;}
.y117{bottom:309.270000px;}
.yfd{bottom:312.510000px;}
.y33{bottom:316.110000px;}
.y79{bottom:317.010000px;}
.y67{bottom:324.750000px;}
.yfc{bottom:326.550000px;}
.y78{bottom:334.290000px;}
.y32{bottom:334.650000px;}
.y66{bottom:342.075000px;}
.y116{bottom:343.875000px;}
.y77{bottom:351.435000px;}
.y31{bottom:353.415000px;}
.y65{bottom:359.355000px;}
.y115{bottom:361.155000px;}
.yf3{bottom:368.175000px;}
.y76{bottom:368.715000px;}
.yc7{bottom:369.615000px;}
.y30{bottom:371.955000px;}
.y64{bottom:376.635000px;}
.y114{bottom:378.255000px;}
.ya7{bottom:384.555000px;}
.y75{bottom:385.995000px;}
.y2f{bottom:390.675000px;}
.y63{bottom:393.915000px;}
.y113{bottom:395.535000px;}
.y74{bottom:400.035000px;}
.y2e{bottom:409.215000px;}
.y62{bottom:411.195000px;}
.y112{bottom:412.815000px;}
.y2d{bottom:427.935000px;}
.y61{bottom:428.295000px;}
.y111{bottom:429.735000px;}
.yf2{bottom:437.835000px;}
.y60{bottom:445.575000px;}
.y2c{bottom:446.475000px;}
.yc6{bottom:459.795000px;}
.y5f{bottom:462.855000px;}
.y2b{bottom:465.015000px;}
.ya0{bottom:471.495000px;}
.yf1{bottom:476.355000px;}
.yc5{bottom:477.075000px;}
.y5e{bottom:480.135000px;}
.y2a{bottom:483.735000px;}
.yf0{bottom:493.635000px;}
.yc4{bottom:494.355000px;}
.y5d{bottom:497.415000px;}
.y29{bottom:502.275000px;}
.yef{bottom:510.915000px;}
.yc3{bottom:511.635000px;}
.y5c{bottom:514.515000px;}
.y28{bottom:520.995000px;}
.yee{bottom:528.015000px;}
.yc2{bottom:528.915000px;}
.y5b{bottom:531.795000px;}
.y27{bottom:539.535000px;}
.yed{bottom:545.295000px;}
.yc1{bottom:546.015000px;}
.y5a{bottom:549.075000px;}
.y26{bottom:558.075000px;}
.yec{bottom:562.575000px;}
.yc0{bottom:563.295000px;}
.y59{bottom:566.355000px;}
.y25{bottom:576.795000px;}
.y99{bottom:577.335000px;}
.yeb{bottom:579.855000px;}
.ybf{bottom:580.575000px;}
.y58{bottom:583.635000px;}
.y24{bottom:595.335000px;}
.yea{bottom:597.135000px;}
.ybe{bottom:597.855000px;}
.ye0{bottom:598.575000px;}
.y57{bottom:600.915000px;}
.y23{bottom:614.085000px;}
.ye9{bottom:614.445000px;}
.ybd{bottom:615.165000px;}
.ydf{bottom:615.885000px;}
.y56{bottom:618.045000px;}
.ye8{bottom:631.545000px;}
.ybc{bottom:632.445000px;}
.y22{bottom:632.625000px;}
.yde{bottom:633.165000px;}
.y55{bottom:635.325000px;}
.ye7{bottom:646.305000px;}
.ybb{bottom:649.545000px;}
.ydd{bottom:650.445000px;}
.y21{bottom:651.165000px;}
.y54{bottom:652.605000px;}
.yba{bottom:666.825000px;}
.ydc{bottom:667.545000px;}
.y20{bottom:669.885000px;}
.yb9{bottom:684.105000px;}
.ydb{bottom:684.825000px;}
.y53{bottom:687.165000px;}
.y1f{bottom:688.425000px;}
.ye6{bottom:698.865000px;}
.yb8{bottom:701.385000px;}
.yda{bottom:702.105000px;}
.y52{bottom:704.445000px;}
.y1e{bottom:707.145000px;}
.y95{bottom:716.145000px;}
.yb7{bottom:718.665000px;}
.yd9{bottom:719.385000px;}
.y51{bottom:721.545000px;}
.y1d{bottom:725.685000px;}
.yb6{bottom:735.945000px;}
.y110{bottom:736.305000px;}
.yd8{bottom:736.665000px;}
.y50{bottom:738.825000px;}
.y1c{bottom:744.405000px;}
.ye5{bottom:751.425000px;}
.yb5{bottom:753.045000px;}
.yd7{bottom:753.945000px;}
.y4f{bottom:756.105000px;}
.y1b{bottom:762.945000px;}
.yb4{bottom:770.325000px;}
.yd6{bottom:771.045000px;}
.y4e{bottom:773.385000px;}
.y1a{bottom:781.485000px;}
.yb2{bottom:785.085000px;}
.yd5{bottom:788.325000px;}
.y10f{bottom:788.865000px;}
.y4d{bottom:790.665000px;}
.y19{bottom:800.205000px;}
.yd4{bottom:805.605000px;}
.y4c{bottom:807.945000px;}
.y18{bottom:818.745000px;}
.y88{bottom:820.365000px;}
.ye4{bottom:821.085000px;}
.yd3{bottom:822.885000px;}
.y10e{bottom:824.145000px;}
.y4b{bottom:825.045000px;}
.y17{bottom:837.105000px;}
.yd2{bottom:840.165000px;}
.y4a{bottom:842.325000px;}
.yd1{bottom:857.445000px;}
.y10c{bottom:859.425000px;}
.y49{bottom:859.605000px;}
.y16{bottom:860.865000px;}
.yd0{bottom:874.590000px;}
.y48{bottom:876.930000px;}
.y15{bottom:879.810000px;}
.ycf{bottom:889.350000px;}
.y14{bottom:892.770000px;}
.y47{bottom:894.210000px;}
.y109{bottom:894.570000px;}
.yb0{bottom:906.630000px;}
.y46{bottom:911.310000px;}
.y13{bottom:911.850000px;}
.y45{bottom:928.590000px;}
.y12{bottom:930.750000px;}
.y108{bottom:941.910000px;}
.y44{bottom:945.870000px;}
.y11{bottom:949.830000px;}
.yce{bottom:959.190000px;}
.y43{bottom:963.150000px;}
.y10{bottom:968.730000px;}
.y85{bottom:976.470000px;}
.y42{bottom:980.430000px;}
.yf{bottom:987.990000px;}
.yaf{bottom:993.570000px;}
.y41{bottom:997.710000px;}
.ye{bottom:1008.690000px;}
.y40{bottom:1014.810000px;}
.yd{bottom:1029.390000px;}
.y3f{bottom:1032.090000px;}
.y9{bottom:1050.630000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1086.810000px;}
.y6{bottom:1104.810000px;}
.y5{bottom:1121.550000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h9{height:30.198516px;}
.hb{height:34.380000px;}
.h1c{height:34.416000px;}
.h18{height:34.560000px;}
.h1d{height:38.100586px;}
.h7{height:39.049805px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.h1e{height:43.506914px;}
.h1b{height:46.620000px;}
.h3{height:47.901094px;}
.ha{height:48.496641px;}
.h4{height:50.800781px;}
.h1a{height:51.660000px;}
.h12{height:51.840000px;}
.h16{height:51.876000px;}
.h8{height:53.224453px;}
.h6{height:65.884219px;}
.h17{height:68.940000px;}
.h15{height:69.120000px;}
.h19{height:69.156000px;}
.h10{height:86.220000px;}
.h14{height:86.256000px;}
.hd{height:103.500000px;}
.hf{height:105.120000px;}
.h11{height:105.156000px;}
.h13{height:120.816000px;}
.he{height:138.096000px;}
.hc{height:155.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:30.780000px;}
.wd{width:92.916000px;}
.w9{width:93.096000px;}
.wc{width:94.140000px;}
.wa{width:95.040000px;}
.wb{width:96.516000px;}
.we{width:98.100000px;}
.w8{width:101.340000px;}
.w13{width:133.596000px;}
.w10{width:134.136000px;}
.w12{width:134.820000px;}
.wf{width:135.000000px;}
.w11{width:135.036000px;}
.w7{width:155.010000px;}
.w6{width:158.760000px;}
.w4{width:158.790000px;}
.w17{width:165.990000px;}
.w16{width:166.890000px;}
.w19{width:167.970000px;}
.w14{width:168.120000px;}
.w1a{width:168.330000px;}
.w18{width:169.050000px;}
.w5{width:169.410000px;}
.w15{width:172.080000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.740000px;}
.x1f{left:11.520000px;}
.x32{left:12.780000px;}
.x15{left:15.300000px;}
.x2f{left:19.980000px;}
.x1e{left:21.240000px;}
.x30{left:24.120000px;}
.x18{left:25.200000px;}
.x16{left:28.434000px;}
.x34{left:31.725000px;}
.x1a{left:32.760000px;}
.x2c{left:34.245000px;}
.x2d{left:35.865000px;}
.x2b{left:37.485000px;}
.x1d{left:48.825000px;}
.x1b{left:55.980000px;}
.x3c{left:61.020000px;}
.x2{left:108.035987px;}
.x21{left:125.675987px;}
.x1{left:128.015987px;}
.x40{left:135.035987px;}
.x9{left:137.735987px;}
.x8{left:139.535987px;}
.xe{left:140.975987px;}
.x5{left:157.169987px;}
.x41{left:162.029987px;}
.xf{left:165.269987px;}
.x14{left:173.549987px;}
.x35{left:179.489987px;}
.x22{left:210.810000px;}
.x29{left:214.769987px;}
.x3b{left:233.309987px;}
.x2a{left:244.470000px;}
.x3a{left:270.749987px;}
.x36{left:277.815000px;}
.x17{left:299.775000px;}
.x23{left:304.635000px;}
.x13{left:334.694987px;}
.xc{left:335.774987px;}
.xa{left:343.874987px;}
.xb{left:346.034987px;}
.x3e{left:362.414987px;}
.xd{left:366.914987px;}
.x2e{left:379.335000px;}
.x11{left:384.554987px;}
.x7{left:386.354987px;}
.x3f{left:395.714987px;}
.x10{left:398.954987px;}
.x24{left:400.395000px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x37{left:450.615000px;}
.x19{left:469.905000px;}
.x25{left:497.625000px;}
.x31{left:515.265000px;}
.x4{left:518.504987px;}
.x26{left:592.485000px;}
.x3d{left:616.065000px;}
.x38{left:618.405000px;}
.x1c{left:629.385000px;}
.x33{left:650.805000px;}
.x27{left:686.310000px;}
.x39{left:839.309987px;}
.x28{left:841.649987px;}
.x12{left:850.679987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:19.152640pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.176000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-7.286613pt;}
._10{margin-left:-3.543893pt;}
._8{margin-left:-2.503467pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._6{width:2.330453pt;}
._2{width:3.520853pt;}
._b{width:4.827093pt;}
._7{width:6.055680pt;}
._9{width:7.429973pt;}
._a{width:8.452907pt;}
._13{width:9.495893pt;}
._11{width:10.593920pt;}
._5{width:12.264960pt;}
._e{width:14.229333pt;}
._f{width:15.564160pt;}
._d{width:18.220160pt;}
._14{width:21.878613pt;}
._12{width:25.756373pt;}
._c{width:27.409920pt;}
._17{width:32.296960pt;}
._16{width:33.571840pt;}
._15{width:46.904960pt;}
._18{width:53.226240pt;}
._1c{width:64.593920pt;}
._19{width:73.199360pt;}
._4{width:76.138667pt;}
._1b{width:107.143040pt;}
._1a{width:133.080747pt;}
._3{width:610.938667pt;}
._1d{width:1670.165333pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:2.880000pt;}
.y10b{bottom:13.600000pt;}
.ya6{bottom:14.720000pt;}
.y86{bottom:18.080000pt;}
.y10d{bottom:18.120000pt;}
.y90{bottom:18.240000pt;}
.y10a{bottom:28.960000pt;}
.ya5{bottom:31.360000pt;}
.yc{bottom:32.640000pt;}
.yc9{bottom:33.440000pt;}
.yae{bottom:33.594667pt;}
.y8f{bottom:33.600000pt;}
.y9f{bottom:33.626667pt;}
.ya4{bottom:47.840000pt;}
.ycd{bottom:48.794667pt;}
.y98{bottom:48.800000pt;}
.y8e{bottom:48.840000pt;}
.yb1{bottom:48.960000pt;}
.y9e{bottom:48.986667pt;}
.yf5{bottom:49.000000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.ycc{bottom:64.154667pt;}
.y97{bottom:64.160000pt;}
.y9d{bottom:64.186667pt;}
.y8d{bottom:64.200000pt;}
.yb3{bottom:64.320000pt;}
.yab{bottom:64.360000pt;}
.ya3{bottom:64.480000pt;}
.ya2{bottom:65.600000pt;}
.yaa{bottom:65.640000pt;}
.y94{bottom:75.880000pt;}
.y96{bottom:79.520000pt;}
.y9c{bottom:79.546667pt;}
.y8c{bottom:79.560000pt;}
.ya1{bottom:80.960000pt;}
.ya9{bottom:81.000000pt;}
.y93{bottom:92.520000pt;}
.y9b{bottom:94.906667pt;}
.y8b{bottom:94.920000pt;}
.y73{bottom:104.832000pt;}
.y3e{bottom:105.152000pt;}
.yad{bottom:108.352000pt;}
.y92{bottom:109.000000pt;}
.y9a{bottom:110.266667pt;}
.y8a{bottom:110.280000pt;}
.ycb{bottom:111.872000pt;}
.yfb{bottom:112.032000pt;}
.y84{bottom:113.152000pt;}
.ye3{bottom:119.392000pt;}
.y72{bottom:120.032000pt;}
.y3d{bottom:120.512000pt;}
.y107{bottom:122.912000pt;}
.y91{bottom:125.480000pt;}
.y89{bottom:125.640000pt;}
.yfa{bottom:127.392000pt;}
.y83{bottom:128.512000pt;}
.ye2{bottom:134.746667pt;}
.y71{bottom:135.386667pt;}
.y3c{bottom:135.866667pt;}
.y120{bottom:136.986667pt;}
.y106{bottom:138.266667pt;}
.yf9{bottom:142.746667pt;}
.y82{bottom:143.706667pt;}
.ye1{bottom:147.226667pt;}
.y70{bottom:150.746667pt;}
.y3b{bottom:151.226667pt;}
.y11f{bottom:152.346667pt;}
.y105{bottom:153.626667pt;}
.yac{bottom:155.066667pt;}
.yf8{bottom:155.866667pt;}
.y81{bottom:159.066667pt;}
.y6f{bottom:166.106667pt;}
.y3a{bottom:166.586667pt;}
.y11e{bottom:167.546667pt;}
.y104{bottom:168.986667pt;}
.y80{bottom:174.426667pt;}
.y6e{bottom:181.466667pt;}
.y39{bottom:181.786667pt;}
.y11d{bottom:182.906667pt;}
.y103{bottom:184.346667pt;}
.yf7{bottom:187.226667pt;}
.yca{bottom:189.146667pt;}
.y7f{bottom:189.786667pt;}
.y6d{bottom:196.666667pt;}
.y38{bottom:197.146667pt;}
.y11c{bottom:198.266667pt;}
.y102{bottom:199.706667pt;}
.y7e{bottom:205.146667pt;}
.y6c{bottom:212.026667pt;}
.y37{bottom:212.506667pt;}
.y11b{bottom:213.626667pt;}
.y101{bottom:214.906667pt;}
.y7d{bottom:220.506667pt;}
.y6b{bottom:227.386667pt;}
.y11a{bottom:228.986667pt;}
.y100{bottom:230.266667pt;}
.y36{bottom:231.386667pt;}
.yf6{bottom:233.786667pt;}
.y7c{bottom:235.706667pt;}
.y6a{bottom:242.746667pt;}
.y119{bottom:244.346667pt;}
.yff{bottom:245.626667pt;}
.ya8{bottom:247.706667pt;}
.y35{bottom:247.866667pt;}
.y7b{bottom:251.066667pt;}
.yc8{bottom:251.226667pt;}
.y69{bottom:258.106667pt;}
.y118{bottom:259.546667pt;}
.yfe{bottom:261.306667pt;}
.y34{bottom:264.506667pt;}
.yf4{bottom:265.146667pt;}
.y7a{bottom:266.426667pt;}
.y68{bottom:273.466667pt;}
.y117{bottom:274.906667pt;}
.yfd{bottom:277.786667pt;}
.y33{bottom:280.986667pt;}
.y79{bottom:281.786667pt;}
.y67{bottom:288.666667pt;}
.yfc{bottom:290.266667pt;}
.y78{bottom:297.146667pt;}
.y32{bottom:297.466667pt;}
.y66{bottom:304.066667pt;}
.y116{bottom:305.666667pt;}
.y77{bottom:312.386667pt;}
.y31{bottom:314.146667pt;}
.y65{bottom:319.426667pt;}
.y115{bottom:321.026667pt;}
.yf3{bottom:327.266667pt;}
.y76{bottom:327.746667pt;}
.yc7{bottom:328.546667pt;}
.y30{bottom:330.626667pt;}
.y64{bottom:334.786667pt;}
.y114{bottom:336.226667pt;}
.ya7{bottom:341.826667pt;}
.y75{bottom:343.106667pt;}
.y2f{bottom:347.266667pt;}
.y63{bottom:350.146667pt;}
.y113{bottom:351.586667pt;}
.y74{bottom:355.586667pt;}
.y2e{bottom:363.746667pt;}
.y62{bottom:365.506667pt;}
.y112{bottom:366.946667pt;}
.y2d{bottom:380.386667pt;}
.y61{bottom:380.706667pt;}
.y111{bottom:381.986667pt;}
.yf2{bottom:389.186667pt;}
.y60{bottom:396.066667pt;}
.y2c{bottom:396.866667pt;}
.yc6{bottom:408.706667pt;}
.y5f{bottom:411.426667pt;}
.y2b{bottom:413.346667pt;}
.ya0{bottom:419.106667pt;}
.yf1{bottom:423.426667pt;}
.yc5{bottom:424.066667pt;}
.y5e{bottom:426.786667pt;}
.y2a{bottom:429.986667pt;}
.yf0{bottom:438.786667pt;}
.yc4{bottom:439.426667pt;}
.y5d{bottom:442.146667pt;}
.y29{bottom:446.466667pt;}
.yef{bottom:454.146667pt;}
.yc3{bottom:454.786667pt;}
.y5c{bottom:457.346667pt;}
.y28{bottom:463.106667pt;}
.yee{bottom:469.346667pt;}
.yc2{bottom:470.146667pt;}
.y5b{bottom:472.706667pt;}
.y27{bottom:479.586667pt;}
.yed{bottom:484.706667pt;}
.yc1{bottom:485.346667pt;}
.y5a{bottom:488.066667pt;}
.y26{bottom:496.066667pt;}
.yec{bottom:500.066667pt;}
.yc0{bottom:500.706667pt;}
.y59{bottom:503.426667pt;}
.y25{bottom:512.706667pt;}
.y99{bottom:513.186667pt;}
.yeb{bottom:515.426667pt;}
.ybf{bottom:516.066667pt;}
.y58{bottom:518.786667pt;}
.y24{bottom:529.186667pt;}
.yea{bottom:530.786667pt;}
.ybe{bottom:531.426667pt;}
.ye0{bottom:532.066667pt;}
.y57{bottom:534.146667pt;}
.y23{bottom:545.853333pt;}
.ye9{bottom:546.173333pt;}
.ybd{bottom:546.813333pt;}
.ydf{bottom:547.453333pt;}
.y56{bottom:549.373333pt;}
.ye8{bottom:561.373333pt;}
.ybc{bottom:562.173333pt;}
.y22{bottom:562.333333pt;}
.yde{bottom:562.813333pt;}
.y55{bottom:564.733333pt;}
.ye7{bottom:574.493333pt;}
.ybb{bottom:577.373333pt;}
.ydd{bottom:578.173333pt;}
.y21{bottom:578.813333pt;}
.y54{bottom:580.093333pt;}
.yba{bottom:592.733333pt;}
.ydc{bottom:593.373333pt;}
.y20{bottom:595.453333pt;}
.yb9{bottom:608.093333pt;}
.ydb{bottom:608.733333pt;}
.y53{bottom:610.813333pt;}
.y1f{bottom:611.933333pt;}
.ye6{bottom:621.213333pt;}
.yb8{bottom:623.453333pt;}
.yda{bottom:624.093333pt;}
.y52{bottom:626.173333pt;}
.y1e{bottom:628.573333pt;}
.y95{bottom:636.573333pt;}
.yb7{bottom:638.813333pt;}
.yd9{bottom:639.453333pt;}
.y51{bottom:641.373333pt;}
.y1d{bottom:645.053333pt;}
.yb6{bottom:654.173333pt;}
.y110{bottom:654.493333pt;}
.yd8{bottom:654.813333pt;}
.y50{bottom:656.733333pt;}
.y1c{bottom:661.693333pt;}
.ye5{bottom:667.933333pt;}
.yb5{bottom:669.373333pt;}
.yd7{bottom:670.173333pt;}
.y4f{bottom:672.093333pt;}
.y1b{bottom:678.173333pt;}
.yb4{bottom:684.733333pt;}
.yd6{bottom:685.373333pt;}
.y4e{bottom:687.453333pt;}
.y1a{bottom:694.653333pt;}
.yb2{bottom:697.853333pt;}
.yd5{bottom:700.733333pt;}
.y10f{bottom:701.213333pt;}
.y4d{bottom:702.813333pt;}
.y19{bottom:711.293333pt;}
.yd4{bottom:716.093333pt;}
.y4c{bottom:718.173333pt;}
.y18{bottom:727.773333pt;}
.y88{bottom:729.213333pt;}
.ye4{bottom:729.853333pt;}
.yd3{bottom:731.453333pt;}
.y10e{bottom:732.573333pt;}
.y4b{bottom:733.373333pt;}
.y17{bottom:744.093333pt;}
.yd2{bottom:746.813333pt;}
.y4a{bottom:748.733333pt;}
.yd1{bottom:762.173333pt;}
.y10c{bottom:763.933333pt;}
.y49{bottom:764.093333pt;}
.y16{bottom:765.213333pt;}
.yd0{bottom:777.413333pt;}
.y48{bottom:779.493333pt;}
.y15{bottom:782.053333pt;}
.ycf{bottom:790.533333pt;}
.y14{bottom:793.573333pt;}
.y47{bottom:794.853333pt;}
.y109{bottom:795.173333pt;}
.yb0{bottom:805.893333pt;}
.y46{bottom:810.053333pt;}
.y13{bottom:810.533333pt;}
.y45{bottom:825.413333pt;}
.y12{bottom:827.333333pt;}
.y108{bottom:837.253333pt;}
.y44{bottom:840.773333pt;}
.y11{bottom:844.293333pt;}
.yce{bottom:852.613333pt;}
.y43{bottom:856.133333pt;}
.y10{bottom:861.093333pt;}
.y85{bottom:867.973333pt;}
.y42{bottom:871.493333pt;}
.yf{bottom:878.213333pt;}
.yaf{bottom:883.173333pt;}
.y41{bottom:886.853333pt;}
.ye{bottom:896.613333pt;}
.y40{bottom:902.053333pt;}
.yd{bottom:915.013333pt;}
.y3f{bottom:917.413333pt;}
.y9{bottom:933.893333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:966.053333pt;}
.y6{bottom:982.053333pt;}
.y5{bottom:996.933333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h9{height:26.843125pt;}
.hb{height:30.560000pt;}
.h1c{height:30.592000pt;}
.h18{height:30.720000pt;}
.h1d{height:33.867188pt;}
.h7{height:34.710938pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.h1e{height:38.672812pt;}
.h1b{height:41.440000pt;}
.h3{height:42.578750pt;}
.ha{height:43.108125pt;}
.h4{height:45.156250pt;}
.h1a{height:45.920000pt;}
.h12{height:46.080000pt;}
.h16{height:46.112000pt;}
.h8{height:47.310625pt;}
.h6{height:58.563750pt;}
.h17{height:61.280000pt;}
.h15{height:61.440000pt;}
.h19{height:61.472000pt;}
.h10{height:76.640000pt;}
.h14{height:76.672000pt;}
.hd{height:92.000000pt;}
.hf{height:93.440000pt;}
.h11{height:93.472000pt;}
.h13{height:107.392000pt;}
.he{height:122.752000pt;}
.hc{height:137.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:27.360000pt;}
.wd{width:82.592000pt;}
.w9{width:82.752000pt;}
.wc{width:83.680000pt;}
.wa{width:84.480000pt;}
.wb{width:85.792000pt;}
.we{width:87.200000pt;}
.w8{width:90.080000pt;}
.w13{width:118.752000pt;}
.w10{width:119.232000pt;}
.w12{width:119.840000pt;}
.wf{width:120.000000pt;}
.w11{width:120.032000pt;}
.w7{width:137.786667pt;}
.w6{width:141.120000pt;}
.w4{width:141.146667pt;}
.w17{width:147.546667pt;}
.w16{width:148.346667pt;}
.w19{width:149.306667pt;}
.w14{width:149.440000pt;}
.w1a{width:149.626667pt;}
.w18{width:150.266667pt;}
.w5{width:150.586667pt;}
.w15{width:152.960000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.880000pt;}
.x1f{left:10.240000pt;}
.x32{left:11.360000pt;}
.x15{left:13.600000pt;}
.x2f{left:17.760000pt;}
.x1e{left:18.880000pt;}
.x30{left:21.440000pt;}
.x18{left:22.400000pt;}
.x16{left:25.274667pt;}
.x34{left:28.200000pt;}
.x1a{left:29.120000pt;}
.x2c{left:30.440000pt;}
.x2d{left:31.880000pt;}
.x2b{left:33.320000pt;}
.x1d{left:43.400000pt;}
.x1b{left:49.760000pt;}
.x3c{left:54.240000pt;}
.x2{left:96.031988pt;}
.x21{left:111.711988pt;}
.x1{left:113.791988pt;}
.x40{left:120.031988pt;}
.x9{left:122.431988pt;}
.x8{left:124.031988pt;}
.xe{left:125.311988pt;}
.x5{left:139.706655pt;}
.x41{left:144.026655pt;}
.xf{left:146.906655pt;}
.x14{left:154.266655pt;}
.x35{left:159.546655pt;}
.x22{left:187.386667pt;}
.x29{left:190.906655pt;}
.x3b{left:207.386655pt;}
.x2a{left:217.306667pt;}
.x3a{left:240.666655pt;}
.x36{left:246.946667pt;}
.x17{left:266.466667pt;}
.x23{left:270.786667pt;}
.x13{left:297.506655pt;}
.xc{left:298.466655pt;}
.xa{left:305.666655pt;}
.xb{left:307.586655pt;}
.x3e{left:322.146655pt;}
.xd{left:326.146655pt;}
.x2e{left:337.186667pt;}
.x11{left:341.826655pt;}
.x7{left:343.426655pt;}
.x3f{left:351.746655pt;}
.x10{left:354.626655pt;}
.x24{left:355.906667pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x37{left:400.546667pt;}
.x19{left:417.693333pt;}
.x25{left:442.333333pt;}
.x31{left:458.013333pt;}
.x4{left:460.893322pt;}
.x26{left:526.653333pt;}
.x3d{left:547.613333pt;}
.x38{left:549.693333pt;}
.x1c{left:559.453333pt;}
.x33{left:578.493333pt;}
.x27{left:610.053333pt;}
.x39{left:746.053322pt;}
.x28{left:748.133322pt;}
.x12{left:756.159988pt;}
}




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