
    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_c1a3b33cc30d490dc6b763e0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2dd253be4728f87e95febb47.woff')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_3923ac8e4db2e78a81271548.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_4a098b5ea032b12e752247cf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_855d1890b9842b9653e05d35.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933105;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_d58c25ace42a8da9d9abff17.woff')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_fdd038481d1f81d3ed7e30d6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_5e680101ee0bb5e6663fbd78.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_3757acd26167a8d5e07e6cd1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.017976px;}
.ls8{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.018012px;}
.lsa{letter-spacing:0.872130px;}
.lsb{letter-spacing:0.923432px;}
.ls7{letter-spacing:1.296040px;}
.lsc{letter-spacing:1.333846px;}
.ls6{letter-spacing:1.344041px;}
.lsd{letter-spacing:1.385147px;}
.ls2{letter-spacing:1.458000px;}
.ls5{letter-spacing:1.476000px;}
.lse{letter-spacing:2.103372px;}
.ls4{letter-spacing:4.968000px;}
.ls3{letter-spacing:809.819000px;}
.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;}
}
.ws8{word-spacing:-51.301758px;}
.ws1{word-spacing:-21.129671px;}
.ws4{word-spacing:-16.416000px;}
.ws5{word-spacing:-14.958000px;}
.ws7{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:22.194000px;}
.ws2{word-spacing:303.012000px;}
._1d{margin-left:-8.873706px;}
._d{margin-left:-7.272141px;}
._f{margin-left:-5.983825px;}
._4{margin-left:-4.857302px;}
._20{margin-left:-3.708593px;}
._3{margin-left:-2.640344px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._7{width:3.720414px;}
._6{width:4.842083px;}
._8{width:6.216126px;}
._e{width:7.350961px;}
._9{width:8.532000px;}
._a{width:10.194170px;}
._c{width:11.610040px;}
._b{width:12.744000px;}
._18{width:13.818779px;}
._1b{width:15.065783px;}
._17{width:16.224807px;}
._5{width:17.355478px;}
._16{width:19.314083px;}
._1c{width:22.217841px;}
._11{width:23.868079px;}
._12{width:25.752344px;}
._15{width:26.816119px;}
._1e{width:30.832533px;}
._10{width:32.911767px;}
._13{width:47.268075px;}
._14{width:48.462135px;}
._1a{width:89.990827px;}
._1f{width:115.685464px;}
._19{width:195.512336px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y111{bottom:4.528539px;}
.y13a{bottom:4.529016px;}
.y139{bottom:22.482126px;}
.y110{bottom:22.487528px;}
.y10f{bottom:40.440655px;}
.y138{bottom:40.441114px;}
.y20{bottom:46.734370px;}
.y10e{bottom:58.393782px;}
.y137{bottom:58.394241px;}
.y1f{bottom:59.015622px;}
.y1e{bottom:71.302734px;}
.y136{bottom:76.347368px;}
.y10d{bottom:76.352766px;}
.y6d{bottom:87.638630px;}
.y76{bottom:92.695500px;}
.ye2{bottom:94.160157px;}
.y10c{bottom:94.305878px;}
.y135{bottom:94.306357px;}
.ya0{bottom:97.464795px;}
.y74{bottom:102.017584px;}
.y49{bottom:102.867161px;}
.y6c{bottom:106.535120px;}
.ye3{bottom:109.032000px;}
.ye1{bottom:112.113269px;}
.y10b{bottom:112.259005px;}
.y134{bottom:112.259484px;}
.y9f{bottom:116.367144px;}
.y48{bottom:121.763650px;}
.y75{bottom:122.197266px;}
.y73{bottom:123.322266px;}
.y6b{bottom:125.437469px;}
.ye0{bottom:130.072257px;}
.y10a{bottom:130.212132px;}
.y133{bottom:130.212609px;}
.y9e{bottom:135.263634px;}
.y47{bottom:140.665999px;}
.y1c{bottom:143.876937px;}
.ydf{bottom:148.025384px;}
.y109{bottom:148.171121px;}
.y132{bottom:148.171586px;}
.y9d{bottom:154.165983px;}
.ybd{bottom:156.732417px;}
.y6a{bottom:157.839818px;}
.y46{bottom:159.568349px;}
.y1b{bottom:162.773427px;}
.yde{bottom:165.978512px;}
.y108{bottom:166.124248px;}
.y131{bottom:166.124713px;}
.y9c{bottom:173.068332px;}
.ybc{bottom:175.628864px;}
.y69{bottom:176.736308px;}
.y45{bottom:178.464838px;}
.y1a{bottom:181.675776px;}
.ydd{bottom:183.937500px;}
.y107{bottom:184.077375px;}
.y130{bottom:184.077840px;}
.y9b{bottom:191.964822px;}
.ybb{bottom:194.531212px;}
.y68{bottom:195.638657px;}
.y44{bottom:197.367188px;}
.y19{bottom:200.578125px;}
.ydc{bottom:201.890625px;}
.y106{bottom:202.036359px;}
.y12f{bottom:202.036828px;}
.y9a{bottom:210.867171px;}
.yba{bottom:213.427702px;}
.y67{bottom:214.535147px;}
.y112{bottom:216.762000px;}
.ydb{bottom:219.843743px;}
.y105{bottom:219.989475px;}
.y12e{bottom:219.989894px;}
.y43{bottom:228.023437px;}
.y18{bottom:231.228516px;}
.yb9{bottom:232.330052px;}
.y66{bottom:233.437496px;}
.yda{bottom:237.802732px;}
.y104{bottom:237.942602px;}
.y12d{bottom:237.943021px;}
.y99{bottom:243.263661px;}
.yb8{bottom:251.232400px;}
.y65{bottom:252.339795px;}
.yd9{bottom:255.755859px;}
.y103{bottom:255.901590px;}
.y12c{bottom:255.902010px;}
.y98{bottom:262.166010px;}
.y64{bottom:271.236285px;}
.yd8{bottom:273.708984px;}
.y102{bottom:273.854717px;}
.y12b{bottom:273.855137px;}
.y97{bottom:281.068349px;}
.yb7{bottom:283.628890px;}
.y42{bottom:283.628901px;}
.y17{bottom:286.839843px;}
.y63{bottom:290.138634px;}
.yd7{bottom:291.662105px;}
.y101{bottom:291.807845px;}
.y12a{bottom:291.808264px;}
.y96{bottom:299.964839px;}
.y41{bottom:302.531213px;}
.yb6{bottom:302.531239px;}
.y62{bottom:309.035124px;}
.yd6{bottom:309.621093px;}
.y100{bottom:309.766828px;}
.y129{bottom:309.767252px;}
.y16{bottom:317.496093px;}
.y95{bottom:318.867188px;}
.y40{bottom:321.427702px;}
.yb5{bottom:321.427729px;}
.yd5{bottom:327.574204px;}
.yff{bottom:327.719951px;}
.y128{bottom:327.720379px;}
.y61{bottom:327.937473px;}
.y94{bottom:337.763634px;}
.y3f{bottom:340.330052px;}
.yb4{bottom:340.330073px;}
.yd4{bottom:345.527331px;}
.yfe{bottom:345.673078px;}
.y127{bottom:345.673507px;}
.y60{bottom:346.839822px;}
.y93{bottom:356.665983px;}
.y3e{bottom:359.232400px;}
.yb3{bottom:359.232422px;}
.yd3{bottom:363.486320px;}
.yfd{bottom:363.632063px;}
.y126{bottom:363.632495px;}
.y5f{bottom:365.736312px;}
.y15{bottom:373.107390px;}
.y92{bottom:375.568332px;}
.y3d{bottom:378.128890px;}
.yb2{bottom:378.128901px;}
.yd2{bottom:381.439447px;}
.yfc{bottom:381.585185px;}
.y125{bottom:381.585622px;}
.y5e{bottom:384.638661px;}
.y14{bottom:392.003880px;}
.y91{bottom:394.464822px;}
.y3c{bottom:397.031239px;}
.yb1{bottom:397.031244px;}
.yd1{bottom:399.392574px;}
.yfb{bottom:399.538313px;}
.y124{bottom:399.538749px;}
.y5d{bottom:403.535151px;}
.y13{bottom:410.906229px;}
.y90{bottom:413.367171px;}
.y3b{bottom:415.927729px;}
.yd0{bottom:417.351562px;}
.yfa{bottom:417.497292px;}
.y123{bottom:417.497738px;}
.y5c{bottom:422.437500px;}
.y12{bottom:429.802719px;}
.y8f{bottom:432.263661px;}
.yb0{bottom:434.830073px;}
.y3a{bottom:434.830078px;}
.ycf{bottom:435.304685px;}
.yf9{bottom:435.450419px;}
.y122{bottom:435.450865px;}
.y11{bottom:448.705068px;}
.y8e{bottom:451.166010px;}
.yce{bottom:453.257813px;}
.yf8{bottom:453.403547px;}
.y121{bottom:453.403992px;}
.y5b{bottom:453.662109px;}
.y39{bottom:453.732390px;}
.yaf{bottom:453.732422px;}
.y10{bottom:467.607417px;}
.y8d{bottom:470.068338px;}
.ycd{bottom:471.216796px;}
.y120{bottom:471.357119px;}
.yf7{bottom:471.362519px;}
.y71{bottom:471.826170px;}
.yae{bottom:472.628874px;}
.y38{bottom:472.628880px;}
.yf{bottom:486.503907px;}
.y70{bottom:488.630858px;}
.y8c{bottom:488.964828px;}
.ycc{bottom:489.169914px;}
.yf6{bottom:489.315646px;}
.y11f{bottom:489.316108px;}
.yad{bottom:491.531223px;}
.y37{bottom:491.531229px;}
.y5a{bottom:498.498036px;}
.y6f{bottom:505.429690px;}
.ycb{bottom:507.123041px;}
.yf5{bottom:507.268773px;}
.y11e{bottom:507.269235px;}
.yac{bottom:510.427713px;}
.y36{bottom:510.427719px;}
.ye{bottom:517.160157px;}
.y59{bottom:517.394526px;}
.y8b{bottom:521.367177px;}
.yca{bottom:525.082030px;}
.y11d{bottom:525.222362px;}
.yf4{bottom:525.227762px;}
.y72{bottom:525.603516px;}
.y6e{bottom:526.728516px;}
.yab{bottom:529.330062px;}
.y35{bottom:529.330068px;}
.y58{bottom:536.296865px;}
.y8a{bottom:540.263667px;}
.yc9{bottom:543.035157px;}
.yf3{bottom:543.180889px;}
.y11c{bottom:543.181350px;}
.yaa{bottom:548.232411px;}
.y34{bottom:548.232417px;}
.y57{bottom:555.199214px;}
.y89{bottom:559.165983px;}
.yf2{bottom:561.134016px;}
.y11b{bottom:561.134477px;}
.y33{bottom:567.128884px;}
.ya9{bottom:567.128901px;}
.y56{bottom:574.095681px;}
.y88{bottom:578.068332px;}
.yf1{bottom:579.087137px;}
.y11a{bottom:579.087605px;}
.yc8{bottom:580.541016px;}
.y32{bottom:586.031234px;}
.yd{bottom:586.259753px;}
.y55{bottom:592.998030px;}
.y87{bottom:596.964822px;}
.yf0{bottom:597.046125px;}
.y119{bottom:597.046593px;}
.ya8{bottom:599.531240px;}
.yc{bottom:603.058580px;}
.y31{bottom:604.927723px;}
.y54{bottom:611.894520px;}
.yef{bottom:614.999248px;}
.y118{bottom:614.999718px;}
.y86{bottom:615.867171px;}
.ya7{bottom:618.427730px;}
.y30{bottom:623.830072px;}
.yb{bottom:624.357413px;}
.y53{bottom:630.796869px;}
.yee{bottom:632.952375px;}
.y117{bottom:632.952831px;}
.yc7{bottom:634.242188px;}
.y85{bottom:634.763661px;}
.ya6{bottom:637.330046px;}
.y2f{bottom:642.732411px;}
.ya{bottom:645.662104px;}
.y52{bottom:649.699218px;}
.yed{bottom:650.911359px;}
.y116{bottom:650.911820px;}
.y84{bottom:653.666010px;}
.ya5{bottom:656.232395px;}
.y2e{bottom:661.628901px;}
.yc6{bottom:662.988282px;}
.y9{bottom:666.960938px;}
.yec{bottom:668.864462px;}
.y115{bottom:668.864947px;}
.y83{bottom:672.568353px;}
.ya4{bottom:675.128885px;}
.y51{bottom:680.923829px;}
.yeb{bottom:686.817589px;}
.y114{bottom:686.818074px;}
.y82{bottom:691.464839px;}
.ya3{bottom:694.031233px;}
.y2d{bottom:694.031244px;}
.yea{bottom:704.776577px;}
.y113{bottom:704.777062px;}
.y81{bottom:710.367182px;}
.ya2{bottom:712.927723px;}
.y2c{bottom:712.927730px;}
.y50{bottom:714.023438px;}
.y8{bottom:717.216802px;}
.yc5{bottom:718.599594px;}
.ye9{bottom:722.729704px;}
.y80{bottom:729.263667px;}
.y7{bottom:730.441407px;}
.y2b{bottom:731.830073px;}
.yc4{bottom:737.501943px;}
.ye8{bottom:740.682831px;}
.y7f{bottom:748.166010px;}
.ya1{bottom:750.732373px;}
.y2a{bottom:750.732417px;}
.y6{bottom:751.400391px;}
.y1d{bottom:755.900391px;}
.yc3{bottom:756.398433px;}
.ye7{bottom:758.641820px;}
.y7e{bottom:767.068332px;}
.y4f{bottom:769.628864px;}
.y29{bottom:769.628901px;}
.yc2{bottom:775.300782px;}
.ye6{bottom:776.594947px;}
.y7d{bottom:785.964822px;}
.y78{bottom:787.769343px;}
.y4e{bottom:788.531213px;}
.y28{bottom:788.531240px;}
.y5{bottom:793.710931px;}
.ye5{bottom:794.548074px;}
.y7c{bottom:804.867171px;}
.yc1{bottom:805.957032px;}
.y4d{bottom:807.427703px;}
.y27{bottom:807.427730px;}
.ye4{bottom:812.507063px;}
.y77{bottom:818.425593px;}
.y7b{bottom:823.763661px;}
.y4c{bottom:826.330052px;}
.y26{bottom:826.330068px;}
.y4{bottom:831.269532px;}
.y7a{bottom:842.666010px;}
.y4b{bottom:845.232401px;}
.y25{bottom:845.232417px;}
.yc0{bottom:861.568353px;}
.y79{bottom:861.568359px;}
.y24{bottom:864.128891px;}
.ybf{bottom:880.464843px;}
.y23{bottom:883.031239px;}
.y3{bottom:899.378907px;}
.y22{bottom:901.927730px;}
.ybe{bottom:911.121093px;}
.y21{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y4a{bottom:974.730470px;}
.h9{height:28.048904px;}
.h11{height:31.993163px;}
.h8{height:32.273438px;}
.h5{height:33.888685px;}
.he{height:35.617086px;}
.h1{height:37.651031px;}
.h6{height:37.651083px;}
.h4{height:43.032562px;}
.h18{height:45.991224px;}
.h1c{height:45.991277px;}
.h19{height:45.991286px;}
.h1b{height:45.991314px;}
.h1e{height:45.991463px;}
.hf{height:46.796220px;}
.h2{height:48.410156px;}
.ha{height:48.410222px;}
.h15{height:48.410240px;}
.hb{height:48.410246px;}
.h13{height:48.410264px;}
.hc{height:48.410282px;}
.h14{height:48.410288px;}
.hd{height:48.410306px;}
.h17{height:48.410330px;}
.h16{height:48.410348px;}
.h10{height:48.410354px;}
.h7{height:52.443023px;}
.h3{height:68.582368px;}
.h1d{height:718.201500px;}
.h1a{height:825.931500px;}
.h12{height:842.268000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xc{left:11.584593px;}
.xd{left:45.000609px;}
.x3{left:78.662109px;}
.x8{left:86.537109px;}
.xa{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xb{left:123.662109px;}
.x7{left:134.226562px;}
.x9{left:138.287109px;}
.x1{left:140.308593px;}
.x6{left:158.537109px;}
.x2{left:324.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.015979pt;}
.ls8{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.016011pt;}
.lsa{letter-spacing:0.775227pt;}
.lsb{letter-spacing:0.820828pt;}
.ls7{letter-spacing:1.152035pt;}
.lsc{letter-spacing:1.185641pt;}
.ls6{letter-spacing:1.194703pt;}
.lsd{letter-spacing:1.231242pt;}
.ls2{letter-spacing:1.296000pt;}
.ls5{letter-spacing:1.312000pt;}
.lse{letter-spacing:1.869664pt;}
.ls4{letter-spacing:4.416000pt;}
.ls3{letter-spacing:719.839111pt;}
.ws8{word-spacing:-45.601563pt;}
.ws1{word-spacing:-18.781930pt;}
.ws4{word-spacing:-14.592000pt;}
.ws5{word-spacing:-13.296000pt;}
.ws7{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:19.728000pt;}
.ws2{word-spacing:269.344000pt;}
._1d{margin-left:-7.887738pt;}
._d{margin-left:-6.464125pt;}
._f{margin-left:-5.318955pt;}
._4{margin-left:-4.317602pt;}
._20{margin-left:-3.296527pt;}
._3{margin-left:-2.346973pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._7{width:3.307035pt;}
._6{width:4.304074pt;}
._8{width:5.525445pt;}
._e{width:6.534188pt;}
._9{width:7.584000pt;}
._a{width:9.061484pt;}
._c{width:10.320035pt;}
._b{width:11.328000pt;}
._18{width:12.283359pt;}
._1b{width:13.391807pt;}
._17{width:14.422050pt;}
._5{width:15.427091pt;}
._16{width:17.168074pt;}
._1c{width:19.749192pt;}
._11{width:21.216070pt;}
._12{width:22.890973pt;}
._15{width:23.836551pt;}
._1e{width:27.406696pt;}
._10{width:29.254904pt;}
._13{width:42.016066pt;}
._14{width:43.077453pt;}
._1a{width:79.991846pt;}
._1f{width:102.831524pt;}
._19{width:173.788743pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y111{bottom:4.025368pt;}
.y13a{bottom:4.025792pt;}
.y139{bottom:19.984112pt;}
.y110{bottom:19.988913pt;}
.y10f{bottom:35.947249pt;}
.y138{bottom:35.947657pt;}
.y20{bottom:41.541662pt;}
.y10e{bottom:51.905584pt;}
.y137{bottom:51.905992pt;}
.y1f{bottom:52.458331pt;}
.y1e{bottom:63.380208pt;}
.y136{bottom:67.864328pt;}
.y10d{bottom:67.869125pt;}
.y6d{bottom:77.901004pt;}
.y76{bottom:82.396000pt;}
.ye2{bottom:83.697917pt;}
.y10c{bottom:83.827447pt;}
.y135{bottom:83.827873pt;}
.ya0{bottom:86.635373pt;}
.y74{bottom:90.682297pt;}
.y49{bottom:91.437476pt;}
.y6c{bottom:94.697884pt;}
.ye3{bottom:96.917333pt;}
.ye1{bottom:99.656239pt;}
.y10b{bottom:99.785782pt;}
.y134{bottom:99.786208pt;}
.y9f{bottom:103.437461pt;}
.y48{bottom:108.234356pt;}
.y75{bottom:108.619792pt;}
.y73{bottom:109.619792pt;}
.y6b{bottom:111.499972pt;}
.ye0{bottom:115.619784pt;}
.y10a{bottom:115.744118pt;}
.y133{bottom:115.744541pt;}
.y9e{bottom:120.234341pt;}
.y47{bottom:125.036444pt;}
.y1c{bottom:127.890611pt;}
.ydf{bottom:131.578120pt;}
.y109{bottom:131.707663pt;}
.y132{bottom:131.708076pt;}
.y9d{bottom:137.036429pt;}
.ybd{bottom:139.317704pt;}
.y6a{bottom:140.302060pt;}
.y46{bottom:141.838532pt;}
.y1b{bottom:144.687491pt;}
.yde{bottom:147.536455pt;}
.y108{bottom:147.665998pt;}
.y131{bottom:147.666412pt;}
.y9c{bottom:153.838517pt;}
.ybc{bottom:156.114545pt;}
.y69{bottom:157.098940pt;}
.y45{bottom:158.635412pt;}
.y1a{bottom:161.489579pt;}
.ydd{bottom:163.500000pt;}
.y107{bottom:163.624333pt;}
.y130{bottom:163.624747pt;}
.y9b{bottom:170.635397pt;}
.ybb{bottom:172.916633pt;}
.y68{bottom:173.901028pt;}
.y44{bottom:175.437500pt;}
.y19{bottom:178.291667pt;}
.ydc{bottom:179.458333pt;}
.y106{bottom:179.587875pt;}
.y12f{bottom:179.588292pt;}
.y9a{bottom:187.437485pt;}
.yba{bottom:189.713513pt;}
.y67{bottom:190.697908pt;}
.y112{bottom:192.677333pt;}
.ydb{bottom:195.416661pt;}
.y105{bottom:195.546200pt;}
.y12e{bottom:195.546572pt;}
.y43{bottom:202.687500pt;}
.y18{bottom:205.536459pt;}
.yb9{bottom:206.515601pt;}
.y66{bottom:207.499996pt;}
.yda{bottom:211.380206pt;}
.y104{bottom:211.504535pt;}
.y12d{bottom:211.504908pt;}
.y99{bottom:216.234365pt;}
.yb8{bottom:223.317689pt;}
.y65{bottom:224.302040pt;}
.yd9{bottom:227.338541pt;}
.y103{bottom:227.468080pt;}
.y12c{bottom:227.468453pt;}
.y98{bottom:233.036453pt;}
.y64{bottom:241.098920pt;}
.yd8{bottom:243.296875pt;}
.y102{bottom:243.426415pt;}
.y12b{bottom:243.426788pt;}
.y97{bottom:249.838532pt;}
.yb7{bottom:252.114569pt;}
.y42{bottom:252.114579pt;}
.y17{bottom:254.968749pt;}
.y63{bottom:257.901008pt;}
.yd7{bottom:259.255204pt;}
.y101{bottom:259.384751pt;}
.y12a{bottom:259.385123pt;}
.y96{bottom:266.635412pt;}
.y41{bottom:268.916633pt;}
.yb6{bottom:268.916657pt;}
.y62{bottom:274.697888pt;}
.yd6{bottom:275.218749pt;}
.y100{bottom:275.348292pt;}
.y129{bottom:275.348669pt;}
.y16{bottom:282.218749pt;}
.y95{bottom:283.437500pt;}
.y40{bottom:285.713513pt;}
.yb5{bottom:285.713537pt;}
.yd5{bottom:291.177070pt;}
.yff{bottom:291.306623pt;}
.y128{bottom:291.307004pt;}
.y61{bottom:291.499976pt;}
.y94{bottom:300.234341pt;}
.y3f{bottom:302.515601pt;}
.yb4{bottom:302.515620pt;}
.yd4{bottom:307.135406pt;}
.yfe{bottom:307.264959pt;}
.y127{bottom:307.265339pt;}
.y60{bottom:308.302064pt;}
.y93{bottom:317.036429pt;}
.y3e{bottom:319.317689pt;}
.yb3{bottom:319.317708pt;}
.yd3{bottom:323.098951pt;}
.yfd{bottom:323.228500pt;}
.y126{bottom:323.228884pt;}
.y5f{bottom:325.098944pt;}
.y15{bottom:331.651013pt;}
.y92{bottom:333.838517pt;}
.y3d{bottom:336.114569pt;}
.yb2{bottom:336.114579pt;}
.yd2{bottom:339.057286pt;}
.yfc{bottom:339.186831pt;}
.y125{bottom:339.187220pt;}
.y5e{bottom:341.901032pt;}
.y14{bottom:348.447893pt;}
.y91{bottom:350.635397pt;}
.y3c{bottom:352.916657pt;}
.yb1{bottom:352.916661pt;}
.yd1{bottom:355.015621pt;}
.yfb{bottom:355.145167pt;}
.y124{bottom:355.145555pt;}
.y5d{bottom:358.697912pt;}
.y13{bottom:365.249981pt;}
.y90{bottom:367.437485pt;}
.y3b{bottom:369.713537pt;}
.yd0{bottom:370.979167pt;}
.yfa{bottom:371.108704pt;}
.y123{bottom:371.109100pt;}
.y5c{bottom:375.500000pt;}
.y12{bottom:382.046861pt;}
.y8f{bottom:384.234365pt;}
.yb0{bottom:386.515620pt;}
.y3a{bottom:386.515625pt;}
.ycf{bottom:386.937498pt;}
.yf9{bottom:387.067039pt;}
.y122{bottom:387.067435pt;}
.y11{bottom:398.848949pt;}
.y8e{bottom:401.036453pt;}
.yce{bottom:402.895833pt;}
.yf8{bottom:403.025375pt;}
.y121{bottom:403.025771pt;}
.y5b{bottom:403.255208pt;}
.y39{bottom:403.317680pt;}
.yaf{bottom:403.317708pt;}
.y10{bottom:415.651037pt;}
.y8d{bottom:417.838523pt;}
.ycd{bottom:418.859375pt;}
.y120{bottom:418.984106pt;}
.yf7{bottom:418.988906pt;}
.y71{bottom:419.401040pt;}
.yae{bottom:420.114555pt;}
.y38{bottom:420.114560pt;}
.yf{bottom:432.447917pt;}
.y70{bottom:434.338540pt;}
.y8c{bottom:434.635403pt;}
.ycc{bottom:434.817702pt;}
.yf6{bottom:434.947241pt;}
.y11f{bottom:434.947651pt;}
.yad{bottom:436.916643pt;}
.y37{bottom:436.916648pt;}
.y5a{bottom:443.109365pt;}
.y6f{bottom:449.270836pt;}
.ycb{bottom:450.776037pt;}
.yf5{bottom:450.905576pt;}
.y11e{bottom:450.905986pt;}
.yac{bottom:453.713523pt;}
.y36{bottom:453.713528pt;}
.ye{bottom:459.697917pt;}
.y59{bottom:459.906245pt;}
.y8b{bottom:463.437491pt;}
.yca{bottom:466.739582pt;}
.y11d{bottom:466.864322pt;}
.yf4{bottom:466.869121pt;}
.y72{bottom:467.203125pt;}
.y6e{bottom:468.203125pt;}
.yab{bottom:470.515611pt;}
.y35{bottom:470.515616pt;}
.y58{bottom:476.708324pt;}
.y8a{bottom:480.234371pt;}
.yc9{bottom:482.697917pt;}
.yf3{bottom:482.827457pt;}
.y11c{bottom:482.827867pt;}
.yaa{bottom:487.317699pt;}
.y34{bottom:487.317704pt;}
.y57{bottom:493.510412pt;}
.y89{bottom:497.036429pt;}
.yf2{bottom:498.785792pt;}
.y11b{bottom:498.786202pt;}
.y33{bottom:504.114564pt;}
.ya9{bottom:504.114579pt;}
.y56{bottom:510.307272pt;}
.y88{bottom:513.838517pt;}
.yf1{bottom:514.744121pt;}
.y11a{bottom:514.744537pt;}
.yc8{bottom:516.036459pt;}
.y32{bottom:520.916652pt;}
.yd{bottom:521.119781pt;}
.y55{bottom:527.109360pt;}
.y87{bottom:530.635397pt;}
.yf0{bottom:530.707667pt;}
.y119{bottom:530.708083pt;}
.ya8{bottom:532.916657pt;}
.yc{bottom:536.052071pt;}
.y31{bottom:537.713532pt;}
.y54{bottom:543.906240pt;}
.yef{bottom:546.665998pt;}
.y118{bottom:546.666416pt;}
.y86{bottom:547.437485pt;}
.ya7{bottom:549.713537pt;}
.y30{bottom:554.515620pt;}
.yb{bottom:554.984367pt;}
.y53{bottom:560.708328pt;}
.yee{bottom:562.624333pt;}
.y117{bottom:562.624739pt;}
.yc7{bottom:563.770833pt;}
.y85{bottom:564.234365pt;}
.ya6{bottom:566.515596pt;}
.y2f{bottom:571.317699pt;}
.ya{bottom:573.921871pt;}
.y52{bottom:577.510416pt;}
.yed{bottom:578.587875pt;}
.y116{bottom:578.588284pt;}
.y84{bottom:581.036453pt;}
.ya5{bottom:583.317684pt;}
.y2e{bottom:588.114579pt;}
.yc6{bottom:589.322917pt;}
.y9{bottom:592.854167pt;}
.yec{bottom:594.546188pt;}
.y115{bottom:594.546620pt;}
.y83{bottom:597.838536pt;}
.ya4{bottom:600.114564pt;}
.y51{bottom:605.265625pt;}
.yeb{bottom:610.504523pt;}
.y114{bottom:610.504955pt;}
.y82{bottom:614.635412pt;}
.ya3{bottom:616.916652pt;}
.y2d{bottom:616.916661pt;}
.yea{bottom:626.468068pt;}
.y113{bottom:626.468500pt;}
.y81{bottom:631.437495pt;}
.ya2{bottom:633.713532pt;}
.y2c{bottom:633.713537pt;}
.y50{bottom:634.687500pt;}
.y8{bottom:637.526046pt;}
.yc5{bottom:638.755195pt;}
.ye9{bottom:642.426404pt;}
.y80{bottom:648.234371pt;}
.y7{bottom:649.281251pt;}
.y2b{bottom:650.515620pt;}
.yc4{bottom:655.557283pt;}
.ye8{bottom:658.384739pt;}
.y7f{bottom:665.036453pt;}
.ya1{bottom:667.317665pt;}
.y2a{bottom:667.317704pt;}
.y6{bottom:667.911459pt;}
.y1d{bottom:671.911459pt;}
.yc3{bottom:672.354163pt;}
.ye7{bottom:674.348284pt;}
.y7e{bottom:681.838517pt;}
.y4f{bottom:684.114545pt;}
.y29{bottom:684.114579pt;}
.yc2{bottom:689.156251pt;}
.ye6{bottom:690.306620pt;}
.y7d{bottom:698.635397pt;}
.y78{bottom:700.239416pt;}
.y4e{bottom:700.916633pt;}
.y28{bottom:700.916657pt;}
.y5{bottom:705.520828pt;}
.ye5{bottom:706.264955pt;}
.y7c{bottom:715.437485pt;}
.yc1{bottom:716.406251pt;}
.y4d{bottom:717.713513pt;}
.y27{bottom:717.713537pt;}
.ye4{bottom:722.228500pt;}
.y77{bottom:727.489416pt;}
.y7b{bottom:732.234365pt;}
.y4c{bottom:734.515601pt;}
.y26{bottom:734.515616pt;}
.y4{bottom:738.906251pt;}
.y7a{bottom:749.036453pt;}
.y4b{bottom:751.317689pt;}
.y25{bottom:751.317704pt;}
.yc0{bottom:765.838536pt;}
.y79{bottom:765.838541pt;}
.y24{bottom:768.114569pt;}
.ybf{bottom:782.635416pt;}
.y23{bottom:784.916657pt;}
.y3{bottom:799.447917pt;}
.y22{bottom:801.713537pt;}
.ybe{bottom:809.885416pt;}
.y21{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y4a{bottom:866.427084pt;}
.h9{height:24.932359pt;}
.h11{height:28.438367pt;}
.h8{height:28.687500pt;}
.h5{height:30.123276pt;}
.he{height:31.659632pt;}
.h1{height:33.467583pt;}
.h6{height:33.467629pt;}
.h4{height:38.251167pt;}
.h18{height:40.881088pt;}
.h1c{height:40.881135pt;}
.h19{height:40.881143pt;}
.h1b{height:40.881168pt;}
.h1e{height:40.881300pt;}
.hf{height:41.596640pt;}
.h2{height:43.031250pt;}
.ha{height:43.031309pt;}
.h15{height:43.031325pt;}
.hb{height:43.031330pt;}
.h13{height:43.031346pt;}
.hc{height:43.031362pt;}
.h14{height:43.031367pt;}
.hd{height:43.031383pt;}
.h17{height:43.031405pt;}
.h16{height:43.031421pt;}
.h10{height:43.031426pt;}
.h7{height:46.616020pt;}
.h3{height:60.962105pt;}
.h1d{height:638.401333pt;}
.h1a{height:734.161333pt;}
.h12{height:748.682667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xc{left:10.297416pt;}
.xd{left:40.000541pt;}
.x3{left:69.921875pt;}
.x8{left:76.921875pt;}
.xa{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xb{left:109.921874pt;}
.x7{left:119.312500pt;}
.x9{left:122.921875pt;}
.x1{left:124.718749pt;}
.x6{left:140.921875pt;}
.x2{left:288.312500pt;}
}




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