
    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_6630a687a03495c440385c36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_5809709ead72adb5d10daae9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893066;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_7ca736c6483f4bcfbc49f004.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_0977c080b3c6ad36e75b3460.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_190bf4d57eeaaf082ba3f999.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.313477;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_89a13b687540e444f106971d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_7d30b3acfc8235115626755a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_9ba51c10080d6fc7e55a07e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_206d2afde9bce8841971d227.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2e57eb56af0cc17bd42d3321.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_eb1c25185ee4966b8ee7f0d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_db52cccec4ab28ffbc090d18.woff2')format("woff");}.fff{font-family:fff;line-height:1.313477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.762207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c4c07d131e6671df6198f667.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.675781;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:ff13;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.762207;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:ff14;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;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:ff15;src:url('chunks/assets/font_c4c07d131e6671df6198f667.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.675781;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:ff16;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.762207;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:ff17;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;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:ff18;src:url('chunks/assets/font_c4c07d131e6671df6198f667.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.675781;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:ff19;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.762207;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:ff1a;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;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:ff1b;src:url('chunks/assets/font_c4c07d131e6671df6198f667.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.675781;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:ff1c;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.762207;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:ff1d;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284180;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:ff1e;src:url('chunks/assets/font_c4c07d131e6671df6198f667.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.675781;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:ff1f;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.762207;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:ff20;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284180;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:ff21;src:url('chunks/assets/font_c4c07d131e6671df6198f667.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.675781;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:ff22;src:url('chunks/assets/font_ac7515e912f108c0b2635246.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.311035;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:ff23;src:url('chunks/assets/font_77c1e82a33cedd28b53adfc9.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1d{letter-spacing:-0.864000px;}
.ls43{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.216000px;}
.ls41{letter-spacing:-0.144000px;}
.lsc{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.432000px;}
.ls3f{letter-spacing:0.504000px;}
.ls40{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.720000px;}
.ls44{letter-spacing:1.152000px;}
.ls7{letter-spacing:1.440000px;}
.lsa{letter-spacing:2.160000px;}
.ls2f{letter-spacing:2.172000px;}
.ls9{letter-spacing:2.280000px;}
.ls36{letter-spacing:2.340000px;}
.ls16{letter-spacing:2.880000px;}
.ls17{letter-spacing:2.892000px;}
.ls2d{letter-spacing:3.600000px;}
.ls1c{letter-spacing:3.780000px;}
.ls4{letter-spacing:4.320000px;}
.ls27{letter-spacing:5.040000px;}
.ls2a{letter-spacing:5.052000px;}
.lsb{letter-spacing:5.760000px;}
.ls42{letter-spacing:6.456000px;}
.ls31{letter-spacing:6.480000px;}
.ls11{letter-spacing:7.176000px;}
.ls30{letter-spacing:7.200000px;}
.ls24{letter-spacing:7.920000px;}
.ls22{letter-spacing:8.640000px;}
.ls25{letter-spacing:9.360000px;}
.ls3e{letter-spacing:10.080000px;}
.ls8{letter-spacing:10.800000px;}
.ls38{letter-spacing:11.520000px;}
.ls32{letter-spacing:12.240000px;}
.ls33{letter-spacing:13.680000px;}
.ls13{letter-spacing:14.400000px;}
.ls34{letter-spacing:15.120000px;}
.ls2b{letter-spacing:15.840000px;}
.ls2e{letter-spacing:16.536000px;}
.ls15{letter-spacing:16.560000px;}
.ls23{letter-spacing:17.280000px;}
.ls6{letter-spacing:18.000000px;}
.ls2c{letter-spacing:18.696000px;}
.ls1{letter-spacing:18.720000px;}
.ls29{letter-spacing:19.440000px;}
.ls21{letter-spacing:20.136000px;}
.ls2{letter-spacing:20.160000px;}
.ls3b{letter-spacing:20.880000px;}
.ls28{letter-spacing:21.600000px;}
.ls3c{letter-spacing:21.648000px;}
.lsf{letter-spacing:22.320000px;}
.ls1b{letter-spacing:23.760000px;}
.ls20{letter-spacing:24.480000px;}
.ls3a{letter-spacing:25.200000px;}
.ls12{letter-spacing:26.640000px;}
.ls35{letter-spacing:30.960000px;}
.ls1e{letter-spacing:32.400000px;}
.ls1f{letter-spacing:33.960000px;}
.ls3d{letter-spacing:36.000000px;}
.ls14{letter-spacing:36.876000px;}
.ls1a{letter-spacing:47.520000px;}
.ls18{letter-spacing:47.532000px;}
.ls19{letter-spacing:47.700000px;}
.ls37{letter-spacing:65.520000px;}
.ls5{letter-spacing:105.120000px;}
.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:-21.060000px;}
.ws3{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._28{margin-left:-5.460000px;}
._15{margin-left:-2.120880px;}
._1{margin-left:-1.095120px;}
._4{width:1.040880px;}
._a{width:2.103120px;}
._8{width:3.528000px;}
._9{width:4.923120px;}
._14{width:5.976000px;}
._16{width:7.128000px;}
._e{width:9.000000px;}
._6{width:10.008000px;}
._17{width:11.160000px;}
._11{width:12.792000px;}
._10{width:13.896000px;}
._1a{width:14.904000px;}
._2{width:16.056000px;}
._3{width:19.095120px;}
._5{width:20.376000px;}
._1c{width:22.032000px;}
._f{width:23.679120px;}
._c{width:24.696000px;}
._d{width:25.758240px;}
._1b{width:27.307440px;}
._7{width:28.869360px;}
._b{width:30.615120px;}
._24{width:32.040000px;}
._25{width:33.192000px;}
._27{width:34.272000px;}
._20{width:35.744880px;}
._1f{width:37.152000px;}
._29{width:38.880000px;}
._2a{width:39.957840px;}
._26{width:41.040000px;}
._19{width:42.624000px;}
._18{width:43.704000px;}
._21{width:44.784000px;}
._22{width:47.088000px;}
._23{width:48.672000px;}
._2c{width:49.968000px;}
._2d{width:51.192000px;}
._2e{width:52.560000px;}
._2b{width:64.944000px;}
._1d{width:66.744000px;}
._1e{width:67.824000px;}
._13{width:103.536000px;}
._12{width:104.688000px;}
._0{width:2668.056000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(43,82,110);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.885000px;}
.y1{bottom:57.420000px;}
.y32{bottom:77.399231px;}
.y66{bottom:109.836000px;}
.y31{bottom:115.776000px;}
.y71{bottom:126.036000px;}
.y65{bottom:133.956000px;}
.y30{bottom:136.476000px;}
.y64{bottom:144.396000px;}
.y70{bottom:146.736000px;}
.y2f{bottom:157.170000px;}
.y63{bottom:161.670000px;}
.y6f{bottom:167.430000px;}
.y2e{bottom:177.870000px;}
.y62{bottom:178.950000px;}
.y6e{bottom:188.130000px;}
.y61{bottom:196.230000px;}
.y2d{bottom:198.570000px;}
.y6d{bottom:208.830000px;}
.y2c{bottom:219.270000px;}
.y60{bottom:220.170000px;}
.y6c{bottom:229.530000px;}
.y5f{bottom:231.330000px;}
.y2b{bottom:239.970000px;}
.y6b{bottom:250.230000px;}
.y2a{bottom:260.490000px;}
.y6a{bottom:270.930000px;}
.y29{bottom:281.190000px;}
.y97{bottom:289.470000px;}
.y5e{bottom:291.630000px;}
.y28{bottom:301.890000px;}
.y96{bottom:310.170000px;}
.y5d{bottom:312.330000px;}
.y27{bottom:322.590000px;}
.y95{bottom:330.915000px;}
.y5c{bottom:333.075000px;}
.y26{bottom:343.335000px;}
.y94{bottom:351.615000px;}
.y5b{bottom:353.775000px;}
.y25{bottom:364.035000px;}
.y93{bottom:372.315000px;}
.y5a{bottom:374.475000px;}
.y24{bottom:384.735000px;}
.y92{bottom:393.015000px;}
.y59{bottom:395.175000px;}
.y23{bottom:405.435000px;}
.y91{bottom:413.715000px;}
.y58{bottom:415.875000px;}
.y22{bottom:426.135000px;}
.y90{bottom:434.415000px;}
.y57{bottom:436.575000px;}
.y21{bottom:446.835000px;}
.y8f{bottom:455.115000px;}
.y56{bottom:457.275000px;}
.y20{bottom:467.535000px;}
.y8e{bottom:475.815000px;}
.y55{bottom:477.975000px;}
.y1f{bottom:488.235000px;}
.y8d{bottom:496.515000px;}
.y54{bottom:498.675000px;}
.y1e{bottom:508.935000px;}
.y8c{bottom:517.215000px;}
.y53{bottom:519.375000px;}
.y1d{bottom:529.635000px;}
.y8b{bottom:537.915000px;}
.y52{bottom:540.075000px;}
.y1c{bottom:550.335000px;}
.y8a{bottom:558.615000px;}
.y51{bottom:560.775000px;}
.y1b{bottom:571.035000px;}
.y89{bottom:579.315000px;}
.y50{bottom:581.475000px;}
.y1a{bottom:591.735000px;}
.y88{bottom:600.045000px;}
.y4f{bottom:602.205000px;}
.y19{bottom:612.465000px;}
.y87{bottom:620.745000px;}
.y74{bottom:622.365000px;}
.y4e{bottom:622.905000px;}
.y18{bottom:633.165000px;}
.y86{bottom:641.445000px;}
.y4d{bottom:643.605000px;}
.y17{bottom:653.865000px;}
.y85{bottom:662.145000px;}
.y4c{bottom:664.305000px;}
.y16{bottom:674.565000px;}
.y84{bottom:682.845000px;}
.y4b{bottom:685.005000px;}
.y15{bottom:695.265000px;}
.y4a{bottom:705.705000px;}
.y73{bottom:715.425000px;}
.y14{bottom:715.965000px;}
.y83{bottom:724.605000px;}
.y49{bottom:726.405000px;}
.y13{bottom:736.665000px;}
.y72{bottom:746.925000px;}
.y48{bottom:747.105000px;}
.y12{bottom:757.365000px;}
.y82{bottom:766.185000px;}
.y47{bottom:767.805000px;}
.y11{bottom:778.065000px;}
.y81{bottom:786.885000px;}
.y46{bottom:788.505000px;}
.y10{bottom:798.765000px;}
.y69{bottom:809.205000px;}
.y45{bottom:818.925000px;}
.yf{bottom:819.465000px;}
.y80{bottom:828.645000px;}
.y68{bottom:829.905000px;}
.ye{bottom:840.165000px;}
.y7f{bottom:849.345000px;}
.y44{bottom:850.425000px;}
.y67{bottom:850.605000px;}
.yd{bottom:860.865000px;}
.y7e{bottom:870.090000px;}
.y43{bottom:871.350000px;}
.yc{bottom:881.610000px;}
.y7d{bottom:890.790000px;}
.y42{bottom:892.050000px;}
.yb{bottom:902.310000px;}
.y7c{bottom:911.490000px;}
.y41{bottom:912.750000px;}
.ya{bottom:923.010000px;}
.y40{bottom:933.450000px;}
.y9{bottom:943.710000px;}
.y7b{bottom:953.250000px;}
.y3f{bottom:954.150000px;}
.y8{bottom:964.410000px;}
.y3e{bottom:974.850000px;}
.y7{bottom:985.110000px;}
.y7a{bottom:994.830000px;}
.y3d{bottom:995.550000px;}
.y6{bottom:1005.810000px;}
.y79{bottom:1015.530000px;}
.y3c{bottom:1016.250000px;}
.y5{bottom:1036.770000px;}
.y3b{bottom:1036.950000px;}
.y78{bottom:1057.290000px;}
.y3a{bottom:1057.650000px;}
.y4{bottom:1069.710000px;}
.y77{bottom:1077.990000px;}
.y39{bottom:1078.350000px;}
.y76{bottom:1098.690000px;}
.y38{bottom:1099.050000px;}
.y3{bottom:1103.550000px;}
.y37{bottom:1119.750000px;}
.y2{bottom:1137.060000px;}
.y75{bottom:1140.120000px;}
.y36{bottom:1140.480000px;}
.y35{bottom:1140.930000px;}
.y34{bottom:1192.950000px;}
.h6{height:19.800105px;}
.hb{height:38.158594px;}
.h9{height:43.909277px;}
.hc{height:52.435898px;}
.hd{height:58.651172px;}
.h5{height:63.175781px;}
.h8{height:70.628906px;}
.h2{height:70.664062px;}
.h7{height:72.492188px;}
.h4{height:72.562500px;}
.ha{height:80.464922px;}
.h3{height:82.635820px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.236000px;}
.x3{left:159.330000px;}
.x5{left:336.690000px;}
.x2{left:367.635000px;}
.x4{left:441.990006px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1d{letter-spacing:-0.768000pt;}
.ls43{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls41{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.384000pt;}
.ls3f{letter-spacing:0.448000pt;}
.ls40{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls44{letter-spacing:1.024000pt;}
.ls7{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls2f{letter-spacing:1.930667pt;}
.ls9{letter-spacing:2.026667pt;}
.ls36{letter-spacing:2.080000pt;}
.ls16{letter-spacing:2.560000pt;}
.ls17{letter-spacing:2.570667pt;}
.ls2d{letter-spacing:3.200000pt;}
.ls1c{letter-spacing:3.360000pt;}
.ls4{letter-spacing:3.840000pt;}
.ls27{letter-spacing:4.480000pt;}
.ls2a{letter-spacing:4.490667pt;}
.lsb{letter-spacing:5.120000pt;}
.ls42{letter-spacing:5.738667pt;}
.ls31{letter-spacing:5.760000pt;}
.ls11{letter-spacing:6.378667pt;}
.ls30{letter-spacing:6.400000pt;}
.ls24{letter-spacing:7.040000pt;}
.ls22{letter-spacing:7.680000pt;}
.ls25{letter-spacing:8.320000pt;}
.ls3e{letter-spacing:8.960000pt;}
.ls8{letter-spacing:9.600000pt;}
.ls38{letter-spacing:10.240000pt;}
.ls32{letter-spacing:10.880000pt;}
.ls33{letter-spacing:12.160000pt;}
.ls13{letter-spacing:12.800000pt;}
.ls34{letter-spacing:13.440000pt;}
.ls2b{letter-spacing:14.080000pt;}
.ls2e{letter-spacing:14.698667pt;}
.ls15{letter-spacing:14.720000pt;}
.ls23{letter-spacing:15.360000pt;}
.ls6{letter-spacing:16.000000pt;}
.ls2c{letter-spacing:16.618667pt;}
.ls1{letter-spacing:16.640000pt;}
.ls29{letter-spacing:17.280000pt;}
.ls21{letter-spacing:17.898667pt;}
.ls2{letter-spacing:17.920000pt;}
.ls3b{letter-spacing:18.560000pt;}
.ls28{letter-spacing:19.200000pt;}
.ls3c{letter-spacing:19.242667pt;}
.lsf{letter-spacing:19.840000pt;}
.ls1b{letter-spacing:21.120000pt;}
.ls20{letter-spacing:21.760000pt;}
.ls3a{letter-spacing:22.400000pt;}
.ls12{letter-spacing:23.680000pt;}
.ls35{letter-spacing:27.520000pt;}
.ls1e{letter-spacing:28.800000pt;}
.ls1f{letter-spacing:30.186667pt;}
.ls3d{letter-spacing:32.000000pt;}
.ls14{letter-spacing:32.778667pt;}
.ls1a{letter-spacing:42.240000pt;}
.ls18{letter-spacing:42.250667pt;}
.ls19{letter-spacing:42.400000pt;}
.ls37{letter-spacing:58.240000pt;}
.ls5{letter-spacing:93.440000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._28{margin-left:-4.853333pt;}
._15{margin-left:-1.885227pt;}
._1{margin-left:-0.973440pt;}
._4{width:0.925227pt;}
._a{width:1.869440pt;}
._8{width:3.136000pt;}
._9{width:4.376107pt;}
._14{width:5.312000pt;}
._16{width:6.336000pt;}
._e{width:8.000000pt;}
._6{width:8.896000pt;}
._17{width:9.920000pt;}
._11{width:11.370667pt;}
._10{width:12.352000pt;}
._1a{width:13.248000pt;}
._2{width:14.272000pt;}
._3{width:16.973440pt;}
._5{width:18.112000pt;}
._1c{width:19.584000pt;}
._f{width:21.048107pt;}
._c{width:21.952000pt;}
._d{width:22.896213pt;}
._1b{width:24.273280pt;}
._7{width:25.661653pt;}
._b{width:27.213440pt;}
._24{width:28.480000pt;}
._25{width:29.504000pt;}
._27{width:30.464000pt;}
._20{width:31.773227pt;}
._1f{width:33.024000pt;}
._29{width:34.560000pt;}
._2a{width:35.518080pt;}
._26{width:36.480000pt;}
._19{width:37.888000pt;}
._18{width:38.848000pt;}
._21{width:39.808000pt;}
._22{width:41.856000pt;}
._23{width:43.264000pt;}
._2c{width:44.416000pt;}
._2d{width:45.504000pt;}
._2e{width:46.720000pt;}
._2b{width:57.728000pt;}
._1d{width:59.328000pt;}
._1e{width:60.288000pt;}
._13{width:92.032000pt;}
._12{width:93.056000pt;}
._0{width:2371.605333pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:3.453333pt;}
.y1{bottom:51.040000pt;}
.y32{bottom:68.799316pt;}
.y66{bottom:97.632000pt;}
.y31{bottom:102.912000pt;}
.y71{bottom:112.032000pt;}
.y65{bottom:119.072000pt;}
.y30{bottom:121.312000pt;}
.y64{bottom:128.352000pt;}
.y70{bottom:130.432000pt;}
.y2f{bottom:139.706667pt;}
.y63{bottom:143.706667pt;}
.y6f{bottom:148.826667pt;}
.y2e{bottom:158.106667pt;}
.y62{bottom:159.066667pt;}
.y6e{bottom:167.226667pt;}
.y61{bottom:174.426667pt;}
.y2d{bottom:176.506667pt;}
.y6d{bottom:185.626667pt;}
.y2c{bottom:194.906667pt;}
.y60{bottom:195.706667pt;}
.y6c{bottom:204.026667pt;}
.y5f{bottom:205.626667pt;}
.y2b{bottom:213.306667pt;}
.y6b{bottom:222.426667pt;}
.y2a{bottom:231.546667pt;}
.y6a{bottom:240.826667pt;}
.y29{bottom:249.946667pt;}
.y97{bottom:257.306667pt;}
.y5e{bottom:259.226667pt;}
.y28{bottom:268.346667pt;}
.y96{bottom:275.706667pt;}
.y5d{bottom:277.626667pt;}
.y27{bottom:286.746667pt;}
.y95{bottom:294.146667pt;}
.y5c{bottom:296.066667pt;}
.y26{bottom:305.186667pt;}
.y94{bottom:312.546667pt;}
.y5b{bottom:314.466667pt;}
.y25{bottom:323.586667pt;}
.y93{bottom:330.946667pt;}
.y5a{bottom:332.866667pt;}
.y24{bottom:341.986667pt;}
.y92{bottom:349.346667pt;}
.y59{bottom:351.266667pt;}
.y23{bottom:360.386667pt;}
.y91{bottom:367.746667pt;}
.y58{bottom:369.666667pt;}
.y22{bottom:378.786667pt;}
.y90{bottom:386.146667pt;}
.y57{bottom:388.066667pt;}
.y21{bottom:397.186667pt;}
.y8f{bottom:404.546667pt;}
.y56{bottom:406.466667pt;}
.y20{bottom:415.586667pt;}
.y8e{bottom:422.946667pt;}
.y55{bottom:424.866667pt;}
.y1f{bottom:433.986667pt;}
.y8d{bottom:441.346667pt;}
.y54{bottom:443.266667pt;}
.y1e{bottom:452.386667pt;}
.y8c{bottom:459.746667pt;}
.y53{bottom:461.666667pt;}
.y1d{bottom:470.786667pt;}
.y8b{bottom:478.146667pt;}
.y52{bottom:480.066667pt;}
.y1c{bottom:489.186667pt;}
.y8a{bottom:496.546667pt;}
.y51{bottom:498.466667pt;}
.y1b{bottom:507.586667pt;}
.y89{bottom:514.946667pt;}
.y50{bottom:516.866667pt;}
.y1a{bottom:525.986667pt;}
.y88{bottom:533.373333pt;}
.y4f{bottom:535.293333pt;}
.y19{bottom:544.413333pt;}
.y87{bottom:551.773333pt;}
.y74{bottom:553.213333pt;}
.y4e{bottom:553.693333pt;}
.y18{bottom:562.813333pt;}
.y86{bottom:570.173333pt;}
.y4d{bottom:572.093333pt;}
.y17{bottom:581.213333pt;}
.y85{bottom:588.573333pt;}
.y4c{bottom:590.493333pt;}
.y16{bottom:599.613333pt;}
.y84{bottom:606.973333pt;}
.y4b{bottom:608.893333pt;}
.y15{bottom:618.013333pt;}
.y4a{bottom:627.293333pt;}
.y73{bottom:635.933333pt;}
.y14{bottom:636.413333pt;}
.y83{bottom:644.093333pt;}
.y49{bottom:645.693333pt;}
.y13{bottom:654.813333pt;}
.y72{bottom:663.933333pt;}
.y48{bottom:664.093333pt;}
.y12{bottom:673.213333pt;}
.y82{bottom:681.053333pt;}
.y47{bottom:682.493333pt;}
.y11{bottom:691.613333pt;}
.y81{bottom:699.453333pt;}
.y46{bottom:700.893333pt;}
.y10{bottom:710.013333pt;}
.y69{bottom:719.293333pt;}
.y45{bottom:727.933333pt;}
.yf{bottom:728.413333pt;}
.y80{bottom:736.573333pt;}
.y68{bottom:737.693333pt;}
.ye{bottom:746.813333pt;}
.y7f{bottom:754.973333pt;}
.y44{bottom:755.933333pt;}
.y67{bottom:756.093333pt;}
.yd{bottom:765.213333pt;}
.y7e{bottom:773.413333pt;}
.y43{bottom:774.533333pt;}
.yc{bottom:783.653333pt;}
.y7d{bottom:791.813333pt;}
.y42{bottom:792.933333pt;}
.yb{bottom:802.053333pt;}
.y7c{bottom:810.213333pt;}
.y41{bottom:811.333333pt;}
.ya{bottom:820.453333pt;}
.y40{bottom:829.733333pt;}
.y9{bottom:838.853333pt;}
.y7b{bottom:847.333333pt;}
.y3f{bottom:848.133333pt;}
.y8{bottom:857.253333pt;}
.y3e{bottom:866.533333pt;}
.y7{bottom:875.653333pt;}
.y7a{bottom:884.293333pt;}
.y3d{bottom:884.933333pt;}
.y6{bottom:894.053333pt;}
.y79{bottom:902.693333pt;}
.y3c{bottom:903.333333pt;}
.y5{bottom:921.573333pt;}
.y3b{bottom:921.733333pt;}
.y78{bottom:939.813333pt;}
.y3a{bottom:940.133333pt;}
.y4{bottom:950.853333pt;}
.y77{bottom:958.213333pt;}
.y39{bottom:958.533333pt;}
.y76{bottom:976.613333pt;}
.y38{bottom:976.933333pt;}
.y3{bottom:980.933333pt;}
.y37{bottom:995.333333pt;}
.y2{bottom:1010.720000pt;}
.y75{bottom:1013.440000pt;}
.y36{bottom:1013.760000pt;}
.y35{bottom:1014.160000pt;}
.y34{bottom:1060.400000pt;}
.h6{height:17.600093pt;}
.hb{height:33.918750pt;}
.h9{height:39.030469pt;}
.hc{height:46.609688pt;}
.hd{height:52.134375pt;}
.h5{height:56.156250pt;}
.h8{height:62.781250pt;}
.h2{height:62.812500pt;}
.h7{height:64.437500pt;}
.h4{height:64.500000pt;}
.ha{height:71.524375pt;}
.h3{height:73.454062pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.432000pt;}
.x3{left:141.626667pt;}
.x5{left:299.280000pt;}
.x2{left:326.786667pt;}
.x4{left:392.880005pt;}
}




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