
    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_b278a49574cc28c59da9c4b2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_90a59c6b26d18d4398f16275.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_606a2d6071c5d5ba928263a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_d12584e5b10037d7c03dca6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_3aece027ab5dfa6e76600c47.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7772d4cfeb20e8294eee039d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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:-23.940000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.940000px;}
.ls17{letter-spacing:-1.458000px;}
.ls18{letter-spacing:-1.368000px;}
.ls1b{letter-spacing:-1.236000px;}
.ls2d{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.612000px;}
.ls2e{letter-spacing:-0.513600px;}
.ls5{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.259800px;}
.ls2c{letter-spacing:-0.253200px;}
.ls13{letter-spacing:-0.206400px;}
.ls15{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls2b{letter-spacing:0.153600px;}
.ls21{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.620000px;}
.lsa{letter-spacing:5.220000px;}
.ls16{letter-spacing:8.100000px;}
.lsc{letter-spacing:8.820000px;}
.ls11{letter-spacing:9.720000px;}
.ls1{letter-spacing:10.260000px;}
.ls10{letter-spacing:10.980000px;}
.lse{letter-spacing:11.100000px;}
.ls12{letter-spacing:13.860000px;}
.ls22{letter-spacing:14.580000px;}
.ls23{letter-spacing:16.506720px;}
.ls1a{letter-spacing:18.900000px;}
.ls26{letter-spacing:20.340000px;}
.ls28{letter-spacing:22.500000px;}
.ls1d{letter-spacing:23.220000px;}
.ls29{letter-spacing:23.940000px;}
.lsf{letter-spacing:24.660000px;}
.ls27{letter-spacing:27.540000px;}
.ls25{letter-spacing:33.300000px;}
.ls20{letter-spacing:34.740000px;}
.ls1e{letter-spacing:46.026720px;}
.ls1c{letter-spacing:46.170720px;}
.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;}
}
.ws1{word-spacing:-24.300000px;}
.ws12{word-spacing:-16.632000px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.246600px;}
.ws10{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.146400px;}
.ws1b{word-spacing:-15.093600px;}
.ws4{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.733600px;}
.ws1c{word-spacing:-14.686800px;}
.ws1a{word-spacing:-14.680200px;}
.wse{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.479800px;}
.ws1e{word-spacing:-14.426400px;}
.wsb{word-spacing:-14.328000px;}
.ws9{word-spacing:-14.274000px;}
.wsa{word-spacing:-14.166000px;}
.ws1d{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.704000px;}
.ws15{word-spacing:-12.236544px;}
.ws14{word-spacing:-12.204000px;}
.ws16{word-spacing:-10.836000px;}
.ws13{word-spacing:-10.746000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.wsd{word-spacing:0.000000px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._5{margin-left:-1233.336960px;}
._1e{margin-left:-1213.672320px;}
._4{margin-left:-1171.774080px;}
._6{margin-left:-338.088960px;}
._7{margin-left:-204.600000px;}
._9{margin-left:-8.488080px;}
._8{margin-left:-5.775840px;}
._a{margin-left:-4.615680px;}
._c{margin-left:-2.830560px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._13{width:2.365680px;}
._11{width:4.188000px;}
._14{width:5.873520px;}
._d{width:7.034640px;}
._e{width:8.545680px;}
._f{width:9.864480px;}
._10{width:11.248800px;}
._b{width:12.811200px;}
._23{width:13.882560px;}
._12{width:15.979200px;}
._2b{width:17.040720px;}
._1c{width:18.075360px;}
._17{width:19.214880px;}
._16{width:20.318400px;}
._1a{width:21.859680px;}
._22{width:22.865040px;}
._15{width:23.975280px;}
._1d{width:25.375200px;}
._19{width:27.011520px;}
._18{width:28.445760px;}
._2e{width:29.459280px;}
._25{width:30.836160px;}
._1b{width:32.486640px;}
._24{width:33.488400px;}
._27{width:34.658160px;}
._26{width:35.784240px;}
._21{width:36.789360px;}
._2d{width:37.823040px;}
._2c{width:38.844000px;}
._29{width:40.436400px;}
._28{width:42.199200px;}
._2a{width:43.446720px;}
._33{width:44.566560px;}
._31{width:46.410720px;}
._20{width:47.509200px;}
._30{width:48.980400px;}
._34{width:51.908640px;}
._2f{width:53.044080px;}
._36{width:54.078960px;}
._35{width:55.935360px;}
._38{width:57.089280px;}
._1f{width:63.322800px;}
._39{width:70.015920px;}
._37{width:73.370880px;}
._3b{width:83.254320px;}
._3a{width:85.397040px;}
._32{width:95.038560px;}
.fc6{color:rgb(4,98,193);}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(88,88,88);}
.fc1{color:rgb(31,32,35);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:2.700000px;}
.y9e{bottom:3.090000px;}
.yb1{bottom:4.140000px;}
.y96{bottom:4.170000px;}
.yb6{bottom:5.760000px;}
.y7{bottom:5.940000px;}
.yb8{bottom:6.480000px;}
.yb2{bottom:6.660000px;}
.y9{bottom:11.160000px;}
.y8{bottom:11.880000px;}
.yc6{bottom:15.300000px;}
.yc5{bottom:15.480000px;}
.yba{bottom:23.040000px;}
.ybc{bottom:23.220000px;}
.y95{bottom:25.050000px;}
.yb5{bottom:25.560000px;}
.yb4{bottom:25.740000px;}
.y9d{bottom:32.250000px;}
.ya{bottom:35.820000px;}
.yc2{bottom:43.020000px;}
.ycc{bottom:43.050000px;}
.ybf{bottom:43.065000px;}
.yca{bottom:45.360000px;}
.ycd{bottom:45.390000px;}
.yc3{bottom:45.540000px;}
.yc0{bottom:45.585000px;}
.y6{bottom:51.120000px;}
.y9c{bottom:61.410000px;}
.yc8{bottom:62.820000px;}
.yc9{bottom:65.160000px;}
.y90{bottom:76.680000px;}
.y70{bottom:87.660000px;}
.y9b{bottom:90.390000px;}
.y93{bottom:93.960000px;}
.y38{bottom:95.940000px;}
.yaf{bottom:96.480000px;}
.y8f{bottom:96.660000px;}
.y6f{bottom:107.460000px;}
.y92{bottom:113.760000px;}
.y37{bottom:115.740000px;}
.y8e{bottom:116.460000px;}
.y9a{bottom:119.370000px;}
.y6e{bottom:127.260000px;}
.yae{bottom:133.380000px;}
.y91{bottom:133.560000px;}
.y36{bottom:135.720000px;}
.y8d{bottom:136.260000px;}
.y6d{bottom:147.060000px;}
.y99{bottom:148.350000px;}
.y35{bottom:155.520000px;}
.y8c{bottom:156.060000px;}
.ya1{bottom:163.620000px;}
.y6c{bottom:166.860000px;}
.y34{bottom:175.320000px;}
.y8b{bottom:175.860000px;}
.y98{bottom:176.610000px;}
.y6b{bottom:186.840000px;}
.y9f{bottom:193.500000px;}
.y33{bottom:195.120000px;}
.y8a{bottom:195.840000px;}
.y6a{bottom:206.640000px;}
.y97{bottom:211.320000px;}
.y32{bottom:214.950000px;}
.y89{bottom:215.670000px;}
.y69{bottom:226.470000px;}
.y31{bottom:234.930000px;}
.y88{bottom:235.470000px;}
.y68{bottom:246.270000px;}
.y30{bottom:254.730000px;}
.y87{bottom:255.270000px;}
.y67{bottom:266.070000px;}
.y2f{bottom:274.530000px;}
.y86{bottom:275.070000px;}
.y66{bottom:286.050000px;}
.y2e{bottom:294.330000px;}
.y85{bottom:295.050000px;}
.y65{bottom:305.850000px;}
.y2d{bottom:314.130000px;}
.y84{bottom:314.850000px;}
.y64{bottom:325.650000px;}
.y2c{bottom:334.110000px;}
.y83{bottom:334.650000px;}
.y63{bottom:345.450000px;}
.y2b{bottom:353.910000px;}
.y82{bottom:354.450000px;}
.y62{bottom:365.250000px;}
.y2a{bottom:373.710000px;}
.y81{bottom:374.250000px;}
.y61{bottom:385.230000px;}
.y29{bottom:393.510000px;}
.y80{bottom:394.230000px;}
.y60{bottom:405.030000px;}
.y94{bottom:411.840000px;}
.y28{bottom:413.310000px;}
.y7f{bottom:414.030000px;}
.y5f{bottom:424.830000px;}
.y27{bottom:433.290000px;}
.y7e{bottom:433.830000px;}
.y5e{bottom:444.630000px;}
.y26{bottom:453.135000px;}
.y7d{bottom:453.675000px;}
.y5d{bottom:464.475000px;}
.y25{bottom:472.935000px;}
.y7c{bottom:473.475000px;}
.y5c{bottom:484.455000px;}
.y24{bottom:492.735000px;}
.y7b{bottom:493.455000px;}
.y5b{bottom:504.255000px;}
.y23{bottom:512.535000px;}
.y7a{bottom:513.255000px;}
.y5a{bottom:524.055000px;}
.y22{bottom:532.515000px;}
.y79{bottom:533.055000px;}
.y59{bottom:543.855000px;}
.y21{bottom:552.315000px;}
.y78{bottom:552.855000px;}
.y58{bottom:563.655000px;}
.yd1{bottom:572.115000px;}
.y77{bottom:572.655000px;}
.y20{bottom:574.455000px;}
.y57{bottom:583.635000px;}
.yd0{bottom:591.915000px;}
.y76{bottom:592.635000px;}
.y1f{bottom:594.255000px;}
.y56{bottom:603.435000px;}
.ycf{bottom:611.715000px;}
.y75{bottom:612.435000px;}
.y1e{bottom:614.055000px;}
.y55{bottom:623.235000px;}
.yce{bottom:631.695000px;}
.y74{bottom:632.235000px;}
.y1d{bottom:633.855000px;}
.y54{bottom:643.035000px;}
.ycb{bottom:646.455000px;}
.y73{bottom:652.035000px;}
.y1c{bottom:653.655000px;}
.y53{bottom:662.835000px;}
.y72{bottom:671.835000px;}
.y1b{bottom:673.635000px;}
.y52{bottom:682.845000px;}
.y71{bottom:691.845000px;}
.y1a{bottom:693.465000px;}
.yad{bottom:702.645000px;}
.yc7{bottom:706.785000px;}
.y51{bottom:711.645000px;}
.y19{bottom:713.265000px;}
.yac{bottom:722.445000px;}
.y50{bottom:731.445000px;}
.y18{bottom:733.065000px;}
.yab{bottom:742.245000px;}
.y4f{bottom:751.245000px;}
.y17{bottom:752.865000px;}
.yaa{bottom:762.045000px;}
.y4e{bottom:771.045000px;}
.y16{bottom:772.845000px;}
.ya9{bottom:782.025000px;}
.yc4{bottom:786.885000px;}
.y4d{bottom:791.025000px;}
.y15{bottom:792.645000px;}
.ya8{bottom:801.825000px;}
.y4c{bottom:810.825000px;}
.y14{bottom:812.445000px;}
.yc1{bottom:817.125000px;}
.ya7{bottom:821.625000px;}
.y4b{bottom:830.625000px;}
.y13{bottom:832.245000px;}
.ya6{bottom:841.425000px;}
.y4a{bottom:850.425000px;}
.y12{bottom:852.045000px;}
.ya5{bottom:861.225000px;}
.y49{bottom:870.225000px;}
.y11{bottom:874.185000px;}
.ybe{bottom:877.425000px;}
.ya4{bottom:881.205000px;}
.y48{bottom:890.205000px;}
.y10{bottom:899.205000px;}
.ya3{bottom:901.005000px;}
.y47{bottom:910.005000px;}
.yf{bottom:914.325000px;}
.ya2{bottom:920.850000px;}
.y46{bottom:929.850000px;}
.ye{bottom:935.790000px;}
.ybd{bottom:937.770000px;}
.y45{bottom:949.650000px;}
.yd{bottom:959.190000px;}
.y44{bottom:969.450000px;}
.ybb{bottom:978.090000px;}
.y43{bottom:989.430000px;}
.yc{bottom:990.870000px;}
.y42{bottom:1009.230000px;}
.yb9{bottom:1018.590000px;}
.yb{bottom:1022.730000px;}
.y41{bottom:1029.030000px;}
.y40{bottom:1048.830000px;}
.y5{bottom:1050.810000px;}
.yb7{bottom:1059.090000px;}
.y3f{bottom:1068.630000px;}
.yb3{bottom:1080.330000px;}
.y4{bottom:1082.130000px;}
.y3e{bottom:1088.610000px;}
.y3d{bottom:1108.410000px;}
.y3{bottom:1112.910000px;}
.yb0{bottom:1120.830000px;}
.y3c{bottom:1128.210000px;}
.y2{bottom:1143.870000px;}
.y3b{bottom:1148.010000px;}
.y3a{bottom:1174.680000px;}
.y1{bottom:1177.740000px;}
.y39{bottom:1193.760000px;}
.h12{height:13.680000px;}
.h15{height:20.520000px;}
.h13{height:20.700000px;}
.h5{height:21.420000px;}
.h8{height:27.432422px;}
.h7{height:29.464453px;}
.h19{height:29.520000px;}
.ha{height:34.855313px;}
.h16{height:39.600000px;}
.h14{height:39.780000px;}
.hd{height:40.140000px;}
.hb{height:42.164648px;}
.h3{height:46.736719px;}
.hc{height:49.255313px;}
.h9{height:53.404453px;}
.h4{height:53.573906px;}
.h10{height:53.709961px;}
.h11{height:53.853187px;}
.h6{height:59.383125px;}
.h1b{height:59.436000px;}
.h18{height:59.580000px;}
.h17{height:59.616000px;}
.h2{height:67.565039px;}
.he{height:71.613281px;}
.h1a{height:79.200000px;}
.hf{height:187.920000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:15.480000px;}
.w9{width:18.900000px;}
.wa{width:20.880000px;}
.wc{width:29.340000px;}
.w7{width:31.860000px;}
.w8{width:32.760000px;}
.wb{width:50.220000px;}
.w3{width:57.816000px;}
.we{width:222.330000px;}
.wd{width:235.800000px;}
.wf{width:452.805000px;}
.w5{width:457.380000px;}
.w4{width:718.350000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x28{left:1.830000px;}
.x2b{left:6.870000px;}
.x3{left:8.100000px;}
.x29{left:43.995000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.xa{left:70.739987px;}
.x10{left:73.439987px;}
.x34{left:81.035987px;}
.x9{left:86.615987px;}
.x32{left:108.756000px;}
.x23{left:112.175987px;}
.x4{left:120.636000px;}
.x24{left:136.835987px;}
.x2a{left:163.260000px;}
.x25{left:171.749987px;}
.xd{left:193.709987px;}
.x26{left:196.409987px;}
.x27{left:217.080000px;}
.x2c{left:218.520000px;}
.xe{left:248.294987px;}
.x8{left:260.499000px;}
.x11{left:298.514987px;}
.x2d{left:306.900000px;}
.x7{left:316.329000px;}
.x33{left:331.815000px;}
.x31{left:336.420000px;}
.x6{left:396.969000px;}
.xb{left:401.324987px;}
.x5{left:410.469000px;}
.xc{left:446.684987px;}
.xf{left:473.684987px;}
.x2e{left:489.780000px;}
.x35{left:500.684987px;}
.x15{left:507.884987px;}
.x16{left:523.004987px;}
.x36{left:527.684987px;}
.x17{left:538.124987px;}
.x18{left:553.424987px;}
.x2f{left:563.760000px;}
.x19{left:571.829987px;}
.x1a{left:586.949987px;}
.x1b{left:625.289987px;}
.x1c{left:640.409987px;}
.x1d{left:652.829987px;}
.x30{left:662.760000px;}
.x1e{left:667.949987px;}
.x1f{left:717.989987px;}
.x20{left:733.139987px;}
.x21{left:808.919987px;}
.x12{left:810.899987px;}
.x22{left:824.219987px;}
.x13{left:829.439987px;}
.x14{left:839.339987px;}
@media print{
.v2{vertical-align:-21.280000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.ls17{letter-spacing:-1.296000pt;}
.ls18{letter-spacing:-1.216000pt;}
.ls1b{letter-spacing:-1.098667pt;}
.ls2d{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls2e{letter-spacing:-0.456533pt;}
.ls5{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.230933pt;}
.ls2c{letter-spacing:-0.225067pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls2b{letter-spacing:0.136533pt;}
.ls21{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.800000pt;}
.lsb{letter-spacing:1.440000pt;}
.lsa{letter-spacing:4.640000pt;}
.ls16{letter-spacing:7.200000pt;}
.lsc{letter-spacing:7.840000pt;}
.ls11{letter-spacing:8.640000pt;}
.ls1{letter-spacing:9.120000pt;}
.ls10{letter-spacing:9.760000pt;}
.lse{letter-spacing:9.866667pt;}
.ls12{letter-spacing:12.320000pt;}
.ls22{letter-spacing:12.960000pt;}
.ls23{letter-spacing:14.672640pt;}
.ls1a{letter-spacing:16.800000pt;}
.ls26{letter-spacing:18.080000pt;}
.ls28{letter-spacing:20.000000pt;}
.ls1d{letter-spacing:20.640000pt;}
.ls29{letter-spacing:21.280000pt;}
.lsf{letter-spacing:21.920000pt;}
.ls27{letter-spacing:24.480000pt;}
.ls25{letter-spacing:29.600000pt;}
.ls20{letter-spacing:30.880000pt;}
.ls1e{letter-spacing:40.912640pt;}
.ls1c{letter-spacing:41.040640pt;}
.ws1{word-spacing:-21.600000pt;}
.ws12{word-spacing:-14.784000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.552533pt;}
.ws10{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.463467pt;}
.ws1b{word-spacing:-13.416533pt;}
.ws4{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.096533pt;}
.ws1c{word-spacing:-13.054933pt;}
.ws1a{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.870933pt;}
.ws1e{word-spacing:-12.823467pt;}
.wsb{word-spacing:-12.736000pt;}
.ws9{word-spacing:-12.688000pt;}
.wsa{word-spacing:-12.592000pt;}
.ws1d{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.181333pt;}
.ws15{word-spacing:-10.876928pt;}
.ws14{word-spacing:-10.848000pt;}
.ws16{word-spacing:-9.632000pt;}
.ws13{word-spacing:-9.552000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.wsd{word-spacing:0.000000pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._5{margin-left:-1096.299520pt;}
._1e{margin-left:-1078.819840pt;}
._4{margin-left:-1041.576960pt;}
._6{margin-left:-300.523520pt;}
._7{margin-left:-181.866667pt;}
._9{margin-left:-7.544960pt;}
._8{margin-left:-5.134080pt;}
._a{margin-left:-4.102827pt;}
._c{margin-left:-2.516053pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._13{width:2.102827pt;}
._11{width:3.722667pt;}
._14{width:5.220907pt;}
._d{width:6.253013pt;}
._e{width:7.596160pt;}
._f{width:8.768427pt;}
._10{width:9.998933pt;}
._b{width:11.387733pt;}
._23{width:12.340053pt;}
._12{width:14.203733pt;}
._2b{width:15.147307pt;}
._1c{width:16.066987pt;}
._17{width:17.079893pt;}
._16{width:18.060800pt;}
._1a{width:19.430827pt;}
._22{width:20.324480pt;}
._15{width:21.311360pt;}
._1d{width:22.555733pt;}
._19{width:24.010240pt;}
._18{width:25.285120pt;}
._2e{width:26.186027pt;}
._25{width:27.409920pt;}
._1b{width:28.877013pt;}
._24{width:29.767467pt;}
._27{width:30.807253pt;}
._26{width:31.808213pt;}
._21{width:32.701653pt;}
._2d{width:33.620480pt;}
._2c{width:34.528000pt;}
._29{width:35.943467pt;}
._28{width:37.510400pt;}
._2a{width:38.619307pt;}
._33{width:39.614720pt;}
._31{width:41.253973pt;}
._20{width:42.230400pt;}
._30{width:43.538133pt;}
._34{width:46.141013pt;}
._2f{width:47.150293pt;}
._36{width:48.070187pt;}
._35{width:49.720320pt;}
._38{width:50.746027pt;}
._1f{width:56.286933pt;}
._39{width:62.236373pt;}
._37{width:65.218560pt;}
._3b{width:74.003840pt;}
._3a{width:75.908480pt;}
._32{width:84.478720pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:2.400000pt;}
.y9e{bottom:2.746667pt;}
.yb1{bottom:3.680000pt;}
.y96{bottom:3.706667pt;}
.yb6{bottom:5.120000pt;}
.y7{bottom:5.280000pt;}
.yb8{bottom:5.760000pt;}
.yb2{bottom:5.920000pt;}
.y9{bottom:9.920000pt;}
.y8{bottom:10.560000pt;}
.yc6{bottom:13.600000pt;}
.yc5{bottom:13.760000pt;}
.yba{bottom:20.480000pt;}
.ybc{bottom:20.640000pt;}
.y95{bottom:22.266667pt;}
.yb5{bottom:22.720000pt;}
.yb4{bottom:22.880000pt;}
.y9d{bottom:28.666667pt;}
.ya{bottom:31.840000pt;}
.yc2{bottom:38.240000pt;}
.ycc{bottom:38.266667pt;}
.ybf{bottom:38.280000pt;}
.yca{bottom:40.320000pt;}
.ycd{bottom:40.346667pt;}
.yc3{bottom:40.480000pt;}
.yc0{bottom:40.520000pt;}
.y6{bottom:45.440000pt;}
.y9c{bottom:54.586667pt;}
.yc8{bottom:55.840000pt;}
.yc9{bottom:57.920000pt;}
.y90{bottom:68.160000pt;}
.y70{bottom:77.920000pt;}
.y9b{bottom:80.346667pt;}
.y93{bottom:83.520000pt;}
.y38{bottom:85.280000pt;}
.yaf{bottom:85.760000pt;}
.y8f{bottom:85.920000pt;}
.y6f{bottom:95.520000pt;}
.y92{bottom:101.120000pt;}
.y37{bottom:102.880000pt;}
.y8e{bottom:103.520000pt;}
.y9a{bottom:106.106667pt;}
.y6e{bottom:113.120000pt;}
.yae{bottom:118.560000pt;}
.y91{bottom:118.720000pt;}
.y36{bottom:120.640000pt;}
.y8d{bottom:121.120000pt;}
.y6d{bottom:130.720000pt;}
.y99{bottom:131.866667pt;}
.y35{bottom:138.240000pt;}
.y8c{bottom:138.720000pt;}
.ya1{bottom:145.440000pt;}
.y6c{bottom:148.320000pt;}
.y34{bottom:155.840000pt;}
.y8b{bottom:156.320000pt;}
.y98{bottom:156.986667pt;}
.y6b{bottom:166.080000pt;}
.y9f{bottom:172.000000pt;}
.y33{bottom:173.440000pt;}
.y8a{bottom:174.080000pt;}
.y6a{bottom:183.680000pt;}
.y97{bottom:187.840000pt;}
.y32{bottom:191.066667pt;}
.y89{bottom:191.706667pt;}
.y69{bottom:201.306667pt;}
.y31{bottom:208.826667pt;}
.y88{bottom:209.306667pt;}
.y68{bottom:218.906667pt;}
.y30{bottom:226.426667pt;}
.y87{bottom:226.906667pt;}
.y67{bottom:236.506667pt;}
.y2f{bottom:244.026667pt;}
.y86{bottom:244.506667pt;}
.y66{bottom:254.266667pt;}
.y2e{bottom:261.626667pt;}
.y85{bottom:262.266667pt;}
.y65{bottom:271.866667pt;}
.y2d{bottom:279.226667pt;}
.y84{bottom:279.866667pt;}
.y64{bottom:289.466667pt;}
.y2c{bottom:296.986667pt;}
.y83{bottom:297.466667pt;}
.y63{bottom:307.066667pt;}
.y2b{bottom:314.586667pt;}
.y82{bottom:315.066667pt;}
.y62{bottom:324.666667pt;}
.y2a{bottom:332.186667pt;}
.y81{bottom:332.666667pt;}
.y61{bottom:342.426667pt;}
.y29{bottom:349.786667pt;}
.y80{bottom:350.426667pt;}
.y60{bottom:360.026667pt;}
.y94{bottom:366.080000pt;}
.y28{bottom:367.386667pt;}
.y7f{bottom:368.026667pt;}
.y5f{bottom:377.626667pt;}
.y27{bottom:385.146667pt;}
.y7e{bottom:385.626667pt;}
.y5e{bottom:395.226667pt;}
.y26{bottom:402.786667pt;}
.y7d{bottom:403.266667pt;}
.y5d{bottom:412.866667pt;}
.y25{bottom:420.386667pt;}
.y7c{bottom:420.866667pt;}
.y5c{bottom:430.626667pt;}
.y24{bottom:437.986667pt;}
.y7b{bottom:438.626667pt;}
.y5b{bottom:448.226667pt;}
.y23{bottom:455.586667pt;}
.y7a{bottom:456.226667pt;}
.y5a{bottom:465.826667pt;}
.y22{bottom:473.346667pt;}
.y79{bottom:473.826667pt;}
.y59{bottom:483.426667pt;}
.y21{bottom:490.946667pt;}
.y78{bottom:491.426667pt;}
.y58{bottom:501.026667pt;}
.yd1{bottom:508.546667pt;}
.y77{bottom:509.026667pt;}
.y20{bottom:510.626667pt;}
.y57{bottom:518.786667pt;}
.yd0{bottom:526.146667pt;}
.y76{bottom:526.786667pt;}
.y1f{bottom:528.226667pt;}
.y56{bottom:536.386667pt;}
.ycf{bottom:543.746667pt;}
.y75{bottom:544.386667pt;}
.y1e{bottom:545.826667pt;}
.y55{bottom:553.986667pt;}
.yce{bottom:561.506667pt;}
.y74{bottom:561.986667pt;}
.y1d{bottom:563.426667pt;}
.y54{bottom:571.586667pt;}
.ycb{bottom:574.626667pt;}
.y73{bottom:579.586667pt;}
.y1c{bottom:581.026667pt;}
.y53{bottom:589.186667pt;}
.y72{bottom:597.186667pt;}
.y1b{bottom:598.786667pt;}
.y52{bottom:606.973333pt;}
.y71{bottom:614.973333pt;}
.y1a{bottom:616.413333pt;}
.yad{bottom:624.573333pt;}
.yc7{bottom:628.253333pt;}
.y51{bottom:632.573333pt;}
.y19{bottom:634.013333pt;}
.yac{bottom:642.173333pt;}
.y50{bottom:650.173333pt;}
.y18{bottom:651.613333pt;}
.yab{bottom:659.773333pt;}
.y4f{bottom:667.773333pt;}
.y17{bottom:669.213333pt;}
.yaa{bottom:677.373333pt;}
.y4e{bottom:685.373333pt;}
.y16{bottom:686.973333pt;}
.ya9{bottom:695.133333pt;}
.yc4{bottom:699.453333pt;}
.y4d{bottom:703.133333pt;}
.y15{bottom:704.573333pt;}
.ya8{bottom:712.733333pt;}
.y4c{bottom:720.733333pt;}
.y14{bottom:722.173333pt;}
.yc1{bottom:726.333333pt;}
.ya7{bottom:730.333333pt;}
.y4b{bottom:738.333333pt;}
.y13{bottom:739.773333pt;}
.ya6{bottom:747.933333pt;}
.y4a{bottom:755.933333pt;}
.y12{bottom:757.373333pt;}
.ya5{bottom:765.533333pt;}
.y49{bottom:773.533333pt;}
.y11{bottom:777.053333pt;}
.ybe{bottom:779.933333pt;}
.ya4{bottom:783.293333pt;}
.y48{bottom:791.293333pt;}
.y10{bottom:799.293333pt;}
.ya3{bottom:800.893333pt;}
.y47{bottom:808.893333pt;}
.yf{bottom:812.733333pt;}
.ya2{bottom:818.533333pt;}
.y46{bottom:826.533333pt;}
.ye{bottom:831.813333pt;}
.ybd{bottom:833.573333pt;}
.y45{bottom:844.133333pt;}
.yd{bottom:852.613333pt;}
.y44{bottom:861.733333pt;}
.ybb{bottom:869.413333pt;}
.y43{bottom:879.493333pt;}
.yc{bottom:880.773333pt;}
.y42{bottom:897.093333pt;}
.yb9{bottom:905.413333pt;}
.yb{bottom:909.093333pt;}
.y41{bottom:914.693333pt;}
.y40{bottom:932.293333pt;}
.y5{bottom:934.053333pt;}
.yb7{bottom:941.413333pt;}
.y3f{bottom:949.893333pt;}
.yb3{bottom:960.293333pt;}
.y4{bottom:961.893333pt;}
.y3e{bottom:967.653333pt;}
.y3d{bottom:985.253333pt;}
.y3{bottom:989.253333pt;}
.yb0{bottom:996.293333pt;}
.y3c{bottom:1002.853333pt;}
.y2{bottom:1016.773333pt;}
.y3b{bottom:1020.453333pt;}
.y3a{bottom:1044.160000pt;}
.y1{bottom:1046.880000pt;}
.y39{bottom:1061.120000pt;}
.h12{height:12.160000pt;}
.h15{height:18.240000pt;}
.h13{height:18.400000pt;}
.h5{height:19.040000pt;}
.h8{height:24.384375pt;}
.h7{height:26.190625pt;}
.h19{height:26.240000pt;}
.ha{height:30.982500pt;}
.h16{height:35.200000pt;}
.h14{height:35.360000pt;}
.hd{height:35.680000pt;}
.hb{height:37.479688pt;}
.h3{height:41.543750pt;}
.hc{height:43.782500pt;}
.h9{height:47.470625pt;}
.h4{height:47.621250pt;}
.h10{height:47.742188pt;}
.h11{height:47.869500pt;}
.h6{height:52.785000pt;}
.h1b{height:52.832000pt;}
.h18{height:52.960000pt;}
.h17{height:52.992000pt;}
.h2{height:60.057813pt;}
.he{height:63.656250pt;}
.h1a{height:70.400000pt;}
.hf{height:167.040000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:13.760000pt;}
.w9{width:16.800000pt;}
.wa{width:18.560000pt;}
.wc{width:26.080000pt;}
.w7{width:28.320000pt;}
.w8{width:29.120000pt;}
.wb{width:44.640000pt;}
.w3{width:51.392000pt;}
.we{width:197.626667pt;}
.wd{width:209.600000pt;}
.wf{width:402.493333pt;}
.w5{width:406.560000pt;}
.w4{width:638.533333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x28{left:1.626667pt;}
.x2b{left:6.106667pt;}
.x3{left:7.200000pt;}
.x29{left:39.106667pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.xa{left:62.879988pt;}
.x10{left:65.279988pt;}
.x34{left:72.031988pt;}
.x9{left:76.991988pt;}
.x32{left:96.672000pt;}
.x23{left:99.711988pt;}
.x4{left:107.232000pt;}
.x24{left:121.631988pt;}
.x2a{left:145.120000pt;}
.x25{left:152.666655pt;}
.xd{left:172.186655pt;}
.x26{left:174.586655pt;}
.x27{left:192.960000pt;}
.x2c{left:194.240000pt;}
.xe{left:220.706655pt;}
.x8{left:231.554667pt;}
.x11{left:265.346655pt;}
.x2d{left:272.800000pt;}
.x7{left:281.181333pt;}
.x33{left:294.946667pt;}
.x31{left:299.040000pt;}
.x6{left:352.861333pt;}
.xb{left:356.733321pt;}
.x5{left:364.861333pt;}
.xc{left:397.053321pt;}
.xf{left:421.053321pt;}
.x2e{left:435.360000pt;}
.x35{left:445.053321pt;}
.x15{left:451.453321pt;}
.x16{left:464.893322pt;}
.x36{left:469.053321pt;}
.x17{left:478.333322pt;}
.x18{left:491.933321pt;}
.x2f{left:501.120000pt;}
.x19{left:508.293321pt;}
.x1a{left:521.733322pt;}
.x1b{left:555.813322pt;}
.x1c{left:569.253321pt;}
.x1d{left:580.293321pt;}
.x30{left:589.120000pt;}
.x1e{left:593.733321pt;}
.x1f{left:638.213322pt;}
.x20{left:651.679988pt;}
.x21{left:719.039988pt;}
.x12{left:720.799988pt;}
.x22{left:732.639988pt;}
.x13{left:737.279988pt;}
.x14{left:746.079988pt;}
}




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