
    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_a3052ce2de3afeee051e3c20.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_2cd189394c7d652921f119ef.woff')format("woff");}.ff2{font-family:ff2;line-height:0.981934;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a3726f42f973b2956f5808da.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9a6c082e3c8841af55bf1bb8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b50ff11d6702876256256a59.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f499b5c92bc0efb779948c87.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e818ee89de994678ba260109.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e23b5cdff4d98cbaadd42791.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970703;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_889bc86a158327585873dd3e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.970703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0bb0d063d97e6207f2b9fb1a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d36a629cbd76b3aa26408b1c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffe{font-family:ffe;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);}
.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);}
.v1{vertical-align:-78.624000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls16{letter-spacing:-11.340000px;}
.ls10{letter-spacing:-10.620000px;}
.lsf{letter-spacing:-9.180000px;}
.ls11{letter-spacing:-8.460000px;}
.lsa{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.lsb{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.144720px;}
.ls15{letter-spacing:0.152400px;}
.ls12{letter-spacing:0.152640px;}
.ls5{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.360000px;}
.ls17{letter-spacing:16.865280px;}
.lse{letter-spacing:42.660000px;}
.ls1{letter-spacing:2625.036000px;}
.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;}
}
.ws7{word-spacing:-19.440000px;}
.wsd{word-spacing:-16.822200px;}
.wse{word-spacing:-16.712400px;}
.ws8{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.wsf{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.860000px;}
.wsb{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws9{word-spacing:-10.440000px;}
.wsc{word-spacing:0.000000px;}
._6{margin-left:-2680.945680px;}
._23{margin-left:-1663.531920px;}
._22{margin-left:-1651.776000px;}
._2{margin-left:-1454.916000px;}
._3{margin-left:-1449.720000px;}
._7{margin-left:-1368.713280px;}
._8{margin-left:-1111.015680px;}
._11{margin-left:-973.476480px;}
._21{margin-left:-865.565280px;}
._9{margin-left:-727.371600px;}
._12{margin-left:-359.814240px;}
._20{margin-left:-277.246800px;}
._0{margin-left:-183.600000px;}
._e{margin-left:-172.906560px;}
._d{margin-left:-167.556000px;}
._b{margin-left:-140.860080px;}
._a{margin-left:-135.360000px;}
._c{margin-left:-133.200000px;}
._14{margin-left:-129.653280px;}
._1{margin-left:-62.064000px;}
._10{margin-left:-54.613440px;}
._f{margin-left:-46.540080px;}
._2d{margin-left:-42.480000px;}
._13{margin-left:-31.500000px;}
._27{margin-left:-4.438080px;}
._1f{margin-left:-2.509920px;}
._4{margin-left:-1.254240px;}
._5{width:1.025760px;}
._19{width:2.450160px;}
._18{width:4.051200px;}
._1b{width:5.249040px;}
._1a{width:6.752880px;}
._29{width:7.942080px;}
._1e{width:9.459120px;}
._16{width:10.658160px;}
._15{width:11.952000px;}
._17{width:13.106880px;}
._24{width:14.265120px;}
._1d{width:16.314480px;}
._1c{width:17.569440px;}
._2b{width:20.203200px;}
._2c{width:21.509760px;}
._2a{width:23.713920px;}
._25{width:25.038720px;}
._26{width:26.094240px;}
._33{width:36.498240px;}
._30{width:37.558080px;}
._31{width:38.580960px;}
._28{width:39.876480px;}
._32{width:41.160480px;}
._2f{width:53.495760px;}
._2e{width:54.704160px;}
._34{width:57.751680px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:3.600000px;}
.y85{bottom:3.780000px;}
.y2{bottom:7.740000px;}
.y87{bottom:22.500000px;}
.y83{bottom:22.680000px;}
.y8d{bottom:22.725000px;}
.y4{bottom:77.436000px;}
.y7d{bottom:110.376000px;}
.yb2{bottom:111.816000px;}
.ye3{bottom:114.876000px;}
.y7c{bottom:124.236000px;}
.y7b{bottom:128.736000px;}
.yb1{bottom:130.896000px;}
.y81{bottom:136.440000px;}
.y89{bottom:136.485000px;}
.y7a{bottom:137.916000px;}
.yb0{bottom:149.796000px;}
.y79{bottom:151.770000px;}
.y78{bottom:156.270000px;}
.y77{bottom:165.630000px;}
.yaf{bottom:168.870000px;}
.ye2{bottom:170.130000px;}
.y76{bottom:179.310000px;}
.y3b{bottom:182.190000px;}
.ye1{bottom:183.810000px;}
.yae{bottom:187.770000px;}
.y75{bottom:193.170000px;}
.ye0{bottom:195.510000px;}
.y74{bottom:197.670000px;}
.y3a{bottom:201.090000px;}
.yad{bottom:206.670000px;}
.y73{bottom:207.030000px;}
.ydf{bottom:216.390000px;}
.y39{bottom:220.170000px;}
.y72{bottom:220.710000px;}
.y71{bottom:225.210000px;}
.yac{bottom:225.750000px;}
.y70{bottom:234.570000px;}
.yde{bottom:235.470000px;}
.y38{bottom:239.070000px;}
.yab{bottom:244.650000px;}
.y6f{bottom:250.770000px;}
.ydd{bottom:254.370000px;}
.y37{bottom:257.970000px;}
.yaa{bottom:263.730000px;}
.ydc{bottom:273.450000px;}
.y36{bottom:277.050000px;}
.ya9{bottom:282.630000px;}
.y6e{bottom:285.690000px;}
.ydb{bottom:292.350000px;}
.y35{bottom:294.870000px;}
.ya8{bottom:301.530000px;}
.y6d{bottom:304.590000px;}
.y34{bottom:308.550000px;}
.yda{bottom:311.250000px;}
.ya7{bottom:320.610000px;}
.y33{bottom:323.130000px;}
.y6c{bottom:323.490000px;}
.yd9{bottom:330.330000px;}
.ya6{bottom:339.555000px;}
.y32{bottom:340.455000px;}
.y6b{bottom:342.615000px;}
.yd8{bottom:349.275000px;}
.y31{bottom:357.735000px;}
.ya5{bottom:358.635000px;}
.y6a{bottom:361.515000px;}
.yd7{bottom:368.355000px;}
.y30{bottom:375.015000px;}
.ya4{bottom:377.535000px;}
.y69{bottom:380.595000px;}
.yd6{bottom:387.255000px;}
.y2f{bottom:392.115000px;}
.ya3{bottom:396.435000px;}
.y68{bottom:399.495000px;}
.yd5{bottom:406.335000px;}
.y2e{bottom:409.395000px;}
.ya2{bottom:415.515000px;}
.y67{bottom:418.575000px;}
.yd4{bottom:425.235000px;}
.y2d{bottom:426.675000px;}
.ya1{bottom:434.415000px;}
.y66{bottom:437.475000px;}
.y2c{bottom:443.955000px;}
.yd3{bottom:444.135000px;}
.ya0{bottom:453.495000px;}
.y65{bottom:456.375000px;}
.y2b{bottom:461.235000px;}
.yd2{bottom:463.215000px;}
.y9f{bottom:472.395000px;}
.y64{bottom:475.455000px;}
.y2a{bottom:478.335000px;}
.yd1{bottom:482.115000px;}
.y9e{bottom:491.295000px;}
.y63{bottom:494.355000px;}
.y29{bottom:495.615000px;}
.yd0{bottom:501.195000px;}
.y9d{bottom:510.375000px;}
.y28{bottom:512.895000px;}
.y62{bottom:513.435000px;}
.yce{bottom:520.095000px;}
.ycf{bottom:526.035000px;}
.y9c{bottom:529.275000px;}
.y27{bottom:530.175000px;}
.y61{bottom:532.335000px;}
.ycd{bottom:538.995000px;}
.y26{bottom:547.455000px;}
.y9b{bottom:548.355000px;}
.y60{bottom:551.235000px;}
.ycb{bottom:558.075000px;}
.ycc{bottom:564.015000px;}
.y25{bottom:564.735000px;}
.y9a{bottom:567.255000px;}
.y5f{bottom:570.315000px;}
.yca{bottom:576.975000px;}
.y24{bottom:581.835000px;}
.y99{bottom:586.335000px;}
.y5e{bottom:589.215000px;}
.yc8{bottom:596.055000px;}
.y23{bottom:599.115000px;}
.yc9{bottom:601.995000px;}
.y98{bottom:605.265000px;}
.y5d{bottom:608.325000px;}
.yc7{bottom:614.985000px;}
.y22{bottom:616.425000px;}
.y97{bottom:624.165000px;}
.y5c{bottom:627.225000px;}
.y21{bottom:633.705000px;}
.yc5{bottom:633.885000px;}
.yc6{bottom:639.825000px;}
.y96{bottom:643.245000px;}
.y5b{bottom:646.125000px;}
.y20{bottom:650.985000px;}
.yc4{bottom:652.965000px;}
.y95{bottom:662.145000px;}
.y5a{bottom:665.205000px;}
.y1f{bottom:668.265000px;}
.yc2{bottom:671.865000px;}
.yc3{bottom:677.805000px;}
.y94{bottom:681.225000px;}
.y59{bottom:684.105000px;}
.y1e{bottom:685.365000px;}
.yc1{bottom:690.945000px;}
.y93{bottom:700.125000px;}
.y1d{bottom:702.645000px;}
.y58{bottom:703.185000px;}
.yc0{bottom:709.845000px;}
.y92{bottom:719.025000px;}
.y1c{bottom:719.925000px;}
.y57{bottom:722.085000px;}
.ybf{bottom:728.745000px;}
.y1b{bottom:737.205000px;}
.y91{bottom:738.105000px;}
.y56{bottom:740.985000px;}
.ybe{bottom:747.825000px;}
.y1a{bottom:754.485000px;}
.y90{bottom:757.005000px;}
.y55{bottom:760.065000px;}
.ybd{bottom:766.725000px;}
.y19{bottom:771.765000px;}
.y8f{bottom:776.085000px;}
.y54{bottom:778.965000px;}
.ybc{bottom:785.805000px;}
.y18{bottom:788.865000px;}
.y8e{bottom:794.985000px;}
.y53{bottom:798.045000px;}
.ybb{bottom:804.705000px;}
.y17{bottom:806.145000px;}
.y88{bottom:811.005000px;}
.y52{bottom:816.945000px;}
.y16{bottom:823.425000px;}
.yba{bottom:823.605000px;}
.y51{bottom:835.845000px;}
.y15{bottom:840.705000px;}
.yb9{bottom:842.685000px;}
.y8c{bottom:848.985000px;}
.y50{bottom:854.925000px;}
.y14{bottom:857.985000px;}
.yb8{bottom:861.585000px;}
.y4f{bottom:873.870000px;}
.y13{bottom:875.670000px;}
.yb7{bottom:876.930000px;}
.y8b{bottom:887.010000px;}
.y4e{bottom:892.950000px;}
.y12{bottom:894.210000px;}
.y11{bottom:911.490000px;}
.y4c{bottom:911.850000px;}
.y4d{bottom:917.790000px;}
.y8a{bottom:924.990000px;}
.y10{bottom:929.130000px;}
.y4b{bottom:930.930000px;}
.yf{bottom:948.030000px;}
.y49{bottom:949.830000px;}
.y4a{bottom:955.770000px;}
.y80{bottom:963.690000px;}
.ye{bottom:967.110000px;}
.y48{bottom:968.730000px;}
.yd{bottom:986.010000px;}
.y46{bottom:987.810000px;}
.y47{bottom:993.750000px;}
.y86{bottom:1001.490000px;}
.yc{bottom:1005.450000px;}
.y45{bottom:1006.710000px;}
.y44{bottom:1025.790000px;}
.yb{bottom:1027.950000px;}
.y84{bottom:1039.470000px;}
.y43{bottom:1044.690000px;}
.yb6{bottom:1044.870000px;}
.ya{bottom:1050.270000px;}
.y41{bottom:1063.590000px;}
.yb5{bottom:1065.030000px;}
.y42{bottom:1069.530000px;}
.y9{bottom:1071.870000px;}
.y82{bottom:1077.450000px;}
.y40{bottom:1082.670000px;}
.yb4{bottom:1088.610000px;}
.y8{bottom:1089.150000px;}
.y3f{bottom:1101.570000px;}
.y7{bottom:1106.430000px;}
.yb3{bottom:1112.730000px;}
.y7e{bottom:1116.150000px;}
.y3d{bottom:1120.650000px;}
.y6{bottom:1123.530000px;}
.y3e{bottom:1126.590000px;}
.y3c{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1164.780000px;}
.y1{bottom:1181.880000px;}
.h15{height:18.900000px;}
.h1b{height:19.080000px;}
.h14{height:21.114844px;}
.h2{height:27.900000px;}
.h13{height:29.158594px;}
.h11{height:33.683203px;}
.h10{height:34.036523px;}
.h18{height:37.800000px;}
.h17{height:37.980000px;}
.h1a{height:38.016000px;}
.h5{height:39.760312px;}
.hd{height:41.726953px;}
.h6{height:42.164648px;}
.he{height:43.302656px;}
.h12{height:46.251562px;}
.ha{height:46.736719px;}
.hc{height:48.027656px;}
.h1c{height:48.224531px;}
.hf{height:49.255313px;}
.hb{height:53.224453px;}
.h9{height:54.596250px;}
.h7{height:54.864844px;}
.h8{height:56.345625px;}
.h3{height:57.867188px;}
.h4{height:71.613281px;}
.h16{height:151.740000px;}
.h19{height:151.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:59.400000px;}
.w2{width:62.100000px;}
.w7{width:99.540000px;}
.w9{width:106.200000px;}
.wb{width:137.016000px;}
.wa{width:189.210000px;}
.wc{width:229.710000px;}
.w8{width:518.145000px;}
.w3{width:618.405000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:8.100000px;}
.x2{left:12.960000px;}
.x2a{left:21.060000px;}
.x25{left:23.220000px;}
.x22{left:26.820000px;}
.x28{left:31.500000px;}
.x2c{left:33.660000px;}
.x31{left:47.514000px;}
.x2d{left:50.214000px;}
.x2f{left:53.460000px;}
.x2e{left:66.105000px;}
.x5{left:97.415987px;}
.x30{left:99.720000px;}
.x1{left:108.036000px;}
.x1e{left:111.815987px;}
.x39{left:115.595987px;}
.x6{left:120.815987px;}
.xa{left:130.175987px;}
.x3a{left:140.075987px;}
.x13{left:161.129987px;}
.x21{left:167.430000px;}
.x3{left:170.130000px;}
.x26{left:171.929987px;}
.x7{left:196.589987px;}
.x29{left:220.530000px;}
.x24{left:227.055000px;}
.x8{left:230.429987px;}
.x33{left:236.009987px;}
.x23{left:266.970000px;}
.x17{left:290.954973px;}
.xe{left:292.214987px;}
.x18{left:296.174987px;}
.x27{left:299.054987px;}
.xd{left:334.514987px;}
.x1f{left:359.534987px;}
.xf{left:360.974987px;}
.xb{left:366.554987px;}
.x4{left:387.615000px;}
.xc{left:411.194987px;}
.x10{left:420.734987px;}
.x19{left:427.754973px;}
.x1a{left:432.974987px;}
.x9{left:446.474987px;}
.x1b{left:459.074973px;}
.x1c{left:464.294987px;}
.x37{left:466.844973px;}
.x38{left:477.284987px;}
.x34{left:534.884973px;}
.x35{left:540.104987px;}
.x2b{left:551.265000px;}
.x1d{left:558.464987px;}
.x11{left:563.144987px;}
.x36{left:576.104973px;}
.x32{left:581.684987px;}
.x14{left:623.624973px;}
.x15{left:628.844987px;}
.x16{left:779.909973px;}
.x12{left:785.129987px;}
@media print{
.v1{vertical-align:-69.888000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls16{letter-spacing:-10.080000pt;}
.ls10{letter-spacing:-9.440000pt;}
.lsf{letter-spacing:-8.160000pt;}
.ls11{letter-spacing:-7.520000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.lsb{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.128640pt;}
.ls15{letter-spacing:0.135467pt;}
.ls12{letter-spacing:0.135680pt;}
.ls5{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.320000pt;}
.ls17{letter-spacing:14.991360pt;}
.lse{letter-spacing:37.920000pt;}
.ls1{letter-spacing:2333.365333pt;}
.ws7{word-spacing:-17.280000pt;}
.wsd{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.855467pt;}
.ws8{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.320000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws9{word-spacing:-9.280000pt;}
.wsc{word-spacing:0.000000pt;}
._6{margin-left:-2383.062827pt;}
._23{margin-left:-1478.695040pt;}
._22{margin-left:-1468.245333pt;}
._2{margin-left:-1293.258667pt;}
._3{margin-left:-1288.640000pt;}
._7{margin-left:-1216.634027pt;}
._8{margin-left:-987.569493pt;}
._11{margin-left:-865.312427pt;}
._21{margin-left:-769.391360pt;}
._9{margin-left:-646.552533pt;}
._12{margin-left:-319.834880pt;}
._20{margin-left:-246.441600pt;}
._0{margin-left:-163.200000pt;}
._e{margin-left:-153.694720pt;}
._d{margin-left:-148.938667pt;}
._b{margin-left:-125.208960pt;}
._a{margin-left:-120.320000pt;}
._c{margin-left:-118.400000pt;}
._14{margin-left:-115.247360pt;}
._1{margin-left:-55.168000pt;}
._10{margin-left:-48.545280pt;}
._f{margin-left:-41.368960pt;}
._2d{margin-left:-37.760000pt;}
._13{margin-left:-28.000000pt;}
._27{margin-left:-3.944960pt;}
._1f{margin-left:-2.231040pt;}
._4{margin-left:-1.114880pt;}
._5{width:0.911787pt;}
._19{width:2.177920pt;}
._18{width:3.601067pt;}
._1b{width:4.665813pt;}
._1a{width:6.002560pt;}
._29{width:7.059627pt;}
._1e{width:8.408107pt;}
._16{width:9.473920pt;}
._15{width:10.624000pt;}
._17{width:11.650560pt;}
._24{width:12.680107pt;}
._1d{width:14.501760pt;}
._1c{width:15.617280pt;}
._2b{width:17.958400pt;}
._2c{width:19.119787pt;}
._2a{width:21.079040pt;}
._25{width:22.256640pt;}
._26{width:23.194880pt;}
._33{width:32.442880pt;}
._30{width:33.384960pt;}
._31{width:34.294187pt;}
._28{width:35.445760pt;}
._32{width:36.587093pt;}
._2f{width:47.551787pt;}
._2e{width:48.625920pt;}
._34{width:51.334827pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:3.200000pt;}
.y85{bottom:3.360000pt;}
.y2{bottom:6.880000pt;}
.y87{bottom:20.000000pt;}
.y83{bottom:20.160000pt;}
.y8d{bottom:20.200000pt;}
.y4{bottom:68.832000pt;}
.y7d{bottom:98.112000pt;}
.yb2{bottom:99.392000pt;}
.ye3{bottom:102.112000pt;}
.y7c{bottom:110.432000pt;}
.y7b{bottom:114.432000pt;}
.yb1{bottom:116.352000pt;}
.y81{bottom:121.280000pt;}
.y89{bottom:121.320000pt;}
.y7a{bottom:122.592000pt;}
.yb0{bottom:133.152000pt;}
.y79{bottom:134.906667pt;}
.y78{bottom:138.906667pt;}
.y77{bottom:147.226667pt;}
.yaf{bottom:150.106667pt;}
.ye2{bottom:151.226667pt;}
.y76{bottom:159.386667pt;}
.y3b{bottom:161.946667pt;}
.ye1{bottom:163.386667pt;}
.yae{bottom:166.906667pt;}
.y75{bottom:171.706667pt;}
.ye0{bottom:173.786667pt;}
.y74{bottom:175.706667pt;}
.y3a{bottom:178.746667pt;}
.yad{bottom:183.706667pt;}
.y73{bottom:184.026667pt;}
.ydf{bottom:192.346667pt;}
.y39{bottom:195.706667pt;}
.y72{bottom:196.186667pt;}
.y71{bottom:200.186667pt;}
.yac{bottom:200.666667pt;}
.y70{bottom:208.506667pt;}
.yde{bottom:209.306667pt;}
.y38{bottom:212.506667pt;}
.yab{bottom:217.466667pt;}
.y6f{bottom:222.906667pt;}
.ydd{bottom:226.106667pt;}
.y37{bottom:229.306667pt;}
.yaa{bottom:234.426667pt;}
.ydc{bottom:243.066667pt;}
.y36{bottom:246.266667pt;}
.ya9{bottom:251.226667pt;}
.y6e{bottom:253.946667pt;}
.ydb{bottom:259.866667pt;}
.y35{bottom:262.106667pt;}
.ya8{bottom:268.026667pt;}
.y6d{bottom:270.746667pt;}
.y34{bottom:274.266667pt;}
.yda{bottom:276.666667pt;}
.ya7{bottom:284.986667pt;}
.y33{bottom:287.226667pt;}
.y6c{bottom:287.546667pt;}
.yd9{bottom:293.626667pt;}
.ya6{bottom:301.826667pt;}
.y32{bottom:302.626667pt;}
.y6b{bottom:304.546667pt;}
.yd8{bottom:310.466667pt;}
.y31{bottom:317.986667pt;}
.ya5{bottom:318.786667pt;}
.y6a{bottom:321.346667pt;}
.yd7{bottom:327.426667pt;}
.y30{bottom:333.346667pt;}
.ya4{bottom:335.586667pt;}
.y69{bottom:338.306667pt;}
.yd6{bottom:344.226667pt;}
.y2f{bottom:348.546667pt;}
.ya3{bottom:352.386667pt;}
.y68{bottom:355.106667pt;}
.yd5{bottom:361.186667pt;}
.y2e{bottom:363.906667pt;}
.ya2{bottom:369.346667pt;}
.y67{bottom:372.066667pt;}
.yd4{bottom:377.986667pt;}
.y2d{bottom:379.266667pt;}
.ya1{bottom:386.146667pt;}
.y66{bottom:388.866667pt;}
.y2c{bottom:394.626667pt;}
.yd3{bottom:394.786667pt;}
.ya0{bottom:403.106667pt;}
.y65{bottom:405.666667pt;}
.y2b{bottom:409.986667pt;}
.yd2{bottom:411.746667pt;}
.y9f{bottom:419.906667pt;}
.y64{bottom:422.626667pt;}
.y2a{bottom:425.186667pt;}
.yd1{bottom:428.546667pt;}
.y9e{bottom:436.706667pt;}
.y63{bottom:439.426667pt;}
.y29{bottom:440.546667pt;}
.yd0{bottom:445.506667pt;}
.y9d{bottom:453.666667pt;}
.y28{bottom:455.906667pt;}
.y62{bottom:456.386667pt;}
.yce{bottom:462.306667pt;}
.ycf{bottom:467.586667pt;}
.y9c{bottom:470.466667pt;}
.y27{bottom:471.266667pt;}
.y61{bottom:473.186667pt;}
.ycd{bottom:479.106667pt;}
.y26{bottom:486.626667pt;}
.y9b{bottom:487.426667pt;}
.y60{bottom:489.986667pt;}
.ycb{bottom:496.066667pt;}
.ycc{bottom:501.346667pt;}
.y25{bottom:501.986667pt;}
.y9a{bottom:504.226667pt;}
.y5f{bottom:506.946667pt;}
.yca{bottom:512.866667pt;}
.y24{bottom:517.186667pt;}
.y99{bottom:521.186667pt;}
.y5e{bottom:523.746667pt;}
.yc8{bottom:529.826667pt;}
.y23{bottom:532.546667pt;}
.yc9{bottom:535.106667pt;}
.y98{bottom:538.013333pt;}
.y5d{bottom:540.733333pt;}
.yc7{bottom:546.653333pt;}
.y22{bottom:547.933333pt;}
.y97{bottom:554.813333pt;}
.y5c{bottom:557.533333pt;}
.y21{bottom:563.293333pt;}
.yc5{bottom:563.453333pt;}
.yc6{bottom:568.733333pt;}
.y96{bottom:571.773333pt;}
.y5b{bottom:574.333333pt;}
.y20{bottom:578.653333pt;}
.yc4{bottom:580.413333pt;}
.y95{bottom:588.573333pt;}
.y5a{bottom:591.293333pt;}
.y1f{bottom:594.013333pt;}
.yc2{bottom:597.213333pt;}
.yc3{bottom:602.493333pt;}
.y94{bottom:605.533333pt;}
.y59{bottom:608.093333pt;}
.y1e{bottom:609.213333pt;}
.yc1{bottom:614.173333pt;}
.y93{bottom:622.333333pt;}
.y1d{bottom:624.573333pt;}
.y58{bottom:625.053333pt;}
.yc0{bottom:630.973333pt;}
.y92{bottom:639.133333pt;}
.y1c{bottom:639.933333pt;}
.y57{bottom:641.853333pt;}
.ybf{bottom:647.773333pt;}
.y1b{bottom:655.293333pt;}
.y91{bottom:656.093333pt;}
.y56{bottom:658.653333pt;}
.ybe{bottom:664.733333pt;}
.y1a{bottom:670.653333pt;}
.y90{bottom:672.893333pt;}
.y55{bottom:675.613333pt;}
.ybd{bottom:681.533333pt;}
.y19{bottom:686.013333pt;}
.y8f{bottom:689.853333pt;}
.y54{bottom:692.413333pt;}
.ybc{bottom:698.493333pt;}
.y18{bottom:701.213333pt;}
.y8e{bottom:706.653333pt;}
.y53{bottom:709.373333pt;}
.ybb{bottom:715.293333pt;}
.y17{bottom:716.573333pt;}
.y88{bottom:720.893333pt;}
.y52{bottom:726.173333pt;}
.y16{bottom:731.933333pt;}
.yba{bottom:732.093333pt;}
.y51{bottom:742.973333pt;}
.y15{bottom:747.293333pt;}
.yb9{bottom:749.053333pt;}
.y8c{bottom:754.653333pt;}
.y50{bottom:759.933333pt;}
.y14{bottom:762.653333pt;}
.yb8{bottom:765.853333pt;}
.y4f{bottom:776.773333pt;}
.y13{bottom:778.373333pt;}
.yb7{bottom:779.493333pt;}
.y8b{bottom:788.453333pt;}
.y4e{bottom:793.733333pt;}
.y12{bottom:794.853333pt;}
.y11{bottom:810.213333pt;}
.y4c{bottom:810.533333pt;}
.y4d{bottom:815.813333pt;}
.y8a{bottom:822.213333pt;}
.y10{bottom:825.893333pt;}
.y4b{bottom:827.493333pt;}
.yf{bottom:842.693333pt;}
.y49{bottom:844.293333pt;}
.y4a{bottom:849.573333pt;}
.y80{bottom:856.613333pt;}
.ye{bottom:859.653333pt;}
.y48{bottom:861.093333pt;}
.yd{bottom:876.453333pt;}
.y46{bottom:878.053333pt;}
.y47{bottom:883.333333pt;}
.y86{bottom:890.213333pt;}
.yc{bottom:893.733333pt;}
.y45{bottom:894.853333pt;}
.y44{bottom:911.813333pt;}
.yb{bottom:913.733333pt;}
.y84{bottom:923.973333pt;}
.y43{bottom:928.613333pt;}
.yb6{bottom:928.773333pt;}
.ya{bottom:933.573333pt;}
.y41{bottom:945.413333pt;}
.yb5{bottom:946.693333pt;}
.y42{bottom:950.693333pt;}
.y9{bottom:952.773333pt;}
.y82{bottom:957.733333pt;}
.y40{bottom:962.373333pt;}
.yb4{bottom:967.653333pt;}
.y8{bottom:968.133333pt;}
.y3f{bottom:979.173333pt;}
.y7{bottom:983.493333pt;}
.yb3{bottom:989.093333pt;}
.y7e{bottom:992.133333pt;}
.y3d{bottom:996.133333pt;}
.y6{bottom:998.693333pt;}
.y3e{bottom:1001.413333pt;}
.y3c{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1035.360000pt;}
.y1{bottom:1050.560000pt;}
.h15{height:16.800000pt;}
.h1b{height:16.960000pt;}
.h14{height:18.768750pt;}
.h2{height:24.800000pt;}
.h13{height:25.918750pt;}
.h11{height:29.940625pt;}
.h10{height:30.254687pt;}
.h18{height:33.600000pt;}
.h17{height:33.760000pt;}
.h1a{height:33.792000pt;}
.h5{height:35.342500pt;}
.hd{height:37.090625pt;}
.h6{height:37.479688pt;}
.he{height:38.491250pt;}
.h12{height:41.112500pt;}
.ha{height:41.543750pt;}
.hc{height:42.691250pt;}
.h1c{height:42.866250pt;}
.hf{height:43.782500pt;}
.hb{height:47.310625pt;}
.h9{height:48.530000pt;}
.h7{height:48.768750pt;}
.h8{height:50.085000pt;}
.h3{height:51.437500pt;}
.h4{height:63.656250pt;}
.h16{height:134.880000pt;}
.h19{height:134.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:52.800000pt;}
.w2{width:55.200000pt;}
.w7{width:88.480000pt;}
.w9{width:94.400000pt;}
.wb{width:121.792000pt;}
.wa{width:168.186667pt;}
.wc{width:204.186667pt;}
.w8{width:460.573333pt;}
.w3{width:549.693333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.200000pt;}
.x2{left:11.520000pt;}
.x2a{left:18.720000pt;}
.x25{left:20.640000pt;}
.x22{left:23.840000pt;}
.x28{left:28.000000pt;}
.x2c{left:29.920000pt;}
.x31{left:42.234667pt;}
.x2d{left:44.634667pt;}
.x2f{left:47.520000pt;}
.x2e{left:58.760000pt;}
.x5{left:86.591988pt;}
.x30{left:88.640000pt;}
.x1{left:96.032000pt;}
.x1e{left:99.391988pt;}
.x39{left:102.751988pt;}
.x6{left:107.391988pt;}
.xa{left:115.711988pt;}
.x3a{left:124.511988pt;}
.x13{left:143.226655pt;}
.x21{left:148.826667pt;}
.x3{left:151.226667pt;}
.x26{left:152.826655pt;}
.x7{left:174.746655pt;}
.x29{left:196.026667pt;}
.x24{left:201.826667pt;}
.x8{left:204.826655pt;}
.x33{left:209.786655pt;}
.x23{left:237.306667pt;}
.x17{left:258.626643pt;}
.xe{left:259.746655pt;}
.x18{left:263.266655pt;}
.x27{left:265.826655pt;}
.xd{left:297.346655pt;}
.x1f{left:319.586655pt;}
.xf{left:320.866655pt;}
.xb{left:325.826655pt;}
.x4{left:344.546667pt;}
.xc{left:365.506655pt;}
.x10{left:373.986655pt;}
.x19{left:380.226643pt;}
.x1a{left:384.866655pt;}
.x9{left:396.866655pt;}
.x1b{left:408.066643pt;}
.x1c{left:412.706655pt;}
.x37{left:414.973310pt;}
.x38{left:424.253322pt;}
.x34{left:475.453310pt;}
.x35{left:480.093322pt;}
.x2b{left:490.013333pt;}
.x1d{left:496.413322pt;}
.x11{left:500.573322pt;}
.x36{left:512.093310pt;}
.x32{left:517.053322pt;}
.x14{left:554.333310pt;}
.x15{left:558.973322pt;}
.x16{left:693.253310pt;}
.x12{left:697.893322pt;}
}




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