
    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_8db8d964c2ba52477a64f255.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_17e5589be19ce3eaf36e4d09.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ac6d6520e5c1556e68c6e7fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_6d5b2bdafcaaaeadb1f83095.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_b3b9941b8114a914eae5f2df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_0643242d49435e7c49f00259.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_23a318b81eefbb2520b8abd7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_5886a27f0cfe06a7c925fd07.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_a44c946658c8bd3ba2196c03.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_fc31c9da239a69ca0f6d8ffe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_8baf19442af0070b23b28add.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_614dd1b5397ba0a57a3923e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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:ffe;src:url('chunks/assets/font_d30f644a91bc3e9597c5ee0e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;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:fff;src:url('chunks/assets/font_de70944ee3fd266de07046d8.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;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;}
.m2a{transform:matrix(0.002093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002093,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.002449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002449,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.092593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092593,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.104167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104167,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.126059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126059,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133152,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202830,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.205556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205556,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229452,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241228,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m7{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259259,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.264344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264344,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.277108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277108,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.292135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292135,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.519565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519565,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.554348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554348,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.592391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592391,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.611413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611413,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.789855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789855,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.804348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804348,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047101,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(1.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152174,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(1.380435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.380435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.380435,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(3.826087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.826087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.826087,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-7.771125px;}
.ls12{letter-spacing:-4.449750px;}
.ls28{letter-spacing:-3.888750px;}
.ls3f{letter-spacing:-3.837750px;}
.ls2b{letter-spacing:-3.791400px;}
.ls14{letter-spacing:-3.703875px;}
.lsd{letter-spacing:-3.609375px;}
.ls6{letter-spacing:-3.550200px;}
.ls30{letter-spacing:-3.111000px;}
.ls41{letter-spacing:-3.072750px;}
.ls13{letter-spacing:-2.964375px;}
.ls16{letter-spacing:-2.898000px;}
.ls26{letter-spacing:-2.333250px;}
.ls2e{letter-spacing:-2.250375px;}
.ls11{letter-spacing:-2.224875px;}
.ls2f{letter-spacing:-2.199375px;}
.ls15{letter-spacing:-2.173500px;}
.ls33{letter-spacing:-2.029350px;}
.ls1a{letter-spacing:-1.556100px;}
.ls27{letter-spacing:-1.555500px;}
.ls3e{letter-spacing:-1.536375px;}
.ls2c{letter-spacing:-1.521450px;}
.ls2d{letter-spacing:-1.498125px;}
.ls10{letter-spacing:-1.485375px;}
.ls17{letter-spacing:-1.449000px;}
.ls19{letter-spacing:-0.846300px;}
.lsc{letter-spacing:-0.815775px;}
.ls25{letter-spacing:-0.777750px;}
.ls3d{letter-spacing:-0.771375px;}
.lsf{letter-spacing:-0.739500px;}
.ls7{letter-spacing:-0.713700px;}
.lsb{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.615000px;}
.ls8{letter-spacing:0.713700px;}
.ls2{letter-spacing:0.739500px;}
.ls34{letter-spacing:0.761025px;}
.ls36{letter-spacing:0.771375px;}
.ls1c{letter-spacing:0.777750px;}
.ls5{letter-spacing:0.778050px;}
.ls3{letter-spacing:1.485375px;}
.ls9{letter-spacing:1.500750px;}
.ls35{letter-spacing:1.536375px;}
.ls1d{letter-spacing:1.555500px;}
.ls40{letter-spacing:2.168775px;}
.lse{letter-spacing:2.219400px;}
.ls1{letter-spacing:2.224875px;}
.ls3c{letter-spacing:2.301375px;}
.ls1b{letter-spacing:2.333250px;}
.ls31{letter-spacing:2.388750px;}
.ls0{letter-spacing:2.836500px;}
.ls32{letter-spacing:2.964375px;}
.ls38{letter-spacing:3.072750px;}
.ls1e{letter-spacing:3.111000px;}
.ls4{letter-spacing:3.703875px;}
.ls37{letter-spacing:3.837750px;}
.ls21{letter-spacing:3.888750px;}
.lsa{letter-spacing:4.100250px;}
.ls3b{letter-spacing:4.609125px;}
.ls1f{letter-spacing:4.666500px;}
.ls39{letter-spacing:5.374125px;}
.ls22{letter-spacing:5.444250px;}
.ls29{letter-spacing:5.630400px;}
.ls3a{letter-spacing:6.145500px;}
.ls20{letter-spacing:6.222000px;}
.ls23{letter-spacing:6.999750px;}
.ls24{letter-spacing:8.548875px;}
.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:0.000000px;}
._14{margin-left:-17.958375px;}
._1b{margin-left:-14.486954px;}
._19{margin-left:-12.240000px;}
._1a{margin-left:-11.035125px;}
._18{margin-left:-9.375915px;}
._13{margin-left:-7.764750px;}
._12{margin-left:-6.018000px;}
._1d{margin-left:-4.967835px;}
._9{margin-left:-3.825000px;}
._4{margin-left:-1.976250px;}
._8{width:1.166625px;}
._5{width:2.632875px;}
._7{width:3.888750px;}
._a{width:4.940625px;}
._6{width:6.528000px;}
._e{width:8.032500px;}
._3{width:9.371250px;}
._b{width:10.506000px;}
._c{width:11.844750px;}
._2{width:12.915686px;}
._f{width:14.025000px;}
._11{width:15.759000px;}
._d{width:16.932000px;}
._10{width:18.215753px;}
._1{width:20.130000px;}
._16{width:21.267000px;}
._15{width:22.287000px;}
._1c{width:24.091125px;}
._0{width:26.260500px;}
._17{width:45.227360px;}
.fc0{color:transparent;}
.fs13{font-size:17.250000px;}
.fs17{font-size:36.000000px;}
.fsc{font-size:37.500000px;}
.fsf{font-size:39.000000px;}
.fs10{font-size:39.750000px;}
.fse{font-size:40.500000px;}
.fsd{font-size:42.750000px;}
.fs1{font-size:51.750000px;}
.fs2{font-size:52.500000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:54.750000px;}
.fs4{font-size:57.750000px;}
.fs14{font-size:58.500000px;}
.fs1a{font-size:60.750000px;}
.fs11{font-size:62.250000px;}
.fs9{font-size:63.000000px;}
.fs6{font-size:63.750000px;}
.fsa{font-size:65.250000px;}
.fs8{font-size:66.000000px;}
.fs12{font-size:66.750000px;}
.fs16{font-size:67.500000px;}
.fs7{font-size:69.000000px;}
.fs19{font-size:86.250000px;}
.fs0{font-size:91.500000px;}
.fsb{font-size:177.000000px;}
.fs15{font-size:293.340600px;}
.fs18{font-size:343.344600px;}
.ydf{bottom:-8.503950px;}
.y68{bottom:-8.144700px;}
.y0{bottom:0.000000px;}
.y67{bottom:39.375600px;}
.y2e{bottom:40.815900px;}
.yde{bottom:41.176800px;}
.ydc{bottom:58.804013px;}
.ydd{bottom:58.816350px;}
.y66{bottom:59.525737px;}
.ya4{bottom:62.413725px;}
.y2d{bottom:62.596800px;}
.ydb{bottom:74.645888px;}
.y65{bottom:75.734175px;}
.ya3{bottom:78.255600px;}
.yda{bottom:90.487763px;}
.y64{bottom:91.576050px;}
.ya1{bottom:93.741525px;}
.y2c{bottom:94.463400px;}
.ya2{bottom:100.936350px;}
.yd9{bottom:106.680263px;}
.y63{bottom:107.434650px;}
.ya0{bottom:109.583400px;}
.y2b{bottom:110.656837px;}
.yd8{bottom:122.888700px;}
.y62{bottom:123.627150px;}
.y9f{bottom:125.775900px;}
.y2a{bottom:126.865275px;}
.yd7{bottom:138.730575px;}
.y61{bottom:139.819650px;}
.y9d{bottom:141.616050px;}
.y29{bottom:142.707150px;}
.y9e{bottom:153.496050px;}
.yd6{bottom:154.572450px;}
.y60{bottom:155.294962px;}
.y9b{bottom:157.454325px;}
.y9c{bottom:157.456050px;}
.y28{bottom:158.549025px;}
.yd5{bottom:170.780888px;}
.y5f{bottom:171.854025px;}
.y9a{bottom:173.296200px;}
.y27{bottom:174.741525px;}
.y99{bottom:186.616500px;}
.yd4{bottom:186.622763px;}
.y5e{bottom:187.695900px;}
.y98{bottom:189.491362px;}
.y26{bottom:190.583400px;}
.yd3{bottom:203.181825px;}
.y5d{bottom:203.890425px;}
.y97{bottom:205.333238px;}
.y25{bottom:206.774175px;}
.yd2{bottom:219.023700px;}
.y5c{bottom:220.098863px;}
.y96{bottom:221.541675px;}
.y24{bottom:222.616050px;}
.yd0{bottom:235.199512px;}
.yd1{bottom:235.216200px;}
.y5b{bottom:235.940738px;}
.y22{bottom:237.015750px;}
.y95{bottom:237.383550px;}
.ycf{bottom:251.392012px;}
.y5a{bottom:252.133237px;}
.y93{bottom:253.575412px;}
.y94{bottom:253.576050px;}
.y23{bottom:254.657100px;}
.yce{bottom:267.600450px;}
.y59{bottom:267.975113px;}
.y92{bottom:269.767913px;}
.ycd{bottom:283.442325px;}
.y58{bottom:284.167613px;}
.y91{bottom:285.976350px;}
.y21{bottom:286.688250px;}
.ycc{bottom:299.634825px;}
.y57{bottom:300.377288px;}
.y8f{bottom:302.168213px;}
.y90{bottom:302.175600px;}
.y20{bottom:302.530125px;}
.ycb{bottom:315.843262px;}
.y56{bottom:316.936350px;}
.y55{bottom:316.952025px;}
.y8e{bottom:318.376650px;}
.y1f{bottom:318.722625px;}
.yca{bottom:331.685137px;}
.y54{bottom:333.144525px;}
.y8d{bottom:334.209188px;}
.y1e{bottom:334.564500px;}
.y107{bottom:340.710150px;}
.yc9{bottom:347.893575px;}
.y53{bottom:348.986400px;}
.y8c{bottom:350.417625px;}
.y1d{bottom:350.772938px;}
.y106{bottom:356.902650px;}
.yc8{bottom:364.086075px;}
.y52{bottom:364.828275px;}
.y8b{bottom:366.259500px;}
.y1c{bottom:366.614813px;}
.y104{bottom:373.084163px;}
.y105{bottom:373.095150px;}
.yc7{bottom:380.294513px;}
.y51{bottom:381.020775px;}
.y8a{bottom:382.101375px;}
.y1b{bottom:383.173875px;}
.y103{bottom:388.926038px;}
.yc6{bottom:396.136388px;}
.y50{bottom:397.229213px;}
.y89{bottom:398.293875px;}
.y1a{bottom:399.015750px;}
.y102{bottom:405.134475px;}
.yc5{bottom:412.695450px;}
.y4f{bottom:413.421713px;}
.y88{bottom:414.127800px;}
.y19{bottom:415.223550px;}
.y100{bottom:420.975262px;}
.y101{bottom:420.976350px;}
.yc4{bottom:428.534813px;}
.y4e{bottom:429.614213px;}
.y87{bottom:430.336237px;}
.y18{bottom:431.416050px;}
.yff{bottom:437.534325px;}
.yc3{bottom:444.743250px;}
.y4d{bottom:445.456088px;}
.y86{bottom:446.895300px;}
.y17{bottom:447.256200px;}
.y16{bottom:447.262463px;}
.yfe{bottom:453.742762px;}
.yc2{bottom:460.943888px;}
.y4c{bottom:462.015150px;}
.y15{bottom:463.470900px;}
.yfd{bottom:469.935263px;}
.yc1{bottom:477.502950px;}
.y4b{bottom:478.228725px;}
.y85{bottom:478.936350px;}
.y14{bottom:479.663400px;}
.yfc{bottom:486.494325px;}
.yc0{bottom:493.696538px;}
.y4a{bottom:494.070600px;}
.y13{bottom:495.855900px;}
.yfb{bottom:502.336200px;}
.ybf{bottom:510.255562px;}
.y49{bottom:510.263100px;}
.y84{bottom:510.976350px;}
.y12{bottom:511.683863px;}
.yfa{bottom:518.895262px;}
.y48{bottom:526.455600px;}
.ybe{bottom:526.464000px;}
.y83{bottom:527.168850px;}
.y11{bottom:527.892300px;}
.yf9{bottom:535.087762px;}
.y47{bottom:543.014662px;}
.ybd{bottom:543.023062px;}
.y82{bottom:543.377287px;}
.y10{bottom:544.084800px;}
.yf8{bottom:551.296200px;}
.ybc{bottom:559.215562px;}
.y46{bottom:559.223100px;}
.y81{bottom:559.936350px;}
.yf{bottom:560.293238px;}
.yf7{bottom:567.495450px;}
.ybb{bottom:575.408062px;}
.y45{bottom:575.415600px;}
.y44{bottom:575.429213px;}
.ye{bottom:576.135112px;}
.y80{bottom:576.135750px;}
.yf6{bottom:583.710750px;}
.yba{bottom:591.616500px;}
.y43{bottom:591.621713px;}
.yd{bottom:592.694175px;}
.y7e{bottom:592.694212px;}
.y7f{bottom:595.935750px;}
.yf5{bottom:599.903250px;}
.y42{bottom:607.830150px;}
.yb9{bottom:608.191050px;}
.yc{bottom:608.536050px;}
.y7d{bottom:608.536088px;}
.yf4{bottom:616.462313px;}
.yb8{bottom:624.383550px;}
.y41{bottom:624.389212px;}
.y7c{bottom:624.728588px;}
.yb{bottom:624.744450px;}
.yf3{bottom:632.654813px;}
.y40{bottom:640.581713px;}
.y7b{bottom:640.937025px;}
.yb7{bottom:640.942612px;}
.ya{bottom:641.303513px;}
.yf2{bottom:648.496688px;}
.y3f{bottom:656.774213px;}
.yb6{bottom:657.135112px;}
.y9{bottom:657.496013px;}
.y7a{bottom:657.496087px;}
.yf1{bottom:665.055750px;}
.y3e{bottom:672.982650px;}
.yb5{bottom:673.343550px;}
.y8{bottom:673.688513px;}
.y79{bottom:674.055150px;}
.y78{bottom:674.055712px;}
.yf0{bottom:681.247613px;}
.y3d{bottom:689.175150px;}
.y3c{bottom:689.188125px;}
.yb4{bottom:689.536050px;}
.yb3{bottom:689.551387px;}
.y7{bottom:689.896950px;}
.y77{bottom:690.264150px;}
.yef{bottom:697.456050px;}
.y3b{bottom:705.747187px;}
.y6{bottom:706.102463px;}
.yb2{bottom:706.110450px;}
.y76{bottom:706.456650px;}
.yee{bottom:714.024338px;}
.y3a{bottom:721.589062px;}
.yb1{bottom:722.302950px;}
.y5{bottom:722.310900px;}
.y75{bottom:722.665087px;}
.yed{bottom:730.216837px;}
.y39{bottom:738.148125px;}
.y4{bottom:738.503400px;}
.yb0{bottom:738.511387px;}
.y74{bottom:738.857587px;}
.yeb{bottom:746.773537px;}
.yec{bottom:746.775900px;}
.y38{bottom:754.340625px;}
.y3{bottom:754.695900px;}
.yaf{bottom:754.703887px;}
.y73{bottom:755.050088px;}
.yea{bottom:762.966037px;}
.y37{bottom:770.182500px;}
.yae{bottom:771.262950px;}
.y72{bottom:771.609150px;}
.ye9{bottom:779.174475px;}
.y36{bottom:786.741562px;}
.yad{bottom:787.455450px;}
.y71{bottom:787.817587px;}
.ye7{bottom:795.006675px;}
.ye8{bottom:795.016350px;}
.y35{bottom:802.583437px;}
.yac{bottom:803.667637px;}
.y70{bottom:804.382912px;}
.y2{bottom:805.456050px;}
.ye6{bottom:811.565737px;}
.y34{bottom:819.142500px;}
.yab{bottom:820.226700px;}
.y6f{bottom:820.575412px;}
.ye5{bottom:827.407613px;}
.y1{bottom:834.257250px;}
.y33{bottom:835.336838px;}
.y6e{bottom:836.767912px;}
.yaa{bottom:836.785762px;}
.ye4{bottom:843.615412px;}
.y32{bottom:851.545275px;}
.y6c{bottom:852.975300px;}
.y6d{bottom:852.976350px;}
.ya9{bottom:853.344825px;}
.ye3{bottom:859.807913px;}
.y31{bottom:868.104337px;}
.y6b{bottom:869.534362px;}
.ya8{bottom:869.903887px;}
.ye2{bottom:876.016350px;}
.y30{bottom:884.296838px;}
.y6a{bottom:885.376237px;}
.ya7{bottom:886.462950px;}
.ye1{bottom:891.863250px;}
.y2f{bottom:900.855900px;}
.y69{bottom:901.935300px;}
.ya6{bottom:902.655450px;}
.ye0{bottom:908.055750px;}
.ya5{bottom:989.055750px;}
.h1b{height:17.991211px;}
.h25{height:37.546875px;}
.h10{height:39.111328px;}
.h13{height:40.675781px;}
.h12{height:40.816406px;}
.h14{height:41.458008px;}
.h1f{height:42.240234px;}
.h11{height:43.083984px;}
.h3{height:53.973633px;}
.h4{height:54.755859px;}
.h2d{height:55.177734px;}
.h7{height:56.320312px;}
.h5{height:57.102539px;}
.h31{height:59.622803px;}
.h6{height:60.231445px;}
.h1e{height:61.013672px;}
.h17{height:61.094971px;}
.hb{height:61.831055px;}
.h8{height:62.567139px;}
.h2a{height:62.567289px;}
.h2f{height:62.569689px;}
.hf{height:62.574039px;}
.h27{height:62.574639px;}
.h19{height:62.586639px;}
.h23{height:62.590989px;}
.h22{height:62.598939px;}
.h30{height:62.605839px;}
.he{height:63.492188px;}
.hc{height:64.039307px;}
.h20{height:64.248047px;}
.h2b{height:65.511475px;}
.h24{height:66.247559px;}
.ha{height:66.515625px;}
.h1a{height:67.271484px;}
.h18{height:67.686035px;}
.h9{height:71.964844px;}
.h2c{height:89.956055px;}
.h2{height:95.431641px;}
.hd{height:184.605469px;}
.h21{height:305.945079px;}
.h26{height:358.097688px;}
.h15{height:979.472550px;}
.h16{height:979.500000px;}
.h0{height:980.192550px;}
.h1{height:980.250000px;}
.h2e{height:980.551050px;}
.h1c{height:980.912550px;}
.h1d{height:981.000000px;}
.h28{height:982.352550px;}
.h29{height:982.500000px;}
.w6{width:661.234050px;}
.w7{width:661.500000px;}
.w2{width:661.952550px;}
.w3{width:662.250000px;}
.w4{width:663.392550px;}
.w5{width:663.750000px;}
.w1{width:668.250000px;}
.w0{width:668.432550px;}
.w9{width:671.250000px;}
.w8{width:671.312550px;}
.x12{left:-8.144700px;}
.x0{left:0.000000px;}
.x34{left:53.421900px;}
.x2e{left:54.497100px;}
.x2f{left:55.933725px;}
.x3e{left:57.382650px;}
.xb{left:58.443450px;}
.xa{left:59.539950px;}
.xc{left:61.013475px;}
.xd{left:62.394075px;}
.x51{left:63.496650px;}
.x58{left:64.558950px;}
.x21{left:67.068000px;}
.x1f{left:68.205750px;}
.x1e{left:69.282000px;}
.x1d{left:70.696500px;}
.x43{left:72.136800px;}
.x45{left:73.207800px;}
.x4b{left:74.314425px;}
.x57{left:76.815300px;}
.x13{left:78.975750px;}
.x35{left:83.664525px;}
.x36{left:85.068975px;}
.x8{left:89.415600px;}
.xe{left:91.198500px;}
.x52{left:93.741337px;}
.x20{left:98.771250px;}
.x44{left:100.952175px;}
.x48{left:102.379125px;}
.x30{left:105.257250px;}
.x9{left:108.495450px;}
.x1{left:110.296650px;}
.x31{left:118.936950px;}
.x24{left:123.617100px;}
.x32{left:129.017400px;}
.x33{left:140.536650px;}
.x25{left:143.417250px;}
.x2c{left:170.056350px;}
.x55{left:175.815900px;}
.x2d{left:193.816350px;}
.x56{left:209.295600px;}
.x3a{left:211.816950px;}
.x26{left:213.977400px;}
.x14{left:219.735300px;}
.x15{left:226.576050px;}
.x27{left:237.376650px;}
.x2{left:246.376050px;}
.x22{left:249.616050px;}
.x3b{left:253.576050px;}
.x29{left:256.456650px;}
.x28{left:263.297250px;}
.x23{left:264.376650px;}
.x5b{left:267.975750px;}
.x3{left:270.495450px;}
.x49{left:272.296650px;}
.x4a{left:284.536050px;}
.x4{left:285.615450px;}
.x3c{left:289.936350px;}
.x10{left:297.856350px;}
.x41{left:298.937400px;}
.x16{left:301.455450px;}
.x1a{left:303.616050px;}
.x11{left:311.176800px;}
.x4e{left:314.057400px;}
.x5{left:316.936350px;}
.x1b{left:321.975750px;}
.x17{left:324.495450px;}
.x2a{left:329.177250px;}
.x4f{left:333.137400px;}
.x6{left:337.815900px;}
.x1c{left:342.136800px;}
.x2b{left:349.697550px;}
.x7{left:353.655900px;}
.x3f{left:372.376650px;}
.x40{left:387.496650px;}
.x18{left:394.335600px;}
.x19{left:399.735900px;}
.x50{left:448.337250px;}
.x37{left:476.777550px;}
.x38{left:490.096200px;}
.x53{left:519.616050px;}
.x54{left:532.936350px;}
.x59{left:540.136200px;}
.x4c{left:542.657550px;}
.x46{left:550.576050px;}
.x5a{left:554.536050px;}
.x47{left:564.977400px;}
.x4d{left:567.136200px;}
.x3d{left:585.136800px;}
.xf{left:590.176200px;}
.x42{left:659.296200px;}
.x39{left:671.176200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-6.907667pt;}
.ls12{letter-spacing:-3.955333pt;}
.ls28{letter-spacing:-3.456667pt;}
.ls3f{letter-spacing:-3.411333pt;}
.ls2b{letter-spacing:-3.370133pt;}
.ls14{letter-spacing:-3.292333pt;}
.lsd{letter-spacing:-3.208333pt;}
.ls6{letter-spacing:-3.155733pt;}
.ls30{letter-spacing:-2.765333pt;}
.ls41{letter-spacing:-2.731333pt;}
.ls13{letter-spacing:-2.635000pt;}
.ls16{letter-spacing:-2.576000pt;}
.ls26{letter-spacing:-2.074000pt;}
.ls2e{letter-spacing:-2.000333pt;}
.ls11{letter-spacing:-1.977667pt;}
.ls2f{letter-spacing:-1.955000pt;}
.ls15{letter-spacing:-1.932000pt;}
.ls33{letter-spacing:-1.803867pt;}
.ls1a{letter-spacing:-1.383200pt;}
.ls27{letter-spacing:-1.382667pt;}
.ls3e{letter-spacing:-1.365667pt;}
.ls2c{letter-spacing:-1.352400pt;}
.ls2d{letter-spacing:-1.331667pt;}
.ls10{letter-spacing:-1.320333pt;}
.ls17{letter-spacing:-1.288000pt;}
.ls19{letter-spacing:-0.752267pt;}
.lsc{letter-spacing:-0.725133pt;}
.ls25{letter-spacing:-0.691333pt;}
.ls3d{letter-spacing:-0.685667pt;}
.lsf{letter-spacing:-0.657333pt;}
.ls7{letter-spacing:-0.634400pt;}
.lsb{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.546667pt;}
.ls8{letter-spacing:0.634400pt;}
.ls2{letter-spacing:0.657333pt;}
.ls34{letter-spacing:0.676467pt;}
.ls36{letter-spacing:0.685667pt;}
.ls1c{letter-spacing:0.691333pt;}
.ls5{letter-spacing:0.691600pt;}
.ls3{letter-spacing:1.320333pt;}
.ls9{letter-spacing:1.334000pt;}
.ls35{letter-spacing:1.365667pt;}
.ls1d{letter-spacing:1.382667pt;}
.ls40{letter-spacing:1.927800pt;}
.lse{letter-spacing:1.972800pt;}
.ls1{letter-spacing:1.977667pt;}
.ls3c{letter-spacing:2.045667pt;}
.ls1b{letter-spacing:2.074000pt;}
.ls31{letter-spacing:2.123333pt;}
.ls0{letter-spacing:2.521333pt;}
.ls32{letter-spacing:2.635000pt;}
.ls38{letter-spacing:2.731333pt;}
.ls1e{letter-spacing:2.765333pt;}
.ls4{letter-spacing:3.292333pt;}
.ls37{letter-spacing:3.411333pt;}
.ls21{letter-spacing:3.456667pt;}
.lsa{letter-spacing:3.644667pt;}
.ls3b{letter-spacing:4.097000pt;}
.ls1f{letter-spacing:4.148000pt;}
.ls39{letter-spacing:4.777000pt;}
.ls22{letter-spacing:4.839333pt;}
.ls29{letter-spacing:5.004800pt;}
.ls3a{letter-spacing:5.462667pt;}
.ls20{letter-spacing:5.530667pt;}
.ls23{letter-spacing:6.222000pt;}
.ls24{letter-spacing:7.599000pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-15.963000pt;}
._1b{margin-left:-12.877293pt;}
._19{margin-left:-10.880000pt;}
._1a{margin-left:-9.809000pt;}
._18{margin-left:-8.334146pt;}
._13{margin-left:-6.902000pt;}
._12{margin-left:-5.349333pt;}
._1d{margin-left:-4.415854pt;}
._9{margin-left:-3.400000pt;}
._4{margin-left:-1.756667pt;}
._8{width:1.037000pt;}
._5{width:2.340333pt;}
._7{width:3.456667pt;}
._a{width:4.391667pt;}
._6{width:5.802667pt;}
._e{width:7.140000pt;}
._3{width:8.330000pt;}
._b{width:9.338667pt;}
._c{width:10.528667pt;}
._2{width:11.480610pt;}
._f{width:12.466667pt;}
._11{width:14.008000pt;}
._d{width:15.050667pt;}
._10{width:16.191780pt;}
._1{width:17.893333pt;}
._16{width:18.904000pt;}
._15{width:19.810667pt;}
._1c{width:21.414333pt;}
._0{width:23.342667pt;}
._17{width:40.202098pt;}
.fs13{font-size:15.333333pt;}
.fs17{font-size:32.000000pt;}
.fsc{font-size:33.333333pt;}
.fsf{font-size:34.666667pt;}
.fs10{font-size:35.333333pt;}
.fse{font-size:36.000000pt;}
.fsd{font-size:38.000000pt;}
.fs1{font-size:46.000000pt;}
.fs2{font-size:46.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:48.666667pt;}
.fs4{font-size:51.333333pt;}
.fs14{font-size:52.000000pt;}
.fs1a{font-size:54.000000pt;}
.fs11{font-size:55.333333pt;}
.fs9{font-size:56.000000pt;}
.fs6{font-size:56.666667pt;}
.fsa{font-size:58.000000pt;}
.fs8{font-size:58.666667pt;}
.fs12{font-size:59.333333pt;}
.fs16{font-size:60.000000pt;}
.fs7{font-size:61.333333pt;}
.fs19{font-size:76.666667pt;}
.fs0{font-size:81.333333pt;}
.fsb{font-size:157.333333pt;}
.fs15{font-size:260.747200pt;}
.fs18{font-size:305.195200pt;}
.ydf{bottom:-7.559067pt;}
.y68{bottom:-7.239733pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:35.000533pt;}
.y2e{bottom:36.280800pt;}
.yde{bottom:36.601600pt;}
.ydc{bottom:52.270233pt;}
.ydd{bottom:52.281200pt;}
.y66{bottom:52.911767pt;}
.ya4{bottom:55.478867pt;}
.y2d{bottom:55.641600pt;}
.ydb{bottom:66.351900pt;}
.y65{bottom:67.319267pt;}
.ya3{bottom:69.560533pt;}
.yda{bottom:80.433567pt;}
.y64{bottom:81.400933pt;}
.ya1{bottom:83.325800pt;}
.y2c{bottom:83.967467pt;}
.ya2{bottom:89.721200pt;}
.yd9{bottom:94.826900pt;}
.y63{bottom:95.497467pt;}
.ya0{bottom:97.407467pt;}
.y2b{bottom:98.361633pt;}
.yd8{bottom:109.234400pt;}
.y62{bottom:109.890800pt;}
.y9f{bottom:111.800800pt;}
.y2a{bottom:112.769133pt;}
.yd7{bottom:123.316067pt;}
.y61{bottom:124.284133pt;}
.y9d{bottom:125.880933pt;}
.y29{bottom:126.850800pt;}
.y9e{bottom:136.440933pt;}
.yd6{bottom:137.397733pt;}
.y60{bottom:138.039967pt;}
.y9b{bottom:139.959400pt;}
.y9c{bottom:139.960933pt;}
.y28{bottom:140.932467pt;}
.yd5{bottom:151.805233pt;}
.y5f{bottom:152.759133pt;}
.y9a{bottom:154.041067pt;}
.y27{bottom:155.325800pt;}
.y99{bottom:165.881333pt;}
.yd4{bottom:165.886900pt;}
.y5e{bottom:166.840800pt;}
.y98{bottom:168.436767pt;}
.y26{bottom:169.407467pt;}
.yd3{bottom:180.606067pt;}
.y5d{bottom:181.235933pt;}
.y97{bottom:182.518433pt;}
.y25{bottom:183.799267pt;}
.yd2{bottom:194.687733pt;}
.y5c{bottom:195.643433pt;}
.y96{bottom:196.925933pt;}
.y24{bottom:197.880933pt;}
.yd0{bottom:209.066233pt;}
.yd1{bottom:209.081067pt;}
.y5b{bottom:209.725100pt;}
.y22{bottom:210.680667pt;}
.y95{bottom:211.007600pt;}
.ycf{bottom:223.459567pt;}
.y5a{bottom:224.118433pt;}
.y93{bottom:225.400367pt;}
.y94{bottom:225.400933pt;}
.y23{bottom:226.361867pt;}
.yce{bottom:237.867067pt;}
.y59{bottom:238.200100pt;}
.y92{bottom:239.793700pt;}
.ycd{bottom:251.948733pt;}
.y58{bottom:252.593433pt;}
.y91{bottom:254.201200pt;}
.y21{bottom:254.834000pt;}
.ycc{bottom:266.342067pt;}
.y57{bottom:267.002033pt;}
.y8f{bottom:268.593967pt;}
.y90{bottom:268.600533pt;}
.y20{bottom:268.915667pt;}
.ycb{bottom:280.749567pt;}
.y56{bottom:281.721200pt;}
.y55{bottom:281.735133pt;}
.y8e{bottom:283.001467pt;}
.y1f{bottom:283.309000pt;}
.yca{bottom:294.831233pt;}
.y54{bottom:296.128467pt;}
.y8d{bottom:297.074833pt;}
.y1e{bottom:297.390667pt;}
.y107{bottom:302.853467pt;}
.yc9{bottom:309.238733pt;}
.y53{bottom:310.210133pt;}
.y8c{bottom:311.482333pt;}
.y1d{bottom:311.798167pt;}
.y106{bottom:317.246800pt;}
.yc8{bottom:323.632067pt;}
.y52{bottom:324.291800pt;}
.y8b{bottom:325.564000pt;}
.y1c{bottom:325.879833pt;}
.y104{bottom:331.630367pt;}
.y105{bottom:331.640133pt;}
.yc7{bottom:338.039567pt;}
.y51{bottom:338.685133pt;}
.y8a{bottom:339.645667pt;}
.y1b{bottom:340.599000pt;}
.y103{bottom:345.712033pt;}
.yc6{bottom:352.121233pt;}
.y50{bottom:353.092633pt;}
.y89{bottom:354.039000pt;}
.y1a{bottom:354.680667pt;}
.y102{bottom:360.119533pt;}
.yc5{bottom:366.840400pt;}
.y4f{bottom:367.485967pt;}
.y88{bottom:368.113600pt;}
.y19{bottom:369.087600pt;}
.y100{bottom:374.200233pt;}
.y101{bottom:374.201200pt;}
.yc4{bottom:380.919833pt;}
.y4e{bottom:381.879300pt;}
.y87{bottom:382.521100pt;}
.y18{bottom:383.480933pt;}
.yff{bottom:388.919400pt;}
.yc3{bottom:395.327333pt;}
.y4d{bottom:395.960967pt;}
.y86{bottom:397.240267pt;}
.y17{bottom:397.561067pt;}
.y16{bottom:397.566633pt;}
.yfe{bottom:403.326900pt;}
.yc2{bottom:409.727900pt;}
.y4c{bottom:410.680133pt;}
.y15{bottom:411.974133pt;}
.yfd{bottom:417.720233pt;}
.yc1{bottom:424.447067pt;}
.y4b{bottom:425.092200pt;}
.y85{bottom:425.721200pt;}
.y14{bottom:426.367467pt;}
.yfc{bottom:432.439400pt;}
.yc0{bottom:438.841367pt;}
.y4a{bottom:439.173867pt;}
.y13{bottom:440.760800pt;}
.yfb{bottom:446.521067pt;}
.ybf{bottom:453.560500pt;}
.y49{bottom:453.567200pt;}
.y84{bottom:454.201200pt;}
.y12{bottom:454.830100pt;}
.yfa{bottom:461.240233pt;}
.y48{bottom:467.960533pt;}
.ybe{bottom:467.968000pt;}
.y83{bottom:468.594533pt;}
.y11{bottom:469.237600pt;}
.yf9{bottom:475.633567pt;}
.y47{bottom:482.679700pt;}
.ybd{bottom:482.687167pt;}
.y82{bottom:483.002033pt;}
.y10{bottom:483.630933pt;}
.yf8{bottom:490.041067pt;}
.ybc{bottom:497.080500pt;}
.y46{bottom:497.087200pt;}
.y81{bottom:497.721200pt;}
.yf{bottom:498.038433pt;}
.yf7{bottom:504.440400pt;}
.ybb{bottom:511.473833pt;}
.y45{bottom:511.480533pt;}
.y44{bottom:511.492633pt;}
.ye{bottom:512.120100pt;}
.y80{bottom:512.120667pt;}
.yf6{bottom:518.854000pt;}
.yba{bottom:525.881333pt;}
.y43{bottom:525.885967pt;}
.yd{bottom:526.839267pt;}
.y7e{bottom:526.839300pt;}
.y7f{bottom:529.720667pt;}
.yf5{bottom:533.247333pt;}
.y42{bottom:540.293467pt;}
.yb9{bottom:540.614267pt;}
.yc{bottom:540.920933pt;}
.y7d{bottom:540.920967pt;}
.yf4{bottom:547.966500pt;}
.yb8{bottom:555.007600pt;}
.y41{bottom:555.012633pt;}
.y7c{bottom:555.314300pt;}
.yb{bottom:555.328400pt;}
.yf3{bottom:562.359833pt;}
.y40{bottom:569.405967pt;}
.y7b{bottom:569.721800pt;}
.yb7{bottom:569.726767pt;}
.ya{bottom:570.047567pt;}
.yf2{bottom:576.441500pt;}
.y3f{bottom:583.799300pt;}
.yb6{bottom:584.120100pt;}
.y9{bottom:584.440900pt;}
.y7a{bottom:584.440967pt;}
.yf1{bottom:591.160667pt;}
.y3e{bottom:598.206800pt;}
.yb5{bottom:598.527600pt;}
.y8{bottom:598.834233pt;}
.y79{bottom:599.160133pt;}
.y78{bottom:599.160633pt;}
.yf0{bottom:605.553433pt;}
.y3d{bottom:612.600133pt;}
.y3c{bottom:612.611667pt;}
.yb4{bottom:612.920933pt;}
.yb3{bottom:612.934567pt;}
.y7{bottom:613.241733pt;}
.y77{bottom:613.568133pt;}
.yef{bottom:619.960933pt;}
.y3b{bottom:627.330833pt;}
.y6{bottom:627.646633pt;}
.yb2{bottom:627.653733pt;}
.y76{bottom:627.961467pt;}
.yee{bottom:634.688300pt;}
.y3a{bottom:641.412500pt;}
.yb1{bottom:642.047067pt;}
.y5{bottom:642.054133pt;}
.y75{bottom:642.368967pt;}
.yed{bottom:649.081633pt;}
.y39{bottom:656.131667pt;}
.y4{bottom:656.447467pt;}
.yb0{bottom:656.454567pt;}
.y74{bottom:656.762300pt;}
.yeb{bottom:663.798700pt;}
.yec{bottom:663.800800pt;}
.y38{bottom:670.525000pt;}
.y3{bottom:670.840800pt;}
.yaf{bottom:670.847900pt;}
.y73{bottom:671.155633pt;}
.yea{bottom:678.192033pt;}
.y37{bottom:684.606667pt;}
.yae{bottom:685.567067pt;}
.y72{bottom:685.874800pt;}
.ye9{bottom:692.599533pt;}
.y36{bottom:699.325833pt;}
.yad{bottom:699.960400pt;}
.y71{bottom:700.282300pt;}
.ye7{bottom:706.672600pt;}
.ye8{bottom:706.681200pt;}
.y35{bottom:713.407500pt;}
.yac{bottom:714.371233pt;}
.y70{bottom:715.007033pt;}
.y2{bottom:715.960933pt;}
.ye6{bottom:721.391767pt;}
.y34{bottom:728.126667pt;}
.yab{bottom:729.090400pt;}
.y6f{bottom:729.400367pt;}
.ye5{bottom:735.473433pt;}
.y1{bottom:741.562000pt;}
.y33{bottom:742.521633pt;}
.y6e{bottom:743.793700pt;}
.yaa{bottom:743.809567pt;}
.ye4{bottom:749.880367pt;}
.y32{bottom:756.929133pt;}
.y6c{bottom:758.200267pt;}
.y6d{bottom:758.201200pt;}
.ya9{bottom:758.528733pt;}
.ye3{bottom:764.273700pt;}
.y31{bottom:771.648300pt;}
.y6b{bottom:772.919433pt;}
.ya8{bottom:773.247900pt;}
.ye2{bottom:778.681200pt;}
.y30{bottom:786.041633pt;}
.y6a{bottom:787.001100pt;}
.ya7{bottom:787.967067pt;}
.ye1{bottom:792.767333pt;}
.y2f{bottom:800.760800pt;}
.y69{bottom:801.720267pt;}
.ya6{bottom:802.360400pt;}
.ye0{bottom:807.160667pt;}
.ya5{bottom:879.160667pt;}
.h1b{height:15.992187pt;}
.h25{height:33.375000pt;}
.h10{height:34.765625pt;}
.h13{height:36.156250pt;}
.h12{height:36.281250pt;}
.h14{height:36.851562pt;}
.h1f{height:37.546875pt;}
.h11{height:38.296875pt;}
.h3{height:47.976562pt;}
.h4{height:48.671875pt;}
.h2d{height:49.046875pt;}
.h7{height:50.062500pt;}
.h5{height:50.757812pt;}
.h31{height:52.998047pt;}
.h6{height:53.539062pt;}
.h1e{height:54.234375pt;}
.h17{height:54.306641pt;}
.hb{height:54.960938pt;}
.h8{height:55.615234pt;}
.h2a{height:55.615368pt;}
.h2f{height:55.617501pt;}
.hf{height:55.621368pt;}
.h27{height:55.621901pt;}
.h19{height:55.632568pt;}
.h23{height:55.636434pt;}
.h22{height:55.643501pt;}
.h30{height:55.649634pt;}
.he{height:56.437500pt;}
.hc{height:56.923828pt;}
.h20{height:57.109375pt;}
.h2b{height:58.232422pt;}
.h24{height:58.886719pt;}
.ha{height:59.125000pt;}
.h1a{height:59.796875pt;}
.h18{height:60.165365pt;}
.h9{height:63.968750pt;}
.h2c{height:79.960938pt;}
.h2{height:84.828125pt;}
.hd{height:164.093750pt;}
.h21{height:271.951181pt;}
.h26{height:318.309056pt;}
.h15{height:870.642267pt;}
.h16{height:870.666667pt;}
.h0{height:871.282267pt;}
.h1{height:871.333333pt;}
.h2e{height:871.600933pt;}
.h1c{height:871.922267pt;}
.h1d{height:872.000000pt;}
.h28{height:873.202267pt;}
.h29{height:873.333333pt;}
.w6{width:587.763600pt;}
.w7{width:588.000000pt;}
.w2{width:588.402267pt;}
.w3{width:588.666667pt;}
.w4{width:589.682267pt;}
.w5{width:590.000000pt;}
.w1{width:594.000000pt;}
.w0{width:594.162267pt;}
.w9{width:596.666667pt;}
.w8{width:596.722267pt;}
.x12{left:-7.239733pt;}
.x0{left:0.000000pt;}
.x34{left:47.486133pt;}
.x2e{left:48.441867pt;}
.x2f{left:49.718867pt;}
.x3e{left:51.006800pt;}
.xb{left:51.949733pt;}
.xa{left:52.924400pt;}
.xc{left:54.234200pt;}
.xd{left:55.461400pt;}
.x51{left:56.441467pt;}
.x58{left:57.385733pt;}
.x21{left:59.616000pt;}
.x1f{left:60.627333pt;}
.x1e{left:61.584000pt;}
.x1d{left:62.841333pt;}
.x43{left:64.121600pt;}
.x45{left:65.073600pt;}
.x4b{left:66.057267pt;}
.x57{left:68.280267pt;}
.x13{left:70.200667pt;}
.x35{left:74.368467pt;}
.x36{left:75.616867pt;}
.x8{left:79.480533pt;}
.xe{left:81.065333pt;}
.x52{left:83.325633pt;}
.x20{left:87.796667pt;}
.x44{left:89.735267pt;}
.x48{left:91.003667pt;}
.x30{left:93.562000pt;}
.x9{left:96.440400pt;}
.x1{left:98.041467pt;}
.x31{left:105.721733pt;}
.x24{left:109.881867pt;}
.x32{left:114.682133pt;}
.x33{left:124.921467pt;}
.x25{left:127.482000pt;}
.x2c{left:151.161200pt;}
.x55{left:156.280800pt;}
.x2d{left:172.281200pt;}
.x56{left:186.040533pt;}
.x3a{left:188.281733pt;}
.x26{left:190.202133pt;}
.x14{left:195.320267pt;}
.x15{left:201.400933pt;}
.x27{left:211.001467pt;}
.x2{left:219.000933pt;}
.x22{left:221.880933pt;}
.x3b{left:225.400933pt;}
.x29{left:227.961467pt;}
.x28{left:234.042000pt;}
.x23{left:235.001467pt;}
.x5b{left:238.200667pt;}
.x3{left:240.440400pt;}
.x49{left:242.041467pt;}
.x4a{left:252.920933pt;}
.x4{left:253.880400pt;}
.x3c{left:257.721200pt;}
.x10{left:264.761200pt;}
.x41{left:265.722133pt;}
.x16{left:267.960400pt;}
.x1a{left:269.880933pt;}
.x11{left:276.601600pt;}
.x4e{left:279.162133pt;}
.x5{left:281.721200pt;}
.x1b{left:286.200667pt;}
.x17{left:288.440400pt;}
.x2a{left:292.602000pt;}
.x4f{left:296.122133pt;}
.x6{left:300.280800pt;}
.x1c{left:304.121600pt;}
.x2b{left:310.842267pt;}
.x7{left:314.360800pt;}
.x3f{left:331.001467pt;}
.x40{left:344.441467pt;}
.x18{left:350.520533pt;}
.x19{left:355.320800pt;}
.x50{left:398.522000pt;}
.x37{left:423.802267pt;}
.x38{left:435.641067pt;}
.x53{left:461.880933pt;}
.x54{left:473.721200pt;}
.x59{left:480.121067pt;}
.x4c{left:482.362267pt;}
.x46{left:489.400933pt;}
.x5a{left:492.920933pt;}
.x47{left:502.202133pt;}
.x4d{left:504.121067pt;}
.x3d{left:520.121600pt;}
.xf{left:524.601067pt;}
.x42{left:586.041067pt;}
.x39{left:596.601067pt;}
}




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