
    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_893b95cae959a408b5d2711f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_66644403d8e67cba7eea929d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_5fbab1114675d27af3b1a613.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_486c67d9f4f2c60c6844981a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.239940px;}
.ls3{letter-spacing:0.240000px;}
.ls6{letter-spacing:13.492800px;}
.ls5{letter-spacing:15.948000px;}
.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;}
}
.ws1{word-spacing:-18.014400px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.985600px;}
.ws4{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-17.437800px;}
._6{margin-left:-1.000800px;}
._4{width:1.094400px;}
._8{width:2.217600px;}
._1{width:3.808800px;}
._b{width:5.076000px;}
._c{width:6.681600px;}
._5{width:8.625600px;}
._d{width:10.591200px;}
._2{width:11.678400px;}
._7{width:13.564140px;}
._11{width:15.314400px;}
._12{width:16.387200px;}
._f{width:19.116000px;}
._e{width:20.289600px;}
._16{width:21.384000px;}
._17{width:22.406400px;}
._18{width:23.513160px;}
._13{width:24.739200px;}
._9{width:25.819200px;}
._1d{width:27.201600px;}
._1f{width:28.893600px;}
._1c{width:29.908800px;}
._19{width:31.521600px;}
._15{width:34.299180px;}
._14{width:35.573340px;}
._21{width:40.075200px;}
._10{width:45.813600px;}
._1e{width:48.592800px;}
._a{width:55.147740px;}
._0{width:74.124000px;}
._1b{width:83.587140px;}
._20{width:161.524800px;}
._3{width:194.098800px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:8.640000px;}
.yba{bottom:8.640150px;}
.yb8{bottom:9.000000px;}
.y1{bottom:12.734985px;}
.y47{bottom:119.565075px;}
.y121{bottom:128.565075px;}
.yb4{bottom:131.805075px;}
.y16d{bottom:132.165075px;}
.y74{bottom:133.245075px;}
.y92{bottom:136.125075px;}
.y46{bottom:140.445015px;}
.y145{bottom:144.045015px;}
.yc9{bottom:146.565015px;}
.y120{bottom:149.445015px;}
.y16c{bottom:153.045015px;}
.y73{bottom:153.765015px;}
.y91{bottom:156.645015px;}
.yb3{bottom:157.005015px;}
.y45{bottom:160.965015px;}
.y144{bottom:164.565015px;}
.yc8{bottom:167.085015px;}
.y102{bottom:169.965015px;}
.y16b{bottom:173.565015px;}
.y11f{bottom:175.005015px;}
.y90{bottom:177.165015px;}
.y72{bottom:179.325015px;}
.y44{bottom:181.845015px;}
.yb2{bottom:182.205015px;}
.y143{bottom:185.445015px;}
.yc7{bottom:187.965015px;}
.y101{bottom:190.125015px;}
.y16a{bottom:194.445015px;}
.y11e{bottom:195.165015px;}
.y8f{bottom:198.045015px;}
.y71{bottom:199.845015px;}
.y43{bottom:202.365015px;}
.y142{bottom:205.965015px;}
.yb1{bottom:207.405015px;}
.y100{bottom:211.005015px;}
.yc6{bottom:213.525015px;}
.y169{bottom:214.965015px;}
.y70{bottom:220.365015px;}
.y11d{bottom:220.725015px;}
.y42{bottom:223.245015px;}
.y8e{bottom:223.605015px;}
.y141{bottom:226.845015px;}
.yb0{bottom:227.565015px;}
.yff{bottom:231.525015px;}
.y168{bottom:235.845015px;}
.yc5{bottom:238.725015px;}
.y6f{bottom:241.245015px;}
.y140{bottom:247.365015px;}
.yaf{bottom:248.445015px;}
.y41{bottom:248.805015px;}
.ye4{bottom:251.325015px;}
.yfe{bottom:252.405015px;}
.y167{bottom:256.365015px;}
.yc4{bottom:258.885015px;}
.y11c{bottom:261.765015px;}
.y6e{bottom:266.805015px;}
.y13f{bottom:268.245015px;}
.y40{bottom:268.965015px;}
.ye3{bottom:271.845015px;}
.yfd{bottom:272.925015px;}
.y8d{bottom:274.005015px;}
.y166{bottom:277.245015px;}
.y11b{bottom:282.645015px;}
.y6d{bottom:286.965015px;}
.y13e{bottom:288.765015px;}
.y3f{bottom:289.845015px;}
.ye2{bottom:297.045015px;}
.y165{bottom:297.765015px;}
.yfc{bottom:298.485015px;}
.y8c{bottom:299.205015px;}
.y11a{bottom:303.165015px;}
.y6c{bottom:307.845015px;}
.y13d{bottom:309.645015px;}
.y3e{bottom:310.365015px;}
.yae{bottom:315.405015px;}
.y164{bottom:318.645015px;}
.yfb{bottom:319.005015px;}
.y8b{bottom:319.365015px;}
.y119{bottom:324.045015px;}
.y6b{bottom:328.365015px;}
.y13c{bottom:330.165015px;}
.y3d{bottom:331.245015px;}
.ye1{bottom:332.100000px;}
.yad{bottom:335.565015px;}
.y163{bottom:339.165015px;}
.y8a{bottom:340.245015px;}
.yfa{bottom:344.565015px;}
.y6a{bottom:349.245015px;}
.y13b{bottom:351.045015px;}
.y3c{bottom:351.765015px;}
.yac{bottom:356.445015px;}
.y162{bottom:360.045015px;}
.y89{bottom:360.765015px;}
.ye0{bottom:361.980000px;}
.yf9{bottom:364.725015px;}
.y118{bottom:365.445015px;}
.y69{bottom:369.765015px;}
.y13a{bottom:371.565015px;}
.yab{bottom:376.965015px;}
.y3b{bottom:377.325015px;}
.y161{bottom:380.565015px;}
.y88{bottom:381.645015px;}
.yf8{bottom:385.245015px;}
.y117{bottom:385.965015px;}
.y68{bottom:390.645015px;}
.ydf{bottom:391.500000px;}
.y139{bottom:392.445015px;}
.y3a{bottom:397.845015px;}
.y160{bottom:401.445015px;}
.y87{bottom:402.165015px;}
.yaa{bottom:402.525015px;}
.yf7{bottom:406.125165px;}
.y116{bottom:406.845015px;}
.y138{bottom:412.965015px;}
.y67{bottom:416.205015px;}
.y39{bottom:418.365015px;}
.yde{bottom:421.380000px;}
.y15f{bottom:421.965015px;}
.yf6{bottom:426.645015px;}
.y86{bottom:427.725015px;}
.y115{bottom:432.405015px;}
.y137{bottom:433.845015px;}
.y66{bottom:436.365015px;}
.y38{bottom:439.245015px;}
.y15e{bottom:442.845015px;}
.yf5{bottom:447.525015px;}
.ydd{bottom:450.900000px;}
.y114{bottom:452.565015px;}
.y85{bottom:452.925015px;}
.y136{bottom:454.365015px;}
.y65{bottom:457.245015px;}
.y15d{bottom:463.365015px;}
.y37{bottom:464.805015px;}
.yf4{bottom:468.045165px;}
.y84{bottom:473.445015px;}
.y135{bottom:475.245015px;}
.y64{bottom:477.765015px;}
.ydc{bottom:482.220000px;}
.y15c{bottom:484.245015px;}
.y36{bottom:484.965015px;}
.yf3{bottom:493.605015px;}
.ya9{bottom:493.965015px;}
.y134{bottom:495.765015px;}
.y83{bottom:499.005015px;}
.y63{bottom:503.325015px;}
.y15b{bottom:504.765015px;}
.y35{bottom:505.845015px;}
.ydb{bottom:510.525015px;}
.yf2{bottom:514.125015px;}
.y133{bottom:516.645015px;}
.ya8{bottom:519.525015px;}
.y62{bottom:523.845015px;}
.y82{bottom:524.205015px;}
.y15a{bottom:525.645015px;}
.y34{bottom:526.365015px;}
.y1b{bottom:533.925015px;}
.yf1{bottom:534.645015px;}
.yda{bottom:535.725015px;}
.y132{bottom:537.165015px;}
.ya7{bottom:540.045165px;}
.y61{bottom:544.365015px;}
.y159{bottom:546.165015px;}
.y33{bottom:547.245015px;}
.y1a{bottom:554.445015px;}
.yf0{bottom:555.525015px;}
.yd9{bottom:555.885015px;}
.y131{bottom:558.045015px;}
.y113{bottom:560.565015px;}
.ya6{bottom:560.925015px;}
.y60{bottom:565.245015px;}
.y158{bottom:567.045015px;}
.y32{bottom:572.805015px;}
.yef{bottom:576.045015px;}
.y130{bottom:578.565015px;}
.y19{bottom:580.005015px;}
.yd8{bottom:581.445015px;}
.y81{bottom:585.765015px;}
.y157{bottom:587.565015px;}
.y5f{bottom:590.805015px;}
.y31{bottom:592.965015px;}
.y12f{bottom:599.445015px;}
.yee{bottom:601.605015px;}
.y112{bottom:601.965015px;}
.y18{bottom:605.205015px;}
.y80{bottom:606.645015px;}
.y156{bottom:608.445015px;}
.y5e{bottom:610.965015px;}
.y30{bottom:613.845015px;}
.y12e{bottom:619.965015px;}
.yed{bottom:622.125015px;}
.y17{bottom:625.365015px;}
.ya5{bottom:627.165015px;}
.y111{bottom:627.525015px;}
.y155{bottom:628.965015px;}
.y5d{bottom:631.845015px;}
.y7f{bottom:632.205015px;}
.y2f{bottom:634.365015px;}
.y12d{bottom:640.845015px;}
.yec{bottom:642.645015px;}
.y16{bottom:646.245015px;}
.ya4{bottom:648.045015px;}
.y154{bottom:649.845015px;}
.y5c{bottom:652.365015px;}
.y2e{bottom:659.925015px;}
.y12c{bottom:661.365015px;}
.yeb{bottom:668.205015px;}
.ya3{bottom:668.565015px;}
.y153{bottom:670.365015px;}
.y15{bottom:671.805015px;}
.yd7{bottom:672.885015px;}
.y5b{bottom:673.245015px;}
.yc3{bottom:677.925015px;}
.y2d{bottom:680.445015px;}
.y12b{bottom:682.245015px;}
.yea{bottom:688.725015px;}
.ya2{bottom:689.445015px;}
.y152{bottom:691.245015px;}
.y14{bottom:691.965015px;}
.y7e{bottom:693.765015px;}
.yc2{bottom:698.085015px;}
.y5a{bottom:698.805015px;}
.y2c{bottom:700.965015px;}
.y12a{bottom:702.765015px;}
.ye9{bottom:709.245015px;}
.y110{bottom:709.965015px;}
.y151{bottom:711.765015px;}
.y13{bottom:712.845015px;}
.ya1{bottom:715.005015px;}
.y59{bottom:718.965015px;}
.y7d{bottom:719.325015px;}
.y2b{bottom:721.845015px;}
.y129{bottom:723.645015px;}
.yd6{bottom:728.100000px;}
.y10f{bottom:730.845015px;}
.y150{bottom:732.645015px;}
.y12{bottom:733.365015px;}
.ye8{bottom:734.805015px;}
.ya0{bottom:735.165015px;}
.y58{bottom:739.845015px;}
.y2a{bottom:742.365015px;}
.y128{bottom:744.165015px;}
.yc1{bottom:744.525015px;}
.y10e{bottom:751.365015px;}
.y14f{bottom:753.165015px;}
.y11{bottom:754.245015px;}
.ye7{bottom:755.325015px;}
.y9f{bottom:756.045015px;}
.yd5{bottom:757.980000px;}
.y57{bottom:760.365015px;}
.y29{bottom:763.245015px;}
.yc0{bottom:764.685015px;}
.y127{bottom:765.045015px;}
.y10d{bottom:772.245015px;}
.y14e{bottom:774.045015px;}
.y10{bottom:774.765165px;}
.ye6{bottom:775.845015px;}
.y9e{bottom:776.565015px;}
.y56{bottom:781.245015px;}
.ybf{bottom:785.565015px;}
.yd4{bottom:787.500150px;}
.y28{bottom:788.805015px;}
.y10c{bottom:792.765165px;}
.y14d{bottom:794.565015px;}
.yf{bottom:795.645015px;}
.ye5{bottom:797.445165px;}
.y55{bottom:801.765165px;}
.y9d{bottom:802.125165px;}
.ybe{bottom:806.085015px;}
.y126{bottom:806.445165px;}
.y7c{bottom:806.805015px;}
.y27{bottom:808.965015px;}
.y10b{bottom:813.645015px;}
.y14c{bottom:815.445165px;}
.ye{bottom:816.165015px;}
.yd3{bottom:817.380000px;}
.y54{bottom:822.645015px;}
.y7b{bottom:826.965015px;}
.y26{bottom:829.845015px;}
.ybd{bottom:831.645015px;}
.y10a{bottom:834.165015px;}
.y14b{bottom:835.965015px;}
.yd{bottom:837.045015px;}
.y9c{bottom:843.165015px;}
.yd2{bottom:847.620000px;}
.y7a{bottom:847.845015px;}
.y53{bottom:848.205015px;}
.y25{bottom:850.365015px;}
.y14a{bottom:856.845015px;}
.y109{bottom:859.725015px;}
.yc{bottom:862.605165px;}
.y9b{bottom:864.045015px;}
.ybc{bottom:865.980000px;}
.y52{bottom:868.365015px;}
.y24{bottom:871.245015px;}
.y79{bottom:873.405015px;}
.yd1{bottom:875.925015px;}
.y149{bottom:877.365015px;}
.y9a{bottom:884.565015px;}
.y108{bottom:884.925015px;}
.yb{bottom:887.805015px;}
.y51{bottom:889.245015px;}
.y23{bottom:891.765015px;}
.y78{bottom:893.565015px;}
.ybb{bottom:895.500000px;}
.y148{bottom:898.245015px;}
.yd0{bottom:901.125165px;}
.y99{bottom:905.445165px;}
.y107{bottom:910.125165px;}
.y22{bottom:912.645015px;}
.ya{bottom:913.005015px;}
.y77{bottom:914.445165px;}
.y50{bottom:914.805015px;}
.y147{bottom:918.765015px;}
.ycf{bottom:921.645015px;}
.yb9{bottom:925.380000px;}
.y98{bottom:925.965015px;}
.y106{bottom:930.645015px;}
.y4f{bottom:934.965015px;}
.y9{bottom:938.205015px;}
.y146{bottom:939.645015px;}
.y125{bottom:940.005015px;}
.yce{bottom:942.165015px;}
.y105{bottom:951.165015px;}
.y97{bottom:951.525015px;}
.yb7{bottom:954.900000px;}
.y4e{bottom:955.845015px;}
.y124{bottom:960.165015px;}
.y8{bottom:963.405015px;}
.ycd{bottom:967.725015px;}
.y104{bottom:972.045015px;}
.y4d{bottom:976.365015px;}
.y96{bottom:976.725015px;}
.y123{bottom:981.045015px;}
.y7{bottom:983.565015px;}
.yb5{bottom:985.500000px;}
.y21{bottom:988.605165px;}
.ycc{bottom:992.925015px;}
.y4c{bottom:997.245015px;}
.y103{bottom:997.605015px;}
.y122{bottom:1001.565015px;}
.y95{bottom:1001.925015px;}
.y6{bottom:1009.125165px;}
.y20{bottom:1013.805015px;}
.y4b{bottom:1017.765015px;}
.ycb{bottom:1018.125165px;}
.y94{bottom:1022.445165px;}
.y5{bottom:1029.645015px;}
.y1f{bottom:1033.965015px;}
.y4a{bottom:1038.645015px;}
.y93{bottom:1042.965015px;}
.y76{bottom:1043.325015px;}
.y4{bottom:1055.205015px;}
.yca{bottom:1059.165015px;}
.y1e{bottom:1059.525015px;}
.y75{bottom:1063.845015px;}
.y49{bottom:1064.205015px;}
.y3{bottom:1080.405015px;}
.y48{bottom:1084.365015px;}
.y1d{bottom:1084.725015px;}
.y2{bottom:1100.925015px;}
.y1c{bottom:1105.245015px;}
.ha{height:29.519940px;}
.h8{height:29.519985px;}
.h9{height:29.879970px;}
.hc{height:29.880000px;}
.hb{height:29.880015px;}
.h5{height:49.992188px;}
.h4{height:63.175781px;}
.h3{height:63.949219px;}
.h6{height:74.816016px;}
.h7{height:74.816616px;}
.h2{height:1237.365000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:155.520000px;}
.w5{width:169.920000px;}
.w8{width:170.280000px;}
.w4{width:171.000000px;}
.w9{width:180.720000px;}
.wa{width:181.440000px;}
.wc{width:191.160000px;}
.wb{width:191.520000px;}
.w7{width:329.760000px;}
.w3{width:867.464850px;}
.w2{width:867.465000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:12.735001px;}
.x14{left:53.174985px;}
.xb{left:54.976650px;}
.xc{left:57.675000px;}
.x10{left:58.923000px;}
.x18{left:61.095000px;}
.x9{left:62.289150px;}
.x12{left:63.423000px;}
.x11{left:66.235500px;}
.xe{left:67.923000px;}
.xf{left:70.735500px;}
.xd{left:75.235500px;}
.x13{left:106.695015px;}
.x1b{left:110.857500px;}
.x7{left:112.125000px;}
.x3{left:115.559999px;}
.x5{left:142.559942px;}
.x17{left:165.015000px;}
.x2{left:168.734848px;}
.x6{left:198.855000px;}
.x4{left:221.834826px;}
.x19{left:346.455000px;}
.x8{left:369.855000px;}
.x15{left:436.455000px;}
.x1a{left:537.975000px;}
.xa{left:540.135000px;}
.x16{left:606.735000px;}
.x1c{left:803.774998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.213280pt;}
.ls3{letter-spacing:0.213333pt;}
.ls6{letter-spacing:11.993600pt;}
.ls5{letter-spacing:14.176000pt;}
.ws1{word-spacing:-16.012800pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.987200pt;}
.ws4{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-15.500267pt;}
._6{margin-left:-0.889600pt;}
._4{width:0.972800pt;}
._8{width:1.971200pt;}
._1{width:3.385600pt;}
._b{width:4.512000pt;}
._c{width:5.939200pt;}
._5{width:7.667200pt;}
._d{width:9.414400pt;}
._2{width:10.380800pt;}
._7{width:12.057013pt;}
._11{width:13.612800pt;}
._12{width:14.566400pt;}
._f{width:16.992000pt;}
._e{width:18.035200pt;}
._16{width:19.008000pt;}
._17{width:19.916800pt;}
._18{width:20.900587pt;}
._13{width:21.990400pt;}
._9{width:22.950400pt;}
._1d{width:24.179200pt;}
._1f{width:25.683200pt;}
._1c{width:26.585600pt;}
._19{width:28.019200pt;}
._15{width:30.488160pt;}
._14{width:31.620747pt;}
._21{width:35.622400pt;}
._10{width:40.723200pt;}
._1e{width:43.193600pt;}
._a{width:49.020213pt;}
._0{width:65.888000pt;}
._1b{width:74.299680pt;}
._20{width:143.577600pt;}
._3{width:172.532267pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:7.680000pt;}
.yba{bottom:7.680133pt;}
.yb8{bottom:8.000000pt;}
.y1{bottom:11.319987pt;}
.y47{bottom:106.280067pt;}
.y121{bottom:114.280067pt;}
.yb4{bottom:117.160067pt;}
.y16d{bottom:117.480067pt;}
.y74{bottom:118.440067pt;}
.y92{bottom:121.000067pt;}
.y46{bottom:124.840013pt;}
.y145{bottom:128.040013pt;}
.yc9{bottom:130.280013pt;}
.y120{bottom:132.840013pt;}
.y16c{bottom:136.040013pt;}
.y73{bottom:136.680013pt;}
.y91{bottom:139.240013pt;}
.yb3{bottom:139.560013pt;}
.y45{bottom:143.080013pt;}
.y144{bottom:146.280013pt;}
.yc8{bottom:148.520013pt;}
.y102{bottom:151.080013pt;}
.y16b{bottom:154.280013pt;}
.y11f{bottom:155.560013pt;}
.y90{bottom:157.480013pt;}
.y72{bottom:159.400013pt;}
.y44{bottom:161.640013pt;}
.yb2{bottom:161.960013pt;}
.y143{bottom:164.840013pt;}
.yc7{bottom:167.080013pt;}
.y101{bottom:169.000013pt;}
.y16a{bottom:172.840013pt;}
.y11e{bottom:173.480013pt;}
.y8f{bottom:176.040013pt;}
.y71{bottom:177.640013pt;}
.y43{bottom:179.880013pt;}
.y142{bottom:183.080013pt;}
.yb1{bottom:184.360013pt;}
.y100{bottom:187.560013pt;}
.yc6{bottom:189.800013pt;}
.y169{bottom:191.080013pt;}
.y70{bottom:195.880013pt;}
.y11d{bottom:196.200013pt;}
.y42{bottom:198.440013pt;}
.y8e{bottom:198.760013pt;}
.y141{bottom:201.640013pt;}
.yb0{bottom:202.280013pt;}
.yff{bottom:205.800013pt;}
.y168{bottom:209.640013pt;}
.yc5{bottom:212.200013pt;}
.y6f{bottom:214.440013pt;}
.y140{bottom:219.880013pt;}
.yaf{bottom:220.840013pt;}
.y41{bottom:221.160013pt;}
.ye4{bottom:223.400013pt;}
.yfe{bottom:224.360013pt;}
.y167{bottom:227.880013pt;}
.yc4{bottom:230.120013pt;}
.y11c{bottom:232.680013pt;}
.y6e{bottom:237.160013pt;}
.y13f{bottom:238.440013pt;}
.y40{bottom:239.080013pt;}
.ye3{bottom:241.640013pt;}
.yfd{bottom:242.600013pt;}
.y8d{bottom:243.560013pt;}
.y166{bottom:246.440013pt;}
.y11b{bottom:251.240013pt;}
.y6d{bottom:255.080013pt;}
.y13e{bottom:256.680013pt;}
.y3f{bottom:257.640013pt;}
.ye2{bottom:264.040013pt;}
.y165{bottom:264.680013pt;}
.yfc{bottom:265.320013pt;}
.y8c{bottom:265.960013pt;}
.y11a{bottom:269.480013pt;}
.y6c{bottom:273.640013pt;}
.y13d{bottom:275.240013pt;}
.y3e{bottom:275.880013pt;}
.yae{bottom:280.360013pt;}
.y164{bottom:283.240013pt;}
.yfb{bottom:283.560013pt;}
.y8b{bottom:283.880013pt;}
.y119{bottom:288.040013pt;}
.y6b{bottom:291.880013pt;}
.y13c{bottom:293.480013pt;}
.y3d{bottom:294.440013pt;}
.ye1{bottom:295.200000pt;}
.yad{bottom:298.280013pt;}
.y163{bottom:301.480013pt;}
.y8a{bottom:302.440013pt;}
.yfa{bottom:306.280013pt;}
.y6a{bottom:310.440013pt;}
.y13b{bottom:312.040013pt;}
.y3c{bottom:312.680013pt;}
.yac{bottom:316.840013pt;}
.y162{bottom:320.040013pt;}
.y89{bottom:320.680013pt;}
.ye0{bottom:321.760000pt;}
.yf9{bottom:324.200013pt;}
.y118{bottom:324.840013pt;}
.y69{bottom:328.680013pt;}
.y13a{bottom:330.280013pt;}
.yab{bottom:335.080013pt;}
.y3b{bottom:335.400013pt;}
.y161{bottom:338.280013pt;}
.y88{bottom:339.240013pt;}
.yf8{bottom:342.440013pt;}
.y117{bottom:343.080013pt;}
.y68{bottom:347.240013pt;}
.ydf{bottom:348.000000pt;}
.y139{bottom:348.840013pt;}
.y3a{bottom:353.640013pt;}
.y160{bottom:356.840013pt;}
.y87{bottom:357.480013pt;}
.yaa{bottom:357.800013pt;}
.yf7{bottom:361.000147pt;}
.y116{bottom:361.640013pt;}
.y138{bottom:367.080013pt;}
.y67{bottom:369.960013pt;}
.y39{bottom:371.880013pt;}
.yde{bottom:374.560000pt;}
.y15f{bottom:375.080013pt;}
.yf6{bottom:379.240013pt;}
.y86{bottom:380.200013pt;}
.y115{bottom:384.360013pt;}
.y137{bottom:385.640013pt;}
.y66{bottom:387.880013pt;}
.y38{bottom:390.440013pt;}
.y15e{bottom:393.640013pt;}
.yf5{bottom:397.800013pt;}
.ydd{bottom:400.800000pt;}
.y114{bottom:402.280013pt;}
.y85{bottom:402.600013pt;}
.y136{bottom:403.880013pt;}
.y65{bottom:406.440013pt;}
.y15d{bottom:411.880013pt;}
.y37{bottom:413.160013pt;}
.yf4{bottom:416.040147pt;}
.y84{bottom:420.840013pt;}
.y135{bottom:422.440013pt;}
.y64{bottom:424.680013pt;}
.ydc{bottom:428.640000pt;}
.y15c{bottom:430.440013pt;}
.y36{bottom:431.080013pt;}
.yf3{bottom:438.760013pt;}
.ya9{bottom:439.080013pt;}
.y134{bottom:440.680013pt;}
.y83{bottom:443.560013pt;}
.y63{bottom:447.400013pt;}
.y15b{bottom:448.680013pt;}
.y35{bottom:449.640013pt;}
.ydb{bottom:453.800013pt;}
.yf2{bottom:457.000013pt;}
.y133{bottom:459.240013pt;}
.ya8{bottom:461.800013pt;}
.y62{bottom:465.640013pt;}
.y82{bottom:465.960013pt;}
.y15a{bottom:467.240013pt;}
.y34{bottom:467.880013pt;}
.y1b{bottom:474.600013pt;}
.yf1{bottom:475.240013pt;}
.yda{bottom:476.200013pt;}
.y132{bottom:477.480013pt;}
.ya7{bottom:480.040147pt;}
.y61{bottom:483.880013pt;}
.y159{bottom:485.480013pt;}
.y33{bottom:486.440013pt;}
.y1a{bottom:492.840013pt;}
.yf0{bottom:493.800013pt;}
.yd9{bottom:494.120013pt;}
.y131{bottom:496.040013pt;}
.y113{bottom:498.280013pt;}
.ya6{bottom:498.600013pt;}
.y60{bottom:502.440013pt;}
.y158{bottom:504.040013pt;}
.y32{bottom:509.160013pt;}
.yef{bottom:512.040013pt;}
.y130{bottom:514.280013pt;}
.y19{bottom:515.560013pt;}
.yd8{bottom:516.840013pt;}
.y81{bottom:520.680013pt;}
.y157{bottom:522.280013pt;}
.y5f{bottom:525.160013pt;}
.y31{bottom:527.080013pt;}
.y12f{bottom:532.840013pt;}
.yee{bottom:534.760013pt;}
.y112{bottom:535.080013pt;}
.y18{bottom:537.960013pt;}
.y80{bottom:539.240013pt;}
.y156{bottom:540.840013pt;}
.y5e{bottom:543.080013pt;}
.y30{bottom:545.640013pt;}
.y12e{bottom:551.080013pt;}
.yed{bottom:553.000013pt;}
.y17{bottom:555.880013pt;}
.ya5{bottom:557.480013pt;}
.y111{bottom:557.800013pt;}
.y155{bottom:559.080013pt;}
.y5d{bottom:561.640013pt;}
.y7f{bottom:561.960013pt;}
.y2f{bottom:563.880013pt;}
.y12d{bottom:569.640013pt;}
.yec{bottom:571.240013pt;}
.y16{bottom:574.440013pt;}
.ya4{bottom:576.040013pt;}
.y154{bottom:577.640013pt;}
.y5c{bottom:579.880013pt;}
.y2e{bottom:586.600013pt;}
.y12c{bottom:587.880013pt;}
.yeb{bottom:593.960013pt;}
.ya3{bottom:594.280013pt;}
.y153{bottom:595.880013pt;}
.y15{bottom:597.160013pt;}
.yd7{bottom:598.120013pt;}
.y5b{bottom:598.440013pt;}
.yc3{bottom:602.600013pt;}
.y2d{bottom:604.840013pt;}
.y12b{bottom:606.440013pt;}
.yea{bottom:612.200013pt;}
.ya2{bottom:612.840013pt;}
.y152{bottom:614.440013pt;}
.y14{bottom:615.080013pt;}
.y7e{bottom:616.680013pt;}
.yc2{bottom:620.520013pt;}
.y5a{bottom:621.160013pt;}
.y2c{bottom:623.080013pt;}
.y12a{bottom:624.680013pt;}
.ye9{bottom:630.440013pt;}
.y110{bottom:631.080013pt;}
.y151{bottom:632.680013pt;}
.y13{bottom:633.640013pt;}
.ya1{bottom:635.560013pt;}
.y59{bottom:639.080013pt;}
.y7d{bottom:639.400013pt;}
.y2b{bottom:641.640013pt;}
.y129{bottom:643.240013pt;}
.yd6{bottom:647.200000pt;}
.y10f{bottom:649.640013pt;}
.y150{bottom:651.240013pt;}
.y12{bottom:651.880013pt;}
.ye8{bottom:653.160013pt;}
.ya0{bottom:653.480013pt;}
.y58{bottom:657.640013pt;}
.y2a{bottom:659.880013pt;}
.y128{bottom:661.480013pt;}
.yc1{bottom:661.800013pt;}
.y10e{bottom:667.880013pt;}
.y14f{bottom:669.480013pt;}
.y11{bottom:670.440013pt;}
.ye7{bottom:671.400013pt;}
.y9f{bottom:672.040013pt;}
.yd5{bottom:673.760000pt;}
.y57{bottom:675.880013pt;}
.y29{bottom:678.440013pt;}
.yc0{bottom:679.720013pt;}
.y127{bottom:680.040013pt;}
.y10d{bottom:686.440013pt;}
.y14e{bottom:688.040013pt;}
.y10{bottom:688.680147pt;}
.ye6{bottom:689.640013pt;}
.y9e{bottom:690.280013pt;}
.y56{bottom:694.440013pt;}
.ybf{bottom:698.280013pt;}
.yd4{bottom:700.000133pt;}
.y28{bottom:701.160013pt;}
.y10c{bottom:704.680147pt;}
.y14d{bottom:706.280013pt;}
.yf{bottom:707.240013pt;}
.ye5{bottom:708.840147pt;}
.y55{bottom:712.680147pt;}
.y9d{bottom:713.000147pt;}
.ybe{bottom:716.520013pt;}
.y126{bottom:716.840147pt;}
.y7c{bottom:717.160013pt;}
.y27{bottom:719.080013pt;}
.y10b{bottom:723.240013pt;}
.y14c{bottom:724.840147pt;}
.ye{bottom:725.480013pt;}
.yd3{bottom:726.560000pt;}
.y54{bottom:731.240013pt;}
.y7b{bottom:735.080013pt;}
.y26{bottom:737.640013pt;}
.ybd{bottom:739.240013pt;}
.y10a{bottom:741.480013pt;}
.y14b{bottom:743.080013pt;}
.yd{bottom:744.040013pt;}
.y9c{bottom:749.480013pt;}
.yd2{bottom:753.440000pt;}
.y7a{bottom:753.640013pt;}
.y53{bottom:753.960013pt;}
.y25{bottom:755.880013pt;}
.y14a{bottom:761.640013pt;}
.y109{bottom:764.200013pt;}
.yc{bottom:766.760147pt;}
.y9b{bottom:768.040013pt;}
.ybc{bottom:769.760000pt;}
.y52{bottom:771.880013pt;}
.y24{bottom:774.440013pt;}
.y79{bottom:776.360013pt;}
.yd1{bottom:778.600013pt;}
.y149{bottom:779.880013pt;}
.y9a{bottom:786.280013pt;}
.y108{bottom:786.600013pt;}
.yb{bottom:789.160013pt;}
.y51{bottom:790.440013pt;}
.y23{bottom:792.680013pt;}
.y78{bottom:794.280013pt;}
.ybb{bottom:796.000000pt;}
.y148{bottom:798.440013pt;}
.yd0{bottom:801.000147pt;}
.y99{bottom:804.840147pt;}
.y107{bottom:809.000147pt;}
.y22{bottom:811.240013pt;}
.ya{bottom:811.560013pt;}
.y77{bottom:812.840147pt;}
.y50{bottom:813.160013pt;}
.y147{bottom:816.680013pt;}
.ycf{bottom:819.240013pt;}
.yb9{bottom:822.560000pt;}
.y98{bottom:823.080013pt;}
.y106{bottom:827.240013pt;}
.y4f{bottom:831.080013pt;}
.y9{bottom:833.960013pt;}
.y146{bottom:835.240013pt;}
.y125{bottom:835.560013pt;}
.yce{bottom:837.480013pt;}
.y105{bottom:845.480013pt;}
.y97{bottom:845.800013pt;}
.yb7{bottom:848.800000pt;}
.y4e{bottom:849.640013pt;}
.y124{bottom:853.480013pt;}
.y8{bottom:856.360013pt;}
.ycd{bottom:860.200013pt;}
.y104{bottom:864.040013pt;}
.y4d{bottom:867.880013pt;}
.y96{bottom:868.200013pt;}
.y123{bottom:872.040013pt;}
.y7{bottom:874.280013pt;}
.yb5{bottom:876.000000pt;}
.y21{bottom:878.760147pt;}
.ycc{bottom:882.600013pt;}
.y4c{bottom:886.440013pt;}
.y103{bottom:886.760013pt;}
.y122{bottom:890.280013pt;}
.y95{bottom:890.600013pt;}
.y6{bottom:897.000147pt;}
.y20{bottom:901.160013pt;}
.y4b{bottom:904.680013pt;}
.ycb{bottom:905.000147pt;}
.y94{bottom:908.840147pt;}
.y5{bottom:915.240013pt;}
.y1f{bottom:919.080013pt;}
.y4a{bottom:923.240013pt;}
.y93{bottom:927.080013pt;}
.y76{bottom:927.400013pt;}
.y4{bottom:937.960013pt;}
.yca{bottom:941.480013pt;}
.y1e{bottom:941.800013pt;}
.y75{bottom:945.640013pt;}
.y49{bottom:945.960013pt;}
.y3{bottom:960.360013pt;}
.y48{bottom:963.880013pt;}
.y1d{bottom:964.200013pt;}
.y2{bottom:978.600013pt;}
.y1c{bottom:982.440013pt;}
.ha{height:26.239947pt;}
.h8{height:26.239987pt;}
.h9{height:26.559973pt;}
.hc{height:26.560000pt;}
.hb{height:26.560013pt;}
.h5{height:44.437500pt;}
.h4{height:56.156250pt;}
.h3{height:56.843750pt;}
.h6{height:66.503125pt;}
.h7{height:66.503658pt;}
.h2{height:1099.880000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:138.240000pt;}
.w5{width:151.040000pt;}
.w8{width:151.360000pt;}
.w4{width:152.000000pt;}
.w9{width:160.640000pt;}
.wa{width:161.280000pt;}
.wc{width:169.920000pt;}
.wb{width:170.240000pt;}
.w7{width:293.120000pt;}
.w3{width:771.079867pt;}
.w2{width:771.080000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:11.320001pt;}
.x14{left:47.266653pt;}
.xb{left:48.868133pt;}
.xc{left:51.266667pt;}
.x10{left:52.376000pt;}
.x18{left:54.306667pt;}
.x9{left:55.368133pt;}
.x12{left:56.376000pt;}
.x11{left:58.876000pt;}
.xe{left:60.376000pt;}
.xf{left:62.876000pt;}
.xd{left:66.876000pt;}
.x13{left:94.840013pt;}
.x1b{left:98.540000pt;}
.x7{left:99.666667pt;}
.x3{left:102.719999pt;}
.x5{left:126.719948pt;}
.x17{left:146.680000pt;}
.x2{left:149.986532pt;}
.x6{left:176.760000pt;}
.x4{left:197.186512pt;}
.x19{left:307.960000pt;}
.x8{left:328.760000pt;}
.x15{left:387.960000pt;}
.x1a{left:478.200000pt;}
.xa{left:480.120000pt;}
.x16{left:539.320000pt;}
.x1c{left:714.466665pt;}
}




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