
    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_d1eaa1c61f966eb4736dd1e1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4d5ba42c97e9b71a28cb2869.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_5293ba8ae3f1b568f9858220.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c8687fb658781df221b25096.woff')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_567acc201a8b66e3824fe495.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_75db79f9d529bade16d4a816.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_74125bb58712abe08d94e7c8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9a2f1dddc58a95953d0e22a6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1e6d3a8e1ff549621c8d6c7e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.987305;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_c8a8298c67b3509e44667318.woff')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:36.000000px;}
.v1{vertical-align:41.940000px;}
.v4{vertical-align:48.000000px;}
.v3{vertical-align:54.600000px;}
.lsc{letter-spacing:-3.000000px;}
.lse{letter-spacing:-2.994000px;}
.lsb{letter-spacing:-2.988000px;}
.lsd{letter-spacing:-2.700000px;}
.ls1c{letter-spacing:-0.192000px;}
.ls16{letter-spacing:-0.126000px;}
.ls15{letter-spacing:-0.114000px;}
.lsa{letter-spacing:-0.012000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.132000px;}
.ls9{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.192000px;}
.ls10{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.660000px;}
.ls17{letter-spacing:0.792000px;}
.ls19{letter-spacing:0.984000px;}
.ls7{letter-spacing:58.320000px;}
.ls11{letter-spacing:63.984000px;}
.ls1b{letter-spacing:177.384000px;}
.ls1a{letter-spacing:177.534000px;}
.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;}
}
.wsc{word-spacing:-18.216000px;}
.ws12{word-spacing:-18.192000px;}
.wsd{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.808000px;}
.wsa{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.wse{word-spacing:-11.106000px;}
.wsf{word-spacing:-11.094000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws10{word-spacing:-0.048000px;}
.wsb{word-spacing:0.000000px;}
.ws11{word-spacing:0.036000px;}
._12{margin-left:-4.608000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._a{width:2.088000px;}
._7{width:3.096000px;}
._8{width:4.176000px;}
._9{width:5.472000px;}
._15{width:6.912000px;}
._13{width:7.992000px;}
._14{width:9.174000px;}
._20{width:10.458000px;}
._4{width:11.592000px;}
._5{width:12.846000px;}
._b{width:14.298000px;}
._d{width:15.642000px;}
._16{width:16.662000px;}
._6{width:19.728000px;}
._c{width:20.952000px;}
._e{width:22.608000px;}
._f{width:24.006000px;}
._19{width:25.344000px;}
._1a{width:27.000000px;}
._1b{width:28.656000px;}
._2c{width:29.736000px;}
._37{width:30.744000px;}
._1d{width:31.752000px;}
._1e{width:32.760000px;}
._17{width:34.344000px;}
._1f{width:35.928000px;}
._33{width:37.008000px;}
._22{width:38.088000px;}
._10{width:39.888000px;}
._11{width:41.022000px;}
._21{width:42.480000px;}
._2a{width:43.878000px;}
._32{width:44.928000px;}
._2d{width:46.296000px;}
._2e{width:47.544000px;}
._28{width:48.816000px;}
._29{width:49.854000px;}
._31{width:51.048000px;}
._3a{width:52.086000px;}
._1c{width:53.136000px;}
._24{width:54.576000px;}
._25{width:55.584000px;}
._43{width:57.222000px;}
._26{width:59.184000px;}
._27{width:60.192000px;}
._34{width:61.200000px;}
._36{width:62.304000px;}
._38{width:64.512000px;}
._18{width:65.736000px;}
._3b{width:67.062000px;}
._39{width:68.328000px;}
._3c{width:69.966000px;}
._2b{width:72.288000px;}
._3d{width:73.728000px;}
._40{width:74.880000px;}
._3e{width:77.544000px;}
._3f{width:78.840000px;}
._23{width:82.944000px;}
._2f{width:92.304000px;}
._30{width:93.312000px;}
._42{width:97.344000px;}
._41{width:104.688000px;}
._35{width:106.116000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y3f{bottom:3.750000px;}
.y20{bottom:3.900000px;}
.y22{bottom:3.915000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y42{bottom:18.150000px;}
.y7f{bottom:18.300000px;}
.y3b{bottom:19.350000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y3e{bottom:22.650000px;}
.y1f{bottom:24.600000px;}
.y84{bottom:24.615000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y41{bottom:37.200000px;}
.y3a{bottom:38.400000px;}
.y3d{bottom:41.700000px;}
.y1e{bottom:45.300000px;}
.y7d{bottom:45.330000px;}
.y24{bottom:45.345000px;}
.y3{bottom:57.637500px;}
.y45{bottom:60.600000px;}
.y1d{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y1c{bottom:86.700000px;}
.y3c{bottom:104.287500px;}
.y1b{bottom:107.400000px;}
.ye6{bottom:108.037500px;}
.ya4{bottom:115.837500px;}
.yc2{bottom:120.037500px;}
.ya5{bottom:126.637500px;}
.y1a{bottom:128.100000px;}
.ye5{bottom:131.887500px;}
.ya3{bottom:139.687500px;}
.yc1{bottom:143.737500px;}
.y19{bottom:148.800000px;}
.y51{bottom:148.987500px;}
.y7b{bottom:150.495000px;}
.ye4{bottom:155.580000px;}
.y39{bottom:162.045000px;}
.ya2{bottom:163.545000px;}
.yc0{bottom:167.595000px;}
.y18{bottom:169.500000px;}
.y50{bottom:172.680000px;}
.y7a{bottom:174.345000px;}
.ye3{bottom:179.430000px;}
.ya1{bottom:187.245000px;}
.y17{bottom:190.200000px;}
.ybf{bottom:191.430000px;}
.y4f{bottom:196.545000px;}
.y79{bottom:198.195000px;}
.ye2{bottom:203.295000px;}
.y16{bottom:210.900000px;}
.ya0{bottom:211.095000px;}
.ybe{bottom:215.145000px;}
.y4e{bottom:220.395000px;}
.y78{bottom:221.895000px;}
.y38{bottom:223.395000px;}
.ye1{bottom:226.995000px;}
.y9f{bottom:234.945000px;}
.ybd{bottom:238.995000px;}
.y4d{bottom:244.095000px;}
.y77{bottom:245.745000px;}
.y37{bottom:247.245000px;}
.ye0{bottom:250.845000px;}
.y9e{bottom:258.795000px;}
.ybc{bottom:262.845000px;}
.y4c{bottom:267.945000px;}
.y76{bottom:269.595000px;}
.y36{bottom:271.095000px;}
.ydf{bottom:274.695000px;}
.y9d{bottom:282.495000px;}
.ybb{bottom:286.695000px;}
.y4b{bottom:291.795000px;}
.y75{bottom:293.295000px;}
.y35{bottom:294.795000px;}
.yde{bottom:298.395000px;}
.y9c{bottom:306.345000px;}
.yba{bottom:310.380000px;}
.y4a{bottom:315.495000px;}
.y74{bottom:317.130000px;}
.y34{bottom:318.645000px;}
.ydd{bottom:322.245000px;}
.y9b{bottom:330.195000px;}
.yb9{bottom:334.245000px;}
.y49{bottom:339.345000px;}
.y73{bottom:340.995000px;}
.y33{bottom:342.495000px;}
.ydc{bottom:346.095000px;}
.y9a{bottom:353.880000px;}
.yb8{bottom:358.080000px;}
.y48{bottom:363.195000px;}
.y72{bottom:364.695000px;}
.y32{bottom:366.345000px;}
.ydb{bottom:369.945000px;}
.y99{bottom:377.745000px;}
.yb7{bottom:381.825000px;}
.y47{bottom:386.925000px;}
.y71{bottom:388.575000px;}
.y31{bottom:390.075000px;}
.yda{bottom:393.675000px;}
.y98{bottom:401.625000px;}
.y46{bottom:404.475000px;}
.yb6{bottom:405.675000px;}
.y70{bottom:412.425000px;}
.y30{bottom:413.925000px;}
.yd9{bottom:417.525000px;}
.y97{bottom:425.325000px;}
.yb5{bottom:429.525000px;}
.y6f{bottom:436.125000px;}
.y2f{bottom:437.775000px;}
.yd8{bottom:441.375000px;}
.y96{bottom:449.175000px;}
.yb4{bottom:453.225000px;}
.y6e{bottom:459.975000px;}
.y2e{bottom:461.475000px;}
.yd7{bottom:465.075000px;}
.y95{bottom:473.025000px;}
.yb3{bottom:477.075000px;}
.y44{bottom:481.125000px;}
.y6d{bottom:483.825000px;}
.y2d{bottom:485.325000px;}
.yd6{bottom:488.925000px;}
.y94{bottom:496.725000px;}
.yb2{bottom:500.925000px;}
.y6c{bottom:507.525000px;}
.y2c{bottom:509.175000px;}
.yd5{bottom:512.775000px;}
.y93{bottom:520.575000px;}
.yb1{bottom:524.625000px;}
.y6b{bottom:531.375000px;}
.y2b{bottom:532.875000px;}
.yd4{bottom:536.475000px;}
.y92{bottom:544.425000px;}
.yb0{bottom:545.175000px;}
.y6a{bottom:555.225000px;}
.y2a{bottom:556.725000px;}
.yaf{bottom:557.175000px;}
.y43{bottom:557.775000px;}
.yd3{bottom:560.325000px;}
.y91{bottom:568.125000px;}
.y69{bottom:579.075000px;}
.y29{bottom:580.575000px;}
.yd2{bottom:584.175000px;}
.y90{bottom:591.975000px;}
.yae{bottom:593.025000px;}
.y68{bottom:602.775000px;}
.y28{bottom:604.275000px;}
.yd1{bottom:607.875000px;}
.y40{bottom:615.525000px;}
.y8f{bottom:615.825000px;}
.yad{bottom:616.875000px;}
.y67{bottom:626.625000px;}
.y27{bottom:628.125000px;}
.yd0{bottom:631.725000px;}
.y8e{bottom:639.675000px;}
.yac{bottom:640.575000px;}
.y66{bottom:650.475000px;}
.y26{bottom:651.975000px;}
.ycf{bottom:655.575000px;}
.y8d{bottom:663.375000px;}
.yab{bottom:664.425000px;}
.y65{bottom:674.175000px;}
.yce{bottom:679.275000px;}
.y25{bottom:684.675000px;}
.y8c{bottom:687.225000px;}
.yaa{bottom:688.275000px;}
.y64{bottom:698.025000px;}
.y23{bottom:701.475000px;}
.ycd{bottom:703.125000px;}
.y8b{bottom:711.075000px;}
.ya9{bottom:711.975000px;}
.y63{bottom:721.875000px;}
.ycc{bottom:726.975000px;}
.y8a{bottom:734.775000px;}
.ya8{bottom:735.825000px;}
.y62{bottom:745.620000px;}
.ycb{bottom:750.720000px;}
.ya7{bottom:755.970000px;}
.y89{bottom:758.670000px;}
.y21{bottom:763.605000px;}
.ya6{bottom:764.970000px;}
.y61{bottom:769.470000px;}
.yca{bottom:774.570000px;}
.y88{bottom:782.520000px;}
.y15{bottom:784.320000px;}
.y60{bottom:793.320000px;}
.yc9{bottom:798.420000px;}
.y87{bottom:806.205000px;}
.y5f{bottom:817.020000px;}
.yc8{bottom:822.270000px;}
.y86{bottom:830.070000px;}
.y5e{bottom:840.870000px;}
.yc7{bottom:845.955000px;}
.y85{bottom:853.920000px;}
.y5d{bottom:864.720000px;}
.yc6{bottom:869.820000px;}
.y83{bottom:871.455000px;}
.y5c{bottom:888.420000px;}
.yc5{bottom:893.670000px;}
.y5b{bottom:912.270000px;}
.y82{bottom:913.620000px;}
.yc4{bottom:917.370000px;}
.y5a{bottom:936.120000px;}
.yc3{bottom:937.320000px;}
.y81{bottom:949.320000px;}
.y59{bottom:959.970000px;}
.y58{bottom:983.670000px;}
.y80{bottom:985.170000px;}
.y57{bottom:1007.520000px;}
.y14{bottom:1015.620000px;}
.y7e{bottom:1020.870000px;}
.y56{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y55{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y7c{bottom:1056.720000px;}
.y11{bottom:1076.220000px;}
.y54{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y53{bottom:1102.800000px;}
.y52{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.he{height:20.700000px;}
.h16{height:34.950000px;}
.h15{height:35.085000px;}
.h17{height:35.100000px;}
.h18{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h19{height:50.484375px;}
.h13{height:52.500000px;}
.h7{height:52.998047px;}
.h10{height:53.700000px;}
.h5{height:55.942383px;}
.h12{height:57.000000px;}
.h4{height:58.886719px;}
.hf{height:62.137500px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h11{height:66.515625px;}
.h1f{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h1a{height:74.004654px;}
.h14{height:75.900000px;}
.h2{height:82.441406px;}
.h1b{height:84.921445px;}
.h1c{height:106.664062px;}
.h1d{height:115.279688px;}
.h1e{height:118.628906px;}
.hd{height:227.700000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:32.100000px;}
.wf{width:84.300000px;}
.wc{width:84.337500px;}
.we{width:98.550000px;}
.wa{width:98.587500px;}
.w11{width:105.487500px;}
.w12{width:126.900000px;}
.w10{width:147.750000px;}
.wb{width:174.885000px;}
.wd{width:175.095000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x19{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x24{left:69.599987px;}
.x1b{left:76.200000px;}
.x10{left:83.099987px;}
.x1a{left:95.699987px;}
.x18{left:100.200000px;}
.x17{left:104.700000px;}
.xd{left:106.980000px;}
.x28{left:112.199987px;}
.x6{left:121.687500px;}
.x2a{left:123.187487px;}
.xa{left:128.130000px;}
.x1c{left:175.545000px;}
.x29{left:182.894987px;}
.x2b{left:206.444987px;}
.x11{left:282.344987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x1d{left:351.345000px;}
.x13{left:406.424987px;}
.x1f{left:458.025000px;}
.x14{left:481.724987px;}
.x23{left:484.274987px;}
.x20{left:490.875000px;}
.x26{left:499.874987px;}
.x22{left:510.374987px;}
.x27{left:526.874987px;}
.x15{left:541.124987px;}
.x12{left:552.524987px;}
.x1e{left:590.175000px;}
.x25{left:606.525000px;}
.xc{left:625.425000px;}
.xf{left:713.655000px;}
.x21{left:766.020000px;}
.x2{left:819.119987px;}
.x16{left:850.619987px;}
.x2c{left:857.819987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:32.000000pt;}
.v1{vertical-align:37.280000pt;}
.v4{vertical-align:42.666667pt;}
.v3{vertical-align:48.533333pt;}
.lsc{letter-spacing:-2.666667pt;}
.lse{letter-spacing:-2.661333pt;}
.lsb{letter-spacing:-2.656000pt;}
.lsd{letter-spacing:-2.400000pt;}
.ls1c{letter-spacing:-0.170667pt;}
.ls16{letter-spacing:-0.112000pt;}
.ls15{letter-spacing:-0.101333pt;}
.lsa{letter-spacing:-0.010667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.117333pt;}
.ls9{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.170667pt;}
.ls10{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.704000pt;}
.ls19{letter-spacing:0.874667pt;}
.ls7{letter-spacing:51.840000pt;}
.ls11{letter-spacing:56.874667pt;}
.ls1b{letter-spacing:157.674667pt;}
.ls1a{letter-spacing:157.808000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws12{word-spacing:-16.170667pt;}
.wsd{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.829333pt;}
.wsa{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.wse{word-spacing:-9.872000pt;}
.wsf{word-spacing:-9.861333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws10{word-spacing:-0.042667pt;}
.wsb{word-spacing:0.000000pt;}
.ws11{word-spacing:0.032000pt;}
._12{margin-left:-4.096000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._a{width:1.856000pt;}
._7{width:2.752000pt;}
._8{width:3.712000pt;}
._9{width:4.864000pt;}
._15{width:6.144000pt;}
._13{width:7.104000pt;}
._14{width:8.154667pt;}
._20{width:9.296000pt;}
._4{width:10.304000pt;}
._5{width:11.418667pt;}
._b{width:12.709333pt;}
._d{width:13.904000pt;}
._16{width:14.810667pt;}
._6{width:17.536000pt;}
._c{width:18.624000pt;}
._e{width:20.096000pt;}
._f{width:21.338667pt;}
._19{width:22.528000pt;}
._1a{width:24.000000pt;}
._1b{width:25.472000pt;}
._2c{width:26.432000pt;}
._37{width:27.328000pt;}
._1d{width:28.224000pt;}
._1e{width:29.120000pt;}
._17{width:30.528000pt;}
._1f{width:31.936000pt;}
._33{width:32.896000pt;}
._22{width:33.856000pt;}
._10{width:35.456000pt;}
._11{width:36.464000pt;}
._21{width:37.760000pt;}
._2a{width:39.002667pt;}
._32{width:39.936000pt;}
._2d{width:41.152000pt;}
._2e{width:42.261333pt;}
._28{width:43.392000pt;}
._29{width:44.314667pt;}
._31{width:45.376000pt;}
._3a{width:46.298667pt;}
._1c{width:47.232000pt;}
._24{width:48.512000pt;}
._25{width:49.408000pt;}
._43{width:50.864000pt;}
._26{width:52.608000pt;}
._27{width:53.504000pt;}
._34{width:54.400000pt;}
._36{width:55.381333pt;}
._38{width:57.344000pt;}
._18{width:58.432000pt;}
._3b{width:59.610667pt;}
._39{width:60.736000pt;}
._3c{width:62.192000pt;}
._2b{width:64.256000pt;}
._3d{width:65.536000pt;}
._40{width:66.560000pt;}
._3e{width:68.928000pt;}
._3f{width:70.080000pt;}
._23{width:73.728000pt;}
._2f{width:82.048000pt;}
._30{width:82.944000pt;}
._42{width:86.528000pt;}
._41{width:93.056000pt;}
._35{width:94.325333pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y3f{bottom:3.333333pt;}
.y20{bottom:3.466667pt;}
.y22{bottom:3.480000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y42{bottom:16.133333pt;}
.y7f{bottom:16.266667pt;}
.y3b{bottom:17.200000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y3e{bottom:20.133333pt;}
.y1f{bottom:21.866667pt;}
.y84{bottom:21.880000pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y41{bottom:33.066667pt;}
.y3a{bottom:34.133333pt;}
.y3d{bottom:37.066667pt;}
.y1e{bottom:40.266667pt;}
.y7d{bottom:40.293333pt;}
.y24{bottom:40.306667pt;}
.y3{bottom:51.233333pt;}
.y45{bottom:53.866667pt;}
.y1d{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y1c{bottom:77.066667pt;}
.y3c{bottom:92.700000pt;}
.y1b{bottom:95.466667pt;}
.ye6{bottom:96.033333pt;}
.ya4{bottom:102.966667pt;}
.yc2{bottom:106.700000pt;}
.ya5{bottom:112.566667pt;}
.y1a{bottom:113.866667pt;}
.ye5{bottom:117.233333pt;}
.ya3{bottom:124.166667pt;}
.yc1{bottom:127.766667pt;}
.y19{bottom:132.266667pt;}
.y51{bottom:132.433333pt;}
.y7b{bottom:133.773333pt;}
.ye4{bottom:138.293333pt;}
.y39{bottom:144.040000pt;}
.ya2{bottom:145.373333pt;}
.yc0{bottom:148.973333pt;}
.y18{bottom:150.666667pt;}
.y50{bottom:153.493333pt;}
.y7a{bottom:154.973333pt;}
.ye3{bottom:159.493333pt;}
.ya1{bottom:166.440000pt;}
.y17{bottom:169.066667pt;}
.ybf{bottom:170.160000pt;}
.y4f{bottom:174.706667pt;}
.y79{bottom:176.173333pt;}
.ye2{bottom:180.706667pt;}
.y16{bottom:187.466667pt;}
.ya0{bottom:187.640000pt;}
.ybe{bottom:191.240000pt;}
.y4e{bottom:195.906667pt;}
.y78{bottom:197.240000pt;}
.y38{bottom:198.573333pt;}
.ye1{bottom:201.773333pt;}
.y9f{bottom:208.840000pt;}
.ybd{bottom:212.440000pt;}
.y4d{bottom:216.973333pt;}
.y77{bottom:218.440000pt;}
.y37{bottom:219.773333pt;}
.ye0{bottom:222.973333pt;}
.y9e{bottom:230.040000pt;}
.ybc{bottom:233.640000pt;}
.y4c{bottom:238.173333pt;}
.y76{bottom:239.640000pt;}
.y36{bottom:240.973333pt;}
.ydf{bottom:244.173333pt;}
.y9d{bottom:251.106667pt;}
.ybb{bottom:254.840000pt;}
.y4b{bottom:259.373333pt;}
.y75{bottom:260.706667pt;}
.y35{bottom:262.040000pt;}
.yde{bottom:265.240000pt;}
.y9c{bottom:272.306667pt;}
.yba{bottom:275.893333pt;}
.y4a{bottom:280.440000pt;}
.y74{bottom:281.893333pt;}
.y34{bottom:283.240000pt;}
.ydd{bottom:286.440000pt;}
.y9b{bottom:293.506667pt;}
.yb9{bottom:297.106667pt;}
.y49{bottom:301.640000pt;}
.y73{bottom:303.106667pt;}
.y33{bottom:304.440000pt;}
.ydc{bottom:307.640000pt;}
.y9a{bottom:314.560000pt;}
.yb8{bottom:318.293333pt;}
.y48{bottom:322.840000pt;}
.y72{bottom:324.173333pt;}
.y32{bottom:325.640000pt;}
.ydb{bottom:328.840000pt;}
.y99{bottom:335.773333pt;}
.yb7{bottom:339.400000pt;}
.y47{bottom:343.933333pt;}
.y71{bottom:345.400000pt;}
.y31{bottom:346.733333pt;}
.yda{bottom:349.933333pt;}
.y98{bottom:357.000000pt;}
.y46{bottom:359.533333pt;}
.yb6{bottom:360.600000pt;}
.y70{bottom:366.600000pt;}
.y30{bottom:367.933333pt;}
.yd9{bottom:371.133333pt;}
.y97{bottom:378.066667pt;}
.yb5{bottom:381.800000pt;}
.y6f{bottom:387.666667pt;}
.y2f{bottom:389.133333pt;}
.yd8{bottom:392.333333pt;}
.y96{bottom:399.266667pt;}
.yb4{bottom:402.866667pt;}
.y6e{bottom:408.866667pt;}
.y2e{bottom:410.200000pt;}
.yd7{bottom:413.400000pt;}
.y95{bottom:420.466667pt;}
.yb3{bottom:424.066667pt;}
.y44{bottom:427.666667pt;}
.y6d{bottom:430.066667pt;}
.y2d{bottom:431.400000pt;}
.yd6{bottom:434.600000pt;}
.y94{bottom:441.533333pt;}
.yb2{bottom:445.266667pt;}
.y6c{bottom:451.133333pt;}
.y2c{bottom:452.600000pt;}
.yd5{bottom:455.800000pt;}
.y93{bottom:462.733333pt;}
.yb1{bottom:466.333333pt;}
.y6b{bottom:472.333333pt;}
.y2b{bottom:473.666667pt;}
.yd4{bottom:476.866667pt;}
.y92{bottom:483.933333pt;}
.yb0{bottom:484.600000pt;}
.y6a{bottom:493.533333pt;}
.y2a{bottom:494.866667pt;}
.yaf{bottom:495.266667pt;}
.y43{bottom:495.800000pt;}
.yd3{bottom:498.066667pt;}
.y91{bottom:505.000000pt;}
.y69{bottom:514.733333pt;}
.y29{bottom:516.066667pt;}
.yd2{bottom:519.266667pt;}
.y90{bottom:526.200000pt;}
.yae{bottom:527.133333pt;}
.y68{bottom:535.800000pt;}
.y28{bottom:537.133333pt;}
.yd1{bottom:540.333333pt;}
.y40{bottom:547.133333pt;}
.y8f{bottom:547.400000pt;}
.yad{bottom:548.333333pt;}
.y67{bottom:557.000000pt;}
.y27{bottom:558.333333pt;}
.yd0{bottom:561.533333pt;}
.y8e{bottom:568.600000pt;}
.yac{bottom:569.400000pt;}
.y66{bottom:578.200000pt;}
.y26{bottom:579.533333pt;}
.ycf{bottom:582.733333pt;}
.y8d{bottom:589.666667pt;}
.yab{bottom:590.600000pt;}
.y65{bottom:599.266667pt;}
.yce{bottom:603.800000pt;}
.y25{bottom:608.600000pt;}
.y8c{bottom:610.866667pt;}
.yaa{bottom:611.800000pt;}
.y64{bottom:620.466667pt;}
.y23{bottom:623.533333pt;}
.ycd{bottom:625.000000pt;}
.y8b{bottom:632.066667pt;}
.ya9{bottom:632.866667pt;}
.y63{bottom:641.666667pt;}
.ycc{bottom:646.200000pt;}
.y8a{bottom:653.133333pt;}
.ya8{bottom:654.066667pt;}
.y62{bottom:662.773333pt;}
.ycb{bottom:667.306667pt;}
.ya7{bottom:671.973333pt;}
.y89{bottom:674.373333pt;}
.y21{bottom:678.760000pt;}
.ya6{bottom:679.973333pt;}
.y61{bottom:683.973333pt;}
.yca{bottom:688.506667pt;}
.y88{bottom:695.573333pt;}
.y15{bottom:697.173333pt;}
.y60{bottom:705.173333pt;}
.yc9{bottom:709.706667pt;}
.y87{bottom:716.626667pt;}
.y5f{bottom:726.240000pt;}
.yc8{bottom:730.906667pt;}
.y86{bottom:737.840000pt;}
.y5e{bottom:747.440000pt;}
.yc7{bottom:751.960000pt;}
.y85{bottom:759.040000pt;}
.y5d{bottom:768.640000pt;}
.yc6{bottom:773.173333pt;}
.y83{bottom:774.626667pt;}
.y5c{bottom:789.706667pt;}
.yc5{bottom:794.373333pt;}
.y5b{bottom:810.906667pt;}
.y82{bottom:812.106667pt;}
.yc4{bottom:815.440000pt;}
.y5a{bottom:832.106667pt;}
.yc3{bottom:833.173333pt;}
.y81{bottom:843.840000pt;}
.y59{bottom:853.306667pt;}
.y58{bottom:874.373333pt;}
.y80{bottom:875.706667pt;}
.y57{bottom:895.573333pt;}
.y14{bottom:902.773333pt;}
.y7e{bottom:907.440000pt;}
.y56{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y55{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y7c{bottom:939.306667pt;}
.y11{bottom:956.640000pt;}
.y54{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y53{bottom:980.266667pt;}
.y52{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.he{height:18.400000pt;}
.h16{height:31.066667pt;}
.h15{height:31.186667pt;}
.h17{height:31.200000pt;}
.h18{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h19{height:44.875000pt;}
.h13{height:46.666667pt;}
.h7{height:47.109375pt;}
.h10{height:47.733333pt;}
.h5{height:49.726562pt;}
.h12{height:50.666667pt;}
.h4{height:52.343750pt;}
.hf{height:55.233333pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h11{height:59.125000pt;}
.h1f{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h1a{height:65.781915pt;}
.h14{height:67.466667pt;}
.h2{height:73.281250pt;}
.h1b{height:75.485729pt;}
.h1c{height:94.812500pt;}
.h1d{height:102.470833pt;}
.h1e{height:105.447917pt;}
.hd{height:202.400000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:28.533333pt;}
.wf{width:74.933333pt;}
.wc{width:74.966667pt;}
.we{width:87.600000pt;}
.wa{width:87.633333pt;}
.w11{width:93.766667pt;}
.w12{width:112.800000pt;}
.w10{width:131.333333pt;}
.wb{width:155.453333pt;}
.wd{width:155.640000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x19{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x24{left:61.866655pt;}
.x1b{left:67.733333pt;}
.x10{left:73.866655pt;}
.x1a{left:85.066655pt;}
.x18{left:89.066667pt;}
.x17{left:93.066667pt;}
.xd{left:95.093333pt;}
.x28{left:99.733322pt;}
.x6{left:108.166667pt;}
.x2a{left:109.499988pt;}
.xa{left:113.893333pt;}
.x1c{left:156.040000pt;}
.x29{left:162.573322pt;}
.x2b{left:183.506655pt;}
.x11{left:250.973322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x1d{left:312.306667pt;}
.x13{left:361.266655pt;}
.x1f{left:407.133333pt;}
.x14{left:428.199988pt;}
.x23{left:430.466655pt;}
.x20{left:436.333333pt;}
.x26{left:444.333322pt;}
.x22{left:453.666655pt;}
.x27{left:468.333322pt;}
.x15{left:480.999988pt;}
.x12{left:491.133322pt;}
.x1e{left:524.600000pt;}
.x25{left:539.133333pt;}
.xc{left:555.933333pt;}
.xf{left:634.360000pt;}
.x21{left:680.906667pt;}
.x2{left:728.106655pt;}
.x16{left:756.106655pt;}
.x2c{left:762.506655pt;}
}




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