
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_f8b2d9827dbd3a2d16fcb256.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2fef6458c79caac76d766918.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2769e542b55dc91ea0ba1872.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712000;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_4b8a8b710a654611ca44979e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_0a3b8a24e83ff0c3e76d7ae3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d1c451c28219c3bf98652a60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_55388725f634ca9cccc9b154.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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;}
.m4{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);}
.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);}
.m16{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);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.me{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);}
.m17{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);}
.m1b{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);}
.m7{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);}
.m1c{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);}
.m2{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);}
.m3{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);}
.m18{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);}
.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);}
.m8{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);}
.mf{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);}
.m1e{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);}
.m14{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);}
.m19{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m11{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m12{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);}
.m10{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);}
.m1d{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);}
.md{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);}
.m6{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);}
.mc{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);}
.m9{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);}
.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);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.lse{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000503px;}
.ls9{letter-spacing:0.000566px;}
.ls18{letter-spacing:0.000800px;}
.ls5{letter-spacing:0.000925px;}
.ls15{letter-spacing:0.001036px;}
.ls16{letter-spacing:0.001155px;}
.ls14{letter-spacing:0.001215px;}
.lsc{letter-spacing:0.001298px;}
.ls8{letter-spacing:0.002074px;}
.ls19{letter-spacing:0.002544px;}
.ls0{letter-spacing:0.002725px;}
.ls12{letter-spacing:0.002766px;}
.ls10{letter-spacing:0.003226px;}
.ls11{letter-spacing:0.003699px;}
.ls7{letter-spacing:0.003859px;}
.lsf{letter-spacing:1.275394px;}
.lsb{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.lsd{letter-spacing:11.954850px;}
.ls17{letter-spacing:12.766727px;}
.ls13{letter-spacing:13.448400px;}
.ls1b{letter-spacing:13.454400px;}
.ls4{letter-spacing:14.944200px;}
.ls2{letter-spacing:57.415200px;}
.ls3{letter-spacing:57.421200px;}
.ls6{letter-spacing:70.236600px;}
.lsa{letter-spacing:72.353510px;}
.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;}
}
.ws4{word-spacing:-14.943900px;}
.ws3e{word-spacing:-13.449600px;}
.ws23{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.ws18{word-spacing:-2.689902px;}
.ws39{word-spacing:-2.032370px;}
.wsf{word-spacing:-1.908367px;}
.wse{word-spacing:-1.322630px;}
.ws35{word-spacing:-1.315063px;}
.ws43{word-spacing:-0.914573px;}
.ws44{word-spacing:-0.699379px;}
.ws38{word-spacing:-0.358654px;}
.ws1e{word-spacing:-0.239102px;}
.ws25{word-spacing:-0.179327px;}
.ws3d{word-spacing:-0.161395px;}
.ws1c{word-spacing:-0.119551px;}
.ws3{word-spacing:-0.107597px;}
.ws5{word-spacing:-0.059776px;}
.wsd{word-spacing:-0.053798px;}
.ws24{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.006000px;}
.wsa{word-spacing:-0.005108px;}
.ws6{word-spacing:-0.001500px;}
.ws8{word-spacing:-0.000524px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.002375px;}
.ws7{word-spacing:0.003608px;}
.wsb{word-spacing:0.004500px;}
.ws12{word-spacing:0.059776px;}
.ws3f{word-spacing:0.107597px;}
.ws17{word-spacing:0.119551px;}
.ws47{word-spacing:0.161395px;}
.ws30{word-spacing:0.179327px;}
.ws2c{word-spacing:0.239102px;}
.ws19{word-spacing:0.298878px;}
.ws1f{word-spacing:0.358654px;}
.ws1d{word-spacing:0.537980px;}
.ws26{word-spacing:0.657532px;}
.ws33{word-spacing:0.777083px;}
.ws2d{word-spacing:0.956410px;}
.ws34{word-spacing:1.135736px;}
.ws1a{word-spacing:1.195512px;}
.ws2e{word-spacing:1.315063px;}
.ws37{word-spacing:1.613941px;}
.ws10{word-spacing:1.853044px;}
.ws16{word-spacing:1.912819px;}
.ws3a{word-spacing:1.972595px;}
.ws3b{word-spacing:2.032370px;}
.ws1b{word-spacing:2.271473px;}
.ws2b{word-spacing:2.331248px;}
.ws32{word-spacing:2.510575px;}
.ws20{word-spacing:2.570351px;}
.ws48{word-spacing:3.221923px;}
.ws21{word-spacing:3.287658px;}
.ws36{word-spacing:3.407209px;}
.ws27{word-spacing:4.303843px;}
.ws2a{word-spacing:4.363619px;}
.ws42{word-spacing:4.519066px;}
.ws29{word-spacing:4.841824px;}
.ws2f{word-spacing:4.961375px;}
.ws11{word-spacing:5.200477px;}
.ws3c{word-spacing:5.260253px;}
.ws28{word-spacing:6.156887px;}
.ws15{word-spacing:6.754643px;}
.ws31{word-spacing:7.232848px;}
.ws45{word-spacing:11.028672px;}
.ws46{word-spacing:11.031308px;}
.ws22{word-spacing:11.907959px;}
.ws14{word-spacing:12.014896px;}
.ws40{word-spacing:13.395802px;}
.ws41{word-spacing:14.471770px;}
.ws13{word-spacing:14.960963px;}
.ws49{word-spacing:16.623706px;}
.ws1{word-spacing:26.787293px;}
._1{margin-left:-6.638075px;}
._5{margin-left:-5.358968px;}
._6{margin-left:-4.010045px;}
._4{margin-left:-2.983747px;}
._3{margin-left:-1.936742px;}
._9{width:1.091170px;}
._2{width:2.999887px;}
._7{width:15.709133px;}
._8{width:17.215488px;}
._10{width:18.593195px;}
._d{width:19.814726px;}
._c{width:21.041011px;}
._11{width:22.538374px;}
._12{width:23.754836px;}
._b{width:25.823059px;}
._a{width:29.887800px;}
._14{width:31.443192px;}
._0{width:33.355008px;}
._13{width:35.345549px;}
._e{width:906.342032px;}
._f{width:2073.165000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.425340px;}
.y1a{bottom:14.151273px;}
.y2{bottom:14.814771px;}
.y33{bottom:63.780000px;}
.y32{bottom:116.815500px;}
.y66{bottom:123.121500px;}
.y31{bottom:137.079000px;}
.y65{bottom:143.386500px;}
.y30{bottom:157.344000px;}
.y64{bottom:163.650000px;}
.y2f{bottom:177.607500px;}
.y63{bottom:183.913500px;}
.y2e{bottom:197.872500px;}
.y62{bottom:204.178500px;}
.y2d{bottom:218.136000px;}
.y61{bottom:224.442000px;}
.y2c{bottom:238.399500px;}
.y60{bottom:244.707000px;}
.y2b{bottom:258.664500px;}
.y5f{bottom:264.970500px;}
.y2a{bottom:278.928000px;}
.y5e{bottom:285.234000px;}
.y29{bottom:299.191500px;}
.y5d{bottom:305.499000px;}
.y28{bottom:319.456500px;}
.y5c{bottom:325.762500px;}
.y27{bottom:339.720000px;}
.y5b{bottom:346.027500px;}
.y26{bottom:359.985000px;}
.y5a{bottom:366.291000px;}
.y25{bottom:380.248500px;}
.y59{bottom:386.554500px;}
.y24{bottom:400.512000px;}
.y78{bottom:406.462500px;}
.y58{bottom:406.819500px;}
.y23{bottom:420.777000px;}
.y77{bottom:425.830500px;}
.y57{bottom:427.083000px;}
.y22{bottom:441.040500px;}
.y76{bottom:445.197000px;}
.y56{bottom:447.348000px;}
.y21{bottom:461.305500px;}
.y55{bottom:467.611500px;}
.y75{bottom:478.147500px;}
.y20{bottom:481.569000px;}
.y54{bottom:487.875000px;}
.y74{bottom:497.515500px;}
.y1f{bottom:501.832500px;}
.y53{bottom:508.140000px;}
.y73{bottom:516.882000px;}
.y1e{bottom:522.097500px;}
.y52{bottom:528.403500px;}
.y72{bottom:536.250000px;}
.y1d{bottom:542.361000px;}
.y51{bottom:548.667000px;}
.y71{bottom:555.618000px;}
.y1c{bottom:562.626000px;}
.y50{bottom:568.932000px;}
.y70{bottom:574.984500px;}
.y4f{bottom:589.195500px;}
.y6f{bottom:594.352500px;}
.y4e{bottom:609.460500px;}
.y6e{bottom:613.719000px;}
.y4d{bottom:629.724000px;}
.y6d{bottom:633.087000px;}
.y19{bottom:634.445964px;}
.y18{bottom:634.839000px;}
.y4c{bottom:649.987500px;}
.y6c{bottom:652.455000px;}
.y4b{bottom:670.252500px;}
.y6b{bottom:671.821500px;}
.y17{bottom:674.211000px;}
.y4a{bottom:690.516000px;}
.y16{bottom:697.251000px;}
.y6a{bottom:700.155000px;}
.y49{bottom:710.781000px;}
.y15{bottom:715.407000px;}
.y14{bottom:728.682000px;}
.y48{bottom:731.044500px;}
.y69{bottom:739.608000px;}
.y47{bottom:751.308000px;}
.y13{bottom:751.722000px;}
.y68{bottom:763.771500px;}
.y12{bottom:764.995500px;}
.y46{bottom:771.573000px;}
.y67{bottom:778.969500px;}
.y11{bottom:783.153000px;}
.y45{bottom:791.836500px;}
.y10{bottom:806.193000px;}
.y44{bottom:812.101500px;}
.yf{bottom:819.466500px;}
.y43{bottom:832.365000px;}
.ye{bottom:842.506500px;}
.y42{bottom:852.628500px;}
.yd{bottom:855.781500px;}
.y41{bottom:872.893500px;}
.yc{bottom:873.937500px;}
.yb{bottom:892.095000px;}
.y40{bottom:893.157000px;}
.y3f{bottom:913.422000px;}
.ya{bottom:915.135000px;}
.y3e{bottom:933.685500px;}
.y9{bottom:937.375500px;}
.y3d{bottom:953.949000px;}
.y8{bottom:957.639000px;}
.y3c{bottom:974.214000px;}
.y7{bottom:977.904000px;}
.y3b{bottom:994.477500px;}
.y6{bottom:998.167500px;}
.y3a{bottom:1014.742500px;}
.y39{bottom:1035.006000px;}
.y5{bottom:1040.848500px;}
.y38{bottom:1055.269500px;}
.y4{bottom:1071.244500px;}
.y37{bottom:1075.534500px;}
.y36{bottom:1095.798000px;}
.y3{bottom:1100.145000px;}
.y35{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y34{bottom:1168.366500px;}
.hb{height:25.508090px;}
.h8{height:30.461558px;}
.hd{height:33.112997px;}
.hc{height:34.199443px;}
.h10{height:35.052500px;}
.h12{height:38.734848px;}
.ha{height:39.165235px;}
.h14{height:39.434227px;}
.h11{height:41.723369px;}
.h13{height:43.038432px;}
.he{height:43.516637px;}
.h4{height:43.815515px;}
.h9{height:49.117939px;}
.h2{height:50.931027px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.hf{height:54.575123px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.814733px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:58.056593px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x4{left:145.647000px;}
.x8{left:146.692500px;}
.x1b{left:200.760000px;}
.x1c{left:213.859500px;}
.x1e{left:219.598500px;}
.x1d{left:221.331000px;}
.x1f{left:227.070000px;}
.x27{left:252.097500px;}
.x29{left:254.101500px;}
.x23{left:255.897000px;}
.x28{left:265.518000px;}
.x9{left:359.763000px;}
.xa{left:367.234500px;}
.x17{left:393.525000px;}
.x18{left:400.996500px;}
.x21{left:423.919500px;}
.x22{left:431.391000px;}
.x20{left:453.523500px;}
.x12{left:459.358500px;}
.x13{left:464.335500px;}
.x16{left:467.686500px;}
.x14{left:548.404500px;}
.x15{left:555.876000px;}
.x19{left:567.034500px;}
.x1a{left:574.507500px;}
.xb{left:584.532000px;}
.xc{left:592.005000px;}
.xd{left:598.704000px;}
.x10{left:625.822500px;}
.x11{left:630.798000px;}
.x26{left:657.390000px;}
.x6{left:701.339982px;}
.xe{left:733.860000px;}
.xf{left:741.331500px;}
.x24{left:749.563500px;}
.x25{left:776.463000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.lse{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000447pt;}
.ls9{letter-spacing:0.000503pt;}
.ls18{letter-spacing:0.000711pt;}
.ls5{letter-spacing:0.000822pt;}
.ls15{letter-spacing:0.000921pt;}
.ls16{letter-spacing:0.001026pt;}
.ls14{letter-spacing:0.001080pt;}
.lsc{letter-spacing:0.001154pt;}
.ls8{letter-spacing:0.001843pt;}
.ls19{letter-spacing:0.002262pt;}
.ls0{letter-spacing:0.002422pt;}
.ls12{letter-spacing:0.002459pt;}
.ls10{letter-spacing:0.002868pt;}
.ls11{letter-spacing:0.003288pt;}
.ls7{letter-spacing:0.003430pt;}
.lsf{letter-spacing:1.133683pt;}
.lsb{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.lsd{letter-spacing:10.626533pt;}
.ls17{letter-spacing:11.348201pt;}
.ls13{letter-spacing:11.954133pt;}
.ls1b{letter-spacing:11.959467pt;}
.ls4{letter-spacing:13.283733pt;}
.ls2{letter-spacing:51.035733pt;}
.ls3{letter-spacing:51.041067pt;}
.ls6{letter-spacing:62.432533pt;}
.lsa{letter-spacing:64.314231pt;}
.ws4{word-spacing:-13.283467pt;}
.ws3e{word-spacing:-11.955200pt;}
.ws23{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.ws18{word-spacing:-2.391024pt;}
.ws39{word-spacing:-1.806551pt;}
.wsf{word-spacing:-1.696326pt;}
.wse{word-spacing:-1.175671pt;}
.ws35{word-spacing:-1.168945pt;}
.ws43{word-spacing:-0.812954pt;}
.ws44{word-spacing:-0.621670pt;}
.ws38{word-spacing:-0.318803pt;}
.ws1e{word-spacing:-0.212535pt;}
.ws25{word-spacing:-0.159402pt;}
.ws3d{word-spacing:-0.143462pt;}
.ws1c{word-spacing:-0.106268pt;}
.ws3{word-spacing:-0.095642pt;}
.ws5{word-spacing:-0.053134pt;}
.wsd{word-spacing:-0.047821pt;}
.ws24{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.005333pt;}
.wsa{word-spacing:-0.004541pt;}
.ws6{word-spacing:-0.001333pt;}
.ws8{word-spacing:-0.000466pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.002111pt;}
.ws7{word-spacing:0.003207pt;}
.wsb{word-spacing:0.004000pt;}
.ws12{word-spacing:0.053134pt;}
.ws3f{word-spacing:0.095642pt;}
.ws17{word-spacing:0.106268pt;}
.ws47{word-spacing:0.143462pt;}
.ws30{word-spacing:0.159402pt;}
.ws2c{word-spacing:0.212535pt;}
.ws19{word-spacing:0.265669pt;}
.ws1f{word-spacing:0.318803pt;}
.ws1d{word-spacing:0.478205pt;}
.ws26{word-spacing:0.584473pt;}
.ws33{word-spacing:0.690740pt;}
.ws2d{word-spacing:0.850142pt;}
.ws34{word-spacing:1.009543pt;}
.ws1a{word-spacing:1.062677pt;}
.ws2e{word-spacing:1.168945pt;}
.ws37{word-spacing:1.434614pt;}
.ws10{word-spacing:1.647150pt;}
.ws16{word-spacing:1.700284pt;}
.ws3a{word-spacing:1.753418pt;}
.ws3b{word-spacing:1.806551pt;}
.ws1b{word-spacing:2.019087pt;}
.ws2b{word-spacing:2.072221pt;}
.ws32{word-spacing:2.231622pt;}
.ws20{word-spacing:2.284756pt;}
.ws48{word-spacing:2.863932pt;}
.ws21{word-spacing:2.922363pt;}
.ws36{word-spacing:3.028630pt;}
.ws27{word-spacing:3.825638pt;}
.ws2a{word-spacing:3.878772pt;}
.ws42{word-spacing:4.016947pt;}
.ws29{word-spacing:4.303843pt;}
.ws2f{word-spacing:4.410111pt;}
.ws11{word-spacing:4.622646pt;}
.ws3c{word-spacing:4.675780pt;}
.ws28{word-spacing:5.472788pt;}
.ws15{word-spacing:6.004127pt;}
.ws31{word-spacing:6.429198pt;}
.ws45{word-spacing:9.803264pt;}
.ws46{word-spacing:9.805607pt;}
.ws22{word-spacing:10.584852pt;}
.ws14{word-spacing:10.679907pt;}
.ws40{word-spacing:11.907379pt;}
.ws41{word-spacing:12.863795pt;}
.ws13{word-spacing:13.298634pt;}
.ws49{word-spacing:14.776627pt;}
.ws1{word-spacing:23.810927pt;}
._1{margin-left:-5.900511pt;}
._5{margin-left:-4.763527pt;}
._6{margin-left:-3.564484pt;}
._4{margin-left:-2.652220pt;}
._3{margin-left:-1.721549pt;}
._9{width:0.969929pt;}
._2{width:2.666566pt;}
._7{width:13.963674pt;}
._8{width:15.302656pt;}
._10{width:16.527284pt;}
._d{width:17.613090pt;}
._c{width:18.703121pt;}
._11{width:20.034110pt;}
._12{width:21.115410pt;}
._b{width:22.953830pt;}
._a{width:26.566933pt;}
._14{width:27.949504pt;}
._0{width:29.648896pt;}
._13{width:31.418266pt;}
._e{width:805.637362pt;}
._f{width:1842.813333pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.044747pt;}
.y1a{bottom:12.578910pt;}
.y2{bottom:13.168686pt;}
.y33{bottom:56.693333pt;}
.y32{bottom:103.836000pt;}
.y66{bottom:109.441333pt;}
.y31{bottom:121.848000pt;}
.y65{bottom:127.454667pt;}
.y30{bottom:139.861333pt;}
.y64{bottom:145.466667pt;}
.y2f{bottom:157.873333pt;}
.y63{bottom:163.478667pt;}
.y2e{bottom:175.886667pt;}
.y62{bottom:181.492000pt;}
.y2d{bottom:193.898667pt;}
.y61{bottom:199.504000pt;}
.y2c{bottom:211.910667pt;}
.y60{bottom:217.517333pt;}
.y2b{bottom:229.924000pt;}
.y5f{bottom:235.529333pt;}
.y2a{bottom:247.936000pt;}
.y5e{bottom:253.541333pt;}
.y29{bottom:265.948000pt;}
.y5d{bottom:271.554667pt;}
.y28{bottom:283.961333pt;}
.y5c{bottom:289.566667pt;}
.y27{bottom:301.973333pt;}
.y5b{bottom:307.580000pt;}
.y26{bottom:319.986667pt;}
.y5a{bottom:325.592000pt;}
.y25{bottom:337.998667pt;}
.y59{bottom:343.604000pt;}
.y24{bottom:356.010667pt;}
.y78{bottom:361.300000pt;}
.y58{bottom:361.617333pt;}
.y23{bottom:374.024000pt;}
.y77{bottom:378.516000pt;}
.y57{bottom:379.629333pt;}
.y22{bottom:392.036000pt;}
.y76{bottom:395.730667pt;}
.y56{bottom:397.642667pt;}
.y21{bottom:410.049333pt;}
.y55{bottom:415.654667pt;}
.y75{bottom:425.020000pt;}
.y20{bottom:428.061333pt;}
.y54{bottom:433.666667pt;}
.y74{bottom:442.236000pt;}
.y1f{bottom:446.073333pt;}
.y53{bottom:451.680000pt;}
.y73{bottom:459.450667pt;}
.y1e{bottom:464.086667pt;}
.y52{bottom:469.692000pt;}
.y72{bottom:476.666667pt;}
.y1d{bottom:482.098667pt;}
.y51{bottom:487.704000pt;}
.y71{bottom:493.882667pt;}
.y1c{bottom:500.112000pt;}
.y50{bottom:505.717333pt;}
.y70{bottom:511.097333pt;}
.y4f{bottom:523.729333pt;}
.y6f{bottom:528.313333pt;}
.y4e{bottom:541.742667pt;}
.y6e{bottom:545.528000pt;}
.y4d{bottom:559.754667pt;}
.y6d{bottom:562.744000pt;}
.y19{bottom:563.951968pt;}
.y18{bottom:564.301333pt;}
.y4c{bottom:577.766667pt;}
.y6c{bottom:579.960000pt;}
.y4b{bottom:595.780000pt;}
.y6b{bottom:597.174667pt;}
.y17{bottom:599.298667pt;}
.y4a{bottom:613.792000pt;}
.y16{bottom:619.778667pt;}
.y6a{bottom:622.360000pt;}
.y49{bottom:631.805333pt;}
.y15{bottom:635.917333pt;}
.y14{bottom:647.717333pt;}
.y48{bottom:649.817333pt;}
.y69{bottom:657.429333pt;}
.y47{bottom:667.829333pt;}
.y13{bottom:668.197333pt;}
.y68{bottom:678.908000pt;}
.y12{bottom:679.996000pt;}
.y46{bottom:685.842667pt;}
.y67{bottom:692.417333pt;}
.y11{bottom:696.136000pt;}
.y45{bottom:703.854667pt;}
.y10{bottom:716.616000pt;}
.y44{bottom:721.868000pt;}
.yf{bottom:728.414667pt;}
.y43{bottom:739.880000pt;}
.ye{bottom:748.894667pt;}
.y42{bottom:757.892000pt;}
.yd{bottom:760.694667pt;}
.y41{bottom:775.905333pt;}
.yc{bottom:776.833333pt;}
.yb{bottom:792.973333pt;}
.y40{bottom:793.917333pt;}
.y3f{bottom:811.930667pt;}
.ya{bottom:813.453333pt;}
.y3e{bottom:829.942667pt;}
.y9{bottom:833.222667pt;}
.y3d{bottom:847.954667pt;}
.y8{bottom:851.234667pt;}
.y3c{bottom:865.968000pt;}
.y7{bottom:869.248000pt;}
.y3b{bottom:883.980000pt;}
.y6{bottom:887.260000pt;}
.y3a{bottom:901.993333pt;}
.y39{bottom:920.005333pt;}
.y5{bottom:925.198667pt;}
.y38{bottom:938.017333pt;}
.y4{bottom:952.217333pt;}
.y37{bottom:956.030667pt;}
.y36{bottom:974.042667pt;}
.y3{bottom:977.906667pt;}
.y35{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y34{bottom:1038.548000pt;}
.hb{height:22.673858pt;}
.h8{height:27.076941pt;}
.hd{height:29.433775pt;}
.hc{height:30.399505pt;}
.h10{height:31.157778pt;}
.h12{height:34.430976pt;}
.ha{height:34.813542pt;}
.h14{height:35.052646pt;}
.h11{height:37.087439pt;}
.h13{height:38.256384pt;}
.he{height:38.681455pt;}
.h4{height:38.947124pt;}
.h9{height:43.660390pt;}
.h2{height:45.272024pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.hf{height:48.511220pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.724208pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:51.605861pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x4{left:129.464000pt;}
.x8{left:130.393333pt;}
.x1b{left:178.453333pt;}
.x1c{left:190.097333pt;}
.x1e{left:195.198667pt;}
.x1d{left:196.738667pt;}
.x1f{left:201.840000pt;}
.x27{left:224.086667pt;}
.x29{left:225.868000pt;}
.x23{left:227.464000pt;}
.x28{left:236.016000pt;}
.x9{left:319.789333pt;}
.xa{left:326.430667pt;}
.x17{left:349.800000pt;}
.x18{left:356.441333pt;}
.x21{left:376.817333pt;}
.x22{left:383.458667pt;}
.x20{left:403.132000pt;}
.x12{left:408.318667pt;}
.x13{left:412.742667pt;}
.x16{left:415.721333pt;}
.x14{left:487.470667pt;}
.x15{left:494.112000pt;}
.x19{left:504.030667pt;}
.x1a{left:510.673333pt;}
.xb{left:519.584000pt;}
.xc{left:526.226667pt;}
.xd{left:532.181333pt;}
.x10{left:556.286667pt;}
.x11{left:560.709333pt;}
.x26{left:584.346667pt;}
.x6{left:623.413317pt;}
.xe{left:652.320000pt;}
.xf{left:658.961333pt;}
.x24{left:666.278667pt;}
.x25{left:690.189333pt;}
}




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