
    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_673b7099fdaaf3bc8ceb89cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_7fa03df2dde6fbd4a004b170.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_970877d50b7e404992df37f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_331867385758fc76b9ae6923.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_ec4531f6964a9c1905f21be8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_c30f0932458e2748a610b4c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_b52ecea915bdcf13adc23031.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_ad1fd190eb9bc4aecac83416.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_3c670a9e968bc107984bae48.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.230000;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_f056af132c81bfaf175a5839.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.897000;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_54fb868165ef9fbb9d01a2fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.605000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls31{letter-spacing:-1.683000px;}
.ls30{letter-spacing:-1.632000px;}
.ls32{letter-spacing:-0.663000px;}
.ls19{letter-spacing:-0.480000px;}
.ls49{letter-spacing:-0.459000px;}
.ls1b{letter-spacing:-0.420000px;}
.ls4a{letter-spacing:-0.408000px;}
.ls4b{letter-spacing:-0.306000px;}
.ls1a{letter-spacing:-0.300000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls2c{letter-spacing:-0.180000px;}
.ls4c{letter-spacing:-0.153000px;}
.ls2f{letter-spacing:-0.120000px;}
.ls2d{letter-spacing:-0.060000px;}
.ls18{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls22{letter-spacing:0.060000px;}
.ls43{letter-spacing:0.102000px;}
.ls29{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.178791px;}
.ls2a{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.240000px;}
.ls37{letter-spacing:0.245950px;}
.ls17{letter-spacing:0.255000px;}
.ls3f{letter-spacing:0.264000px;}
.ls3c{letter-spacing:0.269993px;}
.lsd{letter-spacing:0.270000px;}
.ls36{letter-spacing:0.276000px;}
.ls45{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.305978px;}
.ls38{letter-spacing:0.305979px;}
.ls13{letter-spacing:0.305983px;}
.ls12{letter-spacing:0.305992px;}
.ls21{letter-spacing:0.318000px;}
.ls3d{letter-spacing:0.357000px;}
.ls28{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.390000px;}
.lsb{letter-spacing:0.420000px;}
.ls23{letter-spacing:0.450000px;}
.ls3e{letter-spacing:0.459000px;}
.ls10{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.540000px;}
.ls42{letter-spacing:0.561000px;}
.ls3a{letter-spacing:0.570000px;}
.ls5{letter-spacing:0.600000px;}
.ls48{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.660000px;}
.ls1e{letter-spacing:0.720000px;}
.ls44{letter-spacing:0.739500px;}
.ls20{letter-spacing:0.780000px;}
.ls8{letter-spacing:0.840000px;}
.ls39{letter-spacing:0.870000px;}
.lsa{letter-spacing:0.900000px;}
.ls46{letter-spacing:0.918000px;}
.ls25{letter-spacing:0.930000px;}
.ls1f{letter-spacing:0.960000px;}
.ls14{letter-spacing:1.020000px;}
.ls24{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.140000px;}
.ls1c{letter-spacing:1.200000px;}
.ls27{letter-spacing:1.260000px;}
.lsc{letter-spacing:1.290000px;}
.ls11{letter-spacing:1.320000px;}
.ls40{letter-spacing:1.326000px;}
.ls9{letter-spacing:1.380000px;}
.ls26{letter-spacing:1.440000px;}
.ls34{letter-spacing:1.470000px;}
.ls7{letter-spacing:1.560000px;}
.lse{letter-spacing:1.590000px;}
.ls15{letter-spacing:1.680000px;}
.ls41{letter-spacing:1.734000px;}
.ls35{letter-spacing:1.860000px;}
.ls47{letter-spacing:1.887000px;}
.ls3b{letter-spacing:2.280000px;}
.ls33{letter-spacing:2.460000px;}
.ls0{letter-spacing:3.990000px;}
.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;}
}
.ws2{word-spacing:-18.432000px;}
.ws71{word-spacing:-17.280000px;}
.ws53{word-spacing:-16.320000px;}
.ws50{word-spacing:-16.140000px;}
.ws4f{word-spacing:-15.900000px;}
.ws2f{word-spacing:-15.780000px;}
.ws30{word-spacing:-15.660000px;}
.ws6{word-spacing:-15.540000px;}
.ws31{word-spacing:-15.420000px;}
.ws9{word-spacing:-15.300000px;}
.ws2e{word-spacing:-15.060000px;}
.ws51{word-spacing:-15.000000px;}
.ws73{word-spacing:-14.832000px;}
.ws52{word-spacing:-14.820000px;}
.wsa{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.544000px;}
.wsb{word-spacing:-13.005000px;}
.wsd{word-spacing:-12.750000px;}
.ws2d{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws7{word-spacing:-11.520000px;}
.ws4b{word-spacing:-11.118000px;}
.ws4c{word-spacing:-11.067000px;}
.ws72{word-spacing:-10.149000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.wsc{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws4e{word-spacing:-6.375000px;}
.ws78{word-spacing:-2.280000px;}
.wse{word-spacing:-1.890000px;}
.ws1e{word-spacing:-1.560000px;}
.ws19{word-spacing:-1.500000px;}
.ws5e{word-spacing:-1.380000px;}
.ws86{word-spacing:-1.377000px;}
.ws22{word-spacing:-1.320000px;}
.ws83{word-spacing:-1.275000px;}
.ws32{word-spacing:-1.260000px;}
.ws46{word-spacing:-1.200000px;}
.ws45{word-spacing:-0.900000px;}
.ws15{word-spacing:-0.720000px;}
.ws8b{word-spacing:-0.663000px;}
.ws7d{word-spacing:-0.660000px;}
.ws2b{word-spacing:-0.612000px;}
.ws10{word-spacing:-0.570000px;}
.ws12{word-spacing:-0.540000px;}
.ws59{word-spacing:-0.360000px;}
.ws2c{word-spacing:-0.306000px;}
.ws20{word-spacing:-0.300000px;}
.ws89{word-spacing:-0.255000px;}
.ws14{word-spacing:-0.240000px;}
.ws3b{word-spacing:-0.180000px;}
.ws23{word-spacing:-0.120000px;}
.ws69{word-spacing:-0.060000px;}
.wsf{word-spacing:0.000000px;}
.ws33{word-spacing:0.060000px;}
.ws7b{word-spacing:0.120000px;}
.ws1a{word-spacing:0.180000px;}
.ws6f{word-spacing:0.204000px;}
.ws6b{word-spacing:0.300000px;}
.ws8a{word-spacing:0.357000px;}
.ws13{word-spacing:0.420000px;}
.ws84{word-spacing:0.459000px;}
.ws29{word-spacing:0.660000px;}
.ws36{word-spacing:0.720000px;}
.ws7a{word-spacing:0.780000px;}
.ws43{word-spacing:0.840000px;}
.ws68{word-spacing:0.867000px;}
.ws82{word-spacing:0.969000px;}
.ws5d{word-spacing:1.020000px;}
.ws25{word-spacing:1.080000px;}
.ws8c{word-spacing:1.224000px;}
.ws7c{word-spacing:1.275000px;}
.ws27{word-spacing:1.440000px;}
.ws70{word-spacing:1.479000px;}
.ws11{word-spacing:1.500000px;}
.ws3a{word-spacing:1.560000px;}
.ws47{word-spacing:1.620000px;}
.ws5c{word-spacing:1.680000px;}
.ws85{word-spacing:1.734000px;}
.ws17{word-spacing:1.800000px;}
.ws1f{word-spacing:1.860000px;}
.ws1d{word-spacing:1.980000px;}
.ws74{word-spacing:2.100000px;}
.ws79{word-spacing:2.160000px;}
.ws55{word-spacing:2.220000px;}
.ws1b{word-spacing:2.280000px;}
.ws75{word-spacing:2.340000px;}
.ws3f{word-spacing:2.400000px;}
.ws39{word-spacing:2.520000px;}
.ws3d{word-spacing:2.580000px;}
.ws49{word-spacing:2.640000px;}
.ws87{word-spacing:2.652000px;}
.ws42{word-spacing:2.700000px;}
.ws26{word-spacing:2.820000px;}
.ws48{word-spacing:2.880000px;}
.ws44{word-spacing:2.940000px;}
.ws4a{word-spacing:3.060000px;}
.ws3e{word-spacing:3.120000px;}
.ws6a{word-spacing:3.300000px;}
.ws5a{word-spacing:3.360000px;}
.ws35{word-spacing:3.540000px;}
.ws34{word-spacing:3.720000px;}
.ws67{word-spacing:3.927000px;}
.ws5b{word-spacing:3.960000px;}
.ws41{word-spacing:4.020000px;}
.ws1c{word-spacing:4.200000px;}
.ws24{word-spacing:4.320000px;}
.ws76{word-spacing:4.500000px;}
.ws3c{word-spacing:4.560000px;}
.ws18{word-spacing:4.620000px;}
.ws5f{word-spacing:4.845000px;}
.ws40{word-spacing:4.860000px;}
.ws57{word-spacing:5.040000px;}
.ws56{word-spacing:5.100000px;}
.ws80{word-spacing:5.253000px;}
.ws7e{word-spacing:5.304000px;}
.ws62{word-spacing:5.406000px;}
.ws38{word-spacing:5.520000px;}
.ws6c{word-spacing:5.559000px;}
.ws63{word-spacing:5.610000px;}
.ws21{word-spacing:5.640000px;}
.ws16{word-spacing:5.700000px;}
.ws28{word-spacing:6.060000px;}
.ws6d{word-spacing:6.222000px;}
.ws37{word-spacing:6.240000px;}
.ws64{word-spacing:6.732000px;}
.ws81{word-spacing:6.834000px;}
.ws7f{word-spacing:6.885000px;}
.ws66{word-spacing:7.089000px;}
.ws58{word-spacing:7.140000px;}
.ws88{word-spacing:7.446000px;}
.ws6e{word-spacing:7.497000px;}
.ws61{word-spacing:8.466000px;}
.ws60{word-spacing:8.568000px;}
.ws65{word-spacing:8.721000px;}
.ws77{word-spacing:9.300000px;}
.ws54{word-spacing:10.200000px;}
.ws2a{word-spacing:72.267000px;}
.ws4d{word-spacing:154.632000px;}
._d{margin-left:-2959.376944px;}
._8{margin-left:-96.900000px;}
._5{margin-left:-16.575000px;}
._21{margin-left:-14.572842px;}
._a{margin-left:-8.392828px;}
._b{margin-left:-6.288000px;}
._1{margin-left:-4.649400px;}
._4{margin-left:-3.180000px;}
._0{margin-left:-1.632000px;}
._2{width:1.516800px;}
._c{width:3.072000px;}
._20{width:5.279994px;}
._27{width:7.854000px;}
._25{width:8.874000px;}
._22{width:10.812000px;}
._23{width:11.883000px;}
._e{width:15.873900px;}
._6{width:18.360000px;}
._28{width:26.469000px;}
._26{width:27.693000px;}
._29{width:29.376000px;}
._24{width:30.460200px;}
._f{width:38.709000px;}
._3{width:39.904786px;}
._7{width:54.621000px;}
._1b{width:88.332000px;}
._11{width:97.461000px;}
._1d{width:98.736000px;}
._17{width:105.315000px;}
._16{width:106.794000px;}
._13{width:133.212000px;}
._1e{width:135.864000px;}
._10{width:146.267994px;}
._1c{width:164.831994px;}
._12{width:184.587000px;}
._18{width:241.331994px;}
._1f{width:246.227979px;}
._15{width:281.469000px;}
._1a{width:298.961979px;}
._14{width:340.934979px;}
._19{width:390.966000px;}
._9{width:2093.601084px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.yb6{bottom:112.894035px;}
.ya8{bottom:112.894048px;}
.y9f{bottom:112.906807px;}
.y9c{bottom:112.932300px;}
.y41{bottom:112.938300px;}
.yf6{bottom:114.564297px;}
.ye3{bottom:114.874947px;}
.y9a{bottom:131.040298px;}
.y40{bottom:133.032303px;}
.yf5{bottom:133.314297px;}
.ye2{bottom:133.624947px;}
.y2d{bottom:141.211349px;}
.y99{bottom:149.790298px;}
.y3f{bottom:150.491553px;}
.yf4{bottom:152.064297px;}
.ye1{bottom:152.374947px;}
.y2c{bottom:159.961349px;}
.y3e{bottom:165.485553px;}
.y98{bottom:168.540298px;}
.yf3{bottom:170.814297px;}
.ye0{bottom:171.124947px;}
.y2b{bottom:178.711349px;}
.y3d{bottom:185.579556px;}
.y97{bottom:187.290298px;}
.yf2{bottom:189.564297px;}
.ydf{bottom:189.874947px;}
.y6a{bottom:191.682289px;}
.y2a{bottom:197.461349px;}
.y3c{bottom:203.032794px;}
.y96{bottom:206.040298px;}
.yde{bottom:208.624947px;}
.y69{bottom:210.432289px;}
.y29{bottom:216.211349px;}
.y3b{bottom:223.126808px;}
.y95{bottom:224.790298px;}
.ydd{bottom:227.374947px;}
.y68{bottom:229.182289px;}
.y28{bottom:234.961349px;}
.y3a{bottom:240.580059px;}
.y94{bottom:243.540298px;}
.ydc{bottom:246.124947px;}
.y67{bottom:247.932289px;}
.y27{bottom:253.711349px;}
.y39{bottom:260.674049px;}
.y93{bottom:262.290298px;}
.ydb{bottom:264.874947px;}
.y26{bottom:272.461349px;}
.y38{bottom:278.133300px;}
.yaa{bottom:280.798797px;}
.y92{bottom:281.040298px;}
.y66{bottom:285.432289px;}
.yb7{bottom:289.800284px;}
.yab{bottom:289.800294px;}
.ya9{bottom:289.800297px;}
.ya0{bottom:289.813056px;}
.y25{bottom:291.211349px;}
.y37{bottom:293.127300px;}
.y91{bottom:299.790298px;}
.yda{bottom:302.374947px;}
.y24{bottom:309.961349px;}
.y36{bottom:313.221291px;}
.y90{bottom:318.540298px;}
.y23{bottom:328.711349px;}
.y65{bottom:330.673782px;}
.y35{bottom:330.680541px;}
.y8f{bottom:337.290298px;}
.y34{bottom:345.674541px;}
.y22{bottom:347.461349px;}
.y64{bottom:349.423782px;}
.y8e{bottom:356.040298px;}
.yd9{bottom:358.624969px;}
.y33{bottom:365.768555px;}
.y21{bottom:366.211349px;}
.y63{bottom:368.173782px;}
.y8d{bottom:374.790298px;}
.yd8{bottom:377.374969px;}
.y32{bottom:383.227805px;}
.y20{bottom:384.961349px;}
.y62{bottom:386.923782px;}
.y10f{bottom:388.678937px;}
.y8c{bottom:393.540298px;}
.yd7{bottom:396.124969px;}
.yb8{bottom:396.211780px;}
.yac{bottom:396.211790px;}
.ya1{bottom:396.224552px;}
.ya3{bottom:396.224553px;}
.y31{bottom:398.221805px;}
.y10e{bottom:403.672937px;}
.y1f{bottom:403.711349px;}
.yb9{bottom:405.213281px;}
.yad{bottom:405.213290px;}
.ya2{bottom:405.226053px;}
.y61{bottom:405.673782px;}
.y8b{bottom:412.290298px;}
.yd6{bottom:414.874969px;}
.y30{bottom:418.315796px;}
.y10d{bottom:418.666937px;}
.y133{bottom:422.282688px;}
.y1e{bottom:422.461349px;}
.y60{bottom:424.423782px;}
.y8a{bottom:431.040298px;}
.yd5{bottom:433.624969px;}
.y10c{bottom:433.660937px;}
.y132{bottom:437.276688px;}
.y1d{bottom:441.211349px;}
.y5f{bottom:443.173782px;}
.y2f{bottom:443.316287px;}
.y10b{bottom:448.654937px;}
.y89{bottom:449.790298px;}
.yd4{bottom:452.374969px;}
.y2e{bottom:458.310287px;}
.y156{bottom:458.767162px;}
.y1c{bottom:459.961349px;}
.y5e{bottom:461.923782px;}
.y10a{bottom:463.648937px;}
.y88{bottom:468.540298px;}
.y131{bottom:470.985260px;}
.yd3{bottom:471.124969px;}
.y155{bottom:473.761162px;}
.y109{bottom:478.642937px;}
.y1b{bottom:478.711349px;}
.y5d{bottom:480.673782px;}
.y87{bottom:487.290298px;}
.y154{bottom:488.755162px;}
.y130{bottom:489.735260px;}
.yd2{bottom:489.874969px;}
.y108{bottom:493.636937px;}
.y1a{bottom:497.461349px;}
.y5c{bottom:499.423782px;}
.y153{bottom:503.749162px;}
.y86{bottom:506.040298px;}
.y12f{bottom:508.485260px;}
.yd1{bottom:508.624969px;}
.y107{bottom:508.630937px;}
.yba{bottom:510.171281px;}
.yae{bottom:510.171290px;}
.ya4{bottom:510.184053px;}
.y18{bottom:516.211349px;}
.y5b{bottom:518.173782px;}
.y152{bottom:518.743162px;}
.yaf{bottom:519.172790px;}
.y106{bottom:523.624937px;}
.y85{bottom:524.790298px;}
.y12e{bottom:527.235260px;}
.yd0{bottom:527.374969px;}
.y151{bottom:533.737162px;}
.y17{bottom:534.961349px;}
.y5a{bottom:536.923782px;}
.y105{bottom:538.618937px;}
.y12d{bottom:545.985260px;}
.ycf{bottom:546.124969px;}
.y150{bottom:548.731162px;}
.y104{bottom:553.612937px;}
.y16{bottom:553.711349px;}
.y59{bottom:555.673782px;}
.y84{bottom:562.290298px;}
.y14f{bottom:563.725162px;}
.y12c{bottom:564.735260px;}
.yce{bottom:564.874969px;}
.y103{bottom:568.606937px;}
.y19{bottom:572.461349px;}
.y58{bottom:574.423782px;}
.y14e{bottom:578.719162px;}
.y12b{bottom:583.485260px;}
.y102{bottom:583.600937px;}
.ycd{bottom:583.624969px;}
.y15{bottom:591.211349px;}
.y57{bottom:593.173782px;}
.y14d{bottom:593.713162px;}
.y101{bottom:598.594937px;}
.y12a{bottom:602.235260px;}
.ycc{bottom:602.374969px;}
.y14c{bottom:608.707162px;}
.y56{bottom:611.923782px;}
.y100{bottom:613.588937px;}
.y83{bottom:618.540344px;}
.y129{bottom:620.985260px;}
.ycb{bottom:621.124969px;}
.yb0{bottom:623.174535px;}
.y9d{bottom:623.187298px;}
.y14b{bottom:623.701162px;}
.yff{bottom:628.582937px;}
.y55{bottom:630.673782px;}
.y82{bottom:637.290344px;}
.y14a{bottom:638.695162px;}
.y128{bottom:639.735260px;}
.yca{bottom:639.874969px;}
.yfe{bottom:643.576937px;}
.y14{bottom:647.461395px;}
.y54{bottom:649.423782px;}
.y149{bottom:653.689162px;}
.y81{bottom:656.040344px;}
.y127{bottom:658.485260px;}
.yfd{bottom:658.570937px;}
.yc9{bottom:658.624969px;}
.y53{bottom:668.173782px;}
.y148{bottom:668.683162px;}
.y80{bottom:674.790344px;}
.y126{bottom:677.235260px;}
.yc8{bottom:677.374969px;}
.y9e{bottom:680.116048px;}
.y147{bottom:683.677162px;}
.y13{bottom:684.961395px;}
.y52{bottom:686.923782px;}
.y7f{bottom:693.540344px;}
.y125{bottom:695.985260px;}
.yc7{bottom:696.124969px;}
.y146{bottom:698.671162px;}
.y12{bottom:703.711395px;}
.y51{bottom:705.673782px;}
.y7e{bottom:712.290344px;}
.y145{bottom:713.665162px;}
.y124{bottom:714.735260px;}
.yc6{bottom:714.874969px;}
.yf9{bottom:715.282935px;}
.yfc{bottom:715.295685px;}
.y11{bottom:722.461395px;}
.y50{bottom:724.423782px;}
.y144{bottom:728.659162px;}
.yf8{bottom:730.276935px;}
.yfb{bottom:730.289685px;}
.y7d{bottom:731.040344px;}
.y123{bottom:733.485260px;}
.yc5{bottom:733.624969px;}
.y10{bottom:741.211395px;}
.y4f{bottom:743.173782px;}
.y143{bottom:743.653162px;}
.yf7{bottom:745.270935px;}
.yfa{bottom:745.283685px;}
.y7c{bottom:749.790344px;}
.y122{bottom:752.235260px;}
.yc4{bottom:752.374969px;}
.y142{bottom:758.647162px;}
.yf{bottom:759.961395px;}
.yb1{bottom:767.275035px;}
.y7b{bottom:768.540344px;}
.y121{bottom:770.985260px;}
.yc3{bottom:771.124969px;}
.y141{bottom:773.641162px;}
.ye{bottom:778.711395px;}
.y4e{bottom:780.673828px;}
.y7a{bottom:787.290344px;}
.y140{bottom:788.635162px;}
.y120{bottom:789.735260px;}
.yc2{bottom:789.874969px;}
.yd{bottom:797.461395px;}
.y79{bottom:806.040344px;}
.y11f{bottom:808.485260px;}
.yc1{bottom:808.624969px;}
.yc{bottom:816.211395px;}
.y13f{bottom:822.385162px;}
.y78{bottom:824.790344px;}
.y4d{bottom:825.915344px;}
.y11e{bottom:827.235260px;}
.yc0{bottom:827.374969px;}
.y77{bottom:843.540344px;}
.y4c{bottom:844.665344px;}
.y11d{bottom:845.985260px;}
.ybf{bottom:846.124969px;}
.yb{bottom:860.394153px;}
.y76{bottom:862.290344px;}
.y4b{bottom:863.415344px;}
.y11c{bottom:864.735260px;}
.ybe{bottom:864.874969px;}
.yb2{bottom:871.837785px;}
.ya{bottom:875.388153px;}
.y13e{bottom:878.678592px;}
.ybb{bottom:880.826526px;}
.yb3{bottom:880.839285px;}
.ya5{bottom:880.839298px;}
.y75{bottom:881.040344px;}
.y4a{bottom:882.165344px;}
.y11b{bottom:883.485260px;}
.y13d{bottom:893.672592px;}
.y74{bottom:899.790344px;}
.y49{bottom:900.915344px;}
.y11a{bottom:902.235260px;}
.y13c{bottom:908.666592px;}
.yf0{bottom:910.174844px;}
.y9{bottom:917.988190px;}
.y73{bottom:918.540344px;}
.y48{bottom:919.665344px;}
.y119{bottom:920.985260px;}
.y13b{bottom:923.660592px;}
.yef{bottom:925.168844px;}
.y8{bottom:936.738190px;}
.y72{bottom:937.290344px;}
.y47{bottom:938.415344px;}
.y13a{bottom:938.654592px;}
.y118{bottom:939.735260px;}
.yee{bottom:940.162844px;}
.y139{bottom:953.648592px;}
.yed{bottom:955.156844px;}
.y71{bottom:956.040344px;}
.y117{bottom:958.485260px;}
.yec{bottom:970.150844px;}
.y70{bottom:974.790344px;}
.y46{bottom:975.915344px;}
.y116{bottom:977.235260px;}
.y7{bottom:981.424622px;}
.ybc{bottom:984.688026px;}
.yb4{bottom:984.700785px;}
.ya6{bottom:984.700798px;}
.yeb{bottom:985.144844px;}
.y6f{bottom:993.540344px;}
.ybd{bottom:993.689526px;}
.yb5{bottom:993.702285px;}
.ya7{bottom:993.702298px;}
.y138{bottom:994.843842px;}
.y115{bottom:995.985260px;}
.yea{bottom:1000.138844px;}
.y6{bottom:1008.424622px;}
.y137{bottom:1009.837842px;}
.y6e{bottom:1012.290344px;}
.y45{bottom:1013.415344px;}
.y114{bottom:1014.735260px;}
.ye9{bottom:1015.132844px;}
.ye8{bottom:1030.126844px;}
.y6d{bottom:1031.040344px;}
.y113{bottom:1033.485260px;}
.y136{bottom:1039.800342px;}
.ye7{bottom:1045.120844px;}
.y112{bottom:1052.235260px;}
.y135{bottom:1054.794342px;}
.ye6{bottom:1060.114844px;}
.y6c{bottom:1068.546344px;}
.y44{bottom:1069.665344px;}
.y111{bottom:1070.985260px;}
.ye5{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y6b{bottom:1087.290344px;}
.y43{bottom:1088.415344px;}
.y134{bottom:1088.544342px;}
.y110{bottom:1089.735260px;}
.yf1{bottom:1089.915344px;}
.ye4{bottom:1090.102844px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y42{bottom:1127.482361px;}
.y9b{bottom:1127.482544px;}
.hf{height:25.204199px;}
.h13{height:26.688000px;}
.he{height:36.006000px;}
.hd{height:36.855469px;}
.h2{height:42.048000px;}
.h9{height:42.360000px;}
.h4{height:44.676000px;}
.h11{height:49.113000px;}
.h12{height:52.173000px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.hb{height:57.780000px;}
.h8{height:59.340000px;}
.ha{height:61.380000px;}
.h10{height:64.680000px;}
.h7{height:64.824000px;}
.hc{height:71.208000px;}
.h6{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.545414px;}
.x7{left:97.796100px;}
.xb{left:248.747543px;}
.xd{left:274.238091px;}
.xe{left:289.232091px;}
.xf{left:304.226091px;}
.x10{left:332.314341px;}
.x11{left:347.308341px;}
.x12{left:362.302341px;}
.x13{left:377.283591px;}
.x14{left:392.277591px;}
.x15{left:407.271591px;}
.x16{left:422.265591px;}
.x24{left:436.700867px;}
.x17{left:440.944341px;}
.x18{left:455.938341px;}
.x5{left:459.215389px;}
.x19{left:470.932341px;}
.x6{left:476.210389px;}
.x25{left:484.725290px;}
.x1a{left:485.926341px;}
.x1b{left:500.907591px;}
.x1c{left:515.901591px;}
.x1d{left:530.895591px;}
.x1e{left:545.889591px;}
.x1f{left:564.606597px;}
.x20{left:579.600597px;}
.x21{left:594.594597px;}
.x22{left:609.588597px;}
.x23{left:624.557097px;}
.xc{left:652.986293px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xa{left:792.153442px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls31{letter-spacing:-1.496000pt;}
.ls30{letter-spacing:-1.450667pt;}
.ls32{letter-spacing:-0.589333pt;}
.ls19{letter-spacing:-0.426667pt;}
.ls49{letter-spacing:-0.408000pt;}
.ls1b{letter-spacing:-0.373333pt;}
.ls4a{letter-spacing:-0.362667pt;}
.ls4b{letter-spacing:-0.272000pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls2c{letter-spacing:-0.160000pt;}
.ls4c{letter-spacing:-0.136000pt;}
.ls2f{letter-spacing:-0.106667pt;}
.ls2d{letter-spacing:-0.053333pt;}
.ls18{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls22{letter-spacing:0.053333pt;}
.ls43{letter-spacing:0.090667pt;}
.ls29{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.158926pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls37{letter-spacing:0.218622pt;}
.ls17{letter-spacing:0.226667pt;}
.ls3f{letter-spacing:0.234667pt;}
.ls3c{letter-spacing:0.239994pt;}
.lsd{letter-spacing:0.240000pt;}
.ls36{letter-spacing:0.245333pt;}
.ls45{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.271980pt;}
.ls38{letter-spacing:0.271981pt;}
.ls13{letter-spacing:0.271985pt;}
.ls12{letter-spacing:0.271992pt;}
.ls21{letter-spacing:0.282667pt;}
.ls3d{letter-spacing:0.317333pt;}
.ls28{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.346667pt;}
.lsb{letter-spacing:0.373333pt;}
.ls23{letter-spacing:0.400000pt;}
.ls3e{letter-spacing:0.408000pt;}
.ls10{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.480000pt;}
.ls42{letter-spacing:0.498667pt;}
.ls3a{letter-spacing:0.506667pt;}
.ls5{letter-spacing:0.533333pt;}
.ls48{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.586667pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls44{letter-spacing:0.657333pt;}
.ls20{letter-spacing:0.693333pt;}
.ls8{letter-spacing:0.746667pt;}
.ls39{letter-spacing:0.773333pt;}
.lsa{letter-spacing:0.800000pt;}
.ls46{letter-spacing:0.816000pt;}
.ls25{letter-spacing:0.826667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls14{letter-spacing:0.906667pt;}
.ls24{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.013333pt;}
.ls1c{letter-spacing:1.066667pt;}
.ls27{letter-spacing:1.120000pt;}
.lsc{letter-spacing:1.146667pt;}
.ls11{letter-spacing:1.173333pt;}
.ls40{letter-spacing:1.178667pt;}
.ls9{letter-spacing:1.226667pt;}
.ls26{letter-spacing:1.280000pt;}
.ls34{letter-spacing:1.306667pt;}
.ls7{letter-spacing:1.386667pt;}
.lse{letter-spacing:1.413333pt;}
.ls15{letter-spacing:1.493333pt;}
.ls41{letter-spacing:1.541333pt;}
.ls35{letter-spacing:1.653333pt;}
.ls47{letter-spacing:1.677333pt;}
.ls3b{letter-spacing:2.026667pt;}
.ls33{letter-spacing:2.186667pt;}
.ls0{letter-spacing:3.546667pt;}
.ws2{word-spacing:-16.384000pt;}
.ws71{word-spacing:-15.360000pt;}
.ws53{word-spacing:-14.506667pt;}
.ws50{word-spacing:-14.346667pt;}
.ws4f{word-spacing:-14.133333pt;}
.ws2f{word-spacing:-14.026667pt;}
.ws30{word-spacing:-13.920000pt;}
.ws6{word-spacing:-13.813333pt;}
.ws31{word-spacing:-13.706667pt;}
.ws9{word-spacing:-13.600000pt;}
.ws2e{word-spacing:-13.386667pt;}
.ws51{word-spacing:-13.333333pt;}
.ws73{word-spacing:-13.184000pt;}
.ws52{word-spacing:-13.173333pt;}
.wsa{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.928000pt;}
.wsb{word-spacing:-11.560000pt;}
.wsd{word-spacing:-11.333333pt;}
.ws2d{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws7{word-spacing:-10.240000pt;}
.ws4b{word-spacing:-9.882667pt;}
.ws4c{word-spacing:-9.837333pt;}
.ws72{word-spacing:-9.021333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.wsc{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws4e{word-spacing:-5.666667pt;}
.ws78{word-spacing:-2.026667pt;}
.wse{word-spacing:-1.680000pt;}
.ws1e{word-spacing:-1.386667pt;}
.ws19{word-spacing:-1.333333pt;}
.ws5e{word-spacing:-1.226667pt;}
.ws86{word-spacing:-1.224000pt;}
.ws22{word-spacing:-1.173333pt;}
.ws83{word-spacing:-1.133333pt;}
.ws32{word-spacing:-1.120000pt;}
.ws46{word-spacing:-1.066667pt;}
.ws45{word-spacing:-0.800000pt;}
.ws15{word-spacing:-0.640000pt;}
.ws8b{word-spacing:-0.589333pt;}
.ws7d{word-spacing:-0.586667pt;}
.ws2b{word-spacing:-0.544000pt;}
.ws10{word-spacing:-0.506667pt;}
.ws12{word-spacing:-0.480000pt;}
.ws59{word-spacing:-0.320000pt;}
.ws2c{word-spacing:-0.272000pt;}
.ws20{word-spacing:-0.266667pt;}
.ws89{word-spacing:-0.226667pt;}
.ws14{word-spacing:-0.213333pt;}
.ws3b{word-spacing:-0.160000pt;}
.ws23{word-spacing:-0.106667pt;}
.ws69{word-spacing:-0.053333pt;}
.wsf{word-spacing:0.000000pt;}
.ws33{word-spacing:0.053333pt;}
.ws7b{word-spacing:0.106667pt;}
.ws1a{word-spacing:0.160000pt;}
.ws6f{word-spacing:0.181333pt;}
.ws6b{word-spacing:0.266667pt;}
.ws8a{word-spacing:0.317333pt;}
.ws13{word-spacing:0.373333pt;}
.ws84{word-spacing:0.408000pt;}
.ws29{word-spacing:0.586667pt;}
.ws36{word-spacing:0.640000pt;}
.ws7a{word-spacing:0.693333pt;}
.ws43{word-spacing:0.746667pt;}
.ws68{word-spacing:0.770667pt;}
.ws82{word-spacing:0.861333pt;}
.ws5d{word-spacing:0.906667pt;}
.ws25{word-spacing:0.960000pt;}
.ws8c{word-spacing:1.088000pt;}
.ws7c{word-spacing:1.133333pt;}
.ws27{word-spacing:1.280000pt;}
.ws70{word-spacing:1.314667pt;}
.ws11{word-spacing:1.333333pt;}
.ws3a{word-spacing:1.386667pt;}
.ws47{word-spacing:1.440000pt;}
.ws5c{word-spacing:1.493333pt;}
.ws85{word-spacing:1.541333pt;}
.ws17{word-spacing:1.600000pt;}
.ws1f{word-spacing:1.653333pt;}
.ws1d{word-spacing:1.760000pt;}
.ws74{word-spacing:1.866667pt;}
.ws79{word-spacing:1.920000pt;}
.ws55{word-spacing:1.973333pt;}
.ws1b{word-spacing:2.026667pt;}
.ws75{word-spacing:2.080000pt;}
.ws3f{word-spacing:2.133333pt;}
.ws39{word-spacing:2.240000pt;}
.ws3d{word-spacing:2.293333pt;}
.ws49{word-spacing:2.346667pt;}
.ws87{word-spacing:2.357333pt;}
.ws42{word-spacing:2.400000pt;}
.ws26{word-spacing:2.506667pt;}
.ws48{word-spacing:2.560000pt;}
.ws44{word-spacing:2.613333pt;}
.ws4a{word-spacing:2.720000pt;}
.ws3e{word-spacing:2.773333pt;}
.ws6a{word-spacing:2.933333pt;}
.ws5a{word-spacing:2.986667pt;}
.ws35{word-spacing:3.146667pt;}
.ws34{word-spacing:3.306667pt;}
.ws67{word-spacing:3.490667pt;}
.ws5b{word-spacing:3.520000pt;}
.ws41{word-spacing:3.573333pt;}
.ws1c{word-spacing:3.733333pt;}
.ws24{word-spacing:3.840000pt;}
.ws76{word-spacing:4.000000pt;}
.ws3c{word-spacing:4.053333pt;}
.ws18{word-spacing:4.106667pt;}
.ws5f{word-spacing:4.306667pt;}
.ws40{word-spacing:4.320000pt;}
.ws57{word-spacing:4.480000pt;}
.ws56{word-spacing:4.533333pt;}
.ws80{word-spacing:4.669333pt;}
.ws7e{word-spacing:4.714667pt;}
.ws62{word-spacing:4.805333pt;}
.ws38{word-spacing:4.906667pt;}
.ws6c{word-spacing:4.941333pt;}
.ws63{word-spacing:4.986667pt;}
.ws21{word-spacing:5.013333pt;}
.ws16{word-spacing:5.066667pt;}
.ws28{word-spacing:5.386667pt;}
.ws6d{word-spacing:5.530667pt;}
.ws37{word-spacing:5.546667pt;}
.ws64{word-spacing:5.984000pt;}
.ws81{word-spacing:6.074667pt;}
.ws7f{word-spacing:6.120000pt;}
.ws66{word-spacing:6.301333pt;}
.ws58{word-spacing:6.346667pt;}
.ws88{word-spacing:6.618667pt;}
.ws6e{word-spacing:6.664000pt;}
.ws61{word-spacing:7.525333pt;}
.ws60{word-spacing:7.616000pt;}
.ws65{word-spacing:7.752000pt;}
.ws77{word-spacing:8.266667pt;}
.ws54{word-spacing:9.066667pt;}
.ws2a{word-spacing:64.237333pt;}
.ws4d{word-spacing:137.450667pt;}
._d{margin-left:-2630.557284pt;}
._8{margin-left:-86.133333pt;}
._5{margin-left:-14.733333pt;}
._21{margin-left:-12.953637pt;}
._a{margin-left:-7.460292pt;}
._b{margin-left:-5.589333pt;}
._1{margin-left:-4.132800pt;}
._4{margin-left:-2.826667pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.348267pt;}
._c{width:2.730667pt;}
._20{width:4.693328pt;}
._27{width:6.981333pt;}
._25{width:7.888000pt;}
._22{width:9.610667pt;}
._23{width:10.562667pt;}
._e{width:14.110133pt;}
._6{width:16.320000pt;}
._28{width:23.528000pt;}
._26{width:24.616000pt;}
._29{width:26.112000pt;}
._24{width:27.075733pt;}
._f{width:34.408000pt;}
._3{width:35.470921pt;}
._7{width:48.552000pt;}
._1b{width:78.517333pt;}
._11{width:86.632000pt;}
._1d{width:87.765333pt;}
._17{width:93.613333pt;}
._16{width:94.928000pt;}
._13{width:118.410667pt;}
._1e{width:120.768000pt;}
._10{width:130.015994pt;}
._1c{width:146.517328pt;}
._12{width:164.077333pt;}
._18{width:214.517328pt;}
._1f{width:218.869315pt;}
._15{width:250.194667pt;}
._1a{width:265.743981pt;}
._14{width:303.053315pt;}
._19{width:347.525333pt;}
._9{width:1860.978741pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.yb6{bottom:100.350253pt;}
.ya8{bottom:100.350265pt;}
.y9f{bottom:100.361606pt;}
.y9c{bottom:100.384267pt;}
.y41{bottom:100.389600pt;}
.yf6{bottom:101.834930pt;}
.ye3{bottom:102.111064pt;}
.y9a{bottom:116.480265pt;}
.y40{bottom:118.250936pt;}
.yf5{bottom:118.501597pt;}
.ye2{bottom:118.777730pt;}
.y2d{bottom:125.521200pt;}
.y99{bottom:133.146932pt;}
.y3f{bottom:133.770270pt;}
.yf4{bottom:135.168264pt;}
.ye1{bottom:135.444397pt;}
.y2c{bottom:142.187866pt;}
.y3e{bottom:147.098270pt;}
.y98{bottom:149.813599pt;}
.yf3{bottom:151.834930pt;}
.ye0{bottom:152.111064pt;}
.y2b{bottom:158.854533pt;}
.y3d{bottom:164.959605pt;}
.y97{bottom:166.480265pt;}
.yf2{bottom:168.501597pt;}
.ydf{bottom:168.777730pt;}
.y6a{bottom:170.384257pt;}
.y2a{bottom:175.521200pt;}
.y3c{bottom:180.473595pt;}
.y96{bottom:183.146932pt;}
.yde{bottom:185.444397pt;}
.y69{bottom:187.050924pt;}
.y29{bottom:192.187866pt;}
.y3b{bottom:198.334941pt;}
.y95{bottom:199.813599pt;}
.ydd{bottom:202.111064pt;}
.y68{bottom:203.717590pt;}
.y28{bottom:208.854533pt;}
.y3a{bottom:213.848941pt;}
.y94{bottom:216.480265pt;}
.ydc{bottom:218.777730pt;}
.y67{bottom:220.384257pt;}
.y27{bottom:225.521200pt;}
.y39{bottom:231.710266pt;}
.y93{bottom:233.146932pt;}
.ydb{bottom:235.444397pt;}
.y26{bottom:242.187866pt;}
.y38{bottom:247.229600pt;}
.yaa{bottom:249.598930pt;}
.y92{bottom:249.813599pt;}
.y66{bottom:253.717590pt;}
.yb7{bottom:257.600252pt;}
.yab{bottom:257.600261pt;}
.ya9{bottom:257.600264pt;}
.ya0{bottom:257.611605pt;}
.y25{bottom:258.854533pt;}
.y37{bottom:260.557600pt;}
.y91{bottom:266.480265pt;}
.yda{bottom:268.777730pt;}
.y24{bottom:275.521200pt;}
.y36{bottom:278.418925pt;}
.y90{bottom:283.146932pt;}
.y23{bottom:292.187866pt;}
.y65{bottom:293.932251pt;}
.y35{bottom:293.938259pt;}
.y8f{bottom:299.813599pt;}
.y34{bottom:307.266259pt;}
.y22{bottom:308.854533pt;}
.y64{bottom:310.598918pt;}
.y8e{bottom:316.480265pt;}
.yd9{bottom:318.777751pt;}
.y33{bottom:325.127604pt;}
.y21{bottom:325.521200pt;}
.y63{bottom:327.265584pt;}
.y8d{bottom:333.146932pt;}
.yd8{bottom:335.444417pt;}
.y32{bottom:340.646938pt;}
.y20{bottom:342.187866pt;}
.y62{bottom:343.932251pt;}
.y10f{bottom:345.492388pt;}
.y8c{bottom:349.813599pt;}
.yd7{bottom:352.111084pt;}
.yb8{bottom:352.188249pt;}
.yac{bottom:352.188258pt;}
.ya1{bottom:352.199602pt;}
.ya3{bottom:352.199603pt;}
.y31{bottom:353.974938pt;}
.y10e{bottom:358.820388pt;}
.y1f{bottom:358.854533pt;}
.yb9{bottom:360.189583pt;}
.yad{bottom:360.189591pt;}
.ya2{bottom:360.200936pt;}
.y61{bottom:360.598918pt;}
.y8b{bottom:366.480265pt;}
.yd6{bottom:368.777751pt;}
.y30{bottom:371.836263pt;}
.y10d{bottom:372.148388pt;}
.y133{bottom:375.362389pt;}
.y1e{bottom:375.521200pt;}
.y60{bottom:377.265584pt;}
.y8a{bottom:383.146932pt;}
.yd5{bottom:385.444417pt;}
.y10c{bottom:385.476388pt;}
.y132{bottom:388.690389pt;}
.y1d{bottom:392.187866pt;}
.y5f{bottom:393.932251pt;}
.y2f{bottom:394.058922pt;}
.y10b{bottom:398.804388pt;}
.y89{bottom:399.813599pt;}
.yd4{bottom:402.111084pt;}
.y2e{bottom:407.386922pt;}
.y156{bottom:407.793033pt;}
.y1c{bottom:408.854533pt;}
.y5e{bottom:410.598918pt;}
.y10a{bottom:412.132388pt;}
.y88{bottom:416.480265pt;}
.y131{bottom:418.653564pt;}
.yd3{bottom:418.777751pt;}
.y155{bottom:421.121033pt;}
.y109{bottom:425.460388pt;}
.y1b{bottom:425.521200pt;}
.y5d{bottom:427.265584pt;}
.y87{bottom:433.146932pt;}
.y154{bottom:434.449033pt;}
.y130{bottom:435.320231pt;}
.yd2{bottom:435.444417pt;}
.y108{bottom:438.788388pt;}
.y1a{bottom:442.187866pt;}
.y5c{bottom:443.932251pt;}
.y153{bottom:447.777033pt;}
.y86{bottom:449.813599pt;}
.y12f{bottom:451.986898pt;}
.yd1{bottom:452.111084pt;}
.y107{bottom:452.116388pt;}
.yba{bottom:453.485583pt;}
.yae{bottom:453.485591pt;}
.ya4{bottom:453.496936pt;}
.y18{bottom:458.854533pt;}
.y5b{bottom:460.598918pt;}
.y152{bottom:461.105033pt;}
.yaf{bottom:461.486925pt;}
.y106{bottom:465.444388pt;}
.y85{bottom:466.480265pt;}
.y12e{bottom:468.653564pt;}
.yd0{bottom:468.777751pt;}
.y151{bottom:474.433033pt;}
.y17{bottom:475.521200pt;}
.y5a{bottom:477.265584pt;}
.y105{bottom:478.772388pt;}
.y12d{bottom:485.320231pt;}
.ycf{bottom:485.444417pt;}
.y150{bottom:487.761033pt;}
.y104{bottom:492.100388pt;}
.y16{bottom:492.187866pt;}
.y59{bottom:493.932251pt;}
.y84{bottom:499.813599pt;}
.y14f{bottom:501.089033pt;}
.y12c{bottom:501.986898pt;}
.yce{bottom:502.111084pt;}
.y103{bottom:505.428388pt;}
.y19{bottom:508.854533pt;}
.y58{bottom:510.598918pt;}
.y14e{bottom:514.417033pt;}
.y12b{bottom:518.653564pt;}
.y102{bottom:518.756388pt;}
.ycd{bottom:518.777751pt;}
.y15{bottom:525.521200pt;}
.y57{bottom:527.265584pt;}
.y14d{bottom:527.745033pt;}
.y101{bottom:532.084388pt;}
.y12a{bottom:535.320231pt;}
.ycc{bottom:535.444417pt;}
.y14c{bottom:541.073033pt;}
.y56{bottom:543.932251pt;}
.y100{bottom:545.412388pt;}
.y83{bottom:549.813639pt;}
.y129{bottom:551.986898pt;}
.ycb{bottom:552.111084pt;}
.yb0{bottom:553.932920pt;}
.y9d{bottom:553.944265pt;}
.y14b{bottom:554.401033pt;}
.yff{bottom:558.740388pt;}
.y55{bottom:560.598918pt;}
.y82{bottom:566.480306pt;}
.y14a{bottom:567.729033pt;}
.y128{bottom:568.653564pt;}
.yca{bottom:568.777751pt;}
.yfe{bottom:572.068388pt;}
.y14{bottom:575.521240pt;}
.y54{bottom:577.265584pt;}
.y149{bottom:581.057033pt;}
.y81{bottom:583.146973pt;}
.y127{bottom:585.320231pt;}
.yfd{bottom:585.396388pt;}
.yc9{bottom:585.444417pt;}
.y53{bottom:593.932251pt;}
.y148{bottom:594.385033pt;}
.y80{bottom:599.813639pt;}
.y126{bottom:601.986898pt;}
.yc8{bottom:602.111084pt;}
.y9e{bottom:604.547599pt;}
.y147{bottom:607.713033pt;}
.y13{bottom:608.854574pt;}
.y52{bottom:610.598918pt;}
.y7f{bottom:616.480306pt;}
.y125{bottom:618.653564pt;}
.yc7{bottom:618.777751pt;}
.y146{bottom:621.041033pt;}
.y12{bottom:625.521240pt;}
.y51{bottom:627.265584pt;}
.y7e{bottom:633.146973pt;}
.y145{bottom:634.369033pt;}
.y124{bottom:635.320231pt;}
.yc6{bottom:635.444417pt;}
.yf9{bottom:635.807053pt;}
.yfc{bottom:635.818387pt;}
.y11{bottom:642.187907pt;}
.y50{bottom:643.932251pt;}
.y144{bottom:647.697033pt;}
.yf8{bottom:649.135053pt;}
.yfb{bottom:649.146387pt;}
.y7d{bottom:649.813639pt;}
.y123{bottom:651.986898pt;}
.yc5{bottom:652.111084pt;}
.y10{bottom:658.854574pt;}
.y4f{bottom:660.598918pt;}
.y143{bottom:661.025033pt;}
.yf7{bottom:662.463053pt;}
.yfa{bottom:662.474387pt;}
.y7c{bottom:666.480306pt;}
.y122{bottom:668.653564pt;}
.yc4{bottom:668.777751pt;}
.y142{bottom:674.353033pt;}
.yf{bottom:675.521240pt;}
.yb1{bottom:682.022253pt;}
.y7b{bottom:683.146973pt;}
.y121{bottom:685.320231pt;}
.yc3{bottom:685.444417pt;}
.y141{bottom:687.681033pt;}
.ye{bottom:692.187907pt;}
.y4e{bottom:693.932292pt;}
.y7a{bottom:699.813639pt;}
.y140{bottom:701.009033pt;}
.y120{bottom:701.986898pt;}
.yc2{bottom:702.111084pt;}
.yd{bottom:708.854574pt;}
.y79{bottom:716.480306pt;}
.y11f{bottom:718.653564pt;}
.yc1{bottom:718.777751pt;}
.yc{bottom:725.521240pt;}
.y13f{bottom:731.009033pt;}
.y78{bottom:733.146973pt;}
.y4d{bottom:734.146973pt;}
.y11e{bottom:735.320231pt;}
.yc0{bottom:735.444417pt;}
.y77{bottom:749.813639pt;}
.y4c{bottom:750.813639pt;}
.y11d{bottom:751.986898pt;}
.ybf{bottom:752.111084pt;}
.yb{bottom:764.794803pt;}
.y76{bottom:766.480306pt;}
.y4b{bottom:767.480306pt;}
.y11c{bottom:768.653564pt;}
.ybe{bottom:768.777751pt;}
.yb2{bottom:774.966920pt;}
.ya{bottom:778.122803pt;}
.y13e{bottom:781.047637pt;}
.ybb{bottom:782.956912pt;}
.yb3{bottom:782.968253pt;}
.ya5{bottom:782.968265pt;}
.y75{bottom:783.146973pt;}
.y4a{bottom:784.146973pt;}
.y11b{bottom:785.320231pt;}
.y13d{bottom:794.375637pt;}
.y74{bottom:799.813639pt;}
.y49{bottom:800.813639pt;}
.y11a{bottom:801.986898pt;}
.y13c{bottom:807.703637pt;}
.yf0{bottom:809.044306pt;}
.y9{bottom:815.989502pt;}
.y73{bottom:816.480306pt;}
.y48{bottom:817.480306pt;}
.y119{bottom:818.653564pt;}
.y13b{bottom:821.031637pt;}
.yef{bottom:822.372306pt;}
.y8{bottom:832.656169pt;}
.y72{bottom:833.146973pt;}
.y47{bottom:834.146973pt;}
.y13a{bottom:834.359637pt;}
.y118{bottom:835.320231pt;}
.yee{bottom:835.700306pt;}
.y139{bottom:847.687637pt;}
.yed{bottom:849.028306pt;}
.y71{bottom:849.813639pt;}
.y117{bottom:851.986898pt;}
.yec{bottom:862.356306pt;}
.y70{bottom:866.480306pt;}
.y46{bottom:867.480306pt;}
.y116{bottom:868.653564pt;}
.y7{bottom:872.377441pt;}
.ybc{bottom:875.278245pt;}
.yb4{bottom:875.289587pt;}
.ya6{bottom:875.289598pt;}
.yeb{bottom:875.684306pt;}
.y6f{bottom:883.146973pt;}
.ybd{bottom:883.279579pt;}
.yb5{bottom:883.290920pt;}
.ya7{bottom:883.290932pt;}
.y138{bottom:884.305637pt;}
.y115{bottom:885.320231pt;}
.yea{bottom:889.012306pt;}
.y6{bottom:896.377441pt;}
.y137{bottom:897.633637pt;}
.y6e{bottom:899.813639pt;}
.y45{bottom:900.813639pt;}
.y114{bottom:901.986898pt;}
.ye9{bottom:902.340306pt;}
.ye8{bottom:915.668306pt;}
.y6d{bottom:916.480306pt;}
.y113{bottom:918.653564pt;}
.y136{bottom:924.266971pt;}
.ye7{bottom:928.996306pt;}
.y112{bottom:935.320231pt;}
.y135{bottom:937.594971pt;}
.ye6{bottom:942.324306pt;}
.y6c{bottom:949.818973pt;}
.y44{bottom:950.813639pt;}
.y111{bottom:951.986898pt;}
.ye5{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y6b{bottom:966.480306pt;}
.y43{bottom:967.480306pt;}
.y134{bottom:967.594971pt;}
.y110{bottom:968.653564pt;}
.yf1{bottom:968.813639pt;}
.ye4{bottom:968.980306pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y42{bottom:1002.206543pt;}
.y9b{bottom:1002.206706pt;}
.hf{height:22.403733pt;}
.h13{height:23.722667pt;}
.he{height:32.005333pt;}
.hd{height:32.760417pt;}
.h2{height:37.376000pt;}
.h9{height:37.653333pt;}
.h4{height:39.712000pt;}
.h11{height:43.656000pt;}
.h12{height:46.376000pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.hb{height:51.360000pt;}
.h8{height:52.746667pt;}
.ha{height:54.560000pt;}
.h10{height:57.493333pt;}
.h7{height:57.621333pt;}
.hc{height:63.296000pt;}
.h6{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.151479pt;}
.x7{left:86.929867pt;}
.xb{left:221.108927pt;}
.xd{left:243.767192pt;}
.xe{left:257.095192pt;}
.xf{left:270.423192pt;}
.x10{left:295.390525pt;}
.x11{left:308.718525pt;}
.x12{left:322.046525pt;}
.x13{left:335.363192pt;}
.x14{left:348.691192pt;}
.x15{left:362.019192pt;}
.x16{left:375.347192pt;}
.x24{left:388.178548pt;}
.x17{left:391.950525pt;}
.x18{left:405.278525pt;}
.x5{left:408.191457pt;}
.x19{left:418.606525pt;}
.x6{left:423.298124pt;}
.x25{left:430.866924pt;}
.x1a{left:431.934525pt;}
.x1b{left:445.251192pt;}
.x1c{left:458.579192pt;}
.x1d{left:471.907192pt;}
.x1e{left:485.235192pt;}
.x1f{left:501.872530pt;}
.x20{left:515.200530pt;}
.x21{left:528.528530pt;}
.x22{left:541.856530pt;}
.x23{left:555.161864pt;}
.xc{left:580.432261pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xa{left:704.136393pt;}
}




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