
    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_7193bfc10420473000892185.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f0f3e1b21b1c59f09432530f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f4130ef1298bba53c0735fba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_fd0ebcb860e1636befa17b90.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_7e2e9ec1a83fb49428ec5fa2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_f99d660d8b42333c531ca426.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_6a32fd0765f62cf3abfef5e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_46469c53ab24e756e11e0d4a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.422000px;}
.ls17{letter-spacing:-0.972000px;}
.ls7{letter-spacing:-0.942000px;}
.ls8{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.466800px;}
.ls6{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.313800px;}
.ls16{letter-spacing:-0.020160px;}
.lsb{letter-spacing:-0.015600px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.015840px;}
.ls3{letter-spacing:0.020160px;}
.lse{letter-spacing:0.020400px;}
.lsc{letter-spacing:0.250800px;}
.ls1{letter-spacing:0.413280px;}
.ls1d{letter-spacing:0.466800px;}
.ls12{letter-spacing:0.486600px;}
.ls15{letter-spacing:0.501000px;}
.ls10{letter-spacing:0.665280px;}
.ls0{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.840000px;}
.lsa{letter-spacing:1.080000px;}
.lsf{letter-spacing:9.106560px;}
.ls1a{letter-spacing:9.720000px;}
.ls1b{letter-spacing:11.269440px;}
.ls13{letter-spacing:13.426560px;}
.ls1c{letter-spacing:24.120000px;}
.ls19{letter-spacing:35.749440px;}
.ls18{letter-spacing:40.906560px;}
.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;}
}
.ws14{word-spacing:-60.480000px;}
.ws15{word-spacing:-47.520000px;}
.wsf{word-spacing:-15.840000px;}
.wse{word-spacing:-15.606600px;}
.ws16{word-spacing:-15.586800px;}
.wsa{word-spacing:-15.140400px;}
.ws11{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws10{word-spacing:-15.099840px;}
.ws12{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.653200px;}
.ws1{word-spacing:-14.633400px;}
.ws13{word-spacing:-13.698000px;}
.ws5{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.366200px;}
.ws4{word-spacing:-12.600000px;}
.ws9{word-spacing:-12.130800px;}
.ws2{word-spacing:-11.880000px;}
.ws8{word-spacing:-11.864400px;}
.ws3{word-spacing:-11.520000px;}
.wsc{word-spacing:0.000000px;}
.wsb{word-spacing:2.412960px;}
.ws7{word-spacing:2.413080px;}
._4{margin-left:-8.189412px;}
._3{margin-left:-5.846396px;}
._5{margin-left:-3.435103px;}
._0{margin-left:-2.056199px;}
._2{margin-left:-1.026588px;}
._1{width:1.450794px;}
._6{width:2.962428px;}
._c{width:4.627875px;}
._d{width:5.725046px;}
._8{width:6.764855px;}
._7{width:7.898420px;}
._e{width:9.835476px;}
._18{width:11.612413px;}
._1d{width:12.701405px;}
._25{width:13.786756px;}
._17{width:14.816523px;}
._12{width:16.557163px;}
._10{width:17.818934px;}
._2b{width:18.873072px;}
._11{width:19.895357px;}
._13{width:21.260081px;}
._1e{width:23.155286px;}
._1f{width:24.157611px;}
._24{width:25.587863px;}
._9{width:27.050475px;}
._a{width:28.485631px;}
._b{width:29.661670px;}
._f{width:31.094241px;}
._1a{width:32.128929px;}
._19{width:34.125659px;}
._32{width:36.201510px;}
._20{width:38.250684px;}
._21{width:40.039212px;}
._16{width:41.593294px;}
._14{width:42.987033px;}
._15{width:44.617104px;}
._23{width:47.245440px;}
._22{width:48.590279px;}
._2a{width:49.690689px;}
._29{width:51.286919px;}
._30{width:54.596723px;}
._2f{width:56.851684px;}
._1b{width:59.590439px;}
._1c{width:61.676718px;}
._2e{width:63.443520px;}
._2d{width:64.470108px;}
._2c{width:66.407524px;}
._31{width:96.403427px;}
._33{width:100.661760px;}
._34{width:101.741276px;}
._28{width:107.169592px;}
._26{width:127.793998px;}
._27{width:129.427200px;}
._35{width:198.746400px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.480000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:2.520000px;}
.ya9{bottom:2.550000px;}
.y8{bottom:2.880000px;}
.ydc{bottom:4.680000px;}
.yc{bottom:8.280000px;}
.y9d{bottom:9.360000px;}
.ya7{bottom:9.390000px;}
.y9b{bottom:9.405000px;}
.y9{bottom:13.716000px;}
.y9e{bottom:16.200000px;}
.y99{bottom:16.245000px;}
.y7{bottom:16.560000px;}
.ya8{bottom:16.590000px;}
.y4{bottom:16.596000px;}
.y3{bottom:19.116000px;}
.yb{bottom:22.320000px;}
.y6{bottom:30.240000px;}
.ya{bottom:36.000000px;}
.y78{bottom:37.476000px;}
.y5{bottom:43.920000px;}
.y15e{bottom:87.876000px;}
.y129{bottom:92.196000px;}
.yf3{bottom:92.556000px;}
.yc4{bottom:92.916000px;}
.y1ce{bottom:93.276000px;}
.y44{bottom:93.636000px;}
.y18d{bottom:97.956000px;}
.y75{bottom:98.316000px;}
.y15d{bottom:105.876000px;}
.y43{bottom:107.316000px;}
.y1cd{bottom:107.676000px;}
.yb5{bottom:109.116000px;}
.yf2{bottom:109.836000px;}
.y128{bottom:110.196000px;}
.yc3{bottom:111.276000px;}
.y18c{bottom:111.636000px;}
.y74{bottom:116.316000px;}
.y42{bottom:120.996000px;}
.y15c{bottom:124.236000px;}
.y1cc{bottom:124.956000px;}
.y18b{bottom:125.316000px;}
.yb4{bottom:127.476000px;}
.y127{bottom:128.196000px;}
.yc2{bottom:129.276000px;}
.yf1{bottom:130.356000px;}
.y73{bottom:134.712000px;}
.y18a{bottom:139.392000px;}
.y1cb{bottom:142.272000px;}
.yb3{bottom:145.512000px;}
.y15b{bottom:145.872000px;}
.y126{bottom:146.592000px;}
.yc1{bottom:147.312000px;}
.y41{bottom:148.752000px;}
.y72{bottom:152.715000px;}
.y189{bottom:153.075000px;}
.y1ca{bottom:159.195000px;}
.y40{bottom:162.435000px;}
.y15a{bottom:163.155000px;}
.y125{bottom:164.595000px;}
.yc0{bottom:165.675000px;}
.y188{bottom:166.755000px;}
.yb2{bottom:168.915000px;}
.y71{bottom:170.715000px;}
.y1c9{bottom:176.475000px;}
.y3f{bottom:176.835000px;}
.y187{bottom:180.795000px;}
.y124{bottom:182.595000px;}
.ybf{bottom:183.675000px;}
.yb1{bottom:186.195000px;}
.y70{bottom:188.715000px;}
.y159{bottom:190.155000px;}
.y3e{bottom:193.755000px;}
.y186{bottom:194.475000px;}
.y123{bottom:200.955000px;}
.ybe{bottom:201.675000px;}
.yb0{bottom:203.475000px;}
.y6f{bottom:207.075000px;}
.y185{bottom:208.155000px;}
.y158{bottom:208.515000px;}
.y3d{bottom:209.235000px;}
.y1c8{bottom:211.035000px;}
.y122{bottom:218.955000px;}
.ybd{bottom:220.035000px;}
.y184{bottom:222.195000px;}
.yaf{bottom:223.995000px;}
.y3c{bottom:224.715000px;}
.y6e{bottom:225.075000px;}
.y157{bottom:226.515000px;}
.y1c7{bottom:228.315000px;}
.y183{bottom:235.875000px;}
.y121{bottom:236.955000px;}
.ybc{bottom:238.035000px;}
.y3b{bottom:240.555000px;}
.y6d{bottom:243.075000px;}
.y1c6{bottom:245.595000px;}
.y156{bottom:248.115000px;}
.y182{bottom:249.555000px;}
.y120{bottom:255.315000px;}
.y3a{bottom:256.035000px;}
.y1c5{bottom:259.635000px;}
.y6c{bottom:261.435000px;}
.y181{bottom:263.595000px;}
.y155{bottom:265.425000px;}
.y39{bottom:271.545000px;}
.y11f{bottom:273.345000px;}
.ybb{bottom:274.425000px;}
.y1c4{bottom:276.225000px;}
.y180{bottom:277.305000px;}
.y6b{bottom:279.465000px;}
.y1c3{bottom:289.905000px;}
.y17f{bottom:290.985000px;}
.y11e{bottom:291.345000px;}
.yba{bottom:292.425000px;}
.y154{bottom:292.785000px;}
.y6a{bottom:297.465000px;}
.y1c2{bottom:303.585000px;}
.y17e{bottom:305.025000px;}
.y11d{bottom:309.345000px;}
.yb9{bottom:310.425000px;}
.y153{bottom:310.785000px;}
.y69{bottom:315.825000px;}
.y1c1{bottom:317.625000px;}
.y17d{bottom:318.705000px;}
.y38{bottom:321.945000px;}
.yf0{bottom:326.985000px;}
.y152{bottom:328.785000px;}
.y11c{bottom:331.305000px;}
.yb8{bottom:332.385000px;}
.y68{bottom:333.825000px;}
.y37{bottom:339.945000px;}
.y17c{bottom:342.105000px;}
.yef{bottom:344.985000px;}
.y151{bottom:346.785000px;}
.y67{bottom:351.825000px;}
.y36{bottom:357.945000px;}
.y11b{bottom:358.305000px;}
.y1c0{bottom:359.025000px;}
.yb7{bottom:359.385000px;}
.yee{bottom:362.985000px;}
.y150{bottom:365.145000px;}
.y1bf{bottom:372.705000px;}
.y11a{bottom:376.305000px;}
.yb6{bottom:377.385000px;}
.y66{bottom:378.105000px;}
.y35{bottom:380.265000px;}
.yed{bottom:381.345000px;}
.y14f{bottom:383.145000px;}
.y1be{bottom:386.385000px;}
.yae{bottom:392.505000px;}
.y119{bottom:394.665000px;}
.y17b{bottom:396.465000px;}
.yec{bottom:399.390000px;}
.y1bd{bottom:400.470000px;}
.yad{bottom:409.470000px;}
.y118{bottom:412.710000px;}
.y65{bottom:414.150000px;}
.y17a{bottom:414.510000px;}
.yeb{bottom:417.390000px;}
.y34{bottom:420.630000px;}
.y1bc{bottom:427.830000px;}
.y117{bottom:430.710000px;}
.y64{bottom:432.510000px;}
.yea{bottom:435.750000px;}
.yac{bottom:440.070000px;}
.y14e{bottom:445.470000px;}
.y116{bottom:449.070000px;}
.y63{bottom:450.510000px;}
.y1bb{bottom:451.230000px;}
.ye9{bottom:453.750000px;}
.y33{bottom:455.550000px;}
.y14d{bottom:463.830000px;}
.y115{bottom:467.070000px;}
.y62{bottom:468.510000px;}
.y179{bottom:468.870000px;}
.yab{bottom:470.670000px;}
.y32{bottom:471.030000px;}
.ye8{bottom:471.750000px;}
.y14c{bottom:481.830000px;}
.y114{bottom:485.070000px;}
.y1ba{bottom:485.790000px;}
.y31{bottom:486.510000px;}
.y61{bottom:486.870000px;}
.ye7{bottom:489.750000px;}
.y14b{bottom:499.830000px;}
.yaa{bottom:501.270000px;}
.y30{bottom:501.990000px;}
.y113{bottom:503.430000px;}
.y60{bottom:504.870000px;}
.ye6{bottom:508.110000px;}
.y1b9{bottom:513.510000px;}
.y2f{bottom:517.470000px;}
.y14a{bottom:518.190000px;}
.y112{bottom:521.430000px;}
.y5f{bottom:522.870000px;}
.y178{bottom:523.230000px;}
.ye5{bottom:526.110000px;}
.y1b8{bottom:527.190000px;}
.ya6{bottom:531.870000px;}
.y149{bottom:536.220000px;}
.y2e{bottom:539.100000px;}
.y111{bottom:539.460000px;}
.y5e{bottom:541.260000px;}
.ye4{bottom:544.140000px;}
.y148{bottom:554.220000px;}
.y2d{bottom:554.580000px;}
.y1b7{bottom:554.940000px;}
.y110{bottom:557.820000px;}
.y5d{bottom:559.260000px;}
.ya5{bottom:562.500000px;}
.y1b6{bottom:568.620000px;}
.y147{bottom:572.220000px;}
.y10f{bottom:575.820000px;}
.y2c{bottom:576.180000px;}
.y5c{bottom:577.260000px;}
.y177{bottom:577.620000px;}
.ye3{bottom:580.500000px;}
.y1b5{bottom:582.660000px;}
.y146{bottom:590.580000px;}
.y2b{bottom:591.660000px;}
.ya4{bottom:593.100000px;}
.y10e{bottom:593.820000px;}
.y5b{bottom:595.620000px;}
.y1b4{bottom:596.340000px;}
.ye2{bottom:598.500000px;}
.y2a{bottom:607.140000px;}
.y145{bottom:608.580000px;}
.y1b3{bottom:610.020000px;}
.y10d{bottom:611.820000px;}
.y5a{bottom:613.620000px;}
.ye1{bottom:616.860000px;}
.y29{bottom:622.620000px;}
.ya3{bottom:623.700000px;}
.y1b2{bottom:624.060000px;}
.y144{bottom:626.580000px;}
.y10c{bottom:630.180000px;}
.y59{bottom:631.620000px;}
.y176{bottom:631.980000px;}
.ye0{bottom:634.860000px;}
.y1b1{bottom:637.740000px;}
.y28{bottom:638.460000px;}
.ya2{bottom:640.620000px;}
.y143{bottom:644.940000px;}
.y58{bottom:649.620000px;}
.y175{bottom:649.980000px;}
.y1b0{bottom:651.420000px;}
.y27{bottom:653.940000px;}
.ydf{bottom:656.460000px;}
.y142{bottom:662.940000px;}
.y1af{bottom:665.460000px;}
.y57{bottom:668.010000px;}
.y26{bottom:669.450000px;}
.ya1{bottom:671.250000px;}
.y1ae{bottom:679.170000px;}
.y141{bottom:680.970000px;}
.yde{bottom:683.850000px;}
.y25{bottom:684.930000px;}
.y56{bottom:686.010000px;}
.y10b{bottom:687.450000px;}
.y1ad{bottom:692.850000px;}
.y140{bottom:699.330000px;}
.y24{bottom:700.410000px;}
.ya0{bottom:701.850000px;}
.y55{bottom:704.010000px;}
.y10a{bottom:705.450000px;}
.y1ac{bottom:706.890000px;}
.y174{bottom:713.730000px;}
.y23{bottom:715.890000px;}
.y13f{bottom:717.330000px;}
.y1ab{bottom:720.570000px;}
.ydd{bottom:721.290000px;}
.y54{bottom:722.370000px;}
.y109{bottom:723.810000px;}
.y22{bottom:731.370000px;}
.y9f{bottom:732.450000px;}
.y1aa{bottom:734.250000px;}
.y13e{bottom:735.330000px;}
.ydb{bottom:738.930000px;}
.y53{bottom:740.370000px;}
.y108{bottom:745.410000px;}
.y21{bottom:746.850000px;}
.y1a9{bottom:748.290000px;}
.y173{bottom:749.730000px;}
.y13d{bottom:757.290000px;}
.y52{bottom:758.370000px;}
.yda{bottom:760.170000px;}
.y1a8{bottom:761.970000px;}
.y20{bottom:762.690000px;}
.y9c{bottom:763.050000px;}
.y172{bottom:768.090000px;}
.y107{bottom:771.690000px;}
.y1a7{bottom:775.650000px;}
.y51{bottom:776.730000px;}
.y1f{bottom:778.170000px;}
.y13c{bottom:784.290000px;}
.y171{bottom:786.090000px;}
.y1a6{bottom:789.690000px;}
.yd9{bottom:790.770000px;}
.y1e{bottom:793.650000px;}
.y50{bottom:794.730000px;}
.y13b{bottom:802.335000px;}
.y1a5{bottom:803.415000px;}
.y170{bottom:804.135000px;}
.y106{bottom:807.735000px;}
.y1d{bottom:809.175000px;}
.y4f{bottom:812.775000px;}
.y1a4{bottom:817.095000px;}
.y13a{bottom:820.695000px;}
.y16f{bottom:822.495000px;}
.y1c{bottom:824.655000px;}
.y105{bottom:826.095000px;}
.yd8{bottom:829.335000px;}
.y4e{bottom:831.135000px;}
.y98{bottom:832.215000px;}
.y139{bottom:838.695000px;}
.y1b{bottom:840.135000px;}
.y16e{bottom:840.495000px;}
.y104{bottom:844.095000px;}
.y1a3{bottom:844.815000px;}
.yd7{bottom:846.615000px;}
.y4d{bottom:849.135000px;}
.y97{bottom:853.455000px;}
.y1a{bottom:855.615000px;}
.y138{bottom:856.695000px;}
.y16d{bottom:858.495000px;}
.y103{bottom:862.095000px;}
.y96{bottom:863.175000px;}
.y4c{bottom:867.135000px;}
.yd6{bottom:870.735000px;}
.y19{bottom:871.095000px;}
.y1a2{bottom:872.535000px;}
.y137{bottom:875.055000px;}
.y16c{bottom:876.855000px;}
.y102{bottom:880.455000px;}
.y95{bottom:881.175000px;}
.y4b{bottom:885.135000px;}
.y1a1{bottom:886.215000px;}
.y18{bottom:886.575000px;}
.y87{bottom:886.935000px;}
.yd5{bottom:888.735000px;}
.y136{bottom:893.055000px;}
.y16b{bottom:894.855000px;}
.y101{bottom:898.455000px;}
.y94{bottom:899.535000px;}
.y1a0{bottom:899.895000px;}
.y17{bottom:902.415000px;}
.y4a{bottom:903.495000px;}
.y86{bottom:906.735000px;}
.yd4{bottom:907.095000px;}
.y135{bottom:911.055000px;}
.y16a{bottom:912.855000px;}
.y19f{bottom:913.935000px;}
.y100{bottom:916.455000px;}
.y93{bottom:917.535000px;}
.y16{bottom:917.895000px;}
.y49{bottom:921.495000px;}
.yd3{bottom:925.095000px;}
.y85{bottom:926.535000px;}
.y19e{bottom:927.615000px;}
.y134{bottom:929.055000px;}
.y169{bottom:931.215000px;}
.y15{bottom:933.405000px;}
.yff{bottom:934.845000px;}
.y92{bottom:935.565000px;}
.y48{bottom:939.525000px;}
.y19d{bottom:941.325000px;}
.yd2{bottom:943.125000px;}
.y84{bottom:946.365000px;}
.y133{bottom:947.445000px;}
.y14{bottom:948.885000px;}
.y168{bottom:949.245000px;}
.yfe{bottom:952.845000px;}
.y91{bottom:953.925000px;}
.y19c{bottom:955.365000px;}
.y47{bottom:957.885000px;}
.yd1{bottom:961.485000px;}
.y13{bottom:964.365000px;}
.y132{bottom:965.445000px;}
.y83{bottom:966.165000px;}
.y167{bottom:967.245000px;}
.y19b{bottom:969.045000px;}
.yfd{bottom:970.845000px;}
.y90{bottom:971.925000px;}
.y46{bottom:975.885000px;}
.yd0{bottom:979.485000px;}
.y12{bottom:979.845000px;}
.y19a{bottom:982.725000px;}
.y131{bottom:983.445000px;}
.y166{bottom:985.245000px;}
.y82{bottom:986.325000px;}
.y8f{bottom:989.925000px;}
.yfc{bottom:990.285000px;}
.y45{bottom:993.885000px;}
.y11{bottom:995.325000px;}
.y199{bottom:996.765000px;}
.ycf{bottom:997.485000px;}
.y130{bottom:1001.805000px;}
.y81{bottom:1006.125000px;}
.y165{bottom:1007.205000px;}
.y8e{bottom:1008.285000px;}
.yfb{bottom:1010.085000px;}
.y198{bottom:1010.445000px;}
.yce{bottom:1015.485000px;}
.y12f{bottom:1019.805000px;}
.y197{bottom:1024.125000px;}
.y80{bottom:1025.925000px;}
.y8d{bottom:1026.285000px;}
.yfa{bottom:1028.445000px;}
.y10{bottom:1029.525000px;}
.ycd{bottom:1033.845000px;}
.y164{bottom:1034.205000px;}
.y12e{bottom:1037.805000px;}
.y196{bottom:1038.165000px;}
.y8c{bottom:1044.285000px;}
.y7f{bottom:1045.725000px;}
.yf9{bottom:1046.445000px;}
.ycc{bottom:1051.845000px;}
.y163{bottom:1052.205000px;}
.y12d{bottom:1056.165000px;}
.y8b{bottom:1062.285000px;}
.yf8{bottom:1064.445000px;}
.y7e{bottom:1065.525000px;}
.ycb{bottom:1069.890000px;}
.y162{bottom:1070.610000px;}
.yf{bottom:1070.970000px;}
.y12c{bottom:1074.210000px;}
.y195{bottom:1079.610000px;}
.yf7{bottom:1082.490000px;}
.y8a{bottom:1084.290000px;}
.y7d{bottom:1085.370000px;}
.yca{bottom:1088.250000px;}
.y161{bottom:1088.610000px;}
.y12b{bottom:1092.210000px;}
.y194{bottom:1093.290000px;}
.yf6{bottom:1100.850000px;}
.y7c{bottom:1105.170000px;}
.yc9{bottom:1106.250000px;}
.y160{bottom:1106.610000px;}
.y193{bottom:1106.970000px;}
.y89{bottom:1110.570000px;}
.ye{bottom:1112.370000px;}
.yf5{bottom:1118.850000px;}
.y192{bottom:1121.010000px;}
.y7b{bottom:1124.970000px;}
.yc8{bottom:1127.850000px;}
.y12a{bottom:1128.570000px;}
.y191{bottom:1134.690000px;}
.yf4{bottom:1136.850000px;}
.y15f{bottom:1142.970000px;}
.y7a{bottom:1144.770000px;}
.y1d0{bottom:1145.130000px;}
.y88{bottom:1146.570000px;}
.y190{bottom:1148.370000px;}
.yd{bottom:1153.770000px;}
.yc7{bottom:1155.210000px;}
.y18f{bottom:1162.410000px;}
.y79{bottom:1164.570000px;}
.y1cf{bottom:1171.770000px;}
.yc6{bottom:1173.210000px;}
.y18e{bottom:1176.090000px;}
.y77{bottom:1182.570000px;}
.yc5{bottom:1198.410000px;}
.y76{bottom:1200.210000px;}
.y2{bottom:1217.520000px;}
.y1{bottom:1234.800000px;}
.h15{height:13.680000px;}
.h18{height:14.076000px;}
.h11{height:17.272266px;}
.h1a{height:18.000000px;}
.h14{height:27.360000px;}
.h12{height:27.396000px;}
.h16{height:27.720000px;}
.h17{height:27.756000px;}
.h13{height:33.528516px;}
.hc{height:38.608594px;}
.h5{height:39.166875px;}
.h9{height:39.650625px;}
.hd{height:42.600937px;}
.h2{height:42.672656px;}
.h19{height:43.824375px;}
.h10{height:44.031094px;}
.h1b{height:44.798906px;}
.h8{height:46.736719px;}
.h6{height:47.160000px;}
.ha{height:49.055625px;}
.h3{height:54.219375px;}
.h4{height:55.080000px;}
.h1d{height:59.383125px;}
.he{height:61.927031px;}
.h1c{height:64.546875px;}
.hf{height:65.884219px;}
.hb{height:107.147812px;}
.h7{height:129.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:42.840000px;}
.w9{width:43.560000px;}
.wf{width:45.720000px;}
.w11{width:49.356000px;}
.w10{width:76.356000px;}
.we{width:77.436000px;}
.w7{width:89.676000px;}
.wb{width:90.396000px;}
.wd{width:97.956000px;}
.w6{width:123.912000px;}
.wa{width:124.632000px;}
.w2{width:194.865000px;}
.w3{width:242.745000px;}
.w8{width:495.900000px;}
.wc{width:496.620000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:1.080000px;}
.x23{left:2.880000px;}
.x16{left:4.680000px;}
.x15{left:6.480000px;}
.x2d{left:7.920000px;}
.x2f{left:9.720000px;}
.x5{left:10.830000px;}
.x34{left:11.880000px;}
.x44{left:13.320000px;}
.x1e{left:14.400000px;}
.x21{left:16.560000px;}
.x32{left:18.036000px;}
.x1b{left:19.080000px;}
.x27{left:20.196000px;}
.x20{left:21.960000px;}
.x1a{left:25.560000px;}
.x2a{left:27.756000px;}
.x33{left:28.836000px;}
.x1f{left:33.876000px;}
.x48{left:36.000000px;}
.x18{left:37.119000px;}
.x37{left:39.279000px;}
.x3b{left:45.000000px;}
.x2c{left:46.479000px;}
.x3a{left:61.959000px;}
.x36{left:66.990000px;}
.x39{left:69.156000px;}
.x6{left:70.236000px;}
.x7{left:73.476000px;}
.x3e{left:74.555987px;}
.x42{left:78.156000px;}
.x11{left:79.235987px;}
.xb{left:81.036000px;}
.x4a{left:86.075987px;}
.x50{left:91.475987px;}
.x3f{left:95.795987px;}
.x31{left:97.230000px;}
.x9{left:101.556000px;}
.x30{left:111.270000px;}
.x17{left:113.076000px;}
.x2e{left:115.950000px;}
.x26{left:118.110000px;}
.x35{left:119.910000px;}
.x38{left:140.430000px;}
.x41{left:153.794987px;}
.x8{left:164.955000px;}
.x28{left:172.860000px;}
.x22{left:175.740000px;}
.x43{left:176.835000px;}
.x2b{left:178.980000px;}
.xc{left:181.155000px;}
.x4c{left:185.474987px;}
.x24{left:193.020000px;}
.x1d{left:219.660000px;}
.x40{left:220.784987px;}
.x25{left:232.260000px;}
.x19{left:237.705000px;}
.x3c{left:248.145000px;}
.x45{left:254.985000px;}
.x14{left:260.384987px;}
.x46{left:301.425000px;}
.x1c{left:328.110000px;}
.xa{left:351.150000px;}
.x12{left:369.149987px;}
.x47{left:378.510000px;}
.x1{left:380.670000px;}
.x3d{left:399.059987px;}
.x49{left:409.139987px;}
.x2{left:416.700000px;}
.x51{left:435.779987px;}
.x3{left:442.980000px;}
.x10{left:446.579987px;}
.xd{left:457.380000px;}
.xe{left:468.180000px;}
.x4{left:469.980000px;}
.x4f{left:478.619987px;}
.x4e{left:489.449987px;}
.x4d{left:534.809987px;}
.x4b{left:571.934987px;}
.x13{left:582.734987px;}
.xf{left:584.535000px;}
.x52{left:667.004987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.264000pt;}
.ls17{letter-spacing:-0.864000pt;}
.ls7{letter-spacing:-0.837333pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.414933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.278933pt;}
.ls16{letter-spacing:-0.017920pt;}
.lsb{letter-spacing:-0.013867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.014080pt;}
.ls3{letter-spacing:0.017920pt;}
.lse{letter-spacing:0.018133pt;}
.lsc{letter-spacing:0.222933pt;}
.ls1{letter-spacing:0.367360pt;}
.ls1d{letter-spacing:0.414933pt;}
.ls12{letter-spacing:0.432533pt;}
.ls15{letter-spacing:0.445333pt;}
.ls10{letter-spacing:0.591360pt;}
.ls0{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.960000pt;}
.lsf{letter-spacing:8.094720pt;}
.ls1a{letter-spacing:8.640000pt;}
.ls1b{letter-spacing:10.017280pt;}
.ls13{letter-spacing:11.934720pt;}
.ls1c{letter-spacing:21.440000pt;}
.ls19{letter-spacing:31.777280pt;}
.ls18{letter-spacing:36.361387pt;}
.ws14{word-spacing:-53.760000pt;}
.ws15{word-spacing:-42.240000pt;}
.wsf{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.872533pt;}
.ws16{word-spacing:-13.854933pt;}
.wsa{word-spacing:-13.458133pt;}
.ws11{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.422080pt;}
.ws12{word-spacing:-13.306880pt;}
.wsd{word-spacing:-13.025067pt;}
.ws1{word-spacing:-13.007467pt;}
.ws13{word-spacing:-12.176000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.881067pt;}
.ws4{word-spacing:-11.200000pt;}
.ws9{word-spacing:-10.782933pt;}
.ws2{word-spacing:-10.560000pt;}
.ws8{word-spacing:-10.546133pt;}
.ws3{word-spacing:-10.240000pt;}
.wsc{word-spacing:0.000000pt;}
.wsb{word-spacing:2.144853pt;}
.ws7{word-spacing:2.144960pt;}
._4{margin-left:-7.279478pt;}
._3{margin-left:-5.196797pt;}
._5{margin-left:-3.053425pt;}
._0{margin-left:-1.827732pt;}
._2{margin-left:-0.912522pt;}
._1{width:1.289595pt;}
._6{width:2.633269pt;}
._c{width:4.113667pt;}
._d{width:5.088930pt;}
._8{width:6.013204pt;}
._7{width:7.020818pt;}
._e{width:8.742646pt;}
._18{width:10.322145pt;}
._1d{width:11.290138pt;}
._25{width:12.254894pt;}
._17{width:13.170243pt;}
._12{width:14.717478pt;}
._10{width:15.839053pt;}
._2b{width:16.776064pt;}
._11{width:17.684762pt;}
._13{width:18.897850pt;}
._1e{width:20.582477pt;}
._1f{width:21.473432pt;}
._24{width:22.744767pt;}
._9{width:24.044867pt;}
._a{width:25.320561pt;}
._b{width:26.365929pt;}
._f{width:27.639325pt;}
._1a{width:28.559048pt;}
._19{width:30.333919pt;}
._32{width:32.179120pt;}
._20{width:34.000608pt;}
._21{width:35.590410pt;}
._16{width:36.971817pt;}
._14{width:38.210696pt;}
._15{width:39.659648pt;}
._23{width:41.995947pt;}
._22{width:43.191359pt;}
._2a{width:44.169501pt;}
._29{width:45.588372pt;}
._30{width:48.530420pt;}
._2f{width:50.534830pt;}
._1b{width:52.969279pt;}
._1c{width:54.823749pt;}
._2e{width:56.394240pt;}
._2d{width:57.306762pt;}
._2c{width:59.028910pt;}
._31{width:85.691935pt;}
._33{width:89.477120pt;}
._34{width:90.436690pt;}
._28{width:95.261860pt;}
._26{width:113.594665pt;}
._27{width:115.046400pt;}
._35{width:176.663467pt;}
.fs6{font-size:21.760000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:2.240000pt;}
.ya9{bottom:2.266667pt;}
.y8{bottom:2.560000pt;}
.ydc{bottom:4.160000pt;}
.yc{bottom:7.360000pt;}
.y9d{bottom:8.320000pt;}
.ya7{bottom:8.346667pt;}
.y9b{bottom:8.360000pt;}
.y9{bottom:12.192000pt;}
.y9e{bottom:14.400000pt;}
.y99{bottom:14.440000pt;}
.y7{bottom:14.720000pt;}
.ya8{bottom:14.746667pt;}
.y4{bottom:14.752000pt;}
.y3{bottom:16.992000pt;}
.yb{bottom:19.840000pt;}
.y6{bottom:26.880000pt;}
.ya{bottom:32.000000pt;}
.y78{bottom:33.312000pt;}
.y5{bottom:39.040000pt;}
.y15e{bottom:78.112000pt;}
.y129{bottom:81.952000pt;}
.yf3{bottom:82.272000pt;}
.yc4{bottom:82.592000pt;}
.y1ce{bottom:82.912000pt;}
.y44{bottom:83.232000pt;}
.y18d{bottom:87.072000pt;}
.y75{bottom:87.392000pt;}
.y15d{bottom:94.112000pt;}
.y43{bottom:95.392000pt;}
.y1cd{bottom:95.712000pt;}
.yb5{bottom:96.992000pt;}
.yf2{bottom:97.632000pt;}
.y128{bottom:97.952000pt;}
.yc3{bottom:98.912000pt;}
.y18c{bottom:99.232000pt;}
.y74{bottom:103.392000pt;}
.y42{bottom:107.552000pt;}
.y15c{bottom:110.432000pt;}
.y1cc{bottom:111.072000pt;}
.y18b{bottom:111.392000pt;}
.yb4{bottom:113.312000pt;}
.y127{bottom:113.952000pt;}
.yc2{bottom:114.912000pt;}
.yf1{bottom:115.872000pt;}
.y73{bottom:119.744000pt;}
.y18a{bottom:123.904000pt;}
.y1cb{bottom:126.464000pt;}
.yb3{bottom:129.344000pt;}
.y15b{bottom:129.664000pt;}
.y126{bottom:130.304000pt;}
.yc1{bottom:130.944000pt;}
.y41{bottom:132.224000pt;}
.y72{bottom:135.746667pt;}
.y189{bottom:136.066667pt;}
.y1ca{bottom:141.506667pt;}
.y40{bottom:144.386667pt;}
.y15a{bottom:145.026667pt;}
.y125{bottom:146.306667pt;}
.yc0{bottom:147.266667pt;}
.y188{bottom:148.226667pt;}
.yb2{bottom:150.146667pt;}
.y71{bottom:151.746667pt;}
.y1c9{bottom:156.866667pt;}
.y3f{bottom:157.186667pt;}
.y187{bottom:160.706667pt;}
.y124{bottom:162.306667pt;}
.ybf{bottom:163.266667pt;}
.yb1{bottom:165.506667pt;}
.y70{bottom:167.746667pt;}
.y159{bottom:169.026667pt;}
.y3e{bottom:172.226667pt;}
.y186{bottom:172.866667pt;}
.y123{bottom:178.626667pt;}
.ybe{bottom:179.266667pt;}
.yb0{bottom:180.866667pt;}
.y6f{bottom:184.066667pt;}
.y185{bottom:185.026667pt;}
.y158{bottom:185.346667pt;}
.y3d{bottom:185.986667pt;}
.y1c8{bottom:187.586667pt;}
.y122{bottom:194.626667pt;}
.ybd{bottom:195.586667pt;}
.y184{bottom:197.506667pt;}
.yaf{bottom:199.106667pt;}
.y3c{bottom:199.746667pt;}
.y6e{bottom:200.066667pt;}
.y157{bottom:201.346667pt;}
.y1c7{bottom:202.946667pt;}
.y183{bottom:209.666667pt;}
.y121{bottom:210.626667pt;}
.ybc{bottom:211.586667pt;}
.y3b{bottom:213.826667pt;}
.y6d{bottom:216.066667pt;}
.y1c6{bottom:218.306667pt;}
.y156{bottom:220.546667pt;}
.y182{bottom:221.826667pt;}
.y120{bottom:226.946667pt;}
.y3a{bottom:227.586667pt;}
.y1c5{bottom:230.786667pt;}
.y6c{bottom:232.386667pt;}
.y181{bottom:234.306667pt;}
.y155{bottom:235.933333pt;}
.y39{bottom:241.373333pt;}
.y11f{bottom:242.973333pt;}
.ybb{bottom:243.933333pt;}
.y1c4{bottom:245.533333pt;}
.y180{bottom:246.493333pt;}
.y6b{bottom:248.413333pt;}
.y1c3{bottom:257.693333pt;}
.y17f{bottom:258.653333pt;}
.y11e{bottom:258.973333pt;}
.yba{bottom:259.933333pt;}
.y154{bottom:260.253333pt;}
.y6a{bottom:264.413333pt;}
.y1c2{bottom:269.853333pt;}
.y17e{bottom:271.133333pt;}
.y11d{bottom:274.973333pt;}
.yb9{bottom:275.933333pt;}
.y153{bottom:276.253333pt;}
.y69{bottom:280.733333pt;}
.y1c1{bottom:282.333333pt;}
.y17d{bottom:283.293333pt;}
.y38{bottom:286.173333pt;}
.yf0{bottom:290.653333pt;}
.y152{bottom:292.253333pt;}
.y11c{bottom:294.493333pt;}
.yb8{bottom:295.453333pt;}
.y68{bottom:296.733333pt;}
.y37{bottom:302.173333pt;}
.y17c{bottom:304.093333pt;}
.yef{bottom:306.653333pt;}
.y151{bottom:308.253333pt;}
.y67{bottom:312.733333pt;}
.y36{bottom:318.173333pt;}
.y11b{bottom:318.493333pt;}
.y1c0{bottom:319.133333pt;}
.yb7{bottom:319.453333pt;}
.yee{bottom:322.653333pt;}
.y150{bottom:324.573333pt;}
.y1bf{bottom:331.293333pt;}
.y11a{bottom:334.493333pt;}
.yb6{bottom:335.453333pt;}
.y66{bottom:336.093333pt;}
.y35{bottom:338.013333pt;}
.yed{bottom:338.973333pt;}
.y14f{bottom:340.573333pt;}
.y1be{bottom:343.453333pt;}
.yae{bottom:348.893333pt;}
.y119{bottom:350.813333pt;}
.y17b{bottom:352.413333pt;}
.yec{bottom:355.013333pt;}
.y1bd{bottom:355.973333pt;}
.yad{bottom:363.973333pt;}
.y118{bottom:366.853333pt;}
.y65{bottom:368.133333pt;}
.y17a{bottom:368.453333pt;}
.yeb{bottom:371.013333pt;}
.y34{bottom:373.893333pt;}
.y1bc{bottom:380.293333pt;}
.y117{bottom:382.853333pt;}
.y64{bottom:384.453333pt;}
.yea{bottom:387.333333pt;}
.yac{bottom:391.173333pt;}
.y14e{bottom:395.973333pt;}
.y116{bottom:399.173333pt;}
.y63{bottom:400.453333pt;}
.y1bb{bottom:401.093333pt;}
.ye9{bottom:403.333333pt;}
.y33{bottom:404.933333pt;}
.y14d{bottom:412.293333pt;}
.y115{bottom:415.173333pt;}
.y62{bottom:416.453333pt;}
.y179{bottom:416.773333pt;}
.yab{bottom:418.373333pt;}
.y32{bottom:418.693333pt;}
.ye8{bottom:419.333333pt;}
.y14c{bottom:428.293333pt;}
.y114{bottom:431.173333pt;}
.y1ba{bottom:431.813333pt;}
.y31{bottom:432.453333pt;}
.y61{bottom:432.773333pt;}
.ye7{bottom:435.333333pt;}
.y14b{bottom:444.293333pt;}
.yaa{bottom:445.573333pt;}
.y30{bottom:446.213333pt;}
.y113{bottom:447.493333pt;}
.y60{bottom:448.773333pt;}
.ye6{bottom:451.653333pt;}
.y1b9{bottom:456.453333pt;}
.y2f{bottom:459.973333pt;}
.y14a{bottom:460.613333pt;}
.y112{bottom:463.493333pt;}
.y5f{bottom:464.773333pt;}
.y178{bottom:465.093333pt;}
.ye5{bottom:467.653333pt;}
.y1b8{bottom:468.613333pt;}
.ya6{bottom:472.773333pt;}
.y149{bottom:476.640000pt;}
.y2e{bottom:479.200000pt;}
.y111{bottom:479.520000pt;}
.y5e{bottom:481.120000pt;}
.ye4{bottom:483.680000pt;}
.y148{bottom:492.640000pt;}
.y2d{bottom:492.960000pt;}
.y1b7{bottom:493.280000pt;}
.y110{bottom:495.840000pt;}
.y5d{bottom:497.120000pt;}
.ya5{bottom:500.000000pt;}
.y1b6{bottom:505.440000pt;}
.y147{bottom:508.640000pt;}
.y10f{bottom:511.840000pt;}
.y2c{bottom:512.160000pt;}
.y5c{bottom:513.120000pt;}
.y177{bottom:513.440000pt;}
.ye3{bottom:516.000000pt;}
.y1b5{bottom:517.920000pt;}
.y146{bottom:524.960000pt;}
.y2b{bottom:525.920000pt;}
.ya4{bottom:527.200000pt;}
.y10e{bottom:527.840000pt;}
.y5b{bottom:529.440000pt;}
.y1b4{bottom:530.080000pt;}
.ye2{bottom:532.000000pt;}
.y2a{bottom:539.680000pt;}
.y145{bottom:540.960000pt;}
.y1b3{bottom:542.240000pt;}
.y10d{bottom:543.840000pt;}
.y5a{bottom:545.440000pt;}
.ye1{bottom:548.320000pt;}
.y29{bottom:553.440000pt;}
.ya3{bottom:554.400000pt;}
.y1b2{bottom:554.720000pt;}
.y144{bottom:556.960000pt;}
.y10c{bottom:560.160000pt;}
.y59{bottom:561.440000pt;}
.y176{bottom:561.760000pt;}
.ye0{bottom:564.320000pt;}
.y1b1{bottom:566.880000pt;}
.y28{bottom:567.520000pt;}
.ya2{bottom:569.440000pt;}
.y143{bottom:573.280000pt;}
.y58{bottom:577.440000pt;}
.y175{bottom:577.760000pt;}
.y1b0{bottom:579.040000pt;}
.y27{bottom:581.280000pt;}
.ydf{bottom:583.520000pt;}
.y142{bottom:589.280000pt;}
.y1af{bottom:591.520000pt;}
.y57{bottom:593.786667pt;}
.y26{bottom:595.066667pt;}
.ya1{bottom:596.666667pt;}
.y1ae{bottom:603.706667pt;}
.y141{bottom:605.306667pt;}
.yde{bottom:607.866667pt;}
.y25{bottom:608.826667pt;}
.y56{bottom:609.786667pt;}
.y10b{bottom:611.066667pt;}
.y1ad{bottom:615.866667pt;}
.y140{bottom:621.626667pt;}
.y24{bottom:622.586667pt;}
.ya0{bottom:623.866667pt;}
.y55{bottom:625.786667pt;}
.y10a{bottom:627.066667pt;}
.y1ac{bottom:628.346667pt;}
.y174{bottom:634.426667pt;}
.y23{bottom:636.346667pt;}
.y13f{bottom:637.626667pt;}
.y1ab{bottom:640.506667pt;}
.ydd{bottom:641.146667pt;}
.y54{bottom:642.106667pt;}
.y109{bottom:643.386667pt;}
.y22{bottom:650.106667pt;}
.y9f{bottom:651.066667pt;}
.y1aa{bottom:652.666667pt;}
.y13e{bottom:653.626667pt;}
.ydb{bottom:656.826667pt;}
.y53{bottom:658.106667pt;}
.y108{bottom:662.586667pt;}
.y21{bottom:663.866667pt;}
.y1a9{bottom:665.146667pt;}
.y173{bottom:666.426667pt;}
.y13d{bottom:673.146667pt;}
.y52{bottom:674.106667pt;}
.yda{bottom:675.706667pt;}
.y1a8{bottom:677.306667pt;}
.y20{bottom:677.946667pt;}
.y9c{bottom:678.266667pt;}
.y172{bottom:682.746667pt;}
.y107{bottom:685.946667pt;}
.y1a7{bottom:689.466667pt;}
.y51{bottom:690.426667pt;}
.y1f{bottom:691.706667pt;}
.y13c{bottom:697.146667pt;}
.y171{bottom:698.746667pt;}
.y1a6{bottom:701.946667pt;}
.yd9{bottom:702.906667pt;}
.y1e{bottom:705.466667pt;}
.y50{bottom:706.426667pt;}
.y13b{bottom:713.186667pt;}
.y1a5{bottom:714.146667pt;}
.y170{bottom:714.786667pt;}
.y106{bottom:717.986667pt;}
.y1d{bottom:719.266667pt;}
.y4f{bottom:722.466667pt;}
.y1a4{bottom:726.306667pt;}
.y13a{bottom:729.506667pt;}
.y16f{bottom:731.106667pt;}
.y1c{bottom:733.026667pt;}
.y105{bottom:734.306667pt;}
.yd8{bottom:737.186667pt;}
.y4e{bottom:738.786667pt;}
.y98{bottom:739.746667pt;}
.y139{bottom:745.506667pt;}
.y1b{bottom:746.786667pt;}
.y16e{bottom:747.106667pt;}
.y104{bottom:750.306667pt;}
.y1a3{bottom:750.946667pt;}
.yd7{bottom:752.546667pt;}
.y4d{bottom:754.786667pt;}
.y97{bottom:758.626667pt;}
.y1a{bottom:760.546667pt;}
.y138{bottom:761.506667pt;}
.y16d{bottom:763.106667pt;}
.y103{bottom:766.306667pt;}
.y96{bottom:767.266667pt;}
.y4c{bottom:770.786667pt;}
.yd6{bottom:773.986667pt;}
.y19{bottom:774.306667pt;}
.y1a2{bottom:775.586667pt;}
.y137{bottom:777.826667pt;}
.y16c{bottom:779.426667pt;}
.y102{bottom:782.626667pt;}
.y95{bottom:783.266667pt;}
.y4b{bottom:786.786667pt;}
.y1a1{bottom:787.746667pt;}
.y18{bottom:788.066667pt;}
.y87{bottom:788.386667pt;}
.yd5{bottom:789.986667pt;}
.y136{bottom:793.826667pt;}
.y16b{bottom:795.426667pt;}
.y101{bottom:798.626667pt;}
.y94{bottom:799.586667pt;}
.y1a0{bottom:799.906667pt;}
.y17{bottom:802.146667pt;}
.y4a{bottom:803.106667pt;}
.y86{bottom:805.986667pt;}
.yd4{bottom:806.306667pt;}
.y135{bottom:809.826667pt;}
.y16a{bottom:811.426667pt;}
.y19f{bottom:812.386667pt;}
.y100{bottom:814.626667pt;}
.y93{bottom:815.586667pt;}
.y16{bottom:815.906667pt;}
.y49{bottom:819.106667pt;}
.yd3{bottom:822.306667pt;}
.y85{bottom:823.586667pt;}
.y19e{bottom:824.546667pt;}
.y134{bottom:825.826667pt;}
.y169{bottom:827.746667pt;}
.y15{bottom:829.693333pt;}
.yff{bottom:830.973333pt;}
.y92{bottom:831.613333pt;}
.y48{bottom:835.133333pt;}
.y19d{bottom:836.733333pt;}
.yd2{bottom:838.333333pt;}
.y84{bottom:841.213333pt;}
.y133{bottom:842.173333pt;}
.y14{bottom:843.453333pt;}
.y168{bottom:843.773333pt;}
.yfe{bottom:846.973333pt;}
.y91{bottom:847.933333pt;}
.y19c{bottom:849.213333pt;}
.y47{bottom:851.453333pt;}
.yd1{bottom:854.653333pt;}
.y13{bottom:857.213333pt;}
.y132{bottom:858.173333pt;}
.y83{bottom:858.813333pt;}
.y167{bottom:859.773333pt;}
.y19b{bottom:861.373333pt;}
.yfd{bottom:862.973333pt;}
.y90{bottom:863.933333pt;}
.y46{bottom:867.453333pt;}
.yd0{bottom:870.653333pt;}
.y12{bottom:870.973333pt;}
.y19a{bottom:873.533333pt;}
.y131{bottom:874.173333pt;}
.y166{bottom:875.773333pt;}
.y82{bottom:876.733333pt;}
.y8f{bottom:879.933333pt;}
.yfc{bottom:880.253333pt;}
.y45{bottom:883.453333pt;}
.y11{bottom:884.733333pt;}
.y199{bottom:886.013333pt;}
.ycf{bottom:886.653333pt;}
.y130{bottom:890.493333pt;}
.y81{bottom:894.333333pt;}
.y165{bottom:895.293333pt;}
.y8e{bottom:896.253333pt;}
.yfb{bottom:897.853333pt;}
.y198{bottom:898.173333pt;}
.yce{bottom:902.653333pt;}
.y12f{bottom:906.493333pt;}
.y197{bottom:910.333333pt;}
.y80{bottom:911.933333pt;}
.y8d{bottom:912.253333pt;}
.yfa{bottom:914.173333pt;}
.y10{bottom:915.133333pt;}
.ycd{bottom:918.973333pt;}
.y164{bottom:919.293333pt;}
.y12e{bottom:922.493333pt;}
.y196{bottom:922.813333pt;}
.y8c{bottom:928.253333pt;}
.y7f{bottom:929.533333pt;}
.yf9{bottom:930.173333pt;}
.ycc{bottom:934.973333pt;}
.y163{bottom:935.293333pt;}
.y12d{bottom:938.813333pt;}
.y8b{bottom:944.253333pt;}
.yf8{bottom:946.173333pt;}
.y7e{bottom:947.133333pt;}
.ycb{bottom:951.013333pt;}
.y162{bottom:951.653333pt;}
.yf{bottom:951.973333pt;}
.y12c{bottom:954.853333pt;}
.y195{bottom:959.653333pt;}
.yf7{bottom:962.213333pt;}
.y8a{bottom:963.813333pt;}
.y7d{bottom:964.773333pt;}
.yca{bottom:967.333333pt;}
.y161{bottom:967.653333pt;}
.y12b{bottom:970.853333pt;}
.y194{bottom:971.813333pt;}
.yf6{bottom:978.533333pt;}
.y7c{bottom:982.373333pt;}
.yc9{bottom:983.333333pt;}
.y160{bottom:983.653333pt;}
.y193{bottom:983.973333pt;}
.y89{bottom:987.173333pt;}
.ye{bottom:988.773333pt;}
.yf5{bottom:994.533333pt;}
.y192{bottom:996.453333pt;}
.y7b{bottom:999.973333pt;}
.yc8{bottom:1002.533333pt;}
.y12a{bottom:1003.173333pt;}
.y191{bottom:1008.613333pt;}
.yf4{bottom:1010.533333pt;}
.y15f{bottom:1015.973333pt;}
.y7a{bottom:1017.573333pt;}
.y1d0{bottom:1017.893333pt;}
.y88{bottom:1019.173333pt;}
.y190{bottom:1020.773333pt;}
.yd{bottom:1025.573333pt;}
.yc7{bottom:1026.853333pt;}
.y18f{bottom:1033.253333pt;}
.y79{bottom:1035.173333pt;}
.y1cf{bottom:1041.573333pt;}
.yc6{bottom:1042.853333pt;}
.y18e{bottom:1045.413333pt;}
.y77{bottom:1051.173333pt;}
.yc5{bottom:1065.253333pt;}
.y76{bottom:1066.853333pt;}
.y2{bottom:1082.240000pt;}
.y1{bottom:1097.600000pt;}
.h15{height:12.160000pt;}
.h18{height:12.512000pt;}
.h11{height:15.353125pt;}
.h1a{height:16.000000pt;}
.h14{height:24.320000pt;}
.h12{height:24.352000pt;}
.h16{height:24.640000pt;}
.h17{height:24.672000pt;}
.h13{height:29.803125pt;}
.hc{height:34.318750pt;}
.h5{height:34.815000pt;}
.h9{height:35.245000pt;}
.hd{height:37.867500pt;}
.h2{height:37.931250pt;}
.h19{height:38.955000pt;}
.h10{height:39.138750pt;}
.h1b{height:39.821250pt;}
.h8{height:41.543750pt;}
.h6{height:41.920000pt;}
.ha{height:43.605000pt;}
.h3{height:48.195000pt;}
.h4{height:48.960000pt;}
.h1d{height:52.785000pt;}
.he{height:55.046250pt;}
.h1c{height:57.375000pt;}
.hf{height:58.563750pt;}
.hb{height:95.242500pt;}
.h7{height:114.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:38.080000pt;}
.w9{width:38.720000pt;}
.wf{width:40.640000pt;}
.w11{width:43.872000pt;}
.w10{width:67.872000pt;}
.we{width:68.832000pt;}
.w7{width:79.712000pt;}
.wb{width:80.352000pt;}
.wd{width:87.072000pt;}
.w6{width:110.144000pt;}
.wa{width:110.784000pt;}
.w2{width:173.213333pt;}
.w3{width:215.773333pt;}
.w8{width:440.800000pt;}
.wc{width:441.440000pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:0.960000pt;}
.x23{left:2.560000pt;}
.x16{left:4.160000pt;}
.x15{left:5.760000pt;}
.x2d{left:7.040000pt;}
.x2f{left:8.640000pt;}
.x5{left:9.626667pt;}
.x34{left:10.560000pt;}
.x44{left:11.840000pt;}
.x1e{left:12.800000pt;}
.x21{left:14.720000pt;}
.x32{left:16.032000pt;}
.x1b{left:16.960000pt;}
.x27{left:17.952000pt;}
.x20{left:19.520000pt;}
.x1a{left:22.720000pt;}
.x2a{left:24.672000pt;}
.x33{left:25.632000pt;}
.x1f{left:30.112000pt;}
.x48{left:32.000000pt;}
.x18{left:32.994667pt;}
.x37{left:34.914667pt;}
.x3b{left:40.000000pt;}
.x2c{left:41.314667pt;}
.x3a{left:55.074667pt;}
.x36{left:59.546667pt;}
.x39{left:61.472000pt;}
.x6{left:62.432000pt;}
.x7{left:65.312000pt;}
.x3e{left:66.271988pt;}
.x42{left:69.472000pt;}
.x11{left:70.431988pt;}
.xb{left:72.032000pt;}
.x4a{left:76.511988pt;}
.x50{left:81.311988pt;}
.x3f{left:85.151988pt;}
.x31{left:86.426667pt;}
.x9{left:90.272000pt;}
.x30{left:98.906667pt;}
.x17{left:100.512000pt;}
.x2e{left:103.066667pt;}
.x26{left:104.986667pt;}
.x35{left:106.586667pt;}
.x38{left:124.826667pt;}
.x41{left:136.706655pt;}
.x8{left:146.626667pt;}
.x28{left:153.653333pt;}
.x22{left:156.213333pt;}
.x43{left:157.186667pt;}
.x2b{left:159.093333pt;}
.xc{left:161.026667pt;}
.x4c{left:164.866655pt;}
.x24{left:171.573333pt;}
.x1d{left:195.253333pt;}
.x40{left:196.253322pt;}
.x25{left:206.453333pt;}
.x19{left:211.293333pt;}
.x3c{left:220.573333pt;}
.x45{left:226.653333pt;}
.x14{left:231.453322pt;}
.x46{left:267.933333pt;}
.x1c{left:291.653333pt;}
.xa{left:312.133333pt;}
.x12{left:328.133322pt;}
.x47{left:336.453333pt;}
.x1{left:338.373333pt;}
.x3d{left:354.719988pt;}
.x49{left:363.679988pt;}
.x2{left:370.400000pt;}
.x51{left:387.359988pt;}
.x3{left:393.760000pt;}
.x10{left:396.959988pt;}
.xd{left:406.560000pt;}
.xe{left:416.160000pt;}
.x4{left:417.760000pt;}
.x4f{left:425.439988pt;}
.x4e{left:435.066655pt;}
.x4d{left:475.386655pt;}
.x4b{left:508.386655pt;}
.x13{left:517.986655pt;}
.xf{left:519.586667pt;}
.x52{left:592.893322pt;}
}




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