
    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_cf8818d4b4a81750bb542cfa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_a0c47bd23dfda68b4d5b9813.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dbb22c6734352147a0f6f75e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d8a3530c46fc52432ae1f78c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d92a3f32553ef96ebd99ac4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747070;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_a3a7bc66d0c5dc10ce7d9016.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_200ec0074feb5fcc10e33855.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_78a17a964093cb1eaadff9c7.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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_e01131f55219eb0322f6709b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a9c9735d3e2790baf80bb889.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;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:ff10;src:url('chunks/assets/font_ea754436fe7aedd669c91603.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.149414;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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.460000px;}
.v1{vertical-align:20.880000px;}
.ls5{letter-spacing:-0.226200px;}
.ls9{letter-spacing:-0.188400px;}
.ls6{letter-spacing:-0.089400px;}
.ls8{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.053280px;}
.ls14{letter-spacing:-0.018000px;}
.ls13{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.022320px;}
.ls1{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.257040px;}
.lse{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.493800px;}
.ls10{letter-spacing:7.200000px;}
.lsc{letter-spacing:8.940000px;}
.ls2{letter-spacing:24.446880px;}
.ls15{letter-spacing:46.026720px;}
.lsb{letter-spacing:55.386720px;}
.lsd{letter-spacing:64.026720px;}
.ls11{letter-spacing:161.542320px;}
.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:-59.760000px;}
.wsf{word-spacing:-21.641760px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws6{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.591600px;}
.ws5{word-spacing:-10.933800px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.711360px;}
.ws7{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
.wse{word-spacing:89.275440px;}
._12{margin-left:-2.197440px;}
._0{margin-left:-1.093680px;}
._1{width:1.367040px;}
._2{width:3.317760px;}
._7{width:4.661280px;}
._c{width:5.740080px;}
._b{width:6.820080px;}
._4{width:7.916640px;}
._3{width:9.180000px;}
._6{width:10.338000px;}
._5{width:11.340000px;}
._d{width:12.593760px;}
._f{width:13.853520px;}
._e{width:15.540480px;}
._9{width:17.031600px;}
._8{width:18.047520px;}
._10{width:19.185360px;}
._a{width:23.552880px;}
._11{width:24.631200px;}
._13{width:201.060000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fsc{font-size:95.760000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y56{bottom:1.620000px;}
.y63{bottom:3.420000px;}
.y5{bottom:3.780000px;}
.y65{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y55{bottom:10.260000px;}
.yaf{bottom:15.045000px;}
.y2b{bottom:15.300000px;}
.ybf{bottom:15.585000px;}
.y62{bottom:18.720000px;}
.y8a{bottom:20.700000px;}
.ya2{bottom:20.730000px;}
.y8f{bottom:20.745000px;}
.y8c{bottom:20.880000px;}
.y4{bottom:22.710000px;}
.yae{bottom:29.805000px;}
.ybe{bottom:32.145000px;}
.y61{bottom:33.480000px;}
.y4c{bottom:39.420000px;}
.y2a{bottom:40.320000px;}
.y3{bottom:47.910000px;}
.y60{bottom:48.060000px;}
.yb7{bottom:49.035000px;}
.yb0{bottom:50.835000px;}
.y54{bottom:53.100000px;}
.yb3{bottom:55.650000px;}
.y4b{bottom:56.745000px;}
.y7{bottom:57.060000px;}
.y53{bottom:62.094000px;}
.y5f{bottom:64.974000px;}
.y29{bottom:65.385000px;}
.yb8{bottom:65.415000px;}
.yb1{bottom:69.510000px;}
.y52{bottom:72.714000px;}
.y4a{bottom:74.025000px;}
.y5e{bottom:79.734000px;}
.yb9{bottom:81.750000px;}
.y51{bottom:84.954000px;}
.yb2{bottom:86.610000px;}
.y28{bottom:90.405000px;}
.y4d{bottom:91.116000px;}
.y49{bottom:91.305000px;}
.y5d{bottom:94.314000px;}
.y50{bottom:97.014000px;}
.yba{bottom:98.130000px;}
.yac{bottom:99.576000px;}
.y48{bottom:108.405000px;}
.y5c{bottom:111.234000px;}
.ybb{bottom:114.510000px;}
.y27{bottom:115.425000px;}
.yab{bottom:116.856000px;}
.y47{bottom:125.685000px;}
.y5b{bottom:125.814000px;}
.ybc{bottom:130.890000px;}
.yaa{bottom:134.136000px;}
.y5a{bottom:140.574000px;}
.y26{bottom:140.625000px;}
.y46{bottom:142.965000px;}
.ybd{bottom:147.270000px;}
.ya9{bottom:148.176000px;}
.yb6{bottom:150.480000px;}
.y59{bottom:155.154000px;}
.y4f{bottom:158.034000px;}
.y45{bottom:160.245000px;}
.y25{bottom:165.645000px;}
.y4e{bottom:167.754000px;}
.y58{bottom:169.914000px;}
.yb5{bottom:176.370000px;}
.y44{bottom:177.525000px;}
.y94{bottom:180.030000px;}
.y57{bottom:184.494000px;}
.y24{bottom:190.665000px;}
.y43{bottom:194.625000px;}
.y93{bottom:194.790000px;}
.yc1{bottom:194.970000px;}
.yb4{bottom:205.710000px;}
.y42{bottom:211.905000px;}
.y23{bottom:215.685000px;}
.yc0{bottom:220.710000px;}
.y41{bottom:229.185000px;}
.y92{bottom:230.430000px;}
.y22{bottom:240.705000px;}
.y40{bottom:246.465000px;}
.y3f{bottom:263.745000px;}
.y21{bottom:265.725000px;}
.y91{bottom:265.890000px;}
.y20{bottom:278.685000px;}
.y3e{bottom:281.025000px;}
.y12{bottom:288.750000px;}
.y3d{bottom:298.125000px;}
.y90{bottom:301.530000px;}
.y1f{bottom:302.805000px;}
.y3c{bottom:315.435000px;}
.y1e{bottom:326.955000px;}
.y3b{bottom:332.715000px;}
.y8e{bottom:337.170000px;}
.y3a{bottom:349.995000px;}
.y1d{bottom:351.255000px;}
.y39{bottom:367.275000px;}
.y8d{bottom:372.675000px;}
.y1c{bottom:375.375000px;}
.y38{bottom:384.555000px;}
.y1b{bottom:399.495000px;}
.y37{bottom:401.655000px;}
.ya8{bottom:405.615000px;}
.y8b{bottom:408.315000px;}
.y36{bottom:418.935000px;}
.ya7{bottom:420.375000px;}
.y1a{bottom:423.615000px;}
.y35{bottom:436.215000px;}
.y89{bottom:443.955000px;}
.y19{bottom:447.735000px;}
.y34{bottom:453.495000px;}
.ya6{bottom:456.015000px;}
.y33{bottom:470.775000px;}
.y18{bottom:471.855000px;}
.y88{bottom:482.835000px;}
.ya5{bottom:491.655000px;}
.y17{bottom:496.155000px;}
.y32{bottom:496.695000px;}
.y87{bottom:499.935000px;}
.y31{bottom:512.175000px;}
.y86{bottom:517.215000px;}
.y16{bottom:520.275000px;}
.ya4{bottom:527.115000px;}
.y30{bottom:527.655000px;}
.y85{bottom:534.495000px;}
.y2f{bottom:543.135000px;}
.y15{bottom:544.395000px;}
.y84{bottom:551.775000px;}
.y2e{bottom:558.795000px;}
.ya3{bottom:562.755000px;}
.y14{bottom:568.515000px;}
.y83{bottom:569.055000px;}
.y2d{bottom:574.275000px;}
.y82{bottom:586.335000px;}
.y2c{bottom:589.800000px;}
.y13{bottom:592.680000px;}
.ya1{bottom:598.395000px;}
.y81{bottom:603.435000px;}
.y80{bottom:620.745000px;}
.ya0{bottom:634.065000px;}
.yd6{bottom:640.185000px;}
.y7f{bottom:647.025000px;}
.yd5{bottom:657.465000px;}
.y7e{bottom:665.385000px;}
.y9f{bottom:669.525000px;}
.yd4{bottom:674.745000px;}
.y7d{bottom:683.745000px;}
.yd3{bottom:691.845000px;}
.y7c{bottom:700.845000px;}
.y9e{bottom:708.405000px;}
.yd2{bottom:709.125000px;}
.y7b{bottom:718.125000px;}
.y9d{bottom:725.685000px;}
.yd1{bottom:726.405000px;}
.y7a{bottom:735.405000px;}
.y9c{bottom:742.965000px;}
.yd0{bottom:743.685000px;}
.y79{bottom:752.685000px;}
.y9b{bottom:760.065000px;}
.ycf{bottom:760.965000px;}
.y78{bottom:769.965000px;}
.y9a{bottom:777.345000px;}
.yce{bottom:778.245000px;}
.y99{bottom:794.625000px;}
.ycd{bottom:795.345000px;}
.y77{bottom:796.245000px;}
.y98{bottom:811.905000px;}
.ycc{bottom:812.625000px;}
.y76{bottom:813.345000px;}
.y97{bottom:829.185000px;}
.y75{bottom:830.625000px;}
.ycb{bottom:838.905000px;}
.y96{bottom:846.465000px;}
.y74{bottom:847.905000px;}
.yca{bottom:856.185000px;}
.y95{bottom:860.325000px;}
.yad{bottom:863.640000px;}
.y73{bottom:865.185000px;}
.yc9{bottom:873.510000px;}
.y72{bottom:882.510000px;}
.yc8{bottom:890.610000px;}
.y11{bottom:896.730000px;}
.y71{bottom:899.610000px;}
.yc7{bottom:907.890000px;}
.y10{bottom:914.010000px;}
.y70{bottom:916.890000px;}
.yc6{bottom:925.170000px;}
.y6f{bottom:934.170000px;}
.yf{bottom:936.330000px;}
.yc5{bottom:942.450000px;}
.ye{bottom:948.390000px;}
.y6e{bottom:951.450000px;}
.yc4{bottom:959.730000px;}
.y6d{bottom:968.730000px;}
.yd{bottom:970.890000px;}
.yc3{bottom:977.010000px;}
.y6c{bottom:986.010000px;}
.yc{bottom:988.170000px;}
.yc2{bottom:994.110000px;}
.yb{bottom:1000.230000px;}
.y6b{bottom:1003.110000px;}
.ya{bottom:1018.950000px;}
.y6a{bottom:1020.390000px;}
.y69{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y68{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y67{bottom:1072.230000px;}
.y64{bottom:1075.140000px;}
.y66{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h13{height:21.114844px;}
.h12{height:25.136719px;}
.ha{height:27.147656px;}
.h17{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h1b{height:34.740000px;}
.h1d{height:34.776000px;}
.h1c{height:34.920000px;}
.h7{height:40.132617px;}
.h14{height:41.485078px;}
.h6{height:41.726953px;}
.h15{height:42.134062px;}
.hb{height:42.164648px;}
.h19{height:43.506914px;}
.hf{height:43.822266px;}
.h10{height:44.507812px;}
.h5{height:46.251562px;}
.h20{height:47.980898px;}
.h1e{height:48.027656px;}
.h9{height:48.312422px;}
.h1a{height:49.255313px;}
.h22{height:49.394180px;}
.h16{height:50.845430px;}
.h25{height:53.709961px;}
.h21{height:57.854180px;}
.h18{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h26{height:83.787539px;}
.h2{height:84.996000px;}
.h23{height:98.051133px;}
.h4{height:117.180000px;}
.h11{height:196.920000px;}
.h1f{height:239.760000px;}
.h24{height:252.000000px;}
.hc{height:602.385000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:93.600000px;}
.w2{width:104.076000px;}
.w5{width:131.940000px;}
.w8{width:162.900000px;}
.wb{width:171.930000px;}
.wa{width:200.190000px;}
.wc{width:374.835000px;}
.wd{width:477.540000px;}
.we{width:487.440000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.056000px;}
.x1a{left:8.100000px;}
.x4{left:12.780000px;}
.x18{left:18.180000px;}
.x6{left:19.260000px;}
.x12{left:25.560000px;}
.x13{left:28.980000px;}
.x11{left:31.140000px;}
.x17{left:37.260000px;}
.x16{left:40.320000px;}
.x15{left:42.480000px;}
.x3b{left:43.530000px;}
.x1d{left:47.340000px;}
.x46{left:53.745000px;}
.x1e{left:56.700000px;}
.x1b{left:62.145000px;}
.x28{left:63.750000px;}
.x14{left:65.874000px;}
.x29{left:69.690000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x34{left:90.510000px;}
.x3c{left:91.725000px;}
.xc{left:94.715987px;}
.x2{left:95.790000px;}
.x1c{left:106.374000px;}
.x20{left:113.435987px;}
.x2a{left:119.445000px;}
.x2b{left:125.385000px;}
.x38{left:127.185000px;}
.xb{left:136.475987px;}
.x5{left:141.345000px;}
.x3d{left:144.570000px;}
.x3e{left:149.430000px;}
.x39{left:164.265000px;}
.x24{left:172.830000px;}
.x2c{left:175.110000px;}
.x2d{left:181.050000px;}
.x3{left:182.370000px;}
.x35{left:189.615000px;}
.x3f{left:202.245000px;}
.x47{left:204.090000px;}
.x27{left:206.820000px;}
.x19{left:218.370000px;}
.x3a{left:228.240000px;}
.x2e{left:230.790000px;}
.x2f{left:236.730000px;}
.x36{left:245.310000px;}
.x40{left:259.920000px;}
.x41{left:264.780000px;}
.x30{left:286.455000px;}
.xd{left:288.074987px;}
.x31{left:292.395000px;}
.x21{left:299.415000px;}
.x42{left:317.595000px;}
.x43{left:322.485000px;}
.xe{left:335.954987px;}
.x32{left:342.150000px;}
.x25{left:345.495000px;}
.x33{left:348.090000px;}
.x37{left:359.715000px;}
.x44{left:375.300000px;}
.x45{left:380.160000px;}
.x22{left:393.735000px;}
.xa{left:412.634987px;}
.xf{left:572.324987px;}
.x23{left:686.309987px;}
.x26{left:718.889987px;}
.x8{left:766.049987px;}
.x7{left:784.439987px;}
.x10{left:806.939987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.520000pt;}
.v1{vertical-align:18.560000pt;}
.ls5{letter-spacing:-0.201067pt;}
.ls9{letter-spacing:-0.167467pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls13{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.019840pt;}
.ls1{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.228480pt;}
.lse{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.438933pt;}
.ls10{letter-spacing:6.400000pt;}
.lsc{letter-spacing:7.946667pt;}
.ls2{letter-spacing:21.730560pt;}
.ls15{letter-spacing:40.912640pt;}
.lsb{letter-spacing:49.232640pt;}
.lsd{letter-spacing:56.912640pt;}
.ls11{letter-spacing:143.593173pt;}
.wsb{word-spacing:-53.120000pt;}
.wsf{word-spacing:-19.237120pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.192533pt;}
.ws5{word-spacing:-9.718933pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.632320pt;}
.ws7{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
.wse{word-spacing:79.355947pt;}
._12{margin-left:-1.953280pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.215147pt;}
._2{width:2.949120pt;}
._7{width:4.143360pt;}
._c{width:5.102293pt;}
._b{width:6.062293pt;}
._4{width:7.037013pt;}
._3{width:8.160000pt;}
._6{width:9.189333pt;}
._5{width:10.080000pt;}
._d{width:11.194453pt;}
._f{width:12.314240pt;}
._e{width:13.813760pt;}
._9{width:15.139200pt;}
._8{width:16.042240pt;}
._10{width:17.053653pt;}
._a{width:20.935893pt;}
._11{width:21.894400pt;}
._13{width:178.720000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fsc{font-size:85.120000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:1.440000pt;}
.y63{bottom:3.040000pt;}
.y5{bottom:3.360000pt;}
.y65{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y55{bottom:9.120000pt;}
.yaf{bottom:13.373333pt;}
.y2b{bottom:13.600000pt;}
.ybf{bottom:13.853333pt;}
.y62{bottom:16.640000pt;}
.y8a{bottom:18.400000pt;}
.ya2{bottom:18.426667pt;}
.y8f{bottom:18.440000pt;}
.y8c{bottom:18.560000pt;}
.y4{bottom:20.186667pt;}
.yae{bottom:26.493333pt;}
.ybe{bottom:28.573333pt;}
.y61{bottom:29.760000pt;}
.y4c{bottom:35.040000pt;}
.y2a{bottom:35.840000pt;}
.y3{bottom:42.586667pt;}
.y60{bottom:42.720000pt;}
.yb7{bottom:43.586667pt;}
.yb0{bottom:45.186667pt;}
.y54{bottom:47.200000pt;}
.yb3{bottom:49.466667pt;}
.y4b{bottom:50.440000pt;}
.y7{bottom:50.720000pt;}
.y53{bottom:55.194667pt;}
.y5f{bottom:57.754667pt;}
.y29{bottom:58.120000pt;}
.yb8{bottom:58.146667pt;}
.yb1{bottom:61.786667pt;}
.y52{bottom:64.634667pt;}
.y4a{bottom:65.800000pt;}
.y5e{bottom:70.874667pt;}
.yb9{bottom:72.666667pt;}
.y51{bottom:75.514667pt;}
.yb2{bottom:76.986667pt;}
.y28{bottom:80.360000pt;}
.y4d{bottom:80.992000pt;}
.y49{bottom:81.160000pt;}
.y5d{bottom:83.834667pt;}
.y50{bottom:86.234667pt;}
.yba{bottom:87.226667pt;}
.yac{bottom:88.512000pt;}
.y48{bottom:96.360000pt;}
.y5c{bottom:98.874667pt;}
.ybb{bottom:101.786667pt;}
.y27{bottom:102.600000pt;}
.yab{bottom:103.872000pt;}
.y47{bottom:111.720000pt;}
.y5b{bottom:111.834667pt;}
.ybc{bottom:116.346667pt;}
.yaa{bottom:119.232000pt;}
.y5a{bottom:124.954667pt;}
.y26{bottom:125.000000pt;}
.y46{bottom:127.080000pt;}
.ybd{bottom:130.906667pt;}
.ya9{bottom:131.712000pt;}
.yb6{bottom:133.760000pt;}
.y59{bottom:137.914667pt;}
.y4f{bottom:140.474667pt;}
.y45{bottom:142.440000pt;}
.y25{bottom:147.240000pt;}
.y4e{bottom:149.114667pt;}
.y58{bottom:151.034667pt;}
.yb5{bottom:156.773333pt;}
.y44{bottom:157.800000pt;}
.y94{bottom:160.026667pt;}
.y57{bottom:163.994667pt;}
.y24{bottom:169.480000pt;}
.y43{bottom:173.000000pt;}
.y93{bottom:173.146667pt;}
.yc1{bottom:173.306667pt;}
.yb4{bottom:182.853333pt;}
.y42{bottom:188.360000pt;}
.y23{bottom:191.720000pt;}
.yc0{bottom:196.186667pt;}
.y41{bottom:203.720000pt;}
.y92{bottom:204.826667pt;}
.y22{bottom:213.960000pt;}
.y40{bottom:219.080000pt;}
.y3f{bottom:234.440000pt;}
.y21{bottom:236.200000pt;}
.y91{bottom:236.346667pt;}
.y20{bottom:247.720000pt;}
.y3e{bottom:249.800000pt;}
.y12{bottom:256.666667pt;}
.y3d{bottom:265.000000pt;}
.y90{bottom:268.026667pt;}
.y1f{bottom:269.160000pt;}
.y3c{bottom:280.386667pt;}
.y1e{bottom:290.626667pt;}
.y3b{bottom:295.746667pt;}
.y8e{bottom:299.706667pt;}
.y3a{bottom:311.106667pt;}
.y1d{bottom:312.226667pt;}
.y39{bottom:326.466667pt;}
.y8d{bottom:331.266667pt;}
.y1c{bottom:333.666667pt;}
.y38{bottom:341.826667pt;}
.y1b{bottom:355.106667pt;}
.y37{bottom:357.026667pt;}
.ya8{bottom:360.546667pt;}
.y8b{bottom:362.946667pt;}
.y36{bottom:372.386667pt;}
.ya7{bottom:373.666667pt;}
.y1a{bottom:376.546667pt;}
.y35{bottom:387.746667pt;}
.y89{bottom:394.626667pt;}
.y19{bottom:397.986667pt;}
.y34{bottom:403.106667pt;}
.ya6{bottom:405.346667pt;}
.y33{bottom:418.466667pt;}
.y18{bottom:419.426667pt;}
.y88{bottom:429.186667pt;}
.ya5{bottom:437.026667pt;}
.y17{bottom:441.026667pt;}
.y32{bottom:441.506667pt;}
.y87{bottom:444.386667pt;}
.y31{bottom:455.266667pt;}
.y86{bottom:459.746667pt;}
.y16{bottom:462.466667pt;}
.ya4{bottom:468.546667pt;}
.y30{bottom:469.026667pt;}
.y85{bottom:475.106667pt;}
.y2f{bottom:482.786667pt;}
.y15{bottom:483.906667pt;}
.y84{bottom:490.466667pt;}
.y2e{bottom:496.706667pt;}
.ya3{bottom:500.226667pt;}
.y14{bottom:505.346667pt;}
.y83{bottom:505.826667pt;}
.y2d{bottom:510.466667pt;}
.y82{bottom:521.186667pt;}
.y2c{bottom:524.266667pt;}
.y13{bottom:526.826667pt;}
.ya1{bottom:531.906667pt;}
.y81{bottom:536.386667pt;}
.y80{bottom:551.773333pt;}
.ya0{bottom:563.613333pt;}
.yd6{bottom:569.053333pt;}
.y7f{bottom:575.133333pt;}
.yd5{bottom:584.413333pt;}
.y7e{bottom:591.453333pt;}
.y9f{bottom:595.133333pt;}
.yd4{bottom:599.773333pt;}
.y7d{bottom:607.773333pt;}
.yd3{bottom:614.973333pt;}
.y7c{bottom:622.973333pt;}
.y9e{bottom:629.693333pt;}
.yd2{bottom:630.333333pt;}
.y7b{bottom:638.333333pt;}
.y9d{bottom:645.053333pt;}
.yd1{bottom:645.693333pt;}
.y7a{bottom:653.693333pt;}
.y9c{bottom:660.413333pt;}
.yd0{bottom:661.053333pt;}
.y79{bottom:669.053333pt;}
.y9b{bottom:675.613333pt;}
.ycf{bottom:676.413333pt;}
.y78{bottom:684.413333pt;}
.y9a{bottom:690.973333pt;}
.yce{bottom:691.773333pt;}
.y99{bottom:706.333333pt;}
.ycd{bottom:706.973333pt;}
.y77{bottom:707.773333pt;}
.y98{bottom:721.693333pt;}
.ycc{bottom:722.333333pt;}
.y76{bottom:722.973333pt;}
.y97{bottom:737.053333pt;}
.y75{bottom:738.333333pt;}
.ycb{bottom:745.693333pt;}
.y96{bottom:752.413333pt;}
.y74{bottom:753.693333pt;}
.yca{bottom:761.053333pt;}
.y95{bottom:764.733333pt;}
.yad{bottom:767.680000pt;}
.y73{bottom:769.053333pt;}
.yc9{bottom:776.453333pt;}
.y72{bottom:784.453333pt;}
.yc8{bottom:791.653333pt;}
.y11{bottom:797.093333pt;}
.y71{bottom:799.653333pt;}
.yc7{bottom:807.013333pt;}
.y10{bottom:812.453333pt;}
.y70{bottom:815.013333pt;}
.yc6{bottom:822.373333pt;}
.y6f{bottom:830.373333pt;}
.yf{bottom:832.293333pt;}
.yc5{bottom:837.733333pt;}
.ye{bottom:843.013333pt;}
.y6e{bottom:845.733333pt;}
.yc4{bottom:853.093333pt;}
.y6d{bottom:861.093333pt;}
.yd{bottom:863.013333pt;}
.yc3{bottom:868.453333pt;}
.y6c{bottom:876.453333pt;}
.yc{bottom:878.373333pt;}
.yc2{bottom:883.653333pt;}
.yb{bottom:889.093333pt;}
.y6b{bottom:891.653333pt;}
.ya{bottom:905.733333pt;}
.y6a{bottom:907.013333pt;}
.y69{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y68{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y67{bottom:953.093333pt;}
.y64{bottom:955.680000pt;}
.y66{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h13{height:18.768750pt;}
.h12{height:22.343750pt;}
.ha{height:24.131250pt;}
.h17{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h1b{height:30.880000pt;}
.h1d{height:30.912000pt;}
.h1c{height:31.040000pt;}
.h7{height:35.673437pt;}
.h14{height:36.875625pt;}
.h6{height:37.090625pt;}
.h15{height:37.452500pt;}
.hb{height:37.479688pt;}
.h19{height:38.672812pt;}
.hf{height:38.953125pt;}
.h10{height:39.562500pt;}
.h5{height:41.112500pt;}
.h20{height:42.649687pt;}
.h1e{height:42.691250pt;}
.h9{height:42.944375pt;}
.h1a{height:43.782500pt;}
.h22{height:43.905937pt;}
.h16{height:45.195937pt;}
.h25{height:47.742188pt;}
.h21{height:51.425938pt;}
.h18{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h26{height:74.477812pt;}
.h2{height:75.552000pt;}
.h23{height:87.156562pt;}
.h4{height:104.160000pt;}
.h11{height:175.040000pt;}
.h1f{height:213.120000pt;}
.h24{height:224.000000pt;}
.hc{height:535.453333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:83.200000pt;}
.w2{width:92.512000pt;}
.w5{width:117.280000pt;}
.w8{width:144.800000pt;}
.wb{width:152.826667pt;}
.wa{width:177.946667pt;}
.wc{width:333.186667pt;}
.wd{width:424.480000pt;}
.we{width:433.280000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.272000pt;}
.x1a{left:7.200000pt;}
.x4{left:11.360000pt;}
.x18{left:16.160000pt;}
.x6{left:17.120000pt;}
.x12{left:22.720000pt;}
.x13{left:25.760000pt;}
.x11{left:27.680000pt;}
.x17{left:33.120000pt;}
.x16{left:35.840000pt;}
.x15{left:37.760000pt;}
.x3b{left:38.693333pt;}
.x1d{left:42.080000pt;}
.x46{left:47.773333pt;}
.x1e{left:50.400000pt;}
.x1b{left:55.240000pt;}
.x28{left:56.666667pt;}
.x14{left:58.554667pt;}
.x29{left:61.946667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x34{left:80.453333pt;}
.x3c{left:81.533333pt;}
.xc{left:84.191988pt;}
.x2{left:85.146667pt;}
.x1c{left:94.554667pt;}
.x20{left:100.831988pt;}
.x2a{left:106.173333pt;}
.x2b{left:111.453333pt;}
.x38{left:113.053333pt;}
.xb{left:121.311988pt;}
.x5{left:125.640000pt;}
.x3d{left:128.506667pt;}
.x3e{left:132.826667pt;}
.x39{left:146.013333pt;}
.x24{left:153.626667pt;}
.x2c{left:155.653333pt;}
.x2d{left:160.933333pt;}
.x3{left:162.106667pt;}
.x35{left:168.546667pt;}
.x3f{left:179.773333pt;}
.x47{left:181.413333pt;}
.x27{left:183.840000pt;}
.x19{left:194.106667pt;}
.x3a{left:202.880000pt;}
.x2e{left:205.146667pt;}
.x2f{left:210.426667pt;}
.x36{left:218.053333pt;}
.x40{left:231.040000pt;}
.x41{left:235.360000pt;}
.x30{left:254.626667pt;}
.xd{left:256.066655pt;}
.x31{left:259.906667pt;}
.x21{left:266.146667pt;}
.x42{left:282.306667pt;}
.x43{left:286.653333pt;}
.xe{left:298.626655pt;}
.x32{left:304.133333pt;}
.x25{left:307.106667pt;}
.x33{left:309.413333pt;}
.x37{left:319.746667pt;}
.x44{left:333.600000pt;}
.x45{left:337.920000pt;}
.x22{left:349.986667pt;}
.xa{left:366.786655pt;}
.xf{left:508.733322pt;}
.x23{left:610.053322pt;}
.x26{left:639.013322pt;}
.x8{left:680.933322pt;}
.x7{left:697.279988pt;}
.x10{left:717.279988pt;}
}




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