
    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_3a32698312f3dd0c4197d138.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133000;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_8d088c0cf57c72a787bed300.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_96697e743f96222a6db6b7d4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_94a569d4cc2fa89c1d0f9664.woff')format("woff");}.ff4{font-family:ff4;line-height:0.896000;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_3fe8160a49f3a154f4f33319.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_d6e17f04143ea1a58f972190.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931000;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_454ad5ffacd7875e57ecd529.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_4868e8be89de56784c307161.woff')format("woff");}.ff8{font-family:ff8;line-height:0.875000;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);}
.m13{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m18{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.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m5{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);}
.m1c{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);}
.m19{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);}
.m9{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.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m1e{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m10{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);}
.m15{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);}
.me{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);}
.m1b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.mb{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);}
.md{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.mc{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m17{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);}
.m1a{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);}
.m14{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);}
.m4{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);}
.m1{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);}
.ma{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);}
.v4{vertical-align:-21.702000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:35.862000px;}
.v2{vertical-align:49.206000px;}
.v1{vertical-align:60.750000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.002400px;}
.lsc{letter-spacing:9.962400px;}
.ls9{letter-spacing:17.789338px;}
.ls2{letter-spacing:17.932800px;}
.ls4{letter-spacing:18.076262px;}
.ls8{letter-spacing:18.147994px;}
.lse{letter-spacing:18.291456px;}
.ls6{letter-spacing:18.363187px;}
.lsd{letter-spacing:20.084736px;}
.ls5{letter-spacing:24.316877px;}
.ls0{letter-spacing:26.253619px;}
.lsa{letter-spacing:32.764800px;}
.ls3{letter-spacing:35.114400px;}
.ls7{letter-spacing:35.120400px;}
.lsf{letter-spacing:62.165100px;}
.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;}
}
.ws0{word-spacing:-22.687425px;}
.ws1{word-spacing:-18.902509px;}
.wsc{word-spacing:-17.932800px;}
.ws44{word-spacing:-16.363650px;}
.ws9{word-spacing:-15.752128px;}
.ws39{word-spacing:-13.449600px;}
.ws33{word-spacing:-11.663493px;}
.ws2f{word-spacing:-4.016947px;}
.ws41{word-spacing:-2.080205px;}
.ws38{word-spacing:-1.992490px;}
.ws16{word-spacing:-1.793280px;}
.ws17{word-spacing:-1.767501px;}
.ws12{word-spacing:-1.578086px;}
.ws11{word-spacing:-1.526638px;}
.ws42{word-spacing:-0.932506px;}
.ws3b{word-spacing:-0.800179px;}
.ws5{word-spacing:-0.430387px;}
.wse{word-spacing:-0.358656px;}
.ws18{word-spacing:-0.286925px;}
.ws4{word-spacing:-0.215194px;}
.ws3{word-spacing:-0.143462px;}
.ws36{word-spacing:-0.142333px;}
.ws13{word-spacing:-0.110682px;}
.ws15{word-spacing:-0.105735px;}
.ws14{word-spacing:-0.071731px;}
.ws3a{word-spacing:-0.053798px;}
.ws3c{word-spacing:-0.014415px;}
.ws27{word-spacing:-0.005779px;}
.ws26{word-spacing:-0.004224px;}
.ws2a{word-spacing:-0.003696px;}
.ws3d{word-spacing:-0.002850px;}
.ws25{word-spacing:-0.001421px;}
.ws8{word-spacing:0.000000px;}
.ws31{word-spacing:0.065455px;}
.wsa{word-spacing:0.071731px;}
.ws1e{word-spacing:0.143462px;}
.ws1f{word-spacing:0.203290px;}
.ws7{word-spacing:0.215194px;}
.ws28{word-spacing:0.286925px;}
.ws40{word-spacing:0.339407px;}
.ws2d{word-spacing:0.358656px;}
.ws1b{word-spacing:0.430387px;}
.ws29{word-spacing:0.450391px;}
.ws19{word-spacing:0.645581px;}
.ws37{word-spacing:0.789043px;}
.ws43{word-spacing:0.860774px;}
.ws2{word-spacing:1.434624px;}
.ws2b{word-spacing:1.578086px;}
.wsf{word-spacing:2.008474px;}
.ws34{word-spacing:2.080205px;}
.ws35{word-spacing:2.116976px;}
.ws3f{word-spacing:2.135297px;}
.ws1d{word-spacing:2.151936px;}
.wsd{word-spacing:2.223667px;}
.ws6{word-spacing:3.012710px;}
.ws32{word-spacing:3.084442px;}
.ws1c{word-spacing:3.801754px;}
.ws2c{word-spacing:4.447334px;}
.ws1a{word-spacing:4.519066px;}
.ws30{word-spacing:5.164646px;}
.ws21{word-spacing:6.312346px;}
.ws24{word-spacing:6.340875px;}
.ws23{word-spacing:6.368674px;}
.ws22{word-spacing:6.370280px;}
.ws20{word-spacing:6.384077px;}
.ws3e{word-spacing:6.957926px;}
.wsb{word-spacing:8.320819px;}
.ws2e{word-spacing:524.426803px;}
.ws10{word-spacing:1190.202450px;}
._a{margin-left:-9.965438px;}
._b{margin-left:-8.105626px;}
._4{margin-left:-6.625110px;}
._c{margin-left:-5.595034px;}
._6{margin-left:-4.447334px;}
._1{margin-left:-3.202064px;}
._2{margin-left:-2.008474px;}
._5{margin-left:-1.004237px;}
._d{width:1.578086px;}
._0{width:3.595275px;}
._3{width:16.785101px;}
._9{width:18.865306px;}
._7{width:32.727300px;}
._8{width:35.148288px;}
._f{width:452.036992px;}
._e{width:982.956101px;}
.fc2{color:rgb(41,5,195);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:44.233800px;}
.fs6{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fs0{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs3{font-size:123.975000px;}
.fs2{font-size:269.448210px;}
.y0{bottom:0.000000px;}
.y19{bottom:77.242500px;}
.yab{bottom:82.668000px;}
.y5c{bottom:97.567500px;}
.y5b{bottom:102.991500px;}
.y7a{bottom:103.719000px;}
.y18{bottom:104.134500px;}
.y79{bottom:130.195500px;}
.y17{bottom:131.025000px;}
.y5a{bottom:133.390500px;}
.ya6{bottom:142.968000px;}
.y78{bottom:156.672000px;}
.y16{bottom:157.915500px;}
.y37{bottom:170.538000px;}
.y77{bottom:183.148500px;}
.y15{bottom:184.806000px;}
.y59{bottom:199.612500px;}
.y76{bottom:209.623500px;}
.ya5{bottom:210.571500px;}
.y14{bottom:211.698000px;}
.ya4{bottom:219.538500px;}
.y58{bottom:221.281500px;}
.y36{bottom:234.217500px;}
.y75{bottom:236.100000px;}
.y57{bottom:242.950500px;}
.ya3{bottom:247.035000px;}
.y13{bottom:251.697000px;}
.y35{bottom:261.108000px;}
.y74{bottom:262.576500px;}
.y56{bottom:264.619500px;}
.ya2{bottom:264.967500px;}
.y9f{bottom:282.900000px;}
.y55{bottom:286.288500px;}
.y34{bottom:288.000000px;}
.ya1{bottom:300.834000px;}
.y54{bottom:307.957500px;}
.y73{bottom:309.741000px;}
.y12{bottom:317.805000px;}
.ya0{bottom:318.766500px;}
.y53{bottom:329.625000px;}
.y33{bottom:334.204500px;}
.y9e{bottom:337.296000px;}
.y11{bottom:344.697000px;}
.y52{bottom:351.294000px;}
.y9c{bottom:355.230000px;}
.y32{bottom:361.095000px;}
.y72{bottom:362.671500px;}
.y10{bottom:371.587500px;}
.y9d{bottom:373.162500px;}
.y51{bottom:377.148000px;}
.y31{bottom:387.985500px;}
.y71{bottom:389.562000px;}
.y9b{bottom:391.692000px;}
.y99{bottom:409.626000px;}
.y50{bottom:413.955000px;}
.y30{bottom:414.876000px;}
.y70{bottom:416.038500px;}
.yf{bottom:417.763500px;}
.y9a{bottom:427.558500px;}
.y98{bottom:446.088000px;}
.y95{bottom:455.055000px;}
.y4f{bottom:457.954500px;}
.y2f{bottom:461.080500px;}
.y6f{bottom:463.203000px;}
.y97{bottom:464.022000px;}
.y94{bottom:472.987500px;}
.y96{bottom:481.954500px;}
.y4e{bottom:484.845000px;}
.y2e{bottom:487.972500px;}
.ye{bottom:493.221000px;}
.y93{bottom:500.484000px;}
.y4d{bottom:511.735500px;}
.y2d{bottom:514.863000px;}
.y6e{bottom:516.132000px;}
.y91{bottom:518.418000px;}
.yd{bottom:520.111500px;}
.y92{bottom:536.350500px;}
.y4c{bottom:538.626000px;}
.y2c{bottom:541.753500px;}
.y6d{bottom:543.022500px;}
.yc{bottom:547.002000px;}
.y90{bottom:554.880000px;}
.y6c{bottom:569.914500px;}
.y8e{bottom:572.814000px;}
.yb{bottom:573.892500px;}
.y4b{bottom:575.742000px;}
.y2b{bottom:587.958000px;}
.y8f{bottom:590.746500px;}
.y6b{bottom:596.805000px;}
.ya{bottom:600.784500px;}
.y49{bottom:602.632500px;}
.y4a{bottom:609.142500px;}
.y8d{bottom:609.276000px;}
.y2a{bottom:614.848500px;}
.y6a{bottom:623.695500px;}
.y8b{bottom:627.210000px;}
.y9{bottom:627.675000px;}
.y48{bottom:629.523000px;}
.y29{bottom:641.740500px;}
.y8c{bottom:645.142500px;}
.y69{bottom:650.586000px;}
.y8{bottom:654.565500px;}
.y47{bottom:656.415000px;}
.y8a{bottom:663.672000px;}
.y28{bottom:668.631000px;}
.y68{bottom:677.476500px;}
.y7{bottom:681.456000px;}
.y46{bottom:683.305500px;}
.y27{bottom:695.521500px;}
.y89{bottom:697.864500px;}
.y6{bottom:708.348000px;}
.y45{bottom:710.196000px;}
.y67{bottom:716.139000px;}
.y88{bottom:733.132500px;}
.y44{bottom:737.086500px;}
.y26{bottom:741.726000px;}
.y5{bottom:754.524000px;}
.y25{bottom:768.616500px;}
.y43{bottom:774.202500px;}
.y66{bottom:775.558500px;}
.y87{bottom:780.802500px;}
.y83{bottom:793.104000px;}
.y24{bottom:795.508500px;}
.y42{bottom:801.093000px;}
.y86{bottom:802.099500px;}
.y65{bottom:802.449000px;}
.y85{bottom:815.965500px;}
.y41{bottom:827.985000px;}
.y64{bottom:829.339500px;}
.y84{bottom:833.037000px;}
.y23{bottom:841.713000px;}
.y40{bottom:854.875500px;}
.y63{bottom:863.895000px;}
.y22{bottom:868.603500px;}
.y3f{bottom:881.766000px;}
.y82{bottom:881.769000px;}
.yaa{bottom:893.712000px;}
.y21{bottom:895.494000px;}
.y62{bottom:906.114000px;}
.y81{bottom:908.659500px;}
.y3e{bottom:918.882000px;}
.ya9{bottom:920.602500px;}
.y4{bottom:929.340000px;}
.y61{bottom:933.006000px;}
.y80{bottom:944.053500px;}
.y3d{bottom:945.772500px;}
.ya8{bottom:947.494500px;}
.y20{bottom:955.998000px;}
.y60{bottom:959.896500px;}
.y7f{bottom:970.945500px;}
.y3c{bottom:972.663000px;}
.y1f{bottom:982.888500px;}
.y5f{bottom:986.787000px;}
.y7e{bottom:997.836000px;}
.y3b{bottom:999.555000px;}
.y1e{bottom:1009.779000px;}
.y5e{bottom:1013.677500px;}
.y3{bottom:1019.931000px;}
.y7d{bottom:1024.726500px;}
.y3a{bottom:1026.445500px;}
.y1d{bottom:1036.671000px;}
.y5d{bottom:1048.233000px;}
.y7c{bottom:1051.617000px;}
.y39{bottom:1053.336000px;}
.y1c{bottom:1063.561500px;}
.y7b{bottom:1078.507500px;}
.y38{bottom:1080.226500px;}
.y1b{bottom:1090.452000px;}
.ya7{bottom:1096.962000px;}
.y2{bottom:1107.040500px;}
.y1a{bottom:1117.342500px;}
.y1{bottom:1171.476000px;}
.hb{height:40.473927px;}
.hf{height:42.620003px;}
.h9{height:49.225536px;}
.ha{height:51.144346px;}
.h3{height:53.798400px;}
.hc{height:53.941862px;}
.h10{height:54.694674px;}
.h2{height:59.890959px;}
.h8{height:64.557900px;}
.h7{height:65.634048px;}
.h6{height:77.469300px;}
.h11{height:90.556674px;}
.h5{height:92.981250px;}
.he{height:114.840048px;}
.hd{height:126.384048px;}
.h4{height:202.086158px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:71.889000px;}
.x1d{left:79.350000px;}
.x1c{left:84.334500px;}
.xd{left:85.584000px;}
.x1b{left:111.735000px;}
.x5{left:127.426500px;}
.xf{left:129.481500px;}
.x6{left:137.397000px;}
.x2b{left:140.860500px;}
.x27{left:143.491500px;}
.x1a{left:148.498500px;}
.x10{left:153.579000px;}
.x14{left:168.939000px;}
.x11{left:171.324000px;}
.x1e{left:182.703000px;}
.x16{left:189.511500px;}
.x7{left:216.217500px;}
.x8{left:222.189000px;}
.x4{left:265.623000px;}
.x29{left:277.191000px;}
.x2a{left:289.161000px;}
.x26{left:303.370500px;}
.x25{left:308.341500px;}
.x9{left:314.952000px;}
.xa{left:326.913000px;}
.x24{left:342.598500px;}
.x12{left:349.438500px;}
.x18{left:360.231000px;}
.x13{left:361.420500px;}
.x17{left:362.616000px;}
.x1f{left:364.753500px;}
.x15{left:387.819000px;}
.x23{left:412.354500px;}
.x20{left:439.251000px;}
.xb{left:440.836500px;}
.x21{left:443.314500px;}
.x22{left:446.344500px;}
.xc{left:453.783000px;}
.x19{left:534.532500px;}
.x28{left:621.234000px;}
.x2{left:712.104000px;}
.x3{left:731.239500px;}
.x1{left:782.832000px;}
@media print{
.v4{vertical-align:-19.290667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:31.877333pt;}
.v2{vertical-align:43.738667pt;}
.v1{vertical-align:54.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.002133pt;}
.lsc{letter-spacing:8.855467pt;}
.ls9{letter-spacing:15.812745pt;}
.ls2{letter-spacing:15.940267pt;}
.ls4{letter-spacing:16.067789pt;}
.ls8{letter-spacing:16.131550pt;}
.lse{letter-spacing:16.259072pt;}
.ls6{letter-spacing:16.322833pt;}
.lsd{letter-spacing:17.853099pt;}
.ls5{letter-spacing:21.615002pt;}
.ls0{letter-spacing:23.336550pt;}
.lsa{letter-spacing:29.124267pt;}
.ls3{letter-spacing:31.212800pt;}
.ls7{letter-spacing:31.218133pt;}
.lsf{letter-spacing:55.257867pt;}
.ws0{word-spacing:-20.166600pt;}
.ws1{word-spacing:-16.802230pt;}
.wsc{word-spacing:-15.940267pt;}
.ws44{word-spacing:-14.545467pt;}
.ws9{word-spacing:-14.001891pt;}
.ws39{word-spacing:-11.955200pt;}
.ws33{word-spacing:-10.367549pt;}
.ws2f{word-spacing:-3.570620pt;}
.ws41{word-spacing:-1.849071pt;}
.ws38{word-spacing:-1.771102pt;}
.ws16{word-spacing:-1.594027pt;}
.ws17{word-spacing:-1.571112pt;}
.ws12{word-spacing:-1.402743pt;}
.ws11{word-spacing:-1.357011pt;}
.ws42{word-spacing:-0.828894pt;}
.ws3b{word-spacing:-0.711270pt;}
.ws5{word-spacing:-0.382566pt;}
.wse{word-spacing:-0.318805pt;}
.ws18{word-spacing:-0.255044pt;}
.ws4{word-spacing:-0.191283pt;}
.ws3{word-spacing:-0.127522pt;}
.ws36{word-spacing:-0.126518pt;}
.ws13{word-spacing:-0.098384pt;}
.ws15{word-spacing:-0.093987pt;}
.ws14{word-spacing:-0.063761pt;}
.ws3a{word-spacing:-0.047821pt;}
.ws3c{word-spacing:-0.012813pt;}
.ws27{word-spacing:-0.005137pt;}
.ws26{word-spacing:-0.003755pt;}
.ws2a{word-spacing:-0.003285pt;}
.ws3d{word-spacing:-0.002533pt;}
.ws25{word-spacing:-0.001263pt;}
.ws8{word-spacing:0.000000pt;}
.ws31{word-spacing:0.058182pt;}
.wsa{word-spacing:0.063761pt;}
.ws1e{word-spacing:0.127522pt;}
.ws1f{word-spacing:0.180702pt;}
.ws7{word-spacing:0.191283pt;}
.ws28{word-spacing:0.255044pt;}
.ws40{word-spacing:0.301695pt;}
.ws2d{word-spacing:0.318805pt;}
.ws1b{word-spacing:0.382566pt;}
.ws29{word-spacing:0.400348pt;}
.ws19{word-spacing:0.573850pt;}
.ws37{word-spacing:0.701372pt;}
.ws43{word-spacing:0.765133pt;}
.ws2{word-spacing:1.275221pt;}
.ws2b{word-spacing:1.402743pt;}
.wsf{word-spacing:1.785310pt;}
.ws34{word-spacing:1.849071pt;}
.ws35{word-spacing:1.881757pt;}
.ws3f{word-spacing:1.898042pt;}
.ws1d{word-spacing:1.912832pt;}
.wsd{word-spacing:1.976593pt;}
.ws6{word-spacing:2.677965pt;}
.ws32{word-spacing:2.741726pt;}
.ws1c{word-spacing:3.379337pt;}
.ws2c{word-spacing:3.953186pt;}
.ws1a{word-spacing:4.016947pt;}
.ws30{word-spacing:4.590797pt;}
.ws21{word-spacing:5.610974pt;}
.ws24{word-spacing:5.636333pt;}
.ws23{word-spacing:5.661043pt;}
.ws22{word-spacing:5.662471pt;}
.ws20{word-spacing:5.674735pt;}
.ws3e{word-spacing:6.184823pt;}
.wsb{word-spacing:7.396284pt;}
.ws2e{word-spacing:466.157158pt;}
.ws10{word-spacing:1057.957733pt;}
._a{margin-left:-8.858167pt;}
._b{margin-left:-7.205001pt;}
._4{margin-left:-5.888987pt;}
._c{margin-left:-4.973363pt;}
._6{margin-left:-3.953186pt;}
._1{margin-left:-2.846279pt;}
._2{margin-left:-1.785310pt;}
._5{margin-left:-0.892655pt;}
._d{width:1.402743pt;}
._0{width:3.195800pt;}
._3{width:14.920090pt;}
._9{width:16.769161pt;}
._7{width:29.090933pt;}
._8{width:31.242923pt;}
._f{width:401.810659pt;}
._e{width:873.738756pt;}
.fs7{font-size:39.318933pt;}
.fs6{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fs0{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs3{font-size:110.200000pt;}
.fs2{font-size:239.509520pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:68.660000pt;}
.yab{bottom:73.482667pt;}
.y5c{bottom:86.726667pt;}
.y5b{bottom:91.548000pt;}
.y7a{bottom:92.194667pt;}
.y18{bottom:92.564000pt;}
.y79{bottom:115.729333pt;}
.y17{bottom:116.466667pt;}
.y5a{bottom:118.569333pt;}
.ya6{bottom:127.082667pt;}
.y78{bottom:139.264000pt;}
.y16{bottom:140.369333pt;}
.y37{bottom:151.589333pt;}
.y77{bottom:162.798667pt;}
.y15{bottom:164.272000pt;}
.y59{bottom:177.433333pt;}
.y76{bottom:186.332000pt;}
.ya5{bottom:187.174667pt;}
.y14{bottom:188.176000pt;}
.ya4{bottom:195.145333pt;}
.y58{bottom:196.694667pt;}
.y36{bottom:208.193333pt;}
.y75{bottom:209.866667pt;}
.y57{bottom:215.956000pt;}
.ya3{bottom:219.586667pt;}
.y13{bottom:223.730667pt;}
.y35{bottom:232.096000pt;}
.y74{bottom:233.401333pt;}
.y56{bottom:235.217333pt;}
.ya2{bottom:235.526667pt;}
.y9f{bottom:251.466667pt;}
.y55{bottom:254.478667pt;}
.y34{bottom:256.000000pt;}
.ya1{bottom:267.408000pt;}
.y54{bottom:273.740000pt;}
.y73{bottom:275.325333pt;}
.y12{bottom:282.493333pt;}
.ya0{bottom:283.348000pt;}
.y53{bottom:293.000000pt;}
.y33{bottom:297.070667pt;}
.y9e{bottom:299.818667pt;}
.y11{bottom:306.397333pt;}
.y52{bottom:312.261333pt;}
.y9c{bottom:315.760000pt;}
.y32{bottom:320.973333pt;}
.y72{bottom:322.374667pt;}
.y10{bottom:330.300000pt;}
.y9d{bottom:331.700000pt;}
.y51{bottom:335.242667pt;}
.y31{bottom:344.876000pt;}
.y71{bottom:346.277333pt;}
.y9b{bottom:348.170667pt;}
.y99{bottom:364.112000pt;}
.y50{bottom:367.960000pt;}
.y30{bottom:368.778667pt;}
.y70{bottom:369.812000pt;}
.yf{bottom:371.345333pt;}
.y9a{bottom:380.052000pt;}
.y98{bottom:396.522667pt;}
.y95{bottom:404.493333pt;}
.y4f{bottom:407.070667pt;}
.y2f{bottom:409.849333pt;}
.y6f{bottom:411.736000pt;}
.y97{bottom:412.464000pt;}
.y94{bottom:420.433333pt;}
.y96{bottom:428.404000pt;}
.y4e{bottom:430.973333pt;}
.y2e{bottom:433.753333pt;}
.ye{bottom:438.418667pt;}
.y93{bottom:444.874667pt;}
.y4d{bottom:454.876000pt;}
.y2d{bottom:457.656000pt;}
.y6e{bottom:458.784000pt;}
.y91{bottom:460.816000pt;}
.yd{bottom:462.321333pt;}
.y92{bottom:476.756000pt;}
.y4c{bottom:478.778667pt;}
.y2c{bottom:481.558667pt;}
.y6d{bottom:482.686667pt;}
.yc{bottom:486.224000pt;}
.y90{bottom:493.226667pt;}
.y6c{bottom:506.590667pt;}
.y8e{bottom:509.168000pt;}
.yb{bottom:510.126667pt;}
.y4b{bottom:511.770667pt;}
.y2b{bottom:522.629333pt;}
.y8f{bottom:525.108000pt;}
.y6b{bottom:530.493333pt;}
.ya{bottom:534.030667pt;}
.y49{bottom:535.673333pt;}
.y4a{bottom:541.460000pt;}
.y8d{bottom:541.578667pt;}
.y2a{bottom:546.532000pt;}
.y6a{bottom:554.396000pt;}
.y8b{bottom:557.520000pt;}
.y9{bottom:557.933333pt;}
.y48{bottom:559.576000pt;}
.y29{bottom:570.436000pt;}
.y8c{bottom:573.460000pt;}
.y69{bottom:578.298667pt;}
.y8{bottom:581.836000pt;}
.y47{bottom:583.480000pt;}
.y8a{bottom:589.930667pt;}
.y28{bottom:594.338667pt;}
.y68{bottom:602.201333pt;}
.y7{bottom:605.738667pt;}
.y46{bottom:607.382667pt;}
.y27{bottom:618.241333pt;}
.y89{bottom:620.324000pt;}
.y6{bottom:629.642667pt;}
.y45{bottom:631.285333pt;}
.y67{bottom:636.568000pt;}
.y88{bottom:651.673333pt;}
.y44{bottom:655.188000pt;}
.y26{bottom:659.312000pt;}
.y5{bottom:670.688000pt;}
.y25{bottom:683.214667pt;}
.y43{bottom:688.180000pt;}
.y66{bottom:689.385333pt;}
.y87{bottom:694.046667pt;}
.y83{bottom:704.981333pt;}
.y24{bottom:707.118667pt;}
.y42{bottom:712.082667pt;}
.y86{bottom:712.977333pt;}
.y65{bottom:713.288000pt;}
.y85{bottom:725.302667pt;}
.y41{bottom:735.986667pt;}
.y64{bottom:737.190667pt;}
.y84{bottom:740.477333pt;}
.y23{bottom:748.189333pt;}
.y40{bottom:759.889333pt;}
.y63{bottom:767.906667pt;}
.y22{bottom:772.092000pt;}
.y3f{bottom:783.792000pt;}
.y82{bottom:783.794667pt;}
.yaa{bottom:794.410667pt;}
.y21{bottom:795.994667pt;}
.y62{bottom:805.434667pt;}
.y81{bottom:807.697333pt;}
.y3e{bottom:816.784000pt;}
.ya9{bottom:818.313333pt;}
.y4{bottom:826.080000pt;}
.y61{bottom:829.338667pt;}
.y80{bottom:839.158667pt;}
.y3d{bottom:840.686667pt;}
.ya8{bottom:842.217333pt;}
.y20{bottom:849.776000pt;}
.y60{bottom:853.241333pt;}
.y7f{bottom:863.062667pt;}
.y3c{bottom:864.589333pt;}
.y1f{bottom:873.678667pt;}
.y5f{bottom:877.144000pt;}
.y7e{bottom:886.965333pt;}
.y3b{bottom:888.493333pt;}
.y1e{bottom:897.581333pt;}
.y5e{bottom:901.046667pt;}
.y3{bottom:906.605333pt;}
.y7d{bottom:910.868000pt;}
.y3a{bottom:912.396000pt;}
.y1d{bottom:921.485333pt;}
.y5d{bottom:931.762667pt;}
.y7c{bottom:934.770667pt;}
.y39{bottom:936.298667pt;}
.y1c{bottom:945.388000pt;}
.y7b{bottom:958.673333pt;}
.y38{bottom:960.201333pt;}
.y1b{bottom:969.290667pt;}
.ya7{bottom:975.077333pt;}
.y2{bottom:984.036000pt;}
.y1a{bottom:993.193333pt;}
.y1{bottom:1041.312000pt;}
.hb{height:35.976824pt;}
.hf{height:37.884447pt;}
.h9{height:43.756032pt;}
.ha{height:45.461641pt;}
.h3{height:47.820800pt;}
.hc{height:47.948322pt;}
.h10{height:48.617488pt;}
.h2{height:53.236408pt;}
.h8{height:57.384800pt;}
.h7{height:58.341376pt;}
.h6{height:68.861600pt;}
.h11{height:80.494821pt;}
.h5{height:82.650000pt;}
.he{height:102.080043pt;}
.hd{height:112.341376pt;}
.h4{height:179.632140pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:63.901333pt;}
.x1d{left:70.533333pt;}
.x1c{left:74.964000pt;}
.xd{left:76.074667pt;}
.x1b{left:99.320000pt;}
.x5{left:113.268000pt;}
.xf{left:115.094667pt;}
.x6{left:122.130667pt;}
.x2b{left:125.209333pt;}
.x27{left:127.548000pt;}
.x1a{left:131.998667pt;}
.x10{left:136.514667pt;}
.x14{left:150.168000pt;}
.x11{left:152.288000pt;}
.x1e{left:162.402667pt;}
.x16{left:168.454667pt;}
.x7{left:192.193333pt;}
.x8{left:197.501333pt;}
.x4{left:236.109333pt;}
.x29{left:246.392000pt;}
.x2a{left:257.032000pt;}
.x26{left:269.662667pt;}
.x25{left:274.081333pt;}
.x9{left:279.957333pt;}
.xa{left:290.589333pt;}
.x24{left:304.532000pt;}
.x12{left:310.612000pt;}
.x18{left:320.205333pt;}
.x13{left:321.262667pt;}
.x17{left:322.325333pt;}
.x1f{left:324.225333pt;}
.x15{left:344.728000pt;}
.x23{left:366.537333pt;}
.x20{left:390.445333pt;}
.xb{left:391.854667pt;}
.x21{left:394.057333pt;}
.x22{left:396.750667pt;}
.xc{left:403.362667pt;}
.x19{left:475.140000pt;}
.x28{left:552.208000pt;}
.x2{left:632.981333pt;}
.x3{left:649.990667pt;}
.x1{left:695.850667pt;}
}




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