
    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_38487dc3774aff779629a0d2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a1700f3ef06c1d8d8cbd3b0c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_3b005108e33e97f842499757.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_02512c345d232e74036ee854.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_51cff1939d29ec26a4807fcf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_0f5f837da8509b3afc10d24f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_04ec4b9ac8815d6925677ca9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_54f919ac4a7356717f44071a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_8aaf05a9c50f20ab18f921ca.woff')format("woff");}.ffa{font-family:ffa;line-height:0.977539;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:ffb;src:url('chunks/assets/font_26eedea31f9e6f1852bfb273.woff')format("woff");}.ffb{font-family:ffb;line-height:0.977539;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:ffc;src:url('chunks/assets/font_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.688477;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:ffd;src:url('chunks/assets/font_915744beb52d9a340efa8afd.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_28a97485785521fb7fc6f234.woff')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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:fff;src:url('chunks/assets/font_ebc4410d3135e07f102625b1.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.636000px;}
.ls7{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.172800px;}
.ls1{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.418800px;}
.ls6{letter-spacing:0.869760px;}
.ls9{letter-spacing:5.760000px;}
.lsa{letter-spacing:22.320000px;}
.ls5{letter-spacing:33.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.128000px;}
.ws5{word-spacing:-11.880000px;}
.ws6{word-spacing:-10.612800px;}
.ws2{word-spacing:-10.356240px;}
.ws1{word-spacing:-9.937440px;}
.ws3{word-spacing:-9.301440px;}
.ws9{word-spacing:-9.288000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.622880px;}
._1{width:1.069440px;}
._6{width:2.509920px;}
._10{width:3.515520px;}
._4{width:4.536000px;}
._5{width:5.626560px;}
._7{width:6.685440px;}
._8{width:8.114880px;}
._9{width:9.288480px;}
._c{width:11.232000px;}
._a{width:13.032000px;}
._b{width:14.544000px;}
._1c{width:15.590880px;}
._f{width:16.632000px;}
._11{width:19.080000px;}
._d{width:20.203200px;}
._e{width:22.072800px;}
._1b{width:23.534400px;}
._20{width:24.538560px;}
._13{width:25.776000px;}
._12{width:26.822880px;}
._14{width:28.473120px;}
._15{width:30.511680px;}
._21{width:31.533120px;}
._23{width:33.064320px;}
._1a{width:34.272000px;}
._1f{width:35.765760px;}
._1e{width:36.792000px;}
._27{width:39.024000px;}
._18{width:40.320000px;}
._19{width:41.570880px;}
._1d{width:43.416000px;}
._25{width:45.504000px;}
._26{width:46.800000px;}
._16{width:51.408000px;}
._17{width:52.641120px;}
._22{width:108.000000px;}
._24{width:139.032000px;}
._3{width:1085.160000px;}
._2{width:2694.606000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:36.000000px;}
.fs0{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y2e{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y34{bottom:2.340000px;}
.y2c{bottom:2.490000px;}
.y3{bottom:4.500000px;}
.y66{bottom:4.680000px;}
.y7f{bottom:4.860000px;}
.y35{bottom:5.400000px;}
.y32{bottom:12.600000px;}
.ybc{bottom:16.020000px;}
.y85{bottom:16.380000px;}
.y65{bottom:16.740000px;}
.y111{bottom:17.820000px;}
.ye8{bottom:18.180000px;}
.ya6{bottom:18.360000px;}
.y7e{bottom:18.540000px;}
.y3a{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y31{bottom:28.440000px;}
.y36{bottom:37.440000px;}
.y30{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y33{bottom:66.240000px;}
.ya5{bottom:116.460000px;}
.y64{bottom:117.360000px;}
.ybb{bottom:118.980000px;}
.y7d{bottom:120.060000px;}
.yfc{bottom:121.680000px;}
.y2a{bottom:125.820000px;}
.ye7{bottom:128.880000px;}
.y110{bottom:134.100000px;}
.ycf{bottom:140.220000px;}
.y63{bottom:141.120000px;}
.yba{bottom:142.740000px;}
.y7c{bottom:143.820000px;}
.y29{bottom:147.960000px;}
.ye6{bottom:152.640000px;}
.ya4{bottom:155.160000px;}
.y10f{bottom:157.860000px;}
.yfb{bottom:160.380000px;}
.y62{bottom:165.060000px;}
.yb9{bottom:166.680000px;}
.y7b{bottom:167.580000px;}
.y28{bottom:170.280000px;}
.yda{bottom:173.880000px;}
.ye5{bottom:176.400000px;}
.yce{bottom:178.740000px;}
.y84{bottom:182.520000px;}
.yfa{bottom:184.320000px;}
.y61{bottom:188.820000px;}
.yb8{bottom:190.440000px;}
.y27{bottom:192.060000px;}
.ya3{bottom:194.040000px;}
.y10e{bottom:196.560000px;}
.yd9{bottom:197.640000px;}
.y7a{bottom:206.490000px;}
.yf9{bottom:208.110000px;}
.y60{bottom:212.610000px;}
.y26{bottom:213.150000px;}
.yb7{bottom:214.230000px;}
.ye4{bottom:215.310000px;}
.ya2{bottom:217.830000px;}
.y10d{bottom:220.530000px;}
.yd8{bottom:221.430000px;}
.y79{bottom:230.250000px;}
.y5f{bottom:236.370000px;}
.yb6{bottom:237.990000px;}
.ye3{bottom:239.070000px;}
.ya1{bottom:241.590000px;}
.yd7{bottom:245.190000px;}
.y25{bottom:246.450000px;}
.yf8{bottom:246.810000px;}
.y78{bottom:254.010000px;}
.y10c{bottom:259.230000px;}
.y5e{bottom:260.310000px;}
.yb5{bottom:261.930000px;}
.ya0{bottom:265.530000px;}
.yd6{bottom:269.130000px;}
.y24{bottom:272.730000px;}
.ye2{bottom:277.410000px;}
.y77{bottom:277.770000px;}
.y10b{bottom:282.990000px;}
.y5d{bottom:284.070000px;}
.yb4{bottom:285.690000px;}
.ycd{bottom:289.290000px;}
.yd5{bottom:292.890000px;}
.y23{bottom:293.790000px;}
.ye1{bottom:301.350000px;}
.y76{bottom:301.710000px;}
.y9f{bottom:304.230000px;}
.y10a{bottom:306.930000px;}
.y5c{bottom:307.830000px;}
.yb3{bottom:309.450000px;}
.ycc{bottom:313.050000px;}
.y83{bottom:316.290000px;}
.yd4{bottom:316.650000px;}
.y22{bottom:317.550000px;}
.y75{bottom:325.470000px;}
.y9e{bottom:327.990000px;}
.y5b{bottom:331.590000px;}
.yb2{bottom:333.210000px;}
.ycb{bottom:336.810000px;}
.y82{bottom:340.050000px;}
.yd3{bottom:340.410000px;}
.y21{bottom:341.310000px;}
.y109{bottom:345.630000px;}
.yf7{bottom:348.330000px;}
.y9d{bottom:351.930000px;}
.y5a{bottom:355.530000px;}
.yb1{bottom:357.150000px;}
.y74{bottom:363.990000px;}
.ye0{bottom:364.350000px;}
.y20{bottom:365.070000px;}
.y108{bottom:369.390000px;}
.yca{bottom:375.690000px;}
.y59{bottom:379.290000px;}
.yb0{bottom:380.910000px;}
.yf6{bottom:387.030000px;}
.ydf{bottom:388.110000px;}
.y1f{bottom:389.010000px;}
.y9c{bottom:390.630000px;}
.yc9{bottom:399.450000px;}
.y58{bottom:403.050000px;}
.y107{bottom:408.270000px;}
.yde{bottom:411.870000px;}
.y1e{bottom:412.770000px;}
.y9b{bottom:414.390000px;}
.yaf{bottom:419.250000px;}
.yc8{bottom:423.210000px;}
.yf5{bottom:425.910000px;}
.y57{bottom:426.810000px;}
.y106{bottom:432.030000px;}
.ydd{bottom:435.630000px;}
.y1d{bottom:436.530000px;}
.y9a{bottom:438.330000px;}
.y56{bottom:450.795000px;}
.y105{bottom:456.015000px;}
.yae{bottom:458.535000px;}
.y1c{bottom:460.335000px;}
.y99{bottom:462.135000px;}
.yf4{bottom:464.295000px;}
.y55{bottom:474.555000px;}
.y1b{bottom:484.275000px;}
.y98{bottom:485.895000px;}
.y104{bottom:494.715000px;}
.yad{bottom:497.415000px;}
.y54{bottom:498.315000px;}
.yf3{bottom:503.535000px;}
.y1a{bottom:508.035000px;}
.yc7{bottom:509.655000px;}
.y103{bottom:518.475000px;}
.y53{bottom:522.075000px;}
.y97{bottom:524.775000px;}
.yf2{bottom:527.295000px;}
.y19{bottom:531.795000px;}
.yac{bottom:536.115000px;}
.y52{bottom:546.015000px;}
.yc6{bottom:548.175000px;}
.y96{bottom:548.535000px;}
.yf1{bottom:551.055000px;}
.y18{bottom:555.555000px;}
.y102{bottom:557.355000px;}
.y51{bottom:569.775000px;}
.y95{bottom:572.295000px;}
.yab{bottom:574.995000px;}
.y17{bottom:579.495000px;}
.y101{bottom:581.115000px;}
.yd2{bottom:584.715000px;}
.yc5{bottom:587.415000px;}
.yf0{bottom:589.935000px;}
.y50{bottom:593.535000px;}
.y94{bottom:596.055000px;}
.y16{bottom:603.255000px;}
.y100{bottom:604.875000px;}
.yd1{bottom:608.475000px;}
.yc4{bottom:611.175000px;}
.yaa{bottom:613.695000px;}
.y4f{bottom:617.295000px;}
.yff{bottom:628.815000px;}
.y81{bottom:632.415000px;}
.y93{bottom:634.935000px;}
.y15{bottom:636.555000px;}
.y73{bottom:641.055000px;}
.ya9{bottom:652.575000px;}
.y4e{bottom:656.175000px;}
.y92{bottom:658.695000px;}
.y14{bottom:662.475000px;}
.y72{bottom:664.995000px;}
.yc3{bottom:673.815000px;}
.yef{bottom:676.365000px;}
.y4d{bottom:679.965000px;}
.y13{bottom:680.145000px;}
.y91{bottom:682.665000px;}
.y71{bottom:688.785000px;}
.ya8{bottom:691.305000px;}
.yc2{bottom:697.605000px;}
.y4c{bottom:703.725000px;}
.y90{bottom:706.425000px;}
.y70{bottom:712.545000px;}
.yee{bottom:715.245000px;}
.y4b{bottom:727.665000px;}
.y8f{bottom:730.185000px;}
.y12{bottom:733.425000px;}
.y6f{bottom:736.305000px;}
.y4a{bottom:751.425000px;}
.yed{bottom:753.945000px;}
.y11{bottom:757.545000px;}
.y6e{bottom:760.245000px;}
.y8e{bottom:769.065000px;}
.y49{bottom:775.185000px;}
.yec{bottom:777.705000px;}
.y10{bottom:781.845000px;}
.y8d{bottom:792.825000px;}
.y6d{bottom:798.585000px;}
.y48{bottom:798.945000px;}
.yeb{bottom:801.645000px;}
.yf{bottom:805.785000px;}
.ya7{bottom:807.765000px;}
.ydc{bottom:814.065000px;}
.y8c{bottom:816.585000px;}
.y47{bottom:822.705000px;}
.ye{bottom:824.685000px;}
.y6c{bottom:837.825000px;}
.y8b{bottom:840.345000px;}
.y46{bottom:846.645000px;}
.yd{bottom:847.545000px;}
.y112{bottom:855.465000px;}
.y6b{bottom:861.585000px;}
.y8a{bottom:864.285000px;}
.y45{bottom:870.405000px;}
.yc{bottom:872.205000px;}
.yfe{bottom:879.225000px;}
.y6a{bottom:885.345000px;}
.y89{bottom:888.045000px;}
.yc1{bottom:894.165000px;}
.yea{bottom:902.985000px;}
.yb{bottom:908.565000px;}
.y44{bottom:909.285000px;}
.yc0{bottom:917.970000px;}
.y88{bottom:926.790000px;}
.y43{bottom:933.090000px;}
.ybf{bottom:941.910000px;}
.ya{bottom:945.150000px;}
.y87{bottom:950.730000px;}
.y42{bottom:956.850000px;}
.yfd{bottom:965.310000px;}
.ybe{bottom:965.670000px;}
.y9{bottom:974.130000px;}
.y41{bottom:980.610000px;}
.y2b{bottom:988.740000px;}
.y86{bottom:989.430000px;}
.y2d{bottom:990.180000px;}
.y8{bottom:993.390000px;}
.y40{bottom:1004.370000px;}
.ye9{bottom:1013.190000px;}
.y7{bottom:1027.590000px;}
.ybd{bottom:1027.950000px;}
.y3f{bottom:1028.310000px;}
.ydb{bottom:1043.250000px;}
.y3e{bottom:1052.070000px;}
.y6{bottom:1062.870000px;}
.y80{bottom:1067.010000px;}
.y3d{bottom:1075.830000px;}
.y69{bottom:1090.950000px;}
.y3c{bottom:1099.590000px;}
.y5{bottom:1101.030000px;}
.yd0{bottom:1114.350000px;}
.y68{bottom:1114.710000px;}
.y3b{bottom:1138.110000px;}
.y67{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y39{bottom:1164.600000px;}
.y38{bottom:1180.440000px;}
.y37{bottom:1196.280000px;}
.y2f{bottom:1207.800000px;}
.h13{height:11.700000px;}
.h11{height:14.400000px;}
.h1c{height:18.000000px;}
.h20{height:18.180000px;}
.h16{height:24.380859px;}
.h18{height:25.920000px;}
.h17{height:36.168398px;}
.h2{height:38.405391px;}
.h12{height:38.464805px;}
.h5{height:38.469727px;}
.h1a{height:40.843828px;}
.h1d{height:43.057617px;}
.h19{height:45.720703px;}
.h15{height:49.680000px;}
.h1f{height:50.273438px;}
.ha{height:50.597578px;}
.h14{height:52.817344px;}
.h4{height:53.709961px;}
.h10{height:56.084062px;}
.hf{height:58.621992px;}
.hd{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:60.960938px;}
.h9{height:64.978594px;}
.h3{height:65.884219px;}
.he{height:70.628906px;}
.hc{height:70.664062px;}
.hb{height:71.324297px;}
.h1e{height:72.562500px;}
.h1b{height:74.953125px;}
.h7{height:91.441406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:77.400000px;}
.w6{width:79.200000px;}
.w4{width:96.480000px;}
.w2{width:135.000000px;}
.w3{width:137.340000px;}
.w7{width:168.660000px;}
.w5{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:10.836000px;}
.x12{left:13.470000px;}
.x14{left:21.135000px;}
.xc{left:42.270000px;}
.xf{left:94.500000px;}
.x1{left:108.036000px;}
.xd{left:114.120000px;}
.x2{left:125.316000px;}
.x15{left:132.336000px;}
.x1f{left:135.036000px;}
.x20{left:162.030000px;}
.x3{left:166.710000px;}
.x18{left:192.810000px;}
.x8{left:208.470000px;}
.x9{left:243.390000px;}
.x16{left:249.510000px;}
.xa{left:306.975000px;}
.x4{left:310.395000px;}
.x7{left:332.895000px;}
.x1a{left:369.075000px;}
.x13{left:374.940000px;}
.x6{left:434.595000px;}
.x5{left:446.475000px;}
.x10{left:454.965000px;}
.x1d{left:523.800000px;}
.x1b{left:524.880000px;}
.x21{left:526.140000px;}
.x17{left:532.365000px;}
.xb{left:668.340000px;}
.x1c{left:698.220000px;}
.x1e{left:699.660000px;}
.x19{left:700.920000px;}
.x11{left:813.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.565333pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.153600pt;}
.ls1{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.372267pt;}
.ls6{letter-spacing:0.773120pt;}
.ls9{letter-spacing:5.120000pt;}
.lsa{letter-spacing:19.840000pt;}
.ls5{letter-spacing:30.208000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.336000pt;}
.ws5{word-spacing:-10.560000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws2{word-spacing:-9.205547pt;}
.ws1{word-spacing:-8.833280pt;}
.ws3{word-spacing:-8.267947pt;}
.ws9{word-spacing:-8.256000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.442560pt;}
._1{width:0.950613pt;}
._6{width:2.231040pt;}
._10{width:3.124907pt;}
._4{width:4.032000pt;}
._5{width:5.001387pt;}
._7{width:5.942613pt;}
._8{width:7.213227pt;}
._9{width:8.256427pt;}
._c{width:9.984000pt;}
._a{width:11.584000pt;}
._b{width:12.928000pt;}
._1c{width:13.858560pt;}
._f{width:14.784000pt;}
._11{width:16.960000pt;}
._d{width:17.958400pt;}
._e{width:19.620267pt;}
._1b{width:20.919467pt;}
._20{width:21.812053pt;}
._13{width:22.912000pt;}
._12{width:23.842560pt;}
._14{width:25.309440pt;}
._15{width:27.121493pt;}
._21{width:28.029440pt;}
._23{width:29.390507pt;}
._1a{width:30.464000pt;}
._1f{width:31.791787pt;}
._1e{width:32.704000pt;}
._27{width:34.688000pt;}
._18{width:35.840000pt;}
._19{width:36.951893pt;}
._1d{width:38.592000pt;}
._25{width:40.448000pt;}
._26{width:41.600000pt;}
._16{width:45.696000pt;}
._17{width:46.792107pt;}
._22{width:96.000000pt;}
._24{width:123.584000pt;}
._3{width:964.586667pt;}
._2{width:2395.205333pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y2e{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.080000pt;}
.y2c{bottom:2.213333pt;}
.y3{bottom:4.000000pt;}
.y66{bottom:4.160000pt;}
.y7f{bottom:4.320000pt;}
.y35{bottom:4.800000pt;}
.y32{bottom:11.200000pt;}
.ybc{bottom:14.240000pt;}
.y85{bottom:14.560000pt;}
.y65{bottom:14.880000pt;}
.y111{bottom:15.840000pt;}
.ye8{bottom:16.160000pt;}
.ya6{bottom:16.320000pt;}
.y7e{bottom:16.480000pt;}
.y3a{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y31{bottom:25.280000pt;}
.y36{bottom:33.280000pt;}
.y30{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y33{bottom:58.880000pt;}
.ya5{bottom:103.520000pt;}
.y64{bottom:104.320000pt;}
.ybb{bottom:105.760000pt;}
.y7d{bottom:106.720000pt;}
.yfc{bottom:108.160000pt;}
.y2a{bottom:111.840000pt;}
.ye7{bottom:114.560000pt;}
.y110{bottom:119.200000pt;}
.ycf{bottom:124.640000pt;}
.y63{bottom:125.440000pt;}
.yba{bottom:126.880000pt;}
.y7c{bottom:127.840000pt;}
.y29{bottom:131.520000pt;}
.ye6{bottom:135.680000pt;}
.ya4{bottom:137.920000pt;}
.y10f{bottom:140.320000pt;}
.yfb{bottom:142.560000pt;}
.y62{bottom:146.720000pt;}
.yb9{bottom:148.160000pt;}
.y7b{bottom:148.960000pt;}
.y28{bottom:151.360000pt;}
.yda{bottom:154.560000pt;}
.ye5{bottom:156.800000pt;}
.yce{bottom:158.880000pt;}
.y84{bottom:162.240000pt;}
.yfa{bottom:163.840000pt;}
.y61{bottom:167.840000pt;}
.yb8{bottom:169.280000pt;}
.y27{bottom:170.720000pt;}
.ya3{bottom:172.480000pt;}
.y10e{bottom:174.720000pt;}
.yd9{bottom:175.680000pt;}
.y7a{bottom:183.546667pt;}
.yf9{bottom:184.986667pt;}
.y60{bottom:188.986667pt;}
.y26{bottom:189.466667pt;}
.yb7{bottom:190.426667pt;}
.ye4{bottom:191.386667pt;}
.ya2{bottom:193.626667pt;}
.y10d{bottom:196.026667pt;}
.yd8{bottom:196.826667pt;}
.y79{bottom:204.666667pt;}
.y5f{bottom:210.106667pt;}
.yb6{bottom:211.546667pt;}
.ye3{bottom:212.506667pt;}
.ya1{bottom:214.746667pt;}
.yd7{bottom:217.946667pt;}
.y25{bottom:219.066667pt;}
.yf8{bottom:219.386667pt;}
.y78{bottom:225.786667pt;}
.y10c{bottom:230.426667pt;}
.y5e{bottom:231.386667pt;}
.yb5{bottom:232.826667pt;}
.ya0{bottom:236.026667pt;}
.yd6{bottom:239.226667pt;}
.y24{bottom:242.426667pt;}
.ye2{bottom:246.586667pt;}
.y77{bottom:246.906667pt;}
.y10b{bottom:251.546667pt;}
.y5d{bottom:252.506667pt;}
.yb4{bottom:253.946667pt;}
.ycd{bottom:257.146667pt;}
.yd5{bottom:260.346667pt;}
.y23{bottom:261.146667pt;}
.ye1{bottom:267.866667pt;}
.y76{bottom:268.186667pt;}
.y9f{bottom:270.426667pt;}
.y10a{bottom:272.826667pt;}
.y5c{bottom:273.626667pt;}
.yb3{bottom:275.066667pt;}
.ycc{bottom:278.266667pt;}
.y83{bottom:281.146667pt;}
.yd4{bottom:281.466667pt;}
.y22{bottom:282.266667pt;}
.y75{bottom:289.306667pt;}
.y9e{bottom:291.546667pt;}
.y5b{bottom:294.746667pt;}
.yb2{bottom:296.186667pt;}
.ycb{bottom:299.386667pt;}
.y82{bottom:302.266667pt;}
.yd3{bottom:302.586667pt;}
.y21{bottom:303.386667pt;}
.y109{bottom:307.226667pt;}
.yf7{bottom:309.626667pt;}
.y9d{bottom:312.826667pt;}
.y5a{bottom:316.026667pt;}
.yb1{bottom:317.466667pt;}
.y74{bottom:323.546667pt;}
.ye0{bottom:323.866667pt;}
.y20{bottom:324.506667pt;}
.y108{bottom:328.346667pt;}
.yca{bottom:333.946667pt;}
.y59{bottom:337.146667pt;}
.yb0{bottom:338.586667pt;}
.yf6{bottom:344.026667pt;}
.ydf{bottom:344.986667pt;}
.y1f{bottom:345.786667pt;}
.y9c{bottom:347.226667pt;}
.yc9{bottom:355.066667pt;}
.y58{bottom:358.266667pt;}
.y107{bottom:362.906667pt;}
.yde{bottom:366.106667pt;}
.y1e{bottom:366.906667pt;}
.y9b{bottom:368.346667pt;}
.yaf{bottom:372.666667pt;}
.yc8{bottom:376.186667pt;}
.yf5{bottom:378.586667pt;}
.y57{bottom:379.386667pt;}
.y106{bottom:384.026667pt;}
.ydd{bottom:387.226667pt;}
.y1d{bottom:388.026667pt;}
.y9a{bottom:389.626667pt;}
.y56{bottom:400.706667pt;}
.y105{bottom:405.346667pt;}
.yae{bottom:407.586667pt;}
.y1c{bottom:409.186667pt;}
.y99{bottom:410.786667pt;}
.yf4{bottom:412.706667pt;}
.y55{bottom:421.826667pt;}
.y1b{bottom:430.466667pt;}
.y98{bottom:431.906667pt;}
.y104{bottom:439.746667pt;}
.yad{bottom:442.146667pt;}
.y54{bottom:442.946667pt;}
.yf3{bottom:447.586667pt;}
.y1a{bottom:451.586667pt;}
.yc7{bottom:453.026667pt;}
.y103{bottom:460.866667pt;}
.y53{bottom:464.066667pt;}
.y97{bottom:466.466667pt;}
.yf2{bottom:468.706667pt;}
.y19{bottom:472.706667pt;}
.yac{bottom:476.546667pt;}
.y52{bottom:485.346667pt;}
.yc6{bottom:487.266667pt;}
.y96{bottom:487.586667pt;}
.yf1{bottom:489.826667pt;}
.y18{bottom:493.826667pt;}
.y102{bottom:495.426667pt;}
.y51{bottom:506.466667pt;}
.y95{bottom:508.706667pt;}
.yab{bottom:511.106667pt;}
.y17{bottom:515.106667pt;}
.y101{bottom:516.546667pt;}
.yd2{bottom:519.746667pt;}
.yc5{bottom:522.146667pt;}
.yf0{bottom:524.386667pt;}
.y50{bottom:527.586667pt;}
.y94{bottom:529.826667pt;}
.y16{bottom:536.226667pt;}
.y100{bottom:537.666667pt;}
.yd1{bottom:540.866667pt;}
.yc4{bottom:543.266667pt;}
.yaa{bottom:545.506667pt;}
.y4f{bottom:548.706667pt;}
.yff{bottom:558.946667pt;}
.y81{bottom:562.146667pt;}
.y93{bottom:564.386667pt;}
.y15{bottom:565.826667pt;}
.y73{bottom:569.826667pt;}
.ya9{bottom:580.066667pt;}
.y4e{bottom:583.266667pt;}
.y92{bottom:585.506667pt;}
.y14{bottom:588.866667pt;}
.y72{bottom:591.106667pt;}
.yc3{bottom:598.946667pt;}
.yef{bottom:601.213333pt;}
.y4d{bottom:604.413333pt;}
.y13{bottom:604.573333pt;}
.y91{bottom:606.813333pt;}
.y71{bottom:612.253333pt;}
.ya8{bottom:614.493333pt;}
.yc2{bottom:620.093333pt;}
.y4c{bottom:625.533333pt;}
.y90{bottom:627.933333pt;}
.y70{bottom:633.373333pt;}
.yee{bottom:635.773333pt;}
.y4b{bottom:646.813333pt;}
.y8f{bottom:649.053333pt;}
.y12{bottom:651.933333pt;}
.y6f{bottom:654.493333pt;}
.y4a{bottom:667.933333pt;}
.yed{bottom:670.173333pt;}
.y11{bottom:673.373333pt;}
.y6e{bottom:675.773333pt;}
.y8e{bottom:683.613333pt;}
.y49{bottom:689.053333pt;}
.yec{bottom:691.293333pt;}
.y10{bottom:694.973333pt;}
.y8d{bottom:704.733333pt;}
.y6d{bottom:709.853333pt;}
.y48{bottom:710.173333pt;}
.yeb{bottom:712.573333pt;}
.yf{bottom:716.253333pt;}
.ya7{bottom:718.013333pt;}
.ydc{bottom:723.613333pt;}
.y8c{bottom:725.853333pt;}
.y47{bottom:731.293333pt;}
.ye{bottom:733.053333pt;}
.y6c{bottom:744.733333pt;}
.y8b{bottom:746.973333pt;}
.y46{bottom:752.573333pt;}
.yd{bottom:753.373333pt;}
.y112{bottom:760.413333pt;}
.y6b{bottom:765.853333pt;}
.y8a{bottom:768.253333pt;}
.y45{bottom:773.693333pt;}
.yc{bottom:775.293333pt;}
.yfe{bottom:781.533333pt;}
.y6a{bottom:786.973333pt;}
.y89{bottom:789.373333pt;}
.yc1{bottom:794.813333pt;}
.yea{bottom:802.653333pt;}
.yb{bottom:807.613333pt;}
.y44{bottom:808.253333pt;}
.yc0{bottom:815.973333pt;}
.y88{bottom:823.813333pt;}
.y43{bottom:829.413333pt;}
.ybf{bottom:837.253333pt;}
.ya{bottom:840.133333pt;}
.y87{bottom:845.093333pt;}
.y42{bottom:850.533333pt;}
.yfd{bottom:858.053333pt;}
.ybe{bottom:858.373333pt;}
.y9{bottom:865.893333pt;}
.y41{bottom:871.653333pt;}
.y2b{bottom:878.880000pt;}
.y86{bottom:879.493333pt;}
.y2d{bottom:880.160000pt;}
.y8{bottom:883.013333pt;}
.y40{bottom:892.773333pt;}
.ye9{bottom:900.613333pt;}
.y7{bottom:913.413333pt;}
.ybd{bottom:913.733333pt;}
.y3f{bottom:914.053333pt;}
.ydb{bottom:927.333333pt;}
.y3e{bottom:935.173333pt;}
.y6{bottom:944.773333pt;}
.y80{bottom:948.453333pt;}
.y3d{bottom:956.293333pt;}
.y69{bottom:969.733333pt;}
.y3c{bottom:977.413333pt;}
.y5{bottom:978.693333pt;}
.yd0{bottom:990.533333pt;}
.y68{bottom:990.853333pt;}
.y3b{bottom:1011.653333pt;}
.y67{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y39{bottom:1035.200000pt;}
.y38{bottom:1049.280000pt;}
.y37{bottom:1063.360000pt;}
.y2f{bottom:1073.600000pt;}
.h13{height:10.400000pt;}
.h11{height:12.800000pt;}
.h1c{height:16.000000pt;}
.h20{height:16.160000pt;}
.h16{height:21.671875pt;}
.h18{height:23.040000pt;}
.h17{height:32.149687pt;}
.h2{height:34.138125pt;}
.h12{height:34.190937pt;}
.h5{height:34.195312pt;}
.h1a{height:36.305625pt;}
.h1d{height:38.273438pt;}
.h19{height:40.640625pt;}
.h15{height:44.160000pt;}
.h1f{height:44.687500pt;}
.ha{height:44.975625pt;}
.h14{height:46.948750pt;}
.h4{height:47.742188pt;}
.h10{height:49.852500pt;}
.hf{height:52.108438pt;}
.hd{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.187500pt;}
.h9{height:57.758750pt;}
.h3{height:58.563750pt;}
.he{height:62.781250pt;}
.hc{height:62.812500pt;}
.hb{height:63.399375pt;}
.h1e{height:64.500000pt;}
.h1b{height:66.625000pt;}
.h7{height:81.281250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:68.800000pt;}
.w6{width:70.400000pt;}
.w4{width:85.760000pt;}
.w2{width:120.000000pt;}
.w3{width:122.080000pt;}
.w7{width:149.920000pt;}
.w5{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.632000pt;}
.x12{left:11.973333pt;}
.x14{left:18.786667pt;}
.xc{left:37.573333pt;}
.xf{left:84.000000pt;}
.x1{left:96.032000pt;}
.xd{left:101.440000pt;}
.x2{left:111.392000pt;}
.x15{left:117.632000pt;}
.x1f{left:120.032000pt;}
.x20{left:144.026667pt;}
.x3{left:148.186667pt;}
.x18{left:171.386667pt;}
.x8{left:185.306667pt;}
.x9{left:216.346667pt;}
.x16{left:221.786667pt;}
.xa{left:272.866667pt;}
.x4{left:275.906667pt;}
.x7{left:295.906667pt;}
.x1a{left:328.066667pt;}
.x13{left:333.280000pt;}
.x6{left:386.306667pt;}
.x5{left:396.866667pt;}
.x10{left:404.413333pt;}
.x1d{left:465.600000pt;}
.x1b{left:466.560000pt;}
.x21{left:467.680000pt;}
.x17{left:473.213333pt;}
.xb{left:594.080000pt;}
.x1c{left:620.640000pt;}
.x1e{left:621.920000pt;}
.x19{left:623.040000pt;}
.x11{left:723.360000pt;}
}




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