
    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_973a319557e9766689ff3921.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ab8278653950a8fa6e598136.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4e61aa2a7ce6d31992be30b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_02d8a73fa57b9ebbe9ab185b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_6ad6fb5cf250b7730312104c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_730081cc058bb88324fe9d4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a5c14cdbf9c16ba5d8a740ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_f349465156ca98e8b1c05986.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ed2304eedfc08346a053fe46.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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;}
.v1{vertical-align:23.760000px;}
.ls2a{letter-spacing:-1.440000px;}
.ls26{letter-spacing:-0.834000px;}
.ls21{letter-spacing:-0.768000px;}
.lsa{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.590400px;}
.ls27{letter-spacing:-0.579000px;}
.ls31{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.472200px;}
.ls2b{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.460800px;}
.ls1e{letter-spacing:-0.322800px;}
.ls25{letter-spacing:-0.310800px;}
.lsc{letter-spacing:-0.175800px;}
.ls1b{letter-spacing:-0.164400px;}
.lsb{letter-spacing:-0.132600px;}
.ls17{letter-spacing:-0.115200px;}
.ls7{letter-spacing:-0.107400px;}
.ls10{letter-spacing:-0.102000px;}
.ls6{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.048960px;}
.ls14{letter-spacing:-0.043200px;}
.ls20{letter-spacing:-0.025920px;}
.ls4{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.022320px;}
.ls30{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.074880px;}
.ls1a{letter-spacing:0.089280px;}
.ls18{letter-spacing:0.089400px;}
.ls1{letter-spacing:0.118800px;}
.ls2c{letter-spacing:0.129600px;}
.lsf{letter-spacing:0.132480px;}
.ls16{letter-spacing:0.132600px;}
.ls22{letter-spacing:0.141000px;}
.ls2{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.174000px;}
.ls2d{letter-spacing:0.174240px;}
.ls32{letter-spacing:0.179280px;}
.ls33{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.210000px;}
.ls1c{letter-spacing:0.238800px;}
.ls28{letter-spacing:0.247800px;}
.lse{letter-spacing:0.256200px;}
.ls34{letter-spacing:0.283800px;}
.ls1f{letter-spacing:0.285000px;}
.ls9{letter-spacing:0.289200px;}
.ls24{letter-spacing:0.331200px;}
.ls35{letter-spacing:0.348600px;}
.ls11{letter-spacing:0.371400px;}
.ls2f{letter-spacing:0.479520px;}
.ls2e{letter-spacing:0.659520px;}
.ls5{letter-spacing:0.660000px;}
.ls29{letter-spacing:2.309760px;}
.ls1d{letter-spacing:39.185280px;}
.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;}
}
.ws4{word-spacing:-21.641760px;}
.ws1e{word-spacing:-15.341640px;}
.ws18{word-spacing:-15.301440px;}
.ws14{word-spacing:-15.255240px;}
.ws15{word-spacing:-15.226440px;}
.ws13{word-spacing:-15.209040px;}
.ws19{word-spacing:-15.111240px;}
.ws11{word-spacing:-15.102840px;}
.ws20{word-spacing:-15.099840px;}
.ws10{word-spacing:-15.059640px;}
.ws1f{word-spacing:-14.990400px;}
.ws5{word-spacing:-14.970240px;}
.ws16{word-spacing:-14.944320px;}
.wsd{word-spacing:-14.927040px;}
.wsf{word-spacing:-14.855040px;}
.wsb{word-spacing:-14.837640px;}
.ws12{word-spacing:-14.805840px;}
.ws1a{word-spacing:-14.659440px;}
.wse{word-spacing:-14.509440px;}
.ws1d{word-spacing:-14.506440px;}
.ws1c{word-spacing:-14.391240px;}
.wsc{word-spacing:-14.379840px;}
.ws17{word-spacing:-14.202240px;}
.ws0{word-spacing:-14.165760px;}
.ws1b{word-spacing:-14.136240px;}
.ws22{word-spacing:-13.854360px;}
.ws2{word-spacing:-13.505760px;}
.ws1{word-spacing:-13.447440px;}
.ws21{word-spacing:-13.398360px;}
.ws7{word-spacing:-12.204000px;}
.ws9{word-spacing:-10.924560px;}
.wsa{word-spacing:-10.902240px;}
.ws6{word-spacing:-9.437760px;}
.ws3{word-spacing:-0.059760px;}
.ws8{word-spacing:0.000000px;}
._10{margin-left:-4.230720px;}
._7{margin-left:-3.120000px;}
._1{margin-left:-1.434240px;}
._0{width:1.174800px;}
._2{width:2.492160px;}
._8{width:3.534480px;}
._a{width:4.585680px;}
._5{width:5.724000px;}
._6{width:7.183200px;}
._3{width:8.964000px;}
._4{width:10.003200px;}
._f{width:11.105760px;}
._e{width:13.026240px;}
._1e{width:14.508720px;}
._12{width:16.626240px;}
._13{width:18.348480px;}
._17{width:19.540800px;}
._11{width:20.666880px;}
._14{width:21.896880px;}
._b{width:23.117760px;}
._c{width:24.287040px;}
._d{width:25.804320px;}
._1a{width:29.874240px;}
._21{width:30.944880px;}
._1b{width:32.126400px;}
._18{width:34.047360px;}
._19{width:35.835840px;}
._15{width:44.100480px;}
._16{width:45.454560px;}
._1c{width:76.991280px;}
._1d{width:78.100560px;}
._1f{width:81.951360px;}
._20{width:82.986240px;}
._22{width:97.468560px;}
._9{width:849.185760px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.960000px;}
.y6{bottom:7.200000px;}
.y120{bottom:13.320000px;}
.y94{bottom:13.500000px;}
.yac{bottom:13.545000px;}
.y96{bottom:17.640000px;}
.y97{bottom:18.720000px;}
.y9a{bottom:19.800000px;}
.y2{bottom:26.460000px;}
.ya5{bottom:33.660000px;}
.y106{bottom:33.690000px;}
.yd2{bottom:33.705000px;}
.y5{bottom:40.140000px;}
.y102{bottom:53.640000px;}
.ya4{bottom:53.820000px;}
.yd1{bottom:53.865000px;}
.y34{bottom:57.420000px;}
.y4{bottom:73.260000px;}
.y9{bottom:76.500000px;}
.y33{bottom:77.616000px;}
.y8{bottom:94.860000px;}
.y2f{bottom:110.196000px;}
.ycb{bottom:111.456000px;}
.y7{bottom:112.530000px;}
.y182{bottom:115.236000px;}
.y84{bottom:115.416000px;}
.y145{bottom:119.196000px;}
.yf2{bottom:121.716000px;}
.y118{bottom:122.256000px;}
.y65{bottom:122.796000px;}
.yff{bottom:127.116000px;}
.y2e{bottom:128.376000px;}
.y83{bottom:128.916000px;}
.y181{bottom:133.596000px;}
.ya2{bottom:138.636000px;}
.y144{bottom:139.356000px;}
.yca{bottom:140.616000px;}
.yf1{bottom:141.876000px;}
.y64{bottom:142.956000px;}
.y2d{bottom:146.736000px;}
.yfe{bottom:147.276000px;}
.y117{bottom:151.410000px;}
.y2c{bottom:151.950000px;}
.yc9{bottom:160.770000px;}
.yf0{bottom:162.030000px;}
.y63{bottom:163.110000px;}
.y2b{bottom:165.630000px;}
.yfd{bottom:167.250000px;}
.ya1{bottom:167.790000px;}
.y143{bottom:168.510000px;}
.y116{bottom:171.570000px;}
.y180{bottom:179.130000px;}
.yef{bottom:182.190000px;}
.y62{bottom:183.270000px;}
.yfc{bottom:187.410000px;}
.yc8{bottom:189.930000px;}
.y115{bottom:191.730000px;}
.y82{bottom:194.250000px;}
.y15a{bottom:196.410000px;}
.ya0{bottom:196.950000px;}
.y17f{bottom:197.490000px;}
.y142{bottom:197.670000px;}
.yee{bottom:202.350000px;}
.y61{bottom:203.250000px;}
.y114{bottom:211.710000px;}
.y81{bottom:214.410000px;}
.yfb{bottom:216.570000px;}
.y9f{bottom:217.110000px;}
.y141{bottom:217.830000px;}
.yc7{bottom:219.090000px;}
.yed{bottom:222.510000px;}
.y60{bottom:223.410000px;}
.y17e{bottom:224.670000px;}
.y113{bottom:231.870000px;}
.y9e{bottom:237.090000px;}
.y140{bottom:237.990000px;}
.yc6{bottom:239.250000px;}
.yec{bottom:242.670000px;}
.y17d{bottom:243.030000px;}
.y5f{bottom:243.570000px;}
.yfa{bottom:245.730000px;}
.y112{bottom:252.030000px;}
.y9d{bottom:257.250000px;}
.y17c{bottom:261.390000px;}
.y80{bottom:263.730000px;}
.yf9{bottom:265.890000px;}
.y13f{bottom:266.970000px;}
.yc5{bottom:268.230000px;}
.yeb{bottom:271.830000px;}
.y111{bottom:272.190000px;}
.y5e{bottom:272.730000px;}
.y9c{bottom:277.410000px;}
.y7f{bottom:283.890000px;}
.y159{bottom:286.050000px;}
.y13e{bottom:287.130000px;}
.yc4{bottom:288.390000px;}
.y17b{bottom:288.750000px;}
.yea{bottom:291.990000px;}
.y110{bottom:292.350000px;}
.y5d{bottom:292.890000px;}
.yf8{bottom:295.050000px;}
.y1a4{bottom:295.950000px;}
.y7e{bottom:304.050000px;}
.y158{bottom:306.210000px;}
.y9b{bottom:306.570000px;}
.y17a{bottom:307.110000px;}
.y13d{bottom:307.290000px;}
.y2a{bottom:311.610000px;}
.ye9{bottom:312.150000px;}
.y10f{bottom:312.510000px;}
.y5c{bottom:313.050000px;}
.yf7{bottom:315.210000px;}
.yc3{bottom:317.550000px;}
.y1a3{bottom:323.310000px;}
.y7d{bottom:324.210000px;}
.y179{bottom:325.290000px;}
.y13c{bottom:327.450000px;}
.ye8{bottom:332.130000px;}
.y10e{bottom:332.670000px;}
.y5b{bottom:333.210000px;}
.yf6{bottom:335.370000px;}
.yc2{bottom:337.755000px;}
.y29{bottom:339.915000px;}
.y1a2{bottom:341.715000px;}
.y178{bottom:343.695000px;}
.y7c{bottom:344.415000px;}
.y99{bottom:349.995000px;}
.ye7{bottom:352.335000px;}
.y10d{bottom:352.875000px;}
.y5a{bottom:353.415000px;}
.yf5{bottom:355.575000px;}
.y13b{bottom:356.655000px;}
.yc1{bottom:357.915000px;}
.y7b{bottom:364.575000px;}
.y1a1{bottom:368.895000px;}
.y177{bottom:371.055000px;}
.y10c{bottom:373.035000px;}
.y59{bottom:373.575000px;}
.y28{bottom:374.295000px;}
.y13a{bottom:376.815000px;}
.yc0{bottom:378.075000px;}
.ye6{bottom:381.495000px;}
.yf4{bottom:384.555000px;}
.y7a{bottom:384.735000px;}
.y176{bottom:389.415000px;}
.y27{bottom:390.855000px;}
.y98{bottom:391.755000px;}
.y58{bottom:393.735000px;}
.y1a0{bottom:396.255000px;}
.y139{bottom:396.975000px;}
.ye5{bottom:401.655000px;}
.y10b{bottom:402.015000px;}
.y79{bottom:404.715000px;}
.ybf{bottom:407.235000px;}
.y26{bottom:407.415000px;}
.y57{bottom:413.715000px;}
.y19f{bottom:414.615000px;}
.y175{bottom:416.595000px;}
.y138{bottom:417.135000px;}
.ye4{bottom:421.815000px;}
.y10a{bottom:422.175000px;}
.y25{bottom:423.795000px;}
.y78{bottom:424.875000px;}
.y95{bottom:429.195000px;}
.y56{bottom:433.875000px;}
.ybe{bottom:436.395000px;}
.y24{bottom:440.355000px;}
.ye3{bottom:441.975000px;}
.y109{bottom:442.335000px;}
.y174{bottom:443.955000px;}
.y77{bottom:445.035000px;}
.y137{bottom:446.295000px;}
.y55{bottom:454.035000px;}
.ybd{bottom:456.555000px;}
.y23{bottom:456.915000px;}
.y19e{bottom:460.335000px;}
.ye2{bottom:462.135000px;}
.y173{bottom:462.315000px;}
.y76{bottom:465.195000px;}
.y136{bottom:466.455000px;}
.y93{bottom:467.355000px;}
.y22{bottom:473.295000px;}
.y54{bottom:474.195000px;}
.ybc{bottom:476.715000px;}
.ye1{bottom:482.295000px;}
.y75{bottom:485.355000px;}
.y135{bottom:486.615000px;}
.y19d{bottom:487.515000px;}
.y172{bottom:489.495000px;}
.y21{bottom:489.855000px;}
.y53{bottom:494.355000px;}
.ybb{bottom:496.695000px;}
.ye0{bottom:502.455000px;}
.y157{bottom:503.355000px;}
.y108{bottom:505.875000px;}
.y20{bottom:506.235000px;}
.y134{bottom:506.595000px;}
.y171{bottom:507.855000px;}
.y52{bottom:514.515000px;}
.yba{bottom:516.855000px;}
.ydf{bottom:522.615000px;}
.y1f{bottom:522.795000px;}
.y156{bottom:523.515000px;}
.y133{bottom:526.755000px;}
.y92{bottom:527.835000px;}
.y19c{bottom:533.235000px;}
.y51{bottom:534.675000px;}
.y170{bottom:535.215000px;}
.y1e{bottom:539.175000px;}
.y155{bottom:543.675000px;}
.yb9{bottom:546.015000px;}
.y132{bottom:546.915000px;}
.yde{bottom:551.595000px;}
.y16f{bottom:553.575000px;}
.y50{bottom:554.835000px;}
.y107{bottom:555.195000px;}
.y1d{bottom:555.735000px;}
.y91{bottom:556.995000px;}
.y154{bottom:563.835000px;}
.y131{bottom:567.075000px;}
.ydd{bottom:571.755000px;}
.y4f{bottom:574.995000px;}
.y90{bottom:577.155000px;}
.y19b{bottom:578.775000px;}
.y16e{bottom:580.755000px;}
.y1c{bottom:581.115000px;}
.y153{bottom:583.995000px;}
.y105{bottom:584.355000px;}
.y130{bottom:587.235000px;}
.ydc{bottom:591.915000px;}
.yb8{bottom:593.175000px;}
.y4e{bottom:595.155000px;}
.y19a{bottom:597.135000px;}
.y16d{bottom:599.115000px;}
.y1b{bottom:600.375000px;}
.y152{bottom:604.185000px;}
.y8f{bottom:606.165000px;}
.y12f{bottom:607.425000px;}
.ydb{bottom:612.105000px;}
.yb7{bottom:613.365000px;}
.y4d{bottom:615.165000px;}
.y199{bottom:615.525000px;}
.y1a{bottom:618.585000px;}
.y74{bottom:624.165000px;}
.y8e{bottom:626.325000px;}
.y12e{bottom:627.585000px;}
.yda{bottom:632.265000px;}
.y151{bottom:633.165000px;}
.yb6{bottom:633.525000px;}
.y104{bottom:633.705000px;}
.y198{bottom:642.705000px;}
.y4c{bottom:644.325000px;}
.y16c{bottom:644.685000px;}
.y8d{bottom:646.485000px;}
.yd9{bottom:648.645000px;}
.y19{bottom:650.985000px;}
.y150{bottom:653.325000px;}
.yb5{bottom:653.685000px;}
.y12d{bottom:656.745000px;}
.y197{bottom:661.065000px;}
.y103{bottom:662.865000px;}
.y16b{bottom:663.045000px;}
.y4b{bottom:664.485000px;}
.y8c{bottom:666.645000px;}
.y18{bottom:672.765000px;}
.y14f{bottom:673.485000px;}
.yb4{bottom:673.845000px;}
.y12c{bottom:676.905000px;}
.yd8{bottom:679.065000px;}
.y196{bottom:679.425000px;}
.y4a{bottom:684.645000px;}
.y8b{bottom:686.805000px;}
.y16a{bottom:690.405000px;}
.y14e{bottom:693.645000px;}
.yb3{bottom:694.005000px;}
.y17{bottom:694.545000px;}
.y49{bottom:704.805000px;}
.y12b{bottom:705.885000px;}
.y195{bottom:706.605000px;}
.y8a{bottom:706.965000px;}
.y169{bottom:708.765000px;}
.yd7{bottom:709.125000px;}
.y101{bottom:712.905000px;}
.y73{bottom:713.805000px;}
.yb2{bottom:713.985000px;}
.y48{bottom:724.965000px;}
.y16{bottom:728.205000px;}
.y72{bottom:733.965000px;}
.yb1{bottom:734.145000px;}
.y168{bottom:735.945000px;}
.y89{bottom:736.125000px;}
.yd6{bottom:739.365000px;}
.y12a{bottom:744.045000px;}
.y47{bottom:745.125000px;}
.y194{bottom:752.325000px;}
.y71{bottom:754.125000px;}
.yb0{bottom:754.305000px;}
.y88{bottom:756.285000px;}
.y15{bottom:762.045000px;}
.y14d{bottom:763.125000px;}
.y129{bottom:764.205000px;}
.y46{bottom:765.285000px;}
.yd5{bottom:769.425000px;}
.y193{bottom:770.685000px;}
.y70{bottom:774.285000px;}
.y87{bottom:776.445000px;}
.y167{bottom:781.665000px;}
.y100{bottom:782.205000px;}
.y14c{bottom:783.285000px;}
.yaf{bottom:783.465000px;}
.y14{bottom:783.645000px;}
.y128{bottom:784.365000px;}
.y45{bottom:785.445000px;}
.y192{bottom:789.045000px;}
.y6f{bottom:794.445000px;}
.y86{bottom:796.425000px;}
.yd4{bottom:799.665000px;}
.y14b{bottom:803.445000px;}
.yae{bottom:803.625000px;}
.y127{bottom:804.525000px;}
.y44{bottom:805.425000px;}
.y166{bottom:808.845000px;}
.y6e{bottom:814.425000px;}
.y191{bottom:816.225000px;}
.y13{bottom:817.485000px;}
.yad{bottom:820.005000px;}
.y14a{bottom:823.425000px;}
.y126{bottom:824.685000px;}
.y43{bottom:825.585000px;}
.y165{bottom:827.205000px;}
.yd3{bottom:829.725000px;}
.y6d{bottom:834.585000px;}
.y12{bottom:839.265000px;}
.y149{bottom:843.585000px;}
.y125{bottom:844.845000px;}
.y164{bottom:845.565000px;}
.y42{bottom:845.745000px;}
.y190{bottom:852.945000px;}
.y6c{bottom:854.745000px;}
.yd0{bottom:860.685000px;}
.y148{bottom:863.745000px;}
.y124{bottom:865.005000px;}
.yab{bottom:869.325000px;}
.y163{bottom:872.790000px;}
.y11{bottom:872.970000px;}
.y41{bottom:874.950000px;}
.y18f{bottom:880.170000px;}
.y147{bottom:883.950000px;}
.y123{bottom:885.210000px;}
.y162{bottom:891.150000px;}
.yf{bottom:894.750000px;}
.y40{bottom:895.110000px;}
.y18e{bottom:898.530000px;}
.yaa{bottom:899.430000px;}
.y10{bottom:900.690000px;}
.y146{bottom:904.110000px;}
.y122{bottom:905.370000px;}
.y161{bottom:909.510000px;}
.y3f{bottom:915.270000px;}
.y18d{bottom:916.890000px;}
.y121{bottom:921.750000px;}
.yf3{bottom:924.270000px;}
.ye{bottom:928.410000px;}
.ya9{bottom:929.670000px;}
.y3e{bottom:935.430000px;}
.y160{bottom:936.870000px;}
.y18c{bottom:944.070000px;}
.y85{bottom:944.430000px;}
.y11f{bottom:950.910000px;}
.y15f{bottom:955.230000px;}
.y3d{bottom:955.590000px;}
.yd{bottom:959.550000px;}
.ya8{bottom:959.730000px;}
.y18b{bottom:962.430000px;}
.y6a{bottom:964.590000px;}
.y6b{bottom:970.530000px;}
.y15e{bottom:973.410000px;}
.ycf{bottom:973.590000px;}
.y18a{bottom:980.790000px;}
.y11e{bottom:981.510000px;}
.y3c{bottom:984.750000px;}
.yc{bottom:988.890000px;}
.ya7{bottom:989.970000px;}
.yce{bottom:993.750000px;}
.y15d{bottom:1000.770000px;}
.y3b{bottom:1004.910000px;}
.y189{bottom:1008.150000px;}
.y11d{bottom:1010.670000px;}
.ycd{bottom:1013.910000px;}
.yb{bottom:1015.710000px;}
.y15c{bottom:1019.130000px;}
.ya6{bottom:1020.030000px;}
.y3a{bottom:1024.890000px;}
.y188{bottom:1026.510000px;}
.y1{bottom:1030.110000px;}
.ycc{bottom:1033.890000px;}
.y15b{bottom:1037.490000px;}
.y11c{bottom:1040.550000px;}
.y39{bottom:1045.050000px;}
.ya3{bottom:1050.990000px;}
.y187{bottom:1053.690000px;}
.y69{bottom:1054.050000px;}
.y3{bottom:1057.650000px;}
.y38{bottom:1065.210000px;}
.y11b{bottom:1069.710000px;}
.y186{bottom:1072.050000px;}
.y68{bottom:1074.210000px;}
.y37{bottom:1085.370000px;}
.y67{bottom:1094.370000px;}
.y185{bottom:1099.230000px;}
.y11a{bottom:1100.310000px;}
.y36{bottom:1105.530000px;}
.y66{bottom:1114.530000px;}
.y184{bottom:1117.590000px;}
.y119{bottom:1127.130000px;}
.y35{bottom:1134.690000px;}
.y183{bottom:1135.950000px;}
.y32{bottom:1166.760000px;}
.y31{bottom:1182.420000px;}
.y30{bottom:1198.260000px;}
.h21{height:22.536000px;}
.h22{height:26.820000px;}
.h7{height:27.540000px;}
.h23{height:28.980000px;}
.h1d{height:29.160000px;}
.h16{height:30.060000px;}
.h17{height:30.096000px;}
.h15{height:30.240000px;}
.h1c{height:30.420000px;}
.h12{height:37.440000px;}
.hf{height:38.671172px;}
.hc{height:41.535703px;}
.h13{height:41.760000px;}
.h11{height:46.260000px;}
.h10{height:47.980898px;}
.h1f{height:49.140000px;}
.h18{height:49.320000px;}
.h20{height:49.356000px;}
.he{height:53.709961px;}
.hd{height:55.291992px;}
.h19{height:57.927656px;}
.h3{height:59.439023px;}
.h8{height:61.189805px;}
.h6{height:61.423863px;}
.ha{height:65.884219px;}
.hb{height:67.824844px;}
.h1a{height:68.084282px;}
.h1e{height:69.300000px;}
.h14{height:69.480000px;}
.h1b{height:69.516000px;}
.h9{height:98.051133px;}
.h4{height:99.036000px;}
.h5{height:107.419922px;}
.h2{height:126.576000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:31.860000px;}
.w22{width:31.896000px;}
.w24{width:32.040000px;}
.w13{width:32.760000px;}
.w23{width:33.120000px;}
.wf{width:42.480000px;}
.w11{width:42.840000px;}
.w2c{width:43.200000px;}
.wa{width:53.100000px;}
.w25{width:53.136000px;}
.w21{width:53.280000px;}
.w18{width:54.000000px;}
.w2a{width:63.576000px;}
.w1e{width:84.960000px;}
.w1c{width:84.996000px;}
.w1b{width:85.140000px;}
.w29{width:85.860000px;}
.w1d{width:87.300000px;}
.w26{width:90.000000px;}
.w17{width:100.800000px;}
.w10{width:106.236000px;}
.w1f{width:106.380000px;}
.w1a{width:110.880000px;}
.w15{width:117.000000px;}
.we{width:127.656000px;}
.w9{width:133.776000px;}
.wd{width:138.240000px;}
.wb{width:148.716000px;}
.w14{width:148.896000px;}
.w7{width:149.076000px;}
.w16{width:152.850000px;}
.w2b{width:161.130000px;}
.w8{width:170.130000px;}
.w2{width:170.820000px;}
.w2d{width:177.330000px;}
.w4{width:180.390000px;}
.wc{width:191.550000px;}
.w28{width:220.530000px;}
.w27{width:224.715000px;}
.w3{width:362.235000px;}
.w19{width:512.565000px;}
.w12{width:637.845000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:5.400000px;}
.x32{left:7.020000px;}
.x27{left:8.685000px;}
.x25{left:11.160000px;}
.x20{left:13.500000px;}
.x5{left:16.740000px;}
.x39{left:18.720000px;}
.x2c{left:21.240000px;}
.x56{left:23.445000px;}
.x38{left:25.380000px;}
.x1e{left:26.460000px;}
.x22{left:28.800000px;}
.x3d{left:31.860000px;}
.x42{left:34.380000px;}
.x44{left:35.460000px;}
.x35{left:37.110000px;}
.x53{left:38.565000px;}
.x24{left:41.940000px;}
.x33{left:43.200000px;}
.x3b{left:46.260000px;}
.x1b{left:48.420000px;}
.x3c{left:53.130000px;}
.x3a{left:54.180000px;}
.x2b{left:55.305000px;}
.x18{left:57.960000px;}
.x2e{left:59.625000px;}
.x2a{left:60.660000px;}
.x2d{left:64.980000px;}
.x1a{left:66.780000px;}
.x58{left:68.400000px;}
.x19{left:70.740000px;}
.x8{left:72.045000px;}
.x59{left:73.260000px;}
.x16{left:75.600000px;}
.x55{left:86.040000px;}
.x1{left:89.856000px;}
.x40{left:102.105000px;}
.x1d{left:122.256000px;}
.xb{left:127.655987px;}
.xf{left:132.515987px;}
.x6{left:134.685000px;}
.x2f{left:154.649987px;}
.x31{left:164.730000px;}
.x2{left:169.734000px;}
.x1f{left:175.350000px;}
.x51{left:178.950000px;}
.x4{left:181.125000px;}
.xa{left:182.189987px;}
.x9{left:183.629987px;}
.x3f{left:185.970000px;}
.x28{left:217.830000px;}
.x13{left:219.990000px;}
.x3e{left:242.129987px;}
.x3{left:260.670000px;}
.xc{left:265.529973px;}
.x52{left:268.950000px;}
.xd{left:270.749987px;}
.x48{left:303.015000px;}
.x30{left:314.354987px;}
.x1c{left:317.234987px;}
.x21{left:324.075000px;}
.x57{left:332.535000px;}
.xe{left:343.694987px;}
.x43{left:356.115000px;}
.x29{left:366.915000px;}
.x15{left:369.075000px;}
.x11{left:383.114973px;}
.x12{left:388.334987px;}
.x34{left:430.635000px;}
.x49{left:442.335000px;}
.x45{left:443.415000px;}
.x4a{left:474.225000px;}
.x54{left:493.665000px;}
.x23{left:515.625000px;}
.x4b{left:527.325000px;}
.x46{left:528.405000px;}
.x36{left:537.045000px;}
.x17{left:539.205000px;}
.x4c{left:559.365000px;}
.x4d{left:612.465000px;}
.x47{left:613.545000px;}
.x7{left:622.905000px;}
.x4e{left:644.325000px;}
.x26{left:653.865000px;}
.x37{left:689.910000px;}
.x4f{left:697.470000px;}
.x41{left:698.550000px;}
.x10{left:740.489987px;}
.x50{left:750.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2a{letter-spacing:-1.280000pt;}
.ls26{letter-spacing:-0.741333pt;}
.ls21{letter-spacing:-0.682667pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.524800pt;}
.ls27{letter-spacing:-0.514667pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.419733pt;}
.ls2b{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.409600pt;}
.ls1e{letter-spacing:-0.286933pt;}
.ls25{letter-spacing:-0.276267pt;}
.lsc{letter-spacing:-0.156267pt;}
.ls1b{letter-spacing:-0.146133pt;}
.lsb{letter-spacing:-0.117867pt;}
.ls17{letter-spacing:-0.102400pt;}
.ls7{letter-spacing:-0.095467pt;}
.ls10{letter-spacing:-0.090667pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.043520pt;}
.ls14{letter-spacing:-0.038400pt;}
.ls20{letter-spacing:-0.023040pt;}
.ls4{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.019840pt;}
.ls30{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.066560pt;}
.ls1a{letter-spacing:0.079360pt;}
.ls18{letter-spacing:0.079467pt;}
.ls1{letter-spacing:0.105600pt;}
.ls2c{letter-spacing:0.115200pt;}
.lsf{letter-spacing:0.117760pt;}
.ls16{letter-spacing:0.117867pt;}
.ls22{letter-spacing:0.125333pt;}
.ls2{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.154667pt;}
.ls2d{letter-spacing:0.154880pt;}
.ls32{letter-spacing:0.159360pt;}
.ls33{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.186667pt;}
.ls1c{letter-spacing:0.212267pt;}
.ls28{letter-spacing:0.220267pt;}
.lse{letter-spacing:0.227733pt;}
.ls34{letter-spacing:0.252267pt;}
.ls1f{letter-spacing:0.253333pt;}
.ls9{letter-spacing:0.257067pt;}
.ls24{letter-spacing:0.294400pt;}
.ls35{letter-spacing:0.309867pt;}
.ls11{letter-spacing:0.330133pt;}
.ls2f{letter-spacing:0.426240pt;}
.ls2e{letter-spacing:0.586240pt;}
.ls5{letter-spacing:0.586667pt;}
.ls29{letter-spacing:2.053120pt;}
.ls1d{letter-spacing:34.831360pt;}
.ws4{word-spacing:-19.237120pt;}
.ws1e{word-spacing:-13.637013pt;}
.ws18{word-spacing:-13.601280pt;}
.ws14{word-spacing:-13.560213pt;}
.ws15{word-spacing:-13.534613pt;}
.ws13{word-spacing:-13.519147pt;}
.ws19{word-spacing:-13.432213pt;}
.ws11{word-spacing:-13.424747pt;}
.ws20{word-spacing:-13.422080pt;}
.ws10{word-spacing:-13.386347pt;}
.ws1f{word-spacing:-13.324800pt;}
.ws5{word-spacing:-13.306880pt;}
.ws16{word-spacing:-13.283840pt;}
.wsd{word-spacing:-13.268480pt;}
.wsf{word-spacing:-13.204480pt;}
.wsb{word-spacing:-13.189013pt;}
.ws12{word-spacing:-13.160747pt;}
.ws1a{word-spacing:-13.030613pt;}
.wse{word-spacing:-12.897280pt;}
.ws1d{word-spacing:-12.894613pt;}
.ws1c{word-spacing:-12.792213pt;}
.wsc{word-spacing:-12.782080pt;}
.ws17{word-spacing:-12.624213pt;}
.ws0{word-spacing:-12.591787pt;}
.ws1b{word-spacing:-12.565547pt;}
.ws22{word-spacing:-12.314987pt;}
.ws2{word-spacing:-12.005120pt;}
.ws1{word-spacing:-11.953280pt;}
.ws21{word-spacing:-11.909653pt;}
.ws7{word-spacing:-10.848000pt;}
.ws9{word-spacing:-9.710720pt;}
.wsa{word-spacing:-9.690880pt;}
.ws6{word-spacing:-8.389120pt;}
.ws3{word-spacing:-0.053120pt;}
.ws8{word-spacing:0.000000pt;}
._10{margin-left:-3.760640pt;}
._7{margin-left:-2.773333pt;}
._1{margin-left:-1.274880pt;}
._0{width:1.044267pt;}
._2{width:2.215253pt;}
._8{width:3.141760pt;}
._a{width:4.076160pt;}
._5{width:5.088000pt;}
._6{width:6.385067pt;}
._3{width:7.968000pt;}
._4{width:8.891733pt;}
._f{width:9.871787pt;}
._e{width:11.578880pt;}
._1e{width:12.896640pt;}
._12{width:14.778880pt;}
._13{width:16.309760pt;}
._17{width:17.369600pt;}
._11{width:18.370560pt;}
._14{width:19.463893pt;}
._b{width:20.549120pt;}
._c{width:21.588480pt;}
._d{width:22.937173pt;}
._1a{width:26.554880pt;}
._21{width:27.506560pt;}
._1b{width:28.556800pt;}
._18{width:30.264320pt;}
._19{width:31.854080pt;}
._15{width:39.200427pt;}
._16{width:40.404053pt;}
._1c{width:68.436693pt;}
._1d{width:69.422720pt;}
._1f{width:72.845653pt;}
._20{width:73.765547pt;}
._22{width:86.638720pt;}
._9{width:754.831787pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.520000pt;}
.y6{bottom:6.400000pt;}
.y120{bottom:11.840000pt;}
.y94{bottom:12.000000pt;}
.yac{bottom:12.040000pt;}
.y96{bottom:15.680000pt;}
.y97{bottom:16.640000pt;}
.y9a{bottom:17.600000pt;}
.y2{bottom:23.520000pt;}
.ya5{bottom:29.920000pt;}
.y106{bottom:29.946667pt;}
.yd2{bottom:29.960000pt;}
.y5{bottom:35.680000pt;}
.y102{bottom:47.680000pt;}
.ya4{bottom:47.840000pt;}
.yd1{bottom:47.880000pt;}
.y34{bottom:51.040000pt;}
.y4{bottom:65.120000pt;}
.y9{bottom:68.000000pt;}
.y33{bottom:68.992000pt;}
.y8{bottom:84.320000pt;}
.y2f{bottom:97.952000pt;}
.ycb{bottom:99.072000pt;}
.y7{bottom:100.026667pt;}
.y182{bottom:102.432000pt;}
.y84{bottom:102.592000pt;}
.y145{bottom:105.952000pt;}
.yf2{bottom:108.192000pt;}
.y118{bottom:108.672000pt;}
.y65{bottom:109.152000pt;}
.yff{bottom:112.992000pt;}
.y2e{bottom:114.112000pt;}
.y83{bottom:114.592000pt;}
.y181{bottom:118.752000pt;}
.ya2{bottom:123.232000pt;}
.y144{bottom:123.872000pt;}
.yca{bottom:124.992000pt;}
.yf1{bottom:126.112000pt;}
.y64{bottom:127.072000pt;}
.y2d{bottom:130.432000pt;}
.yfe{bottom:130.912000pt;}
.y117{bottom:134.586667pt;}
.y2c{bottom:135.066667pt;}
.yc9{bottom:142.906667pt;}
.yf0{bottom:144.026667pt;}
.y63{bottom:144.986667pt;}
.y2b{bottom:147.226667pt;}
.yfd{bottom:148.666667pt;}
.ya1{bottom:149.146667pt;}
.y143{bottom:149.786667pt;}
.y116{bottom:152.506667pt;}
.y180{bottom:159.226667pt;}
.yef{bottom:161.946667pt;}
.y62{bottom:162.906667pt;}
.yfc{bottom:166.586667pt;}
.yc8{bottom:168.826667pt;}
.y115{bottom:170.426667pt;}
.y82{bottom:172.666667pt;}
.y15a{bottom:174.586667pt;}
.ya0{bottom:175.066667pt;}
.y17f{bottom:175.546667pt;}
.y142{bottom:175.706667pt;}
.yee{bottom:179.866667pt;}
.y61{bottom:180.666667pt;}
.y114{bottom:188.186667pt;}
.y81{bottom:190.586667pt;}
.yfb{bottom:192.506667pt;}
.y9f{bottom:192.986667pt;}
.y141{bottom:193.626667pt;}
.yc7{bottom:194.746667pt;}
.yed{bottom:197.786667pt;}
.y60{bottom:198.586667pt;}
.y17e{bottom:199.706667pt;}
.y113{bottom:206.106667pt;}
.y9e{bottom:210.746667pt;}
.y140{bottom:211.546667pt;}
.yc6{bottom:212.666667pt;}
.yec{bottom:215.706667pt;}
.y17d{bottom:216.026667pt;}
.y5f{bottom:216.506667pt;}
.yfa{bottom:218.426667pt;}
.y112{bottom:224.026667pt;}
.y9d{bottom:228.666667pt;}
.y17c{bottom:232.346667pt;}
.y80{bottom:234.426667pt;}
.yf9{bottom:236.346667pt;}
.y13f{bottom:237.306667pt;}
.yc5{bottom:238.426667pt;}
.yeb{bottom:241.626667pt;}
.y111{bottom:241.946667pt;}
.y5e{bottom:242.426667pt;}
.y9c{bottom:246.586667pt;}
.y7f{bottom:252.346667pt;}
.y159{bottom:254.266667pt;}
.y13e{bottom:255.226667pt;}
.yc4{bottom:256.346667pt;}
.y17b{bottom:256.666667pt;}
.yea{bottom:259.546667pt;}
.y110{bottom:259.866667pt;}
.y5d{bottom:260.346667pt;}
.yf8{bottom:262.266667pt;}
.y1a4{bottom:263.066667pt;}
.y7e{bottom:270.266667pt;}
.y158{bottom:272.186667pt;}
.y9b{bottom:272.506667pt;}
.y17a{bottom:272.986667pt;}
.y13d{bottom:273.146667pt;}
.y2a{bottom:276.986667pt;}
.ye9{bottom:277.466667pt;}
.y10f{bottom:277.786667pt;}
.y5c{bottom:278.266667pt;}
.yf7{bottom:280.186667pt;}
.yc3{bottom:282.266667pt;}
.y1a3{bottom:287.386667pt;}
.y7d{bottom:288.186667pt;}
.y179{bottom:289.146667pt;}
.y13c{bottom:291.066667pt;}
.ye8{bottom:295.226667pt;}
.y10e{bottom:295.706667pt;}
.y5b{bottom:296.186667pt;}
.yf6{bottom:298.106667pt;}
.yc2{bottom:300.226667pt;}
.y29{bottom:302.146667pt;}
.y1a2{bottom:303.746667pt;}
.y178{bottom:305.506667pt;}
.y7c{bottom:306.146667pt;}
.y99{bottom:311.106667pt;}
.ye7{bottom:313.186667pt;}
.y10d{bottom:313.666667pt;}
.y5a{bottom:314.146667pt;}
.yf5{bottom:316.066667pt;}
.y13b{bottom:317.026667pt;}
.yc1{bottom:318.146667pt;}
.y7b{bottom:324.066667pt;}
.y1a1{bottom:327.906667pt;}
.y177{bottom:329.826667pt;}
.y10c{bottom:331.586667pt;}
.y59{bottom:332.066667pt;}
.y28{bottom:332.706667pt;}
.y13a{bottom:334.946667pt;}
.yc0{bottom:336.066667pt;}
.ye6{bottom:339.106667pt;}
.yf4{bottom:341.826667pt;}
.y7a{bottom:341.986667pt;}
.y176{bottom:346.146667pt;}
.y27{bottom:347.426667pt;}
.y98{bottom:348.226667pt;}
.y58{bottom:349.986667pt;}
.y1a0{bottom:352.226667pt;}
.y139{bottom:352.866667pt;}
.ye5{bottom:357.026667pt;}
.y10b{bottom:357.346667pt;}
.y79{bottom:359.746667pt;}
.ybf{bottom:361.986667pt;}
.y26{bottom:362.146667pt;}
.y57{bottom:367.746667pt;}
.y19f{bottom:368.546667pt;}
.y175{bottom:370.306667pt;}
.y138{bottom:370.786667pt;}
.ye4{bottom:374.946667pt;}
.y10a{bottom:375.266667pt;}
.y25{bottom:376.706667pt;}
.y78{bottom:377.666667pt;}
.y95{bottom:381.506667pt;}
.y56{bottom:385.666667pt;}
.ybe{bottom:387.906667pt;}
.y24{bottom:391.426667pt;}
.ye3{bottom:392.866667pt;}
.y109{bottom:393.186667pt;}
.y174{bottom:394.626667pt;}
.y77{bottom:395.586667pt;}
.y137{bottom:396.706667pt;}
.y55{bottom:403.586667pt;}
.ybd{bottom:405.826667pt;}
.y23{bottom:406.146667pt;}
.y19e{bottom:409.186667pt;}
.ye2{bottom:410.786667pt;}
.y173{bottom:410.946667pt;}
.y76{bottom:413.506667pt;}
.y136{bottom:414.626667pt;}
.y93{bottom:415.426667pt;}
.y22{bottom:420.706667pt;}
.y54{bottom:421.506667pt;}
.ybc{bottom:423.746667pt;}
.ye1{bottom:428.706667pt;}
.y75{bottom:431.426667pt;}
.y135{bottom:432.546667pt;}
.y19d{bottom:433.346667pt;}
.y172{bottom:435.106667pt;}
.y21{bottom:435.426667pt;}
.y53{bottom:439.426667pt;}
.ybb{bottom:441.506667pt;}
.ye0{bottom:446.626667pt;}
.y157{bottom:447.426667pt;}
.y108{bottom:449.666667pt;}
.y20{bottom:449.986667pt;}
.y134{bottom:450.306667pt;}
.y171{bottom:451.426667pt;}
.y52{bottom:457.346667pt;}
.yba{bottom:459.426667pt;}
.ydf{bottom:464.546667pt;}
.y1f{bottom:464.706667pt;}
.y156{bottom:465.346667pt;}
.y133{bottom:468.226667pt;}
.y92{bottom:469.186667pt;}
.y19c{bottom:473.986667pt;}
.y51{bottom:475.266667pt;}
.y170{bottom:475.746667pt;}
.y1e{bottom:479.266667pt;}
.y155{bottom:483.266667pt;}
.yb9{bottom:485.346667pt;}
.y132{bottom:486.146667pt;}
.yde{bottom:490.306667pt;}
.y16f{bottom:492.066667pt;}
.y50{bottom:493.186667pt;}
.y107{bottom:493.506667pt;}
.y1d{bottom:493.986667pt;}
.y91{bottom:495.106667pt;}
.y154{bottom:501.186667pt;}
.y131{bottom:504.066667pt;}
.ydd{bottom:508.226667pt;}
.y4f{bottom:511.106667pt;}
.y90{bottom:513.026667pt;}
.y19b{bottom:514.466667pt;}
.y16e{bottom:516.226667pt;}
.y1c{bottom:516.546667pt;}
.y153{bottom:519.106667pt;}
.y105{bottom:519.426667pt;}
.y130{bottom:521.986667pt;}
.ydc{bottom:526.146667pt;}
.yb8{bottom:527.266667pt;}
.y4e{bottom:529.026667pt;}
.y19a{bottom:530.786667pt;}
.y16d{bottom:532.546667pt;}
.y1b{bottom:533.666667pt;}
.y152{bottom:537.053333pt;}
.y8f{bottom:538.813333pt;}
.y12f{bottom:539.933333pt;}
.ydb{bottom:544.093333pt;}
.yb7{bottom:545.213333pt;}
.y4d{bottom:546.813333pt;}
.y199{bottom:547.133333pt;}
.y1a{bottom:549.853333pt;}
.y74{bottom:554.813333pt;}
.y8e{bottom:556.733333pt;}
.y12e{bottom:557.853333pt;}
.yda{bottom:562.013333pt;}
.y151{bottom:562.813333pt;}
.yb6{bottom:563.133333pt;}
.y104{bottom:563.293333pt;}
.y198{bottom:571.293333pt;}
.y4c{bottom:572.733333pt;}
.y16c{bottom:573.053333pt;}
.y8d{bottom:574.653333pt;}
.yd9{bottom:576.573333pt;}
.y19{bottom:578.653333pt;}
.y150{bottom:580.733333pt;}
.yb5{bottom:581.053333pt;}
.y12d{bottom:583.773333pt;}
.y197{bottom:587.613333pt;}
.y103{bottom:589.213333pt;}
.y16b{bottom:589.373333pt;}
.y4b{bottom:590.653333pt;}
.y8c{bottom:592.573333pt;}
.y18{bottom:598.013333pt;}
.y14f{bottom:598.653333pt;}
.yb4{bottom:598.973333pt;}
.y12c{bottom:601.693333pt;}
.yd8{bottom:603.613333pt;}
.y196{bottom:603.933333pt;}
.y4a{bottom:608.573333pt;}
.y8b{bottom:610.493333pt;}
.y16a{bottom:613.693333pt;}
.y14e{bottom:616.573333pt;}
.yb3{bottom:616.893333pt;}
.y17{bottom:617.373333pt;}
.y49{bottom:626.493333pt;}
.y12b{bottom:627.453333pt;}
.y195{bottom:628.093333pt;}
.y8a{bottom:628.413333pt;}
.y169{bottom:630.013333pt;}
.yd7{bottom:630.333333pt;}
.y101{bottom:633.693333pt;}
.y73{bottom:634.493333pt;}
.yb2{bottom:634.653333pt;}
.y48{bottom:644.413333pt;}
.y16{bottom:647.293333pt;}
.y72{bottom:652.413333pt;}
.yb1{bottom:652.573333pt;}
.y168{bottom:654.173333pt;}
.y89{bottom:654.333333pt;}
.yd6{bottom:657.213333pt;}
.y12a{bottom:661.373333pt;}
.y47{bottom:662.333333pt;}
.y194{bottom:668.733333pt;}
.y71{bottom:670.333333pt;}
.yb0{bottom:670.493333pt;}
.y88{bottom:672.253333pt;}
.y15{bottom:677.373333pt;}
.y14d{bottom:678.333333pt;}
.y129{bottom:679.293333pt;}
.y46{bottom:680.253333pt;}
.yd5{bottom:683.933333pt;}
.y193{bottom:685.053333pt;}
.y70{bottom:688.253333pt;}
.y87{bottom:690.173333pt;}
.y167{bottom:694.813333pt;}
.y100{bottom:695.293333pt;}
.y14c{bottom:696.253333pt;}
.yaf{bottom:696.413333pt;}
.y14{bottom:696.573333pt;}
.y128{bottom:697.213333pt;}
.y45{bottom:698.173333pt;}
.y192{bottom:701.373333pt;}
.y6f{bottom:706.173333pt;}
.y86{bottom:707.933333pt;}
.yd4{bottom:710.813333pt;}
.y14b{bottom:714.173333pt;}
.yae{bottom:714.333333pt;}
.y127{bottom:715.133333pt;}
.y44{bottom:715.933333pt;}
.y166{bottom:718.973333pt;}
.y6e{bottom:723.933333pt;}
.y191{bottom:725.533333pt;}
.y13{bottom:726.653333pt;}
.yad{bottom:728.893333pt;}
.y14a{bottom:731.933333pt;}
.y126{bottom:733.053333pt;}
.y43{bottom:733.853333pt;}
.y165{bottom:735.293333pt;}
.yd3{bottom:737.533333pt;}
.y6d{bottom:741.853333pt;}
.y12{bottom:746.013333pt;}
.y149{bottom:749.853333pt;}
.y125{bottom:750.973333pt;}
.y164{bottom:751.613333pt;}
.y42{bottom:751.773333pt;}
.y190{bottom:758.173333pt;}
.y6c{bottom:759.773333pt;}
.yd0{bottom:765.053333pt;}
.y148{bottom:767.773333pt;}
.y124{bottom:768.893333pt;}
.yab{bottom:772.733333pt;}
.y163{bottom:775.813333pt;}
.y11{bottom:775.973333pt;}
.y41{bottom:777.733333pt;}
.y18f{bottom:782.373333pt;}
.y147{bottom:785.733333pt;}
.y123{bottom:786.853333pt;}
.y162{bottom:792.133333pt;}
.yf{bottom:795.333333pt;}
.y40{bottom:795.653333pt;}
.y18e{bottom:798.693333pt;}
.yaa{bottom:799.493333pt;}
.y10{bottom:800.613333pt;}
.y146{bottom:803.653333pt;}
.y122{bottom:804.773333pt;}
.y161{bottom:808.453333pt;}
.y3f{bottom:813.573333pt;}
.y18d{bottom:815.013333pt;}
.y121{bottom:819.333333pt;}
.yf3{bottom:821.573333pt;}
.ye{bottom:825.253333pt;}
.ya9{bottom:826.373333pt;}
.y3e{bottom:831.493333pt;}
.y160{bottom:832.773333pt;}
.y18c{bottom:839.173333pt;}
.y85{bottom:839.493333pt;}
.y11f{bottom:845.253333pt;}
.y15f{bottom:849.093333pt;}
.y3d{bottom:849.413333pt;}
.yd{bottom:852.933333pt;}
.ya8{bottom:853.093333pt;}
.y18b{bottom:855.493333pt;}
.y6a{bottom:857.413333pt;}
.y6b{bottom:862.693333pt;}
.y15e{bottom:865.253333pt;}
.ycf{bottom:865.413333pt;}
.y18a{bottom:871.813333pt;}
.y11e{bottom:872.453333pt;}
.y3c{bottom:875.333333pt;}
.yc{bottom:879.013333pt;}
.ya7{bottom:879.973333pt;}
.yce{bottom:883.333333pt;}
.y15d{bottom:889.573333pt;}
.y3b{bottom:893.253333pt;}
.y189{bottom:896.133333pt;}
.y11d{bottom:898.373333pt;}
.ycd{bottom:901.253333pt;}
.yb{bottom:902.853333pt;}
.y15c{bottom:905.893333pt;}
.ya6{bottom:906.693333pt;}
.y3a{bottom:911.013333pt;}
.y188{bottom:912.453333pt;}
.y1{bottom:915.653333pt;}
.ycc{bottom:919.013333pt;}
.y15b{bottom:922.213333pt;}
.y11c{bottom:924.933333pt;}
.y39{bottom:928.933333pt;}
.ya3{bottom:934.213333pt;}
.y187{bottom:936.613333pt;}
.y69{bottom:936.933333pt;}
.y3{bottom:940.133333pt;}
.y38{bottom:946.853333pt;}
.y11b{bottom:950.853333pt;}
.y186{bottom:952.933333pt;}
.y68{bottom:954.853333pt;}
.y37{bottom:964.773333pt;}
.y67{bottom:972.773333pt;}
.y185{bottom:977.093333pt;}
.y11a{bottom:978.053333pt;}
.y36{bottom:982.693333pt;}
.y66{bottom:990.693333pt;}
.y184{bottom:993.413333pt;}
.y119{bottom:1001.893333pt;}
.y35{bottom:1008.613333pt;}
.y183{bottom:1009.733333pt;}
.y32{bottom:1037.120000pt;}
.y31{bottom:1051.040000pt;}
.y30{bottom:1065.120000pt;}
.h21{height:20.032000pt;}
.h22{height:23.840000pt;}
.h7{height:24.480000pt;}
.h23{height:25.760000pt;}
.h1d{height:25.920000pt;}
.h16{height:26.720000pt;}
.h17{height:26.752000pt;}
.h15{height:26.880000pt;}
.h1c{height:27.040000pt;}
.h12{height:33.280000pt;}
.hf{height:34.374375pt;}
.hc{height:36.920625pt;}
.h13{height:37.120000pt;}
.h11{height:41.120000pt;}
.h10{height:42.649687pt;}
.h1f{height:43.680000pt;}
.h18{height:43.840000pt;}
.h20{height:43.872000pt;}
.he{height:47.742188pt;}
.hd{height:49.148438pt;}
.h19{height:51.491250pt;}
.h3{height:52.834688pt;}
.h8{height:54.390938pt;}
.h6{height:54.598989pt;}
.ha{height:58.563750pt;}
.hb{height:60.288750pt;}
.h1a{height:60.519362pt;}
.h1e{height:61.600000pt;}
.h14{height:61.760000pt;}
.h1b{height:61.792000pt;}
.h9{height:87.156562pt;}
.h4{height:88.032000pt;}
.h5{height:95.484375pt;}
.h2{height:112.512000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:28.320000pt;}
.w22{width:28.352000pt;}
.w24{width:28.480000pt;}
.w13{width:29.120000pt;}
.w23{width:29.440000pt;}
.wf{width:37.760000pt;}
.w11{width:38.080000pt;}
.w2c{width:38.400000pt;}
.wa{width:47.200000pt;}
.w25{width:47.232000pt;}
.w21{width:47.360000pt;}
.w18{width:48.000000pt;}
.w2a{width:56.512000pt;}
.w1e{width:75.520000pt;}
.w1c{width:75.552000pt;}
.w1b{width:75.680000pt;}
.w29{width:76.320000pt;}
.w1d{width:77.600000pt;}
.w26{width:80.000000pt;}
.w17{width:89.600000pt;}
.w10{width:94.432000pt;}
.w1f{width:94.560000pt;}
.w1a{width:98.560000pt;}
.w15{width:104.000000pt;}
.we{width:113.472000pt;}
.w9{width:118.912000pt;}
.wd{width:122.880000pt;}
.wb{width:132.192000pt;}
.w14{width:132.352000pt;}
.w7{width:132.512000pt;}
.w16{width:135.866667pt;}
.w2b{width:143.226667pt;}
.w8{width:151.226667pt;}
.w2{width:151.840000pt;}
.w2d{width:157.626667pt;}
.w4{width:160.346667pt;}
.wc{width:170.266667pt;}
.w28{width:196.026667pt;}
.w27{width:199.746667pt;}
.w3{width:321.986667pt;}
.w19{width:455.613333pt;}
.w12{width:566.973333pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.800000pt;}
.x32{left:6.240000pt;}
.x27{left:7.720000pt;}
.x25{left:9.920000pt;}
.x20{left:12.000000pt;}
.x5{left:14.880000pt;}
.x39{left:16.640000pt;}
.x2c{left:18.880000pt;}
.x56{left:20.840000pt;}
.x38{left:22.560000pt;}
.x1e{left:23.520000pt;}
.x22{left:25.600000pt;}
.x3d{left:28.320000pt;}
.x42{left:30.560000pt;}
.x44{left:31.520000pt;}
.x35{left:32.986667pt;}
.x53{left:34.280000pt;}
.x24{left:37.280000pt;}
.x33{left:38.400000pt;}
.x3b{left:41.120000pt;}
.x1b{left:43.040000pt;}
.x3c{left:47.226667pt;}
.x3a{left:48.160000pt;}
.x2b{left:49.160000pt;}
.x18{left:51.520000pt;}
.x2e{left:53.000000pt;}
.x2a{left:53.920000pt;}
.x2d{left:57.760000pt;}
.x1a{left:59.360000pt;}
.x58{left:60.800000pt;}
.x19{left:62.880000pt;}
.x8{left:64.040000pt;}
.x59{left:65.120000pt;}
.x16{left:67.200000pt;}
.x55{left:76.480000pt;}
.x1{left:79.872000pt;}
.x40{left:90.760000pt;}
.x1d{left:108.672000pt;}
.xb{left:113.471988pt;}
.xf{left:117.791988pt;}
.x6{left:119.720000pt;}
.x2f{left:137.466655pt;}
.x31{left:146.426667pt;}
.x2{left:150.874667pt;}
.x1f{left:155.866667pt;}
.x51{left:159.066667pt;}
.x4{left:161.000000pt;}
.xa{left:161.946655pt;}
.x9{left:163.226655pt;}
.x3f{left:165.306667pt;}
.x28{left:193.626667pt;}
.x13{left:195.546667pt;}
.x3e{left:215.226655pt;}
.x3{left:231.706667pt;}
.xc{left:236.026643pt;}
.x52{left:239.066667pt;}
.xd{left:240.666655pt;}
.x48{left:269.346667pt;}
.x30{left:279.426655pt;}
.x1c{left:281.986655pt;}
.x21{left:288.066667pt;}
.x57{left:295.586667pt;}
.xe{left:305.506655pt;}
.x43{left:316.546667pt;}
.x29{left:326.146667pt;}
.x15{left:328.066667pt;}
.x11{left:340.546643pt;}
.x12{left:345.186655pt;}
.x34{left:382.786667pt;}
.x49{left:393.186667pt;}
.x45{left:394.146667pt;}
.x4a{left:421.533333pt;}
.x54{left:438.813333pt;}
.x23{left:458.333333pt;}
.x4b{left:468.733333pt;}
.x46{left:469.693333pt;}
.x36{left:477.373333pt;}
.x17{left:479.293333pt;}
.x4c{left:497.213333pt;}
.x4d{left:544.413333pt;}
.x47{left:545.373333pt;}
.x7{left:553.693333pt;}
.x4e{left:572.733333pt;}
.x26{left:581.213333pt;}
.x37{left:613.253333pt;}
.x4f{left:619.973333pt;}
.x41{left:620.933333pt;}
.x10{left:658.213322pt;}
.x50{left:667.333333pt;}
}




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