
    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_cb38b4844d97b1230110ebf6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_92b9e724c1033ac62d063835.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e72ec39dd33d4989438ee3c2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0ee77691ce28316d6497e028.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_8b7fb9c520da0c74e84decfd.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e064073f3ae610ef32151548.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b4802175898de72ab04058a6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_0fdf345c28ac75925e01c653.woff')format("woff");}.ff8{font-family:ff8;line-height:1.060547;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_3c94a8e0efe3282a93b0756e.woff')format("woff");}.ff9{font-family:ff9;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.ls23{letter-spacing:-0.444600px;}
.ls22{letter-spacing:-0.266400px;}
.lsd{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.159600px;}
.lsb{letter-spacing:-0.135000px;}
.ls16{letter-spacing:-0.125400px;}
.ls11{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls1f{letter-spacing:-0.084000px;}
.ls1b{letter-spacing:-0.064800px;}
.ls15{letter-spacing:-0.063600px;}
.ls17{letter-spacing:-0.029880px;}
.ls8{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.057000px;}
.ls4{letter-spacing:0.065520px;}
.ls1{letter-spacing:0.090000px;}
.ls19{letter-spacing:0.092400px;}
.ls6{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.099600px;}
.ls9{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.173400px;}
.ls20{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.242400px;}
.lse{letter-spacing:0.275400px;}
.ls10{letter-spacing:0.328200px;}
.ls1a{letter-spacing:0.573600px;}
.ls2{letter-spacing:3.506400px;}
.ls5{letter-spacing:4.773600px;}
.ls7{letter-spacing:7.293600px;}
.ls1c{letter-spacing:8.373600px;}
.ls0{letter-spacing:13.347360px;}
.ls21{letter-spacing:47.726640px;}
.ls1d{letter-spacing:80.846640px;}
.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;}
}
.ws2{word-spacing:-18.453600px;}
.ws3{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws7{word-spacing:-13.283400px;}
.wsb{word-spacing:-13.275360px;}
.ws6{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.162800px;}
.ws10{word-spacing:-13.161600px;}
.wsf{word-spacing:-13.066800px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-9.236520px;}
.ws4{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._d{margin-left:-4.027800px;}
._b{margin-left:-2.585400px;}
._0{margin-left:-1.110000px;}
._2{width:1.026252px;}
._8{width:2.296728px;}
._1{width:4.110036px;}
._9{width:5.328563px;}
._7{width:6.568680px;}
._6{width:7.644960px;}
._e{width:8.701800px;}
._a{width:9.710520px;}
._5{width:11.631360px;}
._11{width:14.540617px;}
._4{width:15.898260px;}
._c{width:17.487360px;}
._3{width:18.841812px;}
._f{width:20.500920px;}
._18{width:22.184280px;}
._16{width:28.973400px;}
._15{width:29.999880px;}
._12{width:56.873520px;}
._17{width:72.925560px;}
._19{width:82.364400px;}
._1a{width:114.949440px;}
._13{width:122.765040px;}
._14{width:123.967440px;}
._10{width:214.401000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y98{bottom:3.330000px;}
.y96{bottom:4.500000px;}
.y95{bottom:6.750000px;}
.y48{bottom:7.830000px;}
.y4d{bottom:7.860000px;}
.y4a{bottom:7.920000px;}
.yb0{bottom:25.470000px;}
.yaf{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.yad{bottom:141.510000px;}
.y6f{bottom:148.260000px;}
.yf6{bottom:152.130000px;}
.y93{bottom:152.940000px;}
.yd0{bottom:165.720000px;}
.y6e{bottom:165.810000px;}
.y92{bottom:167.970000px;}
.yf5{bottom:169.680000px;}
.y27{bottom:175.080000px;}
.yac{bottom:177.060000px;}
.y46{bottom:181.650000px;}
.y6d{bottom:183.450000px;}
.y26{bottom:192.630000px;}
.yab{bottom:194.610000px;}
.y91{bottom:195.330000px;}
.yf4{bottom:196.320000px;}
.y45{bottom:199.290000px;}
.y6c{bottom:210.000000px;}
.y25{bottom:210.180000px;}
.yaa{bottom:212.250000px;}
.yf3{bottom:213.870000px;}
.y44{bottom:216.840000px;}
.y90{bottom:222.600000px;}
.ya5{bottom:224.940000px;}
.y24{bottom:227.820000px;}
.yf2{bottom:231.510000px;}
.y43{bottom:234.480000px;}
.ycf{bottom:240.870000px;}
.y6b{bottom:244.470000px;}
.y23{bottom:245.370000px;}
.y8f{bottom:249.960000px;}
.y42{bottom:252.030000px;}
.yf1{bottom:258.060000px;}
.ya4{bottom:260.580000px;}
.y22{bottom:263.010000px;}
.yce{bottom:267.780000px;}
.y41{bottom:269.580000px;}
.yf0{bottom:275.610000px;}
.y8e{bottom:277.320000px;}
.ya3{bottom:278.130000px;}
.y40{bottom:287.220000px;}
.y21{bottom:289.830000px;}
.y6a{bottom:291.900000px;}
.ya2{bottom:295.680000px;}
.yef{bottom:302.250000px;}
.y8d{bottom:304.590000px;}
.ycd{bottom:304.770000px;}
.y69{bottom:309.540000px;}
.y3f{bottom:313.770000px;}
.yee{bottom:319.800000px;}
.ycc{bottom:322.410000px;}
.ya1{bottom:327.900000px;}
.y8c{bottom:331.950000px;}
.y68{bottom:336.090000px;}
.yed{bottom:337.440000px;}
.y20{bottom:338.160000px;}
.ycb{bottom:339.960000px;}
.y3e{bottom:349.410000px;}
.y1f{bottom:356.070000px;}
.y8b{bottom:359.310000px;}
.yec{bottom:363.990000px;}
.yca{bottom:366.870000px;}
.y67{bottom:371.640000px;}
.yeb{bottom:381.540000px;}
.y3d{bottom:381.630000px;}
.y66{bottom:389.280000px;}
.y1e{bottom:393.060000px;}
.yc9{bottom:404.220000px;}
.y65{bottom:406.830000px;}
.y8a{bottom:408.000000px;}
.yea{bottom:408.180000px;}
.y1d{bottom:410.700000px;}
.y64{bottom:424.380000px;}
.ye9{bottom:425.730000px;}
.y1c{bottom:428.250000px;}
.y63{bottom:442.020000px;}
.y89{bottom:443.550000px;}
.y1b{bottom:445.800000px;}
.ye8{bottom:452.370000px;}
.yc8{bottom:452.460000px;}
.y88{bottom:461.190000px;}
.y1a{bottom:463.440000px;}
.y62{bottom:468.570000px;}
.ye7{bottom:469.950000px;}
.yc7{bottom:470.130000px;}
.y104{bottom:478.500000px;}
.y87{bottom:478.770000px;}
.y19{bottom:481.020000px;}
.ye6{bottom:487.500000px;}
.yc6{bottom:487.680000px;}
.y103{bottom:496.140000px;}
.y86{bottom:496.410000px;}
.y18{bottom:498.660000px;}
.y61{bottom:504.240000px;}
.y85{bottom:513.960000px;}
.ye5{bottom:514.140000px;}
.yc5{bottom:514.590000px;}
.y17{bottom:516.210000px;}
.y60{bottom:521.790000px;}
.y102{bottom:522.690000px;}
.ye4{bottom:531.690000px;}
.y16{bottom:533.760000px;}
.y5f{bottom:539.340000px;}
.y101{bottom:540.330000px;}
.y84{bottom:540.510000px;}
.ye3{bottom:549.330000px;}
.y15{bottom:551.400000px;}
.y5e{bottom:556.980000px;}
.yc4{bottom:562.830000px;}
.y100{bottom:566.880000px;}
.y14{bottom:568.950000px;}
.y5d{bottom:574.530000px;}
.ye2{bottom:575.880000px;}
.y83{bottom:576.150000px;}
.yff{bottom:584.430000px;}
.y13{bottom:586.590000px;}
.yc3{bottom:589.740000px;}
.ye1{bottom:593.430000px;}
.y82{bottom:593.700000px;}
.y5c{bottom:601.170000px;}
.yfe{bottom:602.070000px;}
.y12{bottom:604.140000px;}
.ye0{bottom:611.070000px;}
.y81{bottom:620.340000px;}
.y11{bottom:621.690000px;}
.yfd{bottom:628.620000px;}
.y5b{bottom:636.720000px;}
.ydf{bottom:637.620000px;}
.yc2{bottom:638.070000px;}
.y10{bottom:639.330000px;}
.yfc{bottom:646.260000px;}
.y5a{bottom:654.270000px;}
.yde{bottom:655.260000px;}
.yc1{bottom:655.620000px;}
.y80{bottom:656.250000px;}
.yf{bottom:656.880000px;}
.yfb{bottom:663.810000px;}
.y59{bottom:671.910000px;}
.ydd{bottom:672.810000px;}
.yc0{bottom:673.260000px;}
.ya9{bottom:679.830000px;}
.ye{bottom:683.790000px;}
.yfa{bottom:690.360000px;}
.ybf{bottom:690.810000px;}
.ya8{bottom:697.470000px;}
.y58{bottom:698.460000px;}
.ydc{bottom:699.360000px;}
.y7f{bottom:704.490000px;}
.yf9{bottom:708.000000px;}
.ybe{bottom:708.360000px;}
.ya7{bottom:715.020000px;}
.ya0{bottom:716.100000px;}
.ydb{bottom:717.000000px;}
.y7e{bottom:722.040000px;}
.ybd{bottom:726.000000px;}
.y57{bottom:731.040000px;}
.yd{bottom:732.030000px;}
.y9f{bottom:733.650000px;}
.yda{bottom:734.550000px;}
.y7d{bottom:739.680000px;}
.ybc{bottom:743.550000px;}
.ya6{bottom:747.240000px;}
.y9e{bottom:751.290000px;}
.yf8{bottom:752.190000px;}
.y7c{bottom:757.230000px;}
.ybb{bottom:761.100000px;}
.yd9{bottom:761.190000px;}
.y56{bottom:766.680000px;}
.yc{bottom:767.850000px;}
.y9d{bottom:768.840000px;}
.y3c{bottom:769.740000px;}
.y7b{bottom:774.780000px;}
.yba{bottom:778.740000px;}
.y55{bottom:784.230000px;}
.y3b{bottom:787.290000px;}
.y7a{bottom:792.420000px;}
.yb9{bottom:796.290000px;}
.y54{bottom:801.780000px;}
.yb{bottom:803.850000px;}
.y9c{bottom:804.390000px;}
.y3a{bottom:804.930000px;}
.y79{bottom:809.970000px;}
.yb8{bottom:813.930000px;}
.y53{bottom:819.420000px;}
.y9b{bottom:822.030000px;}
.y78{bottom:827.610000px;}
.yb7{bottom:831.480000px;}
.y9a{bottom:839.580000px;}
.ya{bottom:839.850000px;}
.y39{bottom:840.480000px;}
.y52{bottom:845.970000px;}
.yb6{bottom:849.030000px;}
.y77{bottom:854.160000px;}
.y38{bottom:858.030000px;}
.y9{bottom:861.630000px;}
.y99{bottom:866.220000px;}
.yb5{bottom:866.670000px;}
.y37{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.y51{bottom:881.880000px;}
.y76{bottom:884.130000px;}
.yd8{bottom:893.220000px;}
.yb4{bottom:893.580000px;}
.y7{bottom:897.630000px;}
.y97{bottom:899.160000px;}
.y36{bottom:911.220000px;}
.y75{bottom:911.490000px;}
.yd7{bottom:919.860000px;}
.y94{bottom:926.520000px;}
.y50{bottom:927.600000px;}
.y35{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.yd6{bottom:937.410000px;}
.y74{bottom:938.850000px;}
.yb3{bottom:939.210000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y4f{bottom:954.870000px;}
.yd5{bottom:954.960000px;}
.y33{bottom:963.960000px;}
.y73{bottom:966.120000px;}
.yb2{bottom:966.570000px;}
.y32{bottom:981.600000px;}
.y4e{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y72{bottom:993.480000px;}
.y31{bottom:999.150000px;}
.y4c{bottom:1009.590000px;}
.yb1{bottom:1011.510000px;}
.y3{bottom:1012.320000px;}
.yd4{bottom:1016.820000px;}
.y71{bottom:1020.870000px;}
.yf7{bottom:1025.820000px;}
.y30{bottom:1034.820000px;}
.y4b{bottom:1036.890000px;}
.yd3{bottom:1043.370000px;}
.y2f{bottom:1052.370000px;}
.yae{bottom:1056.420000px;}
.yd2{bottom:1060.920000px;}
.y49{bottom:1064.250000px;}
.y70{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.yd1{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.y47{bottom:1091.610000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.he{height:26.580000px;}
.hd{height:26.640000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h15{height:44.190000px;}
.h16{height:44.220000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:59.973223px;}
.ha{height:60.960938px;}
.h14{height:61.740000px;}
.h17{height:61.793886px;}
.hb{height:62.585859px;}
.hf{height:68.582109px;}
.h11{height:70.777617px;}
.h4{height:72.985430px;}
.h12{height:82.551445px;}
.h13{height:227.280000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:40.950000px;}
.w5{width:91.980000px;}
.w10{width:119.160000px;}
.w7{width:127.800000px;}
.w8{width:130.080000px;}
.w6{width:137.790000px;}
.w9{width:138.600000px;}
.w13{width:141.930000px;}
.wf{width:143.040000px;}
.wc{width:151.470000px;}
.wb{width:152.040000px;}
.wa{width:165.510000px;}
.w12{width:170.460000px;}
.w11{width:178.230000px;}
.w4{width:196.230000px;}
.wd{width:240.480000px;}
.we{width:267.510000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x16{left:21.960000px;}
.x17{left:35.280000px;}
.x1{left:68.040000px;}
.x19{left:69.659987px;}
.x1a{left:87.389987px;}
.x1f{left:92.789987px;}
.x1d{left:95.759987px;}
.x25{left:111.239987px;}
.x5{left:164.639987px;}
.xc{left:178.410000px;}
.x2{left:192.719987px;}
.x10{left:211.350000px;}
.x21{left:212.520000px;}
.x13{left:232.740000px;}
.xa{left:233.759987px;}
.x15{left:259.770000px;}
.x20{left:268.949987px;}
.x6{left:281.280000px;}
.x1b{left:309.269987px;}
.xd{left:317.010000px;}
.x8{left:322.950000px;}
.x22{left:332.400000px;}
.xb{left:354.899987px;}
.x11{left:377.580000px;}
.x14{left:433.470000px;}
.xe{left:445.530000px;}
.x23{left:511.350000px;}
.x9{left:519.990000px;}
.x12{left:530.430000px;}
.xf{left:576.330000px;}
.x24{left:682.530000px;}
.x4{left:687.389987px;}
.x18{left:770.639987px;}
.x1c{left:792.059987px;}
.x1e{left:796.559987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.ls23{letter-spacing:-0.395200pt;}
.ls22{letter-spacing:-0.236800pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.141867pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls16{letter-spacing:-0.111467pt;}
.ls11{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls1f{letter-spacing:-0.074667pt;}
.ls1b{letter-spacing:-0.057600pt;}
.ls15{letter-spacing:-0.056533pt;}
.ls17{letter-spacing:-0.026560pt;}
.ls8{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.050667pt;}
.ls4{letter-spacing:0.058240pt;}
.ls1{letter-spacing:0.080000pt;}
.ls19{letter-spacing:0.082133pt;}
.ls6{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.088533pt;}
.ls9{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.154133pt;}
.ls20{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.215467pt;}
.lse{letter-spacing:0.244800pt;}
.ls10{letter-spacing:0.291733pt;}
.ls1a{letter-spacing:0.509867pt;}
.ls2{letter-spacing:3.116800pt;}
.ls5{letter-spacing:4.243200pt;}
.ls7{letter-spacing:6.483200pt;}
.ls1c{letter-spacing:7.443200pt;}
.ls0{letter-spacing:11.864320pt;}
.ls21{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws3{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws7{word-spacing:-11.807467pt;}
.wsb{word-spacing:-11.800320pt;}
.ws6{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.700267pt;}
.ws10{word-spacing:-11.699200pt;}
.wsf{word-spacing:-11.614933pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-8.210240pt;}
.ws4{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._d{margin-left:-3.580266pt;}
._b{margin-left:-2.298134pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.912224pt;}
._8{width:2.041536pt;}
._1{width:3.653365pt;}
._9{width:4.736501pt;}
._7{width:5.838827pt;}
._6{width:6.795520pt;}
._e{width:7.734933pt;}
._a{width:8.631573pt;}
._5{width:10.338987pt;}
._11{width:12.924993pt;}
._4{width:14.131787pt;}
._c{width:15.544320pt;}
._3{width:16.748277pt;}
._f{width:18.223040pt;}
._18{width:19.719360pt;}
._16{width:25.754133pt;}
._15{width:26.666560pt;}
._12{width:50.554240pt;}
._17{width:64.822720pt;}
._19{width:73.212800pt;}
._1a{width:102.177280pt;}
._13{width:109.124480pt;}
._14{width:110.193280pt;}
._10{width:190.578667pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:2.960000pt;}
.y96{bottom:4.000000pt;}
.y95{bottom:6.000000pt;}
.y48{bottom:6.960000pt;}
.y4d{bottom:6.986667pt;}
.y4a{bottom:7.040000pt;}
.yb0{bottom:22.640000pt;}
.yaf{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.yad{bottom:125.786667pt;}
.y6f{bottom:131.786667pt;}
.yf6{bottom:135.226667pt;}
.y93{bottom:135.946667pt;}
.yd0{bottom:147.306667pt;}
.y6e{bottom:147.386667pt;}
.y92{bottom:149.306667pt;}
.yf5{bottom:150.826667pt;}
.y27{bottom:155.626667pt;}
.yac{bottom:157.386667pt;}
.y46{bottom:161.466667pt;}
.y6d{bottom:163.066667pt;}
.y26{bottom:171.226667pt;}
.yab{bottom:172.986667pt;}
.y91{bottom:173.626667pt;}
.yf4{bottom:174.506667pt;}
.y45{bottom:177.146667pt;}
.y6c{bottom:186.666667pt;}
.y25{bottom:186.826667pt;}
.yaa{bottom:188.666667pt;}
.yf3{bottom:190.106667pt;}
.y44{bottom:192.746667pt;}
.y90{bottom:197.866667pt;}
.ya5{bottom:199.946667pt;}
.y24{bottom:202.506667pt;}
.yf2{bottom:205.786667pt;}
.y43{bottom:208.426667pt;}
.ycf{bottom:214.106667pt;}
.y6b{bottom:217.306667pt;}
.y23{bottom:218.106667pt;}
.y8f{bottom:222.186667pt;}
.y42{bottom:224.026667pt;}
.yf1{bottom:229.386667pt;}
.ya4{bottom:231.626667pt;}
.y22{bottom:233.786667pt;}
.yce{bottom:238.026667pt;}
.y41{bottom:239.626667pt;}
.yf0{bottom:244.986667pt;}
.y8e{bottom:246.506667pt;}
.ya3{bottom:247.226667pt;}
.y40{bottom:255.306667pt;}
.y21{bottom:257.626667pt;}
.y6a{bottom:259.466667pt;}
.ya2{bottom:262.826667pt;}
.yef{bottom:268.666667pt;}
.y8d{bottom:270.746667pt;}
.ycd{bottom:270.906667pt;}
.y69{bottom:275.146667pt;}
.y3f{bottom:278.906667pt;}
.yee{bottom:284.266667pt;}
.ycc{bottom:286.586667pt;}
.ya1{bottom:291.466667pt;}
.y8c{bottom:295.066667pt;}
.y68{bottom:298.746667pt;}
.yed{bottom:299.946667pt;}
.y20{bottom:300.586667pt;}
.ycb{bottom:302.186667pt;}
.y3e{bottom:310.586667pt;}
.y1f{bottom:316.506667pt;}
.y8b{bottom:319.386667pt;}
.yec{bottom:323.546667pt;}
.yca{bottom:326.106667pt;}
.y67{bottom:330.346667pt;}
.yeb{bottom:339.146667pt;}
.y3d{bottom:339.226667pt;}
.y66{bottom:346.026667pt;}
.y1e{bottom:349.386667pt;}
.yc9{bottom:359.306667pt;}
.y65{bottom:361.626667pt;}
.y8a{bottom:362.666667pt;}
.yea{bottom:362.826667pt;}
.y1d{bottom:365.066667pt;}
.y64{bottom:377.226667pt;}
.ye9{bottom:378.426667pt;}
.y1c{bottom:380.666667pt;}
.y63{bottom:392.906667pt;}
.y89{bottom:394.266667pt;}
.y1b{bottom:396.266667pt;}
.ye8{bottom:402.106667pt;}
.yc8{bottom:402.186667pt;}
.y88{bottom:409.946667pt;}
.y1a{bottom:411.946667pt;}
.y62{bottom:416.506667pt;}
.ye7{bottom:417.733333pt;}
.yc7{bottom:417.893333pt;}
.y104{bottom:425.333333pt;}
.y87{bottom:425.573333pt;}
.y19{bottom:427.573333pt;}
.ye6{bottom:433.333333pt;}
.yc6{bottom:433.493333pt;}
.y103{bottom:441.013333pt;}
.y86{bottom:441.253333pt;}
.y18{bottom:443.253333pt;}
.y61{bottom:448.213333pt;}
.y85{bottom:456.853333pt;}
.ye5{bottom:457.013333pt;}
.yc5{bottom:457.413333pt;}
.y17{bottom:458.853333pt;}
.y60{bottom:463.813333pt;}
.y102{bottom:464.613333pt;}
.ye4{bottom:472.613333pt;}
.y16{bottom:474.453333pt;}
.y5f{bottom:479.413333pt;}
.y101{bottom:480.293333pt;}
.y84{bottom:480.453333pt;}
.ye3{bottom:488.293333pt;}
.y15{bottom:490.133333pt;}
.y5e{bottom:495.093333pt;}
.yc4{bottom:500.293333pt;}
.y100{bottom:503.893333pt;}
.y14{bottom:505.733333pt;}
.y5d{bottom:510.693333pt;}
.ye2{bottom:511.893333pt;}
.y83{bottom:512.133333pt;}
.yff{bottom:519.493333pt;}
.y13{bottom:521.413333pt;}
.yc3{bottom:524.213333pt;}
.ye1{bottom:527.493333pt;}
.y82{bottom:527.733333pt;}
.y5c{bottom:534.373333pt;}
.yfe{bottom:535.173333pt;}
.y12{bottom:537.013333pt;}
.ye0{bottom:543.173333pt;}
.y81{bottom:551.413333pt;}
.y11{bottom:552.613333pt;}
.yfd{bottom:558.773333pt;}
.y5b{bottom:565.973333pt;}
.ydf{bottom:566.773333pt;}
.yc2{bottom:567.173333pt;}
.y10{bottom:568.293333pt;}
.yfc{bottom:574.453333pt;}
.y5a{bottom:581.573333pt;}
.yde{bottom:582.453333pt;}
.yc1{bottom:582.773333pt;}
.y80{bottom:583.333333pt;}
.yf{bottom:583.893333pt;}
.yfb{bottom:590.053333pt;}
.y59{bottom:597.253333pt;}
.ydd{bottom:598.053333pt;}
.yc0{bottom:598.453333pt;}
.ya9{bottom:604.293333pt;}
.ye{bottom:607.813333pt;}
.yfa{bottom:613.653333pt;}
.ybf{bottom:614.053333pt;}
.ya8{bottom:619.973333pt;}
.y58{bottom:620.853333pt;}
.ydc{bottom:621.653333pt;}
.y7f{bottom:626.213333pt;}
.yf9{bottom:629.333333pt;}
.ybe{bottom:629.653333pt;}
.ya7{bottom:635.573333pt;}
.ya0{bottom:636.533333pt;}
.ydb{bottom:637.333333pt;}
.y7e{bottom:641.813333pt;}
.ybd{bottom:645.333333pt;}
.y57{bottom:649.813333pt;}
.yd{bottom:650.693333pt;}
.y9f{bottom:652.133333pt;}
.yda{bottom:652.933333pt;}
.y7d{bottom:657.493333pt;}
.ybc{bottom:660.933333pt;}
.ya6{bottom:664.213333pt;}
.y9e{bottom:667.813333pt;}
.yf8{bottom:668.613333pt;}
.y7c{bottom:673.093333pt;}
.ybb{bottom:676.533333pt;}
.yd9{bottom:676.613333pt;}
.y56{bottom:681.493333pt;}
.yc{bottom:682.533333pt;}
.y9d{bottom:683.413333pt;}
.y3c{bottom:684.213333pt;}
.y7b{bottom:688.693333pt;}
.yba{bottom:692.213333pt;}
.y55{bottom:697.093333pt;}
.y3b{bottom:699.813333pt;}
.y7a{bottom:704.373333pt;}
.yb9{bottom:707.813333pt;}
.y54{bottom:712.693333pt;}
.yb{bottom:714.533333pt;}
.y9c{bottom:715.013333pt;}
.y3a{bottom:715.493333pt;}
.y79{bottom:719.973333pt;}
.yb8{bottom:723.493333pt;}
.y53{bottom:728.373333pt;}
.y9b{bottom:730.693333pt;}
.y78{bottom:735.653333pt;}
.yb7{bottom:739.093333pt;}
.y9a{bottom:746.293333pt;}
.ya{bottom:746.533333pt;}
.y39{bottom:747.093333pt;}
.y52{bottom:751.973333pt;}
.yb6{bottom:754.693333pt;}
.y77{bottom:759.253333pt;}
.y38{bottom:762.693333pt;}
.y9{bottom:765.893333pt;}
.y99{bottom:769.973333pt;}
.yb5{bottom:770.373333pt;}
.y37{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.y51{bottom:783.893333pt;}
.y76{bottom:785.893333pt;}
.yd8{bottom:793.973333pt;}
.yb4{bottom:794.293333pt;}
.y7{bottom:797.893333pt;}
.y97{bottom:799.253333pt;}
.y36{bottom:809.973333pt;}
.y75{bottom:810.213333pt;}
.yd7{bottom:817.653333pt;}
.y94{bottom:823.573333pt;}
.y50{bottom:824.533333pt;}
.y35{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.yd6{bottom:833.253333pt;}
.y74{bottom:834.533333pt;}
.yb3{bottom:834.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y4f{bottom:848.773333pt;}
.yd5{bottom:848.853333pt;}
.y33{bottom:856.853333pt;}
.y73{bottom:858.773333pt;}
.yb2{bottom:859.173333pt;}
.y32{bottom:872.533333pt;}
.y4e{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y72{bottom:883.093333pt;}
.y31{bottom:888.133333pt;}
.y4c{bottom:897.413333pt;}
.yb1{bottom:899.120000pt;}
.y3{bottom:899.840000pt;}
.yd4{bottom:903.840000pt;}
.y71{bottom:907.440000pt;}
.yf7{bottom:911.840000pt;}
.y30{bottom:919.840000pt;}
.y4b{bottom:921.680000pt;}
.yd3{bottom:927.440000pt;}
.y2f{bottom:935.440000pt;}
.yae{bottom:939.040000pt;}
.yd2{bottom:943.040000pt;}
.y49{bottom:946.000000pt;}
.y70{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.yd1{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.y47{bottom:970.320000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.he{height:23.626667pt;}
.hd{height:23.680000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h15{height:39.280000pt;}
.h16{height:39.306667pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:53.309531pt;}
.ha{height:54.187500pt;}
.h14{height:54.880000pt;}
.h17{height:54.927899pt;}
.hb{height:55.631875pt;}
.hf{height:60.961875pt;}
.h11{height:62.913437pt;}
.h4{height:64.875937pt;}
.h12{height:73.379063pt;}
.h13{height:202.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:36.400000pt;}
.w5{width:81.760000pt;}
.w10{width:105.920000pt;}
.w7{width:113.600000pt;}
.w8{width:115.626667pt;}
.w6{width:122.480000pt;}
.w9{width:123.200000pt;}
.w13{width:126.160000pt;}
.wf{width:127.146667pt;}
.wc{width:134.640000pt;}
.wb{width:135.146667pt;}
.wa{width:147.120000pt;}
.w12{width:151.520000pt;}
.w11{width:158.426667pt;}
.w4{width:174.426667pt;}
.wd{width:213.760000pt;}
.we{width:237.786667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x16{left:19.520000pt;}
.x17{left:31.360000pt;}
.x1{left:60.480000pt;}
.x19{left:61.919988pt;}
.x1a{left:77.679988pt;}
.x1f{left:82.479988pt;}
.x1d{left:85.119988pt;}
.x25{left:98.879988pt;}
.x5{left:146.346655pt;}
.xc{left:158.586667pt;}
.x2{left:171.306655pt;}
.x10{left:187.866667pt;}
.x21{left:188.906667pt;}
.x13{left:206.880000pt;}
.xa{left:207.786655pt;}
.x15{left:230.906667pt;}
.x20{left:239.066655pt;}
.x6{left:250.026667pt;}
.x1b{left:274.906655pt;}
.xd{left:281.786667pt;}
.x8{left:287.066667pt;}
.x22{left:295.466667pt;}
.xb{left:315.466655pt;}
.x11{left:335.626667pt;}
.x14{left:385.306667pt;}
.xe{left:396.026667pt;}
.x23{left:454.533333pt;}
.x9{left:462.213333pt;}
.x12{left:471.493333pt;}
.xf{left:512.293333pt;}
.x24{left:606.693333pt;}
.x4{left:611.013322pt;}
.x18{left:685.013322pt;}
.x1c{left:704.053322pt;}
.x1e{left:708.053322pt;}
.x3{left:718.773322pt;}
}




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