
    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_0458943deff40e120917275d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_f8e6e2778c2f8de0b02161a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916000;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_0b657547f54baa2346b2d07f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_43831d527dbe1854657529ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_5dd823dc9e9bd11e2dae2dc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_b8ab216565b8c80603ff366e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_594a6843feddab9e0968e152.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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_20dc038fe42de0af4af85c95.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900391;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_a30db10d22d311c03c4a7eff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_33f671a3369bc5ff9467511f.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.977000px;}
.v1{vertical-align:30.969000px;}
.ls9{letter-spacing:-1.248000px;}
.ls6{letter-spacing:-1.176000px;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.ls2{letter-spacing:1.160400px;}
.ls3{letter-spacing:1.176000px;}
.ls8{letter-spacing:1.248000px;}
.lsa{letter-spacing:3.660600px;}
.ls1{letter-spacing:4.745400px;}
.ls4{letter-spacing:73.200000px;}
.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;}
}
.ws29{word-spacing:-15.600000px;}
.ws57{word-spacing:-15.000000px;}
.ws50{word-spacing:-14.100000px;}
.ws2{word-spacing:-13.524000px;}
.ws4{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.676000px;}
.ws1{word-spacing:-10.056750px;}
.ws3{word-spacing:-6.996000px;}
.ws59{word-spacing:-6.993600px;}
.ws2b{word-spacing:-6.240000px;}
.ws5b{word-spacing:-4.794000px;}
.ws55{word-spacing:-4.286400px;}
.ws63{word-spacing:-3.660000px;}
.ws27{word-spacing:-3.432000px;}
.ws25{word-spacing:-2.870400px;}
.ws68{word-spacing:-2.640000px;}
.ws3d{word-spacing:-2.558400px;}
.ws51{word-spacing:-2.308800px;}
.ws7{word-spacing:-2.234400px;}
.ws5a{word-spacing:-2.143200px;}
.ws30{word-spacing:-2.121600px;}
.ws1a{word-spacing:-2.059200px;}
.ws11{word-spacing:-1.934400px;}
.ws6{word-spacing:-1.881600px;}
.ws58{word-spacing:-1.804800px;}
.ws54{word-spacing:-1.747200px;}
.ws1c{word-spacing:-1.684800px;}
.ws3e{word-spacing:-1.560000px;}
.ws5c{word-spacing:-1.466400px;}
.ws37{word-spacing:-1.380000px;}
.ws24{word-spacing:-1.248000px;}
.ws32{word-spacing:-1.200000px;}
.ws38{word-spacing:-1.185600px;}
.ws9{word-spacing:-1.176000px;}
.ws66{word-spacing:-1.140000px;}
.ws65{word-spacing:-1.080000px;}
.ws3c{word-spacing:-0.936000px;}
.ws41{word-spacing:-0.900000px;}
.ws52{word-spacing:-0.873600px;}
.ws2a{word-spacing:-0.686400px;}
.ws22{word-spacing:-0.624000px;}
.wsd{word-spacing:-0.561600px;}
.ws19{word-spacing:-0.436800px;}
.ws14{word-spacing:-0.374400px;}
.ws43{word-spacing:-0.120000px;}
.ws5{word-spacing:0.000000px;}
.ws23{word-spacing:0.124800px;}
.ws48{word-spacing:0.187200px;}
.ws2c{word-spacing:0.312000px;}
.ws47{word-spacing:0.436800px;}
.ws4b{word-spacing:0.499200px;}
.wsa{word-spacing:0.720000px;}
.ws49{word-spacing:0.780000px;}
.wsb{word-spacing:0.873600px;}
.ws44{word-spacing:0.900000px;}
.ws46{word-spacing:1.020000px;}
.ws42{word-spacing:1.060800px;}
.ws4f{word-spacing:1.123200px;}
.ws39{word-spacing:1.140000px;}
.ws8{word-spacing:1.176000px;}
.ws1b{word-spacing:1.185600px;}
.ws2d{word-spacing:1.248000px;}
.ws10{word-spacing:1.372800px;}
.ws60{word-spacing:1.380000px;}
.ws33{word-spacing:1.435200px;}
.ws31{word-spacing:1.500000px;}
.ws36{word-spacing:1.560000px;}
.wsc{word-spacing:1.622400px;}
.ws18{word-spacing:1.747200px;}
.ws5d{word-spacing:1.804800px;}
.ws53{word-spacing:1.809600px;}
.ws15{word-spacing:1.996800px;}
.ws12{word-spacing:2.121600px;}
.ws4d{word-spacing:2.160000px;}
.ws1f{word-spacing:2.246400px;}
.ws17{word-spacing:2.308800px;}
.ws16{word-spacing:2.371200px;}
.ws3a{word-spacing:2.558400px;}
.ws20{word-spacing:2.620800px;}
.ws4e{word-spacing:2.683200px;}
.ws1e{word-spacing:2.808000px;}
.ws3b{word-spacing:2.880000px;}
.ws1d{word-spacing:2.995200px;}
.ws45{word-spacing:3.120000px;}
.wse{word-spacing:3.307200px;}
.ws2f{word-spacing:3.868800px;}
.ws64{word-spacing:3.900000px;}
.ws21{word-spacing:4.118400px;}
.ws3f{word-spacing:4.200000px;}
.ws34{word-spacing:4.380000px;}
.ws4c{word-spacing:4.620000px;}
.ws4a{word-spacing:5.160000px;}
.ws5e{word-spacing:5.414400px;}
.ws13{word-spacing:5.803200px;}
.wsf{word-spacing:6.115200px;}
.ws40{word-spacing:6.120000px;}
.ws35{word-spacing:6.420000px;}
.ws26{word-spacing:6.427200px;}
.ws2e{word-spacing:6.614400px;}
.ws67{word-spacing:6.660000px;}
.ws62{word-spacing:7.500000px;}
.ws61{word-spacing:8.280000px;}
.ws5f{word-spacing:8.347200px;}
.ws56{word-spacing:10.490400px;}
.ws28{word-spacing:372.736800px;}
._0{margin-left:-2891.338800px;}
._12{margin-left:-15.600000px;}
._2{margin-left:-9.746400px;}
._e{margin-left:-8.304960px;}
._3{margin-left:-6.370500px;}
._1{margin-left:-4.631400px;}
._4{margin-left:-3.282900px;}
._10{margin-left:-2.274720px;}
._5{margin-left:-1.269600px;}
._9{width:1.124160px;}
._a{width:2.722440px;}
._6{width:4.475400px;}
._8{width:5.571720px;}
._7{width:7.432320px;}
._b{width:8.654400px;}
._f{width:10.464960px;}
._19{width:33.948600px;}
._1a{width:53.334600px;}
._c{width:59.184000px;}
._11{width:83.990400px;}
._16{width:144.545400px;}
._17{width:209.448600px;}
._14{width:249.894600px;}
._18{width:251.056200px;}
._15{width:401.364600px;}
._13{width:540.792600px;}
._d{width:1147.098600px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(248,248,248);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fs4{font-size:40.227000px;}
.fs0{font-size:42.000000px;}
.fs5{font-size:46.800000px;}
.fsa{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs2{font-size:54.219000px;}
.fse{font-size:56.400000px;}
.fs6{font-size:58.800000px;}
.fsc{font-size:60.000000px;}
.fs8{font-size:62.400000px;}
.fs3{font-size:69.000000px;}
.fsb{font-size:72.000000px;}
.fs7{font-size:87.000000px;}
.fs1{font-size:93.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:52.648500px;}
.y65{bottom:74.409450px;}
.y2b{bottom:74.409750px;}
.y1e2{bottom:79.005300px;}
.ye4{bottom:79.283100px;}
.y112{bottom:85.977600px;}
.y19f{bottom:87.829350px;}
.yb7{bottom:88.112850px;}
.y16e{bottom:88.812300px;}
.y13f{bottom:91.624050px;}
.y64{bottom:92.673000px;}
.y2a{bottom:92.805750px;}
.y1e1{bottom:95.505300px;}
.ye3{bottom:97.283100px;}
.y29{bottom:103.209750px;}
.y111{bottom:103.977600px;}
.y19e{bottom:104.329350px;}
.yb6{bottom:106.112850px;}
.y16d{bottom:106.812300px;}
.y13e{bottom:109.624050px;}
.y63{bottom:110.936550px;}
.y1e0{bottom:112.005300px;}
.y19d{bottom:120.829350px;}
.y28{bottom:121.605750px;}
.yb5{bottom:124.112850px;}
.y16c{bottom:124.812300px;}
.ye2{bottom:128.039100px;}
.y1df{bottom:128.505300px;}
.y62{bottom:129.200100px;}
.y27{bottom:132.009750px;}
.y110{bottom:134.733600px;}
.y19c{bottom:137.329350px;}
.y13d{bottom:140.379900px;}
.yb4{bottom:142.112850px;}
.y16b{bottom:142.812300px;}
.y1de{bottom:145.005300px;}
.y61{bottom:147.463650px;}
.y26{bottom:150.405750px;}
.y10f{bottom:152.733600px;}
.y19b{bottom:153.829350px;}
.y13c{bottom:158.379900px;}
.ye1{bottom:158.794950px;}
.yb3{bottom:160.112850px;}
.y25{bottom:160.809750px;}
.y16a{bottom:160.812300px;}
.y1dd{bottom:161.505300px;}
.y83{bottom:165.321900px;}
.y19a{bottom:170.329350px;}
.y24{bottom:175.209750px;}
.ye0{bottom:176.794950px;}
.y1dc{bottom:178.005300px;}
.yb2{bottom:178.112850px;}
.y169{bottom:178.812300px;}
.y10e{bottom:183.489450px;}
.y60{bottom:183.585450px;}
.y199{bottom:186.829350px;}
.y13b{bottom:189.135900px;}
.y23{bottom:193.605750px;}
.y1db{bottom:194.505300px;}
.yb1{bottom:196.112850px;}
.y168{bottom:196.812300px;}
.y82{bottom:201.443700px;}
.y10d{bottom:201.489450px;}
.y198{bottom:203.329350px;}
.y13a{bottom:207.135900px;}
.y1da{bottom:211.005300px;}
.ydf{bottom:212.794950px;}
.yb0{bottom:214.112850px;}
.y167{bottom:214.812300px;}
.y81{bottom:219.707250px;}
.y197{bottom:219.829350px;}
.y1d9{bottom:227.505300px;}
.yde{bottom:230.794950px;}
.yaf{bottom:232.112850px;}
.y166{bottom:232.812300px;}
.y196{bottom:236.329350px;}
.y10c{bottom:237.489450px;}
.y5f{bottom:237.565500px;}
.y139{bottom:237.891750px;}
.y80{bottom:237.970800px;}
.y22{bottom:243.275550px;}
.y1d8{bottom:244.005300px;}
.ydd{bottom:248.794950px;}
.y165{bottom:250.812300px;}
.y195{bottom:252.829350px;}
.y10b{bottom:255.489450px;}
.y5e{bottom:255.829050px;}
.y138{bottom:255.891750px;}
.y7f{bottom:256.234200px;}
.y1d7{bottom:260.505300px;}
.y21{bottom:261.275550px;}
.ydc{bottom:266.794950px;}
.yae{bottom:267.971100px;}
.y164{bottom:268.812300px;}
.y194{bottom:269.329350px;}
.y10a{bottom:273.489450px;}
.y5d{bottom:274.092450px;}
.y1d6{bottom:277.005300px;}
.y20{bottom:279.275550px;}
.ydb{bottom:284.794950px;}
.y137{bottom:286.647600px;}
.y163{bottom:286.812300px;}
.y109{bottom:291.489450px;}
.y7e{bottom:292.356150px;}
.y1d5{bottom:293.505300px;}
.y193{bottom:303.687600px;}
.yad{bottom:303.829350px;}
.y136{bottom:304.647600px;}
.y162{bottom:304.812300px;}
.y1d4{bottom:310.005300px;}
.y5c{bottom:310.214400px;}
.y1f{bottom:315.133800px;}
.yda{bottom:320.794950px;}
.yac{bottom:321.829350px;}
.y135{bottom:322.647600px;}
.y161{bottom:322.812300px;}
.y1d3{bottom:326.505300px;}
.y108{bottom:327.489450px;}
.y7d{bottom:328.477800px;}
.yd9{bottom:338.794950px;}
.yab{bottom:339.829350px;}
.y1d2{bottom:343.005300px;}
.y107{bottom:345.489450px;}
.y7c{bottom:346.741350px;}
.y1e{bottom:350.992200px;}
.yd8{bottom:356.794950px;}
.y192{bottom:357.404100px;}
.yaa{bottom:357.829350px;}
.y134{bottom:358.505850px;}
.y160{bottom:358.670550px;}
.y1d1{bottom:359.505300px;}
.y106{bottom:363.489450px;}
.y5b{bottom:364.194450px;}
.y7b{bottom:365.004900px;}
.yd7{bottom:374.794950px;}
.y191{bottom:375.404100px;}
.ya9{bottom:375.829350px;}
.y1d0{bottom:376.005300px;}
.y5a{bottom:382.457850px;}
.y1cf{bottom:392.505300px;}
.y190{bottom:393.404100px;}
.y105{bottom:399.347700px;}
.y59{bottom:400.721400px;}
.y1d{bottom:400.999950px;}
.y7a{bottom:401.532000px;}
.y133{bottom:402.017700px;}
.y1ce{bottom:409.005300px;}
.yd6{bottom:410.653200px;}
.y18f{bottom:411.404100px;}
.ya8{bottom:411.687600px;}
.y15f{bottom:412.387050px;}
.y1c{bottom:417.499950px;}
.y58{bottom:418.984950px;}
.y79{bottom:419.795400px;}
.y132{bottom:420.017700px;}
.y1cd{bottom:425.505150px;}
.y18e{bottom:429.404100px;}
.y15e{bottom:430.387050px;}
.y57{bottom:437.248500px;}
.y78{bottom:438.058950px;}
.y1cc{bottom:442.005150px;}
.yd5{bottom:446.511450px;}
.y18d{bottom:447.404100px;}
.ya7{bottom:447.545850px;}
.y15d{bottom:448.387050px;}
.y1b{bottom:448.999950px;}
.y131{bottom:450.773550px;}
.y104{bottom:453.205950px;}
.y56{bottom:455.512050px;}
.y77{bottom:456.322500px;}
.y1cb{bottom:458.505150px;}
.y18c{bottom:465.404100px;}
.ya6{bottom:465.545850px;}
.y130{bottom:468.773550px;}
.y103{bottom:471.205950px;}
.y55{bottom:473.775450px;}
.y76{bottom:474.586050px;}
.y1ca{bottom:475.005150px;}
.y18b{bottom:483.404100px;}
.ya5{bottom:483.545850px;}
.y15c{bottom:484.387050px;}
.y102{bottom:489.205950px;}
.y1c9{bottom:491.505150px;}
.y54{bottom:492.039000px;}
.y75{bottom:492.849600px;}
.y1a{bottom:495.499950px;}
.y12f{bottom:499.529550px;}
.yd4{bottom:500.228100px;}
.y18a{bottom:501.404100px;}
.ya4{bottom:501.545850px;}
.y15b{bottom:502.387050px;}
.y1c8{bottom:508.005150px;}
.y53{bottom:510.302550px;}
.y74{bottom:511.113150px;}
.y19{bottom:511.999950px;}
.y12e{bottom:517.529550px;}
.yd3{bottom:518.228100px;}
.y189{bottom:519.404100px;}
.ya3{bottom:519.545850px;}
.y15a{bottom:520.387050px;}
.y1c7{bottom:524.505150px;}
.y101{bottom:525.205950px;}
.y18{bottom:528.499950px;}
.y52{bottom:528.566100px;}
.y12d{bottom:535.529550px;}
.yd2{bottom:536.228100px;}
.y188{bottom:537.404100px;}
.ya2{bottom:537.545850px;}
.y159{bottom:538.387050px;}
.y1c6{bottom:541.005150px;}
.y100{bottom:543.205950px;}
.y17{bottom:544.999950px;}
.y51{bottom:546.829650px;}
.y73{bottom:547.640100px;}
.yd1{bottom:554.228100px;}
.y187{bottom:555.404100px;}
.ya1{bottom:555.545850px;}
.y158{bottom:556.387050px;}
.y1c5{bottom:557.505150px;}
.yff{bottom:561.205950px;}
.y16{bottom:561.499950px;}
.y50{bottom:565.093200px;}
.y12c{bottom:566.285400px;}
.yd0{bottom:572.228100px;}
.y186{bottom:573.404100px;}
.ya0{bottom:573.545850px;}
.y1c4{bottom:574.005150px;}
.y157{bottom:574.387050px;}
.y15{bottom:577.999950px;}
.yfe{bottom:579.205950px;}
.y4f{bottom:583.356600px;}
.y72{bottom:583.761900px;}
.y12b{bottom:584.285400px;}
.ycf{bottom:590.228100px;}
.y1c3{bottom:590.505150px;}
.y185{bottom:591.404100px;}
.y9f{bottom:591.545850px;}
.y156{bottom:592.387050px;}
.y14{bottom:594.499950px;}
.yfd{bottom:597.205950px;}
.y4e{bottom:601.620150px;}
.y1c2{bottom:607.005150px;}
.yce{bottom:608.228100px;}
.y184{bottom:609.404100px;}
.y9e{bottom:609.545850px;}
.y13{bottom:610.999950px;}
.yfc{bottom:615.205950px;}
.y4d{bottom:619.883700px;}
.y12a{bottom:620.285400px;}
.y1c1{bottom:623.505150px;}
.ycd{bottom:626.228100px;}
.y183{bottom:627.404100px;}
.y12{bottom:627.499950px;}
.y9d{bottom:627.545850px;}
.y155{bottom:628.387050px;}
.yfb{bottom:633.205950px;}
.y4c{bottom:638.147250px;}
.y129{bottom:638.285400px;}
.y1c0{bottom:640.005150px;}
.y182{bottom:645.404100px;}
.y9c{bottom:645.545850px;}
.y154{bottom:646.387050px;}
.yfa{bottom:651.205950px;}
.y128{bottom:656.285400px;}
.y4b{bottom:656.410800px;}
.y1bf{bottom:656.505150px;}
.y11{bottom:658.999950px;}
.ycc{bottom:662.086350px;}
.y181{bottom:663.404100px;}
.y9b{bottom:663.545850px;}
.y153{bottom:664.387050px;}
.yf9{bottom:669.205950px;}
.y1be{bottom:673.005150px;}
.y127{bottom:674.285400px;}
.y4a{bottom:674.674350px;}
.y180{bottom:681.404100px;}
.y152{bottom:682.387050px;}
.y10{bottom:685.099950px;}
.yf8{bottom:687.205950px;}
.y1bd{bottom:689.505150px;}
.y126{bottom:692.285400px;}
.y49{bottom:692.937900px;}
.y9a{bottom:699.404100px;}
.y1bc{bottom:706.005150px;}
.y125{bottom:710.285400px;}
.y48{bottom:711.201300px;}
.ycb{bottom:714.429750px;}
.y17f{bottom:717.404100px;}
.y151{bottom:718.245300px;}
.y1bb{bottom:722.505150px;}
.yf7{bottom:723.205950px;}
.y47{bottom:729.464850px;}
.yca{bottom:732.429750px;}
.y99{bottom:735.262350px;}
.y1ba{bottom:739.005150px;}
.yf{bottom:741.199950px;}
.yf6{bottom:741.205950px;}
.y124{bottom:746.285400px;}
.y46{bottom:747.728400px;}
.yc9{bottom:750.294000px;}
.y98{bottom:753.262350px;}
.y1b9{bottom:755.505150px;}
.ye{bottom:757.699950px;}
.y123{bottom:764.285400px;}
.y45{bottom:765.991950px;}
.y150{bottom:766.859550px;}
.yc8{bottom:768.294000px;}
.y97{bottom:771.262350px;}
.y1b8{bottom:772.005300px;}
.yd{bottom:774.199950px;}
.yf5{bottom:777.205950px;}
.y44{bottom:784.255500px;}
.y14f{bottom:784.859550px;}
.yc7{bottom:786.158400px;}
.y1b7{bottom:788.505300px;}
.y96{bottom:789.262350px;}
.yc{bottom:790.699950px;}
.y122{bottom:795.041400px;}
.yf4{bottom:795.205950px;}
.y43{bottom:802.518900px;}
.y14e{bottom:802.859550px;}
.yc6{bottom:804.158400px;}
.y1b6{bottom:805.005300px;}
.y17e{bottom:806.979000px;}
.yb{bottom:807.199950px;}
.y95{bottom:807.262350px;}
.y121{bottom:813.041400px;}
.yf3{bottom:813.205950px;}
.y71{bottom:820.782600px;}
.y1b5{bottom:821.505300px;}
.yc5{bottom:822.158400px;}
.ya{bottom:823.699950px;}
.y17d{bottom:824.979000px;}
.y94{bottom:825.262350px;}
.yf2{bottom:831.205950px;}
.y14d{bottom:833.615550px;}
.y1b4{bottom:838.005300px;}
.y42{bottom:838.640850px;}
.yc4{bottom:840.022650px;}
.y9{bottom:840.199950px;}
.y17c{bottom:842.979000px;}
.y93{bottom:843.262350px;}
.y120{bottom:843.797250px;}
.yf1{bottom:849.205950px;}
.y14c{bottom:851.615550px;}
.y1b3{bottom:854.505300px;}
.y8{bottom:856.699950px;}
.y70{bottom:857.309550px;}
.yc3{bottom:858.022650px;}
.y17b{bottom:860.979000px;}
.y92{bottom:861.262350px;}
.y11f{bottom:861.797250px;}
.yf0{bottom:867.205950px;}
.y14b{bottom:869.615550px;}
.y1b2{bottom:871.005300px;}
.y7{bottom:873.199950px;}
.y41{bottom:874.762500px;}
.y6f{bottom:875.573100px;}
.yc2{bottom:875.886900px;}
.y17a{bottom:878.979000px;}
.y91{bottom:879.262350px;}
.y1b1{bottom:887.505300px;}
.y14a{bottom:887.615550px;}
.y6{bottom:889.699950px;}
.y40{bottom:893.026050px;}
.y6e{bottom:893.836650px;}
.yc1{bottom:893.886900px;}
.y179{bottom:896.979000px;}
.y90{bottom:897.262350px;}
.y11e{bottom:897.655500px;}
.yef{bottom:903.205950px;}
.y1b0{bottom:904.005300px;}
.y3f{bottom:911.289600px;}
.yc0{bottom:911.751300px;}
.y6d{bottom:912.100200px;}
.y178{bottom:914.979000px;}
.y8f{bottom:915.262350px;}
.y149{bottom:918.371400px;}
.y1af{bottom:920.505300px;}
.y5{bottom:921.199950px;}
.yee{bottom:921.205950px;}
.y3e{bottom:929.553150px;}
.ybf{bottom:929.751300px;}
.y6c{bottom:930.363600px;}
.y177{bottom:932.979000px;}
.y8e{bottom:933.262350px;}
.y11d{bottom:933.513750px;}
.y148{bottom:936.371400px;}
.y1ae{bottom:937.005300px;}
.yed{bottom:939.205950px;}
.ybe{bottom:947.751300px;}
.y3d{bottom:947.816550px;}
.y176{bottom:950.979000px;}
.y8d{bottom:951.262350px;}
.y1ad{bottom:953.505300px;}
.y147{bottom:954.371400px;}
.yec{bottom:957.205950px;}
.y4{bottom:964.711800px;}
.ybd{bottom:965.615550px;}
.y3c{bottom:966.080250px;}
.y6b{bottom:966.890700px;}
.y175{bottom:968.979000px;}
.y8c{bottom:969.262350px;}
.y11c{bottom:969.372000px;}
.y1ac{bottom:970.005300px;}
.ybc{bottom:983.615550px;}
.y3b{bottom:984.343650px;}
.y146{bottom:985.127250px;}
.y6a{bottom:985.154250px;}
.y1ab{bottom:986.505300px;}
.y174{bottom:986.979000px;}
.y8b{bottom:987.262350px;}
.y11b{bottom:987.372000px;}
.yeb{bottom:993.064200px;}
.y3{bottom:997.711800px;}
.ybb{bottom:1001.479800px;}
.y1ec{bottom:1002.394950px;}
.y3a{bottom:1002.607200px;}
.y1aa{bottom:1003.005300px;}
.y145{bottom:1003.127250px;}
.y69{bottom:1003.417800px;}
.y173{bottom:1004.979000px;}
.y8a{bottom:1005.262350px;}
.y11a{bottom:1005.372000px;}
.y1eb{bottom:1018.894950px;}
.yba{bottom:1019.479800px;}
.y1a9{bottom:1019.505300px;}
.y39{bottom:1020.870750px;}
.y68{bottom:1021.681200px;}
.y172{bottom:1022.979000px;}
.y89{bottom:1023.262350px;}
.y119{bottom:1023.372000px;}
.y2{bottom:1025.611650px;}
.yea{bottom:1028.922600px;}
.y144{bottom:1033.883100px;}
.y1ea{bottom:1035.394950px;}
.y1a8{bottom:1036.005300px;}
.y38{bottom:1039.134300px;}
.yb9{bottom:1040.739600px;}
.y171{bottom:1040.979000px;}
.y118{bottom:1041.372000px;}
.ye9{bottom:1046.922600px;}
.y143{bottom:1051.883100px;}
.y1e9{bottom:1051.894950px;}
.y1a7{bottom:1052.505300px;}
.y37{bottom:1057.397850px;}
.y67{bottom:1057.803000px;}
.y170{bottom:1058.979000px;}
.y88{bottom:1059.120600px;}
.y117{bottom:1059.372000px;}
.yb8{bottom:1064.979000px;}
.y1e8{bottom:1068.394950px;}
.y2f{bottom:1068.849000px;}
.y1a6{bottom:1069.005300px;}
.y36{bottom:1075.661250px;}
.y16f{bottom:1076.979000px;}
.y142{bottom:1082.639100px;}
.ye8{bottom:1082.780850px;}
.y1e7{bottom:1084.894950px;}
.y1a5{bottom:1085.505300px;}
.y35{bottom:1093.924800px;}
.y87{bottom:1094.979000px;}
.y116{bottom:1095.372000px;}
.y141{bottom:1100.639100px;}
.y1e6{bottom:1101.394950px;}
.y1a4{bottom:1102.005300px;}
.y2e{bottom:1104.849000px;}
.y34{bottom:1112.188350px;}
.y86{bottom:1112.979000px;}
.y115{bottom:1113.372000px;}
.y1e5{bottom:1117.894950px;}
.y1a3{bottom:1118.505300px;}
.ye7{bottom:1118.639100px;}
.y2d{bottom:1122.849000px;}
.y33{bottom:1130.451900px;}
.y85{bottom:1130.979000px;}
.y114{bottom:1131.372000px;}
.y1e4{bottom:1134.394950px;}
.y1a2{bottom:1135.005300px;}
.ye6{bottom:1136.639100px;}
.y32{bottom:1148.715450px;}
.y84{bottom:1148.979000px;}
.y140{bottom:1149.394950px;}
.y1e3{bottom:1150.894950px;}
.y1a1{bottom:1151.505300px;}
.y2c{bottom:1164.480000px;}
.y31{bottom:1166.979000px;}
.y113{bottom:1167.230400px;}
.ye5{bottom:1167.394950px;}
.y1a0{bottom:1168.005300px;}
.y66{bottom:1206.323400px;}
.y30{bottom:1206.323550px;}
.hc{height:26.133188px;}
.h2{height:38.724000px;}
.h5{height:41.064258px;}
.hd{height:42.117188px;}
.h10{height:42.717188px;}
.hf{height:44.256000px;}
.h12{height:47.381836px;}
.h15{height:49.487695px;}
.h16{height:49.625391px;}
.h7{height:51.593555px;}
.h9{height:51.737109px;}
.h6{height:52.225195px;}
.h11{height:52.646484px;}
.h17{height:52.792969px;}
.hb{height:54.752344px;}
.h13{height:54.904688px;}
.ha{height:55.422656px;}
.h4{height:60.543457px;}
.h14{height:63.175781px;}
.he{height:66.384000px;}
.h8{height:76.337402px;}
.h3{height:81.602051px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x9{left:90.255300px;}
.x5{left:96.378000px;}
.x3{left:106.339350px;}
.x6{left:139.039350px;}
.x8{left:178.318950px;}
.x7{left:310.991550px;}
.xa{left:332.617650px;}
.xb{left:543.550800px;}
.x4{left:730.624350px;}
.x1{left:790.360050px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.424000pt;}
.v1{vertical-align:27.528000pt;}
.ls9{letter-spacing:-1.109333pt;}
.ls6{letter-spacing:-1.045333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.ls2{letter-spacing:1.031467pt;}
.ls3{letter-spacing:1.045333pt;}
.ls8{letter-spacing:1.109333pt;}
.lsa{letter-spacing:3.253867pt;}
.ls1{letter-spacing:4.218133pt;}
.ls4{letter-spacing:65.066667pt;}
.ws29{word-spacing:-13.866667pt;}
.ws57{word-spacing:-13.333333pt;}
.ws50{word-spacing:-12.533333pt;}
.ws2{word-spacing:-12.021333pt;}
.ws4{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.378667pt;}
.ws1{word-spacing:-8.939333pt;}
.ws3{word-spacing:-6.218667pt;}
.ws59{word-spacing:-6.216533pt;}
.ws2b{word-spacing:-5.546667pt;}
.ws5b{word-spacing:-4.261333pt;}
.ws55{word-spacing:-3.810133pt;}
.ws63{word-spacing:-3.253333pt;}
.ws27{word-spacing:-3.050667pt;}
.ws25{word-spacing:-2.551467pt;}
.ws68{word-spacing:-2.346667pt;}
.ws3d{word-spacing:-2.274133pt;}
.ws51{word-spacing:-2.052267pt;}
.ws7{word-spacing:-1.986133pt;}
.ws5a{word-spacing:-1.905067pt;}
.ws30{word-spacing:-1.885867pt;}
.ws1a{word-spacing:-1.830400pt;}
.ws11{word-spacing:-1.719467pt;}
.ws6{word-spacing:-1.672533pt;}
.ws58{word-spacing:-1.604267pt;}
.ws54{word-spacing:-1.553067pt;}
.ws1c{word-spacing:-1.497600pt;}
.ws3e{word-spacing:-1.386667pt;}
.ws5c{word-spacing:-1.303467pt;}
.ws37{word-spacing:-1.226667pt;}
.ws24{word-spacing:-1.109333pt;}
.ws32{word-spacing:-1.066667pt;}
.ws38{word-spacing:-1.053867pt;}
.ws9{word-spacing:-1.045333pt;}
.ws66{word-spacing:-1.013333pt;}
.ws65{word-spacing:-0.960000pt;}
.ws3c{word-spacing:-0.832000pt;}
.ws41{word-spacing:-0.800000pt;}
.ws52{word-spacing:-0.776533pt;}
.ws2a{word-spacing:-0.610133pt;}
.ws22{word-spacing:-0.554667pt;}
.wsd{word-spacing:-0.499200pt;}
.ws19{word-spacing:-0.388267pt;}
.ws14{word-spacing:-0.332800pt;}
.ws43{word-spacing:-0.106667pt;}
.ws5{word-spacing:0.000000pt;}
.ws23{word-spacing:0.110933pt;}
.ws48{word-spacing:0.166400pt;}
.ws2c{word-spacing:0.277333pt;}
.ws47{word-spacing:0.388267pt;}
.ws4b{word-spacing:0.443733pt;}
.wsa{word-spacing:0.640000pt;}
.ws49{word-spacing:0.693333pt;}
.wsb{word-spacing:0.776533pt;}
.ws44{word-spacing:0.800000pt;}
.ws46{word-spacing:0.906667pt;}
.ws42{word-spacing:0.942933pt;}
.ws4f{word-spacing:0.998400pt;}
.ws39{word-spacing:1.013333pt;}
.ws8{word-spacing:1.045333pt;}
.ws1b{word-spacing:1.053867pt;}
.ws2d{word-spacing:1.109333pt;}
.ws10{word-spacing:1.220267pt;}
.ws60{word-spacing:1.226667pt;}
.ws33{word-spacing:1.275733pt;}
.ws31{word-spacing:1.333333pt;}
.ws36{word-spacing:1.386667pt;}
.wsc{word-spacing:1.442133pt;}
.ws18{word-spacing:1.553067pt;}
.ws5d{word-spacing:1.604267pt;}
.ws53{word-spacing:1.608533pt;}
.ws15{word-spacing:1.774933pt;}
.ws12{word-spacing:1.885867pt;}
.ws4d{word-spacing:1.920000pt;}
.ws1f{word-spacing:1.996800pt;}
.ws17{word-spacing:2.052267pt;}
.ws16{word-spacing:2.107733pt;}
.ws3a{word-spacing:2.274133pt;}
.ws20{word-spacing:2.329600pt;}
.ws4e{word-spacing:2.385067pt;}
.ws1e{word-spacing:2.496000pt;}
.ws3b{word-spacing:2.560000pt;}
.ws1d{word-spacing:2.662400pt;}
.ws45{word-spacing:2.773333pt;}
.wse{word-spacing:2.939733pt;}
.ws2f{word-spacing:3.438933pt;}
.ws64{word-spacing:3.466667pt;}
.ws21{word-spacing:3.660800pt;}
.ws3f{word-spacing:3.733333pt;}
.ws34{word-spacing:3.893333pt;}
.ws4c{word-spacing:4.106667pt;}
.ws4a{word-spacing:4.586667pt;}
.ws5e{word-spacing:4.812800pt;}
.ws13{word-spacing:5.158400pt;}
.wsf{word-spacing:5.435733pt;}
.ws40{word-spacing:5.440000pt;}
.ws35{word-spacing:5.706667pt;}
.ws26{word-spacing:5.713067pt;}
.ws2e{word-spacing:5.879467pt;}
.ws67{word-spacing:5.920000pt;}
.ws62{word-spacing:6.666667pt;}
.ws61{word-spacing:7.360000pt;}
.ws5f{word-spacing:7.419733pt;}
.ws56{word-spacing:9.324800pt;}
.ws28{word-spacing:331.321600pt;}
._0{margin-left:-2570.078933pt;}
._12{margin-left:-13.866667pt;}
._2{margin-left:-8.663467pt;}
._e{margin-left:-7.382187pt;}
._3{margin-left:-5.662667pt;}
._1{margin-left:-4.116800pt;}
._4{margin-left:-2.918133pt;}
._10{margin-left:-2.021973pt;}
._5{margin-left:-1.128533pt;}
._9{width:0.999253pt;}
._a{width:2.419947pt;}
._6{width:3.978133pt;}
._8{width:4.952640pt;}
._7{width:6.606507pt;}
._b{width:7.692800pt;}
._f{width:9.302187pt;}
._19{width:30.176533pt;}
._1a{width:47.408533pt;}
._c{width:52.608000pt;}
._11{width:74.658133pt;}
._16{width:128.484800pt;}
._17{width:186.176533pt;}
._14{width:222.128533pt;}
._18{width:223.161067pt;}
._15{width:356.768533pt;}
._13{width:480.704533pt;}
._d{width:1019.643200pt;}
.fs9{font-size:24.874667pt;}
.fs4{font-size:35.757333pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:41.600000pt;}
.fsa{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs2{font-size:48.194667pt;}
.fse{font-size:50.133333pt;}
.fs6{font-size:52.266667pt;}
.fsc{font-size:53.333333pt;}
.fs8{font-size:55.466667pt;}
.fs3{font-size:61.333333pt;}
.fsb{font-size:64.000000pt;}
.fs7{font-size:77.333333pt;}
.fs1{font-size:82.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:46.798667pt;}
.y65{bottom:66.141733pt;}
.y2b{bottom:66.142000pt;}
.y1e2{bottom:70.226933pt;}
.ye4{bottom:70.473867pt;}
.y112{bottom:76.424533pt;}
.y19f{bottom:78.070533pt;}
.yb7{bottom:78.322533pt;}
.y16e{bottom:78.944267pt;}
.y13f{bottom:81.443600pt;}
.y64{bottom:82.376000pt;}
.y2a{bottom:82.494000pt;}
.y1e1{bottom:84.893600pt;}
.ye3{bottom:86.473867pt;}
.y29{bottom:91.742000pt;}
.y111{bottom:92.424533pt;}
.y19e{bottom:92.737200pt;}
.yb6{bottom:94.322533pt;}
.y16d{bottom:94.944267pt;}
.y13e{bottom:97.443600pt;}
.y63{bottom:98.610267pt;}
.y1e0{bottom:99.560267pt;}
.y19d{bottom:107.403867pt;}
.y28{bottom:108.094000pt;}
.yb5{bottom:110.322533pt;}
.y16c{bottom:110.944267pt;}
.ye2{bottom:113.812533pt;}
.y1df{bottom:114.226933pt;}
.y62{bottom:114.844533pt;}
.y27{bottom:117.342000pt;}
.y110{bottom:119.763200pt;}
.y19c{bottom:122.070533pt;}
.y13d{bottom:124.782133pt;}
.yb4{bottom:126.322533pt;}
.y16b{bottom:126.944267pt;}
.y1de{bottom:128.893600pt;}
.y61{bottom:131.078800pt;}
.y26{bottom:133.694000pt;}
.y10f{bottom:135.763200pt;}
.y19b{bottom:136.737200pt;}
.y13c{bottom:140.782133pt;}
.ye1{bottom:141.151067pt;}
.yb3{bottom:142.322533pt;}
.y25{bottom:142.942000pt;}
.y16a{bottom:142.944267pt;}
.y1dd{bottom:143.560267pt;}
.y83{bottom:146.952800pt;}
.y19a{bottom:151.403867pt;}
.y24{bottom:155.742000pt;}
.ye0{bottom:157.151067pt;}
.y1dc{bottom:158.226933pt;}
.yb2{bottom:158.322533pt;}
.y169{bottom:158.944267pt;}
.y10e{bottom:163.101733pt;}
.y60{bottom:163.187067pt;}
.y199{bottom:166.070533pt;}
.y13b{bottom:168.120800pt;}
.y23{bottom:172.094000pt;}
.y1db{bottom:172.893600pt;}
.yb1{bottom:174.322533pt;}
.y168{bottom:174.944267pt;}
.y82{bottom:179.061067pt;}
.y10d{bottom:179.101733pt;}
.y198{bottom:180.737200pt;}
.y13a{bottom:184.120800pt;}
.y1da{bottom:187.560267pt;}
.ydf{bottom:189.151067pt;}
.yb0{bottom:190.322533pt;}
.y167{bottom:190.944267pt;}
.y81{bottom:195.295333pt;}
.y197{bottom:195.403867pt;}
.y1d9{bottom:202.226933pt;}
.yde{bottom:205.151067pt;}
.yaf{bottom:206.322533pt;}
.y166{bottom:206.944267pt;}
.y196{bottom:210.070533pt;}
.y10c{bottom:211.101733pt;}
.y5f{bottom:211.169333pt;}
.y139{bottom:211.459333pt;}
.y80{bottom:211.529600pt;}
.y22{bottom:216.244933pt;}
.y1d8{bottom:216.893600pt;}
.ydd{bottom:221.151067pt;}
.y165{bottom:222.944267pt;}
.y195{bottom:224.737200pt;}
.y10b{bottom:227.101733pt;}
.y5e{bottom:227.403600pt;}
.y138{bottom:227.459333pt;}
.y7f{bottom:227.763733pt;}
.y1d7{bottom:231.560267pt;}
.y21{bottom:232.244933pt;}
.ydc{bottom:237.151067pt;}
.yae{bottom:238.196533pt;}
.y164{bottom:238.944267pt;}
.y194{bottom:239.403867pt;}
.y10a{bottom:243.101733pt;}
.y5d{bottom:243.637733pt;}
.y1d6{bottom:246.226933pt;}
.y20{bottom:248.244933pt;}
.ydb{bottom:253.151067pt;}
.y137{bottom:254.797867pt;}
.y163{bottom:254.944267pt;}
.y109{bottom:259.101733pt;}
.y7e{bottom:259.872133pt;}
.y1d5{bottom:260.893600pt;}
.y193{bottom:269.944533pt;}
.yad{bottom:270.070533pt;}
.y136{bottom:270.797867pt;}
.y162{bottom:270.944267pt;}
.y1d4{bottom:275.560267pt;}
.y5c{bottom:275.746133pt;}
.y1f{bottom:280.118933pt;}
.yda{bottom:285.151067pt;}
.yac{bottom:286.070533pt;}
.y135{bottom:286.797867pt;}
.y161{bottom:286.944267pt;}
.y1d3{bottom:290.226933pt;}
.y108{bottom:291.101733pt;}
.y7d{bottom:291.980267pt;}
.yd9{bottom:301.151067pt;}
.yab{bottom:302.070533pt;}
.y1d2{bottom:304.893600pt;}
.y107{bottom:307.101733pt;}
.y7c{bottom:308.214533pt;}
.y1e{bottom:311.993067pt;}
.yd8{bottom:317.151067pt;}
.y192{bottom:317.692533pt;}
.yaa{bottom:318.070533pt;}
.y134{bottom:318.671867pt;}
.y160{bottom:318.818267pt;}
.y1d1{bottom:319.560267pt;}
.y106{bottom:323.101733pt;}
.y5b{bottom:323.728400pt;}
.y7b{bottom:324.448800pt;}
.yd7{bottom:333.151067pt;}
.y191{bottom:333.692533pt;}
.ya9{bottom:334.070533pt;}
.y1d0{bottom:334.226933pt;}
.y5a{bottom:339.962533pt;}
.y1cf{bottom:348.893600pt;}
.y190{bottom:349.692533pt;}
.y105{bottom:354.975733pt;}
.y59{bottom:356.196800pt;}
.y1d{bottom:356.444400pt;}
.y7a{bottom:356.917333pt;}
.y133{bottom:357.349067pt;}
.y1ce{bottom:363.560267pt;}
.yd6{bottom:365.025067pt;}
.y18f{bottom:365.692533pt;}
.ya8{bottom:365.944533pt;}
.y15f{bottom:366.566267pt;}
.y1c{bottom:371.111067pt;}
.y58{bottom:372.431067pt;}
.y79{bottom:373.151467pt;}
.y132{bottom:373.349067pt;}
.y1cd{bottom:378.226800pt;}
.y18e{bottom:381.692533pt;}
.y15e{bottom:382.566267pt;}
.y57{bottom:388.665333pt;}
.y78{bottom:389.385733pt;}
.y1cc{bottom:392.893467pt;}
.yd5{bottom:396.899067pt;}
.y18d{bottom:397.692533pt;}
.ya7{bottom:397.818533pt;}
.y15d{bottom:398.566267pt;}
.y1b{bottom:399.111067pt;}
.y131{bottom:400.687600pt;}
.y104{bottom:402.849733pt;}
.y56{bottom:404.899600pt;}
.y77{bottom:405.620000pt;}
.y1cb{bottom:407.560133pt;}
.y18c{bottom:413.692533pt;}
.ya6{bottom:413.818533pt;}
.y130{bottom:416.687600pt;}
.y103{bottom:418.849733pt;}
.y55{bottom:421.133733pt;}
.y76{bottom:421.854267pt;}
.y1ca{bottom:422.226800pt;}
.y18b{bottom:429.692533pt;}
.ya5{bottom:429.818533pt;}
.y15c{bottom:430.566267pt;}
.y102{bottom:434.849733pt;}
.y1c9{bottom:436.893467pt;}
.y54{bottom:437.368000pt;}
.y75{bottom:438.088533pt;}
.y1a{bottom:440.444400pt;}
.y12f{bottom:444.026267pt;}
.yd4{bottom:444.647200pt;}
.y18a{bottom:445.692533pt;}
.ya4{bottom:445.818533pt;}
.y15b{bottom:446.566267pt;}
.y1c8{bottom:451.560133pt;}
.y53{bottom:453.602267pt;}
.y74{bottom:454.322800pt;}
.y19{bottom:455.111067pt;}
.y12e{bottom:460.026267pt;}
.yd3{bottom:460.647200pt;}
.y189{bottom:461.692533pt;}
.ya3{bottom:461.818533pt;}
.y15a{bottom:462.566267pt;}
.y1c7{bottom:466.226800pt;}
.y101{bottom:466.849733pt;}
.y18{bottom:469.777733pt;}
.y52{bottom:469.836533pt;}
.y12d{bottom:476.026267pt;}
.yd2{bottom:476.647200pt;}
.y188{bottom:477.692533pt;}
.ya2{bottom:477.818533pt;}
.y159{bottom:478.566267pt;}
.y1c6{bottom:480.893467pt;}
.y100{bottom:482.849733pt;}
.y17{bottom:484.444400pt;}
.y51{bottom:486.070800pt;}
.y73{bottom:486.791200pt;}
.yd1{bottom:492.647200pt;}
.y187{bottom:493.692533pt;}
.ya1{bottom:493.818533pt;}
.y158{bottom:494.566267pt;}
.y1c5{bottom:495.560133pt;}
.yff{bottom:498.849733pt;}
.y16{bottom:499.111067pt;}
.y50{bottom:502.305067pt;}
.y12c{bottom:503.364800pt;}
.yd0{bottom:508.647200pt;}
.y186{bottom:509.692533pt;}
.ya0{bottom:509.818533pt;}
.y1c4{bottom:510.226800pt;}
.y157{bottom:510.566267pt;}
.y15{bottom:513.777733pt;}
.yfe{bottom:514.849733pt;}
.y4f{bottom:518.539200pt;}
.y72{bottom:518.899467pt;}
.y12b{bottom:519.364800pt;}
.ycf{bottom:524.647200pt;}
.y1c3{bottom:524.893467pt;}
.y185{bottom:525.692533pt;}
.y9f{bottom:525.818533pt;}
.y156{bottom:526.566267pt;}
.y14{bottom:528.444400pt;}
.yfd{bottom:530.849733pt;}
.y4e{bottom:534.773467pt;}
.y1c2{bottom:539.560133pt;}
.yce{bottom:540.647200pt;}
.y184{bottom:541.692533pt;}
.y9e{bottom:541.818533pt;}
.y13{bottom:543.111067pt;}
.yfc{bottom:546.849733pt;}
.y4d{bottom:551.007733pt;}
.y12a{bottom:551.364800pt;}
.y1c1{bottom:554.226800pt;}
.ycd{bottom:556.647200pt;}
.y183{bottom:557.692533pt;}
.y12{bottom:557.777733pt;}
.y9d{bottom:557.818533pt;}
.y155{bottom:558.566267pt;}
.yfb{bottom:562.849733pt;}
.y4c{bottom:567.242000pt;}
.y129{bottom:567.364800pt;}
.y1c0{bottom:568.893467pt;}
.y182{bottom:573.692533pt;}
.y9c{bottom:573.818533pt;}
.y154{bottom:574.566267pt;}
.yfa{bottom:578.849733pt;}
.y128{bottom:583.364800pt;}
.y4b{bottom:583.476267pt;}
.y1bf{bottom:583.560133pt;}
.y11{bottom:585.777733pt;}
.ycc{bottom:588.521200pt;}
.y181{bottom:589.692533pt;}
.y9b{bottom:589.818533pt;}
.y153{bottom:590.566267pt;}
.yf9{bottom:594.849733pt;}
.y1be{bottom:598.226800pt;}
.y127{bottom:599.364800pt;}
.y4a{bottom:599.710533pt;}
.y180{bottom:605.692533pt;}
.y152{bottom:606.566267pt;}
.y10{bottom:608.977733pt;}
.yf8{bottom:610.849733pt;}
.y1bd{bottom:612.893467pt;}
.y126{bottom:615.364800pt;}
.y49{bottom:615.944800pt;}
.y9a{bottom:621.692533pt;}
.y1bc{bottom:627.560133pt;}
.y125{bottom:631.364800pt;}
.y48{bottom:632.178933pt;}
.ycb{bottom:635.048667pt;}
.y17f{bottom:637.692533pt;}
.y151{bottom:638.440267pt;}
.y1bb{bottom:642.226800pt;}
.yf7{bottom:642.849733pt;}
.y47{bottom:648.413200pt;}
.yca{bottom:651.048667pt;}
.y99{bottom:653.566533pt;}
.y1ba{bottom:656.893467pt;}
.yf{bottom:658.844400pt;}
.yf6{bottom:658.849733pt;}
.y124{bottom:663.364800pt;}
.y46{bottom:664.647467pt;}
.yc9{bottom:666.928000pt;}
.y98{bottom:669.566533pt;}
.y1b9{bottom:671.560133pt;}
.ye{bottom:673.511067pt;}
.y123{bottom:679.364800pt;}
.y45{bottom:680.881733pt;}
.y150{bottom:681.652933pt;}
.yc8{bottom:682.928000pt;}
.y97{bottom:685.566533pt;}
.y1b8{bottom:686.226933pt;}
.yd{bottom:688.177733pt;}
.yf5{bottom:690.849733pt;}
.y44{bottom:697.116000pt;}
.y14f{bottom:697.652933pt;}
.yc7{bottom:698.807467pt;}
.y1b7{bottom:700.893600pt;}
.y96{bottom:701.566533pt;}
.yc{bottom:702.844400pt;}
.y122{bottom:706.703467pt;}
.yf4{bottom:706.849733pt;}
.y43{bottom:713.350133pt;}
.y14e{bottom:713.652933pt;}
.yc6{bottom:714.807467pt;}
.y1b6{bottom:715.560267pt;}
.y17e{bottom:717.314667pt;}
.yb{bottom:717.511067pt;}
.y95{bottom:717.566533pt;}
.y121{bottom:722.703467pt;}
.yf3{bottom:722.849733pt;}
.y71{bottom:729.584533pt;}
.y1b5{bottom:730.226933pt;}
.yc5{bottom:730.807467pt;}
.ya{bottom:732.177733pt;}
.y17d{bottom:733.314667pt;}
.y94{bottom:733.566533pt;}
.yf2{bottom:738.849733pt;}
.y14d{bottom:740.991600pt;}
.y1b4{bottom:744.893600pt;}
.y42{bottom:745.458533pt;}
.yc4{bottom:746.686800pt;}
.y9{bottom:746.844400pt;}
.y17c{bottom:749.314667pt;}
.y93{bottom:749.566533pt;}
.y120{bottom:750.042000pt;}
.yf1{bottom:754.849733pt;}
.y14c{bottom:756.991600pt;}
.y1b3{bottom:759.560267pt;}
.y8{bottom:761.511067pt;}
.y70{bottom:762.052933pt;}
.yc3{bottom:762.686800pt;}
.y17b{bottom:765.314667pt;}
.y92{bottom:765.566533pt;}
.y11f{bottom:766.042000pt;}
.yf0{bottom:770.849733pt;}
.y14b{bottom:772.991600pt;}
.y1b2{bottom:774.226933pt;}
.y7{bottom:776.177733pt;}
.y41{bottom:777.566667pt;}
.y6f{bottom:778.287200pt;}
.yc2{bottom:778.566133pt;}
.y17a{bottom:781.314667pt;}
.y91{bottom:781.566533pt;}
.y1b1{bottom:788.893600pt;}
.y14a{bottom:788.991600pt;}
.y6{bottom:790.844400pt;}
.y40{bottom:793.800933pt;}
.y6e{bottom:794.521467pt;}
.yc1{bottom:794.566133pt;}
.y179{bottom:797.314667pt;}
.y90{bottom:797.566533pt;}
.y11e{bottom:797.916000pt;}
.yef{bottom:802.849733pt;}
.y1b0{bottom:803.560267pt;}
.y3f{bottom:810.035200pt;}
.yc0{bottom:810.445600pt;}
.y6d{bottom:810.755733pt;}
.y178{bottom:813.314667pt;}
.y8f{bottom:813.566533pt;}
.y149{bottom:816.330133pt;}
.y1af{bottom:818.226933pt;}
.y5{bottom:818.844400pt;}
.yee{bottom:818.849733pt;}
.y3e{bottom:826.269467pt;}
.ybf{bottom:826.445600pt;}
.y6c{bottom:826.989867pt;}
.y177{bottom:829.314667pt;}
.y8e{bottom:829.566533pt;}
.y11d{bottom:829.790000pt;}
.y148{bottom:832.330133pt;}
.y1ae{bottom:832.893600pt;}
.yed{bottom:834.849733pt;}
.ybe{bottom:842.445600pt;}
.y3d{bottom:842.503600pt;}
.y176{bottom:845.314667pt;}
.y8d{bottom:845.566533pt;}
.y1ad{bottom:847.560267pt;}
.y147{bottom:848.330133pt;}
.yec{bottom:850.849733pt;}
.y4{bottom:857.521600pt;}
.ybd{bottom:858.324933pt;}
.y3c{bottom:858.738000pt;}
.y6b{bottom:859.458400pt;}
.y175{bottom:861.314667pt;}
.y8c{bottom:861.566533pt;}
.y11c{bottom:861.664000pt;}
.y1ac{bottom:862.226933pt;}
.ybc{bottom:874.324933pt;}
.y3b{bottom:874.972133pt;}
.y146{bottom:875.668667pt;}
.y6a{bottom:875.692667pt;}
.y1ab{bottom:876.893600pt;}
.y174{bottom:877.314667pt;}
.y8b{bottom:877.566533pt;}
.y11b{bottom:877.664000pt;}
.yeb{bottom:882.723733pt;}
.y3{bottom:886.854933pt;}
.ybb{bottom:890.204267pt;}
.y1ec{bottom:891.017733pt;}
.y3a{bottom:891.206400pt;}
.y1aa{bottom:891.560267pt;}
.y145{bottom:891.668667pt;}
.y69{bottom:891.926933pt;}
.y173{bottom:893.314667pt;}
.y8a{bottom:893.566533pt;}
.y11a{bottom:893.664000pt;}
.y1eb{bottom:905.684400pt;}
.yba{bottom:906.204267pt;}
.y1a9{bottom:906.226933pt;}
.y39{bottom:907.440667pt;}
.y68{bottom:908.161067pt;}
.y172{bottom:909.314667pt;}
.y89{bottom:909.566533pt;}
.y119{bottom:909.664000pt;}
.y2{bottom:911.654800pt;}
.yea{bottom:914.597867pt;}
.y144{bottom:919.007200pt;}
.y1ea{bottom:920.351067pt;}
.y1a8{bottom:920.893600pt;}
.y38{bottom:923.674933pt;}
.yb9{bottom:925.101867pt;}
.y171{bottom:925.314667pt;}
.y118{bottom:925.664000pt;}
.ye9{bottom:930.597867pt;}
.y143{bottom:935.007200pt;}
.y1e9{bottom:935.017733pt;}
.y1a7{bottom:935.560267pt;}
.y37{bottom:939.909200pt;}
.y67{bottom:940.269333pt;}
.y170{bottom:941.314667pt;}
.y88{bottom:941.440533pt;}
.y117{bottom:941.664000pt;}
.yb8{bottom:946.648000pt;}
.y1e8{bottom:949.684400pt;}
.y2f{bottom:950.088000pt;}
.y1a6{bottom:950.226933pt;}
.y36{bottom:956.143333pt;}
.y16f{bottom:957.314667pt;}
.y142{bottom:962.345867pt;}
.ye8{bottom:962.471867pt;}
.y1e7{bottom:964.351067pt;}
.y1a5{bottom:964.893600pt;}
.y35{bottom:972.377600pt;}
.y87{bottom:973.314667pt;}
.y116{bottom:973.664000pt;}
.y141{bottom:978.345867pt;}
.y1e6{bottom:979.017733pt;}
.y1a4{bottom:979.560267pt;}
.y2e{bottom:982.088000pt;}
.y34{bottom:988.611867pt;}
.y86{bottom:989.314667pt;}
.y115{bottom:989.664000pt;}
.y1e5{bottom:993.684400pt;}
.y1a3{bottom:994.226933pt;}
.ye7{bottom:994.345867pt;}
.y2d{bottom:998.088000pt;}
.y33{bottom:1004.846133pt;}
.y85{bottom:1005.314667pt;}
.y114{bottom:1005.664000pt;}
.y1e4{bottom:1008.351067pt;}
.y1a2{bottom:1008.893600pt;}
.ye6{bottom:1010.345867pt;}
.y32{bottom:1021.080400pt;}
.y84{bottom:1021.314667pt;}
.y140{bottom:1021.684400pt;}
.y1e3{bottom:1023.017733pt;}
.y1a1{bottom:1023.560267pt;}
.y2c{bottom:1035.093333pt;}
.y31{bottom:1037.314667pt;}
.y113{bottom:1037.538133pt;}
.ye5{bottom:1037.684400pt;}
.y1a0{bottom:1038.226933pt;}
.y66{bottom:1072.287467pt;}
.y30{bottom:1072.287600pt;}
.hc{height:23.229500pt;}
.h2{height:34.421333pt;}
.h5{height:36.501562pt;}
.hd{height:37.437500pt;}
.h10{height:37.970833pt;}
.hf{height:39.338667pt;}
.h12{height:42.117188pt;}
.h15{height:43.989063pt;}
.h16{height:44.111458pt;}
.h7{height:45.860937pt;}
.h9{height:45.988542pt;}
.h6{height:46.422396pt;}
.h11{height:46.796875pt;}
.h17{height:46.927083pt;}
.hb{height:48.668750pt;}
.h13{height:48.804167pt;}
.ha{height:49.264583pt;}
.h4{height:53.816406pt;}
.h14{height:56.156250pt;}
.he{height:59.008000pt;}
.h8{height:67.855469pt;}
.h3{height:72.535156pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x9{left:80.226933pt;}
.x5{left:85.669333pt;}
.x3{left:94.523867pt;}
.x6{left:123.590533pt;}
.x8{left:158.505733pt;}
.x7{left:276.436933pt;}
.xa{left:295.660133pt;}
.xb{left:483.156267pt;}
.x4{left:649.443867pt;}
.x1{left:702.542267pt;}
}




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