
    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_b107c005e3bcbae68f7aba18.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_d04df6aa9401fe3a1fdd458f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_af83387347a4161e56a48043.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_6364bf212550cf6f91ef144b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_5117953517d8a80dbb9511e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_a65fb565efd20a6175bc590c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973000;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_f46ba7cd2a86a28cc176409d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.965000;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_ea0c3276187c228713feaa15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_81a5c22160c8692d7e4bb889.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_55ed563f7bc31aa091c9f31e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_251f823d1f37b556debd2a20.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_f9b5e168292d03f824c6a3bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_35ef8017f73da0e70f5f837a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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_f247041e43754c0302cda170.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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:fff;src:url('chunks/assets/font_80eebd575b115740045526ed.woff2')format("woff");}.fff{font-family:fff;line-height:0.937988;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:ff10;src:url('chunks/assets/font_90f47d2ef8516cc93ef8d290.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.042000;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:ff11;src:url('chunks/assets/font_c5f0dcab643c9251e6679e84.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.724000;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:ff12;src:url('chunks/assets/font_f54f69c795622177b1d93467.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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);}
.v2{vertical-align:-14.799600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls4{letter-spacing:-2.052000px;}
.ls8{letter-spacing:-1.344000px;}
.ls10{letter-spacing:-1.104000px;}
.ls2{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-1.020000px;}
.lse{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.840000px;}
.ls6{letter-spacing:-0.810000px;}
.ls1{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.378000px;}
.ls7{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.216000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.528000px;}
.ls15{letter-spacing:0.572400px;}
.ls14{letter-spacing:0.624000px;}
.lsb{letter-spacing:1.199400px;}
.lsc{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.350000px;}
.ls0{letter-spacing:15.390000px;}
.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:-15.066000px;}
.ws62{word-spacing:-14.850000px;}
.ws63{word-spacing:-14.688000px;}
.ws8{word-spacing:-14.640000px;}
.ws3{word-spacing:-14.526000px;}
.ws0{word-spacing:-14.280000px;}
.ws2{word-spacing:-13.986000px;}
.ws7{word-spacing:-13.284000px;}
.ws4{word-spacing:-12.336000px;}
.ws5{word-spacing:-11.232000px;}
.ws6{word-spacing:-7.839018px;}
.ws41{word-spacing:-5.100000px;}
.ws40{word-spacing:-5.040000px;}
.ws45{word-spacing:-4.740000px;}
.wsc{word-spacing:-3.996000px;}
.ws3c{word-spacing:-3.900000px;}
.ws35{word-spacing:-3.840000px;}
.ws58{word-spacing:-3.780000px;}
.ws5d{word-spacing:-3.540000px;}
.ws65{word-spacing:-2.580000px;}
.wsd{word-spacing:-2.484000px;}
.ws4e{word-spacing:-2.340000px;}
.ws12{word-spacing:-2.106000px;}
.ws66{word-spacing:-2.100000px;}
.ws69{word-spacing:-2.040000px;}
.ws4b{word-spacing:-1.380000px;}
.ws3b{word-spacing:-1.320000px;}
.ws53{word-spacing:-1.080000px;}
.ws21{word-spacing:-0.918000px;}
.ws26{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.810000px;}
.ws25{word-spacing:-0.648000px;}
.ws57{word-spacing:-0.624000px;}
.ws17{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.528000px;}
.ws30{word-spacing:-0.360000px;}
.ws56{word-spacing:-0.336000px;}
.ws29{word-spacing:-0.162000px;}
.ws38{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws9{word-spacing:0.180000px;}
.ws15{word-spacing:0.216000px;}
.ws2e{word-spacing:0.270000px;}
.ws2b{word-spacing:0.324000px;}
.ws44{word-spacing:0.540000px;}
.ws68{word-spacing:0.660000px;}
.ws27{word-spacing:0.702000px;}
.wsf{word-spacing:0.756000px;}
.ws1e{word-spacing:0.810000px;}
.ws3d{word-spacing:0.900000px;}
.ws18{word-spacing:0.972000px;}
.ws47{word-spacing:1.020000px;}
.ws42{word-spacing:1.104000px;}
.ws4f{word-spacing:1.140000px;}
.ws2f{word-spacing:1.344000px;}
.ws34{word-spacing:1.380000px;}
.ws6d{word-spacing:1.458000px;}
.ws60{word-spacing:1.500000px;}
.ws6c{word-spacing:1.512000px;}
.ws2d{word-spacing:1.728000px;}
.ws46{word-spacing:1.740000px;}
.ws33{word-spacing:2.160000px;}
.ws3a{word-spacing:2.640000px;}
.ws36{word-spacing:2.820000px;}
.ws37{word-spacing:3.060000px;}
.ws31{word-spacing:3.180000px;}
.ws4a{word-spacing:3.360000px;}
.wsb{word-spacing:3.402000px;}
.wse{word-spacing:3.564000px;}
.ws6b{word-spacing:3.672000px;}
.ws55{word-spacing:3.960000px;}
.ws14{word-spacing:4.428000px;}
.ws64{word-spacing:4.680000px;}
.ws50{word-spacing:4.800000px;}
.ws54{word-spacing:4.860000px;}
.ws2a{word-spacing:5.184000px;}
.ws5a{word-spacing:5.460000px;}
.ws5e{word-spacing:5.580000px;}
.ws2c{word-spacing:5.994000px;}
.ws28{word-spacing:6.534000px;}
.ws49{word-spacing:7.080000px;}
.ws51{word-spacing:7.260000px;}
.ws59{word-spacing:7.380000px;}
.ws1b{word-spacing:8.370000px;}
.ws5f{word-spacing:9.120000px;}
.ws20{word-spacing:9.126000px;}
.ws39{word-spacing:9.300000px;}
.ws4c{word-spacing:9.480000px;}
.ws5c{word-spacing:10.200000px;}
.ws6a{word-spacing:11.070000px;}
.ws3f{word-spacing:11.100000px;}
.ws3e{word-spacing:11.220000px;}
.ws52{word-spacing:11.280000px;}
.ws67{word-spacing:11.460000px;}
.ws48{word-spacing:12.420000px;}
.ws32{word-spacing:12.780000px;}
.ws24{word-spacing:13.662000px;}
.ws1a{word-spacing:14.580000px;}
.ws61{word-spacing:14.820000px;}
.ws5b{word-spacing:15.000000px;}
.ws22{word-spacing:16.524000px;}
.ws19{word-spacing:18.468000px;}
.ws4d{word-spacing:20.400000px;}
.ws10{word-spacing:20.412000px;}
.ws16{word-spacing:23.220000px;}
.ws13{word-spacing:26.406000px;}
.ws1c{word-spacing:27.594000px;}
.ws1d{word-spacing:32.994000px;}
.ws23{word-spacing:33.318000px;}
.ws11{word-spacing:59.994000px;}
._d{margin-left:-2301.373200px;}
._8{margin-left:-12.459600px;}
._3{margin-left:-7.020600px;}
._10{margin-left:-5.982600px;}
._4{margin-left:-4.939800px;}
._0{margin-left:-3.861600px;}
._2{margin-left:-2.028000px;}
._6{margin-left:-1.026000px;}
._5{width:1.290600px;}
._1{width:2.442000px;}
._f{width:3.455400px;}
._c{width:4.471200px;}
._a{width:10.491000px;}
._9{width:11.494200px;}
._7{width:14.526000px;}
._b{width:15.865200px;}
._e{width:1202.019000px;}
.fc5{color:rgb(85,160,116);}
.fc4{color:rgb(68,65,65);}
.fc3{color:rgb(145,143,143);}
.fc2{color:rgb(90,87,88);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(47,143,96);}
.fs3{font-size:31.482000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:28.980150px;}
.y35{bottom:42.593700px;}
.y57{bottom:46.293600px;}
.y4{bottom:46.980150px;}
.y34{bottom:59.093700px;}
.y56{bottom:62.793600px;}
.y3{bottom:64.980150px;}
.y2{bottom:87.232050px;}
.y29{bottom:119.055300px;}
.y28{bottom:135.555300px;}
.y27{bottom:152.055300px;}
.y26{bottom:172.807500px;}
.y7c{bottom:187.696500px;}
.y25{bottom:189.307500px;}
.y24{bottom:205.807500px;}
.y7b{bottom:210.946500px;}
.y7a{bottom:234.196500px;}
.y6d{bottom:251.101800px;}
.y79{bottom:257.446500px;}
.y6c{bottom:266.101800px;}
.y78{bottom:280.696500px;}
.y6b{bottom:281.101800px;}
.y1d{bottom:281.668800px;}
.y6a{bottom:296.101800px;}
.y1c{bottom:298.168800px;}
.y77{bottom:303.946500px;}
.y69{bottom:311.101800px;}
.y23{bottom:314.668800px;}
.y1b{bottom:318.920700px;}
.y68{bottom:326.101800px;}
.y76{bottom:327.196500px;}
.y22{bottom:331.168800px;}
.y1a{bottom:335.420700px;}
.y67{bottom:341.101800px;}
.yab{bottom:342.488850px;}
.y75{bottom:350.446500px;}
.y19{bottom:351.920700px;}
.y66{bottom:356.101800px;}
.y21{bottom:360.424650px;}
.yaa{bottom:360.488850px;}
.y18{bottom:368.420700px;}
.y65{bottom:371.101800px;}
.y74{bottom:373.696500px;}
.y20{bottom:376.924650px;}
.ya9{bottom:378.488850px;}
.y17{bottom:384.920700px;}
.y64{bottom:386.101800px;}
.y1f{bottom:393.424650px;}
.ya8{bottom:396.488850px;}
.y73{bottom:396.946500px;}
.y63{bottom:401.101800px;}
.y16{bottom:401.420700px;}
.y1e{bottom:409.924650px;}
.y54{bottom:416.014050px;}
.y62{bottom:416.101800px;}
.y72{bottom:420.196500px;}
.y15{bottom:426.424650px;}
.y53{bottom:431.014050px;}
.y61{bottom:431.101800px;}
.ya7{bottom:433.988850px;}
.y14{bottom:442.924650px;}
.y52{bottom:446.014050px;}
.y60{bottom:446.101800px;}
.y13{bottom:459.424650px;}
.y51{bottom:461.014050px;}
.y5f{bottom:461.101800px;}
.y71{bottom:466.696500px;}
.y12{bottom:475.924650px;}
.y50{bottom:476.014050px;}
.y5e{bottom:476.101800px;}
.y70{bottom:489.946500px;}
.y4f{bottom:491.014050px;}
.y5d{bottom:491.101800px;}
.y11{bottom:492.424650px;}
.ya6{bottom:494.588850px;}
.y4e{bottom:506.014050px;}
.y5c{bottom:506.101800px;}
.y10{bottom:508.924650px;}
.y6f{bottom:513.196500px;}
.ya5{bottom:517.838850px;}
.y4d{bottom:521.014050px;}
.y5b{bottom:521.101800px;}
.yf{bottom:525.424650px;}
.y4c{bottom:536.014050px;}
.y6e{bottom:536.446500px;}
.y5a{bottom:540.353850px;}
.ya4{bottom:541.088850px;}
.ye{bottom:541.924650px;}
.y4b{bottom:555.265950px;}
.yd{bottom:558.424650px;}
.ya3{bottom:564.338850px;}
.yc{bottom:574.924650px;}
.ya2{bottom:587.588850px;}
.yb{bottom:591.424650px;}
.y98{bottom:605.337000px;}
.y4a{bottom:607.760400px;}
.ya{bottom:607.924650px;}
.ya1{bottom:610.838850px;}
.y97{bottom:620.337000px;}
.y49{bottom:631.010400px;}
.y96{bottom:635.337000px;}
.y95{bottom:650.337000px;}
.y48{bottom:654.260400px;}
.ya0{bottom:657.338850px;}
.y9{bottom:663.066900px;}
.y94{bottom:665.337000px;}
.y47{bottom:677.510400px;}
.y8{bottom:679.566900px;}
.y93{bottom:680.337000px;}
.y9f{bottom:680.588850px;}
.y32{bottom:690.809700px;}
.y92{bottom:695.337000px;}
.y7{bottom:696.066900px;}
.y46{bottom:700.760400px;}
.y9e{bottom:703.838850px;}
.y91{bottom:710.337000px;}
.y6{bottom:712.566900px;}
.y31{bottom:713.061600px;}
.y45{bottom:724.010400px;}
.y90{bottom:725.337000px;}
.y9d{bottom:727.088850px;}
.y8f{bottom:740.337000px;}
.y9c{bottom:750.338850px;}
.y8e{bottom:755.337000px;}
.y8d{bottom:770.337000px;}
.y44{bottom:770.510400px;}
.y9b{bottom:773.588850px;}
.y30{bottom:780.791700px;}
.y8c{bottom:785.337000px;}
.y43{bottom:793.760400px;}
.y9a{bottom:796.838850px;}
.y8b{bottom:800.337000px;}
.y2f{bottom:804.791700px;}
.y42{bottom:817.010400px;}
.y8a{bottom:819.588900px;}
.y99{bottom:820.088850px;}
.y2e{bottom:828.791700px;}
.y41{bottom:840.260400px;}
.y40{bottom:863.510400px;}
.yb1{bottom:870.667650px;}
.y2d{bottom:874.051500px;}
.yb0{bottom:885.667650px;}
.y59{bottom:886.760400px;}
.yaf{bottom:900.667650px;}
.y2c{bottom:908.551500px;}
.y3f{bottom:910.010400px;}
.yae{bottom:915.667650px;}
.yad{bottom:930.667650px;}
.y3e{bottom:933.260400px;}
.y2b{bottom:943.051500px;}
.yac{bottom:945.667650px;}
.y3d{bottom:956.510400px;}
.y89{bottom:960.667650px;}
.y88{bottom:975.667650px;}
.y2a{bottom:977.551500px;}
.y3c{bottom:979.760400px;}
.y87{bottom:990.667650px;}
.y3b{bottom:1003.010400px;}
.y86{bottom:1005.667650px;}
.y85{bottom:1020.667650px;}
.y3a{bottom:1026.260400px;}
.y1{bottom:1035.276450px;}
.y84{bottom:1035.667650px;}
.y39{bottom:1049.510400px;}
.y83{bottom:1050.667650px;}
.y82{bottom:1065.667650px;}
.y58{bottom:1072.760400px;}
.y81{bottom:1080.667650px;}
.y80{bottom:1095.667650px;}
.y38{bottom:1096.010400px;}
.y7f{bottom:1110.667650px;}
.y37{bottom:1119.260400px;}
.y7e{bottom:1125.667650px;}
.y36{bottom:1142.510400px;}
.y7d{bottom:1144.919550px;}
.y33{bottom:1199.055150px;}
.y55{bottom:1213.455150px;}
.h5{height:36.768000px;}
.h2{height:43.681641px;}
.h4{height:46.320000px;}
.hb{height:49.280400px;}
.h9{height:50.400000px;}
.hc{height:55.584000px;}
.h3{height:56.700000px;}
.h8{height:63.000000px;}
.ha{height:64.080000px;}
.h6{height:74.112000px;}
.h7{height:75.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:41.081700px;}
.x14{left:42.519600px;}
.x11{left:51.023550px;}
.x17{left:106.299150px;}
.x7{left:119.055150px;}
.x9{left:127.559100px;}
.x2{left:131.811000px;}
.xe{left:186.117600px;}
.xc{left:199.465950px;}
.xb{left:201.879000px;}
.xa{left:207.792450px;}
.xf{left:210.785550px;}
.x12{left:212.598450px;}
.x13{left:233.858250px;}
.x15{left:267.117750px;}
.xd{left:268.547100px;}
.x10{left:338.838900px;}
.x1{left:393.016950px;}
.x16{left:456.918750px;}
.x8{left:466.653600px;}
.x3{left:596.867400px;}
.x4{left:599.517450px;}
.x6{left:645.680400px;}
.x5{left:693.643200px;}
.x18{left:701.574750px;}
@media print{
.v2{vertical-align:-13.155200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls4{letter-spacing:-1.824000pt;}
.ls8{letter-spacing:-1.194667pt;}
.ls10{letter-spacing:-0.981333pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.906667pt;}
.lse{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.746667pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.469333pt;}
.ls15{letter-spacing:0.508800pt;}
.ls14{letter-spacing:0.554667pt;}
.lsb{letter-spacing:1.066133pt;}
.lsc{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.200000pt;}
.ls0{letter-spacing:13.680000pt;}
.ws1{word-spacing:-13.392000pt;}
.ws62{word-spacing:-13.200000pt;}
.ws63{word-spacing:-13.056000pt;}
.ws8{word-spacing:-13.013333pt;}
.ws3{word-spacing:-12.912000pt;}
.ws0{word-spacing:-12.693333pt;}
.ws2{word-spacing:-12.432000pt;}
.ws7{word-spacing:-11.808000pt;}
.ws4{word-spacing:-10.965333pt;}
.ws5{word-spacing:-9.984000pt;}
.ws6{word-spacing:-6.968016pt;}
.ws41{word-spacing:-4.533333pt;}
.ws40{word-spacing:-4.480000pt;}
.ws45{word-spacing:-4.213333pt;}
.wsc{word-spacing:-3.552000pt;}
.ws3c{word-spacing:-3.466667pt;}
.ws35{word-spacing:-3.413333pt;}
.ws58{word-spacing:-3.360000pt;}
.ws5d{word-spacing:-3.146667pt;}
.ws65{word-spacing:-2.293333pt;}
.wsd{word-spacing:-2.208000pt;}
.ws4e{word-spacing:-2.080000pt;}
.ws12{word-spacing:-1.872000pt;}
.ws66{word-spacing:-1.866667pt;}
.ws69{word-spacing:-1.813333pt;}
.ws4b{word-spacing:-1.226667pt;}
.ws3b{word-spacing:-1.173333pt;}
.ws53{word-spacing:-0.960000pt;}
.ws21{word-spacing:-0.816000pt;}
.ws26{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.720000pt;}
.ws25{word-spacing:-0.576000pt;}
.ws57{word-spacing:-0.554667pt;}
.ws17{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.469333pt;}
.ws30{word-spacing:-0.320000pt;}
.ws56{word-spacing:-0.298667pt;}
.ws29{word-spacing:-0.144000pt;}
.ws38{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws9{word-spacing:0.160000pt;}
.ws15{word-spacing:0.192000pt;}
.ws2e{word-spacing:0.240000pt;}
.ws2b{word-spacing:0.288000pt;}
.ws44{word-spacing:0.480000pt;}
.ws68{word-spacing:0.586667pt;}
.ws27{word-spacing:0.624000pt;}
.wsf{word-spacing:0.672000pt;}
.ws1e{word-spacing:0.720000pt;}
.ws3d{word-spacing:0.800000pt;}
.ws18{word-spacing:0.864000pt;}
.ws47{word-spacing:0.906667pt;}
.ws42{word-spacing:0.981333pt;}
.ws4f{word-spacing:1.013333pt;}
.ws2f{word-spacing:1.194667pt;}
.ws34{word-spacing:1.226667pt;}
.ws6d{word-spacing:1.296000pt;}
.ws60{word-spacing:1.333333pt;}
.ws6c{word-spacing:1.344000pt;}
.ws2d{word-spacing:1.536000pt;}
.ws46{word-spacing:1.546667pt;}
.ws33{word-spacing:1.920000pt;}
.ws3a{word-spacing:2.346667pt;}
.ws36{word-spacing:2.506667pt;}
.ws37{word-spacing:2.720000pt;}
.ws31{word-spacing:2.826667pt;}
.ws4a{word-spacing:2.986667pt;}
.wsb{word-spacing:3.024000pt;}
.wse{word-spacing:3.168000pt;}
.ws6b{word-spacing:3.264000pt;}
.ws55{word-spacing:3.520000pt;}
.ws14{word-spacing:3.936000pt;}
.ws64{word-spacing:4.160000pt;}
.ws50{word-spacing:4.266667pt;}
.ws54{word-spacing:4.320000pt;}
.ws2a{word-spacing:4.608000pt;}
.ws5a{word-spacing:4.853333pt;}
.ws5e{word-spacing:4.960000pt;}
.ws2c{word-spacing:5.328000pt;}
.ws28{word-spacing:5.808000pt;}
.ws49{word-spacing:6.293333pt;}
.ws51{word-spacing:6.453333pt;}
.ws59{word-spacing:6.560000pt;}
.ws1b{word-spacing:7.440000pt;}
.ws5f{word-spacing:8.106667pt;}
.ws20{word-spacing:8.112000pt;}
.ws39{word-spacing:8.266667pt;}
.ws4c{word-spacing:8.426667pt;}
.ws5c{word-spacing:9.066667pt;}
.ws6a{word-spacing:9.840000pt;}
.ws3f{word-spacing:9.866667pt;}
.ws3e{word-spacing:9.973333pt;}
.ws52{word-spacing:10.026667pt;}
.ws67{word-spacing:10.186667pt;}
.ws48{word-spacing:11.040000pt;}
.ws32{word-spacing:11.360000pt;}
.ws24{word-spacing:12.144000pt;}
.ws1a{word-spacing:12.960000pt;}
.ws61{word-spacing:13.173333pt;}
.ws5b{word-spacing:13.333333pt;}
.ws22{word-spacing:14.688000pt;}
.ws19{word-spacing:16.416000pt;}
.ws4d{word-spacing:18.133333pt;}
.ws10{word-spacing:18.144000pt;}
.ws16{word-spacing:20.640000pt;}
.ws13{word-spacing:23.472000pt;}
.ws1c{word-spacing:24.528000pt;}
.ws1d{word-spacing:29.328000pt;}
.ws23{word-spacing:29.616000pt;}
.ws11{word-spacing:53.328000pt;}
._d{margin-left:-2045.665067pt;}
._8{margin-left:-11.075200pt;}
._3{margin-left:-6.240533pt;}
._10{margin-left:-5.317867pt;}
._4{margin-left:-4.390933pt;}
._0{margin-left:-3.432533pt;}
._2{margin-left:-1.802667pt;}
._6{margin-left:-0.912000pt;}
._5{width:1.147200pt;}
._1{width:2.170667pt;}
._f{width:3.071467pt;}
._c{width:3.974400pt;}
._a{width:9.325333pt;}
._9{width:10.217067pt;}
._7{width:12.912000pt;}
._b{width:14.102400pt;}
._e{width:1068.461333pt;}
.fs3{font-size:27.984000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:25.760133pt;}
.y35{bottom:37.861067pt;}
.y57{bottom:41.149867pt;}
.y4{bottom:41.760133pt;}
.y34{bottom:52.527733pt;}
.y56{bottom:55.816533pt;}
.y3{bottom:57.760133pt;}
.y2{bottom:77.539600pt;}
.y29{bottom:105.826933pt;}
.y28{bottom:120.493600pt;}
.y27{bottom:135.160267pt;}
.y26{bottom:153.606667pt;}
.y7c{bottom:166.841333pt;}
.y25{bottom:168.273333pt;}
.y24{bottom:182.940000pt;}
.y7b{bottom:187.508000pt;}
.y7a{bottom:208.174667pt;}
.y6d{bottom:223.201600pt;}
.y79{bottom:228.841333pt;}
.y6c{bottom:236.534933pt;}
.y78{bottom:249.508000pt;}
.y6b{bottom:249.868267pt;}
.y1d{bottom:250.372267pt;}
.y6a{bottom:263.201600pt;}
.y1c{bottom:265.038933pt;}
.y77{bottom:270.174667pt;}
.y69{bottom:276.534933pt;}
.y23{bottom:279.705600pt;}
.y1b{bottom:283.485067pt;}
.y68{bottom:289.868267pt;}
.y76{bottom:290.841333pt;}
.y22{bottom:294.372267pt;}
.y1a{bottom:298.151733pt;}
.y67{bottom:303.201600pt;}
.yab{bottom:304.434533pt;}
.y75{bottom:311.508000pt;}
.y19{bottom:312.818400pt;}
.y66{bottom:316.534933pt;}
.y21{bottom:320.377467pt;}
.yaa{bottom:320.434533pt;}
.y18{bottom:327.485067pt;}
.y65{bottom:329.868267pt;}
.y74{bottom:332.174667pt;}
.y20{bottom:335.044133pt;}
.ya9{bottom:336.434533pt;}
.y17{bottom:342.151733pt;}
.y64{bottom:343.201600pt;}
.y1f{bottom:349.710800pt;}
.ya8{bottom:352.434533pt;}
.y73{bottom:352.841333pt;}
.y63{bottom:356.534933pt;}
.y16{bottom:356.818400pt;}
.y1e{bottom:364.377467pt;}
.y54{bottom:369.790267pt;}
.y62{bottom:369.868267pt;}
.y72{bottom:373.508000pt;}
.y15{bottom:379.044133pt;}
.y53{bottom:383.123600pt;}
.y61{bottom:383.201600pt;}
.ya7{bottom:385.767867pt;}
.y14{bottom:393.710800pt;}
.y52{bottom:396.456933pt;}
.y60{bottom:396.534933pt;}
.y13{bottom:408.377467pt;}
.y51{bottom:409.790267pt;}
.y5f{bottom:409.868267pt;}
.y71{bottom:414.841333pt;}
.y12{bottom:423.044133pt;}
.y50{bottom:423.123600pt;}
.y5e{bottom:423.201600pt;}
.y70{bottom:435.508000pt;}
.y4f{bottom:436.456933pt;}
.y5d{bottom:436.534933pt;}
.y11{bottom:437.710800pt;}
.ya6{bottom:439.634533pt;}
.y4e{bottom:449.790267pt;}
.y5c{bottom:449.868267pt;}
.y10{bottom:452.377467pt;}
.y6f{bottom:456.174667pt;}
.ya5{bottom:460.301200pt;}
.y4d{bottom:463.123600pt;}
.y5b{bottom:463.201600pt;}
.yf{bottom:467.044133pt;}
.y4c{bottom:476.456933pt;}
.y6e{bottom:476.841333pt;}
.y5a{bottom:480.314533pt;}
.ya4{bottom:480.967867pt;}
.ye{bottom:481.710800pt;}
.y4b{bottom:493.569733pt;}
.yd{bottom:496.377467pt;}
.ya3{bottom:501.634533pt;}
.yc{bottom:511.044133pt;}
.ya2{bottom:522.301200pt;}
.yb{bottom:525.710800pt;}
.y98{bottom:538.077333pt;}
.y4a{bottom:540.231467pt;}
.ya{bottom:540.377467pt;}
.ya1{bottom:542.967867pt;}
.y97{bottom:551.410667pt;}
.y49{bottom:560.898133pt;}
.y96{bottom:564.744000pt;}
.y95{bottom:578.077333pt;}
.y48{bottom:581.564800pt;}
.ya0{bottom:584.301200pt;}
.y9{bottom:589.392800pt;}
.y94{bottom:591.410667pt;}
.y47{bottom:602.231467pt;}
.y8{bottom:604.059467pt;}
.y93{bottom:604.744000pt;}
.y9f{bottom:604.967867pt;}
.y32{bottom:614.053067pt;}
.y92{bottom:618.077333pt;}
.y7{bottom:618.726133pt;}
.y46{bottom:622.898133pt;}
.y9e{bottom:625.634533pt;}
.y91{bottom:631.410667pt;}
.y6{bottom:633.392800pt;}
.y31{bottom:633.832533pt;}
.y45{bottom:643.564800pt;}
.y90{bottom:644.744000pt;}
.y9d{bottom:646.301200pt;}
.y8f{bottom:658.077333pt;}
.y9c{bottom:666.967867pt;}
.y8e{bottom:671.410667pt;}
.y8d{bottom:684.744000pt;}
.y44{bottom:684.898133pt;}
.y9b{bottom:687.634533pt;}
.y30{bottom:694.037067pt;}
.y8c{bottom:698.077333pt;}
.y43{bottom:705.564800pt;}
.y9a{bottom:708.301200pt;}
.y8b{bottom:711.410667pt;}
.y2f{bottom:715.370400pt;}
.y42{bottom:726.231467pt;}
.y8a{bottom:728.523467pt;}
.y99{bottom:728.967867pt;}
.y2e{bottom:736.703733pt;}
.y41{bottom:746.898133pt;}
.y40{bottom:767.564800pt;}
.yb1{bottom:773.926800pt;}
.y2d{bottom:776.934667pt;}
.yb0{bottom:787.260133pt;}
.y59{bottom:788.231467pt;}
.yaf{bottom:800.593467pt;}
.y2c{bottom:807.601333pt;}
.y3f{bottom:808.898133pt;}
.yae{bottom:813.926800pt;}
.yad{bottom:827.260133pt;}
.y3e{bottom:829.564800pt;}
.y2b{bottom:838.268000pt;}
.yac{bottom:840.593467pt;}
.y3d{bottom:850.231467pt;}
.y89{bottom:853.926800pt;}
.y88{bottom:867.260133pt;}
.y2a{bottom:868.934667pt;}
.y3c{bottom:870.898133pt;}
.y87{bottom:880.593467pt;}
.y3b{bottom:891.564800pt;}
.y86{bottom:893.926800pt;}
.y85{bottom:907.260133pt;}
.y3a{bottom:912.231467pt;}
.y1{bottom:920.245733pt;}
.y84{bottom:920.593467pt;}
.y39{bottom:932.898133pt;}
.y83{bottom:933.926800pt;}
.y82{bottom:947.260133pt;}
.y58{bottom:953.564800pt;}
.y81{bottom:960.593467pt;}
.y80{bottom:973.926800pt;}
.y38{bottom:974.231467pt;}
.y7f{bottom:987.260133pt;}
.y37{bottom:994.898133pt;}
.y7e{bottom:1000.593467pt;}
.y36{bottom:1015.564800pt;}
.y7d{bottom:1017.706267pt;}
.y33{bottom:1065.826800pt;}
.y55{bottom:1078.626800pt;}
.h5{height:32.682667pt;}
.h2{height:38.828125pt;}
.h4{height:41.173333pt;}
.hb{height:43.804800pt;}
.h9{height:44.800000pt;}
.hc{height:49.408000pt;}
.h3{height:50.400000pt;}
.h8{height:56.000000pt;}
.ha{height:56.960000pt;}
.h6{height:65.877333pt;}
.h7{height:67.200000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:36.517067pt;}
.x14{left:37.795200pt;}
.x11{left:45.354267pt;}
.x17{left:94.488133pt;}
.x7{left:105.826800pt;}
.x9{left:113.385867pt;}
.x2{left:117.165333pt;}
.xe{left:165.437867pt;}
.xc{left:177.303067pt;}
.xb{left:179.448000pt;}
.xa{left:184.704400pt;}
.xf{left:187.364933pt;}
.x12{left:188.976400pt;}
.x13{left:207.874000pt;}
.x15{left:237.438000pt;}
.xd{left:238.708533pt;}
.x10{left:301.190133pt;}
.x1{left:349.348400pt;}
.x16{left:406.150000pt;}
.x8{left:414.803200pt;}
.x3{left:530.548800pt;}
.x4{left:532.904400pt;}
.x6{left:573.938133pt;}
.x5{left:616.571733pt;}
.x18{left:623.622000pt;}
}




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