
    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_10fec00eb94f20ef35f6cfee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_ba855e1976f9b93f904896b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_79e5543f9b59b345fce788e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;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_ab7076a7c9e4675d5cab878a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;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_9f48df379bc1b12eea042aa0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_23224429e98c59492df8cbc4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_ba855e1976f9b93f904896b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_2149c0c6090cf43f2346ed74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960000;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_0d6af62100e70c514e94d9e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172000;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_51e9366a672239826ab54f87.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958067;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_bbe3564b89af2a6b8670f032.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_0e95028ac735960bd47e534f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.719000;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_02fabe642781f228777150b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888672;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:1.025400px;}
.ls4{letter-spacing:-0.330000px;}
.ls6{letter-spacing:-0.264000px;}
.ls5{letter-spacing:-0.198000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.033000px;}
.lsc{letter-spacing:0.066000px;}
.lsa{letter-spacing:0.132000px;}
.ls0{letter-spacing:0.198000px;}
.lse{letter-spacing:0.231000px;}
.ls12{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.330000px;}
.ls17{letter-spacing:0.396000px;}
.ls3{letter-spacing:0.462000px;}
.ls1{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.726000px;}
.ls10{letter-spacing:0.858000px;}
.ls14{letter-spacing:0.990000px;}
.ls8{letter-spacing:1.254000px;}
.ls9{letter-spacing:1.267200px;}
.ls18{letter-spacing:1.320000px;}
.ls15{letter-spacing:2.508000px;}
.ls16{letter-spacing:5.214000px;}
.ls7{letter-spacing:2127.399000px;}
.lsd{letter-spacing:2135.318400px;}
.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:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws13{word-spacing:-16.500000px;}
.ws45{word-spacing:-13.926000px;}
.ws34{word-spacing:-12.750000px;}
.ws14{word-spacing:-1.316700px;}
.ws40{word-spacing:-0.660000px;}
.ws2{word-spacing:-0.049500px;}
.ws5{word-spacing:0.000000px;}
.ws22{word-spacing:0.066000px;}
.ws3f{word-spacing:0.132000px;}
.ws41{word-spacing:0.264000px;}
.ws11{word-spacing:0.330000px;}
.wse{word-spacing:0.396000px;}
.ws46{word-spacing:0.462000px;}
.ws18{word-spacing:0.528000px;}
.ws31{word-spacing:0.594000px;}
.ws5b{word-spacing:0.660000px;}
.ws16{word-spacing:0.726000px;}
.ws5c{word-spacing:0.792000px;}
.ws50{word-spacing:0.858000px;}
.wsa{word-spacing:0.924000px;}
.ws1f{word-spacing:0.990000px;}
.ws52{word-spacing:1.056000px;}
.ws59{word-spacing:1.122000px;}
.ws30{word-spacing:1.254000px;}
.ws4f{word-spacing:1.320000px;}
.ws26{word-spacing:1.386000px;}
.ws4c{word-spacing:1.518000px;}
.ws27{word-spacing:1.716000px;}
.ws33{word-spacing:1.782000px;}
.ws39{word-spacing:1.914000px;}
.ws3a{word-spacing:1.980000px;}
.ws53{word-spacing:2.046000px;}
.wsd{word-spacing:2.112000px;}
.wsf{word-spacing:2.244000px;}
.ws1b{word-spacing:2.442000px;}
.ws3d{word-spacing:2.508000px;}
.ws17{word-spacing:2.574000px;}
.ws2a{word-spacing:2.640000px;}
.ws2b{word-spacing:2.706000px;}
.ws36{word-spacing:2.772000px;}
.ws2c{word-spacing:2.838000px;}
.ws1d{word-spacing:2.904000px;}
.ws4e{word-spacing:2.970000px;}
.ws1e{word-spacing:3.036000px;}
.ws3c{word-spacing:3.102000px;}
.ws2d{word-spacing:3.168000px;}
.ws56{word-spacing:3.234000px;}
.ws1c{word-spacing:3.300000px;}
.ws58{word-spacing:3.366000px;}
.ws2e{word-spacing:3.432000px;}
.ws43{word-spacing:3.498000px;}
.ws4b{word-spacing:3.630000px;}
.wsb{word-spacing:3.696000px;}
.ws3e{word-spacing:3.762000px;}
.ws37{word-spacing:3.894000px;}
.ws9{word-spacing:3.960000px;}
.ws12{word-spacing:4.026000px;}
.ws10{word-spacing:4.092000px;}
.ws25{word-spacing:4.158000px;}
.wsc{word-spacing:4.224000px;}
.ws29{word-spacing:4.290000px;}
.ws57{word-spacing:4.488000px;}
.ws49{word-spacing:4.554000px;}
.ws4a{word-spacing:4.620000px;}
.ws24{word-spacing:4.686000px;}
.ws44{word-spacing:4.752000px;}
.ws48{word-spacing:4.818000px;}
.ws47{word-spacing:4.884000px;}
.ws51{word-spacing:4.950000px;}
.ws42{word-spacing:5.016000px;}
.ws35{word-spacing:5.082000px;}
.ws3b{word-spacing:5.148000px;}
.ws28{word-spacing:5.412000px;}
.ws21{word-spacing:5.478000px;}
.ws4d{word-spacing:5.544000px;}
.ws5a{word-spacing:5.808000px;}
.ws2f{word-spacing:5.874000px;}
.ws55{word-spacing:5.940000px;}
.ws1a{word-spacing:6.006000px;}
.ws7{word-spacing:6.204000px;}
.ws38{word-spacing:6.402000px;}
.ws32{word-spacing:6.468000px;}
.ws20{word-spacing:6.534000px;}
.ws23{word-spacing:6.600000px;}
.ws19{word-spacing:6.666000px;}
.ws54{word-spacing:6.864000px;}
.ws8{word-spacing:6.930000px;}
.ws6{word-spacing:10.656000px;}
.ws15{word-spacing:12.750000px;}
.ws4{word-spacing:13.344000px;}
.ws3{word-spacing:2848.575000px;}
._1{margin-left:-24.000000px;}
._3{margin-left:-5.214000px;}
._5{margin-left:-1.023000px;}
._4{width:1.023000px;}
._6{width:4.785600px;}
._2{width:7.194000px;}
._0{width:13.344000px;}
.fc2{color:rgb(96,139,155);}
.fc1{color:rgb(156,193,232);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs8{font-size:49.500000px;}
.fs9{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y53{bottom:138.952950px;}
.y80{bottom:140.273700px;}
.y6{bottom:140.316450px;}
.yd4{bottom:140.318100px;}
.yad{bottom:140.511000px;}
.y5{bottom:153.108450px;}
.y52{bottom:159.742950px;}
.yac{bottom:161.499000px;}
.y7f{bottom:161.509200px;}
.yd3{bottom:171.816600px;}
.y4{bottom:172.275300px;}
.y51{bottom:180.532950px;}
.yab{bottom:182.487000px;}
.y7e{bottom:182.744700px;}
.y3{bottom:191.451300px;}
.yd2{bottom:192.920100px;}
.y50{bottom:201.322950px;}
.yaa{bottom:203.475000px;}
.y7d{bottom:203.980200px;}
.y4f{bottom:221.997900px;}
.yd1{bottom:224.418600px;}
.ya9{bottom:224.463000px;}
.y7c{bottom:235.610700px;}
.ya8{bottom:245.451000px;}
.y4e{bottom:253.182900px;}
.yd0{bottom:255.917100px;}
.y7b{bottom:256.846200px;}
.ya7{bottom:266.439000px;}
.y4d{bottom:273.972900px;}
.ycf{bottom:277.020600px;}
.y7a{bottom:277.825350px;}
.y25{bottom:278.859300px;}
.ya6{bottom:287.427000px;}
.y4c{bottom:294.762900px;}
.y79{bottom:299.060850px;}
.y24{bottom:299.649300px;}
.ya5{bottom:308.415000px;}
.yce{bottom:308.519100px;}
.y4b{bottom:315.552900px;}
.y78{bottom:320.296350px;}
.y23{bottom:320.439300px;}
.y4a{bottom:336.342900px;}
.ya4{bottom:339.798000px;}
.y22{bottom:341.229300px;}
.y77{bottom:341.531850px;}
.ycd{bottom:354.899550px;}
.ya3{bottom:360.786000px;}
.y21{bottom:362.019300px;}
.y76{bottom:362.767350px;}
.y49{bottom:367.527900px;}
.ya2{bottom:381.774000px;}
.y20{bottom:382.809300px;}
.y75{bottom:384.002850px;}
.y48{bottom:388.317900px;}
.ya1{bottom:402.762000px;}
.y74{bottom:405.238350px;}
.y47{bottom:409.107900px;}
.y1f{bottom:413.994300px;}
.ycc{bottom:420.151050px;}
.ya0{bottom:423.750000px;}
.y73{bottom:426.473850px;}
.y46{bottom:429.897900px;}
.y1e{bottom:434.784300px;}
.ycb{bottom:441.254550px;}
.y9f{bottom:444.738000px;}
.y72{bottom:447.709350px;}
.y45{bottom:450.687900px;}
.y1d{bottom:455.574300px;}
.yca{bottom:462.358050px;}
.y9e{bottom:465.726000px;}
.y71{bottom:468.944850px;}
.y44{bottom:471.477900px;}
.y1c{bottom:476.364300px;}
.y9d{bottom:486.714000px;}
.y70{bottom:490.180350px;}
.y43{bottom:492.267900px;}
.yc9{bottom:493.856550px;}
.y1b{bottom:497.154300px;}
.y9c{bottom:507.702000px;}
.y6f{bottom:511.415850px;}
.y42{bottom:513.057900px;}
.yc8{bottom:514.960050px;}
.y1a{bottom:517.944300px;}
.y9b{bottom:528.690000px;}
.y6e{bottom:532.651350px;}
.y41{bottom:533.847900px;}
.yc7{bottom:536.063550px;}
.y19{bottom:538.734300px;}
.y6d{bottom:553.886850px;}
.y40{bottom:554.637900px;}
.yc6{bottom:557.167050px;}
.y18{bottom:559.524300px;}
.y9a{bottom:560.073000px;}
.y3f{bottom:575.427900px;}
.yc5{bottom:578.270550px;}
.y17{bottom:580.314300px;}
.y99{bottom:581.061000px;}
.y6c{bottom:585.517350px;}
.yc4{bottom:599.374050px;}
.y16{bottom:601.104300px;}
.y98{bottom:602.049000px;}
.y3e{bottom:606.612900px;}
.y6b{bottom:606.752850px;}
.yc3{bottom:620.477550px;}
.y97{bottom:623.037000px;}
.y3d{bottom:627.402900px;}
.y6a{bottom:627.988350px;}
.y15{bottom:632.289300px;}
.yc2{bottom:641.581050px;}
.y96{bottom:644.025000px;}
.y3c{bottom:648.192900px;}
.y69{bottom:649.223850px;}
.y14{bottom:653.060400px;}
.ye5{bottom:658.578000px;}
.yc1{bottom:662.684550px;}
.y95{bottom:665.013000px;}
.y3b{bottom:668.982900px;}
.y68{bottom:670.459350px;}
.y13{bottom:673.850400px;}
.ye4{bottom:679.368000px;}
.yc0{bottom:683.788050px;}
.y94{bottom:686.001000px;}
.y3a{bottom:689.772900px;}
.y67{bottom:691.694850px;}
.y12{bottom:694.640400px;}
.y93{bottom:706.989000px;}
.ye3{bottom:710.553000px;}
.y39{bottom:710.562900px;}
.y66{bottom:712.930350px;}
.ybf{bottom:715.286550px;}
.y92{bottom:727.977000px;}
.ye2{bottom:731.343000px;}
.y38{bottom:731.352900px;}
.y65{bottom:734.165850px;}
.ybe{bottom:736.390050px;}
.y91{bottom:748.965000px;}
.y64{bottom:755.401350px;}
.ybd{bottom:757.513350px;}
.ye1{bottom:762.528000px;}
.y37{bottom:762.537900px;}
.y90{bottom:769.953000px;}
.y63{bottom:776.636850px;}
.ybc{bottom:778.616850px;}
.y36{bottom:783.327900px;}
.y8f{bottom:790.941000px;}
.y11{bottom:792.105900px;}
.ye0{bottom:793.713000px;}
.y62{bottom:797.872350px;}
.ybb{bottom:799.720350px;}
.y35{bottom:804.117900px;}
.y10{bottom:812.895900px;}
.ydf{bottom:814.503000px;}
.y61{bottom:819.107850px;}
.yba{bottom:820.823850px;}
.y8e{bottom:822.324000px;}
.y34{bottom:824.907900px;}
.yf{bottom:833.685900px;}
.yde{bottom:835.293000px;}
.y60{bottom:840.343350px;}
.yb9{bottom:841.927350px;}
.y8d{bottom:843.312000px;}
.y33{bottom:845.697900px;}
.ye{bottom:854.475900px;}
.yb8{bottom:863.030850px;}
.y8c{bottom:864.300000px;}
.ydd{bottom:866.478000px;}
.y32{bottom:866.487900px;}
.y5f{bottom:871.973850px;}
.yd{bottom:875.265900px;}
.yb7{bottom:884.134350px;}
.y8b{bottom:885.288000px;}
.ydc{bottom:887.268000px;}
.y31{bottom:887.277900px;}
.y5e{bottom:893.209350px;}
.yb6{bottom:905.237850px;}
.y8a{bottom:906.276000px;}
.y30{bottom:908.067900px;}
.y5d{bottom:914.444850px;}
.yc{bottom:914.446800px;}
.ydb{bottom:918.453000px;}
.yb5{bottom:926.341350px;}
.y89{bottom:927.264000px;}
.y2f{bottom:928.857900px;}
.y5c{bottom:935.680350px;}
.yda{bottom:939.243000px;}
.y88{bottom:948.252000px;}
.y2e{bottom:949.647900px;}
.y5b{bottom:956.915850px;}
.yb4{bottom:957.839850px;}
.y87{bottom:969.240000px;}
.yd9{bottom:970.428000px;}
.y2d{bottom:970.437900px;}
.y5a{bottom:978.151350px;}
.yb3{bottom:978.943350px;}
.y86{bottom:990.228000px;}
.y2c{bottom:991.227900px;}
.y59{bottom:999.386850px;}
.yb2{bottom:1000.046850px;}
.yd8{bottom:1001.613000px;}
.y85{bottom:1011.216000px;}
.y2b{bottom:1012.017900px;}
.y58{bottom:1020.622350px;}
.yb1{bottom:1021.150350px;}
.yd7{bottom:1022.403000px;}
.y84{bottom:1032.204000px;}
.yb{bottom:1032.306000px;}
.y2a{bottom:1032.797850px;}
.y57{bottom:1041.857850px;}
.yb0{bottom:1042.253850px;}
.ya{bottom:1053.093000px;}
.y83{bottom:1053.192000px;}
.yd6{bottom:1053.588000px;}
.y56{bottom:1063.093350px;}
.yaf{bottom:1063.357350px;}
.y29{bottom:1063.982850px;}
.yd5{bottom:1074.378000px;}
.y55{bottom:1084.328850px;}
.yae{bottom:1084.460850px;}
.y82{bottom:1084.575000px;}
.y28{bottom:1084.772850px;}
.y9{bottom:1097.478000px;}
.y27{bottom:1105.562850px;}
.y81{bottom:1105.563000px;}
.y54{bottom:1105.564350px;}
.y2{bottom:1156.351350px;}
.y26{bottom:1172.229900px;}
.y8{bottom:1193.880450px;}
.y7{bottom:1207.380450px;}
.h3{height:35.328000px;}
.h2{height:39.159668px;}
.hb{height:45.342773px;}
.ha{height:48.042000px;}
.h7{height:54.504000px;}
.h6{height:56.520000px;}
.hf{height:59.046000px;}
.h8{height:62.172000px;}
.hc{height:62.212200px;}
.h9{height:62.247600px;}
.hd{height:62.632200px;}
.he{height:63.197400px;}
.h5{height:79.128000px;}
.h4{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x8{left:106.299300px;}
.xa{left:136.057350px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.x5{left:595.826250px;}
.x7{left:603.426300px;}
.x6{left:608.070000px;}
.x9{left:713.193600px;}
.x2{left:733.917900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.911467pt;}
.ls4{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:-0.234667pt;}
.ls5{letter-spacing:-0.176000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.029333pt;}
.lsc{letter-spacing:0.058667pt;}
.lsa{letter-spacing:0.117333pt;}
.ls0{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.205333pt;}
.ls12{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.293333pt;}
.ls17{letter-spacing:0.352000pt;}
.ls3{letter-spacing:0.410667pt;}
.ls1{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.645333pt;}
.ls10{letter-spacing:0.762667pt;}
.ls14{letter-spacing:0.880000pt;}
.ls8{letter-spacing:1.114667pt;}
.ls9{letter-spacing:1.126400pt;}
.ls18{letter-spacing:1.173333pt;}
.ls15{letter-spacing:2.229333pt;}
.ls16{letter-spacing:4.634667pt;}
.ls7{letter-spacing:1891.021333pt;}
.lsd{letter-spacing:1898.060800pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws13{word-spacing:-14.666667pt;}
.ws45{word-spacing:-12.378667pt;}
.ws34{word-spacing:-11.333333pt;}
.ws14{word-spacing:-1.170400pt;}
.ws40{word-spacing:-0.586667pt;}
.ws2{word-spacing:-0.044000pt;}
.ws5{word-spacing:0.000000pt;}
.ws22{word-spacing:0.058667pt;}
.ws3f{word-spacing:0.117333pt;}
.ws41{word-spacing:0.234667pt;}
.ws11{word-spacing:0.293333pt;}
.wse{word-spacing:0.352000pt;}
.ws46{word-spacing:0.410667pt;}
.ws18{word-spacing:0.469333pt;}
.ws31{word-spacing:0.528000pt;}
.ws5b{word-spacing:0.586667pt;}
.ws16{word-spacing:0.645333pt;}
.ws5c{word-spacing:0.704000pt;}
.ws50{word-spacing:0.762667pt;}
.wsa{word-spacing:0.821333pt;}
.ws1f{word-spacing:0.880000pt;}
.ws52{word-spacing:0.938667pt;}
.ws59{word-spacing:0.997333pt;}
.ws30{word-spacing:1.114667pt;}
.ws4f{word-spacing:1.173333pt;}
.ws26{word-spacing:1.232000pt;}
.ws4c{word-spacing:1.349333pt;}
.ws27{word-spacing:1.525333pt;}
.ws33{word-spacing:1.584000pt;}
.ws39{word-spacing:1.701333pt;}
.ws3a{word-spacing:1.760000pt;}
.ws53{word-spacing:1.818667pt;}
.wsd{word-spacing:1.877333pt;}
.wsf{word-spacing:1.994667pt;}
.ws1b{word-spacing:2.170667pt;}
.ws3d{word-spacing:2.229333pt;}
.ws17{word-spacing:2.288000pt;}
.ws2a{word-spacing:2.346667pt;}
.ws2b{word-spacing:2.405333pt;}
.ws36{word-spacing:2.464000pt;}
.ws2c{word-spacing:2.522667pt;}
.ws1d{word-spacing:2.581333pt;}
.ws4e{word-spacing:2.640000pt;}
.ws1e{word-spacing:2.698667pt;}
.ws3c{word-spacing:2.757333pt;}
.ws2d{word-spacing:2.816000pt;}
.ws56{word-spacing:2.874667pt;}
.ws1c{word-spacing:2.933333pt;}
.ws58{word-spacing:2.992000pt;}
.ws2e{word-spacing:3.050667pt;}
.ws43{word-spacing:3.109333pt;}
.ws4b{word-spacing:3.226667pt;}
.wsb{word-spacing:3.285333pt;}
.ws3e{word-spacing:3.344000pt;}
.ws37{word-spacing:3.461333pt;}
.ws9{word-spacing:3.520000pt;}
.ws12{word-spacing:3.578667pt;}
.ws10{word-spacing:3.637333pt;}
.ws25{word-spacing:3.696000pt;}
.wsc{word-spacing:3.754667pt;}
.ws29{word-spacing:3.813333pt;}
.ws57{word-spacing:3.989333pt;}
.ws49{word-spacing:4.048000pt;}
.ws4a{word-spacing:4.106667pt;}
.ws24{word-spacing:4.165333pt;}
.ws44{word-spacing:4.224000pt;}
.ws48{word-spacing:4.282667pt;}
.ws47{word-spacing:4.341333pt;}
.ws51{word-spacing:4.400000pt;}
.ws42{word-spacing:4.458667pt;}
.ws35{word-spacing:4.517333pt;}
.ws3b{word-spacing:4.576000pt;}
.ws28{word-spacing:4.810667pt;}
.ws21{word-spacing:4.869333pt;}
.ws4d{word-spacing:4.928000pt;}
.ws5a{word-spacing:5.162667pt;}
.ws2f{word-spacing:5.221333pt;}
.ws55{word-spacing:5.280000pt;}
.ws1a{word-spacing:5.338667pt;}
.ws7{word-spacing:5.514667pt;}
.ws38{word-spacing:5.690667pt;}
.ws32{word-spacing:5.749333pt;}
.ws20{word-spacing:5.808000pt;}
.ws23{word-spacing:5.866667pt;}
.ws19{word-spacing:5.925333pt;}
.ws54{word-spacing:6.101333pt;}
.ws8{word-spacing:6.160000pt;}
.ws6{word-spacing:9.472000pt;}
.ws15{word-spacing:11.333333pt;}
.ws4{word-spacing:11.861333pt;}
.ws3{word-spacing:2532.066667pt;}
._1{margin-left:-21.333333pt;}
._3{margin-left:-4.634667pt;}
._5{margin-left:-0.909333pt;}
._4{width:0.909333pt;}
._6{width:4.253867pt;}
._2{width:6.394667pt;}
._0{width:11.861333pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:44.000000pt;}
.fs9{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y53{bottom:123.513733pt;}
.y80{bottom:124.687733pt;}
.y6{bottom:124.725733pt;}
.yd4{bottom:124.727200pt;}
.yad{bottom:124.898667pt;}
.y5{bottom:136.096400pt;}
.y52{bottom:141.993733pt;}
.yac{bottom:143.554667pt;}
.y7f{bottom:143.563733pt;}
.yd3{bottom:152.725867pt;}
.y4{bottom:153.133600pt;}
.y51{bottom:160.473733pt;}
.yab{bottom:162.210667pt;}
.y7e{bottom:162.439733pt;}
.y3{bottom:170.178933pt;}
.yd2{bottom:171.484533pt;}
.y50{bottom:178.953733pt;}
.yaa{bottom:180.866667pt;}
.y7d{bottom:181.315733pt;}
.y4f{bottom:197.331467pt;}
.yd1{bottom:199.483200pt;}
.ya9{bottom:199.522667pt;}
.y7c{bottom:209.431733pt;}
.ya8{bottom:218.178667pt;}
.y4e{bottom:225.051467pt;}
.yd0{bottom:227.481867pt;}
.y7b{bottom:228.307733pt;}
.ya7{bottom:236.834667pt;}
.y4d{bottom:243.531467pt;}
.ycf{bottom:246.240533pt;}
.y7a{bottom:246.955867pt;}
.y25{bottom:247.874933pt;}
.ya6{bottom:255.490667pt;}
.y4c{bottom:262.011467pt;}
.y79{bottom:265.831867pt;}
.y24{bottom:266.354933pt;}
.ya5{bottom:274.146667pt;}
.yce{bottom:274.239200pt;}
.y4b{bottom:280.491467pt;}
.y78{bottom:284.707867pt;}
.y23{bottom:284.834933pt;}
.y4a{bottom:298.971467pt;}
.ya4{bottom:302.042667pt;}
.y22{bottom:303.314933pt;}
.y77{bottom:303.583867pt;}
.ycd{bottom:315.466267pt;}
.ya3{bottom:320.698667pt;}
.y21{bottom:321.794933pt;}
.y76{bottom:322.459867pt;}
.y49{bottom:326.691467pt;}
.ya2{bottom:339.354667pt;}
.y20{bottom:340.274933pt;}
.y75{bottom:341.335867pt;}
.y48{bottom:345.171467pt;}
.ya1{bottom:358.010667pt;}
.y74{bottom:360.211867pt;}
.y47{bottom:363.651467pt;}
.y1f{bottom:367.994933pt;}
.ycc{bottom:373.467600pt;}
.ya0{bottom:376.666667pt;}
.y73{bottom:379.087867pt;}
.y46{bottom:382.131467pt;}
.y1e{bottom:386.474933pt;}
.ycb{bottom:392.226267pt;}
.y9f{bottom:395.322667pt;}
.y72{bottom:397.963867pt;}
.y45{bottom:400.611467pt;}
.y1d{bottom:404.954933pt;}
.yca{bottom:410.984933pt;}
.y9e{bottom:413.978667pt;}
.y71{bottom:416.839867pt;}
.y44{bottom:419.091467pt;}
.y1c{bottom:423.434933pt;}
.y9d{bottom:432.634667pt;}
.y70{bottom:435.715867pt;}
.y43{bottom:437.571467pt;}
.yc9{bottom:438.983600pt;}
.y1b{bottom:441.914933pt;}
.y9c{bottom:451.290667pt;}
.y6f{bottom:454.591867pt;}
.y42{bottom:456.051467pt;}
.yc8{bottom:457.742267pt;}
.y1a{bottom:460.394933pt;}
.y9b{bottom:469.946667pt;}
.y6e{bottom:473.467867pt;}
.y41{bottom:474.531467pt;}
.yc7{bottom:476.500933pt;}
.y19{bottom:478.874933pt;}
.y6d{bottom:492.343867pt;}
.y40{bottom:493.011467pt;}
.yc6{bottom:495.259600pt;}
.y18{bottom:497.354933pt;}
.y9a{bottom:497.842667pt;}
.y3f{bottom:511.491467pt;}
.yc5{bottom:514.018267pt;}
.y17{bottom:515.834933pt;}
.y99{bottom:516.498667pt;}
.y6c{bottom:520.459867pt;}
.yc4{bottom:532.776933pt;}
.y16{bottom:534.314933pt;}
.y98{bottom:535.154667pt;}
.y3e{bottom:539.211467pt;}
.y6b{bottom:539.335867pt;}
.yc3{bottom:551.535600pt;}
.y97{bottom:553.810667pt;}
.y3d{bottom:557.691467pt;}
.y6a{bottom:558.211867pt;}
.y15{bottom:562.034933pt;}
.yc2{bottom:570.294267pt;}
.y96{bottom:572.466667pt;}
.y3c{bottom:576.171467pt;}
.y69{bottom:577.087867pt;}
.y14{bottom:580.498133pt;}
.ye5{bottom:585.402667pt;}
.yc1{bottom:589.052933pt;}
.y95{bottom:591.122667pt;}
.y3b{bottom:594.651467pt;}
.y68{bottom:595.963867pt;}
.y13{bottom:598.978133pt;}
.ye4{bottom:603.882667pt;}
.yc0{bottom:607.811600pt;}
.y94{bottom:609.778667pt;}
.y3a{bottom:613.131467pt;}
.y67{bottom:614.839867pt;}
.y12{bottom:617.458133pt;}
.y93{bottom:628.434667pt;}
.ye3{bottom:631.602667pt;}
.y39{bottom:631.611467pt;}
.y66{bottom:633.715867pt;}
.ybf{bottom:635.810267pt;}
.y92{bottom:647.090667pt;}
.ye2{bottom:650.082667pt;}
.y38{bottom:650.091467pt;}
.y65{bottom:652.591867pt;}
.ybe{bottom:654.568933pt;}
.y91{bottom:665.746667pt;}
.y64{bottom:671.467867pt;}
.ybd{bottom:673.345200pt;}
.ye1{bottom:677.802667pt;}
.y37{bottom:677.811467pt;}
.y90{bottom:684.402667pt;}
.y63{bottom:690.343867pt;}
.ybc{bottom:692.103867pt;}
.y36{bottom:696.291467pt;}
.y8f{bottom:703.058667pt;}
.y11{bottom:704.094133pt;}
.ye0{bottom:705.522667pt;}
.y62{bottom:709.219867pt;}
.ybb{bottom:710.862533pt;}
.y35{bottom:714.771467pt;}
.y10{bottom:722.574133pt;}
.ydf{bottom:724.002667pt;}
.y61{bottom:728.095867pt;}
.yba{bottom:729.621200pt;}
.y8e{bottom:730.954667pt;}
.y34{bottom:733.251467pt;}
.yf{bottom:741.054133pt;}
.yde{bottom:742.482667pt;}
.y60{bottom:746.971867pt;}
.yb9{bottom:748.379867pt;}
.y8d{bottom:749.610667pt;}
.y33{bottom:751.731467pt;}
.ye{bottom:759.534133pt;}
.yb8{bottom:767.138533pt;}
.y8c{bottom:768.266667pt;}
.ydd{bottom:770.202667pt;}
.y32{bottom:770.211467pt;}
.y5f{bottom:775.087867pt;}
.yd{bottom:778.014133pt;}
.yb7{bottom:785.897200pt;}
.y8b{bottom:786.922667pt;}
.ydc{bottom:788.682667pt;}
.y31{bottom:788.691467pt;}
.y5e{bottom:793.963867pt;}
.yb6{bottom:804.655867pt;}
.y8a{bottom:805.578667pt;}
.y30{bottom:807.171467pt;}
.y5d{bottom:812.839867pt;}
.yc{bottom:812.841600pt;}
.ydb{bottom:816.402667pt;}
.yb5{bottom:823.414533pt;}
.y89{bottom:824.234667pt;}
.y2f{bottom:825.651467pt;}
.y5c{bottom:831.715867pt;}
.yda{bottom:834.882667pt;}
.y88{bottom:842.890667pt;}
.y2e{bottom:844.131467pt;}
.y5b{bottom:850.591867pt;}
.yb4{bottom:851.413200pt;}
.y87{bottom:861.546667pt;}
.yd9{bottom:862.602667pt;}
.y2d{bottom:862.611467pt;}
.y5a{bottom:869.467867pt;}
.yb3{bottom:870.171867pt;}
.y86{bottom:880.202667pt;}
.y2c{bottom:881.091467pt;}
.y59{bottom:888.343867pt;}
.yb2{bottom:888.930533pt;}
.yd8{bottom:890.322667pt;}
.y85{bottom:898.858667pt;}
.y2b{bottom:899.571467pt;}
.y58{bottom:907.219867pt;}
.yb1{bottom:907.689200pt;}
.yd7{bottom:908.802667pt;}
.y84{bottom:917.514667pt;}
.yb{bottom:917.605333pt;}
.y2a{bottom:918.042533pt;}
.y57{bottom:926.095867pt;}
.yb0{bottom:926.447867pt;}
.ya{bottom:936.082667pt;}
.y83{bottom:936.170667pt;}
.yd6{bottom:936.522667pt;}
.y56{bottom:944.971867pt;}
.yaf{bottom:945.206533pt;}
.y29{bottom:945.762533pt;}
.yd5{bottom:955.002667pt;}
.y55{bottom:963.847867pt;}
.yae{bottom:963.965200pt;}
.y82{bottom:964.066667pt;}
.y28{bottom:964.242533pt;}
.y9{bottom:975.536000pt;}
.y27{bottom:982.722533pt;}
.y81{bottom:982.722667pt;}
.y54{bottom:982.723867pt;}
.y2{bottom:1027.867867pt;}
.y26{bottom:1041.982133pt;}
.y8{bottom:1061.227067pt;}
.y7{bottom:1073.227067pt;}
.h3{height:31.402667pt;}
.h2{height:34.808594pt;}
.hb{height:40.304688pt;}
.ha{height:42.704000pt;}
.h7{height:48.448000pt;}
.h6{height:50.240000pt;}
.hf{height:52.485333pt;}
.h8{height:55.264000pt;}
.hc{height:55.299733pt;}
.h9{height:55.331200pt;}
.hd{height:55.673067pt;}
.he{height:56.175467pt;}
.h5{height:70.336000pt;}
.h4{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x8{left:94.488267pt;}
.xa{left:120.939867pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.x5{left:529.623333pt;}
.x7{left:536.378933pt;}
.x6{left:540.506667pt;}
.x9{left:633.949867pt;}
.x2{left:652.371467pt;}
}




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