
    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_604eaa094f459304c8598726.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;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_5e6f82266077c4a7167c31bb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_013d89057cba55786e84cea9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.862305;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_ad5c4d7128986815e61f09de.woff')format("woff");}.ff4{font-family:ff4;line-height:0.866211;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_5ac877048fc52b626fbd54ad.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_ef646386b036151a565518ec.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.640000px;}
.ls25{letter-spacing:-7.200000px;}
.ls15{letter-spacing:-5.112000px;}
.ls1a{letter-spacing:-4.320000px;}
.ls2b{letter-spacing:-2.808000px;}
.ls37{letter-spacing:-2.574000px;}
.ls21{letter-spacing:-2.520000px;}
.ls13{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.792000px;}
.ls39{letter-spacing:-0.726000px;}
.ls12{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.630000px;}
.ls10{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.570000px;}
.ls38{letter-spacing:-0.528000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.330000px;}
.lsf{letter-spacing:-0.315000px;}
.ls2a{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.126000px;}
.ls11{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.063000px;}
.ls31{letter-spacing:0.066000px;}
.ls20{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.132000px;}
.lse{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.216000px;}
.ls2f{letter-spacing:0.264000px;}
.ls1f{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.441000px;}
.ls6{letter-spacing:0.504000px;}
.ls32{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.567000px;}
.ls22{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.648000px;}
.ls23{letter-spacing:0.720000px;}
.ls33{letter-spacing:1.056000px;}
.ls24{letter-spacing:1.152000px;}
.ls9{letter-spacing:3.150000px;}
.ls27{letter-spacing:4.104000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.380000px;}
.ls19{letter-spacing:5.112000px;}
.ls2e{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls18{letter-spacing:7.992000px;}
.ls2{letter-spacing:10.200000px;}
.ls29{letter-spacing:10.296000px;}
.ls28{letter-spacing:10.368000px;}
.ls35{letter-spacing:11.088000px;}
.ls36{letter-spacing:19.800000px;}
.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;}
}
.ws11{word-spacing:-22.860000px;}
.wsa{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.568000px;}
.wsb{word-spacing:-17.496000px;}
.ws9{word-spacing:-17.424000px;}
.ws6{word-spacing:-17.280000px;}
.ws5{word-spacing:-16.992000px;}
.ws0{word-spacing:-16.860000px;}
.ws12{word-spacing:-16.368000px;}
.ws13{word-spacing:-16.302000px;}
.ws10{word-spacing:-16.002000px;}
.ws14{word-spacing:-15.972000px;}
.wsd{word-spacing:-15.624000px;}
.ws2{word-spacing:-15.561000px;}
.wse{word-spacing:-15.435000px;}
.wsf{word-spacing:-15.246000px;}
.ws1{word-spacing:-15.183000px;}
.ws8{word-spacing:-12.139200px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-22.308000px;}
._15{margin-left:-16.758000px;}
._11{margin-left:-14.832000px;}
._7{margin-left:-12.750000px;}
._8{margin-left:-10.608000px;}
._5{margin-left:-9.426000px;}
._6{margin-left:-8.058000px;}
._2{margin-left:-6.732000px;}
._3{margin-left:-5.610000px;}
._0{margin-left:-3.906000px;}
._a{margin-left:-2.112000px;}
._10{margin-left:-1.008000px;}
._b{width:1.774200px;}
._9{width:3.109800px;}
._1{width:4.620000px;}
._f{width:5.770200px;}
._4{width:7.140000px;}
._e{width:8.208000px;}
._c{width:10.105800px;}
._d{width:11.839200px;}
._13{width:13.358400px;}
._16{width:16.071000px;}
._17{width:20.518200px;}
._12{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs8{font-size:43.200000px;}
.fs5{font-size:43.800000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.337550px;}
.y68{bottom:140.311650px;}
.y22{bottom:143.416200px;}
.y44{bottom:143.470950px;}
.yec{bottom:143.554950px;}
.yca{bottom:144.960000px;}
.ya8{bottom:145.252500px;}
.y21{bottom:161.859450px;}
.y67{bottom:162.363150px;}
.yc9{bottom:164.017500px;}
.y43{bottom:164.764950px;}
.yeb{bottom:165.604950px;}
.ya7{bottom:167.608500px;}
.y103{bottom:169.404600px;}
.y20{bottom:180.302700px;}
.yc8{bottom:183.075000px;}
.y42{bottom:186.058950px;}
.yea{bottom:187.654950px;}
.ya6{bottom:189.964500px;}
.y1f{bottom:198.745950px;}
.y85{bottom:199.208550px;}
.y66{bottom:200.062500px;}
.yc7{bottom:202.132500px;}
.y102{bottom:202.494600px;}
.y41{bottom:207.352950px;}
.ye9{bottom:209.704950px;}
.ya5{bottom:212.320500px;}
.y1e{bottom:217.189200px;}
.yc6{bottom:221.190000px;}
.y84{bottom:221.708550px;}
.y65{bottom:222.112500px;}
.y101{bottom:222.740100px;}
.y40{bottom:228.646950px;}
.ye8{bottom:231.754950px;}
.ya4{bottom:234.676500px;}
.y1d{bottom:235.632450px;}
.yc5{bottom:240.247500px;}
.y100{bottom:242.985600px;}
.y64{bottom:244.162500px;}
.y83{bottom:244.208550px;}
.y3f{bottom:249.940950px;}
.ye7{bottom:253.804950px;}
.y1c{bottom:254.075700px;}
.ya3{bottom:257.032500px;}
.yc4{bottom:259.305000px;}
.yff{bottom:263.231100px;}
.y63{bottom:266.212500px;}
.y82{bottom:266.708550px;}
.y3e{bottom:271.234950px;}
.y1b{bottom:272.518950px;}
.ye6{bottom:275.854950px;}
.yc3{bottom:278.362500px;}
.ya2{bottom:279.388500px;}
.yfe{bottom:283.476600px;}
.y62{bottom:288.262500px;}
.y81{bottom:289.208550px;}
.y1a{bottom:290.962200px;}
.y3d{bottom:292.528950px;}
.ye5{bottom:297.904950px;}
.ya1{bottom:301.744500px;}
.yfd{bottom:303.722100px;}
.y19{bottom:309.405450px;}
.y61{bottom:310.312500px;}
.y80{bottom:311.708550px;}
.y3c{bottom:313.822950px;}
.yc2{bottom:316.468500px;}
.ye4{bottom:319.954950px;}
.yfc{bottom:323.967600px;}
.ya0{bottom:324.100500px;}
.y11e{bottom:325.208550px;}
.y18{bottom:327.848700px;}
.y60{bottom:332.362500px;}
.y7f{bottom:334.208550px;}
.y3b{bottom:335.116950px;}
.yc1{bottom:339.112500px;}
.ye3{bottom:342.004950px;}
.y11d{bottom:343.208550px;}
.yfb{bottom:344.213100px;}
.y17{bottom:346.291950px;}
.y9f{bottom:346.456500px;}
.y5f{bottom:354.412500px;}
.y3a{bottom:356.410950px;}
.y7e{bottom:356.708550px;}
.y11c{bottom:361.208550px;}
.yc0{bottom:361.756500px;}
.ye2{bottom:364.054950px;}
.yfa{bottom:364.458600px;}
.y16{bottom:364.735200px;}
.y9e{bottom:368.812500px;}
.y5e{bottom:376.462500px;}
.y39{bottom:377.704950px;}
.y11b{bottom:379.208550px;}
.y15{bottom:383.178450px;}
.ybf{bottom:384.400500px;}
.yf9{bottom:384.704100px;}
.ye1{bottom:386.104950px;}
.y7d{bottom:387.712500px;}
.y9d{bottom:391.168500px;}
.y5d{bottom:398.512500px;}
.y14{bottom:401.621700px;}
.yf8{bottom:404.949600px;}
.ybe{bottom:407.044500px;}
.y38{bottom:407.508750px;}
.ye0{bottom:408.154950px;}
.y9c{bottom:413.524500px;}
.y11a{bottom:418.808550px;}
.y13{bottom:420.064950px;}
.y5c{bottom:420.562500px;}
.yf7{bottom:425.195100px;}
.ybd{bottom:429.688500px;}
.ydf{bottom:430.204950px;}
.y9b{bottom:435.880500px;}
.y12{bottom:438.508200px;}
.y5b{bottom:442.612500px;}
.yf6{bottom:445.440600px;}
.yde{bottom:452.254950px;}
.ybc{bottom:452.332500px;}
.y11{bottom:456.951450px;}
.y9a{bottom:458.236500px;}
.y119{bottom:460.208550px;}
.y5a{bottom:464.662500px;}
.yf5{bottom:465.686100px;}
.ydd{bottom:474.304950px;}
.ybb{bottom:474.976500px;}
.y10{bottom:475.394700px;}
.y7c{bottom:477.712500px;}
.y118{bottom:480.008550px;}
.y99{bottom:480.592500px;}
.yf4{bottom:485.931600px;}
.y59{bottom:486.712500px;}
.y37{bottom:492.810900px;}
.ydc{bottom:496.354950px;}
.yba{bottom:497.620500px;}
.y117{bottom:499.808550px;}
.y7b{bottom:500.212500px;}
.y98{bottom:502.948500px;}
.yf3{bottom:506.177100px;}
.y58{bottom:508.762500px;}
.yf{bottom:512.102700px;}
.y36{bottom:514.104900px;}
.ydb{bottom:518.404950px;}
.y116{bottom:519.608550px;}
.yb9{bottom:520.264500px;}
.y7a{bottom:522.712500px;}
.y97{bottom:525.304500px;}
.yf2{bottom:526.422600px;}
.y57{bottom:530.812500px;}
.ye{bottom:534.008700px;}
.y35{bottom:535.398900px;}
.y115{bottom:539.408550px;}
.yda{bottom:540.454950px;}
.yb8{bottom:542.908500px;}
.y79{bottom:545.212500px;}
.yf1{bottom:546.668100px;}
.y96{bottom:547.660500px;}
.y56{bottom:552.862500px;}
.yd{bottom:555.914700px;}
.y34{bottom:556.692900px;}
.y114{bottom:559.208550px;}
.yd9{bottom:562.504950px;}
.yb7{bottom:565.552500px;}
.yf0{bottom:566.913600px;}
.y78{bottom:567.712500px;}
.y95{bottom:570.016500px;}
.y55{bottom:574.912500px;}
.yc{bottom:577.820700px;}
.y33{bottom:577.986900px;}
.y113{bottom:579.008550px;}
.yd8{bottom:584.554950px;}
.yef{bottom:587.159100px;}
.yb6{bottom:588.196500px;}
.y77{bottom:590.212500px;}
.y94{bottom:592.372500px;}
.y54{bottom:596.962500px;}
.y112{bottom:598.808550px;}
.y32{bottom:599.280900px;}
.yb{bottom:599.726700px;}
.yd7{bottom:606.604950px;}
.yee{bottom:607.404600px;}
.yb5{bottom:610.840500px;}
.y76{bottom:612.712500px;}
.y93{bottom:614.728500px;}
.y111{bottom:618.608550px;}
.y53{bottom:619.012500px;}
.y31{bottom:620.574900px;}
.ya{bottom:621.632700px;}
.yb4{bottom:633.484500px;}
.y75{bottom:635.212500px;}
.yed{bottom:636.158550px;}
.y92{bottom:637.084500px;}
.yd6{bottom:637.158750px;}
.y110{bottom:638.408550px;}
.y52{bottom:641.062500px;}
.y30{bottom:641.868900px;}
.y9{bottom:643.538700px;}
.yb3{bottom:656.128500px;}
.y74{bottom:657.712500px;}
.y10f{bottom:658.208550px;}
.y91{bottom:659.440500px;}
.y51{bottom:663.112500px;}
.y2f{bottom:663.162900px;}
.y8{bottom:665.444700px;}
.y10e{bottom:678.008550px;}
.yb2{bottom:678.772500px;}
.y73{bottom:680.212500px;}
.y90{bottom:681.796500px;}
.y2e{bottom:684.456900px;}
.y50{bottom:685.162500px;}
.y7{bottom:695.848500px;}
.y10d{bottom:697.808550px;}
.yb1{bottom:701.416500px;}
.y72{bottom:702.712500px;}
.y8f{bottom:704.152500px;}
.y2d{bottom:705.750900px;}
.y4f{bottom:707.212500px;}
.y10c{bottom:717.608550px;}
.yb0{bottom:724.060500px;}
.y71{bottom:725.212500px;}
.yd5{bottom:725.435250px;}
.y8e{bottom:726.508500px;}
.y2c{bottom:727.044900px;}
.y4e{bottom:729.262500px;}
.y10b{bottom:737.408550px;}
.yd4{bottom:743.878500px;}
.yaf{bottom:746.704500px;}
.y70{bottom:747.712500px;}
.y2b{bottom:748.338900px;}
.y8d{bottom:748.864500px;}
.y4d{bottom:751.312500px;}
.y10a{bottom:757.208550px;}
.yd3{bottom:762.321750px;}
.yae{bottom:769.348500px;}
.y2a{bottom:769.632900px;}
.y6f{bottom:770.212500px;}
.y8c{bottom:771.220500px;}
.y4c{bottom:773.362500px;}
.y109{bottom:777.008550px;}
.yd2{bottom:780.765000px;}
.y6{bottom:783.448650px;}
.y29{bottom:790.926900px;}
.yad{bottom:791.992500px;}
.y6e{bottom:792.712500px;}
.y8b{bottom:793.576500px;}
.y4b{bottom:795.412500px;}
.y108{bottom:796.808550px;}
.yd1{bottom:799.208250px;}
.y28{bottom:812.220900px;}
.yac{bottom:814.636500px;}
.y6d{bottom:815.212500px;}
.y8a{bottom:815.932500px;}
.y107{bottom:816.608550px;}
.y4a{bottom:817.462500px;}
.yd0{bottom:817.651500px;}
.y5{bottom:824.848650px;}
.y27{bottom:833.514900px;}
.ycf{bottom:836.094750px;}
.y106{bottom:836.408550px;}
.yab{bottom:837.280500px;}
.y6c{bottom:837.712500px;}
.y89{bottom:838.288500px;}
.y49{bottom:839.512500px;}
.yce{bottom:854.538000px;}
.y26{bottom:854.808900px;}
.y4{bottom:855.448650px;}
.yaa{bottom:859.924500px;}
.y6b{bottom:860.212500px;}
.y88{bottom:860.644500px;}
.y48{bottom:861.562500px;}
.ycd{bottom:872.981250px;}
.y105{bottom:877.808550px;}
.ya9{bottom:882.568500px;}
.y6a{bottom:882.712500px;}
.y87{bottom:883.000500px;}
.y47{bottom:883.612500px;}
.ycc{bottom:891.723750px;}
.y25{bottom:893.802750px;}
.y69{bottom:905.212500px;}
.y86{bottom:905.356500px;}
.y46{bottom:905.662500px;}
.y104{bottom:906.112500px;}
.ycb{bottom:910.466250px;}
.y3{bottom:910.710000px;}
.y24{bottom:911.505750px;}
.y45{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.y23{bottom:929.208750px;}
.hb{height:26.199902px;}
.h3{height:35.663086px;}
.h7{height:37.191504px;}
.h2{height:39.990234px;}
.ha{height:40.757812px;}
.hc{height:48.399902px;}
.h5{height:50.947266px;}
.h9{height:53.494629px;}
.h4{height:56.041992px;}
.h8{height:61.136719px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:76.537200px;}
.x1{left:97.795350px;}
.x4{left:119.055150px;}
.x5{left:140.317650px;}
.x2{left:150.670350px;}
.xa{left:172.487250px;}
.x3{left:216.933000px;}
.x6{left:249.325200px;}
.x9{left:518.943600px;}
.x7{left:572.164350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.680000pt;}
.ls25{letter-spacing:-6.400000pt;}
.ls15{letter-spacing:-4.544000pt;}
.ls1a{letter-spacing:-3.840000pt;}
.ls2b{letter-spacing:-2.496000pt;}
.ls37{letter-spacing:-2.288000pt;}
.ls21{letter-spacing:-2.240000pt;}
.ls13{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls39{letter-spacing:-0.645333pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.506667pt;}
.ls38{letter-spacing:-0.469333pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.293333pt;}
.lsf{letter-spacing:-0.280000pt;}
.ls2a{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.112000pt;}
.ls11{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.056000pt;}
.ls31{letter-spacing:0.058667pt;}
.ls20{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.117333pt;}
.lse{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls2f{letter-spacing:0.234667pt;}
.ls1f{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.392000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls32{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.504000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls23{letter-spacing:0.640000pt;}
.ls33{letter-spacing:0.938667pt;}
.ls24{letter-spacing:1.024000pt;}
.ls9{letter-spacing:2.800000pt;}
.ls27{letter-spacing:3.648000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.893333pt;}
.ls19{letter-spacing:4.544000pt;}
.ls2e{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls18{letter-spacing:7.104000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls29{letter-spacing:9.152000pt;}
.ls28{letter-spacing:9.216000pt;}
.ls35{letter-spacing:9.856000pt;}
.ls36{letter-spacing:17.600000pt;}
.ws11{word-spacing:-20.320000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.616000pt;}
.wsb{word-spacing:-15.552000pt;}
.ws9{word-spacing:-15.488000pt;}
.ws6{word-spacing:-15.360000pt;}
.ws5{word-spacing:-15.104000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws12{word-spacing:-14.549333pt;}
.ws13{word-spacing:-14.490667pt;}
.ws10{word-spacing:-14.224000pt;}
.ws14{word-spacing:-14.197333pt;}
.wsd{word-spacing:-13.888000pt;}
.ws2{word-spacing:-13.832000pt;}
.wse{word-spacing:-13.720000pt;}
.wsf{word-spacing:-13.552000pt;}
.ws1{word-spacing:-13.496000pt;}
.ws8{word-spacing:-10.790400pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-19.829333pt;}
._15{margin-left:-14.896000pt;}
._11{margin-left:-13.184000pt;}
._7{margin-left:-11.333333pt;}
._8{margin-left:-9.429333pt;}
._5{margin-left:-8.378667pt;}
._6{margin-left:-7.162667pt;}
._2{margin-left:-5.984000pt;}
._3{margin-left:-4.986667pt;}
._0{margin-left:-3.472000pt;}
._a{margin-left:-1.877333pt;}
._10{margin-left:-0.896000pt;}
._b{width:1.577067pt;}
._9{width:2.764267pt;}
._1{width:4.106667pt;}
._f{width:5.129067pt;}
._4{width:6.346667pt;}
._e{width:7.296000pt;}
._c{width:8.982933pt;}
._d{width:10.523733pt;}
._13{width:11.874133pt;}
._16{width:14.285333pt;}
._17{width:18.238400pt;}
._12{width:50.598400pt;}
.fs9{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs8{font-size:38.400000pt;}
.fs5{font-size:38.933333pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.855600pt;}
.y68{bottom:124.721467pt;}
.y22{bottom:127.481067pt;}
.y44{bottom:127.529733pt;}
.yec{bottom:127.604400pt;}
.yca{bottom:128.853333pt;}
.ya8{bottom:129.113333pt;}
.y21{bottom:143.875067pt;}
.y67{bottom:144.322800pt;}
.yc9{bottom:145.793333pt;}
.y43{bottom:146.457733pt;}
.yeb{bottom:147.204400pt;}
.ya7{bottom:148.985333pt;}
.y103{bottom:150.581867pt;}
.y20{bottom:160.269067pt;}
.yc8{bottom:162.733333pt;}
.y42{bottom:165.385733pt;}
.yea{bottom:166.804400pt;}
.ya6{bottom:168.857333pt;}
.y1f{bottom:176.663067pt;}
.y85{bottom:177.074267pt;}
.y66{bottom:177.833333pt;}
.yc7{bottom:179.673333pt;}
.y102{bottom:179.995200pt;}
.y41{bottom:184.313733pt;}
.ye9{bottom:186.404400pt;}
.ya5{bottom:188.729333pt;}
.y1e{bottom:193.057067pt;}
.yc6{bottom:196.613333pt;}
.y84{bottom:197.074267pt;}
.y65{bottom:197.433333pt;}
.y101{bottom:197.991200pt;}
.y40{bottom:203.241733pt;}
.ye8{bottom:206.004400pt;}
.ya4{bottom:208.601333pt;}
.y1d{bottom:209.451067pt;}
.yc5{bottom:213.553333pt;}
.y100{bottom:215.987200pt;}
.y64{bottom:217.033333pt;}
.y83{bottom:217.074267pt;}
.y3f{bottom:222.169733pt;}
.ye7{bottom:225.604400pt;}
.y1c{bottom:225.845067pt;}
.ya3{bottom:228.473333pt;}
.yc4{bottom:230.493333pt;}
.yff{bottom:233.983200pt;}
.y63{bottom:236.633333pt;}
.y82{bottom:237.074267pt;}
.y3e{bottom:241.097733pt;}
.y1b{bottom:242.239067pt;}
.ye6{bottom:245.204400pt;}
.yc3{bottom:247.433333pt;}
.ya2{bottom:248.345333pt;}
.yfe{bottom:251.979200pt;}
.y62{bottom:256.233333pt;}
.y81{bottom:257.074267pt;}
.y1a{bottom:258.633067pt;}
.y3d{bottom:260.025733pt;}
.ye5{bottom:264.804400pt;}
.ya1{bottom:268.217333pt;}
.yfd{bottom:269.975200pt;}
.y19{bottom:275.027067pt;}
.y61{bottom:275.833333pt;}
.y80{bottom:277.074267pt;}
.y3c{bottom:278.953733pt;}
.yc2{bottom:281.305333pt;}
.ye4{bottom:284.404400pt;}
.yfc{bottom:287.971200pt;}
.ya0{bottom:288.089333pt;}
.y11e{bottom:289.074267pt;}
.y18{bottom:291.421067pt;}
.y60{bottom:295.433333pt;}
.y7f{bottom:297.074267pt;}
.y3b{bottom:297.881733pt;}
.yc1{bottom:301.433333pt;}
.ye3{bottom:304.004400pt;}
.y11d{bottom:305.074267pt;}
.yfb{bottom:305.967200pt;}
.y17{bottom:307.815067pt;}
.y9f{bottom:307.961333pt;}
.y5f{bottom:315.033333pt;}
.y3a{bottom:316.809733pt;}
.y7e{bottom:317.074267pt;}
.y11c{bottom:321.074267pt;}
.yc0{bottom:321.561333pt;}
.ye2{bottom:323.604400pt;}
.yfa{bottom:323.963200pt;}
.y16{bottom:324.209067pt;}
.y9e{bottom:327.833333pt;}
.y5e{bottom:334.633333pt;}
.y39{bottom:335.737733pt;}
.y11b{bottom:337.074267pt;}
.y15{bottom:340.603067pt;}
.ybf{bottom:341.689333pt;}
.yf9{bottom:341.959200pt;}
.ye1{bottom:343.204400pt;}
.y7d{bottom:344.633333pt;}
.y9d{bottom:347.705333pt;}
.y5d{bottom:354.233333pt;}
.y14{bottom:356.997067pt;}
.yf8{bottom:359.955200pt;}
.ybe{bottom:361.817333pt;}
.y38{bottom:362.230000pt;}
.ye0{bottom:362.804400pt;}
.y9c{bottom:367.577333pt;}
.y11a{bottom:372.274267pt;}
.y13{bottom:373.391067pt;}
.y5c{bottom:373.833333pt;}
.yf7{bottom:377.951200pt;}
.ybd{bottom:381.945333pt;}
.ydf{bottom:382.404400pt;}
.y9b{bottom:387.449333pt;}
.y12{bottom:389.785067pt;}
.y5b{bottom:393.433333pt;}
.yf6{bottom:395.947200pt;}
.yde{bottom:402.004400pt;}
.ybc{bottom:402.073333pt;}
.y11{bottom:406.179067pt;}
.y9a{bottom:407.321333pt;}
.y119{bottom:409.074267pt;}
.y5a{bottom:413.033333pt;}
.yf5{bottom:413.943200pt;}
.ydd{bottom:421.604400pt;}
.ybb{bottom:422.201333pt;}
.y10{bottom:422.573067pt;}
.y7c{bottom:424.633333pt;}
.y118{bottom:426.674267pt;}
.y99{bottom:427.193333pt;}
.yf4{bottom:431.939200pt;}
.y59{bottom:432.633333pt;}
.y37{bottom:438.054133pt;}
.ydc{bottom:441.204400pt;}
.yba{bottom:442.329333pt;}
.y117{bottom:444.274267pt;}
.y7b{bottom:444.633333pt;}
.y98{bottom:447.065333pt;}
.yf3{bottom:449.935200pt;}
.y58{bottom:452.233333pt;}
.yf{bottom:455.202400pt;}
.y36{bottom:456.982133pt;}
.ydb{bottom:460.804400pt;}
.y116{bottom:461.874267pt;}
.yb9{bottom:462.457333pt;}
.y7a{bottom:464.633333pt;}
.y97{bottom:466.937333pt;}
.yf2{bottom:467.931200pt;}
.y57{bottom:471.833333pt;}
.ye{bottom:474.674400pt;}
.y35{bottom:475.910133pt;}
.y115{bottom:479.474267pt;}
.yda{bottom:480.404400pt;}
.yb8{bottom:482.585333pt;}
.y79{bottom:484.633333pt;}
.yf1{bottom:485.927200pt;}
.y96{bottom:486.809333pt;}
.y56{bottom:491.433333pt;}
.yd{bottom:494.146400pt;}
.y34{bottom:494.838133pt;}
.y114{bottom:497.074267pt;}
.yd9{bottom:500.004400pt;}
.yb7{bottom:502.713333pt;}
.yf0{bottom:503.923200pt;}
.y78{bottom:504.633333pt;}
.y95{bottom:506.681333pt;}
.y55{bottom:511.033333pt;}
.yc{bottom:513.618400pt;}
.y33{bottom:513.766133pt;}
.y113{bottom:514.674267pt;}
.yd8{bottom:519.604400pt;}
.yef{bottom:521.919200pt;}
.yb6{bottom:522.841333pt;}
.y77{bottom:524.633333pt;}
.y94{bottom:526.553333pt;}
.y54{bottom:530.633333pt;}
.y112{bottom:532.274267pt;}
.y32{bottom:532.694133pt;}
.yb{bottom:533.090400pt;}
.yd7{bottom:539.204400pt;}
.yee{bottom:539.915200pt;}
.yb5{bottom:542.969333pt;}
.y76{bottom:544.633333pt;}
.y93{bottom:546.425333pt;}
.y111{bottom:549.874267pt;}
.y53{bottom:550.233333pt;}
.y31{bottom:551.622133pt;}
.ya{bottom:552.562400pt;}
.yb4{bottom:563.097333pt;}
.y75{bottom:564.633333pt;}
.yed{bottom:565.474267pt;}
.y92{bottom:566.297333pt;}
.yd6{bottom:566.363333pt;}
.y110{bottom:567.474267pt;}
.y52{bottom:569.833333pt;}
.y30{bottom:570.550133pt;}
.y9{bottom:572.034400pt;}
.yb3{bottom:583.225333pt;}
.y74{bottom:584.633333pt;}
.y10f{bottom:585.074267pt;}
.y91{bottom:586.169333pt;}
.y51{bottom:589.433333pt;}
.y2f{bottom:589.478133pt;}
.y8{bottom:591.506400pt;}
.y10e{bottom:602.674267pt;}
.yb2{bottom:603.353333pt;}
.y73{bottom:604.633333pt;}
.y90{bottom:606.041333pt;}
.y2e{bottom:608.406133pt;}
.y50{bottom:609.033333pt;}
.y7{bottom:618.532000pt;}
.y10d{bottom:620.274267pt;}
.yb1{bottom:623.481333pt;}
.y72{bottom:624.633333pt;}
.y8f{bottom:625.913333pt;}
.y2d{bottom:627.334133pt;}
.y4f{bottom:628.633333pt;}
.y10c{bottom:637.874267pt;}
.yb0{bottom:643.609333pt;}
.y71{bottom:644.633333pt;}
.yd5{bottom:644.831333pt;}
.y8e{bottom:645.785333pt;}
.y2c{bottom:646.262133pt;}
.y4e{bottom:648.233333pt;}
.y10b{bottom:655.474267pt;}
.yd4{bottom:661.225333pt;}
.yaf{bottom:663.737333pt;}
.y70{bottom:664.633333pt;}
.y2b{bottom:665.190133pt;}
.y8d{bottom:665.657333pt;}
.y4d{bottom:667.833333pt;}
.y10a{bottom:673.074267pt;}
.yd3{bottom:677.619333pt;}
.yae{bottom:683.865333pt;}
.y2a{bottom:684.118133pt;}
.y6f{bottom:684.633333pt;}
.y8c{bottom:685.529333pt;}
.y4c{bottom:687.433333pt;}
.y109{bottom:690.674267pt;}
.yd2{bottom:694.013333pt;}
.y6{bottom:696.398800pt;}
.y29{bottom:703.046133pt;}
.yad{bottom:703.993333pt;}
.y6e{bottom:704.633333pt;}
.y8b{bottom:705.401333pt;}
.y4b{bottom:707.033333pt;}
.y108{bottom:708.274267pt;}
.yd1{bottom:710.407333pt;}
.y28{bottom:721.974133pt;}
.yac{bottom:724.121333pt;}
.y6d{bottom:724.633333pt;}
.y8a{bottom:725.273333pt;}
.y107{bottom:725.874267pt;}
.y4a{bottom:726.633333pt;}
.yd0{bottom:726.801333pt;}
.y5{bottom:733.198800pt;}
.y27{bottom:740.902133pt;}
.ycf{bottom:743.195333pt;}
.y106{bottom:743.474267pt;}
.yab{bottom:744.249333pt;}
.y6c{bottom:744.633333pt;}
.y89{bottom:745.145333pt;}
.y49{bottom:746.233333pt;}
.yce{bottom:759.589333pt;}
.y26{bottom:759.830133pt;}
.y4{bottom:760.398800pt;}
.yaa{bottom:764.377333pt;}
.y6b{bottom:764.633333pt;}
.y88{bottom:765.017333pt;}
.y48{bottom:765.833333pt;}
.ycd{bottom:775.983333pt;}
.y105{bottom:780.274267pt;}
.ya9{bottom:784.505333pt;}
.y6a{bottom:784.633333pt;}
.y87{bottom:784.889333pt;}
.y47{bottom:785.433333pt;}
.ycc{bottom:792.643333pt;}
.y25{bottom:794.491333pt;}
.y69{bottom:804.633333pt;}
.y86{bottom:804.761333pt;}
.y46{bottom:805.033333pt;}
.y104{bottom:805.433333pt;}
.ycb{bottom:809.303333pt;}
.y3{bottom:809.520000pt;}
.y24{bottom:810.227333pt;}
.y45{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.y23{bottom:825.963333pt;}
.hb{height:23.288802pt;}
.h3{height:31.700521pt;}
.h7{height:33.059115pt;}
.h2{height:35.546875pt;}
.ha{height:36.229167pt;}
.hc{height:43.022135pt;}
.h5{height:45.286458pt;}
.h9{height:47.550781pt;}
.h4{height:49.815104pt;}
.h8{height:54.343750pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:68.033067pt;}
.x1{left:86.929200pt;}
.x4{left:105.826800pt;}
.x5{left:124.726800pt;}
.x2{left:133.929200pt;}
.xa{left:153.322000pt;}
.x3{left:192.829333pt;}
.x6{left:221.622400pt;}
.x9{left:461.283200pt;}
.x7{left:508.590533pt;}
}




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