
    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_5be26b79e47d5433d05ae2bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_94c919a3b3aa7e89ed0851f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_530b96561626b43bb26db37a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_fb8ebb7acc02de5f94e49724.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_c38df0920047f49edc54a813.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2a783a0fa47c616c3d7fa417.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_682f395e9eb27015693775ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_9b1898a41f100550838a39a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls1f{letter-spacing:-0.864000px;}
.ls6{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.450600px;}
.ls3{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.181200px;}
.ls2{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.106800px;}
.ls16{letter-spacing:-0.053280px;}
.ls18{letter-spacing:-0.017280px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.306600px;}
.ls1e{letter-spacing:0.496080px;}
.ls8{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.666720px;}
.ls1b{letter-spacing:1.584000px;}
.ls22{letter-spacing:5.904000px;}
.ls1a{letter-spacing:9.504000px;}
.ls12{letter-spacing:12.504000px;}
.lsf{letter-spacing:18.144000px;}
.ls21{letter-spacing:21.024000px;}
.ls19{letter-spacing:25.344000px;}
.ls20{letter-spacing:33.264000px;}
.lse{letter-spacing:75.000000px;}
.ls9{letter-spacing:192.360000px;}
.ls1d{letter-spacing:195.762720px;}
.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:-20.520000px;}
.ws3{word-spacing:-20.304000px;}
.ws13{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.160000px;}
.ws15{word-spacing:-20.088000px;}
.ws2{word-spacing:-20.016000px;}
.ws0{word-spacing:-19.872000px;}
.ws12{word-spacing:-19.800000px;}
.wse{word-spacing:-19.584000px;}
.ws4{word-spacing:-19.296000px;}
.ws14{word-spacing:-19.152000px;}
.wsc{word-spacing:-16.919880px;}
.wsb{word-spacing:-16.666560px;}
.ws9{word-spacing:-16.613280px;}
.wsd{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.506480px;}
.ws11{word-spacing:-16.353480px;}
.ws6{word-spacing:-13.410720px;}
.ws8{word-spacing:-13.229520px;}
.ws10{word-spacing:-10.808640px;}
.wsf{word-spacing:-10.791360px;}
.ws1{word-spacing:0.000000px;}
._1c{margin-left:-17.376000px;}
._1d{margin-left:-16.296000px;}
._20{margin-left:-12.336000px;}
._1e{margin-left:-8.736000px;}
._1f{margin-left:-3.840000px;}
._1b{margin-left:-2.400000px;}
._1{margin-left:-1.080000px;}
._0{width:1.020000px;}
._2{width:2.520000px;}
._26{width:3.564000px;}
._4{width:4.584000px;}
._3{width:5.880000px;}
._16{width:6.888000px;}
._b{width:8.472000px;}
._18{width:9.504000px;}
._11{width:11.088000px;}
._10{width:12.144000px;}
._17{width:14.112000px;}
._22{width:15.540000px;}
._13{width:16.632000px;}
._33{width:17.640000px;}
._5{width:18.648000px;}
._f{width:21.888000px;}
._2b{width:22.920000px;}
._7{width:23.976000px;}
._6{width:25.056000px;}
._12{width:26.244000px;}
._a{width:27.648000px;}
._9{width:28.872000px;}
._8{width:29.880000px;}
._c{width:31.452000px;}
._2c{width:32.484000px;}
._e{width:33.528000px;}
._d{width:34.560000px;}
._23{width:36.552000px;}
._24{width:37.680000px;}
._27{width:39.084000px;}
._2d{width:41.112000px;}
._25{width:42.336000px;}
._14{width:44.112000px;}
._15{width:49.188000px;}
._2e{width:52.188000px;}
._28{width:53.280000px;}
._2f{width:55.032000px;}
._19{width:56.160000px;}
._1a{width:57.588000px;}
._2a{width:59.796000px;}
._29{width:61.200000px;}
._30{width:62.340000px;}
._32{width:91.416000px;}
._31{width:131.736000px;}
._21{width:192.360000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(247,150,70);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y93{bottom:-5.580000px;}
.y0{bottom:0.000000px;}
.y61{bottom:3.240000px;}
.y6a{bottom:3.405000px;}
.y78{bottom:3.412500px;}
.y7c{bottom:3.420000px;}
.ybf{bottom:3.585000px;}
.y99{bottom:3.592500px;}
.y5d{bottom:3.600000px;}
.y77{bottom:20.512500px;}
.y60{bottom:20.520000px;}
.y69{bottom:20.550000px;}
.ya1{bottom:20.565000px;}
.y72{bottom:20.685000px;}
.y5f{bottom:20.700000px;}
.ya9{bottom:20.730000px;}
.yc5{bottom:20.865000px;}
.y98{bottom:20.872500px;}
.y5c{bottom:20.880000px;}
.yc0{bottom:20.910000px;}
.yc3{bottom:37.785000px;}
.y76{bottom:37.786500px;}
.y7e{bottom:37.800000px;}
.y68{bottom:37.830000px;}
.ya0{bottom:37.845000px;}
.y71{bottom:37.965000px;}
.y7b{bottom:37.980000px;}
.yaa{bottom:38.010000px;}
.y9d{bottom:38.160000px;}
.ya8{bottom:38.190000px;}
.y70{bottom:55.065000px;}
.y75{bottom:55.066500px;}
.y84{bottom:55.080000px;}
.y67{bottom:55.110000px;}
.ya2{bottom:55.125000px;}
.y74{bottom:55.246500px;}
.y9c{bottom:55.260000px;}
.y7a{bottom:55.290000px;}
.y9f{bottom:55.305000px;}
.y9a{bottom:55.470000px;}
.y6f{bottom:72.345000px;}
.y83{bottom:72.360000px;}
.y66{bottom:72.390000px;}
.yc2{bottom:72.525000px;}
.ya6{bottom:72.540000px;}
.y6e{bottom:89.625000px;}
.y82{bottom:89.640000px;}
.y65{bottom:89.670000px;}
.y6d{bottom:106.905000px;}
.y81{bottom:106.920000px;}
.y64{bottom:106.950000px;}
.y6c{bottom:107.085000px;}
.y80{bottom:107.100000px;}
.y63{bottom:107.130000px;}
.y97{bottom:115.783500px;}
.y73{bottom:117.403500px;}
.yb5{bottom:120.456000px;}
.yc7{bottom:130.356000px;}
.y17{bottom:133.056000px;}
.y48{bottom:137.376000px;}
.y30{bottom:146.376000px;}
.y4c{bottom:146.556000px;}
.y91{bottom:147.456000px;}
.y96{bottom:155.910000px;}
.yb4{bottom:161.670000px;}
.ye5{bottom:167.070000px;}
.yc6{bottom:171.750000px;}
.y16{bottom:174.450000px;}
.y47{bottom:178.770000px;}
.y6b{bottom:186.345000px;}
.y2f{bottom:187.770000px;}
.y90{bottom:188.850000px;}
.yc4{bottom:190.485000px;}
.y95{bottom:190.650000px;}
.yb3{bottom:203.070000px;}
.ye4{bottom:208.470000px;}
.y15{bottom:215.850000px;}
.y46{bottom:220.170000px;}
.yc1{bottom:225.045000px;}
.y8f{bottom:226.290000px;}
.y2e{bottom:229.170000px;}
.y33{bottom:229.350000px;}
.yb2{bottom:244.470000px;}
.ye3{bottom:249.870000px;}
.y14{bottom:257.250000px;}
.y45{bottom:261.570000px;}
.y2d{bottom:270.570000px;}
.y4b{bottom:270.750000px;}
.yb1{bottom:285.870000px;}
.ye2{bottom:291.270000px;}
.y13{bottom:298.650000px;}
.y44{bottom:302.970000px;}
.y62{bottom:307.125000px;}
.y2c{bottom:311.970000px;}
.ybe{bottom:312.345000px;}
.yb0{bottom:327.315000px;}
.ye1{bottom:332.715000px;}
.y12{bottom:339.915000px;}
.y43{bottom:344.415000px;}
.y2b{bottom:353.415000px;}
.y4a{bottom:353.595000px;}
.yaf{bottom:368.715000px;}
.ybd{bottom:369.975000px;}
.ye0{bottom:374.115000px;}
.y11{bottom:381.315000px;}
.y42{bottom:385.815000px;}
.y2a{bottom:394.815000px;}
.y49{bottom:394.995000px;}
.ybc{bottom:408.495000px;}
.yae{bottom:410.115000px;}
.ydf{bottom:415.515000px;}
.y10{bottom:422.715000px;}
.y41{bottom:427.035000px;}
.y5e{bottom:427.935000px;}
.y29{bottom:436.035000px;}
.yad{bottom:447.015000px;}
.ybb{bottom:449.895000px;}
.yde{bottom:456.735000px;}
.y92{bottom:457.815000px;}
.y5b{bottom:463.395000px;}
.yf{bottom:464.115000px;}
.y40{bottom:468.435000px;}
.y28{bottom:477.435000px;}
.yac{bottom:481.395000px;}
.yba{bottom:491.295000px;}
.ydd{bottom:498.135000px;}
.y8e{bottom:503.355000px;}
.y5a{bottom:503.715000px;}
.ye{bottom:505.515000px;}
.y3f{bottom:509.835000px;}
.y27{bottom:518.835000px;}
.yc9{bottom:519.015000px;}
.yb9{bottom:532.695000px;}
.yab{bottom:533.235000px;}
.ydc{bottom:539.535000px;}
.y59{bottom:542.235000px;}
.y8d{bottom:544.755000px;}
.yd{bottom:546.915000px;}
.y3e{bottom:551.235000px;}
.y26{bottom:560.235000px;}
.y94{bottom:560.415000px;}
.yb8{bottom:574.095000px;}
.ydb{bottom:580.935000px;}
.y58{bottom:583.635000px;}
.ya7{bottom:584.895000px;}
.y8c{bottom:586.155000px;}
.yc{bottom:588.315000px;}
.y3d{bottom:592.635000px;}
.y25{bottom:601.665000px;}
.yb7{bottom:611.565000px;}
.yda{bottom:622.365000px;}
.y57{bottom:625.065000px;}
.y8b{bottom:627.585000px;}
.yb{bottom:629.745000px;}
.y3c{bottom:634.065000px;}
.ya5{bottom:636.765000px;}
.y24{bottom:643.065000px;}
.y32{bottom:643.245000px;}
.yb6{bottom:645.945000px;}
.yd9{bottom:663.765000px;}
.y56{bottom:666.465000px;}
.y8a{bottom:668.985000px;}
.ya{bottom:671.145000px;}
.y3b{bottom:675.465000px;}
.y23{bottom:684.465000px;}
.yd8{bottom:705.165000px;}
.y55{bottom:707.865000px;}
.y89{bottom:710.385000px;}
.y9{bottom:712.545000px;}
.y3a{bottom:716.865000px;}
.ya4{bottom:722.985000px;}
.y22{bottom:725.865000px;}
.y34{bottom:734.145000px;}
.yd7{bottom:746.565000px;}
.y54{bottom:749.265000px;}
.y88{bottom:751.785000px;}
.y8{bottom:753.945000px;}
.y39{bottom:758.265000px;}
.y21{bottom:767.265000px;}
.yce{bottom:767.445000px;}
.ya3{bottom:774.825000px;}
.yd6{bottom:787.965000px;}
.y53{bottom:790.665000px;}
.y87{bottom:793.185000px;}
.y7{bottom:795.345000px;}
.y38{bottom:799.665000px;}
.y20{bottom:808.665000px;}
.ycd{bottom:808.845000px;}
.yd5{bottom:829.365000px;}
.y52{bottom:832.065000px;}
.y86{bottom:834.585000px;}
.y6{bottom:836.745000px;}
.y37{bottom:841.065000px;}
.y9e{bottom:843.765000px;}
.y1f{bottom:850.065000px;}
.yc8{bottom:858.345000px;}
.yd4{bottom:870.810000px;}
.y51{bottom:873.510000px;}
.y85{bottom:876.030000px;}
.y5{bottom:878.190000px;}
.y36{bottom:882.510000px;}
.y1e{bottom:891.510000px;}
.ycc{bottom:891.690000px;}
.yd3{bottom:912.210000px;}
.y7f{bottom:912.750000px;}
.y50{bottom:914.910000px;}
.y4{bottom:919.590000px;}
.y35{bottom:923.910000px;}
.y1d{bottom:932.910000px;}
.ycb{bottom:933.090000px;}
.yd2{bottom:953.610000px;}
.y3{bottom:960.990000px;}
.y9b{bottom:964.590000px;}
.y1c{bottom:974.310000px;}
.y31{bottom:974.490000px;}
.yd1{bottom:995.010000px;}
.y2{bottom:998.430000px;}
.y1b{bottom:1015.710000px;}
.yca{bottom:1015.890000px;}
.y7d{bottom:1033.530000px;}
.yd0{bottom:1036.410000px;}
.y1a{bottom:1057.110000px;}
.y4f{bottom:1057.290000px;}
.ycf{bottom:1077.810000px;}
.y79{bottom:1085.190000px;}
.y19{bottom:1098.510000px;}
.y4e{bottom:1098.690000px;}
.ye6{bottom:1119.210000px;}
.ye7{bottom:1121.910000px;}
.y1{bottom:1139.940000px;}
.y4d{bottom:1140.120000px;}
.y18{bottom:1193.220000px;}
.he{height:10.965000px;}
.h8{height:34.365000px;}
.h7{height:34.545000px;}
.hf{height:34.552500px;}
.h18{height:34.581000px;}
.h5{height:50.312812px;}
.hd{height:51.645000px;}
.h12{height:51.825000px;}
.h15{height:51.840000px;}
.h17{height:51.870000px;}
.h6{height:62.327813px;}
.h11{height:68.925000px;}
.hb{height:68.932500px;}
.h14{height:68.940000px;}
.h13{height:68.962500px;}
.hc{height:69.150000px;}
.h10{height:70.790625px;}
.h2{height:75.093750px;}
.h4{height:83.408812px;}
.h3{height:83.432812px;}
.h19{height:86.205000px;}
.h16{height:86.220000px;}
.ha{height:120.765000px;}
.h9{height:120.801000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:24.285000px;}
.w8{width:119.145000px;}
.w2{width:209.539500px;}
.w9{width:222.499500px;}
.w4{width:223.215000px;}
.wa{width:223.230000px;}
.w3{width:236.190000px;}
.w7{width:265.935000px;}
.w6{width:284.059500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:8.089500px;}
.x29{left:10.785000px;}
.x2f{left:25.380000px;}
.x2c{left:27.360000px;}
.x2e{left:29.520000px;}
.x31{left:31.680000px;}
.x30{left:33.660000px;}
.x2d{left:37.800000px;}
.x32{left:59.580000px;}
.x22{left:77.385000px;}
.x26{left:79.365000px;}
.x23{left:81.525000px;}
.x25{left:85.665000px;}
.x24{left:89.805000px;}
.x39{left:111.630000px;}
.x36{left:119.566500px;}
.x1e{left:122.446500px;}
.x1{left:127.656000px;}
.xe{left:132.876000px;}
.x4{left:138.996000px;}
.x34{left:149.796000px;}
.x6{left:155.010000px;}
.x5{left:173.550000px;}
.x33{left:176.250000px;}
.x3c{left:180.750000px;}
.x7{left:206.490000px;}
.x35{left:220.710000px;}
.xa{left:263.550000px;}
.x27{left:286.995000px;}
.xb{left:304.095000px;}
.xd{left:314.715000px;}
.x9{left:331.095000px;}
.x20{left:332.535000px;}
.x3d{left:340.095000px;}
.x37{left:342.615000px;}
.xc{left:349.095000px;}
.x3b{left:351.075000px;}
.x8{left:356.655000px;}
.x19{left:365.655000px;}
.x1d{left:376.095000px;}
.x11{left:386.535000px;}
.x2a{left:406.875000px;}
.xf{left:408.675000px;}
.x1b{left:410.655000px;}
.x1c{left:416.055000px;}
.x15{left:420.555000px;}
.x13{left:421.635000px;}
.x17{left:431.175000px;}
.x3{left:457.095000px;}
.x28{left:486.120000px;}
.x38{left:565.860000px;}
.x21{left:568.740000px;}
.x2{left:633.165000px;}
.x2b{left:672.810000px;}
.x3a{left:769.290000px;}
.x18{left:772.350000px;}
.x14{left:777.210000px;}
.x1a{left:779.190000px;}
.x16{left:780.270000px;}
.x10{left:785.310000px;}
.x12{left:786.750000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls1f{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.400533pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.161067pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls18{letter-spacing:-0.015360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.272533pt;}
.ls1e{letter-spacing:0.440960pt;}
.ls8{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.592640pt;}
.ls1b{letter-spacing:1.408000pt;}
.ls22{letter-spacing:5.248000pt;}
.ls1a{letter-spacing:8.448000pt;}
.ls12{letter-spacing:11.114667pt;}
.lsf{letter-spacing:16.128000pt;}
.ls21{letter-spacing:18.688000pt;}
.ls19{letter-spacing:22.528000pt;}
.ls20{letter-spacing:29.568000pt;}
.lse{letter-spacing:66.666667pt;}
.ls9{letter-spacing:170.986667pt;}
.ls1d{letter-spacing:174.011307pt;}
.ws7{word-spacing:-18.240000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws13{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws15{word-spacing:-17.856000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.664000pt;}
.ws12{word-spacing:-17.600000pt;}
.wse{word-spacing:-17.408000pt;}
.ws4{word-spacing:-17.152000pt;}
.ws14{word-spacing:-17.024000pt;}
.wsc{word-spacing:-15.039893pt;}
.wsb{word-spacing:-14.814720pt;}
.ws9{word-spacing:-14.767360pt;}
.wsd{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.672427pt;}
.ws11{word-spacing:-14.536427pt;}
.ws6{word-spacing:-11.920640pt;}
.ws8{word-spacing:-11.759573pt;}
.ws10{word-spacing:-9.607680pt;}
.wsf{word-spacing:-9.592320pt;}
.ws1{word-spacing:0.000000pt;}
._1c{margin-left:-15.445333pt;}
._1d{margin-left:-14.485333pt;}
._20{margin-left:-10.965333pt;}
._1e{margin-left:-7.765333pt;}
._1f{margin-left:-3.413333pt;}
._1b{margin-left:-2.133333pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.906667pt;}
._2{width:2.240000pt;}
._26{width:3.168000pt;}
._4{width:4.074667pt;}
._3{width:5.226667pt;}
._16{width:6.122667pt;}
._b{width:7.530667pt;}
._18{width:8.448000pt;}
._11{width:9.856000pt;}
._10{width:10.794667pt;}
._17{width:12.544000pt;}
._22{width:13.813333pt;}
._13{width:14.784000pt;}
._33{width:15.680000pt;}
._5{width:16.576000pt;}
._f{width:19.456000pt;}
._2b{width:20.373333pt;}
._7{width:21.312000pt;}
._6{width:22.272000pt;}
._12{width:23.328000pt;}
._a{width:24.576000pt;}
._9{width:25.664000pt;}
._8{width:26.560000pt;}
._c{width:27.957333pt;}
._2c{width:28.874667pt;}
._e{width:29.802667pt;}
._d{width:30.720000pt;}
._23{width:32.490667pt;}
._24{width:33.493333pt;}
._27{width:34.741333pt;}
._2d{width:36.544000pt;}
._25{width:37.632000pt;}
._14{width:39.210667pt;}
._15{width:43.722667pt;}
._2e{width:46.389333pt;}
._28{width:47.360000pt;}
._2f{width:48.917333pt;}
._19{width:49.920000pt;}
._1a{width:51.189333pt;}
._2a{width:53.152000pt;}
._29{width:54.400000pt;}
._30{width:55.413333pt;}
._32{width:81.258667pt;}
._31{width:117.098667pt;}
._21{width:170.986667pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y93{bottom:-4.960000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:2.880000pt;}
.y6a{bottom:3.026667pt;}
.y78{bottom:3.033333pt;}
.y7c{bottom:3.040000pt;}
.ybf{bottom:3.186667pt;}
.y99{bottom:3.193333pt;}
.y5d{bottom:3.200000pt;}
.y77{bottom:18.233333pt;}
.y60{bottom:18.240000pt;}
.y69{bottom:18.266667pt;}
.ya1{bottom:18.280000pt;}
.y72{bottom:18.386667pt;}
.y5f{bottom:18.400000pt;}
.ya9{bottom:18.426667pt;}
.yc5{bottom:18.546667pt;}
.y98{bottom:18.553333pt;}
.y5c{bottom:18.560000pt;}
.yc0{bottom:18.586667pt;}
.yc3{bottom:33.586667pt;}
.y76{bottom:33.588000pt;}
.y7e{bottom:33.600000pt;}
.y68{bottom:33.626667pt;}
.ya0{bottom:33.640000pt;}
.y71{bottom:33.746667pt;}
.y7b{bottom:33.760000pt;}
.yaa{bottom:33.786667pt;}
.y9d{bottom:33.920000pt;}
.ya8{bottom:33.946667pt;}
.y70{bottom:48.946667pt;}
.y75{bottom:48.948000pt;}
.y84{bottom:48.960000pt;}
.y67{bottom:48.986667pt;}
.ya2{bottom:49.000000pt;}
.y74{bottom:49.108000pt;}
.y9c{bottom:49.120000pt;}
.y7a{bottom:49.146667pt;}
.y9f{bottom:49.160000pt;}
.y9a{bottom:49.306667pt;}
.y6f{bottom:64.306667pt;}
.y83{bottom:64.320000pt;}
.y66{bottom:64.346667pt;}
.yc2{bottom:64.466667pt;}
.ya6{bottom:64.480000pt;}
.y6e{bottom:79.666667pt;}
.y82{bottom:79.680000pt;}
.y65{bottom:79.706667pt;}
.y6d{bottom:95.026667pt;}
.y81{bottom:95.040000pt;}
.y64{bottom:95.066667pt;}
.y6c{bottom:95.186667pt;}
.y80{bottom:95.200000pt;}
.y63{bottom:95.226667pt;}
.y97{bottom:102.918667pt;}
.y73{bottom:104.358667pt;}
.yb5{bottom:107.072000pt;}
.yc7{bottom:115.872000pt;}
.y17{bottom:118.272000pt;}
.y48{bottom:122.112000pt;}
.y30{bottom:130.112000pt;}
.y4c{bottom:130.272000pt;}
.y91{bottom:131.072000pt;}
.y96{bottom:138.586667pt;}
.yb4{bottom:143.706667pt;}
.ye5{bottom:148.506667pt;}
.yc6{bottom:152.666667pt;}
.y16{bottom:155.066667pt;}
.y47{bottom:158.906667pt;}
.y6b{bottom:165.640000pt;}
.y2f{bottom:166.906667pt;}
.y90{bottom:167.866667pt;}
.yc4{bottom:169.320000pt;}
.y95{bottom:169.466667pt;}
.yb3{bottom:180.506667pt;}
.ye4{bottom:185.306667pt;}
.y15{bottom:191.866667pt;}
.y46{bottom:195.706667pt;}
.yc1{bottom:200.040000pt;}
.y8f{bottom:201.146667pt;}
.y2e{bottom:203.706667pt;}
.y33{bottom:203.866667pt;}
.yb2{bottom:217.306667pt;}
.ye3{bottom:222.106667pt;}
.y14{bottom:228.666667pt;}
.y45{bottom:232.506667pt;}
.y2d{bottom:240.506667pt;}
.y4b{bottom:240.666667pt;}
.yb1{bottom:254.106667pt;}
.ye2{bottom:258.906667pt;}
.y13{bottom:265.466667pt;}
.y44{bottom:269.306667pt;}
.y62{bottom:273.000000pt;}
.y2c{bottom:277.306667pt;}
.ybe{bottom:277.640000pt;}
.yb0{bottom:290.946667pt;}
.ye1{bottom:295.746667pt;}
.y12{bottom:302.146667pt;}
.y43{bottom:306.146667pt;}
.y2b{bottom:314.146667pt;}
.y4a{bottom:314.306667pt;}
.yaf{bottom:327.746667pt;}
.ybd{bottom:328.866667pt;}
.ye0{bottom:332.546667pt;}
.y11{bottom:338.946667pt;}
.y42{bottom:342.946667pt;}
.y2a{bottom:350.946667pt;}
.y49{bottom:351.106667pt;}
.ybc{bottom:363.106667pt;}
.yae{bottom:364.546667pt;}
.ydf{bottom:369.346667pt;}
.y10{bottom:375.746667pt;}
.y41{bottom:379.586667pt;}
.y5e{bottom:380.386667pt;}
.y29{bottom:387.586667pt;}
.yad{bottom:397.346667pt;}
.ybb{bottom:399.906667pt;}
.yde{bottom:405.986667pt;}
.y92{bottom:406.946667pt;}
.y5b{bottom:411.906667pt;}
.yf{bottom:412.546667pt;}
.y40{bottom:416.386667pt;}
.y28{bottom:424.386667pt;}
.yac{bottom:427.906667pt;}
.yba{bottom:436.706667pt;}
.ydd{bottom:442.786667pt;}
.y8e{bottom:447.426667pt;}
.y5a{bottom:447.746667pt;}
.ye{bottom:449.346667pt;}
.y3f{bottom:453.186667pt;}
.y27{bottom:461.186667pt;}
.yc9{bottom:461.346667pt;}
.yb9{bottom:473.506667pt;}
.yab{bottom:473.986667pt;}
.ydc{bottom:479.586667pt;}
.y59{bottom:481.986667pt;}
.y8d{bottom:484.226667pt;}
.yd{bottom:486.146667pt;}
.y3e{bottom:489.986667pt;}
.y26{bottom:497.986667pt;}
.y94{bottom:498.146667pt;}
.yb8{bottom:510.306667pt;}
.ydb{bottom:516.386667pt;}
.y58{bottom:518.786667pt;}
.ya7{bottom:519.906667pt;}
.y8c{bottom:521.026667pt;}
.yc{bottom:522.946667pt;}
.y3d{bottom:526.786667pt;}
.y25{bottom:534.813333pt;}
.yb7{bottom:543.613333pt;}
.yda{bottom:553.213333pt;}
.y57{bottom:555.613333pt;}
.y8b{bottom:557.853333pt;}
.yb{bottom:559.773333pt;}
.y3c{bottom:563.613333pt;}
.ya5{bottom:566.013333pt;}
.y24{bottom:571.613333pt;}
.y32{bottom:571.773333pt;}
.yb6{bottom:574.173333pt;}
.yd9{bottom:590.013333pt;}
.y56{bottom:592.413333pt;}
.y8a{bottom:594.653333pt;}
.ya{bottom:596.573333pt;}
.y3b{bottom:600.413333pt;}
.y23{bottom:608.413333pt;}
.yd8{bottom:626.813333pt;}
.y55{bottom:629.213333pt;}
.y89{bottom:631.453333pt;}
.y9{bottom:633.373333pt;}
.y3a{bottom:637.213333pt;}
.ya4{bottom:642.653333pt;}
.y22{bottom:645.213333pt;}
.y34{bottom:652.573333pt;}
.yd7{bottom:663.613333pt;}
.y54{bottom:666.013333pt;}
.y88{bottom:668.253333pt;}
.y8{bottom:670.173333pt;}
.y39{bottom:674.013333pt;}
.y21{bottom:682.013333pt;}
.yce{bottom:682.173333pt;}
.ya3{bottom:688.733333pt;}
.yd6{bottom:700.413333pt;}
.y53{bottom:702.813333pt;}
.y87{bottom:705.053333pt;}
.y7{bottom:706.973333pt;}
.y38{bottom:710.813333pt;}
.y20{bottom:718.813333pt;}
.ycd{bottom:718.973333pt;}
.yd5{bottom:737.213333pt;}
.y52{bottom:739.613333pt;}
.y86{bottom:741.853333pt;}
.y6{bottom:743.773333pt;}
.y37{bottom:747.613333pt;}
.y9e{bottom:750.013333pt;}
.y1f{bottom:755.613333pt;}
.yc8{bottom:762.973333pt;}
.yd4{bottom:774.053333pt;}
.y51{bottom:776.453333pt;}
.y85{bottom:778.693333pt;}
.y5{bottom:780.613333pt;}
.y36{bottom:784.453333pt;}
.y1e{bottom:792.453333pt;}
.ycc{bottom:792.613333pt;}
.yd3{bottom:810.853333pt;}
.y7f{bottom:811.333333pt;}
.y50{bottom:813.253333pt;}
.y4{bottom:817.413333pt;}
.y35{bottom:821.253333pt;}
.y1d{bottom:829.253333pt;}
.ycb{bottom:829.413333pt;}
.yd2{bottom:847.653333pt;}
.y3{bottom:854.213333pt;}
.y9b{bottom:857.413333pt;}
.y1c{bottom:866.053333pt;}
.y31{bottom:866.213333pt;}
.yd1{bottom:884.453333pt;}
.y2{bottom:887.493333pt;}
.y1b{bottom:902.853333pt;}
.yca{bottom:903.013333pt;}
.y7d{bottom:918.693333pt;}
.yd0{bottom:921.253333pt;}
.y1a{bottom:939.653333pt;}
.y4f{bottom:939.813333pt;}
.ycf{bottom:958.053333pt;}
.y79{bottom:964.613333pt;}
.y19{bottom:976.453333pt;}
.y4e{bottom:976.613333pt;}
.ye6{bottom:994.853333pt;}
.ye7{bottom:997.253333pt;}
.y1{bottom:1013.280000pt;}
.y4d{bottom:1013.440000pt;}
.y18{bottom:1060.640000pt;}
.he{height:9.746667pt;}
.h8{height:30.546667pt;}
.h7{height:30.706667pt;}
.hf{height:30.713333pt;}
.h18{height:30.738667pt;}
.h5{height:44.722500pt;}
.hd{height:45.906667pt;}
.h12{height:46.066667pt;}
.h15{height:46.080000pt;}
.h17{height:46.106667pt;}
.h6{height:55.402500pt;}
.h11{height:61.266667pt;}
.hb{height:61.273333pt;}
.h14{height:61.280000pt;}
.h13{height:61.300000pt;}
.hc{height:61.466667pt;}
.h10{height:62.925000pt;}
.h2{height:66.750000pt;}
.h4{height:74.141167pt;}
.h3{height:74.162500pt;}
.h19{height:76.626667pt;}
.h16{height:76.640000pt;}
.ha{height:107.346667pt;}
.h9{height:107.378667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:21.586667pt;}
.w8{width:105.906667pt;}
.w2{width:186.257333pt;}
.w9{width:197.777333pt;}
.w4{width:198.413333pt;}
.wa{width:198.426667pt;}
.w3{width:209.946667pt;}
.w7{width:236.386667pt;}
.w6{width:252.497333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:7.190667pt;}
.x29{left:9.586667pt;}
.x2f{left:22.560000pt;}
.x2c{left:24.320000pt;}
.x2e{left:26.240000pt;}
.x31{left:28.160000pt;}
.x30{left:29.920000pt;}
.x2d{left:33.600000pt;}
.x32{left:52.960000pt;}
.x22{left:68.786667pt;}
.x26{left:70.546667pt;}
.x23{left:72.466667pt;}
.x25{left:76.146667pt;}
.x24{left:79.826667pt;}
.x39{left:99.226667pt;}
.x36{left:106.281333pt;}
.x1e{left:108.841333pt;}
.x1{left:113.472000pt;}
.xe{left:118.112000pt;}
.x4{left:123.552000pt;}
.x34{left:133.152000pt;}
.x6{left:137.786667pt;}
.x5{left:154.266667pt;}
.x33{left:156.666667pt;}
.x3c{left:160.666667pt;}
.x7{left:183.546667pt;}
.x35{left:196.186667pt;}
.xa{left:234.266667pt;}
.x27{left:255.106667pt;}
.xb{left:270.306667pt;}
.xd{left:279.746667pt;}
.x9{left:294.306667pt;}
.x20{left:295.586667pt;}
.x3d{left:302.306667pt;}
.x37{left:304.546667pt;}
.xc{left:310.306667pt;}
.x3b{left:312.066667pt;}
.x8{left:317.026667pt;}
.x19{left:325.026667pt;}
.x1d{left:334.306667pt;}
.x11{left:343.586667pt;}
.x2a{left:361.666667pt;}
.xf{left:363.266667pt;}
.x1b{left:365.026667pt;}
.x1c{left:369.826667pt;}
.x15{left:373.826667pt;}
.x13{left:374.786667pt;}
.x17{left:383.266667pt;}
.x3{left:406.306667pt;}
.x28{left:432.106667pt;}
.x38{left:502.986667pt;}
.x21{left:505.546667pt;}
.x2{left:562.813333pt;}
.x2b{left:598.053333pt;}
.x3a{left:683.813333pt;}
.x18{left:686.533333pt;}
.x14{left:690.853333pt;}
.x1a{left:692.613333pt;}
.x16{left:693.573333pt;}
.x10{left:698.053333pt;}
.x12{left:699.333333pt;}
}




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