
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_65d75394f1e18d992b6b6deb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_08e81b0339c5263e42e3a5b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.331543;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_52d69640fb0d8933079c703a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331055;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_58de53400ee9998de468f356.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331543;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_9ad6371d383e79367e270717.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331055;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_22c1d89ae89e8db983a44597.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921875;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_64123091e252ac466eac6fd6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_69fca0e15bf91ca3199798a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-8.160000px;}
.lse{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.872780px;}
.ls17{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.316800px;}
.ls2a{letter-spacing:-0.276380px;}
.ls2c{letter-spacing:-0.261202px;}
.ls1d{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.229200px;}
.ls11{letter-spacing:-0.226200px;}
.ls2b{letter-spacing:-0.178983px;}
.ls24{letter-spacing:-0.157800px;}
.ls1e{letter-spacing:-0.134400px;}
.ls27{letter-spacing:-0.115106px;}
.ls15{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.089400px;}
.ls14{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.053280px;}
.ls2d{letter-spacing:-0.027322px;}
.lsd{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.015179px;}
.lsc{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.164400px;}
.ls1a{letter-spacing:0.175800px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.240331px;}
.ls0{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.273977px;}
.ls23{letter-spacing:0.276254px;}
.ls2e{letter-spacing:0.276380px;}
.ls6{letter-spacing:0.302400px;}
.ls21{letter-spacing:0.320400px;}
.ls5{letter-spacing:0.331800px;}
.ls1f{letter-spacing:0.338400px;}
.lsb{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.402744px;}
.ls22{letter-spacing:0.439920px;}
.ls1c{letter-spacing:0.490800px;}
.ls13{letter-spacing:0.666000px;}
.ls18{letter-spacing:0.666720px;}
.ls25{letter-spacing:4.266000px;}
.ls3{letter-spacing:10.746720px;}
.ls4{letter-spacing:11.466720px;}
.ls7{letter-spacing:15.881559px;}
.ls8{letter-spacing:16.051561px;}
.lsa{letter-spacing:16.810500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-62.991941px;}
.ws8{word-spacing:-60.091800px;}
.wsb{word-spacing:-59.924400px;}
.ws2{word-spacing:-59.760000px;}
.wse{word-spacing:-56.920429px;}
.ws23{word-spacing:-19.687005px;}
.ws24{word-spacing:-19.425804px;}
.ws1e{word-spacing:-19.410625px;}
.ws22{word-spacing:-19.383303px;}
.ws1f{word-spacing:-19.295519px;}
.ws20{word-spacing:-19.231642px;}
.ws21{word-spacing:-19.149424px;}
.ws25{word-spacing:-17.511760px;}
.ws16{word-spacing:-17.104080px;}
.ws19{word-spacing:-16.951680px;}
.ws1b{word-spacing:-16.945080px;}
.ws15{word-spacing:-16.819680px;}
.ws14{word-spacing:-16.789080px;}
.ws6{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.506480px;}
.ws18{word-spacing:-16.478880px;}
.ws1c{word-spacing:-16.455480px;}
.ws7{word-spacing:-16.384080px;}
.ws17{word-spacing:-16.353480px;}
.ws13{word-spacing:-16.296480px;}
.wsd{word-spacing:-15.823879px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.wsf{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.392000px;}
.ws11{word-spacing:-13.140000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws9{word-spacing:-8.928000px;}
.ws12{word-spacing:0.000000px;}
.ws1d{word-spacing:7.606800px;}
._2{margin-left:-9.883680px;}
._8{margin-left:-8.052000px;}
._b{margin-left:-2.421120px;}
._0{margin-left:-1.093680px;}
._1{width:1.245360px;}
._3{width:2.619840px;}
._9{width:4.052400px;}
._7{width:5.736960px;}
._6{width:6.991920px;}
._a{width:8.067600px;}
._4{width:9.093120px;}
._5{width:10.604640px;}
._c{width:12.094453px;}
._10{width:14.342400px;}
._d{width:15.552000px;}
._13{width:16.744502px;}
._14{width:17.867442px;}
._11{width:18.884160px;}
._12{width:19.889760px;}
._f{width:21.628560px;}
._e{width:23.017680px;}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsb{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fsc{font-size:69.822393px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y39{bottom:4.140000px;}
.y50{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y42{bottom:10.260000px;}
.y4e{bottom:12.420000px;}
.y4{bottom:22.710000px;}
.y38{bottom:24.300000px;}
.y4d{bottom:32.220000px;}
.y41{bottom:39.960000px;}
.y37{bottom:47.385000px;}
.y3{bottom:47.910000px;}
.y40{bottom:51.840000px;}
.y4c{bottom:56.334000px;}
.y7{bottom:57.060000px;}
.y3f{bottom:64.794000px;}
.y36{bottom:70.605000px;}
.y4b{bottom:75.954000px;}
.y3e{bottom:77.934000px;}
.y81{bottom:90.576000px;}
.y35{bottom:93.465000px;}
.yae{bottom:94.896000px;}
.y3a{bottom:95.076000px;}
.y4a{bottom:95.394000px;}
.y3d{bottom:99.894000px;}
.y49{bottom:102.054000px;}
.y80{bottom:110.556000px;}
.yad{bottom:117.036000px;}
.y48{bottom:117.534000px;}
.y34{bottom:119.745000px;}
.y7f{bottom:130.716000px;}
.y47{bottom:133.014000px;}
.yac{bottom:139.176000px;}
.y33{bottom:142.965000px;}
.y46{bottom:148.674000px;}
.y7e{bottom:150.870000px;}
.yab{bottom:161.310000px;}
.y3c{bottom:161.814000px;}
.y32{bottom:162.945000px;}
.y45{bottom:164.154000px;}
.y7d{bottom:170.850000px;}
.y3b{bottom:172.434000px;}
.y44{bottom:179.634000px;}
.yaa{bottom:182.910000px;}
.y31{bottom:183.105000px;}
.y7c{bottom:191.010000px;}
.ya9{bottom:203.070000px;}
.y30{bottom:203.265000px;}
.y7b{bottom:211.170000px;}
.ya8{bottom:223.230000px;}
.y2f{bottom:223.245000px;}
.y7a{bottom:231.150000px;}
.ya7{bottom:243.210000px;}
.y2e{bottom:243.405000px;}
.y79{bottom:251.310000px;}
.ya6{bottom:263.370000px;}
.y2d{bottom:263.385000px;}
.y78{bottom:271.470000px;}
.ya5{bottom:283.530000px;}
.y2c{bottom:283.545000px;}
.y77{bottom:291.450000px;}
.yf{bottom:297.570000px;}
.ya4{bottom:303.510000px;}
.y2b{bottom:306.615000px;}
.y76{bottom:311.610000px;}
.y1d{bottom:315.615000px;}
.ya3{bottom:323.670000px;}
.y2a{bottom:329.835000px;}
.y75{bottom:331.770000px;}
.y1c{bottom:339.735000px;}
.ya2{bottom:343.875000px;}
.y29{bottom:349.995000px;}
.y74{bottom:351.795000px;}
.y1b{bottom:363.855000px;}
.y28{bottom:369.975000px;}
.y73{bottom:371.955000px;}
.ya1{bottom:384.015000px;}
.y1a{bottom:387.975000px;}
.y72{bottom:391.935000px;}
.y27{bottom:393.015000px;}
.ya0{bottom:404.175000px;}
.y19{bottom:412.095000px;}
.y26{bottom:416.235000px;}
.y9f{bottom:424.155000px;}
.y71{bottom:432.255000px;}
.y18{bottom:436.395000px;}
.y9e{bottom:444.315000px;}
.y70{bottom:452.235000px;}
.y25{bottom:456.375000px;}
.y17{bottom:460.515000px;}
.y9d{bottom:464.295000px;}
.y6f{bottom:472.395000px;}
.y24{bottom:476.535000px;}
.y9c{bottom:484.455000px;}
.y16{bottom:484.635000px;}
.y6e{bottom:492.555000px;}
.yc8{bottom:495.435000px;}
.y23{bottom:496.695000px;}
.y9b{bottom:504.615000px;}
.y15{bottom:508.755000px;}
.y6d{bottom:512.535000px;}
.y22{bottom:516.675000px;}
.yc7{bottom:521.535000px;}
.y9a{bottom:524.595000px;}
.y6c{bottom:532.695000px;}
.y14{bottom:532.875000px;}
.y21{bottom:536.835000px;}
.y99{bottom:544.755000px;}
.yc6{bottom:547.635000px;}
.y6b{bottom:552.855000px;}
.y13{bottom:556.995000px;}
.y98{bottom:564.915000px;}
.y6a{bottom:572.835000px;}
.yc5{bottom:573.735000px;}
.y20{bottom:577.020000px;}
.y12{bottom:581.340000px;}
.y97{bottom:584.895000px;}
.y69{bottom:592.995000px;}
.y1f{bottom:597.180000px;}
.yc4{bottom:599.835000px;}
.y96{bottom:605.085000px;}
.y11{bottom:605.460000px;}
.y68{bottom:613.185000px;}
.y1e{bottom:620.220000px;}
.y95{bottom:625.245000px;}
.yc3{bottom:626.145000px;}
.y10{bottom:629.580000px;}
.y67{bottom:633.165000px;}
.y94{bottom:645.225000px;}
.yc2{bottom:652.245000px;}
.y66{bottom:653.325000px;}
.y93{bottom:665.385000px;}
.y65{bottom:673.485000px;}
.yc1{bottom:678.345000px;}
.y92{bottom:685.545000px;}
.y64{bottom:693.465000px;}
.yc0{bottom:704.445000px;}
.y91{bottom:705.525000px;}
.y63{bottom:713.625000px;}
.y90{bottom:725.685000px;}
.ybf{bottom:730.545000px;}
.y62{bottom:733.785000px;}
.y8f{bottom:745.845000px;}
.y61{bottom:753.765000px;}
.ybe{bottom:754.125000px;}
.y8e{bottom:765.825000px;}
.y60{bottom:773.925000px;}
.ybd{bottom:776.265000px;}
.y8d{bottom:785.985000px;}
.y5f{bottom:794.085000px;}
.ybc{bottom:798.405000px;}
.y8c{bottom:806.145000px;}
.y5e{bottom:814.065000px;}
.ybb{bottom:820.545000px;}
.y8b{bottom:826.125000px;}
.y5d{bottom:834.225000px;}
.yba{bottom:842.685000px;}
.y8a{bottom:846.285000px;}
.y5c{bottom:854.205000px;}
.yb9{bottom:864.645000px;}
.y89{bottom:866.445000px;}
.y5b{bottom:874.410000px;}
.y88{bottom:886.470000px;}
.yb8{bottom:886.830000px;}
.y5a{bottom:894.570000px;}
.y87{bottom:906.630000px;}
.yb7{bottom:908.970000px;}
.y59{bottom:917.610000px;}
.y86{bottom:926.790000px;}
.yb6{bottom:931.110000px;}
.ye{bottom:939.390000px;}
.y58{bottom:940.830000px;}
.yd{bottom:944.070000px;}
.y85{bottom:946.770000px;}
.yb5{bottom:953.250000px;}
.y57{bottom:960.810000px;}
.yc{bottom:965.130000px;}
.y84{bottom:966.930000px;}
.yb4{bottom:975.210000px;}
.y56{bottom:980.970000px;}
.y83{bottom:986.910000px;}
.yb{bottom:991.230000px;}
.yb3{bottom:997.350000px;}
.y55{bottom:1004.010000px;}
.y82{bottom:1007.070000px;}
.ya{bottom:1014.450000px;}
.yb2{bottom:1019.490000px;}
.y54{bottom:1027.230000px;}
.y9{bottom:1036.050000px;}
.yb1{bottom:1041.630000px;}
.y53{bottom:1047.210000px;}
.yb0{bottom:1063.770000px;}
.y52{bottom:1067.370000px;}
.y8{bottom:1071.870000px;}
.y4f{bottom:1075.140000px;}
.yaf{bottom:1085.910000px;}
.y51{bottom:1087.530000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.hb{height:4.064063px;}
.h17{height:4.210313px;}
.h13{height:21.114844px;}
.h12{height:25.136719px;}
.h1a{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h16{height:38.100586px;}
.h14{height:38.997070px;}
.h15{height:39.471680px;}
.h6{height:41.726953px;}
.ha{height:42.164648px;}
.h1c{height:43.506914px;}
.h5{height:46.251562px;}
.h18{height:55.825312px;}
.h7{height:56.574492px;}
.h19{height:60.338990px;}
.h9{height:63.349102px;}
.h1b{height:64.002656px;}
.h3{height:65.884219px;}
.hf{height:66.775148px;}
.h10{height:70.218281px;}
.h1d{height:74.015827px;}
.h2{height:84.996000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.h11{height:201.780000px;}
.hc{height:639.285000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.660000px;}
.w7{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.056000px;}
.x19{left:8.100000px;}
.x4{left:12.780000px;}
.x1c{left:18.180000px;}
.x17{left:19.980000px;}
.x6{left:21.960000px;}
.x16{left:25.560000px;}
.x1e{left:29.160000px;}
.x10{left:43.740000px;}
.x1d{left:47.700000px;}
.x11{left:50.760000px;}
.xf{left:54.900000px;}
.x1a{left:59.625000px;}
.x15{left:67.134000px;}
.x1{left:78.300000px;}
.x13{left:79.374000px;}
.x14{left:83.694000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x1f{left:102.774000px;}
.x1b{left:106.734000px;}
.x23{left:113.435987px;}
.x12{left:124.554000px;}
.x20{left:131.625000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x18{left:219.090000px;}
.x2e{left:277.454987px;}
.x24{left:303.374987px;}
.x2f{left:339.914987px;}
.x27{left:347.114987px;}
.x30{left:360.794987px;}
.x21{left:371.595000px;}
.x2c{left:376.634987px;}
.x2b{left:384.554987px;}
.x31{left:435.704987px;}
.x25{left:481.784987px;}
.x2d{left:504.284987px;}
.x29{left:523.724987px;}
.x28{left:533.444987px;}
.xa{left:536.864987px;}
.x26{left:563.144987px;}
.xd{left:580.964987px;}
.xc{left:591.044987px;}
.xb{left:632.849987px;}
.x2a{left:649.949987px;}
.x8{left:766.049987px;}
.x7{left:791.999987px;}
.xe{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-7.253333pt;}
.lse{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.775804pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.281600pt;}
.ls2a{letter-spacing:-0.245671pt;}
.ls2c{letter-spacing:-0.232179pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.203733pt;}
.ls11{letter-spacing:-0.201067pt;}
.ls2b{letter-spacing:-0.159096pt;}
.ls24{letter-spacing:-0.140267pt;}
.ls1e{letter-spacing:-0.119467pt;}
.ls27{letter-spacing:-0.102316pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.079467pt;}
.ls14{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls2d{letter-spacing:-0.024286pt;}
.lsd{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.013492pt;}
.lsc{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.146133pt;}
.ls1a{letter-spacing:0.156267pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.213627pt;}
.ls0{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.243535pt;}
.ls23{letter-spacing:0.245559pt;}
.ls2e{letter-spacing:0.245671pt;}
.ls6{letter-spacing:0.268800pt;}
.ls21{letter-spacing:0.284800pt;}
.ls5{letter-spacing:0.294933pt;}
.ls1f{letter-spacing:0.300800pt;}
.lsb{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.357994pt;}
.ls22{letter-spacing:0.391040pt;}
.ls1c{letter-spacing:0.436267pt;}
.ls13{letter-spacing:0.592000pt;}
.ls18{letter-spacing:0.592640pt;}
.ls25{letter-spacing:3.792000pt;}
.ls3{letter-spacing:9.552640pt;}
.ls4{letter-spacing:10.192640pt;}
.ls7{letter-spacing:14.116941pt;}
.ls8{letter-spacing:14.268054pt;}
.lsa{letter-spacing:14.942667pt;}
.wsc{word-spacing:-55.992837pt;}
.ws8{word-spacing:-53.414933pt;}
.wsb{word-spacing:-53.266133pt;}
.ws2{word-spacing:-53.120000pt;}
.wse{word-spacing:-50.595937pt;}
.ws23{word-spacing:-17.499560pt;}
.ws24{word-spacing:-17.267381pt;}
.ws1e{word-spacing:-17.253889pt;}
.ws22{word-spacing:-17.229603pt;}
.ws1f{word-spacing:-17.151573pt;}
.ws20{word-spacing:-17.094793pt;}
.ws21{word-spacing:-17.021710pt;}
.ws25{word-spacing:-15.566009pt;}
.ws16{word-spacing:-15.203627pt;}
.ws19{word-spacing:-15.068160pt;}
.ws1b{word-spacing:-15.062293pt;}
.ws15{word-spacing:-14.950827pt;}
.ws14{word-spacing:-14.923627pt;}
.ws6{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.672427pt;}
.ws18{word-spacing:-14.647893pt;}
.ws1c{word-spacing:-14.627093pt;}
.ws7{word-spacing:-14.563627pt;}
.ws17{word-spacing:-14.536427pt;}
.ws13{word-spacing:-14.485760pt;}
.wsd{word-spacing:-14.065670pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.016000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws11{word-spacing:-11.680000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws9{word-spacing:-7.936000pt;}
.ws12{word-spacing:0.000000pt;}
.ws1d{word-spacing:6.761600pt;}
._2{margin-left:-8.785493pt;}
._8{margin-left:-7.157333pt;}
._b{margin-left:-2.152107pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.106987pt;}
._3{width:2.328747pt;}
._9{width:3.602133pt;}
._7{width:5.099520pt;}
._6{width:6.215040pt;}
._a{width:7.171200pt;}
._4{width:8.082773pt;}
._5{width:9.426347pt;}
._c{width:10.750625pt;}
._10{width:12.748800pt;}
._d{width:13.824000pt;}
._13{width:14.884002pt;}
._14{width:15.882171pt;}
._11{width:16.785920pt;}
._12{width:17.679787pt;}
._f{width:19.225387pt;}
._e{width:20.460160pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsb{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fsc{font-size:62.064349pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y39{bottom:3.680000pt;}
.y50{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y42{bottom:9.120000pt;}
.y4e{bottom:11.040000pt;}
.y4{bottom:20.186667pt;}
.y38{bottom:21.600000pt;}
.y4d{bottom:28.640000pt;}
.y41{bottom:35.520000pt;}
.y37{bottom:42.120000pt;}
.y3{bottom:42.586667pt;}
.y40{bottom:46.080000pt;}
.y4c{bottom:50.074667pt;}
.y7{bottom:50.720000pt;}
.y3f{bottom:57.594667pt;}
.y36{bottom:62.760000pt;}
.y4b{bottom:67.514667pt;}
.y3e{bottom:69.274667pt;}
.y81{bottom:80.512000pt;}
.y35{bottom:83.080000pt;}
.yae{bottom:84.352000pt;}
.y3a{bottom:84.512000pt;}
.y4a{bottom:84.794667pt;}
.y3d{bottom:88.794667pt;}
.y49{bottom:90.714667pt;}
.y80{bottom:98.272000pt;}
.yad{bottom:104.032000pt;}
.y48{bottom:104.474667pt;}
.y34{bottom:106.440000pt;}
.y7f{bottom:116.192000pt;}
.y47{bottom:118.234667pt;}
.yac{bottom:123.712000pt;}
.y33{bottom:127.080000pt;}
.y46{bottom:132.154667pt;}
.y7e{bottom:134.106667pt;}
.yab{bottom:143.386667pt;}
.y3c{bottom:143.834667pt;}
.y32{bottom:144.840000pt;}
.y45{bottom:145.914667pt;}
.y7d{bottom:151.866667pt;}
.y3b{bottom:153.274667pt;}
.y44{bottom:159.674667pt;}
.yaa{bottom:162.586667pt;}
.y31{bottom:162.760000pt;}
.y7c{bottom:169.786667pt;}
.ya9{bottom:180.506667pt;}
.y30{bottom:180.680000pt;}
.y7b{bottom:187.706667pt;}
.ya8{bottom:198.426667pt;}
.y2f{bottom:198.440000pt;}
.y7a{bottom:205.466667pt;}
.ya7{bottom:216.186667pt;}
.y2e{bottom:216.360000pt;}
.y79{bottom:223.386667pt;}
.ya6{bottom:234.106667pt;}
.y2d{bottom:234.120000pt;}
.y78{bottom:241.306667pt;}
.ya5{bottom:252.026667pt;}
.y2c{bottom:252.040000pt;}
.y77{bottom:259.066667pt;}
.yf{bottom:264.506667pt;}
.ya4{bottom:269.786667pt;}
.y2b{bottom:272.546667pt;}
.y76{bottom:276.986667pt;}
.y1d{bottom:280.546667pt;}
.ya3{bottom:287.706667pt;}
.y2a{bottom:293.186667pt;}
.y75{bottom:294.906667pt;}
.y1c{bottom:301.986667pt;}
.ya2{bottom:305.666667pt;}
.y29{bottom:311.106667pt;}
.y74{bottom:312.706667pt;}
.y1b{bottom:323.426667pt;}
.y28{bottom:328.866667pt;}
.y73{bottom:330.626667pt;}
.ya1{bottom:341.346667pt;}
.y1a{bottom:344.866667pt;}
.y72{bottom:348.386667pt;}
.y27{bottom:349.346667pt;}
.ya0{bottom:359.266667pt;}
.y19{bottom:366.306667pt;}
.y26{bottom:369.986667pt;}
.y9f{bottom:377.026667pt;}
.y71{bottom:384.226667pt;}
.y18{bottom:387.906667pt;}
.y9e{bottom:394.946667pt;}
.y70{bottom:401.986667pt;}
.y25{bottom:405.666667pt;}
.y17{bottom:409.346667pt;}
.y9d{bottom:412.706667pt;}
.y6f{bottom:419.906667pt;}
.y24{bottom:423.586667pt;}
.y9c{bottom:430.626667pt;}
.y16{bottom:430.786667pt;}
.y6e{bottom:437.826667pt;}
.yc8{bottom:440.386667pt;}
.y23{bottom:441.506667pt;}
.y9b{bottom:448.546667pt;}
.y15{bottom:452.226667pt;}
.y6d{bottom:455.586667pt;}
.y22{bottom:459.266667pt;}
.yc7{bottom:463.586667pt;}
.y9a{bottom:466.306667pt;}
.y6c{bottom:473.506667pt;}
.y14{bottom:473.666667pt;}
.y21{bottom:477.186667pt;}
.y99{bottom:484.226667pt;}
.yc6{bottom:486.786667pt;}
.y6b{bottom:491.426667pt;}
.y13{bottom:495.106667pt;}
.y98{bottom:502.146667pt;}
.y6a{bottom:509.186667pt;}
.yc5{bottom:509.986667pt;}
.y20{bottom:512.906667pt;}
.y12{bottom:516.746667pt;}
.y97{bottom:519.906667pt;}
.y69{bottom:527.106667pt;}
.y1f{bottom:530.826667pt;}
.yc4{bottom:533.186667pt;}
.y96{bottom:537.853333pt;}
.y11{bottom:538.186667pt;}
.y68{bottom:545.053333pt;}
.y1e{bottom:551.306667pt;}
.y95{bottom:555.773333pt;}
.yc3{bottom:556.573333pt;}
.y10{bottom:559.626667pt;}
.y67{bottom:562.813333pt;}
.y94{bottom:573.533333pt;}
.yc2{bottom:579.773333pt;}
.y66{bottom:580.733333pt;}
.y93{bottom:591.453333pt;}
.y65{bottom:598.653333pt;}
.yc1{bottom:602.973333pt;}
.y92{bottom:609.373333pt;}
.y64{bottom:616.413333pt;}
.yc0{bottom:626.173333pt;}
.y91{bottom:627.133333pt;}
.y63{bottom:634.333333pt;}
.y90{bottom:645.053333pt;}
.ybf{bottom:649.373333pt;}
.y62{bottom:652.253333pt;}
.y8f{bottom:662.973333pt;}
.y61{bottom:670.013333pt;}
.ybe{bottom:670.333333pt;}
.y8e{bottom:680.733333pt;}
.y60{bottom:687.933333pt;}
.ybd{bottom:690.013333pt;}
.y8d{bottom:698.653333pt;}
.y5f{bottom:705.853333pt;}
.ybc{bottom:709.693333pt;}
.y8c{bottom:716.573333pt;}
.y5e{bottom:723.613333pt;}
.ybb{bottom:729.373333pt;}
.y8b{bottom:734.333333pt;}
.y5d{bottom:741.533333pt;}
.yba{bottom:749.053333pt;}
.y8a{bottom:752.253333pt;}
.y5c{bottom:759.293333pt;}
.yb9{bottom:768.573333pt;}
.y89{bottom:770.173333pt;}
.y5b{bottom:777.253333pt;}
.y88{bottom:787.973333pt;}
.yb8{bottom:788.293333pt;}
.y5a{bottom:795.173333pt;}
.y87{bottom:805.893333pt;}
.yb7{bottom:807.973333pt;}
.y59{bottom:815.653333pt;}
.y86{bottom:823.813333pt;}
.yb6{bottom:827.653333pt;}
.ye{bottom:835.013333pt;}
.y58{bottom:836.293333pt;}
.yd{bottom:839.173333pt;}
.y85{bottom:841.573333pt;}
.yb5{bottom:847.333333pt;}
.y57{bottom:854.053333pt;}
.yc{bottom:857.893333pt;}
.y84{bottom:859.493333pt;}
.yb4{bottom:866.853333pt;}
.y56{bottom:871.973333pt;}
.y83{bottom:877.253333pt;}
.yb{bottom:881.093333pt;}
.yb3{bottom:886.533333pt;}
.y55{bottom:892.453333pt;}
.y82{bottom:895.173333pt;}
.ya{bottom:901.733333pt;}
.yb2{bottom:906.213333pt;}
.y54{bottom:913.093333pt;}
.y9{bottom:920.933333pt;}
.yb1{bottom:925.893333pt;}
.y53{bottom:930.853333pt;}
.yb0{bottom:945.573333pt;}
.y52{bottom:948.773333pt;}
.y8{bottom:952.773333pt;}
.y4f{bottom:955.680000pt;}
.yaf{bottom:965.253333pt;}
.y51{bottom:966.693333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.hb{height:3.612500pt;}
.h17{height:3.742500pt;}
.h13{height:18.768750pt;}
.h12{height:22.343750pt;}
.h1a{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h16{height:33.867188pt;}
.h14{height:34.664062pt;}
.h15{height:35.085938pt;}
.h6{height:37.090625pt;}
.ha{height:37.479688pt;}
.h1c{height:38.672812pt;}
.h5{height:41.112500pt;}
.h18{height:49.622500pt;}
.h7{height:50.288438pt;}
.h19{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1b{height:56.891250pt;}
.h3{height:58.563750pt;}
.hf{height:59.355688pt;}
.h10{height:62.416250pt;}
.h1d{height:65.791846pt;}
.h2{height:75.552000pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.h11{height:179.360000pt;}
.hc{height:568.253333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.920000pt;}
.w7{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.272000pt;}
.x19{left:7.200000pt;}
.x4{left:11.360000pt;}
.x1c{left:16.160000pt;}
.x17{left:17.760000pt;}
.x6{left:19.520000pt;}
.x16{left:22.720000pt;}
.x1e{left:25.920000pt;}
.x10{left:38.880000pt;}
.x1d{left:42.400000pt;}
.x11{left:45.120000pt;}
.xf{left:48.800000pt;}
.x1a{left:53.000000pt;}
.x15{left:59.674667pt;}
.x1{left:69.600000pt;}
.x13{left:70.554667pt;}
.x14{left:74.394667pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x1f{left:91.354667pt;}
.x1b{left:94.874667pt;}
.x23{left:100.831988pt;}
.x12{left:110.714667pt;}
.x20{left:117.000000pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x18{left:194.746667pt;}
.x2e{left:246.626655pt;}
.x24{left:269.666655pt;}
.x2f{left:302.146655pt;}
.x27{left:308.546655pt;}
.x30{left:320.706655pt;}
.x21{left:330.306667pt;}
.x2c{left:334.786655pt;}
.x2b{left:341.826655pt;}
.x31{left:387.293322pt;}
.x25{left:428.253322pt;}
.x2d{left:448.253322pt;}
.x29{left:465.533322pt;}
.x28{left:474.173322pt;}
.xa{left:477.213322pt;}
.x26{left:500.573322pt;}
.xd{left:516.413322pt;}
.xc{left:525.373322pt;}
.xb{left:562.533322pt;}
.x2a{left:577.733322pt;}
.x8{left:680.933322pt;}
.x7{left:703.999988pt;}
.xe{left:717.279988pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  