
    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_70cfa20f07bf3f869f6a942d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.774902;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_f9932a1a1340c893f87d43a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_1be978ccbd54dd8a4acf591e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_caf77e574385b5fa1c3a49ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.909180;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_d5993964a4e435ab68d77ec7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136230;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_94610831e7f78efb0f7ade8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.136230;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_6d15b0925ddd8858c9950de5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_a928f2494c8ae7dbcaa5bec9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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;}
.m4{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,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);}
.m3{transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250234,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:-15.840000px;}
.v6{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.320000px;}
.v3{vertical-align:15.840000px;}
.ve{vertical-align:17.652202px;}
.v7{vertical-align:18.720000px;}
.vc{vertical-align:23.760000px;}
.v5{vertical-align:42.480000px;}
.v8{vertical-align:48.960000px;}
.va{vertical-align:59.040000px;}
.vb{vertical-align:68.400000px;}
.v1{vertical-align:92.880000px;}
.vd{vertical-align:98.640000px;}
.v9{vertical-align:118.800000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.576000px;}
.ls27{letter-spacing:-0.566354px;}
.ls2a{letter-spacing:-0.549180px;}
.ls5{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.262200px;}
.ls29{letter-spacing:-0.216485px;}
.ls26{letter-spacing:-0.194620px;}
.ls4{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.097800px;}
.ls8{letter-spacing:-0.048960px;}
.ls1d{letter-spacing:-0.012588px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.025175px;}
.ls2{letter-spacing:0.037440px;}
.ls13{letter-spacing:0.120960px;}
.ls16{letter-spacing:0.121200px;}
.ls10{letter-spacing:0.129600px;}
.ls3{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.849600px;}
.ls24{letter-spacing:2.664000px;}
.ls1f{letter-spacing:2.736000px;}
.ls22{letter-spacing:2.808000px;}
.ls23{letter-spacing:2.880000px;}
.ls25{letter-spacing:2.922000px;}
.ls1e{letter-spacing:3.024000px;}
.ls20{letter-spacing:3.042000px;}
.ls21{letter-spacing:3.096000px;}
.lse{letter-spacing:17.513280px;}
.lsd{letter-spacing:19.854000px;}
.ls1b{letter-spacing:21.172312px;}
.ls1c{letter-spacing:64.737930px;}
.ls28{letter-spacing:88.118140px;}
.ls18{letter-spacing:102.930240px;}
.ls12{letter-spacing:160.988160px;}
.ls15{letter-spacing:180.534000px;}
.lsf{letter-spacing:198.428160px;}
.ls17{letter-spacing:674.272800px;}
.ls19{letter-spacing:758.512800px;}
.lsa{letter-spacing:844.860000px;}
.ls1{letter-spacing:847.596000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws15{word-spacing:-71.799563px;}
.wsa{word-spacing:-66.240000px;}
.ws9{word-spacing:-59.760000px;}
.ws2{word-spacing:-40.032000px;}
.ws1{word-spacing:-39.744000px;}
.ws3{word-spacing:-26.658720px;}
.ws4{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.296000px;}
.ws11{word-spacing:-17.228400px;}
.wsd{word-spacing:-17.107200px;}
.ws6{word-spacing:-14.855040px;}
.ws8{word-spacing:-14.806200px;}
.ws7{word-spacing:-14.641800px;}
.ws18{word-spacing:-12.798000px;}
.wse{word-spacing:-11.880000px;}
.ws17{word-spacing:-7.814874px;}
.ws1a{word-spacing:-5.199125px;}
.ws21{word-spacing:-4.962904px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:7.562880px;}
.ws12{word-spacing:7.721280px;}
.wsc{word-spacing:8.496000px;}
.ws1b{word-spacing:18.581544px;}
.ws1d{word-spacing:19.638051px;}
.ws16{word-spacing:38.559957px;}
.ws1c{word-spacing:64.873222px;}
.ws24{word-spacing:72.859650px;}
.ws19{word-spacing:73.770122px;}
.ws20{word-spacing:77.704198px;}
.ws1e{word-spacing:79.559284px;}
.ws25{word-spacing:83.155235px;}
.ws22{word-spacing:102.950342px;}
.ws23{word-spacing:103.932307px;}
.ws14{word-spacing:116.274000px;}
.ws27{word-spacing:119.686959px;}
.ws26{word-spacing:162.572617px;}
.ws1f{word-spacing:189.751086px;}
.ws13{word-spacing:268.014000px;}
.wsf{word-spacing:989.634000px;}
._22{margin-left:-185.530994px;}
._34{margin-left:-176.904823px;}
._1f{margin-left:-135.345107px;}
._31{margin-left:-133.546757px;}
._9{margin-left:-9.558170px;}
._4{margin-left:-4.271040px;}
._1{margin-left:-1.059840px;}
._2{width:1.188000px;}
._6{width:2.222400px;}
._b{width:3.863760px;}
._1e{width:10.206667px;}
._17{width:12.960381px;}
._15{width:14.880277px;}
._5{width:17.400960px;}
._8{width:18.482880px;}
._7{width:19.995840px;}
._3{width:21.833280px;}
._e{width:38.117110px;}
._12{width:42.435325px;}
._d{width:50.150334px;}
._27{width:55.007361px;}
._39{width:69.359616px;}
._23{width:77.022779px;}
._19{width:84.211079px;}
._18{width:87.634158px;}
._1b{width:91.102843px;}
._c{width:105.841177px;}
._3c{width:108.850535px;}
._3b{width:111.523161px;}
._36{width:122.562959px;}
._3d{width:127.260230px;}
._25{width:128.809795px;}
._2c{width:133.170054px;}
._3a{width:147.979867px;}
._a{width:148.995003px;}
._24{width:150.628823px;}
._33{width:156.296529px;}
._16{width:158.360685px;}
._26{width:159.381001px;}
._11{width:161.129639px;}
._1d{width:177.316510px;}
._38{width:190.781360px;}
._1a{width:197.386806px;}
._1c{width:201.370128px;}
._21{width:212.604996px;}
._2d{width:248.968536px;}
._2f{width:279.009615px;}
._2e{width:298.119868px;}
._28{width:387.910837px;}
._35{width:391.062645px;}
._f{width:406.253868px;}
._37{width:410.166616px;}
._30{width:440.826132px;}
._29{width:458.831032px;}
._10{width:500.690814px;}
._2a{width:724.492942px;}
._13{width:749.103944px;}
._2b{width:761.958576px;}
._14{width:863.749169px;}
._32{width:1219.337225px;}
._0{width:1311.636000px;}
._20{width:1317.496888px;}
.fc5{color:rgb(70,120,134);}
.fc4{color:rgb(7,76,63);}
.fc1{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:26.539596px;}
.fse{font-size:27.802810px;}
.fs9{font-size:37.762744px;}
.fsa{font-size:37.863444px;}
.fsb{font-size:41.790770px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fsc{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fsd{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y38{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y12a{bottom:1.838773px;}
.y122{bottom:1.838774px;}
.y127{bottom:1.838779px;}
.y156{bottom:1.838781px;}
.y158{bottom:1.838782px;}
.y131{bottom:1.838810px;}
.y13d{bottom:1.851069px;}
.y11f{bottom:1.857160px;}
.y113{bottom:1.857162px;}
.y118{bottom:1.857167px;}
.y11d{bottom:1.857174px;}
.y148{bottom:1.857198px;}
.yd0{bottom:1.930752px;}
.yd5{bottom:1.930755px;}
.y10e{bottom:1.930756px;}
.yda{bottom:1.930758px;}
.y10a{bottom:1.946835px;}
.y103{bottom:1.946841px;}
.yfa{bottom:1.950078px;}
.y14f{bottom:2.206562px;}
.y10b{bottom:2.307630px;}
.y42{bottom:3.780000px;}
.y36{bottom:4.500000px;}
.yc5{bottom:5.940000px;}
.y12f{bottom:6.251844px;}
.y12d{bottom:6.251857px;}
.y139{bottom:6.251861px;}
.y128{bottom:6.264102px;}
.y137{bottom:6.264103px;}
.y124{bottom:6.264116px;}
.y135{bottom:6.264119px;}
.y11a{bottom:6.270230px;}
.y115{bottom:6.270245px;}
.yd7{bottom:6.564563px;}
.yea{bottom:6.564565px;}
.yd2{bottom:6.564571px;}
.ye3{bottom:6.564573px;}
.ye1{bottom:6.577436px;}
.yde{bottom:6.577443px;}
.yee{bottom:6.577444px;}
.yec{bottom:6.583880px;}
.y154{bottom:6.619577px;}
.y140{bottom:10.664875px;}
.y133{bottom:10.664880px;}
.y129{bottom:10.677132px;}
.y121{bottom:10.677134px;}
.y126{bottom:10.677139px;}
.y11e{bottom:10.683261px;}
.y112{bottom:10.683263px;}
.y117{bottom:10.683268px;}
.y11c{bottom:10.683275px;}
.y151{bottom:11.046112px;}
.ycf{bottom:11.198355px;}
.yd4{bottom:11.198358px;}
.yd9{bottom:11.198362px;}
.ydc{bottom:11.211227px;}
.ye0{bottom:11.211230px;}
.y102{bottom:11.214445px;}
.y109{bottom:11.214695px;}
.ye5{bottom:11.217663px;}
.yf2{bottom:11.217666px;}
.ya1{bottom:13.215000px;}
.y153{bottom:15.461001px;}
.y2b{bottom:15.840000px;}
.y34{bottom:19.080000px;}
.y108{bottom:20.498388px;}
.yac{bottom:21.009596px;}
.yb8{bottom:21.009615px;}
.y41{bottom:24.480000px;}
.y106{bottom:30.126789px;}
.y99{bottom:30.780000px;}
.yab{bottom:37.625203px;}
.yb7{bottom:37.625214px;}
.y40{bottom:45.180000px;}
.y14b{bottom:46.398361px;}
.y2a{bottom:46.800000px;}
.y104{bottom:48.694174px;}
.yaa{bottom:52.881352px;}
.yb6{bottom:52.881371px;}
.yc8{bottom:58.320000px;}
.ycb{bottom:58.356000px;}
.y4{bottom:59.220000px;}
.y33{bottom:60.480000px;}
.y15b{bottom:62.640000px;}
.y9a{bottom:64.155000px;}
.yc1{bottom:64.663328px;}
.ya3{bottom:65.091306px;}
.yaf{bottom:65.091308px;}
.y3f{bottom:65.880000px;}
.y100{bottom:67.248045px;}
.yc7{bottom:77.220000px;}
.yca{bottom:77.256000px;}
.y46{bottom:78.120000px;}
.y15a{bottom:81.540000px;}
.yfe{bottom:85.796123px;}
.y39{bottom:86.400000px;}
.y3e{bottom:86.580000px;}
.y9b{bottom:97.485000px;}
.y32{bottom:101.880000px;}
.yba{bottom:104.314209px;}
.y3d{bottom:107.280000px;}
.yfc{bottom:108.997310px;}
.ya4{bottom:110.838771px;}
.yb0{bottom:110.838774px;}
.y3c{bottom:127.980000px;}
.y9c{bottom:130.860000px;}
.y4d{bottom:133.920000px;}
.yf8{bottom:141.466099px;}
.y31{bottom:143.280000px;}
.ybb{bottom:143.535014px;}
.y141{bottom:143.590896px;}
.y3b{bottom:148.680000px;}
.ya5{bottom:156.605119px;}
.yb1{bottom:156.605121px;}
.yf6{bottom:160.020613px;}
.y9d{bottom:164.235000px;}
.ya2{bottom:166.045833px;}
.y3a{bottom:169.410000px;}
.yf4{bottom:178.568691px;}
.ybc{bottom:182.755819px;}
.y59{bottom:183.420000px;}
.y30{bottom:184.680000px;}
.y4c{bottom:191.880000px;}
.y9e{bottom:197.610000px;}
.ya6{bottom:202.371466px;}
.yb2{bottom:202.371468px;}
.y58{bottom:218.340000px;}
.ybd{bottom:221.987114px;}
.y9f{bottom:230.970000px;}
.ya7{bottom:248.137813px;}
.yb3{bottom:248.137816px;}
.y4b{bottom:250.020000px;}
.ybe{bottom:261.207919px;}
.ya0{bottom:264.345000px;}
.y8a{bottom:274.530000px;}
.y8c{bottom:279.390000px;}
.y89{bottom:285.330000px;}
.y6a{bottom:287.310000px;}
.y8b{bottom:291.810000px;}
.ya8{bottom:293.904161px;}
.yb4{bottom:293.904163px;}
.yae{bottom:300.280812px;}
.ybf{bottom:300.428724px;}
.yc0{bottom:306.235833px;}
.y85{bottom:308.010000px;}
.y110{bottom:311.470702px;}
.yb9{bottom:318.385833px;}
.y86{bottom:321.510000px;}
.ycc{bottom:325.935000px;}
.y107{bottom:326.295797px;}
.y88{bottom:327.090000px;}
.y82{bottom:335.550000px;}
.y87{bottom:338.790000px;}
.ya9{bottom:339.649529px;}
.yb5{bottom:339.649531px;}
.y105{bottom:354.131038px;}
.ycd{bottom:354.846229px;}
.y101{bottom:372.682334px;}
.yff{bottom:391.252294px;}
.y48{bottom:402.870000px;}
.y78{bottom:404.490000px;}
.yfd{bottom:409.800372px;}
.y10f{bottom:416.809860px;}
.y14e{bottom:426.019041px;}
.y152{bottom:426.019080px;}
.yfb{bottom:428.354886px;}
.y97{bottom:433.290000px;}
.y28{bottom:434.010000px;}
.y14d{bottom:434.860466px;}
.y14c{bottom:443.686567px;}
.yf9{bottom:446.902945px;}
.y27{bottom:452.910000px;}
.y47{bottom:461.910000px;}
.yf7{bottom:465.470350px;}
.y14a{bottom:470.195517px;}
.y150{bottom:470.195556px;}
.y26{bottom:471.810000px;}
.y68{bottom:473.610000px;}
.y149{bottom:479.035102px;}
.yf5{bottom:484.024864px;}
.y84{bottom:485.355000px;}
.y147{bottom:487.861203px;}
.y71{bottom:488.775000px;}
.y25{bottom:490.755000px;}
.y146{bottom:496.705692px;}
.yf3{bottom:502.572942px;}
.y145{bottom:505.544052px;}
.y96{bottom:509.295000px;}
.y24{bottom:509.655000px;}
.y144{bottom:514.370153px;}
.y23{bottom:528.555000px;}
.yf0{bottom:530.407911px;}
.yf1{bottom:530.407924px;}
.y67{bottom:531.615000px;}
.yc3{bottom:533.415000px;}
.y22{bottom:547.455000px;}
.yed{bottom:548.962425px;}
.yef{bottom:548.962436px;}
.y143{bottom:549.723592px;}
.y77{bottom:552.495000px;}
.y95{bottom:558.435000px;}
.y142{bottom:558.561970px;}
.y13f{bottom:558.561988px;}
.y7a{bottom:559.875000px;}
.y21{bottom:566.355000px;}
.y66{bottom:566.715000px;}
.yeb{bottom:567.510503px;}
.y13e{bottom:576.232542px;}
.y94{bottom:582.915000px;}
.y13c{bottom:585.058643px;}
.y20{bottom:585.255000px;}
.ye8{bottom:586.077889px;}
.ye9{bottom:586.077901px;}
.y74{bottom:593.535000px;}
.y13a{bottom:602.741492px;}
.y13b{bottom:602.741515px;}
.y79{bottom:603.975000px;}
.y1f{bottom:604.155000px;}
.ye6{bottom:604.632403px;}
.ye7{bottom:604.632415px;}
.y138{bottom:620.405953px;}
.y1e{bottom:623.055000px;}
.ye2{bottom:623.180481px;}
.ye4{bottom:623.180492px;}
.y65{bottom:624.855000px;}
.y134{bottom:638.076543px;}
.y136{bottom:638.076566px;}
.y37{bottom:639.255000px;}
.ydd{bottom:641.734995px;}
.ydf{bottom:641.735007px;}
.ydb{bottom:641.735014px;}
.y1d{bottom:641.955000px;}
.y130{bottom:655.759392px;}
.y132{bottom:655.759415px;}
.yd1{bottom:660.302380px;}
.yd8{bottom:660.302382px;}
.yd6{bottom:660.302391px;}
.yd3{bottom:660.302393px;}
.yce{bottom:660.302400px;}
.y1c{bottom:660.855000px;}
.y12c{bottom:673.423853px;}
.y12e{bottom:673.423876px;}
.y12b{bottom:673.423889px;}
.y35{bottom:677.775000px;}
.y1b{bottom:679.935000px;}
.y64{bottom:682.815000px;}
.y10d{bottom:688.118062px;}
.y10c{bottom:688.118073px;}
.y70{bottom:689.115000px;}
.y123{bottom:691.094443px;}
.y125{bottom:691.094466px;}
.y120{bottom:691.094479px;}
.y1a{bottom:698.835000px;}
.y83{bottom:704.235000px;}
.y57{bottom:706.965000px;}
.y114{bottom:708.758904px;}
.y11b{bottom:708.758905px;}
.y119{bottom:708.758925px;}
.y116{bottom:708.758927px;}
.y111{bottom:708.758940px;}
.y2f{bottom:715.605000px;}
.y19{bottom:717.765000px;}
.y63{bottom:717.945000px;}
.y157{bottom:735.267854px;}
.y155{bottom:735.267875px;}
.y18{bottom:736.665000px;}
.y62{bottom:753.045000px;}
.y76{bottom:753.405000px;}
.y92{bottom:753.945000px;}
.y17{bottom:755.565000px;}
.y56{bottom:764.925000px;}
.y90{bottom:765.465000px;}
.y69{bottom:766.725000px;}
.y16{bottom:774.465000px;}
.y8f{bottom:778.605000px;}
.y6e{bottom:788.865000px;}
.y15{bottom:793.365000px;}
.y55{bottom:800.025000px;}
.y91{bottom:807.765000px;}
.y61{bottom:811.005000px;}
.y14{bottom:812.265000px;}
.y81{bottom:816.765000px;}
.yc9{bottom:826.380000px;}
.y13{bottom:831.165000px;}
.y93{bottom:836.205000px;}
.y80{bottom:838.005000px;}
.y75{bottom:842.325000px;}
.y60{bottom:846.105000px;}
.y12{bottom:850.065000px;}
.yc2{bottom:851.505000px;}
.y54{bottom:858.165000px;}
.y11{bottom:868.965000px;}
.y7b{bottom:883.545000px;}
.y10{bottom:887.865000px;}
.y53{bottom:893.085000px;}
.y98{bottom:893.160000px;}
.y5f{bottom:904.245000px;}
.y6f{bottom:906.585000px;}
.yf{bottom:906.765000px;}
.ye{bottom:925.665000px;}
.yd{bottom:944.610000px;}
.y8e{bottom:948.750000px;}
.y7f{bottom:949.110000px;}
.y52{bottom:951.270000px;}
.y6d{bottom:955.590000px;}
.y8d{bottom:961.890000px;}
.y5e{bottom:962.250000px;}
.y29{bottom:963.330000px;}
.yc{bottom:963.510000px;}
.yb{bottom:982.410000px;}
.y5d{bottom:997.350000px;}
.ya{bottom:1001.310000px;}
.y7{bottom:1006.710000px;}
.y51{bottom:1009.410000px;}
.y7e{bottom:1011.030000px;}
.yc4{bottom:1016.610000px;}
.y9{bottom:1020.210000px;}
.y5c{bottom:1032.450000px;}
.yad{bottom:1033.170000px;}
.y6b{bottom:1035.330000px;}
.y8{bottom:1039.110000px;}
.y7d{bottom:1048.470000px;}
.y6{bottom:1058.010000px;}
.y6c{bottom:1065.750000px;}
.y50{bottom:1067.370000px;}
.y45{bottom:1071.330000px;}
.y5{bottom:1071.510000px;}
.y5b{bottom:1090.410000px;}
.y4f{bottom:1102.470000px;}
.y4a{bottom:1104.810000px;}
.y44{bottom:1104.990000px;}
.y72{bottom:1116.510000px;}
.y43{bottom:1122.810000px;}
.y5a{bottom:1125.510000px;}
.y2e{bottom:1126.410000px;}
.y2d{bottom:1145.310000px;}
.y3{bottom:1157.580000px;}
.y49{bottom:1157.760000px;}
.y73{bottom:1159.200000px;}
.y7c{bottom:1159.740000px;}
.y4e{bottom:1160.640000px;}
.y2c{bottom:1164.420000px;}
.y2{bottom:1176.480000px;}
.y1{bottom:1195.380000px;}
.yc6{bottom:1196.280000px;}
.y159{bottom:1206.900000px;}
.h3e{height:8.458388px;}
.h40{height:8.473689px;}
.h41{height:8.473691px;}
.h3d{height:8.473711px;}
.h2f{height:8.897552px;}
.h30{height:8.897554px;}
.h2c{height:8.897563px;}
.h3b{height:17.299773px;}
.h38{height:17.299774px;}
.h3a{height:17.299779px;}
.h39{height:17.299812px;}
.h37{height:17.315096px;}
.h33{height:17.315098px;}
.h35{height:17.315102px;}
.h36{height:17.315109px;}
.h34{height:17.315135px;}
.h27{height:18.165147px;}
.h29{height:18.165150px;}
.h2a{height:18.165154px;}
.h28{height:18.165166px;}
.h2d{height:18.181237px;}
.h2b{height:18.181256px;}
.h21{height:20.520000px;}
.h32{height:23.001847px;}
.h26{height:24.096673px;}
.h3f{height:26.141197px;}
.h8{height:27.000000px;}
.h2e{height:27.448839px;}
.h1d{height:32.728940px;}
.h1e{height:32.816218px;}
.h1f{height:36.220027px;}
.h3c{height:40.654050px;}
.h2{height:49.680000px;}
.h5{height:49.809375px;}
.h10{height:53.573906px;}
.h1a{height:53.709961px;}
.h1b{height:53.853187px;}
.hf{height:54.140625px;}
.hd{height:58.320000px;}
.h4{height:59.383125px;}
.h3{height:62.280000px;}
.he{height:63.344531px;}
.hc{height:64.002656px;}
.hb{height:64.546875px;}
.h13{height:66.972656px;}
.h22{height:81.000000px;}
.h9{height:85.847344px;}
.h12{height:96.440625px;}
.h7{height:129.093750px;}
.h14{height:145.400625px;}
.h17{height:153.320625px;}
.h16{height:155.480625px;}
.h18{height:199.400625px;}
.ha{height:203.070000px;}
.h15{height:215.240625px;}
.h11{height:236.120625px;}
.h6{height:236.550000px;}
.h19{height:284.760000px;}
.h31{height:326.933541px;}
.h1c{height:353.711032px;}
.h20{height:353.711052px;}
.h25{height:371.084210px;}
.h23{height:892.980000px;}
.h24{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:37.877710px;}
.w15{width:39.814792px;}
.wf{width:56.043384px;}
.w1f{width:61.036260px;}
.w1c{width:65.095133px;}
.w14{width:77.678287px;}
.w12{width:77.697607px;}
.w19{width:79.063783px;}
.w1b{width:206.650243px;}
.w11{width:217.237743px;}
.w1d{width:385.381566px;}
.w13{width:398.907821px;}
.w20{width:474.738038px;}
.w16{width:476.219032px;}
.w21{width:536.138830px;}
.w8{width:540.000000px;}
.w17{width:572.830677px;}
.wa{width:593.385000px;}
.w9{width:594.312133px;}
.w4{width:628.845000px;}
.w5{width:637.845000px;}
.w6{width:648.105000px;}
.w7{width:661.605000px;}
.w3{width:774.510000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w10{width:1049.822500px;}
.we{width:1049.822510px;}
.w1a{width:1049.854301px;}
.w18{width:1049.854311px;}
.wd{width:1262.879981px;}
.wb{width:1262.880000px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.x3a{left:1.159185px;}
.x3e{left:3.091161px;}
.x51{left:4.778749px;}
.x5b{left:8.454709px;}
.x2f{left:9.750000px;}
.x11{left:10.800000px;}
.x3f{left:13.143872px;}
.x39{left:16.228593px;}
.x33{left:18.053799px;}
.x44{left:24.349329px;}
.xb{left:32.214000px;}
.x8{left:39.234000px;}
.xa{left:56.154000px;}
.x48{left:58.361762px;}
.x49{left:61.839318px;}
.x47{left:62.998502px;}
.x4c{left:66.565517px;}
.x7{left:70.770000px;}
.x3b{left:74.220052px;}
.x5{left:81.360000px;}
.x9{left:102.054000px;}
.x30{left:108.000000px;}
.x12{left:113.796000px;}
.xf{left:120.096000px;}
.xd{left:125.316000px;}
.x37{left:127.655981px;}
.x6{left:132.330000px;}
.x4e{left:136.421019px;}
.x55{left:138.258999px;}
.x36{left:142.779000px;}
.x46{left:147.654438px;}
.x2{left:148.895987px;}
.x22{left:161.309987px;}
.x5a{left:163.641514px;}
.x4d{left:166.187892px;}
.x1{left:170.129987px;}
.x23{left:174.629987px;}
.x14{left:176.259000px;}
.x26{left:180.389987px;}
.x17{left:186.159000px;}
.x24{left:189.389987px;}
.x25{left:199.289987px;}
.x16{left:201.099000px;}
.x58{left:209.241800px;}
.x18{left:214.239000px;}
.xe{left:216.939000px;}
.x19{left:228.099000px;}
.xc{left:244.299000px;}
.x5c{left:260.717494px;}
.x13{left:265.179000px;}
.x4b{left:278.693877px;}
.x34{left:287.753740px;}
.x10{left:297.219000px;}
.x3c{left:308.858673px;}
.x15{left:330.699000px;}
.x27{left:336.494987px;}
.x2c{left:344.414987px;}
.x2d{left:363.854987px;}
.x4f{left:368.809894px;}
.x45{left:407.794907px;}
.x2a{left:429.194987px;}
.x43{left:436.014627px;}
.x20{left:437.474987px;}
.x1f{left:439.274987px;}
.x1d{left:440.894987px;}
.x1c{left:442.694987px;}
.x1b{left:444.674987px;}
.x3{left:446.474987px;}
.x57{left:452.296299px;}
.x2e{left:457.454987px;}
.x29{left:461.954987px;}
.x2b{left:470.054987px;}
.x40{left:477.758173px;}
.x56{left:479.143064px;}
.x28{left:489.164987px;}
.x52{left:514.450664px;}
.x3d{left:526.476371px;}
.x31{left:532.916415px;}
.x32{left:534.753821px;}
.x50{left:575.827733px;}
.x4a{left:604.560372px;}
.x59{left:641.290466px;}
.x38{left:644.144981px;}
.x1e{left:658.004987px;}
.x35{left:684.149987px;}
.x41{left:700.424987px;}
.x1a{left:723.029987px;}
.x21{left:744.269987px;}
.x53{left:753.805484px;}
.x4{left:766.409987px;}
.x42{left:1099.712763px;}
.x54{left:1139.554646px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v6{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.840000pt;}
.v3{vertical-align:14.080000pt;}
.ve{vertical-align:15.690847pt;}
.v7{vertical-align:16.640000pt;}
.vc{vertical-align:21.120000pt;}
.v5{vertical-align:37.760000pt;}
.v8{vertical-align:43.520000pt;}
.va{vertical-align:52.480000pt;}
.vb{vertical-align:60.800000pt;}
.v1{vertical-align:82.560000pt;}
.vd{vertical-align:87.680000pt;}
.v9{vertical-align:105.600000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls27{letter-spacing:-0.503425pt;}
.ls2a{letter-spacing:-0.488160pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.233067pt;}
.ls29{letter-spacing:-0.192431pt;}
.ls26{letter-spacing:-0.172995pt;}
.ls4{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.086933pt;}
.ls8{letter-spacing:-0.043520pt;}
.ls1d{letter-spacing:-0.011189pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.022378pt;}
.ls2{letter-spacing:0.033280pt;}
.ls13{letter-spacing:0.107520pt;}
.ls16{letter-spacing:0.107733pt;}
.ls10{letter-spacing:0.115200pt;}
.ls3{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.755200pt;}
.ls24{letter-spacing:2.368000pt;}
.ls1f{letter-spacing:2.432000pt;}
.ls22{letter-spacing:2.496000pt;}
.ls23{letter-spacing:2.560000pt;}
.ls25{letter-spacing:2.597333pt;}
.ls1e{letter-spacing:2.688000pt;}
.ls20{letter-spacing:2.704000pt;}
.ls21{letter-spacing:2.752000pt;}
.lse{letter-spacing:15.567360pt;}
.lsd{letter-spacing:17.648000pt;}
.ls1b{letter-spacing:18.819833pt;}
.ls1c{letter-spacing:57.544827pt;}
.ls28{letter-spacing:78.327235pt;}
.ls18{letter-spacing:91.493547pt;}
.ls12{letter-spacing:143.100587pt;}
.ls15{letter-spacing:160.474667pt;}
.lsf{letter-spacing:176.380587pt;}
.ls17{letter-spacing:599.353600pt;}
.ls19{letter-spacing:674.233600pt;}
.lsa{letter-spacing:750.986667pt;}
.ls1{letter-spacing:753.418667pt;}
.wsb{word-spacing:-64.000000pt;}
.ws15{word-spacing:-63.821834pt;}
.wsa{word-spacing:-58.880000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws2{word-spacing:-35.584000pt;}
.ws1{word-spacing:-35.328000pt;}
.ws3{word-spacing:-23.696640pt;}
.ws4{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.152000pt;}
.ws11{word-spacing:-15.314133pt;}
.wsd{word-spacing:-15.206400pt;}
.ws6{word-spacing:-13.204480pt;}
.ws8{word-spacing:-13.161067pt;}
.ws7{word-spacing:-13.014933pt;}
.ws18{word-spacing:-11.376000pt;}
.wse{word-spacing:-10.560000pt;}
.ws17{word-spacing:-6.946555pt;}
.ws1a{word-spacing:-4.621445pt;}
.ws21{word-spacing:-4.411471pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:6.722560pt;}
.ws12{word-spacing:6.863360pt;}
.wsc{word-spacing:7.552000pt;}
.ws1b{word-spacing:16.516928pt;}
.ws1d{word-spacing:17.456046pt;}
.ws16{word-spacing:34.275517pt;}
.ws1c{word-spacing:57.665087pt;}
.ws24{word-spacing:64.764133pt;}
.ws19{word-spacing:65.573441pt;}
.ws20{word-spacing:69.070399pt;}
.ws1e{word-spacing:70.719364pt;}
.ws25{word-spacing:73.915765pt;}
.ws22{word-spacing:91.511415pt;}
.ws23{word-spacing:92.384273pt;}
.ws14{word-spacing:103.354667pt;}
.ws27{word-spacing:106.388408pt;}
.ws26{word-spacing:144.508993pt;}
.ws1f{word-spacing:168.667632pt;}
.ws13{word-spacing:238.234667pt;}
.wsf{word-spacing:879.674667pt;}
._22{margin-left:-164.916439pt;}
._34{margin-left:-157.248732pt;}
._1f{margin-left:-120.306762pt;}
._31{margin-left:-118.708229pt;}
._9{margin-left:-8.496151pt;}
._4{margin-left:-3.796480pt;}
._1{margin-left:-0.942080pt;}
._2{width:1.056000pt;}
._6{width:1.975467pt;}
._b{width:3.434453pt;}
._1e{width:9.072593pt;}
._17{width:11.520338pt;}
._15{width:13.226913pt;}
._5{width:15.467520pt;}
._8{width:16.429227pt;}
._7{width:17.774080pt;}
._3{width:19.407360pt;}
._e{width:33.881876pt;}
._12{width:37.720289pt;}
._d{width:44.578075pt;}
._27{width:48.895432pt;}
._39{width:61.652992pt;}
._23{width:68.464693pt;}
._19{width:74.854293pt;}
._18{width:77.897030pt;}
._1b{width:80.980305pt;}
._c{width:94.081046pt;}
._3c{width:96.756031pt;}
._3b{width:99.131699pt;}
._36{width:108.944852pt;}
._3d{width:113.120205pt;}
._25{width:114.497596pt;}
._2c{width:118.373382pt;}
._3a{width:131.537659pt;}
._a{width:132.440003pt;}
._24{width:133.892287pt;}
._33{width:138.930248pt;}
._16{width:140.765053pt;}
._26{width:141.672001pt;}
._11{width:143.226345pt;}
._1d{width:157.614676pt;}
._38{width:169.583431pt;}
._1a{width:175.454938pt;}
._1c{width:178.995670pt;}
._21{width:188.982219pt;}
._2d{width:221.305365pt;}
._2f{width:248.008547pt;}
._2e{width:264.995438pt;}
._28{width:344.809633pt;}
._35{width:347.611240pt;}
._f{width:361.114550pt;}
._37{width:364.592548pt;}
._30{width:391.845450pt;}
._29{width:407.849806pt;}
._10{width:445.058501pt;}
._2a{width:643.993726pt;}
._13{width:665.870173pt;}
._2b{width:677.296512pt;}
._14{width:767.777039pt;}
._32{width:1083.855311pt;}
._0{width:1165.898667pt;}
._20{width:1171.108345pt;}
.fsf{font-size:23.590752pt;}
.fse{font-size:24.713609pt;}
.fs9{font-size:33.566883pt;}
.fsa{font-size:33.656395pt;}
.fsb{font-size:37.147351pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fsc{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fsd{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y38{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:1.634464pt;}
.y122{bottom:1.634466pt;}
.y127{bottom:1.634470pt;}
.y156{bottom:1.634472pt;}
.y158{bottom:1.634473pt;}
.y131{bottom:1.634498pt;}
.y13d{bottom:1.645394pt;}
.y11f{bottom:1.650809pt;}
.y113{bottom:1.650811pt;}
.y118{bottom:1.650815pt;}
.y11d{bottom:1.650821pt;}
.y148{bottom:1.650843pt;}
.yd0{bottom:1.716224pt;}
.yd5{bottom:1.716227pt;}
.y10e{bottom:1.716228pt;}
.yda{bottom:1.716230pt;}
.y10a{bottom:1.730520pt;}
.y103{bottom:1.730526pt;}
.yfa{bottom:1.733403pt;}
.y14f{bottom:1.961389pt;}
.y10b{bottom:2.051227pt;}
.y42{bottom:3.360000pt;}
.y36{bottom:4.000000pt;}
.yc5{bottom:5.280000pt;}
.y12f{bottom:5.557195pt;}
.y12d{bottom:5.557206pt;}
.y139{bottom:5.557210pt;}
.y128{bottom:5.568091pt;}
.y137{bottom:5.568092pt;}
.y124{bottom:5.568103pt;}
.y135{bottom:5.568106pt;}
.y11a{bottom:5.573538pt;}
.y115{bottom:5.573551pt;}
.yd7{bottom:5.835167pt;}
.yea{bottom:5.835169pt;}
.yd2{bottom:5.835174pt;}
.ye3{bottom:5.835176pt;}
.ye1{bottom:5.846610pt;}
.yde{bottom:5.846616pt;}
.yee{bottom:5.846617pt;}
.yec{bottom:5.852338pt;}
.y154{bottom:5.884068pt;}
.y140{bottom:9.479889pt;}
.y133{bottom:9.479894pt;}
.y129{bottom:9.490784pt;}
.y121{bottom:9.490786pt;}
.y126{bottom:9.490790pt;}
.y11e{bottom:9.496232pt;}
.y112{bottom:9.496234pt;}
.y117{bottom:9.496238pt;}
.y11c{bottom:9.496244pt;}
.y151{bottom:9.818766pt;}
.ycf{bottom:9.954093pt;}
.yd4{bottom:9.954096pt;}
.yd9{bottom:9.954099pt;}
.ydc{bottom:9.965535pt;}
.ye0{bottom:9.965538pt;}
.y102{bottom:9.968395pt;}
.y109{bottom:9.968618pt;}
.ye5{bottom:9.971256pt;}
.yf2{bottom:9.971258pt;}
.ya1{bottom:11.746667pt;}
.y153{bottom:13.743112pt;}
.y2b{bottom:14.080000pt;}
.y34{bottom:16.960000pt;}
.y108{bottom:18.220789pt;}
.yac{bottom:18.675197pt;}
.yb8{bottom:18.675213pt;}
.y41{bottom:21.760000pt;}
.y106{bottom:26.779368pt;}
.y99{bottom:27.360000pt;}
.yab{bottom:33.444625pt;}
.yb7{bottom:33.444634pt;}
.y40{bottom:40.160000pt;}
.y14b{bottom:41.242987pt;}
.y2a{bottom:41.600000pt;}
.y104{bottom:43.283710pt;}
.yaa{bottom:47.005646pt;}
.yb6{bottom:47.005663pt;}
.yc8{bottom:51.840000pt;}
.ycb{bottom:51.872000pt;}
.y4{bottom:52.640000pt;}
.y33{bottom:53.760000pt;}
.y15b{bottom:55.680000pt;}
.y9a{bottom:57.026667pt;}
.yc1{bottom:57.478514pt;}
.ya3{bottom:57.858938pt;}
.yaf{bottom:57.858940pt;}
.y3f{bottom:58.560000pt;}
.y100{bottom:59.776040pt;}
.yc7{bottom:68.640000pt;}
.yca{bottom:68.672000pt;}
.y46{bottom:69.440000pt;}
.y15a{bottom:72.480000pt;}
.yfe{bottom:76.263220pt;}
.y39{bottom:76.800000pt;}
.y3e{bottom:76.960000pt;}
.y9b{bottom:86.653333pt;}
.y32{bottom:90.560000pt;}
.yba{bottom:92.723741pt;}
.y3d{bottom:95.360000pt;}
.yfc{bottom:96.886498pt;}
.ya4{bottom:98.523352pt;}
.yb0{bottom:98.523354pt;}
.y3c{bottom:113.760000pt;}
.y9c{bottom:116.320000pt;}
.y4d{bottom:119.040000pt;}
.yf8{bottom:125.747643pt;}
.y31{bottom:127.360000pt;}
.ybb{bottom:127.586679pt;}
.y141{bottom:127.636352pt;}
.y3b{bottom:132.160000pt;}
.ya5{bottom:139.204550pt;}
.yb1{bottom:139.204552pt;}
.yf6{bottom:142.240544pt;}
.y9d{bottom:145.986667pt;}
.ya2{bottom:147.596296pt;}
.y3a{bottom:150.586667pt;}
.yf4{bottom:158.727725pt;}
.ybc{bottom:162.449617pt;}
.y59{bottom:163.040000pt;}
.y30{bottom:164.160000pt;}
.y4c{bottom:170.560000pt;}
.y9e{bottom:175.653333pt;}
.ya6{bottom:179.885748pt;}
.yb2{bottom:179.885749pt;}
.y58{bottom:194.080000pt;}
.ybd{bottom:197.321879pt;}
.y9f{bottom:205.306667pt;}
.ya7{bottom:220.566945pt;}
.yb3{bottom:220.566947pt;}
.y4b{bottom:222.240000pt;}
.ybe{bottom:232.184817pt;}
.ya0{bottom:234.973333pt;}
.y8a{bottom:244.026667pt;}
.y8c{bottom:248.346667pt;}
.y89{bottom:253.626667pt;}
.y6a{bottom:255.386667pt;}
.y8b{bottom:259.386667pt;}
.ya8{bottom:261.248143pt;}
.yb4{bottom:261.248145pt;}
.yae{bottom:266.916278pt;}
.ybf{bottom:267.047754pt;}
.yc0{bottom:272.209629pt;}
.y85{bottom:273.786667pt;}
.y110{bottom:276.862846pt;}
.yb9{bottom:283.009629pt;}
.y86{bottom:285.786667pt;}
.ycc{bottom:289.720000pt;}
.y107{bottom:290.040708pt;}
.y88{bottom:290.746667pt;}
.y82{bottom:298.266667pt;}
.y87{bottom:301.146667pt;}
.ya9{bottom:301.910692pt;}
.yb5{bottom:301.910694pt;}
.y105{bottom:314.783145pt;}
.ycd{bottom:315.418870pt;}
.y101{bottom:331.273186pt;}
.yff{bottom:347.779817pt;}
.y48{bottom:358.106667pt;}
.y78{bottom:359.546667pt;}
.yfd{bottom:364.266997pt;}
.y10f{bottom:370.497653pt;}
.y14e{bottom:378.683592pt;}
.y152{bottom:378.683627pt;}
.yfb{bottom:380.759899pt;}
.y97{bottom:385.146667pt;}
.y28{bottom:385.786667pt;}
.y14d{bottom:386.542636pt;}
.y14c{bottom:394.388059pt;}
.yf9{bottom:397.247062pt;}
.y27{bottom:402.586667pt;}
.y47{bottom:410.586667pt;}
.yf7{bottom:413.751422pt;}
.y14a{bottom:417.951570pt;}
.y150{bottom:417.951605pt;}
.y26{bottom:419.386667pt;}
.y68{bottom:420.986667pt;}
.y149{bottom:425.808980pt;}
.yf5{bottom:430.244323pt;}
.y84{bottom:431.426667pt;}
.y147{bottom:433.654403pt;}
.y71{bottom:434.466667pt;}
.y25{bottom:436.226667pt;}
.y146{bottom:441.516171pt;}
.yf3{bottom:446.731504pt;}
.y145{bottom:449.372491pt;}
.y96{bottom:452.706667pt;}
.y24{bottom:453.026667pt;}
.y144{bottom:457.217914pt;}
.y23{bottom:469.826667pt;}
.yf0{bottom:471.473699pt;}
.yf1{bottom:471.473710pt;}
.y67{bottom:472.546667pt;}
.yc3{bottom:474.146667pt;}
.y22{bottom:486.626667pt;}
.yed{bottom:487.966600pt;}
.yef{bottom:487.966610pt;}
.y143{bottom:488.643193pt;}
.y77{bottom:491.106667pt;}
.y95{bottom:496.386667pt;}
.y142{bottom:496.499529pt;}
.y13f{bottom:496.499545pt;}
.y7a{bottom:497.666667pt;}
.y21{bottom:503.426667pt;}
.y66{bottom:503.746667pt;}
.yeb{bottom:504.453781pt;}
.y13e{bottom:512.206704pt;}
.y94{bottom:518.146667pt;}
.y13c{bottom:520.052127pt;}
.y20{bottom:520.226667pt;}
.ye8{bottom:520.958123pt;}
.ye9{bottom:520.958135pt;}
.y74{bottom:527.586667pt;}
.y13a{bottom:535.770215pt;}
.y13b{bottom:535.770236pt;}
.y79{bottom:536.866667pt;}
.y1f{bottom:537.026667pt;}
.ye6{bottom:537.451025pt;}
.ye7{bottom:537.451036pt;}
.y138{bottom:551.471958pt;}
.y1e{bottom:553.826667pt;}
.ye2{bottom:553.938205pt;}
.ye4{bottom:553.938215pt;}
.y65{bottom:555.426667pt;}
.y134{bottom:567.179149pt;}
.y136{bottom:567.179170pt;}
.y37{bottom:568.226667pt;}
.ydd{bottom:570.431106pt;}
.ydf{bottom:570.431118pt;}
.ydb{bottom:570.431124pt;}
.y1d{bottom:570.626667pt;}
.y130{bottom:582.897237pt;}
.y132{bottom:582.897258pt;}
.yd1{bottom:586.935449pt;}
.yd8{bottom:586.935451pt;}
.yd6{bottom:586.935459pt;}
.yd3{bottom:586.935460pt;}
.yce{bottom:586.935466pt;}
.y1c{bottom:587.426667pt;}
.y12c{bottom:598.598980pt;}
.y12e{bottom:598.599001pt;}
.y12b{bottom:598.599012pt;}
.y35{bottom:602.466667pt;}
.y1b{bottom:604.386667pt;}
.y64{bottom:606.946667pt;}
.y10d{bottom:611.660499pt;}
.y10c{bottom:611.660509pt;}
.y70{bottom:612.546667pt;}
.y123{bottom:614.306171pt;}
.y125{bottom:614.306192pt;}
.y120{bottom:614.306204pt;}
.y1a{bottom:621.186667pt;}
.y83{bottom:625.986667pt;}
.y57{bottom:628.413333pt;}
.y114{bottom:630.007915pt;}
.y11b{bottom:630.007916pt;}
.y119{bottom:630.007933pt;}
.y116{bottom:630.007935pt;}
.y111{bottom:630.007947pt;}
.y2f{bottom:636.093333pt;}
.y19{bottom:638.013333pt;}
.y63{bottom:638.173333pt;}
.y157{bottom:653.571426pt;}
.y155{bottom:653.571444pt;}
.y18{bottom:654.813333pt;}
.y62{bottom:669.373333pt;}
.y76{bottom:669.693333pt;}
.y92{bottom:670.173333pt;}
.y17{bottom:671.613333pt;}
.y56{bottom:679.933333pt;}
.y90{bottom:680.413333pt;}
.y69{bottom:681.533333pt;}
.y16{bottom:688.413333pt;}
.y8f{bottom:692.093333pt;}
.y6e{bottom:701.213333pt;}
.y15{bottom:705.213333pt;}
.y55{bottom:711.133333pt;}
.y91{bottom:718.013333pt;}
.y61{bottom:720.893333pt;}
.y14{bottom:722.013333pt;}
.y81{bottom:726.013333pt;}
.yc9{bottom:734.560000pt;}
.y13{bottom:738.813333pt;}
.y93{bottom:743.293333pt;}
.y80{bottom:744.893333pt;}
.y75{bottom:748.733333pt;}
.y60{bottom:752.093333pt;}
.y12{bottom:755.613333pt;}
.yc2{bottom:756.893333pt;}
.y54{bottom:762.813333pt;}
.y11{bottom:772.413333pt;}
.y7b{bottom:785.373333pt;}
.y10{bottom:789.213333pt;}
.y53{bottom:793.853333pt;}
.y98{bottom:793.920000pt;}
.y5f{bottom:803.773333pt;}
.y6f{bottom:805.853333pt;}
.yf{bottom:806.013333pt;}
.ye{bottom:822.813333pt;}
.yd{bottom:839.653333pt;}
.y8e{bottom:843.333333pt;}
.y7f{bottom:843.653333pt;}
.y52{bottom:845.573333pt;}
.y6d{bottom:849.413333pt;}
.y8d{bottom:855.013333pt;}
.y5e{bottom:855.333333pt;}
.y29{bottom:856.293333pt;}
.yc{bottom:856.453333pt;}
.yb{bottom:873.253333pt;}
.y5d{bottom:886.533333pt;}
.ya{bottom:890.053333pt;}
.y7{bottom:894.853333pt;}
.y51{bottom:897.253333pt;}
.y7e{bottom:898.693333pt;}
.yc4{bottom:903.653333pt;}
.y9{bottom:906.853333pt;}
.y5c{bottom:917.733333pt;}
.yad{bottom:918.373333pt;}
.y6b{bottom:920.293333pt;}
.y8{bottom:923.653333pt;}
.y7d{bottom:931.973333pt;}
.y6{bottom:940.453333pt;}
.y6c{bottom:947.333333pt;}
.y50{bottom:948.773333pt;}
.y45{bottom:952.293333pt;}
.y5{bottom:952.453333pt;}
.y5b{bottom:969.253333pt;}
.y4f{bottom:979.973333pt;}
.y4a{bottom:982.053333pt;}
.y44{bottom:982.213333pt;}
.y72{bottom:992.453333pt;}
.y43{bottom:998.053333pt;}
.y5a{bottom:1000.453333pt;}
.y2e{bottom:1001.253333pt;}
.y2d{bottom:1018.053333pt;}
.y3{bottom:1028.960000pt;}
.y49{bottom:1029.120000pt;}
.y73{bottom:1030.400000pt;}
.y7c{bottom:1030.880000pt;}
.y4e{bottom:1031.680000pt;}
.y2c{bottom:1035.040000pt;}
.y2{bottom:1045.760000pt;}
.y1{bottom:1062.560000pt;}
.yc6{bottom:1063.360000pt;}
.y159{bottom:1072.800000pt;}
.h3e{height:7.518567pt;}
.h40{height:7.532168pt;}
.h41{height:7.532170pt;}
.h3d{height:7.532187pt;}
.h2f{height:7.908935pt;}
.h30{height:7.908937pt;}
.h2c{height:7.908945pt;}
.h3b{height:15.377576pt;}
.h38{height:15.377577pt;}
.h3a{height:15.377582pt;}
.h39{height:15.377611pt;}
.h37{height:15.391196pt;}
.h33{height:15.391198pt;}
.h35{height:15.391202pt;}
.h36{height:15.391208pt;}
.h34{height:15.391231pt;}
.h27{height:16.146797pt;}
.h29{height:16.146800pt;}
.h2a{height:16.146803pt;}
.h28{height:16.146814pt;}
.h2d{height:16.161099pt;}
.h2b{height:16.161116pt;}
.h21{height:18.240000pt;}
.h32{height:20.446086pt;}
.h26{height:21.419265pt;}
.h3f{height:23.236620pt;}
.h8{height:24.000000pt;}
.h2e{height:24.398968pt;}
.h1d{height:29.092391pt;}
.h1e{height:29.169971pt;}
.h1f{height:32.195580pt;}
.h3c{height:36.136933pt;}
.h2{height:44.160000pt;}
.h5{height:44.275000pt;}
.h10{height:47.621250pt;}
.h1a{height:47.742188pt;}
.h1b{height:47.869500pt;}
.hf{height:48.125000pt;}
.hd{height:51.840000pt;}
.h4{height:52.785000pt;}
.h3{height:55.360000pt;}
.he{height:56.306250pt;}
.hc{height:56.891250pt;}
.hb{height:57.375000pt;}
.h13{height:59.531250pt;}
.h22{height:72.000000pt;}
.h9{height:76.308750pt;}
.h12{height:85.725000pt;}
.h7{height:114.750000pt;}
.h14{height:129.245000pt;}
.h17{height:136.285000pt;}
.h16{height:138.205000pt;}
.h18{height:177.245000pt;}
.ha{height:180.506667pt;}
.h15{height:191.325000pt;}
.h11{height:209.885000pt;}
.h6{height:210.266667pt;}
.h19{height:253.120000pt;}
.h31{height:290.607592pt;}
.h1c{height:314.409806pt;}
.h20{height:314.409824pt;}
.h25{height:329.852631pt;}
.h23{height:793.760000pt;}
.h24{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:33.669075pt;}
.w15{width:35.390926pt;}
.wf{width:49.816341pt;}
.w1f{width:54.254454pt;}
.w1c{width:57.862341pt;}
.w14{width:69.047367pt;}
.w12{width:69.064540pt;}
.w19{width:70.278918pt;}
.w1b{width:183.689105pt;}
.w11{width:193.100216pt;}
.w1d{width:342.561392pt;}
.w13{width:354.584730pt;}
.w20{width:421.989367pt;}
.w16{width:423.305807pt;}
.w21{width:476.567849pt;}
.w8{width:480.000000pt;}
.w17{width:509.182824pt;}
.wa{width:527.453333pt;}
.w9{width:528.277451pt;}
.w4{width:558.973333pt;}
.w5{width:566.973333pt;}
.w6{width:576.093333pt;}
.w7{width:588.093333pt;}
.w3{width:688.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w10{width:933.175556pt;}
.we{width:933.175564pt;}
.w1a{width:933.203824pt;}
.w18{width:933.203832pt;}
.wd{width:1122.559983pt;}
.wb{width:1122.560000pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3a{left:1.030387pt;}
.x3e{left:2.747698pt;}
.x51{left:4.247777pt;}
.x5b{left:7.515297pt;}
.x2f{left:8.666667pt;}
.x11{left:9.600000pt;}
.x3f{left:11.683442pt;}
.x39{left:14.425416pt;}
.x33{left:16.047821pt;}
.x44{left:21.643848pt;}
.xb{left:28.634667pt;}
.x8{left:34.874667pt;}
.xa{left:49.914667pt;}
.x48{left:51.877122pt;}
.x49{left:54.968282pt;}
.x47{left:55.998668pt;}
.x4c{left:59.169349pt;}
.x7{left:62.906667pt;}
.x3b{left:65.973379pt;}
.x5{left:72.320000pt;}
.x9{left:90.714667pt;}
.x30{left:96.000000pt;}
.x12{left:101.152000pt;}
.xf{left:106.752000pt;}
.xd{left:111.392000pt;}
.x37{left:113.471983pt;}
.x6{left:117.626667pt;}
.x4e{left:121.263128pt;}
.x55{left:122.896888pt;}
.x36{left:126.914667pt;}
.x46{left:131.248389pt;}
.x2{left:132.351988pt;}
.x22{left:143.386655pt;}
.x5a{left:145.459124pt;}
.x4d{left:147.722570pt;}
.x1{left:151.226655pt;}
.x23{left:155.226655pt;}
.x14{left:156.674667pt;}
.x26{left:160.346655pt;}
.x17{left:165.474667pt;}
.x24{left:168.346655pt;}
.x25{left:177.146655pt;}
.x16{left:178.754667pt;}
.x58{left:185.992711pt;}
.x18{left:190.434667pt;}
.xe{left:192.834667pt;}
.x19{left:202.754667pt;}
.xc{left:217.154667pt;}
.x5c{left:231.748884pt;}
.x13{left:235.714667pt;}
.x4b{left:247.727891pt;}
.x34{left:255.781103pt;}
.x10{left:264.194667pt;}
.x3c{left:274.541043pt;}
.x15{left:293.954667pt;}
.x27{left:299.106655pt;}
.x2c{left:306.146655pt;}
.x2d{left:323.426655pt;}
.x4f{left:327.831017pt;}
.x45{left:362.484362pt;}
.x2a{left:381.506655pt;}
.x43{left:387.568557pt;}
.x20{left:388.866655pt;}
.x1f{left:390.466655pt;}
.x1d{left:391.906655pt;}
.x1c{left:393.506655pt;}
.x1b{left:395.266655pt;}
.x3{left:396.866655pt;}
.x57{left:402.041155pt;}
.x2e{left:406.626655pt;}
.x29{left:410.626655pt;}
.x2b{left:417.826655pt;}
.x40{left:424.673931pt;}
.x56{left:425.904945pt;}
.x28{left:434.813322pt;}
.x52{left:457.289479pt;}
.x3d{left:467.978996pt;}
.x31{left:473.703480pt;}
.x32{left:475.336730pt;}
.x50{left:511.846874pt;}
.x4a{left:537.386998pt;}
.x59{left:570.035970pt;}
.x38{left:572.573317pt;}
.x1e{left:584.893322pt;}
.x35{left:608.133322pt;}
.x41{left:622.599989pt;}
.x1a{left:642.693322pt;}
.x21{left:661.573322pt;}
.x53{left:670.049319pt;}
.x4{left:681.253322pt;}
.x42{left:977.522456pt;}
.x54{left:1012.937463pt;}
}




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