
    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_34a6be503e3a50712a9f2554.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_052f0d6c2340a72c903b0ea7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_dfff4b3b9b1bae20537d229a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.041992;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_e315f1dcaba317f9706eafac.woff')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_d7e609c9eb3ecb61c68ecdbb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.026855;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_39c08bd1ce57d5181b6a9b90.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_ab083ae9179cad7d10e715cb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.146973;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_06d7be5e7afff09eea5b0d32.woff')format("woff");}.ff8{font-family:ff8;line-height:0.710938;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_c1757b1138ee801f140bcb26.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976111;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_bb39e88a87a4ac63a23b0914.woff')format("woff");}.ffa{font-family:ffa;line-height:0.969881;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_f0e789b486b4b4446085348d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.970215;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_11c733ea5240740e85d399d1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.776367;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_cc7c19eab46635674150a6e3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.968262;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-21.978000px;}
.v4{vertical-align:-19.980600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls9{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.918000px;}
.lsc{letter-spacing:-0.840000px;}
.ls4{letter-spacing:-0.691200px;}
.lsb{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.204000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.513000px;}
.lse{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls10{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.200000px;}
.lsd{letter-spacing:1.620000px;}
.ls0{letter-spacing:43.181964px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-25.194000px;}
.ws6{word-spacing:-17.928000px;}
.wsa5{word-spacing:-16.434000px;}
.wsaf{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.940000px;}
.wsdc{word-spacing:-14.472000px;}
.wsda{word-spacing:-13.932000px;}
.wsdb{word-spacing:-13.905000px;}
.ws8b{word-spacing:-13.446000px;}
.wsa6{word-spacing:-13.392000px;}
.wsb1{word-spacing:-12.852000px;}
.ws7{word-spacing:-12.366000px;}
.wsb0{word-spacing:-12.312000px;}
.wsa{word-spacing:-11.610000px;}
.ws8{word-spacing:-11.448000px;}
.ws9{word-spacing:-11.232000px;}
.wsb{word-spacing:-10.992000px;}
.ws3{word-spacing:-10.896000px;}
.ws26{word-spacing:-10.800000px;}
.ws4{word-spacing:-9.892800px;}
.ws2{word-spacing:-9.618000px;}
.ws1{word-spacing:-9.542544px;}
.ws4b{word-spacing:-8.675040px;}
.ws71{word-spacing:-4.560000px;}
.wsd2{word-spacing:-4.320000px;}
.wsa4{word-spacing:-3.780000px;}
.ws94{word-spacing:-3.720000px;}
.wsab{word-spacing:-3.618000px;}
.ws81{word-spacing:-3.600000px;}
.wsa0{word-spacing:-3.420000px;}
.wsfc{word-spacing:-3.402000px;}
.wsc3{word-spacing:-3.186000px;}
.wsa7{word-spacing:-3.120000px;}
.wsce{word-spacing:-3.078000px;}
.ws8f{word-spacing:-2.940000px;}
.ws85{word-spacing:-2.880000px;}
.ws90{word-spacing:-2.820000px;}
.ws36{word-spacing:-2.760000px;}
.ws7d{word-spacing:-2.754000px;}
.ws9a{word-spacing:-2.700000px;}
.wsc5{word-spacing:-2.646000px;}
.wsa1{word-spacing:-2.580000px;}
.ws45{word-spacing:-2.520000px;}
.ws1d{word-spacing:-2.460000px;}
.wsf3{word-spacing:-2.430000px;}
.ws73{word-spacing:-2.340000px;}
.wsd3{word-spacing:-2.322000px;}
.ws5a{word-spacing:-2.280000px;}
.wsf2{word-spacing:-2.268000px;}
.ws63{word-spacing:-2.220000px;}
.ws78{word-spacing:-2.160000px;}
.wsed{word-spacing:-2.106000px;}
.ws5e{word-spacing:-2.100000px;}
.wsc2{word-spacing:-1.998000px;}
.ws3a{word-spacing:-1.980000px;}
.ws31{word-spacing:-1.920000px;}
.ws7c{word-spacing:-1.860000px;}
.ws6f{word-spacing:-1.800000px;}
.wse1{word-spacing:-1.728000px;}
.ws64{word-spacing:-1.680000px;}
.wsc4{word-spacing:-1.620000px;}
.wsd6{word-spacing:-1.566000px;}
.ws82{word-spacing:-1.560000px;}
.wsec{word-spacing:-1.458000px;}
.ws9d{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.380000px;}
.ws4f{word-spacing:-1.320000px;}
.wsb3{word-spacing:-1.296000px;}
.ws38{word-spacing:-1.200000px;}
.wsaa{word-spacing:-1.140000px;}
.ws20{word-spacing:-1.080000px;}
.ws4e{word-spacing:-1.020000px;}
.ws80{word-spacing:-0.960000px;}
.wseb{word-spacing:-0.918000px;}
.wse4{word-spacing:-0.864000px;}
.ws23{word-spacing:-0.840000px;}
.ws75{word-spacing:-0.780000px;}
.wsb6{word-spacing:-0.756000px;}
.ws7a{word-spacing:-0.720000px;}
.ws1c{word-spacing:-0.600000px;}
.ws25{word-spacing:-0.540000px;}
.ws74{word-spacing:-0.420000px;}
.ws53{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.300000px;}
.ws37{word-spacing:-0.240000px;}
.wsd{word-spacing:-0.216000px;}
.ws9c{word-spacing:-0.180000px;}
.wsde{word-spacing:-0.162000px;}
.ws5d{word-spacing:-0.120000px;}
.ws7e{word-spacing:-0.060000px;}
.ws7f{word-spacing:-0.034980px;}
.wsc{word-spacing:0.000000px;}
.ws8a{word-spacing:0.108000px;}
.wscc{word-spacing:0.162000px;}
.ws6e{word-spacing:0.180000px;}
.ws70{word-spacing:0.360000px;}
.wsbb{word-spacing:0.378000px;}
.ws51{word-spacing:0.420000px;}
.wsc1{word-spacing:0.432000px;}
.ws1a{word-spacing:0.480000px;}
.ws24{word-spacing:0.540000px;}
.ws93{word-spacing:0.594000px;}
.ws7b{word-spacing:0.600000px;}
.ws17{word-spacing:0.648000px;}
.ws95{word-spacing:0.660000px;}
.wse{word-spacing:0.691200px;}
.wsbe{word-spacing:0.702000px;}
.ws68{word-spacing:0.720000px;}
.ws72{word-spacing:0.780000px;}
.wse0{word-spacing:0.810000px;}
.ws96{word-spacing:0.840000px;}
.ws67{word-spacing:0.960000px;}
.ws2d{word-spacing:1.020000px;}
.wsc0{word-spacing:1.026000px;}
.ws10{word-spacing:1.080000px;}
.ws61{word-spacing:1.140000px;}
.ws65{word-spacing:1.200000px;}
.wsbd{word-spacing:1.242000px;}
.ws33{word-spacing:1.260000px;}
.ws99{word-spacing:1.320000px;}
.wsf{word-spacing:1.350000px;}
.ws56{word-spacing:1.380000px;}
.ws97{word-spacing:1.500000px;}
.ws92{word-spacing:1.512000px;}
.ws5c{word-spacing:1.560000px;}
.ws49{word-spacing:1.620000px;}
.ws14{word-spacing:1.674000px;}
.ws50{word-spacing:1.680000px;}
.ws9e{word-spacing:1.740000px;}
.ws40{word-spacing:1.980000px;}
.ws5f{word-spacing:2.040000px;}
.ws28{word-spacing:2.160000px;}
.ws11{word-spacing:2.214000px;}
.wsa2{word-spacing:2.280000px;}
.ws9b{word-spacing:2.340000px;}
.ws69{word-spacing:2.400000px;}
.wsb9{word-spacing:2.484000px;}
.ws6d{word-spacing:2.520000px;}
.ws2c{word-spacing:2.580000px;}
.wsac{word-spacing:2.592000px;}
.ws2e{word-spacing:2.700000px;}
.wsf9{word-spacing:2.754000px;}
.ws32{word-spacing:2.760000px;}
.ws83{word-spacing:2.820000px;}
.ws57{word-spacing:2.880000px;}
.wse2{word-spacing:2.916000px;}
.ws60{word-spacing:2.940000px;}
.ws76{word-spacing:3.000000px;}
.ws59{word-spacing:3.060000px;}
.wsf8{word-spacing:3.132000px;}
.wsb7{word-spacing:3.186000px;}
.ws1f{word-spacing:3.240000px;}
.ws77{word-spacing:3.300000px;}
.wsb8{word-spacing:3.348000px;}
.ws9f{word-spacing:3.360000px;}
.ws13{word-spacing:3.402000px;}
.ws8c{word-spacing:3.420000px;}
.wsfe{word-spacing:3.726000px;}
.ws102{word-spacing:3.780000px;}
.ws79{word-spacing:3.900000px;}
.ws8e{word-spacing:4.020000px;}
.ws34{word-spacing:4.080000px;}
.ws54{word-spacing:4.140000px;}
.wsf1{word-spacing:4.158000px;}
.ws6b{word-spacing:4.320000px;}
.wse3{word-spacing:4.374000px;}
.ws66{word-spacing:4.380000px;}
.ws12{word-spacing:4.428000px;}
.ws47{word-spacing:4.440000px;}
.ws46{word-spacing:4.500000px;}
.ws3c{word-spacing:4.560000px;}
.ws5b{word-spacing:4.620000px;}
.ws52{word-spacing:4.680000px;}
.wsee{word-spacing:4.698000px;}
.ws3d{word-spacing:4.740000px;}
.ws98{word-spacing:4.800000px;}
.wsfa{word-spacing:4.806000px;}
.ws16{word-spacing:4.860000px;}
.ws21{word-spacing:4.920000px;}
.wse6{word-spacing:4.968000px;}
.ws4c{word-spacing:4.980000px;}
.wsdf{word-spacing:5.022000px;}
.ws3b{word-spacing:5.100000px;}
.ws55{word-spacing:5.160000px;}
.wsd5{word-spacing:5.238000px;}
.ws8d{word-spacing:5.280000px;}
.wscb{word-spacing:5.292000px;}
.ws39{word-spacing:5.400000px;}
.ws15{word-spacing:5.454000px;}
.ws35{word-spacing:5.520000px;}
.wse9{word-spacing:5.562000px;}
.ws3f{word-spacing:5.580000px;}
.wsea{word-spacing:5.778000px;}
.ws6a{word-spacing:5.880000px;}
.wsf6{word-spacing:5.994000px;}
.ws48{word-spacing:6.000000px;}
.wsca{word-spacing:6.102000px;}
.wsc9{word-spacing:6.156000px;}
.ws2b{word-spacing:6.180000px;}
.ws91{word-spacing:6.240000px;}
.ws58{word-spacing:6.360000px;}
.wsd9{word-spacing:6.372000px;}
.ws4d{word-spacing:6.420000px;}
.wsa9{word-spacing:6.540000px;}
.ws41{word-spacing:6.600000px;}
.wsf7{word-spacing:6.642000px;}
.ws42{word-spacing:6.660000px;}
.wsf4{word-spacing:6.696000px;}
.wsff{word-spacing:6.804000px;}
.ws19{word-spacing:6.840000px;}
.wsbf{word-spacing:6.858000px;}
.ws30{word-spacing:6.900000px;}
.ws1b{word-spacing:7.020000px;}
.wsbc{word-spacing:7.236000px;}
.ws62{word-spacing:7.320000px;}
.ws2a{word-spacing:7.440000px;}
.ws43{word-spacing:7.560000px;}
.ws29{word-spacing:7.620000px;}
.wsa8{word-spacing:7.680000px;}
.wse5{word-spacing:7.722000px;}
.wsd8{word-spacing:7.776000px;}
.wsd7{word-spacing:8.154000px;}
.ws22{word-spacing:8.280000px;}
.ws86{word-spacing:8.340000px;}
.wsb2{word-spacing:8.424000px;}
.ws89{word-spacing:8.460000px;}
.wsad{word-spacing:8.478000px;}
.wsd1{word-spacing:8.640000px;}
.wsa3{word-spacing:8.760000px;}
.wse7{word-spacing:8.802000px;}
.ws4a{word-spacing:8.820000px;}
.wsc6{word-spacing:8.856000px;}
.wsdd{word-spacing:9.072000px;}
.wsfb{word-spacing:9.234000px;}
.wsd4{word-spacing:9.288000px;}
.ws88{word-spacing:9.600000px;}
.ws87{word-spacing:9.660000px;}
.wsb4{word-spacing:9.720000px;}
.ws2f{word-spacing:9.780000px;}
.wscf{word-spacing:9.828000px;}
.wsc8{word-spacing:10.044000px;}
.ws6c{word-spacing:10.080000px;}
.wsc7{word-spacing:10.098000px;}
.ws1e{word-spacing:10.140000px;}
.wsf5{word-spacing:10.152000px;}
.ws100{word-spacing:10.260000px;}
.ws84{word-spacing:10.800000px;}
.wsd0{word-spacing:11.178000px;}
.wsfd{word-spacing:11.286000px;}
.wsae{word-spacing:11.934000px;}
.ws27{word-spacing:12.000000px;}
.wsba{word-spacing:12.258000px;}
.wscd{word-spacing:12.528000px;}
.wsef{word-spacing:17.766000px;}
.wsf0{word-spacing:18.360000px;}
.wsb5{word-spacing:18.684000px;}
.ws18{word-spacing:19.680000px;}
.ws101{word-spacing:24.786000px;}
.wse8{word-spacing:39.744000px;}
._9{margin-left:-11.472000px;}
._1a{margin-left:-8.796600px;}
._1b{margin-left:-6.712200px;}
._8{margin-left:-5.655600px;}
._c{margin-left:-4.161000px;}
._1{margin-left:-2.886600px;}
._0{margin-left:-1.683000px;}
._2{width:1.193400px;}
._4{width:2.214000px;}
._d{width:3.639000px;}
._5{width:4.644000px;}
._e{width:5.670000px;}
._b{width:6.693000px;}
._6{width:7.722000px;}
._7{width:8.838000px;}
._a{width:10.383000px;}
._17{width:11.793600px;}
._11{width:13.728000px;}
._1c{width:14.904000px;}
._19{width:16.452000px;}
._18{width:17.485200px;}
._1d{width:28.776600px;}
._1e{width:29.905200px;}
._3{width:36.369600px;}
._15{width:42.649200px;}
._16{width:43.891200px;}
._12{width:272.739000px;}
._13{width:395.664000px;}
._f{width:543.300000px;}
._14{width:559.392000px;}
._10{width:660.600000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(107,26,30);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.040050px;}
.y10e{bottom:112.790850px;}
.yde{bottom:112.802700px;}
.yae{bottom:113.072850px;}
.y87{bottom:113.078700px;}
.y9f{bottom:113.078850px;}
.yc{bottom:117.205050px;}
.y2a{bottom:117.212700px;}
.yb{bottom:131.601450px;}
.y10d{bottom:133.796850px;}
.ydd{bottom:133.808700px;}
.y86{bottom:134.078700px;}
.y6d{bottom:134.078850px;}
.y97{bottom:135.657450px;}
.y29{bottom:138.212700px;}
.ya{bottom:145.997850px;}
.y10c{bottom:154.802850px;}
.ydc{bottom:154.814700px;}
.y85{bottom:155.078700px;}
.y6c{bottom:155.078850px;}
.y28{bottom:159.212700px;}
.y9{bottom:160.397850px;}
.yad{bottom:160.529400px;}
.y96{bottom:173.925450px;}
.y10b{bottom:175.808850px;}
.ydb{bottom:175.820700px;}
.y84{bottom:176.078700px;}
.y6b{bottom:176.078850px;}
.y27{bottom:180.212700px;}
.y8e{bottom:190.440900px;}
.y10a{bottom:196.814850px;}
.yda{bottom:196.826700px;}
.yac{bottom:197.072850px;}
.y83{bottom:197.078700px;}
.y6a{bottom:197.078850px;}
.y26{bottom:201.212700px;}
.y38{bottom:203.454300px;}
.y95{bottom:212.193450px;}
.y109{bottom:217.820850px;}
.yd9{bottom:217.832700px;}
.y82{bottom:218.078700px;}
.y69{bottom:218.078850px;}
.y37{bottom:221.449800px;}
.y25{bottom:222.212700px;}
.y9d{bottom:232.440900px;}
.y108{bottom:238.826850px;}
.yd8{bottom:238.838700px;}
.y81{bottom:239.078700px;}
.y68{bottom:239.078850px;}
.y36{bottom:239.445300px;}
.y24{bottom:243.212700px;}
.y94{bottom:243.969450px;}
.yab{bottom:244.529400px;}
.y35{bottom:257.440800px;}
.y93{bottom:258.969450px;}
.y107{bottom:259.832850px;}
.yd7{bottom:259.844700px;}
.y80{bottom:260.078700px;}
.y67{bottom:260.078850px;}
.y23{bottom:264.212700px;}
.y34{bottom:275.436300px;}
.y92{bottom:279.874950px;}
.y106{bottom:280.838850px;}
.yd6{bottom:280.850700px;}
.yaa{bottom:281.066850px;}
.y7f{bottom:281.078700px;}
.y66{bottom:281.078850px;}
.y22{bottom:285.212700px;}
.y33{bottom:293.431800px;}
.y105{bottom:301.844850px;}
.yd5{bottom:301.856700px;}
.ya9{bottom:302.072850px;}
.y7e{bottom:302.078700px;}
.y65{bottom:302.078850px;}
.y21{bottom:306.212700px;}
.y91{bottom:310.352250px;}
.y32{bottom:311.427300px;}
.y104{bottom:322.850850px;}
.yd4{bottom:322.862700px;}
.y7d{bottom:323.078700px;}
.y64{bottom:323.078850px;}
.y20{bottom:327.212700px;}
.y90{bottom:330.156750px;}
.y103{bottom:343.856850px;}
.yd3{bottom:343.868700px;}
.y7c{bottom:344.078700px;}
.y63{bottom:344.078850px;}
.y31{bottom:346.432800px;}
.y1f{bottom:348.212700px;}
.ya8{bottom:349.529400px;}
.y30{bottom:364.428300px;}
.y102{bottom:364.862850px;}
.yd2{bottom:364.874700px;}
.y7b{bottom:365.078700px;}
.y62{bottom:365.078850px;}
.y1e{bottom:369.212700px;}
.y6e{bottom:379.441050px;}
.y2f{bottom:382.423800px;}
.y101{bottom:385.868850px;}
.yd1{bottom:385.880700px;}
.ya7{bottom:386.066850px;}
.y7a{bottom:386.078700px;}
.y61{bottom:386.078850px;}
.y1d{bottom:390.212700px;}
.y98{bottom:400.440900px;}
.y100{bottom:406.874850px;}
.yd0{bottom:406.886700px;}
.ya6{bottom:407.072850px;}
.y79{bottom:407.078700px;}
.y60{bottom:407.078850px;}
.y2e{bottom:417.429300px;}
.y1c{bottom:426.144450px;}
.yff{bottom:427.880850px;}
.ycf{bottom:427.892700px;}
.y78{bottom:428.078700px;}
.y5f{bottom:428.078850px;}
.y2d{bottom:435.429300px;}
.yfe{bottom:448.886850px;}
.yce{bottom:448.898700px;}
.y77{bottom:449.078700px;}
.y5e{bottom:449.078850px;}
.y2c{bottom:453.429300px;}
.ya5{bottom:454.529400px;}
.yfd{bottom:469.892850px;}
.ycd{bottom:469.904700px;}
.y8d{bottom:470.078700px;}
.y5d{bottom:470.078850px;}
.y2b{bottom:471.429300px;}
.y76{bottom:484.440900px;}
.yfc{bottom:490.898850px;}
.ycc{bottom:490.910700px;}
.y8c{bottom:491.078700px;}
.y5c{bottom:491.078850px;}
.yfb{bottom:511.904850px;}
.ycb{bottom:511.916700px;}
.y8b{bottom:512.078700px;}
.y5b{bottom:512.078850px;}
.ya4{bottom:517.529400px;}
.y1b{bottom:519.427950px;}
.yfa{bottom:532.910850px;}
.yca{bottom:532.922700px;}
.y75{bottom:533.078700px;}
.y5a{bottom:533.078850px;}
.yf9{bottom:553.916850px;}
.yc9{bottom:553.928700px;}
.y74{bottom:554.078700px;}
.y59{bottom:554.078850px;}
.y1a{bottom:560.438400px;}
.yf8{bottom:574.922850px;}
.yc8{bottom:574.934700px;}
.y73{bottom:575.078700px;}
.y58{bottom:575.078850px;}
.y19{bottom:580.242900px;}
.ya3{bottom:580.529400px;}
.yf7{bottom:595.928850px;}
.yc7{bottom:595.940700px;}
.y72{bottom:596.078700px;}
.y57{bottom:596.078850px;}
.y18{bottom:600.047400px;}
.y9c{bottom:604.361550px;}
.yf6{bottom:616.934850px;}
.yc6{bottom:616.946700px;}
.y71{bottom:617.078700px;}
.y56{bottom:617.078850px;}
.y9e{bottom:618.585150px;}
.y17{bottom:619.851900px;}
.y9b{bottom:624.166050px;}
.yf5{bottom:637.940850px;}
.yc5{bottom:637.952700px;}
.y70{bottom:638.078700px;}
.y55{bottom:638.078850px;}
.y16{bottom:639.656400px;}
.ya2{bottom:643.937100px;}
.y9a{bottom:643.970550px;}
.yf4{bottom:658.946850px;}
.yc4{bottom:658.958700px;}
.y6f{bottom:659.078700px;}
.y54{bottom:659.078850px;}
.y15{bottom:659.460900px;}
.y99{bottom:663.775050px;}
.ya1{bottom:673.441050px;}
.y14{bottom:679.265400px;}
.yf3{bottom:679.952850px;}
.yc3{bottom:679.964700px;}
.y8a{bottom:680.078700px;}
.y53{bottom:680.078850px;}
.y13{bottom:699.069900px;}
.yf2{bottom:700.958850px;}
.yc2{bottom:700.970700px;}
.y89{bottom:701.078700px;}
.y52{bottom:701.078850px;}
.y88{bottom:702.743550px;}
.y12{bottom:718.874400px;}
.yf1{bottom:721.964850px;}
.yc1{bottom:721.976700px;}
.y51{bottom:722.078850px;}
.y11{bottom:738.678900px;}
.yf0{bottom:742.970850px;}
.yc0{bottom:742.982700px;}
.y11f{bottom:742.988850px;}
.y50{bottom:743.078850px;}
.y10{bottom:758.483400px;}
.y8f{bottom:759.758100px;}
.yef{bottom:763.976850px;}
.ybf{bottom:763.988700px;}
.y11e{bottom:763.994850px;}
.y4f{bottom:764.078850px;}
.yf{bottom:778.287900px;}
.ya0{bottom:778.441050px;}
.yee{bottom:784.982850px;}
.ybe{bottom:784.994700px;}
.y11d{bottom:785.000850px;}
.y4e{bottom:785.078850px;}
.yed{bottom:805.988850px;}
.ybd{bottom:806.000700px;}
.y11c{bottom:806.006850px;}
.y4d{bottom:806.078850px;}
.ye{bottom:809.385300px;}
.yec{bottom:826.994850px;}
.ybc{bottom:827.006700px;}
.y11b{bottom:827.012850px;}
.y4c{bottom:827.078850px;}
.yeb{bottom:848.000850px;}
.ybb{bottom:848.012700px;}
.y11a{bottom:848.018850px;}
.y4b{bottom:848.078850px;}
.yea{bottom:869.006850px;}
.yba{bottom:869.018700px;}
.y119{bottom:869.024850px;}
.y4a{bottom:869.078850px;}
.y8{bottom:888.666900px;}
.ye9{bottom:890.012850px;}
.yb9{bottom:890.024700px;}
.y118{bottom:890.030850px;}
.y49{bottom:890.078850px;}
.y7{bottom:906.666900px;}
.ye8{bottom:911.018850px;}
.yb8{bottom:911.030700px;}
.y117{bottom:911.036850px;}
.y48{bottom:911.078850px;}
.y6{bottom:924.666900px;}
.ye7{bottom:932.024850px;}
.yb7{bottom:932.036700px;}
.y116{bottom:932.042850px;}
.y47{bottom:932.078850px;}
.ye6{bottom:953.030850px;}
.yb6{bottom:953.042700px;}
.y115{bottom:953.048850px;}
.y46{bottom:953.078850px;}
.y5{bottom:959.674800px;}
.ye5{bottom:974.036850px;}
.yb5{bottom:974.048700px;}
.y114{bottom:974.054850px;}
.y45{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.ye4{bottom:995.042850px;}
.yb4{bottom:995.054700px;}
.y113{bottom:995.060850px;}
.y44{bottom:995.078850px;}
.ye3{bottom:1016.048850px;}
.yb3{bottom:1016.060700px;}
.y112{bottom:1016.066850px;}
.y43{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.ye2{bottom:1037.054850px;}
.yb2{bottom:1037.066700px;}
.y111{bottom:1037.072850px;}
.y42{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.ye1{bottom:1058.060850px;}
.yb1{bottom:1058.072700px;}
.y41{bottom:1058.078850px;}
.ye0{bottom:1079.066850px;}
.yb0{bottom:1079.078700px;}
.y40{bottom:1079.078850px;}
.y110{bottom:1087.777350px;}
.ydf{bottom:1100.072850px;}
.y3f{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.yaf{bottom:1111.570800px;}
.y10f{bottom:1120.074900px;}
.y3e{bottom:1121.078850px;}
.y3a{bottom:1159.189500px;}
.y39{bottom:1178.689500px;}
.y3d{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h13{height:38.226562px;}
.h11{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h14{height:39.000000px;}
.h8{height:43.004883px;}
.h10{height:43.057617px;}
.hf{height:43.321289px;}
.ha{height:43.875000px;}
.h15{height:43.899000px;}
.h9{height:45.615234px;}
.hd{height:48.750000px;}
.hb{height:49.543945px;}
.h12{height:50.176758px;}
.h4{height:53.625000px;}
.hc{height:54.738281px;}
.he{height:55.048828px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.069700px;}
.xc{left:108.289650px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x4{left:300.189000px;}
.xb{left:317.199000px;}
.x3{left:412.428000px;}
.xf{left:416.308950px;}
.x10{left:458.132400px;}
.x13{left:461.156400px;}
.x11{left:469.304400px;}
.x14{left:491.996400px;}
.x15{left:536.192400px;}
.x9{left:608.278950px;}
.xe{left:617.059050px;}
.x8{left:625.522950px;}
.xd{left:646.393200px;}
.x12{left:773.624400px;}
.x1{left:801.157500px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v4{vertical-align:-17.760533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls9{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.816000pt;}
.lsc{letter-spacing:-0.746667pt;}
.ls4{letter-spacing:-0.614400pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.181333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.456000pt;}
.lse{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.066667pt;}
.lsd{letter-spacing:1.440000pt;}
.ls0{letter-spacing:38.383968pt;}
.ws0{word-spacing:-22.394667pt;}
.ws6{word-spacing:-15.936000pt;}
.wsa5{word-spacing:-14.608000pt;}
.wsaf{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.280000pt;}
.wsdc{word-spacing:-12.864000pt;}
.wsda{word-spacing:-12.384000pt;}
.wsdb{word-spacing:-12.360000pt;}
.ws8b{word-spacing:-11.952000pt;}
.wsa6{word-spacing:-11.904000pt;}
.wsb1{word-spacing:-11.424000pt;}
.ws7{word-spacing:-10.992000pt;}
.wsb0{word-spacing:-10.944000pt;}
.wsa{word-spacing:-10.320000pt;}
.ws8{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.984000pt;}
.wsb{word-spacing:-9.770667pt;}
.ws3{word-spacing:-9.685333pt;}
.ws26{word-spacing:-9.600000pt;}
.ws4{word-spacing:-8.793600pt;}
.ws2{word-spacing:-8.549333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws4b{word-spacing:-7.711147pt;}
.ws71{word-spacing:-4.053333pt;}
.wsd2{word-spacing:-3.840000pt;}
.wsa4{word-spacing:-3.360000pt;}
.ws94{word-spacing:-3.306667pt;}
.wsab{word-spacing:-3.216000pt;}
.ws81{word-spacing:-3.200000pt;}
.wsa0{word-spacing:-3.040000pt;}
.wsfc{word-spacing:-3.024000pt;}
.wsc3{word-spacing:-2.832000pt;}
.wsa7{word-spacing:-2.773333pt;}
.wsce{word-spacing:-2.736000pt;}
.ws8f{word-spacing:-2.613333pt;}
.ws85{word-spacing:-2.560000pt;}
.ws90{word-spacing:-2.506667pt;}
.ws36{word-spacing:-2.453333pt;}
.ws7d{word-spacing:-2.448000pt;}
.ws9a{word-spacing:-2.400000pt;}
.wsc5{word-spacing:-2.352000pt;}
.wsa1{word-spacing:-2.293333pt;}
.ws45{word-spacing:-2.240000pt;}
.ws1d{word-spacing:-2.186667pt;}
.wsf3{word-spacing:-2.160000pt;}
.ws73{word-spacing:-2.080000pt;}
.wsd3{word-spacing:-2.064000pt;}
.ws5a{word-spacing:-2.026667pt;}
.wsf2{word-spacing:-2.016000pt;}
.ws63{word-spacing:-1.973333pt;}
.ws78{word-spacing:-1.920000pt;}
.wsed{word-spacing:-1.872000pt;}
.ws5e{word-spacing:-1.866667pt;}
.wsc2{word-spacing:-1.776000pt;}
.ws3a{word-spacing:-1.760000pt;}
.ws31{word-spacing:-1.706667pt;}
.ws7c{word-spacing:-1.653333pt;}
.ws6f{word-spacing:-1.600000pt;}
.wse1{word-spacing:-1.536000pt;}
.ws64{word-spacing:-1.493333pt;}
.wsc4{word-spacing:-1.440000pt;}
.wsd6{word-spacing:-1.392000pt;}
.ws82{word-spacing:-1.386667pt;}
.wsec{word-spacing:-1.296000pt;}
.ws9d{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.226667pt;}
.ws4f{word-spacing:-1.173333pt;}
.wsb3{word-spacing:-1.152000pt;}
.ws38{word-spacing:-1.066667pt;}
.wsaa{word-spacing:-1.013333pt;}
.ws20{word-spacing:-0.960000pt;}
.ws4e{word-spacing:-0.906667pt;}
.ws80{word-spacing:-0.853333pt;}
.wseb{word-spacing:-0.816000pt;}
.wse4{word-spacing:-0.768000pt;}
.ws23{word-spacing:-0.746667pt;}
.ws75{word-spacing:-0.693333pt;}
.wsb6{word-spacing:-0.672000pt;}
.ws7a{word-spacing:-0.640000pt;}
.ws1c{word-spacing:-0.533333pt;}
.ws25{word-spacing:-0.480000pt;}
.ws74{word-spacing:-0.373333pt;}
.ws53{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.266667pt;}
.ws37{word-spacing:-0.213333pt;}
.wsd{word-spacing:-0.192000pt;}
.ws9c{word-spacing:-0.160000pt;}
.wsde{word-spacing:-0.144000pt;}
.ws5d{word-spacing:-0.106667pt;}
.ws7e{word-spacing:-0.053333pt;}
.ws7f{word-spacing:-0.031093pt;}
.wsc{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.096000pt;}
.wscc{word-spacing:0.144000pt;}
.ws6e{word-spacing:0.160000pt;}
.ws70{word-spacing:0.320000pt;}
.wsbb{word-spacing:0.336000pt;}
.ws51{word-spacing:0.373333pt;}
.wsc1{word-spacing:0.384000pt;}
.ws1a{word-spacing:0.426667pt;}
.ws24{word-spacing:0.480000pt;}
.ws93{word-spacing:0.528000pt;}
.ws7b{word-spacing:0.533333pt;}
.ws17{word-spacing:0.576000pt;}
.ws95{word-spacing:0.586667pt;}
.wse{word-spacing:0.614400pt;}
.wsbe{word-spacing:0.624000pt;}
.ws68{word-spacing:0.640000pt;}
.ws72{word-spacing:0.693333pt;}
.wse0{word-spacing:0.720000pt;}
.ws96{word-spacing:0.746667pt;}
.ws67{word-spacing:0.853333pt;}
.ws2d{word-spacing:0.906667pt;}
.wsc0{word-spacing:0.912000pt;}
.ws10{word-spacing:0.960000pt;}
.ws61{word-spacing:1.013333pt;}
.ws65{word-spacing:1.066667pt;}
.wsbd{word-spacing:1.104000pt;}
.ws33{word-spacing:1.120000pt;}
.ws99{word-spacing:1.173333pt;}
.wsf{word-spacing:1.200000pt;}
.ws56{word-spacing:1.226667pt;}
.ws97{word-spacing:1.333333pt;}
.ws92{word-spacing:1.344000pt;}
.ws5c{word-spacing:1.386667pt;}
.ws49{word-spacing:1.440000pt;}
.ws14{word-spacing:1.488000pt;}
.ws50{word-spacing:1.493333pt;}
.ws9e{word-spacing:1.546667pt;}
.ws40{word-spacing:1.760000pt;}
.ws5f{word-spacing:1.813333pt;}
.ws28{word-spacing:1.920000pt;}
.ws11{word-spacing:1.968000pt;}
.wsa2{word-spacing:2.026667pt;}
.ws9b{word-spacing:2.080000pt;}
.ws69{word-spacing:2.133333pt;}
.wsb9{word-spacing:2.208000pt;}
.ws6d{word-spacing:2.240000pt;}
.ws2c{word-spacing:2.293333pt;}
.wsac{word-spacing:2.304000pt;}
.ws2e{word-spacing:2.400000pt;}
.wsf9{word-spacing:2.448000pt;}
.ws32{word-spacing:2.453333pt;}
.ws83{word-spacing:2.506667pt;}
.ws57{word-spacing:2.560000pt;}
.wse2{word-spacing:2.592000pt;}
.ws60{word-spacing:2.613333pt;}
.ws76{word-spacing:2.666667pt;}
.ws59{word-spacing:2.720000pt;}
.wsf8{word-spacing:2.784000pt;}
.wsb7{word-spacing:2.832000pt;}
.ws1f{word-spacing:2.880000pt;}
.ws77{word-spacing:2.933333pt;}
.wsb8{word-spacing:2.976000pt;}
.ws9f{word-spacing:2.986667pt;}
.ws13{word-spacing:3.024000pt;}
.ws8c{word-spacing:3.040000pt;}
.wsfe{word-spacing:3.312000pt;}
.ws102{word-spacing:3.360000pt;}
.ws79{word-spacing:3.466667pt;}
.ws8e{word-spacing:3.573333pt;}
.ws34{word-spacing:3.626667pt;}
.ws54{word-spacing:3.680000pt;}
.wsf1{word-spacing:3.696000pt;}
.ws6b{word-spacing:3.840000pt;}
.wse3{word-spacing:3.888000pt;}
.ws66{word-spacing:3.893333pt;}
.ws12{word-spacing:3.936000pt;}
.ws47{word-spacing:3.946667pt;}
.ws46{word-spacing:4.000000pt;}
.ws3c{word-spacing:4.053333pt;}
.ws5b{word-spacing:4.106667pt;}
.ws52{word-spacing:4.160000pt;}
.wsee{word-spacing:4.176000pt;}
.ws3d{word-spacing:4.213333pt;}
.ws98{word-spacing:4.266667pt;}
.wsfa{word-spacing:4.272000pt;}
.ws16{word-spacing:4.320000pt;}
.ws21{word-spacing:4.373333pt;}
.wse6{word-spacing:4.416000pt;}
.ws4c{word-spacing:4.426667pt;}
.wsdf{word-spacing:4.464000pt;}
.ws3b{word-spacing:4.533333pt;}
.ws55{word-spacing:4.586667pt;}
.wsd5{word-spacing:4.656000pt;}
.ws8d{word-spacing:4.693333pt;}
.wscb{word-spacing:4.704000pt;}
.ws39{word-spacing:4.800000pt;}
.ws15{word-spacing:4.848000pt;}
.ws35{word-spacing:4.906667pt;}
.wse9{word-spacing:4.944000pt;}
.ws3f{word-spacing:4.960000pt;}
.wsea{word-spacing:5.136000pt;}
.ws6a{word-spacing:5.226667pt;}
.wsf6{word-spacing:5.328000pt;}
.ws48{word-spacing:5.333333pt;}
.wsca{word-spacing:5.424000pt;}
.wsc9{word-spacing:5.472000pt;}
.ws2b{word-spacing:5.493333pt;}
.ws91{word-spacing:5.546667pt;}
.ws58{word-spacing:5.653333pt;}
.wsd9{word-spacing:5.664000pt;}
.ws4d{word-spacing:5.706667pt;}
.wsa9{word-spacing:5.813333pt;}
.ws41{word-spacing:5.866667pt;}
.wsf7{word-spacing:5.904000pt;}
.ws42{word-spacing:5.920000pt;}
.wsf4{word-spacing:5.952000pt;}
.wsff{word-spacing:6.048000pt;}
.ws19{word-spacing:6.080000pt;}
.wsbf{word-spacing:6.096000pt;}
.ws30{word-spacing:6.133333pt;}
.ws1b{word-spacing:6.240000pt;}
.wsbc{word-spacing:6.432000pt;}
.ws62{word-spacing:6.506667pt;}
.ws2a{word-spacing:6.613333pt;}
.ws43{word-spacing:6.720000pt;}
.ws29{word-spacing:6.773333pt;}
.wsa8{word-spacing:6.826667pt;}
.wse5{word-spacing:6.864000pt;}
.wsd8{word-spacing:6.912000pt;}
.wsd7{word-spacing:7.248000pt;}
.ws22{word-spacing:7.360000pt;}
.ws86{word-spacing:7.413333pt;}
.wsb2{word-spacing:7.488000pt;}
.ws89{word-spacing:7.520000pt;}
.wsad{word-spacing:7.536000pt;}
.wsd1{word-spacing:7.680000pt;}
.wsa3{word-spacing:7.786667pt;}
.wse7{word-spacing:7.824000pt;}
.ws4a{word-spacing:7.840000pt;}
.wsc6{word-spacing:7.872000pt;}
.wsdd{word-spacing:8.064000pt;}
.wsfb{word-spacing:8.208000pt;}
.wsd4{word-spacing:8.256000pt;}
.ws88{word-spacing:8.533333pt;}
.ws87{word-spacing:8.586667pt;}
.wsb4{word-spacing:8.640000pt;}
.ws2f{word-spacing:8.693333pt;}
.wscf{word-spacing:8.736000pt;}
.wsc8{word-spacing:8.928000pt;}
.ws6c{word-spacing:8.960000pt;}
.wsc7{word-spacing:8.976000pt;}
.ws1e{word-spacing:9.013333pt;}
.wsf5{word-spacing:9.024000pt;}
.ws100{word-spacing:9.120000pt;}
.ws84{word-spacing:9.600000pt;}
.wsd0{word-spacing:9.936000pt;}
.wsfd{word-spacing:10.032000pt;}
.wsae{word-spacing:10.608000pt;}
.ws27{word-spacing:10.666667pt;}
.wsba{word-spacing:10.896000pt;}
.wscd{word-spacing:11.136000pt;}
.wsef{word-spacing:15.792000pt;}
.wsf0{word-spacing:16.320000pt;}
.wsb5{word-spacing:16.608000pt;}
.ws18{word-spacing:17.493333pt;}
.ws101{word-spacing:22.032000pt;}
.wse8{word-spacing:35.328000pt;}
._9{margin-left:-10.197333pt;}
._1a{margin-left:-7.819200pt;}
._1b{margin-left:-5.966400pt;}
._8{margin-left:-5.027200pt;}
._c{margin-left:-3.698667pt;}
._1{margin-left:-2.565867pt;}
._0{margin-left:-1.496000pt;}
._2{width:1.060800pt;}
._4{width:1.968000pt;}
._d{width:3.234667pt;}
._5{width:4.128000pt;}
._e{width:5.040000pt;}
._b{width:5.949333pt;}
._6{width:6.864000pt;}
._7{width:7.856000pt;}
._a{width:9.229333pt;}
._17{width:10.483200pt;}
._11{width:12.202667pt;}
._1c{width:13.248000pt;}
._19{width:14.624000pt;}
._18{width:15.542400pt;}
._1d{width:25.579200pt;}
._1e{width:26.582400pt;}
._3{width:32.328533pt;}
._15{width:37.910400pt;}
._16{width:39.014400pt;}
._12{width:242.434667pt;}
._13{width:351.701333pt;}
._f{width:482.933333pt;}
._14{width:497.237333pt;}
._10{width:587.200000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.702267pt;}
.y10e{bottom:100.258533pt;}
.yde{bottom:100.269067pt;}
.yae{bottom:100.509200pt;}
.y87{bottom:100.514400pt;}
.y9f{bottom:100.514533pt;}
.yc{bottom:104.182267pt;}
.y2a{bottom:104.189067pt;}
.yb{bottom:116.979067pt;}
.y10d{bottom:118.930533pt;}
.ydd{bottom:118.941067pt;}
.y86{bottom:119.181067pt;}
.y6d{bottom:119.181200pt;}
.y97{bottom:120.584400pt;}
.y29{bottom:122.855733pt;}
.ya{bottom:129.775867pt;}
.y10c{bottom:137.602533pt;}
.ydc{bottom:137.613067pt;}
.y85{bottom:137.847733pt;}
.y6c{bottom:137.847867pt;}
.y28{bottom:141.522400pt;}
.y9{bottom:142.575867pt;}
.yad{bottom:142.692800pt;}
.y96{bottom:154.600400pt;}
.y10b{bottom:156.274533pt;}
.ydb{bottom:156.285067pt;}
.y84{bottom:156.514400pt;}
.y6b{bottom:156.514533pt;}
.y27{bottom:160.189067pt;}
.y8e{bottom:169.280800pt;}
.y10a{bottom:174.946533pt;}
.yda{bottom:174.957067pt;}
.yac{bottom:175.175867pt;}
.y83{bottom:175.181067pt;}
.y6a{bottom:175.181200pt;}
.y26{bottom:178.855733pt;}
.y38{bottom:180.848267pt;}
.y95{bottom:188.616400pt;}
.y109{bottom:193.618533pt;}
.yd9{bottom:193.629067pt;}
.y82{bottom:193.847733pt;}
.y69{bottom:193.847867pt;}
.y37{bottom:196.844267pt;}
.y25{bottom:197.522400pt;}
.y9d{bottom:206.614133pt;}
.y108{bottom:212.290533pt;}
.yd8{bottom:212.301067pt;}
.y81{bottom:212.514400pt;}
.y68{bottom:212.514533pt;}
.y36{bottom:212.840267pt;}
.y24{bottom:216.189067pt;}
.y94{bottom:216.861733pt;}
.yab{bottom:217.359467pt;}
.y35{bottom:228.836267pt;}
.y93{bottom:230.195067pt;}
.y107{bottom:230.962533pt;}
.yd7{bottom:230.973067pt;}
.y80{bottom:231.181067pt;}
.y67{bottom:231.181200pt;}
.y23{bottom:234.855733pt;}
.y34{bottom:244.832267pt;}
.y92{bottom:248.777733pt;}
.y106{bottom:249.634533pt;}
.yd6{bottom:249.645067pt;}
.yaa{bottom:249.837200pt;}
.y7f{bottom:249.847733pt;}
.y66{bottom:249.847867pt;}
.y22{bottom:253.522400pt;}
.y33{bottom:260.828267pt;}
.y105{bottom:268.306533pt;}
.yd5{bottom:268.317067pt;}
.ya9{bottom:268.509200pt;}
.y7e{bottom:268.514400pt;}
.y65{bottom:268.514533pt;}
.y21{bottom:272.189067pt;}
.y91{bottom:275.868667pt;}
.y32{bottom:276.824267pt;}
.y104{bottom:286.978533pt;}
.yd4{bottom:286.989067pt;}
.y7d{bottom:287.181067pt;}
.y64{bottom:287.181200pt;}
.y20{bottom:290.855733pt;}
.y90{bottom:293.472667pt;}
.y103{bottom:305.650533pt;}
.yd3{bottom:305.661067pt;}
.y7c{bottom:305.847733pt;}
.y63{bottom:305.847867pt;}
.y31{bottom:307.940267pt;}
.y1f{bottom:309.522400pt;}
.ya8{bottom:310.692800pt;}
.y30{bottom:323.936267pt;}
.y102{bottom:324.322533pt;}
.yd2{bottom:324.333067pt;}
.y7b{bottom:324.514400pt;}
.y62{bottom:324.514533pt;}
.y1e{bottom:328.189067pt;}
.y6e{bottom:337.280933pt;}
.y2f{bottom:339.932267pt;}
.y101{bottom:342.994533pt;}
.yd1{bottom:343.005067pt;}
.ya7{bottom:343.170533pt;}
.y7a{bottom:343.181067pt;}
.y61{bottom:343.181200pt;}
.y1d{bottom:346.855733pt;}
.y98{bottom:355.947467pt;}
.y100{bottom:361.666533pt;}
.yd0{bottom:361.677067pt;}
.ya6{bottom:361.842533pt;}
.y79{bottom:361.847733pt;}
.y60{bottom:361.847867pt;}
.y2e{bottom:371.048267pt;}
.y1c{bottom:378.795067pt;}
.yff{bottom:380.338533pt;}
.ycf{bottom:380.349067pt;}
.y78{bottom:380.514400pt;}
.y5f{bottom:380.514533pt;}
.y2d{bottom:387.048267pt;}
.yfe{bottom:399.010533pt;}
.yce{bottom:399.021067pt;}
.y77{bottom:399.181067pt;}
.y5e{bottom:399.181200pt;}
.y2c{bottom:403.048267pt;}
.ya5{bottom:404.026133pt;}
.yfd{bottom:417.682533pt;}
.ycd{bottom:417.693067pt;}
.y8d{bottom:417.847733pt;}
.y5d{bottom:417.847867pt;}
.y2b{bottom:419.048267pt;}
.y76{bottom:430.614133pt;}
.yfc{bottom:436.354533pt;}
.ycc{bottom:436.365067pt;}
.y8c{bottom:436.514400pt;}
.y5c{bottom:436.514533pt;}
.yfb{bottom:455.026533pt;}
.ycb{bottom:455.037067pt;}
.y8b{bottom:455.181067pt;}
.y5b{bottom:455.181200pt;}
.ya4{bottom:460.026133pt;}
.y1b{bottom:461.713733pt;}
.yfa{bottom:473.698533pt;}
.yca{bottom:473.709067pt;}
.y75{bottom:473.847733pt;}
.y5a{bottom:473.847867pt;}
.yf9{bottom:492.370533pt;}
.yc9{bottom:492.381067pt;}
.y74{bottom:492.514400pt;}
.y59{bottom:492.514533pt;}
.y1a{bottom:498.167467pt;}
.yf8{bottom:511.042533pt;}
.yc8{bottom:511.053067pt;}
.y73{bottom:511.181067pt;}
.y58{bottom:511.181200pt;}
.y19{bottom:515.771467pt;}
.ya3{bottom:516.026133pt;}
.yf7{bottom:529.714533pt;}
.yc7{bottom:529.725067pt;}
.y72{bottom:529.847733pt;}
.y57{bottom:529.847867pt;}
.y18{bottom:533.375467pt;}
.y9c{bottom:537.210267pt;}
.yf6{bottom:548.386533pt;}
.yc6{bottom:548.397067pt;}
.y71{bottom:548.514400pt;}
.y56{bottom:548.514533pt;}
.y9e{bottom:549.853467pt;}
.y17{bottom:550.979467pt;}
.y9b{bottom:554.814267pt;}
.yf5{bottom:567.058533pt;}
.yc5{bottom:567.069067pt;}
.y70{bottom:567.181067pt;}
.y55{bottom:567.181200pt;}
.y16{bottom:568.583467pt;}
.ya2{bottom:572.388533pt;}
.y9a{bottom:572.418267pt;}
.yf4{bottom:585.730533pt;}
.yc4{bottom:585.741067pt;}
.y6f{bottom:585.847733pt;}
.y54{bottom:585.847867pt;}
.y15{bottom:586.187467pt;}
.y99{bottom:590.022267pt;}
.ya1{bottom:598.614267pt;}
.y14{bottom:603.791467pt;}
.yf3{bottom:604.402533pt;}
.yc3{bottom:604.413067pt;}
.y8a{bottom:604.514400pt;}
.y53{bottom:604.514533pt;}
.y13{bottom:621.395467pt;}
.yf2{bottom:623.074533pt;}
.yc2{bottom:623.085067pt;}
.y89{bottom:623.181067pt;}
.y52{bottom:623.181200pt;}
.y88{bottom:624.660933pt;}
.y12{bottom:638.999467pt;}
.yf1{bottom:641.746533pt;}
.yc1{bottom:641.757067pt;}
.y51{bottom:641.847867pt;}
.y11{bottom:656.603467pt;}
.yf0{bottom:660.418533pt;}
.yc0{bottom:660.429067pt;}
.y11f{bottom:660.434533pt;}
.y50{bottom:660.514533pt;}
.y10{bottom:674.207467pt;}
.y8f{bottom:675.340533pt;}
.yef{bottom:679.090533pt;}
.ybf{bottom:679.101067pt;}
.y11e{bottom:679.106533pt;}
.y4f{bottom:679.181200pt;}
.yf{bottom:691.811467pt;}
.ya0{bottom:691.947600pt;}
.yee{bottom:697.762533pt;}
.ybe{bottom:697.773067pt;}
.y11d{bottom:697.778533pt;}
.y4e{bottom:697.847867pt;}
.yed{bottom:716.434533pt;}
.ybd{bottom:716.445067pt;}
.y11c{bottom:716.450533pt;}
.y4d{bottom:716.514533pt;}
.ye{bottom:719.453600pt;}
.yec{bottom:735.106533pt;}
.ybc{bottom:735.117067pt;}
.y11b{bottom:735.122533pt;}
.y4c{bottom:735.181200pt;}
.yeb{bottom:753.778533pt;}
.ybb{bottom:753.789067pt;}
.y11a{bottom:753.794533pt;}
.y4b{bottom:753.847867pt;}
.yea{bottom:772.450533pt;}
.yba{bottom:772.461067pt;}
.y119{bottom:772.466533pt;}
.y4a{bottom:772.514533pt;}
.y8{bottom:789.926133pt;}
.ye9{bottom:791.122533pt;}
.yb9{bottom:791.133067pt;}
.y118{bottom:791.138533pt;}
.y49{bottom:791.181200pt;}
.y7{bottom:805.926133pt;}
.ye8{bottom:809.794533pt;}
.yb8{bottom:809.805067pt;}
.y117{bottom:809.810533pt;}
.y48{bottom:809.847867pt;}
.y6{bottom:821.926133pt;}
.ye7{bottom:828.466533pt;}
.yb7{bottom:828.477067pt;}
.y116{bottom:828.482533pt;}
.y47{bottom:828.514533pt;}
.ye6{bottom:847.138533pt;}
.yb6{bottom:847.149067pt;}
.y115{bottom:847.154533pt;}
.y46{bottom:847.181200pt;}
.y5{bottom:853.044267pt;}
.ye5{bottom:865.810533pt;}
.yb5{bottom:865.821067pt;}
.y114{bottom:865.826533pt;}
.y45{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.ye4{bottom:884.482533pt;}
.yb4{bottom:884.493067pt;}
.y113{bottom:884.498533pt;}
.y44{bottom:884.514533pt;}
.ye3{bottom:903.154533pt;}
.yb3{bottom:903.165067pt;}
.y112{bottom:903.170533pt;}
.y43{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.ye2{bottom:921.826533pt;}
.yb2{bottom:921.837067pt;}
.y111{bottom:921.842533pt;}
.y42{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.ye1{bottom:940.498533pt;}
.yb1{bottom:940.509067pt;}
.y41{bottom:940.514533pt;}
.ye0{bottom:959.170533pt;}
.yb0{bottom:959.181067pt;}
.y40{bottom:959.181200pt;}
.y110{bottom:966.913200pt;}
.ydf{bottom:977.842533pt;}
.y3f{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.yaf{bottom:988.062933pt;}
.y10f{bottom:995.622133pt;}
.y3e{bottom:996.514533pt;}
.y3a{bottom:1030.390667pt;}
.y39{bottom:1047.724000pt;}
.y3d{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h13{height:33.979167pt;}
.h11{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h14{height:34.666667pt;}
.h8{height:38.226562pt;}
.h10{height:38.273438pt;}
.hf{height:38.507812pt;}
.ha{height:39.000000pt;}
.h15{height:39.021333pt;}
.h9{height:40.546875pt;}
.hd{height:43.333333pt;}
.hb{height:44.039062pt;}
.h12{height:44.601562pt;}
.h4{height:47.666667pt;}
.hc{height:48.656250pt;}
.he{height:48.932292pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.173067pt;}
.xc{left:96.257467pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x4{left:266.834667pt;}
.xb{left:281.954667pt;}
.x3{left:366.602667pt;}
.xf{left:370.052400pt;}
.x10{left:407.228800pt;}
.x13{left:409.916800pt;}
.x11{left:417.159467pt;}
.x14{left:437.330133pt;}
.x15{left:476.615467pt;}
.x9{left:540.692400pt;}
.xe{left:548.496933pt;}
.x8{left:556.020400pt;}
.xd{left:574.571733pt;}
.x12{left:687.666133pt;}
.x1{left:712.140000pt;}
}




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