
    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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_e7c3fd4013d0de0b9b6a381b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_67924fde8e6ba1335be5ed50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_c8d1e18c1fa211a753ec9435.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_67791e91fb62325e66c4cce7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892000;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_cff32ea4e6cd7e01444112e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.747000;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_1ff54ff3b8ffc00e6a2c9bc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.484000;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;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,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);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{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:-10.920000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls9{letter-spacing:2.988600px;}
.ls1{letter-spacing:10.461300px;}
.ls2{letter-spacing:11.954850px;}
.lsb{letter-spacing:13.418135px;}
.ls7{letter-spacing:13.448400px;}
.ls6{letter-spacing:13.454400px;}
.ls8{letter-spacing:16.434600px;}
.lsa{letter-spacing:16.676400px;}
.ls5{letter-spacing:17.935200px;}
.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;}
}
.ws11{word-spacing:-14.943900px;}
.ws42{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws19{word-spacing:-2.809453px;}
.ws32{word-spacing:-2.689902px;}
.ws1{word-spacing:-1.908367px;}
.ws37{word-spacing:-1.434614px;}
.ws0{word-spacing:-1.322630px;}
.ws7{word-spacing:-1.171598px;}
.ws3d{word-spacing:-1.075968px;}
.ws9{word-spacing:-1.046070px;}
.ws28{word-spacing:-0.298878px;}
.ws3f{word-spacing:-0.268992px;}
.ws13{word-spacing:-0.239102px;}
.ws1d{word-spacing:-0.179327px;}
.ws44{word-spacing:-0.161395px;}
.ws14{word-spacing:-0.119551px;}
.ws12{word-spacing:-0.059776px;}
.ws43{word-spacing:-0.053798px;}
.ws2d{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:0.059776px;}
.ws1c{word-spacing:0.119551px;}
.ws3e{word-spacing:0.161395px;}
.ws1e{word-spacing:0.179327px;}
.ws17{word-spacing:0.239102px;}
.ws1a{word-spacing:0.298878px;}
.ws38{word-spacing:0.358654px;}
.ws8{word-spacing:1.004227px;}
.ws27{word-spacing:1.016185px;}
.ws33{word-spacing:1.315063px;}
.ws35{word-spacing:1.374839px;}
.ws21{word-spacing:1.554166px;}
.ws3b{word-spacing:1.912819px;}
.ws1b{word-spacing:2.032370px;}
.ws2{word-spacing:2.511541px;}
.ws25{word-spacing:2.749678px;}
.ws2f{word-spacing:2.988780px;}
.ws30{word-spacing:3.048556px;}
.ws40{word-spacing:3.224678px;}
.ws3c{word-spacing:3.224822px;}
.ws2a{word-spacing:3.287658px;}
.ws22{word-spacing:3.466985px;}
.ws31{word-spacing:3.586536px;}
.ws29{word-spacing:3.646312px;}
.ws23{word-spacing:3.825638px;}
.ws26{word-spacing:3.945190px;}
.ws16{word-spacing:4.004965px;}
.ws24{word-spacing:4.184292px;}
.ws2e{word-spacing:4.303843px;}
.wsf{word-spacing:4.770079px;}
.ws10{word-spacing:4.853765px;}
.ws34{word-spacing:5.499355px;}
.ws1f{word-spacing:5.678682px;}
.ws18{word-spacing:5.798233px;}
.ws39{word-spacing:5.858009px;}
.ws3a{word-spacing:6.156887px;}
.ws36{word-spacing:6.814418px;}
.ws20{word-spacing:7.711052px;}
.wsd{word-spacing:7.782761px;}
.ws4{word-spacing:10.417075px;}
.ws2b{word-spacing:11.909990px;}
.ws41{word-spacing:13.390906px;}
.wsb{word-spacing:15.649207px;}
.wsc{word-spacing:16.109478px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:33.788252px;}
._2{margin-left:-6.376445px;}
._e{margin-left:-5.133134px;}
._7{margin-left:-3.138210px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._6{width:11.398711px;}
._4{width:12.971268px;}
._a{width:13.995058px;}
._18{width:15.761214px;}
._16{width:17.521818px;}
._9{width:18.657554px;}
._11{width:19.853066px;}
._f{width:21.093220px;}
._c{width:22.236523px;}
._d{width:23.790689px;}
._3{width:25.192966px;}
._10{width:26.428382px;}
._15{width:28.094532px;}
._8{width:30.587087px;}
._14{width:32.039722px;}
._b{width:36.530459px;}
._17{width:39.818117px;}
._19{width:88.767360px;}
._12{width:770.663104px;}
._13{width:2523.228229px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(57,59,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs7{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:120.948480px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y18{bottom:17.953290px;}
.y4e{bottom:31.890000px;}
.y89{bottom:91.726500px;}
.y16{bottom:104.646000px;}
.y88{bottom:106.363500px;}
.y87{bottom:108.987000px;}
.y4d{bottom:112.321500px;}
.y4c{bottom:115.051500px;}
.y15{bottom:122.535000px;}
.y86{bottom:126.246000px;}
.y4b{bottom:133.881000px;}
.y14{bottom:140.422500px;}
.y85{bottom:143.506500px;}
.y4a{bottom:152.710500px;}
.y13{bottom:158.310000px;}
.y84{bottom:160.767000px;}
.y49{bottom:171.538500px;}
.y12{bottom:176.199000px;}
.y83{bottom:178.027500px;}
.y48{bottom:190.368000px;}
.y11{bottom:194.086500px;}
.y82{bottom:195.288000px;}
.y47{bottom:209.197500px;}
.y10{bottom:211.974000px;}
.y81{bottom:212.548500px;}
.y46{bottom:228.027000px;}
.y80{bottom:229.809000px;}
.yf{bottom:229.863000px;}
.y45{bottom:246.856500px;}
.y7f{bottom:251.551500px;}
.y44{bottom:265.686000px;}
.y43{bottom:284.515500px;}
.y7e{bottom:285.175500px;}
.ye{bottom:300.154500px;}
.y42{bottom:303.345000px;}
.y7d{bottom:311.716500px;}
.yd{bottom:318.043500px;}
.y41{bottom:322.174500px;}
.y7c{bottom:329.290500px;}
.yc{bottom:335.931000px;}
.y40{bottom:341.004000px;}
.y7b{bottom:346.864500px;}
.yb{bottom:353.818500px;}
.y3f{bottom:359.833500px;}
.y7a{bottom:373.405500px;}
.y3e{bottom:378.663000px;}
.ya{bottom:380.673000px;}
.y3d{bottom:397.492500px;}
.y9{bottom:398.562000px;}
.y79{bottom:408.912000px;}
.y3c{bottom:416.322000px;}
.y8{bottom:416.449500px;}
.y78{bottom:427.741500px;}
.y3b{bottom:435.151500px;}
.y7{bottom:443.304000px;}
.y77{bottom:446.571000px;}
.y3a{bottom:453.981000px;}
.y6{bottom:461.191500px;}
.y76{bottom:465.400500px;}
.y39{bottom:470.080500px;}
.y38{bottom:472.810500px;}
.y5{bottom:479.079000px;}
.y75{bottom:484.230000px;}
.y37{bottom:488.910000px;}
.y36{bottom:491.640000px;}
.y4{bottom:496.968000px;}
.y74{bottom:503.059500px;}
.y35{bottom:510.469500px;}
.y1{bottom:514.855555px;}
.y73{bottom:521.889000px;}
.y34{bottom:529.299000px;}
.y72{bottom:540.718500px;}
.y33{bottom:545.398500px;}
.y32{bottom:548.128500px;}
.y71{bottom:559.548000px;}
.y31{bottom:566.958000px;}
.y70{bottom:578.377500px;}
.y30{bottom:585.787500px;}
.y6f{bottom:594.477000px;}
.y6e{bottom:597.207000px;}
.y2f{bottom:604.617000px;}
.y6d{bottom:616.036500px;}
.y2e{bottom:623.446500px;}
.y6c{bottom:634.866000px;}
.y2d{bottom:642.276000px;}
.y6b{bottom:653.695500px;}
.y2c{bottom:658.375500px;}
.y2b{bottom:661.105500px;}
.y6a{bottom:672.525000px;}
.y2a{bottom:677.205000px;}
.y29{bottom:679.933500px;}
.y69{bottom:691.354500px;}
.y28{bottom:698.763000px;}
.y68{bottom:710.184000px;}
.y27{bottom:717.592500px;}
.y67{bottom:729.013500px;}
.y26{bottom:736.422000px;}
.y66{bottom:747.843000px;}
.y25{bottom:755.251500px;}
.y65{bottom:766.671000px;}
.y24{bottom:774.081000px;}
.y64{bottom:785.500500px;}
.y23{bottom:792.910500px;}
.y63{bottom:804.330000px;}
.y22{bottom:811.740000px;}
.y62{bottom:823.159500px;}
.y21{bottom:830.569500px;}
.y61{bottom:841.989000px;}
.y20{bottom:849.399000px;}
.y60{bottom:860.818500px;}
.y1f{bottom:868.228500px;}
.y5f{bottom:876.918000px;}
.y5e{bottom:879.648000px;}
.y1e{bottom:887.058000px;}
.y5d{bottom:898.477500px;}
.y5c{bottom:917.307000px;}
.y5b{bottom:936.136500px;}
.y5a{bottom:954.966000px;}
.y1d{bottom:962.811000px;}
.y59{bottom:973.795500px;}
.y1c{bottom:978.949500px;}
.y58{bottom:992.625000px;}
.y57{bottom:1011.454500px;}
.y56{bottom:1027.554000px;}
.y1b{bottom:1027.966500px;}
.y55{bottom:1030.284000px;}
.y54{bottom:1049.113500px;}
.y1a{bottom:1064.728500px;}
.y53{bottom:1067.943000px;}
.y52{bottom:1086.772500px;}
.y19{bottom:1092.972000px;}
.y51{bottom:1102.872000px;}
.y50{bottom:1105.602000px;}
.y17{bottom:1136.460000px;}
.y4f{bottom:1168.366500px;}
.h2{height:25.508090px;}
.hf{height:28.214083px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.he{height:33.072749px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.hc{height:34.813397px;}
.h10{height:35.052500px;}
.h12{height:38.734848px;}
.h11{height:39.165235px;}
.h14{height:39.434227px;}
.h13{height:43.038432px;}
.hd{height:43.516637px;}
.h9{height:43.815515px;}
.hb{height:44.473046px;}
.h7{height:50.931027px;}
.ha{height:77.469696px;}
.h8{height:82.003069px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:58.090232px;}
.x3c{left:85.848000px;}
.x3d{left:133.089000px;}
.x3e{left:142.410000px;}
.x4{left:249.591000px;}
.x5{left:281.479500px;}
.x18{left:318.310500px;}
.xc{left:325.161000px;}
.xd{left:332.632500px;}
.x3b{left:372.231000px;}
.x39{left:373.411500px;}
.x3a{left:380.884500px;}
.x23{left:426.379500px;}
.x24{left:436.527000px;}
.x2b{left:482.407500px;}
.x6{left:485.571000px;}
.x2c{left:493.746000px;}
.x7{left:495.736500px;}
.x26{left:499.407000px;}
.x33{left:504.690000px;}
.x27{left:506.878500px;}
.x34{left:514.849500px;}
.x8{left:520.834500px;}
.x25{left:527.556000px;}
.x9{left:531.000000px;}
.x28{left:539.826000px;}
.x35{left:544.386000px;}
.x29{left:549.984000px;}
.x36{left:551.857500px;}
.x32{left:557.587500px;}
.x19{left:590.685000px;}
.x1a{left:597.111000px;}
.x1b{left:602.187000px;}
.x2a{left:609.112500px;}
.x1c{left:610.960500px;}
.x2f{left:621.292500px;}
.x1d{left:653.758500px;}
.xa{left:656.178000px;}
.x1e{left:660.184500px;}
.xb{left:663.651000px;}
.x1f{left:665.260500px;}
.x14{left:667.641000px;}
.x20{left:674.035500px;}
.x15{left:675.112500px;}
.x30{left:676.326000px;}
.x2d{left:680.055000px;}
.x31{left:682.752000px;}
.x2e{left:686.481000px;}
.x3f{left:695.439000px;}
.x21{left:711.238500px;}
.x22{left:721.878000px;}
.x37{left:724.054500px;}
.x38{left:734.223000px;}
.xe{left:745.105500px;}
.xf{left:755.281500px;}
.x16{left:759.658500px;}
.x17{left:767.131500px;}
.x10{left:809.239500px;}
.x11{left:819.415500px;}
.x12{left:824.466000px;}
.x13{left:831.939000px;}
@media print{
.v1{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls9{letter-spacing:2.656533pt;}
.ls1{letter-spacing:9.298933pt;}
.ls2{letter-spacing:10.626533pt;}
.lsb{letter-spacing:11.927232pt;}
.ls7{letter-spacing:11.954133pt;}
.ls6{letter-spacing:11.959467pt;}
.ls8{letter-spacing:14.608533pt;}
.lsa{letter-spacing:14.823467pt;}
.ls5{letter-spacing:15.942400pt;}
.ws11{word-spacing:-13.283467pt;}
.ws42{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws19{word-spacing:-2.497292pt;}
.ws32{word-spacing:-2.391024pt;}
.ws1{word-spacing:-1.696326pt;}
.ws37{word-spacing:-1.275213pt;}
.ws0{word-spacing:-1.175671pt;}
.ws7{word-spacing:-1.041421pt;}
.ws3d{word-spacing:-0.956416pt;}
.ws9{word-spacing:-0.929840pt;}
.ws28{word-spacing:-0.265669pt;}
.ws3f{word-spacing:-0.239104pt;}
.ws13{word-spacing:-0.212535pt;}
.ws1d{word-spacing:-0.159402pt;}
.ws44{word-spacing:-0.143462pt;}
.ws14{word-spacing:-0.106268pt;}
.ws12{word-spacing:-0.053134pt;}
.ws43{word-spacing:-0.047821pt;}
.ws2d{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:0.053134pt;}
.ws1c{word-spacing:0.106268pt;}
.ws3e{word-spacing:0.143462pt;}
.ws1e{word-spacing:0.159402pt;}
.ws17{word-spacing:0.212535pt;}
.ws1a{word-spacing:0.265669pt;}
.ws38{word-spacing:0.318803pt;}
.ws8{word-spacing:0.892646pt;}
.ws27{word-spacing:0.903276pt;}
.ws33{word-spacing:1.168945pt;}
.ws35{word-spacing:1.222079pt;}
.ws21{word-spacing:1.381481pt;}
.ws3b{word-spacing:1.700284pt;}
.ws1b{word-spacing:1.806551pt;}
.ws2{word-spacing:2.232481pt;}
.ws25{word-spacing:2.444158pt;}
.ws2f{word-spacing:2.656693pt;}
.ws30{word-spacing:2.709827pt;}
.ws40{word-spacing:2.866381pt;}
.ws3c{word-spacing:2.866509pt;}
.ws2a{word-spacing:2.922363pt;}
.ws22{word-spacing:3.081764pt;}
.ws31{word-spacing:3.188032pt;}
.ws29{word-spacing:3.241166pt;}
.ws23{word-spacing:3.400567pt;}
.ws26{word-spacing:3.506835pt;}
.ws16{word-spacing:3.559969pt;}
.ws24{word-spacing:3.719371pt;}
.ws2e{word-spacing:3.825638pt;}
.wsf{word-spacing:4.240070pt;}
.ws10{word-spacing:4.314458pt;}
.ws34{word-spacing:4.888316pt;}
.ws1f{word-spacing:5.047717pt;}
.ws18{word-spacing:5.153985pt;}
.ws39{word-spacing:5.207119pt;}
.ws3a{word-spacing:5.472788pt;}
.ws36{word-spacing:6.057261pt;}
.ws20{word-spacing:6.854269pt;}
.wsd{word-spacing:6.918010pt;}
.ws4{word-spacing:9.259622pt;}
.ws2b{word-spacing:10.586658pt;}
.ws41{word-spacing:11.903027pt;}
.wsb{word-spacing:13.910406pt;}
.wsc{word-spacing:14.319536pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:30.034002pt;}
._2{margin-left:-5.667951pt;}
._e{margin-left:-4.562786pt;}
._7{margin-left:-2.789520pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._6{width:10.132188pt;}
._4{width:11.530016pt;}
._a{width:12.440051pt;}
._18{width:14.009968pt;}
._16{width:15.574949pt;}
._9{width:16.584493pt;}
._11{width:17.647170pt;}
._f{width:18.749529pt;}
._c{width:19.765798pt;}
._d{width:21.147279pt;}
._3{width:22.393747pt;}
._10{width:23.491895pt;}
._15{width:24.972917pt;}
._8{width:27.188522pt;}
._14{width:28.479753pt;}
._b{width:32.471519pt;}
._17{width:35.393882pt;}
._19{width:78.904320pt;}
._12{width:685.033870pt;}
._13{width:2242.869537pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs7{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:107.509760pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y18{bottom:15.958480pt;}
.y4e{bottom:28.346667pt;}
.y89{bottom:81.534667pt;}
.y16{bottom:93.018667pt;}
.y88{bottom:94.545333pt;}
.y87{bottom:96.877333pt;}
.y4d{bottom:99.841333pt;}
.y4c{bottom:102.268000pt;}
.y15{bottom:108.920000pt;}
.y86{bottom:112.218667pt;}
.y4b{bottom:119.005333pt;}
.y14{bottom:124.820000pt;}
.y85{bottom:127.561333pt;}
.y4a{bottom:135.742667pt;}
.y13{bottom:140.720000pt;}
.y84{bottom:142.904000pt;}
.y49{bottom:152.478667pt;}
.y12{bottom:156.621333pt;}
.y83{bottom:158.246667pt;}
.y48{bottom:169.216000pt;}
.y11{bottom:172.521333pt;}
.y82{bottom:173.589333pt;}
.y47{bottom:185.953333pt;}
.y10{bottom:188.421333pt;}
.y81{bottom:188.932000pt;}
.y46{bottom:202.690667pt;}
.y80{bottom:204.274667pt;}
.yf{bottom:204.322667pt;}
.y45{bottom:219.428000pt;}
.y7f{bottom:223.601333pt;}
.y44{bottom:236.165333pt;}
.y43{bottom:252.902667pt;}
.y7e{bottom:253.489333pt;}
.ye{bottom:266.804000pt;}
.y42{bottom:269.640000pt;}
.y7d{bottom:277.081333pt;}
.yd{bottom:282.705333pt;}
.y41{bottom:286.377333pt;}
.y7c{bottom:292.702667pt;}
.yc{bottom:298.605333pt;}
.y40{bottom:303.114667pt;}
.y7b{bottom:308.324000pt;}
.yb{bottom:314.505333pt;}
.y3f{bottom:319.852000pt;}
.y7a{bottom:331.916000pt;}
.y3e{bottom:336.589333pt;}
.ya{bottom:338.376000pt;}
.y3d{bottom:353.326667pt;}
.y9{bottom:354.277333pt;}
.y79{bottom:363.477333pt;}
.y3c{bottom:370.064000pt;}
.y8{bottom:370.177333pt;}
.y78{bottom:380.214667pt;}
.y3b{bottom:386.801333pt;}
.y7{bottom:394.048000pt;}
.y77{bottom:396.952000pt;}
.y3a{bottom:403.538667pt;}
.y6{bottom:409.948000pt;}
.y76{bottom:413.689333pt;}
.y39{bottom:417.849333pt;}
.y38{bottom:420.276000pt;}
.y5{bottom:425.848000pt;}
.y75{bottom:430.426667pt;}
.y37{bottom:434.586667pt;}
.y36{bottom:437.013333pt;}
.y4{bottom:441.749333pt;}
.y74{bottom:447.164000pt;}
.y35{bottom:453.750667pt;}
.y1{bottom:457.649382pt;}
.y73{bottom:463.901333pt;}
.y34{bottom:470.488000pt;}
.y72{bottom:480.638667pt;}
.y33{bottom:484.798667pt;}
.y32{bottom:487.225333pt;}
.y71{bottom:497.376000pt;}
.y31{bottom:503.962667pt;}
.y70{bottom:514.113333pt;}
.y30{bottom:520.700000pt;}
.y6f{bottom:528.424000pt;}
.y6e{bottom:530.850667pt;}
.y2f{bottom:537.437333pt;}
.y6d{bottom:547.588000pt;}
.y2e{bottom:554.174667pt;}
.y6c{bottom:564.325333pt;}
.y2d{bottom:570.912000pt;}
.y6b{bottom:581.062667pt;}
.y2c{bottom:585.222667pt;}
.y2b{bottom:587.649333pt;}
.y6a{bottom:597.800000pt;}
.y2a{bottom:601.960000pt;}
.y29{bottom:604.385333pt;}
.y69{bottom:614.537333pt;}
.y28{bottom:621.122667pt;}
.y68{bottom:631.274667pt;}
.y27{bottom:637.860000pt;}
.y67{bottom:648.012000pt;}
.y26{bottom:654.597333pt;}
.y66{bottom:664.749333pt;}
.y25{bottom:671.334667pt;}
.y65{bottom:681.485333pt;}
.y24{bottom:688.072000pt;}
.y64{bottom:698.222667pt;}
.y23{bottom:704.809333pt;}
.y63{bottom:714.960000pt;}
.y22{bottom:721.546667pt;}
.y62{bottom:731.697333pt;}
.y21{bottom:738.284000pt;}
.y61{bottom:748.434667pt;}
.y20{bottom:755.021333pt;}
.y60{bottom:765.172000pt;}
.y1f{bottom:771.758667pt;}
.y5f{bottom:779.482667pt;}
.y5e{bottom:781.909333pt;}
.y1e{bottom:788.496000pt;}
.y5d{bottom:798.646667pt;}
.y5c{bottom:815.384000pt;}
.y5b{bottom:832.121333pt;}
.y5a{bottom:848.858667pt;}
.y1d{bottom:855.832000pt;}
.y59{bottom:865.596000pt;}
.y1c{bottom:870.177333pt;}
.y58{bottom:882.333333pt;}
.y57{bottom:899.070667pt;}
.y56{bottom:913.381333pt;}
.y1b{bottom:913.748000pt;}
.y55{bottom:915.808000pt;}
.y54{bottom:932.545333pt;}
.y1a{bottom:946.425333pt;}
.y53{bottom:949.282667pt;}
.y52{bottom:966.020000pt;}
.y19{bottom:971.530667pt;}
.y51{bottom:980.330667pt;}
.y50{bottom:982.757333pt;}
.y17{bottom:1010.186667pt;}
.y4f{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.hf{height:25.079185pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.he{height:29.397999pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.hc{height:30.945242pt;}
.h10{height:31.157778pt;}
.h12{height:34.430976pt;}
.h11{height:34.813542pt;}
.h14{height:35.052646pt;}
.h13{height:38.256384pt;}
.hd{height:38.681455pt;}
.h9{height:38.947124pt;}
.hb{height:39.531597pt;}
.h7{height:45.272024pt;}
.ha{height:68.861952pt;}
.h8{height:72.891617pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:51.635762pt;}
.x3c{left:76.309333pt;}
.x3d{left:118.301333pt;}
.x3e{left:126.586667pt;}
.x4{left:221.858667pt;}
.x5{left:250.204000pt;}
.x18{left:282.942667pt;}
.xc{left:289.032000pt;}
.xd{left:295.673333pt;}
.x3b{left:330.872000pt;}
.x39{left:331.921333pt;}
.x3a{left:338.564000pt;}
.x23{left:379.004000pt;}
.x24{left:388.024000pt;}
.x2b{left:428.806667pt;}
.x6{left:431.618667pt;}
.x2c{left:438.885333pt;}
.x7{left:440.654667pt;}
.x26{left:443.917333pt;}
.x33{left:448.613333pt;}
.x27{left:450.558667pt;}
.x34{left:457.644000pt;}
.x8{left:462.964000pt;}
.x25{left:468.938667pt;}
.x9{left:472.000000pt;}
.x28{left:479.845333pt;}
.x35{left:483.898667pt;}
.x29{left:488.874667pt;}
.x36{left:490.540000pt;}
.x32{left:495.633333pt;}
.x19{left:525.053333pt;}
.x1a{left:530.765333pt;}
.x1b{left:535.277333pt;}
.x2a{left:541.433333pt;}
.x1c{left:543.076000pt;}
.x2f{left:552.260000pt;}
.x1d{left:581.118667pt;}
.xa{left:583.269333pt;}
.x1e{left:586.830667pt;}
.xb{left:589.912000pt;}
.x1f{left:591.342667pt;}
.x14{left:593.458667pt;}
.x20{left:599.142667pt;}
.x15{left:600.100000pt;}
.x30{left:601.178667pt;}
.x2d{left:604.493333pt;}
.x31{left:606.890667pt;}
.x2e{left:610.205333pt;}
.x3f{left:618.168000pt;}
.x21{left:632.212000pt;}
.x22{left:641.669333pt;}
.x37{left:643.604000pt;}
.x38{left:652.642667pt;}
.xe{left:662.316000pt;}
.xf{left:671.361333pt;}
.x16{left:675.252000pt;}
.x17{left:681.894667pt;}
.x10{left:719.324000pt;}
.x11{left:728.369333pt;}
.x12{left:732.858667pt;}
.x13{left:739.501333pt;}
}




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