
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_0129644a642a45dcd56947ad.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ce6483d9c1f2736349d9f5c9.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_a6d9c40e7df1c32777faa8e3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_abdd9c6a6eebf09a9f1a8ab3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4c4b92120abae87bacb4bce2.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_b12709b6673d3c1d8f614836.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a209c8a245a3ea36326d0367.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_5f6dbddac9e2ef696a555608.woff')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_9e00ea9b05e7489859dcd4be.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8f2ea36e10f670993bc6d1cd.woff')format("woff");}.ffd{font-family:ffd;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;}
.m3{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238637,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367650,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-77.760000px;}
.v4{vertical-align:-60.480000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls17{letter-spacing:-2.880000px;}
.ls6{letter-spacing:-1.908000px;}
.ls7{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-1.422000px;}
.ls10{letter-spacing:-0.972000px;}
.ls12{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.630000px;}
.ls1b{letter-spacing:-0.507000px;}
.ls19{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.409200px;}
.ls8{letter-spacing:-0.089400px;}
.lsd{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.020160px;}
.ls1c{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.227400px;}
.ls4{letter-spacing:0.247800px;}
.ls18{letter-spacing:0.423600px;}
.lsf{letter-spacing:0.466800px;}
.ls16{letter-spacing:0.486600px;}
.lsb{letter-spacing:0.498000px;}
.ls13{letter-spacing:0.507000px;}
.lsa{letter-spacing:0.630000px;}
.ls1{letter-spacing:0.720000px;}
.ls1a{letter-spacing:1.908000px;}
.ls1d{letter-spacing:16.306560px;}
.ls15{letter-spacing:46.546560px;}
.ls0{letter-spacing:1118.700000px;}
.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;}
}
.ws10{word-spacing:-54.720000px;}
.ws1{word-spacing:-25.387320px;}
.ws3{word-spacing:-25.139520px;}
.ws2{word-spacing:-24.730320px;}
.ws1b{word-spacing:-17.028000px;}
.ws0{word-spacing:-16.560000px;}
.ws16{word-spacing:-15.627000px;}
.ws18{word-spacing:-15.606600px;}
.ws14{word-spacing:-15.586800px;}
.ws12{word-spacing:-15.140160px;}
.ws7{word-spacing:-15.120000px;}
.ws1a{word-spacing:-14.653200px;}
.ws1c{word-spacing:-14.613000px;}
.wsa{word-spacing:-14.310000px;}
.ws15{word-spacing:-14.184000px;}
.wsb{word-spacing:-14.178000px;}
.ws13{word-spacing:-14.148000px;}
.ws17{word-spacing:-13.698000px;}
.ws6{word-spacing:-13.680000px;}
.ws4{word-spacing:-13.212000px;}
.wsf{word-spacing:-13.050000px;}
.wsc{word-spacing:-12.870000px;}
.ws19{word-spacing:-12.240000px;}
.ws8{word-spacing:-11.160000px;}
.ws9{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wse{word-spacing:-9.000000px;}
.wsd{word-spacing:-8.928000px;}
.ws11{word-spacing:0.000000px;}
._23{margin-left:-6.252960px;}
._22{margin-left:-4.941600px;}
._6{margin-left:-3.551760px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._c{width:4.721280px;}
._a{width:5.950080px;}
._b{width:7.263360px;}
._f{width:8.725920px;}
._d{width:10.054080px;}
._e{width:11.217600px;}
._16{width:12.869280px;}
._1e{width:13.912080px;}
._9{width:16.623360px;}
._8{width:18.590400px;}
._7{width:20.168640px;}
._10{width:21.249120px;}
._19{width:22.699680px;}
._11{width:23.988960px;}
._12{width:25.803840px;}
._1a{width:26.820000px;}
._21{width:28.558080px;}
._20{width:29.715840px;}
._18{width:30.785520px;}
._1f{width:31.859040px;}
._17{width:32.941440px;}
._15{width:34.290960px;}
._13{width:35.691840px;}
._14{width:36.801360px;}
._1c{width:38.183040px;}
._1b{width:39.820560px;}
._1d{width:42.506400px;}
._27{width:79.722480px;}
._28{width:99.243840px;}
._24{width:100.449120px;}
._25{width:110.284560px;}
._26{width:126.817680px;}
._5{width:980.525760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:2.875500px;}
.y41{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y5b{bottom:5.370000px;}
.y59{bottom:8.995500px;}
.y2{bottom:10.080000px;}
.y4c{bottom:12.235500px;}
.y4b{bottom:21.235500px;}
.y40{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.y58{bottom:25.915500px;}
.y4a{bottom:29.155500px;}
.y3f{bottom:38.520000px;}
.y57{bottom:41.395500px;}
.y3{bottom:47.880000px;}
.y3e{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y49{bottom:58.714500px;}
.y48{bottom:70.594500px;}
.y3d{bottom:73.080000px;}
.y56{bottom:74.554500px;}
.y47{bottom:83.914500px;}
.y55{bottom:90.034500px;}
.y3c{bottom:90.045000px;}
.y42{bottom:96.160500px;}
.y46{bottom:96.874500px;}
.ybd{bottom:97.956000px;}
.y54{bottom:105.514500px;}
.y3b{bottom:107.325000px;}
.y91{bottom:112.716000px;}
.ybc{bottom:115.236000px;}
.y45{bottom:118.474500px;}
.y3a{bottom:124.605000px;}
.y53{bottom:124.954500px;}
.y90{bottom:132.156000px;}
.ybb{bottom:132.516000px;}
.y52{bottom:140.794500px;}
.y39{bottom:141.885000px;}
.y8f{bottom:149.832000px;}
.y51{bottom:156.274500px;}
.y38{bottom:159.165000px;}
.y8e{bottom:167.115000px;}
.y50{bottom:171.754500px;}
.y37{bottom:176.445000px;}
.y44{bottom:180.784500px;}
.y8d{bottom:184.395000px;}
.y4f{bottom:187.264500px;}
.y43{bottom:191.584500px;}
.y36{bottom:193.725000px;}
.y8c{bottom:201.675000px;}
.y4e{bottom:202.384500px;}
.y35{bottom:211.005000px;}
.y8b{bottom:218.595000px;}
.yba{bottom:218.955000px;}
.y34{bottom:228.315000px;}
.yb9{bottom:235.875000px;}
.y8a{bottom:245.235000px;}
.y33{bottom:245.595000px;}
.yb8{bottom:252.795000px;}
.y32{bottom:262.515000px;}
.y1f{bottom:265.755000px;}
.yb7{bottom:279.465000px;}
.y89{bottom:279.825000px;}
.y31{bottom:288.435000px;}
.y1e{bottom:289.875000px;}
.yb6{bottom:296.745000px;}
.y88{bottom:297.105000px;}
.y30{bottom:303.915000px;}
.y1d{bottom:313.995000px;}
.y87{bottom:314.025000px;}
.y11{bottom:317.265000px;}
.y2f{bottom:319.395000px;}
.yb5{bottom:331.305000px;}
.y2e{bottom:334.875000px;}
.y1c{bottom:338.115000px;}
.y86{bottom:340.305000px;}
.yb4{bottom:348.585000px;}
.y2d{bottom:350.355000px;}
.y85{bottom:357.585000px;}
.y1b{bottom:362.265000px;}
.y2c{bottom:365.865000px;}
.y84{bottom:374.505000px;}
.y2b{bottom:381.345000px;}
.yb3{bottom:383.145000px;}
.y1a{bottom:386.385000px;}
.y2a{bottom:397.185000px;}
.yb2{bottom:400.425000px;}
.y83{bottom:401.145000px;}
.y19{bottom:410.505000px;}
.y29{bottom:412.665000px;}
.yb1{bottom:417.750000px;}
.y82{bottom:418.470000px;}
.y28{bottom:428.145000px;}
.y18{bottom:434.625000px;}
.yb0{bottom:434.670000px;}
.y81{bottom:435.750000px;}
.y27{bottom:443.625000px;}
.yaf{bottom:451.590000px;}
.y80{bottom:453.030000px;}
.y17{bottom:458.745000px;}
.y26{bottom:459.105000px;}
.y7f{bottom:470.310000px;}
.y25{bottom:474.585000px;}
.yae{bottom:478.230000px;}
.y16{bottom:483.225000px;}
.y7e{bottom:487.590000px;}
.y24{bottom:490.110000px;}
.yad{bottom:496.950000px;}
.y23{bottom:505.590000px;}
.y7d{bottom:506.310000px;}
.y15{bottom:507.390000px;}
.yac{bottom:514.230000px;}
.y22{bottom:521.430000px;}
.y7c{bottom:523.230000px;}
.y14{bottom:531.510000px;}
.yab{bottom:532.950000px;}
.y21{bottom:536.910000px;}
.y7b{bottom:540.540000px;}
.yaa{bottom:551.700000px;}
.y13{bottom:555.630000px;}
.y7a{bottom:557.820000px;}
.y20{bottom:567.510000px;}
.ya9{bottom:570.060000px;}
.y79{bottom:575.100000px;}
.y12{bottom:579.750000px;}
.ya8{bottom:588.780000px;}
.y78{bottom:593.820000px;}
.ya7{bottom:607.140000px;}
.y77{bottom:611.100000px;}
.y76{bottom:628.380000px;}
.ya6{bottom:633.780000px;}
.y75{bottom:645.660000px;}
.ya5{bottom:652.500000px;}
.y74{bottom:662.940000px;}
.ya4{bottom:670.890000px;}
.y73{bottom:679.890000px;}
.ya3{bottom:689.610000px;}
.y72{bottom:698.610000px;}
.ya2{bottom:706.890000px;}
.y71{bottom:715.890000px;}
.ya1{bottom:725.610000px;}
.y70{bottom:733.170000px;}
.ya0{bottom:743.970000px;}
.y6f{bottom:750.450000px;}
.yc5{bottom:762.330000px;}
.y6e{bottom:767.730000px;}
.y9f{bottom:770.610000px;}
.yc4{bottom:779.610000px;}
.y6d{bottom:786.450000px;}
.y9e{bottom:787.890000px;}
.yc3{bottom:796.890000px;}
.y6c{bottom:803.775000px;}
.y9d{bottom:805.215000px;}
.yc2{bottom:814.215000px;}
.y6b{bottom:821.055000px;}
.y9c{bottom:822.495000px;}
.yc1{bottom:831.495000px;}
.y6a{bottom:838.335000px;}
.y9b{bottom:839.415000px;}
.yc0{bottom:848.415000px;}
.y69{bottom:855.255000px;}
.y9a{bottom:856.695000px;}
.ybf{bottom:865.695000px;}
.y68{bottom:873.615000px;}
.y99{bottom:873.975000px;}
.ybe{bottom:882.975000px;}
.y98{bottom:891.255000px;}
.y67{bottom:900.255000px;}
.y97{bottom:908.535000px;}
.y10{bottom:909.255000px;}
.yf{bottom:914.655000px;}
.y66{bottom:917.535000px;}
.y96{bottom:925.815000px;}
.ye{bottom:931.935000px;}
.y65{bottom:934.845000px;}
.y95{bottom:943.125000px;}
.y64{bottom:952.125000px;}
.yd{bottom:955.725000px;}
.y94{bottom:960.405000px;}
.yc{bottom:966.165000px;}
.y63{bottom:969.405000px;}
.y93{bottom:977.325000px;}
.y62{bottom:986.685000px;}
.yb{bottom:990.285000px;}
.y61{bottom:1003.965000px;}
.ya{bottom:1019.805000px;}
.y60{bottom:1021.245000px;}
.y5f{bottom:1038.165000px;}
.y9{bottom:1044.285000px;}
.y5e{bottom:1055.445000px;}
.y8{bottom:1072.050000px;}
.y5d{bottom:1072.770000px;}
.y5a{bottom:1075.320000px;}
.y92{bottom:1089.690000px;}
.y5c{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.hb{height:4.165313px;}
.h14{height:5.650313px;}
.h16{height:27.720000px;}
.h12{height:29.678906px;}
.h9{height:38.158594px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.hf{height:53.677969px;}
.h13{height:55.147500px;}
.h15{height:59.328281px;}
.h6{height:59.357813px;}
.ha{height:60.952500px;}
.h1b{height:62.163910px;}
.h17{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h18{height:66.757500px;}
.h1a{height:68.084282px;}
.h19{height:68.956875px;}
.h11{height:70.664062px;}
.h7{height:84.172500px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h10{height:220.365000px;}
.hc{height:589.110000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:6.876000px;}
.x1b{left:8.295000px;}
.x4{left:13.305000px;}
.x19{left:16.546500px;}
.x16{left:17.626500px;}
.x18{left:19.786500px;}
.x17{left:26.266500px;}
.x1f{left:29.146500px;}
.x6{left:35.265000px;}
.x11{left:43.906500px;}
.x1e{left:47.542500px;}
.x12{left:50.782500px;}
.x10{left:55.102500px;}
.x21{left:57.262500px;}
.x1c{left:62.295000px;}
.x20{left:66.265500px;}
.x14{left:73.105500px;}
.x1{left:78.529500px;}
.x15{left:80.305500px;}
.x7{left:86.436000px;}
.xc{left:88.236000px;}
.x39{left:91.836000px;}
.xa{left:92.916000px;}
.x2{left:95.425500px;}
.x25{left:98.676000px;}
.x27{left:100.116000px;}
.x26{left:101.916000px;}
.x22{left:102.985500px;}
.x1d{left:106.945500px;}
.x3a{left:118.836000px;}
.x13{left:124.585500px;}
.x24{left:140.472000px;}
.x5{left:141.540000px;}
.x28{left:152.355000px;}
.x29{left:164.235000px;}
.x3{left:182.250000px;}
.x2a{left:207.075000px;}
.x1a{left:218.970000px;}
.x2b{left:256.065000px;}
.x2c{left:267.585000px;}
.x2d{left:334.590000px;}
.x2e{left:346.110000px;}
.x2f{left:357.630000px;}
.x30{left:369.510000px;}
.xd{left:375.270000px;}
.x31{left:425.340000px;}
.xb{left:432.540000px;}
.x32{left:436.860000px;}
.x33{left:497.370000px;}
.x34{left:509.250000px;}
.x35{left:530.850000px;}
.x36{left:542.730000px;}
.x37{left:581.655000px;}
.x38{left:593.535000px;}
.xe{left:613.335000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xf{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v4{vertical-align:-53.760000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls17{letter-spacing:-2.560000pt;}
.ls6{letter-spacing:-1.696000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-1.264000pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls12{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.560000pt;}
.ls1b{letter-spacing:-0.450667pt;}
.ls19{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.363733pt;}
.ls8{letter-spacing:-0.079467pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017920pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.202133pt;}
.ls4{letter-spacing:0.220267pt;}
.ls18{letter-spacing:0.376533pt;}
.lsf{letter-spacing:0.414933pt;}
.ls16{letter-spacing:0.432533pt;}
.lsb{letter-spacing:0.442667pt;}
.ls13{letter-spacing:0.450667pt;}
.lsa{letter-spacing:0.560000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:1.696000pt;}
.ls1d{letter-spacing:14.494720pt;}
.ls15{letter-spacing:41.374720pt;}
.ls0{letter-spacing:994.400000pt;}
.ws10{word-spacing:-48.640000pt;}
.ws1{word-spacing:-22.566507pt;}
.ws3{word-spacing:-22.346240pt;}
.ws2{word-spacing:-21.982507pt;}
.ws1b{word-spacing:-15.136000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws16{word-spacing:-13.890667pt;}
.ws18{word-spacing:-13.872533pt;}
.ws14{word-spacing:-13.854933pt;}
.ws12{word-spacing:-13.457920pt;}
.ws7{word-spacing:-13.440000pt;}
.ws1a{word-spacing:-13.025067pt;}
.ws1c{word-spacing:-12.989333pt;}
.wsa{word-spacing:-12.720000pt;}
.ws15{word-spacing:-12.608000pt;}
.wsb{word-spacing:-12.602667pt;}
.ws13{word-spacing:-12.576000pt;}
.ws17{word-spacing:-12.176000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws4{word-spacing:-11.744000pt;}
.wsf{word-spacing:-11.600000pt;}
.wsc{word-spacing:-11.440000pt;}
.ws19{word-spacing:-10.880000pt;}
.ws8{word-spacing:-9.920000pt;}
.ws9{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.000000pt;}
.wsd{word-spacing:-7.936000pt;}
.ws11{word-spacing:0.000000pt;}
._23{margin-left:-5.558187pt;}
._22{margin-left:-4.392533pt;}
._6{margin-left:-3.157120pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._c{width:4.196693pt;}
._a{width:5.288960pt;}
._b{width:6.456320pt;}
._f{width:7.756373pt;}
._d{width:8.936960pt;}
._e{width:9.971200pt;}
._16{width:11.439360pt;}
._1e{width:12.366293pt;}
._9{width:14.776320pt;}
._8{width:16.524800pt;}
._7{width:17.927680pt;}
._10{width:18.888107pt;}
._19{width:20.177493pt;}
._11{width:21.323520pt;}
._12{width:22.936747pt;}
._1a{width:23.840000pt;}
._21{width:25.384960pt;}
._20{width:26.414080pt;}
._18{width:27.364907pt;}
._1f{width:28.319147pt;}
._17{width:29.281280pt;}
._15{width:30.480853pt;}
._13{width:31.726080pt;}
._14{width:32.712320pt;}
._1c{width:33.940480pt;}
._1b{width:35.396053pt;}
._1d{width:37.783467pt;}
._27{width:70.864427pt;}
._28{width:88.216747pt;}
._24{width:89.288107pt;}
._25{width:98.030720pt;}
._26{width:112.726827pt;}
._5{width:871.578453pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.556000pt;}
.y41{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y5b{bottom:4.773333pt;}
.y59{bottom:7.996000pt;}
.y2{bottom:8.960000pt;}
.y4c{bottom:10.876000pt;}
.y4b{bottom:18.876000pt;}
.y40{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.y58{bottom:23.036000pt;}
.y4a{bottom:25.916000pt;}
.y3f{bottom:34.240000pt;}
.y57{bottom:36.796000pt;}
.y3{bottom:42.560000pt;}
.y3e{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y49{bottom:52.190667pt;}
.y48{bottom:62.750667pt;}
.y3d{bottom:64.960000pt;}
.y56{bottom:66.270667pt;}
.y47{bottom:74.590667pt;}
.y55{bottom:80.030667pt;}
.y3c{bottom:80.040000pt;}
.y42{bottom:85.476000pt;}
.y46{bottom:86.110667pt;}
.ybd{bottom:87.072000pt;}
.y54{bottom:93.790667pt;}
.y3b{bottom:95.400000pt;}
.y91{bottom:100.192000pt;}
.ybc{bottom:102.432000pt;}
.y45{bottom:105.310667pt;}
.y3a{bottom:110.760000pt;}
.y53{bottom:111.070667pt;}
.y90{bottom:117.472000pt;}
.ybb{bottom:117.792000pt;}
.y52{bottom:125.150667pt;}
.y39{bottom:126.120000pt;}
.y8f{bottom:133.184000pt;}
.y51{bottom:138.910667pt;}
.y38{bottom:141.480000pt;}
.y8e{bottom:148.546667pt;}
.y50{bottom:152.670667pt;}
.y37{bottom:156.840000pt;}
.y44{bottom:160.697333pt;}
.y8d{bottom:163.906667pt;}
.y4f{bottom:166.457333pt;}
.y43{bottom:170.297333pt;}
.y36{bottom:172.200000pt;}
.y8c{bottom:179.266667pt;}
.y4e{bottom:179.897333pt;}
.y35{bottom:187.560000pt;}
.y8b{bottom:194.306667pt;}
.yba{bottom:194.626667pt;}
.y34{bottom:202.946667pt;}
.yb9{bottom:209.666667pt;}
.y8a{bottom:217.986667pt;}
.y33{bottom:218.306667pt;}
.yb8{bottom:224.706667pt;}
.y32{bottom:233.346667pt;}
.y1f{bottom:236.226667pt;}
.yb7{bottom:248.413333pt;}
.y89{bottom:248.733333pt;}
.y31{bottom:256.386667pt;}
.y1e{bottom:257.666667pt;}
.yb6{bottom:263.773333pt;}
.y88{bottom:264.093333pt;}
.y30{bottom:270.146667pt;}
.y1d{bottom:279.106667pt;}
.y87{bottom:279.133333pt;}
.y11{bottom:282.013333pt;}
.y2f{bottom:283.906667pt;}
.yb5{bottom:294.493333pt;}
.y2e{bottom:297.666667pt;}
.y1c{bottom:300.546667pt;}
.y86{bottom:302.493333pt;}
.yb4{bottom:309.853333pt;}
.y2d{bottom:311.426667pt;}
.y85{bottom:317.853333pt;}
.y1b{bottom:322.013333pt;}
.y2c{bottom:325.213333pt;}
.y84{bottom:332.893333pt;}
.y2b{bottom:338.973333pt;}
.yb3{bottom:340.573333pt;}
.y1a{bottom:343.453333pt;}
.y2a{bottom:353.053333pt;}
.yb2{bottom:355.933333pt;}
.y83{bottom:356.573333pt;}
.y19{bottom:364.893333pt;}
.y29{bottom:366.813333pt;}
.yb1{bottom:371.333333pt;}
.y82{bottom:371.973333pt;}
.y28{bottom:380.573333pt;}
.y18{bottom:386.333333pt;}
.yb0{bottom:386.373333pt;}
.y81{bottom:387.333333pt;}
.y27{bottom:394.333333pt;}
.yaf{bottom:401.413333pt;}
.y80{bottom:402.693333pt;}
.y17{bottom:407.773333pt;}
.y26{bottom:408.093333pt;}
.y7f{bottom:418.053333pt;}
.y25{bottom:421.853333pt;}
.yae{bottom:425.093333pt;}
.y16{bottom:429.533333pt;}
.y7e{bottom:433.413333pt;}
.y24{bottom:435.653333pt;}
.yad{bottom:441.733333pt;}
.y23{bottom:449.413333pt;}
.y7d{bottom:450.053333pt;}
.y15{bottom:451.013333pt;}
.yac{bottom:457.093333pt;}
.y22{bottom:463.493333pt;}
.y7c{bottom:465.093333pt;}
.y14{bottom:472.453333pt;}
.yab{bottom:473.733333pt;}
.y21{bottom:477.253333pt;}
.y7b{bottom:480.480000pt;}
.yaa{bottom:490.400000pt;}
.y13{bottom:493.893333pt;}
.y7a{bottom:495.840000pt;}
.y20{bottom:504.453333pt;}
.ya9{bottom:506.720000pt;}
.y79{bottom:511.200000pt;}
.y12{bottom:515.333333pt;}
.ya8{bottom:523.360000pt;}
.y78{bottom:527.840000pt;}
.ya7{bottom:539.680000pt;}
.y77{bottom:543.200000pt;}
.y76{bottom:558.560000pt;}
.ya6{bottom:563.360000pt;}
.y75{bottom:573.920000pt;}
.ya5{bottom:580.000000pt;}
.y74{bottom:589.280000pt;}
.ya4{bottom:596.346667pt;}
.y73{bottom:604.346667pt;}
.ya3{bottom:612.986667pt;}
.y72{bottom:620.986667pt;}
.ya2{bottom:628.346667pt;}
.y71{bottom:636.346667pt;}
.ya1{bottom:644.986667pt;}
.y70{bottom:651.706667pt;}
.ya0{bottom:661.306667pt;}
.y6f{bottom:667.066667pt;}
.yc5{bottom:677.626667pt;}
.y6e{bottom:682.426667pt;}
.y9f{bottom:684.986667pt;}
.yc4{bottom:692.986667pt;}
.y6d{bottom:699.066667pt;}
.y9e{bottom:700.346667pt;}
.yc3{bottom:708.346667pt;}
.y6c{bottom:714.466667pt;}
.y9d{bottom:715.746667pt;}
.yc2{bottom:723.746667pt;}
.y6b{bottom:729.826667pt;}
.y9c{bottom:731.106667pt;}
.yc1{bottom:739.106667pt;}
.y6a{bottom:745.186667pt;}
.y9b{bottom:746.146667pt;}
.yc0{bottom:754.146667pt;}
.y69{bottom:760.226667pt;}
.y9a{bottom:761.506667pt;}
.ybf{bottom:769.506667pt;}
.y68{bottom:776.546667pt;}
.y99{bottom:776.866667pt;}
.ybe{bottom:784.866667pt;}
.y98{bottom:792.226667pt;}
.y67{bottom:800.226667pt;}
.y97{bottom:807.586667pt;}
.y10{bottom:808.226667pt;}
.yf{bottom:813.026667pt;}
.y66{bottom:815.586667pt;}
.y96{bottom:822.946667pt;}
.ye{bottom:828.386667pt;}
.y65{bottom:830.973333pt;}
.y95{bottom:838.333333pt;}
.y64{bottom:846.333333pt;}
.yd{bottom:849.533333pt;}
.y94{bottom:853.693333pt;}
.yc{bottom:858.813333pt;}
.y63{bottom:861.693333pt;}
.y93{bottom:868.733333pt;}
.y62{bottom:877.053333pt;}
.yb{bottom:880.253333pt;}
.y61{bottom:892.413333pt;}
.ya{bottom:906.493333pt;}
.y60{bottom:907.773333pt;}
.y5f{bottom:922.813333pt;}
.y9{bottom:928.253333pt;}
.y5e{bottom:938.173333pt;}
.y8{bottom:952.933333pt;}
.y5d{bottom:953.573333pt;}
.y5a{bottom:955.840000pt;}
.y92{bottom:968.613333pt;}
.y5c{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.hb{height:3.702500pt;}
.h14{height:5.022500pt;}
.h16{height:24.640000pt;}
.h12{height:26.381250pt;}
.h9{height:33.918750pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.hf{height:47.713750pt;}
.h13{height:49.020000pt;}
.h15{height:52.736250pt;}
.h6{height:52.762500pt;}
.ha{height:54.180000pt;}
.h1b{height:55.256809pt;}
.h17{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h18{height:59.340000pt;}
.h1a{height:60.519362pt;}
.h19{height:61.295000pt;}
.h11{height:62.812500pt;}
.h7{height:74.820000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h10{height:195.880000pt;}
.hc{height:523.653333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.112000pt;}
.x1b{left:7.373333pt;}
.x4{left:11.826667pt;}
.x19{left:14.708000pt;}
.x16{left:15.668000pt;}
.x18{left:17.588000pt;}
.x17{left:23.348000pt;}
.x1f{left:25.908000pt;}
.x6{left:31.346667pt;}
.x11{left:39.028000pt;}
.x1e{left:42.260000pt;}
.x12{left:45.140000pt;}
.x10{left:48.980000pt;}
.x21{left:50.900000pt;}
.x1c{left:55.373333pt;}
.x20{left:58.902667pt;}
.x14{left:64.982667pt;}
.x1{left:69.804000pt;}
.x15{left:71.382667pt;}
.x7{left:76.832000pt;}
.xc{left:78.432000pt;}
.x39{left:81.632000pt;}
.xa{left:82.592000pt;}
.x2{left:84.822667pt;}
.x25{left:87.712000pt;}
.x27{left:88.992000pt;}
.x26{left:90.592000pt;}
.x22{left:91.542667pt;}
.x1d{left:95.062667pt;}
.x3a{left:105.632000pt;}
.x13{left:110.742667pt;}
.x24{left:124.864000pt;}
.x5{left:125.813333pt;}
.x28{left:135.426667pt;}
.x29{left:145.986667pt;}
.x3{left:162.000000pt;}
.x2a{left:184.066667pt;}
.x1a{left:194.640000pt;}
.x2b{left:227.613333pt;}
.x2c{left:237.853333pt;}
.x2d{left:297.413333pt;}
.x2e{left:307.653333pt;}
.x2f{left:317.893333pt;}
.x30{left:328.453333pt;}
.xd{left:333.573333pt;}
.x31{left:378.080000pt;}
.xb{left:384.480000pt;}
.x32{left:388.320000pt;}
.x33{left:442.106667pt;}
.x34{left:452.666667pt;}
.x35{left:471.866667pt;}
.x36{left:482.426667pt;}
.x37{left:517.026667pt;}
.x38{left:527.586667pt;}
.xe{left:545.186667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xf{left:717.413333pt;}
}




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