
    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_b8c327195112a0643c21cae7.woff')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_ad5166293aaa96b81c9eb20c.woff')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_3c0af35951a490be78ed0a1f.woff')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_1c3dbd3e864313e15636244e.woff')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_4fda32c8558a042553106392.woff')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_f4efdaea9c4fe2436ff6e14a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e054e9edddaefba8df7a70dd.woff')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_9b7bb586ddc778aab923de57.woff')format("woff");}.ff8{font-family:ff8;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eb2f6df5e0f1b4008ae3d012.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls18{letter-spacing:-0.093600px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.048960px;}
.ls9{letter-spacing:-0.044400px;}
.ls13{letter-spacing:-0.040320px;}
.lsa{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.114600px;}
.ls16{letter-spacing:0.118200px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.319800px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls1d{letter-spacing:0.428400px;}
.ls19{letter-spacing:5.940000px;}
.lsd{letter-spacing:7.740000px;}
.ls1a{letter-spacing:22.140000px;}
.ls1e{letter-spacing:47.726640px;}
.ls1b{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;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wse{word-spacing:-13.344600px;}
.wsb{word-spacing:-13.275360px;}
.ws10{word-spacing:-13.268160px;}
.ws4{word-spacing:-13.226400px;}
.ws3{word-spacing:-13.182000px;}
.wsc{word-spacing:-13.177440px;}
.ws8{word-spacing:-13.039800px;}
.wsd{word-spacing:-10.648200px;}
.wsf{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._7{margin-left:-4.420800px;}
._6{margin-left:-3.306600px;}
._9{margin-left:-2.284800px;}
._0{margin-left:-1.050000px;}
._2{width:1.520294px;}
._1{width:2.701212px;}
._b{width:3.743952px;}
._a{width:5.679000px;}
._5{width:6.793800px;}
._3{width:8.056200px;}
._4{width:9.438600px;}
._c{width:10.641601px;}
._8{width:12.084000px;}
._12{width:14.512680px;}
._13{width:15.836760px;}
._15{width:18.003840px;}
._14{width:19.238400px;}
._10{width:20.563320px;}
._d{width:21.583080px;}
._e{width:22.725360px;}
._f{width:27.775440px;}
._11{width:53.085960px;}
.fc2{color:transparent;}
.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;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:5.220000px;}
.y60{bottom:5.310000px;}
.y37{bottom:7.830000px;}
.y3d{bottom:7.920000px;}
.ya3{bottom:7.950000px;}
.y9e{bottom:13.050000px;}
.y5f{bottom:13.140000px;}
.y7e{bottom:15.750000px;}
.y7d{bottom:23.580000px;}
.y36{bottom:25.470000px;}
.y5a{bottom:26.550000px;}
.y5e{bottom:35.190000px;}
.y78{bottom:37.800000px;}
.y64{bottom:37.890000px;}
.y35{bottom:43.020000px;}
.y77{bottom:45.630000px;}
.y63{bottom:45.720000px;}
.y55{bottom:59.850000px;}
.y3b{bottom:59.940000px;}
.y3a{bottom:67.770000px;}
.y76{bottom:67.800000px;}
.y4f{bottom:67.860000px;}
.y4a{bottom:67.890000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y54{bottom:89.820000px;}
.y75{bottom:89.850000px;}
.y39{bottom:89.910000px;}
.y49{bottom:89.940000px;}
.y1{bottom:101.640000px;}
.y8a{bottom:120.360000px;}
.yaf{bottom:131.610000px;}
.y27{bottom:136.290000px;}
.y89{bottom:138.000000px;}
.y5b{bottom:144.480000px;}
.yae{bottom:149.250000px;}
.y26{bottom:153.840000px;}
.y88{bottom:155.550000px;}
.y59{bottom:156.720000px;}
.yd6{bottom:158.610000px;}
.y25{bottom:171.480000px;}
.y87{bottom:173.100000px;}
.yd5{bottom:176.160000px;}
.y53{bottom:184.080000px;}
.y24{bottom:189.030000px;}
.y86{bottom:190.740000px;}
.yd4{bottom:193.710000px;}
.yad{bottom:196.230000px;}
.y23{bottom:206.580000px;}
.y58{bottom:211.350000px;}
.yd3{bottom:220.350000px;}
.yac{bottom:223.590000px;}
.y85{bottom:225.570000px;}
.y22{bottom:233.490000px;}
.y57{bottom:238.710000px;}
.y84{bottom:239.610000px;}
.yd2{bottom:247.260000px;}
.yab{bottom:250.950000px;}
.y83{bottom:253.740000px;}
.y82{bottom:265.890000px;}
.y56{bottom:266.070000px;}
.yaa{bottom:278.310000px;}
.y21{bottom:281.820000px;}
.y7c{bottom:293.250000px;}
.y4e{bottom:293.340000px;}
.yd1{bottom:295.500000px;}
.y20{bottom:299.370000px;}
.yd0{bottom:313.140000px;}
.y1f{bottom:317.010000px;}
.y81{bottom:320.520000px;}
.y52{bottom:320.700000px;}
.ya9{bottom:327.000000px;}
.y1e{bottom:334.560000px;}
.ycf{bottom:339.960000px;}
.yfb{bottom:346.440000px;}
.y80{bottom:347.880000px;}
.y51{bottom:348.060000px;}
.y1d{bottom:352.110000px;}
.ya8{bottom:362.550000px;}
.yfa{bottom:363.990000px;}
.y1c{bottom:369.750000px;}
.y7f{bottom:375.240000px;}
.y50{bottom:375.420000px;}
.ya7{bottom:380.190000px;}
.yf9{bottom:381.540000px;}
.y1b{bottom:387.300000px;}
.yce{bottom:388.290000px;}
.yf8{bottom:399.180000px;}
.y74{bottom:402.600000px;}
.y48{bottom:402.690000px;}
.y1a{bottom:404.850000px;}
.ycd{bottom:405.840000px;}
.ya6{bottom:415.020000px;}
.y19{bottom:422.490000px;}
.ycc{bottom:423.480000px;}
.yf7{bottom:425.730000px;}
.ya5{bottom:429.060000px;}
.y7b{bottom:429.870000px;}
.y4d{bottom:430.050000px;}
.ycb{bottom:441.030000px;}
.ya4{bottom:441.300000px;}
.yf6{bottom:443.370000px;}
.y18{bottom:449.400000px;}
.y7a{bottom:457.230000px;}
.y4c{bottom:457.410000px;}
.yca{bottom:458.580000px;}
.ya2{bottom:468.570000px;}
.yf5{bottom:469.950000px;}
.yc9{bottom:476.250000px;}
.y79{bottom:484.620000px;}
.y4b{bottom:484.800000px;}
.yf4{bottom:487.500000px;}
.yc8{bottom:493.800000px;}
.ya1{bottom:495.960000px;}
.y17{bottom:498.030000px;}
.yf3{bottom:505.140000px;}
.yc7{bottom:511.440000px;}
.y70{bottom:511.980000px;}
.y44{bottom:512.070000px;}
.y9d{bottom:523.320000px;}
.yc6{bottom:528.990000px;}
.yf2{bottom:531.690000px;}
.y16{bottom:535.020000px;}
.y73{bottom:539.250000px;}
.y47{bottom:539.430000px;}
.yc5{bottom:546.540000px;}
.yf1{bottom:549.330000px;}
.ya0{bottom:550.590000px;}
.y15{bottom:552.660000px;}
.yc4{bottom:564.180000px;}
.y72{bottom:566.610000px;}
.y46{bottom:566.790000px;}
.yf0{bottom:566.880000px;}
.y14{bottom:570.210000px;}
.yc3{bottom:581.730000px;}
.y13{bottom:587.760000px;}
.yef{bottom:593.430000px;}
.y71{bottom:593.970000px;}
.y45{bottom:594.060000px;}
.y9c{bottom:599.370000px;}
.y12{bottom:605.400000px;}
.yee{bottom:611.070000px;}
.yc2{bottom:616.920000px;}
.y6c{bottom:621.240000px;}
.y40{bottom:621.420000px;}
.y11{bottom:622.950000px;}
.yed{bottom:628.620000px;}
.yc1{bottom:634.470000px;}
.y9b{bottom:634.920000px;}
.y10{bottom:640.590000px;}
.yec{bottom:646.260000px;}
.y6f{bottom:648.600000px;}
.y43{bottom:648.780000px;}
.yc0{bottom:652.110000px;}
.y9a{bottom:652.470000px;}
.yf{bottom:658.140000px;}
.ybf{bottom:669.660000px;}
.yeb{bottom:672.810000px;}
.ye{bottom:675.690000px;}
.y6e{bottom:675.960000px;}
.y42{bottom:676.140000px;}
.ybe{bottom:687.300000px;}
.y99{bottom:688.110000px;}
.yea{bottom:690.360000px;}
.yd{bottom:693.330000px;}
.y6d{bottom:703.320000px;}
.y41{bottom:703.410000px;}
.ybd{bottom:704.850000px;}
.y98{bottom:705.660000px;}
.ye9{bottom:708.000000px;}
.yc{bottom:720.240000px;}
.ybc{bottom:722.400000px;}
.ye8{bottom:725.550000px;}
.y68{bottom:730.590000px;}
.y38{bottom:730.770000px;}
.ybb{bottom:740.040000px;}
.y97{bottom:741.300000px;}
.ye7{bottom:752.190000px;}
.yba{bottom:757.590000px;}
.y6b{bottom:757.950000px;}
.y3f{bottom:758.130000px;}
.y96{bottom:758.850000px;}
.yb{bottom:768.480000px;}
.ye6{bottom:769.740000px;}
.yb9{bottom:775.140000px;}
.y6a{bottom:785.310000px;}
.y3e{bottom:785.490000px;}
.y95{bottom:793.680000px;}
.ye5{bottom:796.290000px;}
.yb8{bottom:802.050000px;}
.ya{bottom:804.030000px;}
.y94{bottom:805.920000px;}
.y69{bottom:812.670000px;}
.y3c{bottom:812.760000px;}
.ye4{bottom:813.930000px;}
.ye3{bottom:831.480000px;}
.y93{bottom:833.190000px;}
.y9{bottom:839.850000px;}
.y62{bottom:839.940000px;}
.y34{bottom:840.120000px;}
.yb7{bottom:849.660000px;}
.ye2{bottom:858.030000px;}
.y92{bottom:860.550000px;}
.yb6{bottom:863.700000px;}
.y67{bottom:867.300000px;}
.ye1{bottom:875.670000px;}
.yb5{bottom:875.850000px;}
.y8{bottom:879.630000px;}
.y91{bottom:887.910000px;}
.y66{bottom:894.660000px;}
.y7{bottom:897.630000px;}
.ye0{bottom:902.220000px;}
.yb4{bottom:903.210000px;}
.ydf{bottom:919.860000px;}
.y65{bottom:921.930000px;}
.y33{bottom:924.000000px;}
.y6{bottom:929.940000px;}
.yb3{bottom:930.570000px;}
.y90{bottom:936.600000px;}
.yde{bottom:937.410000px;}
.y5{bottom:949.290000px;}
.y32{bottom:950.550000px;}
.yb1{bottom:957.930000px;}
.ydd{bottom:963.960000px;}
.y8f{bottom:972.150000px;}
.y61{bottom:976.650000px;}
.ydc{bottom:981.600000px;}
.yb2{bottom:985.200000px;}
.y31{bottom:986.460000px;}
.y4{bottom:987.630000px;}
.y8e{bottom:989.790000px;}
.ydb{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.y8d{bottom:1016.370000px;}
.y5d{bottom:1025.370000px;}
.yda{bottom:1025.820000px;}
.yb0{bottom:1033.920000px;}
.y30{bottom:1034.820000px;}
.yd9{bottom:1043.370000px;}
.y5c{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.yd8{bottom:1060.920000px;}
.y8c{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.yd7{bottom:1078.560000px;}
.y8b{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h11{height:26.550000px;}
.h13{height:26.580000px;}
.h10{height:26.640000px;}
.h18{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h15{height:41.661211px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h16{height:53.910000px;}
.h19{height:53.940000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.hd{height:61.740000px;}
.h1a{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h14{height:108.540000px;}
.h17{height:108.570000px;}
.hf{height:108.630000px;}
.h12{height:108.660000px;}
.ha{height:129.508145px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:51.750000px;}
.w19{width:52.110000px;}
.wf{width:60.030000px;}
.wd{width:61.830000px;}
.w14{width:62.010000px;}
.w6{width:70.920000px;}
.w12{width:70.950000px;}
.w15{width:71.010000px;}
.w1a{width:71.040000px;}
.we{width:71.730000px;}
.wc{width:73.830000px;}
.w11{width:75.600000px;}
.w5{width:75.630000px;}
.w8{width:92.160000px;}
.w10{width:92.880000px;}
.w9{width:118.920000px;}
.w13{width:122.400000px;}
.w18{width:122.430000px;}
.wb{width:132.480000px;}
.wa{width:136.380000px;}
.w3{width:136.920000px;}
.w4{width:156.330000px;}
.w17{width:194.850000px;}
.w16{width:194.880000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:73.079987px;}
.x21{left:75.599987px;}
.x2f{left:111.239987px;}
.xc{left:137.610000px;}
.x4{left:152.820000px;}
.x1b{left:184.170000px;}
.x29{left:189.120000px;}
.x2{left:192.719987px;}
.x14{left:194.249987px;}
.x15{left:238.350000px;}
.x2a{left:241.950000px;}
.x1c{left:246.900000px;}
.xd{left:257.250000px;}
.x23{left:258.690000px;}
.x6{left:290.550000px;}
.xb{left:295.409987px;}
.x24{left:311.610000px;}
.x2b{left:313.680000px;}
.x1d{left:318.630000px;}
.x16{left:331.950000px;}
.x28{left:344.459987px;}
.x22{left:346.529987px;}
.x1a{left:347.789987px;}
.x25{left:364.080000px;}
.x17{left:384.420000px;}
.x2d{left:386.130000px;}
.x1f{left:391.080000px;}
.xe{left:414.390000px;}
.x26{left:440.400000px;}
.x7{left:447.600000px;}
.x18{left:460.830000px;}
.xf{left:486.030000px;}
.x2c{left:509.280000px;}
.x27{left:512.160000px;}
.x1e{left:514.230000px;}
.x8{left:524.040000px;}
.x19{left:532.500000px;}
.x11{left:560.580000px;}
.x2e{left:581.730000px;}
.x20{left:586.680000px;}
.x9{left:595.680000px;}
.x10{left:623.130000px;}
.xa{left:648.240000px;}
.x12{left:695.580000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls18{letter-spacing:-0.083200pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.043520pt;}
.ls9{letter-spacing:-0.039467pt;}
.ls13{letter-spacing:-0.035840pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.101867pt;}
.ls16{letter-spacing:0.105067pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.284267pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls1d{letter-spacing:0.380800pt;}
.ls19{letter-spacing:5.280000pt;}
.lsd{letter-spacing:6.880000pt;}
.ls1a{letter-spacing:19.680000pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.861867pt;}
.wsb{word-spacing:-11.800320pt;}
.ws10{word-spacing:-11.793920pt;}
.ws4{word-spacing:-11.756800pt;}
.ws3{word-spacing:-11.717333pt;}
.wsc{word-spacing:-11.713280pt;}
.ws8{word-spacing:-11.590933pt;}
.wsd{word-spacing:-9.465067pt;}
.wsf{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._7{margin-left:-3.929600pt;}
._6{margin-left:-2.939200pt;}
._9{margin-left:-2.030934pt;}
._0{margin-left:-0.933333pt;}
._2{width:1.351373pt;}
._1{width:2.401077pt;}
._b{width:3.327958pt;}
._a{width:5.048000pt;}
._5{width:6.038934pt;}
._3{width:7.161067pt;}
._4{width:8.389866pt;}
._c{width:9.459201pt;}
._8{width:10.741333pt;}
._12{width:12.900160pt;}
._13{width:14.077120pt;}
._15{width:16.003413pt;}
._14{width:17.100800pt;}
._10{width:18.278507pt;}
._d{width:19.184960pt;}
._e{width:20.200320pt;}
._f{width:24.689280pt;}
._11{width:47.187520pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:4.640000pt;}
.y60{bottom:4.720000pt;}
.y37{bottom:6.960000pt;}
.y3d{bottom:7.040000pt;}
.ya3{bottom:7.066667pt;}
.y9e{bottom:11.600000pt;}
.y5f{bottom:11.680000pt;}
.y7e{bottom:14.000000pt;}
.y7d{bottom:20.960000pt;}
.y36{bottom:22.640000pt;}
.y5a{bottom:23.600000pt;}
.y5e{bottom:31.280000pt;}
.y78{bottom:33.600000pt;}
.y64{bottom:33.680000pt;}
.y35{bottom:38.240000pt;}
.y77{bottom:40.560000pt;}
.y63{bottom:40.640000pt;}
.y55{bottom:53.200000pt;}
.y3b{bottom:53.280000pt;}
.y3a{bottom:60.240000pt;}
.y76{bottom:60.266667pt;}
.y4f{bottom:60.320000pt;}
.y4a{bottom:60.346667pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y54{bottom:79.840000pt;}
.y75{bottom:79.866667pt;}
.y39{bottom:79.920000pt;}
.y49{bottom:79.946667pt;}
.y1{bottom:90.346667pt;}
.y8a{bottom:106.986667pt;}
.yaf{bottom:116.986667pt;}
.y27{bottom:121.146667pt;}
.y89{bottom:122.666667pt;}
.y5b{bottom:128.426667pt;}
.yae{bottom:132.666667pt;}
.y26{bottom:136.746667pt;}
.y88{bottom:138.266667pt;}
.y59{bottom:139.306667pt;}
.yd6{bottom:140.986667pt;}
.y25{bottom:152.426667pt;}
.y87{bottom:153.866667pt;}
.yd5{bottom:156.586667pt;}
.y53{bottom:163.626667pt;}
.y24{bottom:168.026667pt;}
.y86{bottom:169.546667pt;}
.yd4{bottom:172.186667pt;}
.yad{bottom:174.426667pt;}
.y23{bottom:183.626667pt;}
.y58{bottom:187.866667pt;}
.yd3{bottom:195.866667pt;}
.yac{bottom:198.746667pt;}
.y85{bottom:200.506667pt;}
.y22{bottom:207.546667pt;}
.y57{bottom:212.186667pt;}
.y84{bottom:212.986667pt;}
.yd2{bottom:219.786667pt;}
.yab{bottom:223.066667pt;}
.y83{bottom:225.546667pt;}
.y82{bottom:236.346667pt;}
.y56{bottom:236.506667pt;}
.yaa{bottom:247.386667pt;}
.y21{bottom:250.506667pt;}
.y7c{bottom:260.666667pt;}
.y4e{bottom:260.746667pt;}
.yd1{bottom:262.666667pt;}
.y20{bottom:266.106667pt;}
.yd0{bottom:278.346667pt;}
.y1f{bottom:281.786667pt;}
.y81{bottom:284.906667pt;}
.y52{bottom:285.066667pt;}
.ya9{bottom:290.666667pt;}
.y1e{bottom:297.386667pt;}
.ycf{bottom:302.186667pt;}
.yfb{bottom:307.946667pt;}
.y80{bottom:309.226667pt;}
.y51{bottom:309.386667pt;}
.y1d{bottom:312.986667pt;}
.ya8{bottom:322.266667pt;}
.yfa{bottom:323.546667pt;}
.y1c{bottom:328.666667pt;}
.y7f{bottom:333.546667pt;}
.y50{bottom:333.706667pt;}
.ya7{bottom:337.946667pt;}
.yf9{bottom:339.146667pt;}
.y1b{bottom:344.266667pt;}
.yce{bottom:345.146667pt;}
.yf8{bottom:354.826667pt;}
.y74{bottom:357.866667pt;}
.y48{bottom:357.946667pt;}
.y1a{bottom:359.866667pt;}
.ycd{bottom:360.746667pt;}
.ya6{bottom:368.906667pt;}
.y19{bottom:375.546667pt;}
.ycc{bottom:376.426667pt;}
.yf7{bottom:378.426667pt;}
.ya5{bottom:381.386667pt;}
.y7b{bottom:382.106667pt;}
.y4d{bottom:382.266667pt;}
.ycb{bottom:392.026667pt;}
.ya4{bottom:392.266667pt;}
.yf6{bottom:394.106667pt;}
.y18{bottom:399.466667pt;}
.y7a{bottom:406.426667pt;}
.y4c{bottom:406.586667pt;}
.yca{bottom:407.626667pt;}
.ya2{bottom:416.506667pt;}
.yf5{bottom:417.733333pt;}
.yc9{bottom:423.333333pt;}
.y79{bottom:430.773333pt;}
.y4b{bottom:430.933333pt;}
.yf4{bottom:433.333333pt;}
.yc8{bottom:438.933333pt;}
.ya1{bottom:440.853333pt;}
.y17{bottom:442.693333pt;}
.yf3{bottom:449.013333pt;}
.yc7{bottom:454.613333pt;}
.y70{bottom:455.093333pt;}
.y44{bottom:455.173333pt;}
.y9d{bottom:465.173333pt;}
.yc6{bottom:470.213333pt;}
.yf2{bottom:472.613333pt;}
.y16{bottom:475.573333pt;}
.y73{bottom:479.333333pt;}
.y47{bottom:479.493333pt;}
.yc5{bottom:485.813333pt;}
.yf1{bottom:488.293333pt;}
.ya0{bottom:489.413333pt;}
.y15{bottom:491.253333pt;}
.yc4{bottom:501.493333pt;}
.y72{bottom:503.653333pt;}
.y46{bottom:503.813333pt;}
.yf0{bottom:503.893333pt;}
.y14{bottom:506.853333pt;}
.yc3{bottom:517.093333pt;}
.y13{bottom:522.453333pt;}
.yef{bottom:527.493333pt;}
.y71{bottom:527.973333pt;}
.y45{bottom:528.053333pt;}
.y9c{bottom:532.773333pt;}
.y12{bottom:538.133333pt;}
.yee{bottom:543.173333pt;}
.yc2{bottom:548.373333pt;}
.y6c{bottom:552.213333pt;}
.y40{bottom:552.373333pt;}
.y11{bottom:553.733333pt;}
.yed{bottom:558.773333pt;}
.yc1{bottom:563.973333pt;}
.y9b{bottom:564.373333pt;}
.y10{bottom:569.413333pt;}
.yec{bottom:574.453333pt;}
.y6f{bottom:576.533333pt;}
.y43{bottom:576.693333pt;}
.yc0{bottom:579.653333pt;}
.y9a{bottom:579.973333pt;}
.yf{bottom:585.013333pt;}
.ybf{bottom:595.253333pt;}
.yeb{bottom:598.053333pt;}
.ye{bottom:600.613333pt;}
.y6e{bottom:600.853333pt;}
.y42{bottom:601.013333pt;}
.ybe{bottom:610.933333pt;}
.y99{bottom:611.653333pt;}
.yea{bottom:613.653333pt;}
.yd{bottom:616.293333pt;}
.y6d{bottom:625.173333pt;}
.y41{bottom:625.253333pt;}
.ybd{bottom:626.533333pt;}
.y98{bottom:627.253333pt;}
.ye9{bottom:629.333333pt;}
.yc{bottom:640.213333pt;}
.ybc{bottom:642.133333pt;}
.ye8{bottom:644.933333pt;}
.y68{bottom:649.413333pt;}
.y38{bottom:649.573333pt;}
.ybb{bottom:657.813333pt;}
.y97{bottom:658.933333pt;}
.ye7{bottom:668.613333pt;}
.yba{bottom:673.413333pt;}
.y6b{bottom:673.733333pt;}
.y3f{bottom:673.893333pt;}
.y96{bottom:674.533333pt;}
.yb{bottom:683.093333pt;}
.ye6{bottom:684.213333pt;}
.yb9{bottom:689.013333pt;}
.y6a{bottom:698.053333pt;}
.y3e{bottom:698.213333pt;}
.y95{bottom:705.493333pt;}
.ye5{bottom:707.813333pt;}
.yb8{bottom:712.933333pt;}
.ya{bottom:714.693333pt;}
.y94{bottom:716.373333pt;}
.y69{bottom:722.373333pt;}
.y3c{bottom:722.453333pt;}
.ye4{bottom:723.493333pt;}
.ye3{bottom:739.093333pt;}
.y93{bottom:740.613333pt;}
.y9{bottom:746.533333pt;}
.y62{bottom:746.613333pt;}
.y34{bottom:746.773333pt;}
.yb7{bottom:755.253333pt;}
.ye2{bottom:762.693333pt;}
.y92{bottom:764.933333pt;}
.yb6{bottom:767.733333pt;}
.y67{bottom:770.933333pt;}
.ye1{bottom:778.373333pt;}
.yb5{bottom:778.533333pt;}
.y8{bottom:781.893333pt;}
.y91{bottom:789.253333pt;}
.y66{bottom:795.253333pt;}
.y7{bottom:797.893333pt;}
.ye0{bottom:801.973333pt;}
.yb4{bottom:802.853333pt;}
.ydf{bottom:817.653333pt;}
.y65{bottom:819.493333pt;}
.y33{bottom:821.333333pt;}
.y6{bottom:826.613333pt;}
.yb3{bottom:827.173333pt;}
.y90{bottom:832.533333pt;}
.yde{bottom:833.253333pt;}
.y5{bottom:843.813333pt;}
.y32{bottom:844.933333pt;}
.yb1{bottom:851.493333pt;}
.ydd{bottom:856.853333pt;}
.y8f{bottom:864.133333pt;}
.y61{bottom:868.133333pt;}
.ydc{bottom:872.533333pt;}
.yb2{bottom:875.733333pt;}
.y31{bottom:876.853333pt;}
.y4{bottom:877.893333pt;}
.y8e{bottom:879.813333pt;}
.ydb{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.y8d{bottom:903.440000pt;}
.y5d{bottom:911.440000pt;}
.yda{bottom:911.840000pt;}
.yb0{bottom:919.040000pt;}
.y30{bottom:919.840000pt;}
.yd9{bottom:927.440000pt;}
.y5c{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.yd8{bottom:943.040000pt;}
.y8c{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.yd7{bottom:958.720000pt;}
.y8b{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.h13{height:23.626667pt;}
.h10{height:23.680000pt;}
.h18{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h15{height:37.032187pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h16{height:47.920000pt;}
.h19{height:47.946667pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.hd{height:54.880000pt;}
.h1a{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h14{height:96.480000pt;}
.h17{height:96.506667pt;}
.hf{height:96.560000pt;}
.h12{height:96.586667pt;}
.ha{height:115.118351pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:46.000000pt;}
.w19{width:46.320000pt;}
.wf{width:53.360000pt;}
.wd{width:54.960000pt;}
.w14{width:55.120000pt;}
.w6{width:63.040000pt;}
.w12{width:63.066667pt;}
.w15{width:63.120000pt;}
.w1a{width:63.146667pt;}
.we{width:63.760000pt;}
.wc{width:65.626667pt;}
.w11{width:67.200000pt;}
.w5{width:67.226667pt;}
.w8{width:81.920000pt;}
.w10{width:82.560000pt;}
.w9{width:105.706667pt;}
.w13{width:108.800000pt;}
.w18{width:108.826667pt;}
.wb{width:117.760000pt;}
.wa{width:121.226667pt;}
.w3{width:121.706667pt;}
.w4{width:138.960000pt;}
.w17{width:173.200000pt;}
.w16{width:173.226667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:64.959988pt;}
.x21{left:67.199988pt;}
.x2f{left:98.879988pt;}
.xc{left:122.320000pt;}
.x4{left:135.840000pt;}
.x1b{left:163.706667pt;}
.x29{left:168.106667pt;}
.x2{left:171.306655pt;}
.x14{left:172.666655pt;}
.x15{left:211.866667pt;}
.x2a{left:215.066667pt;}
.x1c{left:219.466667pt;}
.xd{left:228.666667pt;}
.x23{left:229.946667pt;}
.x6{left:258.266667pt;}
.xb{left:262.586655pt;}
.x24{left:276.986667pt;}
.x2b{left:278.826667pt;}
.x1d{left:283.226667pt;}
.x16{left:295.066667pt;}
.x28{left:306.186655pt;}
.x22{left:308.026655pt;}
.x1a{left:309.146655pt;}
.x25{left:323.626667pt;}
.x17{left:341.706667pt;}
.x2d{left:343.226667pt;}
.x1f{left:347.626667pt;}
.xe{left:368.346667pt;}
.x26{left:391.466667pt;}
.x7{left:397.866667pt;}
.x18{left:409.626667pt;}
.xf{left:432.026667pt;}
.x2c{left:452.693333pt;}
.x27{left:455.253333pt;}
.x1e{left:457.093333pt;}
.x8{left:465.813333pt;}
.x19{left:473.333333pt;}
.x11{left:498.293333pt;}
.x2e{left:517.093333pt;}
.x20{left:521.493333pt;}
.x9{left:529.493333pt;}
.x10{left:553.893333pt;}
.xa{left:576.213333pt;}
.x12{left:618.293333pt;}
.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; }
  