
    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_5746db4f29e9230fd8ff73e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c2473d29f932aed8ce0ec37b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_40e17b41d3c64b61d6990168.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_94b5fbafbd1cd5043c071502.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_3e5f530dc3bc973fd0d6095c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_c47f037b5232703f0819bfb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_63e054133b51afdc7267d468.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_ca7b389ae01532ccc9705a3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901855;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_118c89e8bb0e3a434746d448.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.766602;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;}
.m5{transform:matrix(0.241668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241668,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,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);}
.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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.852000px;}
.ls35{letter-spacing:-0.654000px;}
.ls2a{letter-spacing:-0.579600px;}
.ls1c{letter-spacing:-0.533400px;}
.ls6{letter-spacing:-0.463800px;}
.ls14{letter-spacing:-0.414000px;}
.ls1b{letter-spacing:-0.326400px;}
.ls21{letter-spacing:-0.301200px;}
.ls8{letter-spacing:-0.210000px;}
.lsb{letter-spacing:-0.175800px;}
.ls19{letter-spacing:-0.172200px;}
.ls5{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.115800px;}
.ls18{letter-spacing:-0.107400px;}
.ls30{letter-spacing:-0.078600px;}
.ls26{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.058320px;}
.ls13{letter-spacing:-0.041040px;}
.ls29{letter-spacing:-0.038160px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.038880px;}
.ls1a{letter-spacing:0.097200px;}
.ls32{letter-spacing:0.140400px;}
.ls34{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.157200px;}
.ls2d{letter-spacing:0.174000px;}
.ls11{letter-spacing:0.174240px;}
.ls2e{letter-spacing:0.175200px;}
.ls1d{letter-spacing:0.179280px;}
.ls1e{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.186600px;}
.lsa{letter-spacing:0.190200px;}
.ls2f{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.479520px;}
.ls2{letter-spacing:0.617760px;}
.ls31{letter-spacing:0.659520px;}
.ls36{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.894240px;}
.ls25{letter-spacing:0.900000px;}
.ls28{letter-spacing:1.614000px;}
.ls17{letter-spacing:2.106720px;}
.ls22{letter-spacing:3.774240px;}
.ls12{letter-spacing:5.706720px;}
.ls16{letter-spacing:8.094240px;}
.ls23{letter-spacing:13.134240px;}
.ls33{letter-spacing:13.854240px;}
.ls24{letter-spacing:17.454240px;}
.ls27{letter-spacing:17.946720px;}
.ls2c{letter-spacing:19.386720px;}
.ls10{letter-spacing:21.546720px;}
.ls2b{letter-spacing:22.266720px;}
.lse{letter-spacing:22.986720px;}
.ls1{letter-spacing:38.106720px;}
.ls1f{letter-spacing:66.186720px;}
.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:-19.077120px;}
.wsa{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws19{word-spacing:-14.165760px;}
.ws12{word-spacing:-13.811760px;}
.ws18{word-spacing:-13.692360px;}
.ws11{word-spacing:-13.680960px;}
.ws14{word-spacing:-13.646160px;}
.ws6{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.467600px;}
.wsb{word-spacing:-13.464720px;}
.ws8{word-spacing:-13.447440px;}
.ws17{word-spacing:-13.440960px;}
.ws13{word-spacing:-13.427160px;}
.wsd{word-spacing:-13.398360px;}
.ws7{word-spacing:-13.389960px;}
.wse{word-spacing:-13.333560px;}
.ws16{word-spacing:-10.902240px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.wsf{word-spacing:-0.059760px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._22{margin-left:-214.738560px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-159.758400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-144.748560px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-109.765680px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._1a{margin-left:-31.530240px;}
._7c{margin-left:-13.761840px;}
._27{margin-left:-4.827600px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2b{width:1.056480px;}
._2f{width:2.778240px;}
._35{width:3.886320px;}
._38{width:5.062080px;}
._3a{width:6.693120px;}
._2d{width:7.709040px;}
._2c{width:8.972880px;}
._32{width:10.440240px;}
._31{width:11.473920px;}
._40{width:12.489840px;}
._3b{width:14.711520px;}
._33{width:15.836400px;}
._2e{width:17.629200px;}
._3d{width:19.094880px;}
._30{width:20.516880px;}
._37{width:22.515120px;}
._36{width:23.679360px;}
._3c{width:24.698880px;}
._39{width:25.770240px;}
._34{width:27.011520px;}
._49{width:29.461680px;}
._7d{width:30.645840px;}
._4c{width:32.449680px;}
._29{width:33.983040px;}
._28{width:35.043840px;}
._2a{width:36.592800px;}
._66{width:39.620880px;}
._64{width:41.652720px;}
._3e{width:42.907680px;}
._3f{width:44.341440px;}
._6f{width:48.465360px;}
._43{width:50.138640px;}
._78{width:51.890880px;}
._7a{width:53.966640px;}
._79{width:55.114560px;}
._6d{width:57.250080px;}
._6c{width:58.445280px;}
._7e{width:60.118560px;}
._68{width:62.389440px;}
._5a{width:64.062720px;}
._41{width:65.556720px;}
._61{width:68.085840px;}
._69{width:71.652240px;}
._51{width:73.624320px;}
._4d{width:75.077760px;}
._67{width:77.986800px;}
._5d{width:79.182000px;}
._71{width:88.105440px;}
._47{width:89.640000px;}
._5e{width:91.492560px;}
._42{width:101.293200px;}
._70{width:102.428640px;}
._6a{width:105.177600px;}
._62{width:109.738560px;}
._53{width:120.834720px;}
._4a{width:123.339840px;}
._46{width:133.922160px;}
._5f{width:138.822480px;}
._44{width:147.984960px;}
._63{width:150.117120px;}
._57{width:155.376000px;}
._4f{width:160.933680px;}
._75{width:162.387120px;}
._74{width:163.443600px;}
._65{width:167.746320px;}
._56{width:177.201840px;}
._6e{width:193.144320px;}
._77{width:196.623840px;}
._5c{width:207.247680px;}
._54{width:209.518560px;}
._4e{width:230.255280px;}
._55{width:234.338160px;}
._50{width:238.263120px;}
._45{width:242.943600px;}
._72{width:257.685120px;}
._59{width:260.314560px;}
._60{width:262.525680px;}
._58{width:266.350320px;}
._52{width:273.103200px;}
._5b{width:275.015520px;}
._7b{width:279.796320px;}
._6b{width:284.636880px;}
._48{width:287.326080px;}
._76{width:291.808080px;}
._73{width:493.378560px;}
._4b{width:2651.057040px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y154{bottom:0.540000px;}
.y155{bottom:1.620000px;}
.y6a{bottom:2.340000px;}
.yb8{bottom:2.520000px;}
.y6b{bottom:2.700000px;}
.y13a{bottom:3.780000px;}
.ybc{bottom:3.960000px;}
.yf1{bottom:3.990000px;}
.yc7{bottom:4.005000px;}
.y13c{bottom:5.040000px;}
.y13f{bottom:5.220000px;}
.y151{bottom:8.820000px;}
.y67{bottom:10.080000px;}
.yb5{bottom:10.260000px;}
.yc2{bottom:13.140000px;}
.yef{bottom:13.170000px;}
.y15c{bottom:13.185000px;}
.y153{bottom:18.900000px;}
.y69{bottom:20.700000px;}
.ybf{bottom:22.140000px;}
.y101{bottom:22.170000px;}
.y114{bottom:22.185000px;}
.ycb{bottom:22.320000px;}
.yf0{bottom:22.350000px;}
.yc6{bottom:22.365000px;}
.y13b{bottom:23.220000px;}
.y13e{bottom:23.400000px;}
.yc1{bottom:31.320000px;}
.y15a{bottom:31.365000px;}
.yf4{bottom:31.500000px;}
.yfe{bottom:40.494000px;}
.ybe{bottom:40.500000px;}
.y15e{bottom:40.545000px;}
.yca{bottom:40.680000px;}
.yc5{bottom:40.725000px;}
.yfc{bottom:49.674000px;}
.yc0{bottom:49.680000px;}
.y15b{bottom:49.725000px;}
.yf8{bottom:49.860000px;}
.yfd{bottom:58.854000px;}
.yc3{bottom:58.860000px;}
.y15d{bottom:58.905000px;}
.yf9{bottom:59.040000px;}
.y6{bottom:59.760000px;}
.yf3{bottom:77.220000px;}
.y11f{bottom:88.956000px;}
.y8a{bottom:89.316000px;}
.yff{bottom:91.836000px;}
.y165{bottom:92.196000px;}
.y31{bottom:98.496000px;}
.yd0{bottom:99.936000px;}
.y166{bottom:101.916000px;}
.y164{bottom:104.256000px;}
.yb3{bottom:107.316000px;}
.y163{bottom:107.856000px;}
.y11e{bottom:110.016000px;}
.y89{bottom:110.376000px;}
.y65{bottom:113.256000px;}
.yfb{bottom:116.136000px;}
.y30{bottom:119.556000px;}
.ycf{bottom:120.996000px;}
.y131{bottom:125.316000px;}
.yb2{bottom:128.376000px;}
.y162{bottom:128.916000px;}
.y11d{bottom:131.076000px;}
.y88{bottom:131.436000px;}
.y64{bottom:134.316000px;}
.y2f{bottom:140.616000px;}
.yce{bottom:142.056000px;}
.y130{bottom:146.376000px;}
.yb1{bottom:149.436000px;}
.y161{bottom:149.976000px;}
.y11c{bottom:152.130000px;}
.y87{bottom:152.490000px;}
.y63{bottom:155.370000px;}
.y14f{bottom:158.430000px;}
.y2e{bottom:161.670000px;}
.ycd{bottom:163.110000px;}
.y12f{bottom:167.430000px;}
.y160{bottom:169.230000px;}
.yb0{bottom:170.490000px;}
.y11b{bottom:173.190000px;}
.y86{bottom:173.550000px;}
.y62{bottom:176.430000px;}
.y14e{bottom:179.490000px;}
.y2d{bottom:182.730000px;}
.ycc{bottom:184.170000px;}
.y12e{bottom:188.490000px;}
.yaf{bottom:191.550000px;}
.y11a{bottom:194.250000px;}
.y85{bottom:194.610000px;}
.yfa{bottom:195.330000px;}
.y61{bottom:197.490000px;}
.y14d{bottom:200.550000px;}
.yc9{bottom:203.430000px;}
.y2c{bottom:203.790000px;}
.y12d{bottom:209.550000px;}
.yae{bottom:212.610000px;}
.y119{bottom:215.130000px;}
.yed{bottom:215.670000px;}
.y60{bottom:218.550000px;}
.y14c{bottom:221.610000px;}
.y84{bottom:224.670000px;}
.y2b{bottom:224.850000px;}
.y12c{bottom:230.610000px;}
.yad{bottom:233.670000px;}
.y118{bottom:236.190000px;}
.yec{bottom:236.730000px;}
.y5f{bottom:239.610000px;}
.y14b{bottom:242.670000px;}
.y83{bottom:245.730000px;}
.y2a{bottom:245.910000px;}
.y15f{bottom:248.430000px;}
.y12b{bottom:251.670000px;}
.yac{bottom:254.730000px;}
.yf7{bottom:256.170000px;}
.y117{bottom:257.250000px;}
.yeb{bottom:257.790000px;}
.y5e{bottom:260.670000px;}
.y14a{bottom:263.730000px;}
.yc8{bottom:264.450000px;}
.y82{bottom:266.790000px;}
.y29{bottom:266.970000px;}
.y12a{bottom:272.730000px;}
.yab{bottom:275.790000px;}
.y116{bottom:278.310000px;}
.yea{bottom:278.850000px;}
.y5d{bottom:281.730000px;}
.y149{bottom:284.790000px;}
.y81{bottom:287.850000px;}
.y28{bottom:288.030000px;}
.y129{bottom:293.790000px;}
.yaa{bottom:296.850000px;}
.y115{bottom:299.370000px;}
.ye9{bottom:299.910000px;}
.y5c{bottom:302.790000px;}
.y148{bottom:305.850000px;}
.y80{bottom:308.910000px;}
.y27{bottom:309.090000px;}
.y128{bottom:314.850000px;}
.ya9{bottom:317.910000px;}
.y113{bottom:318.810000px;}
.ye8{bottom:320.970000px;}
.y5b{bottom:323.850000px;}
.yc4{bottom:325.290000px;}
.y147{bottom:326.910000px;}
.y159{bottom:327.810000px;}
.y6c{bottom:328.035000px;}
.y26{bottom:330.195000px;}
.yf6{bottom:335.595000px;}
.y127{bottom:335.955000px;}
.y7f{bottom:339.015000px;}
.y5a{bottom:344.955000px;}
.y146{bottom:348.015000px;}
.ye7{bottom:351.075000px;}
.y25{bottom:351.255000px;}
.y126{bottom:357.015000px;}
.y7e{bottom:360.075000px;}
.y112{bottom:361.335000px;}
.y59{bottom:366.015000px;}
.y145{bottom:369.075000px;}
.ye6{bottom:372.135000px;}
.y24{bottom:372.315000px;}
.y68{bottom:373.755000px;}
.y125{bottom:378.075000px;}
.y7d{bottom:381.135000px;}
.y66{bottom:384.375000px;}
.ybd{bottom:386.355000px;}
.y58{bottom:387.075000px;}
.y144{bottom:390.135000px;}
.ye5{bottom:393.195000px;}
.y23{bottom:393.375000px;}
.y156{bottom:395.535000px;}
.y124{bottom:399.135000px;}
.y7c{bottom:402.195000px;}
.y111{bottom:403.995000px;}
.y158{bottom:407.055000px;}
.y57{bottom:408.135000px;}
.y143{bottom:411.195000px;}
.ye4{bottom:414.255000px;}
.yf5{bottom:414.795000px;}
.y22{bottom:415.155000px;}
.y123{bottom:420.195000px;}
.y7b{bottom:423.255000px;}
.y56{bottom:429.195000px;}
.y142{bottom:432.255000px;}
.ye3{bottom:435.315000px;}
.y152{bottom:439.275000px;}
.y21{bottom:439.995000px;}
.y122{bottom:441.255000px;}
.y7a{bottom:444.315000px;}
.y110{bottom:446.655000px;}
.y150{bottom:449.535000px;}
.y55{bottom:450.255000px;}
.y141{bottom:453.315000px;}
.ye2{bottom:456.375000px;}
.y20{bottom:460.875000px;}
.y121{bottom:462.315000px;}
.ya8{bottom:465.375000px;}
.ybb{bottom:465.555000px;}
.y54{bottom:471.315000px;}
.y79{bottom:474.375000px;}
.ye1{bottom:477.435000px;}
.y120{bottom:483.375000px;}
.y157{bottom:486.255000px;}
.ya7{bottom:486.435000px;}
.y10f{bottom:489.315000px;}
.y1f{bottom:490.935000px;}
.y53{bottom:492.375000px;}
.yf2{bottom:493.995000px;}
.y78{bottom:495.435000px;}
.ye0{bottom:498.495000px;}
.y138{bottom:504.435000px;}
.ya6{bottom:507.495000px;}
.y1e{bottom:511.995000px;}
.y52{bottom:513.435000px;}
.y77{bottom:516.495000px;}
.y137{bottom:525.495000px;}
.ya5{bottom:528.555000px;}
.y1d{bottom:533.055000px;}
.y51{bottom:534.495000px;}
.y10e{bottom:537.375000px;}
.y76{bottom:537.555000px;}
.y136{bottom:546.555000px;}
.y140{bottom:547.455000px;}
.ya4{bottom:549.615000px;}
.y1c{bottom:554.115000px;}
.y50{bottom:555.555000px;}
.y10d{bottom:558.435000px;}
.y75{bottom:558.615000px;}
.y135{bottom:567.615000px;}
.ydf{bottom:570.675000px;}
.y1b{bottom:575.175000px;}
.y4f{bottom:576.615000px;}
.y10c{bottom:579.495000px;}
.y74{bottom:579.675000px;}
.y134{bottom:588.675000px;}
.yee{bottom:591.555000px;}
.yde{bottom:591.735000px;}
.y1a{bottom:596.265000px;}
.y4e{bottom:597.705000px;}
.y10b{bottom:600.585000px;}
.ya3{bottom:600.765000px;}
.y73{bottom:609.765000px;}
.ydd{bottom:612.825000px;}
.y19{bottom:617.325000px;}
.y4d{bottom:618.765000px;}
.y13d{bottom:619.125000px;}
.y10a{bottom:621.645000px;}
.ya2{bottom:621.825000px;}
.y72{bottom:630.825000px;}
.ydc{bottom:633.885000px;}
.y18{bottom:638.385000px;}
.y4c{bottom:639.825000px;}
.y109{bottom:642.705000px;}
.ya1{bottom:642.885000px;}
.y71{bottom:651.885000px;}
.ydb{bottom:654.945000px;}
.y17{bottom:659.445000px;}
.y4b{bottom:660.885000px;}
.y108{bottom:663.765000px;}
.ya0{bottom:663.945000px;}
.y133{bottom:670.785000px;}
.y70{bottom:672.945000px;}
.yda{bottom:676.005000px;}
.y16{bottom:680.505000px;}
.y4a{bottom:681.945000px;}
.y107{bottom:684.825000px;}
.y9f{bottom:685.005000px;}
.y6f{bottom:694.005000px;}
.yd9{bottom:697.065000px;}
.y15{bottom:701.565000px;}
.y49{bottom:703.005000px;}
.y106{bottom:705.885000px;}
.y9e{bottom:706.065000px;}
.y6e{bottom:715.065000px;}
.y132{bottom:716.325000px;}
.yd8{bottom:718.125000px;}
.y14{bottom:722.625000px;}
.y48{bottom:724.065000px;}
.y105{bottom:726.945000px;}
.y9d{bottom:727.125000px;}
.y6d{bottom:736.125000px;}
.y13{bottom:743.685000px;}
.y47{bottom:745.125000px;}
.y9c{bottom:748.005000px;}
.yba{bottom:757.005000px;}
.y12{bottom:764.745000px;}
.y46{bottom:766.005000px;}
.y9b{bottom:769.065000px;}
.y139{bottom:775.005000px;}
.yb9{bottom:778.065000px;}
.y11{bottom:785.805000px;}
.y45{bottom:787.065000px;}
.yd7{bottom:790.125000px;}
.y9a{bottom:799.125000px;}
.y10{bottom:806.865000px;}
.y44{bottom:808.125000px;}
.yd6{bottom:811.185000px;}
.y99{bottom:820.185000px;}
.yf{bottom:827.925000px;}
.y43{bottom:829.185000px;}
.yd5{bottom:832.245000px;}
.y98{bottom:841.245000px;}
.ye{bottom:848.985000px;}
.y42{bottom:850.245000px;}
.yd4{bottom:853.305000px;}
.y97{bottom:862.350000px;}
.y41{bottom:871.350000px;}
.yd{bottom:872.250000px;}
.yd3{bottom:874.410000px;}
.y96{bottom:883.410000px;}
.y40{bottom:892.410000px;}
.yd2{bottom:895.470000px;}
.yc{bottom:898.530000px;}
.y95{bottom:904.470000px;}
.y3f{bottom:913.470000px;}
.yd1{bottom:916.530000px;}
.yb{bottom:919.590000px;}
.y94{bottom:925.530000px;}
.y3e{bottom:934.530000px;}
.ya{bottom:936.330000px;}
.y104{bottom:937.590000px;}
.y93{bottom:946.590000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:958.650000px;}
.y92{bottom:967.650000px;}
.y3c{bottom:976.650000px;}
.y103{bottom:977.910000px;}
.y8{bottom:982.410000px;}
.y91{bottom:988.710000px;}
.y3b{bottom:997.710000px;}
.yb7{bottom:1000.770000px;}
.y90{bottom:1009.770000px;}
.y7{bottom:1011.750000px;}
.y3a{bottom:1018.770000px;}
.y8f{bottom:1030.830000px;}
.y39{bottom:1039.830000px;}
.yb6{bottom:1046.310000px;}
.y5{bottom:1049.190000px;}
.y8e{bottom:1051.890000px;}
.yb4{bottom:1056.930000px;}
.y102{bottom:1057.110000px;}
.y38{bottom:1060.890000px;}
.y8d{bottom:1072.950000px;}
.y4{bottom:1081.410000px;}
.y37{bottom:1081.950000px;}
.y8c{bottom:1094.010000px;}
.y36{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.y8b{bottom:1115.070000px;}
.y100{bottom:1118.130000px;}
.y35{bottom:1124.070000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1145.700000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h20{height:15.840000px;}
.hf{height:16.740000px;}
.hc{height:16.911000px;}
.hb{height:16.920000px;}
.h19{height:18.180000px;}
.h12{height:18.360000px;}
.h1e{height:23.040000px;}
.h9{height:24.300000px;}
.hd{height:24.480000px;}
.h1f{height:33.300000px;}
.ha{height:34.920000px;}
.he{height:35.100000px;}
.h1b{height:36.540000px;}
.h1a{height:36.576000px;}
.h1c{height:36.720000px;}
.h16{height:36.756000px;}
.h1d{height:37.620000px;}
.h21{height:37.705078px;}
.h6{height:38.671172px;}
.h22{height:39.313477px;}
.h10{height:41.726953px;}
.h11{height:43.506914px;}
.h7{height:52.260820px;}
.h15{height:54.900000px;}
.h14{height:54.936000px;}
.h8{height:59.439023px;}
.h4{height:61.189805px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h13{height:73.260000px;}
.h18{height:73.296000px;}
.h2{height:86.255508px;}
.h17{height:91.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:115.920000px;}
.w5{width:115.956000px;}
.w9{width:116.100000px;}
.we{width:122.436000px;}
.wa{width:140.256000px;}
.w1a{width:142.776000px;}
.w12{width:147.096000px;}
.wd{width:150.120000px;}
.w1b{width:158.760000px;}
.w16{width:162.180000px;}
.w3{width:162.210000px;}
.w18{width:162.360000px;}
.w8{width:162.390000px;}
.wf{width:167.610000px;}
.w10{width:174.630000px;}
.w19{width:175.350000px;}
.w6{width:186.690000px;}
.w17{width:186.870000px;}
.w15{width:188.130000px;}
.w1c{width:204.150000px;}
.w7{width:204.330000px;}
.w13{width:208.830000px;}
.w1d{width:218.550000px;}
.w1e{width:224.895000px;}
.w14{width:232.050000px;}
.wc{width:241.635000px;}
.wb{width:244.110000px;}
.w11{width:311.430000px;}
.w1f{width:321.870000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:1.080000px;}
.xa{left:10.800000px;}
.x30{left:12.780000px;}
.x2e{left:15.300000px;}
.xc{left:16.560000px;}
.xf{left:20.550000px;}
.x32{left:29.160000px;}
.xd{left:30.600000px;}
.x10{left:42.330000px;}
.x1a{left:52.920000px;}
.x6{left:53.999987px;}
.x3a{left:60.120000px;}
.x34{left:63.179987px;}
.x2b{left:66.059987px;}
.x7{left:70.199987px;}
.x18{left:71.279987px;}
.x8{left:75.239987px;}
.x3e{left:80.999987px;}
.x19{left:86.039987px;}
.x41{left:93.059987px;}
.x3c{left:96.515987px;}
.x3f{left:97.595987px;}
.x42{left:100.655987px;}
.x40{left:108.035987px;}
.x25{left:116.496000px;}
.x3d{left:117.935987px;}
.x36{left:120.276000px;}
.x9{left:123.156000px;}
.x35{left:135.575987px;}
.x13{left:153.930000px;}
.x2a{left:158.249987px;}
.x5{left:173.189987px;}
.x1f{left:179.130000px;}
.x24{left:183.449987px;}
.x33{left:184.889987px;}
.x1c{left:196.950000px;}
.x21{left:203.790000px;}
.x29{left:245.730000px;}
.x39{left:249.510000px;}
.x12{left:252.390000px;}
.x2c{left:258.509987px;}
.x17{left:283.215000px;}
.x3{left:286.634987px;}
.x2d{left:299.415000px;}
.x26{left:305.175000px;}
.x31{left:309.315000px;}
.xb{left:311.835000px;}
.x14{left:342.615000px;}
.x2{left:350.534987px;}
.x2f{left:361.875000px;}
.x22{left:416.415000px;}
.x4{left:419.114987px;}
.x1d{left:444.855000px;}
.x27{left:447.375000px;}
.x37{left:451.155000px;}
.xe{left:454.035000px;}
.x1{left:479.264987px;}
.x15{left:484.845000px;}
.x3b{left:511.125000px;}
.x20{left:528.945000px;}
.x28{left:589.605000px;}
.x38{left:593.385000px;}
.x11{left:596.445000px;}
.x16{left:627.225000px;}
.x23{left:652.245000px;}
.x1e{left:690.270000px;}
.x43{left:838.409987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.757333pt;}
.ls35{letter-spacing:-0.581333pt;}
.ls2a{letter-spacing:-0.515200pt;}
.ls1c{letter-spacing:-0.474133pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls14{letter-spacing:-0.368000pt;}
.ls1b{letter-spacing:-0.290133pt;}
.ls21{letter-spacing:-0.267733pt;}
.ls8{letter-spacing:-0.186667pt;}
.lsb{letter-spacing:-0.156267pt;}
.ls19{letter-spacing:-0.153067pt;}
.ls5{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls18{letter-spacing:-0.095467pt;}
.ls30{letter-spacing:-0.069867pt;}
.ls26{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls13{letter-spacing:-0.036480pt;}
.ls29{letter-spacing:-0.033920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.034560pt;}
.ls1a{letter-spacing:0.086400pt;}
.ls32{letter-spacing:0.124800pt;}
.ls34{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.139733pt;}
.ls2d{letter-spacing:0.154667pt;}
.ls11{letter-spacing:0.154880pt;}
.ls2e{letter-spacing:0.155733pt;}
.ls1d{letter-spacing:0.159360pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.165867pt;}
.lsa{letter-spacing:0.169067pt;}
.ls2f{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.426240pt;}
.ls2{letter-spacing:0.549120pt;}
.ls31{letter-spacing:0.586240pt;}
.ls36{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.794880pt;}
.ls25{letter-spacing:0.800000pt;}
.ls28{letter-spacing:1.434667pt;}
.ls17{letter-spacing:1.872640pt;}
.ls22{letter-spacing:3.354880pt;}
.ls12{letter-spacing:5.072640pt;}
.ls16{letter-spacing:7.194880pt;}
.ls23{letter-spacing:11.674880pt;}
.ls33{letter-spacing:12.314880pt;}
.ls24{letter-spacing:15.514880pt;}
.ls27{letter-spacing:15.952640pt;}
.ls2c{letter-spacing:17.232640pt;}
.ls10{letter-spacing:19.152640pt;}
.ls2b{letter-spacing:19.792640pt;}
.lse{letter-spacing:20.432640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls1f{letter-spacing:58.832640pt;}
.ws0{word-spacing:-16.957440pt;}
.wsa{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.306880pt;}
.wsc{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws19{word-spacing:-12.591787pt;}
.ws12{word-spacing:-12.277120pt;}
.ws18{word-spacing:-12.170987pt;}
.ws11{word-spacing:-12.160853pt;}
.ws14{word-spacing:-12.129920pt;}
.ws6{word-spacing:-12.005120pt;}
.ws15{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.971200pt;}
.wsb{word-spacing:-11.968640pt;}
.ws8{word-spacing:-11.953280pt;}
.ws17{word-spacing:-11.947520pt;}
.ws13{word-spacing:-11.935253pt;}
.wsd{word-spacing:-11.909653pt;}
.ws7{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.852053pt;}
.ws16{word-spacing:-9.690880pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.wsf{word-spacing:-0.053120pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._22{margin-left:-190.878720pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.007467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.665387pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.569493pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._1a{margin-left:-28.026880pt;}
._7c{margin-left:-12.232747pt;}
._27{margin-left:-4.291200pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2b{width:0.939093pt;}
._2f{width:2.469547pt;}
._35{width:3.454507pt;}
._38{width:4.499627pt;}
._3a{width:5.949440pt;}
._2d{width:6.852480pt;}
._2c{width:7.975893pt;}
._32{width:9.280213pt;}
._31{width:10.199040pt;}
._40{width:11.102080pt;}
._3b{width:13.076907pt;}
._33{width:14.076800pt;}
._2e{width:15.670400pt;}
._3d{width:16.973227pt;}
._30{width:18.237227pt;}
._37{width:20.013440pt;}
._36{width:21.048320pt;}
._3c{width:21.954560pt;}
._39{width:22.906880pt;}
._34{width:24.010240pt;}
._49{width:26.188160pt;}
._7d{width:27.240747pt;}
._4c{width:28.844160pt;}
._29{width:30.207147pt;}
._28{width:31.150080pt;}
._2a{width:32.526933pt;}
._66{width:35.218560pt;}
._64{width:37.024640pt;}
._3e{width:38.140160pt;}
._3f{width:39.414613pt;}
._6f{width:43.080320pt;}
._43{width:44.567680pt;}
._78{width:46.125227pt;}
._7a{width:47.970347pt;}
._79{width:48.990720pt;}
._6d{width:50.888960pt;}
._6c{width:51.951360pt;}
._7e{width:53.438720pt;}
._68{width:55.457280pt;}
._5a{width:56.944640pt;}
._41{width:58.272640pt;}
._61{width:60.520747pt;}
._69{width:63.690880pt;}
._51{width:65.443840pt;}
._4d{width:66.735787pt;}
._67{width:69.321600pt;}
._5d{width:70.384000pt;}
._71{width:78.315947pt;}
._47{width:79.680000pt;}
._5e{width:81.326720pt;}
._42{width:90.038400pt;}
._70{width:91.047680pt;}
._6a{width:93.491200pt;}
._62{width:97.545387pt;}
._53{width:107.408640pt;}
._4a{width:109.635413pt;}
._46{width:119.041920pt;}
._5f{width:123.397760pt;}
._44{width:131.542187pt;}
._63{width:133.437440pt;}
._57{width:138.112000pt;}
._4f{width:143.052160pt;}
._75{width:144.344107pt;}
._74{width:145.283200pt;}
._65{width:149.107840pt;}
._56{width:157.512747pt;}
._6e{width:171.683840pt;}
._77{width:174.776747pt;}
._5c{width:184.220160pt;}
._54{width:186.238720pt;}
._4e{width:204.671360pt;}
._55{width:208.300587pt;}
._50{width:211.789440pt;}
._45{width:215.949867pt;}
._72{width:229.053440pt;}
._59{width:231.390720pt;}
._60{width:233.356160pt;}
._58{width:236.755840pt;}
._52{width:242.758400pt;}
._5b{width:244.458240pt;}
._7b{width:248.707840pt;}
._6b{width:253.010560pt;}
._48{width:255.400960pt;}
._76{width:259.384960pt;}
._73{width:438.558720pt;}
._4b{width:2356.495147pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:0.480000pt;}
.y155{bottom:1.440000pt;}
.y6a{bottom:2.080000pt;}
.yb8{bottom:2.240000pt;}
.y6b{bottom:2.400000pt;}
.y13a{bottom:3.360000pt;}
.ybc{bottom:3.520000pt;}
.yf1{bottom:3.546667pt;}
.yc7{bottom:3.560000pt;}
.y13c{bottom:4.480000pt;}
.y13f{bottom:4.640000pt;}
.y151{bottom:7.840000pt;}
.y67{bottom:8.960000pt;}
.yb5{bottom:9.120000pt;}
.yc2{bottom:11.680000pt;}
.yef{bottom:11.706667pt;}
.y15c{bottom:11.720000pt;}
.y153{bottom:16.800000pt;}
.y69{bottom:18.400000pt;}
.ybf{bottom:19.680000pt;}
.y101{bottom:19.706667pt;}
.y114{bottom:19.720000pt;}
.ycb{bottom:19.840000pt;}
.yf0{bottom:19.866667pt;}
.yc6{bottom:19.880000pt;}
.y13b{bottom:20.640000pt;}
.y13e{bottom:20.800000pt;}
.yc1{bottom:27.840000pt;}
.y15a{bottom:27.880000pt;}
.yf4{bottom:28.000000pt;}
.yfe{bottom:35.994667pt;}
.ybe{bottom:36.000000pt;}
.y15e{bottom:36.040000pt;}
.yca{bottom:36.160000pt;}
.yc5{bottom:36.200000pt;}
.yfc{bottom:44.154667pt;}
.yc0{bottom:44.160000pt;}
.y15b{bottom:44.200000pt;}
.yf8{bottom:44.320000pt;}
.yfd{bottom:52.314667pt;}
.yc3{bottom:52.320000pt;}
.y15d{bottom:52.360000pt;}
.yf9{bottom:52.480000pt;}
.y6{bottom:53.120000pt;}
.yf3{bottom:68.640000pt;}
.y11f{bottom:79.072000pt;}
.y8a{bottom:79.392000pt;}
.yff{bottom:81.632000pt;}
.y165{bottom:81.952000pt;}
.y31{bottom:87.552000pt;}
.yd0{bottom:88.832000pt;}
.y166{bottom:90.592000pt;}
.y164{bottom:92.672000pt;}
.yb3{bottom:95.392000pt;}
.y163{bottom:95.872000pt;}
.y11e{bottom:97.792000pt;}
.y89{bottom:98.112000pt;}
.y65{bottom:100.672000pt;}
.yfb{bottom:103.232000pt;}
.y30{bottom:106.272000pt;}
.ycf{bottom:107.552000pt;}
.y131{bottom:111.392000pt;}
.yb2{bottom:114.112000pt;}
.y162{bottom:114.592000pt;}
.y11d{bottom:116.512000pt;}
.y88{bottom:116.832000pt;}
.y64{bottom:119.392000pt;}
.y2f{bottom:124.992000pt;}
.yce{bottom:126.272000pt;}
.y130{bottom:130.112000pt;}
.yb1{bottom:132.832000pt;}
.y161{bottom:133.312000pt;}
.y11c{bottom:135.226667pt;}
.y87{bottom:135.546667pt;}
.y63{bottom:138.106667pt;}
.y14f{bottom:140.826667pt;}
.y2e{bottom:143.706667pt;}
.ycd{bottom:144.986667pt;}
.y12f{bottom:148.826667pt;}
.y160{bottom:150.426667pt;}
.yb0{bottom:151.546667pt;}
.y11b{bottom:153.946667pt;}
.y86{bottom:154.266667pt;}
.y62{bottom:156.826667pt;}
.y14e{bottom:159.546667pt;}
.y2d{bottom:162.426667pt;}
.ycc{bottom:163.706667pt;}
.y12e{bottom:167.546667pt;}
.yaf{bottom:170.266667pt;}
.y11a{bottom:172.666667pt;}
.y85{bottom:172.986667pt;}
.yfa{bottom:173.626667pt;}
.y61{bottom:175.546667pt;}
.y14d{bottom:178.266667pt;}
.yc9{bottom:180.826667pt;}
.y2c{bottom:181.146667pt;}
.y12d{bottom:186.266667pt;}
.yae{bottom:188.986667pt;}
.y119{bottom:191.226667pt;}
.yed{bottom:191.706667pt;}
.y60{bottom:194.266667pt;}
.y14c{bottom:196.986667pt;}
.y84{bottom:199.706667pt;}
.y2b{bottom:199.866667pt;}
.y12c{bottom:204.986667pt;}
.yad{bottom:207.706667pt;}
.y118{bottom:209.946667pt;}
.yec{bottom:210.426667pt;}
.y5f{bottom:212.986667pt;}
.y14b{bottom:215.706667pt;}
.y83{bottom:218.426667pt;}
.y2a{bottom:218.586667pt;}
.y15f{bottom:220.826667pt;}
.y12b{bottom:223.706667pt;}
.yac{bottom:226.426667pt;}
.yf7{bottom:227.706667pt;}
.y117{bottom:228.666667pt;}
.yeb{bottom:229.146667pt;}
.y5e{bottom:231.706667pt;}
.y14a{bottom:234.426667pt;}
.yc8{bottom:235.066667pt;}
.y82{bottom:237.146667pt;}
.y29{bottom:237.306667pt;}
.y12a{bottom:242.426667pt;}
.yab{bottom:245.146667pt;}
.y116{bottom:247.386667pt;}
.yea{bottom:247.866667pt;}
.y5d{bottom:250.426667pt;}
.y149{bottom:253.146667pt;}
.y81{bottom:255.866667pt;}
.y28{bottom:256.026667pt;}
.y129{bottom:261.146667pt;}
.yaa{bottom:263.866667pt;}
.y115{bottom:266.106667pt;}
.ye9{bottom:266.586667pt;}
.y5c{bottom:269.146667pt;}
.y148{bottom:271.866667pt;}
.y80{bottom:274.586667pt;}
.y27{bottom:274.746667pt;}
.y128{bottom:279.866667pt;}
.ya9{bottom:282.586667pt;}
.y113{bottom:283.386667pt;}
.ye8{bottom:285.306667pt;}
.y5b{bottom:287.866667pt;}
.yc4{bottom:289.146667pt;}
.y147{bottom:290.586667pt;}
.y159{bottom:291.386667pt;}
.y6c{bottom:291.586667pt;}
.y26{bottom:293.506667pt;}
.yf6{bottom:298.306667pt;}
.y127{bottom:298.626667pt;}
.y7f{bottom:301.346667pt;}
.y5a{bottom:306.626667pt;}
.y146{bottom:309.346667pt;}
.ye7{bottom:312.066667pt;}
.y25{bottom:312.226667pt;}
.y126{bottom:317.346667pt;}
.y7e{bottom:320.066667pt;}
.y112{bottom:321.186667pt;}
.y59{bottom:325.346667pt;}
.y145{bottom:328.066667pt;}
.ye6{bottom:330.786667pt;}
.y24{bottom:330.946667pt;}
.y68{bottom:332.226667pt;}
.y125{bottom:336.066667pt;}
.y7d{bottom:338.786667pt;}
.y66{bottom:341.666667pt;}
.ybd{bottom:343.426667pt;}
.y58{bottom:344.066667pt;}
.y144{bottom:346.786667pt;}
.ye5{bottom:349.506667pt;}
.y23{bottom:349.666667pt;}
.y156{bottom:351.586667pt;}
.y124{bottom:354.786667pt;}
.y7c{bottom:357.506667pt;}
.y111{bottom:359.106667pt;}
.y158{bottom:361.826667pt;}
.y57{bottom:362.786667pt;}
.y143{bottom:365.506667pt;}
.ye4{bottom:368.226667pt;}
.yf5{bottom:368.706667pt;}
.y22{bottom:369.026667pt;}
.y123{bottom:373.506667pt;}
.y7b{bottom:376.226667pt;}
.y56{bottom:381.506667pt;}
.y142{bottom:384.226667pt;}
.ye3{bottom:386.946667pt;}
.y152{bottom:390.466667pt;}
.y21{bottom:391.106667pt;}
.y122{bottom:392.226667pt;}
.y7a{bottom:394.946667pt;}
.y110{bottom:397.026667pt;}
.y150{bottom:399.586667pt;}
.y55{bottom:400.226667pt;}
.y141{bottom:402.946667pt;}
.ye2{bottom:405.666667pt;}
.y20{bottom:409.666667pt;}
.y121{bottom:410.946667pt;}
.ya8{bottom:413.666667pt;}
.ybb{bottom:413.826667pt;}
.y54{bottom:418.946667pt;}
.y79{bottom:421.666667pt;}
.ye1{bottom:424.386667pt;}
.y120{bottom:429.666667pt;}
.y157{bottom:432.226667pt;}
.ya7{bottom:432.386667pt;}
.y10f{bottom:434.946667pt;}
.y1f{bottom:436.386667pt;}
.y53{bottom:437.666667pt;}
.yf2{bottom:439.106667pt;}
.y78{bottom:440.386667pt;}
.ye0{bottom:443.106667pt;}
.y138{bottom:448.386667pt;}
.ya6{bottom:451.106667pt;}
.y1e{bottom:455.106667pt;}
.y52{bottom:456.386667pt;}
.y77{bottom:459.106667pt;}
.y137{bottom:467.106667pt;}
.ya5{bottom:469.826667pt;}
.y1d{bottom:473.826667pt;}
.y51{bottom:475.106667pt;}
.y10e{bottom:477.666667pt;}
.y76{bottom:477.826667pt;}
.y136{bottom:485.826667pt;}
.y140{bottom:486.626667pt;}
.ya4{bottom:488.546667pt;}
.y1c{bottom:492.546667pt;}
.y50{bottom:493.826667pt;}
.y10d{bottom:496.386667pt;}
.y75{bottom:496.546667pt;}
.y135{bottom:504.546667pt;}
.ydf{bottom:507.266667pt;}
.y1b{bottom:511.266667pt;}
.y4f{bottom:512.546667pt;}
.y10c{bottom:515.106667pt;}
.y74{bottom:515.266667pt;}
.y134{bottom:523.266667pt;}
.yee{bottom:525.826667pt;}
.yde{bottom:525.986667pt;}
.y1a{bottom:530.013333pt;}
.y4e{bottom:531.293333pt;}
.y10b{bottom:533.853333pt;}
.ya3{bottom:534.013333pt;}
.y73{bottom:542.013333pt;}
.ydd{bottom:544.733333pt;}
.y19{bottom:548.733333pt;}
.y4d{bottom:550.013333pt;}
.y13d{bottom:550.333333pt;}
.y10a{bottom:552.573333pt;}
.ya2{bottom:552.733333pt;}
.y72{bottom:560.733333pt;}
.ydc{bottom:563.453333pt;}
.y18{bottom:567.453333pt;}
.y4c{bottom:568.733333pt;}
.y109{bottom:571.293333pt;}
.ya1{bottom:571.453333pt;}
.y71{bottom:579.453333pt;}
.ydb{bottom:582.173333pt;}
.y17{bottom:586.173333pt;}
.y4b{bottom:587.453333pt;}
.y108{bottom:590.013333pt;}
.ya0{bottom:590.173333pt;}
.y133{bottom:596.253333pt;}
.y70{bottom:598.173333pt;}
.yda{bottom:600.893333pt;}
.y16{bottom:604.893333pt;}
.y4a{bottom:606.173333pt;}
.y107{bottom:608.733333pt;}
.y9f{bottom:608.893333pt;}
.y6f{bottom:616.893333pt;}
.yd9{bottom:619.613333pt;}
.y15{bottom:623.613333pt;}
.y49{bottom:624.893333pt;}
.y106{bottom:627.453333pt;}
.y9e{bottom:627.613333pt;}
.y6e{bottom:635.613333pt;}
.y132{bottom:636.733333pt;}
.yd8{bottom:638.333333pt;}
.y14{bottom:642.333333pt;}
.y48{bottom:643.613333pt;}
.y105{bottom:646.173333pt;}
.y9d{bottom:646.333333pt;}
.y6d{bottom:654.333333pt;}
.y13{bottom:661.053333pt;}
.y47{bottom:662.333333pt;}
.y9c{bottom:664.893333pt;}
.yba{bottom:672.893333pt;}
.y12{bottom:679.773333pt;}
.y46{bottom:680.893333pt;}
.y9b{bottom:683.613333pt;}
.y139{bottom:688.893333pt;}
.yb9{bottom:691.613333pt;}
.y11{bottom:698.493333pt;}
.y45{bottom:699.613333pt;}
.yd7{bottom:702.333333pt;}
.y9a{bottom:710.333333pt;}
.y10{bottom:717.213333pt;}
.y44{bottom:718.333333pt;}
.yd6{bottom:721.053333pt;}
.y99{bottom:729.053333pt;}
.yf{bottom:735.933333pt;}
.y43{bottom:737.053333pt;}
.yd5{bottom:739.773333pt;}
.y98{bottom:747.773333pt;}
.ye{bottom:754.653333pt;}
.y42{bottom:755.773333pt;}
.yd4{bottom:758.493333pt;}
.y97{bottom:766.533333pt;}
.y41{bottom:774.533333pt;}
.yd{bottom:775.333333pt;}
.yd3{bottom:777.253333pt;}
.y96{bottom:785.253333pt;}
.y40{bottom:793.253333pt;}
.yd2{bottom:795.973333pt;}
.yc{bottom:798.693333pt;}
.y95{bottom:803.973333pt;}
.y3f{bottom:811.973333pt;}
.yd1{bottom:814.693333pt;}
.yb{bottom:817.413333pt;}
.y94{bottom:822.693333pt;}
.y3e{bottom:830.693333pt;}
.ya{bottom:832.293333pt;}
.y104{bottom:833.413333pt;}
.y93{bottom:841.413333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:852.133333pt;}
.y92{bottom:860.133333pt;}
.y3c{bottom:868.133333pt;}
.y103{bottom:869.253333pt;}
.y8{bottom:873.253333pt;}
.y91{bottom:878.853333pt;}
.y3b{bottom:886.853333pt;}
.yb7{bottom:889.573333pt;}
.y90{bottom:897.573333pt;}
.y7{bottom:899.333333pt;}
.y3a{bottom:905.573333pt;}
.y8f{bottom:916.293333pt;}
.y39{bottom:924.293333pt;}
.yb6{bottom:930.053333pt;}
.y5{bottom:932.613333pt;}
.y8e{bottom:935.013333pt;}
.yb4{bottom:939.493333pt;}
.y102{bottom:939.653333pt;}
.y38{bottom:943.013333pt;}
.y8d{bottom:953.733333pt;}
.y4{bottom:961.253333pt;}
.y37{bottom:961.733333pt;}
.y8c{bottom:972.453333pt;}
.y36{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.y8b{bottom:991.173333pt;}
.y100{bottom:993.893333pt;}
.y35{bottom:999.173333pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1018.400000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h20{height:14.080000pt;}
.hf{height:14.880000pt;}
.hc{height:15.032000pt;}
.hb{height:15.040000pt;}
.h19{height:16.160000pt;}
.h12{height:16.320000pt;}
.h1e{height:20.480000pt;}
.h9{height:21.600000pt;}
.hd{height:21.760000pt;}
.h1f{height:29.600000pt;}
.ha{height:31.040000pt;}
.he{height:31.200000pt;}
.h1b{height:32.480000pt;}
.h1a{height:32.512000pt;}
.h1c{height:32.640000pt;}
.h16{height:32.672000pt;}
.h1d{height:33.440000pt;}
.h21{height:33.515625pt;}
.h6{height:34.374375pt;}
.h22{height:34.945312pt;}
.h10{height:37.090625pt;}
.h11{height:38.672812pt;}
.h7{height:46.454062pt;}
.h15{height:48.800000pt;}
.h14{height:48.832000pt;}
.h8{height:52.834688pt;}
.h4{height:54.390938pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h13{height:65.120000pt;}
.h18{height:65.152000pt;}
.h2{height:76.671562pt;}
.h17{height:81.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:103.040000pt;}
.w5{width:103.072000pt;}
.w9{width:103.200000pt;}
.we{width:108.832000pt;}
.wa{width:124.672000pt;}
.w1a{width:126.912000pt;}
.w12{width:130.752000pt;}
.wd{width:133.440000pt;}
.w1b{width:141.120000pt;}
.w16{width:144.160000pt;}
.w3{width:144.186667pt;}
.w18{width:144.320000pt;}
.w8{width:144.346667pt;}
.wf{width:148.986667pt;}
.w10{width:155.226667pt;}
.w19{width:155.866667pt;}
.w6{width:165.946667pt;}
.w17{width:166.106667pt;}
.w15{width:167.226667pt;}
.w1c{width:181.466667pt;}
.w7{width:181.626667pt;}
.w13{width:185.626667pt;}
.w1d{width:194.266667pt;}
.w1e{width:199.906667pt;}
.w14{width:206.266667pt;}
.wc{width:214.786667pt;}
.wb{width:216.986667pt;}
.w11{width:276.826667pt;}
.w1f{width:286.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:0.960000pt;}
.xa{left:9.600000pt;}
.x30{left:11.360000pt;}
.x2e{left:13.600000pt;}
.xc{left:14.720000pt;}
.xf{left:18.266667pt;}
.x32{left:25.920000pt;}
.xd{left:27.200000pt;}
.x10{left:37.626667pt;}
.x1a{left:47.040000pt;}
.x6{left:47.999988pt;}
.x3a{left:53.440000pt;}
.x34{left:56.159988pt;}
.x2b{left:58.719988pt;}
.x7{left:62.399988pt;}
.x18{left:63.359988pt;}
.x8{left:66.879988pt;}
.x3e{left:71.999988pt;}
.x19{left:76.479988pt;}
.x41{left:82.719988pt;}
.x3c{left:85.791988pt;}
.x3f{left:86.751988pt;}
.x42{left:89.471988pt;}
.x40{left:96.031988pt;}
.x25{left:103.552000pt;}
.x3d{left:104.831988pt;}
.x36{left:106.912000pt;}
.x9{left:109.472000pt;}
.x35{left:120.511988pt;}
.x13{left:136.826667pt;}
.x2a{left:140.666655pt;}
.x5{left:153.946655pt;}
.x1f{left:159.226667pt;}
.x24{left:163.066655pt;}
.x33{left:164.346655pt;}
.x1c{left:175.066667pt;}
.x21{left:181.146667pt;}
.x29{left:218.426667pt;}
.x39{left:221.786667pt;}
.x12{left:224.346667pt;}
.x2c{left:229.786655pt;}
.x17{left:251.746667pt;}
.x3{left:254.786655pt;}
.x2d{left:266.146667pt;}
.x26{left:271.266667pt;}
.x31{left:274.946667pt;}
.xb{left:277.186667pt;}
.x14{left:304.546667pt;}
.x2{left:311.586655pt;}
.x2f{left:321.666667pt;}
.x22{left:370.146667pt;}
.x4{left:372.546655pt;}
.x1d{left:395.426667pt;}
.x27{left:397.666667pt;}
.x37{left:401.026667pt;}
.xe{left:403.586667pt;}
.x1{left:426.013322pt;}
.x15{left:430.973333pt;}
.x3b{left:454.333333pt;}
.x20{left:470.173333pt;}
.x28{left:524.093333pt;}
.x38{left:527.453333pt;}
.x11{left:530.173333pt;}
.x16{left:557.533333pt;}
.x23{left:579.773333pt;}
.x1e{left:613.573333pt;}
.x43{left:745.253322pt;}
}




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