
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_933547268d689c89ec27e52b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_67e18960d884d1ee425b648a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_ba80872c4cac5135adcd4d77.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_932b493f99cda41001bb603f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_9720d13dbd29ff7aa4b24614.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_f711b8d58e50b2c936595eef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_132c31c3228260f80a90740b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.060480px;}
.ls13{letter-spacing:0.060600px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.425520px;}
.ls5{letter-spacing:2.253600px;}
.ls18{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.425600px;}
.wse{word-spacing:-13.424400px;}
.ws7{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.218840px;}
.ws6{word-spacing:-13.064400px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._4{margin-left:-3.551400px;}
._3{margin-left:-2.141040px;}
._0{margin-left:-1.110000px;}
._1{width:1.006896px;}
._2{width:2.299704px;}
._8{width:4.011216px;}
._a{width:5.622529px;}
._9{width:6.833808px;}
._7{width:8.054998px;}
._5{width:9.198600px;}
._6{width:10.337661px;}
._10{width:11.542800px;}
._e{width:14.248801px;}
._d{width:15.330600px;}
._23{width:16.556040px;}
._b{width:18.156000px;}
._c{width:19.255108px;}
._11{width:20.320560px;}
._15{width:21.522960px;}
._27{width:23.326560px;}
._28{width:24.505680px;}
._13{width:26.392680px;}
._17{width:33.667200px;}
._f{width:37.214280px;}
._26{width:52.124040px;}
._24{width:53.146080px;}
._25{width:54.269640px;}
._1a{width:56.392560px;}
._1e{width:58.196160px;}
._21{width:60.360480px;}
._1b{width:81.823320px;}
._18{width:98.476560px;}
._16{width:103.105800px;}
._1f{width:106.652880px;}
._14{width:118.496520px;}
._22{width:127.073400px;}
._20{width:143.506440px;}
._1d{width:190.219680px;}
._12{width:195.931080px;}
._1c{width:224.427960px;}
._19{width:273.786480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:7.830000px;}
.y62{bottom:7.920000px;}
.y7c{bottom:10.170000px;}
.y7f{bottom:16.650000px;}
.y8a{bottom:16.740000px;}
.y7a{bottom:18.900000px;}
.y5e{bottom:25.380000px;}
.y86{bottom:25.410000px;}
.y61{bottom:25.470000px;}
.y94{bottom:25.500000px;}
.y7b{bottom:27.720000px;}
.y79{bottom:29.970000px;}
.y7e{bottom:34.200000px;}
.y88{bottom:34.230000px;}
.y84{bottom:34.290000px;}
.y64{bottom:43.020000px;}
.y87{bottom:43.050000px;}
.y8d{bottom:43.110000px;}
.y82{bottom:60.570000px;}
.y8e{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ye6{bottom:112.170000px;}
.yb7{bottom:113.700000px;}
.y6b{bottom:121.530000px;}
.y27{bottom:129.270000px;}
.ye5{bottom:129.720000px;}
.yb6{bottom:131.250000px;}
.y90{bottom:136.200000px;}
.y55{bottom:146.100000px;}
.y26{bottom:146.820000px;}
.ye4{bottom:147.270000px;}
.yb5{bottom:148.800000px;}
.y6a{bottom:148.890000px;}
.y10f{bottom:149.250000px;}
.y54{bottom:163.650000px;}
.y25{bottom:164.370000px;}
.ye3{bottom:164.910000px;}
.yb4{bottom:166.440000px;}
.y10e{bottom:166.890000px;}
.y69{bottom:176.250000px;}
.y53{bottom:181.200000px;}
.y24{bottom:182.010000px;}
.ye2{bottom:182.460000px;}
.yb3{bottom:192.990000px;}
.y10d{bottom:193.440000px;}
.y8f{bottom:198.750000px;}
.y52{bottom:198.840000px;}
.y23{bottom:199.560000px;}
.y68{bottom:203.610000px;}
.ye1{bottom:209.370000px;}
.y10c{bottom:211.080000px;}
.y51{bottom:216.390000px;}
.y22{bottom:226.470000px;}
.yb2{bottom:228.540000px;}
.y67{bottom:230.880000px;}
.y10b{bottom:237.630000px;}
.y50{bottom:242.940000px;}
.yb1{bottom:246.180000px;}
.y10a{bottom:255.180000px;}
.y66{bottom:258.240000px;}
.ye0{bottom:260.580000px;}
.yb0{bottom:263.730000px;}
.y21{bottom:275.070000px;}
.ydf{bottom:278.220000px;}
.y4f{bottom:278.580000px;}
.y8c{bottom:278.760000px;}
.yaf{bottom:281.370000px;}
.y109{bottom:281.820000px;}
.y65{bottom:285.600000px;}
.yde{bottom:295.860000px;}
.y4e{bottom:296.130000px;}
.yae{bottom:298.920000px;}
.y108{bottom:299.370000px;}
.y20{bottom:312.150000px;}
.ydd{bottom:313.410000px;}
.y4d{bottom:313.770000px;}
.y107{bottom:326.010000px;}
.y1f{bottom:329.700000px;}
.y63{bottom:330.510000px;}
.ydc{bottom:330.960000px;}
.yad{bottom:334.470000px;}
.y4c{bottom:340.320000px;}
.y106{bottom:343.560000px;}
.y1e{bottom:347.250000px;}
.yac{bottom:352.110000px;}
.y8b{bottom:358.860000px;}
.ydb{bottom:369.480000px;}
.yab{bottom:369.660000px;}
.y105{bottom:370.110000px;}
.y4b{bottom:375.870000px;}
.y1d{bottom:382.890000px;}
.yda{bottom:387.120000px;}
.yaa{bottom:387.300000px;}
.y104{bottom:387.750000px;}
.y60{bottom:392.970000px;}
.y4a{bottom:393.510000px;}
.y1c{bottom:400.440000px;}
.y89{bottom:403.770000px;}
.yd9{bottom:404.760000px;}
.ya9{bottom:404.850000px;}
.y49{bottom:411.060000px;}
.y103{bottom:414.300000px;}
.y1b{bottom:417.990000px;}
.yd8{bottom:422.310000px;}
.ya8{bottom:422.400000px;}
.y102{bottom:431.940000px;}
.y1a{bottom:435.630000px;}
.y48{bottom:437.700000px;}
.y5d{bottom:437.970000px;}
.yd7{bottom:439.950000px;}
.y126{bottom:442.470000px;}
.y85{bottom:448.770000px;}
.ya7{bottom:449.040000px;}
.y101{bottom:449.490000px;}
.y19{bottom:453.180000px;}
.yd6{bottom:457.500000px;}
.y125{bottom:460.110000px;}
.y18{bottom:470.850000px;}
.y47{bottom:473.280000px;}
.yd5{bottom:475.080000px;}
.y100{bottom:476.070000px;}
.ya6{bottom:484.620000px;}
.y124{bottom:486.690000px;}
.y17{bottom:488.400000px;}
.y46{bottom:490.830000px;}
.yd4{bottom:492.720000px;}
.yff{bottom:493.710000px;}
.ya5{bottom:502.260000px;}
.y5c{bottom:504.240000px;}
.y123{bottom:504.330000px;}
.y45{bottom:508.470000px;}
.yd3{bottom:510.270000px;}
.y83{bottom:511.260000px;}
.ya4{bottom:519.810000px;}
.yfe{bottom:520.260000px;}
.y16{bottom:523.950000px;}
.y44{bottom:526.020000px;}
.yd2{bottom:527.820000px;}
.y122{bottom:530.880000px;}
.ya3{bottom:537.360000px;}
.yfd{bottom:537.900000px;}
.y5b{bottom:539.790000px;}
.y15{bottom:541.590000px;}
.y43{bottom:543.660000px;}
.y121{bottom:548.430000px;}
.ya2{bottom:555.000000px;}
.y5a{bottom:557.430000px;}
.y14{bottom:559.140000px;}
.yfc{bottom:564.450000px;}
.y120{bottom:566.070000px;}
.yd1{bottom:566.430000px;}
.y42{bottom:570.210000px;}
.ya1{bottom:572.550000px;}
.y81{bottom:573.810000px;}
.y13{bottom:576.780000px;}
.yfb{bottom:582.000000px;}
.yd0{bottom:584.070000px;}
.y59{bottom:584.340000px;}
.y11f{bottom:592.620000px;}
.y12{bottom:594.330000px;}
.ycf{bottom:601.620000px;}
.y41{bottom:605.760000px;}
.ya0{bottom:608.190000px;}
.yfa{bottom:608.640000px;}
.y11e{bottom:610.260000px;}
.yce{bottom:619.260000px;}
.y40{bottom:623.400000px;}
.y9f{bottom:625.740000px;}
.yf9{bottom:626.190000px;}
.y11d{bottom:627.810000px;}
.y11{bottom:629.880000px;}
.y58{bottom:632.580000px;}
.ycd{bottom:636.810000px;}
.y3f{bottom:640.950000px;}
.y9e{bottom:643.290000px;}
.y10{bottom:647.520000px;}
.yf8{bottom:652.830000px;}
.y80{bottom:653.910000px;}
.ycc{bottom:654.360000px;}
.y3e{bottom:658.590000px;}
.y9d{bottom:660.930000px;}
.y57{bottom:664.800000px;}
.yf{bottom:665.070000px;}
.yf7{bottom:670.380000px;}
.ycb{bottom:672.000000px;}
.y3d{bottom:676.140000px;}
.y9c{bottom:678.480000px;}
.ye{bottom:682.710000px;}
.yf6{bottom:687.930000px;}
.yca{bottom:689.550000px;}
.y9b{bottom:696.120000px;}
.y11c{bottom:698.550000px;}
.y7d{bottom:698.820000px;}
.y3c{bottom:702.690000px;}
.yc9{bottom:707.190000px;}
.yd{bottom:709.620000px;}
.yf5{bottom:714.570000px;}
.y11b{bottom:716.190000px;}
.y9a{bottom:722.670000px;}
.yf4{bottom:732.120000px;}
.yc8{bottom:733.740000px;}
.y3b{bottom:738.330000px;}
.y11a{bottom:742.740000px;}
.y3a{bottom:755.880000px;}
.y99{bottom:757.500000px;}
.yc{bottom:757.860000px;}
.yf3{bottom:758.670000px;}
.y119{bottom:760.290000px;}
.y78{bottom:761.280000px;}
.yc7{bottom:769.290000px;}
.y98{bottom:769.740000px;}
.y39{bottom:773.520000px;}
.yf2{bottom:776.310000px;}
.yc6{bottom:786.930000px;}
.yb{bottom:793.680000px;}
.y38{bottom:800.070000px;}
.yf1{bottom:802.860000px;}
.yc5{bottom:804.480000px;}
.y97{bottom:814.650000px;}
.yf0{bottom:820.500000px;}
.yc4{bottom:822.030000px;}
.ya{bottom:829.680000px;}
.y118{bottom:831.030000px;}
.y77{bottom:832.110000px;}
.y37{bottom:835.980000px;}
.yef{bottom:847.050000px;}
.yc3{bottom:857.670000px;}
.y96{bottom:859.560000px;}
.yee{bottom:864.600000px;}
.y9{bottom:865.410000px;}
.y76{bottom:867.660000px;}
.yc2{bottom:875.220000px;}
.y75{bottom:885.210000px;}
.y8{bottom:886.830000px;}
.y36{bottom:887.190000px;}
.yed{bottom:891.510000px;}
.yc1{bottom:892.860000px;}
.y7{bottom:900.600000px;}
.y117{bottom:901.860000px;}
.y74{bottom:902.850000px;}
.y95{bottom:904.470000px;}
.y35{bottom:904.830000px;}
.yc0{bottom:910.410000px;}
.y116{bottom:919.410000px;}
.y6{bottom:922.020000px;}
.y34{bottom:922.380000px;}
.y73{bottom:935.790000px;}
.ybf{bottom:936.960000px;}
.y5{bottom:939.570000px;}
.yec{bottom:939.840000px;}
.y33{bottom:940.020000px;}
.y115{bottom:945.960000px;}
.y32{bottom:957.570000px;}
.y72{bottom:963.150000px;}
.y114{bottom:963.600000px;}
.yeb{bottom:966.750000px;}
.y4{bottom:971.700000px;}
.ybe{bottom:972.600000px;}
.y93{bottom:984.570000px;}
.ybd{bottom:990.150000px;}
.y71{bottom:990.510000px;}
.y31{bottom:996.090000px;}
.yea{bottom:1004.100000px;}
.ybc{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y30{bottom:1013.760000px;}
.y70{bottom:1017.810000px;}
.ybb{bottom:1025.370000px;}
.y2f{bottom:1031.400000px;}
.y113{bottom:1034.370000px;}
.yba{bottom:1042.920000px;}
.y6f{bottom:1045.170000px;}
.y92{bottom:1047.060000px;}
.y2e{bottom:1048.950000px;}
.y112{bottom:1051.920000px;}
.ye9{bottom:1052.370000px;}
.y2d{bottom:1066.500000px;}
.yb9{bottom:1069.560000px;}
.ye8{bottom:1069.920000px;}
.y6e{bottom:1072.530000px;}
.y111{bottom:1078.560000px;}
.y2c{bottom:1084.140000px;}
.ye7{bottom:1087.560000px;}
.y110{bottom:1096.110000px;}
.y6d{bottom:1099.890000px;}
.yb8{bottom:1105.110000px;}
.y91{bottom:1109.610000px;}
.y2b{bottom:1122.660000px;}
.y56{bottom:1122.750000px;}
.y6c{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h11{height:26.580000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h13{height:44.100000px;}
.hc{height:44.130000px;}
.hd{height:44.190000px;}
.h12{height:48.690000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.he{height:61.740000px;}
.h15{height:61.770000px;}
.h18{height:61.793886px;}
.h17{height:61.830000px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h14{height:79.290000px;}
.h16{height:79.380000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:93.780000px;}
.w4{width:127.530000px;}
.wb{width:127.800000px;}
.wa{width:134.040000px;}
.w5{width:134.310000px;}
.wc{width:148.410000px;}
.w9{width:168.030000px;}
.w8{width:174.450000px;}
.w3{width:194.700000px;}
.w7{width:202.500000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:111.239987px;}
.x2{left:202.799987px;}
.xb{left:243.930000px;}
.x7{left:264.180000px;}
.x5{left:353.909987px;}
.xf{left:362.099987px;}
.x8{left:392.430000px;}
.xc{left:412.680000px;}
.x9{left:527.460000px;}
.xd{left:547.530000px;}
.x4{left:600.809987px;}
.xa{left:621.960000px;}
.xe{left:676.050000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.053760pt;}
.ls13{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.378240pt;}
.ls5{letter-spacing:2.003200pt;}
.ls18{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.933867pt;}
.wse{word-spacing:-11.932800pt;}
.ws7{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.750080pt;}
.ws6{word-spacing:-11.612800pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._4{margin-left:-3.156800pt;}
._3{margin-left:-1.903147pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.895018pt;}
._2{width:2.044182pt;}
._8{width:3.565525pt;}
._a{width:4.997804pt;}
._9{width:6.074496pt;}
._7{width:7.159998pt;}
._5{width:8.176534pt;}
._6{width:9.189032pt;}
._10{width:10.260266pt;}
._e{width:12.665601pt;}
._d{width:13.627200pt;}
._23{width:14.716480pt;}
._b{width:16.138666pt;}
._c{width:17.115651pt;}
._11{width:18.062720pt;}
._15{width:19.131520pt;}
._27{width:20.734720pt;}
._28{width:21.782827pt;}
._13{width:23.460160pt;}
._17{width:29.926400pt;}
._f{width:33.079360pt;}
._26{width:46.332480pt;}
._24{width:47.240960pt;}
._25{width:48.239680pt;}
._1a{width:50.126720pt;}
._1e{width:51.729920pt;}
._21{width:53.653760pt;}
._1b{width:72.731840pt;}
._18{width:87.534720pt;}
._16{width:91.649600pt;}
._1f{width:94.802560pt;}
._14{width:105.330240pt;}
._22{width:112.954133pt;}
._20{width:127.561280pt;}
._1d{width:169.084160pt;}
._12{width:174.160960pt;}
._1c{width:199.491520pt;}
._19{width:243.365760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:6.960000pt;}
.y62{bottom:7.040000pt;}
.y7c{bottom:9.040000pt;}
.y7f{bottom:14.800000pt;}
.y8a{bottom:14.880000pt;}
.y7a{bottom:16.800000pt;}
.y5e{bottom:22.560000pt;}
.y86{bottom:22.586667pt;}
.y61{bottom:22.640000pt;}
.y94{bottom:22.666667pt;}
.y7b{bottom:24.640000pt;}
.y79{bottom:26.640000pt;}
.y7e{bottom:30.400000pt;}
.y88{bottom:30.426667pt;}
.y84{bottom:30.480000pt;}
.y64{bottom:38.240000pt;}
.y87{bottom:38.266667pt;}
.y8d{bottom:38.320000pt;}
.y82{bottom:53.840000pt;}
.y8e{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ye6{bottom:99.706667pt;}
.yb7{bottom:101.066667pt;}
.y6b{bottom:108.026667pt;}
.y27{bottom:114.906667pt;}
.ye5{bottom:115.306667pt;}
.yb6{bottom:116.666667pt;}
.y90{bottom:121.066667pt;}
.y55{bottom:129.866667pt;}
.y26{bottom:130.506667pt;}
.ye4{bottom:130.906667pt;}
.yb5{bottom:132.266667pt;}
.y6a{bottom:132.346667pt;}
.y10f{bottom:132.666667pt;}
.y54{bottom:145.466667pt;}
.y25{bottom:146.106667pt;}
.ye3{bottom:146.586667pt;}
.yb4{bottom:147.946667pt;}
.y10e{bottom:148.346667pt;}
.y69{bottom:156.666667pt;}
.y53{bottom:161.066667pt;}
.y24{bottom:161.786667pt;}
.ye2{bottom:162.186667pt;}
.yb3{bottom:171.546667pt;}
.y10d{bottom:171.946667pt;}
.y8f{bottom:176.666667pt;}
.y52{bottom:176.746667pt;}
.y23{bottom:177.386667pt;}
.y68{bottom:180.986667pt;}
.ye1{bottom:186.106667pt;}
.y10c{bottom:187.626667pt;}
.y51{bottom:192.346667pt;}
.y22{bottom:201.306667pt;}
.yb2{bottom:203.146667pt;}
.y67{bottom:205.226667pt;}
.y10b{bottom:211.226667pt;}
.y50{bottom:215.946667pt;}
.yb1{bottom:218.826667pt;}
.y10a{bottom:226.826667pt;}
.y66{bottom:229.546667pt;}
.ye0{bottom:231.626667pt;}
.yb0{bottom:234.426667pt;}
.y21{bottom:244.506667pt;}
.ydf{bottom:247.306667pt;}
.y4f{bottom:247.626667pt;}
.y8c{bottom:247.786667pt;}
.yaf{bottom:250.106667pt;}
.y109{bottom:250.506667pt;}
.y65{bottom:253.866667pt;}
.yde{bottom:262.986667pt;}
.y4e{bottom:263.226667pt;}
.yae{bottom:265.706667pt;}
.y108{bottom:266.106667pt;}
.y20{bottom:277.466667pt;}
.ydd{bottom:278.586667pt;}
.y4d{bottom:278.906667pt;}
.y107{bottom:289.786667pt;}
.y1f{bottom:293.066667pt;}
.y63{bottom:293.786667pt;}
.ydc{bottom:294.186667pt;}
.yad{bottom:297.306667pt;}
.y4c{bottom:302.506667pt;}
.y106{bottom:305.386667pt;}
.y1e{bottom:308.666667pt;}
.yac{bottom:312.986667pt;}
.y8b{bottom:318.986667pt;}
.ydb{bottom:328.426667pt;}
.yab{bottom:328.586667pt;}
.y105{bottom:328.986667pt;}
.y4b{bottom:334.106667pt;}
.y1d{bottom:340.346667pt;}
.yda{bottom:344.106667pt;}
.yaa{bottom:344.266667pt;}
.y104{bottom:344.666667pt;}
.y60{bottom:349.306667pt;}
.y4a{bottom:349.786667pt;}
.y1c{bottom:355.946667pt;}
.y89{bottom:358.906667pt;}
.yd9{bottom:359.786667pt;}
.ya9{bottom:359.866667pt;}
.y49{bottom:365.386667pt;}
.y103{bottom:368.266667pt;}
.y1b{bottom:371.546667pt;}
.yd8{bottom:375.386667pt;}
.ya8{bottom:375.466667pt;}
.y102{bottom:383.946667pt;}
.y1a{bottom:387.226667pt;}
.y48{bottom:389.066667pt;}
.y5d{bottom:389.306667pt;}
.yd7{bottom:391.066667pt;}
.y126{bottom:393.306667pt;}
.y85{bottom:398.906667pt;}
.ya7{bottom:399.146667pt;}
.y101{bottom:399.546667pt;}
.y19{bottom:402.826667pt;}
.yd6{bottom:406.666667pt;}
.y125{bottom:408.986667pt;}
.y18{bottom:418.533333pt;}
.y47{bottom:420.693333pt;}
.yd5{bottom:422.293333pt;}
.y100{bottom:423.173333pt;}
.ya6{bottom:430.773333pt;}
.y124{bottom:432.613333pt;}
.y17{bottom:434.133333pt;}
.y46{bottom:436.293333pt;}
.yd4{bottom:437.973333pt;}
.yff{bottom:438.853333pt;}
.ya5{bottom:446.453333pt;}
.y5c{bottom:448.213333pt;}
.y123{bottom:448.293333pt;}
.y45{bottom:451.973333pt;}
.yd3{bottom:453.573333pt;}
.y83{bottom:454.453333pt;}
.ya4{bottom:462.053333pt;}
.yfe{bottom:462.453333pt;}
.y16{bottom:465.733333pt;}
.y44{bottom:467.573333pt;}
.yd2{bottom:469.173333pt;}
.y122{bottom:471.893333pt;}
.ya3{bottom:477.653333pt;}
.yfd{bottom:478.133333pt;}
.y5b{bottom:479.813333pt;}
.y15{bottom:481.413333pt;}
.y43{bottom:483.253333pt;}
.y121{bottom:487.493333pt;}
.ya2{bottom:493.333333pt;}
.y5a{bottom:495.493333pt;}
.y14{bottom:497.013333pt;}
.yfc{bottom:501.733333pt;}
.y120{bottom:503.173333pt;}
.yd1{bottom:503.493333pt;}
.y42{bottom:506.853333pt;}
.ya1{bottom:508.933333pt;}
.y81{bottom:510.053333pt;}
.y13{bottom:512.693333pt;}
.yfb{bottom:517.333333pt;}
.yd0{bottom:519.173333pt;}
.y59{bottom:519.413333pt;}
.y11f{bottom:526.773333pt;}
.y12{bottom:528.293333pt;}
.ycf{bottom:534.773333pt;}
.y41{bottom:538.453333pt;}
.ya0{bottom:540.613333pt;}
.yfa{bottom:541.013333pt;}
.y11e{bottom:542.453333pt;}
.yce{bottom:550.453333pt;}
.y40{bottom:554.133333pt;}
.y9f{bottom:556.213333pt;}
.yf9{bottom:556.613333pt;}
.y11d{bottom:558.053333pt;}
.y11{bottom:559.893333pt;}
.y58{bottom:562.293333pt;}
.ycd{bottom:566.053333pt;}
.y3f{bottom:569.733333pt;}
.y9e{bottom:571.813333pt;}
.y10{bottom:575.573333pt;}
.yf8{bottom:580.293333pt;}
.y80{bottom:581.253333pt;}
.ycc{bottom:581.653333pt;}
.y3e{bottom:585.413333pt;}
.y9d{bottom:587.493333pt;}
.y57{bottom:590.933333pt;}
.yf{bottom:591.173333pt;}
.yf7{bottom:595.893333pt;}
.ycb{bottom:597.333333pt;}
.y3d{bottom:601.013333pt;}
.y9c{bottom:603.093333pt;}
.ye{bottom:606.853333pt;}
.yf6{bottom:611.493333pt;}
.yca{bottom:612.933333pt;}
.y9b{bottom:618.773333pt;}
.y11c{bottom:620.933333pt;}
.y7d{bottom:621.173333pt;}
.y3c{bottom:624.613333pt;}
.yc9{bottom:628.613333pt;}
.yd{bottom:630.773333pt;}
.yf5{bottom:635.173333pt;}
.y11b{bottom:636.613333pt;}
.y9a{bottom:642.373333pt;}
.yf4{bottom:650.773333pt;}
.yc8{bottom:652.213333pt;}
.y3b{bottom:656.293333pt;}
.y11a{bottom:660.213333pt;}
.y3a{bottom:671.893333pt;}
.y99{bottom:673.333333pt;}
.yc{bottom:673.653333pt;}
.yf3{bottom:674.373333pt;}
.y119{bottom:675.813333pt;}
.y78{bottom:676.693333pt;}
.yc7{bottom:683.813333pt;}
.y98{bottom:684.213333pt;}
.y39{bottom:687.573333pt;}
.yf2{bottom:690.053333pt;}
.yc6{bottom:699.493333pt;}
.yb{bottom:705.493333pt;}
.y38{bottom:711.173333pt;}
.yf1{bottom:713.653333pt;}
.yc5{bottom:715.093333pt;}
.y97{bottom:724.133333pt;}
.yf0{bottom:729.333333pt;}
.yc4{bottom:730.693333pt;}
.ya{bottom:737.493333pt;}
.y118{bottom:738.693333pt;}
.y77{bottom:739.653333pt;}
.y37{bottom:743.093333pt;}
.yef{bottom:752.933333pt;}
.yc3{bottom:762.373333pt;}
.y96{bottom:764.053333pt;}
.yee{bottom:768.533333pt;}
.y9{bottom:769.253333pt;}
.y76{bottom:771.253333pt;}
.yc2{bottom:777.973333pt;}
.y75{bottom:786.853333pt;}
.y8{bottom:788.293333pt;}
.y36{bottom:788.613333pt;}
.yed{bottom:792.453333pt;}
.yc1{bottom:793.653333pt;}
.y7{bottom:800.533333pt;}
.y117{bottom:801.653333pt;}
.y74{bottom:802.533333pt;}
.y95{bottom:803.973333pt;}
.y35{bottom:804.293333pt;}
.yc0{bottom:809.253333pt;}
.y116{bottom:817.253333pt;}
.y6{bottom:819.573333pt;}
.y34{bottom:819.893333pt;}
.y73{bottom:831.813333pt;}
.ybf{bottom:832.853333pt;}
.y5{bottom:835.173333pt;}
.yec{bottom:835.413333pt;}
.y33{bottom:835.573333pt;}
.y115{bottom:840.853333pt;}
.y32{bottom:851.173333pt;}
.y72{bottom:856.133333pt;}
.y114{bottom:856.533333pt;}
.yeb{bottom:859.333333pt;}
.y4{bottom:863.733333pt;}
.ybe{bottom:864.533333pt;}
.y93{bottom:875.173333pt;}
.ybd{bottom:880.133333pt;}
.y71{bottom:880.453333pt;}
.y31{bottom:885.413333pt;}
.yea{bottom:892.533333pt;}
.ybc{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y30{bottom:901.120000pt;}
.y70{bottom:904.720000pt;}
.ybb{bottom:911.440000pt;}
.y2f{bottom:916.800000pt;}
.y113{bottom:919.440000pt;}
.yba{bottom:927.040000pt;}
.y6f{bottom:929.040000pt;}
.y92{bottom:930.720000pt;}
.y2e{bottom:932.400000pt;}
.y112{bottom:935.040000pt;}
.ye9{bottom:935.440000pt;}
.y2d{bottom:948.000000pt;}
.yb9{bottom:950.720000pt;}
.ye8{bottom:951.040000pt;}
.y6e{bottom:953.360000pt;}
.y111{bottom:958.720000pt;}
.y2c{bottom:963.680000pt;}
.ye7{bottom:966.720000pt;}
.y110{bottom:974.320000pt;}
.y6d{bottom:977.680000pt;}
.yb8{bottom:982.320000pt;}
.y91{bottom:986.320000pt;}
.y2b{bottom:997.920000pt;}
.y56{bottom:998.000000pt;}
.y6c{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h11{height:23.626667pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:33.059062pt;}
.h3{height:34.804688pt;}
.h13{height:39.200000pt;}
.hc{height:39.226667pt;}
.hd{height:39.280000pt;}
.h12{height:43.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.he{height:54.880000pt;}
.h15{height:54.906667pt;}
.h18{height:54.927899pt;}
.h17{height:54.960000pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h14{height:70.480000pt;}
.h16{height:70.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:83.360000pt;}
.w4{width:113.360000pt;}
.wb{width:113.600000pt;}
.wa{width:119.146667pt;}
.w5{width:119.386667pt;}
.wc{width:131.920000pt;}
.w9{width:149.360000pt;}
.w8{width:155.066667pt;}
.w3{width:173.066667pt;}
.w7{width:180.000000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:98.879988pt;}
.x2{left:180.266655pt;}
.xb{left:216.826667pt;}
.x7{left:234.826667pt;}
.x5{left:314.586655pt;}
.xf{left:321.866655pt;}
.x8{left:348.826667pt;}
.xc{left:366.826667pt;}
.x9{left:468.853333pt;}
.xd{left:486.693333pt;}
.x4{left:534.053322pt;}
.xa{left:552.853333pt;}
.xe{left:600.933333pt;}
.x3{left:704.053322pt;}
}




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