
    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_a1806ed8cb8223cc28fd8afc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.194000;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_77ce4482c2894a8e02d726de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.205000;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_9fdc832213d62e691307b198.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.301000;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_3f47e57a868ebcb3d52ec05f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.696777;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_f9766ba5d334dcb1fd3f0678.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706055;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_1ad402cb65307a1b9b3ae0bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890625;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_1dc40aad8064580132605d08.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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_3d02b00f98089827efced57e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.288000;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_42a622a308b10ee0f824e336.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4b5da9b2d4d00fa4703f4389.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c964fdb53450c91c59b1d2a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_32e542725add1c273143b11b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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;}
.md{transform:matrix(0.000000,-0.249920,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249920,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249920,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250734,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250734,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250734,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-40.319984px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.056640px;}
.ls4{letter-spacing:0.079860px;}
.ls16{letter-spacing:0.083640px;}
.ls8{letter-spacing:0.122940px;}
.ls14{letter-spacing:0.147119px;}
.lse{letter-spacing:0.154261px;}
.ls1b{letter-spacing:0.182520px;}
.ls0{letter-spacing:0.182700px;}
.lsa{letter-spacing:0.189300px;}
.ls5{letter-spacing:0.232500px;}
.ls1f{letter-spacing:0.272340px;}
.ls6{letter-spacing:0.298920px;}
.ls2{letter-spacing:0.375720px;}
.ls7{letter-spacing:0.378600px;}
.ls15{letter-spacing:0.387208px;}
.lsc{letter-spacing:0.418440px;}
.ls10{letter-spacing:0.670100px;}
.ls19{letter-spacing:0.677340px;}
.lsf{letter-spacing:0.710242px;}
.ls9{letter-spacing:0.952920px;}
.ls1c{letter-spacing:9.555056px;}
.ls12{letter-spacing:10.275478px;}
.ls17{letter-spacing:13.877694px;}
.ls13{letter-spacing:16.759457px;}
.ls1e{letter-spacing:20.361712px;}
.ls1d{letter-spacing:21.082132px;}
.ls3{letter-spacing:28.054129px;}
.ls11{letter-spacing:46.065102px;}
.lsb{letter-spacing:54.943178px;}
.ls1a{letter-spacing:72.953971px;}
.ls18{letter-spacing:90.964764px;}
.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;}
}
.ws5{word-spacing:-46.433501px;}
.wsc{word-spacing:-42.242179px;}
.ws1{word-spacing:-41.957983px;}
.ws7{word-spacing:-24.119990px;}
.ws4{word-spacing:-15.318594px;}
.ws6{word-spacing:-15.062934px;}
.ws0{word-spacing:-14.939994px;}
.ws3{word-spacing:-13.875714px;}
.wsb{word-spacing:-13.591435px;}
.ws2{word-spacing:-13.499995px;}
.ws9{word-spacing:-12.990955px;}
.wsa{word-spacing:-12.990235px;}
.wsd{word-spacing:-10.840136px;}
.ws8{word-spacing:0.000000px;}
._2b{margin-left:-2.037719px;}
._1{margin-left:-1.017840px;}
._0{width:1.109340px;}
._5{width:2.402339px;}
._7{width:3.570719px;}
._16{width:4.956838px;}
._12{width:5.971558px;}
._2{width:7.168557px;}
._4{width:8.996096px;}
._3{width:10.135256px;}
._6{width:11.346775px;}
._8{width:12.368815px;}
._13{width:13.560835px;}
._17{width:16.121334px;}
._a{width:17.536913px;}
._d{width:19.134052px;}
._29{width:20.292232px;}
._b{width:21.305091px;}
._14{width:22.984671px;}
._15{width:24.024230px;}
._1d{width:25.030070px;}
._18{width:26.460649px;}
._31{width:27.584149px;}
._25{width:28.587529px;}
._19{width:30.020328px;}
._20{width:31.371107px;}
._34{width:32.390327px;}
._1e{width:33.515807px;}
._28{width:35.501326px;}
._2c{width:36.505485px;}
._c{width:38.157885px;}
._e{width:39.574904px;}
._10{width:40.601384px;}
._27{width:41.643463px;}
._26{width:42.891043px;}
._32{width:43.900182px;}
._1c{width:45.245682px;}
._24{width:46.816301px;}
._11{width:50.785420px;}
._36{width:52.396899px;}
._1a{width:53.880758px;}
._1b{width:55.630958px;}
._1f{width:57.104377px;}
._2f{width:58.113757px;}
._35{width:59.259096px;}
._23{width:60.594036px;}
._22{width:62.333555px;}
._2a{width:64.597834px;}
._2e{width:71.516551px;}
._33{width:73.721551px;}
._f{width:81.978147px;}
._30{width:91.765283px;}
._21{width:105.094998px;}
._9{width:115.530734px;}
._2d{width:161.815735px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:43.360543px;}
.fsa{font-size:43.475743px;}
.fs3{font-size:48.239981px;}
.fsb{font-size:51.620379px;}
.fs9{font-size:51.758619px;}
.fs4{font-size:51.938619px;}
.fs6{font-size:51.960939px;}
.fs5{font-size:51.963819px;}
.fs2{font-size:53.999978px;}
.fs7{font-size:54.365738px;}
.fs0{font-size:59.759976px;}
.fs8{font-size:65.503174px;}
.fs1{font-size:71.999971px;}
.y7d{bottom:-10.620698px;}
.y6a{bottom:-10.440790px;}
.y136{bottom:-7.920755px;}
.y120{bottom:-7.020856px;}
.y0{bottom:0.000000px;}
.y123{bottom:2.339150px;}
.y11b{bottom:2.339158px;}
.y10b{bottom:2.339163px;}
.y12b{bottom:2.339169px;}
.y10e{bottom:2.339173px;}
.y111{bottom:2.339182px;}
.y11d{bottom:2.519133px;}
.y114{bottom:2.519227px;}
.y132{bottom:2.519229px;}
.y118{bottom:2.519237px;}
.y56{bottom:3.058954px;}
.y4a{bottom:3.058986px;}
.y4f{bottom:3.059007px;}
.y63{bottom:3.059124px;}
.y128{bottom:3.059127px;}
.y126{bottom:3.059131px;}
.y68{bottom:3.059204px;}
.y7b{bottom:3.059296px;}
.yfe{bottom:3.238996px;}
.yd9{bottom:3.239257px;}
.yde{bottom:3.239294px;}
.y46{bottom:3.598922px;}
.yf5{bottom:3.959007px;}
.y87{bottom:148.440391px;}
.y15c{bottom:150.959940px;}
.yd3{bottom:153.299939px;}
.y17c{bottom:159.239936px;}
.y36{bottom:160.319936px;}
.y15b{bottom:168.239933px;}
.y86{bottom:175.979930px;}
.y17b{bottom:176.519929px;}
.y35{bottom:177.599929px;}
.y44{bottom:178.319929px;}
.y15a{bottom:185.519926px;}
.y85{bottom:191.459923px;}
.y17a{bottom:193.799922px;}
.y34{bottom:194.699922px;}
.y43{bottom:195.599922px;}
.y159{bottom:202.799919px;}
.ye4{bottom:205.859918px;}
.y179{bottom:210.899916px;}
.y33{bottom:211.979915px;}
.y42{bottom:212.699915px;}
.y158{bottom:219.899912px;}
.ye3{bottom:223.139911px;}
.y178{bottom:228.179909px;}
.y32{bottom:229.259908px;}
.y41{bottom:229.979908px;}
.y157{bottom:237.179905px;}
.ye2{bottom:240.419904px;}
.y177{bottom:245.459902px;}
.y31{bottom:246.539901px;}
.y40{bottom:247.259901px;}
.ydf{bottom:248.159901px;}
.y156{bottom:254.459898px;}
.y7c{bottom:255.000600px;}
.y7a{bottom:256.080600px;}
.ye1{bottom:257.519897px;}
.y79{bottom:259.139896px;}
.ydd{bottom:262.200600px;}
.y176{bottom:262.739895px;}
.y30{bottom:263.819894px;}
.y3f{bottom:264.539894px;}
.y108{bottom:271.019892px;}
.y155{bottom:271.739891px;}
.ye0{bottom:274.799890px;}
.y175{bottom:280.019888px;}
.y2f{bottom:281.099888px;}
.y3e{bottom:281.819887px;}
.y107{bottom:286.859885px;}
.y154{bottom:289.019884px;}
.ydc{bottom:296.399881px;}
.y174{bottom:297.299881px;}
.y2e{bottom:298.199881px;}
.y3d{bottom:299.099880px;}
.y106{bottom:302.339879px;}
.y153{bottom:306.299877px;}
.y78{bottom:306.659877px;}
.ydb{bottom:313.679875px;}
.y173{bottom:314.399874px;}
.y2d{bottom:315.479874px;}
.y83{bottom:315.659874px;}
.y3c{bottom:316.199874px;}
.y7e{bottom:316.919873px;}
.y105{bottom:317.819873px;}
.y152{bottom:323.399871px;}
.y82{bottom:330.959868px;}
.y172{bottom:331.679867px;}
.y2c{bottom:332.759867px;}
.y104{bottom:333.299867px;}
.y3b{bottom:333.479867px;}
.y151{bottom:340.679864px;}
.yda{bottom:341.039864px;}
.y81{bottom:345.899862px;}
.y171{bottom:348.959860px;}
.y2b{bottom:350.039860px;}
.yd7{bottom:350.399860px;}
.y3a{bottom:350.759860px;}
.yd8{bottom:355.080600px;}
.y150{bottom:357.959857px;}
.y80{bottom:360.839856px;}
.y170{bottom:366.239854px;}
.y2a{bottom:367.319853px;}
.yd6{bottom:367.679853px;}
.y39{bottom:368.039853px;}
.y14f{bottom:375.239850px;}
.y7f{bottom:375.779850px;}
.y16f{bottom:383.519847px;}
.y38{bottom:385.319846px;}
.y77{bottom:387.299845px;}
.y14e{bottom:392.519843px;}
.y29{bottom:393.059843px;}
.y135{bottom:395.040600px;}
.yd5{bottom:395.759842px;}
.y16e{bottom:400.799840px;}
.y134{bottom:401.519839px;}
.y37{bottom:402.419839px;}
.y117{bottom:405.120600px;}
.y116{bottom:407.639837px;}
.y14d{bottom:409.799836px;}
.yd4{bottom:411.419835px;}
.y133{bottom:413.939834px;}
.y84{bottom:415.019834px;}
.y16d{bottom:417.899833px;}
.y28{bottom:419.699832px;}
.y115{bottom:420.239832px;}
.y131{bottom:423.840600px;}
.y14c{bottom:426.899829px;}
.y113{bottom:430.140600px;}
.y16c{bottom:435.179826px;}
.y76{bottom:436.259825px;}
.y27{bottom:436.979825px;}
.y14b{bottom:444.179822px;}
.y16b{bottom:452.459819px;}
.y26{bottom:454.259818px;}
.y75{bottom:456.959817px;}
.y14a{bottom:461.459815px;}
.yad{bottom:469.019812px;}
.y16a{bottom:469.739812px;}
.y25{bottom:471.539811px;}
.y149{bottom:478.739809px;}
.y129{bottom:483.779806px;}
.y69{bottom:485.040600px;}
.y112{bottom:485.219806px;}
.yac{bottom:486.119806px;}
.y67{bottom:486.480600px;}
.y169{bottom:487.019805px;}
.y24{bottom:488.819804px;}
.y66{bottom:489.539804px;}
.yd2{bottom:496.019802px;}
.yab{bottom:503.399799px;}
.y168{bottom:504.119798px;}
.y23{bottom:505.919798px;}
.yd1{bottom:513.119795px;}
.yaa{bottom:520.679792px;}
.y167{bottom:521.039792px;}
.y22{bottom:523.199791px;}
.yd0{bottom:530.399788px;}
.y65{bottom:530.759788px;}
.ya9{bottom:537.959785px;}
.y21{bottom:540.479784px;}
.y6b{bottom:540.839784px;}
.y72{bottom:542.639783px;}
.y110{bottom:543.000600px;}
.y10f{bottom:545.339782px;}
.ycf{bottom:547.679781px;}
.ya8{bottom:555.239778px;}
.y20{bottom:557.759777px;}
.y71{bottom:557.939777px;}
.y130{bottom:561.539775px;}
.y12c{bottom:563.339775px;}
.yce{bottom:564.959774px;}
.y10d{bottom:566.040600px;}
.y10c{bottom:568.379773px;}
.y12f{bottom:572.160600px;}
.ya7{bottom:572.519771px;}
.y70{bottom:572.879771px;}
.y12a{bottom:573.960600px;}
.y1f{bottom:575.039770px;}
.ycd{bottom:582.239767px;}
.y6f{bottom:587.819765px;}
.ya6{bottom:589.619764px;}
.y10a{bottom:589.980600px;}
.y1e{bottom:592.319763px;}
.ycc{bottom:599.519760px;}
.y6e{bottom:602.759759px;}
.y11a{bottom:602.760600px;}
.y119{bottom:605.099758px;}
.ya5{bottom:606.899757px;}
.y1d{bottom:609.419756px;}
.y64{bottom:611.219756px;}
.y12e{bottom:615.719754px;}
.ycb{bottom:616.619753px;}
.y6d{bottom:617.699753px;}
.y122{bottom:622.740600px;}
.ya4{bottom:624.179750px;}
.y121{bottom:625.079750px;}
.y1c{bottom:626.699749px;}
.y12d{bottom:631.019748px;}
.y6c{bottom:632.639747px;}
.yca{bottom:633.899746px;}
.ya3{bottom:641.099744px;}
.y1b{bottom:643.979742px;}
.y11f{bottom:647.760600px;}
.yc9{bottom:651.179740px;}
.y109{bottom:652.439739px;}
.y11e{bottom:655.319738px;}
.ya2{bottom:658.379737px;}
.y1a{bottom:661.259735px;}
.y11c{bottom:665.220600px;}
.yc8{bottom:668.459733px;}
.y125{bottom:669.900600px;}
.y73{bottom:671.699731px;}
.y124{bottom:672.959731px;}
.y137{bottom:677.099729px;}
.y74{bottom:678.179729px;}
.y19{bottom:678.539729px;}
.y127{bottom:678.540600px;}
.ya1{bottom:685.019726px;}
.yc7{bottom:685.739726px;}
.y62{bottom:687.180600px;}
.ya0{bottom:702.119719px;}
.yc6{bottom:703.019719px;}
.y18{bottom:704.279718px;}
.y61{bottom:715.259714px;}
.y9f{bottom:719.399712px;}
.yc5{bottom:720.119712px;}
.y17{bottom:730.199708px;}
.y9e{bottom:736.679705px;}
.y166{bottom:737.039705px;}
.yc4{bottom:737.399705px;}
.y60{bottom:744.239702px;}
.y16{bottom:746.039702px;}
.y103{bottom:747.479701px;}
.y9d{bottom:753.959698px;}
.yc3{bottom:754.679698px;}
.y15{bottom:761.519695px;}
.y165{bottom:763.679695px;}
.y9c{bottom:771.239692px;}
.yc2{bottom:771.959691px;}
.y14{bottom:776.999689px;}
.y5f{bottom:778.619689px;}
.y164{bottom:780.959688px;}
.y9b{bottom:788.339685px;}
.yc1{bottom:789.239684px;}
.y102{bottom:789.959684px;}
.y13{bottom:792.659683px;}
.y5e{bottom:795.899682px;}
.y163{bottom:798.239681px;}
.y101{bottom:805.439678px;}
.y9a{bottom:805.619678px;}
.yc0{bottom:806.339677px;}
.y12{bottom:808.139677px;}
.y162{bottom:815.339674px;}
.y99{bottom:822.899671px;}
.y148{bottom:823.259671px;}
.y11{bottom:823.619671px;}
.y5d{bottom:824.159670px;}
.y100{bottom:830.459668px;}
.y161{bottom:832.619667px;}
.y10{bottom:838.739665px;}
.y98{bottom:840.179664px;}
.y147{bottom:840.539664px;}
.ybf{bottom:840.899664px;}
.y160{bottom:849.899660px;}
.y5c{bottom:851.519659px;}
.yff{bottom:853.139659px;}
.yf{bottom:854.759658px;}
.y18e{bottom:855.299658px;}
.y97{bottom:857.099657px;}
.y18a{bottom:857.459657px;}
.ye7{bottom:857.639657px;}
.ybe{bottom:858.179657px;}
.y5b{bottom:866.999653px;}
.y146{bottom:867.179653px;}
.ye{bottom:870.239652px;}
.ye6{bottom:873.659651px;}
.y96{bottom:874.379650px;}
.y189{bottom:874.739650px;}
.ybd{bottom:875.459650px;}
.y145{bottom:884.459646px;}
.yd{bottom:885.719646px;}
.ye5{bottom:889.319644px;}
.y188{bottom:891.839643px;}
.ybc{bottom:892.739643px;}
.y5a{bottom:898.679641px;}
.y95{bottom:900.839640px;}
.yc{bottom:901.199640px;}
.y144{bottom:901.739639px;}
.y53{bottom:908.219637px;}
.y187{bottom:909.119636px;}
.ybb{bottom:909.839636px;}
.yb{bottom:916.859633px;}
.y94{bottom:918.119633px;}
.y143{bottom:918.839632px;}
.y52{bottom:923.699631px;}
.y186{bottom:926.399629px;}
.yba{bottom:927.119629px;}
.yf3{bottom:930.359628px;}
.ya{bottom:932.339627px;}
.yf9{bottom:934.139626px;}
.yee{bottom:934.859626px;}
.y93{bottom:935.399626px;}
.y142{bottom:936.119626px;}
.y51{bottom:938.639625px;}
.y185{bottom:943.679623px;}
.yb9{bottom:944.399622px;}
.yf2{bottom:946.379621px;}
.yf8{bottom:950.159620px;}
.yed{bottom:950.879620px;}
.y92{bottom:952.679619px;}
.y141{bottom:953.399619px;}
.y9{bottom:956.459617px;}
.y184{bottom:960.959616px;}
.yb8{bottom:961.679615px;}
.yf1{bottom:962.039615px;}
.yf7{bottom:965.819614px;}
.yec{bottom:966.719613px;}
.y91{bottom:969.959612px;}
.y140{bottom:970.679612px;}
.yf4{bottom:977.700600px;}
.yf0{bottom:977.879609px;}
.y183{bottom:978.239609px;}
.yb7{bottom:978.959608px;}
.y4e{bottom:980.580600px;}
.y8{bottom:981.299607px;}
.yf6{bottom:981.659607px;}
.yeb{bottom:982.199607px;}
.y4d{bottom:983.639607px;}
.y59{bottom:983.999606px;}
.y90{bottom:987.239605px;}
.y13f{bottom:987.959605px;}
.yef{bottom:993.539603px;}
.y182{bottom:995.339602px;}
.yb6{bottom:996.239602px;}
.y8f{bottom:1004.339598px;}
.y13e{bottom:1004.879598px;}
.y15f{bottom:1005.239598px;}
.y50{bottom:1005.779598px;}
.y7{bottom:1005.959598px;}
.yfd{bottom:1007.220600px;}
.yfc{bottom:1010.459596px;}
.y181{bottom:1012.619595px;}
.yb5{bottom:1013.339595px;}
.y8e{bottom:1021.619591px;}
.y13d{bottom:1021.979591px;}
.y15e{bottom:1022.339591px;}
.yea{bottom:1025.219590px;}
.yfb{bottom:1026.479589px;}
.y180{bottom:1029.899588px;}
.yb4{bottom:1030.619588px;}
.y49{bottom:1032.420600px;}
.y4b{bottom:1034.939586px;}
.y48{bottom:1035.479586px;}
.y8d{bottom:1038.899584px;}
.y13c{bottom:1039.259584px;}
.y15d{bottom:1039.619584px;}
.ye9{bottom:1041.419583px;}
.y6{bottom:1041.959583px;}
.y17f{bottom:1047.179581px;}
.yb3{bottom:1047.899581px;}
.y8c{bottom:1056.179578px;}
.y13b{bottom:1056.899577px;}
.ye8{bottom:1057.079577px;}
.yfa{bottom:1057.799577px;}
.y4c{bottom:1057.979577px;}
.y5{bottom:1062.659575px;}
.y17e{bottom:1064.459574px;}
.yb2{bottom:1065.179574px;}
.y8b{bottom:1073.459571px;}
.y13a{bottom:1074.179570px;}
.yb1{bottom:1082.459567px;}
.y58{bottom:1084.619566px;}
.y17d{bottom:1090.379564px;}
.y8a{bottom:1090.739564px;}
.y139{bottom:1091.459563px;}
.yb0{bottom:1099.379560px;}
.y18d{bottom:1099.739560px;}
.y57{bottom:1099.919560px;}
.y4{bottom:1101.359559px;}
.y138{bottom:1108.739557px;}
.y55{bottom:1111.800600px;}
.y54{bottom:1114.859554px;}
.y89{bottom:1116.479553px;}
.y18c{bottom:1116.839553px;}
.y3{bottom:1122.059551px;}
.yaf{bottom:1125.839550px;}
.y88{bottom:1133.759546px;}
.y47{bottom:1135.919546px;}
.y18b{bottom:1142.759543px;}
.yae{bottom:1143.119543px;}
.y2{bottom:1173.899530px;}
.y45{bottom:1192.620600px;}
.y1{bottom:1196.219522px;}
.h10{height:0.900000px;}
.hd{height:1.080000px;}
.h25{height:3.600000px;}
.h1e{height:4.500000px;}
.h1c{height:12.060000px;}
.h1a{height:12.240000px;}
.h1f{height:13.140000px;}
.h20{height:14.400000px;}
.hb{height:14.580000px;}
.h17{height:15.480000px;}
.h15{height:16.200000px;}
.h12{height:16.740000px;}
.h9{height:16.920000px;}
.h8{height:34.860924px;}
.h24{height:40.065141px;}
.h1d{height:40.171586px;}
.h23{height:41.626121px;}
.h19{height:41.736713px;}
.h21{height:47.697231px;}
.h18{height:47.824964px;}
.ha{height:47.991284px;}
.hf{height:48.011908px;}
.hc{height:48.014569px;}
.h22{height:49.555564px;}
.h1b{height:49.688275px;}
.h11{height:49.882502px;}
.he{height:49.885266px;}
.h5{height:49.895980px;}
.h13{height:50.233942px;}
.h6{height:51.839979px;}
.h14{height:52.191109px;}
.h1{height:55.218218px;}
.h4{height:57.369577px;}
.h7{height:57.608617px;}
.h16{height:60.524933px;}
.h2{height:66.527973px;}
.h3{height:69.119972px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.wd{width:0.540000px;}
.w3{width:3.060000px;}
.w2{width:3.240000px;}
.w5{width:3.420000px;}
.w8{width:4.140000px;}
.w10{width:4.320000px;}
.wa{width:4.680000px;}
.wb{width:4.860000px;}
.wf{width:5.040000px;}
.w9{width:5.400000px;}
.w11{width:5.580000px;}
.w4{width:5.760000px;}
.w6{width:5.940000px;}
.w13{width:47.700000px;}
.w12{width:49.680000px;}
.wc{width:53.640000px;}
.we{width:78.660000px;}
.w7{width:193.860000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:84.959966px;}
.x9{left:87.660118px;}
.xd{left:100.080000px;}
.x3{left:101.339959px;}
.x38{left:106.559874px;}
.x56{left:109.259956px;}
.x39{left:111.968834px;}
.x5{left:123.479750px;}
.x3d{left:127.980000px;}
.x8{left:130.859948px;}
.x4a{left:143.459738px;}
.x4b{left:145.619750px;}
.x49{left:157.679840px;}
.x48{left:168.119933px;}
.x5a{left:175.499930px;}
.x60{left:177.840020px;}
.x4c{left:182.519799px;}
.x36{left:189.180733px;}
.x63{left:194.219922px;}
.xe{left:197.279921px;}
.x62{left:201.240000px;}
.x35{left:205.739918px;}
.x5b{left:224.279910px;}
.x18{left:228.599909px;}
.xf{left:230.579908px;}
.x13{left:232.379907px;}
.x21{left:235.260000px;}
.x1b{left:237.239915px;}
.xc{left:240.659904px;}
.x5c{left:241.739903px;}
.x2a{left:242.819903px;}
.x5e{left:259.019896px;}
.x3a{left:266.219894px;}
.x1a{left:271.619891px;}
.x42{left:279.359858px;}
.x1e{left:283.499413px;}
.x5d{left:289.260000px;}
.x3b{left:292.319439px;}
.x3f{left:293.579789px;}
.x41{left:295.199882px;}
.x4{left:301.499570px;}
.x43{left:304.559902px;}
.x1d{left:306.899877px;}
.x3e{left:311.219876px;}
.x40{left:314.999854px;}
.x57{left:316.439873px;}
.x19{left:321.840000px;}
.x10{left:323.640000px;}
.x14{left:325.440000px;}
.x3c{left:331.559023px;}
.x7{left:332.999867px;}
.x61{left:343.979862px;}
.x12{left:354.959858px;}
.x66{left:357.479857px;}
.x5f{left:372.059851px;}
.x2b{left:378.899848px;}
.x64{left:385.559846px;}
.x22{left:388.079845px;}
.x2c{left:392.399843px;}
.x2f{left:395.999842px;}
.x6{left:400.859898px;}
.x2d{left:402.659839px;}
.x25{left:405.179838px;}
.x6d{left:406.260000px;}
.x4f{left:407.879724px;}
.x23{left:412.379835px;}
.x15{left:415.079834px;}
.x6c{left:416.339845px;}
.x4d{left:417.780000px;}
.x4e{left:421.739831px;}
.x6a{left:431.100000px;}
.x67{left:432.720000px;}
.x65{left:438.480000px;}
.x20{left:446.399821px;}
.xa{left:467.444933px;}
.x58{left:473.759810px;}
.x2e{left:475.200000px;}
.x6b{left:478.440000px;}
.x24{left:484.920000px;}
.xb{left:494.459802px;}
.x6e{left:496.259801px;}
.x51{left:528.659692px;}
.x53{left:530.639714px;}
.x52{left:538.379706px;}
.x50{left:543.599783px;}
.x68{left:551.339673px;}
.x32{left:578.879849px;}
.x33{left:582.299767px;}
.x31{left:584.279855px;}
.x28{left:585.359710px;}
.x27{left:590.759774px;}
.x30{left:601.199760px;}
.x26{left:607.679757px;}
.x1f{left:609.119756px;}
.x54{left:610.380000px;}
.x17{left:614.519721px;}
.x11{left:621.899751px;}
.x16{left:624.239750px;}
.x46{left:625.859639px;}
.x47{left:630.719571px;}
.x45{left:640.259746px;}
.x44{left:641.879743px;}
.x34{left:649.979740px;}
.x29{left:657.359737px;}
.x69{left:684.359726px;}
.x1c{left:695.519722px;}
.x37{left:703.619719px;}
.x59{left:739.439704px;}
.x55{left:771.479691px;}
.x2{left:792.899683px;}
@media print{
.v1{vertical-align:-35.839986pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.050347pt;}
.ls4{letter-spacing:0.070987pt;}
.ls16{letter-spacing:0.074347pt;}
.ls8{letter-spacing:0.109280pt;}
.ls14{letter-spacing:0.130772pt;}
.lse{letter-spacing:0.137121pt;}
.ls1b{letter-spacing:0.162240pt;}
.ls0{letter-spacing:0.162400pt;}
.lsa{letter-spacing:0.168267pt;}
.ls5{letter-spacing:0.206667pt;}
.ls1f{letter-spacing:0.242080pt;}
.ls6{letter-spacing:0.265707pt;}
.ls2{letter-spacing:0.333973pt;}
.ls7{letter-spacing:0.336533pt;}
.ls15{letter-spacing:0.344185pt;}
.lsc{letter-spacing:0.371947pt;}
.ls10{letter-spacing:0.595645pt;}
.ls19{letter-spacing:0.602080pt;}
.lsf{letter-spacing:0.631326pt;}
.ls9{letter-spacing:0.847040pt;}
.ls1c{letter-spacing:8.493383pt;}
.ls12{letter-spacing:9.133758pt;}
.ls17{letter-spacing:12.335728pt;}
.ls13{letter-spacing:14.897295pt;}
.ls1e{letter-spacing:18.099299pt;}
.ls1d{letter-spacing:18.739673pt;}
.ls3{letter-spacing:24.937003pt;}
.ls11{letter-spacing:40.946757pt;}
.lsb{letter-spacing:48.838380pt;}
.ls1a{letter-spacing:64.847974pt;}
.ls18{letter-spacing:80.857568pt;}
.ws5{word-spacing:-41.274223pt;}
.wsc{word-spacing:-37.548603pt;}
.ws1{word-spacing:-37.295985pt;}
.ws7{word-spacing:-21.439991pt;}
.ws4{word-spacing:-13.616528pt;}
.ws6{word-spacing:-13.389275pt;}
.ws0{word-spacing:-13.279995pt;}
.ws3{word-spacing:-12.333968pt;}
.wsb{word-spacing:-12.081275pt;}
.ws2{word-spacing:-11.999995pt;}
.ws9{word-spacing:-11.547515pt;}
.wsa{word-spacing:-11.546875pt;}
.wsd{word-spacing:-9.635676pt;}
.ws8{word-spacing:0.000000pt;}
._2b{margin-left:-1.811306pt;}
._1{margin-left:-0.904746pt;}
._0{width:0.986080pt;}
._5{width:2.135412pt;}
._7{width:3.173972pt;}
._16{width:4.406078pt;}
._12{width:5.308051pt;}
._2{width:6.372051pt;}
._4{width:7.996530pt;}
._3{width:9.009116pt;}
._6{width:10.086023pt;}
._8{width:10.994502pt;}
._13{width:12.054075pt;}
._17{width:14.330074pt;}
._a{width:15.588367pt;}
._d{width:17.008047pt;}
._29{width:18.037539pt;}
._b{width:18.937859pt;}
._14{width:20.430818pt;}
._15{width:21.354871pt;}
._1d{width:22.248951pt;}
._18{width:23.520577pt;}
._31{width:24.519244pt;}
._25{width:25.411137pt;}
._19{width:26.684736pt;}
._20{width:27.885429pt;}
._34{width:28.791402pt;}
._1e{width:29.791828pt;}
._28{width:31.556734pt;}
._2c{width:32.449320pt;}
._c{width:33.918120pt;}
._e{width:35.177693pt;}
._10{width:36.090119pt;}
._27{width:37.016412pt;}
._26{width:38.125371pt;}
._32{width:39.022384pt;}
._1c{width:40.218384pt;}
._24{width:41.614490pt;}
._11{width:45.142595pt;}
._36{width:46.575021pt;}
._1a{width:47.894008pt;}
._1b{width:49.449740pt;}
._1f{width:50.759446pt;}
._2f{width:51.656673pt;}
._35{width:52.674752pt;}
._23{width:53.861365pt;}
._22{width:55.407605pt;}
._2a{width:57.420297pt;}
._2e{width:63.570268pt;}
._33{width:65.530267pt;}
._f{width:72.869464pt;}
._30{width:81.569141pt;}
._21{width:93.417776pt;}
._9{width:102.693986pt;}
._2d{width:143.836209pt;}
.fsc{font-size:38.542705pt;}
.fsa{font-size:38.645105pt;}
.fs3{font-size:42.879983pt;}
.fsb{font-size:45.884782pt;}
.fs9{font-size:46.007662pt;}
.fs4{font-size:46.167662pt;}
.fs6{font-size:46.187502pt;}
.fs5{font-size:46.190062pt;}
.fs2{font-size:47.999981pt;}
.fs7{font-size:48.325101pt;}
.fs0{font-size:53.119979pt;}
.fs8{font-size:58.225043pt;}
.fs1{font-size:63.999974pt;}
.y7d{bottom:-9.440620pt;}
.y6a{bottom:-9.280702pt;}
.y136{bottom:-7.040671pt;}
.y120{bottom:-6.240761pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:2.079244pt;}
.y11b{bottom:2.079252pt;}
.y10b{bottom:2.079256pt;}
.y12b{bottom:2.079262pt;}
.y10e{bottom:2.079265pt;}
.y111{bottom:2.079273pt;}
.y11d{bottom:2.239229pt;}
.y114{bottom:2.239313pt;}
.y132{bottom:2.239315pt;}
.y118{bottom:2.239322pt;}
.y56{bottom:2.719070pt;}
.y4a{bottom:2.719098pt;}
.y4f{bottom:2.719117pt;}
.y63{bottom:2.719221pt;}
.y128{bottom:2.719224pt;}
.y126{bottom:2.719227pt;}
.y68{bottom:2.719293pt;}
.y7b{bottom:2.719375pt;}
.yfe{bottom:2.879107pt;}
.yd9{bottom:2.879339pt;}
.yde{bottom:2.879372pt;}
.y46{bottom:3.199041pt;}
.yf5{bottom:3.519118pt;}
.y87{bottom:131.947014pt;}
.y15c{bottom:134.186613pt;}
.yd3{bottom:136.266612pt;}
.y17c{bottom:141.546610pt;}
.y36{bottom:142.506610pt;}
.y15b{bottom:149.546607pt;}
.y86{bottom:156.426604pt;}
.y17b{bottom:156.906604pt;}
.y35{bottom:157.866604pt;}
.y44{bottom:158.506603pt;}
.y15a{bottom:164.906601pt;}
.y85{bottom:170.186599pt;}
.y17a{bottom:172.266598pt;}
.y34{bottom:173.066597pt;}
.y43{bottom:173.866597pt;}
.y159{bottom:180.266595pt;}
.ye4{bottom:182.986593pt;}
.y179{bottom:187.466592pt;}
.y33{bottom:188.426591pt;}
.y42{bottom:189.066591pt;}
.y158{bottom:195.466588pt;}
.ye3{bottom:198.346587pt;}
.y178{bottom:202.826586pt;}
.y32{bottom:203.786585pt;}
.y41{bottom:204.426585pt;}
.y157{bottom:210.826582pt;}
.ye2{bottom:213.706581pt;}
.y177{bottom:218.186579pt;}
.y31{bottom:219.146579pt;}
.y40{bottom:219.786579pt;}
.ydf{bottom:220.586578pt;}
.y156{bottom:226.186576pt;}
.y7c{bottom:226.667200pt;}
.y7a{bottom:227.627200pt;}
.ye1{bottom:228.906575pt;}
.y79{bottom:230.346575pt;}
.ydd{bottom:233.067200pt;}
.y176{bottom:233.546573pt;}
.y30{bottom:234.506573pt;}
.y3f{bottom:235.146573pt;}
.y108{bottom:240.906570pt;}
.y155{bottom:241.546570pt;}
.ye0{bottom:244.266569pt;}
.y175{bottom:248.906567pt;}
.y2f{bottom:249.866567pt;}
.y3e{bottom:250.506566pt;}
.y107{bottom:254.986565pt;}
.y154{bottom:256.906564pt;}
.ydc{bottom:263.466561pt;}
.y174{bottom:264.266561pt;}
.y2e{bottom:265.066561pt;}
.y3d{bottom:265.866560pt;}
.y106{bottom:268.746559pt;}
.y153{bottom:272.266558pt;}
.y78{bottom:272.586558pt;}
.ydb{bottom:278.826555pt;}
.y173{bottom:279.466555pt;}
.y2d{bottom:280.426554pt;}
.y83{bottom:280.586554pt;}
.y3c{bottom:281.066554pt;}
.y7e{bottom:281.706554pt;}
.y105{bottom:282.506554pt;}
.y152{bottom:287.466552pt;}
.y82{bottom:294.186549pt;}
.y172{bottom:294.826549pt;}
.y2c{bottom:295.786548pt;}
.y104{bottom:296.266548pt;}
.y3b{bottom:296.426548pt;}
.y151{bottom:302.826546pt;}
.yda{bottom:303.146545pt;}
.y81{bottom:307.466544pt;}
.y171{bottom:310.186543pt;}
.y2b{bottom:311.146542pt;}
.yd7{bottom:311.466542pt;}
.y3a{bottom:311.786542pt;}
.yd8{bottom:315.627200pt;}
.y150{bottom:318.186539pt;}
.y80{bottom:320.746538pt;}
.y170{bottom:325.546536pt;}
.y2a{bottom:326.506536pt;}
.yd6{bottom:326.826536pt;}
.y39{bottom:327.146536pt;}
.y14f{bottom:333.546533pt;}
.y7f{bottom:334.026533pt;}
.y16f{bottom:340.906530pt;}
.y38{bottom:342.506530pt;}
.y77{bottom:344.266529pt;}
.y14e{bottom:348.906527pt;}
.y29{bottom:349.386527pt;}
.y135{bottom:351.147200pt;}
.yd5{bottom:351.786526pt;}
.y16e{bottom:356.266524pt;}
.y134{bottom:356.906524pt;}
.y37{bottom:357.706524pt;}
.y117{bottom:360.107200pt;}
.y116{bottom:362.346522pt;}
.y14d{bottom:364.266521pt;}
.yd4{bottom:365.706520pt;}
.y133{bottom:367.946519pt;}
.y84{bottom:368.906519pt;}
.y16d{bottom:371.466518pt;}
.y28{bottom:373.066517pt;}
.y115{bottom:373.546517pt;}
.y131{bottom:376.747200pt;}
.y14c{bottom:379.466515pt;}
.y113{bottom:382.347200pt;}
.y16c{bottom:386.826512pt;}
.y76{bottom:387.786512pt;}
.y27{bottom:388.426511pt;}
.y14b{bottom:394.826509pt;}
.y16b{bottom:402.186506pt;}
.y26{bottom:403.786505pt;}
.y75{bottom:406.186504pt;}
.y14a{bottom:410.186503pt;}
.yad{bottom:416.906500pt;}
.y16a{bottom:417.546500pt;}
.y25{bottom:419.146499pt;}
.y149{bottom:425.546496pt;}
.y129{bottom:430.026495pt;}
.y69{bottom:431.147200pt;}
.y112{bottom:431.306494pt;}
.yac{bottom:432.106494pt;}
.y67{bottom:432.427200pt;}
.y169{bottom:432.906494pt;}
.y24{bottom:434.506493pt;}
.y66{bottom:435.146493pt;}
.yd2{bottom:440.906490pt;}
.yab{bottom:447.466488pt;}
.y168{bottom:448.106487pt;}
.y23{bottom:449.706487pt;}
.yd1{bottom:456.106484pt;}
.yaa{bottom:462.826482pt;}
.y167{bottom:463.146481pt;}
.y22{bottom:465.066481pt;}
.yd0{bottom:471.466478pt;}
.y65{bottom:471.786478pt;}
.ya9{bottom:478.186475pt;}
.y21{bottom:480.426474pt;}
.y6b{bottom:480.746474pt;}
.y72{bottom:482.346474pt;}
.y110{bottom:482.667200pt;}
.y10f{bottom:484.746473pt;}
.ycf{bottom:486.826472pt;}
.ya8{bottom:493.546469pt;}
.y20{bottom:495.786468pt;}
.y71{bottom:495.946468pt;}
.y130{bottom:499.146467pt;}
.y12c{bottom:500.746466pt;}
.yce{bottom:502.186466pt;}
.y10d{bottom:503.147200pt;}
.y10c{bottom:505.226465pt;}
.y12f{bottom:508.587200pt;}
.ya7{bottom:508.906463pt;}
.y70{bottom:509.226463pt;}
.y12a{bottom:510.187200pt;}
.y1f{bottom:511.146462pt;}
.ycd{bottom:517.546460pt;}
.y6f{bottom:522.506458pt;}
.ya6{bottom:524.106457pt;}
.y10a{bottom:524.427200pt;}
.y1e{bottom:526.506456pt;}
.ycc{bottom:532.906454pt;}
.y6e{bottom:535.786452pt;}
.y11a{bottom:535.787200pt;}
.y119{bottom:537.866452pt;}
.ya5{bottom:539.466451pt;}
.y1d{bottom:541.706450pt;}
.y64{bottom:543.306449pt;}
.y12e{bottom:547.306448pt;}
.ycb{bottom:548.106447pt;}
.y6d{bottom:549.066447pt;}
.y122{bottom:553.547200pt;}
.ya4{bottom:554.826445pt;}
.y121{bottom:555.626444pt;}
.y1c{bottom:557.066444pt;}
.y12d{bottom:560.906442pt;}
.y6c{bottom:562.346442pt;}
.yca{bottom:563.466441pt;}
.ya3{bottom:569.866439pt;}
.y1b{bottom:572.426438pt;}
.y11f{bottom:575.787200pt;}
.yc9{bottom:578.826435pt;}
.y109{bottom:579.946435pt;}
.y11e{bottom:582.506434pt;}
.ya2{bottom:585.226433pt;}
.y1a{bottom:587.786432pt;}
.y11c{bottom:591.307200pt;}
.yc8{bottom:594.186429pt;}
.y125{bottom:595.467200pt;}
.y73{bottom:597.066428pt;}
.y124{bottom:598.186427pt;}
.y137{bottom:601.866426pt;}
.y74{bottom:602.826426pt;}
.y19{bottom:603.146425pt;}
.y127{bottom:603.147200pt;}
.ya1{bottom:608.906423pt;}
.yc7{bottom:609.546423pt;}
.y62{bottom:610.827200pt;}
.ya0{bottom:624.106417pt;}
.yc6{bottom:624.906417pt;}
.y18{bottom:626.026416pt;}
.y61{bottom:635.786412pt;}
.y9f{bottom:639.466411pt;}
.yc5{bottom:640.106411pt;}
.y17{bottom:649.066407pt;}
.y9e{bottom:654.826405pt;}
.y166{bottom:655.146405pt;}
.yc4{bottom:655.466404pt;}
.y60{bottom:661.546402pt;}
.y16{bottom:663.146401pt;}
.y103{bottom:664.426401pt;}
.y9d{bottom:670.186399pt;}
.yc3{bottom:670.826398pt;}
.y15{bottom:676.906396pt;}
.y165{bottom:678.826395pt;}
.y9c{bottom:685.546392pt;}
.yc2{bottom:686.186392pt;}
.y14{bottom:690.666390pt;}
.y5f{bottom:692.106390pt;}
.y164{bottom:694.186389pt;}
.y9b{bottom:700.746386pt;}
.yc1{bottom:701.546386pt;}
.y102{bottom:702.186386pt;}
.y13{bottom:704.586385pt;}
.y5e{bottom:707.466384pt;}
.y163{bottom:709.546383pt;}
.y101{bottom:715.946380pt;}
.y9a{bottom:716.106380pt;}
.yc0{bottom:716.746380pt;}
.y12{bottom:718.346379pt;}
.y162{bottom:724.746377pt;}
.y99{bottom:731.466374pt;}
.y148{bottom:731.786374pt;}
.y11{bottom:732.106374pt;}
.y5d{bottom:732.586374pt;}
.y100{bottom:738.186371pt;}
.y161{bottom:740.106371pt;}
.y10{bottom:745.546368pt;}
.y98{bottom:746.826368pt;}
.y147{bottom:747.146368pt;}
.ybf{bottom:747.466368pt;}
.y160{bottom:755.466364pt;}
.y5c{bottom:756.906364pt;}
.yff{bottom:758.346363pt;}
.yf{bottom:759.786363pt;}
.y18e{bottom:760.266363pt;}
.y97{bottom:761.866362pt;}
.y18a{bottom:762.186362pt;}
.ye7{bottom:762.346362pt;}
.ybe{bottom:762.826362pt;}
.y5b{bottom:770.666358pt;}
.y146{bottom:770.826358pt;}
.ye{bottom:773.546357pt;}
.ye6{bottom:776.586356pt;}
.y96{bottom:777.226356pt;}
.y189{bottom:777.546356pt;}
.ybd{bottom:778.186355pt;}
.y145{bottom:786.186352pt;}
.yd{bottom:787.306352pt;}
.ye5{bottom:790.506350pt;}
.y188{bottom:792.746350pt;}
.ybc{bottom:793.546349pt;}
.y5a{bottom:798.826347pt;}
.y95{bottom:800.746346pt;}
.yc{bottom:801.066346pt;}
.y144{bottom:801.546346pt;}
.y53{bottom:807.306344pt;}
.y187{bottom:808.106343pt;}
.ybb{bottom:808.746343pt;}
.yb{bottom:814.986341pt;}
.y94{bottom:816.106340pt;}
.y143{bottom:816.746340pt;}
.y52{bottom:821.066338pt;}
.y186{bottom:823.466337pt;}
.yba{bottom:824.106337pt;}
.yf3{bottom:826.986336pt;}
.ya{bottom:828.746335pt;}
.yf9{bottom:830.346335pt;}
.yee{bottom:830.986334pt;}
.y93{bottom:831.466334pt;}
.y142{bottom:832.106334pt;}
.y51{bottom:834.346333pt;}
.y185{bottom:838.826331pt;}
.yb9{bottom:839.466331pt;}
.yf2{bottom:841.226330pt;}
.yf8{bottom:844.586329pt;}
.yed{bottom:845.226329pt;}
.y92{bottom:846.826328pt;}
.y141{bottom:847.466328pt;}
.y9{bottom:850.186327pt;}
.y184{bottom:854.186325pt;}
.yb8{bottom:854.826325pt;}
.yf1{bottom:855.146325pt;}
.yf7{bottom:858.506323pt;}
.yec{bottom:859.306323pt;}
.y91{bottom:862.186322pt;}
.y140{bottom:862.826322pt;}
.yf4{bottom:869.067200pt;}
.yf0{bottom:869.226319pt;}
.y183{bottom:869.546319pt;}
.yb7{bottom:870.186319pt;}
.y4e{bottom:871.627200pt;}
.y8{bottom:872.266318pt;}
.yf6{bottom:872.586318pt;}
.yeb{bottom:873.066317pt;}
.y4d{bottom:874.346317pt;}
.y59{bottom:874.666317pt;}
.y90{bottom:877.546316pt;}
.y13f{bottom:878.186315pt;}
.yef{bottom:883.146313pt;}
.y182{bottom:884.746313pt;}
.yb6{bottom:885.546312pt;}
.y8f{bottom:892.746310pt;}
.y13e{bottom:893.226309pt;}
.y15f{bottom:893.546309pt;}
.y50{bottom:894.026309pt;}
.y7{bottom:894.186309pt;}
.yfd{bottom:895.307200pt;}
.yfc{bottom:898.186307pt;}
.y181{bottom:900.106307pt;}
.yb5{bottom:900.746306pt;}
.y8e{bottom:908.106303pt;}
.y13d{bottom:908.426303pt;}
.y15e{bottom:908.746303pt;}
.yea{bottom:911.306302pt;}
.yfb{bottom:912.426302pt;}
.y180{bottom:915.466300pt;}
.yb4{bottom:916.106300pt;}
.y49{bottom:917.707200pt;}
.y4b{bottom:919.946299pt;}
.y48{bottom:920.426298pt;}
.y8d{bottom:923.466297pt;}
.y13c{bottom:923.786297pt;}
.y15d{bottom:924.106297pt;}
.ye9{bottom:925.706296pt;}
.y6{bottom:926.186296pt;}
.y17f{bottom:930.826294pt;}
.yb3{bottom:931.466294pt;}
.y8c{bottom:938.826291pt;}
.y13b{bottom:939.466291pt;}
.ye8{bottom:939.626291pt;}
.yfa{bottom:940.266291pt;}
.y4c{bottom:940.426290pt;}
.y5{bottom:944.586289pt;}
.y17e{bottom:946.186288pt;}
.yb2{bottom:946.826288pt;}
.y8b{bottom:954.186285pt;}
.y13a{bottom:954.826285pt;}
.yb1{bottom:962.186282pt;}
.y58{bottom:964.106281pt;}
.y17d{bottom:969.226279pt;}
.y8a{bottom:969.546279pt;}
.y139{bottom:970.186279pt;}
.yb0{bottom:977.226276pt;}
.y18d{bottom:977.546276pt;}
.y57{bottom:977.706276pt;}
.y4{bottom:978.986275pt;}
.y138{bottom:985.546272pt;}
.y55{bottom:988.267200pt;}
.y54{bottom:990.986270pt;}
.y89{bottom:992.426270pt;}
.y18c{bottom:992.746270pt;}
.y3{bottom:997.386268pt;}
.yaf{bottom:1000.746266pt;}
.y88{bottom:1007.786264pt;}
.y47{bottom:1009.706263pt;}
.y18b{bottom:1015.786260pt;}
.yae{bottom:1016.106260pt;}
.y2{bottom:1043.466249pt;}
.y45{bottom:1060.107200pt;}
.y1{bottom:1063.306241pt;}
.h10{height:0.800000pt;}
.hd{height:0.960000pt;}
.h25{height:3.200000pt;}
.h1e{height:4.000000pt;}
.h1c{height:10.720000pt;}
.h1a{height:10.880000pt;}
.h1f{height:11.680000pt;}
.h20{height:12.800000pt;}
.hb{height:12.960000pt;}
.h17{height:13.760000pt;}
.h15{height:14.400000pt;}
.h12{height:14.880000pt;}
.h9{height:15.040000pt;}
.h8{height:30.987488pt;}
.h24{height:35.613459pt;}
.h1d{height:35.708077pt;}
.h23{height:37.000996pt;}
.h19{height:37.099300pt;}
.h21{height:42.397538pt;}
.h18{height:42.511079pt;}
.ha{height:42.658919pt;}
.hf{height:42.677251pt;}
.hc{height:42.679617pt;}
.h22{height:44.049390pt;}
.h1b{height:44.167355pt;}
.h11{height:44.340001pt;}
.he{height:44.342459pt;}
.h5{height:44.351982pt;}
.h13{height:44.652393pt;}
.h6{height:46.079982pt;}
.h14{height:46.392097pt;}
.h1{height:49.082860pt;}
.h4{height:50.995180pt;}
.h7{height:51.207660pt;}
.h16{height:53.799940pt;}
.h2{height:59.135976pt;}
.h3{height:61.439975pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.wd{width:0.480000pt;}
.w3{width:2.720000pt;}
.w2{width:2.880000pt;}
.w5{width:3.040000pt;}
.w8{width:3.680000pt;}
.w10{width:3.840000pt;}
.wa{width:4.160000pt;}
.wb{width:4.320000pt;}
.wf{width:4.480000pt;}
.w9{width:4.800000pt;}
.w11{width:4.960000pt;}
.w4{width:5.120000pt;}
.w6{width:5.280000pt;}
.w13{width:42.400000pt;}
.w12{width:44.160000pt;}
.wc{width:47.680000pt;}
.we{width:69.920000pt;}
.w7{width:172.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.519970pt;}
.x9{left:77.920105pt;}
.xd{left:88.960000pt;}
.x3{left:90.079964pt;}
.x38{left:94.719888pt;}
.x56{left:97.119961pt;}
.x39{left:99.527852pt;}
.x5{left:109.759778pt;}
.x3d{left:113.760000pt;}
.x8{left:116.319953pt;}
.x4a{left:127.519767pt;}
.x4b{left:129.439777pt;}
.x49{left:140.159858pt;}
.x48{left:149.439940pt;}
.x5a{left:155.999938pt;}
.x60{left:158.080018pt;}
.x4c{left:162.239821pt;}
.x36{left:168.160652pt;}
.x63{left:172.639931pt;}
.xe{left:175.359930pt;}
.x62{left:178.880000pt;}
.x35{left:182.879927pt;}
.x5b{left:199.359920pt;}
.x18{left:203.199919pt;}
.xf{left:204.959918pt;}
.x13{left:206.559917pt;}
.x21{left:209.120000pt;}
.x1b{left:210.879924pt;}
.xc{left:213.919914pt;}
.x5c{left:214.879914pt;}
.x2a{left:215.839914pt;}
.x5e{left:230.239908pt;}
.x3a{left:236.639905pt;}
.x1a{left:241.439903pt;}
.x42{left:248.319874pt;}
.x1e{left:251.999478pt;}
.x5d{left:257.120000pt;}
.x3b{left:259.839502pt;}
.x3f{left:260.959813pt;}
.x41{left:262.399895pt;}
.x4{left:267.999618pt;}
.x43{left:270.719913pt;}
.x1d{left:272.799891pt;}
.x3e{left:276.639889pt;}
.x40{left:279.999870pt;}
.x57{left:281.279887pt;}
.x19{left:286.080000pt;}
.x10{left:287.680000pt;}
.x14{left:289.280000pt;}
.x3c{left:294.719131pt;}
.x7{left:295.999882pt;}
.x61{left:305.759878pt;}
.x12{left:315.519874pt;}
.x66{left:317.759873pt;}
.x5f{left:330.719868pt;}
.x2b{left:336.799865pt;}
.x64{left:342.719863pt;}
.x22{left:344.959862pt;}
.x2c{left:348.799860pt;}
.x2f{left:351.999859pt;}
.x6{left:356.319910pt;}
.x2d{left:357.919857pt;}
.x25{left:360.159856pt;}
.x6d{left:361.120000pt;}
.x4f{left:362.559755pt;}
.x23{left:366.559853pt;}
.x15{left:368.959852pt;}
.x6c{left:370.079862pt;}
.x4d{left:371.360000pt;}
.x4e{left:374.879850pt;}
.x6a{left:383.200000pt;}
.x67{left:384.640000pt;}
.x65{left:389.760000pt;}
.x20{left:396.799841pt;}
.xa{left:415.506607pt;}
.x58{left:421.119832pt;}
.x2e{left:422.400000pt;}
.x6b{left:425.280000pt;}
.x24{left:431.040000pt;}
.xb{left:439.519824pt;}
.x6e{left:441.119824pt;}
.x51{left:469.919726pt;}
.x53{left:471.679746pt;}
.x52{left:478.559739pt;}
.x50{left:483.199807pt;}
.x68{left:490.079710pt;}
.x32{left:514.559865pt;}
.x33{left:517.599793pt;}
.x31{left:519.359871pt;}
.x28{left:520.319742pt;}
.x27{left:525.119799pt;}
.x30{left:534.399786pt;}
.x26{left:540.159784pt;}
.x1f{left:541.439783pt;}
.x54{left:542.560000pt;}
.x17{left:546.239752pt;}
.x11{left:552.799779pt;}
.x16{left:554.879778pt;}
.x46{left:556.319680pt;}
.x47{left:560.639619pt;}
.x45{left:569.119774pt;}
.x44{left:570.559772pt;}
.x34{left:577.759769pt;}
.x29{left:584.319766pt;}
.x69{left:608.319757pt;}
.x1c{left:618.239753pt;}
.x37{left:625.439750pt;}
.x59{left:657.279737pt;}
.x55{left:685.759726pt;}
.x2{left:704.799718pt;}
}




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