
    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_2a9bfaadb4aec9b3f04daa97.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1c3323feb5b9d8d9141069fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927000;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_bd35b2583f05477864b93a93.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913000;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_4f67aaed5e07cc45644b5d49.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_c3a92fcef704d6ed1cb41261.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_5e01e94dc0c9a94e41fd0fa3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973000;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_6d1488eb8759d5bd715a2380.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6d1488eb8759d5bd715a2380.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_91e1a014af9be1024930b8a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947000;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_e0b925156e3421fe6ead4134.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.986000px;}
.v1{vertical-align:17.982000px;}
.ls7{letter-spacing:-1.482000px;}
.ls5{letter-spacing:-1.083000px;}
.ls8{letter-spacing:-0.912000px;}
.ls10{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.630000px;}
.ls3{letter-spacing:-0.588000px;}
.lsc{letter-spacing:-0.585000px;}
.lse{letter-spacing:-0.450000px;}
.lsa{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.315000px;}
.ls9{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000384px;}
.ls0{letter-spacing:0.000408px;}
.ls6{letter-spacing:0.228000px;}
.ls4{letter-spacing:0.378000px;}
.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:-20.016000px;}
.ws45{word-spacing:-13.167000px;}
.ws1e{word-spacing:-12.939000px;}
.ws44{word-spacing:-12.597000px;}
.ws46{word-spacing:-12.369000px;}
.ws1f{word-spacing:-11.856000px;}
.ws84{word-spacing:-10.305000px;}
.ws85{word-spacing:-10.125000px;}
.ws0{word-spacing:-8.751996px;}
.ws1{word-spacing:-6.807108px;}
.ws6{word-spacing:-6.426000px;}
.ws22{word-spacing:-5.073000px;}
.ws11{word-spacing:-4.578000px;}
.ws76{word-spacing:-4.560000px;}
.ws91{word-spacing:-3.933000px;}
.ws7e{word-spacing:-3.819000px;}
.ws7f{word-spacing:-3.762000px;}
.ws12{word-spacing:-3.705000px;}
.ws48{word-spacing:-3.591000px;}
.ws90{word-spacing:-3.306000px;}
.ws2c{word-spacing:-3.249000px;}
.ws68{word-spacing:-3.078000px;}
.wse5{word-spacing:-3.015000px;}
.ws72{word-spacing:-2.964000px;}
.ws3d{word-spacing:-2.907000px;}
.ws75{word-spacing:-2.679000px;}
.ws25{word-spacing:-2.565000px;}
.ws6b{word-spacing:-2.280000px;}
.ws39{word-spacing:-2.223000px;}
.ws50{word-spacing:-2.109000px;}
.ws1d{word-spacing:-1.995000px;}
.ws83{word-spacing:-1.824000px;}
.wsda{word-spacing:-1.800000px;}
.ws67{word-spacing:-1.767000px;}
.ws5e{word-spacing:-1.710000px;}
.ws64{word-spacing:-1.596000px;}
.wse3{word-spacing:-1.440000px;}
.ws95{word-spacing:-1.425000px;}
.ws24{word-spacing:-1.368000px;}
.ws17{word-spacing:-1.254000px;}
.ws5{word-spacing:-1.176000px;}
.ws5d{word-spacing:-1.026000px;}
.ws15{word-spacing:-0.969000px;}
.ws8f{word-spacing:-0.912000px;}
.wsdb{word-spacing:-0.900000px;}
.ws27{word-spacing:-0.855000px;}
.wsad{word-spacing:-0.810000px;}
.wsa5{word-spacing:-0.798000px;}
.wse9{word-spacing:-0.765000px;}
.ws82{word-spacing:-0.741000px;}
.wse4{word-spacing:-0.720000px;}
.ws51{word-spacing:-0.684000px;}
.ws78{word-spacing:-0.627000px;}
.ws8c{word-spacing:-0.570000px;}
.wsbc{word-spacing:-0.540000px;}
.ws52{word-spacing:-0.513000px;}
.ws94{word-spacing:-0.399000px;}
.ws20{word-spacing:-0.378000px;}
.wsea{word-spacing:-0.315000px;}
.ws4c{word-spacing:-0.228000px;}
.ws3e{word-spacing:-0.057000px;}
.ws4{word-spacing:0.000000px;}
.wse1{word-spacing:0.135000px;}
.ws1c{word-spacing:0.171000px;}
.ws8{word-spacing:0.180000px;}
.ws2e{word-spacing:0.228000px;}
.wse0{word-spacing:0.315000px;}
.ws3b{word-spacing:0.342000px;}
.ws42{word-spacing:0.399000px;}
.ws77{word-spacing:0.513000px;}
.ws36{word-spacing:0.570000px;}
.ws9e{word-spacing:0.627000px;}
.ws69{word-spacing:0.741000px;}
.ws61{word-spacing:0.912000px;}
.ws99{word-spacing:1.026000px;}
.ws18{word-spacing:1.083000px;}
.wsbe{word-spacing:1.125000px;}
.ws2d{word-spacing:1.197000px;}
.ws70{word-spacing:1.254000px;}
.ws62{word-spacing:1.311000px;}
.ws31{word-spacing:1.368000px;}
.ws7{word-spacing:1.500000px;}
.wsdd{word-spacing:1.530000px;}
.ws1b{word-spacing:1.539000px;}
.ws96{word-spacing:1.596000px;}
.ws89{word-spacing:1.653000px;}
.wse{word-spacing:1.680000px;}
.ws8d{word-spacing:1.710000px;}
.ws34{word-spacing:1.995000px;}
.wsdc{word-spacing:2.025000px;}
.ws98{word-spacing:2.052000px;}
.wsbb{word-spacing:2.070000px;}
.ws8e{word-spacing:2.109000px;}
.wsec{word-spacing:2.205000px;}
.wsed{word-spacing:2.295000px;}
.ws37{word-spacing:2.337000px;}
.ws87{word-spacing:2.394000px;}
.ws60{word-spacing:2.451000px;}
.wse2{word-spacing:2.520000px;}
.ws2f{word-spacing:2.565000px;}
.wsb5{word-spacing:2.610000px;}
.ws26{word-spacing:2.622000px;}
.ws97{word-spacing:2.679000px;}
.ws10{word-spacing:2.700000px;}
.ws5c{word-spacing:2.907000px;}
.ws35{word-spacing:2.964000px;}
.wsaa{word-spacing:2.970000px;}
.ws66{word-spacing:3.135000px;}
.wsd6{word-spacing:3.285000px;}
.ws3c{word-spacing:3.306000px;}
.ws28{word-spacing:3.363000px;}
.wsee{word-spacing:3.375000px;}
.wscf{word-spacing:3.465000px;}
.ws57{word-spacing:3.477000px;}
.wsf{word-spacing:3.540000px;}
.wsae{word-spacing:3.555000px;}
.ws9d{word-spacing:3.591000px;}
.ws4e{word-spacing:3.648000px;}
.wsd2{word-spacing:3.735000px;}
.ws71{word-spacing:3.762000px;}
.ws47{word-spacing:3.819000px;}
.ws5f{word-spacing:3.876000px;}
.ws58{word-spacing:3.933000px;}
.ws65{word-spacing:3.990000px;}
.wsc6{word-spacing:4.140000px;}
.ws49{word-spacing:4.275000px;}
.ws81{word-spacing:4.389000px;}
.wsb4{word-spacing:4.455000px;}
.ws9a{word-spacing:4.503000px;}
.ws74{word-spacing:4.617000px;}
.ws6f{word-spacing:4.674000px;}
.wsa3{word-spacing:4.731000px;}
.ws13{word-spacing:4.788000px;}
.wsa{word-spacing:4.800000px;}
.wsde{word-spacing:4.815000px;}
.wsdf{word-spacing:4.860000px;}
.ws5b{word-spacing:4.902000px;}
.wsc8{word-spacing:4.950000px;}
.wsa4{word-spacing:4.959000px;}
.ws5a{word-spacing:5.073000px;}
.ws16{word-spacing:5.187000px;}
.wsb6{word-spacing:5.265000px;}
.wsc1{word-spacing:5.310000px;}
.wsb2{word-spacing:5.355000px;}
.ws14{word-spacing:5.472000px;}
.wsba{word-spacing:5.490000px;}
.wscb{word-spacing:5.535000px;}
.ws32{word-spacing:5.700000px;}
.ws3a{word-spacing:5.757000px;}
.ws92{word-spacing:5.928000px;}
.wseb{word-spacing:5.985000px;}
.wsbd{word-spacing:6.030000px;}
.ws7a{word-spacing:6.042000px;}
.wsb1{word-spacing:6.075000px;}
.ws7d{word-spacing:6.099000px;}
.ws9f{word-spacing:6.270000px;}
.ws9b{word-spacing:6.384000px;}
.wsd4{word-spacing:6.435000px;}
.ws19{word-spacing:6.441000px;}
.ws4d{word-spacing:6.498000px;}
.ws6e{word-spacing:6.555000px;}
.ws33{word-spacing:6.612000px;}
.wsa8{word-spacing:6.615000px;}
.wsd1{word-spacing:6.660000px;}
.ws80{word-spacing:6.669000px;}
.wsc9{word-spacing:6.840000px;}
.ws4b{word-spacing:6.897000px;}
.ws73{word-spacing:7.011000px;}
.wse6{word-spacing:7.155000px;}
.ws6c{word-spacing:7.182000px;}
.wsd5{word-spacing:7.200000px;}
.ws30{word-spacing:7.239000px;}
.ws63{word-spacing:7.296000px;}
.wsd0{word-spacing:7.380000px;}
.wsca{word-spacing:7.515000px;}
.ws93{word-spacing:7.524000px;}
.ws2b{word-spacing:7.695000px;}
.wsd9{word-spacing:7.740000px;}
.wsb{word-spacing:7.800000px;}
.wsc2{word-spacing:7.830000px;}
.wsd3{word-spacing:7.875000px;}
.ws8a{word-spacing:7.923000px;}
.ws79{word-spacing:8.037000px;}
.ws86{word-spacing:8.151000px;}
.ws23{word-spacing:8.208000px;}
.ws4f{word-spacing:8.322000px;}
.ws8b{word-spacing:8.379000px;}
.ws59{word-spacing:8.436000px;}
.ws29{word-spacing:8.493000px;}
.wsc{word-spacing:8.520000px;}
.ws54{word-spacing:8.607000px;}
.ws3f{word-spacing:8.721000px;}
.wsb9{word-spacing:8.955000px;}
.ws1a{word-spacing:9.177000px;}
.wsa6{word-spacing:9.225000px;}
.ws3{word-spacing:9.324000px;}
.ws40{word-spacing:9.348000px;}
.wsc4{word-spacing:9.405000px;}
.ws7b{word-spacing:9.519000px;}
.wsc7{word-spacing:9.630000px;}
.ws88{word-spacing:9.747000px;}
.wsa0{word-spacing:9.918000px;}
.ws6d{word-spacing:10.032000px;}
.ws56{word-spacing:10.089000px;}
.wsd7{word-spacing:10.665000px;}
.ws38{word-spacing:10.773000px;}
.ws9{word-spacing:10.800000px;}
.wse7{word-spacing:11.070000px;}
.wse8{word-spacing:11.160000px;}
.ws53{word-spacing:11.172000px;}
.ws6a{word-spacing:11.457000px;}
.wsa2{word-spacing:12.426000px;}
.wsd{word-spacing:12.600000px;}
.ws7c{word-spacing:12.711000px;}
.ws41{word-spacing:12.996000px;}
.ws55{word-spacing:13.452000px;}
.wsab{word-spacing:14.220000px;}
.wscd{word-spacing:14.805000px;}
.ws21{word-spacing:14.820000px;}
.wsce{word-spacing:14.940000px;}
.ws9c{word-spacing:14.991000px;}
.wscc{word-spacing:16.155000px;}
.wsb8{word-spacing:16.245000px;}
.wsa9{word-spacing:16.335000px;}
.wsd8{word-spacing:16.560000px;}
.wsb7{word-spacing:16.740000px;}
.wsc3{word-spacing:18.495000px;}
.wsa1{word-spacing:18.696000px;}
.wsbf{word-spacing:18.855000px;}
.wsc0{word-spacing:19.035000px;}
.wsaf{word-spacing:20.025000px;}
.wsb0{word-spacing:20.205000px;}
.wsa7{word-spacing:21.150000px;}
.ws2a{word-spacing:21.489000px;}
.wsc5{word-spacing:21.690000px;}
.ws4a{word-spacing:23.085000px;}
.ws43{word-spacing:23.484000px;}
.wsac{word-spacing:23.580000px;}
.wsb3{word-spacing:25.110000px;}
._2{margin-left:-1533.882000px;}
._12{margin-left:-13.680000px;}
._5{margin-left:-12.432000px;}
._0{margin-left:-10.500000px;}
._6{margin-left:-7.812000px;}
._8{margin-left:-6.426216px;}
._7{margin-left:-4.968000px;}
._3{margin-left:-3.864000px;}
._1{margin-left:-2.310000px;}
._9{margin-left:-1.080000px;}
._a{width:1.170000px;}
._b{width:2.187000px;}
._f{width:3.677700px;}
._16{width:5.410500px;}
._e{width:6.726000px;}
._10{width:8.083800px;}
._17{width:9.639000px;}
._4{width:11.424000px;}
._13{width:14.224500px;}
._15{width:16.650000px;}
._11{width:20.385000px;}
._14{width:25.374000px;}
._d{width:1560.300000px;}
._c{width:2201.032800px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs4{font-size:24.486000px;}
.fs3{font-size:31.482000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:48.041400px;}
.y5{bottom:48.044700px;}
.y23{bottom:99.682350px;}
.y49{bottom:99.701250px;}
.y4f{bottom:106.275900px;}
.y7f{bottom:108.417000px;}
.y94{bottom:111.267000px;}
.y10b{bottom:112.968300px;}
.yfd{bottom:113.148300px;}
.y22{bottom:114.686850px;}
.y48{bottom:116.958000px;}
.y4e{bottom:120.524400px;}
.y7e{bottom:122.665500px;}
.y93{bottom:125.515500px;}
.y10a{bottom:127.222050px;}
.yfc{bottom:127.402050px;}
.y21{bottom:129.691350px;}
.y47{bottom:134.214750px;}
.y4d{bottom:134.772900px;}
.y7d{bottom:136.914000px;}
.y92{bottom:139.764000px;}
.y109{bottom:141.475800px;}
.yfb{bottom:141.655800px;}
.y20{bottom:144.695850px;}
.y4c{bottom:149.021400px;}
.y46{bottom:151.471500px;}
.y108{bottom:155.729550px;}
.yfa{bottom:155.909550px;}
.y1f{bottom:159.700350px;}
.y4b{bottom:163.269900px;}
.y45{bottom:168.728250px;}
.y107{bottom:169.983300px;}
.yf9{bottom:170.163300px;}
.y1e{bottom:174.704850px;}
.y4a{bottom:177.518400px;}
.y106{bottom:184.237050px;}
.yf8{bottom:184.417050px;}
.y44{bottom:185.985000px;}
.y1d{bottom:189.709350px;}
.y105{bottom:198.490800px;}
.yf7{bottom:198.670800px;}
.y43{bottom:203.241750px;}
.y1c{bottom:204.713850px;}
.y104{bottom:212.744550px;}
.yf6{bottom:212.924550px;}
.y1b{bottom:219.718350px;}
.y42{bottom:220.498500px;}
.y103{bottom:226.998300px;}
.yf5{bottom:227.178300px;}
.y1a{bottom:234.722850px;}
.y41{bottom:237.755250px;}
.y102{bottom:241.252050px;}
.yf4{bottom:241.432050px;}
.y19{bottom:249.727350px;}
.y40{bottom:255.012000px;}
.y101{bottom:255.505800px;}
.yf3{bottom:255.685800px;}
.y100{bottom:269.759550px;}
.yf2{bottom:269.939550px;}
.y18{bottom:271.105350px;}
.y3f{bottom:272.268750px;}
.yff{bottom:284.013300px;}
.y17{bottom:286.109850px;}
.y3e{bottom:289.525500px;}
.yf1{bottom:296.939550px;}
.yfe{bottom:298.267050px;}
.y16{bottom:301.114350px;}
.y3d{bottom:306.782250px;}
.y15{bottom:322.492350px;}
.y3c{bottom:324.039000px;}
.y14{bottom:337.496850px;}
.y13{bottom:352.501350px;}
.y3b{bottom:354.039000px;}
.yd2{bottom:358.529100px;}
.y12{bottom:367.505850px;}
.yd1{bottom:375.785850px;}
.y11{bottom:382.510350px;}
.y3a{bottom:393.039000px;}
.yd0{bottom:393.042600px;}
.y10{bottom:418.136850px;}
.y39{bottom:421.539000px;}
.ycf{bottom:423.042600px;}
.yf{bottom:433.141350px;}
.y38{bottom:442.539000px;}
.ye{bottom:448.145850px;}
.yce{bottom:461.806350px;}
.yf0{bottom:462.035850px;}
.y37{bottom:463.539000px;}
.yd{bottom:469.523850px;}
.ycd{bottom:479.063100px;}
.yef{bottom:479.292600px;}
.yc{bottom:484.528350px;}
.y36{bottom:484.539000px;}
.ycc{bottom:496.319850px;}
.yb{bottom:499.532850px;}
.y35{bottom:505.539000px;}
.yee{bottom:509.292600px;}
.ycb{bottom:513.576600px;}
.ya{bottom:514.537350px;}
.y34{bottom:526.539000px;}
.y9{bottom:529.541850px;}
.yca{bottom:530.833350px;}
.y33{bottom:547.539000px;}
.ybb{bottom:548.018850px;}
.yc9{bottom:548.090100px;}
.y9c{bottom:548.218350px;}
.yed{bottom:548.245350px;}
.y8{bottom:550.919850px;}
.yba{bottom:565.275600px;}
.yc8{bottom:565.346850px;}
.y9b{bottom:565.475100px;}
.yec{bottom:565.502100px;}
.y7{bottom:565.924350px;}
.y32{bottom:568.539000px;}
.y6{bottom:580.928850px;}
.yb9{bottom:582.532350px;}
.yc7{bottom:582.603600px;}
.y9a{bottom:582.731850px;}
.yeb{bottom:582.758850px;}
.y31{bottom:589.539000px;}
.yb8{bottom:599.789100px;}
.yc6{bottom:599.860350px;}
.y99{bottom:599.988600px;}
.yea{bottom:600.015600px;}
.y30{bottom:610.539000px;}
.y14a{bottom:611.763600px;}
.y12c{bottom:611.853600px;}
.yb7{bottom:617.045850px;}
.yc5{bottom:617.117100px;}
.y98{bottom:617.245350px;}
.ye9{bottom:617.272350px;}
.y149{bottom:626.017350px;}
.y12b{bottom:626.107350px;}
.y2f{bottom:631.539000px;}
.yb6{bottom:634.302600px;}
.yc4{bottom:634.373850px;}
.y97{bottom:634.502100px;}
.ye8{bottom:634.529100px;}
.y148{bottom:640.271100px;}
.y12a{bottom:640.361100px;}
.yb5{bottom:651.559350px;}
.yc3{bottom:651.630600px;}
.y96{bottom:651.758850px;}
.ye7{bottom:651.785850px;}
.y147{bottom:654.524850px;}
.y129{bottom:654.614850px;}
.y146{bottom:668.778600px;}
.yb4{bottom:668.816100px;}
.y128{bottom:668.868600px;}
.yc2{bottom:668.887350px;}
.y95{bottom:669.015600px;}
.ye6{bottom:669.042600px;}
.y2e{bottom:673.794300px;}
.y145{bottom:683.032350px;}
.y127{bottom:683.122350px;}
.yb3{bottom:686.072850px;}
.y7c{bottom:686.129850px;}
.yc1{bottom:686.144100px;}
.y65{bottom:686.272350px;}
.y2d{bottom:688.794300px;}
.y144{bottom:697.286100px;}
.y126{bottom:697.376100px;}
.ye5{bottom:699.042600px;}
.yb2{bottom:703.329600px;}
.y7b{bottom:703.386600px;}
.yc0{bottom:703.400850px;}
.y64{bottom:703.529100px;}
.y2c{bottom:703.794300px;}
.y125{bottom:711.629850px;}
.yb1{bottom:720.586350px;}
.y7a{bottom:720.643350px;}
.ybf{bottom:720.657600px;}
.y63{bottom:720.785850px;}
.y2b{bottom:722.295300px;}
.y124{bottom:725.883600px;}
.y143{bottom:728.032350px;}
.yb0{bottom:737.843100px;}
.y79{bottom:737.900100px;}
.ybe{bottom:737.914350px;}
.ye4{bottom:738.008850px;}
.y62{bottom:738.042600px;}
.y123{bottom:740.137350px;}
.y2a{bottom:746.551650px;}
.y142{bottom:752.028600px;}
.y122{bottom:754.391100px;}
.yaf{bottom:755.099850px;}
.y78{bottom:755.156850px;}
.ybd{bottom:755.171100px;}
.ye3{bottom:755.265600px;}
.y29{bottom:763.804650px;}
.y141{bottom:766.282350px;}
.y61{bottom:768.042600px;}
.y121{bottom:768.644850px;}
.yae{bottom:772.356600px;}
.y77{bottom:772.413600px;}
.ybc{bottom:772.427850px;}
.ye2{bottom:772.522350px;}
.y120{bottom:782.898600px;}
.y91{bottom:789.570600px;}
.yad{bottom:789.613350px;}
.y76{bottom:789.670350px;}
.y80{bottom:789.684600px;}
.ye1{bottom:789.779100px;}
.y140{bottom:797.028600px;}
.y11f{bottom:797.152350px;}
.y28{bottom:802.344600px;}
.y90{bottom:806.827350px;}
.yac{bottom:806.870100px;}
.y75{bottom:806.927100px;}
.y60{bottom:806.941350px;}
.ye0{bottom:807.035850px;}
.y13f{bottom:811.282350px;}
.y11e{bottom:811.406100px;}
.y8f{bottom:824.084100px;}
.yab{bottom:824.126850px;}
.y74{bottom:824.183850px;}
.y5f{bottom:824.198100px;}
.ydf{bottom:824.292600px;}
.y13e{bottom:825.536100px;}
.y11d{bottom:825.659850px;}
.y27{bottom:836.837100px;}
.y13d{bottom:839.789850px;}
.y11c{bottom:839.913600px;}
.y8e{bottom:841.340850px;}
.yaa{bottom:841.383600px;}
.y73{bottom:841.440600px;}
.y5e{bottom:841.454850px;}
.y13c{bottom:854.043600px;}
.y11b{bottom:854.167350px;}
.yde{bottom:854.292600px;}
.y8d{bottom:858.597600px;}
.ya9{bottom:858.640350px;}
.y72{bottom:858.697350px;}
.y5d{bottom:858.711600px;}
.y13b{bottom:868.297350px;}
.y11a{bottom:868.421100px;}
.y26{bottom:871.329600px;}
.y8c{bottom:875.854350px;}
.ya8{bottom:875.897100px;}
.y71{bottom:875.954100px;}
.y5c{bottom:875.968350px;}
.y13a{bottom:882.551100px;}
.y119{bottom:882.674850px;}
.y8b{bottom:893.111100px;}
.ya7{bottom:893.153850px;}
.y70{bottom:893.210850px;}
.ydd{bottom:893.217600px;}
.y5b{bottom:893.225100px;}
.y139{bottom:896.804850px;}
.y118{bottom:896.928600px;}
.y25{bottom:905.822100px;}
.y8a{bottom:910.367850px;}
.ya6{bottom:910.410600px;}
.y6f{bottom:910.467600px;}
.ydc{bottom:910.474350px;}
.y5a{bottom:910.481850px;}
.y138{bottom:911.058600px;}
.y117{bottom:911.182350px;}
.y137{bottom:925.312350px;}
.y116{bottom:925.436100px;}
.y89{bottom:927.624600px;}
.ya5{bottom:927.667350px;}
.y6e{bottom:927.724350px;}
.ydb{bottom:927.731100px;}
.y59{bottom:927.738600px;}
.y136{bottom:939.566100px;}
.y115{bottom:939.689850px;}
.y24{bottom:940.314600px;}
.y88{bottom:944.881350px;}
.ya4{bottom:944.924100px;}
.y6d{bottom:944.981100px;}
.yda{bottom:944.987850px;}
.y58{bottom:944.995350px;}
.y135{bottom:953.819850px;}
.y114{bottom:953.943600px;}
.y87{bottom:962.138100px;}
.ya3{bottom:962.180850px;}
.y6c{bottom:962.237850px;}
.yd9{bottom:962.244600px;}
.y57{bottom:962.252100px;}
.y134{bottom:968.073600px;}
.y113{bottom:968.197350px;}
.y86{bottom:979.394850px;}
.ya2{bottom:979.437600px;}
.y6b{bottom:979.494600px;}
.yd8{bottom:979.501350px;}
.y56{bottom:979.508850px;}
.y133{bottom:982.327350px;}
.y112{bottom:982.451100px;}
.y132{bottom:996.581100px;}
.y85{bottom:996.651600px;}
.ya1{bottom:996.694350px;}
.y111{bottom:996.704850px;}
.y6a{bottom:996.751350px;}
.yd7{bottom:996.758100px;}
.y55{bottom:996.765600px;}
.y131{bottom:1010.834850px;}
.y110{bottom:1010.958600px;}
.y84{bottom:1013.908350px;}
.ya0{bottom:1013.951100px;}
.y69{bottom:1014.008100px;}
.yd6{bottom:1014.014850px;}
.y54{bottom:1014.022350px;}
.y130{bottom:1025.088600px;}
.y10f{bottom:1025.212350px;}
.y83{bottom:1031.165100px;}
.y9f{bottom:1031.207850px;}
.y68{bottom:1031.264850px;}
.yd5{bottom:1031.271600px;}
.y53{bottom:1031.279100px;}
.y12f{bottom:1039.342350px;}
.y10e{bottom:1039.466100px;}
.y82{bottom:1048.421850px;}
.y9e{bottom:1048.464600px;}
.y67{bottom:1048.521600px;}
.yd4{bottom:1048.528350px;}
.y52{bottom:1048.535850px;}
.y12e{bottom:1053.596100px;}
.y10d{bottom:1053.719850px;}
.y81{bottom:1065.678600px;}
.y9d{bottom:1065.721350px;}
.y66{bottom:1065.778350px;}
.yd3{bottom:1065.785100px;}
.y51{bottom:1065.792600px;}
.y12d{bottom:1067.849850px;}
.y10c{bottom:1067.973600px;}
.y4{bottom:1083.040200px;}
.y3{bottom:1095.041700px;}
.y2{bottom:1107.211200px;}
.y50{bottom:1117.919550px;}
.h8{height:17.850294px;}
.h4{height:30.618000px;}
.h3{height:30.702000px;}
.h9{height:31.854294px;}
.he{height:32.130000px;}
.hd{height:32.220000px;}
.h2{height:33.012000px;}
.hc{height:40.812000px;}
.h6{height:40.995342px;}
.h7{height:41.007342px;}
.ha{height:47.160000px;}
.hb{height:52.632000px;}
.h5{height:92.106000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:68.035650px;}
.x1a{left:72.011400px;}
.x22{left:73.416150px;}
.x1e{left:76.656000px;}
.x19{left:80.957400px;}
.x16{left:84.800400px;}
.xb{left:87.582900px;}
.x23{left:89.031150px;}
.x8{left:91.268400px;}
.x18{left:92.423400px;}
.x12{left:95.132400px;}
.x1b{left:97.085400px;}
.x14{left:101.946900px;}
.x13{left:107.973900px;}
.x17{left:119.639400px;}
.x10{left:120.846900px;}
.x11{left:135.987900px;}
.xa{left:140.261400px;}
.xe{left:143.946900px;}
.xd{left:147.474900px;}
.xf{left:149.816400px;}
.x9{left:171.603900px;}
.x7{left:175.478400px;}
.xc{left:179.562900px;}
.x6{left:187.941900px;}
.x15{left:195.522900px;}
.x1c{left:263.610300px;}
.x1d{left:280.867050px;}
.x1f{left:441.411750px;}
.x20{left:459.207750px;}
.x25{left:464.589900px;}
.x21{left:476.443500px;}
.x24{left:480.204900px;}
.x1{left:649.716000px;}
.x4{left:683.629650px;}
.x3{left:694.759650px;}
.x2{left:749.874150px;}
@media print{
.v2{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.432000pt;}
.v1{vertical-align:15.984000pt;}
.ls7{letter-spacing:-1.317333pt;}
.ls5{letter-spacing:-0.962667pt;}
.ls8{letter-spacing:-0.810667pt;}
.ls10{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:-0.522667pt;}
.lsc{letter-spacing:-0.520000pt;}
.lse{letter-spacing:-0.400000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.280000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000341pt;}
.ls0{letter-spacing:0.000363pt;}
.ls6{letter-spacing:0.202667pt;}
.ls4{letter-spacing:0.336000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws45{word-spacing:-11.704000pt;}
.ws1e{word-spacing:-11.501333pt;}
.ws44{word-spacing:-11.197333pt;}
.ws46{word-spacing:-10.994667pt;}
.ws1f{word-spacing:-10.538667pt;}
.ws84{word-spacing:-9.160000pt;}
.ws85{word-spacing:-9.000000pt;}
.ws0{word-spacing:-7.779552pt;}
.ws1{word-spacing:-6.050763pt;}
.ws6{word-spacing:-5.712000pt;}
.ws22{word-spacing:-4.509333pt;}
.ws11{word-spacing:-4.069333pt;}
.ws76{word-spacing:-4.053333pt;}
.ws91{word-spacing:-3.496000pt;}
.ws7e{word-spacing:-3.394667pt;}
.ws7f{word-spacing:-3.344000pt;}
.ws12{word-spacing:-3.293333pt;}
.ws48{word-spacing:-3.192000pt;}
.ws90{word-spacing:-2.938667pt;}
.ws2c{word-spacing:-2.888000pt;}
.ws68{word-spacing:-2.736000pt;}
.wse5{word-spacing:-2.680000pt;}
.ws72{word-spacing:-2.634667pt;}
.ws3d{word-spacing:-2.584000pt;}
.ws75{word-spacing:-2.381333pt;}
.ws25{word-spacing:-2.280000pt;}
.ws6b{word-spacing:-2.026667pt;}
.ws39{word-spacing:-1.976000pt;}
.ws50{word-spacing:-1.874667pt;}
.ws1d{word-spacing:-1.773333pt;}
.ws83{word-spacing:-1.621333pt;}
.wsda{word-spacing:-1.600000pt;}
.ws67{word-spacing:-1.570667pt;}
.ws5e{word-spacing:-1.520000pt;}
.ws64{word-spacing:-1.418667pt;}
.wse3{word-spacing:-1.280000pt;}
.ws95{word-spacing:-1.266667pt;}
.ws24{word-spacing:-1.216000pt;}
.ws17{word-spacing:-1.114667pt;}
.ws5{word-spacing:-1.045333pt;}
.ws5d{word-spacing:-0.912000pt;}
.ws15{word-spacing:-0.861333pt;}
.ws8f{word-spacing:-0.810667pt;}
.wsdb{word-spacing:-0.800000pt;}
.ws27{word-spacing:-0.760000pt;}
.wsad{word-spacing:-0.720000pt;}
.wsa5{word-spacing:-0.709333pt;}
.wse9{word-spacing:-0.680000pt;}
.ws82{word-spacing:-0.658667pt;}
.wse4{word-spacing:-0.640000pt;}
.ws51{word-spacing:-0.608000pt;}
.ws78{word-spacing:-0.557333pt;}
.ws8c{word-spacing:-0.506667pt;}
.wsbc{word-spacing:-0.480000pt;}
.ws52{word-spacing:-0.456000pt;}
.ws94{word-spacing:-0.354667pt;}
.ws20{word-spacing:-0.336000pt;}
.wsea{word-spacing:-0.280000pt;}
.ws4c{word-spacing:-0.202667pt;}
.ws3e{word-spacing:-0.050667pt;}
.ws4{word-spacing:0.000000pt;}
.wse1{word-spacing:0.120000pt;}
.ws1c{word-spacing:0.152000pt;}
.ws8{word-spacing:0.160000pt;}
.ws2e{word-spacing:0.202667pt;}
.wse0{word-spacing:0.280000pt;}
.ws3b{word-spacing:0.304000pt;}
.ws42{word-spacing:0.354667pt;}
.ws77{word-spacing:0.456000pt;}
.ws36{word-spacing:0.506667pt;}
.ws9e{word-spacing:0.557333pt;}
.ws69{word-spacing:0.658667pt;}
.ws61{word-spacing:0.810667pt;}
.ws99{word-spacing:0.912000pt;}
.ws18{word-spacing:0.962667pt;}
.wsbe{word-spacing:1.000000pt;}
.ws2d{word-spacing:1.064000pt;}
.ws70{word-spacing:1.114667pt;}
.ws62{word-spacing:1.165333pt;}
.ws31{word-spacing:1.216000pt;}
.ws7{word-spacing:1.333333pt;}
.wsdd{word-spacing:1.360000pt;}
.ws1b{word-spacing:1.368000pt;}
.ws96{word-spacing:1.418667pt;}
.ws89{word-spacing:1.469333pt;}
.wse{word-spacing:1.493333pt;}
.ws8d{word-spacing:1.520000pt;}
.ws34{word-spacing:1.773333pt;}
.wsdc{word-spacing:1.800000pt;}
.ws98{word-spacing:1.824000pt;}
.wsbb{word-spacing:1.840000pt;}
.ws8e{word-spacing:1.874667pt;}
.wsec{word-spacing:1.960000pt;}
.wsed{word-spacing:2.040000pt;}
.ws37{word-spacing:2.077333pt;}
.ws87{word-spacing:2.128000pt;}
.ws60{word-spacing:2.178667pt;}
.wse2{word-spacing:2.240000pt;}
.ws2f{word-spacing:2.280000pt;}
.wsb5{word-spacing:2.320000pt;}
.ws26{word-spacing:2.330667pt;}
.ws97{word-spacing:2.381333pt;}
.ws10{word-spacing:2.400000pt;}
.ws5c{word-spacing:2.584000pt;}
.ws35{word-spacing:2.634667pt;}
.wsaa{word-spacing:2.640000pt;}
.ws66{word-spacing:2.786667pt;}
.wsd6{word-spacing:2.920000pt;}
.ws3c{word-spacing:2.938667pt;}
.ws28{word-spacing:2.989333pt;}
.wsee{word-spacing:3.000000pt;}
.wscf{word-spacing:3.080000pt;}
.ws57{word-spacing:3.090667pt;}
.wsf{word-spacing:3.146667pt;}
.wsae{word-spacing:3.160000pt;}
.ws9d{word-spacing:3.192000pt;}
.ws4e{word-spacing:3.242667pt;}
.wsd2{word-spacing:3.320000pt;}
.ws71{word-spacing:3.344000pt;}
.ws47{word-spacing:3.394667pt;}
.ws5f{word-spacing:3.445333pt;}
.ws58{word-spacing:3.496000pt;}
.ws65{word-spacing:3.546667pt;}
.wsc6{word-spacing:3.680000pt;}
.ws49{word-spacing:3.800000pt;}
.ws81{word-spacing:3.901333pt;}
.wsb4{word-spacing:3.960000pt;}
.ws9a{word-spacing:4.002667pt;}
.ws74{word-spacing:4.104000pt;}
.ws6f{word-spacing:4.154667pt;}
.wsa3{word-spacing:4.205333pt;}
.ws13{word-spacing:4.256000pt;}
.wsa{word-spacing:4.266667pt;}
.wsde{word-spacing:4.280000pt;}
.wsdf{word-spacing:4.320000pt;}
.ws5b{word-spacing:4.357333pt;}
.wsc8{word-spacing:4.400000pt;}
.wsa4{word-spacing:4.408000pt;}
.ws5a{word-spacing:4.509333pt;}
.ws16{word-spacing:4.610667pt;}
.wsb6{word-spacing:4.680000pt;}
.wsc1{word-spacing:4.720000pt;}
.wsb2{word-spacing:4.760000pt;}
.ws14{word-spacing:4.864000pt;}
.wsba{word-spacing:4.880000pt;}
.wscb{word-spacing:4.920000pt;}
.ws32{word-spacing:5.066667pt;}
.ws3a{word-spacing:5.117333pt;}
.ws92{word-spacing:5.269333pt;}
.wseb{word-spacing:5.320000pt;}
.wsbd{word-spacing:5.360000pt;}
.ws7a{word-spacing:5.370667pt;}
.wsb1{word-spacing:5.400000pt;}
.ws7d{word-spacing:5.421333pt;}
.ws9f{word-spacing:5.573333pt;}
.ws9b{word-spacing:5.674667pt;}
.wsd4{word-spacing:5.720000pt;}
.ws19{word-spacing:5.725333pt;}
.ws4d{word-spacing:5.776000pt;}
.ws6e{word-spacing:5.826667pt;}
.ws33{word-spacing:5.877333pt;}
.wsa8{word-spacing:5.880000pt;}
.wsd1{word-spacing:5.920000pt;}
.ws80{word-spacing:5.928000pt;}
.wsc9{word-spacing:6.080000pt;}
.ws4b{word-spacing:6.130667pt;}
.ws73{word-spacing:6.232000pt;}
.wse6{word-spacing:6.360000pt;}
.ws6c{word-spacing:6.384000pt;}
.wsd5{word-spacing:6.400000pt;}
.ws30{word-spacing:6.434667pt;}
.ws63{word-spacing:6.485333pt;}
.wsd0{word-spacing:6.560000pt;}
.wsca{word-spacing:6.680000pt;}
.ws93{word-spacing:6.688000pt;}
.ws2b{word-spacing:6.840000pt;}
.wsd9{word-spacing:6.880000pt;}
.wsb{word-spacing:6.933333pt;}
.wsc2{word-spacing:6.960000pt;}
.wsd3{word-spacing:7.000000pt;}
.ws8a{word-spacing:7.042667pt;}
.ws79{word-spacing:7.144000pt;}
.ws86{word-spacing:7.245333pt;}
.ws23{word-spacing:7.296000pt;}
.ws4f{word-spacing:7.397333pt;}
.ws8b{word-spacing:7.448000pt;}
.ws59{word-spacing:7.498667pt;}
.ws29{word-spacing:7.549333pt;}
.wsc{word-spacing:7.573333pt;}
.ws54{word-spacing:7.650667pt;}
.ws3f{word-spacing:7.752000pt;}
.wsb9{word-spacing:7.960000pt;}
.ws1a{word-spacing:8.157333pt;}
.wsa6{word-spacing:8.200000pt;}
.ws3{word-spacing:8.288000pt;}
.ws40{word-spacing:8.309333pt;}
.wsc4{word-spacing:8.360000pt;}
.ws7b{word-spacing:8.461333pt;}
.wsc7{word-spacing:8.560000pt;}
.ws88{word-spacing:8.664000pt;}
.wsa0{word-spacing:8.816000pt;}
.ws6d{word-spacing:8.917333pt;}
.ws56{word-spacing:8.968000pt;}
.wsd7{word-spacing:9.480000pt;}
.ws38{word-spacing:9.576000pt;}
.ws9{word-spacing:9.600000pt;}
.wse7{word-spacing:9.840000pt;}
.wse8{word-spacing:9.920000pt;}
.ws53{word-spacing:9.930667pt;}
.ws6a{word-spacing:10.184000pt;}
.wsa2{word-spacing:11.045333pt;}
.wsd{word-spacing:11.200000pt;}
.ws7c{word-spacing:11.298667pt;}
.ws41{word-spacing:11.552000pt;}
.ws55{word-spacing:11.957333pt;}
.wsab{word-spacing:12.640000pt;}
.wscd{word-spacing:13.160000pt;}
.ws21{word-spacing:13.173333pt;}
.wsce{word-spacing:13.280000pt;}
.ws9c{word-spacing:13.325333pt;}
.wscc{word-spacing:14.360000pt;}
.wsb8{word-spacing:14.440000pt;}
.wsa9{word-spacing:14.520000pt;}
.wsd8{word-spacing:14.720000pt;}
.wsb7{word-spacing:14.880000pt;}
.wsc3{word-spacing:16.440000pt;}
.wsa1{word-spacing:16.618667pt;}
.wsbf{word-spacing:16.760000pt;}
.wsc0{word-spacing:16.920000pt;}
.wsaf{word-spacing:17.800000pt;}
.wsb0{word-spacing:17.960000pt;}
.wsa7{word-spacing:18.800000pt;}
.ws2a{word-spacing:19.101333pt;}
.wsc5{word-spacing:19.280000pt;}
.ws4a{word-spacing:20.520000pt;}
.ws43{word-spacing:20.874667pt;}
.wsac{word-spacing:20.960000pt;}
.wsb3{word-spacing:22.320000pt;}
._2{margin-left:-1363.450667pt;}
._12{margin-left:-12.160000pt;}
._5{margin-left:-11.050667pt;}
._0{margin-left:-9.333333pt;}
._6{margin-left:-6.944000pt;}
._8{margin-left:-5.712192pt;}
._7{margin-left:-4.416000pt;}
._3{margin-left:-3.434667pt;}
._1{margin-left:-2.053333pt;}
._9{margin-left:-0.960000pt;}
._a{width:1.040000pt;}
._b{width:1.944000pt;}
._f{width:3.269067pt;}
._16{width:4.809333pt;}
._e{width:5.978667pt;}
._10{width:7.185600pt;}
._17{width:8.568000pt;}
._4{width:10.154667pt;}
._13{width:12.644000pt;}
._15{width:14.800000pt;}
._11{width:18.120000pt;}
._14{width:22.554667pt;}
._d{width:1386.933333pt;}
._c{width:1956.473600pt;}
.fs4{font-size:21.765333pt;}
.fs3{font-size:27.984000pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:42.703467pt;}
.y5{bottom:42.706400pt;}
.y23{bottom:88.606533pt;}
.y49{bottom:88.623333pt;}
.y4f{bottom:94.467467pt;}
.y7f{bottom:96.370667pt;}
.y94{bottom:98.904000pt;}
.y10b{bottom:100.416267pt;}
.yfd{bottom:100.576267pt;}
.y22{bottom:101.943867pt;}
.y48{bottom:103.962667pt;}
.y4e{bottom:107.132800pt;}
.y7e{bottom:109.036000pt;}
.y93{bottom:111.569333pt;}
.y10a{bottom:113.086267pt;}
.yfc{bottom:113.246267pt;}
.y21{bottom:115.281200pt;}
.y47{bottom:119.302000pt;}
.y4d{bottom:119.798133pt;}
.y7d{bottom:121.701333pt;}
.y92{bottom:124.234667pt;}
.y109{bottom:125.756267pt;}
.yfb{bottom:125.916267pt;}
.y20{bottom:128.618533pt;}
.y4c{bottom:132.463467pt;}
.y46{bottom:134.641333pt;}
.y108{bottom:138.426267pt;}
.yfa{bottom:138.586267pt;}
.y1f{bottom:141.955867pt;}
.y4b{bottom:145.128800pt;}
.y45{bottom:149.980667pt;}
.y107{bottom:151.096267pt;}
.yf9{bottom:151.256267pt;}
.y1e{bottom:155.293200pt;}
.y4a{bottom:157.794133pt;}
.y106{bottom:163.766267pt;}
.yf8{bottom:163.926267pt;}
.y44{bottom:165.320000pt;}
.y1d{bottom:168.630533pt;}
.y105{bottom:176.436267pt;}
.yf7{bottom:176.596267pt;}
.y43{bottom:180.659333pt;}
.y1c{bottom:181.967867pt;}
.y104{bottom:189.106267pt;}
.yf6{bottom:189.266267pt;}
.y1b{bottom:195.305200pt;}
.y42{bottom:195.998667pt;}
.y103{bottom:201.776267pt;}
.yf5{bottom:201.936267pt;}
.y1a{bottom:208.642533pt;}
.y41{bottom:211.338000pt;}
.y102{bottom:214.446267pt;}
.yf4{bottom:214.606267pt;}
.y19{bottom:221.979867pt;}
.y40{bottom:226.677333pt;}
.y101{bottom:227.116267pt;}
.yf3{bottom:227.276267pt;}
.y100{bottom:239.786267pt;}
.yf2{bottom:239.946267pt;}
.y18{bottom:240.982533pt;}
.y3f{bottom:242.016667pt;}
.yff{bottom:252.456267pt;}
.y17{bottom:254.319867pt;}
.y3e{bottom:257.356000pt;}
.yf1{bottom:263.946267pt;}
.yfe{bottom:265.126267pt;}
.y16{bottom:267.657200pt;}
.y3d{bottom:272.695333pt;}
.y15{bottom:286.659867pt;}
.y3c{bottom:288.034667pt;}
.y14{bottom:299.997200pt;}
.y13{bottom:313.334533pt;}
.y3b{bottom:314.701333pt;}
.yd2{bottom:318.692533pt;}
.y12{bottom:326.671867pt;}
.yd1{bottom:334.031867pt;}
.y11{bottom:340.009200pt;}
.y3a{bottom:349.368000pt;}
.yd0{bottom:349.371200pt;}
.y10{bottom:371.677200pt;}
.y39{bottom:374.701333pt;}
.ycf{bottom:376.037867pt;}
.yf{bottom:385.014533pt;}
.y38{bottom:393.368000pt;}
.ye{bottom:398.351867pt;}
.yce{bottom:410.494533pt;}
.yf0{bottom:410.698533pt;}
.y37{bottom:412.034667pt;}
.yd{bottom:417.354533pt;}
.ycd{bottom:425.833867pt;}
.yef{bottom:426.037867pt;}
.yc{bottom:430.691867pt;}
.y36{bottom:430.701333pt;}
.ycc{bottom:441.173200pt;}
.yb{bottom:444.029200pt;}
.y35{bottom:449.368000pt;}
.yee{bottom:452.704533pt;}
.ycb{bottom:456.512533pt;}
.ya{bottom:457.366533pt;}
.y34{bottom:468.034667pt;}
.y9{bottom:470.703867pt;}
.yca{bottom:471.851867pt;}
.y33{bottom:486.701333pt;}
.ybb{bottom:487.127867pt;}
.yc9{bottom:487.191200pt;}
.y9c{bottom:487.305200pt;}
.yed{bottom:487.329200pt;}
.y8{bottom:489.706533pt;}
.yba{bottom:502.467200pt;}
.yc8{bottom:502.530533pt;}
.y9b{bottom:502.644533pt;}
.yec{bottom:502.668533pt;}
.y7{bottom:503.043867pt;}
.y32{bottom:505.368000pt;}
.y6{bottom:516.381200pt;}
.yb9{bottom:517.806533pt;}
.yc7{bottom:517.869867pt;}
.y9a{bottom:517.983867pt;}
.yeb{bottom:518.007867pt;}
.y31{bottom:524.034667pt;}
.yb8{bottom:533.145867pt;}
.yc6{bottom:533.209200pt;}
.y99{bottom:533.323200pt;}
.yea{bottom:533.347200pt;}
.y30{bottom:542.701333pt;}
.y14a{bottom:543.789867pt;}
.y12c{bottom:543.869867pt;}
.yb7{bottom:548.485200pt;}
.yc5{bottom:548.548533pt;}
.y98{bottom:548.662533pt;}
.ye9{bottom:548.686533pt;}
.y149{bottom:556.459867pt;}
.y12b{bottom:556.539867pt;}
.y2f{bottom:561.368000pt;}
.yb6{bottom:563.824533pt;}
.yc4{bottom:563.887867pt;}
.y97{bottom:564.001867pt;}
.ye8{bottom:564.025867pt;}
.y148{bottom:569.129867pt;}
.y12a{bottom:569.209867pt;}
.yb5{bottom:579.163867pt;}
.yc3{bottom:579.227200pt;}
.y96{bottom:579.341200pt;}
.ye7{bottom:579.365200pt;}
.y147{bottom:581.799867pt;}
.y129{bottom:581.879867pt;}
.y146{bottom:594.469867pt;}
.yb4{bottom:594.503200pt;}
.y128{bottom:594.549867pt;}
.yc2{bottom:594.566533pt;}
.y95{bottom:594.680533pt;}
.ye6{bottom:594.704533pt;}
.y2e{bottom:598.928267pt;}
.y145{bottom:607.139867pt;}
.y127{bottom:607.219867pt;}
.yb3{bottom:609.842533pt;}
.y7c{bottom:609.893200pt;}
.yc1{bottom:609.905867pt;}
.y65{bottom:610.019867pt;}
.y2d{bottom:612.261600pt;}
.y144{bottom:619.809867pt;}
.y126{bottom:619.889867pt;}
.ye5{bottom:621.371200pt;}
.yb2{bottom:625.181867pt;}
.y7b{bottom:625.232533pt;}
.yc0{bottom:625.245200pt;}
.y64{bottom:625.359200pt;}
.y2c{bottom:625.594933pt;}
.y125{bottom:632.559867pt;}
.yb1{bottom:640.521200pt;}
.y7a{bottom:640.571867pt;}
.ybf{bottom:640.584533pt;}
.y63{bottom:640.698533pt;}
.y2b{bottom:642.040267pt;}
.y124{bottom:645.229867pt;}
.y143{bottom:647.139867pt;}
.yb0{bottom:655.860533pt;}
.y79{bottom:655.911200pt;}
.ybe{bottom:655.923867pt;}
.ye4{bottom:656.007867pt;}
.y62{bottom:656.037867pt;}
.y123{bottom:657.899867pt;}
.y2a{bottom:663.601467pt;}
.y142{bottom:668.469867pt;}
.y122{bottom:670.569867pt;}
.yaf{bottom:671.199867pt;}
.y78{bottom:671.250533pt;}
.ybd{bottom:671.263200pt;}
.ye3{bottom:671.347200pt;}
.y29{bottom:678.937467pt;}
.y141{bottom:681.139867pt;}
.y61{bottom:682.704533pt;}
.y121{bottom:683.239867pt;}
.yae{bottom:686.539200pt;}
.y77{bottom:686.589867pt;}
.ybc{bottom:686.602533pt;}
.ye2{bottom:686.686533pt;}
.y120{bottom:695.909867pt;}
.y91{bottom:701.840533pt;}
.yad{bottom:701.878533pt;}
.y76{bottom:701.929200pt;}
.y80{bottom:701.941867pt;}
.ye1{bottom:702.025867pt;}
.y140{bottom:708.469867pt;}
.y11f{bottom:708.579867pt;}
.y28{bottom:713.195200pt;}
.y90{bottom:717.179867pt;}
.yac{bottom:717.217867pt;}
.y75{bottom:717.268533pt;}
.y60{bottom:717.281200pt;}
.ye0{bottom:717.365200pt;}
.y13f{bottom:721.139867pt;}
.y11e{bottom:721.249867pt;}
.y8f{bottom:732.519200pt;}
.yab{bottom:732.557200pt;}
.y74{bottom:732.607867pt;}
.y5f{bottom:732.620533pt;}
.ydf{bottom:732.704533pt;}
.y13e{bottom:733.809867pt;}
.y11d{bottom:733.919867pt;}
.y27{bottom:743.855200pt;}
.y13d{bottom:746.479867pt;}
.y11c{bottom:746.589867pt;}
.y8e{bottom:747.858533pt;}
.yaa{bottom:747.896533pt;}
.y73{bottom:747.947200pt;}
.y5e{bottom:747.959867pt;}
.y13c{bottom:759.149867pt;}
.y11b{bottom:759.259867pt;}
.yde{bottom:759.371200pt;}
.y8d{bottom:763.197867pt;}
.ya9{bottom:763.235867pt;}
.y72{bottom:763.286533pt;}
.y5d{bottom:763.299200pt;}
.y13b{bottom:771.819867pt;}
.y11a{bottom:771.929867pt;}
.y26{bottom:774.515200pt;}
.y8c{bottom:778.537200pt;}
.ya8{bottom:778.575200pt;}
.y71{bottom:778.625867pt;}
.y5c{bottom:778.638533pt;}
.y13a{bottom:784.489867pt;}
.y119{bottom:784.599867pt;}
.y8b{bottom:793.876533pt;}
.ya7{bottom:793.914533pt;}
.y70{bottom:793.965200pt;}
.ydd{bottom:793.971200pt;}
.y5b{bottom:793.977867pt;}
.y139{bottom:797.159867pt;}
.y118{bottom:797.269867pt;}
.y25{bottom:805.175200pt;}
.y8a{bottom:809.215867pt;}
.ya6{bottom:809.253867pt;}
.y6f{bottom:809.304533pt;}
.ydc{bottom:809.310533pt;}
.y5a{bottom:809.317200pt;}
.y138{bottom:809.829867pt;}
.y117{bottom:809.939867pt;}
.y137{bottom:822.499867pt;}
.y116{bottom:822.609867pt;}
.y89{bottom:824.555200pt;}
.ya5{bottom:824.593200pt;}
.y6e{bottom:824.643867pt;}
.ydb{bottom:824.649867pt;}
.y59{bottom:824.656533pt;}
.y136{bottom:835.169867pt;}
.y115{bottom:835.279867pt;}
.y24{bottom:835.835200pt;}
.y88{bottom:839.894533pt;}
.ya4{bottom:839.932533pt;}
.y6d{bottom:839.983200pt;}
.yda{bottom:839.989200pt;}
.y58{bottom:839.995867pt;}
.y135{bottom:847.839867pt;}
.y114{bottom:847.949867pt;}
.y87{bottom:855.233867pt;}
.ya3{bottom:855.271867pt;}
.y6c{bottom:855.322533pt;}
.yd9{bottom:855.328533pt;}
.y57{bottom:855.335200pt;}
.y134{bottom:860.509867pt;}
.y113{bottom:860.619867pt;}
.y86{bottom:870.573200pt;}
.ya2{bottom:870.611200pt;}
.y6b{bottom:870.661867pt;}
.yd8{bottom:870.667867pt;}
.y56{bottom:870.674533pt;}
.y133{bottom:873.179867pt;}
.y112{bottom:873.289867pt;}
.y132{bottom:885.849867pt;}
.y85{bottom:885.912533pt;}
.ya1{bottom:885.950533pt;}
.y111{bottom:885.959867pt;}
.y6a{bottom:886.001200pt;}
.yd7{bottom:886.007200pt;}
.y55{bottom:886.013867pt;}
.y131{bottom:898.519867pt;}
.y110{bottom:898.629867pt;}
.y84{bottom:901.251867pt;}
.ya0{bottom:901.289867pt;}
.y69{bottom:901.340533pt;}
.yd6{bottom:901.346533pt;}
.y54{bottom:901.353200pt;}
.y130{bottom:911.189867pt;}
.y10f{bottom:911.299867pt;}
.y83{bottom:916.591200pt;}
.y9f{bottom:916.629200pt;}
.y68{bottom:916.679867pt;}
.yd5{bottom:916.685867pt;}
.y53{bottom:916.692533pt;}
.y12f{bottom:923.859867pt;}
.y10e{bottom:923.969867pt;}
.y82{bottom:931.930533pt;}
.y9e{bottom:931.968533pt;}
.y67{bottom:932.019200pt;}
.yd4{bottom:932.025200pt;}
.y52{bottom:932.031867pt;}
.y12e{bottom:936.529867pt;}
.y10d{bottom:936.639867pt;}
.y81{bottom:947.269867pt;}
.y9d{bottom:947.307867pt;}
.y66{bottom:947.358533pt;}
.yd3{bottom:947.364533pt;}
.y51{bottom:947.371200pt;}
.y12d{bottom:949.199867pt;}
.y10c{bottom:949.309867pt;}
.y4{bottom:962.702400pt;}
.y3{bottom:973.370400pt;}
.y2{bottom:984.187733pt;}
.y50{bottom:993.706267pt;}
.h8{height:15.866928pt;}
.h4{height:27.216000pt;}
.h3{height:27.290667pt;}
.h9{height:28.314928pt;}
.he{height:28.560000pt;}
.hd{height:28.640000pt;}
.h2{height:29.344000pt;}
.hc{height:36.277333pt;}
.h6{height:36.440304pt;}
.h7{height:36.450971pt;}
.ha{height:41.920000pt;}
.hb{height:46.784000pt;}
.h5{height:81.872000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.476133pt;}
.x1a{left:64.010133pt;}
.x22{left:65.258800pt;}
.x1e{left:68.138667pt;}
.x19{left:71.962133pt;}
.x16{left:75.378133pt;}
.xb{left:77.851467pt;}
.x23{left:79.138800pt;}
.x8{left:81.127467pt;}
.x18{left:82.154133pt;}
.x12{left:84.562133pt;}
.x1b{left:86.298133pt;}
.x14{left:90.619467pt;}
.x13{left:95.976800pt;}
.x17{left:106.346133pt;}
.x10{left:107.419467pt;}
.x11{left:120.878133pt;}
.xa{left:124.676800pt;}
.xe{left:127.952800pt;}
.xd{left:131.088800pt;}
.xf{left:133.170133pt;}
.x9{left:152.536800pt;}
.x7{left:155.980800pt;}
.xc{left:159.611467pt;}
.x6{left:167.059467pt;}
.x15{left:173.798133pt;}
.x1c{left:234.320267pt;}
.x1d{left:249.659600pt;}
.x1f{left:392.366000pt;}
.x20{left:408.184667pt;}
.x25{left:412.968800pt;}
.x21{left:423.505333pt;}
.x24{left:426.848800pt;}
.x1{left:577.525333pt;}
.x4{left:607.670800pt;}
.x3{left:617.564133pt;}
.x2{left:666.554800pt;}
}




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