
    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_e2e8b6beedcf803c60db633a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_b5cfb7e751b86ae012e9cdbe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7fe83c9063cdfa2c66b0f971.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8ace1d8e01bb70472e31d80d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.720180px;}
.v2{vertical-align:55.440360px;}
.ls40{letter-spacing:-5.863104px;}
.ls58{letter-spacing:-5.840640px;}
.ls1f{letter-spacing:-5.818176px;}
.ls61{letter-spacing:-5.799924px;}
.lsf{letter-spacing:-5.795712px;}
.ls25{letter-spacing:-5.784480px;}
.ls5f{letter-spacing:-5.774652px;}
.ls1e{letter-spacing:-5.773248px;}
.ls65{letter-spacing:-5.770440px;}
.ls5b{letter-spacing:-5.749380px;}
.ls4e{letter-spacing:-5.705856px;}
.ls2{letter-spacing:-5.700240px;}
.ls56{letter-spacing:-0.252720px;}
.ls67{letter-spacing:-0.244296px;}
.ls66{letter-spacing:-0.193752px;}
.lsb{letter-spacing:-0.185328px;}
.ls57{letter-spacing:-0.168480px;}
.ls62{letter-spacing:-0.147168px;}
.ls4a{letter-spacing:-0.138996px;}
.ls47{letter-spacing:-0.133380px;}
.ls3c{letter-spacing:-0.126360px;}
.ls63{letter-spacing:-0.126144px;}
.ls3d{letter-spacing:-0.119340px;}
.ls13{letter-spacing:-0.117936px;}
.ls45{letter-spacing:-0.112320px;}
.ls48{letter-spacing:-0.105300px;}
.ls60{letter-spacing:-0.105120px;}
.lsa{letter-spacing:-0.101088px;}
.lsc{letter-spacing:-0.098280px;}
.ls69{letter-spacing:-0.094608px;}
.ls9{letter-spacing:-0.092664px;}
.ls49{letter-spacing:-0.091260px;}
.ls14{letter-spacing:-0.088452px;}
.ls3f{letter-spacing:-0.084240px;}
.ls55{letter-spacing:-0.084096px;}
.ls11{letter-spacing:-0.078624px;}
.ls3a{letter-spacing:-0.077220px;}
.ls54{letter-spacing:-0.075816px;}
.ls41{letter-spacing:-0.073584px;}
.ls46{letter-spacing:-0.070200px;}
.ls10{letter-spacing:-0.068796px;}
.ls8{letter-spacing:-0.067392px;}
.ls44{letter-spacing:-0.063180px;}
.ls50{letter-spacing:-0.063072px;}
.ls5{letter-spacing:-0.058968px;}
.ls22{letter-spacing:-0.056160px;}
.ls26{letter-spacing:-0.052560px;}
.ls3b{letter-spacing:-0.050544px;}
.ls12{letter-spacing:-0.049140px;}
.ls33{letter-spacing:-0.044928px;}
.ls6{letter-spacing:-0.042120px;}
.ls5c{letter-spacing:-0.042048px;}
.ls15{letter-spacing:-0.039312px;}
.ls53{letter-spacing:-0.037908px;}
.ls3e{letter-spacing:-0.035100px;}
.ls1d{letter-spacing:-0.033696px;}
.ls5d{letter-spacing:-0.031536px;}
.ls4{letter-spacing:-0.029484px;}
.ls21{letter-spacing:-0.028080px;}
.ls7{letter-spacing:-0.025272px;}
.ls4f{letter-spacing:-0.022464px;}
.ls42{letter-spacing:-0.021060px;}
.ls28{letter-spacing:-0.021024px;}
.ls30{letter-spacing:-0.016848px;}
.ls20{letter-spacing:-0.014040px;}
.ls52{letter-spacing:-0.012636px;}
.ls32{letter-spacing:-0.011232px;}
.ls5e{letter-spacing:-0.010512px;}
.ls35{letter-spacing:-0.008424px;}
.ls43{letter-spacing:-0.007020px;}
.ls31{letter-spacing:-0.005616px;}
.ls3{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.008424px;}
.ls6a{letter-spacing:0.010512px;}
.ls1b{letter-spacing:0.011232px;}
.ls64{letter-spacing:0.012636px;}
.ls2d{letter-spacing:0.014040px;}
.ls37{letter-spacing:0.016848px;}
.ls5a{letter-spacing:0.021024px;}
.ls2e{letter-spacing:0.023112px;}
.ls36{letter-spacing:0.025272px;}
.ls2c{letter-spacing:0.028080px;}
.ls4c{letter-spacing:0.033696px;}
.ls27{letter-spacing:0.036432px;}
.ls1{letter-spacing:0.039312px;}
.ls59{letter-spacing:0.042048px;}
.ls2b{letter-spacing:0.042120px;}
.ls0{letter-spacing:0.044928px;}
.ls39{letter-spacing:0.050544px;}
.ls17{letter-spacing:0.056160px;}
.ls38{letter-spacing:0.058968px;}
.ls29{letter-spacing:0.063756px;}
.ls19{letter-spacing:0.067392px;}
.lse{letter-spacing:0.073008px;}
.ls16{letter-spacing:0.078624px;}
.ls2f{letter-spacing:0.084240px;}
.ls1a{letter-spacing:0.089856px;}
.ls4d{letter-spacing:0.101088px;}
.ls23{letter-spacing:0.109296px;}
.ls1c{letter-spacing:0.112320px;}
.ls4b{letter-spacing:0.123552px;}
.ls24{letter-spacing:0.154836px;}
.ls2a{letter-spacing:20.343960px;}
.ls51{letter-spacing:25.259364px;}
.ls18{letter-spacing:30.169152px;}
.ls68{letter-spacing:32.692320px;}
.lsd{letter-spacing:123.282432px;}
.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;}
}
.ws8f{word-spacing:-29.191824px;}
.ws4d{word-spacing:-23.435568px;}
.ws4e{word-spacing:-23.418720px;}
.ws89{word-spacing:-23.317632px;}
.ws8a{word-spacing:-23.250240px;}
.ws3b{word-spacing:-21.440232px;}
.ws69{word-spacing:-19.452420px;}
.ws68{word-spacing:-19.403280px;}
.ws4c{word-spacing:-19.396260px;}
.ws5{word-spacing:-1.326780px;}
.ws1a{word-spacing:-1.169532px;}
.ws32{word-spacing:-1.168128px;}
.ws1c{word-spacing:-1.159704px;}
.ws42{word-spacing:-1.109160px;}
.ws15{word-spacing:-1.081080px;}
.ws6{word-spacing:-1.061424px;}
.ws1b{word-spacing:-1.031940px;}
.ws29{word-spacing:-1.022112px;}
.ws7b{word-spacing:-0.999648px;}
.ws4{word-spacing:-0.992628px;}
.ws16{word-spacing:-0.972972px;}
.ws2{word-spacing:-0.965952px;}
.ws11{word-spacing:-0.953316px;}
.ws18{word-spacing:-0.933660px;}
.wsaa{word-spacing:-0.909792px;}
.ws17{word-spacing:-0.904176px;}
.ws2f{word-spacing:-0.898560px;}
.ws13{word-spacing:-0.855036px;}
.ws31{word-spacing:-0.842400px;}
.ws3{word-spacing:-0.831168px;}
.ws66{word-spacing:-0.808704px;}
.ws14{word-spacing:-0.776412px;}
.ws12{word-spacing:-0.766584px;}
.ws1e{word-spacing:-0.727272px;}
.ws62{word-spacing:-0.716040px;}
.ws50{word-spacing:-0.709020px;}
.ws7d{word-spacing:-0.707616px;}
.ws60{word-spacing:-0.702000px;}
.ws43{word-spacing:-0.696384px;}
.ws3d{word-spacing:-0.687960px;}
.wsa{word-spacing:-0.657072px;}
.wsa8{word-spacing:-0.648648px;}
.ws7a{word-spacing:-0.640224px;}
.ws2d{word-spacing:-0.631800px;}
.ws22{word-spacing:-0.617760px;}
.ws7e{word-spacing:-0.584064px;}
.ws2e{word-spacing:-0.575640px;}
.ws8{word-spacing:-0.572832px;}
.wsad{word-spacing:-0.555984px;}
.ws65{word-spacing:-0.522288px;}
.ws27{word-spacing:-0.516672px;}
.wsb{word-spacing:-0.513864px;}
.ws9{word-spacing:-0.505440px;}
.ws2c{word-spacing:-0.477360px;}
.ws33{word-spacing:-0.463320px;}
.ws19{word-spacing:-0.442260px;}
.ws28{word-spacing:-0.438048px;}
.ws2b{word-spacing:-0.426816px;}
.ws8e{word-spacing:-0.404352px;}
.wsa0{word-spacing:-0.399456px;}
.ws51{word-spacing:-0.393120px;}
.wsc{word-spacing:-0.387504px;}
.ws5a{word-spacing:-0.386100px;}
.ws53{word-spacing:-0.362232px;}
.ws94{word-spacing:-0.357408px;}
.ws80{word-spacing:-0.346896px;}
.ws55{word-spacing:-0.328536px;}
.ws7{word-spacing:-0.320112px;}
.ws2a{word-spacing:-0.314496px;}
.ws56{word-spacing:-0.311688px;}
.ws30{word-spacing:-0.294840px;}
.wsac{word-spacing:-0.290628px;}
.wsa7{word-spacing:-0.277992px;}
.ws1d{word-spacing:-0.275184px;}
.wsd{word-spacing:-0.261144px;}
.ws46{word-spacing:-0.235872px;}
.ws4a{word-spacing:-0.192600px;}
.ws82{word-spacing:-0.189540px;}
.ws83{word-spacing:-0.176904px;}
.ws9c{word-spacing:-0.157680px;}
.ws21{word-spacing:-0.123552px;}
.wsa5{word-spacing:-0.098280px;}
.ws1f{word-spacing:-0.089856px;}
.ws61{word-spacing:-0.067392px;}
.ws6f{word-spacing:-0.056160px;}
.wsb6{word-spacing:-0.052560px;}
.ws64{word-spacing:-0.050544px;}
.ws6e{word-spacing:-0.042120px;}
.ws71{word-spacing:-0.035100px;}
.ws26{word-spacing:-0.033696px;}
.ws72{word-spacing:-0.028080px;}
.ws76{word-spacing:-0.021060px;}
.ws73{word-spacing:-0.014040px;}
.ws88{word-spacing:-0.012636px;}
.ws7c{word-spacing:-0.011232px;}
.ws52{word-spacing:-0.008424px;}
.wse{word-spacing:0.000000px;}
.ws5d{word-spacing:0.008424px;}
.ws91{word-spacing:0.010512px;}
.ws5e{word-spacing:0.016848px;}
.wsae{word-spacing:0.025272px;}
.wsa3{word-spacing:0.031536px;}
.ws58{word-spacing:0.033696px;}
.wsf{word-spacing:0.035100px;}
.wsb5{word-spacing:0.042048px;}
.ws25{word-spacing:0.044928px;}
.ws9e{word-spacing:0.052560px;}
.ws77{word-spacing:0.056160px;}
.ws1{word-spacing:0.067392px;}
.ws39{word-spacing:0.100188px;}
.ws78{word-spacing:0.101088px;}
.ws79{word-spacing:0.112320px;}
.ws36{word-spacing:0.145728px;}
.ws7f{word-spacing:0.146016px;}
.ws54{word-spacing:0.160056px;}
.ws4b{word-spacing:0.176904px;}
.wsa9{word-spacing:0.185328px;}
.ws38{word-spacing:0.191268px;}
.ws85{word-spacing:0.214812px;}
.ws35{word-spacing:0.218592px;}
.wsb0{word-spacing:0.220752px;}
.ws0{word-spacing:0.224640px;}
.ws84{word-spacing:0.227448px;}
.wsb3{word-spacing:0.231264px;}
.wsab{word-spacing:0.235872px;}
.ws45{word-spacing:0.241488px;}
.ws3c{word-spacing:0.241776px;}
.ws4f{word-spacing:0.247104px;}
.ws87{word-spacing:0.252720px;}
.ws47{word-spacing:0.263952px;}
.ws10{word-spacing:0.269568px;}
.ws6d{word-spacing:0.294336px;}
.ws20{word-spacing:0.303264px;}
.ws67{word-spacing:0.315900px;}
.wsaf{word-spacing:0.329940px;}
.ws5c{word-spacing:0.336960px;}
.ws5f{word-spacing:0.345384px;}
.ws23{word-spacing:0.348192px;}
.ws75{word-spacing:0.358020px;}
.ws9a{word-spacing:0.378432px;}
.ws70{word-spacing:0.386100px;}
.wsb4{word-spacing:0.388944px;}
.wsb1{word-spacing:0.399456px;}
.ws5b{word-spacing:0.404352px;}
.ws86{word-spacing:0.416988px;}
.ws8c{word-spacing:0.438048px;}
.wsa2{word-spacing:0.504576px;}
.ws57{word-spacing:0.505440px;}
.ws63{word-spacing:0.530712px;}
.ws92{word-spacing:0.536112px;}
.ws3e{word-spacing:0.547560px;}
.ws24{word-spacing:0.572832px;}
.ws41{word-spacing:0.575640px;}
.ws3a{word-spacing:0.584064px;}
.ws44{word-spacing:0.612144px;}
.ws48{word-spacing:0.623376px;}
.ws49{word-spacing:0.628992px;}
.ws40{word-spacing:0.631800px;}
.ws9d{word-spacing:0.693792px;}
.ws59{word-spacing:0.707616px;}
.wsb2{word-spacing:0.725328px;}
.ws74{word-spacing:0.758160px;}
.ws8d{word-spacing:0.786240px;}
.ws3f{word-spacing:0.926640px;}
.wsa6{word-spacing:1.072224px;}
.ws96{word-spacing:1.219392px;}
.ws37{word-spacing:1.229904px;}
.wsa4{word-spacing:1.250928px;}
.ws9b{word-spacing:1.377072px;}
.wsa1{word-spacing:1.429632px;}
.ws34{word-spacing:1.450656px;}
.ws81{word-spacing:1.461168px;}
.ws9f{word-spacing:1.471680px;}
.ws8b{word-spacing:1.482192px;}
.ws90{word-spacing:1.534752px;}
.ws93{word-spacing:1.629360px;}
.ws99{word-spacing:1.639872px;}
.ws98{word-spacing:1.734480px;}
.ws97{word-spacing:1.766016px;}
.ws95{word-spacing:1.808064px;}
.ws6c{word-spacing:217.760112px;}
.ws6b{word-spacing:274.108320px;}
.ws6a{word-spacing:783.734940px;}
._1c{margin-left:-1475.589960px;}
._20{margin-left:-1448.203536px;}
._29{margin-left:-1389.412440px;}
._2e{margin-left:-1375.285392px;}
._24{margin-left:-1306.048536px;}
._18{margin-left:-1206.898056px;}
._1d{margin-left:-1130.985180px;}
._2c{margin-left:-1122.927624px;}
._26{margin-left:-1069.051932px;}
._25{margin-left:-969.425496px;}
._1b{margin-left:-864.310824px;}
._1a{margin-left:-857.470536px;}
._19{margin-left:-850.268016px;}
._2b{margin-left:-810.818424px;}
._1f{margin-left:-809.605368px;}
._1e{margin-left:-784.299672px;}
._22{margin-left:-782.682264px;}
._2a{margin-left:-754.571376px;}
._21{margin-left:-745.271280px;}
._28{margin-left:-691.728336px;}
._2d{margin-left:-663.566904px;}
._23{margin-left:-654.165720px;}
._27{margin-left:-619.079760px;}
._0{margin-left:-15.696720px;}
._13{margin-left:-12.400128px;}
._c{margin-left:-10.515960px;}
._4{margin-left:-8.022456px;}
._3{margin-left:-6.987708px;}
._b{margin-left:-5.492448px;}
._7{margin-left:-3.849768px;}
._6{margin-left:-2.173392px;}
._1{margin-left:-1.078272px;}
._2{width:1.078272px;}
._2f{width:2.825640px;}
._17{width:4.329936px;}
._8{width:16.655652px;}
._32{width:17.929080px;}
._5{width:20.095452px;}
._16{width:22.387824px;}
._a{width:24.864840px;}
._d{width:26.083512px;}
._e{width:27.639144px;}
._f{width:29.360448px;}
._10{width:30.489264px;}
._11{width:31.707936px;}
._12{width:33.100704px;}
._14{width:36.630360px;}
._15{width:39.354120px;}
._9{width:55.418688px;}
._31{width:113.483916px;}
._30{width:120.835440px;}
.fc2{color:rgb(0,48,80);}
.fc3{color:transparent;}
.fc1{color:rgb(187,215,223);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(38,38,38);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:56.160000px;}
.fs4{font-size:70.200000px;}
.fsa{font-size:77.040000px;}
.fs3{font-size:84.240000px;}
.fs9{font-size:91.080000px;}
.fs2{font-size:98.280000px;}
.fs8{font-size:105.120000px;}
.fs1{font-size:112.320000px;}
.fsb{font-size:126.360000px;}
.fs7{font-size:140.400000px;}
.fs6{font-size:224.640000px;}
.fs0{font-size:280.800000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:112.350150px;}
.y9{bottom:112.618938px;}
.y22{bottom:113.880150px;}
.yb{bottom:113.970000px;}
.y19{bottom:114.060150px;}
.y8{bottom:135.389010px;}
.y60{bottom:146.730468px;}
.ya6{bottom:152.850150px;}
.y36{bottom:152.939082px;}
.ya0{bottom:158.430585px;}
.y4b{bottom:161.580000px;}
.y7{bottom:165.089928px;}
.y93{bottom:165.458928px;}
.y21{bottom:166.622304px;}
.y48{bottom:168.060000px;}
.ya5{bottom:178.140000px;}
.y85{bottom:179.669910px;}
.y3f{bottom:180.568110px;}
.yb4{bottom:182.005680px;}
.y4a{bottom:186.420144px;}
.y6{bottom:187.860000px;}
.yd8{bottom:188.667840px;}
.y82{bottom:188.759955px;}
.y47{bottom:194.790000px;}
.y35{bottom:195.059028px;}
.y92{bottom:195.698280px;}
.y5f{bottom:196.411008px;}
.y84{bottom:197.849955px;}
.y18{bottom:198.479379px;}
.y81{bottom:206.940000px;}
.y20{bottom:207.391656px;}
.y49{bottom:209.640000px;}
.y9f{bottom:210.001260px;}
.yb3{bottom:210.445896px;}
.yc5{bottom:210.715896px;}
.y83{bottom:216.030000px;}
.yd7{bottom:217.018704px;}
.ycf{bottom:218.637498px;}
.y17{bottom:225.029721px;}
.y2c{bottom:225.838110px;}
.y91{bottom:226.027488px;}
.y3e{bottom:236.008560px;}
.y34{bottom:237.270054px;}
.yc4{bottom:239.066760px;}
.y5e{bottom:246.180000px;}
.y5{bottom:251.940000px;}
.y90{bottom:256.356696px;}
.yb2{bottom:256.435896px;}
.y46{bottom:257.430000px;}
.y9e{bottom:261.660387px;}
.yd6{bottom:263.008704px;}
.y2b{bottom:263.728560px;}
.y80{bottom:267.149910px;}
.yc3{bottom:267.506976px;}
.y16{bottom:269.039505px;}
.y45{bottom:275.880000px;}
.y7d{bottom:276.239955px;}
.y33{bottom:279.390000px;}
.yb1{bottom:284.786760px;}
.y7f{bottom:285.329955px;}
.y8f{bottom:286.596048px;}
.y5b{bottom:289.918974px;}
.y5d{bottom:291.180000px;}
.y3d{bottom:291.449010px;}
.yce{bottom:294.418749px;}
.y7c{bottom:294.420000px;}
.yc2{bottom:295.947192px;}
.y59{bottom:302.609730px;}
.y44{bottom:302.700000px;}
.y7e{bottom:303.510000px;}
.yd5{bottom:308.909352px;}
.yba{bottom:309.178056px;}
.y5c{bottom:313.049172px;}
.y15{bottom:313.140198px;}
.yb0{bottom:313.226976px;}
.y9d{bottom:313.319514px;}
.y5a{bottom:315.209928px;}
.y8e{bottom:316.925256px;}
.y2a{bottom:319.077750px;}
.y32{bottom:322.320000px;}
.y4{bottom:323.580792px;}
.yc1{bottom:324.298056px;}
.y1f{bottom:329.882232px;}
.yb9{bottom:337.528920px;}
.y14{bottom:339.599631px;}
.y3c{bottom:346.889460px;}
.y8d{bottom:347.254464px;}
.y76{bottom:351.119910px;}
.y79{bottom:354.629910px;}
.yd4{bottom:354.899352px;}
.y29{bottom:356.968200px;}
.y58{bottom:359.040000px;}
.yaf{bottom:359.127624px;}
.y3{bottom:360.930000px;}
.y7b{bottom:363.719955px;}
.y9c{bottom:364.890189px;}
.y13{bottom:366.149973px;}
.y75{bottom:369.299955px;}
.y43{bottom:369.390000px;}
.ycd{bottom:370.200000px;}
.yc0{bottom:370.288056px;}
.y1e{bottom:370.741440px;}
.y31{bottom:371.010045px;}
.y78{bottom:372.809955px;}
.y8c{bottom:377.583672px;}
.y7a{bottom:381.900000px;}
.yb8{bottom:383.518920px;}
.y3b{bottom:384.779910px;}
.yae{bottom:387.567840px;}
.y42{bottom:389.460000px;}
.y77{bottom:390.990000px;}
.y12{bottom:392.700315px;}
.y74{bottom:394.500000px;}
.y28{bottom:394.858650px;}
.y2{bottom:398.190000px;}
.ybf{bottom:398.638920px;}
.y9b{bottom:399.001071px;}
.yd3{bottom:400.889352px;}
.y55{bottom:401.970000px;}
.y30{bottom:406.110000px;}
.y8b{bottom:407.823024px;}
.y1d{bottom:411.600648px;}
.yb7{bottom:411.959136px;}
.yad{bottom:416.008056px;}
.y57{bottom:423.839046px;}
.y54{bottom:423.841026px;}
.ybe{bottom:427.079136px;}
.y27{bottom:432.749100px;}
.ycc{bottom:433.290000px;}
.y73{bottom:435.090810px;}
.y11{bottom:436.710099px;}
.y8a{bottom:438.152232px;}
.y2f{bottom:438.600000px;}
.y6e{bottom:438.689910px;}
.y3a{bottom:440.129100px;}
.y1c{bottom:441.840000px;}
.y6b{bottom:442.109910px;}
.yd2{bottom:446.790000px;}
.y56{bottom:449.130000px;}
.y53{bottom:449.131980px;}
.y9a{bottom:450.660198px;}
.y70{bottom:451.199955px;}
.y6d{bottom:456.869955px;}
.yb6{bottom:457.859784px;}
.y6a{bottom:460.289955px;}
.y72{bottom:460.380360px;}
.yac{bottom:461.908704px;}
.y10{bottom:463.260441px;}
.y89{bottom:468.481440px;}
.y41{bottom:468.840000px;}
.y6f{bottom:469.380000px;}
.y26{bottom:470.639550px;}
.ybd{bottom:473.069136px;}
.y69{bottom:478.470000px;}
.ya4{bottom:480.451440px;}
.y6c{bottom:482.070000px;}
.y71{bottom:485.580405px;}
.yb5{bottom:486.300000px;}
.y40{bottom:488.910000px;}
.yf{bottom:489.719874px;}
.yab{bottom:490.348920px;}
.y52{bottom:492.871494px;}
.ycb{bottom:494.039046px;}
.y88{bottom:498.720792px;}
.ybc{bottom:501.420000px;}
.y99{bottom:502.230873px;}
.y25{bottom:508.530000px;}
.yaa{bottom:518.789136px;}
.yca{bottom:519.330000px;}
.y64{bottom:526.169910px;}
.y1b{bottom:526.980792px;}
.yd1{bottom:528.150000px;}
.ya3{bottom:528.330648px;}
.y87{bottom:529.050000px;}
.ye{bottom:533.820567px;}
.y66{bottom:535.259955px;}
.y1{bottom:535.620000px;}
.yc7{bottom:536.338920px;}
.y68{bottom:538.769955px;}
.y51{bottom:542.640486px;}
.y63{bottom:544.349955px;}
.yc9{bottom:546.960954px;}
.ybb{bottom:547.410000px;}
.y39{bottom:551.010000px;}
.y95{bottom:551.370000px;}
.y98{bottom:553.890000px;}
.y67{bottom:556.950000px;}
.y1a{bottom:557.310000px;}
.yd{bottom:560.280000px;}
.y65{bottom:560.460000px;}
.ya9{bottom:564.689784px;}
.yd0{bottom:567.840000px;}
.y62{bottom:569.550000px;}
.ya2{bottom:576.120000px;}
.yc8{bottom:584.850000px;}
.y50{bottom:585.570000px;}
.ya8{bottom:593.130000px;}
.y4e{bottom:596.910000px;}
.y24{bottom:606.901152px;}
.y4f{bottom:607.440000px;}
.y94{bottom:615.360000px;}
.y61{bottom:620.400000px;}
.y38{bottom:624.270000px;}
.y97{bottom:625.170000px;}
.ya1{bottom:626.430000px;}
.yc6{bottom:644.970000px;}
.ya7{bottom:647.760000px;}
.y2e{bottom:656.220000px;}
.y23{bottom:674.310000px;}
.y4d{bottom:684.570000px;}
.y86{bottom:684.660000px;}
.y96{bottom:685.020000px;}
.yc{bottom:685.110000px;}
.y2d{bottom:696.360000px;}
.y37{bottom:755.130000px;}
.ya{bottom:773.400000px;}
.h8{height:40.913438px;}
.h13{height:51.107520px;}
.h7{height:51.141797px;}
.hf{height:56.124844px;}
.h6{height:61.329023px;}
.he{height:61.370156px;}
.hd{height:66.353203px;}
.h5{height:71.550527px;}
.ha{height:71.598516px;}
.hc{height:76.581563px;}
.h4{height:81.772031px;}
.h3{height:81.826875px;}
.h10{height:87.861977px;}
.h12{height:92.055234px;}
.hb{height:102.283594px;}
.h11{height:147.495594px;}
.h9{height:163.653750px;}
.h2{height:204.567187px;}
.h1{height:892.500000px;}
.h0{height:892.830000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.xe{left:28.515750px;}
.x63{left:36.165750px;}
.x65{left:43.455900px;}
.x1{left:60.105900px;}
.x8{left:68.297244px;}
.x60{left:72.345750px;}
.x5{left:74.055750px;}
.x64{left:75.585750px;}
.xc{left:78.735750px;}
.x66{left:82.875900px;}
.x5f{left:85.035900px;}
.x6{left:88.095750px;}
.x61{left:89.717091px;}
.x3f{left:92.415750px;}
.x27{left:93.855900px;}
.x59{left:95.385750px;}
.x13{left:96.736890px;}
.x4e{left:100.155750px;}
.x40{left:109.065435px;}
.xf{left:113.745750px;}
.xd{left:118.335858px;}
.x10{left:131.116038px;}
.x4f{left:237.945885px;}
.x5b{left:240.374805px;}
.x50{left:244.246335px;}
.x5a{left:245.685435px;}
.x42{left:250.544760px;}
.x43{left:251.894355px;}
.x41{left:258.375570px;}
.x3{left:326.865750px;}
.xa{left:343.335750px;}
.x26{left:377.535750px;}
.x32{left:380.596524px;}
.x36{left:382.935246px;}
.x7{left:389.506470px;}
.x44{left:391.126335px;}
.x5c{left:394.995570px;}
.x31{left:396.435750px;}
.x33{left:401.295750px;}
.x2{left:404.445750px;}
.x25{left:409.305750px;}
.x4{left:452.776470px;}
.x62{left:464.475750px;}
.x9{left:484.636596px;}
.x2f{left:499.036056px;}
.x24{left:501.825750px;}
.x35{left:507.225048px;}
.x39{left:512.625660px;}
.x51{left:514.605255px;}
.x2e{left:520.725750px;}
.x30{left:525.585750px;}
.x5d{left:531.165435px;}
.x23{left:532.965750px;}
.x3a{left:536.116335px;}
.x38{left:538.455750px;}
.x52{left:545.835480px;}
.x11{left:595.515750px;}
.x34{left:630.343914px;}
.x2d{left:632.955750px;}
.x2c{left:639.165282px;}
.x12{left:641.145750px;}
.x22{left:645.465750px;}
.x15{left:653.745750px;}
.x21{left:655.545750px;}
.x53{left:658.605750px;}
.x3c{left:665.895480px;}
.x54{left:669.316515px;}
.x4c{left:670.755660px;}
.x3b{left:673.185750px;}
.x45{left:676.155750px;}
.x4b{left:679.035750px;}
.x55{left:680.566065px;}
.x4d{left:682.005210px;}
.x1a{left:683.985750px;}
.x20{left:742.125750px;}
.x2a{left:747.617268px;}
.x16{left:756.885750px;}
.x29{left:763.456494px;}
.x37{left:764.623428px;}
.x2b{left:769.305750px;}
.x1f{left:775.694868px;}
.x17{left:783.525750px;}
.x14{left:795.135750px;}
.x3d{left:797.205750px;}
.x58{left:799.725525px;}
.x19{left:805.125750px;}
.x46{left:807.106425px;}
.x3e{left:808.995840px;}
.x57{left:814.844850px;}
.x5e{left:817.275750px;}
.x56{left:830.955750px;}
.x28{left:864.525540px;}
.x18{left:871.635750px;}
.x1e{left:915.105750px;}
.x1b{left:974.415750px;}
.x48{left:977.297550px;}
.x47{left:984.136785px;}
.x1c{left:987.285282px;}
.x1d{left:1033.725750px;}
.x4a{left:1091.145885px;}
.x49{left:1113.825750px;}
.xb{left:1162.245750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.640160pt;}
.v2{vertical-align:49.280320pt;}
.ls40{letter-spacing:-5.211648pt;}
.ls58{letter-spacing:-5.191680pt;}
.ls1f{letter-spacing:-5.171712pt;}
.ls61{letter-spacing:-5.155488pt;}
.lsf{letter-spacing:-5.151744pt;}
.ls25{letter-spacing:-5.141760pt;}
.ls5f{letter-spacing:-5.133024pt;}
.ls1e{letter-spacing:-5.131776pt;}
.ls65{letter-spacing:-5.129280pt;}
.ls5b{letter-spacing:-5.110560pt;}
.ls4e{letter-spacing:-5.071872pt;}
.ls2{letter-spacing:-5.066880pt;}
.ls56{letter-spacing:-0.224640pt;}
.ls67{letter-spacing:-0.217152pt;}
.ls66{letter-spacing:-0.172224pt;}
.lsb{letter-spacing:-0.164736pt;}
.ls57{letter-spacing:-0.149760pt;}
.ls62{letter-spacing:-0.130816pt;}
.ls4a{letter-spacing:-0.123552pt;}
.ls47{letter-spacing:-0.118560pt;}
.ls3c{letter-spacing:-0.112320pt;}
.ls63{letter-spacing:-0.112128pt;}
.ls3d{letter-spacing:-0.106080pt;}
.ls13{letter-spacing:-0.104832pt;}
.ls45{letter-spacing:-0.099840pt;}
.ls48{letter-spacing:-0.093600pt;}
.ls60{letter-spacing:-0.093440pt;}
.lsa{letter-spacing:-0.089856pt;}
.lsc{letter-spacing:-0.087360pt;}
.ls69{letter-spacing:-0.084096pt;}
.ls9{letter-spacing:-0.082368pt;}
.ls49{letter-spacing:-0.081120pt;}
.ls14{letter-spacing:-0.078624pt;}
.ls3f{letter-spacing:-0.074880pt;}
.ls55{letter-spacing:-0.074752pt;}
.ls11{letter-spacing:-0.069888pt;}
.ls3a{letter-spacing:-0.068640pt;}
.ls54{letter-spacing:-0.067392pt;}
.ls41{letter-spacing:-0.065408pt;}
.ls46{letter-spacing:-0.062400pt;}
.ls10{letter-spacing:-0.061152pt;}
.ls8{letter-spacing:-0.059904pt;}
.ls44{letter-spacing:-0.056160pt;}
.ls50{letter-spacing:-0.056064pt;}
.ls5{letter-spacing:-0.052416pt;}
.ls22{letter-spacing:-0.049920pt;}
.ls26{letter-spacing:-0.046720pt;}
.ls3b{letter-spacing:-0.044928pt;}
.ls12{letter-spacing:-0.043680pt;}
.ls33{letter-spacing:-0.039936pt;}
.ls6{letter-spacing:-0.037440pt;}
.ls5c{letter-spacing:-0.037376pt;}
.ls15{letter-spacing:-0.034944pt;}
.ls53{letter-spacing:-0.033696pt;}
.ls3e{letter-spacing:-0.031200pt;}
.ls1d{letter-spacing:-0.029952pt;}
.ls5d{letter-spacing:-0.028032pt;}
.ls4{letter-spacing:-0.026208pt;}
.ls21{letter-spacing:-0.024960pt;}
.ls7{letter-spacing:-0.022464pt;}
.ls4f{letter-spacing:-0.019968pt;}
.ls42{letter-spacing:-0.018720pt;}
.ls28{letter-spacing:-0.018688pt;}
.ls30{letter-spacing:-0.014976pt;}
.ls20{letter-spacing:-0.012480pt;}
.ls52{letter-spacing:-0.011232pt;}
.ls32{letter-spacing:-0.009984pt;}
.ls5e{letter-spacing:-0.009344pt;}
.ls35{letter-spacing:-0.007488pt;}
.ls43{letter-spacing:-0.006240pt;}
.ls31{letter-spacing:-0.004992pt;}
.ls3{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.007488pt;}
.ls6a{letter-spacing:0.009344pt;}
.ls1b{letter-spacing:0.009984pt;}
.ls64{letter-spacing:0.011232pt;}
.ls2d{letter-spacing:0.012480pt;}
.ls37{letter-spacing:0.014976pt;}
.ls5a{letter-spacing:0.018688pt;}
.ls2e{letter-spacing:0.020544pt;}
.ls36{letter-spacing:0.022464pt;}
.ls2c{letter-spacing:0.024960pt;}
.ls4c{letter-spacing:0.029952pt;}
.ls27{letter-spacing:0.032384pt;}
.ls1{letter-spacing:0.034944pt;}
.ls59{letter-spacing:0.037376pt;}
.ls2b{letter-spacing:0.037440pt;}
.ls0{letter-spacing:0.039936pt;}
.ls39{letter-spacing:0.044928pt;}
.ls17{letter-spacing:0.049920pt;}
.ls38{letter-spacing:0.052416pt;}
.ls29{letter-spacing:0.056672pt;}
.ls19{letter-spacing:0.059904pt;}
.lse{letter-spacing:0.064896pt;}
.ls16{letter-spacing:0.069888pt;}
.ls2f{letter-spacing:0.074880pt;}
.ls1a{letter-spacing:0.079872pt;}
.ls4d{letter-spacing:0.089856pt;}
.ls23{letter-spacing:0.097152pt;}
.ls1c{letter-spacing:0.099840pt;}
.ls4b{letter-spacing:0.109824pt;}
.ls24{letter-spacing:0.137632pt;}
.ls2a{letter-spacing:18.083520pt;}
.ls51{letter-spacing:22.452768pt;}
.ls18{letter-spacing:26.817024pt;}
.ls68{letter-spacing:29.059840pt;}
.lsd{letter-spacing:109.584384pt;}
.ws8f{word-spacing:-25.948288pt;}
.ws4d{word-spacing:-20.831616pt;}
.ws4e{word-spacing:-20.816640pt;}
.ws89{word-spacing:-20.726784pt;}
.ws8a{word-spacing:-20.666880pt;}
.ws3b{word-spacing:-19.057984pt;}
.ws69{word-spacing:-17.291040pt;}
.ws68{word-spacing:-17.247360pt;}
.ws4c{word-spacing:-17.241120pt;}
.ws5{word-spacing:-1.179360pt;}
.ws1a{word-spacing:-1.039584pt;}
.ws32{word-spacing:-1.038336pt;}
.ws1c{word-spacing:-1.030848pt;}
.ws42{word-spacing:-0.985920pt;}
.ws15{word-spacing:-0.960960pt;}
.ws6{word-spacing:-0.943488pt;}
.ws1b{word-spacing:-0.917280pt;}
.ws29{word-spacing:-0.908544pt;}
.ws7b{word-spacing:-0.888576pt;}
.ws4{word-spacing:-0.882336pt;}
.ws16{word-spacing:-0.864864pt;}
.ws2{word-spacing:-0.858624pt;}
.ws11{word-spacing:-0.847392pt;}
.ws18{word-spacing:-0.829920pt;}
.wsaa{word-spacing:-0.808704pt;}
.ws17{word-spacing:-0.803712pt;}
.ws2f{word-spacing:-0.798720pt;}
.ws13{word-spacing:-0.760032pt;}
.ws31{word-spacing:-0.748800pt;}
.ws3{word-spacing:-0.738816pt;}
.ws66{word-spacing:-0.718848pt;}
.ws14{word-spacing:-0.690144pt;}
.ws12{word-spacing:-0.681408pt;}
.ws1e{word-spacing:-0.646464pt;}
.ws62{word-spacing:-0.636480pt;}
.ws50{word-spacing:-0.630240pt;}
.ws7d{word-spacing:-0.628992pt;}
.ws60{word-spacing:-0.624000pt;}
.ws43{word-spacing:-0.619008pt;}
.ws3d{word-spacing:-0.611520pt;}
.wsa{word-spacing:-0.584064pt;}
.wsa8{word-spacing:-0.576576pt;}
.ws7a{word-spacing:-0.569088pt;}
.ws2d{word-spacing:-0.561600pt;}
.ws22{word-spacing:-0.549120pt;}
.ws7e{word-spacing:-0.519168pt;}
.ws2e{word-spacing:-0.511680pt;}
.ws8{word-spacing:-0.509184pt;}
.wsad{word-spacing:-0.494208pt;}
.ws65{word-spacing:-0.464256pt;}
.ws27{word-spacing:-0.459264pt;}
.wsb{word-spacing:-0.456768pt;}
.ws9{word-spacing:-0.449280pt;}
.ws2c{word-spacing:-0.424320pt;}
.ws33{word-spacing:-0.411840pt;}
.ws19{word-spacing:-0.393120pt;}
.ws28{word-spacing:-0.389376pt;}
.ws2b{word-spacing:-0.379392pt;}
.ws8e{word-spacing:-0.359424pt;}
.wsa0{word-spacing:-0.355072pt;}
.ws51{word-spacing:-0.349440pt;}
.wsc{word-spacing:-0.344448pt;}
.ws5a{word-spacing:-0.343200pt;}
.ws53{word-spacing:-0.321984pt;}
.ws94{word-spacing:-0.317696pt;}
.ws80{word-spacing:-0.308352pt;}
.ws55{word-spacing:-0.292032pt;}
.ws7{word-spacing:-0.284544pt;}
.ws2a{word-spacing:-0.279552pt;}
.ws56{word-spacing:-0.277056pt;}
.ws30{word-spacing:-0.262080pt;}
.wsac{word-spacing:-0.258336pt;}
.wsa7{word-spacing:-0.247104pt;}
.ws1d{word-spacing:-0.244608pt;}
.wsd{word-spacing:-0.232128pt;}
.ws46{word-spacing:-0.209664pt;}
.ws4a{word-spacing:-0.171200pt;}
.ws82{word-spacing:-0.168480pt;}
.ws83{word-spacing:-0.157248pt;}
.ws9c{word-spacing:-0.140160pt;}
.ws21{word-spacing:-0.109824pt;}
.wsa5{word-spacing:-0.087360pt;}
.ws1f{word-spacing:-0.079872pt;}
.ws61{word-spacing:-0.059904pt;}
.ws6f{word-spacing:-0.049920pt;}
.wsb6{word-spacing:-0.046720pt;}
.ws64{word-spacing:-0.044928pt;}
.ws6e{word-spacing:-0.037440pt;}
.ws71{word-spacing:-0.031200pt;}
.ws26{word-spacing:-0.029952pt;}
.ws72{word-spacing:-0.024960pt;}
.ws76{word-spacing:-0.018720pt;}
.ws73{word-spacing:-0.012480pt;}
.ws88{word-spacing:-0.011232pt;}
.ws7c{word-spacing:-0.009984pt;}
.ws52{word-spacing:-0.007488pt;}
.wse{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.007488pt;}
.ws91{word-spacing:0.009344pt;}
.ws5e{word-spacing:0.014976pt;}
.wsae{word-spacing:0.022464pt;}
.wsa3{word-spacing:0.028032pt;}
.ws58{word-spacing:0.029952pt;}
.wsf{word-spacing:0.031200pt;}
.wsb5{word-spacing:0.037376pt;}
.ws25{word-spacing:0.039936pt;}
.ws9e{word-spacing:0.046720pt;}
.ws77{word-spacing:0.049920pt;}
.ws1{word-spacing:0.059904pt;}
.ws39{word-spacing:0.089056pt;}
.ws78{word-spacing:0.089856pt;}
.ws79{word-spacing:0.099840pt;}
.ws36{word-spacing:0.129536pt;}
.ws7f{word-spacing:0.129792pt;}
.ws54{word-spacing:0.142272pt;}
.ws4b{word-spacing:0.157248pt;}
.wsa9{word-spacing:0.164736pt;}
.ws38{word-spacing:0.170016pt;}
.ws85{word-spacing:0.190944pt;}
.ws35{word-spacing:0.194304pt;}
.wsb0{word-spacing:0.196224pt;}
.ws0{word-spacing:0.199680pt;}
.ws84{word-spacing:0.202176pt;}
.wsb3{word-spacing:0.205568pt;}
.wsab{word-spacing:0.209664pt;}
.ws45{word-spacing:0.214656pt;}
.ws3c{word-spacing:0.214912pt;}
.ws4f{word-spacing:0.219648pt;}
.ws87{word-spacing:0.224640pt;}
.ws47{word-spacing:0.234624pt;}
.ws10{word-spacing:0.239616pt;}
.ws6d{word-spacing:0.261632pt;}
.ws20{word-spacing:0.269568pt;}
.ws67{word-spacing:0.280800pt;}
.wsaf{word-spacing:0.293280pt;}
.ws5c{word-spacing:0.299520pt;}
.ws5f{word-spacing:0.307008pt;}
.ws23{word-spacing:0.309504pt;}
.ws75{word-spacing:0.318240pt;}
.ws9a{word-spacing:0.336384pt;}
.ws70{word-spacing:0.343200pt;}
.wsb4{word-spacing:0.345728pt;}
.wsb1{word-spacing:0.355072pt;}
.ws5b{word-spacing:0.359424pt;}
.ws86{word-spacing:0.370656pt;}
.ws8c{word-spacing:0.389376pt;}
.wsa2{word-spacing:0.448512pt;}
.ws57{word-spacing:0.449280pt;}
.ws63{word-spacing:0.471744pt;}
.ws92{word-spacing:0.476544pt;}
.ws3e{word-spacing:0.486720pt;}
.ws24{word-spacing:0.509184pt;}
.ws41{word-spacing:0.511680pt;}
.ws3a{word-spacing:0.519168pt;}
.ws44{word-spacing:0.544128pt;}
.ws48{word-spacing:0.554112pt;}
.ws49{word-spacing:0.559104pt;}
.ws40{word-spacing:0.561600pt;}
.ws9d{word-spacing:0.616704pt;}
.ws59{word-spacing:0.628992pt;}
.wsb2{word-spacing:0.644736pt;}
.ws74{word-spacing:0.673920pt;}
.ws8d{word-spacing:0.698880pt;}
.ws3f{word-spacing:0.823680pt;}
.wsa6{word-spacing:0.953088pt;}
.ws96{word-spacing:1.083904pt;}
.ws37{word-spacing:1.093248pt;}
.wsa4{word-spacing:1.111936pt;}
.ws9b{word-spacing:1.224064pt;}
.wsa1{word-spacing:1.270784pt;}
.ws34{word-spacing:1.289472pt;}
.ws81{word-spacing:1.298816pt;}
.ws9f{word-spacing:1.308160pt;}
.ws8b{word-spacing:1.317504pt;}
.ws90{word-spacing:1.364224pt;}
.ws93{word-spacing:1.448320pt;}
.ws99{word-spacing:1.457664pt;}
.ws98{word-spacing:1.541760pt;}
.ws97{word-spacing:1.569792pt;}
.ws95{word-spacing:1.607168pt;}
.ws6c{word-spacing:193.564544pt;}
.ws6b{word-spacing:243.651840pt;}
.ws6a{word-spacing:696.653280pt;}
._1c{margin-left:-1311.635520pt;}
._20{margin-left:-1287.292032pt;}
._29{margin-left:-1235.033280pt;}
._2e{margin-left:-1222.475904pt;}
._24{margin-left:-1160.932032pt;}
._18{margin-left:-1072.798272pt;}
._1d{margin-left:-1005.320160pt;}
._2c{margin-left:-998.157888pt;}
._26{margin-left:-950.268384pt;}
._25{margin-left:-861.711552pt;}
._1b{margin-left:-768.276288pt;}
._1a{margin-left:-762.196032pt;}
._19{margin-left:-755.793792pt;}
._2b{margin-left:-720.727488pt;}
._1f{margin-left:-719.649216pt;}
._1e{margin-left:-697.155264pt;}
._22{margin-left:-695.717568pt;}
._2a{margin-left:-670.730112pt;}
._21{margin-left:-662.463360pt;}
._28{margin-left:-614.869632pt;}
._2d{margin-left:-589.837248pt;}
._23{margin-left:-581.480640pt;}
._27{margin-left:-550.293120pt;}
._0{margin-left:-13.952640pt;}
._13{margin-left:-11.022336pt;}
._c{margin-left:-9.347520pt;}
._4{margin-left:-7.131072pt;}
._3{margin-left:-6.211296pt;}
._b{margin-left:-4.882176pt;}
._7{margin-left:-3.422016pt;}
._6{margin-left:-1.931904pt;}
._1{margin-left:-0.958464pt;}
._2{width:0.958464pt;}
._2f{width:2.511680pt;}
._17{width:3.848832pt;}
._8{width:14.805024pt;}
._32{width:15.936960pt;}
._5{width:17.862624pt;}
._16{width:19.900288pt;}
._a{width:22.102080pt;}
._d{width:23.185344pt;}
._e{width:24.568128pt;}
._f{width:26.098176pt;}
._10{width:27.101568pt;}
._11{width:28.184832pt;}
._12{width:29.422848pt;}
._14{width:32.560320pt;}
._15{width:34.981440pt;}
._9{width:49.261056pt;}
._31{width:100.874592pt;}
._30{width:107.409280pt;}
.fs5{font-size:49.920000pt;}
.fs4{font-size:62.400000pt;}
.fsa{font-size:68.480000pt;}
.fs3{font-size:74.880000pt;}
.fs9{font-size:80.960000pt;}
.fs2{font-size:87.360000pt;}
.fs8{font-size:93.440000pt;}
.fs1{font-size:99.840000pt;}
.fsb{font-size:112.320000pt;}
.fs7{font-size:124.800000pt;}
.fs6{font-size:199.680000pt;}
.fs0{font-size:249.600000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:99.866800pt;}
.y9{bottom:100.105723pt;}
.y22{bottom:101.226800pt;}
.yb{bottom:101.306667pt;}
.y19{bottom:101.386800pt;}
.y8{bottom:120.345787pt;}
.y60{bottom:130.427083pt;}
.ya6{bottom:135.866800pt;}
.y36{bottom:135.945851pt;}
.ya0{bottom:140.827187pt;}
.y4b{bottom:143.626667pt;}
.y7{bottom:146.746603pt;}
.y93{bottom:147.074603pt;}
.y21{bottom:148.108715pt;}
.y48{bottom:149.386667pt;}
.ya5{bottom:158.346667pt;}
.y85{bottom:159.706587pt;}
.y3f{bottom:160.504987pt;}
.yb4{bottom:161.782827pt;}
.y4a{bottom:165.706795pt;}
.y6{bottom:166.986667pt;}
.yd8{bottom:167.704747pt;}
.y82{bottom:167.786627pt;}
.y47{bottom:173.146667pt;}
.y35{bottom:173.385803pt;}
.y92{bottom:173.954027pt;}
.y5f{bottom:174.587563pt;}
.y84{bottom:175.866627pt;}
.y18{bottom:176.426115pt;}
.y81{bottom:183.946667pt;}
.y20{bottom:184.348139pt;}
.y49{bottom:186.346667pt;}
.y9f{bottom:186.667787pt;}
.yb3{bottom:187.063019pt;}
.yc5{bottom:187.303019pt;}
.y83{bottom:192.026667pt;}
.yd7{bottom:192.905515pt;}
.ycf{bottom:194.344443pt;}
.y17{bottom:200.026419pt;}
.y2c{bottom:200.744987pt;}
.y91{bottom:200.913323pt;}
.y3e{bottom:209.785387pt;}
.y34{bottom:210.906715pt;}
.yc4{bottom:212.503787pt;}
.y5e{bottom:218.826667pt;}
.y5{bottom:223.946667pt;}
.y90{bottom:227.872619pt;}
.yb2{bottom:227.943019pt;}
.y46{bottom:228.826667pt;}
.y9e{bottom:232.587011pt;}
.yd6{bottom:233.785515pt;}
.y2b{bottom:234.425387pt;}
.y80{bottom:237.466587pt;}
.yc3{bottom:237.783979pt;}
.y16{bottom:239.146227pt;}
.y45{bottom:245.226667pt;}
.y7d{bottom:245.546627pt;}
.y33{bottom:248.346667pt;}
.yb1{bottom:253.143787pt;}
.y7f{bottom:253.626627pt;}
.y8f{bottom:254.752043pt;}
.y5b{bottom:257.705755pt;}
.y5d{bottom:258.826667pt;}
.y3d{bottom:259.065787pt;}
.yce{bottom:261.705555pt;}
.y7c{bottom:261.706667pt;}
.yc2{bottom:263.064171pt;}
.y59{bottom:268.986427pt;}
.y44{bottom:269.066667pt;}
.y7e{bottom:269.786667pt;}
.yd5{bottom:274.586091pt;}
.yba{bottom:274.824939pt;}
.y5c{bottom:278.265931pt;}
.y15{bottom:278.346843pt;}
.yb0{bottom:278.423979pt;}
.y9d{bottom:278.506235pt;}
.y5a{bottom:280.186603pt;}
.y8e{bottom:281.711339pt;}
.y2a{bottom:283.624667pt;}
.y32{bottom:286.506667pt;}
.y4{bottom:287.627371pt;}
.yc1{bottom:288.264939pt;}
.y1f{bottom:293.228651pt;}
.yb9{bottom:300.025707pt;}
.y14{bottom:301.866339pt;}
.y3c{bottom:308.346187pt;}
.y8d{bottom:308.670635pt;}
.y76{bottom:312.106587pt;}
.y79{bottom:315.226587pt;}
.yd4{bottom:315.466091pt;}
.y29{bottom:317.305067pt;}
.y58{bottom:319.146667pt;}
.yaf{bottom:319.224555pt;}
.y3{bottom:320.826667pt;}
.y7b{bottom:323.306627pt;}
.y9c{bottom:324.346835pt;}
.y13{bottom:325.466643pt;}
.y75{bottom:328.266627pt;}
.y43{bottom:328.346667pt;}
.ycd{bottom:329.066667pt;}
.yc0{bottom:329.144939pt;}
.y1e{bottom:329.547947pt;}
.y31{bottom:329.786707pt;}
.y78{bottom:331.386627pt;}
.y8c{bottom:335.629931pt;}
.y7a{bottom:339.466667pt;}
.yb8{bottom:340.905707pt;}
.y3b{bottom:342.026587pt;}
.yae{bottom:344.504747pt;}
.y42{bottom:346.186667pt;}
.y77{bottom:347.546667pt;}
.y12{bottom:349.066947pt;}
.y74{bottom:350.666667pt;}
.y28{bottom:350.985467pt;}
.y2{bottom:353.946667pt;}
.ybf{bottom:354.345707pt;}
.y9b{bottom:354.667619pt;}
.yd3{bottom:356.346091pt;}
.y55{bottom:357.306667pt;}
.y30{bottom:360.986667pt;}
.y8b{bottom:362.509355pt;}
.y1d{bottom:365.867243pt;}
.yb7{bottom:366.185899pt;}
.yad{bottom:369.784939pt;}
.y57{bottom:376.745819pt;}
.y54{bottom:376.747579pt;}
.ybe{bottom:379.625899pt;}
.y27{bottom:384.665867pt;}
.ycc{bottom:385.146667pt;}
.y73{bottom:386.747387pt;}
.y11{bottom:388.186755pt;}
.y8a{bottom:389.468651pt;}
.y2f{bottom:389.866667pt;}
.y6e{bottom:389.946587pt;}
.y3a{bottom:391.225867pt;}
.y1c{bottom:392.746667pt;}
.y6b{bottom:392.986587pt;}
.yd2{bottom:397.146667pt;}
.y56{bottom:399.226667pt;}
.y53{bottom:399.228427pt;}
.y9a{bottom:400.586843pt;}
.y70{bottom:401.066627pt;}
.y6d{bottom:406.106627pt;}
.yb6{bottom:406.986475pt;}
.y6a{bottom:409.146627pt;}
.y72{bottom:409.226987pt;}
.yac{bottom:410.585515pt;}
.y10{bottom:411.787059pt;}
.y89{bottom:416.427947pt;}
.y41{bottom:416.746667pt;}
.y6f{bottom:417.226667pt;}
.y26{bottom:418.346267pt;}
.ybd{bottom:420.505899pt;}
.y69{bottom:425.306667pt;}
.ya4{bottom:427.067947pt;}
.y6c{bottom:428.506667pt;}
.y71{bottom:431.627027pt;}
.yb5{bottom:432.266667pt;}
.y40{bottom:434.586667pt;}
.yf{bottom:435.306555pt;}
.yab{bottom:435.865707pt;}
.y52{bottom:438.107995pt;}
.ycb{bottom:439.145819pt;}
.y88{bottom:443.307371pt;}
.ybc{bottom:445.706667pt;}
.y99{bottom:446.427443pt;}
.y25{bottom:452.026667pt;}
.yaa{bottom:461.145899pt;}
.yca{bottom:461.626667pt;}
.y64{bottom:467.706587pt;}
.y1b{bottom:468.427371pt;}
.yd1{bottom:469.466667pt;}
.ya3{bottom:469.627243pt;}
.y87{bottom:470.266667pt;}
.ye{bottom:474.507171pt;}
.y66{bottom:475.786627pt;}
.y1{bottom:476.106667pt;}
.yc7{bottom:476.745707pt;}
.y68{bottom:478.906627pt;}
.y51{bottom:482.347099pt;}
.y63{bottom:483.866627pt;}
.yc9{bottom:486.187515pt;}
.ybb{bottom:486.586667pt;}
.y39{bottom:489.786667pt;}
.y95{bottom:490.106667pt;}
.y98{bottom:492.346667pt;}
.y67{bottom:495.066667pt;}
.y1a{bottom:495.386667pt;}
.yd{bottom:498.026667pt;}
.y65{bottom:498.186667pt;}
.ya9{bottom:501.946475pt;}
.yd0{bottom:504.746667pt;}
.y62{bottom:506.266667pt;}
.ya2{bottom:512.106667pt;}
.yc8{bottom:519.866667pt;}
.y50{bottom:520.506667pt;}
.ya8{bottom:527.226667pt;}
.y4e{bottom:530.586667pt;}
.y24{bottom:539.467691pt;}
.y4f{bottom:539.946667pt;}
.y94{bottom:546.986667pt;}
.y61{bottom:551.466667pt;}
.y38{bottom:554.906667pt;}
.y97{bottom:555.706667pt;}
.ya1{bottom:556.826667pt;}
.yc6{bottom:573.306667pt;}
.ya7{bottom:575.786667pt;}
.y2e{bottom:583.306667pt;}
.y23{bottom:599.386667pt;}
.y4d{bottom:608.506667pt;}
.y86{bottom:608.586667pt;}
.y96{bottom:608.906667pt;}
.yc{bottom:608.986667pt;}
.y2d{bottom:618.986667pt;}
.y37{bottom:671.226667pt;}
.ya{bottom:687.466667pt;}
.h8{height:36.367500pt;}
.h13{height:45.428906pt;}
.h7{height:45.459375pt;}
.hf{height:49.888750pt;}
.h6{height:54.514687pt;}
.he{height:54.551250pt;}
.hd{height:58.980625pt;}
.h5{height:63.600469pt;}
.ha{height:63.643125pt;}
.hc{height:68.072500pt;}
.h4{height:72.686250pt;}
.h3{height:72.735000pt;}
.h10{height:78.099535pt;}
.h12{height:81.826875pt;}
.hb{height:90.918750pt;}
.h11{height:131.107195pt;}
.h9{height:145.470000pt;}
.h2{height:181.837500pt;}
.h1{height:793.333333pt;}
.h0{height:793.626667pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xe{left:25.347333pt;}
.x63{left:32.147333pt;}
.x65{left:38.627467pt;}
.x1{left:53.427467pt;}
.x8{left:60.708661pt;}
.x60{left:64.307333pt;}
.x5{left:65.827333pt;}
.x64{left:67.187333pt;}
.xc{left:69.987333pt;}
.x66{left:73.667467pt;}
.x5f{left:75.587467pt;}
.x6{left:78.307333pt;}
.x61{left:79.748525pt;}
.x3f{left:82.147333pt;}
.x27{left:83.427467pt;}
.x59{left:84.787333pt;}
.x13{left:85.988347pt;}
.x4e{left:89.027333pt;}
.x40{left:96.947053pt;}
.xf{left:101.107333pt;}
.xd{left:105.187429pt;}
.x10{left:116.547589pt;}
.x4f{left:211.507453pt;}
.x5b{left:213.666493pt;}
.x50{left:217.107853pt;}
.x5a{left:218.387053pt;}
.x42{left:222.706453pt;}
.x43{left:223.906093pt;}
.x41{left:229.667173pt;}
.x3{left:290.547333pt;}
.xa{left:305.187333pt;}
.x26{left:335.587333pt;}
.x32{left:338.308021pt;}
.x36{left:340.386885pt;}
.x7{left:346.227973pt;}
.x44{left:347.667853pt;}
.x5c{left:351.107173pt;}
.x31{left:352.387333pt;}
.x33{left:356.707333pt;}
.x2{left:359.507333pt;}
.x25{left:363.827333pt;}
.x4{left:402.467973pt;}
.x62{left:412.867333pt;}
.x9{left:430.788085pt;}
.x2f{left:443.587605pt;}
.x24{left:446.067333pt;}
.x35{left:450.866709pt;}
.x39{left:455.667253pt;}
.x51{left:457.426893pt;}
.x2e{left:462.867333pt;}
.x30{left:467.187333pt;}
.x5d{left:472.147053pt;}
.x23{left:473.747333pt;}
.x3a{left:476.547853pt;}
.x38{left:478.627333pt;}
.x52{left:485.187093pt;}
.x11{left:529.347333pt;}
.x34{left:560.305701pt;}
.x2d{left:562.627333pt;}
.x2c{left:568.146917pt;}
.x12{left:569.907333pt;}
.x22{left:573.747333pt;}
.x15{left:581.107333pt;}
.x21{left:582.707333pt;}
.x53{left:585.427333pt;}
.x3c{left:591.907093pt;}
.x54{left:594.948013pt;}
.x4c{left:596.227253pt;}
.x3b{left:598.387333pt;}
.x45{left:601.027333pt;}
.x4b{left:603.587333pt;}
.x55{left:604.947613pt;}
.x4d{left:606.226853pt;}
.x1a{left:607.987333pt;}
.x20{left:659.667333pt;}
.x2a{left:664.548683pt;}
.x16{left:672.787333pt;}
.x29{left:678.627995pt;}
.x37{left:679.665269pt;}
.x2b{left:683.827333pt;}
.x1f{left:689.506549pt;}
.x17{left:696.467333pt;}
.x14{left:706.787333pt;}
.x3d{left:708.627333pt;}
.x58{left:710.867133pt;}
.x19{left:715.667333pt;}
.x46{left:717.427933pt;}
.x3e{left:719.107413pt;}
.x57{left:724.306533pt;}
.x5e{left:726.467333pt;}
.x56{left:738.627333pt;}
.x28{left:768.467147pt;}
.x18{left:774.787333pt;}
.x1e{left:813.427333pt;}
.x1b{left:866.147333pt;}
.x48{left:868.708933pt;}
.x47{left:874.788253pt;}
.x1c{left:877.586917pt;}
.x1d{left:918.867333pt;}
.x4a{left:969.907453pt;}
.x49{left:990.067333pt;}
.xb{left:1033.107333pt;}
}




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