
    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_01a0de07353f1d1df8d7cf31.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_55050f313d696956476a7abe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_351ddcc419e0cb8dfef9da36.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_91f059dc40acd29c8867598e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_68abc97f933a09ba37f17d10.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_e948fedc3e0ec3f60dc4244f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959473;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_e6e3fdafb06256f45fdcf1f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_2cfb2d505a06ebaf56ae1da4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_4a66fe8a7758deff5974178c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_8c4f1d2944fde89cd58df632.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.954000;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_7634e8f2b5231ab72bb46e44.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.748000;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_8c4f1d2944fde89cd58df632.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.954000;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_0bc013904af337dea941ca39.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.756000;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_5e56edc15476c9e1f2a5485f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.949219;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-19.980000px;}
.v2{vertical-align:-17.982000px;}
.v6{vertical-align:-15.984000px;}
.v3{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.982000px;}
.v4{vertical-align:19.980000px;}
.lsa{letter-spacing:-5.351940px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.004296px;}
.ls3{letter-spacing:0.004608px;}
.ls7{letter-spacing:0.004896px;}
.ls2{letter-spacing:0.004920px;}
.ls4{letter-spacing:0.005208px;}
.ls1{letter-spacing:0.005520px;}
.ls9{letter-spacing:0.008400px;}
.ls6{letter-spacing:2.160000px;}
.ls5{letter-spacing:6.048000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.016000px;}
.ws19{word-spacing:-16.680000px;}
.ws73{word-spacing:-15.012000px;}
.ws6c{word-spacing:-13.344000px;}
.ws29{word-spacing:-10.602809px;}
.ws4a{word-spacing:-6.048000px;}
.ws7b{word-spacing:-4.816746px;}
.ws5{word-spacing:-4.680000px;}
.ws21{word-spacing:-3.600000px;}
.ws5e{word-spacing:-3.480000px;}
.ws3f{word-spacing:-3.420000px;}
.ws22{word-spacing:-2.916000px;}
.ws4c{word-spacing:-2.160000px;}
.ws41{word-spacing:-2.040000px;}
.ws46{word-spacing:-1.890000px;}
.ws3c{word-spacing:-1.740000px;}
.ws6a{word-spacing:-1.674000px;}
.wse{word-spacing:-1.620000px;}
.ws30{word-spacing:-1.512000px;}
.ws15{word-spacing:-1.458000px;}
.ws68{word-spacing:-1.404000px;}
.ws7a{word-spacing:-1.350000px;}
.ws63{word-spacing:-1.260000px;}
.ws3e{word-spacing:-1.200000px;}
.ws6b{word-spacing:-0.918000px;}
.ws1e{word-spacing:-0.900000px;}
.ws2c{word-spacing:-0.600000px;}
.ws4{word-spacing:-0.480000px;}
.ws66{word-spacing:-0.432000px;}
.ws18{word-spacing:-0.324000px;}
.ws60{word-spacing:-0.120000px;}
.ws6d{word-spacing:-0.048000px;}
.ws2a{word-spacing:-0.046657px;}
.ws1{word-spacing:0.000000px;}
.ws31{word-spacing:0.054000px;}
.ws7{word-spacing:0.300000px;}
.ws25{word-spacing:0.486000px;}
.ws51{word-spacing:0.810000px;}
.ws42{word-spacing:0.960000px;}
.ws1d{word-spacing:1.020000px;}
.ws26{word-spacing:1.458000px;}
.wsf{word-spacing:1.560000px;}
.ws14{word-spacing:1.566000px;}
.ws1f{word-spacing:1.620000px;}
.ws28{word-spacing:1.836000px;}
.ws4e{word-spacing:1.890000px;}
.ws2e{word-spacing:2.160000px;}
.wsd{word-spacing:2.220000px;}
.ws23{word-spacing:2.484000px;}
.ws2b{word-spacing:2.520000px;}
.ws45{word-spacing:2.700000px;}
.ws32{word-spacing:2.862000px;}
.ws20{word-spacing:2.880000px;}
.ws27{word-spacing:2.970000px;}
.ws5d{word-spacing:3.300000px;}
.ws44{word-spacing:3.348000px;}
.ws33{word-spacing:3.402000px;}
.ws11{word-spacing:3.420000px;}
.ws9{word-spacing:3.660000px;}
.ws67{word-spacing:3.726000px;}
.ws4d{word-spacing:3.996000px;}
.wsc{word-spacing:4.320000px;}
.ws38{word-spacing:4.380000px;}
.ws16{word-spacing:4.590000px;}
.ws56{word-spacing:4.680000px;}
.ws40{word-spacing:4.740000px;}
.ws17{word-spacing:4.860000px;}
.ws3a{word-spacing:4.980000px;}
.ws43{word-spacing:5.238000px;}
.ws7c{word-spacing:5.351940px;}
.ws24{word-spacing:5.454000px;}
.ws3{word-spacing:5.460000px;}
.ws2{word-spacing:5.760000px;}
.ws34{word-spacing:5.940000px;}
.wsa{word-spacing:6.600000px;}
.ws54{word-spacing:7.860000px;}
.ws39{word-spacing:8.220000px;}
.wsb{word-spacing:8.340000px;}
.ws76{word-spacing:8.496000px;}
.ws12{word-spacing:8.640000px;}
.ws6{word-spacing:8.820000px;}
.ws1a{word-spacing:9.780000px;}
.ws69{word-spacing:9.990000px;}
.ws8{word-spacing:10.620000px;}
.ws7d{word-spacing:10.638000px;}
.ws2f{word-spacing:11.178000px;}
.ws1c{word-spacing:12.060000px;}
.ws57{word-spacing:12.240000px;}
.ws53{word-spacing:12.582000px;}
.ws5c{word-spacing:13.200000px;}
.ws2d{word-spacing:13.800000px;}
.ws1b{word-spacing:14.820000px;}
.ws5f{word-spacing:14.940000px;}
.ws50{word-spacing:15.390000px;}
.ws77{word-spacing:17.580000px;}
.ws59{word-spacing:19.920000px;}
.ws4b{word-spacing:19.926000px;}
.ws13{word-spacing:20.400000px;}
.ws79{word-spacing:21.114000px;}
.ws10{word-spacing:21.480000px;}
.ws61{word-spacing:22.140000px;}
.ws65{word-spacing:23.340000px;}
.ws55{word-spacing:25.560000px;}
.ws47{word-spacing:28.890000px;}
.ws5a{word-spacing:29.940000px;}
.ws5b{word-spacing:31.560000px;}
.ws35{word-spacing:35.580000px;}
.ws64{word-spacing:38.220000px;}
.ws36{word-spacing:39.900000px;}
.ws3b{word-spacing:44.460000px;}
.ws62{word-spacing:44.940000px;}
.ws37{word-spacing:49.980000px;}
.ws4f{word-spacing:51.840000px;}
.ws49{word-spacing:54.432000px;}
.ws3d{word-spacing:66.480000px;}
.ws78{word-spacing:72.198000px;}
.ws58{word-spacing:73.200000px;}
.ws48{word-spacing:96.822000px;}
.ws52{word-spacing:111.888000px;}
.ws75{word-spacing:134.466600px;}
.ws6e{word-spacing:149.479200px;}
.ws74{word-spacing:156.997800px;}
.ws72{word-spacing:171.996600px;}
.ws71{word-spacing:179.503200px;}
.ws6f{word-spacing:194.514600px;}
.ws70{word-spacing:203.053200px;}
._2{margin-left:-1096.128000px;}
._17{margin-left:-15.314400px;}
._3{margin-left:-6.981600px;}
._0{margin-left:-5.875200px;}
._1{margin-left:-3.938400px;}
._4{margin-left:-1.940400px;}
._8{width:1.024200px;}
._9{width:2.040000px;}
._a{width:3.162000px;}
._c{width:4.562400px;}
._7{width:5.706000px;}
._6{width:6.738000px;}
._b{width:7.818000px;}
._10{width:8.876400px;}
._e{width:10.130400px;}
._f{width:11.593200px;}
._13{width:13.112400px;}
._d{width:14.136000px;}
._11{width:15.498000px;}
._15{width:18.204000px;}
._18{width:19.920000px;}
._16{width:21.006000px;}
._12{width:22.668000px;}
._1d{width:24.882000px;}
._25{width:26.592000px;}
._21{width:27.738000px;}
._1c{width:29.922000px;}
._1f{width:33.282000px;}
._1a{width:34.398000px;}
._22{width:36.594000px;}
._20{width:46.560000px;}
._24{width:59.922000px;}
._23{width:63.156000px;}
._1b{width:66.594000px;}
._26{width:69.768000px;}
._33{width:72.914400px;}
._1e{width:89.886000px;}
._32{width:96.458400px;}
._19{width:103.236000px;}
._31{width:198.313200px;}
._34{width:203.053800px;}
._28{width:218.065200px;}
._2e{width:225.576000px;}
._2b{width:229.798200px;}
._2c{width:248.089200px;}
._35{width:258.247200px;}
._2a{width:263.101800px;}
._2d{width:268.237800px;}
._30{width:325.756200px;}
._27{width:337.798200px;}
._2f{width:343.792200px;}
._29{width:390.339600px;}
._5{width:522.825000px;}
._14{width:2618.633400px;}
.fc8{color:rgb(30,90,164);}
.fc7{color:rgb(26,94,175);}
.fc6{color:rgb(210,219,234);}
.fc4{color:transparent;}
.fc3{color:rgb(35,80,169);}
.fc5{color:rgb(35,31,32);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(239,46,49);}
.fse{font-size:27.984000px;}
.fsa{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fsd{font-size:38.139600px;}
.fsb{font-size:46.656600px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:51.322800px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:3.823350px;}
.ye0{bottom:16.498642px;}
.ye2{bottom:16.626947px;}
.ye4{bottom:16.720260px;}
.yd8{bottom:16.743589px;}
.ye6{bottom:16.965208px;}
.yda{bottom:17.070185px;}
.yde{bottom:17.081849px;}
.yd6{bottom:17.140170px;}
.ydc{bottom:17.210155px;}
.yd4{bottom:17.420109px;}
.yd2{bottom:17.618400px;}
.ye5{bottom:24.745196px;}
.yee{bottom:30.719100px;}
.ye3{bottom:40.771738px;}
.y43{bottom:42.750000px;}
.ycb{bottom:48.297000px;}
.y127{bottom:49.360050px;}
.y4c{bottom:50.933250px;}
.y11d{bottom:51.145800px;}
.y9a{bottom:51.962700px;}
.y7b{bottom:53.805150px;}
.ye1{bottom:58.046344px;}
.y42{bottom:60.750000px;}
.yca{bottom:64.497000px;}
.y126{bottom:65.560050px;}
.y4b{bottom:67.133250px;}
.y11c{bottom:67.345800px;}
.y99{bottom:69.962700px;}
.y6{bottom:70.518900px;}
.y7a{bottom:71.805150px;}
.ydf{bottom:74.481131px;}
.y174{bottom:75.283500px;}
.y179{bottom:75.283650px;}
.y41{bottom:78.750000px;}
.y4a{bottom:83.333250px;}
.y11b{bottom:83.545800px;}
.yc5{bottom:83.994150px;}
.y98{bottom:87.962700px;}
.y79{bottom:89.805150px;}
.ydd{bottom:90.146085px;}
.ye7{bottom:92.978400px;}
.y40{bottom:96.750000px;}
.y49{bottom:99.533250px;}
.y11a{bottom:99.745800px;}
.yc4{bottom:101.994150px;}
.y173{bottom:107.648550px;}
.ydb{bottom:107.665638px;}
.y78{bottom:107.805150px;}
.y5{bottom:113.718900px;}
.y3f{bottom:114.750000px;}
.y48{bottom:115.733250px;}
.y119{bottom:115.945800px;}
.y178{bottom:116.691600px;}
.yc3{bottom:119.994150px;}
.yd9{bottom:123.913799px;}
.y97{bottom:123.962700px;}
.y172{bottom:125.648550px;}
.y77{bottom:125.805150px;}
.y118{bottom:132.145800px;}
.y3e{bottom:132.750000px;}
.y4{bottom:135.318900px;}
.yc2{bottom:137.994150px;}
.yd7{bottom:140.418571px;}
.y96{bottom:141.962700px;}
.y171{bottom:143.648550px;}
.y76{bottom:143.805150px;}
.yed{bottom:146.570850px;}
.y117{bottom:148.345800px;}
.y3d{bottom:150.750000px;}
.yef{bottom:151.818000px;}
.y177{bottom:152.691600px;}
.yc1{bottom:155.994150px;}
.yec{bottom:156.537750px;}
.yd5{bottom:156.946672px;}
.y95{bottom:159.962700px;}
.y75{bottom:161.805150px;}
.y116{bottom:164.545800px;}
.yeb{bottom:166.255050px;}
.y3c{bottom:168.750000px;}
.y170{bottom:170.152500px;}
.y176{bottom:170.691600px;}
.yd3{bottom:174.197950px;}
.yea{bottom:175.426350px;}
.y94{bottom:177.962700px;}
.y74{bottom:179.805150px;}
.y115{bottom:180.745800px;}
.ye9{bottom:184.480350px;}
.y16f{bottom:186.352500px;}
.y3b{bottom:186.750000px;}
.y175{bottom:188.691600px;}
.yd1{bottom:189.824550px;}
.yc0{bottom:191.994150px;}
.y93{bottom:195.962700px;}
.y114{bottom:196.945800px;}
.yf2{bottom:197.805150px;}
.y3a{bottom:204.750000px;}
.ybf{bottom:209.994150px;}
.y9e{bottom:210.849900px;}
.y16e{bottom:211.431450px;}
.y113{bottom:213.145800px;}
.y92{bottom:213.962700px;}
.yf1{bottom:215.805150px;}
.y17e{bottom:217.799400px;}
.y9d{bottom:227.049750px;}
.ybe{bottom:227.994150px;}
.y112{bottom:229.345800px;}
.y91{bottom:231.962700px;}
.y16d{bottom:233.556450px;}
.yb4{bottom:233.805150px;}
.y17d{bottom:233.999400px;}
.y47{bottom:241.251450px;}
.y9c{bottom:243.249750px;}
.y111{bottom:245.545800px;}
.ybd{bottom:245.994150px;}
.y16c{bottom:249.756450px;}
.y90{bottom:249.962700px;}
.y17c{bottom:250.199400px;}
.yb3{bottom:251.805150px;}
.y46{bottom:257.451300px;}
.y9b{bottom:259.449900px;}
.y110{bottom:261.745800px;}
.ybc{bottom:263.994150px;}
.y17b{bottom:266.399400px;}
.y8f{bottom:267.962700px;}
.yb2{bottom:269.805150px;}
.y16b{bottom:271.881450px;}
.y45{bottom:273.651300px;}
.y10f{bottom:277.945800px;}
.ybb{bottom:281.994150px;}
.y17a{bottom:282.599400px;}
.y8e{bottom:285.962700px;}
.yb1{bottom:287.805150px;}
.y44{bottom:289.851450px;}
.y16a{bottom:294.006450px;}
.yba{bottom:299.994150px;}
.y8d{bottom:303.962700px;}
.yb0{bottom:305.805150px;}
.y169{bottom:316.131450px;}
.yb9{bottom:317.994150px;}
.y8c{bottom:321.962700px;}
.yaf{bottom:323.805150px;}
.y35{bottom:330.750000px;}
.y168{bottom:338.256450px;}
.yae{bottom:341.805150px;}
.y34{bottom:348.750000px;}
.yb8{bottom:353.994150px;}
.y8b{bottom:357.962700px;}
.yad{bottom:359.805150px;}
.y167{bottom:360.381450px;}
.y33{bottom:366.750000px;}
.yb7{bottom:371.994150px;}
.y8a{bottom:375.962700px;}
.y166{bottom:376.581450px;}
.yac{bottom:377.805150px;}
.y32{bottom:384.750000px;}
.yb6{bottom:389.994150px;}
.y89{bottom:393.962700px;}
.yab{bottom:395.805150px;}
.y165{bottom:398.706450px;}
.y31{bottom:402.750000px;}
.y11f{bottom:405.249900px;}
.yb5{bottom:407.994150px;}
.y88{bottom:411.962700px;}
.yaa{bottom:413.805150px;}
.y30{bottom:420.750000px;}
.y164{bottom:420.831450px;}
.y11e{bottom:421.449900px;}
.y87{bottom:429.962700px;}
.ya9{bottom:431.805150px;}
.y2f{bottom:438.750000px;}
.ycf{bottom:441.306600px;}
.y163{bottom:442.956450px;}
.y86{bottom:447.962700px;}
.ya8{bottom:449.805150px;}
.y2e{bottom:456.750000px;}
.yce{bottom:457.506600px;}
.y162{bottom:465.081450px;}
.y85{bottom:465.962700px;}
.y73{bottom:467.805150px;}
.ycd{bottom:473.706600px;}
.y2d{bottom:474.750000px;}
.y161{bottom:481.281450px;}
.y84{bottom:483.962700px;}
.y72{bottom:485.805150px;}
.ycc{bottom:489.906600px;}
.y2c{bottom:492.750000px;}
.y71{bottom:503.805150px;}
.y160{bottom:508.033500px;}
.y2b{bottom:510.750000px;}
.y70{bottom:521.805150px;}
.ya6{bottom:521.923800px;}
.y15f{bottom:526.033500px;}
.y2a{bottom:528.750000px;}
.ya5{bottom:538.123800px;}
.y6f{bottom:539.805150px;}
.y108{bottom:542.214600px;}
.y15e{bottom:544.033500px;}
.y29{bottom:546.750000px;}
.ya4{bottom:554.323800px;}
.y6e{bottom:557.805150px;}
.y107{bottom:560.214600px;}
.y15d{bottom:562.033500px;}
.y28{bottom:564.750000px;}
.y6d{bottom:575.805150px;}
.y106{bottom:578.214600px;}
.y15c{bottom:580.033500px;}
.y39{bottom:582.750000px;}
.y6c{bottom:593.805150px;}
.y105{bottom:596.214600px;}
.y15b{bottom:598.033500px;}
.y27{bottom:600.750000px;}
.y6b{bottom:611.805150px;}
.y125{bottom:612.575850px;}
.y104{bottom:614.214600px;}
.y26{bottom:618.750000px;}
.y124{bottom:628.775700px;}
.y6a{bottom:629.805150px;}
.y103{bottom:632.214600px;}
.y25{bottom:636.750000px;}
.y15a{bottom:642.855150px;}
.y123{bottom:644.975850px;}
.y69{bottom:647.805150px;}
.y102{bottom:650.214600px;}
.ya{bottom:653.148450px;}
.y24{bottom:654.750000px;}
.y159{bottom:657.255150px;}
.y122{bottom:661.175700px;}
.y133{bottom:662.205150px;}
.ya7{bottom:665.805150px;}
.y101{bottom:668.214600px;}
.y158{bottom:671.655150px;}
.y23{bottom:672.750000px;}
.y132{bottom:676.605150px;}
.y121{bottom:677.375850px;}
.y68{bottom:683.805150px;}
.y157{bottom:686.055150px;}
.y100{bottom:686.214600px;}
.y9{bottom:689.148450px;}
.y22{bottom:690.750000px;}
.y131{bottom:691.005150px;}
.y120{bottom:693.575850px;}
.yc9{bottom:696.424650px;}
.y156{bottom:700.455150px;}
.y67{bottom:701.805150px;}
.yff{bottom:704.214600px;}
.y130{bottom:705.405150px;}
.y21{bottom:708.750000px;}
.yc8{bottom:712.624650px;}
.y155{bottom:714.855150px;}
.y66{bottom:719.805150px;}
.y20{bottom:726.750000px;}
.yc7{bottom:728.824650px;}
.y154{bottom:729.255150px;}
.y8{bottom:732.348450px;}
.y12f{bottom:734.205150px;}
.y65{bottom:737.805150px;}
.yfe{bottom:740.214600px;}
.y153{bottom:743.655150px;}
.y1f{bottom:744.750000px;}
.yc6{bottom:745.024650px;}
.y12e{bottom:748.605150px;}
.y10b{bottom:750.041850px;}
.y64{bottom:755.805150px;}
.y152{bottom:758.055150px;}
.yfd{bottom:758.214600px;}
.y1e{bottom:762.750000px;}
.y12d{bottom:763.005150px;}
.y10a{bottom:766.241850px;}
.y151{bottom:772.455150px;}
.y63{bottom:773.805150px;}
.yfc{bottom:776.214600px;}
.y12c{bottom:777.405150px;}
.y38{bottom:780.750000px;}
.y109{bottom:782.441850px;}
.y150{bottom:786.855150px;}
.y62{bottom:791.805150px;}
.yfb{bottom:794.214600px;}
.y1d{bottom:798.750000px;}
.y14f{bottom:801.255150px;}
.y12b{bottom:806.205150px;}
.y61{bottom:809.805150px;}
.yfa{bottom:812.214600px;}
.y14e{bottom:815.655150px;}
.y37{bottom:816.750000px;}
.y12a{bottom:820.605150px;}
.y60{bottom:827.805150px;}
.y14d{bottom:830.055150px;}
.yf9{bottom:830.214600px;}
.y1c{bottom:834.750000px;}
.y129{bottom:835.005150px;}
.y83{bottom:843.962700px;}
.y14c{bottom:844.455150px;}
.y5f{bottom:845.805150px;}
.yf8{bottom:848.214600px;}
.y128{bottom:849.405150px;}
.y1b{bottom:852.750000px;}
.y14b{bottom:858.855150px;}
.y82{bottom:861.962700px;}
.y5e{bottom:863.805150px;}
.yf7{bottom:866.214600px;}
.y1a{bottom:870.750000px;}
.y14a{bottom:873.255150px;}
.y81{bottom:879.962700px;}
.y5d{bottom:881.805150px;}
.yf6{bottom:884.214600px;}
.y7{bottom:885.047250px;}
.y149{bottom:887.655150px;}
.y19{bottom:888.750000px;}
.y80{bottom:897.962700px;}
.yf0{bottom:899.805150px;}
.y148{bottom:902.055150px;}
.yf5{bottom:902.214600px;}
.y18{bottom:906.750000px;}
.y7f{bottom:915.962700px;}
.y147{bottom:916.455150px;}
.y5c{bottom:917.805150px;}
.yf4{bottom:920.214600px;}
.y17{bottom:924.750000px;}
.y146{bottom:930.855150px;}
.y5b{bottom:935.805150px;}
.yf3{bottom:938.214600px;}
.y16{bottom:942.750000px;}
.y145{bottom:945.255150px;}
.y3{bottom:948.688650px;}
.y7e{bottom:951.962700px;}
.y5a{bottom:953.805150px;}
.y144{bottom:959.655150px;}
.y15{bottom:960.750000px;}
.y7d{bottom:969.962700px;}
.y10e{bottom:971.569500px;}
.y59{bottom:971.805150px;}
.y143{bottom:974.055150px;}
.y14{bottom:978.750000px;}
.y10d{bottom:987.769350px;}
.y7c{bottom:987.962700px;}
.y142{bottom:988.455150px;}
.y58{bottom:989.805150px;}
.y13{bottom:996.750000px;}
.yd0{bottom:999.297000px;}
.y141{bottom:1002.855150px;}
.y10c{bottom:1003.969350px;}
.y57{bottom:1007.805150px;}
.y12{bottom:1014.750000px;}
.y140{bottom:1017.255150px;}
.ya3{bottom:1017.831000px;}
.y2{bottom:1021.992600px;}
.y56{bottom:1025.805150px;}
.y13f{bottom:1031.655150px;}
.y11{bottom:1032.750000px;}
.ya2{bottom:1034.030850px;}
.y55{bottom:1043.805150px;}
.y13e{bottom:1046.055150px;}
.ya1{bottom:1050.231000px;}
.y36{bottom:1050.750000px;}
.y13d{bottom:1060.455150px;}
.y54{bottom:1061.805150px;}
.ya0{bottom:1066.431000px;}
.y10{bottom:1068.750000px;}
.y13c{bottom:1074.855150px;}
.y53{bottom:1079.805150px;}
.y9f{bottom:1082.631000px;}
.y13b{bottom:1089.255150px;}
.y52{bottom:1097.805150px;}
.yf{bottom:1099.605150px;}
.y13a{bottom:1103.655150px;}
.y51{bottom:1115.805150px;}
.y139{bottom:1118.055150px;}
.y138{bottom:1132.455150px;}
.y50{bottom:1133.805150px;}
.ye{bottom:1135.605150px;}
.y137{bottom:1146.855150px;}
.y4f{bottom:1151.805150px;}
.y1{bottom:1159.671300px;}
.y136{bottom:1161.255150px;}
.y4e{bottom:1169.805150px;}
.y135{bottom:1175.655150px;}
.yd{bottom:1178.805150px;}
.y4d{bottom:1187.805150px;}
.y134{bottom:1190.055150px;}
.yc{bottom:1226.444850px;}
.yb{bottom:1227.569850px;}
.h10{height:15.154500px;}
.h8{height:26.525391px;}
.h12{height:28.070746px;}
.hc{height:31.101562px;}
.he{height:34.339258px;}
.h17{height:34.479227px;}
.h1b{height:35.367188px;}
.h1c{height:35.568000px;}
.h9{height:35.601562px;}
.hf{height:37.773581px;}
.hb{height:39.788086px;}
.h1d{height:40.051758px;}
.h1a{height:41.178454px;}
.h1e{height:41.332175px;}
.h7{height:44.208984px;}
.ha{height:44.501953px;}
.h19{height:45.753838px;}
.h4{height:53.050781px;}
.h6{height:62.302734px;}
.h2{height:80.103516px;}
.h5{height:106.804688px;}
.h16{height:154.987500px;}
.h3{height:160.207031px;}
.h18{height:160.237500px;}
.h15{height:164.956500px;}
.h14{height:174.675000px;}
.h13{height:183.841500px;}
.h11{height:192.900000px;}
.hd{height:199.758000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:299.935500px;}
.w3{width:370.717500px;}
.w8{width:377.983500px;}
.w4{width:378.046500px;}
.w5{width:378.052500px;}
.w7{width:378.379500px;}
.w6{width:378.457500px;}
.w2{width:393.306000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:10.951050px;}
.x17{left:16.633034px;}
.x10{left:20.203500px;}
.x1c{left:21.916894px;}
.x1b{left:37.896779px;}
.xc{left:41.927850px;}
.xe{left:44.424450px;}
.x1a{left:54.914774px;}
.x23{left:58.275600px;}
.x29{left:64.650600px;}
.x2b{left:66.779550px;}
.x19{left:71.559516px;}
.x18{left:88.204258px;}
.x1e{left:93.176400px;}
.x3{left:97.355100px;}
.x16{left:108.499879px;}
.x15{left:124.934667px;}
.x9{left:129.093150px;}
.x14{left:141.287805px;}
.x13{left:158.130838px;}
.x12{left:174.052402px;}
.x20{left:186.311850px;}
.x11{left:191.443650px;}
.x2{left:222.955200px;}
.xa{left:229.813650px;}
.x25{left:231.229650px;}
.x24{left:236.130750px;}
.x2a{left:247.728900px;}
.x5{left:253.875150px;}
.x8{left:282.129750px;}
.x4{left:289.369800px;}
.x27{left:307.012800px;}
.x7{left:309.444000px;}
.x26{left:316.918050px;}
.x6{left:318.351750px;}
.x21{left:324.586500px;}
.xf{left:340.157550px;}
.x28{left:397.053750px;}
.x2d{left:455.787450px;}
.xd{left:457.086600px;}
.x2c{left:465.590550px;}
.x1f{left:472.345500px;}
.x1{left:561.838500px;}
.x22{left:616.535400px;}
.xb{left:710.078700px;}
@media print{
.v1{vertical-align:-17.760000pt;}
.v2{vertical-align:-15.984000pt;}
.v6{vertical-align:-14.208000pt;}
.v3{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.984000pt;}
.v4{vertical-align:17.760000pt;}
.lsa{letter-spacing:-4.757280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003819pt;}
.ls3{letter-spacing:0.004096pt;}
.ls7{letter-spacing:0.004352pt;}
.ls2{letter-spacing:0.004373pt;}
.ls4{letter-spacing:0.004629pt;}
.ls1{letter-spacing:0.004907pt;}
.ls9{letter-spacing:0.007467pt;}
.ls6{letter-spacing:1.920000pt;}
.ls5{letter-spacing:5.376000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws19{word-spacing:-14.826667pt;}
.ws73{word-spacing:-13.344000pt;}
.ws6c{word-spacing:-11.861333pt;}
.ws29{word-spacing:-9.424719pt;}
.ws4a{word-spacing:-5.376000pt;}
.ws7b{word-spacing:-4.281552pt;}
.ws5{word-spacing:-4.160000pt;}
.ws21{word-spacing:-3.200000pt;}
.ws5e{word-spacing:-3.093333pt;}
.ws3f{word-spacing:-3.040000pt;}
.ws22{word-spacing:-2.592000pt;}
.ws4c{word-spacing:-1.920000pt;}
.ws41{word-spacing:-1.813333pt;}
.ws46{word-spacing:-1.680000pt;}
.ws3c{word-spacing:-1.546667pt;}
.ws6a{word-spacing:-1.488000pt;}
.wse{word-spacing:-1.440000pt;}
.ws30{word-spacing:-1.344000pt;}
.ws15{word-spacing:-1.296000pt;}
.ws68{word-spacing:-1.248000pt;}
.ws7a{word-spacing:-1.200000pt;}
.ws63{word-spacing:-1.120000pt;}
.ws3e{word-spacing:-1.066667pt;}
.ws6b{word-spacing:-0.816000pt;}
.ws1e{word-spacing:-0.800000pt;}
.ws2c{word-spacing:-0.533333pt;}
.ws4{word-spacing:-0.426667pt;}
.ws66{word-spacing:-0.384000pt;}
.ws18{word-spacing:-0.288000pt;}
.ws60{word-spacing:-0.106667pt;}
.ws6d{word-spacing:-0.042667pt;}
.ws2a{word-spacing:-0.041473pt;}
.ws1{word-spacing:0.000000pt;}
.ws31{word-spacing:0.048000pt;}
.ws7{word-spacing:0.266667pt;}
.ws25{word-spacing:0.432000pt;}
.ws51{word-spacing:0.720000pt;}
.ws42{word-spacing:0.853333pt;}
.ws1d{word-spacing:0.906667pt;}
.ws26{word-spacing:1.296000pt;}
.wsf{word-spacing:1.386667pt;}
.ws14{word-spacing:1.392000pt;}
.ws1f{word-spacing:1.440000pt;}
.ws28{word-spacing:1.632000pt;}
.ws4e{word-spacing:1.680000pt;}
.ws2e{word-spacing:1.920000pt;}
.wsd{word-spacing:1.973333pt;}
.ws23{word-spacing:2.208000pt;}
.ws2b{word-spacing:2.240000pt;}
.ws45{word-spacing:2.400000pt;}
.ws32{word-spacing:2.544000pt;}
.ws20{word-spacing:2.560000pt;}
.ws27{word-spacing:2.640000pt;}
.ws5d{word-spacing:2.933333pt;}
.ws44{word-spacing:2.976000pt;}
.ws33{word-spacing:3.024000pt;}
.ws11{word-spacing:3.040000pt;}
.ws9{word-spacing:3.253333pt;}
.ws67{word-spacing:3.312000pt;}
.ws4d{word-spacing:3.552000pt;}
.wsc{word-spacing:3.840000pt;}
.ws38{word-spacing:3.893333pt;}
.ws16{word-spacing:4.080000pt;}
.ws56{word-spacing:4.160000pt;}
.ws40{word-spacing:4.213333pt;}
.ws17{word-spacing:4.320000pt;}
.ws3a{word-spacing:4.426667pt;}
.ws43{word-spacing:4.656000pt;}
.ws7c{word-spacing:4.757280pt;}
.ws24{word-spacing:4.848000pt;}
.ws3{word-spacing:4.853333pt;}
.ws2{word-spacing:5.120000pt;}
.ws34{word-spacing:5.280000pt;}
.wsa{word-spacing:5.866667pt;}
.ws54{word-spacing:6.986667pt;}
.ws39{word-spacing:7.306667pt;}
.wsb{word-spacing:7.413333pt;}
.ws76{word-spacing:7.552000pt;}
.ws12{word-spacing:7.680000pt;}
.ws6{word-spacing:7.840000pt;}
.ws1a{word-spacing:8.693333pt;}
.ws69{word-spacing:8.880000pt;}
.ws8{word-spacing:9.440000pt;}
.ws7d{word-spacing:9.456000pt;}
.ws2f{word-spacing:9.936000pt;}
.ws1c{word-spacing:10.720000pt;}
.ws57{word-spacing:10.880000pt;}
.ws53{word-spacing:11.184000pt;}
.ws5c{word-spacing:11.733333pt;}
.ws2d{word-spacing:12.266667pt;}
.ws1b{word-spacing:13.173333pt;}
.ws5f{word-spacing:13.280000pt;}
.ws50{word-spacing:13.680000pt;}
.ws77{word-spacing:15.626667pt;}
.ws59{word-spacing:17.706667pt;}
.ws4b{word-spacing:17.712000pt;}
.ws13{word-spacing:18.133333pt;}
.ws79{word-spacing:18.768000pt;}
.ws10{word-spacing:19.093333pt;}
.ws61{word-spacing:19.680000pt;}
.ws65{word-spacing:20.746667pt;}
.ws55{word-spacing:22.720000pt;}
.ws47{word-spacing:25.680000pt;}
.ws5a{word-spacing:26.613333pt;}
.ws5b{word-spacing:28.053333pt;}
.ws35{word-spacing:31.626667pt;}
.ws64{word-spacing:33.973333pt;}
.ws36{word-spacing:35.466667pt;}
.ws3b{word-spacing:39.520000pt;}
.ws62{word-spacing:39.946667pt;}
.ws37{word-spacing:44.426667pt;}
.ws4f{word-spacing:46.080000pt;}
.ws49{word-spacing:48.384000pt;}
.ws3d{word-spacing:59.093333pt;}
.ws78{word-spacing:64.176000pt;}
.ws58{word-spacing:65.066667pt;}
.ws48{word-spacing:86.064000pt;}
.ws52{word-spacing:99.456000pt;}
.ws75{word-spacing:119.525867pt;}
.ws6e{word-spacing:132.870400pt;}
.ws74{word-spacing:139.553600pt;}
.ws72{word-spacing:152.885867pt;}
.ws71{word-spacing:159.558400pt;}
.ws6f{word-spacing:172.901867pt;}
.ws70{word-spacing:180.491733pt;}
._2{margin-left:-974.336000pt;}
._17{margin-left:-13.612800pt;}
._3{margin-left:-6.205867pt;}
._0{margin-left:-5.222400pt;}
._1{margin-left:-3.500800pt;}
._4{margin-left:-1.724800pt;}
._8{width:0.910400pt;}
._9{width:1.813333pt;}
._a{width:2.810667pt;}
._c{width:4.055467pt;}
._7{width:5.072000pt;}
._6{width:5.989333pt;}
._b{width:6.949333pt;}
._10{width:7.890133pt;}
._e{width:9.004800pt;}
._f{width:10.305067pt;}
._13{width:11.655467pt;}
._d{width:12.565333pt;}
._11{width:13.776000pt;}
._15{width:16.181333pt;}
._18{width:17.706667pt;}
._16{width:18.672000pt;}
._12{width:20.149333pt;}
._1d{width:22.117333pt;}
._25{width:23.637333pt;}
._21{width:24.656000pt;}
._1c{width:26.597333pt;}
._1f{width:29.584000pt;}
._1a{width:30.576000pt;}
._22{width:32.528000pt;}
._20{width:41.386667pt;}
._24{width:53.264000pt;}
._23{width:56.138667pt;}
._1b{width:59.194667pt;}
._26{width:62.016000pt;}
._33{width:64.812800pt;}
._1e{width:79.898667pt;}
._32{width:85.740800pt;}
._19{width:91.765333pt;}
._31{width:176.278400pt;}
._34{width:180.492267pt;}
._28{width:193.835733pt;}
._2e{width:200.512000pt;}
._2b{width:204.265067pt;}
._2c{width:220.523733pt;}
._35{width:229.553067pt;}
._2a{width:233.868267pt;}
._2d{width:238.433600pt;}
._30{width:289.561067pt;}
._27{width:300.265067pt;}
._2f{width:305.593067pt;}
._29{width:346.968533pt;}
._5{width:464.733333pt;}
._14{width:2327.674133pt;}
.fse{font-size:24.874667pt;}
.fsa{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fsd{font-size:33.901867pt;}
.fsb{font-size:41.472533pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:45.620267pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:3.398533pt;}
.ye0{bottom:14.665459pt;}
.ye2{bottom:14.779509pt;}
.ye4{bottom:14.862454pt;}
.yd8{bottom:14.883190pt;}
.ye6{bottom:15.080185pt;}
.yda{bottom:15.173498pt;}
.yde{bottom:15.183866pt;}
.yd6{bottom:15.235707pt;}
.ydc{bottom:15.297915pt;}
.yd4{bottom:15.484542pt;}
.yd2{bottom:15.660800pt;}
.ye5{bottom:21.995729pt;}
.yee{bottom:27.305867pt;}
.ye3{bottom:36.241545pt;}
.y43{bottom:38.000000pt;}
.ycb{bottom:42.930667pt;}
.y127{bottom:43.875600pt;}
.y4c{bottom:45.274000pt;}
.y11d{bottom:45.462933pt;}
.y9a{bottom:46.189067pt;}
.y7b{bottom:47.826800pt;}
.ye1{bottom:51.596750pt;}
.y42{bottom:54.000000pt;}
.yca{bottom:57.330667pt;}
.y126{bottom:58.275600pt;}
.y4b{bottom:59.674000pt;}
.y11c{bottom:59.862933pt;}
.y99{bottom:62.189067pt;}
.y6{bottom:62.683467pt;}
.y7a{bottom:63.826800pt;}
.ydf{bottom:66.205450pt;}
.y174{bottom:66.918667pt;}
.y179{bottom:66.918800pt;}
.y41{bottom:70.000000pt;}
.y4a{bottom:74.074000pt;}
.y11b{bottom:74.262933pt;}
.yc5{bottom:74.661467pt;}
.y98{bottom:78.189067pt;}
.y79{bottom:79.826800pt;}
.ydd{bottom:80.129853pt;}
.ye7{bottom:82.647467pt;}
.y40{bottom:86.000000pt;}
.y49{bottom:88.474000pt;}
.y11a{bottom:88.662933pt;}
.yc4{bottom:90.661467pt;}
.y173{bottom:95.687600pt;}
.ydb{bottom:95.702789pt;}
.y78{bottom:95.826800pt;}
.y5{bottom:101.083467pt;}
.y3f{bottom:102.000000pt;}
.y48{bottom:102.874000pt;}
.y119{bottom:103.062933pt;}
.y178{bottom:103.725867pt;}
.yc3{bottom:106.661467pt;}
.yd9{bottom:110.145599pt;}
.y97{bottom:110.189067pt;}
.y172{bottom:111.687600pt;}
.y77{bottom:111.826800pt;}
.y118{bottom:117.462933pt;}
.y3e{bottom:118.000000pt;}
.y4{bottom:120.283467pt;}
.yc2{bottom:122.661467pt;}
.yd7{bottom:124.816508pt;}
.y96{bottom:126.189067pt;}
.y171{bottom:127.687600pt;}
.y76{bottom:127.826800pt;}
.yed{bottom:130.285200pt;}
.y117{bottom:131.862933pt;}
.y3d{bottom:134.000000pt;}
.yef{bottom:134.949333pt;}
.y177{bottom:135.725867pt;}
.yc1{bottom:138.661467pt;}
.yec{bottom:139.144667pt;}
.yd5{bottom:139.508153pt;}
.y95{bottom:142.189067pt;}
.y75{bottom:143.826800pt;}
.y116{bottom:146.262933pt;}
.yeb{bottom:147.782267pt;}
.y3c{bottom:150.000000pt;}
.y170{bottom:151.246667pt;}
.y176{bottom:151.725867pt;}
.yd3{bottom:154.842622pt;}
.yea{bottom:155.934533pt;}
.y94{bottom:158.189067pt;}
.y74{bottom:159.826800pt;}
.y115{bottom:160.662933pt;}
.ye9{bottom:163.982533pt;}
.y16f{bottom:165.646667pt;}
.y3b{bottom:166.000000pt;}
.y175{bottom:167.725867pt;}
.yd1{bottom:168.732933pt;}
.yc0{bottom:170.661467pt;}
.y93{bottom:174.189067pt;}
.y114{bottom:175.062933pt;}
.yf2{bottom:175.826800pt;}
.y3a{bottom:182.000000pt;}
.ybf{bottom:186.661467pt;}
.y9e{bottom:187.422133pt;}
.y16e{bottom:187.939067pt;}
.y113{bottom:189.462933pt;}
.y92{bottom:190.189067pt;}
.yf1{bottom:191.826800pt;}
.y17e{bottom:193.599467pt;}
.y9d{bottom:201.822000pt;}
.ybe{bottom:202.661467pt;}
.y112{bottom:203.862933pt;}
.y91{bottom:206.189067pt;}
.y16d{bottom:207.605733pt;}
.yb4{bottom:207.826800pt;}
.y17d{bottom:207.999467pt;}
.y47{bottom:214.445733pt;}
.y9c{bottom:216.222000pt;}
.y111{bottom:218.262933pt;}
.ybd{bottom:218.661467pt;}
.y16c{bottom:222.005733pt;}
.y90{bottom:222.189067pt;}
.y17c{bottom:222.399467pt;}
.yb3{bottom:223.826800pt;}
.y46{bottom:228.845600pt;}
.y9b{bottom:230.622133pt;}
.y110{bottom:232.662933pt;}
.ybc{bottom:234.661467pt;}
.y17b{bottom:236.799467pt;}
.y8f{bottom:238.189067pt;}
.yb2{bottom:239.826800pt;}
.y16b{bottom:241.672400pt;}
.y45{bottom:243.245600pt;}
.y10f{bottom:247.062933pt;}
.ybb{bottom:250.661467pt;}
.y17a{bottom:251.199467pt;}
.y8e{bottom:254.189067pt;}
.yb1{bottom:255.826800pt;}
.y44{bottom:257.645733pt;}
.y16a{bottom:261.339067pt;}
.yba{bottom:266.661467pt;}
.y8d{bottom:270.189067pt;}
.yb0{bottom:271.826800pt;}
.y169{bottom:281.005733pt;}
.yb9{bottom:282.661467pt;}
.y8c{bottom:286.189067pt;}
.yaf{bottom:287.826800pt;}
.y35{bottom:294.000000pt;}
.y168{bottom:300.672400pt;}
.yae{bottom:303.826800pt;}
.y34{bottom:310.000000pt;}
.yb8{bottom:314.661467pt;}
.y8b{bottom:318.189067pt;}
.yad{bottom:319.826800pt;}
.y167{bottom:320.339067pt;}
.y33{bottom:326.000000pt;}
.yb7{bottom:330.661467pt;}
.y8a{bottom:334.189067pt;}
.y166{bottom:334.739067pt;}
.yac{bottom:335.826800pt;}
.y32{bottom:342.000000pt;}
.yb6{bottom:346.661467pt;}
.y89{bottom:350.189067pt;}
.yab{bottom:351.826800pt;}
.y165{bottom:354.405733pt;}
.y31{bottom:358.000000pt;}
.y11f{bottom:360.222133pt;}
.yb5{bottom:362.661467pt;}
.y88{bottom:366.189067pt;}
.yaa{bottom:367.826800pt;}
.y30{bottom:374.000000pt;}
.y164{bottom:374.072400pt;}
.y11e{bottom:374.622133pt;}
.y87{bottom:382.189067pt;}
.ya9{bottom:383.826800pt;}
.y2f{bottom:390.000000pt;}
.ycf{bottom:392.272533pt;}
.y163{bottom:393.739067pt;}
.y86{bottom:398.189067pt;}
.ya8{bottom:399.826800pt;}
.y2e{bottom:406.000000pt;}
.yce{bottom:406.672533pt;}
.y162{bottom:413.405733pt;}
.y85{bottom:414.189067pt;}
.y73{bottom:415.826800pt;}
.ycd{bottom:421.072533pt;}
.y2d{bottom:422.000000pt;}
.y161{bottom:427.805733pt;}
.y84{bottom:430.189067pt;}
.y72{bottom:431.826800pt;}
.ycc{bottom:435.472533pt;}
.y2c{bottom:438.000000pt;}
.y71{bottom:447.826800pt;}
.y160{bottom:451.585333pt;}
.y2b{bottom:454.000000pt;}
.y70{bottom:463.826800pt;}
.ya6{bottom:463.932267pt;}
.y15f{bottom:467.585333pt;}
.y2a{bottom:470.000000pt;}
.ya5{bottom:478.332267pt;}
.y6f{bottom:479.826800pt;}
.y108{bottom:481.968533pt;}
.y15e{bottom:483.585333pt;}
.y29{bottom:486.000000pt;}
.ya4{bottom:492.732267pt;}
.y6e{bottom:495.826800pt;}
.y107{bottom:497.968533pt;}
.y15d{bottom:499.585333pt;}
.y28{bottom:502.000000pt;}
.y6d{bottom:511.826800pt;}
.y106{bottom:513.968533pt;}
.y15c{bottom:515.585333pt;}
.y39{bottom:518.000000pt;}
.y6c{bottom:527.826800pt;}
.y105{bottom:529.968533pt;}
.y15b{bottom:531.585333pt;}
.y27{bottom:534.000000pt;}
.y6b{bottom:543.826800pt;}
.y125{bottom:544.511867pt;}
.y104{bottom:545.968533pt;}
.y26{bottom:550.000000pt;}
.y124{bottom:558.911733pt;}
.y6a{bottom:559.826800pt;}
.y103{bottom:561.968533pt;}
.y25{bottom:566.000000pt;}
.y15a{bottom:571.426800pt;}
.y123{bottom:573.311867pt;}
.y69{bottom:575.826800pt;}
.y102{bottom:577.968533pt;}
.ya{bottom:580.576400pt;}
.y24{bottom:582.000000pt;}
.y159{bottom:584.226800pt;}
.y122{bottom:587.711733pt;}
.y133{bottom:588.626800pt;}
.ya7{bottom:591.826800pt;}
.y101{bottom:593.968533pt;}
.y158{bottom:597.026800pt;}
.y23{bottom:598.000000pt;}
.y132{bottom:601.426800pt;}
.y121{bottom:602.111867pt;}
.y68{bottom:607.826800pt;}
.y157{bottom:609.826800pt;}
.y100{bottom:609.968533pt;}
.y9{bottom:612.576400pt;}
.y22{bottom:614.000000pt;}
.y131{bottom:614.226800pt;}
.y120{bottom:616.511867pt;}
.yc9{bottom:619.044133pt;}
.y156{bottom:622.626800pt;}
.y67{bottom:623.826800pt;}
.yff{bottom:625.968533pt;}
.y130{bottom:627.026800pt;}
.y21{bottom:630.000000pt;}
.yc8{bottom:633.444133pt;}
.y155{bottom:635.426800pt;}
.y66{bottom:639.826800pt;}
.y20{bottom:646.000000pt;}
.yc7{bottom:647.844133pt;}
.y154{bottom:648.226800pt;}
.y8{bottom:650.976400pt;}
.y12f{bottom:652.626800pt;}
.y65{bottom:655.826800pt;}
.yfe{bottom:657.968533pt;}
.y153{bottom:661.026800pt;}
.y1f{bottom:662.000000pt;}
.yc6{bottom:662.244133pt;}
.y12e{bottom:665.426800pt;}
.y10b{bottom:666.703867pt;}
.y64{bottom:671.826800pt;}
.y152{bottom:673.826800pt;}
.yfd{bottom:673.968533pt;}
.y1e{bottom:678.000000pt;}
.y12d{bottom:678.226800pt;}
.y10a{bottom:681.103867pt;}
.y151{bottom:686.626800pt;}
.y63{bottom:687.826800pt;}
.yfc{bottom:689.968533pt;}
.y12c{bottom:691.026800pt;}
.y38{bottom:694.000000pt;}
.y109{bottom:695.503867pt;}
.y150{bottom:699.426800pt;}
.y62{bottom:703.826800pt;}
.yfb{bottom:705.968533pt;}
.y1d{bottom:710.000000pt;}
.y14f{bottom:712.226800pt;}
.y12b{bottom:716.626800pt;}
.y61{bottom:719.826800pt;}
.yfa{bottom:721.968533pt;}
.y14e{bottom:725.026800pt;}
.y37{bottom:726.000000pt;}
.y12a{bottom:729.426800pt;}
.y60{bottom:735.826800pt;}
.y14d{bottom:737.826800pt;}
.yf9{bottom:737.968533pt;}
.y1c{bottom:742.000000pt;}
.y129{bottom:742.226800pt;}
.y83{bottom:750.189067pt;}
.y14c{bottom:750.626800pt;}
.y5f{bottom:751.826800pt;}
.yf8{bottom:753.968533pt;}
.y128{bottom:755.026800pt;}
.y1b{bottom:758.000000pt;}
.y14b{bottom:763.426800pt;}
.y82{bottom:766.189067pt;}
.y5e{bottom:767.826800pt;}
.yf7{bottom:769.968533pt;}
.y1a{bottom:774.000000pt;}
.y14a{bottom:776.226800pt;}
.y81{bottom:782.189067pt;}
.y5d{bottom:783.826800pt;}
.yf6{bottom:785.968533pt;}
.y7{bottom:786.708667pt;}
.y149{bottom:789.026800pt;}
.y19{bottom:790.000000pt;}
.y80{bottom:798.189067pt;}
.yf0{bottom:799.826800pt;}
.y148{bottom:801.826800pt;}
.yf5{bottom:801.968533pt;}
.y18{bottom:806.000000pt;}
.y7f{bottom:814.189067pt;}
.y147{bottom:814.626800pt;}
.y5c{bottom:815.826800pt;}
.yf4{bottom:817.968533pt;}
.y17{bottom:822.000000pt;}
.y146{bottom:827.426800pt;}
.y5b{bottom:831.826800pt;}
.yf3{bottom:833.968533pt;}
.y16{bottom:838.000000pt;}
.y145{bottom:840.226800pt;}
.y3{bottom:843.278800pt;}
.y7e{bottom:846.189067pt;}
.y5a{bottom:847.826800pt;}
.y144{bottom:853.026800pt;}
.y15{bottom:854.000000pt;}
.y7d{bottom:862.189067pt;}
.y10e{bottom:863.617333pt;}
.y59{bottom:863.826800pt;}
.y143{bottom:865.826800pt;}
.y14{bottom:870.000000pt;}
.y10d{bottom:878.017200pt;}
.y7c{bottom:878.189067pt;}
.y142{bottom:878.626800pt;}
.y58{bottom:879.826800pt;}
.y13{bottom:886.000000pt;}
.yd0{bottom:888.264000pt;}
.y141{bottom:891.426800pt;}
.y10c{bottom:892.417200pt;}
.y57{bottom:895.826800pt;}
.y12{bottom:902.000000pt;}
.y140{bottom:904.226800pt;}
.ya3{bottom:904.738667pt;}
.y2{bottom:908.437867pt;}
.y56{bottom:911.826800pt;}
.y13f{bottom:917.026800pt;}
.y11{bottom:918.000000pt;}
.ya2{bottom:919.138533pt;}
.y55{bottom:927.826800pt;}
.y13e{bottom:929.826800pt;}
.ya1{bottom:933.538667pt;}
.y36{bottom:934.000000pt;}
.y13d{bottom:942.626800pt;}
.y54{bottom:943.826800pt;}
.ya0{bottom:947.938667pt;}
.y10{bottom:950.000000pt;}
.y13c{bottom:955.426800pt;}
.y53{bottom:959.826800pt;}
.y9f{bottom:962.338667pt;}
.y13b{bottom:968.226800pt;}
.y52{bottom:975.826800pt;}
.yf{bottom:977.426800pt;}
.y13a{bottom:981.026800pt;}
.y51{bottom:991.826800pt;}
.y139{bottom:993.826800pt;}
.y138{bottom:1006.626800pt;}
.y50{bottom:1007.826800pt;}
.ye{bottom:1009.426800pt;}
.y137{bottom:1019.426800pt;}
.y4f{bottom:1023.826800pt;}
.y1{bottom:1030.818933pt;}
.y136{bottom:1032.226800pt;}
.y4e{bottom:1039.826800pt;}
.y135{bottom:1045.026800pt;}
.yd{bottom:1047.826800pt;}
.y4d{bottom:1055.826800pt;}
.y134{bottom:1057.826800pt;}
.yc{bottom:1090.173200pt;}
.yb{bottom:1091.173200pt;}
.h10{height:13.470667pt;}
.h8{height:23.578125pt;}
.h12{height:24.951774pt;}
.hc{height:27.645833pt;}
.he{height:30.523785pt;}
.h17{height:30.648202pt;}
.h1b{height:31.437500pt;}
.h1c{height:31.616000pt;}
.h9{height:31.645833pt;}
.hf{height:33.576516pt;}
.hb{height:35.367188pt;}
.h1d{height:35.601562pt;}
.h1a{height:36.603070pt;}
.h1e{height:36.739711pt;}
.h7{height:39.296875pt;}
.ha{height:39.557292pt;}
.h19{height:40.670078pt;}
.h4{height:47.156250pt;}
.h6{height:55.380208pt;}
.h2{height:71.203125pt;}
.h5{height:94.937500pt;}
.h16{height:137.766667pt;}
.h3{height:142.406250pt;}
.h18{height:142.433333pt;}
.h15{height:146.628000pt;}
.h14{height:155.266667pt;}
.h13{height:163.414667pt;}
.h11{height:171.466667pt;}
.hd{height:177.562667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:266.609333pt;}
.w3{width:329.526667pt;}
.w8{width:335.985333pt;}
.w4{width:336.041333pt;}
.w5{width:336.046667pt;}
.w7{width:336.337333pt;}
.w6{width:336.406667pt;}
.w2{width:349.605333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:9.734267pt;}
.x17{left:14.784919pt;}
.x10{left:17.958667pt;}
.x1c{left:19.481683pt;}
.x1b{left:33.686026pt;}
.xc{left:37.269200pt;}
.xe{left:39.488400pt;}
.x1a{left:48.813133pt;}
.x23{left:51.800533pt;}
.x29{left:57.467200pt;}
.x2b{left:59.359600pt;}
.x19{left:63.608459pt;}
.x18{left:78.403785pt;}
.x1e{left:82.823467pt;}
.x3{left:86.537867pt;}
.x16{left:96.444337pt;}
.x15{left:111.053037pt;}
.x9{left:114.749467pt;}
.x14{left:125.589160pt;}
.x13{left:140.560745pt;}
.x12{left:154.713247pt;}
.x20{left:165.610533pt;}
.x11{left:170.172133pt;}
.x2{left:198.182400pt;}
.xa{left:204.278800pt;}
.x25{left:205.537467pt;}
.x24{left:209.894000pt;}
.x2a{left:220.203467pt;}
.x5{left:225.666800pt;}
.x8{left:250.782000pt;}
.x4{left:257.217600pt;}
.x27{left:272.900267pt;}
.x7{left:275.061333pt;}
.x26{left:281.704933pt;}
.x6{left:282.979333pt;}
.x21{left:288.521333pt;}
.xf{left:302.362267pt;}
.x28{left:352.936667pt;}
.x2d{left:405.144400pt;}
.xd{left:406.299200pt;}
.x2c{left:413.858267pt;}
.x1f{left:419.862667pt;}
.x1{left:499.412000pt;}
.x22{left:548.031467pt;}
.xb{left:631.181067pt;}
}




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