
    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_959e896833feb963e4d89e51.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_a58d347da5bb30f2a2dca8b2.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_d4a3981331d3a0404add9d0d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_54de39bfd736132a9db69acc.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_3c58fec544bc776da6217535.woff2')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_89eeada5848b1fddc3e10f68.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a274bcef51e5eefd2d82cd53.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2f9b477d5d3c8f2aac2baa40.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.880000px;}
.v3{vertical-align:15.120000px;}
.ls12{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.031680px;}
.ls14{letter-spacing:-0.011160px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.005400px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.166200px;}
.lsb{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:4.413600px;}
.ls19{letter-spacing:47.726640px;}
.ls11{letter-spacing:71.486640px;}
.ls18{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;}
}
.wsc{word-spacing:-60.120000px;}
.ws3{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.392600px;}
.wse{word-spacing:-13.353600px;}
.wsa{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.215240px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-11.880000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._c{margin-left:-4.034640px;}
._7{margin-left:-2.400240px;}
._0{margin-left:-1.110000px;}
._3{width:1.110467px;}
._b{width:3.066480px;}
._5{width:4.422600px;}
._6{width:6.315492px;}
._4{width:8.025600px;}
._a{width:9.404040px;}
._8{width:10.894560px;}
._9{width:12.047400px;}
._d{width:14.729400px;}
._e{width:15.931800px;}
._f{width:17.555040px;}
._1{width:20.382588px;}
._2{width:21.910583px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs4{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs5{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:7.740000px;}
.y47{bottom:7.830000px;}
.y62{bottom:7.860000px;}
.y45{bottom:7.920000px;}
.y79{bottom:26.550000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yc0{bottom:112.440000px;}
.y78{bottom:119.100000px;}
.ydc{bottom:120.450000px;}
.y53{bottom:131.430000px;}
.y5d{bottom:132.690000px;}
.ydb{bottom:138.000000px;}
.ybf{bottom:147.990000px;}
.y52{bottom:148.980000px;}
.yfe{bottom:152.130000px;}
.y77{bottom:154.650000px;}
.yda{bottom:155.640000px;}
.y24{bottom:157.260000px;}
.ybe{bottom:162.930000px;}
.y5c{bottom:164.910000px;}
.y51{bottom:166.530000px;}
.y98{bottom:169.680000px;}
.yd9{bottom:173.190000px;}
.y23{bottom:174.810000px;}
.y50{bottom:184.170000px;}
.y76{bottom:186.870000px;}
.y97{bottom:187.230000px;}
.yfd{bottom:187.320000px;}
.ybd{bottom:188.760000px;}
.yd8{bottom:190.740000px;}
.y22{bottom:192.360000px;}
.y96{bottom:204.870000px;}
.yd7{bottom:208.380000px;}
.y21{bottom:210.000000px;}
.yfc{bottom:213.870000px;}
.ybc{bottom:214.590000px;}
.y4f{bottom:219.720000px;}
.y95{bottom:222.420000px;}
.yd6{bottom:225.930000px;}
.y20{bottom:236.910000px;}
.y4e{bottom:237.360000px;}
.y94{bottom:239.970000px;}
.yfb{bottom:240.420000px;}
.ybb{bottom:240.510000px;}
.yd5{bottom:243.570000px;}
.yd4{bottom:261.120000px;}
.yba{bottom:266.340000px;}
.yfa{bottom:267.060000px;}
.y4d{bottom:272.910000px;}
.y93{bottom:275.610000px;}
.yd3{bottom:278.670000px;}
.yf9{bottom:284.610000px;}
.y1f{bottom:285.510000px;}
.y92{bottom:290.550000px;}
.yb9{bottom:292.170000px;}
.yd2{bottom:296.310000px;}
.yf8{bottom:302.250000px;}
.y4c{bottom:308.460000px;}
.yd1{bottom:313.860000px;}
.y91{bottom:317.910000px;}
.yb8{bottom:318.000000px;}
.y1e{bottom:322.500000px;}
.y4b{bottom:323.490000px;}
.yf7{bottom:328.800000px;}
.yd0{bottom:331.500000px;}
.y1d{bottom:340.050000px;}
.yb7{bottom:343.830000px;}
.y90{bottom:345.270000px;}
.yf6{bottom:346.350000px;}
.y4a{bottom:350.760000px;}
.ycf{bottom:358.410000px;}
.yb6{bottom:369.660000px;}
.y8f{bottom:372.540000px;}
.yf5{bottom:372.990000px;}
.y1c{bottom:375.690000px;}
.y49{bottom:378.120000px;}
.yf4{bottom:390.540000px;}
.y1b{bottom:393.240000px;}
.yb5{bottom:395.490000px;}
.y8e{bottom:399.900000px;}
.y48{bottom:405.480000px;}
.yce{bottom:406.650000px;}
.y1a{bottom:410.880000px;}
.yf3{bottom:417.090000px;}
.yb4{bottom:421.320000px;}
.y117{bottom:424.920000px;}
.y19{bottom:428.430000px;}
.y46{bottom:432.840000px;}
.ycd{bottom:441.480000px;}
.y116{bottom:442.470000px;}
.yf2{bottom:443.730000px;}
.y18{bottom:445.980000px;}
.yb3{bottom:447.150000px;}
.y8d{bottom:448.590000px;}
.ycc{bottom:452.910000px;}
.y44{bottom:460.110000px;}
.yf1{bottom:461.280000px;}
.y17{bottom:463.620000px;}
.y115{bottom:469.110000px;}
.yb2{bottom:473.010000px;}
.y16{bottom:481.200000px;}
.y8c{bottom:484.260000px;}
.yf0{bottom:487.950000px;}
.y114{bottom:495.690000px;}
.yb1{bottom:498.840000px;}
.y8b{bottom:501.810000px;}
.yef{bottom:505.500000px;}
.y43{bottom:508.830000px;}
.y113{bottom:513.330000px;}
.y15{bottom:516.840000px;}
.yee{bottom:523.050000px;}
.yb0{bottom:524.670000px;}
.y8a{bottom:528.360000px;}
.y112{bottom:530.880000px;}
.y14{bottom:534.390000px;}
.y75{bottom:534.570000px;}
.y42{bottom:544.470000px;}
.yed{bottom:549.690000px;}
.yaf{bottom:550.500000px;}
.y74{bottom:552.120000px;}
.y111{bottom:557.430000px;}
.y89{bottom:564.000000px;}
.yec{bottom:567.240000px;}
.y73{bottom:569.760000px;}
.y13{bottom:569.940000px;}
.y110{bottom:575.070000px;}
.yae{bottom:576.330000px;}
.y41{bottom:580.020000px;}
.y88{bottom:581.550000px;}
.y72{bottom:587.310000px;}
.y12{bottom:587.580000px;}
.yeb{bottom:594.150000px;}
.y40{bottom:597.660000px;}
.y87{bottom:599.190000px;}
.y10f{bottom:601.620000px;}
.yad{bottom:602.160000px;}
.y71{bottom:604.860000px;}
.y3f{bottom:615.210000px;}
.y86{bottom:616.740000px;}
.y70{bottom:622.500000px;}
.y11{bottom:623.130000px;}
.yac{bottom:627.990000px;}
.y10e{bottom:628.260000px;}
.y3e{bottom:632.760000px;}
.yea{bottom:642.480000px;}
.y10d{bottom:645.810000px;}
.y6f{bottom:649.050000px;}
.y10{bottom:650.040000px;}
.y3d{bottom:650.400000px;}
.y85{bottom:652.290000px;}
.yab{bottom:653.910000px;}
.y10c{bottom:663.360000px;}
.y3c{bottom:667.950000px;}
.ye9{bottom:669.390000px;}
.y84{bottom:669.930000px;}
.yaa{bottom:679.740000px;}
.y6e{bottom:684.600000px;}
.y83{bottom:687.480000px;}
.y10b{bottom:690.000000px;}
.y3b{bottom:694.590000px;}
.yf{bottom:698.280000px;}
.y6d{bottom:702.240000px;}
.ya9{bottom:705.570000px;}
.ye8{bottom:706.380000px;}
.y10a{bottom:716.550000px;}
.y6c{bottom:719.790000px;}
.y82{bottom:723.030000px;}
.y3a{bottom:730.140000px;}
.ya8{bottom:731.400000px;}
.ye7{bottom:733.290000px;}
.ye{bottom:734.100000px;}
.y109{bottom:734.190000px;}
.y6b{bottom:737.430000px;}
.y39{bottom:747.690000px;}
.ya7{bottom:757.230000px;}
.y81{bottom:758.670000px;}
.y108{bottom:760.740000px;}
.y6a{bottom:763.980000px;}
.y38{bottom:765.330000px;}
.y5b{bottom:769.110000px;}
.yd{bottom:770.100000px;}
.ye6{bottom:770.640000px;}
.y80{bottom:773.610000px;}
.y107{bottom:778.290000px;}
.ya6{bottom:783.060000px;}
.y5a{bottom:786.660000px;}
.y37{bottom:791.880000px;}
.y106{bottom:795.930000px;}
.y69{bottom:799.890000px;}
.y7f{bottom:800.970000px;}
.yc{bottom:806.100000px;}
.ya5{bottom:808.890000px;}
.y59{bottom:818.880000px;}
.y105{bottom:822.480000px;}
.y36{bottom:827.790000px;}
.yb{bottom:827.880000px;}
.y7e{bottom:828.330000px;}
.ya4{bottom:834.720000px;}
.ye5{bottom:836.520000px;}
.ya{bottom:842.100000px;}
.y68{bottom:845.520000px;}
.y104{bottom:849.030000px;}
.ye4{bottom:854.070000px;}
.y7d{bottom:855.600000px;}
.ya3{bottom:860.550000px;}
.y9{bottom:863.880000px;}
.y103{bottom:866.670000px;}
.ye3{bottom:871.620000px;}
.y67{bottom:872.880000px;}
.y35{bottom:876.030000px;}
.y8{bottom:878.100000px;}
.y7c{bottom:882.960000px;}
.ya2{bottom:886.380000px;}
.ye2{bottom:889.260000px;}
.y102{bottom:893.220000px;}
.y34{bottom:893.670000px;}
.y7{bottom:899.880000px;}
.y66{bottom:900.240000px;}
.y101{bottom:910.860000px;}
.y33{bottom:911.220000px;}
.ya1{bottom:912.210000px;}
.ye1{bottom:916.170000px;}
.y65{bottom:927.600000px;}
.y32{bottom:928.860000px;}
.y7b{bottom:931.650000px;}
.y6{bottom:932.190000px;}
.y100{bottom:937.410000px;}
.ycb{bottom:937.860000px;}
.ya0{bottom:938.040000px;}
.y31{bottom:946.410000px;}
.y5{bottom:951.540000px;}
.y64{bottom:954.870000px;}
.yff{bottom:954.960000px;}
.yca{bottom:955.410000px;}
.y9f{bottom:963.870000px;}
.y30{bottom:963.960000px;}
.ye0{bottom:964.410000px;}
.y7a{bottom:967.290000px;}
.yc9{bottom:972.960000px;}
.y2f{bottom:981.600000px;}
.ydf{bottom:981.960000px;}
.y63{bottom:982.230000px;}
.y9e{bottom:989.700000px;}
.y4{bottom:989.880000px;}
.yc8{bottom:990.600000px;}
.y2e{bottom:999.150000px;}
.yde{bottom:999.600000px;}
.yc7{bottom:1008.150000px;}
.y61{bottom:1009.590000px;}
.y3{bottom:1014.570000px;}
.y9d{bottom:1015.560000px;}
.y2d{bottom:1016.820000px;}
.ydd{bottom:1017.180000px;}
.yc6{bottom:1025.820000px;}
.y2c{bottom:1034.370000px;}
.y58{bottom:1034.820000px;}
.y60{bottom:1036.890000px;}
.y9c{bottom:1041.390000px;}
.yc5{bottom:1043.370000px;}
.y2b{bottom:1051.920000px;}
.y57{bottom:1052.370000px;}
.yc4{bottom:1060.920000px;}
.y5f{bottom:1064.250000px;}
.y9b{bottom:1067.220000px;}
.y2a{bottom:1069.560000px;}
.y56{bottom:1069.920000px;}
.yc3{bottom:1078.560000px;}
.y29{bottom:1087.110000px;}
.y55{bottom:1087.560000px;}
.y5e{bottom:1091.610000px;}
.y99{bottom:1093.140000px;}
.yc2{bottom:1096.110000px;}
.y54{bottom:1105.110000px;}
.yc1{bottom:1113.750000px;}
.y28{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h11{height:25.020000px;}
.h12{height:25.110000px;}
.h13{height:25.140000px;}
.hd{height:26.550000px;}
.h10{height:26.580000px;}
.he{height:26.640000px;}
.hb{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h14{height:41.661211px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hf{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w16{width:32.130000px;}
.w1a{width:48.690000px;}
.w11{width:61.650000px;}
.w15{width:62.100000px;}
.wb{width:72.570000px;}
.wa{width:80.910000px;}
.w10{width:83.610000px;}
.wd{width:83.640000px;}
.w12{width:86.220000px;}
.wc{width:86.310000px;}
.w14{width:92.700000px;}
.w19{width:94.050000px;}
.w8{width:99.360000px;}
.w13{width:101.280000px;}
.w4{width:116.490000px;}
.w18{width:149.520000px;}
.w5{width:166.680000px;}
.w17{width:191.430000px;}
.w3{width:216.810000px;}
.we{width:217.170000px;}
.w9{width:241.230000px;}
.w6{width:256.320000px;}
.wf{width:280.920000px;}
.w7{width:305.850000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x24{left:111.239987px;}
.x8{left:122.039987px;}
.x9{left:149.039987px;}
.x14{left:154.980000px;}
.x10{left:157.949987px;}
.xd{left:165.180000px;}
.x1c{left:187.230000px;}
.x4{left:195.870000px;}
.x16{left:201.000000px;}
.x1d{left:220.080000px;}
.x15{left:239.430000px;}
.x22{left:248.519987px;}
.x2{left:251.759987px;}
.x23{left:255.089987px;}
.x11{left:275.970000px;}
.x17{left:285.330000px;}
.x18{left:347.790000px;}
.xc{left:353.909987px;}
.x12{left:376.050000px;}
.x1e{left:412.320000px;}
.x6{left:413.490000px;}
.xe{left:422.220000px;}
.x19{left:434.730000px;}
.x13{left:457.680000px;}
.x7{left:530.700000px;}
.x1a{left:536.730000px;}
.x1f{left:562.560000px;}
.x1b{left:630.150000px;}
.xa{left:649.139987px;}
.xf{left:654.809987px;}
.x20{left:657.330000px;}
.x21{left:753.809987px;}
.xb{left:758.309987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.560000pt;}
.v3{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.028160pt;}
.ls14{letter-spacing:-0.009920pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.004800pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.147733pt;}
.lsb{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:3.923200pt;}
.ls19{letter-spacing:42.423680pt;}
.ls11{letter-spacing:63.543680pt;}
.ls18{letter-spacing:71.863680pt;}
.wsc{word-spacing:-53.440000pt;}
.ws3{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.904533pt;}
.wse{word-spacing:-11.869867pt;}
.wsa{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.746880pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._c{margin-left:-3.586347pt;}
._7{margin-left:-2.133546pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.987082pt;}
._b{width:2.725760pt;}
._5{width:3.931200pt;}
._6{width:5.613770pt;}
._4{width:7.133867pt;}
._a{width:8.359147pt;}
._8{width:9.684053pt;}
._9{width:10.708800pt;}
._d{width:13.092800pt;}
._e{width:14.161600pt;}
._f{width:15.604480pt;}
._1{width:18.117856pt;}
._2{width:19.476074pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs4{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs5{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:6.880000pt;}
.y47{bottom:6.960000pt;}
.y62{bottom:6.986667pt;}
.y45{bottom:7.040000pt;}
.y79{bottom:23.600000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yc0{bottom:99.946667pt;}
.y78{bottom:105.866667pt;}
.ydc{bottom:107.066667pt;}
.y53{bottom:116.826667pt;}
.y5d{bottom:117.946667pt;}
.ydb{bottom:122.666667pt;}
.ybf{bottom:131.546667pt;}
.y52{bottom:132.426667pt;}
.yfe{bottom:135.226667pt;}
.y77{bottom:137.466667pt;}
.yda{bottom:138.346667pt;}
.y24{bottom:139.786667pt;}
.ybe{bottom:144.826667pt;}
.y5c{bottom:146.586667pt;}
.y51{bottom:148.026667pt;}
.y98{bottom:150.826667pt;}
.yd9{bottom:153.946667pt;}
.y23{bottom:155.386667pt;}
.y50{bottom:163.706667pt;}
.y76{bottom:166.106667pt;}
.y97{bottom:166.426667pt;}
.yfd{bottom:166.506667pt;}
.ybd{bottom:167.786667pt;}
.yd8{bottom:169.546667pt;}
.y22{bottom:170.986667pt;}
.y96{bottom:182.106667pt;}
.yd7{bottom:185.226667pt;}
.y21{bottom:186.666667pt;}
.yfc{bottom:190.106667pt;}
.ybc{bottom:190.746667pt;}
.y4f{bottom:195.306667pt;}
.y95{bottom:197.706667pt;}
.yd6{bottom:200.826667pt;}
.y20{bottom:210.586667pt;}
.y4e{bottom:210.986667pt;}
.y94{bottom:213.306667pt;}
.yfb{bottom:213.706667pt;}
.ybb{bottom:213.786667pt;}
.yd5{bottom:216.506667pt;}
.yd4{bottom:232.106667pt;}
.yba{bottom:236.746667pt;}
.yfa{bottom:237.386667pt;}
.y4d{bottom:242.586667pt;}
.y93{bottom:244.986667pt;}
.yd3{bottom:247.706667pt;}
.yf9{bottom:252.986667pt;}
.y1f{bottom:253.786667pt;}
.y92{bottom:258.266667pt;}
.yb9{bottom:259.706667pt;}
.yd2{bottom:263.386667pt;}
.yf8{bottom:268.666667pt;}
.y4c{bottom:274.186667pt;}
.yd1{bottom:278.986667pt;}
.y91{bottom:282.586667pt;}
.yb8{bottom:282.666667pt;}
.y1e{bottom:286.666667pt;}
.y4b{bottom:287.546667pt;}
.yf7{bottom:292.266667pt;}
.yd0{bottom:294.666667pt;}
.y1d{bottom:302.266667pt;}
.yb7{bottom:305.626667pt;}
.y90{bottom:306.906667pt;}
.yf6{bottom:307.866667pt;}
.y4a{bottom:311.786667pt;}
.ycf{bottom:318.586667pt;}
.yb6{bottom:328.586667pt;}
.y8f{bottom:331.146667pt;}
.yf5{bottom:331.546667pt;}
.y1c{bottom:333.946667pt;}
.y49{bottom:336.106667pt;}
.yf4{bottom:347.146667pt;}
.y1b{bottom:349.546667pt;}
.yb5{bottom:351.546667pt;}
.y8e{bottom:355.466667pt;}
.y48{bottom:360.426667pt;}
.yce{bottom:361.466667pt;}
.y1a{bottom:365.226667pt;}
.yf3{bottom:370.746667pt;}
.yb4{bottom:374.506667pt;}
.y117{bottom:377.706667pt;}
.y19{bottom:380.826667pt;}
.y46{bottom:384.746667pt;}
.ycd{bottom:392.426667pt;}
.y116{bottom:393.306667pt;}
.yf2{bottom:394.426667pt;}
.y18{bottom:396.426667pt;}
.yb3{bottom:397.466667pt;}
.y8d{bottom:398.746667pt;}
.ycc{bottom:402.586667pt;}
.y44{bottom:408.986667pt;}
.yf1{bottom:410.026667pt;}
.y17{bottom:412.106667pt;}
.y115{bottom:416.986667pt;}
.yb2{bottom:420.453333pt;}
.y16{bottom:427.733333pt;}
.y8c{bottom:430.453333pt;}
.yf0{bottom:433.733333pt;}
.y114{bottom:440.613333pt;}
.yb1{bottom:443.413333pt;}
.y8b{bottom:446.053333pt;}
.yef{bottom:449.333333pt;}
.y43{bottom:452.293333pt;}
.y113{bottom:456.293333pt;}
.y15{bottom:459.413333pt;}
.yee{bottom:464.933333pt;}
.yb0{bottom:466.373333pt;}
.y8a{bottom:469.653333pt;}
.y112{bottom:471.893333pt;}
.y14{bottom:475.013333pt;}
.y75{bottom:475.173333pt;}
.y42{bottom:483.973333pt;}
.yed{bottom:488.613333pt;}
.yaf{bottom:489.333333pt;}
.y74{bottom:490.773333pt;}
.y111{bottom:495.493333pt;}
.y89{bottom:501.333333pt;}
.yec{bottom:504.213333pt;}
.y73{bottom:506.453333pt;}
.y13{bottom:506.613333pt;}
.y110{bottom:511.173333pt;}
.yae{bottom:512.293333pt;}
.y41{bottom:515.573333pt;}
.y88{bottom:516.933333pt;}
.y72{bottom:522.053333pt;}
.y12{bottom:522.293333pt;}
.yeb{bottom:528.133333pt;}
.y40{bottom:531.253333pt;}
.y87{bottom:532.613333pt;}
.y10f{bottom:534.773333pt;}
.yad{bottom:535.253333pt;}
.y71{bottom:537.653333pt;}
.y3f{bottom:546.853333pt;}
.y86{bottom:548.213333pt;}
.y70{bottom:553.333333pt;}
.y11{bottom:553.893333pt;}
.yac{bottom:558.213333pt;}
.y10e{bottom:558.453333pt;}
.y3e{bottom:562.453333pt;}
.yea{bottom:571.093333pt;}
.y10d{bottom:574.053333pt;}
.y6f{bottom:576.933333pt;}
.y10{bottom:577.813333pt;}
.y3d{bottom:578.133333pt;}
.y85{bottom:579.813333pt;}
.yab{bottom:581.253333pt;}
.y10c{bottom:589.653333pt;}
.y3c{bottom:593.733333pt;}
.ye9{bottom:595.013333pt;}
.y84{bottom:595.493333pt;}
.yaa{bottom:604.213333pt;}
.y6e{bottom:608.533333pt;}
.y83{bottom:611.093333pt;}
.y10b{bottom:613.333333pt;}
.y3b{bottom:617.413333pt;}
.yf{bottom:620.693333pt;}
.y6d{bottom:624.213333pt;}
.ya9{bottom:627.173333pt;}
.ye8{bottom:627.893333pt;}
.y10a{bottom:636.933333pt;}
.y6c{bottom:639.813333pt;}
.y82{bottom:642.693333pt;}
.y3a{bottom:649.013333pt;}
.ya8{bottom:650.133333pt;}
.ye7{bottom:651.813333pt;}
.ye{bottom:652.533333pt;}
.y109{bottom:652.613333pt;}
.y6b{bottom:655.493333pt;}
.y39{bottom:664.613333pt;}
.ya7{bottom:673.093333pt;}
.y81{bottom:674.373333pt;}
.y108{bottom:676.213333pt;}
.y6a{bottom:679.093333pt;}
.y38{bottom:680.293333pt;}
.y5b{bottom:683.653333pt;}
.yd{bottom:684.533333pt;}
.ye6{bottom:685.013333pt;}
.y80{bottom:687.653333pt;}
.y107{bottom:691.813333pt;}
.ya6{bottom:696.053333pt;}
.y5a{bottom:699.253333pt;}
.y37{bottom:703.893333pt;}
.y106{bottom:707.493333pt;}
.y69{bottom:711.013333pt;}
.y7f{bottom:711.973333pt;}
.yc{bottom:716.533333pt;}
.ya5{bottom:719.013333pt;}
.y59{bottom:727.893333pt;}
.y105{bottom:731.093333pt;}
.y36{bottom:735.813333pt;}
.yb{bottom:735.893333pt;}
.y7e{bottom:736.293333pt;}
.ya4{bottom:741.973333pt;}
.ye5{bottom:743.573333pt;}
.ya{bottom:748.533333pt;}
.y68{bottom:751.573333pt;}
.y104{bottom:754.693333pt;}
.ye4{bottom:759.173333pt;}
.y7d{bottom:760.533333pt;}
.ya3{bottom:764.933333pt;}
.y9{bottom:767.893333pt;}
.y103{bottom:770.373333pt;}
.ye3{bottom:774.773333pt;}
.y67{bottom:775.893333pt;}
.y35{bottom:778.693333pt;}
.y8{bottom:780.533333pt;}
.y7c{bottom:784.853333pt;}
.ya2{bottom:787.893333pt;}
.ye2{bottom:790.453333pt;}
.y102{bottom:793.973333pt;}
.y34{bottom:794.373333pt;}
.y7{bottom:799.893333pt;}
.y66{bottom:800.213333pt;}
.y101{bottom:809.653333pt;}
.y33{bottom:809.973333pt;}
.ya1{bottom:810.853333pt;}
.ye1{bottom:814.373333pt;}
.y65{bottom:824.533333pt;}
.y32{bottom:825.653333pt;}
.y7b{bottom:828.133333pt;}
.y6{bottom:828.613333pt;}
.y100{bottom:833.253333pt;}
.ycb{bottom:833.653333pt;}
.ya0{bottom:833.813333pt;}
.y31{bottom:841.253333pt;}
.y5{bottom:845.813333pt;}
.y64{bottom:848.773333pt;}
.yff{bottom:848.853333pt;}
.yca{bottom:849.253333pt;}
.y9f{bottom:856.773333pt;}
.y30{bottom:856.853333pt;}
.ye0{bottom:857.253333pt;}
.y7a{bottom:859.813333pt;}
.yc9{bottom:864.853333pt;}
.y2f{bottom:872.533333pt;}
.ydf{bottom:872.853333pt;}
.y63{bottom:873.093333pt;}
.y9e{bottom:879.733333pt;}
.y4{bottom:879.893333pt;}
.yc8{bottom:880.533333pt;}
.y2e{bottom:888.133333pt;}
.yde{bottom:888.533333pt;}
.yc7{bottom:896.133333pt;}
.y61{bottom:897.413333pt;}
.y3{bottom:901.840000pt;}
.y9d{bottom:902.720000pt;}
.y2d{bottom:903.840000pt;}
.ydd{bottom:904.160000pt;}
.yc6{bottom:911.840000pt;}
.y2c{bottom:919.440000pt;}
.y58{bottom:919.840000pt;}
.y60{bottom:921.680000pt;}
.y9c{bottom:925.680000pt;}
.yc5{bottom:927.440000pt;}
.y2b{bottom:935.040000pt;}
.y57{bottom:935.440000pt;}
.yc4{bottom:943.040000pt;}
.y5f{bottom:946.000000pt;}
.y9b{bottom:948.640000pt;}
.y2a{bottom:950.720000pt;}
.y56{bottom:951.040000pt;}
.yc3{bottom:958.720000pt;}
.y29{bottom:966.320000pt;}
.y55{bottom:966.720000pt;}
.y5e{bottom:970.320000pt;}
.y99{bottom:971.680000pt;}
.yc2{bottom:974.320000pt;}
.y54{bottom:982.320000pt;}
.yc1{bottom:990.000000pt;}
.y28{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h11{height:22.240000pt;}
.h12{height:22.320000pt;}
.h13{height:22.346667pt;}
.hd{height:23.600000pt;}
.h10{height:23.626667pt;}
.he{height:23.680000pt;}
.hb{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h14{height:37.032187pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hf{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w16{width:28.560000pt;}
.w1a{width:43.280000pt;}
.w11{width:54.800000pt;}
.w15{width:55.200000pt;}
.wb{width:64.506667pt;}
.wa{width:71.920000pt;}
.w10{width:74.320000pt;}
.wd{width:74.346667pt;}
.w12{width:76.640000pt;}
.wc{width:76.720000pt;}
.w14{width:82.400000pt;}
.w19{width:83.600000pt;}
.w8{width:88.320000pt;}
.w13{width:90.026667pt;}
.w4{width:103.546667pt;}
.w18{width:132.906667pt;}
.w5{width:148.160000pt;}
.w17{width:170.160000pt;}
.w3{width:192.720000pt;}
.we{width:193.040000pt;}
.w9{width:214.426667pt;}
.w6{width:227.840000pt;}
.wf{width:249.706667pt;}
.w7{width:271.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x24{left:98.879988pt;}
.x8{left:108.479988pt;}
.x9{left:132.479988pt;}
.x14{left:137.760000pt;}
.x10{left:140.399988pt;}
.xd{left:146.826667pt;}
.x1c{left:166.426667pt;}
.x4{left:174.106667pt;}
.x16{left:178.666667pt;}
.x1d{left:195.626667pt;}
.x15{left:212.826667pt;}
.x22{left:220.906655pt;}
.x2{left:223.786655pt;}
.x23{left:226.746655pt;}
.x11{left:245.306667pt;}
.x17{left:253.626667pt;}
.x18{left:309.146667pt;}
.xc{left:314.586655pt;}
.x12{left:334.266667pt;}
.x1e{left:366.506667pt;}
.x6{left:367.546667pt;}
.xe{left:375.306667pt;}
.x19{left:386.426667pt;}
.x13{left:406.826667pt;}
.x7{left:471.733333pt;}
.x1a{left:477.093333pt;}
.x1f{left:500.053333pt;}
.x1b{left:560.133333pt;}
.xa{left:577.013322pt;}
.xf{left:582.053322pt;}
.x20{left:584.293333pt;}
.x21{left:670.053322pt;}
.xb{left:674.053322pt;}
.x3{left:711.413322pt;}
}




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