
    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_b45f2ac76888442f750b087f.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_83bc2a2eeb7fafc20d9be830.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_73c604e779fdc3b8962c78c4.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_fb973fbdf3056cce311a1b9f.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_2383fab7b4426bad3afba1b4.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_25940c4b679207619b9f219f.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_dbfbd6ed7be7d3c5e1620eb8.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_f5f387fbd1008a2e48a2310e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8b5850b6fbbc37a12898590b.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d75aa7989faea664812f8270.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.ls11{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls17{letter-spacing:-0.111000px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.086400px;}
.lsa{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.067200px;}
.ls12{letter-spacing:-0.063600px;}
.ls16{letter-spacing:-0.009000px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls1c{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.198000px;}
.ls1b{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.813600px;}
.ls14{letter-spacing:63.566640px;}
.ls1a{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;}
}
.ws3{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.ws11{word-spacing:-13.279680px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.217400px;}
.wsa{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.159200px;}
.wse{word-spacing:-13.115400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._10{margin-left:-3.714000px;}
._2{margin-left:-2.117640px;}
._0{margin-left:-1.110000px;}
._1{width:1.258200px;}
._7{width:2.529600px;}
._4{width:4.280036px;}
._3{width:5.350800px;}
._5{width:7.154400px;}
._6{width:8.702157px;}
._8{width:9.745341px;}
._9{width:10.977699px;}
._f{width:12.139800px;}
._a{width:14.276280px;}
._b{width:15.561360px;}
._c{width:16.650360px;}
._e{width:46.653120px;}
._d{width:87.884160px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y73{bottom:7.830000px;}
.ya2{bottom:7.860000px;}
.y76{bottom:7.920000px;}
.y7b{bottom:25.470000px;}
.y89{bottom:26.550000px;}
.yc5{bottom:29.880000px;}
.y9a{bottom:29.970000px;}
.yc4{bottom:48.600000px;}
.y99{bottom:48.690000px;}
.y8c{bottom:62.580000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y105{bottom:111.360000px;}
.y5b{bottom:128.460000px;}
.y104{bottom:128.910000px;}
.y86{bottom:137.550000px;}
.y28{bottom:139.440000px;}
.y5a{bottom:146.010000px;}
.y3a{bottom:146.460000px;}
.yd7{bottom:148.980000px;}
.y85{bottom:155.190000px;}
.y103{bottom:155.550000px;}
.y27{bottom:157.080000px;}
.y59{bottom:163.650000px;}
.yd6{bottom:166.620000px;}
.yb0{bottom:166.980000px;}
.y84{bottom:172.740000px;}
.y102{bottom:173.100000px;}
.y26{bottom:174.630000px;}
.y58{bottom:181.200000px;}
.y39{bottom:183.450000px;}
.yd5{bottom:184.170000px;}
.y83{bottom:190.380000px;}
.y25{bottom:192.180000px;}
.y57{bottom:198.750000px;}
.y101{bottom:199.740000px;}
.yd4{bottom:201.720000px;}
.yaf{bottom:202.530000px;}
.y82{bottom:207.930000px;}
.y24{bottom:209.820000px;}
.y38{bottom:215.670000px;}
.y56{bottom:216.390000px;}
.y100{bottom:217.290000px;}
.yd3{bottom:219.360000px;}
.yae{bottom:220.170000px;}
.y23{bottom:227.370000px;}
.y55{bottom:233.940000px;}
.y81{bottom:234.480000px;}
.yff{bottom:234.840000px;}
.yad{bottom:237.720000px;}
.y22{bottom:245.010000px;}
.yd2{bottom:246.270000px;}
.y54{bottom:251.490000px;}
.yac{bottom:255.360000px;}
.yfe{bottom:261.480000px;}
.y21{bottom:262.560000px;}
.y53{bottom:269.130000px;}
.y80{bottom:270.390000px;}
.yab{bottom:272.910000px;}
.yfd{bottom:279.030000px;}
.y20{bottom:280.110000px;}
.y52{bottom:286.680000px;}
.yaa{bottom:290.460000px;}
.yd1{bottom:293.790000px;}
.yfc{bottom:305.940000px;}
.yd0{bottom:307.830000px;}
.ya9{bottom:308.100000px;}
.y51{bottom:313.230000px;}
.y1f{bottom:315.750000px;}
.y7f{bottom:316.110000px;}
.ycf{bottom:321.960000px;}
.y1e{bottom:333.300000px;}
.yce{bottom:334.110000px;}
.ya8{bottom:334.650000px;}
.y7e{bottom:343.380000px;}
.y50{bottom:345.810000px;}
.y1d{bottom:350.850000px;}
.yfb{bottom:354.180000px;}
.ycd{bottom:361.470000px;}
.y4f{bottom:364.260000px;}
.y1c{bottom:368.490000px;}
.ya7{bottom:369.480000px;}
.yfa{bottom:381.090000px;}
.y4e{bottom:381.810000px;}
.ya6{bottom:383.610000px;}
.y7d{bottom:388.380000px;}
.ycc{bottom:388.740000px;}
.y1b{bottom:395.400000px;}
.ya5{bottom:397.650000px;}
.ya4{bottom:409.800000px;}
.y7c{bottom:415.650000px;}
.ycb{bottom:416.100000px;}
.y4d{bottom:418.260000px;}
.yf9{bottom:418.440000px;}
.y4c{bottom:435.900000px;}
.ya3{bottom:437.160000px;}
.y7a{bottom:443.010000px;}
.yca{bottom:443.460000px;}
.y1a{bottom:444.000000px;}
.y4b{bottom:462.450000px;}
.ya1{bottom:464.520000px;}
.yf8{bottom:466.770000px;}
.yc9{bottom:470.850000px;}
.y19{bottom:481.020000px;}
.yf7{bottom:484.350000px;}
.y79{bottom:487.950000px;}
.ya0{bottom:491.910000px;}
.y4a{bottom:498.030000px;}
.yc8{bottom:498.120000px;}
.y18{bottom:498.660000px;}
.yf6{bottom:501.900000px;}
.y78{bottom:515.310000px;}
.y17{bottom:516.210000px;}
.y9f{bottom:519.180000px;}
.yf5{bottom:519.540000px;}
.yc7{bottom:525.480000px;}
.y49{bottom:530.250000px;}
.y16{bottom:533.760000px;}
.yf4{bottom:537.090000px;}
.y77{bottom:542.670000px;}
.y9e{bottom:546.540000px;}
.y15{bottom:551.400000px;}
.yc6{bottom:552.840000px;}
.yf3{bottom:554.730000px;}
.y14{bottom:568.950000px;}
.y75{bottom:569.940000px;}
.yf2{bottom:572.280000px;}
.y9d{bottom:573.900000px;}
.yc3{bottom:580.200000px;}
.y13{bottom:586.590000px;}
.yf1{bottom:589.830000px;}
.y74{bottom:597.300000px;}
.y9c{bottom:601.170000px;}
.y12{bottom:604.140000px;}
.yf0{bottom:607.470000px;}
.y11{bottom:621.690000px;}
.y37{bottom:621.780000px;}
.y72{bottom:624.660000px;}
.yef{bottom:625.020000px;}
.y9b{bottom:628.530000px;}
.y10{bottom:639.330000px;}
.y36{bottom:639.420000px;}
.yee{bottom:642.660000px;}
.yc2{bottom:650.940000px;}
.y98{bottom:655.890000px;}
.yf{bottom:656.880000px;}
.y35{bottom:656.970000px;}
.yed{bottom:660.210000px;}
.y71{bottom:673.350000px;}
.y34{bottom:674.610000px;}
.yec{bottom:677.760000px;}
.ye{bottom:683.790000px;}
.yc1{bottom:686.490000px;}
.y33{bottom:692.160000px;}
.yeb{bottom:695.400000px;}
.yc0{bottom:704.130000px;}
.y70{bottom:708.900000px;}
.y32{bottom:718.710000px;}
.ybf{bottom:721.680000px;}
.yea{bottom:722.310000px;}
.y6f{bottom:726.540000px;}
.y97{bottom:726.630000px;}
.yd{bottom:732.030000px;}
.y6e{bottom:744.090000px;}
.ybe{bottom:748.320000px;}
.y31{bottom:751.290000px;}
.y6d{bottom:761.640000px;}
.y96{bottom:762.270000px;}
.yc{bottom:767.850000px;}
.ye9{bottom:770.550000px;}
.y6c{bottom:779.280000px;}
.y95{bottom:779.820000px;}
.ybd{bottom:783.150000px;}
.y30{bottom:786.930000px;}
.ye8{bottom:788.190000px;}
.y6b{bottom:796.830000px;}
.ybc{bottom:797.190000px;}
.y94{bottom:797.460000px;}
.yb{bottom:803.850000px;}
.ye7{bottom:805.740000px;}
.ybb{bottom:811.320000px;}
.y6a{bottom:814.470000px;}
.y93{bottom:815.010000px;}
.y2f{bottom:819.150000px;}
.ye6{bottom:823.290000px;}
.yba{bottom:823.470000px;}
.y69{bottom:832.020000px;}
.y92{bottom:832.560000px;}
.ye5{bottom:840.930000px;}
.ya{bottom:843.630000px;}
.y68{bottom:849.570000px;}
.y91{bottom:850.200000px;}
.yb9{bottom:850.830000px;}
.ye4{bottom:858.480000px;}
.y9{bottom:861.630000px;}
.y67{bottom:867.210000px;}
.y48{bottom:875.670000px;}
.ye3{bottom:876.030000px;}
.y90{bottom:876.750000px;}
.yb8{bottom:878.100000px;}
.y8{bottom:879.630000px;}
.y66{bottom:884.760000px;}
.y47{bottom:893.220000px;}
.ye2{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.y65{bottom:902.400000px;}
.yb7{bottom:905.460000px;}
.y8f{bottom:909.330000px;}
.y46{bottom:910.860000px;}
.ye1{bottom:911.220000px;}
.y45{bottom:928.410000px;}
.ye0{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.yb6{bottom:932.820000px;}
.y64{bottom:934.710000px;}
.y8e{bottom:944.250000px;}
.y63{bottom:944.790000px;}
.y109{bottom:945.960000px;}
.ydf{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y44{bottom:954.960000px;}
.y8b{bottom:956.400000px;}
.yb5{bottom:960.180000px;}
.yde{bottom:963.960000px;}
.y108{bottom:972.600000px;}
.ydd{bottom:981.600000px;}
.y8d{bottom:983.760000px;}
.yb4{bottom:987.450000px;}
.y4{bottom:987.630000px;}
.y62{bottom:990.150000px;}
.y43{bottom:990.600000px;}
.y61{bottom:1007.790000px;}
.y42{bottom:1008.150000px;}
.y8a{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.yb3{bottom:1014.840000px;}
.ydc{bottom:1017.180000px;}
.y60{bottom:1025.370000px;}
.y41{bottom:1025.820000px;}
.y107{bottom:1034.370000px;}
.ydb{bottom:1034.820000px;}
.y88{bottom:1038.420000px;}
.yb2{bottom:1042.200000px;}
.y5f{bottom:1042.920000px;}
.y40{bottom:1043.370000px;}
.y2e{bottom:1047.510000px;}
.y106{bottom:1051.920000px;}
.yda{bottom:1052.370000px;}
.y3f{bottom:1060.920000px;}
.y2d{bottom:1065.150000px;}
.yb1{bottom:1069.470000px;}
.y5e{bottom:1069.560000px;}
.yd9{bottom:1069.920000px;}
.y3e{bottom:1078.560000px;}
.y87{bottom:1087.110000px;}
.yd8{bottom:1087.560000px;}
.y2c{bottom:1091.700000px;}
.y3d{bottom:1096.110000px;}
.y5d{bottom:1105.110000px;}
.y3c{bottom:1113.750000px;}
.y5c{bottom:1122.750000px;}
.y2b{bottom:1127.610000px;}
.y3b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h15{height:26.580000px;}
.h11{height:26.640000px;}
.h18{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h16{height:41.661211px;}
.h13{height:44.190000px;}
.h12{height:44.220000px;}
.h19{height:48.600000px;}
.h17{height:48.690000px;}
.h10{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.hc{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h14{height:81.300000px;}
.he{height:92.631445px;}
.hd{height:96.262383px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:49.590000px;}
.w9{width:65.070000px;}
.w8{width:65.100000px;}
.w7{width:65.160000px;}
.wf{width:65.520000px;}
.w10{width:87.600000px;}
.wb{width:87.690000px;}
.wa{width:117.090000px;}
.wc{width:125.820000px;}
.w11{width:125.910000px;}
.w3{width:138.540000px;}
.we{width:160.920000px;}
.w12{width:163.800000px;}
.w6{width:277.230000px;}
.wd{width:295.410000px;}
.w5{width:565.950000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x1{left:68.040000px;}
.x1f{left:76.050000px;}
.x17{left:77.400000px;}
.x1c{left:79.649987px;}
.xa{left:95.039987px;}
.x1d{left:97.109987px;}
.x24{left:111.239987px;}
.xb{left:122.039987px;}
.x11{left:150.300000px;}
.x20{left:164.370000px;}
.x18{left:165.810000px;}
.x1e{left:200.189987px;}
.xf{left:208.110000px;}
.x2{left:211.079987px;}
.x10{left:258.510000px;}
.xc{left:268.859987px;}
.x9{left:288.389987px;}
.x21{left:291.000000px;}
.x19{left:292.440000px;}
.x5{left:299.189987px;}
.x7{left:369.389987px;}
.x16{left:404.759987px;}
.xd{left:417.989987px;}
.x12{left:428.250000px;}
.x13{left:494.130000px;}
.x4{left:551.309987px;}
.x14{left:560.040000px;}
.x22{left:587.220000px;}
.x1a{left:588.660000px;}
.x15{left:625.830000px;}
.x6{left:636.809987px;}
.x8{left:706.559987px;}
.x1b{left:750.300000px;}
.x23{left:751.740000px;}
.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;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls17{letter-spacing:-0.098667pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.076800pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.059733pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls16{letter-spacing:-0.008000pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.176000pt;}
.ls1b{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.723200pt;}
.ls14{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws3{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws11{word-spacing:-11.804160pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.748800pt;}
.wsa{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.697067pt;}
.wse{word-spacing:-11.658133pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._10{margin-left:-3.301333pt;}
._2{margin-left:-1.882347pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.118400pt;}
._7{width:2.248534pt;}
._4{width:3.804477pt;}
._3{width:4.756267pt;}
._5{width:6.359467pt;}
._6{width:7.735251pt;}
._8{width:8.662525pt;}
._9{width:9.757955pt;}
._f{width:10.790933pt;}
._a{width:12.690027pt;}
._b{width:13.832320pt;}
._c{width:14.800320pt;}
._e{width:41.469440pt;}
._d{width:78.119253pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:6.960000pt;}
.ya2{bottom:6.986667pt;}
.y76{bottom:7.040000pt;}
.y7b{bottom:22.640000pt;}
.y89{bottom:23.600000pt;}
.yc5{bottom:26.560000pt;}
.y9a{bottom:26.640000pt;}
.yc4{bottom:43.200000pt;}
.y99{bottom:43.280000pt;}
.y8c{bottom:55.626667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y105{bottom:98.986667pt;}
.y5b{bottom:114.186667pt;}
.y104{bottom:114.586667pt;}
.y86{bottom:122.266667pt;}
.y28{bottom:123.946667pt;}
.y5a{bottom:129.786667pt;}
.y3a{bottom:130.186667pt;}
.yd7{bottom:132.426667pt;}
.y85{bottom:137.946667pt;}
.y103{bottom:138.266667pt;}
.y27{bottom:139.626667pt;}
.y59{bottom:145.466667pt;}
.yd6{bottom:148.106667pt;}
.yb0{bottom:148.426667pt;}
.y84{bottom:153.546667pt;}
.y102{bottom:153.866667pt;}
.y26{bottom:155.226667pt;}
.y58{bottom:161.066667pt;}
.y39{bottom:163.066667pt;}
.yd5{bottom:163.706667pt;}
.y83{bottom:169.226667pt;}
.y25{bottom:170.826667pt;}
.y57{bottom:176.666667pt;}
.y101{bottom:177.546667pt;}
.yd4{bottom:179.306667pt;}
.yaf{bottom:180.026667pt;}
.y82{bottom:184.826667pt;}
.y24{bottom:186.506667pt;}
.y38{bottom:191.706667pt;}
.y56{bottom:192.346667pt;}
.y100{bottom:193.146667pt;}
.yd3{bottom:194.986667pt;}
.yae{bottom:195.706667pt;}
.y23{bottom:202.106667pt;}
.y55{bottom:207.946667pt;}
.y81{bottom:208.426667pt;}
.yff{bottom:208.746667pt;}
.yad{bottom:211.306667pt;}
.y22{bottom:217.786667pt;}
.yd2{bottom:218.906667pt;}
.y54{bottom:223.546667pt;}
.yac{bottom:226.986667pt;}
.yfe{bottom:232.426667pt;}
.y21{bottom:233.386667pt;}
.y53{bottom:239.226667pt;}
.y80{bottom:240.346667pt;}
.yab{bottom:242.586667pt;}
.yfd{bottom:248.026667pt;}
.y20{bottom:248.986667pt;}
.y52{bottom:254.826667pt;}
.yaa{bottom:258.186667pt;}
.yd1{bottom:261.146667pt;}
.yfc{bottom:271.946667pt;}
.yd0{bottom:273.626667pt;}
.ya9{bottom:273.866667pt;}
.y51{bottom:278.426667pt;}
.y1f{bottom:280.666667pt;}
.y7f{bottom:280.986667pt;}
.ycf{bottom:286.186667pt;}
.y1e{bottom:296.266667pt;}
.yce{bottom:296.986667pt;}
.ya8{bottom:297.466667pt;}
.y7e{bottom:305.226667pt;}
.y50{bottom:307.386667pt;}
.y1d{bottom:311.866667pt;}
.yfb{bottom:314.826667pt;}
.ycd{bottom:321.306667pt;}
.y4f{bottom:323.786667pt;}
.y1c{bottom:327.546667pt;}
.ya7{bottom:328.426667pt;}
.yfa{bottom:338.746667pt;}
.y4e{bottom:339.386667pt;}
.ya6{bottom:340.986667pt;}
.y7d{bottom:345.226667pt;}
.ycc{bottom:345.546667pt;}
.y1b{bottom:351.466667pt;}
.ya5{bottom:353.466667pt;}
.ya4{bottom:364.266667pt;}
.y7c{bottom:369.466667pt;}
.ycb{bottom:369.866667pt;}
.y4d{bottom:371.786667pt;}
.yf9{bottom:371.946667pt;}
.y4c{bottom:387.466667pt;}
.ya3{bottom:388.586667pt;}
.y7a{bottom:393.786667pt;}
.yca{bottom:394.186667pt;}
.y1a{bottom:394.666667pt;}
.y4b{bottom:411.066667pt;}
.ya1{bottom:412.906667pt;}
.yf8{bottom:414.906667pt;}
.yc9{bottom:418.533333pt;}
.y19{bottom:427.573333pt;}
.yf7{bottom:430.533333pt;}
.y79{bottom:433.733333pt;}
.ya0{bottom:437.253333pt;}
.y4a{bottom:442.693333pt;}
.yc8{bottom:442.773333pt;}
.y18{bottom:443.253333pt;}
.yf6{bottom:446.133333pt;}
.y78{bottom:458.053333pt;}
.y17{bottom:458.853333pt;}
.y9f{bottom:461.493333pt;}
.yf5{bottom:461.813333pt;}
.yc7{bottom:467.093333pt;}
.y49{bottom:471.333333pt;}
.y16{bottom:474.453333pt;}
.yf4{bottom:477.413333pt;}
.y77{bottom:482.373333pt;}
.y9e{bottom:485.813333pt;}
.y15{bottom:490.133333pt;}
.yc6{bottom:491.413333pt;}
.yf3{bottom:493.093333pt;}
.y14{bottom:505.733333pt;}
.y75{bottom:506.613333pt;}
.yf2{bottom:508.693333pt;}
.y9d{bottom:510.133333pt;}
.yc3{bottom:515.733333pt;}
.y13{bottom:521.413333pt;}
.yf1{bottom:524.293333pt;}
.y74{bottom:530.933333pt;}
.y9c{bottom:534.373333pt;}
.y12{bottom:537.013333pt;}
.yf0{bottom:539.973333pt;}
.y11{bottom:552.613333pt;}
.y37{bottom:552.693333pt;}
.y72{bottom:555.253333pt;}
.yef{bottom:555.573333pt;}
.y9b{bottom:558.693333pt;}
.y10{bottom:568.293333pt;}
.y36{bottom:568.373333pt;}
.yee{bottom:571.253333pt;}
.yc2{bottom:578.613333pt;}
.y98{bottom:583.013333pt;}
.yf{bottom:583.893333pt;}
.y35{bottom:583.973333pt;}
.yed{bottom:586.853333pt;}
.y71{bottom:598.533333pt;}
.y34{bottom:599.653333pt;}
.yec{bottom:602.453333pt;}
.ye{bottom:607.813333pt;}
.yc1{bottom:610.213333pt;}
.y33{bottom:615.253333pt;}
.yeb{bottom:618.133333pt;}
.yc0{bottom:625.893333pt;}
.y70{bottom:630.133333pt;}
.y32{bottom:638.853333pt;}
.ybf{bottom:641.493333pt;}
.yea{bottom:642.053333pt;}
.y6f{bottom:645.813333pt;}
.y97{bottom:645.893333pt;}
.yd{bottom:650.693333pt;}
.y6e{bottom:661.413333pt;}
.ybe{bottom:665.173333pt;}
.y31{bottom:667.813333pt;}
.y6d{bottom:677.013333pt;}
.y96{bottom:677.573333pt;}
.yc{bottom:682.533333pt;}
.ye9{bottom:684.933333pt;}
.y6c{bottom:692.693333pt;}
.y95{bottom:693.173333pt;}
.ybd{bottom:696.133333pt;}
.y30{bottom:699.493333pt;}
.ye8{bottom:700.613333pt;}
.y6b{bottom:708.293333pt;}
.ybc{bottom:708.613333pt;}
.y94{bottom:708.853333pt;}
.yb{bottom:714.533333pt;}
.ye7{bottom:716.213333pt;}
.ybb{bottom:721.173333pt;}
.y6a{bottom:723.973333pt;}
.y93{bottom:724.453333pt;}
.y2f{bottom:728.133333pt;}
.ye6{bottom:731.813333pt;}
.yba{bottom:731.973333pt;}
.y69{bottom:739.573333pt;}
.y92{bottom:740.053333pt;}
.ye5{bottom:747.493333pt;}
.ya{bottom:749.893333pt;}
.y68{bottom:755.173333pt;}
.y91{bottom:755.733333pt;}
.yb9{bottom:756.293333pt;}
.ye4{bottom:763.093333pt;}
.y9{bottom:765.893333pt;}
.y67{bottom:770.853333pt;}
.y48{bottom:778.373333pt;}
.ye3{bottom:778.693333pt;}
.y90{bottom:779.333333pt;}
.yb8{bottom:780.533333pt;}
.y8{bottom:781.893333pt;}
.y66{bottom:786.453333pt;}
.y47{bottom:793.973333pt;}
.ye2{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.y65{bottom:802.133333pt;}
.yb7{bottom:804.853333pt;}
.y8f{bottom:808.293333pt;}
.y46{bottom:809.653333pt;}
.ye1{bottom:809.973333pt;}
.y45{bottom:825.253333pt;}
.ye0{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.yb6{bottom:829.173333pt;}
.y64{bottom:830.853333pt;}
.y8e{bottom:839.333333pt;}
.y63{bottom:839.813333pt;}
.y109{bottom:840.853333pt;}
.ydf{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y44{bottom:848.853333pt;}
.y8b{bottom:850.133333pt;}
.yb5{bottom:853.493333pt;}
.yde{bottom:856.853333pt;}
.y108{bottom:864.533333pt;}
.ydd{bottom:872.533333pt;}
.y8d{bottom:874.453333pt;}
.yb4{bottom:877.733333pt;}
.y4{bottom:877.893333pt;}
.y62{bottom:880.133333pt;}
.y43{bottom:880.533333pt;}
.y61{bottom:895.813333pt;}
.y42{bottom:896.133333pt;}
.y8a{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.yb3{bottom:902.080000pt;}
.ydc{bottom:904.160000pt;}
.y60{bottom:911.440000pt;}
.y41{bottom:911.840000pt;}
.y107{bottom:919.440000pt;}
.ydb{bottom:919.840000pt;}
.y88{bottom:923.040000pt;}
.yb2{bottom:926.400000pt;}
.y5f{bottom:927.040000pt;}
.y40{bottom:927.440000pt;}
.y2e{bottom:931.120000pt;}
.y106{bottom:935.040000pt;}
.yda{bottom:935.440000pt;}
.y3f{bottom:943.040000pt;}
.y2d{bottom:946.800000pt;}
.yb1{bottom:950.640000pt;}
.y5e{bottom:950.720000pt;}
.yd9{bottom:951.040000pt;}
.y3e{bottom:958.720000pt;}
.y87{bottom:966.320000pt;}
.yd8{bottom:966.720000pt;}
.y2c{bottom:970.400000pt;}
.y3d{bottom:974.320000pt;}
.y5d{bottom:982.320000pt;}
.y3c{bottom:990.000000pt;}
.y5c{bottom:998.000000pt;}
.y2b{bottom:1002.320000pt;}
.y3b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h15{height:23.626667pt;}
.h11{height:23.680000pt;}
.h18{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h16{height:37.032187pt;}
.h13{height:39.280000pt;}
.h12{height:39.306667pt;}
.h19{height:43.200000pt;}
.h17{height:43.280000pt;}
.h10{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.hc{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h14{height:72.266667pt;}
.he{height:82.339062pt;}
.hd{height:85.566563pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:44.080000pt;}
.w9{width:57.840000pt;}
.w8{width:57.866667pt;}
.w7{width:57.920000pt;}
.wf{width:58.240000pt;}
.w10{width:77.866667pt;}
.wb{width:77.946667pt;}
.wa{width:104.080000pt;}
.wc{width:111.840000pt;}
.w11{width:111.920000pt;}
.w3{width:123.146667pt;}
.we{width:143.040000pt;}
.w12{width:145.600000pt;}
.w6{width:246.426667pt;}
.wd{width:262.586667pt;}
.w5{width:503.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1f{left:67.600000pt;}
.x17{left:68.800000pt;}
.x1c{left:70.799988pt;}
.xa{left:84.479988pt;}
.x1d{left:86.319988pt;}
.x24{left:98.879988pt;}
.xb{left:108.479988pt;}
.x11{left:133.600000pt;}
.x20{left:146.106667pt;}
.x18{left:147.386667pt;}
.x1e{left:177.946655pt;}
.xf{left:184.986667pt;}
.x2{left:187.626655pt;}
.x10{left:229.786667pt;}
.xc{left:238.986655pt;}
.x9{left:256.346655pt;}
.x21{left:258.666667pt;}
.x19{left:259.946667pt;}
.x5{left:265.946655pt;}
.x7{left:328.346655pt;}
.x16{left:359.786655pt;}
.xd{left:371.546655pt;}
.x12{left:380.666667pt;}
.x13{left:439.226667pt;}
.x4{left:490.053322pt;}
.x14{left:497.813333pt;}
.x22{left:521.973333pt;}
.x1a{left:523.253333pt;}
.x15{left:556.293333pt;}
.x6{left:566.053322pt;}
.x8{left:628.053322pt;}
.x1b{left:666.933333pt;}
.x23{left:668.213333pt;}
.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; }
  