
    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_78c9eef897d7ee7fe129be0a.woff2')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_f2a99f16ca3237c079377e26.woff2')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_3c2a70b36745f29c7a2a29af.woff2')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_f1ffc5ffbc12d1ff772aeacb.woff2')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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_96285d352fc2f844e621071a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_12c58d8822f4a31c9e464774.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6e398cab24ad671ce87e629a.woff2')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_db2541315ff99188286acb9f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_10cedfa73d898f67545c3ec7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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_0d69d9a3b1ee25003b326dc2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976562;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_c76ea315ef248be40b7a4565.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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;}
.m2{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,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);}
.m3{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);}
.v1{vertical-align:-73.440000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.944000px;}
.lsb{letter-spacing:-1.926000px;}
.lsa{letter-spacing:-1.908000px;}
.lsc{letter-spacing:-1.458000px;}
.ls12{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-0.972000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.507000px;}
.ls21{letter-spacing:-0.466800px;}
.lsf{letter-spacing:-0.089400px;}
.ls13{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.020160px;}
.ls6{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.466800px;}
.lse{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.869760px;}
.ls2{letter-spacing:1.080000px;}
.ls15{letter-spacing:1.440000px;}
.ls16{letter-spacing:5.040000px;}
.ls17{letter-spacing:9.360000px;}
.ls3{letter-spacing:10.546560px;}
.ls1c{letter-spacing:10.800000px;}
.ls1e{letter-spacing:16.306560px;}
.ls1b{letter-spacing:17.746560px;}
.ls1d{letter-spacing:46.546560px;}
.ls4{letter-spacing:63.826560px;}
.ls1f{letter-spacing:72.731520px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.ws5{word-spacing:-15.606600px;}
.wsa{word-spacing:-15.586800px;}
.ws10{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.184000px;}
.wsf{word-spacing:-14.148000px;}
.ws9{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.662000px;}
.ws1{word-spacing:-13.212000px;}
.ws2{word-spacing:-13.194000px;}
.ws4{word-spacing:-13.176000px;}
.wsd{word-spacing:-13.050000px;}
.ws6{word-spacing:-11.160000px;}
.ws8{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.wsc{word-spacing:-8.928000px;}
.wse{word-spacing:0.000000px;}
._f{margin-left:-6.013440px;}
._1a{margin-left:-3.594720px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._7{width:5.204160px;}
._8{width:6.949440px;}
._10{width:8.346240px;}
._11{width:9.671040px;}
._e{width:10.693440px;}
._d{width:12.467520px;}
._18{width:13.625760px;}
._b{width:17.115840px;}
._a{width:18.190080px;}
._9{width:19.272960px;}
._17{width:20.332800px;}
._c{width:21.816960px;}
._6{width:23.316480px;}
._19{width:24.573600px;}
._13{width:25.806240px;}
._12{width:27.167040px;}
._16{width:31.835520px;}
._15{width:32.964960px;}
._14{width:34.296480px;}
._1f{width:42.828000px;}
._1e{width:44.119200px;}
._1b{width:45.581760px;}
._1c{width:57.079200px;}
._1d{width:58.235040px;}
._20{width:72.919200px;}
._5{width:1545.842400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y48{bottom:2.875500px;}
.y5{bottom:3.960000px;}
.y57{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y47{bottom:10.435500px;}
.y53{bottom:17.311500px;}
.y4{bottom:21.240000px;}
.y52{bottom:34.954500px;}
.y3e{bottom:39.240000px;}
.y46{bottom:39.994500px;}
.y3{bottom:44.280000px;}
.y45{bottom:51.874500px;}
.y51{bottom:56.554500px;}
.y7{bottom:57.636000px;}
.y44{bottom:65.194500px;}
.y3d{bottom:65.880000px;}
.y50{bottom:72.394500px;}
.y43{bottom:78.154500px;}
.y3c{bottom:83.205000px;}
.y4f{bottom:88.234500px;}
.y55{bottom:94.356000px;}
.y8c{bottom:95.436000px;}
.y4e{bottom:97.234500px;}
.y42{bottom:99.754500px;}
.y3b{bottom:101.565000px;}
.yc1{bottom:105.876000px;}
.y54{bottom:111.636000px;}
.y8b{bottom:112.716000px;}
.y4d{bottom:116.314500px;}
.y3a{bottom:118.485000px;}
.yc0{bottom:124.236000px;}
.y3f{bottom:125.680500px;}
.y8a{bottom:131.076000px;}
.y4c{bottom:131.794500px;}
.y39{bottom:135.765000px;}
.ybf{bottom:142.632000px;}
.y4b{bottom:147.664500px;}
.y89{bottom:148.392000px;}
.y38{bottom:153.765000px;}
.ybe{bottom:160.995000px;}
.y41{bottom:162.064500px;}
.y4a{bottom:163.144500px;}
.y88{bottom:166.395000px;}
.y40{bottom:172.864500px;}
.y49{bottom:178.264500px;}
.ybd{bottom:179.355000px;}
.y37{bottom:180.405000px;}
.y87{bottom:183.675000px;}
.ybc{bottom:196.635000px;}
.y36{bottom:197.685000px;}
.y86{bottom:210.315000px;}
.ybb{bottom:213.915000px;}
.y35{bottom:214.995000px;}
.y85{bottom:227.595000px;}
.yba{bottom:231.195000px;}
.y34{bottom:232.275000px;}
.y84{bottom:244.515000px;}
.yb9{bottom:249.555000px;}
.y33{bottom:250.635000px;}
.y83{bottom:261.795000px;}
.yb8{bottom:267.555000px;}
.y32{bottom:268.995000px;}
.y82{bottom:279.105000px;}
.yb7{bottom:285.945000px;}
.y31{bottom:286.275000px;}
.y81{bottom:297.105000px;}
.yb6{bottom:304.305000px;}
.y30{bottom:304.635000px;}
.y2f{bottom:321.555000px;}
.yb5{bottom:322.665000px;}
.y80{bottom:323.745000px;}
.ye{bottom:328.065000px;}
.y1c{bottom:330.555000px;}
.y2e{bottom:339.915000px;}
.yb4{bottom:339.945000px;}
.y7f{bottom:342.105000px;}
.y1b{bottom:354.705000px;}
.y2d{bottom:357.225000px;}
.y7e{bottom:360.105000px;}
.yb3{bottom:374.145000px;}
.y2c{bottom:374.505000px;}
.y1a{bottom:378.825000px;}
.y7d{bottom:386.745000px;}
.y2b{bottom:391.785000px;}
.yb2{bottom:400.785000px;}
.y19{bottom:402.945000px;}
.y7c{bottom:405.150000px;}
.y2a{bottom:409.065000px;}
.yb1{bottom:418.110000px;}
.y7b{bottom:422.430000px;}
.y29{bottom:426.345000px;}
.y18{bottom:427.065000px;}
.yb0{bottom:435.030000px;}
.y7a{bottom:440.070000px;}
.y28{bottom:443.625000px;}
.ye3{bottom:449.790000px;}
.y17{bottom:451.185000px;}
.yaf{bottom:453.750000px;}
.y27{bottom:460.545000px;}
.y79{bottom:466.710000px;}
.ye2{bottom:467.070000px;}
.yae{bottom:471.750000px;}
.y16{bottom:475.710000px;}
.ye1{bottom:483.990000px;}
.y78{bottom:485.070000px;}
.y26{bottom:486.510000px;}
.yad{bottom:489.030000px;}
.y15{bottom:499.830000px;}
.ye0{bottom:501.270000px;}
.y25{bottom:501.990000px;}
.y77{bottom:503.070000px;}
.yac{bottom:507.030000px;}
.y24{bottom:517.470000px;}
.ydf{bottom:518.550000px;}
.y14{bottom:523.950000px;}
.y76{bottom:529.710000px;}
.y23{bottom:532.950000px;}
.yab{bottom:533.670000px;}
.yde{bottom:535.830000px;}
.y13{bottom:548.070000px;}
.y75{bottom:548.100000px;}
.y22{bottom:548.430000px;}
.yaa{bottom:550.980000px;}
.ydd{bottom:553.140000px;}
.y21{bottom:564.270000px;}
.y74{bottom:566.100000px;}
.ya9{bottom:568.260000px;}
.ydc{bottom:570.420000px;}
.y12{bottom:572.190000px;}
.y20{bottom:579.750000px;}
.ya8{bottom:585.180000px;}
.ydb{bottom:587.700000px;}
.y73{bottom:592.740000px;}
.y1f{bottom:595.230000px;}
.y11{bottom:596.310000px;}
.ya7{bottom:603.900000px;}
.yda{bottom:604.980000px;}
.y1e{bottom:610.740000px;}
.y72{bottom:611.100000px;}
.y10{bottom:620.460000px;}
.ya6{bottom:621.180000px;}
.yd9{bottom:622.260000px;}
.y71{bottom:629.100000px;}
.ya5{bottom:639.540000px;}
.y1d{bottom:641.340000px;}
.yf{bottom:644.580000px;}
.y70{bottom:655.740000px;}
.yd8{bottom:656.820000px;}
.ya4{bottom:657.540000px;}
.y6f{bottom:673.770000px;}
.ya3{bottom:674.490000px;}
.yd7{bottom:691.050000px;}
.y6e{bottom:691.770000px;}
.ya2{bottom:701.130000px;}
.yd6{bottom:708.330000px;}
.y6d{bottom:709.410000px;}
.ya1{bottom:718.410000px;}
.yd5{bottom:725.250000px;}
.y6c{bottom:726.690000px;}
.ya0{bottom:735.690000px;}
.y6b{bottom:743.970000px;}
.yd4{bottom:751.890000px;}
.y9f{bottom:752.610000px;}
.y6a{bottom:761.250000px;}
.yd3{bottom:769.170000px;}
.y9e{bottom:771.330000px;}
.y69{bottom:778.530000px;}
.yd2{bottom:786.450000px;}
.y9d{bottom:789.690000px;}
.y68{bottom:795.810000px;}
.yd1{bottom:803.775000px;}
.y9c{bottom:807.015000px;}
.y67{bottom:813.135000px;}
.yd0{bottom:820.695000px;}
.y9b{bottom:825.015000px;}
.y66{bottom:831.495000px;}
.y9a{bottom:842.295000px;}
.ycf{bottom:847.335000px;}
.y65{bottom:848.775000px;}
.yce{bottom:864.255000px;}
.y64{bottom:866.415000px;}
.y99{bottom:868.935000px;}
.ycd{bottom:881.895000px;}
.y98{bottom:885.855000px;}
.y63{bottom:893.055000px;}
.ycc{bottom:898.815000px;}
.y97{bottom:903.135000px;}
.y62{bottom:910.335000px;}
.ycb{bottom:917.175000px;}
.y96{bottom:920.055000px;}
.y61{bottom:928.695000px;}
.yca{bottom:934.485000px;}
.y95{bottom:938.805000px;}
.y60{bottom:946.005000px;}
.yc9{bottom:952.485000px;}
.y94{bottom:956.085000px;}
.y5f{bottom:964.005000px;}
.y93{bottom:974.445000px;}
.yc8{bottom:979.125000px;}
.yd{bottom:984.525000px;}
.yc{bottom:989.925000px;}
.y5e{bottom:990.645000px;}
.y92{bottom:991.725000px;}
.yc7{bottom:996.405000px;}
.yb{bottom:1007.205000px;}
.y5d{bottom:1007.925000px;}
.y91{bottom:1009.725000px;}
.yc6{bottom:1014.765000px;}
.ya{bottom:1024.485000px;}
.y5c{bottom:1026.285000px;}
.y90{bottom:1027.005000px;}
.yc5{bottom:1033.125000px;}
.y5b{bottom:1043.565000px;}
.yc4{bottom:1050.405000px;}
.y8f{bottom:1053.645000px;}
.y9{bottom:1059.765000px;}
.y5a{bottom:1061.565000px;}
.yc3{bottom:1068.810000px;}
.y8e{bottom:1070.970000px;}
.yc2{bottom:1086.810000px;}
.y59{bottom:1087.890000px;}
.y8{bottom:1088.250000px;}
.y56{bottom:1091.520000px;}
.y8d{bottom:1104.810000px;}
.y58{bottom:1105.170000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h16{height:5.650313px;}
.hb{height:5.653125px;}
.h7{height:24.348516px;}
.h18{height:27.720000px;}
.h14{height:29.678906px;}
.h1a{height:40.310156px;}
.he{height:40.985156px;}
.h10{height:41.993438px;}
.hd{height:42.086250px;}
.hf{height:53.677969px;}
.h15{height:55.147500px;}
.h8{height:58.050000px;}
.h17{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.ha{height:60.952500px;}
.h11{height:62.163910px;}
.h12{height:62.960625px;}
.h19{height:63.455625px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h4{height:116.640000px;}
.h13{height:201.645000px;}
.hc{height:653.925000px;}
.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;}
.x17{left:7.575000px;}
.x1a{left:10.095000px;}
.x4{left:13.305000px;}
.x19{left:15.135000px;}
.x15{left:16.546500px;}
.x1c{left:18.346500px;}
.x5{left:19.425000px;}
.x14{left:29.146500px;}
.x18{left:35.295000px;}
.x6{left:43.575000px;}
.x1d{left:47.542500px;}
.xf{left:50.782500px;}
.xe{left:55.102500px;}
.x1f{left:57.262500px;}
.x1e{left:66.265500px;}
.x11{left:76.705500px;}
.x1{left:78.529500px;}
.x13{left:80.305500px;}
.x12{left:83.905500px;}
.x7{left:86.436000px;}
.x22{left:93.276000px;}
.x2{left:95.425500px;}
.x20{left:102.985500px;}
.x1b{left:106.945500px;}
.x21{left:113.436000px;}
.x10{left:124.585500px;}
.x23{left:140.472000px;}
.x24{left:179.715000px;}
.x3{left:182.250000px;}
.x25{left:191.595000px;}
.x26{left:203.475000px;}
.x27{left:215.355000px;}
.x16{left:218.970000px;}
.x28{left:229.785000px;}
.x29{left:241.665000px;}
.x2a{left:285.225000px;}
.x2b{left:297.105000px;}
.x2c{left:367.710000px;}
.x2d{left:379.230000px;}
.x2e{left:422.100000px;}
.x2f{left:433.980000px;}
.x30{left:455.940000px;}
.x31{left:467.820000px;}
.xa{left:505.290000px;}
.x32{left:515.730000px;}
.x33{left:527.610000px;}
.x34{left:551.730000px;}
.x35{left:563.610000px;}
.xc{left:589.575000px;}
.x36{left:601.815000px;}
.xb{left:616.215000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.728000pt;}
.lsb{letter-spacing:-1.712000pt;}
.lsa{letter-spacing:-1.696000pt;}
.lsc{letter-spacing:-1.296000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-0.864000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.450667pt;}
.ls21{letter-spacing:-0.414933pt;}
.lsf{letter-spacing:-0.079467pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.017920pt;}
.ls6{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.414933pt;}
.lse{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.773120pt;}
.ls2{letter-spacing:0.960000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls16{letter-spacing:4.480000pt;}
.ls17{letter-spacing:8.320000pt;}
.ls3{letter-spacing:9.374720pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls1e{letter-spacing:14.494720pt;}
.ls1b{letter-spacing:15.774720pt;}
.ls1d{letter-spacing:41.374720pt;}
.ls4{letter-spacing:56.734720pt;}
.ls1f{letter-spacing:64.650240pt;}
.wsb{word-spacing:-53.760000pt;}
.ws5{word-spacing:-13.872533pt;}
.wsa{word-spacing:-13.854933pt;}
.ws10{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws11{word-spacing:-12.608000pt;}
.wsf{word-spacing:-12.576000pt;}
.ws9{word-spacing:-12.160000pt;}
.ws3{word-spacing:-12.144000pt;}
.ws1{word-spacing:-11.744000pt;}
.ws2{word-spacing:-11.728000pt;}
.ws4{word-spacing:-11.712000pt;}
.wsd{word-spacing:-11.600000pt;}
.ws6{word-spacing:-9.920000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsc{word-spacing:-7.936000pt;}
.wse{word-spacing:0.000000pt;}
._f{margin-left:-5.345280pt;}
._1a{margin-left:-3.195307pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._7{width:4.625920pt;}
._8{width:6.177280pt;}
._10{width:7.418880pt;}
._11{width:8.596480pt;}
._e{width:9.505280pt;}
._d{width:11.082240pt;}
._18{width:12.111787pt;}
._b{width:15.214080pt;}
._a{width:16.168960pt;}
._9{width:17.131520pt;}
._17{width:18.073600pt;}
._c{width:19.392853pt;}
._6{width:20.725760pt;}
._19{width:21.843200pt;}
._13{width:22.938880pt;}
._12{width:24.148480pt;}
._16{width:28.298240pt;}
._15{width:29.302187pt;}
._14{width:30.485760pt;}
._1f{width:38.069333pt;}
._1e{width:39.217067pt;}
._1b{width:40.517120pt;}
._1c{width:50.737067pt;}
._1d{width:51.764480pt;}
._20{width:64.817067pt;}
._5{width:1374.082133pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:2.556000pt;}
.y5{bottom:3.520000pt;}
.y57{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y47{bottom:9.276000pt;}
.y53{bottom:15.388000pt;}
.y4{bottom:18.880000pt;}
.y52{bottom:31.070667pt;}
.y3e{bottom:34.880000pt;}
.y46{bottom:35.550667pt;}
.y3{bottom:39.360000pt;}
.y45{bottom:46.110667pt;}
.y51{bottom:50.270667pt;}
.y7{bottom:51.232000pt;}
.y44{bottom:57.950667pt;}
.y3d{bottom:58.560000pt;}
.y50{bottom:64.350667pt;}
.y43{bottom:69.470667pt;}
.y3c{bottom:73.960000pt;}
.y4f{bottom:78.430667pt;}
.y55{bottom:83.872000pt;}
.y8c{bottom:84.832000pt;}
.y4e{bottom:86.430667pt;}
.y42{bottom:88.670667pt;}
.y3b{bottom:90.280000pt;}
.yc1{bottom:94.112000pt;}
.y54{bottom:99.232000pt;}
.y8b{bottom:100.192000pt;}
.y4d{bottom:103.390667pt;}
.y3a{bottom:105.320000pt;}
.yc0{bottom:110.432000pt;}
.y3f{bottom:111.716000pt;}
.y8a{bottom:116.512000pt;}
.y4c{bottom:117.150667pt;}
.y39{bottom:120.680000pt;}
.ybf{bottom:126.784000pt;}
.y4b{bottom:131.257333pt;}
.y89{bottom:131.904000pt;}
.y38{bottom:136.680000pt;}
.ybe{bottom:143.106667pt;}
.y41{bottom:144.057333pt;}
.y4a{bottom:145.017333pt;}
.y88{bottom:147.906667pt;}
.y40{bottom:153.657333pt;}
.y49{bottom:158.457333pt;}
.ybd{bottom:159.426667pt;}
.y37{bottom:160.360000pt;}
.y87{bottom:163.266667pt;}
.ybc{bottom:174.786667pt;}
.y36{bottom:175.720000pt;}
.y86{bottom:186.946667pt;}
.ybb{bottom:190.146667pt;}
.y35{bottom:191.106667pt;}
.y85{bottom:202.306667pt;}
.yba{bottom:205.506667pt;}
.y34{bottom:206.466667pt;}
.y84{bottom:217.346667pt;}
.yb9{bottom:221.826667pt;}
.y33{bottom:222.786667pt;}
.y83{bottom:232.706667pt;}
.yb8{bottom:237.826667pt;}
.y32{bottom:239.106667pt;}
.y82{bottom:248.093333pt;}
.yb7{bottom:254.173333pt;}
.y31{bottom:254.466667pt;}
.y81{bottom:264.093333pt;}
.yb6{bottom:270.493333pt;}
.y30{bottom:270.786667pt;}
.y2f{bottom:285.826667pt;}
.yb5{bottom:286.813333pt;}
.y80{bottom:287.773333pt;}
.ye{bottom:291.613333pt;}
.y1c{bottom:293.826667pt;}
.y2e{bottom:302.146667pt;}
.yb4{bottom:302.173333pt;}
.y7f{bottom:304.093333pt;}
.y1b{bottom:315.293333pt;}
.y2d{bottom:317.533333pt;}
.y7e{bottom:320.093333pt;}
.yb3{bottom:332.573333pt;}
.y2c{bottom:332.893333pt;}
.y1a{bottom:336.733333pt;}
.y7d{bottom:343.773333pt;}
.y2b{bottom:348.253333pt;}
.yb2{bottom:356.253333pt;}
.y19{bottom:358.173333pt;}
.y7c{bottom:360.133333pt;}
.y2a{bottom:363.613333pt;}
.yb1{bottom:371.653333pt;}
.y7b{bottom:375.493333pt;}
.y29{bottom:378.973333pt;}
.y18{bottom:379.613333pt;}
.yb0{bottom:386.693333pt;}
.y7a{bottom:391.173333pt;}
.y28{bottom:394.333333pt;}
.ye3{bottom:399.813333pt;}
.y17{bottom:401.053333pt;}
.yaf{bottom:403.333333pt;}
.y27{bottom:409.373333pt;}
.y79{bottom:414.853333pt;}
.ye2{bottom:415.173333pt;}
.yae{bottom:419.333333pt;}
.y16{bottom:422.853333pt;}
.ye1{bottom:430.213333pt;}
.y78{bottom:431.173333pt;}
.y26{bottom:432.453333pt;}
.yad{bottom:434.693333pt;}
.y15{bottom:444.293333pt;}
.ye0{bottom:445.573333pt;}
.y25{bottom:446.213333pt;}
.y77{bottom:447.173333pt;}
.yac{bottom:450.693333pt;}
.y24{bottom:459.973333pt;}
.ydf{bottom:460.933333pt;}
.y14{bottom:465.733333pt;}
.y76{bottom:470.853333pt;}
.y23{bottom:473.733333pt;}
.yab{bottom:474.373333pt;}
.yde{bottom:476.293333pt;}
.y13{bottom:487.173333pt;}
.y75{bottom:487.200000pt;}
.y22{bottom:487.493333pt;}
.yaa{bottom:489.760000pt;}
.ydd{bottom:491.680000pt;}
.y21{bottom:501.573333pt;}
.y74{bottom:503.200000pt;}
.ya9{bottom:505.120000pt;}
.ydc{bottom:507.040000pt;}
.y12{bottom:508.613333pt;}
.y20{bottom:515.333333pt;}
.ya8{bottom:520.160000pt;}
.ydb{bottom:522.400000pt;}
.y73{bottom:526.880000pt;}
.y1f{bottom:529.093333pt;}
.y11{bottom:530.053333pt;}
.ya7{bottom:536.800000pt;}
.yda{bottom:537.760000pt;}
.y1e{bottom:542.880000pt;}
.y72{bottom:543.200000pt;}
.y10{bottom:551.520000pt;}
.ya6{bottom:552.160000pt;}
.yd9{bottom:553.120000pt;}
.y71{bottom:559.200000pt;}
.ya5{bottom:568.480000pt;}
.y1d{bottom:570.080000pt;}
.yf{bottom:572.960000pt;}
.y70{bottom:582.880000pt;}
.yd8{bottom:583.840000pt;}
.ya4{bottom:584.480000pt;}
.y6f{bottom:598.906667pt;}
.ya3{bottom:599.546667pt;}
.yd7{bottom:614.266667pt;}
.y6e{bottom:614.906667pt;}
.ya2{bottom:623.226667pt;}
.yd6{bottom:629.626667pt;}
.y6d{bottom:630.586667pt;}
.ya1{bottom:638.586667pt;}
.yd5{bottom:644.666667pt;}
.y6c{bottom:645.946667pt;}
.ya0{bottom:653.946667pt;}
.y6b{bottom:661.306667pt;}
.yd4{bottom:668.346667pt;}
.y9f{bottom:668.986667pt;}
.y6a{bottom:676.666667pt;}
.yd3{bottom:683.706667pt;}
.y9e{bottom:685.626667pt;}
.y69{bottom:692.026667pt;}
.yd2{bottom:699.066667pt;}
.y9d{bottom:701.946667pt;}
.y68{bottom:707.386667pt;}
.yd1{bottom:714.466667pt;}
.y9c{bottom:717.346667pt;}
.y67{bottom:722.786667pt;}
.yd0{bottom:729.506667pt;}
.y9b{bottom:733.346667pt;}
.y66{bottom:739.106667pt;}
.y9a{bottom:748.706667pt;}
.ycf{bottom:753.186667pt;}
.y65{bottom:754.466667pt;}
.yce{bottom:768.226667pt;}
.y64{bottom:770.146667pt;}
.y99{bottom:772.386667pt;}
.ycd{bottom:783.906667pt;}
.y98{bottom:787.426667pt;}
.y63{bottom:793.826667pt;}
.ycc{bottom:798.946667pt;}
.y97{bottom:802.786667pt;}
.y62{bottom:809.186667pt;}
.ycb{bottom:815.266667pt;}
.y96{bottom:817.826667pt;}
.y61{bottom:825.506667pt;}
.yca{bottom:830.653333pt;}
.y95{bottom:834.493333pt;}
.y60{bottom:840.893333pt;}
.yc9{bottom:846.653333pt;}
.y94{bottom:849.853333pt;}
.y5f{bottom:856.893333pt;}
.y93{bottom:866.173333pt;}
.yc8{bottom:870.333333pt;}
.yd{bottom:875.133333pt;}
.yc{bottom:879.933333pt;}
.y5e{bottom:880.573333pt;}
.y92{bottom:881.533333pt;}
.yc7{bottom:885.693333pt;}
.yb{bottom:895.293333pt;}
.y5d{bottom:895.933333pt;}
.y91{bottom:897.533333pt;}
.yc6{bottom:902.013333pt;}
.ya{bottom:910.653333pt;}
.y5c{bottom:912.253333pt;}
.y90{bottom:912.893333pt;}
.yc5{bottom:918.333333pt;}
.y5b{bottom:927.613333pt;}
.yc4{bottom:933.693333pt;}
.y8f{bottom:936.573333pt;}
.y9{bottom:942.013333pt;}
.y5a{bottom:943.613333pt;}
.yc3{bottom:950.053333pt;}
.y8e{bottom:951.973333pt;}
.yc2{bottom:966.053333pt;}
.y59{bottom:967.013333pt;}
.y8{bottom:967.333333pt;}
.y56{bottom:970.240000pt;}
.y8d{bottom:982.053333pt;}
.y58{bottom:982.373333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h16{height:5.022500pt;}
.hb{height:5.025000pt;}
.h7{height:21.643125pt;}
.h18{height:24.640000pt;}
.h14{height:26.381250pt;}
.h1a{height:35.831250pt;}
.he{height:36.431250pt;}
.h10{height:37.327500pt;}
.hd{height:37.410000pt;}
.hf{height:47.713750pt;}
.h15{height:49.020000pt;}
.h8{height:51.600000pt;}
.h17{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.ha{height:54.180000pt;}
.h11{height:55.256809pt;}
.h12{height:55.965000pt;}
.h19{height:56.405000pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h4{height:103.680000pt;}
.h13{height:179.240000pt;}
.hc{height:581.266667pt;}
.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;}
.x17{left:6.733333pt;}
.x1a{left:8.973333pt;}
.x4{left:11.826667pt;}
.x19{left:13.453333pt;}
.x15{left:14.708000pt;}
.x1c{left:16.308000pt;}
.x5{left:17.266667pt;}
.x14{left:25.908000pt;}
.x18{left:31.373333pt;}
.x6{left:38.733333pt;}
.x1d{left:42.260000pt;}
.xf{left:45.140000pt;}
.xe{left:48.980000pt;}
.x1f{left:50.900000pt;}
.x1e{left:58.902667pt;}
.x11{left:68.182667pt;}
.x1{left:69.804000pt;}
.x13{left:71.382667pt;}
.x12{left:74.582667pt;}
.x7{left:76.832000pt;}
.x22{left:82.912000pt;}
.x2{left:84.822667pt;}
.x20{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x21{left:100.832000pt;}
.x10{left:110.742667pt;}
.x23{left:124.864000pt;}
.x24{left:159.746667pt;}
.x3{left:162.000000pt;}
.x25{left:170.306667pt;}
.x26{left:180.866667pt;}
.x27{left:191.426667pt;}
.x16{left:194.640000pt;}
.x28{left:204.253333pt;}
.x29{left:214.813333pt;}
.x2a{left:253.533333pt;}
.x2b{left:264.093333pt;}
.x2c{left:326.853333pt;}
.x2d{left:337.093333pt;}
.x2e{left:375.200000pt;}
.x2f{left:385.760000pt;}
.x30{left:405.280000pt;}
.x31{left:415.840000pt;}
.xa{left:449.146667pt;}
.x32{left:458.426667pt;}
.x33{left:468.986667pt;}
.x34{left:490.426667pt;}
.x35{left:500.986667pt;}
.xc{left:524.066667pt;}
.x36{left:534.946667pt;}
.xb{left:547.746667pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xd{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; }
  