
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ead392d47ba7caec6014c8d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_ebb18f7b058a4d2b9cc91c56.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_06cfd016db29af0f695f4d73.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_4fd8e5f1cd017025fac3baf6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_19913900534086593b3d8b8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_bfc83eb584b2f2e6141414fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_eddfe1dff35be3460247ffea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls15{letter-spacing:-0.116400px;}
.ls6{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.063600px;}
.ls16{letter-spacing:-0.018360px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.118200px;}
.ls4{letter-spacing:0.119400px;}
.ls13{letter-spacing:0.120000px;}
.lse{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.lsd{letter-spacing:91.286640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.344600px;}
.ws9{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.208040px;}
.wsb{word-spacing:-13.162800px;}
.wse{word-spacing:-13.110000px;}
.wsc{word-spacing:-13.065600px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._12{margin-left:-4.187039px;}
._4{margin-left:-3.006000px;}
._1{margin-left:-1.057440px;}
._0{width:1.509672px;}
._3{width:3.207961px;}
._2{width:4.208400px;}
._5{width:5.530800px;}
._6{width:7.094400px;}
._10{width:8.537040px;}
._11{width:10.135801px;}
._9{width:11.182200px;}
._a{width:12.200281px;}
._f{width:14.319481px;}
._e{width:15.330600px;}
._7{width:16.833600px;}
._15{width:17.845368px;}
._13{width:18.877680px;}
._14{width:20.200320px;}
._16{width:21.462840px;}
._17{width:22.484880px;}
._1a{width:23.680321px;}
._8{width:24.709200px;}
._18{width:27.114120px;}
._19{width:28.256400px;}
._1f{width:30.180240px;}
._d{width:31.767960px;}
._c{width:33.161640px;}
._b{width:34.407360px;}
._1e{width:35.771400px;}
._21{width:37.454760px;}
._1d{width:39.979800px;}
._20{width:44.669160px;}
._29{width:46.929000px;}
._1b{width:48.456720px;}
._1c{width:49.538880px;}
._2c{width:57.248279px;}
._2b{width:58.291680px;}
._28{width:61.021800px;}
._24{width:68.536800px;}
._27{width:79.598880px;}
._22{width:87.835320px;}
._23{width:88.917480px;}
._2a{width:94.208040px;}
._2d{width:107.590080px;}
._25{width:151.382160px;}
._26{width:165.545760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y136{bottom:7.830000px;}
.y183{bottom:7.860000px;}
.y13c{bottom:7.920000px;}
.y138{bottom:25.380000px;}
.y13b{bottom:25.470000px;}
.y170{bottom:25.500000px;}
.y159{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd9{bottom:112.980000px;}
.y1e7{bottom:113.610000px;}
.y203{bottom:116.130000px;}
.y12f{bottom:116.580000px;}
.y5b{bottom:122.880000px;}
.y152{bottom:123.780000px;}
.y1c1{bottom:127.200000px;}
.yf6{bottom:128.550000px;}
.y190{bottom:129.990000px;}
.yd8{bottom:130.530000px;}
.y1e6{bottom:131.250000px;}
.y202{bottom:133.680000px;}
.y12e{bottom:134.130000px;}
.yac{bottom:134.940000px;}
.y16e{bottom:137.280000px;}
.y89{bottom:141.330000px;}
.y151{bottom:141.420000px;}
.y27{bottom:141.600000px;}
.y1c0{bottom:144.840000px;}
.yf5{bottom:146.100000px;}
.y18f{bottom:147.540000px;}
.yd7{bottom:148.170000px;}
.y1e5{bottom:148.800000px;}
.y12d{bottom:151.680000px;}
.yab{bottom:152.580000px;}
.y16d{bottom:154.830000px;}
.y5a{bottom:158.430000px;}
.y88{bottom:158.880000px;}
.y150{bottom:158.970000px;}
.y26{bottom:159.240000px;}
.y201{bottom:160.320000px;}
.y1bf{bottom:162.390000px;}
.yf4{bottom:163.740000px;}
.y18e{bottom:165.180000px;}
.yd6{bottom:165.720000px;}
.y12c{bottom:169.320000px;}
.yaa{bottom:170.130000px;}
.y16c{bottom:172.380000px;}
.y1e4{bottom:175.350000px;}
.y59{bottom:175.980000px;}
.y87{bottom:176.430000px;}
.y14f{bottom:176.610000px;}
.y200{bottom:177.870000px;}
.y1be{bottom:180.030000px;}
.yf3{bottom:181.290000px;}
.y18d{bottom:182.730000px;}
.yd5{bottom:183.270000px;}
.y12b{bottom:186.870000px;}
.ya9{bottom:187.680000px;}
.y16b{bottom:190.020000px;}
.y1e3{bottom:192.990000px;}
.y86{bottom:194.070000px;}
.y58{bottom:194.430000px;}
.y25{bottom:194.790000px;}
.y1bd{bottom:197.580000px;}
.yf2{bottom:198.930000px;}
.y1ff{bottom:204.510000px;}
.ya8{bottom:205.320000px;}
.y14e{bottom:209.550000px;}
.yd4{bottom:210.180000px;}
.y57{bottom:211.980000px;}
.y24{bottom:212.340000px;}
.y12a{bottom:213.510000px;}
.y18c{bottom:215.760000px;}
.y1e2{bottom:219.540000px;}
.y85{bottom:220.620000px;}
.y1fe{bottom:222.060000px;}
.y16a{bottom:222.960000px;}
.y1bc{bottom:224.130000px;}
.yf1{bottom:225.480000px;}
.y23{bottom:229.980000px;}
.y56{bottom:230.430000px;}
.y107{bottom:231.870000px;}
.y14d{bottom:236.910000px;}
.y1fd{bottom:239.610000px;}
.ya7{bottom:240.870000px;}
.y18b{bottom:243.030000px;}
.y1e1{bottom:246.180000px;}
.y22{bottom:247.530000px;}
.y55{bottom:247.980000px;}
.y129{bottom:249.060000px;}
.y169{bottom:250.320000px;}
.y84{bottom:253.200000px;}
.ya6{bottom:258.510000px;}
.y1bb{bottom:259.770000px;}
.yf0{bottom:261.030000px;}
.y1e0{bottom:263.730000px;}
.y21{bottom:265.170000px;}
.y1fc{bottom:266.250000px;}
.y54{bottom:266.430000px;}
.y128{bottom:266.610000px;}
.y106{bottom:267.510000px;}
.ya5{bottom:276.060000px;}
.y1ba{bottom:277.320000px;}
.yef{bottom:278.670000px;}
.y1df{bottom:281.280000px;}
.y14c{bottom:281.820000px;}
.y20{bottom:282.720000px;}
.y1fb{bottom:283.800000px;}
.y53{bottom:283.980000px;}
.y127{bottom:284.250000px;}
.y105{bottom:285.060000px;}
.y83{bottom:288.840000px;}
.y18a{bottom:291.720000px;}
.ya4{bottom:293.610000px;}
.y1b9{bottom:294.960000px;}
.y168{bottom:295.230000px;}
.yee{bottom:296.220000px;}
.y1f{bottom:300.270000px;}
.y1fa{bottom:301.440000px;}
.y126{bottom:301.800000px;}
.y104{bottom:302.610000px;}
.y82{bottom:306.390000px;}
.y1de{bottom:307.920000px;}
.ya3{bottom:311.250000px;}
.y52{bottom:311.430000px;}
.y1b8{bottom:312.510000px;}
.yed{bottom:313.860000px;}
.y125{bottom:319.440000px;}
.y103{bottom:320.250000px;}
.y81{bottom:323.940000px;}
.y1dd{bottom:325.470000px;}
.y14b{bottom:326.730000px;}
.y189{bottom:327.360000px;}
.y1f9{bottom:327.990000px;}
.ya2{bottom:328.800000px;}
.y1b7{bottom:330.060000px;}
.yec{bottom:331.410000px;}
.y1e{bottom:335.910000px;}
.y124{bottom:336.990000px;}
.y102{bottom:337.800000px;}
.y167{bottom:340.140000px;}
.y80{bottom:341.580000px;}
.y188{bottom:344.910000px;}
.y1f8{bottom:345.540000px;}
.yd3{bottom:346.800000px;}
.y51{bottom:347.070000px;}
.y1b6{bottom:347.700000px;}
.yeb{bottom:348.960000px;}
.y1dc{bottom:352.110000px;}
.y123{bottom:354.540000px;}
.ya1{bottom:355.440000px;}
.y7f{bottom:359.130000px;}
.y1d{bottom:362.820000px;}
.yd2{bottom:364.440000px;}
.y50{bottom:364.620000px;}
.y1b5{bottom:365.250000px;}
.yea{bottom:366.600000px;}
.y1db{bottom:369.660000px;}
.y14a{bottom:371.640000px;}
.y122{bottom:372.180000px;}
.y101{bottom:372.990000px;}
.y7e{bottom:376.770000px;}
.y187{bottom:380.550000px;}
.y20e{bottom:381.180000px;}
.yd1{bottom:381.990000px;}
.y1b4{bottom:382.800000px;}
.y4f{bottom:383.070000px;}
.ye9{bottom:384.150000px;}
.y166{bottom:385.050000px;}
.y1da{bottom:387.210000px;}
.y121{bottom:389.730000px;}
.y100{bottom:390.540000px;}
.ya0{bottom:390.990000px;}
.y186{bottom:398.100000px;}
.y20d{bottom:398.730000px;}
.yd0{bottom:399.540000px;}
.y1b3{bottom:400.440000px;}
.y4e{bottom:400.620000px;}
.ye8{bottom:401.790000px;}
.y7d{bottom:403.320000px;}
.y120{bottom:407.370000px;}
.y9f{bottom:408.540000px;}
.y1c{bottom:411.060000px;}
.y1d9{bottom:414.120000px;}
.y185{bottom:415.650000px;}
.y1f7{bottom:416.370000px;}
.y149{bottom:416.550000px;}
.ycf{bottom:417.180000px;}
.y1b2{bottom:417.990000px;}
.y4d{bottom:418.980000px;}
.ye7{bottom:419.340000px;}
.y20c{bottom:425.370000px;}
.y9e{bottom:426.180000px;}
.y1b{bottom:428.970000px;}
.y165{bottom:429.960000px;}
.y184{bottom:433.290000px;}
.y11f{bottom:433.920000px;}
.yce{bottom:434.730000px;}
.y4c{bottom:436.530000px;}
.ye6{bottom:436.890000px;}
.y7c{bottom:438.870000px;}
.y20b{bottom:442.920000px;}
.y9d{bottom:443.730000px;}
.y1b1{bottom:444.630000px;}
.y1f6{bottom:451.470000px;}
.ycd{bottom:452.370000px;}
.y4b{bottom:454.980000px;}
.y7b{bottom:456.510000px;}
.y20a{bottom:460.470000px;}
.yff{bottom:461.370000px;}
.y148{bottom:461.460000px;}
.y1d8{bottom:462.450000px;}
.ye5{bottom:463.440000px;}
.y1a{bottom:466.050000px;}
.y182{bottom:466.230000px;}
.y11e{bottom:469.470000px;}
.ycc{bottom:469.950000px;}
.y9c{bottom:470.400000px;}
.y4a{bottom:472.560000px;}
.y7a{bottom:474.090000px;}
.y164{bottom:474.900000px;}
.y1f5{bottom:478.140000px;}
.yfe{bottom:478.950000px;}
.y1b0{bottom:480.210000px;}
.y19{bottom:483.630000px;}
.y11d{bottom:487.140000px;}
.ycb{bottom:487.500000px;}
.y1d7{bottom:489.390000px;}
.y79{bottom:491.730000px;}
.y181{bottom:493.620000px;}
.y1f4{bottom:495.690000px;}
.ye4{bottom:496.140000px;}
.yfd{bottom:496.500000px;}
.y1af{bottom:497.760000px;}
.y49{bottom:500.010000px;}
.y18{bottom:501.180000px;}
.y11c{bottom:504.690000px;}
.yca{bottom:505.140000px;}
.y9b{bottom:505.950000px;}
.y78{bottom:509.280000px;}
.y147{bottom:510.180000px;}
.y1f3{bottom:513.330000px;}
.yfc{bottom:514.140000px;}
.y1ae{bottom:515.400000px;}
.y17{bottom:518.820000px;}
.y11b{bottom:522.330000px;}
.yc9{bottom:522.690000px;}
.y9a{bottom:523.500000px;}
.y163{bottom:523.590000px;}
.y1d6{bottom:526.740000px;}
.y77{bottom:526.830000px;}
.y209{bottom:531.330000px;}
.ye3{bottom:531.690000px;}
.y1ad{bottom:532.950000px;}
.y48{bottom:535.650000px;}
.y16{bottom:536.370000px;}
.y11a{bottom:539.880000px;}
.yc8{bottom:540.330000px;}
.y99{bottom:541.140000px;}
.y180{bottom:542.310000px;}
.y76{bottom:544.470000px;}
.y146{bottom:545.820000px;}
.y208{bottom:548.880000px;}
.yfb{bottom:549.330000px;}
.y1ac{bottom:550.590000px;}
.y47{bottom:553.200000px;}
.y15{bottom:553.920000px;}
.y119{bottom:557.430000px;}
.ye2{bottom:558.330000px;}
.y98{bottom:558.690000px;}
.y162{bottom:559.230000px;}
.y145{bottom:563.370000px;}
.y207{bottom:566.430000px;}
.y1ab{bottom:568.140000px;}
.y14{bottom:571.560000px;}
.y46{bottom:571.650000px;}
.y1d5{bottom:574.980000px;}
.y118{bottom:575.070000px;}
.yc7{bottom:575.880000px;}
.y97{bottom:576.330000px;}
.y161{bottom:576.780000px;}
.y17f{bottom:577.860000px;}
.y75{bottom:580.020000px;}
.y1f2{bottom:584.070000px;}
.y1aa{bottom:585.690000px;}
.y13{bottom:589.110000px;}
.y45{bottom:589.200000px;}
.y144{bottom:590.010000px;}
.y1d4{bottom:592.530000px;}
.y206{bottom:593.070000px;}
.yc6{bottom:593.430000px;}
.y96{bottom:593.880000px;}
.y17e{bottom:595.500000px;}
.y74{bottom:597.660000px;}
.y117{bottom:601.620000px;}
.y1a9{bottom:603.330000px;}
.y160{bottom:603.420000px;}
.y12{bottom:606.750000px;}
.y44{bottom:607.650000px;}
.y1d3{bottom:610.080000px;}
.y205{bottom:610.620000px;}
.yc5{bottom:611.070000px;}
.y95{bottom:611.430000px;}
.y73{bottom:615.210000px;}
.y1a8{bottom:620.880000px;}
.y11{bottom:624.300000px;}
.y43{bottom:625.200000px;}
.y143{bottom:625.560000px;}
.y1f1{bottom:628.260000px;}
.y1d2{bottom:628.530000px;}
.yc4{bottom:628.620000px;}
.y94{bottom:629.070000px;}
.y17d{bottom:631.050000px;}
.y72{bottom:632.760000px;}
.y116{bottom:637.260000px;}
.y1a7{bottom:638.520000px;}
.y15f{bottom:638.970000px;}
.y10{bottom:641.850000px;}
.y142{bottom:643.110000px;}
.y42{bottom:643.560000px;}
.y1d1{bottom:646.080000px;}
.y93{bottom:646.620000px;}
.y17c{bottom:648.690000px;}
.y71{bottom:650.400000px;}
.y115{bottom:654.810000px;}
.y15e{bottom:656.520000px;}
.yf{bottom:659.490000px;}
.y141{bottom:660.750000px;}
.yc3{bottom:664.260000px;}
.y1d0{bottom:664.530000px;}
.y1a6{bottom:665.070000px;}
.y17b{bottom:666.240000px;}
.y114{bottom:672.360000px;}
.y92{bottom:673.260000px;}
.y15d{bottom:674.160000px;}
.ye{bottom:677.040000px;}
.y140{bottom:678.300000px;}
.y41{bottom:680.010000px;}
.yc2{bottom:681.810000px;}
.y1cf{bottom:682.080000px;}
.y17a{bottom:683.790000px;}
.y70{bottom:685.950000px;}
.y113{bottom:690.000000px;}
.y15c{bottom:691.710000px;}
.yd{bottom:694.680000px;}
.y179{bottom:698.820000px;}
.y1f0{bottom:699.000000px;}
.yc1{bottom:699.360000px;}
.y1ce{bottom:700.530000px;}
.y1a5{bottom:700.620000px;}
.y6f{bottom:703.590000px;}
.y40{bottom:706.920000px;}
.y112{bottom:707.550000px;}
.y91{bottom:708.810000px;}
.y13f{bottom:711.240000px;}
.yc{bottom:712.230000px;}
.y1ef{bottom:716.550000px;}
.yc0{bottom:717.000000px;}
.y1cd{bottom:718.080000px;}
.y1a4{bottom:718.260000px;}
.y6e{bottom:721.140000px;}
.y15b{bottom:724.740000px;}
.y111{bottom:725.190000px;}
.y178{bottom:726.090000px;}
.y90{bottom:726.360000px;}
.y1ee{bottom:734.190000px;}
.ybf{bottom:734.550000px;}
.ye1{bottom:735.000000px;}
.y1a3{bottom:735.810000px;}
.y13e{bottom:738.600000px;}
.y6d{bottom:738.690000px;}
.yb{bottom:739.140000px;}
.y110{bottom:742.740000px;}
.y3f{bottom:744.000000px;}
.ybe{bottom:752.190000px;}
.ye0{bottom:752.550000px;}
.y1a2{bottom:753.450000px;}
.y1cc{bottom:754.530000px;}
.y6c{bottom:756.330000px;}
.y10f{bottom:760.290000px;}
.y1ed{bottom:760.740000px;}
.y3e{bottom:761.550000px;}
.y15a{bottom:769.650000px;}
.ybd{bottom:769.740000px;}
.ydf{bottom:770.190000px;}
.y1a1{bottom:771.000000px;}
.y6b{bottom:773.880000px;}
.y177{bottom:774.780000px;}
.y1ec{bottom:778.290000px;}
.y3d{bottom:779.190000px;}
.y1cb{bottom:781.440000px;}
.y13d{bottom:783.510000px;}
.y10e{bottom:786.930000px;}
.ybc{bottom:787.290000px;}
.ya{bottom:787.380000px;}
.yde{bottom:787.740000px;}
.y1a0{bottom:788.550000px;}
.y1eb{bottom:795.930000px;}
.y3c{bottom:796.740000px;}
.ydd{bottom:805.290000px;}
.y19f{bottom:806.190000px;}
.y6a{bottom:809.520000px;}
.y176{bottom:810.420000px;}
.yfa{bottom:813.930000px;}
.y3b{bottom:814.290000px;}
.y158{bottom:814.560000px;}
.y1ca{bottom:818.520000px;}
.y10d{bottom:822.480000px;}
.ybb{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.y19e{bottom:823.740000px;}
.y69{bottom:827.070000px;}
.y175{bottom:827.970000px;}
.y13a{bottom:828.420000px;}
.y3a{bottom:831.930000px;}
.y1c9{bottom:836.070000px;}
.y10c{bottom:840.030000px;}
.yba{bottom:840.480000px;}
.y19d{bottom:841.380000px;}
.y68{bottom:844.620000px;}
.y39{bottom:849.480000px;}
.y1c8{bottom:853.620000px;}
.y10b{bottom:857.670000px;}
.yb9{bottom:858.030000px;}
.y19c{bottom:858.930000px;}
.y8{bottom:859.200000px;}
.y67{bottom:862.260000px;}
.y174{bottom:863.610000px;}
.y204{bottom:866.670000px;}
.y38{bottom:867.030000px;}
.y1c7{bottom:871.260000px;}
.y139{bottom:873.420000px;}
.y10a{bottom:875.220000px;}
.yb8{bottom:875.670000px;}
.y19b{bottom:876.480000px;}
.y157{bottom:877.020000px;}
.y66{bottom:879.810000px;}
.y173{bottom:881.160000px;}
.y1ea{bottom:884.220000px;}
.y37{bottom:884.670000px;}
.y1c6{bottom:888.810000px;}
.yb7{bottom:893.220000px;}
.y8f{bottom:893.670000px;}
.y172{bottom:898.710000px;}
.y7{bottom:898.980000px;}
.y1e9{bottom:901.860000px;}
.y36{bottom:902.220000px;}
.y19a{bottom:903.120000px;}
.y1c5{bottom:906.450000px;}
.yb6{bottom:910.860000px;}
.y65{bottom:915.450000px;}
.y171{bottom:916.350000px;}
.y6{bottom:916.980000px;}
.y137{bottom:918.330000px;}
.y1e8{bottom:919.410000px;}
.y35{bottom:919.860000px;}
.y156{bottom:921.930000px;}
.y1c4{bottom:924.000000px;}
.yb5{bottom:928.410000px;}
.y8e{bottom:929.220000px;}
.y64{bottom:933.000000px;}
.y34{bottom:937.410000px;}
.y199{bottom:939.030000px;}
.y1c3{bottom:941.550000px;}
.yb4{bottom:945.960000px;}
.ydc{bottom:946.410000px;}
.y8d{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y63{bottom:950.550000px;}
.y33{bottom:954.960000px;}
.y135{bottom:963.240000px;}
.yb3{bottom:963.600000px;}
.ydb{bottom:963.960000px;}
.y8c{bottom:964.410000px;}
.y155{bottom:966.930000px;}
.y62{bottom:968.190000px;}
.y1c2{bottom:968.460000px;}
.yf9{bottom:972.600000px;}
.yb2{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y8b{bottom:981.960000px;}
.y198{bottom:987.270000px;}
.y4{bottom:987.630000px;}
.yf8{bottom:990.150000px;}
.y16f{bottom:994.200000px;}
.y61{bottom:995.100000px;}
.y109{bottom:998.790000px;}
.yda{bottom:999.150000px;}
.y8a{bottom:999.600000px;}
.y197{bottom:1004.820000px;}
.yf7{bottom:1007.790000px;}
.y154{bottom:1011.870000px;}
.y134{bottom:1011.960000px;}
.y3{bottom:1012.320000px;}
.yb1{bottom:1016.820000px;}
.y31{bottom:1017.180000px;}
.y196{bottom:1023.300000px;}
.y108{bottom:1025.370000px;}
.yb0{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.y195{bottom:1040.850000px;}
.y60{bottom:1043.370000px;}
.y133{bottom:1047.510000px;}
.yaf{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y194{bottom:1059.300000px;}
.y153{bottom:1060.560000px;}
.y5f{bottom:1060.920000px;}
.y132{bottom:1065.150000px;}
.yae{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y193{bottom:1076.850000px;}
.y5e{bottom:1078.560000px;}
.yad{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y131{bottom:1091.700000px;}
.y192{bottom:1095.300000px;}
.y5d{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y191{bottom:1112.850000px;}
.y5c{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y130{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h14{height:26.580000px;}
.hf{height:26.640000px;}
.h10{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.h11{height:44.130000px;}
.he{height:44.190000px;}
.h13{height:44.220000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.h12{height:61.740000px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:40.410000px;}
.w5{width:40.440000px;}
.w1a{width:40.500000px;}
.w3{width:40.950000px;}
.w8{width:43.560000px;}
.w10{width:48.870000px;}
.w16{width:50.130000px;}
.w1c{width:50.220000px;}
.wf{width:51.750000px;}
.w1f{width:51.780000px;}
.w14{width:53.190000px;}
.w7{width:53.280000px;}
.wd{width:53.310000px;}
.w11{width:64.440000px;}
.w17{width:67.050000px;}
.we{width:68.940000px;}
.w9{width:70.560000px;}
.w15{width:74.370000px;}
.w1e{width:74.430000px;}
.w1b{width:74.460000px;}
.w12{width:76.680000px;}
.w20{width:76.950000px;}
.w18{width:77.040000px;}
.wa{width:96.240000px;}
.w1d{width:195.600000px;}
.w19{width:203.340000px;}
.w13{width:228.000000px;}
.wb{width:324.450000px;}
.wc{width:346.080000px;}
.w4{width:379.650000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:88.109987px;}
.x7{left:110.520000px;}
.x5{left:122.039987px;}
.x1e{left:135.270000px;}
.x26{left:139.140000px;}
.xf{left:165.720000px;}
.x2{left:202.799987px;}
.x27{left:335.460000px;}
.x1f{left:339.330000px;}
.x17{left:351.660000px;}
.x28{left:376.680000px;}
.x20{left:380.550000px;}
.x18{left:392.880000px;}
.x10{left:415.650000px;}
.x29{left:430.680000px;}
.x21{left:434.550000px;}
.x19{left:446.880000px;}
.x11{left:456.780000px;}
.x8{left:490.890000px;}
.x2a{left:505.830000px;}
.x22{left:509.730000px;}
.x12{left:510.810000px;}
.x1a{left:522.060000px;}
.x9{left:532.140000px;}
.x2b{left:558.330000px;}
.x23{left:562.200000px;}
.xa{left:573.270000px;}
.x1b{left:574.530000px;}
.x13{left:580.470000px;}
.x2c{left:609.270000px;}
.x24{left:613.140000px;}
.xb{left:614.490000px;}
.x1c{left:625.470000px;}
.x14{left:633.030000px;}
.xc{left:655.620000px;}
.x2d{left:677.130000px;}
.x25{left:680.910000px;}
.x15{left:682.620000px;}
.x1d{left:693.240000px;}
.xd{left:709.620000px;}
.x16{left:747.780000px;}
.xe{left:753.900000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls15{letter-spacing:-0.103467pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.056533pt;}
.ls16{letter-spacing:-0.016320pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.105067pt;}
.ls4{letter-spacing:0.106133pt;}
.ls13{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.lsd{letter-spacing:81.143680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.861867pt;}
.ws9{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.740480pt;}
.wsb{word-spacing:-11.700267pt;}
.wse{word-spacing:-11.653333pt;}
.wsc{word-spacing:-11.613867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._12{margin-left:-3.721812pt;}
._4{margin-left:-2.672000pt;}
._1{margin-left:-0.939947pt;}
._0{width:1.341931pt;}
._3{width:2.851521pt;}
._2{width:3.740800pt;}
._5{width:4.916266pt;}
._6{width:6.306134pt;}
._10{width:7.588480pt;}
._11{width:9.009601pt;}
._9{width:9.939733pt;}
._a{width:10.844694pt;}
._f{width:12.728428pt;}
._e{width:13.627200pt;}
._7{width:14.963200pt;}
._15{width:15.862550pt;}
._13{width:16.780160pt;}
._14{width:17.955840pt;}
._16{width:19.078080pt;}
._17{width:19.986560pt;}
._1a{width:21.049174pt;}
._8{width:21.963733pt;}
._18{width:24.101440pt;}
._19{width:25.116800pt;}
._1f{width:26.826880pt;}
._d{width:28.238186pt;}
._c{width:29.477014pt;}
._b{width:30.584320pt;}
._1e{width:31.796800pt;}
._21{width:33.293120pt;}
._1d{width:35.537600pt;}
._20{width:39.705920pt;}
._29{width:41.714667pt;}
._1b{width:43.072640pt;}
._1c{width:44.034560pt;}
._2c{width:50.887359pt;}
._2b{width:51.814827pt;}
._28{width:54.241600pt;}
._24{width:60.921600pt;}
._27{width:70.754560pt;}
._22{width:78.075840pt;}
._23{width:79.037760pt;}
._2a{width:83.740480pt;}
._2d{width:95.635627pt;}
._25{width:134.561920pt;}
._26{width:147.151787pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y136{bottom:6.960000pt;}
.y183{bottom:6.986667pt;}
.y13c{bottom:7.040000pt;}
.y138{bottom:22.560000pt;}
.y13b{bottom:22.640000pt;}
.y170{bottom:22.666667pt;}
.y159{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd9{bottom:100.426667pt;}
.y1e7{bottom:100.986667pt;}
.y203{bottom:103.226667pt;}
.y12f{bottom:103.626667pt;}
.y5b{bottom:109.226667pt;}
.y152{bottom:110.026667pt;}
.y1c1{bottom:113.066667pt;}
.yf6{bottom:114.266667pt;}
.y190{bottom:115.546667pt;}
.yd8{bottom:116.026667pt;}
.y1e6{bottom:116.666667pt;}
.y202{bottom:118.826667pt;}
.y12e{bottom:119.226667pt;}
.yac{bottom:119.946667pt;}
.y16e{bottom:122.026667pt;}
.y89{bottom:125.626667pt;}
.y151{bottom:125.706667pt;}
.y27{bottom:125.866667pt;}
.y1c0{bottom:128.746667pt;}
.yf5{bottom:129.866667pt;}
.y18f{bottom:131.146667pt;}
.yd7{bottom:131.706667pt;}
.y1e5{bottom:132.266667pt;}
.y12d{bottom:134.826667pt;}
.yab{bottom:135.626667pt;}
.y16d{bottom:137.626667pt;}
.y5a{bottom:140.826667pt;}
.y88{bottom:141.226667pt;}
.y150{bottom:141.306667pt;}
.y26{bottom:141.546667pt;}
.y201{bottom:142.506667pt;}
.y1bf{bottom:144.346667pt;}
.yf4{bottom:145.546667pt;}
.y18e{bottom:146.826667pt;}
.yd6{bottom:147.306667pt;}
.y12c{bottom:150.506667pt;}
.yaa{bottom:151.226667pt;}
.y16c{bottom:153.226667pt;}
.y1e4{bottom:155.866667pt;}
.y59{bottom:156.426667pt;}
.y87{bottom:156.826667pt;}
.y14f{bottom:156.986667pt;}
.y200{bottom:158.106667pt;}
.y1be{bottom:160.026667pt;}
.yf3{bottom:161.146667pt;}
.y18d{bottom:162.426667pt;}
.yd5{bottom:162.906667pt;}
.y12b{bottom:166.106667pt;}
.ya9{bottom:166.826667pt;}
.y16b{bottom:168.906667pt;}
.y1e3{bottom:171.546667pt;}
.y86{bottom:172.506667pt;}
.y58{bottom:172.826667pt;}
.y25{bottom:173.146667pt;}
.y1bd{bottom:175.626667pt;}
.yf2{bottom:176.826667pt;}
.y1ff{bottom:181.786667pt;}
.ya8{bottom:182.506667pt;}
.y14e{bottom:186.266667pt;}
.yd4{bottom:186.826667pt;}
.y57{bottom:188.426667pt;}
.y24{bottom:188.746667pt;}
.y12a{bottom:189.786667pt;}
.y18c{bottom:191.786667pt;}
.y1e2{bottom:195.146667pt;}
.y85{bottom:196.106667pt;}
.y1fe{bottom:197.386667pt;}
.y16a{bottom:198.186667pt;}
.y1bc{bottom:199.226667pt;}
.yf1{bottom:200.426667pt;}
.y23{bottom:204.426667pt;}
.y56{bottom:204.826667pt;}
.y107{bottom:206.106667pt;}
.y14d{bottom:210.586667pt;}
.y1fd{bottom:212.986667pt;}
.ya7{bottom:214.106667pt;}
.y18b{bottom:216.026667pt;}
.y1e1{bottom:218.826667pt;}
.y22{bottom:220.026667pt;}
.y55{bottom:220.426667pt;}
.y129{bottom:221.386667pt;}
.y169{bottom:222.506667pt;}
.y84{bottom:225.066667pt;}
.ya6{bottom:229.786667pt;}
.y1bb{bottom:230.906667pt;}
.yf0{bottom:232.026667pt;}
.y1e0{bottom:234.426667pt;}
.y21{bottom:235.706667pt;}
.y1fc{bottom:236.666667pt;}
.y54{bottom:236.826667pt;}
.y128{bottom:236.986667pt;}
.y106{bottom:237.786667pt;}
.ya5{bottom:245.386667pt;}
.y1ba{bottom:246.506667pt;}
.yef{bottom:247.706667pt;}
.y1df{bottom:250.026667pt;}
.y14c{bottom:250.506667pt;}
.y20{bottom:251.306667pt;}
.y1fb{bottom:252.266667pt;}
.y53{bottom:252.426667pt;}
.y127{bottom:252.666667pt;}
.y105{bottom:253.386667pt;}
.y83{bottom:256.746667pt;}
.y18a{bottom:259.306667pt;}
.ya4{bottom:260.986667pt;}
.y1b9{bottom:262.186667pt;}
.y168{bottom:262.426667pt;}
.yee{bottom:263.306667pt;}
.y1f{bottom:266.906667pt;}
.y1fa{bottom:267.946667pt;}
.y126{bottom:268.266667pt;}
.y104{bottom:268.986667pt;}
.y82{bottom:272.346667pt;}
.y1de{bottom:273.706667pt;}
.ya3{bottom:276.666667pt;}
.y52{bottom:276.826667pt;}
.y1b8{bottom:277.786667pt;}
.yed{bottom:278.986667pt;}
.y125{bottom:283.946667pt;}
.y103{bottom:284.666667pt;}
.y81{bottom:287.946667pt;}
.y1dd{bottom:289.306667pt;}
.y14b{bottom:290.426667pt;}
.y189{bottom:290.986667pt;}
.y1f9{bottom:291.546667pt;}
.ya2{bottom:292.266667pt;}
.y1b7{bottom:293.386667pt;}
.yec{bottom:294.586667pt;}
.y1e{bottom:298.586667pt;}
.y124{bottom:299.546667pt;}
.y102{bottom:300.266667pt;}
.y167{bottom:302.346667pt;}
.y80{bottom:303.626667pt;}
.y188{bottom:306.586667pt;}
.y1f8{bottom:307.146667pt;}
.yd3{bottom:308.266667pt;}
.y51{bottom:308.506667pt;}
.y1b6{bottom:309.066667pt;}
.yeb{bottom:310.186667pt;}
.y1dc{bottom:312.986667pt;}
.y123{bottom:315.146667pt;}
.ya1{bottom:315.946667pt;}
.y7f{bottom:319.226667pt;}
.y1d{bottom:322.506667pt;}
.yd2{bottom:323.946667pt;}
.y50{bottom:324.106667pt;}
.y1b5{bottom:324.666667pt;}
.yea{bottom:325.866667pt;}
.y1db{bottom:328.586667pt;}
.y14a{bottom:330.346667pt;}
.y122{bottom:330.826667pt;}
.y101{bottom:331.546667pt;}
.y7e{bottom:334.906667pt;}
.y187{bottom:338.266667pt;}
.y20e{bottom:338.826667pt;}
.yd1{bottom:339.546667pt;}
.y1b4{bottom:340.266667pt;}
.y4f{bottom:340.506667pt;}
.ye9{bottom:341.466667pt;}
.y166{bottom:342.266667pt;}
.y1da{bottom:344.186667pt;}
.y121{bottom:346.426667pt;}
.y100{bottom:347.146667pt;}
.ya0{bottom:347.546667pt;}
.y186{bottom:353.866667pt;}
.y20d{bottom:354.426667pt;}
.yd0{bottom:355.146667pt;}
.y1b3{bottom:355.946667pt;}
.y4e{bottom:356.106667pt;}
.ye8{bottom:357.146667pt;}
.y7d{bottom:358.506667pt;}
.y120{bottom:362.106667pt;}
.y9f{bottom:363.146667pt;}
.y1c{bottom:365.386667pt;}
.y1d9{bottom:368.106667pt;}
.y185{bottom:369.466667pt;}
.y1f7{bottom:370.106667pt;}
.y149{bottom:370.266667pt;}
.ycf{bottom:370.826667pt;}
.y1b2{bottom:371.546667pt;}
.y4d{bottom:372.426667pt;}
.ye7{bottom:372.746667pt;}
.y20c{bottom:378.106667pt;}
.y9e{bottom:378.826667pt;}
.y1b{bottom:381.306667pt;}
.y165{bottom:382.186667pt;}
.y184{bottom:385.146667pt;}
.y11f{bottom:385.706667pt;}
.yce{bottom:386.426667pt;}
.y4c{bottom:388.026667pt;}
.ye6{bottom:388.346667pt;}
.y7c{bottom:390.106667pt;}
.y20b{bottom:393.706667pt;}
.y9d{bottom:394.426667pt;}
.y1b1{bottom:395.226667pt;}
.y1f6{bottom:401.306667pt;}
.ycd{bottom:402.106667pt;}
.y4b{bottom:404.426667pt;}
.y7b{bottom:405.786667pt;}
.y20a{bottom:409.306667pt;}
.yff{bottom:410.106667pt;}
.y148{bottom:410.186667pt;}
.y1d8{bottom:411.066667pt;}
.ye5{bottom:411.946667pt;}
.y1a{bottom:414.266667pt;}
.y182{bottom:414.426667pt;}
.y11e{bottom:417.306667pt;}
.ycc{bottom:417.733333pt;}
.y9c{bottom:418.133333pt;}
.y4a{bottom:420.053333pt;}
.y7a{bottom:421.413333pt;}
.y164{bottom:422.133333pt;}
.y1f5{bottom:425.013333pt;}
.yfe{bottom:425.733333pt;}
.y1b0{bottom:426.853333pt;}
.y19{bottom:429.893333pt;}
.y11d{bottom:433.013333pt;}
.ycb{bottom:433.333333pt;}
.y1d7{bottom:435.013333pt;}
.y79{bottom:437.093333pt;}
.y181{bottom:438.773333pt;}
.y1f4{bottom:440.613333pt;}
.ye4{bottom:441.013333pt;}
.yfd{bottom:441.333333pt;}
.y1af{bottom:442.453333pt;}
.y49{bottom:444.453333pt;}
.y18{bottom:445.493333pt;}
.y11c{bottom:448.613333pt;}
.yca{bottom:449.013333pt;}
.y9b{bottom:449.733333pt;}
.y78{bottom:452.693333pt;}
.y147{bottom:453.493333pt;}
.y1f3{bottom:456.293333pt;}
.yfc{bottom:457.013333pt;}
.y1ae{bottom:458.133333pt;}
.y17{bottom:461.173333pt;}
.y11b{bottom:464.293333pt;}
.yc9{bottom:464.613333pt;}
.y9a{bottom:465.333333pt;}
.y163{bottom:465.413333pt;}
.y1d6{bottom:468.213333pt;}
.y77{bottom:468.293333pt;}
.y209{bottom:472.293333pt;}
.ye3{bottom:472.613333pt;}
.y1ad{bottom:473.733333pt;}
.y48{bottom:476.133333pt;}
.y16{bottom:476.773333pt;}
.y11a{bottom:479.893333pt;}
.yc8{bottom:480.293333pt;}
.y99{bottom:481.013333pt;}
.y180{bottom:482.053333pt;}
.y76{bottom:483.973333pt;}
.y146{bottom:485.173333pt;}
.y208{bottom:487.893333pt;}
.yfb{bottom:488.293333pt;}
.y1ac{bottom:489.413333pt;}
.y47{bottom:491.733333pt;}
.y15{bottom:492.373333pt;}
.y119{bottom:495.493333pt;}
.ye2{bottom:496.293333pt;}
.y98{bottom:496.613333pt;}
.y162{bottom:497.093333pt;}
.y145{bottom:500.773333pt;}
.y207{bottom:503.493333pt;}
.y1ab{bottom:505.013333pt;}
.y14{bottom:508.053333pt;}
.y46{bottom:508.133333pt;}
.y1d5{bottom:511.093333pt;}
.y118{bottom:511.173333pt;}
.yc7{bottom:511.893333pt;}
.y97{bottom:512.293333pt;}
.y161{bottom:512.693333pt;}
.y17f{bottom:513.653333pt;}
.y75{bottom:515.573333pt;}
.y1f2{bottom:519.173333pt;}
.y1aa{bottom:520.613333pt;}
.y13{bottom:523.653333pt;}
.y45{bottom:523.733333pt;}
.y144{bottom:524.453333pt;}
.y1d4{bottom:526.693333pt;}
.y206{bottom:527.173333pt;}
.yc6{bottom:527.493333pt;}
.y96{bottom:527.893333pt;}
.y17e{bottom:529.333333pt;}
.y74{bottom:531.253333pt;}
.y117{bottom:534.773333pt;}
.y1a9{bottom:536.293333pt;}
.y160{bottom:536.373333pt;}
.y12{bottom:539.333333pt;}
.y44{bottom:540.133333pt;}
.y1d3{bottom:542.293333pt;}
.y205{bottom:542.773333pt;}
.yc5{bottom:543.173333pt;}
.y95{bottom:543.493333pt;}
.y73{bottom:546.853333pt;}
.y1a8{bottom:551.893333pt;}
.y11{bottom:554.933333pt;}
.y43{bottom:555.733333pt;}
.y143{bottom:556.053333pt;}
.y1f1{bottom:558.453333pt;}
.y1d2{bottom:558.693333pt;}
.yc4{bottom:558.773333pt;}
.y94{bottom:559.173333pt;}
.y17d{bottom:560.933333pt;}
.y72{bottom:562.453333pt;}
.y116{bottom:566.453333pt;}
.y1a7{bottom:567.573333pt;}
.y15f{bottom:567.973333pt;}
.y10{bottom:570.533333pt;}
.y142{bottom:571.653333pt;}
.y42{bottom:572.053333pt;}
.y1d1{bottom:574.293333pt;}
.y93{bottom:574.773333pt;}
.y17c{bottom:576.613333pt;}
.y71{bottom:578.133333pt;}
.y115{bottom:582.053333pt;}
.y15e{bottom:583.573333pt;}
.yf{bottom:586.213333pt;}
.y141{bottom:587.333333pt;}
.yc3{bottom:590.453333pt;}
.y1d0{bottom:590.693333pt;}
.y1a6{bottom:591.173333pt;}
.y17b{bottom:592.213333pt;}
.y114{bottom:597.653333pt;}
.y92{bottom:598.453333pt;}
.y15d{bottom:599.253333pt;}
.ye{bottom:601.813333pt;}
.y140{bottom:602.933333pt;}
.y41{bottom:604.453333pt;}
.yc2{bottom:606.053333pt;}
.y1cf{bottom:606.293333pt;}
.y17a{bottom:607.813333pt;}
.y70{bottom:609.733333pt;}
.y113{bottom:613.333333pt;}
.y15c{bottom:614.853333pt;}
.yd{bottom:617.493333pt;}
.y179{bottom:621.173333pt;}
.y1f0{bottom:621.333333pt;}
.yc1{bottom:621.653333pt;}
.y1ce{bottom:622.693333pt;}
.y1a5{bottom:622.773333pt;}
.y6f{bottom:625.413333pt;}
.y40{bottom:628.373333pt;}
.y112{bottom:628.933333pt;}
.y91{bottom:630.053333pt;}
.y13f{bottom:632.213333pt;}
.yc{bottom:633.093333pt;}
.y1ef{bottom:636.933333pt;}
.yc0{bottom:637.333333pt;}
.y1cd{bottom:638.293333pt;}
.y1a4{bottom:638.453333pt;}
.y6e{bottom:641.013333pt;}
.y15b{bottom:644.213333pt;}
.y111{bottom:644.613333pt;}
.y178{bottom:645.413333pt;}
.y90{bottom:645.653333pt;}
.y1ee{bottom:652.613333pt;}
.ybf{bottom:652.933333pt;}
.ye1{bottom:653.333333pt;}
.y1a3{bottom:654.053333pt;}
.y13e{bottom:656.533333pt;}
.y6d{bottom:656.613333pt;}
.yb{bottom:657.013333pt;}
.y110{bottom:660.213333pt;}
.y3f{bottom:661.333333pt;}
.ybe{bottom:668.613333pt;}
.ye0{bottom:668.933333pt;}
.y1a2{bottom:669.733333pt;}
.y1cc{bottom:670.693333pt;}
.y6c{bottom:672.293333pt;}
.y10f{bottom:675.813333pt;}
.y1ed{bottom:676.213333pt;}
.y3e{bottom:676.933333pt;}
.y15a{bottom:684.133333pt;}
.ybd{bottom:684.213333pt;}
.ydf{bottom:684.613333pt;}
.y1a1{bottom:685.333333pt;}
.y6b{bottom:687.893333pt;}
.y177{bottom:688.693333pt;}
.y1ec{bottom:691.813333pt;}
.y3d{bottom:692.613333pt;}
.y1cb{bottom:694.613333pt;}
.y13d{bottom:696.453333pt;}
.y10e{bottom:699.493333pt;}
.ybc{bottom:699.813333pt;}
.ya{bottom:699.893333pt;}
.yde{bottom:700.213333pt;}
.y1a0{bottom:700.933333pt;}
.y1eb{bottom:707.493333pt;}
.y3c{bottom:708.213333pt;}
.ydd{bottom:715.813333pt;}
.y19f{bottom:716.613333pt;}
.y6a{bottom:719.573333pt;}
.y176{bottom:720.373333pt;}
.yfa{bottom:723.493333pt;}
.y3b{bottom:723.813333pt;}
.y158{bottom:724.053333pt;}
.y1ca{bottom:727.573333pt;}
.y10d{bottom:731.093333pt;}
.ybb{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.y19e{bottom:732.213333pt;}
.y69{bottom:735.173333pt;}
.y175{bottom:735.973333pt;}
.y13a{bottom:736.373333pt;}
.y3a{bottom:739.493333pt;}
.y1c9{bottom:743.173333pt;}
.y10c{bottom:746.693333pt;}
.yba{bottom:747.093333pt;}
.y19d{bottom:747.893333pt;}
.y68{bottom:750.773333pt;}
.y39{bottom:755.093333pt;}
.y1c8{bottom:758.773333pt;}
.y10b{bottom:762.373333pt;}
.yb9{bottom:762.693333pt;}
.y19c{bottom:763.493333pt;}
.y8{bottom:763.733333pt;}
.y67{bottom:766.453333pt;}
.y174{bottom:767.653333pt;}
.y204{bottom:770.373333pt;}
.y38{bottom:770.693333pt;}
.y1c7{bottom:774.453333pt;}
.y139{bottom:776.373333pt;}
.y10a{bottom:777.973333pt;}
.yb8{bottom:778.373333pt;}
.y19b{bottom:779.093333pt;}
.y157{bottom:779.573333pt;}
.y66{bottom:782.053333pt;}
.y173{bottom:783.253333pt;}
.y1ea{bottom:785.973333pt;}
.y37{bottom:786.373333pt;}
.y1c6{bottom:790.053333pt;}
.yb7{bottom:793.973333pt;}
.y8f{bottom:794.373333pt;}
.y172{bottom:798.853333pt;}
.y7{bottom:799.093333pt;}
.y1e9{bottom:801.653333pt;}
.y36{bottom:801.973333pt;}
.y19a{bottom:802.773333pt;}
.y1c5{bottom:805.733333pt;}
.yb6{bottom:809.653333pt;}
.y65{bottom:813.733333pt;}
.y171{bottom:814.533333pt;}
.y6{bottom:815.093333pt;}
.y137{bottom:816.293333pt;}
.y1e8{bottom:817.253333pt;}
.y35{bottom:817.653333pt;}
.y156{bottom:819.493333pt;}
.y1c4{bottom:821.333333pt;}
.yb5{bottom:825.253333pt;}
.y8e{bottom:825.973333pt;}
.y64{bottom:829.333333pt;}
.y34{bottom:833.253333pt;}
.y199{bottom:834.693333pt;}
.y1c3{bottom:836.933333pt;}
.yb4{bottom:840.853333pt;}
.ydc{bottom:841.253333pt;}
.y8d{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y63{bottom:844.933333pt;}
.y33{bottom:848.853333pt;}
.y135{bottom:856.213333pt;}
.yb3{bottom:856.533333pt;}
.ydb{bottom:856.853333pt;}
.y8c{bottom:857.253333pt;}
.y155{bottom:859.493333pt;}
.y62{bottom:860.613333pt;}
.y1c2{bottom:860.853333pt;}
.yf9{bottom:864.533333pt;}
.yb2{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y8b{bottom:872.853333pt;}
.y198{bottom:877.573333pt;}
.y4{bottom:877.893333pt;}
.yf8{bottom:880.133333pt;}
.y16f{bottom:883.733333pt;}
.y61{bottom:884.533333pt;}
.y109{bottom:887.813333pt;}
.yda{bottom:888.133333pt;}
.y8a{bottom:888.533333pt;}
.y197{bottom:893.173333pt;}
.yf7{bottom:895.813333pt;}
.y154{bottom:899.440000pt;}
.y134{bottom:899.520000pt;}
.y3{bottom:899.840000pt;}
.yb1{bottom:903.840000pt;}
.y31{bottom:904.160000pt;}
.y196{bottom:909.600000pt;}
.y108{bottom:911.440000pt;}
.yb0{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.y195{bottom:925.200000pt;}
.y60{bottom:927.440000pt;}
.y133{bottom:931.120000pt;}
.yaf{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y194{bottom:941.600000pt;}
.y153{bottom:942.720000pt;}
.y5f{bottom:943.040000pt;}
.y132{bottom:946.800000pt;}
.yae{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y193{bottom:957.200000pt;}
.y5e{bottom:958.720000pt;}
.yad{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y131{bottom:970.400000pt;}
.y192{bottom:973.600000pt;}
.y5d{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y191{bottom:989.200000pt;}
.y5c{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y130{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h14{height:23.626667pt;}
.hf{height:23.680000pt;}
.h10{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.h11{height:39.226667pt;}
.he{height:39.280000pt;}
.h13{height:39.306667pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.h12{height:54.880000pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:35.920000pt;}
.w5{width:35.946667pt;}
.w1a{width:36.000000pt;}
.w3{width:36.400000pt;}
.w8{width:38.720000pt;}
.w10{width:43.440000pt;}
.w16{width:44.560000pt;}
.w1c{width:44.640000pt;}
.wf{width:46.000000pt;}
.w1f{width:46.026667pt;}
.w14{width:47.280000pt;}
.w7{width:47.360000pt;}
.wd{width:47.386667pt;}
.w11{width:57.280000pt;}
.w17{width:59.600000pt;}
.we{width:61.280000pt;}
.w9{width:62.720000pt;}
.w15{width:66.106667pt;}
.w1e{width:66.160000pt;}
.w1b{width:66.186667pt;}
.w12{width:68.160000pt;}
.w20{width:68.400000pt;}
.w18{width:68.480000pt;}
.wa{width:85.546667pt;}
.w1d{width:173.866667pt;}
.w19{width:180.746667pt;}
.w13{width:202.666667pt;}
.wb{width:288.400000pt;}
.wc{width:307.626667pt;}
.w4{width:337.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:78.319988pt;}
.x7{left:98.240000pt;}
.x5{left:108.479988pt;}
.x1e{left:120.240000pt;}
.x26{left:123.680000pt;}
.xf{left:147.306667pt;}
.x2{left:180.266655pt;}
.x27{left:298.186667pt;}
.x1f{left:301.626667pt;}
.x17{left:312.586667pt;}
.x28{left:334.826667pt;}
.x20{left:338.266667pt;}
.x18{left:349.226667pt;}
.x10{left:369.466667pt;}
.x29{left:382.826667pt;}
.x21{left:386.266667pt;}
.x19{left:397.226667pt;}
.x11{left:406.026667pt;}
.x8{left:436.346667pt;}
.x2a{left:449.626667pt;}
.x22{left:453.093333pt;}
.x12{left:454.053333pt;}
.x1a{left:464.053333pt;}
.x9{left:473.013333pt;}
.x2b{left:496.293333pt;}
.x23{left:499.733333pt;}
.xa{left:509.573333pt;}
.x1b{left:510.693333pt;}
.x13{left:515.973333pt;}
.x2c{left:541.573333pt;}
.x24{left:545.013333pt;}
.xb{left:546.213333pt;}
.x1c{left:555.973333pt;}
.x14{left:562.693333pt;}
.xc{left:582.773333pt;}
.x2d{left:601.893333pt;}
.x25{left:605.253333pt;}
.x15{left:606.773333pt;}
.x1d{left:616.213333pt;}
.xd{left:630.773333pt;}
.x16{left:664.693333pt;}
.xe{left:670.133333pt;}
.x3{left:704.053322pt;}
}




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