
    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_edbea88ef0bd60807263d39a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f1738a4643fdefbd01590f8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bc9d3c11abfb8c4faa0ef9d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_3a6357f11202e5a6a8a821e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_3290bbe43d09d9f2fb87cef0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_20e9ac354298e9571c7207e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_fad34225d1fc27bbafebf970.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d2a1e800a85a43dbfddf86cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_21af5273f7ad512e2e805ea8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_daa191b3ab7668915b907612.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f079ad5b1b495c088697d988.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_396cc4e5e11e6d0b38a3a509.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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:ff10;src:url('chunks/assets/font_602efae1be0cd3fccd8b3f18.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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:ff11;src:url('chunks/assets/font_8e6c1d79cc311b38053e2706.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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:ff12;src:url('chunks/assets/font_00635b239e5684df70f9ab41.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls14{letter-spacing:-2.220000px;}
.ls15{letter-spacing:-2.088000px;}
.ls13{letter-spacing:-2.076000px;}
.ls16{letter-spacing:-2.046000px;}
.ls1a{letter-spacing:-1.140000px;}
.ls24{letter-spacing:-0.774000px;}
.ls3c{letter-spacing:-0.612000px;}
.ls49{letter-spacing:-0.460200px;}
.ls27{letter-spacing:-0.389400px;}
.ls1b{letter-spacing:-0.360000px;}
.ls45{letter-spacing:-0.259800px;}
.ls48{letter-spacing:-0.206400px;}
.ls3d{letter-spacing:-0.193200px;}
.ls41{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.180000px;}
.ls3e{letter-spacing:-0.164400px;}
.ls21{letter-spacing:-0.106800px;}
.ls22{letter-spacing:-0.093600px;}
.ls10{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.053280px;}
.ls23{letter-spacing:-0.050700px;}
.ls11{letter-spacing:-0.018000px;}
.lsc{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls25{letter-spacing:0.037440px;}
.ls1c{letter-spacing:0.042600px;}
.ls7{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.106800px;}
.ls39{letter-spacing:0.108000px;}
.ls3b{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.132600px;}
.ls40{letter-spacing:0.136200px;}
.ls17{letter-spacing:0.144000px;}
.ls37{letter-spacing:0.153600px;}
.ls19{letter-spacing:0.161400px;}
.ls3{letter-spacing:0.162000px;}
.ls2f{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.197400px;}
.lsd{letter-spacing:0.198000px;}
.ls4c{letter-spacing:0.206400px;}
.ls38{letter-spacing:0.206640px;}
.ls3f{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.264000px;}
.ls1d{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.300000px;}
.ls2c{letter-spacing:0.306600px;}
.ls3a{letter-spacing:0.324000px;}
.lse{letter-spacing:0.342000px;}
.ls5{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.453000px;}
.ls28{letter-spacing:0.595800px;}
.ls32{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.825120px;}
.ls20{letter-spacing:0.828000px;}
.ls2a{letter-spacing:0.900000px;}
.ls33{letter-spacing:1.080000px;}
.ls30{letter-spacing:1.620000px;}
.ls31{letter-spacing:2.340000px;}
.lsb{letter-spacing:3.060000px;}
.ls2d{letter-spacing:3.780000px;}
.ls47{letter-spacing:4.500000px;}
.ls6{letter-spacing:5.220000px;}
.ls2e{letter-spacing:5.940000px;}
.ls43{letter-spacing:6.660000px;}
.ls8{letter-spacing:7.380000px;}
.ls44{letter-spacing:8.820000px;}
.ls35{letter-spacing:9.540000px;}
.ls34{letter-spacing:10.260000px;}
.ls36{letter-spacing:13.140000px;}
.ls4b{letter-spacing:16.506720px;}
.ls9{letter-spacing:18.900000px;}
.ls42{letter-spacing:24.636000px;}
.ls4a{letter-spacing:46.026720px;}
.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;}
}
.ws13{word-spacing:-59.904000px;}
.ws17{word-spacing:-59.760000px;}
.wsb{word-spacing:-21.541200px;}
.ws8{word-spacing:-21.511200px;}
.wsa{word-spacing:-21.499200px;}
.ws9{word-spacing:-21.367200px;}
.ws5{word-spacing:-19.080000px;}
.ws7{word-spacing:-16.853760px;}
.ws37{word-spacing:-16.653312px;}
.ws6{word-spacing:-16.626360px;}
.ws36{word-spacing:-16.613280px;}
.ws2a{word-spacing:-16.020000px;}
.ws1a{word-spacing:-15.768000px;}
.ws29{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.264000px;}
.ws28{word-spacing:-15.246600px;}
.ws26{word-spacing:-15.199800px;}
.ws40{word-spacing:-15.146400px;}
.ws1e{word-spacing:-15.137400px;}
.ws2c{word-spacing:-15.093600px;}
.ws18{word-spacing:-15.046800px;}
.ws14{word-spacing:-15.018600px;}
.ws34{word-spacing:-15.012000px;}
.ws19{word-spacing:-14.993280px;}
.ws20{word-spacing:-14.977440px;}
.ws11{word-spacing:-14.940000px;}
.ws1d{word-spacing:-14.925300px;}
.ws16{word-spacing:-14.886720px;}
.ws1c{word-spacing:-14.882400px;}
.ws1b{word-spacing:-14.833200px;}
.ws31{word-spacing:-14.805840px;}
.ws2f{word-spacing:-14.777040px;}
.ws3e{word-spacing:-14.733600px;}
.ws3d{word-spacing:-14.680200px;}
.ws12{word-spacing:-14.580000px;}
.ws3f{word-spacing:-14.479800px;}
.ws2b{word-spacing:-14.328000px;}
.ws1f{word-spacing:-14.166000px;}
.ws24{word-spacing:-14.134104px;}
.ws2d{word-spacing:-13.860000px;}
.ws30{word-spacing:-13.824000px;}
.ws33{word-spacing:-13.716000px;}
.ws32{word-spacing:-13.626000px;}
.ws23{word-spacing:-13.505760px;}
.ws2e{word-spacing:-13.500000px;}
.ws3a{word-spacing:-13.410720px;}
.wsd{word-spacing:-13.118880px;}
.wse{word-spacing:-13.016280px;}
.ws1{word-spacing:-12.546000px;}
.ws0{word-spacing:-12.402000px;}
.wsc{word-spacing:-12.348000px;}
.ws4{word-spacing:-12.186000px;}
.ws3{word-spacing:-12.114000px;}
.ws2{word-spacing:-12.024000px;}
.wsf{word-spacing:-11.714880px;}
.ws21{word-spacing:-11.355240px;}
.ws22{word-spacing:-10.545384px;}
.ws27{word-spacing:-9.732960px;}
.ws25{word-spacing:0.000000px;}
.ws3b{word-spacing:266.006880px;}
.ws35{word-spacing:310.706880px;}
.ws3c{word-spacing:353.066880px;}
.ws38{word-spacing:393.986880px;}
.ws39{word-spacing:443.546880px;}
._3{margin-left:-5.497920px;}
._4{margin-left:-3.406320px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.014000px;}
._1{width:1.038000px;}
._8{width:2.175120px;}
._5{width:3.383376px;}
._7{width:4.504560px;}
._6{width:5.935200px;}
._b{width:7.555680px;}
._9{width:8.626320px;}
._a{width:10.059840px;}
._10{width:11.641920px;}
._11{width:12.679920px;}
._13{width:13.766160px;}
._f{width:17.587800px;}
._e{width:18.988800px;}
._12{width:20.360880px;}
._c{width:23.220000px;}
._d{width:24.684000px;}
._18{width:159.567120px;}
._16{width:164.307120px;}
._19{width:166.173360px;}
._14{width:169.647120px;}
._17{width:170.913360px;}
._15{width:176.253360px;}
._1a{width:183.069120px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fsc{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs9{font-size:48.384000px;}
.fs0{font-size:54.000000px;}
.fsd{font-size:54.144000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fse{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:2.880000px;}
.ycd{bottom:3.060000px;}
.y50{bottom:3.090000px;}
.y3{bottom:3.600000px;}
.y55{bottom:4.356000px;}
.yb5{bottom:4.500000px;}
.y10{bottom:5.010000px;}
.yb8{bottom:5.220000px;}
.yf6{bottom:5.760000px;}
.yed{bottom:5.865000px;}
.y119{bottom:5.940000px;}
.y108{bottom:5.970000px;}
.y111{bottom:6.015000px;}
.y23{bottom:6.225000px;}
.y53{bottom:11.196000px;}
.ye{bottom:13.320000px;}
.y7{bottom:15.270000px;}
.yb6{bottom:15.300000px;}
.y24{bottom:16.845000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y4f{bottom:20.190000px;}
.y21{bottom:21.705000px;}
.y54{bottom:22.710000px;}
.yb4{bottom:24.690000px;}
.y52{bottom:25.770000px;}
.yd{bottom:29.700000px;}
.y5{bottom:33.840000px;}
.y106{bottom:35.925000px;}
.y4e{bottom:37.470000px;}
.y20{bottom:42.480000px;}
.yf4{bottom:42.555000px;}
.yc{bottom:45.900000px;}
.y10f{bottom:48.570000px;}
.yeb{bottom:53.025000px;}
.y117{bottom:53.205000px;}
.y100{bottom:53.820000px;}
.y4d{bottom:54.750000px;}
.y1{bottom:55.980000px;}
.y1f{bottom:58.860000px;}
.yef{bottom:60.450000px;}
.y10a{bottom:67.395000px;}
.ye6{bottom:71.280000px;}
.y112{bottom:71.460000px;}
.y4c{bottom:72.030000px;}
.yb{bottom:72.720000px;}
.y1e{bottom:75.420000px;}
.y4b{bottom:89.310000px;}
.y1d{bottom:91.980000px;}
.ya{bottom:92.370000px;}
.y101{bottom:95.685000px;}
.y4a{bottom:106.590000px;}
.y1c{bottom:108.360000px;}
.y9{bottom:110.730000px;}
.yf0{bottom:111.135000px;}
.y56{bottom:113.220000px;}
.ye4{bottom:119.160000px;}
.yfe{bottom:119.700000px;}
.y13c{bottom:122.220000px;}
.ye7{bottom:122.400000px;}
.y10b{bottom:123.225000px;}
.y49{bottom:123.690000px;}
.y1b{bottom:124.920000px;}
.y113{bottom:126.075000px;}
.ycc{bottom:126.360000px;}
.yfd{bottom:132.300000px;}
.ye3{bottom:134.640000px;}
.y51{bottom:136.440000px;}
.y102{bottom:137.550000px;}
.y93{bottom:138.456000px;}
.y13b{bottom:139.536000px;}
.y48{bottom:140.970000px;}
.y1a{bottom:141.300000px;}
.ye2{bottom:147.276000px;}
.yee{bottom:148.860000px;}
.ycb{bottom:150.330000px;}
.y92{bottom:155.730000px;}
.y13a{bottom:156.810000px;}
.y19{bottom:157.860000px;}
.y47{bottom:158.250000px;}
.yca{bottom:160.230000px;}
.yf1{bottom:161.820000px;}
.y91{bottom:173.010000px;}
.ye8{bottom:173.490000px;}
.y139{bottom:174.090000px;}
.y46{bottom:175.530000px;}
.yc9{bottom:176.070000px;}
.y18{bottom:177.525000px;}
.y10c{bottom:179.070000px;}
.y103{bottom:179.430000px;}
.y114{bottom:180.690000px;}
.y25{bottom:185.610000px;}
.y27{bottom:185.760000px;}
.y16{bottom:187.890000px;}
.y90{bottom:190.110000px;}
.y138{bottom:191.190000px;}
.yc8{bottom:191.730000px;}
.y45{bottom:192.810000px;}
.yc7{bottom:205.590000px;}
.y15{bottom:206.070000px;}
.y8f{bottom:207.390000px;}
.y137{bottom:208.470000px;}
.y44{bottom:209.955000px;}
.yf2{bottom:212.550000px;}
.y104{bottom:221.295000px;}
.ye9{bottom:224.610000px;}
.y8e{bottom:224.670000px;}
.y14{bottom:225.150000px;}
.y136{bottom:225.750000px;}
.y43{bottom:227.235000px;}
.y34{bottom:231.735000px;}
.yc6{bottom:233.850000px;}
.y10d{bottom:234.900000px;}
.y115{bottom:235.335000px;}
.y8d{bottom:241.950000px;}
.y135{bottom:243.030000px;}
.y42{bottom:244.515000px;}
.y13{bottom:250.890000px;}
.y33{bottom:252.075000px;}
.y8c{bottom:259.230000px;}
.y134{bottom:260.310000px;}
.y41{bottom:261.795000px;}
.yc5{bottom:262.110000px;}
.y105{bottom:263.130000px;}
.yf3{bottom:263.235000px;}
.y32{bottom:269.355000px;}
.y12{bottom:275.190000px;}
.yea{bottom:275.685000px;}
.y8b{bottom:276.510000px;}
.y133{bottom:277.590000px;}
.y40{bottom:279.075000px;}
.y31{bottom:286.635000px;}
.y107{bottom:288.210000px;}
.yf5{bottom:288.285000px;}
.y116{bottom:289.950000px;}
.yc4{bottom:290.370000px;}
.y10e{bottom:290.730000px;}
.y8a{bottom:293.610000px;}
.y132{bottom:294.690000px;}
.y3f{bottom:296.355000px;}
.yec{bottom:300.390000px;}
.y30{bottom:304.455000px;}
.y89{bottom:310.890000px;}
.y131{bottom:311.970000px;}
.y3e{bottom:313.455000px;}
.y118{bottom:314.640000px;}
.y110{bottom:314.895000px;}
.yc3{bottom:318.630000px;}
.y2f{bottom:321.735000px;}
.y88{bottom:328.170000px;}
.y130{bottom:329.250000px;}
.y3d{bottom:330.735000px;}
.y2e{bottom:339.195000px;}
.y87{bottom:345.450000px;}
.y12f{bottom:346.530000px;}
.yc2{bottom:346.890000px;}
.y3c{bottom:348.015000px;}
.y2d{bottom:356.475000px;}
.y86{bottom:362.730000px;}
.y12e{bottom:363.810000px;}
.y3b{bottom:365.295000px;}
.yc1{bottom:370.830000px;}
.y2c{bottom:373.935000px;}
.y85{bottom:380.010000px;}
.yc0{bottom:380.730000px;}
.y12d{bottom:380.910000px;}
.y3a{bottom:382.575000px;}
.y2b{bottom:391.395000px;}
.ybf{bottom:396.615000px;}
.y84{bottom:397.155000px;}
.y12c{bottom:398.235000px;}
.y39{bottom:399.855000px;}
.y2a{bottom:408.675000px;}
.ybe{bottom:412.275000px;}
.y83{bottom:414.435000px;}
.y12b{bottom:415.515000px;}
.y38{bottom:416.955000px;}
.ybd{bottom:425.955000px;}
.y29{bottom:426.315000px;}
.y82{bottom:431.715000px;}
.y12a{bottom:432.795000px;}
.y37{bottom:434.235000px;}
.y81{bottom:448.995000px;}
.y129{bottom:450.075000px;}
.y36{bottom:451.515000px;}
.y28{bottom:453.675000px;}
.ybc{bottom:458.895000px;}
.ye1{bottom:463.035000px;}
.y80{bottom:466.275000px;}
.y128{bottom:467.355000px;}
.y35{bottom:468.825000px;}
.y26{bottom:471.675000px;}
.yfc{bottom:475.095000px;}
.ye0{bottom:478.515000px;}
.y7f{bottom:483.555000px;}
.y127{bottom:484.455000px;}
.yfb{bottom:490.575000px;}
.ydf{bottom:491.115000px;}
.ybb{bottom:491.835000px;}
.ye5{bottom:494.100000px;}
.y7e{bottom:500.655000px;}
.y126{bottom:501.735000px;}
.yfa{bottom:503.175000px;}
.y109{bottom:505.260000px;}
.y7d{bottom:517.935000px;}
.y125{bottom:519.015000px;}
.yba{bottom:524.595000px;}
.y7c{bottom:535.215000px;}
.y124{bottom:536.295000px;}
.y7b{bottom:552.495000px;}
.y123{bottom:553.575000px;}
.yb9{bottom:557.535000px;}
.y7a{bottom:569.775000px;}
.y122{bottom:570.855000px;}
.y79{bottom:586.875000px;}
.y121{bottom:587.955000px;}
.yb7{bottom:590.475000px;}
.y78{bottom:604.155000px;}
.y120{bottom:605.235000px;}
.y77{bottom:621.435000px;}
.y11f{bottom:622.515000px;}
.yb3{bottom:623.235000px;}
.y76{bottom:638.715000px;}
.y11e{bottom:639.795000px;}
.y75{bottom:656.025000px;}
.y11d{bottom:657.105000px;}
.y74{bottom:673.305000px;}
.y11c{bottom:674.205000px;}
.yb1{bottom:676.365000px;}
.y22{bottom:680.580000px;}
.y73{bottom:690.405000px;}
.y11b{bottom:691.485000px;}
.yb0{bottom:700.305000px;}
.y72{bottom:707.685000px;}
.y11a{bottom:708.765000px;}
.yaf{bottom:710.205000px;}
.y71{bottom:724.965000px;}
.yae{bottom:726.045000px;}
.y17{bottom:726.405000px;}
.y11{bottom:726.480000px;}
.y70{bottom:742.245000px;}
.yad{bottom:743.325000px;}
.y6f{bottom:759.525000px;}
.yac{bottom:760.605000px;}
.y6e{bottom:776.805000px;}
.yab{bottom:777.705000px;}
.y6d{bottom:793.905000px;}
.yaa{bottom:794.985000px;}
.y6c{bottom:811.185000px;}
.ya9{bottom:812.265000px;}
.yde{bottom:818.925000px;}
.y6b{bottom:828.465000px;}
.ya8{bottom:829.545000px;}
.ydd{bottom:832.785000px;}
.y6a{bottom:845.745000px;}
.yf9{bottom:846.285000px;}
.ya7{bottom:846.825000px;}
.ydc{bottom:861.045000px;}
.y69{bottom:863.025000px;}
.yf8{bottom:863.205000px;}
.ya6{bottom:864.105000px;}
.yf7{bottom:875.805000px;}
.yff{bottom:877.500000px;}
.y68{bottom:880.125000px;}
.ya5{bottom:881.205000px;}
.ydb{bottom:889.305000px;}
.y67{bottom:897.450000px;}
.ya4{bottom:898.530000px;}
.ya3{bottom:915.810000px;}
.yda{bottom:917.610000px;}
.y66{bottom:919.950000px;}
.y65{bottom:932.010000px;}
.ya2{bottom:933.090000px;}
.yd9{bottom:945.870000px;}
.y64{bottom:949.290000px;}
.ya1{bottom:950.370000px;}
.y63{bottom:966.570000px;}
.ya0{bottom:967.650000px;}
.yd8{bottom:974.130000px;}
.y62{bottom:983.670000px;}
.y9f{bottom:984.750000px;}
.yd7{bottom:998.070000px;}
.y61{bottom:1000.950000px;}
.y9e{bottom:1002.030000px;}
.yd6{bottom:1007.970000px;}
.y60{bottom:1018.230000px;}
.y9d{bottom:1019.310000px;}
.yd5{bottom:1022.190000px;}
.yf{bottom:1028.880000px;}
.yd4{bottom:1030.830000px;}
.y5f{bottom:1035.510000px;}
.y9c{bottom:1036.590000px;}
.yd3{bottom:1039.470000px;}
.y5e{bottom:1052.790000px;}
.yd2{bottom:1053.150000px;}
.y9b{bottom:1053.870000px;}
.y8{bottom:1061.610000px;}
.y6{bottom:1061.640000px;}
.y5d{bottom:1070.070000px;}
.y9a{bottom:1070.970000px;}
.yd1{bottom:1081.410000px;}
.y5c{bottom:1087.170000px;}
.y99{bottom:1088.250000px;}
.y5b{bottom:1104.450000px;}
.y98{bottom:1105.530000px;}
.yd0{bottom:1109.670000px;}
.y5a{bottom:1121.730000px;}
.y97{bottom:1122.810000px;}
.ycf{bottom:1137.930000px;}
.y59{bottom:1139.010000px;}
.y96{bottom:1140.090000px;}
.y58{bottom:1156.320000px;}
.y95{bottom:1157.400000px;}
.yce{bottom:1166.400000px;}
.y57{bottom:1174.320000px;}
.y94{bottom:1174.500000px;}
.h29{height:15.480000px;}
.h30{height:15.516000px;}
.h2f{height:15.660000px;}
.h2e{height:15.696000px;}
.h2c{height:19.980000px;}
.h2b{height:20.160000px;}
.hd{height:20.520000px;}
.h28{height:21.114844px;}
.h2d{height:21.336328px;}
.h25{height:27.147656px;}
.h2{height:32.940000px;}
.h16{height:34.020000px;}
.h14{height:35.806641px;}
.h9{height:36.180000px;}
.h3b{height:36.274219px;}
.h22{height:37.260000px;}
.h31{height:37.705078px;}
.h27{height:38.100586px;}
.h23{height:38.818125px;}
.h2a{height:40.356000px;}
.h33{height:40.605469px;}
.h34{height:40.713750px;}
.h1f{height:41.726953px;}
.h21{height:41.827500px;}
.h20{height:42.164648px;}
.h1e{height:42.266250px;}
.h1d{height:42.281367px;}
.h3d{height:43.506914px;}
.hf{height:44.002969px;}
.hb{height:44.820000px;}
.h35{height:44.936719px;}
.h38{height:45.045000px;}
.h1c{height:45.770625px;}
.h19{height:47.980898px;}
.h26{height:48.027656px;}
.h5{height:50.273438px;}
.h15{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h1b{height:56.574492px;}
.h36{height:58.471875px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.hc{height:65.884219px;}
.h4{height:67.824844px;}
.h7{height:71.613281px;}
.h24{height:71.756508px;}
.h17{height:73.722656px;}
.h6{height:120.960000px;}
.h8{height:120.996000px;}
.he{height:290.340000px;}
.h13{height:290.370000px;}
.h39{height:308.880000px;}
.h37{height:309.060000px;}
.h32{height:321.120000px;}
.h3c{height:335.520000px;}
.h3a{height:335.700000px;}
.h1a{height:482.940000px;}
.h18{height:483.015000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:72.936000px;}
.w12{width:109.656000px;}
.w5{width:151.920000px;}
.w11{width:178.770000px;}
.we{width:181.875000px;}
.w9{width:216.000000px;}
.wb{width:216.030000px;}
.w10{width:260.175000px;}
.wd{width:272.595000px;}
.wf{width:273.630000px;}
.w13{width:442.980000px;}
.w14{width:444.420000px;}
.w15{width:451.260000px;}
.wc{width:456.225000px;}
.w16{width:461.520000px;}
.wa{width:514.980000px;}
.w6{width:579.210000px;}
.w2{width:657.690000px;}
.w7{width:730.980000px;}
.w8{width:731.130000px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x3b{left:2.445000px;}
.x6{left:5.940000px;}
.x2{left:8.676000px;}
.x3a{left:9.975000px;}
.x3d{left:13.575000px;}
.x17{left:15.195000px;}
.x1c{left:16.776000px;}
.x43{left:19.155000px;}
.x4a{left:20.670000px;}
.x13{left:21.780000px;}
.x12{left:23.760000px;}
.x10{left:27.360000px;}
.x30{left:34.020000px;}
.x20{left:40.176000px;}
.x35{left:43.200000px;}
.x21{left:53.856000px;}
.x32{left:55.080000px;}
.xc{left:58.536000px;}
.x25{left:60.516000px;}
.x34{left:61.920000px;}
.x44{left:63.540000px;}
.x4b{left:64.650000px;}
.x36{left:66.960000px;}
.x26{left:69.510000px;}
.x2c{left:73.980000px;}
.x2e{left:75.780000px;}
.x1f{left:77.400000px;}
.x1d{left:78.510000px;}
.x1{left:81.000000px;}
.xe{left:84.630000px;}
.x3e{left:86.400000px;}
.x4{left:89.100000px;}
.x2a{left:92.190000px;}
.x31{left:96.510000px;}
.x33{left:100.110000px;}
.x23{left:102.105000px;}
.x47{left:103.470000px;}
.x22{left:106.020000px;}
.x4c{left:108.035987px;}
.x27{left:109.440000px;}
.xd{left:112.890000px;}
.x24{left:113.985000px;}
.x19{left:121.530000px;}
.x1b{left:122.805000px;}
.x3f{left:149.250000px;}
.x3c{left:173.130000px;}
.x45{left:175.350000px;}
.x48{left:190.545000px;}
.x15{left:209.415000px;}
.x49{left:215.460000px;}
.x46{left:219.960000px;}
.x39{left:224.460000px;}
.x5{left:241.050000px;}
.x11{left:252.759000px;}
.x1e{left:264.135000px;}
.x9{left:274.215000px;}
.x14{left:277.599000px;}
.xf{left:303.159000px;}
.x16{left:305.100000px;}
.x18{left:308.774987px;}
.x7{left:333.975000px;}
.x2b{left:342.435000px;}
.x8{left:353.235000px;}
.x38{left:357.734987px;}
.x29{left:359.894987px;}
.xb{left:365.505000px;}
.x41{left:369.434987px;}
.xa{left:441.480000px;}
.x28{left:446.324987px;}
.x2d{left:521.925000px;}
.x1a{left:538.485000px;}
.x37{left:670.109987px;}
.x40{left:674.609987px;}
.x42{left:679.109987px;}
.x2f{left:701.430000px;}
.x3{left:738.690000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls14{letter-spacing:-1.973333pt;}
.ls15{letter-spacing:-1.856000pt;}
.ls13{letter-spacing:-1.845333pt;}
.ls16{letter-spacing:-1.818667pt;}
.ls1a{letter-spacing:-1.013333pt;}
.ls24{letter-spacing:-0.688000pt;}
.ls3c{letter-spacing:-0.544000pt;}
.ls49{letter-spacing:-0.409067pt;}
.ls27{letter-spacing:-0.346133pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls45{letter-spacing:-0.230933pt;}
.ls48{letter-spacing:-0.183467pt;}
.ls3d{letter-spacing:-0.171733pt;}
.ls41{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls3e{letter-spacing:-0.146133pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls22{letter-spacing:-0.083200pt;}
.ls10{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls23{letter-spacing:-0.045067pt;}
.ls11{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls25{letter-spacing:0.033280pt;}
.ls1c{letter-spacing:0.037867pt;}
.ls7{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.094933pt;}
.ls39{letter-spacing:0.096000pt;}
.ls3b{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls40{letter-spacing:0.121067pt;}
.ls17{letter-spacing:0.128000pt;}
.ls37{letter-spacing:0.136533pt;}
.ls19{letter-spacing:0.143467pt;}
.ls3{letter-spacing:0.144000pt;}
.ls2f{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.175467pt;}
.lsd{letter-spacing:0.176000pt;}
.ls4c{letter-spacing:0.183467pt;}
.ls38{letter-spacing:0.183680pt;}
.ls3f{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.234667pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.266667pt;}
.ls2c{letter-spacing:0.272533pt;}
.ls3a{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.304000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.402667pt;}
.ls28{letter-spacing:0.529600pt;}
.ls32{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.733440pt;}
.ls20{letter-spacing:0.736000pt;}
.ls2a{letter-spacing:0.800000pt;}
.ls33{letter-spacing:0.960000pt;}
.ls30{letter-spacing:1.440000pt;}
.ls31{letter-spacing:2.080000pt;}
.lsb{letter-spacing:2.720000pt;}
.ls2d{letter-spacing:3.360000pt;}
.ls47{letter-spacing:4.000000pt;}
.ls6{letter-spacing:4.640000pt;}
.ls2e{letter-spacing:5.280000pt;}
.ls43{letter-spacing:5.920000pt;}
.ls8{letter-spacing:6.560000pt;}
.ls44{letter-spacing:7.840000pt;}
.ls35{letter-spacing:8.480000pt;}
.ls34{letter-spacing:9.120000pt;}
.ls36{letter-spacing:11.680000pt;}
.ls4b{letter-spacing:14.672640pt;}
.ls9{letter-spacing:16.800000pt;}
.ls42{letter-spacing:21.898667pt;}
.ls4a{letter-spacing:40.912640pt;}
.ws13{word-spacing:-53.248000pt;}
.ws17{word-spacing:-53.120000pt;}
.wsb{word-spacing:-19.147733pt;}
.ws8{word-spacing:-19.121067pt;}
.wsa{word-spacing:-19.110400pt;}
.ws9{word-spacing:-18.993067pt;}
.ws5{word-spacing:-16.960000pt;}
.ws7{word-spacing:-14.981120pt;}
.ws37{word-spacing:-14.802944pt;}
.ws6{word-spacing:-14.778987pt;}
.ws36{word-spacing:-14.767360pt;}
.ws2a{word-spacing:-14.240000pt;}
.ws1a{word-spacing:-14.016000pt;}
.ws29{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.568000pt;}
.ws28{word-spacing:-13.552533pt;}
.ws26{word-spacing:-13.510933pt;}
.ws40{word-spacing:-13.463467pt;}
.ws1e{word-spacing:-13.455467pt;}
.ws2c{word-spacing:-13.416533pt;}
.ws18{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.349867pt;}
.ws34{word-spacing:-13.344000pt;}
.ws19{word-spacing:-13.327360pt;}
.ws20{word-spacing:-13.313280pt;}
.ws11{word-spacing:-13.280000pt;}
.ws1d{word-spacing:-13.266933pt;}
.ws16{word-spacing:-13.232640pt;}
.ws1c{word-spacing:-13.228800pt;}
.ws1b{word-spacing:-13.185067pt;}
.ws31{word-spacing:-13.160747pt;}
.ws2f{word-spacing:-13.135147pt;}
.ws3e{word-spacing:-13.096533pt;}
.ws3d{word-spacing:-13.049067pt;}
.ws12{word-spacing:-12.960000pt;}
.ws3f{word-spacing:-12.870933pt;}
.ws2b{word-spacing:-12.736000pt;}
.ws1f{word-spacing:-12.592000pt;}
.ws24{word-spacing:-12.563648pt;}
.ws2d{word-spacing:-12.320000pt;}
.ws30{word-spacing:-12.288000pt;}
.ws33{word-spacing:-12.192000pt;}
.ws32{word-spacing:-12.112000pt;}
.ws23{word-spacing:-12.005120pt;}
.ws2e{word-spacing:-12.000000pt;}
.ws3a{word-spacing:-11.920640pt;}
.wsd{word-spacing:-11.661227pt;}
.wse{word-spacing:-11.570027pt;}
.ws1{word-spacing:-11.152000pt;}
.ws0{word-spacing:-11.024000pt;}
.wsc{word-spacing:-10.976000pt;}
.ws4{word-spacing:-10.832000pt;}
.ws3{word-spacing:-10.768000pt;}
.ws2{word-spacing:-10.688000pt;}
.wsf{word-spacing:-10.413227pt;}
.ws21{word-spacing:-10.093547pt;}
.ws22{word-spacing:-9.373675pt;}
.ws27{word-spacing:-8.651520pt;}
.ws25{word-spacing:0.000000pt;}
.ws3b{word-spacing:236.450560pt;}
.ws35{word-spacing:276.183893pt;}
.ws3c{word-spacing:313.837227pt;}
.ws38{word-spacing:350.210560pt;}
.ws39{word-spacing:394.263893pt;}
._3{margin-left:-4.887040pt;}
._4{margin-left:-3.027840pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.901333pt;}
._1{width:0.922667pt;}
._8{width:1.933440pt;}
._5{width:3.007445pt;}
._7{width:4.004053pt;}
._6{width:5.275733pt;}
._b{width:6.716160pt;}
._9{width:7.667840pt;}
._a{width:8.942080pt;}
._10{width:10.348373pt;}
._11{width:11.271040pt;}
._13{width:12.236587pt;}
._f{width:15.633600pt;}
._e{width:16.878933pt;}
._12{width:18.098560pt;}
._c{width:20.640000pt;}
._d{width:21.941333pt;}
._18{width:141.837440pt;}
._16{width:146.050773pt;}
._19{width:147.709653pt;}
._14{width:150.797440pt;}
._17{width:151.922987pt;}
._15{width:156.669653pt;}
._1a{width:162.728107pt;}
.fsc{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:43.008000pt;}
.fs0{font-size:48.000000pt;}
.fsd{font-size:48.128000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fse{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:2.560000pt;}
.ycd{bottom:2.720000pt;}
.y50{bottom:2.746667pt;}
.y3{bottom:3.200000pt;}
.y55{bottom:3.872000pt;}
.yb5{bottom:4.000000pt;}
.y10{bottom:4.453333pt;}
.yb8{bottom:4.640000pt;}
.yf6{bottom:5.120000pt;}
.yed{bottom:5.213333pt;}
.y119{bottom:5.280000pt;}
.y108{bottom:5.306667pt;}
.y111{bottom:5.346667pt;}
.y23{bottom:5.533333pt;}
.y53{bottom:9.952000pt;}
.ye{bottom:11.840000pt;}
.y7{bottom:13.573333pt;}
.yb6{bottom:13.600000pt;}
.y24{bottom:14.973333pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y4f{bottom:17.946667pt;}
.y21{bottom:19.293333pt;}
.y54{bottom:20.186667pt;}
.yb4{bottom:21.946667pt;}
.y52{bottom:22.906667pt;}
.yd{bottom:26.400000pt;}
.y5{bottom:30.080000pt;}
.y106{bottom:31.933333pt;}
.y4e{bottom:33.306667pt;}
.y20{bottom:37.760000pt;}
.yf4{bottom:37.826667pt;}
.yc{bottom:40.800000pt;}
.y10f{bottom:43.173333pt;}
.yeb{bottom:47.133333pt;}
.y117{bottom:47.293333pt;}
.y100{bottom:47.840000pt;}
.y4d{bottom:48.666667pt;}
.y1{bottom:49.760000pt;}
.y1f{bottom:52.320000pt;}
.yef{bottom:53.733333pt;}
.y10a{bottom:59.906667pt;}
.ye6{bottom:63.360000pt;}
.y112{bottom:63.520000pt;}
.y4c{bottom:64.026667pt;}
.yb{bottom:64.640000pt;}
.y1e{bottom:67.040000pt;}
.y4b{bottom:79.386667pt;}
.y1d{bottom:81.760000pt;}
.ya{bottom:82.106667pt;}
.y101{bottom:85.053333pt;}
.y4a{bottom:94.746667pt;}
.y1c{bottom:96.320000pt;}
.y9{bottom:98.426667pt;}
.yf0{bottom:98.786667pt;}
.y56{bottom:100.640000pt;}
.ye4{bottom:105.920000pt;}
.yfe{bottom:106.400000pt;}
.y13c{bottom:108.640000pt;}
.ye7{bottom:108.800000pt;}
.y10b{bottom:109.533333pt;}
.y49{bottom:109.946667pt;}
.y1b{bottom:111.040000pt;}
.y113{bottom:112.066667pt;}
.ycc{bottom:112.320000pt;}
.yfd{bottom:117.600000pt;}
.ye3{bottom:119.680000pt;}
.y51{bottom:121.280000pt;}
.y102{bottom:122.266667pt;}
.y93{bottom:123.072000pt;}
.y13b{bottom:124.032000pt;}
.y48{bottom:125.306667pt;}
.y1a{bottom:125.600000pt;}
.ye2{bottom:130.912000pt;}
.yee{bottom:132.320000pt;}
.ycb{bottom:133.626667pt;}
.y92{bottom:138.426667pt;}
.y13a{bottom:139.386667pt;}
.y19{bottom:140.320000pt;}
.y47{bottom:140.666667pt;}
.yca{bottom:142.426667pt;}
.yf1{bottom:143.840000pt;}
.y91{bottom:153.786667pt;}
.ye8{bottom:154.213333pt;}
.y139{bottom:154.746667pt;}
.y46{bottom:156.026667pt;}
.yc9{bottom:156.506667pt;}
.y18{bottom:157.800000pt;}
.y10c{bottom:159.173333pt;}
.y103{bottom:159.493333pt;}
.y114{bottom:160.613333pt;}
.y25{bottom:164.986667pt;}
.y27{bottom:165.120000pt;}
.y16{bottom:167.013333pt;}
.y90{bottom:168.986667pt;}
.y138{bottom:169.946667pt;}
.yc8{bottom:170.426667pt;}
.y45{bottom:171.386667pt;}
.yc7{bottom:182.746667pt;}
.y15{bottom:183.173333pt;}
.y8f{bottom:184.346667pt;}
.y137{bottom:185.306667pt;}
.y44{bottom:186.626667pt;}
.yf2{bottom:188.933333pt;}
.y104{bottom:196.706667pt;}
.ye9{bottom:199.653333pt;}
.y8e{bottom:199.706667pt;}
.y14{bottom:200.133333pt;}
.y136{bottom:200.666667pt;}
.y43{bottom:201.986667pt;}
.y34{bottom:205.986667pt;}
.yc6{bottom:207.866667pt;}
.y10d{bottom:208.800000pt;}
.y115{bottom:209.186667pt;}
.y8d{bottom:215.066667pt;}
.y135{bottom:216.026667pt;}
.y42{bottom:217.346667pt;}
.y13{bottom:223.013333pt;}
.y33{bottom:224.066667pt;}
.y8c{bottom:230.426667pt;}
.y134{bottom:231.386667pt;}
.y41{bottom:232.706667pt;}
.yc5{bottom:232.986667pt;}
.y105{bottom:233.893333pt;}
.yf3{bottom:233.986667pt;}
.y32{bottom:239.426667pt;}
.y12{bottom:244.613333pt;}
.yea{bottom:245.053333pt;}
.y8b{bottom:245.786667pt;}
.y133{bottom:246.746667pt;}
.y40{bottom:248.066667pt;}
.y31{bottom:254.786667pt;}
.y107{bottom:256.186667pt;}
.yf5{bottom:256.253333pt;}
.y116{bottom:257.733333pt;}
.yc4{bottom:258.106667pt;}
.y10e{bottom:258.426667pt;}
.y8a{bottom:260.986667pt;}
.y132{bottom:261.946667pt;}
.y3f{bottom:263.426667pt;}
.yec{bottom:267.013333pt;}
.y30{bottom:270.626667pt;}
.y89{bottom:276.346667pt;}
.y131{bottom:277.306667pt;}
.y3e{bottom:278.626667pt;}
.y118{bottom:279.680000pt;}
.y110{bottom:279.906667pt;}
.yc3{bottom:283.226667pt;}
.y2f{bottom:285.986667pt;}
.y88{bottom:291.706667pt;}
.y130{bottom:292.666667pt;}
.y3d{bottom:293.986667pt;}
.y2e{bottom:301.506667pt;}
.y87{bottom:307.066667pt;}
.y12f{bottom:308.026667pt;}
.yc2{bottom:308.346667pt;}
.y3c{bottom:309.346667pt;}
.y2d{bottom:316.866667pt;}
.y86{bottom:322.426667pt;}
.y12e{bottom:323.386667pt;}
.y3b{bottom:324.706667pt;}
.yc1{bottom:329.626667pt;}
.y2c{bottom:332.386667pt;}
.y85{bottom:337.786667pt;}
.yc0{bottom:338.426667pt;}
.y12d{bottom:338.586667pt;}
.y3a{bottom:340.066667pt;}
.y2b{bottom:347.906667pt;}
.ybf{bottom:352.546667pt;}
.y84{bottom:353.026667pt;}
.y12c{bottom:353.986667pt;}
.y39{bottom:355.426667pt;}
.y2a{bottom:363.266667pt;}
.ybe{bottom:366.466667pt;}
.y83{bottom:368.386667pt;}
.y12b{bottom:369.346667pt;}
.y38{bottom:370.626667pt;}
.ybd{bottom:378.626667pt;}
.y29{bottom:378.946667pt;}
.y82{bottom:383.746667pt;}
.y12a{bottom:384.706667pt;}
.y37{bottom:385.986667pt;}
.y81{bottom:399.106667pt;}
.y129{bottom:400.066667pt;}
.y36{bottom:401.346667pt;}
.y28{bottom:403.266667pt;}
.ybc{bottom:407.906667pt;}
.ye1{bottom:411.586667pt;}
.y80{bottom:414.466667pt;}
.y128{bottom:415.426667pt;}
.y35{bottom:416.733333pt;}
.y26{bottom:419.266667pt;}
.yfc{bottom:422.306667pt;}
.ye0{bottom:425.346667pt;}
.y7f{bottom:429.826667pt;}
.y127{bottom:430.626667pt;}
.yfb{bottom:436.066667pt;}
.ydf{bottom:436.546667pt;}
.ybb{bottom:437.186667pt;}
.ye5{bottom:439.200000pt;}
.y7e{bottom:445.026667pt;}
.y126{bottom:445.986667pt;}
.yfa{bottom:447.266667pt;}
.y109{bottom:449.120000pt;}
.y7d{bottom:460.386667pt;}
.y125{bottom:461.346667pt;}
.yba{bottom:466.306667pt;}
.y7c{bottom:475.746667pt;}
.y124{bottom:476.706667pt;}
.y7b{bottom:491.106667pt;}
.y123{bottom:492.066667pt;}
.yb9{bottom:495.586667pt;}
.y7a{bottom:506.466667pt;}
.y122{bottom:507.426667pt;}
.y79{bottom:521.666667pt;}
.y121{bottom:522.626667pt;}
.yb7{bottom:524.866667pt;}
.y78{bottom:537.026667pt;}
.y120{bottom:537.986667pt;}
.y77{bottom:552.386667pt;}
.y11f{bottom:553.346667pt;}
.yb3{bottom:553.986667pt;}
.y76{bottom:567.746667pt;}
.y11e{bottom:568.706667pt;}
.y75{bottom:583.133333pt;}
.y11d{bottom:584.093333pt;}
.y74{bottom:598.493333pt;}
.y11c{bottom:599.293333pt;}
.yb1{bottom:601.213333pt;}
.y22{bottom:604.960000pt;}
.y73{bottom:613.693333pt;}
.y11b{bottom:614.653333pt;}
.yb0{bottom:622.493333pt;}
.y72{bottom:629.053333pt;}
.y11a{bottom:630.013333pt;}
.yaf{bottom:631.293333pt;}
.y71{bottom:644.413333pt;}
.yae{bottom:645.373333pt;}
.y17{bottom:645.693333pt;}
.y11{bottom:645.760000pt;}
.y70{bottom:659.773333pt;}
.yad{bottom:660.733333pt;}
.y6f{bottom:675.133333pt;}
.yac{bottom:676.093333pt;}
.y6e{bottom:690.493333pt;}
.yab{bottom:691.293333pt;}
.y6d{bottom:705.693333pt;}
.yaa{bottom:706.653333pt;}
.y6c{bottom:721.053333pt;}
.ya9{bottom:722.013333pt;}
.yde{bottom:727.933333pt;}
.y6b{bottom:736.413333pt;}
.ya8{bottom:737.373333pt;}
.ydd{bottom:740.253333pt;}
.y6a{bottom:751.773333pt;}
.yf9{bottom:752.253333pt;}
.ya7{bottom:752.733333pt;}
.ydc{bottom:765.373333pt;}
.y69{bottom:767.133333pt;}
.yf8{bottom:767.293333pt;}
.ya6{bottom:768.093333pt;}
.yf7{bottom:778.493333pt;}
.yff{bottom:780.000000pt;}
.y68{bottom:782.333333pt;}
.ya5{bottom:783.293333pt;}
.ydb{bottom:790.493333pt;}
.y67{bottom:797.733333pt;}
.ya4{bottom:798.693333pt;}
.ya3{bottom:814.053333pt;}
.yda{bottom:815.653333pt;}
.y66{bottom:817.733333pt;}
.y65{bottom:828.453333pt;}
.ya2{bottom:829.413333pt;}
.yd9{bottom:840.773333pt;}
.y64{bottom:843.813333pt;}
.ya1{bottom:844.773333pt;}
.y63{bottom:859.173333pt;}
.ya0{bottom:860.133333pt;}
.yd8{bottom:865.893333pt;}
.y62{bottom:874.373333pt;}
.y9f{bottom:875.333333pt;}
.yd7{bottom:887.173333pt;}
.y61{bottom:889.733333pt;}
.y9e{bottom:890.693333pt;}
.yd6{bottom:895.973333pt;}
.y60{bottom:905.093333pt;}
.y9d{bottom:906.053333pt;}
.yd5{bottom:908.613333pt;}
.yf{bottom:914.560000pt;}
.yd4{bottom:916.293333pt;}
.y5f{bottom:920.453333pt;}
.y9c{bottom:921.413333pt;}
.yd3{bottom:923.973333pt;}
.y5e{bottom:935.813333pt;}
.yd2{bottom:936.133333pt;}
.y9b{bottom:936.773333pt;}
.y8{bottom:943.653333pt;}
.y6{bottom:943.680000pt;}
.y5d{bottom:951.173333pt;}
.y9a{bottom:951.973333pt;}
.yd1{bottom:961.253333pt;}
.y5c{bottom:966.373333pt;}
.y99{bottom:967.333333pt;}
.y5b{bottom:981.733333pt;}
.y98{bottom:982.693333pt;}
.yd0{bottom:986.373333pt;}
.y5a{bottom:997.093333pt;}
.y97{bottom:998.053333pt;}
.ycf{bottom:1011.493333pt;}
.y59{bottom:1012.453333pt;}
.y96{bottom:1013.413333pt;}
.y58{bottom:1027.840000pt;}
.y95{bottom:1028.800000pt;}
.yce{bottom:1036.800000pt;}
.y57{bottom:1043.840000pt;}
.y94{bottom:1044.000000pt;}
.h29{height:13.760000pt;}
.h30{height:13.792000pt;}
.h2f{height:13.920000pt;}
.h2e{height:13.952000pt;}
.h2c{height:17.760000pt;}
.h2b{height:17.920000pt;}
.hd{height:18.240000pt;}
.h28{height:18.768750pt;}
.h2d{height:18.965625pt;}
.h25{height:24.131250pt;}
.h2{height:29.280000pt;}
.h16{height:30.240000pt;}
.h14{height:31.828125pt;}
.h9{height:32.160000pt;}
.h3b{height:32.243750pt;}
.h22{height:33.120000pt;}
.h31{height:33.515625pt;}
.h27{height:33.867188pt;}
.h23{height:34.505000pt;}
.h2a{height:35.872000pt;}
.h33{height:36.093750pt;}
.h34{height:36.190000pt;}
.h1f{height:37.090625pt;}
.h21{height:37.180000pt;}
.h20{height:37.479688pt;}
.h1e{height:37.570000pt;}
.h1d{height:37.583438pt;}
.h3d{height:38.672812pt;}
.hf{height:39.113750pt;}
.hb{height:39.840000pt;}
.h35{height:39.943750pt;}
.h38{height:40.040000pt;}
.h1c{height:40.685000pt;}
.h19{height:42.649687pt;}
.h26{height:42.691250pt;}
.h5{height:44.687500pt;}
.h15{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h1b{height:50.288438pt;}
.h36{height:51.975000pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.hc{height:58.563750pt;}
.h4{height:60.288750pt;}
.h7{height:63.656250pt;}
.h24{height:63.783562pt;}
.h17{height:65.531250pt;}
.h6{height:107.520000pt;}
.h8{height:107.552000pt;}
.he{height:258.080000pt;}
.h13{height:258.106667pt;}
.h39{height:274.560000pt;}
.h37{height:274.720000pt;}
.h32{height:285.440000pt;}
.h3c{height:298.240000pt;}
.h3a{height:298.400000pt;}
.h1a{height:429.280000pt;}
.h18{height:429.346667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:64.832000pt;}
.w12{width:97.472000pt;}
.w5{width:135.040000pt;}
.w11{width:158.906667pt;}
.we{width:161.666667pt;}
.w9{width:192.000000pt;}
.wb{width:192.026667pt;}
.w10{width:231.266667pt;}
.wd{width:242.306667pt;}
.wf{width:243.226667pt;}
.w13{width:393.760000pt;}
.w14{width:395.040000pt;}
.w15{width:401.120000pt;}
.wc{width:405.533333pt;}
.w16{width:410.240000pt;}
.wa{width:457.760000pt;}
.w6{width:514.853333pt;}
.w2{width:584.613333pt;}
.w7{width:649.760000pt;}
.w8{width:649.893333pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3b{left:2.173333pt;}
.x6{left:5.280000pt;}
.x2{left:7.712000pt;}
.x3a{left:8.866667pt;}
.x3d{left:12.066667pt;}
.x17{left:13.506667pt;}
.x1c{left:14.912000pt;}
.x43{left:17.026667pt;}
.x4a{left:18.373333pt;}
.x13{left:19.360000pt;}
.x12{left:21.120000pt;}
.x10{left:24.320000pt;}
.x30{left:30.240000pt;}
.x20{left:35.712000pt;}
.x35{left:38.400000pt;}
.x21{left:47.872000pt;}
.x32{left:48.960000pt;}
.xc{left:52.032000pt;}
.x25{left:53.792000pt;}
.x34{left:55.040000pt;}
.x44{left:56.480000pt;}
.x4b{left:57.466667pt;}
.x36{left:59.520000pt;}
.x26{left:61.786667pt;}
.x2c{left:65.760000pt;}
.x2e{left:67.360000pt;}
.x1f{left:68.800000pt;}
.x1d{left:69.786667pt;}
.x1{left:72.000000pt;}
.xe{left:75.226667pt;}
.x3e{left:76.800000pt;}
.x4{left:79.200000pt;}
.x2a{left:81.946667pt;}
.x31{left:85.786667pt;}
.x33{left:88.986667pt;}
.x23{left:90.760000pt;}
.x47{left:91.973333pt;}
.x22{left:94.240000pt;}
.x4c{left:96.031988pt;}
.x27{left:97.280000pt;}
.xd{left:100.346667pt;}
.x24{left:101.320000pt;}
.x19{left:108.026667pt;}
.x1b{left:109.160000pt;}
.x3f{left:132.666667pt;}
.x3c{left:153.893333pt;}
.x45{left:155.866667pt;}
.x48{left:169.373333pt;}
.x15{left:186.146667pt;}
.x49{left:191.520000pt;}
.x46{left:195.520000pt;}
.x39{left:199.520000pt;}
.x5{left:214.266667pt;}
.x11{left:224.674667pt;}
.x1e{left:234.786667pt;}
.x9{left:243.746667pt;}
.x14{left:246.754667pt;}
.xf{left:269.474667pt;}
.x16{left:271.200000pt;}
.x18{left:274.466655pt;}
.x7{left:296.866667pt;}
.x2b{left:304.386667pt;}
.x8{left:313.986667pt;}
.x38{left:317.986655pt;}
.x29{left:319.906655pt;}
.xb{left:324.893333pt;}
.x41{left:328.386655pt;}
.xa{left:392.426667pt;}
.x28{left:396.733322pt;}
.x2d{left:463.933333pt;}
.x1a{left:478.653333pt;}
.x37{left:595.653322pt;}
.x40{left:599.653322pt;}
.x42{left:603.653322pt;}
.x2f{left:623.493333pt;}
.x3{left:656.613333pt;}
}




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