
    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_c356d6661275ed2d8334bf42.woff')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_5bc4caa972b62e3486751228.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892578;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_d667388dacdc9bd60d865e53.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_492b5a5e5f2a69b46b507a73.woff')format("woff");}.ff4{font-family:ff4;line-height:1.124118;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_80232201e8b2baebb0480d27.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_6a6b5f393a937bf0c5c9e8bf.woff')format("woff");}.ff6{font-family:ff6;line-height:1.050000;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_b27e3b3f0773863771f6d3cf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.892578;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_d57531af268f61623e304377.woff')format("woff");}.ff8{font-family:ff8;line-height:1.052000;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_ebafaa8c7e29c987c404d5fa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.105000;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_d667388dacdc9bd60d865e53.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3424d0d8d91fedaa46e4bd13.woff')format("woff");}.ffb{font-family:ffb;line-height:0.959000;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_49335d8bf500403d5b1807bf.woff')format("woff");}.ffc{font-family:ffc;line-height:1.143000;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_2cb972537feac5bff97d2ca9.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-2.157600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.154600px;}
.v2{vertical-align:18.981000px;}
.ls7{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.855000px;}
.lsa{letter-spacing:-0.675000px;}
.ls8{letter-spacing:-0.399000px;}
.ls5{letter-spacing:-0.285000px;}
.lsb{letter-spacing:-0.114000px;}
.ls4{letter-spacing:-0.057000px;}
.ls6{letter-spacing:-0.045000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.627000px;}
.ls0{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.596000px;}
.ls2{letter-spacing:111.510000px;}
.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;}
}
.ws61{word-spacing:-12.540000px;}
.wsa3{word-spacing:-12.483000px;}
.ws1b{word-spacing:-12.255000px;}
.ws90{word-spacing:-11.880000px;}
.ws1c{word-spacing:-11.400000px;}
.ws1a{word-spacing:-11.343000px;}
.ws0{word-spacing:-11.280000px;}
.ws18{word-spacing:-11.250000px;}
.ws1d{word-spacing:-8.955000px;}
.ws19{word-spacing:-7.310820px;}
.wsc3{word-spacing:-5.472000px;}
.ws8d{word-spacing:-4.902000px;}
.ws116{word-spacing:-4.731000px;}
.ws3{word-spacing:-4.446000px;}
.ws58{word-spacing:-4.389000px;}
.ws123{word-spacing:-4.050000px;}
.wsf8{word-spacing:-3.990000px;}
.ws9f{word-spacing:-3.870000px;}
.ws2b{word-spacing:-3.762000px;}
.wsa0{word-spacing:-3.705000px;}
.ws124{word-spacing:-3.672000px;}
.wsa1{word-spacing:-3.648000px;}
.ws112{word-spacing:-3.306000px;}
.ws72{word-spacing:-3.192000px;}
.wse5{word-spacing:-3.078000px;}
.ws10f{word-spacing:-3.021000px;}
.ws96{word-spacing:-2.964000px;}
.ws117{word-spacing:-2.907000px;}
.ws2a{word-spacing:-2.793000px;}
.ws89{word-spacing:-2.736000px;}
.ws8a{word-spacing:-2.679000px;}
.ws110{word-spacing:-2.622000px;}
.ws115{word-spacing:-2.565000px;}
.ws5b{word-spacing:-2.394000px;}
.ws8b{word-spacing:-2.337000px;}
.wsff{word-spacing:-2.280000px;}
.ws9d{word-spacing:-2.268000px;}
.ws67{word-spacing:-2.223000px;}
.ws43{word-spacing:-2.109000px;}
.ws91{word-spacing:-2.070000px;}
.ws9e{word-spacing:-2.052000px;}
.wsa9{word-spacing:-1.995000px;}
.ws108{word-spacing:-1.980000px;}
.ws54{word-spacing:-1.938000px;}
.ws69{word-spacing:-1.881000px;}
.wscc{word-spacing:-1.824000px;}
.ws5a{word-spacing:-1.767000px;}
.ws92{word-spacing:-1.710000px;}
.ws70{word-spacing:-1.653000px;}
.wscb{word-spacing:-1.596000px;}
.ws56{word-spacing:-1.539000px;}
.ws25{word-spacing:-1.482000px;}
.ws9a{word-spacing:-1.440000px;}
.ws11{word-spacing:-1.368000px;}
.ws37{word-spacing:-1.260000px;}
.ws3e{word-spacing:-1.254000px;}
.ws62{word-spacing:-1.197000px;}
.wsd2{word-spacing:-1.170000px;}
.wsfe{word-spacing:-1.140000px;}
.ws50{word-spacing:-1.083000px;}
.ws3f{word-spacing:-1.026000px;}
.wsbc{word-spacing:-0.969000px;}
.ws29{word-spacing:-0.912000px;}
.wsee{word-spacing:-0.855000px;}
.wse7{word-spacing:-0.798000px;}
.ws109{word-spacing:-0.765000px;}
.ws12{word-spacing:-0.684000px;}
.ws3b{word-spacing:-0.675000px;}
.ws2{word-spacing:-0.630000px;}
.wseb{word-spacing:-0.627000px;}
.ws10e{word-spacing:-0.570000px;}
.wsaa{word-spacing:-0.513000px;}
.wsd4{word-spacing:-0.456000px;}
.ws1e{word-spacing:-0.450000px;}
.wsb9{word-spacing:-0.405000px;}
.ws42{word-spacing:-0.399000px;}
.ws11d{word-spacing:-0.342000px;}
.ws36{word-spacing:-0.285000px;}
.ws55{word-spacing:-0.228000px;}
.ws3c{word-spacing:-0.225000px;}
.ws4f{word-spacing:-0.171000px;}
.ws3a{word-spacing:-0.135000px;}
.ws4b{word-spacing:-0.114000px;}
.wsa2{word-spacing:-0.057000px;}
.ws1{word-spacing:0.000000px;}
.wsba{word-spacing:0.045000px;}
.ws5f{word-spacing:0.114000px;}
.ws6b{word-spacing:0.171000px;}
.ws7a{word-spacing:0.228000px;}
.ws14{word-spacing:0.285000px;}
.wsf0{word-spacing:0.342000px;}
.ws1f{word-spacing:0.399000px;}
.ws86{word-spacing:0.456000px;}
.ws104{word-spacing:0.513000px;}
.wsc2{word-spacing:0.570000px;}
.ws63{word-spacing:0.627000px;}
.wsd1{word-spacing:0.675000px;}
.wsc8{word-spacing:0.684000px;}
.wsab{word-spacing:0.741000px;}
.ws87{word-spacing:0.798000px;}
.wsf{word-spacing:0.855000px;}
.ws38{word-spacing:0.900000px;}
.ws65{word-spacing:0.912000px;}
.wsbb{word-spacing:0.945000px;}
.ws7{word-spacing:0.969000px;}
.wsef{word-spacing:1.026000px;}
.wsb7{word-spacing:1.080000px;}
.wsb{word-spacing:1.083000px;}
.ws75{word-spacing:1.140000px;}
.ws107{word-spacing:1.170000px;}
.wse2{word-spacing:1.197000px;}
.ws23{word-spacing:1.254000px;}
.ws49{word-spacing:1.311000px;}
.ws10a{word-spacing:1.368000px;}
.wsf9{word-spacing:1.425000px;}
.wsa6{word-spacing:1.482000px;}
.ws83{word-spacing:1.539000px;}
.ws39{word-spacing:1.575000px;}
.ws17{word-spacing:1.596000px;}
.ws105{word-spacing:1.653000px;}
.wsd3{word-spacing:1.710000px;}
.ws24{word-spacing:1.767000px;}
.ws44{word-spacing:1.824000px;}
.ws4a{word-spacing:1.881000px;}
.ws48{word-spacing:1.938000px;}
.ws66{word-spacing:1.995000px;}
.ws64{word-spacing:2.052000px;}
.wsb8{word-spacing:2.160000px;}
.wsda{word-spacing:2.166000px;}
.ws8e{word-spacing:2.223000px;}
.ws15{word-spacing:2.280000px;}
.wscd{word-spacing:2.337000px;}
.ws8{word-spacing:2.394000px;}
.ws8c{word-spacing:2.451000px;}
.ws41{word-spacing:2.508000px;}
.ws88{word-spacing:2.565000px;}
.ws68{word-spacing:2.622000px;}
.wsb6{word-spacing:2.679000px;}
.ws73{word-spacing:2.736000px;}
.wsf2{word-spacing:2.793000px;}
.ws51{word-spacing:2.850000px;}
.ws4{word-spacing:2.907000px;}
.ws5e{word-spacing:2.964000px;}
.wsc9{word-spacing:3.021000px;}
.ws6e{word-spacing:3.078000px;}
.ws6c{word-spacing:3.135000px;}
.wse{word-spacing:3.192000px;}
.ws98{word-spacing:3.249000px;}
.ws4c{word-spacing:3.306000px;}
.ws85{word-spacing:3.363000px;}
.wsb1{word-spacing:3.420000px;}
.wse8{word-spacing:3.477000px;}
.wsb5{word-spacing:3.534000px;}
.ws5{word-spacing:3.591000px;}
.ws16{word-spacing:3.648000px;}
.wsf5{word-spacing:3.819000px;}
.ws52{word-spacing:3.876000px;}
.ws77{word-spacing:3.933000px;}
.ws8f{word-spacing:4.047000px;}
.ws6d{word-spacing:4.104000px;}
.wsfb{word-spacing:4.161000px;}
.ws40{word-spacing:4.218000px;}
.ws2f{word-spacing:4.275000px;}
.ws106{word-spacing:4.320000px;}
.ws6{word-spacing:4.332000px;}
.ws2c{word-spacing:4.389000px;}
.ws11e{word-spacing:4.446000px;}
.ws7f{word-spacing:4.503000px;}
.ws82{word-spacing:4.560000px;}
.ws99{word-spacing:4.617000px;}
.ws7c{word-spacing:4.674000px;}
.ws33{word-spacing:4.731000px;}
.ws5c{word-spacing:4.788000px;}
.wsdb{word-spacing:4.845000px;}
.ws76{word-spacing:4.902000px;}
.wsd{word-spacing:4.959000px;}
.wsf3{word-spacing:5.016000px;}
.ws7d{word-spacing:5.073000px;}
.ws10b{word-spacing:5.130000px;}
.ws46{word-spacing:5.187000px;}
.ws81{word-spacing:5.244000px;}
.ws11b{word-spacing:5.301000px;}
.ws95{word-spacing:5.358000px;}
.ws47{word-spacing:5.415000px;}
.ws59{word-spacing:5.472000px;}
.wsde{word-spacing:5.529000px;}
.ws35{word-spacing:5.586000px;}
.ws21{word-spacing:5.643000px;}
.ws71{word-spacing:5.700000px;}
.wsc6{word-spacing:5.757000px;}
.ws114{word-spacing:5.814000px;}
.ws57{word-spacing:5.928000px;}
.ws78{word-spacing:5.985000px;}
.ws79{word-spacing:6.042000px;}
.wsa7{word-spacing:6.099000px;}
.ws26{word-spacing:6.213000px;}
.ws28{word-spacing:6.270000px;}
.wsa{word-spacing:6.384000px;}
.ws2e{word-spacing:6.441000px;}
.ws2d{word-spacing:6.612000px;}
.ws31{word-spacing:6.669000px;}
.wsb3{word-spacing:6.726000px;}
.ws10{word-spacing:6.783000px;}
.ws20{word-spacing:6.840000px;}
.ws53{word-spacing:6.897000px;}
.ws6f{word-spacing:6.954000px;}
.wsae{word-spacing:7.011000px;}
.ws34{word-spacing:7.068000px;}
.ws111{word-spacing:7.125000px;}
.wsc4{word-spacing:7.182000px;}
.ws27{word-spacing:7.353000px;}
.ws22{word-spacing:7.410000px;}
.ws30{word-spacing:7.467000px;}
.ws13{word-spacing:7.524000px;}
.wsc5{word-spacing:7.581000px;}
.ws80{word-spacing:7.638000px;}
.ws97{word-spacing:7.695000px;}
.ws9{word-spacing:7.752000px;}
.ws32{word-spacing:7.809000px;}
.ws94{word-spacing:7.866000px;}
.ws45{word-spacing:7.923000px;}
.wsf6{word-spacing:8.037000px;}
.wsd9{word-spacing:8.094000px;}
.ws113{word-spacing:8.208000px;}
.ws5d{word-spacing:8.265000px;}
.wsbe{word-spacing:8.322000px;}
.ws118{word-spacing:8.379000px;}
.ws101{word-spacing:8.436000px;}
.ws93{word-spacing:8.550000px;}
.ws100{word-spacing:8.607000px;}
.wse1{word-spacing:8.721000px;}
.wsfd{word-spacing:8.835000px;}
.ws102{word-spacing:8.892000px;}
.wsb4{word-spacing:8.949000px;}
.ws4d{word-spacing:9.006000px;}
.wse6{word-spacing:9.063000px;}
.wsa4{word-spacing:9.120000px;}
.wsfa{word-spacing:9.177000px;}
.wsdc{word-spacing:9.234000px;}
.ws9c{word-spacing:9.342000px;}
.wse9{word-spacing:9.348000px;}
.wsdf{word-spacing:9.405000px;}
.wsc1{word-spacing:9.519000px;}
.wsec{word-spacing:9.690000px;}
.ws121{word-spacing:9.747000px;}
.wsf7{word-spacing:9.861000px;}
.wsdd{word-spacing:10.032000px;}
.wsca{word-spacing:10.146000px;}
.wsa8{word-spacing:10.203000px;}
.ws9b{word-spacing:10.314000px;}
.ws11c{word-spacing:10.317000px;}
.wsa5{word-spacing:10.431000px;}
.wse4{word-spacing:10.488000px;}
.ws11f{word-spacing:10.545000px;}
.wsfc{word-spacing:10.830000px;}
.wsf1{word-spacing:10.887000px;}
.ws10d{word-spacing:10.944000px;}
.wsed{word-spacing:11.115000px;}
.ws11a{word-spacing:11.286000px;}
.wsd0{word-spacing:11.400000px;}
.ws7e{word-spacing:11.457000px;}
.ws10c{word-spacing:11.571000px;}
.ws119{word-spacing:11.628000px;}
.ws74{word-spacing:11.742000px;}
.ws120{word-spacing:11.799000px;}
.wsd5{word-spacing:11.856000px;}
.wsc0{word-spacing:12.426000px;}
.wsc7{word-spacing:12.483000px;}
.wscf{word-spacing:12.540000px;}
.ws103{word-spacing:12.597000px;}
.wsaf{word-spacing:12.768000px;}
.wsea{word-spacing:12.825000px;}
.ws6a{word-spacing:12.996000px;}
.wsf4{word-spacing:13.053000px;}
.wsb0{word-spacing:13.395000px;}
.wsbd{word-spacing:13.623000px;}
.ws4e{word-spacing:14.022000px;}
.wsbf{word-spacing:14.079000px;}
.wsce{word-spacing:14.193000px;}
.wse3{word-spacing:14.478000px;}
.wsad{word-spacing:14.877000px;}
.ws122{word-spacing:15.504000px;}
.wsd8{word-spacing:15.561000px;}
.wse0{word-spacing:15.960000px;}
.wsc{word-spacing:17.043000px;}
.ws84{word-spacing:17.385000px;}
.wsd6{word-spacing:18.411000px;}
.wsac{word-spacing:19.893000px;}
.wsd7{word-spacing:20.178000px;}
.wsb2{word-spacing:27.189000px;}
.ws60{word-spacing:98.010000px;}
.ws7b{word-spacing:622.821600px;}
.ws3d{word-spacing:649.821600px;}
._d{margin-left:-8.730000px;}
._1{margin-left:-7.481400px;}
._3{margin-left:-5.411400px;}
._2{margin-left:-3.870000px;}
._0{margin-left:-2.148600px;}
._5{margin-left:-1.107000px;}
._4{width:1.810200px;}
._f{width:2.904300px;}
._e{width:4.119600px;}
._8{width:5.331900px;}
._c{width:10.165200px;}
._10{width:30.780000px;}
._b{width:33.525000px;}
._9{width:35.100000px;}
._a{width:36.360000px;}
._7{width:48.132000px;}
._6{width:49.228800px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:33.231000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.815000px;}
.y59{bottom:56.126700px;}
.y2a{bottom:56.665350px;}
.y28{bottom:98.866500px;}
.y83{bottom:114.567600px;}
.y57{bottom:114.803250px;}
.y27{bottom:116.123250px;}
.y91{bottom:125.281950px;}
.y56{bottom:128.303250px;}
.yc6{bottom:129.473250px;}
.y82{bottom:131.824350px;}
.y26{bottom:133.380000px;}
.y55{bottom:141.803250px;}
.y90{bottom:142.538700px;}
.yc5{bottom:146.730000px;}
.y81{bottom:149.081100px;}
.y25{bottom:150.636750px;}
.y54{bottom:155.303250px;}
.y8f{bottom:159.795450px;}
.yc4{bottom:163.986750px;}
.y80{bottom:166.337850px;}
.y107{bottom:166.351350px;}
.yaf{bottom:166.378350px;}
.y24{bottom:167.893500px;}
.y53{bottom:168.803250px;}
.y8e{bottom:177.052200px;}
.yc3{bottom:181.243500px;}
.y52{bottom:182.303250px;}
.y7f{bottom:183.594600px;}
.y106{bottom:183.608100px;}
.yae{bottom:183.635100px;}
.y23{bottom:185.150250px;}
.y8d{bottom:194.308950px;}
.y51{bottom:195.803250px;}
.yc2{bottom:198.500250px;}
.y7e{bottom:200.851350px;}
.y105{bottom:200.864850px;}
.yad{bottom:200.891850px;}
.y22{bottom:202.407000px;}
.y50{bottom:209.303250px;}
.y8c{bottom:211.565700px;}
.yc1{bottom:215.757000px;}
.y7d{bottom:218.108100px;}
.y104{bottom:218.121600px;}
.yac{bottom:218.148600px;}
.y21{bottom:219.663750px;}
.y4f{bottom:222.803250px;}
.y8b{bottom:228.822450px;}
.yc0{bottom:233.013750px;}
.y7c{bottom:235.364850px;}
.y103{bottom:235.378350px;}
.yab{bottom:235.405350px;}
.y4e{bottom:236.303250px;}
.y20{bottom:236.920500px;}
.y8a{bottom:246.079200px;}
.ybf{bottom:250.270500px;}
.y7b{bottom:252.621600px;}
.y102{bottom:252.635100px;}
.yaa{bottom:252.662100px;}
.y1f{bottom:254.177250px;}
.ybe{bottom:267.527250px;}
.y7a{bottom:269.878350px;}
.y101{bottom:269.891850px;}
.ya9{bottom:269.918850px;}
.ye4{bottom:269.945850px;}
.y1e{bottom:271.434000px;}
.y89{bottom:284.329200px;}
.ybd{bottom:284.784000px;}
.y79{bottom:287.135100px;}
.y100{bottom:287.148600px;}
.ya8{bottom:287.175600px;}
.ye3{bottom:287.202600px;}
.ya6{bottom:287.249850px;}
.y4d{bottom:287.351100px;}
.y1d{bottom:288.690750px;}
.ybc{bottom:302.040750px;}
.y78{bottom:304.391850px;}
.yff{bottom:304.405350px;}
.ya7{bottom:304.432350px;}
.ye2{bottom:304.459350px;}
.ya5{bottom:304.506600px;}
.y4c{bottom:304.607850px;}
.y1c{bottom:305.947500px;}
.y10c{bottom:318.855600px;}
.ybb{bottom:319.297500px;}
.y77{bottom:321.648600px;}
.yfe{bottom:321.662100px;}
.y4b{bottom:321.689100px;}
.ye1{bottom:321.716100px;}
.ya4{bottom:321.763350px;}
.y1b{bottom:323.204250px;}
.y10b{bottom:336.108600px;}
.yba{bottom:336.554250px;}
.y76{bottom:338.905350px;}
.yfd{bottom:338.918850px;}
.y4a{bottom:338.945850px;}
.ye0{bottom:338.972850px;}
.ya3{bottom:339.020100px;}
.y1a{bottom:340.461000px;}
.y10a{bottom:353.361600px;}
.yb9{bottom:353.811000px;}
.y75{bottom:356.162100px;}
.yfc{bottom:356.175600px;}
.y49{bottom:356.202600px;}
.ydf{bottom:356.229600px;}
.ya2{bottom:356.276850px;}
.y19{bottom:357.717750px;}
.y109{bottom:370.614600px;}
.yb8{bottom:371.067750px;}
.y74{bottom:373.418850px;}
.yfb{bottom:373.432350px;}
.y48{bottom:373.459350px;}
.yde{bottom:373.486350px;}
.ya1{bottom:373.533600px;}
.y18{bottom:374.974500px;}
.y88{bottom:387.855600px;}
.yb7{bottom:388.324500px;}
.y73{bottom:390.675600px;}
.yfa{bottom:390.689100px;}
.y47{bottom:390.716100px;}
.ydd{bottom:390.743100px;}
.ya0{bottom:390.790350px;}
.y17{bottom:392.231250px;}
.y87{bottom:405.108600px;}
.yb6{bottom:405.581250px;}
.y108{bottom:405.864600px;}
.y72{bottom:407.932350px;}
.yf9{bottom:407.945850px;}
.y46{bottom:407.972850px;}
.ydc{bottom:407.999850px;}
.y9f{bottom:408.047100px;}
.y16{bottom:409.488000px;}
.y86{bottom:422.361600px;}
.y71{bottom:425.189100px;}
.yf8{bottom:425.202600px;}
.y45{bottom:425.229600px;}
.ydb{bottom:425.256600px;}
.y9e{bottom:425.303850px;}
.y15{bottom:426.744750px;}
.y85{bottom:439.614600px;}
.y70{bottom:442.445850px;}
.yf7{bottom:442.459350px;}
.y44{bottom:442.486350px;}
.yda{bottom:442.513350px;}
.y9d{bottom:442.560600px;}
.yb5{bottom:443.831250px;}
.y14{bottom:444.001500px;}
.y6f{bottom:459.702600px;}
.yf6{bottom:459.716100px;}
.y43{bottom:459.743100px;}
.yd9{bottom:459.770100px;}
.y9c{bottom:459.817350px;}
.y13{bottom:461.258250px;}
.y84{bottom:474.864600px;}
.y6e{bottom:476.959350px;}
.yf5{bottom:476.972850px;}
.y42{bottom:476.999850px;}
.yd8{bottom:477.026850px;}
.y9b{bottom:477.074100px;}
.y12{bottom:478.515000px;}
.y6d{bottom:494.216100px;}
.yf4{bottom:494.229600px;}
.y41{bottom:494.256600px;}
.yd7{bottom:494.283600px;}
.y9a{bottom:494.330850px;}
.y6c{bottom:511.472850px;}
.yf3{bottom:511.486350px;}
.y40{bottom:511.513350px;}
.yd6{bottom:511.540350px;}
.y99{bottom:511.587600px;}
.y6b{bottom:528.729600px;}
.yf2{bottom:528.743100px;}
.y3f{bottom:528.770100px;}
.yd5{bottom:528.797100px;}
.y98{bottom:528.844350px;}
.y11{bottom:538.287600px;}
.yb4{bottom:543.105600px;}
.y6a{bottom:545.986350px;}
.yf1{bottom:545.999850px;}
.y3e{bottom:546.026850px;}
.yd4{bottom:546.053850px;}
.y97{bottom:546.101100px;}
.y10{bottom:553.286100px;}
.yb3{bottom:560.358600px;}
.y69{bottom:563.243100px;}
.yf0{bottom:563.256600px;}
.y3d{bottom:563.283600px;}
.yd3{bottom:563.310600px;}
.y96{bottom:563.357850px;}
.yf{bottom:572.538150px;}
.yb2{bottom:577.611600px;}
.y68{bottom:580.499850px;}
.yef{bottom:580.513350px;}
.y3c{bottom:580.540350px;}
.yd2{bottom:580.567350px;}
.y95{bottom:580.594350px;}
.yb1{bottom:594.864600px;}
.y67{bottom:597.756600px;}
.yee{bottom:597.770100px;}
.y3b{bottom:597.797100px;}
.yd1{bottom:597.824100px;}
.y94{bottom:597.851100px;}
.ye{bottom:600.543600px;}
.y66{bottom:615.013350px;}
.yed{bottom:615.026850px;}
.y3a{bottom:615.053850px;}
.yd0{bottom:615.080850px;}
.y93{bottom:615.107850px;}
.yd{bottom:615.542100px;}
.yb0{bottom:630.114600px;}
.y65{bottom:632.270100px;}
.yec{bottom:632.283600px;}
.y39{bottom:632.310600px;}
.ycf{bottom:632.337600px;}
.y92{bottom:632.357850px;}
.yc{bottom:634.794000px;}
.y64{bottom:649.526850px;}
.yeb{bottom:649.540350px;}
.y38{bottom:649.567350px;}
.yce{bottom:649.594350px;}
.yb{bottom:662.799450px;}
.y63{bottom:666.783600px;}
.yea{bottom:666.797100px;}
.y37{bottom:666.824100px;}
.ycd{bottom:666.851100px;}
.ya{bottom:677.797950px;}
.y62{bottom:684.040350px;}
.ye9{bottom:684.053850px;}
.y36{bottom:684.080850px;}
.ycc{bottom:684.107850px;}
.y9{bottom:697.050000px;}
.y61{bottom:701.297100px;}
.ye8{bottom:701.310600px;}
.y35{bottom:701.337600px;}
.ycb{bottom:701.344350px;}
.y60{bottom:718.553850px;}
.ye7{bottom:718.567350px;}
.y34{bottom:718.594350px;}
.yca{bottom:718.601100px;}
.y8{bottom:725.055450px;}
.y5f{bottom:735.810600px;}
.ye6{bottom:735.824100px;}
.y33{bottom:735.851100px;}
.yc9{bottom:735.857850px;}
.y7{bottom:740.053950px;}
.y5e{bottom:753.067350px;}
.ye5{bottom:753.080850px;}
.yc8{bottom:753.101100px;}
.y32{bottom:753.107850px;}
.y6{bottom:759.305850px;}
.y5d{bottom:770.324100px;}
.y31{bottom:770.337600px;}
.yc7{bottom:770.357850px;}
.y5{bottom:787.309800px;}
.y5c{bottom:787.580850px;}
.y30{bottom:787.594350px;}
.y5b{bottom:804.837600px;}
.y2f{bottom:804.851100px;}
.y5a{bottom:822.094350px;}
.y2e{bottom:822.107850px;}
.y2d{bottom:839.351100px;}
.y2c{bottom:856.607850px;}
.y4{bottom:866.272950px;}
.y2b{bottom:873.864600px;}
.y3{bottom:885.772950px;}
.y2{bottom:903.772950px;}
.y58{bottom:917.138700px;}
.y29{bottom:917.533200px;}
.h4{height:36.000000px;}
.h9{height:37.305000px;}
.he{height:38.475000px;}
.hf{height:39.792000px;}
.hd{height:39.825000px;}
.h7{height:46.170000px;}
.h2{height:46.602000px;}
.h8{height:48.735000px;}
.h10{height:48.756600px;}
.h13{height:48.762000px;}
.ha{height:48.789000px;}
.h14{height:48.816000px;}
.hb{height:48.843000px;}
.h16{height:48.870000px;}
.h15{height:48.897000px;}
.h12{height:49.086000px;}
.hc{height:49.437000px;}
.h11{height:52.387059px;}
.h3{height:52.646484px;}
.h6{height:72.492000px;}
.h5{height:78.580588px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x15{left:63.779550px;}
.xf{left:72.283500px;}
.xa{left:88.864800px;}
.x17{left:91.948800px;}
.x16{left:93.547800px;}
.x11{left:98.698800px;}
.x10{left:102.051750px;}
.x12{left:119.057400px;}
.x7{left:121.081500px;}
.x18{left:123.297900px;}
.xb{left:144.727800px;}
.x1a{left:158.574300px;}
.x5{left:176.955900px;}
.x2{left:200.679750px;}
.xd{left:205.645500px;}
.x8{left:208.426500px;}
.x6{left:223.749600px;}
.x19{left:225.721050px;}
.x14{left:236.233950px;}
.xc{left:266.809800px;}
.xe{left:271.691850px;}
.x9{left:292.660200px;}
.x3{left:321.802800px;}
.x1{left:345.477750px;}
.x4{left:393.334800px;}
.x13{left:472.525950px;}
@media print{
.v1{vertical-align:-1.917867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.915200pt;}
.v2{vertical-align:16.872000pt;}
.ls7{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.760000pt;}
.lsa{letter-spacing:-0.600000pt;}
.ls8{letter-spacing:-0.354667pt;}
.ls5{letter-spacing:-0.253333pt;}
.lsb{letter-spacing:-0.101333pt;}
.ls4{letter-spacing:-0.050667pt;}
.ls6{letter-spacing:-0.040000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.557333pt;}
.ls0{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.418667pt;}
.ls2{letter-spacing:99.120000pt;}
.ws61{word-spacing:-11.146667pt;}
.wsa3{word-spacing:-11.096000pt;}
.ws1b{word-spacing:-10.893333pt;}
.ws90{word-spacing:-10.560000pt;}
.ws1c{word-spacing:-10.133333pt;}
.ws1a{word-spacing:-10.082667pt;}
.ws0{word-spacing:-10.026667pt;}
.ws18{word-spacing:-10.000000pt;}
.ws1d{word-spacing:-7.960000pt;}
.ws19{word-spacing:-6.498507pt;}
.wsc3{word-spacing:-4.864000pt;}
.ws8d{word-spacing:-4.357333pt;}
.ws116{word-spacing:-4.205333pt;}
.ws3{word-spacing:-3.952000pt;}
.ws58{word-spacing:-3.901333pt;}
.ws123{word-spacing:-3.600000pt;}
.wsf8{word-spacing:-3.546667pt;}
.ws9f{word-spacing:-3.440000pt;}
.ws2b{word-spacing:-3.344000pt;}
.wsa0{word-spacing:-3.293333pt;}
.ws124{word-spacing:-3.264000pt;}
.wsa1{word-spacing:-3.242667pt;}
.ws112{word-spacing:-2.938667pt;}
.ws72{word-spacing:-2.837333pt;}
.wse5{word-spacing:-2.736000pt;}
.ws10f{word-spacing:-2.685333pt;}
.ws96{word-spacing:-2.634667pt;}
.ws117{word-spacing:-2.584000pt;}
.ws2a{word-spacing:-2.482667pt;}
.ws89{word-spacing:-2.432000pt;}
.ws8a{word-spacing:-2.381333pt;}
.ws110{word-spacing:-2.330667pt;}
.ws115{word-spacing:-2.280000pt;}
.ws5b{word-spacing:-2.128000pt;}
.ws8b{word-spacing:-2.077333pt;}
.wsff{word-spacing:-2.026667pt;}
.ws9d{word-spacing:-2.016000pt;}
.ws67{word-spacing:-1.976000pt;}
.ws43{word-spacing:-1.874667pt;}
.ws91{word-spacing:-1.840000pt;}
.ws9e{word-spacing:-1.824000pt;}
.wsa9{word-spacing:-1.773333pt;}
.ws108{word-spacing:-1.760000pt;}
.ws54{word-spacing:-1.722667pt;}
.ws69{word-spacing:-1.672000pt;}
.wscc{word-spacing:-1.621333pt;}
.ws5a{word-spacing:-1.570667pt;}
.ws92{word-spacing:-1.520000pt;}
.ws70{word-spacing:-1.469333pt;}
.wscb{word-spacing:-1.418667pt;}
.ws56{word-spacing:-1.368000pt;}
.ws25{word-spacing:-1.317333pt;}
.ws9a{word-spacing:-1.280000pt;}
.ws11{word-spacing:-1.216000pt;}
.ws37{word-spacing:-1.120000pt;}
.ws3e{word-spacing:-1.114667pt;}
.ws62{word-spacing:-1.064000pt;}
.wsd2{word-spacing:-1.040000pt;}
.wsfe{word-spacing:-1.013333pt;}
.ws50{word-spacing:-0.962667pt;}
.ws3f{word-spacing:-0.912000pt;}
.wsbc{word-spacing:-0.861333pt;}
.ws29{word-spacing:-0.810667pt;}
.wsee{word-spacing:-0.760000pt;}
.wse7{word-spacing:-0.709333pt;}
.ws109{word-spacing:-0.680000pt;}
.ws12{word-spacing:-0.608000pt;}
.ws3b{word-spacing:-0.600000pt;}
.ws2{word-spacing:-0.560000pt;}
.wseb{word-spacing:-0.557333pt;}
.ws10e{word-spacing:-0.506667pt;}
.wsaa{word-spacing:-0.456000pt;}
.wsd4{word-spacing:-0.405333pt;}
.ws1e{word-spacing:-0.400000pt;}
.wsb9{word-spacing:-0.360000pt;}
.ws42{word-spacing:-0.354667pt;}
.ws11d{word-spacing:-0.304000pt;}
.ws36{word-spacing:-0.253333pt;}
.ws55{word-spacing:-0.202667pt;}
.ws3c{word-spacing:-0.200000pt;}
.ws4f{word-spacing:-0.152000pt;}
.ws3a{word-spacing:-0.120000pt;}
.ws4b{word-spacing:-0.101333pt;}
.wsa2{word-spacing:-0.050667pt;}
.ws1{word-spacing:0.000000pt;}
.wsba{word-spacing:0.040000pt;}
.ws5f{word-spacing:0.101333pt;}
.ws6b{word-spacing:0.152000pt;}
.ws7a{word-spacing:0.202667pt;}
.ws14{word-spacing:0.253333pt;}
.wsf0{word-spacing:0.304000pt;}
.ws1f{word-spacing:0.354667pt;}
.ws86{word-spacing:0.405333pt;}
.ws104{word-spacing:0.456000pt;}
.wsc2{word-spacing:0.506667pt;}
.ws63{word-spacing:0.557333pt;}
.wsd1{word-spacing:0.600000pt;}
.wsc8{word-spacing:0.608000pt;}
.wsab{word-spacing:0.658667pt;}
.ws87{word-spacing:0.709333pt;}
.wsf{word-spacing:0.760000pt;}
.ws38{word-spacing:0.800000pt;}
.ws65{word-spacing:0.810667pt;}
.wsbb{word-spacing:0.840000pt;}
.ws7{word-spacing:0.861333pt;}
.wsef{word-spacing:0.912000pt;}
.wsb7{word-spacing:0.960000pt;}
.wsb{word-spacing:0.962667pt;}
.ws75{word-spacing:1.013333pt;}
.ws107{word-spacing:1.040000pt;}
.wse2{word-spacing:1.064000pt;}
.ws23{word-spacing:1.114667pt;}
.ws49{word-spacing:1.165333pt;}
.ws10a{word-spacing:1.216000pt;}
.wsf9{word-spacing:1.266667pt;}
.wsa6{word-spacing:1.317333pt;}
.ws83{word-spacing:1.368000pt;}
.ws39{word-spacing:1.400000pt;}
.ws17{word-spacing:1.418667pt;}
.ws105{word-spacing:1.469333pt;}
.wsd3{word-spacing:1.520000pt;}
.ws24{word-spacing:1.570667pt;}
.ws44{word-spacing:1.621333pt;}
.ws4a{word-spacing:1.672000pt;}
.ws48{word-spacing:1.722667pt;}
.ws66{word-spacing:1.773333pt;}
.ws64{word-spacing:1.824000pt;}
.wsb8{word-spacing:1.920000pt;}
.wsda{word-spacing:1.925333pt;}
.ws8e{word-spacing:1.976000pt;}
.ws15{word-spacing:2.026667pt;}
.wscd{word-spacing:2.077333pt;}
.ws8{word-spacing:2.128000pt;}
.ws8c{word-spacing:2.178667pt;}
.ws41{word-spacing:2.229333pt;}
.ws88{word-spacing:2.280000pt;}
.ws68{word-spacing:2.330667pt;}
.wsb6{word-spacing:2.381333pt;}
.ws73{word-spacing:2.432000pt;}
.wsf2{word-spacing:2.482667pt;}
.ws51{word-spacing:2.533333pt;}
.ws4{word-spacing:2.584000pt;}
.ws5e{word-spacing:2.634667pt;}
.wsc9{word-spacing:2.685333pt;}
.ws6e{word-spacing:2.736000pt;}
.ws6c{word-spacing:2.786667pt;}
.wse{word-spacing:2.837333pt;}
.ws98{word-spacing:2.888000pt;}
.ws4c{word-spacing:2.938667pt;}
.ws85{word-spacing:2.989333pt;}
.wsb1{word-spacing:3.040000pt;}
.wse8{word-spacing:3.090667pt;}
.wsb5{word-spacing:3.141333pt;}
.ws5{word-spacing:3.192000pt;}
.ws16{word-spacing:3.242667pt;}
.wsf5{word-spacing:3.394667pt;}
.ws52{word-spacing:3.445333pt;}
.ws77{word-spacing:3.496000pt;}
.ws8f{word-spacing:3.597333pt;}
.ws6d{word-spacing:3.648000pt;}
.wsfb{word-spacing:3.698667pt;}
.ws40{word-spacing:3.749333pt;}
.ws2f{word-spacing:3.800000pt;}
.ws106{word-spacing:3.840000pt;}
.ws6{word-spacing:3.850667pt;}
.ws2c{word-spacing:3.901333pt;}
.ws11e{word-spacing:3.952000pt;}
.ws7f{word-spacing:4.002667pt;}
.ws82{word-spacing:4.053333pt;}
.ws99{word-spacing:4.104000pt;}
.ws7c{word-spacing:4.154667pt;}
.ws33{word-spacing:4.205333pt;}
.ws5c{word-spacing:4.256000pt;}
.wsdb{word-spacing:4.306667pt;}
.ws76{word-spacing:4.357333pt;}
.wsd{word-spacing:4.408000pt;}
.wsf3{word-spacing:4.458667pt;}
.ws7d{word-spacing:4.509333pt;}
.ws10b{word-spacing:4.560000pt;}
.ws46{word-spacing:4.610667pt;}
.ws81{word-spacing:4.661333pt;}
.ws11b{word-spacing:4.712000pt;}
.ws95{word-spacing:4.762667pt;}
.ws47{word-spacing:4.813333pt;}
.ws59{word-spacing:4.864000pt;}
.wsde{word-spacing:4.914667pt;}
.ws35{word-spacing:4.965333pt;}
.ws21{word-spacing:5.016000pt;}
.ws71{word-spacing:5.066667pt;}
.wsc6{word-spacing:5.117333pt;}
.ws114{word-spacing:5.168000pt;}
.ws57{word-spacing:5.269333pt;}
.ws78{word-spacing:5.320000pt;}
.ws79{word-spacing:5.370667pt;}
.wsa7{word-spacing:5.421333pt;}
.ws26{word-spacing:5.522667pt;}
.ws28{word-spacing:5.573333pt;}
.wsa{word-spacing:5.674667pt;}
.ws2e{word-spacing:5.725333pt;}
.ws2d{word-spacing:5.877333pt;}
.ws31{word-spacing:5.928000pt;}
.wsb3{word-spacing:5.978667pt;}
.ws10{word-spacing:6.029333pt;}
.ws20{word-spacing:6.080000pt;}
.ws53{word-spacing:6.130667pt;}
.ws6f{word-spacing:6.181333pt;}
.wsae{word-spacing:6.232000pt;}
.ws34{word-spacing:6.282667pt;}
.ws111{word-spacing:6.333333pt;}
.wsc4{word-spacing:6.384000pt;}
.ws27{word-spacing:6.536000pt;}
.ws22{word-spacing:6.586667pt;}
.ws30{word-spacing:6.637333pt;}
.ws13{word-spacing:6.688000pt;}
.wsc5{word-spacing:6.738667pt;}
.ws80{word-spacing:6.789333pt;}
.ws97{word-spacing:6.840000pt;}
.ws9{word-spacing:6.890667pt;}
.ws32{word-spacing:6.941333pt;}
.ws94{word-spacing:6.992000pt;}
.ws45{word-spacing:7.042667pt;}
.wsf6{word-spacing:7.144000pt;}
.wsd9{word-spacing:7.194667pt;}
.ws113{word-spacing:7.296000pt;}
.ws5d{word-spacing:7.346667pt;}
.wsbe{word-spacing:7.397333pt;}
.ws118{word-spacing:7.448000pt;}
.ws101{word-spacing:7.498667pt;}
.ws93{word-spacing:7.600000pt;}
.ws100{word-spacing:7.650667pt;}
.wse1{word-spacing:7.752000pt;}
.wsfd{word-spacing:7.853333pt;}
.ws102{word-spacing:7.904000pt;}
.wsb4{word-spacing:7.954667pt;}
.ws4d{word-spacing:8.005333pt;}
.wse6{word-spacing:8.056000pt;}
.wsa4{word-spacing:8.106667pt;}
.wsfa{word-spacing:8.157333pt;}
.wsdc{word-spacing:8.208000pt;}
.ws9c{word-spacing:8.304000pt;}
.wse9{word-spacing:8.309333pt;}
.wsdf{word-spacing:8.360000pt;}
.wsc1{word-spacing:8.461333pt;}
.wsec{word-spacing:8.613333pt;}
.ws121{word-spacing:8.664000pt;}
.wsf7{word-spacing:8.765333pt;}
.wsdd{word-spacing:8.917333pt;}
.wsca{word-spacing:9.018667pt;}
.wsa8{word-spacing:9.069333pt;}
.ws9b{word-spacing:9.168000pt;}
.ws11c{word-spacing:9.170667pt;}
.wsa5{word-spacing:9.272000pt;}
.wse4{word-spacing:9.322667pt;}
.ws11f{word-spacing:9.373333pt;}
.wsfc{word-spacing:9.626667pt;}
.wsf1{word-spacing:9.677333pt;}
.ws10d{word-spacing:9.728000pt;}
.wsed{word-spacing:9.880000pt;}
.ws11a{word-spacing:10.032000pt;}
.wsd0{word-spacing:10.133333pt;}
.ws7e{word-spacing:10.184000pt;}
.ws10c{word-spacing:10.285333pt;}
.ws119{word-spacing:10.336000pt;}
.ws74{word-spacing:10.437333pt;}
.ws120{word-spacing:10.488000pt;}
.wsd5{word-spacing:10.538667pt;}
.wsc0{word-spacing:11.045333pt;}
.wsc7{word-spacing:11.096000pt;}
.wscf{word-spacing:11.146667pt;}
.ws103{word-spacing:11.197333pt;}
.wsaf{word-spacing:11.349333pt;}
.wsea{word-spacing:11.400000pt;}
.ws6a{word-spacing:11.552000pt;}
.wsf4{word-spacing:11.602667pt;}
.wsb0{word-spacing:11.906667pt;}
.wsbd{word-spacing:12.109333pt;}
.ws4e{word-spacing:12.464000pt;}
.wsbf{word-spacing:12.514667pt;}
.wsce{word-spacing:12.616000pt;}
.wse3{word-spacing:12.869333pt;}
.wsad{word-spacing:13.224000pt;}
.ws122{word-spacing:13.781333pt;}
.wsd8{word-spacing:13.832000pt;}
.wse0{word-spacing:14.186667pt;}
.wsc{word-spacing:15.149333pt;}
.ws84{word-spacing:15.453333pt;}
.wsd6{word-spacing:16.365333pt;}
.wsac{word-spacing:17.682667pt;}
.wsd7{word-spacing:17.936000pt;}
.wsb2{word-spacing:24.168000pt;}
.ws60{word-spacing:87.120000pt;}
.ws7b{word-spacing:553.619200pt;}
.ws3d{word-spacing:577.619200pt;}
._d{margin-left:-7.760000pt;}
._1{margin-left:-6.650133pt;}
._3{margin-left:-4.810133pt;}
._2{margin-left:-3.440000pt;}
._0{margin-left:-1.909867pt;}
._5{margin-left:-0.984000pt;}
._4{width:1.609067pt;}
._f{width:2.581600pt;}
._e{width:3.661867pt;}
._8{width:4.739467pt;}
._c{width:9.035733pt;}
._10{width:27.360000pt;}
._b{width:29.800000pt;}
._9{width:31.200000pt;}
._a{width:32.320000pt;}
._7{width:42.784000pt;}
._6{width:43.758933pt;}
.fs7{font-size:29.538667pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.613333pt;}
.y59{bottom:49.890400pt;}
.y2a{bottom:50.369200pt;}
.y28{bottom:87.881333pt;}
.y83{bottom:101.837867pt;}
.y57{bottom:102.047333pt;}
.y27{bottom:103.220667pt;}
.y91{bottom:111.361733pt;}
.y56{bottom:114.047333pt;}
.yc6{bottom:115.087333pt;}
.y82{bottom:117.177200pt;}
.y26{bottom:118.560000pt;}
.y55{bottom:126.047333pt;}
.y90{bottom:126.701067pt;}
.yc5{bottom:130.426667pt;}
.y81{bottom:132.516533pt;}
.y25{bottom:133.899333pt;}
.y54{bottom:138.047333pt;}
.y8f{bottom:142.040400pt;}
.yc4{bottom:145.766000pt;}
.y80{bottom:147.855867pt;}
.y107{bottom:147.867867pt;}
.yaf{bottom:147.891867pt;}
.y24{bottom:149.238667pt;}
.y53{bottom:150.047333pt;}
.y8e{bottom:157.379733pt;}
.yc3{bottom:161.105333pt;}
.y52{bottom:162.047333pt;}
.y7f{bottom:163.195200pt;}
.y106{bottom:163.207200pt;}
.yae{bottom:163.231200pt;}
.y23{bottom:164.578000pt;}
.y8d{bottom:172.719067pt;}
.y51{bottom:174.047333pt;}
.yc2{bottom:176.444667pt;}
.y7e{bottom:178.534533pt;}
.y105{bottom:178.546533pt;}
.yad{bottom:178.570533pt;}
.y22{bottom:179.917333pt;}
.y50{bottom:186.047333pt;}
.y8c{bottom:188.058400pt;}
.yc1{bottom:191.784000pt;}
.y7d{bottom:193.873867pt;}
.y104{bottom:193.885867pt;}
.yac{bottom:193.909867pt;}
.y21{bottom:195.256667pt;}
.y4f{bottom:198.047333pt;}
.y8b{bottom:203.397733pt;}
.yc0{bottom:207.123333pt;}
.y7c{bottom:209.213200pt;}
.y103{bottom:209.225200pt;}
.yab{bottom:209.249200pt;}
.y4e{bottom:210.047333pt;}
.y20{bottom:210.596000pt;}
.y8a{bottom:218.737067pt;}
.ybf{bottom:222.462667pt;}
.y7b{bottom:224.552533pt;}
.y102{bottom:224.564533pt;}
.yaa{bottom:224.588533pt;}
.y1f{bottom:225.935333pt;}
.ybe{bottom:237.802000pt;}
.y7a{bottom:239.891867pt;}
.y101{bottom:239.903867pt;}
.ya9{bottom:239.927867pt;}
.ye4{bottom:239.951867pt;}
.y1e{bottom:241.274667pt;}
.y89{bottom:252.737067pt;}
.ybd{bottom:253.141333pt;}
.y79{bottom:255.231200pt;}
.y100{bottom:255.243200pt;}
.ya8{bottom:255.267200pt;}
.ye3{bottom:255.291200pt;}
.ya6{bottom:255.333200pt;}
.y4d{bottom:255.423200pt;}
.y1d{bottom:256.614000pt;}
.ybc{bottom:268.480667pt;}
.y78{bottom:270.570533pt;}
.yff{bottom:270.582533pt;}
.ya7{bottom:270.606533pt;}
.ye2{bottom:270.630533pt;}
.ya5{bottom:270.672533pt;}
.y4c{bottom:270.762533pt;}
.y1c{bottom:271.953333pt;}
.y10c{bottom:283.427200pt;}
.ybb{bottom:283.820000pt;}
.y77{bottom:285.909867pt;}
.yfe{bottom:285.921867pt;}
.y4b{bottom:285.945867pt;}
.ye1{bottom:285.969867pt;}
.ya4{bottom:286.011867pt;}
.y1b{bottom:287.292667pt;}
.y10b{bottom:298.763200pt;}
.yba{bottom:299.159333pt;}
.y76{bottom:301.249200pt;}
.yfd{bottom:301.261200pt;}
.y4a{bottom:301.285200pt;}
.ye0{bottom:301.309200pt;}
.ya3{bottom:301.351200pt;}
.y1a{bottom:302.632000pt;}
.y10a{bottom:314.099200pt;}
.yb9{bottom:314.498667pt;}
.y75{bottom:316.588533pt;}
.yfc{bottom:316.600533pt;}
.y49{bottom:316.624533pt;}
.ydf{bottom:316.648533pt;}
.ya2{bottom:316.690533pt;}
.y19{bottom:317.971333pt;}
.y109{bottom:329.435200pt;}
.yb8{bottom:329.838000pt;}
.y74{bottom:331.927867pt;}
.yfb{bottom:331.939867pt;}
.y48{bottom:331.963867pt;}
.yde{bottom:331.987867pt;}
.ya1{bottom:332.029867pt;}
.y18{bottom:333.310667pt;}
.y88{bottom:344.760533pt;}
.yb7{bottom:345.177333pt;}
.y73{bottom:347.267200pt;}
.yfa{bottom:347.279200pt;}
.y47{bottom:347.303200pt;}
.ydd{bottom:347.327200pt;}
.ya0{bottom:347.369200pt;}
.y17{bottom:348.650000pt;}
.y87{bottom:360.096533pt;}
.yb6{bottom:360.516667pt;}
.y108{bottom:360.768533pt;}
.y72{bottom:362.606533pt;}
.yf9{bottom:362.618533pt;}
.y46{bottom:362.642533pt;}
.ydc{bottom:362.666533pt;}
.y9f{bottom:362.708533pt;}
.y16{bottom:363.989333pt;}
.y86{bottom:375.432533pt;}
.y71{bottom:377.945867pt;}
.yf8{bottom:377.957867pt;}
.y45{bottom:377.981867pt;}
.ydb{bottom:378.005867pt;}
.y9e{bottom:378.047867pt;}
.y15{bottom:379.328667pt;}
.y85{bottom:390.768533pt;}
.y70{bottom:393.285200pt;}
.yf7{bottom:393.297200pt;}
.y44{bottom:393.321200pt;}
.yda{bottom:393.345200pt;}
.y9d{bottom:393.387200pt;}
.yb5{bottom:394.516667pt;}
.y14{bottom:394.668000pt;}
.y6f{bottom:408.624533pt;}
.yf6{bottom:408.636533pt;}
.y43{bottom:408.660533pt;}
.yd9{bottom:408.684533pt;}
.y9c{bottom:408.726533pt;}
.y13{bottom:410.007333pt;}
.y84{bottom:422.101867pt;}
.y6e{bottom:423.963867pt;}
.yf5{bottom:423.975867pt;}
.y42{bottom:423.999867pt;}
.yd8{bottom:424.023867pt;}
.y9b{bottom:424.065867pt;}
.y12{bottom:425.346667pt;}
.y6d{bottom:439.303200pt;}
.yf4{bottom:439.315200pt;}
.y41{bottom:439.339200pt;}
.yd7{bottom:439.363200pt;}
.y9a{bottom:439.405200pt;}
.y6c{bottom:454.642533pt;}
.yf3{bottom:454.654533pt;}
.y40{bottom:454.678533pt;}
.yd6{bottom:454.702533pt;}
.y99{bottom:454.744533pt;}
.y6b{bottom:469.981867pt;}
.yf2{bottom:469.993867pt;}
.y3f{bottom:470.017867pt;}
.yd5{bottom:470.041867pt;}
.y98{bottom:470.083867pt;}
.y11{bottom:478.477867pt;}
.yb4{bottom:482.760533pt;}
.y6a{bottom:485.321200pt;}
.yf1{bottom:485.333200pt;}
.y3e{bottom:485.357200pt;}
.yd4{bottom:485.381200pt;}
.y97{bottom:485.423200pt;}
.y10{bottom:491.809867pt;}
.yb3{bottom:498.096533pt;}
.y69{bottom:500.660533pt;}
.yf0{bottom:500.672533pt;}
.y3d{bottom:500.696533pt;}
.yd3{bottom:500.720533pt;}
.y96{bottom:500.762533pt;}
.yf{bottom:508.922800pt;}
.yb2{bottom:513.432533pt;}
.y68{bottom:515.999867pt;}
.yef{bottom:516.011867pt;}
.y3c{bottom:516.035867pt;}
.yd2{bottom:516.059867pt;}
.y95{bottom:516.083867pt;}
.yb1{bottom:528.768533pt;}
.y67{bottom:531.339200pt;}
.yee{bottom:531.351200pt;}
.y3b{bottom:531.375200pt;}
.yd1{bottom:531.399200pt;}
.y94{bottom:531.423200pt;}
.ye{bottom:533.816533pt;}
.y66{bottom:546.678533pt;}
.yed{bottom:546.690533pt;}
.y3a{bottom:546.714533pt;}
.yd0{bottom:546.738533pt;}
.y93{bottom:546.762533pt;}
.yd{bottom:547.148533pt;}
.yb0{bottom:560.101867pt;}
.y65{bottom:562.017867pt;}
.yec{bottom:562.029867pt;}
.y39{bottom:562.053867pt;}
.ycf{bottom:562.077867pt;}
.y92{bottom:562.095867pt;}
.yc{bottom:564.261333pt;}
.y64{bottom:577.357200pt;}
.yeb{bottom:577.369200pt;}
.y38{bottom:577.393200pt;}
.yce{bottom:577.417200pt;}
.yb{bottom:589.155067pt;}
.y63{bottom:592.696533pt;}
.yea{bottom:592.708533pt;}
.y37{bottom:592.732533pt;}
.ycd{bottom:592.756533pt;}
.ya{bottom:602.487067pt;}
.y62{bottom:608.035867pt;}
.ye9{bottom:608.047867pt;}
.y36{bottom:608.071867pt;}
.ycc{bottom:608.095867pt;}
.y9{bottom:619.600000pt;}
.y61{bottom:623.375200pt;}
.ye8{bottom:623.387200pt;}
.y35{bottom:623.411200pt;}
.ycb{bottom:623.417200pt;}
.y60{bottom:638.714533pt;}
.ye7{bottom:638.726533pt;}
.y34{bottom:638.750533pt;}
.yca{bottom:638.756533pt;}
.y8{bottom:644.493733pt;}
.y5f{bottom:654.053867pt;}
.ye6{bottom:654.065867pt;}
.y33{bottom:654.089867pt;}
.yc9{bottom:654.095867pt;}
.y7{bottom:657.825733pt;}
.y5e{bottom:669.393200pt;}
.ye5{bottom:669.405200pt;}
.yc8{bottom:669.423200pt;}
.y32{bottom:669.429200pt;}
.y6{bottom:674.938533pt;}
.y5d{bottom:684.732533pt;}
.y31{bottom:684.744533pt;}
.yc7{bottom:684.762533pt;}
.y5{bottom:699.830933pt;}
.y5c{bottom:700.071867pt;}
.y30{bottom:700.083867pt;}
.y5b{bottom:715.411200pt;}
.y2f{bottom:715.423200pt;}
.y5a{bottom:730.750533pt;}
.y2e{bottom:730.762533pt;}
.y2d{bottom:746.089867pt;}
.y2c{bottom:761.429200pt;}
.y4{bottom:770.020400pt;}
.y2b{bottom:776.768533pt;}
.y3{bottom:787.353733pt;}
.y2{bottom:803.353733pt;}
.y58{bottom:815.234400pt;}
.y29{bottom:815.585067pt;}
.h4{height:32.000000pt;}
.h9{height:33.160000pt;}
.he{height:34.200000pt;}
.hf{height:35.370667pt;}
.hd{height:35.400000pt;}
.h7{height:41.040000pt;}
.h2{height:41.424000pt;}
.h8{height:43.320000pt;}
.h10{height:43.339200pt;}
.h13{height:43.344000pt;}
.ha{height:43.368000pt;}
.h14{height:43.392000pt;}
.hb{height:43.416000pt;}
.h16{height:43.440000pt;}
.h15{height:43.464000pt;}
.h12{height:43.632000pt;}
.hc{height:43.944000pt;}
.h11{height:46.566275pt;}
.h3{height:46.796875pt;}
.h6{height:64.437333pt;}
.h5{height:69.849412pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x15{left:56.692933pt;}
.xf{left:64.252000pt;}
.xa{left:78.990933pt;}
.x17{left:81.732267pt;}
.x16{left:83.153600pt;}
.x11{left:87.732267pt;}
.x10{left:90.712667pt;}
.x12{left:105.828800pt;}
.x7{left:107.628000pt;}
.x18{left:109.598133pt;}
.xb{left:128.646933pt;}
.x1a{left:140.954933pt;}
.x5{left:157.294133pt;}
.x2{left:178.382000pt;}
.xd{left:182.796000pt;}
.x8{left:185.268000pt;}
.x6{left:198.888533pt;}
.x19{left:200.640933pt;}
.x14{left:209.985733pt;}
.xc{left:237.164267pt;}
.xe{left:241.503867pt;}
.x9{left:260.142400pt;}
.x3{left:286.046933pt;}
.x1{left:307.091333pt;}
.x4{left:349.630933pt;}
.x13{left:420.023067pt;}
}




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