
    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_d5caf5db7ea23f4449b06e4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.117676;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_909ff53b638211d7401eb88e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117676;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_34c17b5d5c7454be21df9eb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_84f5ef3a1f9d2282757e9da7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191406;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_14aecb56d2c605ef2722815e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_55eef7d9b3b47cb9b8d2941d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.191406;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_e0656e05743b558cc35f33f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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_580da7e19d53fb46e0055e05.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.129395;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_47ce45c022af2ed790d55524.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.129395;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;}
.v1{vertical-align:20.880000px;}
.ls5{letter-spacing:-3.024000px;}
.ls6{letter-spacing:-2.880000px;}
.ls12{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.666000px;}
.ls18{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.234000px;}
.ls16{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lse{letter-spacing:3.060000px;}
.lsd{letter-spacing:3.780000px;}
.ls14{letter-spacing:9.720000px;}
.ls17{letter-spacing:14.580000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.976000px;}
.ws4{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.580000px;}
.wsf{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.888000px;}
.ws9{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1b{margin-left:-7.793280px;}
._8{margin-left:-5.454000px;}
._3{margin-left:-4.176000px;}
._2{margin-left:-2.952000px;}
._0{margin-left:-1.080000px;}
._1{width:1.152000px;}
._6{width:2.484000px;}
._5{width:3.780000px;}
._a{width:5.130000px;}
._9{width:6.318000px;}
._10{width:7.488000px;}
._f{width:8.856000px;}
._11{width:10.062000px;}
._4{width:11.934000px;}
._13{width:13.148640px;}
._7{width:14.742000px;}
._c{width:16.668000px;}
._b{width:17.820000px;}
._d{width:19.170000px;}
._e{width:20.178000px;}
._12{width:21.351600px;}
._16{width:23.016960px;}
._19{width:24.800400px;}
._18{width:26.652960px;}
._17{width:28.206720px;}
._15{width:29.210400px;}
._14{width:30.358080px;}
._1a{width:31.446720px;}
._1d{width:33.966000px;}
._1c{width:35.154000px;}
._1e{width:850.680000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:57.780000px;}
.ye{bottom:78.480000px;}
.yd{bottom:99.180000px;}
.yc{bottom:119.880000px;}
.yb{bottom:140.616000px;}
.ya{bottom:161.310000px;}
.y9{bottom:182.010000px;}
.y8{bottom:200.910000px;}
.y7{bottom:212.070000px;}
.y6{bottom:227.550000px;}
.y5{bottom:243.030000px;}
.y4{bottom:259.590000px;}
.y73{bottom:279.390000px;}
.y42{bottom:279.570000px;}
.y102{bottom:283.890000px;}
.ye9{bottom:284.610000px;}
.ye5{bottom:285.330000px;}
.ya0{bottom:287.130000px;}
.y9f{bottom:291.630000px;}
.y72{bottom:294.870000px;}
.y41{bottom:296.850000px;}
.yf9{bottom:300.450000px;}
.y101{bottom:301.170000px;}
.ye8{bottom:301.890000px;}
.ye4{bottom:302.610000px;}
.y9e{bottom:303.690000px;}
.yac{bottom:308.010000px;}
.y71{bottom:310.350000px;}
.y40{bottom:314.130000px;}
.yab{bottom:314.850000px;}
.yf8{bottom:317.550000px;}
.y100{bottom:318.450000px;}
.ye7{bottom:319.170000px;}
.ye3{bottom:319.890000px;}
.y70{bottom:325.830000px;}
.yc2{bottom:326.190000px;}
.yaa{bottom:328.710000px;}
.y3f{bottom:331.410000px;}
.yf7{bottom:334.830000px;}
.yff{bottom:335.550000px;}
.y9d{bottom:336.450000px;}
.ye2{bottom:337.170000px;}
.y6f{bottom:341.490000px;}
.yc1{bottom:344.190000px;}
.y6e{bottom:345.990000px;}
.y3e{bottom:348.690000px;}
.yf6{bottom:352.110000px;}
.yfe{bottom:352.830000px;}
.y9c{bottom:353.550000px;}
.ye1{bottom:354.450000px;}
.y6d{bottom:358.050000px;}
.y3d{bottom:365.970000px;}
.yf5{bottom:369.390000px;}
.ya9{bottom:370.110000px;}
.y9b{bottom:370.830000px;}
.y3c{bottom:371.190000px;}
.ye0{bottom:371.550000px;}
.y3b{bottom:383.835000px;}
.y6c{bottom:384.375000px;}
.yf4{bottom:386.715000px;}
.ya8{bottom:387.435000px;}
.y9a{bottom:388.155000px;}
.ydf{bottom:388.875000px;}
.y6b{bottom:401.655000px;}
.yf3{bottom:403.815000px;}
.ya7{bottom:404.715000px;}
.y99{bottom:405.435000px;}
.yde{bottom:406.155000px;}
.y3a{bottom:408.855000px;}
.yed{bottom:413.535000px;}
.y6a{bottom:418.755000px;}
.ya6{bottom:421.815000px;}
.y98{bottom:422.715000px;}
.ydd{bottom:423.435000px;}
.y39{bottom:424.335000px;}
.yf2{bottom:430.095000px;}
.y127{bottom:431.355000px;}
.y68{bottom:436.035000px;}
.ya4{bottom:439.095000px;}
.y97{bottom:439.815000px;}
.y38{bottom:439.995000px;}
.ydc{bottom:440.715000px;}
.y69{bottom:441.255000px;}
.ya5{bottom:444.315000px;}
.y126{bottom:447.195000px;}
.y67{bottom:453.315000px;}
.y37{bottom:455.475000px;}
.yc0{bottom:456.375000px;}
.y96{bottom:457.095000px;}
.ydb{bottom:457.815000px;}
.y125{bottom:464.475000px;}
.ya3{bottom:465.375000px;}
.y66{bottom:470.595000px;}
.y36{bottom:470.955000px;}
.ybf{bottom:473.655000px;}
.y95{bottom:474.375000px;}
.yda{bottom:475.095000px;}
.y124{bottom:481.755000px;}
.y35{bottom:486.435000px;}
.y65{bottom:487.875000px;}
.ybe{bottom:490.935000px;}
.y94{bottom:491.655000px;}
.yd9{bottom:492.375000px;}
.y123{bottom:498.855000px;}
.y34{bottom:502.095000px;}
.y64{bottom:505.155000px;}
.ybd{bottom:508.215000px;}
.y93{bottom:508.935000px;}
.yd8{bottom:509.655000px;}
.y122{bottom:516.135000px;}
.y33{bottom:517.575000px;}
.y63{bottom:522.255000px;}
.ybc{bottom:525.315000px;}
.y92{bottom:526.215000px;}
.yd7{bottom:526.935000px;}
.y32{bottom:533.055000px;}
.y121{bottom:533.415000px;}
.y62{bottom:539.535000px;}
.ybb{bottom:542.595000px;}
.y91{bottom:543.315000px;}
.yd6{bottom:544.215000px;}
.y31{bottom:548.535000px;}
.y120{bottom:550.695000px;}
.y61{bottom:556.815000px;}
.yba{bottom:559.875000px;}
.y90{bottom:560.595000px;}
.yd5{bottom:561.315000px;}
.y30{bottom:564.195000px;}
.y11f{bottom:567.975000px;}
.y60{bottom:574.095000px;}
.yb9{bottom:577.155000px;}
.y8f{bottom:577.875000px;}
.yd4{bottom:578.595000px;}
.y2f{bottom:579.675000px;}
.y11e{bottom:584.895000px;}
.y5f{bottom:591.375000px;}
.yb8{bottom:594.435000px;}
.y2e{bottom:595.155000px;}
.yd3{bottom:595.875000px;}
.y11d{bottom:600.375000px;}
.y5e{bottom:608.475000px;}
.y2d{bottom:610.635000px;}
.yb7{bottom:611.715000px;}
.y8e{bottom:612.435000px;}
.yd2{bottom:613.155000px;}
.y11c{bottom:615.855000px;}
.yf1{bottom:620.535000px;}
.y5d{bottom:625.755000px;}
.y2c{bottom:626.295000px;}
.yb6{bottom:628.815000px;}
.y8d{bottom:629.715000px;}
.yd1{bottom:630.435000px;}
.y11b{bottom:631.335000px;}
.y2b{bottom:641.805000px;}
.y5c{bottom:643.065000px;}
.yb5{bottom:646.125000px;}
.y8c{bottom:646.845000px;}
.y11a{bottom:647.025000px;}
.yd0{bottom:647.745000px;}
.y2a{bottom:657.285000px;}
.y5b{bottom:660.345000px;}
.y119{bottom:662.505000px;}
.yb4{bottom:663.405000px;}
.y8b{bottom:664.125000px;}
.ycf{bottom:664.845000px;}
.y29{bottom:672.765000px;}
.y5a{bottom:677.625000px;}
.y118{bottom:677.985000px;}
.yb3{bottom:680.685000px;}
.y8a{bottom:681.405000px;}
.yce{bottom:682.125000px;}
.y28{bottom:688.425000px;}
.yec{bottom:690.405000px;}
.y117{bottom:693.465000px;}
.y59{bottom:694.905000px;}
.yfd{bottom:697.965000px;}
.y89{bottom:698.685000px;}
.ycd{bottom:699.405000px;}
.y27{bottom:703.905000px;}
.yb2{bottom:706.785000px;}
.yeb{bottom:707.685000px;}
.y116{bottom:709.125000px;}
.y58{bottom:712.005000px;}
.yfc{bottom:715.065000px;}
.y88{bottom:715.965000px;}
.ycc{bottom:716.685000px;}
.y26{bottom:719.385000px;}
.yb1{bottom:724.065000px;}
.y115{bottom:724.605000px;}
.y57{bottom:729.285000px;}
.yfb{bottom:732.345000px;}
.y87{bottom:733.065000px;}
.ycb{bottom:733.965000px;}
.y25{bottom:734.865000px;}
.y114{bottom:740.085000px;}
.y56{bottom:746.565000px;}
.y24{bottom:750.345000px;}
.yca{bottom:751.065000px;}
.y113{bottom:755.565000px;}
.yfa{bottom:758.625000px;}
.y55{bottom:763.845000px;}
.y23{bottom:766.185000px;}
.y86{bottom:767.625000px;}
.yc9{bottom:768.345000px;}
.y112{bottom:771.225000px;}
.y54{bottom:781.125000px;}
.y22{bottom:783.285000px;}
.y84{bottom:784.905000px;}
.yc8{bottom:785.625000px;}
.y111{bottom:786.705000px;}
.y85{bottom:790.125000px;}
.yea{bottom:793.905000px;}
.y53{bottom:798.405000px;}
.y21{bottom:798.765000px;}
.y83{bottom:802.185000px;}
.yc7{bottom:802.905000px;}
.y20{bottom:814.245000px;}
.y52{bottom:815.505000px;}
.y110{bottom:817.665000px;}
.y82{bottom:819.465000px;}
.yc6{bottom:820.185000px;}
.y1f{bottom:829.725000px;}
.y10f{bottom:833.325000px;}
.y81{bottom:836.565000px;}
.yc5{bottom:837.465000px;}
.y51{bottom:841.785000px;}
.y1e{bottom:845.385000px;}
.y10e{bottom:848.805000px;}
.ya2{bottom:853.845000px;}
.yc4{bottom:854.565000px;}
.yb0{bottom:859.065000px;}
.y1d{bottom:860.865000px;}
.y80{bottom:862.845000px;}
.y10d{bottom:864.285000px;}
.y50{bottom:868.065000px;}
.yaf{bottom:871.125000px;}
.yc3{bottom:871.845000px;}
.y1c{bottom:876.345000px;}
.y10c{bottom:879.765000px;}
.ya1{bottom:880.125000px;}
.yae{bottom:888.450000px;}
.y7f{bottom:889.170000px;}
.y1b{bottom:891.870000px;}
.y4f{bottom:894.030000px;}
.y10b{bottom:895.470000px;}
.ye6{bottom:897.450000px;}
.yf0{bottom:905.730000px;}
.y7e{bottom:906.450000px;}
.y1a{bottom:907.530000px;}
.y4e{bottom:909.510000px;}
.y10a{bottom:910.950000px;}
.yad{bottom:914.730000px;}
.y19{bottom:923.010000px;}
.y7d{bottom:923.730000px;}
.y4d{bottom:925.170000px;}
.y109{bottom:926.430000px;}
.y18{bottom:938.490000px;}
.yef{bottom:940.110000px;}
.y4c{bottom:940.650000px;}
.y7c{bottom:941.010000px;}
.y108{bottom:941.910000px;}
.y17{bottom:954.330000px;}
.y4b{bottom:956.130000px;}
.y107{bottom:957.570000px;}
.y7b{bottom:958.110000px;}
.yee{bottom:966.390000px;}
.y4a{bottom:971.610000px;}
.y16{bottom:972.330000px;}
.y106{bottom:973.050000px;}
.y7a{bottom:975.390000px;}
.y49{bottom:987.270000px;}
.y105{bottom:988.530000px;}
.y79{bottom:992.670000px;}
.y14{bottom:993.030000px;}
.y15{bottom:998.970000px;}
.y48{bottom:1002.750000px;}
.y104{bottom:1004.010000px;}
.y78{bottom:1009.950000px;}
.y13{bottom:1013.730000px;}
.y47{bottom:1018.230000px;}
.y103{bottom:1019.670000px;}
.y77{bottom:1027.230000px;}
.y46{bottom:1033.710000px;}
.y12{bottom:1034.430000px;}
.y76{bottom:1044.510000px;}
.y45{bottom:1049.370000px;}
.y11{bottom:1055.130000px;}
.y75{bottom:1061.610000px;}
.y44{bottom:1064.850000px;}
.y10{bottom:1075.830000px;}
.y74{bottom:1078.890000px;}
.y43{bottom:1080.330000px;}
.y3{bottom:1157.760000px;}
.y2{bottom:1177.740000px;}
.y1{bottom:1195.020000px;}
.hf{height:32.273438px;}
.h13{height:34.532578px;}
.hd{height:34.855313px;}
.h12{height:43.246406px;}
.h6{height:44.282812px;}
.h5{height:48.410156px;}
.hc{height:48.647461px;}
.hb{height:49.570312px;}
.he{height:53.077852px;}
.ha{height:53.573906px;}
.h2{height:53.836523px;}
.h11{height:54.857813px;}
.h10{height:55.735313px;}
.h7{height:60.679688px;}
.h4{height:64.546875px;}
.h3{height:64.863281px;}
.h9{height:66.093750px;}
.h8{height:141.383672px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:170.129987px;}
.xf{left:174.989987px;}
.x16{left:176.249987px;}
.x19{left:196.949987px;}
.xd{left:199.649987px;}
.x6{left:212.249987px;}
.x1c{left:217.109987px;}
.xc{left:224.129987px;}
.x8{left:251.354987px;}
.x2{left:304.994987px;}
.x9{left:332.894987px;}
.x7{left:357.014987px;}
.x14{left:404.714973px;}
.x15{left:409.574987px;}
.xe{left:428.324987px;}
.x3{left:458.564987px;}
.x1a{left:466.124973px;}
.x1{left:467.564987px;}
.x1b{left:470.984987px;}
.x17{left:475.664973px;}
.x18{left:480.524987px;}
.x4{left:524.804987px;}
.xa{left:553.964973px;}
.xb{left:560.084987px;}
.x10{left:573.584973px;}
.x11{left:578.444987px;}
.x12{left:627.089973px;}
.x13{left:631.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls5{letter-spacing:-2.688000pt;}
.ls6{letter-spacing:-2.560000pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.592000pt;}
.ls18{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.208000pt;}
.ls16{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lse{letter-spacing:2.720000pt;}
.lsd{letter-spacing:3.360000pt;}
.ls14{letter-spacing:8.640000pt;}
.ls17{letter-spacing:12.960000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.312000pt;}
.ws4{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.wsb{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.456000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1b{margin-left:-6.927360pt;}
._8{margin-left:-4.848000pt;}
._3{margin-left:-3.712000pt;}
._2{margin-left:-2.624000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.024000pt;}
._6{width:2.208000pt;}
._5{width:3.360000pt;}
._a{width:4.560000pt;}
._9{width:5.616000pt;}
._10{width:6.656000pt;}
._f{width:7.872000pt;}
._11{width:8.944000pt;}
._4{width:10.608000pt;}
._13{width:11.687680pt;}
._7{width:13.104000pt;}
._c{width:14.816000pt;}
._b{width:15.840000pt;}
._d{width:17.040000pt;}
._e{width:17.936000pt;}
._12{width:18.979200pt;}
._16{width:20.459520pt;}
._19{width:22.044800pt;}
._18{width:23.691520pt;}
._17{width:25.072640pt;}
._15{width:25.964800pt;}
._14{width:26.984960pt;}
._1a{width:27.952640pt;}
._1d{width:30.192000pt;}
._1c{width:31.248000pt;}
._1e{width:756.160000pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:51.360000pt;}
.ye{bottom:69.760000pt;}
.yd{bottom:88.160000pt;}
.yc{bottom:106.560000pt;}
.yb{bottom:124.992000pt;}
.ya{bottom:143.386667pt;}
.y9{bottom:161.786667pt;}
.y8{bottom:178.586667pt;}
.y7{bottom:188.506667pt;}
.y6{bottom:202.266667pt;}
.y5{bottom:216.026667pt;}
.y4{bottom:230.746667pt;}
.y73{bottom:248.346667pt;}
.y42{bottom:248.506667pt;}
.y102{bottom:252.346667pt;}
.ye9{bottom:252.986667pt;}
.ye5{bottom:253.626667pt;}
.ya0{bottom:255.226667pt;}
.y9f{bottom:259.226667pt;}
.y72{bottom:262.106667pt;}
.y41{bottom:263.866667pt;}
.yf9{bottom:267.066667pt;}
.y101{bottom:267.706667pt;}
.ye8{bottom:268.346667pt;}
.ye4{bottom:268.986667pt;}
.y9e{bottom:269.946667pt;}
.yac{bottom:273.786667pt;}
.y71{bottom:275.866667pt;}
.y40{bottom:279.226667pt;}
.yab{bottom:279.866667pt;}
.yf8{bottom:282.266667pt;}
.y100{bottom:283.066667pt;}
.ye7{bottom:283.706667pt;}
.ye3{bottom:284.346667pt;}
.y70{bottom:289.626667pt;}
.yc2{bottom:289.946667pt;}
.yaa{bottom:292.186667pt;}
.y3f{bottom:294.586667pt;}
.yf7{bottom:297.626667pt;}
.yff{bottom:298.266667pt;}
.y9d{bottom:299.066667pt;}
.ye2{bottom:299.706667pt;}
.y6f{bottom:303.546667pt;}
.yc1{bottom:305.946667pt;}
.y6e{bottom:307.546667pt;}
.y3e{bottom:309.946667pt;}
.yf6{bottom:312.986667pt;}
.yfe{bottom:313.626667pt;}
.y9c{bottom:314.266667pt;}
.ye1{bottom:315.066667pt;}
.y6d{bottom:318.266667pt;}
.y3d{bottom:325.306667pt;}
.yf5{bottom:328.346667pt;}
.ya9{bottom:328.986667pt;}
.y9b{bottom:329.626667pt;}
.y3c{bottom:329.946667pt;}
.ye0{bottom:330.266667pt;}
.y3b{bottom:341.186667pt;}
.y6c{bottom:341.666667pt;}
.yf4{bottom:343.746667pt;}
.ya8{bottom:344.386667pt;}
.y9a{bottom:345.026667pt;}
.ydf{bottom:345.666667pt;}
.y6b{bottom:357.026667pt;}
.yf3{bottom:358.946667pt;}
.ya7{bottom:359.746667pt;}
.y99{bottom:360.386667pt;}
.yde{bottom:361.026667pt;}
.y3a{bottom:363.426667pt;}
.yed{bottom:367.586667pt;}
.y6a{bottom:372.226667pt;}
.ya6{bottom:374.946667pt;}
.y98{bottom:375.746667pt;}
.ydd{bottom:376.386667pt;}
.y39{bottom:377.186667pt;}
.yf2{bottom:382.306667pt;}
.y127{bottom:383.426667pt;}
.y68{bottom:387.586667pt;}
.ya4{bottom:390.306667pt;}
.y97{bottom:390.946667pt;}
.y38{bottom:391.106667pt;}
.ydc{bottom:391.746667pt;}
.y69{bottom:392.226667pt;}
.ya5{bottom:394.946667pt;}
.y126{bottom:397.506667pt;}
.y67{bottom:402.946667pt;}
.y37{bottom:404.866667pt;}
.yc0{bottom:405.666667pt;}
.y96{bottom:406.306667pt;}
.ydb{bottom:406.946667pt;}
.y125{bottom:412.866667pt;}
.ya3{bottom:413.666667pt;}
.y66{bottom:418.306667pt;}
.y36{bottom:418.626667pt;}
.ybf{bottom:421.026667pt;}
.y95{bottom:421.666667pt;}
.yda{bottom:422.306667pt;}
.y124{bottom:428.226667pt;}
.y35{bottom:432.386667pt;}
.y65{bottom:433.666667pt;}
.ybe{bottom:436.386667pt;}
.y94{bottom:437.026667pt;}
.yd9{bottom:437.666667pt;}
.y123{bottom:443.426667pt;}
.y34{bottom:446.306667pt;}
.y64{bottom:449.026667pt;}
.ybd{bottom:451.746667pt;}
.y93{bottom:452.386667pt;}
.yd8{bottom:453.026667pt;}
.y122{bottom:458.786667pt;}
.y33{bottom:460.066667pt;}
.y63{bottom:464.226667pt;}
.ybc{bottom:466.946667pt;}
.y92{bottom:467.746667pt;}
.yd7{bottom:468.386667pt;}
.y32{bottom:473.826667pt;}
.y121{bottom:474.146667pt;}
.y62{bottom:479.586667pt;}
.ybb{bottom:482.306667pt;}
.y91{bottom:482.946667pt;}
.yd6{bottom:483.746667pt;}
.y31{bottom:487.586667pt;}
.y120{bottom:489.506667pt;}
.y61{bottom:494.946667pt;}
.yba{bottom:497.666667pt;}
.y90{bottom:498.306667pt;}
.yd5{bottom:498.946667pt;}
.y30{bottom:501.506667pt;}
.y11f{bottom:504.866667pt;}
.y60{bottom:510.306667pt;}
.yb9{bottom:513.026667pt;}
.y8f{bottom:513.666667pt;}
.yd4{bottom:514.306667pt;}
.y2f{bottom:515.266667pt;}
.y11e{bottom:519.906667pt;}
.y5f{bottom:525.666667pt;}
.yb8{bottom:528.386667pt;}
.y2e{bottom:529.026667pt;}
.yd3{bottom:529.666667pt;}
.y11d{bottom:533.666667pt;}
.y5e{bottom:540.866667pt;}
.y2d{bottom:542.786667pt;}
.yb7{bottom:543.746667pt;}
.y8e{bottom:544.386667pt;}
.yd2{bottom:545.026667pt;}
.y11c{bottom:547.426667pt;}
.yf1{bottom:551.586667pt;}
.y5d{bottom:556.226667pt;}
.y2c{bottom:556.706667pt;}
.yb6{bottom:558.946667pt;}
.y8d{bottom:559.746667pt;}
.yd1{bottom:560.386667pt;}
.y11b{bottom:561.186667pt;}
.y2b{bottom:570.493333pt;}
.y5c{bottom:571.613333pt;}
.yb5{bottom:574.333333pt;}
.y8c{bottom:574.973333pt;}
.y11a{bottom:575.133333pt;}
.yd0{bottom:575.773333pt;}
.y2a{bottom:584.253333pt;}
.y5b{bottom:586.973333pt;}
.y119{bottom:588.893333pt;}
.yb4{bottom:589.693333pt;}
.y8b{bottom:590.333333pt;}
.ycf{bottom:590.973333pt;}
.y29{bottom:598.013333pt;}
.y5a{bottom:602.333333pt;}
.y118{bottom:602.653333pt;}
.yb3{bottom:605.053333pt;}
.y8a{bottom:605.693333pt;}
.yce{bottom:606.333333pt;}
.y28{bottom:611.933333pt;}
.yec{bottom:613.693333pt;}
.y117{bottom:616.413333pt;}
.y59{bottom:617.693333pt;}
.yfd{bottom:620.413333pt;}
.y89{bottom:621.053333pt;}
.ycd{bottom:621.693333pt;}
.y27{bottom:625.693333pt;}
.yb2{bottom:628.253333pt;}
.yeb{bottom:629.053333pt;}
.y116{bottom:630.333333pt;}
.y58{bottom:632.893333pt;}
.yfc{bottom:635.613333pt;}
.y88{bottom:636.413333pt;}
.ycc{bottom:637.053333pt;}
.y26{bottom:639.453333pt;}
.yb1{bottom:643.613333pt;}
.y115{bottom:644.093333pt;}
.y57{bottom:648.253333pt;}
.yfb{bottom:650.973333pt;}
.y87{bottom:651.613333pt;}
.ycb{bottom:652.413333pt;}
.y25{bottom:653.213333pt;}
.y114{bottom:657.853333pt;}
.y56{bottom:663.613333pt;}
.y24{bottom:666.973333pt;}
.yca{bottom:667.613333pt;}
.y113{bottom:671.613333pt;}
.yfa{bottom:674.333333pt;}
.y55{bottom:678.973333pt;}
.y23{bottom:681.053333pt;}
.y86{bottom:682.333333pt;}
.yc9{bottom:682.973333pt;}
.y112{bottom:685.533333pt;}
.y54{bottom:694.333333pt;}
.y22{bottom:696.253333pt;}
.y84{bottom:697.693333pt;}
.yc8{bottom:698.333333pt;}
.y111{bottom:699.293333pt;}
.y85{bottom:702.333333pt;}
.yea{bottom:705.693333pt;}
.y53{bottom:709.693333pt;}
.y21{bottom:710.013333pt;}
.y83{bottom:713.053333pt;}
.yc7{bottom:713.693333pt;}
.y20{bottom:723.773333pt;}
.y52{bottom:724.893333pt;}
.y110{bottom:726.813333pt;}
.y82{bottom:728.413333pt;}
.yc6{bottom:729.053333pt;}
.y1f{bottom:737.533333pt;}
.y10f{bottom:740.733333pt;}
.y81{bottom:743.613333pt;}
.yc5{bottom:744.413333pt;}
.y51{bottom:748.253333pt;}
.y1e{bottom:751.453333pt;}
.y10e{bottom:754.493333pt;}
.ya2{bottom:758.973333pt;}
.yc4{bottom:759.613333pt;}
.yb0{bottom:763.613333pt;}
.y1d{bottom:765.213333pt;}
.y80{bottom:766.973333pt;}
.y10d{bottom:768.253333pt;}
.y50{bottom:771.613333pt;}
.yaf{bottom:774.333333pt;}
.yc3{bottom:774.973333pt;}
.y1c{bottom:778.973333pt;}
.y10c{bottom:782.013333pt;}
.ya1{bottom:782.333333pt;}
.yae{bottom:789.733333pt;}
.y7f{bottom:790.373333pt;}
.y1b{bottom:792.773333pt;}
.y4f{bottom:794.693333pt;}
.y10b{bottom:795.973333pt;}
.ye6{bottom:797.733333pt;}
.yf0{bottom:805.093333pt;}
.y7e{bottom:805.733333pt;}
.y1a{bottom:806.693333pt;}
.y4e{bottom:808.453333pt;}
.y10a{bottom:809.733333pt;}
.yad{bottom:813.093333pt;}
.y19{bottom:820.453333pt;}
.y7d{bottom:821.093333pt;}
.y4d{bottom:822.373333pt;}
.y109{bottom:823.493333pt;}
.y18{bottom:834.213333pt;}
.yef{bottom:835.653333pt;}
.y4c{bottom:836.133333pt;}
.y7c{bottom:836.453333pt;}
.y108{bottom:837.253333pt;}
.y17{bottom:848.293333pt;}
.y4b{bottom:849.893333pt;}
.y107{bottom:851.173333pt;}
.y7b{bottom:851.653333pt;}
.yee{bottom:859.013333pt;}
.y4a{bottom:863.653333pt;}
.y16{bottom:864.293333pt;}
.y106{bottom:864.933333pt;}
.y7a{bottom:867.013333pt;}
.y49{bottom:877.573333pt;}
.y105{bottom:878.693333pt;}
.y79{bottom:882.373333pt;}
.y14{bottom:882.693333pt;}
.y15{bottom:887.973333pt;}
.y48{bottom:891.333333pt;}
.y104{bottom:892.453333pt;}
.y78{bottom:897.733333pt;}
.y13{bottom:901.093333pt;}
.y47{bottom:905.093333pt;}
.y103{bottom:906.373333pt;}
.y77{bottom:913.093333pt;}
.y46{bottom:918.853333pt;}
.y12{bottom:919.493333pt;}
.y76{bottom:928.453333pt;}
.y45{bottom:932.773333pt;}
.y11{bottom:937.893333pt;}
.y75{bottom:943.653333pt;}
.y44{bottom:946.533333pt;}
.y10{bottom:956.293333pt;}
.y74{bottom:959.013333pt;}
.y43{bottom:960.293333pt;}
.y3{bottom:1029.120000pt;}
.y2{bottom:1046.880000pt;}
.y1{bottom:1062.240000pt;}
.hf{height:28.687500pt;}
.h13{height:30.695625pt;}
.hd{height:30.982500pt;}
.h12{height:38.441250pt;}
.h6{height:39.362500pt;}
.h5{height:43.031250pt;}
.hc{height:43.242188pt;}
.hb{height:44.062500pt;}
.he{height:47.180312pt;}
.ha{height:47.621250pt;}
.h2{height:47.854688pt;}
.h11{height:48.762500pt;}
.h10{height:49.542500pt;}
.h7{height:53.937500pt;}
.h4{height:57.375000pt;}
.h3{height:57.656250pt;}
.h9{height:58.750000pt;}
.h8{height:125.674375pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:151.226655pt;}
.xf{left:155.546655pt;}
.x16{left:156.666655pt;}
.x19{left:175.066655pt;}
.xd{left:177.466655pt;}
.x6{left:188.666655pt;}
.x1c{left:192.986655pt;}
.xc{left:199.226655pt;}
.x8{left:223.426655pt;}
.x2{left:271.106655pt;}
.x9{left:295.906655pt;}
.x7{left:317.346655pt;}
.x14{left:359.746643pt;}
.x15{left:364.066655pt;}
.xe{left:380.733322pt;}
.x3{left:407.613322pt;}
.x1a{left:414.333310pt;}
.x1{left:415.613322pt;}
.x1b{left:418.653322pt;}
.x17{left:422.813310pt;}
.x18{left:427.133322pt;}
.x4{left:466.493322pt;}
.xa{left:492.413310pt;}
.xb{left:497.853322pt;}
.x10{left:509.853310pt;}
.x11{left:514.173322pt;}
.x12{left:557.413310pt;}
.x13{left:561.733322pt;}
}




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